diff --git a/.dockerignore b/.dockerignore index cf3913aa0..10f7d7b49 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,3 +1,2 @@ -.git .gitignore **/.DS_Store diff --git a/.gitignore b/.gitignore index 71543f41f..2e9633f3a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,13 +1,13 @@ *.DS_Store render_app.conf +docker-compose.yml lib/WeBWorK/htdocs/tmp/renderer/gif/* lib/WeBWorK/htdocs/tmp/renderer/images/* lib/WeBWorK/htdocs/DATA/*.json -lib/WeBWorK/htdocs/js/apps/Problem/problem.css lib/WeBWorK/bin/* webwork-open-problem-library/ private/ -tmp/ +tmp/* logs/*.log node_modules node_modules/* diff --git a/.gitmodules b/.gitmodules index 786cb66ef..e1d589313 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,4 +1,4 @@ [submodule "lib/PG"] path = lib/PG - url = https://github.com/drgrice1/pg.git - branch = ww3-rendering-work-new + url = https://github.com/openwebwork/pg.git + branch = main diff --git a/Dockerfile b/Dockerfile index 1018d7de0..39d21a93d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -43,6 +43,9 @@ RUN apt-get update \ libmath-random-secure-perl \ libdata-structure-util-perl \ liblocale-maketext-lexicon-perl \ + libyaml-libyaml-perl \ + && curl -fsSL https://deb.nodesource.com/setup_16.x | bash - \ + && apt-get install -y --no-install-recommends --no-install-suggests nodejs \ && apt-get clean \ && rm -fr /var/lib/apt/lists/* /tmp/* @@ -51,7 +54,7 @@ RUN cpanm install Mojo::Base Statistics::R::IO::Rserve Date::Format Future::Asyn COPY . . -RUN cd lib/WeBWorK/htdocs && npm install && cd ../../.. +RUN cd lib/PG/htdocs && npm install && cd ../../.. && npm install EXPOSE 3000 diff --git a/DockerfileStage1 b/DockerfileStage1 new file mode 100644 index 000000000..af053e44f --- /dev/null +++ b/DockerfileStage1 @@ -0,0 +1,53 @@ +FROM ubuntu:20.04 +MAINTAINER drdrew42 + +WORKDIR /usr/app +ARG DEBIAN_FRONTEND=noninteractive +ENV TZ=America/New_York + +RUN apt-get update \ + && apt-get install -y --no-install-recommends --no-install-suggests \ + apt-utils \ + git \ + gcc \ + npm \ + make \ + curl \ + nodejs \ + dvipng \ + openssl \ + libc-dev \ + cpanminus \ + libssl-dev \ + libgd-perl \ + zlib1g-dev \ + imagemagick \ + libdbi-perl \ + libjson-perl \ + libcgi-pm-perl \ + libjson-xs-perl \ + ca-certificates \ + libstorable-perl \ + libdatetime-perl \ + libuuid-tiny-perl \ + libtie-ixhash-perl \ + libhttp-async-perl \ + libnet-ssleay-perl \ + libarchive-zip-perl \ + libcrypt-ssleay-perl \ + libclass-accessor-perl \ + libstring-shellquote-perl \ + libextutils-cbuilder-perl \ + libproc-processtable-perl \ + libmath-random-secure-perl \ + libdata-structure-util-perl \ + liblocale-maketext-lexicon-perl \ + libyaml-libyaml-perl \ + && curl -fsSL https://deb.nodesource.com/setup_16.x | bash - \ + && apt-get install -y --no-install-recommends --no-install-suggests nodejs \ + && apt-get clean \ + && rm -fr /var/lib/apt/lists/* /tmp/* + +RUN cpanm install Mojo::Base Statistics::R::IO::Rserve Date::Format Future::AsyncAwait Crypt::JWT IO::Socket::SSL CGI::Cookie \ + && rm -fr ./cpanm /root/.cpanm /tmp/* + diff --git a/DockerfileStage2 b/DockerfileStage2 new file mode 100644 index 000000000..fc2e07019 --- /dev/null +++ b/DockerfileStage2 @@ -0,0 +1,18 @@ +FROM renderer-base:latest +LABEL org.opencontainers.image.source=https://github.com/drdrew42/renderer +MAINTAINER drdrew42 + +WORKDIR /usr/app +ARG DEBIAN_FRONTEND=noninteractive +ENV TZ=America/New_York + + +COPY . . + +RUN cd lib/PG/htdocs && npm install && cd ../../.. && npm install + +EXPOSE 3000 + +HEALTHCHECK CMD curl -I localhost:3000/health + +CMD hypnotoad -f ./script/render_app diff --git a/README.md b/README.md index fe51a4216..19e16e93b 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # WeBWorK Standalone Problem Renderer & Editor -![Commit Activity](https://img.shields.io/github/commit-activity/m/drdrew42/renderer?style=plastic) -![License](https://img.shields.io/github/license/drdrew42/renderer?style=plastic) +![Commit Activity](https://img.shields.io/github/commit-activity/m/openwebwork/renderer?style=plastic) +![License](https://img.shields.io/github/license/openwebwork/renderer?style=plastic) This is a PG Renderer derived from the WeBWorK2 codebase @@ -13,42 +13,58 @@ This is a PG Renderer derived from the WeBWorK2 codebase mkdir volumes mkdir container git clone https://github.com/openwebwork/webwork-open-problem-library volumes/webwork-open-problem-library -git clone --recursive https://github.com/drdrew42/renderer container/ -docker build --tag renderer:1.0 ./container - -docker run -d \ - --rm \ - --name standalone-renderer \ - --publish 3000:3000 \ - --mount type=bind,source="$(pwd)"/volumes/webwork-open-problem-library/,target=/usr/app/webwork-open-problem-library \ - --env MOJO_MODE=development \ - renderer:1.0 -``` +git clone --recursive https://github.com/openwebwork/renderer container/ -If you have non-OPL content, it can be mounted as a volume at `/usr/app/private` by adding the following line to the `docker run` command: +cd container +docker build --no-cache --tag renderer-base:latest -f DockerfileStage1 . + +# If you have a local version of docker-compose.yml you should update it +# as necessary before running the next line. If not, copy the +# docker-compose.yml.dist to docker-compose.yml and edit as necessary. + +docker-compose build --no-cache + +# You now set the MOJO_MODE and mount locations in docker-compose.yml +# instead of in the docker run command + +docker-compose up -d -``` - --mount type=bind,source=/pathToYourLocalContentRoot,target=/usr/app/private \ ``` -A default configuration file is included in the container, but it can be overridden by mounting a replacement at the application root. This is necessary if, for example, you want to run the container in `production` mode. +To stop the container run: +``` +docker-compose down +``` +If you need to rebuild the container, but do not need to change the +packages/installs in the stage 1 build, it suffices to: ``` - --mount type=bind,source=/pathToYour/render_app.conf,target=/usr/app/render_app.conf \ +cd container +docker-compose build --no-cache ``` +If you have non-OPL content, it can be mounted as a volume at `/usr/app/private` by +setting the relevant mount moint in `docker-compose.yml` so that it gets mounted under +`/usr/app/private`. + +A default `render_app.conf` configuration file is included in the container, +but it can be overridden by mounting a replacement at the application root +using `docker-compose.yml`. This is necessary if, for example, you want to run +the container in `production` mode. + ## LOCAL INSTALL ### If using a local install instead of docker: -* Clone the renderer and its submodules: `git clone --recursive https://github.com/drdrew42/renderer` +* Clone the renderer and its submodules: `git clone --recursive https://github.com/openwebwork/renderer` * Enter the project directory: `cd renderer` * Install perl dependencies listed in Dockerfile (CPANMinus recommended) * clone webwork-open-problem-library into the provided stub ./webwork-open-problem-library - `git clone https://github.com/openwebwork/webwork-open-problem-library ./webwork-open-problem-library` * copy `render_app.conf.dist` to `render_app.conf` and make any desired modifications * install other dependencies - - `cd lib/WeBWorK/htdocs` + - `npm install` + - `cd lib/PG/htdocs` - `npm install` * start the app with `morbo ./script/render_app` or `morbo -l http://localhost:3000 ./script/render_app` if changing root url * access on `localhost:3000` by default or otherwise specified root url diff --git a/docker-compose.yml.dist b/docker-compose.yml.dist new file mode 100644 index 000000000..991a34f07 --- /dev/null +++ b/docker-compose.yml.dist @@ -0,0 +1,49 @@ +version: '3.5' + +services: + renderer: + image: renderer:latest + container_name: standalone-renderer + + build: + # For use/building when docker-compose.yml is in the container directory + context: . + # For use/building when docker-compose.yml is OUTSIDE the container directory. + #context: /Path_To/container/ + + # If you would like a 1 stage build process comment out the next line, and just run "docker-compose build". + dockerfile: DockerfileStage2 + + # For the 2 stage build process: + # Stage 1 - base image with OS + CPAN packages + # docker build --no-cache --tag renderer-base:latest -f container/DockerfileStage1 . + # You can add something like + # --build-arg ADDITIONAL_BASE_IMAGE_PACKAGES="vim-tiny" + # to add additional packages to the base image + # Stage 2 - add the renderer to the base image + # docker-compose build --no-cache + + volumes: + + # Local render_app.conf if needed: + #- "./render_app.conf:/usr/app/render_app.conf" + + # OPL - from standard location + - "../volumes/webwork-open-problem-library:/usr/app/webwork-open-problem-library" + + # Private problem directories - from standard location + #- "./volumes/private:/usr/app/private" + + #hostname: myhost.mydomain.edu + + ports: + - "3000:3000" + + environment: + MOJO_MODE: development + + # The system timezone for the container can be set using + #SYSTEM_TIMEZONE: zone/city + # where zone/city must be a valid setting. + # "/usr/bin/timedatectl list-timezones" on an Ubuntu system with + # that tool installed will find valid values. diff --git a/lib/PG b/lib/PG index 9868cc56d..d242aab31 160000 --- a/lib/PG +++ b/lib/PG @@ -1 +1 @@ -Subproject commit 9868cc56db6f1c2533011b602abb8e92f8b79eb7 +Subproject commit d242aab3175b905a9b428789bf720efe1c75ee3f diff --git a/lib/RenderApp.pm b/lib/RenderApp.pm index f129404a0..28e93b946 100644 --- a/lib/RenderApp.pm +++ b/lib/RenderApp.pm @@ -5,15 +5,18 @@ BEGIN { use Mojo::File; $main::dirname = Mojo::File::curfile->dirname; - #RENDER_ROOT is required for initializing conf files + # RENDER_ROOT is required for initializing conf files. $ENV{RENDER_ROOT} = $main::dirname->dirname unless ( defined( $ENV{RENDER_ROOT} ) ); - #WEBWORK_ROOT is required for PG/lib/WeBWorK/IO - $ENV{WEBWORK_ROOT} = $main::dirname . '/WeBWorK' - unless ( defined( $ENV{WEBWORK_ROOT} ) ); + # WEBWORK_ROOT is required for PG/lib/WeBWorK/IO. + # PG_ROOT is required for PG/lib/PGEnvironment.pm. + # These are hardcoded to avoid conflict with environment variables for webwork2. + # There is no need for these to be configurable. + $ENV{WEBWORK_ROOT} = $main::dirname . '/WeBWorK'; + $ENV{PG_ROOT} = $main::dirname . '/PG'; - #used for reconstructing library paths from sym-links + # Used for reconstructing library paths from sym-links. $ENV{OPL_DIRECTORY} = "webwork-open-problem-library"; $WeBWorK::Constants::WEBWORK_DIRECTORY = $main::dirname . "/WeBWorK"; $WeBWorK::Constants::PG_DIRECTORY = $main::dirname . "/PG"; @@ -60,7 +63,7 @@ sub startup { # Handle optional CORS settings if (my $CORS_ORIGIN = $self->config('CORS_ORIGIN')) { - die "CORS_ORIGIN ($CORS_ORIGIN) must be an absolute URL or '*'" + die "CORS_ORIGIN ($CORS_ORIGIN) must be an absolute URL or '*'" unless ($CORS_ORIGIN eq '*' || $CORS_ORIGIN =~ /^https?:\/\//); $self->hook(before_dispatch => sub { @@ -108,12 +111,10 @@ sub startup { $r->post('/render-api/tags')->to('IO#setTags'); } - # pass all requests via ww2_files through to lib/WeBWorK/htdocs - my $staticPath = $WeBWorK::Constants::WEBWORK_DIRECTORY."/htdocs/"; - $r->any('/webwork2_files/*static' => sub { - my $c = shift; - $c->reply->file($staticPath.$c->stash('static')); - }); + # Static file routes + $r->any('/webwork2_files/CAPA_Graphics/*static')->to('StaticFiles#CAPA_graphics_file'); + $r->any('/webwork2_files/tmp/*static')->to('StaticFiles#temp_file'); + $r->any('/pg_files/*static')->to('StaticFiles#pg_file'); # any other requests fall through $r->any('/*fail' => sub { diff --git a/lib/RenderApp/Controller/FormatRenderedProblem.pm b/lib/RenderApp/Controller/FormatRenderedProblem.pm index 5eaee5ca0..c7217659c 100755 --- a/lib/RenderApp/Controller/FormatRenderedProblem.pm +++ b/lib/RenderApp/Controller/FormatRenderedProblem.pm @@ -24,13 +24,16 @@ FormatRenderedProblem.pm package RenderApp::Controller::FormatRenderedProblem; +use warnings; +use strict; + use lib "$WeBWorK::Constants::WEBWORK_DIRECTORY/lib"; use lib "$WeBWorK::Constants::PG_DIRECTORY/lib"; use MIME::Base64 qw( encode_base64 decode_base64); use WeBWorK::Utils::AttemptsTable; #import from ww2 use WeBWorK::PG::ImageGenerator; # import from ww2 use WeBWorK::Utils::LanguageAndDirection; -use WeBWorK::Utils qw( wwRound); # required for score summary +use WeBWorK::Utils qw(wwRound getAssetURL); # required for score summary use WeBWorK::Localize ; # for maketext our $UNIT_TESTS_ON = 0; @@ -46,7 +49,7 @@ sub format_hash_ref { sub new { my $invocant = shift; my $class = ref $invocant || $invocant; - $self = { # Is this function redundant given the declarations within sub formatRenderedProblem? + my $self = { # Is this function redundant given the declarations within sub formatRenderedProblem? return_object => {}, encoded_source => {}, sourceFilePath => '', @@ -199,7 +202,7 @@ sub formatRenderedProblem { answersSubmitted => $self->{inputs_ref}{answersSubmitted}//0, answerOrder => $answerOrder//[], displayMode => $self->{inputs_ref}{displayMode}, - imgGen => $imgGen, + imgGen => undef, # $imgGen, ce => '', #used only to build the imgGen showAnswerNumbers => 0, showAttemptAnswers => 0, @@ -242,45 +245,47 @@ sub formatRenderedProblem { # Add JS files requested by problems via ADD_JS_FILE() in the PG file. my $extra_js_files = ''; - if (ref($rh_result->{flags}{extra_js_files}) eq "ARRAY") { + if (ref($rh_result->{flags}{extra_js_files}) eq 'ARRAY') { $rh_result->{js} = []; my %jsFiles; - for (@{$rh_result->{flags}{extra_js_files}}) { - # Avoid duplicates - next if $jsFiles{$_->{file}}; - $jsFiles{$_->{file}} = 1; - my $attributes = ref($_->{attributes}) eq "HASH" ? $_->{attributes} : {}; + for (@{ $rh_result->{flags}{extra_js_files} }) { + next if $jsFiles{ $_->{file} }; + $jsFiles{ $_->{file} } = 1; + my %attributes = ref($_->{attributes}) eq 'HASH' ? %{ $_->{attributes} } : (); if ($_->{external}) { - push @{$rh_result->{js}}, $_->{file}; - $extra_js_files .= CGI::script({ src => $_->{file}, %$attributes}, ''); - } elsif (!$_->{external} && -f "$ENV{WEBWORK_ROOT}/htdocs/$_->{file}") { - push @{$rh_result->{js}}, "$webwork_htdocs_url/$_->{file}"; - $extra_js_files .= CGI::script({src => "$webwork_htdocs_url/$_->{file}", %$attributes}, ''); + push @{ $rh_result->{js} }, $_->{file}; + $extra_js_files .= CGI::script({ src => $_->{file}, %attributes }, ''); } else { - $extra_js_files .= ""; + my $url = getAssetURL($self->{inputs_ref}{language} // 'en', $_->{file}); + push @{ $rh_result->{js} }, "$SITE_URL/$url"; + $extra_js_files .= CGI::script({ src => $url, %attributes }, ''); } } } + # Add CSS files requested by problems via ADD_CSS_FILE() in the PG file + # or via a setting of $self->{ce}{pg}{specialPGEnvironmentVars}{extra_css_files} + # (the value should be an anonomous array). my $extra_css_files = ''; - my %cssFiles; - # Avoid duplicates - if (ref($self->{ce}{pg}{specialPGEnvironmentVars}{extra_css_files}) eq "ARRAY") { - $cssFiles{$_} = 0 for @{$self->{ce}{pg}{specialPGEnvironmentVars}{extra_css_files}}; + my @cssFiles; + if (ref($self->{ce}{pg}{specialPGEnvironmentVars}{extra_css_files}) eq 'ARRAY') { + push(@cssFiles, { file => $_, external => 0 }) for @{ $self->{ce}{pg}{specialPGEnvironmentVars}{extra_css_files} }; } - if (ref($rh_result->{flags}{extra_css_files}) eq "ARRAY") { - $cssFiles{$_->{file}} = $_->{external} for @{$rh_result->{flags}{extra_css_files}}; + if (ref($rh_result->{flags}{extra_css_files}) eq 'ARRAY') { + push @cssFiles, @{ $rh_result->{flags}{extra_css_files} }; } + my %cssFilesAdded; # Used to avoid duplicates $rh_result->{css} = []; - for (keys(%cssFiles)) { - if ($cssFiles{$_}) { - push @{$rh_result->{css}}, $_; - $extra_css_files .= "\n"; - } elsif (!$cssFiles{$_} && -f "$ENV{WEBWORK_ROOT}/htdocs/$_") { - push @{$rh_result->{css}}, "$webwork_htdocs_url/$_"; - $extra_css_files .= "\n"; + for (@cssFiles) { + next if $cssFilesAdded{ $_->{file} }; + $cssFilesAdded{ $_->{file} } = 1; + if ($_->{external}) { + push @{ $rh_result->{css} }, $_->{file}; + $extra_css_files .= CGI::Link({ rel => 'stylesheet', href => $_->{file} }); } else { - $extra_css_files .= "\n"; + my $url = getAssetURL($self->{inputs_ref}{language} // 'en', $_->{file}); + push @{ $rh_result->{css} }, "$SITE_URL/$url"; + $extra_css_files .= CGI::Link({ href => $url, rel => 'stylesheet' }); } } diff --git a/lib/RenderApp/Controller/Render.pm b/lib/RenderApp/Controller/Render.pm index fadf8c7ba..c74242656 100644 --- a/lib/RenderApp/Controller/Render.pm +++ b/lib/RenderApp/Controller/Render.pm @@ -237,7 +237,7 @@ sub checkOutputs { } return "Output from rendering " - . $outputs_ref->{sourceFilePath} + . ($outputs_ref->{sourceFilePath} // '') . " contained errors: {" . join "}, {", @errs . "}"; } @@ -304,4 +304,4 @@ sub jwtFromRequest { return $c->render( text => $req_jwt ); } -1; \ No newline at end of file +1; diff --git a/lib/RenderApp/Controller/RenderProblem.pm b/lib/RenderApp/Controller/RenderProblem.pm index e13a3e3ab..8c165ea8e 100644 --- a/lib/RenderApp/Controller/RenderProblem.pm +++ b/lib/RenderApp/Controller/RenderProblem.pm @@ -368,6 +368,7 @@ sub standaloneRenderer { refreshMath2img => 1, processAnswers => $processAnswers, QUIZ_PREFIX => $inputs_ref->{answerPrefix} // '', + useMathQuill => !defined $inputs_ref->{entryAssist} || $inputs_ref->{entryAssist} eq 'MathQuill' ? 1 : 0, #use_site_prefix => 'http://localhost:3000', use_opaque_prefix => 0, @@ -428,8 +429,6 @@ sub standaloneRenderer { ['Problem failed during render - no PGcore received.']; } - insert_mathquill_responses( $inputs_ref, $pg ); - my $out2 = { text => $pg->{body_text}, header_text => $pg->{head_text}, @@ -523,30 +522,6 @@ sub generateJWTs { return ($sessionJWT, $answerJWT); } -# insert_mathquill_responses subroutine - -# Add responses to each answer's response group that store the latex form of the students' -# answers and add corresponding hidden input boxes to the page. - -sub insert_mathquill_responses { - my ( $form_data, $pg ) = @_; - for my $answerLabel ( keys %{ $pg->{pgcore}{PG_ANSWERS_HASH} } ) { - my $mq_opts = $pg->{pgcore}{PG_ANSWERS_HASH}{$answerLabel}{ans_eval}{rh_ans}{mathQuillOpts} // ''; - next if ( $mq_opts =~ /\s*disabled\s*/ ); - my $response_obj = $pg->{pgcore}{PG_ANSWERS_HASH}{$answerLabel}->response_obj; - for my $response ( $response_obj->response_labels ) { - next if ( ref( $response_obj->{responses}{$response} ) ); - my $name = "MaThQuIlL_$response"; - push( @{ $response_obj->{response_order} }, $name ); - $response_obj->{responses}{$name} = ''; - my $value = defined( $form_data->{$name} ) ? $form_data->{$name} : ''; - $pg->{body_text} .= CGI::hidden({ - -name => $name, -id => $name, -value => $value, data_mq_opts => "$mq_opts" - }); - } - } -} - sub fake_user { my $user = { user_id => 'Motoko_Kusanagi', diff --git a/lib/RenderApp/Controller/StaticFiles.pm b/lib/RenderApp/Controller/StaticFiles.pm new file mode 100644 index 000000000..0554cdea2 --- /dev/null +++ b/lib/RenderApp/Controller/StaticFiles.pm @@ -0,0 +1,31 @@ +package RenderApp::Controller::StaticFiles; +use Mojo::Base 'Mojolicious::Controller', -signatures; + +use Mojo::File qw(path); + +sub reply_with_file_if_readable ($c, $file) { + if (-r $file) { + return $c->reply->file($file); + } else { + return $c->render(data => 'File not found', status => 404); + } +} + +# Route requests for webwork2_files/CAPA_Graphics to render root Contrib/CAPA/CAPA_Graphics +sub CAPA_graphics_file ($c) { + return $c->reply_with_file_if_readable($c->app->home->child('Contrib/CAPA/CAPA_Graphics', $c->stash('static'))); +} + +# Route requests for webwork2_files to the render root tmp. The +# only requests should be for files in the temporary directory. +# FIXME: Perhaps this directory should be configurable. +sub temp_file ($c) { + $c->reply_with_file_if_readable($c->app->home->child('tmp', $c->stash('static'))); +} + +# Route request to pg_files to lib/PG/htdocs. +sub pg_file ($c) { + $c->reply_with_file_if_readable(path($WeBWorK::Constants::PG_DIRECTORY, 'htdocs', $c->stash('static'))); +} + +1; diff --git a/lib/WeBWorK/VERSION b/lib/WeBWorK/VERSION deleted file mode 100644 index bb63f5488..000000000 --- a/lib/WeBWorK/VERSION +++ /dev/null @@ -1,4 +0,0 @@ -$WW_VERSION = 'bollocks'; -$WW_COPYRIGHT_YEARS = 'NOW'; - -1; diff --git a/lib/WeBWorK/conf/defaults.config b/lib/WeBWorK/conf/defaults.config index 719fe541d..faa2ea1a2 100644 --- a/lib/WeBWorK/conf/defaults.config +++ b/lib/WeBWorK/conf/defaults.config @@ -1,8 +1,7 @@ #!perl ################################################################################ # WeBWorK Online Homework Delivery System -# Copyright © 2000-2018 The WeBWorK Project, http://openwebwork.sf.net/ -# $CVSHeader: webwork2/conf/defaults.config,v 1.225 2010/05/18 18:03:31 apizer Exp $ +# Copyright © 2000-2022 The WeBWorK Project, https://github.com/openwebwork # # This program is free software; you can redistribute it and/or modify it under # the terms of either: (a) the GNU General Public License as published by the @@ -27,11 +26,8 @@ # All site-specific settings such as file locations and web addresses are # configured in site.conf. If you want to override any settings in this # file, you can put a directive in localOverrides.conf. + include("conf/site.conf"); -include("VERSION"); # get WW version -# The version of PG is now obtained from the file pg/VERSION -# using code added to CourseEnvironment.pm -# with this one exception include can only read files under the webwork2 directory ################################################################################ # site.conf should contain basic information about directories and URLs on @@ -42,8 +38,6 @@ include("VERSION"); # get WW version # Mail Settings ################################################################################ - - # AllowedRecipients defines addresses that the PG system is allowed to send mail # to. this prevents subtle PG exploits. This should be set in course.conf to the # addresses of professors of each course. Sending mail from the PG system (i.e. @@ -54,12 +48,12 @@ $mail{allowedRecipients} = [ #'prof2@yourserver.yourdomain.edu', ]; -# By default, feeback is sent to all users who have permission to +# By default, feedback is sent to all users who have permission to # receive_feedback. If this list is non-empty, feedback is also sent to the # addresses specified here. # # * If you want to disable feedback altogether, leave this empty and set -# submit_feeback => $nobody in %permissionLevels below. This will cause the +# submit_feedback => $nobody in %permissionLevels below. This will cause the # feedback button to go away as well. # # * If you want to send email ONLY to addresses in this list, set @@ -97,6 +91,10 @@ $mail{feedbackSubjectFormat} = "[WWfeedback] course:%c user:%u set:%s prob:%p se # 2: as in 1, plus the problem environment (debugging data) $mail{feedbackVerbosity} = 1; +# Should the studentID be included in the feedback email when feedbackVerbosity > 0: +# The default is yes +$blockStudentIDinFeedback = 0; + # Defines the size of the Mail Merge editor window # FIXME: should this be here? it's UI, not mail # FIXME: replace this with the auto-size method that TWiki uses @@ -113,7 +111,7 @@ $mail{editor_window_columns} = 100; # when you download a new version of WeBWorK. # Use this to customize the text of the feedback button. -$feedback_button_name = "Email instructor"; +$feedback_button_name = "Email Instructor"; # If this value is true, feedback will only be sent to users with the same # section as the user initiating the feedback. @@ -136,17 +134,22 @@ $courseURLs{feedbackFormURL} = ""; ################################################################################ # Repository Information -################################################################################ This is where you put your remote and branch for your WeBWorK, PG and OPL +################################################################################ +# This is where you put your remote and branch for your WeBWorK, PG and OPL # github repositories. -$enableGitUpgradeNotifier = 1; +# Note: This process uses git ls-remote which can be very slow on some +# systems. If your course list page in the admin course is very slow +# consider disabling this option. + +$enableGitUpgradeNotifier = 0; $gitWeBWorKRemoteName = "origin"; -$gitWeBWorKBranchName = "master"; +$gitWeBWorKBranchName = "main"; $gitPGRemoteName = "origin"; -$gitPGBranchName = "master"; +$gitPGBranchName = "main"; $gitLibraryRemoteName = "origin"; -$gitLibraryBranchName = "master"; +$gitLibraryBranchName = "main"; ################################################################################ # Theme @@ -155,22 +158,44 @@ $gitLibraryBranchName = "master"; $defaultTheme = "math4"; $defaultThemeTemplate = "system"; +# The institution logo should be an image file in the theme's images folder +$institutionLogo = 'maa_logo.png'; +$institutionURL = 'http://www.maa.org'; +$institutionName = 'MAA (Mathematical Association of America)'; + ################################################################################ # Hardcopy Theme ################################################################################ # Available Hardcopy themes (located in snippets) -$hardcopyThemes = [qw(oneColumn twoColumn)]; -# Hardcopy theme names (pretty names for themes) -$hardcopyThemeNames = {oneColumn => 'One Column', - twoColumn => 'Two Columns'}; -# Default Hardcopy them +# (their "internal" name and their pretty name for end users) +$hardcopyThemeNames = { + oneColumn => 'One Column', + twoColumn => 'Two Columns', + #XeLaTeX-oneColumn => 'English - one Column', + #XeLaTeX-twoColumn => 'English - two Columns', + #XeLaTeX-Hebrew-oneColumn => 'Hebrew/English - one Column', + #XeLaTeX-Hebrew-twoColumn => 'Hebrew/English - two Columns', +}; + +# This is needed to enforce an order that the options are presented when making a hardcopy +$hardcopyThemes = [ + 'oneColumn', + 'twoColumn', + #'XeLaTeX-oneColumn', + #'XeLaTeX-twoColumn', + #'XeLaTeX-Hebrew-oneColumn', + #'XeLaTeX-Hebrew-twoColumn', +]; + +# Default Hardcopy theme $hardcopyTheme = "twoColumn"; ################################################################################ # Achievements ################################################################################ $achievementsEnabled = 0; +$achievementItemsEnabled = 0; $achievementPointsPerProblem = 5; $achievementPreambleFile = "preamble.at"; @@ -216,6 +241,15 @@ $pg{options}{enablePeriodicRandomization} = 0; # course-wide default period for re-randomization, should be an integer # the value of 0 disables re-randomization $pg{options}{periodicRandomizationPeriod} = 5; +# Show the correct answer after a student's last attempt at the current version +# and before a new version is requested. +$pg{options}{showCorrectOnRandomize} = 0; + +################################################################################ +# Waive Explanations +################################################################################ +# switch to remove explanation essay block from questions that have one +$pg{specialPGEnvironmentVars}{waiveExplanations} = 0; ################################################################################ # Language @@ -250,15 +284,14 @@ $webworkDirs{bin} = "$webworkDirs{root}/bin"; # Location of configuration files, templates, snippets, etc. $webworkDirs{conf} = "$webworkDirs{root}/conf"; - # Location of course directories. $webworkDirs{courses} = "$webwork_courses_dir" || "$webworkDirs{root}/courses"; # Contains log files. -$webworkDirs{logs} = "$webworkDirs{root}/logs"; +$webworkDirs{logs} = "$ENV{RENDER_ROOT}/logs"; # Contains non-web-accessible temporary files, such as TeX working directories. -$webworkDirs{tmp} = "$webworkDirs{root}/tmp"; +$webworkDirs{tmp} = "$ENV{RENDER_ROOT}/tmp"; # The (absolute) destinations of symbolic links that are OK for the FileManager to follow. # (any subdirectory of these is a valid target for a symbolic link.) @@ -266,6 +299,10 @@ $webworkDirs{tmp} = "$webworkDirs{root}/tmp"; # $webworkDirs{valid_symlinks} = ["$webworkDirs{courses}/modelCourse/templates","/ww2/common/sets"]; $webworkDirs{valid_symlinks} = []; +# Location of the common tex input files packages.tex, CAPA.tex, and PGML.tex +# used for hardcopy generation. +$webworkDirs{texinputs_common} = "$webworkDirs{root}/conf/snippets/hardcopyThemes/common"; + ################################################################################ ##### The following locations are web-accessible. ################################################################################ @@ -275,12 +312,12 @@ $webworkURLs{root} = "$webwork_url"; # Location of system-wide web-accessible files, such as equation images, and # help files. -$webworkDirs{htdocs} = "$webwork_htdocs_dir" || "$webworkDirs{root}/htdocs"; +$webworkDirs{htdocs} = "$webwork_htdocs_dir" || "$ENV{RENDER_ROOT}/tmp"; $webworkURLs{htdocs} = "$webwork_htdocs_url"; # Location of web-accessible temporary files, such as equation images. # These two should be set in localOverrides.conf -- not here since this can be overwritten by new versions. -$webworkDirs{htdocs_temp} = "$webworkDirs{htdocs}/tmp"; +$webworkDirs{htdocs_temp} = "$ENV{RENDER_ROOT}/tmp"; $webworkURLs{htdocs_temp} = "$webworkURLs{htdocs}/tmp"; # Location of cached equation images. @@ -298,18 +335,30 @@ $webworkDirs{themes} = "$webworkDirs{htdocs}/themes"; $webworkDirs{localize} = "$webworkDirs{root}/lib/WeBWorK/Localize"; # URL of general WeBWorK documentation. -$webworkURLs{docs} = "http://webwork.maa.org"; +$webworkURLs{docs} = "https://webwork.maa.org"; # URL of WeBWorK Bugzilla database. -$webworkURLs{bugReporter} = "http://bugs.webwork.maa.org/enter_bug.cgi"; +$webworkURLs{bugReporter} = "https://bugs.webwork.maa.org/enter_bug.cgi"; + +# URL of WeBWorK on GitHub +$webworkURLs{GitHub} = "https://github.com/openwebwork"; + +# Registration form URL, security signup mail address +$webworkURLs{serverRegForm} = "https://forms.gle/vrqpKiRHritnQNf37"; +$webworkURLs{wwSecurityAnnounce} = "https://groups.google.com/g/ww-security-announce"; +$webworkSecListManagers = 'ww-security-announce+managers@googlegroups.com'; + +# URLs in the Wiki +$webworkURLs{WikiMain} = "https://webwork.maa.org/wiki/"; +$webworkURLs{SiteMap} = "https://webwork.maa.org/wiki/WeBWorK_Sites"; #URL for help buttons on the PGProblemEditor pages: -$webworkURLs{problemTechniquesHelpURL}='http://webwork.maa.org/wiki/Category:Problem_Techniques'; -$webworkURLs{MathObjectsHelpURL} ='http://webwork.maa.org/wiki/Category:MathObjects'; -$webworkURLs{PODHelpURL} ='https://demo.webwork.rochester.edu/wwdocs/'; -$webworkURLs{PGLabHelpURL} ='https://demo.webwork.rochester.edu/webwork2/wikiExamples/MathObjectsLabs2/2/?login_practice_user=true'; -$webworkURLs{PGMLHelpURL} ='https://courses1.webwork.maa.org/webwork2/cervone_course/PGML/1/?login_practice_user=true'; -$webworkURLs{AuthorHelpURL} ='http://webwork.maa.org/wiki/Category:Authors'; +$webworkURLs{problemTechniquesHelpURL}='https://webwork.maa.org/wiki/Category:Problem_Techniques'; +$webworkURLs{MathObjectsHelpURL} ='https://webwork.maa.org/wiki/Category:MathObjects'; +$webworkURLs{PODHelpURL} ='https://webwork.maa.org/pod/'; +$webworkURLs{PGLabHelpURL} ='https://demo.webwork.rochester.edu/webwork2/wikiExamples/MathObjectsLabs2/2?login_practice_user=true'; +$webworkURLs{PGMLHelpURL} ='https://demo.webwork.rochester.edu/webwork2/cervone_course/PGML/1?login_practice_user=true'; +$webworkURLs{AuthorHelpURL} ='https://webwork.maa.org/wiki/Category:Authors'; # Location of CSS # $webworkURLs{stylesheet} = "$webworkURLs{htdocs}/css/${defaultTheme}.css"; @@ -318,12 +367,6 @@ $webworkURLs{AuthorHelpURL} ='http://webwork.maa.org/wiki/Category:Aut # It's better to refer directly to the .css file in the system.template # /css/math.css"/> -# Location of MathJax script, used for the MathJax display mode. -$webworkURLs{MathJax} = "$webworkURLs{htdocs}/mathjax/MathJax.js?config=TeX-MML-AM_HTMLorMML-full"; - -# Location of Tabber script, used to generate tabbed widgets. -$webworkURLs{tabber} = "$webworkURLs{htdocs}/js/legacy/vendor/tabber.js"; - ################################################################################ # Defaults for course-specific locations (directories and URLs) ################################################################################ @@ -354,7 +397,7 @@ $courseDirs{logs} = "$courseDirs{root}/logs"; $courseDirs{scoring} = "$courseDirs{root}/scoring"; # Location of PG templates and set definition files. -$courseDirs{templates} = "$ENV{RENDER_ROOT}"; +$courseDirs{templates} = $ENV{RENDER_ROOT}; # Location of course achievement files. $courseDirs{achievements} = "$courseDirs{templates}/achievements"; @@ -392,10 +435,9 @@ $webworkFiles{equationCacheDB} = ""; # "$webworkDirs{DATA}/equa # They should contain TeX code unless otherwise noted. ################################################################################ -# The setHeader preceeds each set in hardcopy output. It is a PG file. +# The setHeader precedes each set in hardcopy output. It is a PG file. # This is the default file which is used if a specific files is not selected -$webworkFiles{hardcopySnippets}{setHeader} = "$webworkDirs{conf}/snippets/setHeader.pg"; # hardcopySetHeader.pg", -#$webworkFiles{hardcopySnippets}{setHeader} = "$courseDirs{templates}/ASimpleHardCopyHeaderFile.pg"; # An alternate default header file +$webworkFiles{hardcopySnippets}{setHeader} = "$webworkDirs{conf}/snippets/ASimpleCombinedHeaderFile.pg"; ################################################################################ # In general the following files are determined by which hardcopy theme you @@ -427,8 +469,7 @@ $webworkFiles{hardcopySnippets}{setHeader} = "$webworkDirs{conf}/snippets/s # The set header is displayed on the problem set page. It is a PG file. # This is the default file which is used if a specific files is not selected -#$webworkFiles{screenSnippets}{setHeader} = "$webworkDirs{conf}/snippets/setHeader.pg"; # screenSetHeader.pg" -$webworkFiles{screenSnippets}{setHeader} = "$courseDirs{templates}/ASimpleScreenHeaderFile.pg"; # An alternate default header file +$webworkFiles{screenSnippets}{setHeader} = "$webworkDirs{conf}/snippets/ASimpleCombinedHeaderFile.pg"; # A PG template for creation of new problems. $webworkFiles{screenSnippets}{blankProblem} = "$webworkDirs{conf}/snippets/blankProblem2.pg"; # screenSetHeader.pg" @@ -443,7 +484,7 @@ $webworkFiles{site_info} = "$webworkDirs{htdocs}/site_info # The course configuration file. $courseFiles{environment} = "$courseDirs{root}/course.conf"; -# The course simple configuration file (holds web-based configuratoin). +# The course simple configuration file (holds web-based configuration). $courseFiles{simpleConfig} = "$courseDirs{root}/simple.conf"; # File contents are displayed after login, on the problem sets page. Path given @@ -454,11 +495,12 @@ $courseFiles{course_info} = "course_info.txt"; # the templates directory. $courseFiles{login_info} = "login_info.txt"; -# These course specific files cannot be edited from the File Manager for saftey reasons except +# These course specific files cannot be edited from the File Manager for safety reasons except # by an administrator. These are paths relative to the course directory. -$uneditableCourseFiles = ['simple.conf', - 'course.conf', - ]; +$uneditableCourseFiles = [ + 'simple.conf', + 'course.conf', +]; # Additional library buttons can be added to the Library Browser (SetMaker.pm) # by adding the libraries you want to the following line. For each key=>value @@ -528,29 +570,9 @@ $default_status = "Enrolled"; # Database options ################################################################################ -# these variables are used by database.conf. we define them here so that editing -# database.conf isn't necessary. - -# required permissions -# GRANT SELECT ON webwork.* TO webworkRead@localhost IDENTIFIED BY 'passwordRO'; -# GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, ALTER, DROP, INDEX, LOCK TABLES ON webwork.* TO webworkWrite@localhost IDENTIFIED BY 'passwordRW'; - - -################################################################################ -# set these variables in site.conf -# -# $database_dsn = "dbi:mysql:webwork"; -# $database_username = "webworkWrite"; -# $database_password = ""; #set this in site.conf -# $database_debug = 0; -################################################################################ - - - # Database schemas are defined in the file conf/database.conf and stored in the # hash %dbLayouts. The standard schema is called "sql_single"; - # include( "./conf/database.conf.dist"); # always include database.conf.dist # in the rare case where you want local overrides @@ -568,12 +590,14 @@ $dbLayoutName = "sql_single"; *dbLayout = $dbLayouts{$dbLayoutName}; # This sets the max course id length. It might need to be changed depending -# on what database tables are present. Mysql allows a max table length of 68 +# on what database tables are present. Mysql allows a max table length of 64 # characters. With the ${course_id}_global_user_achievement table that means -# the max ${course_id} is about 40 characters +# the max ${course_id} is exactly 40 characters. $maxCourseIdLength = 40; +# Reference: https://dev.mysql.com/doc/refman/8.0/en/identifier-length.html + ################################################################################ # Problem library options ################################################################################ @@ -581,18 +605,16 @@ $maxCourseIdLength = 40; # The problemLibrary configuration data should now be set in localOverrides.conf # For configuration instructions, see: -# http://webwork.maa.org/wiki/National_Problem_Library +# https://webwork.maa.org/wiki/Open_Problem_Library # The directory containing the open problem library files. # Set the root to "" if no problem -# library is installed. Use version 2.0 for the NPL and use the version 2.5 for the OPL. -# When changing from the NPL to the OPL it is important to change the version number -# because the names of the tables in the database have changed. #RE-CONFIGURE problemLibrary values in localOverrides.conf # if these defaults are not correct. ################################################# -$problemLibrary{root} ="$ENV{RENDER_ROOT}/webwork-open-problem-library/OpenProblemLibrary"; -$problemLibrary{version} ="2.5"; # 2.0 for NPL, 2.5 for OPL +$problemLibrary{root} = "$ENV{RENDER_ROOT}/webwork-open-problem-library/OpenProblemLibrary"; +$contribLibrary{root} = "$ENV{RENDER_ROOT}/Contrib"; +$problemLibrary{version} = "2.5"; ########################################################### # Problem Library SQL database connection information @@ -609,7 +631,7 @@ $problemLibrary{tree} = 'library-directory-tree.json'; # browser. If you want to include local statistics you will need to # run webwork2/bin/update-OPL-statistics on a regular basis. $problemLibrary{showLibraryLocalStats} = 1; -# This flag controls whether global statistics will0be displayed +# This flag controls whether global statistics will be displayed $problemLibrary{showLibraryGlobalStats} = 1; ################################################################################ @@ -637,7 +659,7 @@ $webworkFiles{logs}{hosted_courses} = "$webworkDirs{logs}/hosted_courses.log"; $webworkFiles{logs}{transaction} = "$webworkDirs{logs}/${courseName}_transaction.log"; # The answer log stores a history of all users' submitted answers. -$courseFiles{logs}{answer_log} = "$courseDirs{logs}/answer_log"; +$courseFiles{logs}{answer_log} = "$courseDirs{logs}/answer.log"; # Log logins. $courseFiles{logs}{login_log} = "$courseDirs{logs}/login.log"; @@ -657,6 +679,10 @@ $courseFiles{logs}{activity_log} = ''; # to the new course being created. $siteDefaults{default_templates_course} ="modelCourse"; +# Provide a list of model courses which are not real courses, but from which +# the templates for a new course can be copied. +$modelCoursesForCopy = [ "modelCourse" ]; + ################################################################################ # Authentication system ################################################################################ @@ -720,10 +746,12 @@ $authen{xmlrpc_module} = "WeBWorK::Authen::XMLRPC"; # %permissionLevels = ( login => "guest", + navigation_allowed => "guest", report_bugs => "ta", submit_feedback => "student", change_password => "student", change_email_address => "student", + change_pg_display_settings => "student", proctor_quiz_login => "login_proctor", proctor_quiz_grade => "grade_proctor", @@ -751,11 +779,11 @@ $authen{xmlrpc_module} = "WeBWorK::Authen::XMLRPC"; modify_scoring_files => "professor", modify_problem_template_files => "professor", manage_course_files => "professor", - edit_achievements => "professor", + edit_achievements => "professor", create_and_delete_courses => "professor", fix_course_databases => "professor", - modify_tags => undef, - edit_restricted_files => "admin", + modify_tags => "admin", + edit_restricted_files => "admin", ##### Behavior of the interactive problem processor ##### show_resource_info => "admin", @@ -774,10 +802,11 @@ $authen{xmlrpc_module} = "WeBWorK::Authen::XMLRPC"; check_answers_after_due_date => "guest", check_answers_after_answer_date => "guest", can_check_and_submit_answers => "ta", + can_use_show_me_another_early => "ta", create_new_set_version_when_acting_as_student => undef, print_path_to_problem => "professor", # see "Special" PG environment variables - always_show_hint => "professor", # see "Special" PG environment variables - always_show_solution => "professor", # see "Special" PG environment variables + always_show_hint => "professor", # see "Special" PG environment variables + always_show_solution => "professor", # see "Special" PG environment variables record_set_version_answers_when_acting_as_student => undef, record_answers_when_acting_as_student => undef, # "record_answers_when_acting_as_student" takes precedence @@ -787,19 +816,19 @@ $authen{xmlrpc_module} = "WeBWorK::Authen::XMLRPC"; record_answers_after_open_date_without_attempts => undef, record_answers_after_due_date => undef, record_answers_after_answer_date => undef, -# dont_log_past_answers => "professor", # set this in localOverrides.conf - #controls logging of the responses to a question - # in the past answer data base - # and in the myCourse/logs/answer_log file. - # Activities of users with this permission enabled are not entered - # in these logs. This might be used when collecting student data - # to avoid contaminating the data with TA and instructor activities. - # The professor setting means that professor's answers are not logged or - # saved in the past answer database. + dont_log_past_answers => undef, + # controls logging of the responses to a question + # in the past answer data base + # and in the myCourse/logs/answer_log file. + # Activities of users with this permission enabled are not entered + # in these logs. This might be used when collecting student data + # to avoid contaminating the data with TA and instructor activities. + # The professor setting means that professor's answers are not logged or + # saved in the past answer database. view_problem_debugging_info => "ta", show_pg_info_checkbox => "admin", - show_answer_hash_info_checkbox => "admin", - show_answer_group_info_checkbox => "admin", + show_answer_hash_info_checkbox => "admin", + show_answer_group_info_checkbox => "admin", ##### Behavior of the Hardcopy Processor ##### download_hardcopy_multiuser => "ta", @@ -851,7 +880,7 @@ $gatewayGracePeriod = 120; ## for session_management and is using WeBWorK's password authentication, ## then one has the option of keeping a Login cookie with a duration ## of up to 30 days. However, if one uses cookies for session management, -## then one cannot also use Login cookies. So session managment using +## then one cannot also use Login cookies. So session management using ## cookies is more appropriate when external authentication systems ## are used, e.g., LDAP, LTIBasic, etc. ## @@ -891,6 +920,45 @@ $gatewayGracePeriod = 120; $session_management_via = "session_cookie"; #$session_management_via = "key"; +################################################################################ +# WeBWorK Caliper +################################################################################ + +# Caliper is disabled by default. See localOverrides.conf.dist for configuration +# options when enabling Caliper. +$caliper{enabled} = 0; + +################################################################################ +# Cookie control settings +################################################################################ + +# The following variables can be set to control cookie behavior. + +# Set the value of the samesite attribute of the WeBWorK cookie: +# See: https://blog.chromium.org/2019/10/developers-get-ready-for-new.html +# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie/SameSite +# https://tools.ietf.org/html/draft-west-cookie-incrementalism-00 + + +# Notes about the $CookieSameSite options: +# The "None" setting should only be used with HTTPS and when $CookieSecure = 1; is set below. The "None" setting is also less secure and can allow certain types of cross-site attacks. +# The "Strict" setting can break the links in the system generated feedback emails when read in a web mail client. +# Due to those factors, the "Lax" setting is probably the optimal choice for typical WeBWorK servers. + +$CookieSameSite = "Lax"; + +# Set the value of the secure cookie attribute: +$CookieSecure = 0; # Default is 0 here, as 1 will not work without https + +# At present the CookieLifeTime setting only effect how long the +# browser is to supposed to retain the cookie. +# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie +$CookieLifeTime = "+7d"; + +# NOTE: In general the cookie lifespan settings use the CGI.pm relative time settings. +# Search for "30 seconds from now" at https://metacpan.org/pod/CGI to see the various options. +# A WW option is to set it to "session", in which case the Cookie will expire when the +# browser session ends (a "session cookie"). ################################################################################ # PG subsystem options @@ -898,10 +966,13 @@ $session_management_via = "session_cookie"; # List of enabled display modes. Comment out any modes you don't wish to make # available for use. +# The first uncommented option is the default for instructors rendering problems +# in the homework sets editor. $pg{displayModes} = [ -# "plainText", # display raw TeX for math expressions - "images", # display math expressions as images generated by dvipng - "MathJax", # render TeX math expressions on the client side using MathJax --- we strongly recommend people install and use MathJax, and it is requred if you want to use mathview + "MathJax", # render TeX math expressions on the client side using MathJax + # we strongly recommend people install and use MathJax, and it is required if you want to use mathview + "images", # display math expressions as images generated by dvipng +# "plainText", # display raw TeX for math expressions ]; @@ -909,19 +980,22 @@ $pg{displayModes} = [ #### Default settings for homework editor pages ########################################################################################## -# Whether the homework editor pages should show the datetimepicker -$options{useDateTimePicker} = 1; - # Whether the homework editor pages should show options for conditional release - $options{enableConditionalRelease} = 0; -# In the hmwk sets editor, how deep to search within templates for .def files; -# 0 means only within templates +# In the hmwk sets editor, how deep to search within templates for .def files. +# Note that this does not apply to the Library and Contrib directories. +# Those directories are not searched in any case (see below). +# 0 means only within templates. $options{setDefSearchDepth} = 0; -# In the hmwk sets editor, delve into the OPL while searching for .def files? +# In the hmwk sets editor, also list OPL or Contrib set defintion files. Note +# that the directories are not searched, but these lists are loaded from the +# files htdocs/DATA/library-set-defs.json and htdocs/DATA/contrib-set-defs.json +# which are generated by running bin/generate-OPL-set-def-lists.pl (which is +# also run if you run bin/OPL-update). $options{useOPLdefFiles} = 0; +$options{useContribDefFiles} = 0; ########################################################################################## @@ -955,7 +1029,7 @@ $options{PGMathQuill}= 0; ########################################################################################### # Default display mode. Should be listed above (uncomment only one). -$pg{options}{displayMode} = "images"; +$pg{options}{displayMode} = "MathJax"; # The default grader to use, if a problem doesn't specify. $pg{options}{grader} = "avg_problem_grader"; @@ -984,16 +1058,16 @@ $pg{options}{showHints} = 0; # this is a backup value use when nothing # Show solutions (when allowed) by default? -$pg{options}{showSolutions} = 0; # this is a backup value use when nothing else has been set. I can think of no case where it should anything but zero. +$pg{options}{showSolutions} = 0; # this is a backup value use when nothing else has been set. I can think of no case where it should anything but zero. $pg{options}{showAnsGroupInfo} = 0; -$pg{options}{showAnsHashInfo} = 0; -$pg{options}{showPGInfo} = 0; +$pg{options}{showAnsHashInfo} = 0; +$pg{options}{showPGInfo} = 0; # By default hints and solutions are ALWAYS shown for professors (and above) so that they # can check hints and solutions easily and make corrections. -# To disable this feature set the permission levels -# always_show_hint to "nobody" (by default this is "professor") -# and always_show_solution to "nobody" (by default this is "professor") +# To disable this feature set the permission levels +# always_show_hint to "nobody" (by default this is "professor") +# and always_show_solution to "nobody" (by default this is "professor") # This is done in the %permissions section above. # If always_show_hint is set to "nobody" then hints are shown, even to professors, only after @@ -1026,7 +1100,7 @@ $pg{options}{showEvaluatedAnswers} = 1; # Catch translation warnings internally by default? (We no longer need to do # this, since there is a global warnings handler. So this should be off.) -$pg{options}{catchWarnings} = 1; +$pg{options}{catchWarnings} = 0; # decorations for correct input blanks -- apparently you can't define and name attribute collections in a .css file $pg{options}{correct_answer} = "{border-width:2;border-style:solid;border-color:#8F8}"; #matches resultsWithOutError class in math2.css @@ -1083,24 +1157,28 @@ $pg{directories}{macros} = "$pg{directories}{root}/macros"; # $pg{directories}{macrosPath} = [ ".", # search the problem file's directory -# $courseDirs{macros}, + #$courseDirs{macros}, $pg{directories}{macros}, - "$problemLibrary{root}/macros/Union", - "$problemLibrary{root}/macros/Michigan", + "$problemLibrary{root}/macros/Alfred", + "$problemLibrary{root}/macros/BrockPhysics", "$problemLibrary{root}/macros/CollegeOfIdaho", + "$problemLibrary{root}/macros/Dartmouth", "$problemLibrary{root}/macros/FortLewis", - "$problemLibrary{root}/macros/TCNJ", + "$problemLibrary{root}/macros/Hope", + "$problemLibrary{root}/macros/LaTech", + "$problemLibrary{root}/macros/MC", + "$problemLibrary{root}/macros/Michigan", + "$problemLibrary{root}/macros/Mizzou", "$problemLibrary{root}/macros/NAU", - "$problemLibrary{root}/macros/Dartmouth", - "$problemLibrary{root}/macros/WHFreeman", - "$problemLibrary{root}/macros/UMass-Amherst", "$problemLibrary{root}/macros/PCC", - "$problemLibrary{root}/macros/Alfred", - "$problemLibrary{root}/macros/Wiley", + "$problemLibrary{root}/macros/TCNJ", "$problemLibrary{root}/macros/UBC", - "$problemLibrary{root}/macros/Hope", - "$problemLibrary{root}/macros/MC", + "$problemLibrary{root}/macros/UMass-Amherst", + "$problemLibrary{root}/macros/UW-Stout", "$problemLibrary{root}/macros/UniSiegen", + "$problemLibrary{root}/macros/Union", + "$problemLibrary{root}/macros/WHFreeman", + "$problemLibrary{root}/macros/Wiley", ]; # The applet search path. If a full URL is given, it is used unmodified. If an @@ -1123,7 +1201,7 @@ $pg{directories}{appletPath} = [ # paths to search for applets (requires full ]; -$pg{directories}{htmlPath} = [ # paths to search for auxilary html files (requires full url) +$pg{directories}{htmlPath} = [ # paths to search for auxiliary html files (requires full url) ".", "$courseURLs{html}", "$webworkURLs{htdocs}", @@ -1154,7 +1232,7 @@ $pg{specialPGEnvironmentVars}{ALWAYS_SHOW_SOLUTION_PERMISSION_LEVEL} = # (solutions are automatically shown to anyone with this permission or higher) $pg{specialPGEnvironmentVars}{VIEW_PROBLEM_DEBUGGING_INFO} = $userRoles{ $permissionLevels{view_problem_debugging_info} }; - # (variable wether to show the debugging info from a problem to a student) + # (variable whether to show the debugging info from a problem to a student) $pg{specialPGEnvironmentVars}{use_knowls_for_hints} = $pg{options}{use_knowls_for_hints}; $pg{specialPGEnvironmentVars}{use_knowls_for_solutions} = $pg{options}{use_knowls_for_solutions}; @@ -1162,25 +1240,31 @@ $pg{specialPGEnvironmentVars}{use_knowls_for_solutions} = $pg{options}{use_knowl # whether to use javascript for rendering Live3D graphs $pg{specialPGEnvironmentVars}{use_javascript_for_live3d} = 1; -# Binary that the PGtikz.pl macro will use to create svg images. +# Binary that the PGtikz.pl and PGlateximage.pl macros will use to create svg images. # This should be either 'pdf2svg' or 'dvipdfm'. -$pg{specialPGEnvironmentVars}{tikzSVGMethod} = "dvisvgm"; +$pg{specialPGEnvironmentVars}{latexImageSVGMethod} = "pdf2svg"; # When ImageMagick is used for image conversions, this sets the default options. # See https://imagemagick.org/script/convert.php for a full list of options. # convert will be called as: # convert file.ext1 file.ext2 -$pg{specialPGEnvironmentVars}{tikzConvertOptions} = {input => {density => 300}, output => {quality => 100}}; +$pg{specialPGEnvironmentVars}{latexImageConvertOptions} = {input => {density => 300}, output => {quality => 100}}; # set the flags immediately above in the $pg{options} section above -- not here. # Locations of CAPA resources. (Only necessary if you need to use converted CAPA # problems.) -$pg{specialPGEnvironmentVars}{CAPA_Tools} = "$courseDirs{templates}/capaLibrary/macros/CAPA_Tools/", -$pg{specialPGEnvironmentVars}{CAPA_MCTools} = "$courseDirs{templates}/capaLibrary/macros/CAPA_MCTools/", -$pg{specialPGEnvironmentVars}{CAPA_GraphicsDirectory} = "$webworkDirs{htdocs}/CAPA_Graphics/", -$pg{specialPGEnvironmentVars}{CAPA_Graphics_URL} = "$webworkURLs{htdocs}/CAPA_Graphics/", +################################################################################ +# "Special" PG environment variables. (Stuff that doesn't fit in anywhere else.) +################################################################################ + $pg{specialPGEnvironmentVars}{CAPA_Tools} = "$courseDirs{templates}/Contrib/CAPA/macros/CAPA_Tools/", + $pg{specialPGEnvironmentVars}{CAPA_MCTools} = "$courseDirs{templates}/Contrib/CAPA/macros/CAPA_MCTools/", + $pg{specialPGEnvironmentVars}{CAPA_GraphicsDirectory} = "$courseDirs{templates}/Contrib/CAPA/CAPA_Graphics/", + $pg{specialPGEnvironmentVars}{CAPA_Graphics_URL} = "$webworkURLs{htdocs}/CAPA_Graphics/", + + # The link Contrib in the course templates directory should point to ../webwork-open-problem-library/Contrib + # The link webwork2/htdocs/CAPA_Graphics should point to ../webwork-open-problem-library/Contrib/CAPA/macros/CAPA_graphics # Size in pixels of dynamically-generated images, i.e. graphs. $pg{specialPGEnvironmentVars}{onTheFlyImageSize} = 400, @@ -1188,6 +1272,15 @@ $pg{specialPGEnvironmentVars}{onTheFlyImageSize} = 400, # original versions instead, set this value to 1. $pg{specialPGEnvironmentVars}{useOldAnswerMacros} = 0; +# Determines whether or not MathObjects contexts will parse the alternative tokens +# listed in the "alternatives" property (mostly for unicode alternatives for parse tokens). +$pg{specialPGEnvironmentVars}{parseAlternatives} = 0; + +# Determines whether or not the MathObjects parser will convert the Full Width Unicode block +# (U+FF01 to U+FF5E) to their corresponding ASCII characters (U+0021 to U+007E) automatically. +$pg{specialPGEnvironmentVars}{convertFullWidthCharacters} = 0; + + # Strings to insert at the start and end of the body of a problem # (at beginproblem() and ENDDOCUMENT) in various modes. More display modes # can be added if different behaviours are desired (e.g., HTML_dpng, @@ -1196,20 +1289,17 @@ $pg{specialPGEnvironmentVars}{useOldAnswerMacros} = 0; $pg{specialPGEnvironmentVars}{problemPreamble} = { TeX => '', HTML=> '' }; $pg{specialPGEnvironmentVars}{problemPostamble} = { TeX => '', HTML=>'' }; -# set the address for accessing the R server -$pg{specialPGEnvironmentVars}{Rserve} = { host => "localhost" }; - # this snippet checks to see if Moodle has already called MathJax # $pg{specialPGEnvironmentVars}{problemPreamble} = { TeX => '', HTML=> < -# if (MathJax.Hub.Startup.params.config && MathJax.Hub.config.config.length) { -# MathJax.Hub.Config({ -# config: [], -# skipStartupTypeset: false -# }); -# } -# +# # END_PREAMBLE # @@ -1240,17 +1330,18 @@ $pg{specialPGEnvironmentVars}{Rserve} = { host => "localhost" }; # should appear as [qw(Mymodule.pm, Dependency1.pm, Dependency2.pm)] ${pg}{modules} = [ - [qw(Encode)], + [qw(Encode)], [qw(Encode::Encoding)], - [qw(HTML::Parser)], - [qw(HTML::Entities)], + [qw(HTML::Parser)], + [qw(HTML::Entities)], [qw(DynaLoader)], [qw(Encode)], [qw(Exporter )], [qw(GD)], [qw(AlgParser AlgParserWithImplicitExpand Expr ExprWithImplicitExpand utf8)], [qw(AnswerHash AnswerEvaluator)], - [qw(WWPlot)], # required by Circle (and others) + [qw(LaTeXImage)], + [qw(WWPlot)], # required by Circle (and others) [qw(Circle)], [qw(Class::Accessor)], [qw(Complex)], @@ -1262,7 +1353,7 @@ ${pg}{modules} = [ [qw(Label)], [qw(ChoiceList)], [qw(Match)], - [qw(MatrixReal1)], # required by Matrix + [qw(MatrixReal1)], # required by Matrix [qw(Matrix)], [qw(Multiple)], [qw(PGrandom)], @@ -1272,18 +1363,17 @@ ${pg}{modules} = [ [qw(VectorField)], [qw(Parser Value)], [qw(Parser::Legacy)], - [qw(Statistics)], -# [qw(SaveFile)], -# [qw(Chromatic)], # for Northern Arizona graph problems -# # -- follow instructions at libraries/nau_problib/lib/README to install - [qw(Applet FlashApplet JavaApplet CanvasApplet GeogebraWebApplet)], + [qw(Statistics)], + #[qw(Chromatic)], # for Northern Arizona graph problems + [qw(Applet GeogebraWebApplet)], [qw(PGcore PGalias PGresource PGloadfiles PGanswergroup PGresponsegroup Tie::IxHash)], [qw(Locale::Maketext)], [qw(WeBWorK::Localize)], [qw(JSON)], - [qw(Rserve Class::Tiny IO::Handle)], + [qw(Rserve Class::Tiny IO::Handle)], + [qw(DragNDrop)], + [qw(Types::Serialiser)], [qw(Mojo::Exception)], - [qw(TikZImage)], ]; ##### Problem creation defaults @@ -1303,7 +1393,6 @@ $problemDefaults{max_attempts} = -1; # Library Browser, Problem Editor or Hmwk Sets Editor to add problems to a set # or when this value is left blank in an imported set definition file. Note that # setting this to -1 disables the showMeAnother button -# and setting this to -2 uses the $pg{options}{showMeAnotherDefault} setting $problemDefaults{showMeAnother} = -2; #The default attempts to open children value to use when adding @@ -1341,10 +1430,10 @@ $pg{ansEvalDefaults} = { useBaseTenLog => 0, defaultDisplayMatrixStyle => "[s]", # left delimiter, middle line delimiters, right delimiter enableReducedScoring => 0, - reducedScoringPeriod => 0, # Default length of Reduced Scoring Period in minutes - reducedScoringValue => .75, # Percent of score students recieve in Reduced Scoring Period - timeAssignDue => "11:59pm", - assignOpenPriorToDue => 14400, # a number of minutes (default is 10 days) + reducedScoringPeriod => 0, # Default length of Reduced Scoring Period in minutes + reducedScoringValue => .75, # Percent of score students receive in Reduced Scoring Period + timeAssignDue => "11:59pm", + assignOpenPriorToDue => 14400, # a number of minutes (default is 10 days) answersOpenAfterDueDate => 2880 # number of minutes (default is 2 days) }; @@ -1366,9 +1455,9 @@ $pgRoot = $pg{directories}{root}; ################################################################################ $webservices = { enableCourseActions => 0, # enable createCourse, addUser, dropUser - enableCourseActionsLog => 0,# enable logging of course actions - # will log when courses are created and - # when students are added or dropped + enableCourseActionsLog => 0 ,# enable logging of course actions + # will log when courses are created and + # when students are added or dropped courseActionsLogfile => "$webworkDirs{logs}/courseactions.log", # enable this to assign all visible homework sets to new students # added by webservices @@ -1376,47 +1465,12 @@ $webservices = { }; -################################################################################ -# Temporary hack for displaying the different versions of the editors -################################################################################ - -# These configurations can be overridden -# in course.conf file to tune the behavior for individual courses -# The items below can be placed in localOverrides.conf override the settings in this file -# One can also use $showeditors{classlisteditor1}=0; to override a setting. -%showeditors = ( - ww3 => 1, - classlisteditor1 => 0, #classlisteditor1 is deprecated in favor of classlisteditor2 - classlisteditor2 => 1, - - homeworkseteditor1 => 0, - homeworkseteditor2 => 1, - - problemsetdetail1 => 0, - problemsetdetail2 => 1, - - librarybrowsernojs => 0, - librarybrowser1 => 1, - librarybrowser2 => 0, - librarybrowser3 => 0, - - pgproblemeditor1 => 0, - pgproblemeditor2 => 0,#pgproblemeditor2 is deprecated in favor of pgproblemeditor3 - pgproblemeditor3 => 1, - simplepgeditor => 0 -); - ############################################################################### -# DragMath and MathView editors +# Math entry assistance ############################################################################### -# DragMath is disabled by default; can enable it in course.conf file -# is DragMath even a thing any more? -$pg{specialPGEnvironmentVars}{DragMath} = 0; $pg{specialPGEnvironmentVars}{entryAssist} = 'MathQuill'; -$pg{specialPGEnvironmentVars}{MathView} = 0; -$pg{specialPGEnvironmentVars}{WirisEditor} = 0; -$pg{specialPGEnvironmentVars}{MathQuill} = 1; + ############################################################################### # default Homework Config settings ############################################################################### @@ -1439,7 +1493,7 @@ $pg{options}{enableProgressBar} = 1; # WeBWorK::ContentGenerator::Instructor::Config ################################################################################ -# Configuation data +# Configuration data # It is organized by section. The allowable types are # 'text' for a text string (no quote marks allowed), # 'number' for a number, @@ -1450,369 +1504,665 @@ $pg{options}{enableProgressBar} = 1; # can be independently picked yes/no as checkboxes # Localization Info: The doc strings in this portion are reproduced in -# lib/WeBWorK/Localize.pm soley so that xgettext.pl will +# lib/WeBWorK/Localize.pm solely so that xgettext.pl will # include them when creating .pot files. # If you change these strings you should make the corresponding changes in # Localize.pm +# This is a dummy function used to mark strings in the config values for localization. +# The method in lib/WeBWorK/Utils.pm cannot be used here. +sub x { return @_; } + $ConfigValues = [ - ['General', - { var => 'courseFiles{course_info}', - doc => 'Name of course information file', - doc2 => 'The name of course information file (located in the templates directory). Its contents are displayed in the right panel next to the list of homework sets.', - type => 'text' + [ + x('General'), + { + var => 'courseFiles{course_info}', + doc => x('Name of course information file'), + doc2 => x( + 'The name of course information file (located in the templates directory). ' + . 'Its contents are displayed in the right panel next to the list of homework sets.' + ), + type => 'text' }, { - var => 'defaultTheme', - doc => 'Theme (refresh page after saving changes to reveal new theme.)', - doc2 => 'There are currently two themes (or skins) to choose from: math3 and math4. The theme specifies a unified look and feel for the WeBWorK course web pages.', - values => [qw(math3 math4)], - type => 'popuplist', - hashVar => '{defaultTheme}' + var => 'defaultTheme', + doc => x('Theme (refresh page after saving changes to reveal new theme.)'), + doc2 => x( + 'There is one main theme to choose from: math4. It has two variants, math4-green and math4-red. ' + . 'The theme specifies a unified look and feel for the WeBWorK course web pages.' + ), + values => [qw(math4 math4-green math4-red)], + type => 'popuplist', + hashVar => '{defaultTheme}' }, - { var => 'language', - doc => 'Language (refresh page after saving changes to reveal new language.)', - doc2 => 'WeBWorK currently has translations for four languages: "English en", "Turkish tr", "Spanish es", and "French fr" ', - values => [qw(en tr es fr zh_hk heb)], - type => 'popuplist' + { + var => 'language', + doc => x('Language (refresh page after saving changes to reveal new language.)'), + doc2 => x('WeBWorK currently has translations for the languages listed in the course configuration.'), + values => [qw(en tr es fr zh-HK he)], + type => 'popuplist' }, - { var => 'perProblemLangAndDirSettingMode', - doc => 'Mode in which the LANG and DIR settings for a single problem are determined.', - doc2 => 'Mode in which the LANG and DIR settings for a single problem are determined.

The system will set the LANGuage attribute to either a value determined from the problem, a course-wide default, or the system default of en-US, depending on the mode selected. The tag will only be added to the DIV enclosing the problem if it is different than the value which should be set in the main HTML tag set for the entire course based on the course language.

There are two options for the DIRection attribute: \"ltr\" for left-to-write sripts, and \"rtl\" for right-to-left scripts like Arabic and Hebrew.

The DIRection attribute is needed to trigger proper display of the question text when the problem text-direction is different than that used by the current language of the course. For example, English problems from the library browser would display improperly in RTL mode for a Hebrew course, unless the problen Direction is set to LTR.

The feature to set a problem language and direction was only added in 2018 to the PG language, so most problems will not declare their language, and the system needs to fall back to determining the language and direction in a different manner. The OPL itself is all English, so the system wide fallback is to en-US in LTR mode.

Since the defaults fall back to the LTR direction, most sites should be fine with the \"auto::\" mode, but may want to select the one which matches their course language. The mode \"force::ltr\" would also be an option for a course which runs into trouble with the \"auto\" modes.

Modes:

', - values => [qw(none auto:: force::ltr force::rtl force:en:ltr auto:en:ltr force:tr:ltr auto:tr:ltr force:es:ltr auto:es:ltr force:fr:ltr auto:fr:ltr force:zh_hk:ltr auto:zh_hk:ltr force:he:rtl auto:he:rtl )], - type => 'popuplist' + { + var => 'perProblemLangAndDirSettingMode', + doc => x('Mode in which the LANG and DIR settings for a single problem are determined.'), + doc2 => x( + 'Mode in which the LANG and DIR settings for a single problem are determined.

The system will set ' + . 'the LANGuage attribute to either a value determined from the problem, a course-wide default, ' + . 'or the system default, depending on the mode selected. The tag will only be added to ' + . 'the DIV enclosing the problem if it is different than the value which should be set in the ' + . 'main HTML tag set for the entire course based on the course language.

There are two options ' + . 'for the DIRection attribute: "ltr" for left-to-write sripts, and "rtl" for right-to-left ' + . 'scripts like Arabic and Hebrew.

The DIRection attribute is needed to trigger proper display ' + . 'of the question text when the problem text-direction is different than that used by the current ' + . 'language of the course. For example, English problems from the library browser would display ' + . 'improperly in RTL mode for a Hebrew course, unless the problen Direction is set to LTR.' + . '

The feature to set a problem language and direction was only added in 2018 to the PG ' + . 'language, so most problems will not declare their language, and the system needs to fall ' + . 'back to determining the language and direction in a different manner. The OPL itself is all ' + . 'English, so the system wide fallback is to en-US in LTR mode.

Since the defaults fall back ' + . 'to the LTR direction, most sites should be fine with the "auto::" mode, but may want to select ' + . 'the one which matches their course language. The mode "force::ltr" would also be an option for ' + . 'a course which runs into trouble with the "auto" modes.

Modes:

' + ), + values => [ + qw(none auto:: force::ltr force::rtl force:en:ltr auto:en:ltr force:tr:ltr auto:tr:ltr force:es:ltr + auto:es:ltr force:fr:ltr auto:fr:ltr force:zh_hk:ltr auto:zh_hk:ltr force:he:rtl auto:he:rtl) + ], + type => 'popuplist' }, - { var => 'sessionKeyTimeout', - doc => 'Inactivity time before a user is required to login again', - doc2 => 'Length of time, in seconds, a user has to be inactive before he is required to login again.

This value should be entered as a number, so as 3600 instead of 60*60 for one hour', - type => 'number' + { + var => 'sessionKeyTimeout', + doc => x('Inactivity time before a user is required to login again'), + doc2 => x( + 'Length of time, in seconds, a user has to be inactive before he is required to login again.

' + . 'This value should be entered as a number, so as 3600 instead of 60*60 for one hour' + ), + type => 'number' }, - { var => 'siteDefaults{timezone}', - doc => 'Timezone for the course', - doc2 => 'Some servers handle courses taking place in different timezones. If this course is not showing the correct timezone, enter the correct value here. The format consists of unix times, such as "America/New_York","America/Chicago", "America/Denver", "America/Phoenix" or "America/Los_Angeles". Complete list: TimeZoneFiles', - type => 'timezone', - hashVar => '{siteDefaults}->{timezone}' + { + var => 'siteDefaults{timezone}', + doc => x('Timezone for the course'), + doc2 => x( + 'Some servers handle courses taking place in different timezones. If this course is not showing ' + . 'the correct timezone, enter the correct value here. The format consists of unix times, such ' + . 'as "America/New_York","America/Chicago", "America/Denver", "America/Phoenix" or ' + . '"America/Los_Angeles". Complete list: ' + . 'TimeZoneFiles' + ), + type => 'timezone', + hashVar => '{siteDefaults}->{timezone}' }, - { - var => 'hardcopyTheme', - doc => 'Hardcopy Theme', - doc2 => 'There are currently two hardcopy themes to choose from: One Column and Two Columns. The Two Columns theme is the traditional hardcopy format. The One Column theme uses the full page width for each column', - values => $hardcopyThemes, - labels => $hardcopyThemeNames, - type => 'popuplist', - hashVar => '{hardcopyTheme}' + { + var => 'hardcopyTheme', + doc => x('Hardcopy Theme'), + doc2 => x( + 'There are currently two hardcopy themes to choose from: One Column and Two Columns. The Two ' + . 'Columns theme is the traditional hardcopy format. The One Column theme uses the full page ' + . 'width for each column' + ), + values => $hardcopyThemes, + labels => $hardcopyThemeNames, + type => 'popuplist', + hashVar => '{hardcopyTheme}' }, - { var => 'options{useDateTimePicker}', - doc => 'Use Date Picker', - doc2 => 'Enables the use of the date picker on the Homework Sets Editor 2 page and the Problem Set Detail page', - type => 'boolean' - }, - { var => 'showCourseHomeworkTotals', - doc => 'Show Total Homework Grade on Grades Page', - doc2 => 'When this is on students will see a line on the Grades page which has their total cumulative homework score. This score includes all sets assigned to the student.', - type => 'boolean' - }, - - { var => 'pg{options}{enableProgressBar}', - doc => 'Enable Progress Bar and current problem highlighting', - doc2 => 'A switch to govern the use of a Progress Bar for the student; this also enables/disables the highlighting of the current problem in the side bar, and whether it is correct (✓), in progress (…), incorrect (✗), or unattempted (no symbol).', - type => 'boolean' - }, - { var => 'pg{timeAssignDue}', - doc => 'Default Time that the Assignment is Due', - doc2 => 'The time of the day that the assignment is due. This can be changed on an individual basis, but WeBWorK will use this value for default when a set is created.', - type => 'time', - hashVar => '{pg}->{timeAssignDue}' - }, - { var => 'pg{assignOpenPriorToDue}', - doc => 'Default Amount of Time (in minutes) before Due Date that the Assignment is Open', - doc2 => 'The amount of time (in minutes) before the due date when the assignment is opened. You can change this for individual homework, but WeBWorK will use this value when a set is created. ', - type => 'number', - hashVar => '{pg}->{assignOpenPriorToDue}' - }, - { var => 'pg{answersOpenAfterDueDate}', - doc => 'Default Amount of Time (in minutes) after Due Date that Answers are Open', - doc2 => 'The amount of time (in minutes) after the due date that the Answers are available to student to view. You can change this for individual homework, but WeBWorK will use this value when a set is created.', - type => 'number', - hashVar => '{pg}->{answersOpenAfterDueDate}' - }, - ], - ['Optional Modules', - { var => 'achievementsEnabled', - doc => 'Enable Course Achievements', - doc2 => 'Activiating this will enable Mathchievements for webwork. Mathchievements can be managed by using the Achievement Editor link.', - type => 'boolean' - }, - { var => 'achievementPointsPerProblem', - doc => 'Achievement Points Per Problem', - doc2 => 'This is the number of achievement points given to each user for completing a problem.', - type => 'number' - }, - { var => 'achievementItemsEnabled', - doc => 'Enable Achievement Items', - doc2 => 'Activiating this will enable achievement items. This features rewards students who earn achievements with items that allow them to affect their homework in a limited way.', - type => 'boolean' - }, - { var => 'options{enableConditionalRelease}', - doc => 'Enable Conditional Release', - doc2 => 'Enables the use of the conditional release system. To use conditional release you need to specify a list of set names on the Problem Set Detail Page, along with a minimum score. Students will not be able to access that homework set until they have achieved the minimum score on all of the listed sets.', - type => 'boolean' - }, - { var => 'pg{ansEvalDefaults}{enableReducedScoring}', - doc => 'Enable Reduced Scoring', - doc2 => 'This sets whether the Reduced Scoring system will be enabled. If enabled you will need to set the default length of the reduced scoring period and the value of work done in the reduced scoring period below.

To use this, you also have to enable Reduced Scoring for individual assignments and set their Reduced Scoring Dates by editing the set data.

This works with the avg_problem_grader (which is the the default grader) and the std_problem_grader (the all or nothing grader). It will work with custom graders if they are written appropriately.', - type => 'boolean' + { + var => 'showCourseHomeworkTotals', + doc => x('Show Total Homework Grade on Grades Page'), + doc2 => x( + 'When this is on students will see a line on the Grades page which has their total cumulative ' + . 'homework score. This score includes all sets assigned to the student.' + ), + type => 'boolean' }, - { var => 'pg{ansEvalDefaults}{reducedScoringValue}', - doc => 'Value of work done in Reduced Scoring Period' , - doc2 => '

After the Reduced Scoring Date all additional work done by the student counts at a reduced rate. Here is where you set the reduced rate which must be a percentage. For example if this value is 50% and a student views a problem during the Reduced Scoring Period, they will see the message "You are in the Reduced Scoring Period: All additional work done counts 50% of the original."

To use this, you also have to enable Reduced Scoring and set the Reduced Scoring Date for individual assignments by editing the set data using the Hmwk Sets Editor.

This works with the avg_problem_grader (which is the the default grader) and the std_problem_grader (the all or nothing grader). It will work with custom graders if they are written appropriately.

' , - labels=>{'0.1' => '10%', - '0.15' => '15%', - '0.2' => '20%', - '0.25' => '25%', - '0.3' => '30%', - '0.35' => '35%', - '0.4' => '40%', - '0.45' => '45%', - '0.5' => '50%', - '0.55' => '55%', - '0.6' => '60%', - '0.65' => '65%', - '0.7' => '70%', - '0.75' => '75%', - '0.8' => '80%', - '0.85' => '85%', - '0.9' => '90%', - '0.95' => '95%', - '1' => '100%'}, - values => [qw(1 0.95 0.9 0.85 0.8 0.75 0.7 0.65 0.6 0.55 0.5 0.45 0.4 0.35 0.3 0.25 0.2 0.15 0.1)], - type => 'popuplist' + { + var => 'pg{options}{enableProgressBar}', + doc => x('Enable Progress Bar and current problem highlighting'), + doc2 => x( + 'A switch to govern the use of a Progress Bar for the student; this also enables/disables the ' + . 'highlighting of the current problem in the side bar, and whether it is correct (✓), ' + . 'in progress (…), incorrect (✗), or unattempted (no symbol).' + ), + type => 'boolean' }, - { var => 'pg{ansEvalDefaults}{reducedScoringPeriod}', - doc => 'Default Length of Reduced Scoring Period in minutes', - doc2 => 'The Reduced Scoring Period is the default period before the due date during which all additional work done by the student counts at a reduced rate. When enabling reduced scoring for a set the reduced scoring date will be set to the due date minus this number. The reduced scoring date can then be changed. If the Reduced Scoring is enabled and if it is after the reduced scoring date, but before the due date, a message like "This assignment has a Reduced Scoring Period that begins 11/08/2009 at 06:17pm EST and ends on the due date, 11/10/2009 at 06:17pm EST. During this period all additional work done counts 50% of the original." will be displayed.' , - type => 'number' - }, - { var => 'pg{options}{enableShowMeAnother}', - doc => 'Enable Show Me Another button', - doc2 => 'Enables use of the Show Me Another button, which offers the student a newly-seeded version of the current problem, complete with solution (if it exists for that problem).', - type => 'boolean' - }, - { var => 'pg{options}{showMeAnotherDefault}', - doc => 'Default number of attempts before Show Me Another can be used (-1 => Never)', - doc2 => 'This is the default number of attempts before show me another becomes available to students. It can be set to -1 to disable show me another by default.', - type => 'number' - }, - { var => 'pg{options}{showMeAnotherMaxReps}', - doc => 'Maximum times Show me Another can be used per problem (-1 => unlimited)', - doc2 => 'The Maximum number of times Show me Another can be used per problem by a student. If set to -1 then there is no limit to the number of times that Show Me Another can be used.', - type => 'number' - }, - { var => 'pg{options}{showMeAnother}', - doc => 'List of options for Show Me Another button', - doc2 => 'Note: there is very little point enabling the button unless you check at least one of these options - the students would simply see a new version that they can not attempt or learn from.

', - min => 0, - values => ["SMAcheckAnswers", "SMAshowSolutions","SMAshowCorrect","SMAshowHints"], - type => 'checkboxlist' - }, - - { var => 'pg{options}{enablePeriodicRandomization}', - doc => 'Enable periodic re-randomization of problems', - doc2 => 'Enables periodic re-randomization of problems after a given number of attempts. Student would have to click Request New Version to obtain new version of the problem and to continue working on the problem', - type => 'boolean' - }, - { var => 'pg{options}{periodicRandomizationPeriod}', - doc => 'The default number of attempts between re-randomization of the problems ( 0 => never)', - doc2 => 'The default number of attempts before the problem is re-randomized. ( 0 => never )', - type => 'number' - }, - ], - ['Permissions', - { var => 'permissionLevels{login}', - doc => 'Allowed to login to the course', - type => 'permission' + { + var => 'pg{timeAssignDue}', + doc => x('Default Time that the Assignment is Due'), + doc2 => x( + 'The time of the day that the assignment is due. This can be changed on an individual basis, ' + . 'but WeBWorK will use this value for default when a set is created.' + ), + type => 'time', + hashVar => '{pg}->{timeAssignDue}' }, - { var => 'permissionLevels{change_password}', - doc => 'Allowed to change their password', - doc2 => 'Users at this level and higher are allowed to change their password. Normally guest users are not allowed to change their password.', - type => 'permission' + { + var => 'pg{assignOpenPriorToDue}', + doc => x('Default Amount of Time (in minutes) before Due Date that the Assignment is Open'), + doc2 => x( + 'The amount of time (in minutes) before the due date when the assignment is opened. You can change ' + . 'this for individual homework, but WeBWorK will use this value when a set is created.' + ), + type => 'number', + hashVar => '{pg}->{assignOpenPriorToDue}' }, - { var => 'permissionLevels{become_student}', - doc => 'Allowed to act as another user', - type => 'permission' + { + var => 'pg{answersOpenAfterDueDate}', + doc => x('Default Amount of Time (in minutes) after Due Date that Answers are Open'), + doc2 => x( + 'The amount of time (in minutes) after the due date that the Answers are available to student to ' + . 'view. You can change this for individual homework, but WeBWorK will use this value when a set ' + . 'is created.' + ), + type => 'number', + hashVar => '{pg}->{answersOpenAfterDueDate}' }, - { var => 'permissionLevels{submit_feedback}', - doc => 'Can e-mail instructor', - doc2 => 'Only this permission level and higher get buttons for sending e-mail to the instructor.', - type => 'permission' + ], + [ + x('Optional Modules'), + { + var => 'achievementsEnabled', + doc => x('Enable Course Achievements'), + doc2 => x( + 'Activiating this will enable Mathchievements for webwork. Mathchievements can be managed ' + . 'by using the Achievement Editor link.' + ), + type => 'boolean' }, - { var => 'permissionLevels{record_answers_when_acting_as_student}', - doc => 'Can submit answers for a student', - doc2 => 'When acting as a student, this permission level and higher can submit answers for that student.', - type => 'permission' + { + var => 'achievementPointsPerProblem', + doc => x('Achievement Points Per Problem'), + doc2 => x('This is the number of achievement points given to each user for completing a problem.'), + type => 'number' }, - { var => 'permissionLevels{report_bugs}', - doc => 'Can report bugs', - doc2 => 'Users with at least this permission level get a link in the left panel for reporting bugs to the bug tracking system in Rochester', - type => 'permission' + { + var => 'achievementItemsEnabled', + doc => x('Enable Achievement Rewards'), + doc2 => x( + 'Activating this will enable achievement rewards. This feature allows students to earn rewards by ' + . 'completing achievements that allow them to affect their homework in a limited way.' + ), + type => 'boolean' }, - { var => 'permissionLevels{change_email_address}', - doc => 'Allowed to change their e-mail address', - doc2 => 'Users at this level and higher are allowed to change their e-mail address. Normally guest users are not allowed to change the e-mail address since it does not make sense to send e-mail to anonymous accounts.', - type => 'permission' + { + var => 'achievementExcludeSet', + doc => x('List of sets excluded from achievements'), + doc2 => x( + 'Comma separated list of set names that are excluded from all achievements. ' + . 'No achievement points and badges can be earned for submitting problems in these sets. ' + . 'Note that underscores (_) must be used for spaces in set names.' + ), + type => 'list' }, - { var => 'permissionLevels{view_answers}', - doc => 'Allowed to view past answers', - doc2 => 'These users and higher get the "Show Past Answers" button on the problem page.', - type => 'permission' + { + var => 'options{enableConditionalRelease}', + doc => x('Enable Conditional Release'), + doc2 => x( + 'Enables the use of the conditional release system. To use conditional release you need to specify a ' + . 'list of set names on the Problem Set Detail Page, along with a minimum score. Students will ' + . 'not be able to access that homework set until they have achieved the minimum score on all of ' + . 'the listed sets.' + ), + type => 'boolean' }, - { var => 'permissionLevels{view_unopened_sets}', - doc => 'Allowed to view problems in sets which are not open yet', - type => 'permission' + { + var => 'pg{ansEvalDefaults}{enableReducedScoring}', + doc => x('Enable Reduced Scoring'), + doc2 => x( + '

This sets whether the Reduced Scoring system will be enabled. If enabled you will need to set the ' + . 'default length of the reduced scoring period and the value of work done in the reduced scoring ' + . 'period below.

To use this, you also have to enable Reduced Scoring for individual ' + . 'assignments and set their Reduced Scoring Dates by editing the set data.

This works with ' + . 'the avg_problem_grader (which is the the default grader) and the std_problem_grader (the all ' + . 'or nothing grader). It will work with custom graders if they are written appropriately.

' + ), + type => 'boolean' }, - { var => 'permissionLevels{show_correct_answers_before_answer_date}', - doc => 'Allowed to see the correct answers before the answer date', - type => 'permission' + { + var => 'pg{ansEvalDefaults}{reducedScoringValue}', + doc => x('Value of work done in Reduced Scoring Period'), + doc2 => x( + '

After the Reduced Scoring Date all additional work done by the student counts at a reduced rate. ' + . 'Here is where you set the reduced rate which must be a percentage. For example if this value ' + . 'is 50% and a student views a problem during the Reduced Scoring Period, they will see the ' + . 'message "You are in the Reduced Scoring Period: All additional work done counts 50% of the ' + . 'original."

To use this, you also have to enable Reduced Scoring and set the Reduced ' + . 'Scoring Date for individual assignments by editing the set data using the Hmwk Sets Editor.

' + . '

This works with the avg_problem_grader (which is the the default grader) and the ' + . 'std_problem_grader (the all or nothing grader). It will work with custom graders if they ' + . 'are written appropriately.

' + ), + labels => { + '0.1' => '10%', + '0.15' => '15%', + '0.2' => '20%', + '0.25' => '25%', + '0.3' => '30%', + '0.35' => '35%', + '0.4' => '40%', + '0.45' => '45%', + '0.5' => '50%', + '0.55' => '55%', + '0.6' => '60%', + '0.65' => '65%', + '0.7' => '70%', + '0.75' => '75%', + '0.8' => '80%', + '0.85' => '85%', + '0.9' => '90%', + '0.95' => '95%', + '1' => '100%' + }, + values => [qw(1 0.95 0.9 0.85 0.8 0.75 0.7 0.65 0.6 0.55 0.5 0.45 0.4 0.35 0.3 0.25 0.2 0.15 0.1)], + type => 'popuplist' }, - { var => 'permissionLevels{show_solutions_before_answer_date}', - doc => 'Allowed to see solutions before the answer date', - type => 'permission' + { + var => 'pg{ansEvalDefaults}{reducedScoringPeriod}', + doc => x('Default Length of Reduced Scoring Period in minutes'), + doc2 => x( + 'The Reduced Scoring Period is the default period before the due date during which all additional work ' + . 'done by the student counts at a reduced rate. When enabling reduced scoring for a set the ' + . 'reduced scoring date will be set to the due date minus this number. The reduced scoring date ' + . 'can then be changed. If the Reduced Scoring is enabled and if it is after the reduced scoring ' + . 'date, but before the due date, a message like "This assignment has a Reduced Scoring Period ' + . 'that begins 11/08/2009 at 06:17pm EST and ends on the due date, 11/10/2009 at 06:17pm EST. ' + . 'During this period all additional work done counts 50% of the original." will be displayed.' + ), + type => 'number' + }, + { + var => 'pg{options}{enableShowMeAnother}', + doc => x('Enable Show Me Another button'), + doc2 => x( + 'Enables use of the Show Me Another button, which offers the student a newly-seeded version ' + . 'of the current problem, complete with solution (if it exists for that problem).' + ), + type => 'boolean' + }, + { + var => 'pg{options}{showMeAnotherDefault}', + doc => x('Default number of attempts before Show Me Another can be used (-1 => Never)'), + doc2 => x( + 'This is the default number of attempts before show me another becomes available to students. ' + . 'It can be set to -1 to disable show me another by default.' + ), + type => 'number' + }, + { + var => 'pg{options}{showMeAnotherMaxReps}', + doc => x('Maximum times Show me Another can be used per problem (-1 => unlimited)'), + doc2 => x( + 'The Maximum number of times Show me Another can be used per problem by a student. ' + . 'If set to -1 then there is no limit to the number of times that Show Me Another can be used.' + ), + type => 'number' + }, + { + var => 'pg{options}{showMeAnother}', + doc => x('List of options for Show Me Another button'), + doc2 => x( + 'Note: there is very little point enabling the ' + . 'button unless you check at least one of these options - the students would simply see a new ' + . 'version that they can not attempt or learn from.

' + ), + min => 0, + values => [ "SMAcheckAnswers", "SMAshowSolutions", "SMAshowCorrect", "SMAshowHints" ], + type => 'checkboxlist' + }, + { + var => 'pg{options}{enablePeriodicRandomization}', + doc => x('Enable periodic re-randomization of problems'), + doc2 => x( + 'Enables periodic re-randomization of problems after a given number of attempts. Student would have ' + . 'to click Request New Version to obtain new version of the problem and to continue working on ' + . 'the problem' + ), + type => 'boolean' + }, + { + var => 'pg{options}{periodicRandomizationPeriod}', + doc => x('The default number of attempts between re-randomization of the problems ( 0 => never)'), + doc2 => x('The default number of attempts before the problem is re-randomized. ( 0 => never )'), + type => 'number' + }, + { + var => 'pg{options}{showCorrectOnRandomize}', + doc => x('Show the correct answer to the current problem before re-randomization.'), + doc2 => x( + 'Show the correct answer to the current problem on the last attempt before a new version is ' + . 'requested.' + ), + type => 'boolean' + }, + ], + [ + x('Permissions'), + { + var => 'permissionLevels{login}', + doc => x('Allowed to login to the course'), + type => 'permission' + }, + { + var => 'permissionLevels{change_password}', + doc => x('Allowed to change their password'), + doc2 => x( + 'Users at this level and higher are allowed to change their password. ' + . 'Normally guest users are not allowed to change their password.' + ), + type => 'permission' + }, + { + var => 'permissionLevels{become_student}', + doc => x('Allowed to act as another user'), + type => 'permission' + }, + { + var => 'permissionLevels{submit_feedback}', + doc => x('Can e-mail instructor'), + doc2 => x('Only this permission level and higher get buttons for sending e-mail to the instructor.'), + type => 'permission' }, - { var => 'permissionLevels{can_show_old_answers}', - doc => 'Can show old answers', - doc2 => 'When viewing a problem, WeBWorK usually puts the previously submitted answer in the answer blank. Below this level, old answers are never shown. Typically, that is the desired behaviour for guest accounts.', + { + var => 'permissionLevels{record_answers_when_acting_as_student}', + doc => x('Can submit answers for a student'), + doc2 => + x('When acting as a student, this permission level and higher can submit answers for that student.'), + type => 'permission' + }, + { + var => 'permissionLevels{report_bugs}', + doc => x('Can report bugs'), + doc2 => x( + 'Users with at least this permission level get a link in the left panel for reporting bugs to the ' + . 'bug tracking system at bugs.webwork.maa.org.' + ), + type => 'permission' + }, + { + var => 'permissionLevels{change_email_address}', + doc => x('Allowed to change their e-mail address'), + doc2 => x( + 'Users at this level and higher are allowed to change their e-mail address. Normally guest users are ' + . 'not allowed to change the e-mail address since it does not make sense to send e-mail to ' + . 'anonymous accounts.' + ), + type => 'permission' + }, + { + var => 'permissionLevels{change_pg_display_settings}', + doc => x('Allowed to change display settings used in pg problems'), + doc2 => x( + 'Users at this level and higher are allowed to change display settings used in pg problems.' + . 'Note that if it is expected that there will be students that have vision impairments and ' + . 'MathQuill is enabled to assist with answer entry, then you should not set this permission to a ' + . 'level above student as those students may need to disable MathQuill.' + ), + type => 'permission' + }, + { + var => 'permissionLevels{view_answers}', + doc => x('Allowed to view past answers'), + doc2 => x('These users and higher get the "Show Past Answers" button on the problem page.'), + type => 'permission' + }, + { + var => 'permissionLevels{view_unopened_sets}', + doc => x('Allowed to view problems in sets which are not open yet'), + type => 'permission' + }, + { + var => 'permissionLevels{show_correct_answers_before_answer_date}', + doc => x('Allowed to see the correct answers before the answer date'), + type => 'permission' + }, + { + var => 'permissionLevels{show_solutions_before_answer_date}', + doc => x('Allowed to see solutions before the answer date'), + type => 'permission' + }, + { + var => 'permissionLevels{can_show_old_answers}', + doc => x('Can show old answers'), + doc2 => x( + 'When viewing a problem, WeBWorK usually puts the previously submitted answer in the answer blank. ' + . 'Below this level, old answers are never shown. Typically, that is the desired behaviour for ' + . 'guest accounts.' + ), + type => 'permission' + }, + { var => 'permissionLevels{navigation_allowed}', + doc => 'Allowed to view course home page', + doc2 => 'If a user does not have this permission, then the user will not be allowed to navigate to the ' + . 'course home page, i.e., the Homework Sets page. This should only be used for a course when LTI ' + . 'authentication is used, and is most useful when LTIGradeMode is set to homework. In this case the ' + . 'Homework Sets page is not useful and can even be confusing to students. To use this feature set ' + . 'this permission to "login_proctor".', type => 'permission' }, ], - ['PG - Problem Display/Answer Checking', - { var => 'pg{displayModes}', - doc => 'List of display modes made available to students', - doc2 => '

When viewing a problem, users may choose different methods of rendering formulas via an options box in the left panel. Here, you can adjust what display modes are listed.

Some display modes require other software to be installed on the server. Be sure to check that all display modes selected here work from your server.

The display modes are

You must use at least one display mode. If you select only one, then the options box will not give a choice of modes (since there will only be one active).

', - min => 1, - values => ["MathJax", "images", "plainText"], - type => 'checkboxlist' + [ + x('Problem Display/Answer Checking'), + { + var => 'pg{displayModes}', + doc => x('List of display modes made available to students'), + doc2 => x( + '

When viewing a problem, users may choose different methods of rendering formulas via an options ' + . 'box in the left panel. Here, you can adjust what display modes are listed.

Some display ' + . 'modes require other software to be installed on the server. Be sure to check that all display ' + . 'modes selected here work from your server.

The display modes are

You must use at least one display mode. If you select only ' + . 'one, then the options box will not give a choice of modes (since there will only be one active).' + . '

' + ), + min => 1, + values => [ "MathJax", "images", "plainText" ], + type => 'checkboxlist' }, - - { var => 'pg{options}{displayMode}', - doc => 'The default display mode', - doc2 => 'Enter one of the allowed display mode types above. See \'display modes entry\' for descriptions.', - min => 1, - values => [qw(MathJax images plainText)], - type => 'popuplist' + { + var => 'pg{options}{displayMode}', + doc => x('The default display mode'), + doc2 => + x('Enter one of the allowed display mode types above. See \'display modes entry\' for descriptions.'), + min => 1, + values => [qw(MathJax images plainText)], + type => 'popuplist' }, - - { var => 'pg{specialPGEnvironmentVars}{entryAssist}', - doc => 'Assist with the student answer entry process.', - doc2 => 'MathQuill renders students answers in real-time as they type on the keyboard.

MathView allows students to choose from a variety of common math structures (such as fractions and square roots) as they attempt to input their answers.

WIRIS provides a separate workspace for students to construct their response in a WYSIWYG environment.', - min => 1, - values => [qw(None MathQuill MathView WIRIS)], - type => 'popuplist' + { + var => 'pg{specialPGEnvironmentVars}{entryAssist}', + doc => x('Assist with the student answer entry process.'), + doc2 => x( + '

MathQuill renders students answers in real-time as they type on the keyboard.

MathView ' + . 'allows students to choose from a variety of common math structures (such as fractions and ' + . 'square roots) as they attempt to input their answers.

WIRIS provides a separate workspace ' + . 'for students to construct their response in a WYSIWYG environment.

' + ), + min => 1, + values => [qw(None MathQuill MathView WIRIS)], + type => 'popuplist' }, - - { var => 'pg{options}{showEvaluatedAnswers}', - doc => 'Display the evaluated student answer', - doc2 => 'Set to true to display the "Entered" column which automatically shows the evaluated student answer, e.g. 1 if student input is sin(pi/2). If this is set to false, e.g. to save space in the response area, the student can still see their evaluated answer by hovering the mouse pointer over the typeset version of their answer.', - type => 'boolean' + { + var => 'pg{options}{showEvaluatedAnswers}', + doc => x('Display the evaluated student answer'), + doc2 => x( + 'Set to true to display the "Entered" column which automatically shows the evaluated student answer, ' + . 'e.g., 1 if student input is sin(pi/2). If this is set to false, e.g., to save space in the ' + . 'response area, the student can still see their evaluated answer by clicking on the typeset ' + . 'version of their answer.' + ), + type => 'boolean' }, - { var => 'pg{ansEvalDefaults}{useBaseTenLog}', - doc => 'Use log base 10 instead of base e', - doc2 => 'Set to true for log to mean base 10 log and false for log to mean natural logarithm', - type => 'boolean' + { + var => 'pg{ansEvalDefaults}{useBaseTenLog}', + doc => x('Use log base 10 instead of base e'), + doc2 => x('Set to true for log to mean base 10 log and false for log to mean natural logarithm.'), + type => 'boolean' }, - - { var => 'pg{ansEvalDefaults}{useOldAnswerMacros}', - doc => 'Use older answer checkers', - doc2 => 'During summer 2005, a newer version of the answer checkers was implemented for answers which are functions and numbers. The newer checkers allow more functions in student answers, and behave better in certain cases. Some problems are specifically coded to use new (or old) answer checkers. However, for the bulk of the problems, you can choose what the default will be here.

Choosing false here means that the newer answer checkers will be used by default, and choosing true means that the old answer checkers will be used by default.', - type => 'boolean' - }, - - { var => 'pg{ansEvalDefaults}{numRelPercentTolDefault}', - doc => 'Allowed error, as a percentage, for numerical comparisons', - doc2 => "When numerical answers are checked, most test if the student's answer is close enough to the programmed answer be computing the error as a percentage of the correct answer. This value controls the default for how close the student answer has to be in order to be marked correct.

A value such as 0.1 means 0.1 percent error is allowed.", - type => 'number' + { + var => 'pg{specialPGEnvironmentVars}{useOldAnswerMacros}', + doc => x('Use older answer checkers'), + doc2 => x( + '

During summer 2005, a newer version of the answer checkers was implemented for answers which are ' + . 'functions and numbers. The newer checkers allow more functions in student answers, and behave ' + . 'better in certain cases. Some problems are specifically coded to use new (or old) answer ' + . 'checkers. However, for the bulk of the problems, you can choose what the default will be here.' + . '

Choosing false here means that the newer answer checkers will be used by default, ' + . 'and choosing true means that the old answer checkers will be used by default.

' + ), + type => 'boolean' + }, + { + var => 'pg{specialPGEnvironmentVars}{parseAlternatives}', + doc => x('Allow Unicode alternatives in student answers'), + doc2 => x( + 'Set to true to allow students to enter Unicode versions of some characters (like U+2212 for the ' + . 'minus sign) in their answers. One reason to allow this is that copying and pasting output ' + . 'from MathJax can introduce these characters, but it is also getting easier to enter these ' + . 'characters directory from the keyboard.' + ), + type => 'boolean' + }, + { + var => 'pg{specialPGEnvironmentVars}{convertFullWidthCharacters}', + doc => x('Automatically convert Full Width Unicode characters to their ASCII equivalents'), + doc2 => x( + 'Set to true to have Full Width Unicode character (U+FF01 to U+FF5E) converted to their ASCII ' + . 'equivalents (U+0021 to U+007E) automatically in MathObjects. This may be valuable for Chinese ' + . 'keyboards, for example, that automatically use Full Width characters for parentheses and ' + . 'commas.' + ), + type => 'boolean' + }, + { + var => 'pg{ansEvalDefaults}{numRelPercentTolDefault}', + doc => x('Allowed error, as a percentage, for numerical comparisons'), + doc2 => x( + 'When numerical answers are checked, most test if the student\'s answer is close enough to the ' + . 'programmed answer be computing the error as a percentage of the correct answer. This value ' + . 'controls the default for how close the student answer has to be in order to be marked correct.' + . '

A value such as 0.1 means 0.1 percent error is allowed.

' + ), + type => 'number' + }, + { + var => 'pg{specialPGEnvironmentVars}{waiveExplanations}', + doc => x('Skip explanation essay answer fields'), + doc2 => x( + 'Some problems have an explanation essay answer field, typically following a simpler answer field. ' + . 'For example, find a certain derivative using the definition. An answer blank would be present ' + . 'for the derivative to be automatically checked, and then there would be a separate essay answer ' + . 'field to show the steps of actually using the definition of the derivative, to be scored ' + . 'manually. With this setting, the essay explanation fields are supperessed. Instructors may ' + . 'use the exercise without incurring the manual grading.' + ), + type => 'boolean' }, ], - ['E-Mail', - { var => 'mail{feedbackSubjectFormat}', - doc => 'Format for the subject line in feedback e-mails', - doc2 => 'When students click the Email Instructor button to send feedback, WeBWorK fills in the subject line. Here you can set the subject line. In it, you can have various bits of information filled in with the following escape sequences.

', - width => 45, - type => 'text' + [ + x('E-Mail'), + { + var => 'mail{feedbackSubjectFormat}', + doc => x('Format for the subject line in feedback e-mails'), + doc2 => x( + 'When students click the Email Instructor button to send feedback, WeBWorK fills in the ' + . 'subject line. Here you can set the subject line. In it, you can have various bits of ' + . 'information filled in with the following escape sequences.

' + ), + width => 45, + type => 'text' }, - { var => 'mail{feedbackVerbosity}', - doc => 'E-mail verbosity level', - doc2 => 'The e-mail verbosity level controls how much information is automatically added to feedback e-mails. Levels are
  1. Simple: send only the feedback comment and context link
  2. Standard: as in Simple, plus user, set, problem, and PG data
  3. Debug: as in Standard, plus the problem environment (debugging data)
', - labels=>{'0' => 'Simple', - '1' => 'Standard', - '2' => 'Debug'}, - values => [qw(0 1 2)], - type => 'popuplist' + { + var => 'mail{feedbackVerbosity}', + doc => x('E-mail verbosity level'), + doc2 => x( + 'The e-mail verbosity level controls how much information is automatically added to feedback e-mails. ' + . 'Levels are
  1. Simple: send only the feedback comment and context link
  2. ' + . '
  3. Standard: as in Simple, plus user, set, problem, and PG data
  4. ' + . '
  5. Debug: as in Standard, plus the problem environment (debugging data)
  6. ' + . '
' + ), + labels => { + '0' => 'Simple', + '1' => 'Standard', + '2' => 'Debug' + }, + values => [qw(0 1 2)], + type => 'popuplist' }, - { var => 'mail{allowedRecipients}', - doc => 'E-mail addresses which can receive e-mail from a pg problem', - doc2 => 'List of e-mail addresses to which e-mail can be sent by a problem. Professors need to be added to this list if questionaires are used, or other WeBWorK problems which send e-mail as part of their answer mechanism.', - type => 'list' + { + var => 'mail{allowedRecipients}', + doc => x('E-mail addresses which can receive e-mail from a pg problem'), + doc2 => x( + 'List of e-mail addresses to which e-mail can be sent by a problem. Professors need to be added to ' + . 'this list if questionaires are used, or other WeBWorK problems which send e-mail as part of ' + . 'their answer mechanism.' + ), + type => 'list' }, - { var => 'permissionLevels{receive_feedback}', - doc => 'E-mail feedback from students automatically sent to this permission level and higher:', - doc2 => 'Users with this permssion level or greater will automatically be sent feedback from students (generated when they use the "Contact instructor" button on any problem page). In addition the feedback message will be sent to addresses listed below. To send ONLY to addresses listed below set permission level to "nobody".', - type => 'permission' + { + var => 'permissionLevels{receive_feedback}', + doc => x('E-mail feedback from students automatically sent to this permission level and higher'), + doc2 => x( + 'Users with this permssion level or greater will automatically be sent feedback from students ' + . '(generated when they use the "Contact instructor" button on any problem page). In addition ' + . 'the feedback message will be sent to addresses listed below. To send ONLY to addresses listed ' + . 'below set permission level to "nobody".' + ), + type => 'permission' }, - { var => 'mail{feedbackRecipients}', - doc => 'Additional addresses for receiving feedback e-mail.', - doc2 => 'By default, feeback is sent to all users above who have permission to receive feedback. Feedback is also sent to any addresses specified in this blank. Separate email address entries by commas.', - type => 'list' + { + var => 'mail{feedbackRecipients}', + doc => x('Additional addresses for receiving feedback e-mail'), + doc2 => x( + 'By default, feedback is sent to all users above who have permission to receive feedback. Feedback ' + . 'is also sent to any addresses specified in this blank. Separate email address entries by ' + . 'commas.' + ), + type => 'list' }, - { var => 'feedback_by_section', - doc => 'Feedback by Section.', - doc2 => 'By default, feeback is always sent to all users specified to recieve feedback. This variable sets the system to only email feedback to users who have the same section as the user initiating the feedback. I.E. Feedback will only be sent to section leaders.', - type => 'boolean' + { + var => 'feedback_by_section', + doc => x('Feedback by Section.'), + doc2 => x( + 'By default, feedback is always sent to all users specified to recieve feedback. This variable sets ' + . 'the system to only email feedback to users who have the same section as the user initiating the ' + . 'feedback. I.e., feedback will only be sent to section leaders.' + ), + type => 'boolean' }, - ], -# PGSimple is not used for now GG -# ['Editor', -# { var => 'editor{author}', -# doc => 'Default name of the problem author', -# doc2 => 'In the PGSimpleEditor, this will automatically fill the problem Author field.', -# width => 45, -# type => 'text' -# }, -# { var => 'editor{authorInstitute}', -# doc => 'Institute of the problem author', -# doc2 => 'In the PGSimpleEditor, this will automatically fill the institute field of the problem author', -# width => 45, -# type => 'text' -# }, -# { var => 'editor{textTitle}', -# doc => 'Text Title of the problems', -# doc2 => 'In the PGSimpleEditor, this will automatically fill the text title field', -# width => 45, -# type => 'text' -# }, -# { var => 'editor{textEdition}', -# doc => 'Text Edition of the problems', -# doc2 => 'In the PGSimpleEditor, this will automatically fill the text edition field', -# width => 45, -# type => 'text' -# }, -# { var => 'editor{textAuthor}', -# doc => 'Text Author of the problems', -# doc2 => 'In the PGSimpleEditor, this will automatically fill the text author field', -# width => 45, -# type => 'text' -# }] ]; - - - ################################################################################ # Site wide overrides are entered into the file localOverrides.conf ################################################################################ - - -# include("conf/localOverrides.conf"); +#include("conf/localOverrides.conf"); 1; #final line of the file to reassure perl that it was read properly. diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av1.eps deleted file mode 100755 index 3708e9727..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av1.eps +++ /dev/null @@ -1,745 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_x1 -%%Creation Date: Tue, Jan 9, 1996 09:42 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(6) 41.12 18.38 8.88 WS -gsave 0.125 ps [1] sd -57.00 20.50 558.00 20.50 MacLine -grestore -1.00 ps -561.50 20.00 558.00 20.00 MacLine -53.50 20.00 57.00 20.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 27.12 558.00 27.12 MacLine -grestore -1.00 ps -561.50 26.62 558.00 26.62 MacLine -53.50 26.62 57.00 26.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 33.62 558.00 33.62 MacLine -grestore -1.00 ps -561.50 33.12 558.00 33.12 MacLine -53.50 33.12 57.00 33.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 40.12 558.00 40.12 MacLine -grestore -1.00 ps -561.50 39.62 558.00 39.62 MacLine -53.50 39.62 57.00 39.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 46.62 554.50 46.62 MacLine -grestore -1.00 ps -561.50 46.25 554.50 46.25 MacLine -53.50 46.25 60.50 46.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 41.12 51.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 53.25 558.00 53.25 MacLine -grestore -1.00 ps -561.50 52.75 558.00 52.75 MacLine -53.50 52.75 57.00 52.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 66.38 558.00 66.38 MacLine -grestore -1.00 ps -561.50 65.88 558.00 65.88 MacLine -53.50 65.88 57.00 65.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 72.88 558.00 72.88 MacLine -grestore -1.00 ps -561.50 72.38 558.00 72.38 MacLine -53.50 72.38 57.00 72.38 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 79.25 554.50 79.25 MacLine -grestore -1.00 ps -561.50 78.88 554.50 78.88 MacLine -53.50 78.88 60.50 78.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 83.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 86.00 558.00 86.00 MacLine -grestore -1.00 ps -561.50 85.50 558.00 85.50 MacLine -53.50 85.50 57.00 85.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 92.50 558.00 92.50 MacLine -grestore -1.00 ps -561.50 92.00 558.00 92.00 MacLine -53.50 92.00 57.00 92.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 99.00 558.00 99.00 MacLine -grestore -1.00 ps -561.50 98.50 558.00 98.50 MacLine -53.50 98.50 57.00 98.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 112.00 554.50 112.00 MacLine -grestore -1.00 ps -561.50 111.62 554.50 111.62 MacLine -53.50 111.62 60.50 111.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(3) 41.12 116.50 8.88 WS -gsave 0.125 ps [1] sd -57.00 118.62 558.00 118.62 MacLine -grestore -1.00 ps -561.50 118.12 558.00 118.12 MacLine -53.50 118.12 57.00 118.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 125.25 558.00 125.25 MacLine -grestore -1.00 ps -561.50 124.75 558.00 124.75 MacLine -53.50 124.75 57.00 124.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 131.75 558.00 131.75 MacLine -grestore -1.00 ps -561.50 131.25 558.00 131.25 MacLine -53.50 131.25 57.00 131.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 138.38 558.00 138.38 MacLine -grestore -1.00 ps -561.50 137.88 558.00 137.88 MacLine -53.50 137.88 57.00 137.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 144.75 554.50 144.75 MacLine -grestore -1.00 ps -561.50 144.38 554.50 144.38 MacLine -53.50 144.38 60.50 144.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 149.25 8.88 WS -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 158.00 558.00 158.00 MacLine -grestore -1.00 ps -561.50 157.50 558.00 157.50 MacLine -53.50 157.50 57.00 157.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 164.50 558.00 164.50 MacLine -grestore -1.00 ps -561.50 164.00 558.00 164.00 MacLine -53.50 164.00 57.00 164.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 171.00 558.00 171.00 MacLine -grestore -1.00 ps -561.50 170.50 558.00 170.50 MacLine -53.50 170.50 57.00 170.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 177.50 554.50 177.50 MacLine -grestore -1.00 ps -561.50 177.12 554.50 177.12 MacLine -53.50 177.12 60.50 177.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1) 41.12 182.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 184.12 558.00 184.12 MacLine -grestore -1.00 ps -561.50 183.62 558.00 183.62 MacLine -53.50 183.62 57.00 183.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 190.62 558.00 190.62 MacLine -grestore -1.00 ps -561.50 190.12 558.00 190.12 MacLine -53.50 190.12 57.00 190.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 203.75 558.00 203.75 MacLine -grestore -1.00 ps -561.50 203.25 558.00 203.25 MacLine -53.50 203.25 57.00 203.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 210.12 554.50 210.12 MacLine -grestore -1.00 ps -561.50 209.75 554.50 209.75 MacLine -53.50 209.75 60.50 209.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 214.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 216.88 558.00 216.88 MacLine -grestore -1.00 ps -561.50 216.38 558.00 216.38 MacLine -53.50 216.38 57.00 216.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 223.38 558.00 223.38 MacLine -grestore -1.00 ps -561.50 222.88 558.00 222.88 MacLine -53.50 222.88 57.00 222.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 229.88 558.00 229.88 MacLine -grestore -1.00 ps -561.50 229.38 558.00 229.38 MacLine -53.50 229.38 57.00 229.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 236.50 558.00 236.50 MacLine -grestore -1.00 ps -561.50 236.00 558.00 236.00 MacLine -53.50 236.00 57.00 236.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-1) 35.75 247.38 14.25 WS -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 557.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 473.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -392.50 235.50 392.50 20.50 MacLine -grestore -1.00 ps -392.12 13.50 392.12 20.50 MacLine -392.12 242.50 392.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 388.25 259.88 8.88 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(3) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 219.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -138.50 235.50 138.50 20.50 MacLine -grestore -1.00 ps -138.12 13.50 138.12 20.50 MacLine -138.12 242.50 138.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1) 134.25 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -135.62 176.50 139.75 176.50 MacLine -135.62 242.00 139.75 242.00 MacLine -180.00 207.25 180.00 211.38 MacLine -95.25 207.25 95.25 211.38 MacLine -1 ps -2.00 ps -137.62 177.50 137.62 241.00 MacLine -96.25 209.25 179.00 209.25 MacLine -1 ps -2.00 ps -220.25 78.38 224.38 78.38 MacLine -220.25 143.88 224.38 143.88 MacLine -264.62 109.12 264.62 113.25 MacLine -179.88 109.12 179.88 113.25 MacLine -1 ps -2.00 ps -222.25 79.38 222.25 142.88 MacLine -180.88 111.12 263.62 111.12 MacLine -1 ps -2.00 ps -304.88 111.12 309.00 111.12 MacLine -304.88 176.62 309.00 176.62 MacLine -349.25 141.88 349.25 146.00 MacLine -264.50 141.88 264.50 146.00 MacLine -1 ps -2.00 ps -306.88 112.12 306.88 175.62 MacLine -265.50 143.88 348.25 143.88 MacLine -1 ps -2.00 ps -389.62 13.00 393.75 13.00 MacLine -389.62 78.50 393.75 78.50 MacLine -434.00 43.75 434.00 47.88 MacLine -349.25 43.75 349.25 47.88 MacLine -1 ps -2.00 ps -391.62 14.00 391.62 77.50 MacLine -350.25 45.75 433.00 45.75 MacLine -1 ps -2.00 ps -474.25 45.75 478.38 45.75 MacLine -474.25 111.25 478.38 111.25 MacLine -518.62 76.50 518.62 80.62 MacLine -433.88 76.50 433.88 80.62 MacLine -1 ps -2.00 ps -476.25 46.75 476.25 110.25 MacLine -434.88 78.50 517.62 78.50 MacLine -1 ps -2.00 ps -newpath 138.62 210.25 4.00 0 360 arc -0 FillPath -newpath 223.25 112.12 4.00 0 360 arc -0 FillPath -newpath 307.88 144.88 4.00 0 360 arc -0 FillPath -newpath 392.62 46.75 4.00 0 360 arc -0 FillPath -newpath 477.25 79.50 4.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av1.gif deleted file mode 100755 index b7ca53a5e..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av10.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av10.eps deleted file mode 100755 index 9983f0cff..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av10.eps +++ /dev/null @@ -1,618 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_x10 -%%Creation Date: Tue, Jan 9, 1996 09:43 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 242.50 558.00 242.50 MacLine -53.50 242.50 57.00 242.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 230.25 558.00 230.25 MacLine -grestore -1.00 ps -561.50 229.75 558.00 229.75 MacLine -53.50 229.75 57.00 229.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 217.38 554.50 217.38 MacLine -grestore -1.00 ps -561.50 217.00 554.50 217.00 MacLine -53.50 217.00 60.50 217.00 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(-20) 26.88 221.88 23.12 WS -gsave 0.125 ps [1] sd -57.00 204.88 558.00 204.88 MacLine -grestore -1.00 ps -561.50 204.38 558.00 204.38 MacLine -53.50 204.38 57.00 204.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 192.12 558.00 192.12 MacLine -grestore -1.00 ps -561.50 191.62 558.00 191.62 MacLine -53.50 191.62 57.00 191.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 179.38 558.00 179.38 MacLine -grestore -1.00 ps -561.50 178.88 558.00 178.88 MacLine -53.50 178.88 57.00 178.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 166.62 558.00 166.62 MacLine -grestore -1.00 ps -561.50 166.12 558.00 166.12 MacLine -53.50 166.12 57.00 166.12 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 153.88 554.50 153.88 MacLine -grestore -1.00 ps -561.50 153.50 554.50 153.50 MacLine -53.50 153.50 60.50 153.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-15) 26.88 158.38 23.12 WS -gsave 0.125 ps [1] sd -57.00 141.25 558.00 141.25 MacLine -grestore -1.00 ps -561.50 140.75 558.00 140.75 MacLine -53.50 140.75 57.00 140.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 115.75 558.00 115.75 MacLine -grestore -1.00 ps -561.50 115.25 558.00 115.25 MacLine -53.50 115.25 57.00 115.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 103.00 558.00 103.00 MacLine -grestore -1.00 ps -561.50 102.50 558.00 102.50 MacLine -53.50 102.50 57.00 102.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 90.25 554.50 90.25 MacLine -grestore -1.00 ps -561.50 89.88 554.50 89.88 MacLine -53.50 89.88 60.50 89.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-10) 26.88 94.75 23.12 WS -gsave 0.125 ps [1] sd -57.00 77.62 558.00 77.62 MacLine -grestore -1.00 ps -561.50 77.12 558.00 77.12 MacLine -53.50 77.12 57.00 77.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 64.88 558.00 64.88 MacLine -grestore -1.00 ps -561.50 64.38 558.00 64.38 MacLine -53.50 64.38 57.00 64.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 52.12 558.00 52.12 MacLine -grestore -1.00 ps -561.50 51.62 558.00 51.62 MacLine -53.50 51.62 57.00 51.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 39.50 558.00 39.50 MacLine -grestore -1.00 ps -561.50 39.00 558.00 39.00 MacLine -53.50 39.00 57.00 39.00 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 26.62 554.50 26.62 MacLine -grestore -1.00 ps -561.50 26.25 554.50 26.25 MacLine -53.50 26.25 60.50 26.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-5) 35.75 31.12 14.25 WS -1.00 ps -561.50 13.50 558.00 13.50 MacLine -53.50 13.50 57.00 13.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 557.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 473.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -392.50 235.50 392.50 20.50 MacLine -grestore -1.00 ps -392.12 13.50 392.12 20.50 MacLine -392.12 242.50 392.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 388.25 259.88 8.88 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(3) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 219.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -138.50 235.50 138.50 20.50 MacLine -grestore -1.00 ps -138.12 13.50 138.12 20.50 MacLine -138.12 242.50 138.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1) 134.25 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -135.62 13.00 139.75 13.00 MacLine -135.62 38.50 139.75 38.50 MacLine -180.00 23.75 180.00 27.88 MacLine -95.25 23.75 95.25 27.88 MacLine -1 ps -2.00 ps -137.62 14.00 137.62 37.50 MacLine -96.25 25.75 179.00 25.75 MacLine -1 ps -2.00 ps -220.25 38.38 224.38 38.38 MacLine -220.25 63.88 224.38 63.88 MacLine -264.62 49.12 264.62 53.25 MacLine -179.88 49.12 179.88 53.25 MacLine -1 ps -2.00 ps -222.25 39.38 222.25 62.88 MacLine -180.88 51.12 263.62 51.12 MacLine -1 ps -2.00 ps -304.88 114.75 309.00 114.75 MacLine -304.88 140.25 309.00 140.25 MacLine -349.25 125.50 349.25 129.62 MacLine -264.50 125.50 264.50 129.62 MacLine -1 ps -2.00 ps -306.88 115.75 306.88 139.25 MacLine -265.50 127.50 348.25 127.50 MacLine -1 ps -2.00 ps -389.62 140.25 393.75 140.25 MacLine -389.62 165.75 393.75 165.75 MacLine -434.00 151.00 434.00 155.12 MacLine -349.25 151.00 349.25 155.12 MacLine -1 ps -2.00 ps -391.62 141.25 391.62 164.75 MacLine -350.25 153.00 433.00 153.00 MacLine -1 ps -2.00 ps -474.25 216.50 478.38 216.50 MacLine -474.25 242.00 478.38 242.00 MacLine -518.62 227.25 518.62 231.38 MacLine -433.88 227.25 433.88 231.38 MacLine -1 ps -2.00 ps -476.25 217.50 476.25 241.00 MacLine -434.88 229.25 517.62 229.25 MacLine -1 ps -2.00 ps -newpath 138.62 26.75 4.00 0 360 arc -0 FillPath -newpath 223.25 52.12 4.00 0 360 arc -0 FillPath -newpath 307.88 128.50 4.00 0 360 arc -0 FillPath -newpath 392.62 154.00 4.00 0 360 arc -0 FillPath -newpath 477.25 230.25 4.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av10.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av10.gif deleted file mode 100755 index a548f006f..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av10.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av2.eps deleted file mode 100755 index 3871c13d4..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av2.eps +++ /dev/null @@ -1,694 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_x2 -%%Creation Date: Tue, Jan 9, 1996 09:42 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 242.50 558.00 242.50 MacLine -53.50 242.50 57.00 242.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 234.88 558.00 234.88 MacLine -grestore -1.00 ps -561.50 234.38 558.00 234.38 MacLine -53.50 234.38 57.00 234.38 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 226.50 554.50 226.50 MacLine -grestore -1.00 ps -561.50 226.12 554.50 226.12 MacLine -53.50 226.12 60.50 226.12 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(-14) 26.88 231.00 23.12 WS -gsave 0.125 ps [1] sd -57.00 218.50 558.00 218.50 MacLine -grestore -1.00 ps -561.50 218.00 558.00 218.00 MacLine -53.50 218.00 57.00 218.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 210.25 558.00 210.25 MacLine -grestore -1.00 ps -561.50 209.75 558.00 209.75 MacLine -53.50 209.75 57.00 209.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 202.12 558.00 202.12 MacLine -grestore -1.00 ps -561.50 201.62 558.00 201.62 MacLine -53.50 201.62 57.00 201.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 193.75 554.50 193.75 MacLine -grestore -1.00 ps -561.50 193.38 554.50 193.38 MacLine -53.50 193.38 60.50 193.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-12) 26.88 198.25 23.12 WS -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 177.62 558.00 177.62 MacLine -grestore -1.00 ps -561.50 177.12 558.00 177.12 MacLine -53.50 177.12 57.00 177.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 169.38 558.00 169.38 MacLine -grestore -1.00 ps -561.50 168.88 558.00 168.88 MacLine -53.50 168.88 57.00 168.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 161.12 554.50 161.12 MacLine -grestore -1.00 ps -561.50 160.75 554.50 160.75 MacLine -53.50 160.75 60.50 160.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-10) 26.88 165.62 23.12 WS -gsave 0.125 ps [1] sd -57.00 153.00 558.00 153.00 MacLine -grestore -1.00 ps -561.50 152.50 558.00 152.50 MacLine -53.50 152.50 57.00 152.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 144.88 558.00 144.88 MacLine -grestore -1.00 ps -561.50 144.38 558.00 144.38 MacLine -53.50 144.38 57.00 144.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 136.62 558.00 136.62 MacLine -grestore -1.00 ps -561.50 136.12 558.00 136.12 MacLine -53.50 136.12 57.00 136.12 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -53.50 128.00 60.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-8) 35.75 132.88 14.25 WS -gsave 0.125 ps [1] sd -57.00 120.38 558.00 120.38 MacLine -grestore -1.00 ps -561.50 119.88 558.00 119.88 MacLine -53.50 119.88 57.00 119.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 112.12 558.00 112.12 MacLine -grestore -1.00 ps -561.50 111.62 558.00 111.62 MacLine -53.50 111.62 57.00 111.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 104.00 558.00 104.00 MacLine -grestore -1.00 ps -561.50 103.50 558.00 103.50 MacLine -53.50 103.50 57.00 103.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 95.62 554.50 95.62 MacLine -grestore -1.00 ps -561.50 95.25 554.50 95.25 MacLine -53.50 95.25 60.50 95.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-6) 35.75 100.12 14.25 WS -gsave 0.125 ps [1] sd -57.00 87.62 558.00 87.62 MacLine -grestore -1.00 ps -561.50 87.12 558.00 87.12 MacLine -53.50 87.12 57.00 87.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 79.38 558.00 79.38 MacLine -grestore -1.00 ps -561.50 78.88 558.00 78.88 MacLine -53.50 78.88 57.00 78.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 63.00 554.50 63.00 MacLine -grestore -1.00 ps -561.50 62.62 554.50 62.62 MacLine -53.50 62.62 60.50 62.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-4) 35.75 67.50 14.25 WS -gsave 0.125 ps [1] sd -57.00 54.88 558.00 54.88 MacLine -grestore -1.00 ps -561.50 54.38 558.00 54.38 MacLine -53.50 54.38 57.00 54.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 46.75 558.00 46.75 MacLine -grestore -1.00 ps -561.50 46.25 558.00 46.25 MacLine -53.50 46.25 57.00 46.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 38.50 558.00 38.50 MacLine -grestore -1.00 ps -561.50 38.00 558.00 38.00 MacLine -53.50 38.00 57.00 38.00 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 30.25 554.50 30.25 MacLine -grestore -1.00 ps -561.50 29.88 554.50 29.88 MacLine -53.50 29.88 60.50 29.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-2) 35.75 34.75 14.25 WS -gsave 0.125 ps [1] sd -57.00 22.12 558.00 22.12 MacLine -grestore -1.00 ps -561.50 21.62 558.00 21.62 MacLine -53.50 21.62 57.00 21.62 MacLine -1 ps -1.00 ps -561.50 13.50 558.00 13.50 MacLine -53.50 13.50 57.00 13.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 557.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 473.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -392.50 235.50 392.50 20.50 MacLine -grestore -1.00 ps -392.12 13.50 392.12 20.50 MacLine -392.12 242.50 392.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 388.25 259.88 8.88 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(3) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 219.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -138.50 235.50 138.50 20.50 MacLine -grestore -1.00 ps -138.12 13.50 138.12 20.50 MacLine -138.12 242.50 138.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1) 134.25 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -135.62 13.00 139.75 13.00 MacLine -135.62 45.75 139.75 45.75 MacLine -180.00 27.38 180.00 31.50 MacLine -95.25 27.38 95.25 31.50 MacLine -1 ps -2.00 ps -137.62 14.00 137.62 44.75 MacLine -96.25 29.38 179.00 29.38 MacLine -1 ps -2.00 ps -220.25 94.75 224.38 94.75 MacLine -220.25 127.50 224.38 127.50 MacLine -264.62 109.12 264.62 113.25 MacLine -179.88 109.12 179.88 113.25 MacLine -1 ps -2.00 ps -222.25 95.75 222.25 126.50 MacLine -180.88 111.12 263.62 111.12 MacLine -1 ps -2.00 ps -304.88 111.12 309.00 111.12 MacLine -304.88 143.88 309.00 143.88 MacLine -349.25 125.50 349.25 129.62 MacLine -264.50 125.50 264.50 129.62 MacLine -1 ps -2.00 ps -306.88 112.12 306.88 142.88 MacLine -265.50 127.50 348.25 127.50 MacLine -1 ps -2.00 ps -389.62 192.88 393.75 192.88 MacLine -389.62 225.62 393.75 225.62 MacLine -434.00 207.25 434.00 211.38 MacLine -349.25 207.25 349.25 211.38 MacLine -1 ps -2.00 ps -391.62 193.88 391.62 224.62 MacLine -350.25 209.25 433.00 209.25 MacLine -1 ps -2.00 ps -474.25 209.25 478.38 209.25 MacLine -474.25 242.00 478.38 242.00 MacLine -518.62 223.62 518.62 227.75 MacLine -433.88 223.62 433.88 227.75 MacLine -1 ps -2.00 ps -476.25 210.25 476.25 241.00 MacLine -434.88 225.62 517.62 225.62 MacLine -1 ps -2.00 ps -newpath 138.62 30.38 4.00 0 360 arc -0 FillPath -newpath 223.25 112.12 4.00 0 360 arc -0 FillPath -newpath 307.88 128.50 4.00 0 360 arc -0 FillPath -newpath 392.62 210.25 4.00 0 360 arc -0 FillPath -newpath 477.25 226.62 4.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av2.gif deleted file mode 100755 index 4c6df96ae..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av3.eps deleted file mode 100755 index c586ae3fa..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av3.eps +++ /dev/null @@ -1,745 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_x3 -%%Creation Date: Tue, Jan 9, 1996 09:42 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(6) 41.12 18.38 8.88 WS -gsave 0.125 ps [1] sd -57.00 20.50 558.00 20.50 MacLine -grestore -1.00 ps -561.50 20.00 558.00 20.00 MacLine -53.50 20.00 57.00 20.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 27.12 558.00 27.12 MacLine -grestore -1.00 ps -561.50 26.62 558.00 26.62 MacLine -53.50 26.62 57.00 26.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 33.62 558.00 33.62 MacLine -grestore -1.00 ps -561.50 33.12 558.00 33.12 MacLine -53.50 33.12 57.00 33.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 40.12 558.00 40.12 MacLine -grestore -1.00 ps -561.50 39.62 558.00 39.62 MacLine -53.50 39.62 57.00 39.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 46.62 554.50 46.62 MacLine -grestore -1.00 ps -561.50 46.25 554.50 46.25 MacLine -53.50 46.25 60.50 46.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 41.12 51.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 53.25 558.00 53.25 MacLine -grestore -1.00 ps -561.50 52.75 558.00 52.75 MacLine -53.50 52.75 57.00 52.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 66.38 558.00 66.38 MacLine -grestore -1.00 ps -561.50 65.88 558.00 65.88 MacLine -53.50 65.88 57.00 65.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 72.88 558.00 72.88 MacLine -grestore -1.00 ps -561.50 72.38 558.00 72.38 MacLine -53.50 72.38 57.00 72.38 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 79.25 554.50 79.25 MacLine -grestore -1.00 ps -561.50 78.88 554.50 78.88 MacLine -53.50 78.88 60.50 78.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 83.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 86.00 558.00 86.00 MacLine -grestore -1.00 ps -561.50 85.50 558.00 85.50 MacLine -53.50 85.50 57.00 85.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 92.50 558.00 92.50 MacLine -grestore -1.00 ps -561.50 92.00 558.00 92.00 MacLine -53.50 92.00 57.00 92.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 99.00 558.00 99.00 MacLine -grestore -1.00 ps -561.50 98.50 558.00 98.50 MacLine -53.50 98.50 57.00 98.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 112.00 554.50 112.00 MacLine -grestore -1.00 ps -561.50 111.62 554.50 111.62 MacLine -53.50 111.62 60.50 111.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(3) 41.12 116.50 8.88 WS -gsave 0.125 ps [1] sd -57.00 118.62 558.00 118.62 MacLine -grestore -1.00 ps -561.50 118.12 558.00 118.12 MacLine -53.50 118.12 57.00 118.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 125.25 558.00 125.25 MacLine -grestore -1.00 ps -561.50 124.75 558.00 124.75 MacLine -53.50 124.75 57.00 124.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 131.75 558.00 131.75 MacLine -grestore -1.00 ps -561.50 131.25 558.00 131.25 MacLine -53.50 131.25 57.00 131.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 138.38 558.00 138.38 MacLine -grestore -1.00 ps -561.50 137.88 558.00 137.88 MacLine -53.50 137.88 57.00 137.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 144.75 554.50 144.75 MacLine -grestore -1.00 ps -561.50 144.38 554.50 144.38 MacLine -53.50 144.38 60.50 144.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 149.25 8.88 WS -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 158.00 558.00 158.00 MacLine -grestore -1.00 ps -561.50 157.50 558.00 157.50 MacLine -53.50 157.50 57.00 157.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 164.50 558.00 164.50 MacLine -grestore -1.00 ps -561.50 164.00 558.00 164.00 MacLine -53.50 164.00 57.00 164.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 171.00 558.00 171.00 MacLine -grestore -1.00 ps -561.50 170.50 558.00 170.50 MacLine -53.50 170.50 57.00 170.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 177.50 554.50 177.50 MacLine -grestore -1.00 ps -561.50 177.12 554.50 177.12 MacLine -53.50 177.12 60.50 177.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1) 41.12 182.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 184.12 558.00 184.12 MacLine -grestore -1.00 ps -561.50 183.62 558.00 183.62 MacLine -53.50 183.62 57.00 183.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 190.62 558.00 190.62 MacLine -grestore -1.00 ps -561.50 190.12 558.00 190.12 MacLine -53.50 190.12 57.00 190.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 203.75 558.00 203.75 MacLine -grestore -1.00 ps -561.50 203.25 558.00 203.25 MacLine -53.50 203.25 57.00 203.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 210.12 554.50 210.12 MacLine -grestore -1.00 ps -561.50 209.75 554.50 209.75 MacLine -53.50 209.75 60.50 209.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 214.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 216.88 558.00 216.88 MacLine -grestore -1.00 ps -561.50 216.38 558.00 216.38 MacLine -53.50 216.38 57.00 216.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 223.38 558.00 223.38 MacLine -grestore -1.00 ps -561.50 222.88 558.00 222.88 MacLine -53.50 222.88 57.00 222.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 229.88 558.00 229.88 MacLine -grestore -1.00 ps -561.50 229.38 558.00 229.38 MacLine -53.50 229.38 57.00 229.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 236.50 558.00 236.50 MacLine -grestore -1.00 ps -561.50 236.00 558.00 236.00 MacLine -53.50 236.00 57.00 236.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-1) 35.75 247.38 14.25 WS -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 557.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 473.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -392.50 235.50 392.50 20.50 MacLine -grestore -1.00 ps -392.12 13.50 392.12 20.50 MacLine -392.12 242.50 392.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 388.25 259.88 8.88 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(3) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 219.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -138.50 235.50 138.50 20.50 MacLine -grestore -1.00 ps -138.12 13.50 138.12 20.50 MacLine -138.12 242.50 138.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1) 134.25 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -135.62 176.50 139.75 176.50 MacLine -135.62 242.00 139.75 242.00 MacLine -180.00 207.25 180.00 211.38 MacLine -95.25 207.25 95.25 211.38 MacLine -1 ps -2.00 ps -137.62 177.50 137.62 241.00 MacLine -96.25 209.25 179.00 209.25 MacLine -1 ps -2.00 ps -220.25 78.38 224.38 78.38 MacLine -220.25 143.88 224.38 143.88 MacLine -264.62 109.12 264.62 113.25 MacLine -179.88 109.12 179.88 113.25 MacLine -1 ps -2.00 ps -222.25 79.38 222.25 142.88 MacLine -180.88 111.12 263.62 111.12 MacLine -1 ps -2.00 ps -304.88 111.12 309.00 111.12 MacLine -304.88 176.62 309.00 176.62 MacLine -349.25 141.88 349.25 146.00 MacLine -264.50 141.88 264.50 146.00 MacLine -1 ps -2.00 ps -306.88 112.12 306.88 175.62 MacLine -265.50 143.88 348.25 143.88 MacLine -1 ps -2.00 ps -389.62 13.00 393.75 13.00 MacLine -389.62 78.50 393.75 78.50 MacLine -434.00 43.75 434.00 47.88 MacLine -349.25 43.75 349.25 47.88 MacLine -1 ps -2.00 ps -391.62 14.00 391.62 77.50 MacLine -350.25 45.75 433.00 45.75 MacLine -1 ps -2.00 ps -474.25 45.75 478.38 45.75 MacLine -474.25 111.25 478.38 111.25 MacLine -518.62 76.50 518.62 80.62 MacLine -433.88 76.50 433.88 80.62 MacLine -1 ps -2.00 ps -476.25 46.75 476.25 110.25 MacLine -434.88 78.50 517.62 78.50 MacLine -1 ps -2.00 ps -newpath 138.62 210.25 4.00 0 360 arc -0 FillPath -newpath 223.25 112.12 4.00 0 360 arc -0 FillPath -newpath 307.88 144.88 4.00 0 360 arc -0 FillPath -newpath 392.62 46.75 4.00 0 360 arc -0 FillPath -newpath 477.25 79.50 4.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av3.gif deleted file mode 100755 index b7ca53a5e..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av4.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av4.eps deleted file mode 100755 index 811a3c246..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av4.eps +++ /dev/null @@ -1,636 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_x4 -%%Creation Date: Tue, Jan 9, 1996 09:42 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(-10) 26.88 247.38 23.12 WS -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-8) 35.75 201.62 14.25 WS -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-6) 35.75 155.75 14.25 WS -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-4) 35.75 110.00 14.25 WS -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-2) 35.75 64.12 14.25 WS -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 18.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 557.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 473.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -392.50 235.50 392.50 20.50 MacLine -grestore -1.00 ps -392.12 13.50 392.12 20.50 MacLine -392.12 242.50 392.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 388.25 259.88 8.88 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(3) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 219.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -138.50 235.50 138.50 20.50 MacLine -grestore -1.00 ps -138.12 13.50 138.12 20.50 MacLine -138.12 242.50 138.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1) 134.25 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -135.62 13.00 139.75 13.00 MacLine -135.62 58.75 139.75 58.75 MacLine -180.00 33.88 180.00 38.00 MacLine -95.25 33.88 95.25 38.00 MacLine -1 ps -2.00 ps -137.62 14.00 137.62 57.75 MacLine -96.25 35.88 179.00 35.88 MacLine -1 ps -2.00 ps -220.25 104.62 224.38 104.62 MacLine -220.25 150.38 224.38 150.38 MacLine -264.62 125.50 264.62 129.62 MacLine -179.88 125.50 179.88 129.62 MacLine -1 ps -2.00 ps -222.25 105.62 222.25 149.38 MacLine -180.88 127.50 263.62 127.50 MacLine -1 ps -2.00 ps -304.88 104.62 309.00 104.62 MacLine -304.88 150.38 309.00 150.38 MacLine -349.25 125.50 349.25 129.62 MacLine -264.50 125.50 264.50 129.62 MacLine -1 ps -2.00 ps -306.88 105.62 306.88 149.38 MacLine -265.50 127.50 348.25 127.50 MacLine -1 ps -2.00 ps -389.62 196.25 393.75 196.25 MacLine -389.62 242.00 393.75 242.00 MacLine -434.00 217.12 434.00 221.25 MacLine -349.25 217.12 349.25 221.25 MacLine -1 ps -2.00 ps -391.62 197.25 391.62 241.00 MacLine -350.25 219.12 433.00 219.12 MacLine -1 ps -2.00 ps -474.25 196.25 478.38 196.25 MacLine -474.25 242.00 478.38 242.00 MacLine -518.62 217.12 518.62 221.25 MacLine -433.88 217.12 433.88 221.25 MacLine -1 ps -2.00 ps -476.25 197.25 476.25 241.00 MacLine -434.88 219.12 517.62 219.12 MacLine -1 ps -2.00 ps -newpath 138.62 36.88 4.00 0 360 arc -0 FillPath -newpath 223.25 128.50 4.00 0 360 arc -0 FillPath -newpath 307.88 128.50 4.00 0 360 arc -0 FillPath -newpath 392.62 220.12 4.00 0 360 arc -0 FillPath -newpath 477.25 220.12 4.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av4.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av4.gif deleted file mode 100755 index 2cdddf971..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av4.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av5.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av5.eps deleted file mode 100755 index 2306b4ee7..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av5.eps +++ /dev/null @@ -1,618 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_x5 -%%Creation Date: Tue, Jan 9, 1996 09:43 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(20) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 26.75 558.00 26.75 MacLine -grestore -1.00 ps -561.50 26.25 558.00 26.25 MacLine -53.50 26.25 57.00 26.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 39.50 558.00 39.50 MacLine -grestore -1.00 ps -561.50 39.00 558.00 39.00 MacLine -53.50 39.00 57.00 39.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 52.12 558.00 52.12 MacLine -grestore -1.00 ps -561.50 51.62 558.00 51.62 MacLine -53.50 51.62 57.00 51.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 64.88 558.00 64.88 MacLine -grestore -1.00 ps -561.50 64.38 558.00 64.38 MacLine -53.50 64.38 57.00 64.38 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 77.50 554.50 77.50 MacLine -grestore -1.00 ps -561.50 77.12 554.50 77.12 MacLine -53.50 77.12 60.50 77.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(15) 32.25 82.00 17.75 WS -gsave 0.125 ps [1] sd -57.00 90.38 558.00 90.38 MacLine -grestore -1.00 ps -561.50 89.88 558.00 89.88 MacLine -53.50 89.88 57.00 89.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 103.00 558.00 103.00 MacLine -grestore -1.00 ps -561.50 102.50 558.00 102.50 MacLine -53.50 102.50 57.00 102.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 115.75 558.00 115.75 MacLine -grestore -1.00 ps -561.50 115.25 558.00 115.25 MacLine -53.50 115.25 57.00 115.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 141.12 554.50 141.12 MacLine -grestore -1.00 ps -561.50 140.75 554.50 140.75 MacLine -53.50 140.75 60.50 140.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 32.25 145.62 17.75 WS -gsave 0.125 ps [1] sd -57.00 154.00 558.00 154.00 MacLine -grestore -1.00 ps -561.50 153.50 558.00 153.50 MacLine -53.50 153.50 57.00 153.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 166.62 558.00 166.62 MacLine -grestore -1.00 ps -561.50 166.12 558.00 166.12 MacLine -53.50 166.12 57.00 166.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 179.38 558.00 179.38 MacLine -grestore -1.00 ps -561.50 178.88 558.00 178.88 MacLine -53.50 178.88 57.00 178.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 192.12 558.00 192.12 MacLine -grestore -1.00 ps -561.50 191.62 558.00 191.62 MacLine -53.50 191.62 57.00 191.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 204.75 554.50 204.75 MacLine -grestore -1.00 ps -561.50 204.38 554.50 204.38 MacLine -53.50 204.38 60.50 204.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 41.12 209.25 8.88 WS -gsave 0.125 ps [1] sd -57.00 217.50 558.00 217.50 MacLine -grestore -1.00 ps -561.50 217.00 558.00 217.00 MacLine -53.50 217.00 57.00 217.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 230.25 558.00 230.25 MacLine -grestore -1.00 ps -561.50 229.75 558.00 229.75 MacLine -53.50 229.75 57.00 229.75 MacLine -1 ps -1.00 ps -561.50 242.50 558.00 242.50 MacLine -53.50 242.50 57.00 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 557.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 473.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -392.50 235.50 392.50 20.50 MacLine -grestore -1.00 ps -392.12 13.50 392.12 20.50 MacLine -392.12 242.50 392.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 388.25 259.88 8.88 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(3) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 219.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -138.50 235.50 138.50 20.50 MacLine -grestore -1.00 ps -138.12 13.50 138.12 20.50 MacLine -138.12 242.50 138.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1) 134.25 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -135.62 216.50 139.75 216.50 MacLine -135.62 242.00 139.75 242.00 MacLine -180.00 227.25 180.00 231.38 MacLine -95.25 227.25 95.25 231.38 MacLine -1 ps -2.00 ps -137.62 217.50 137.62 241.00 MacLine -96.25 229.25 179.00 229.25 MacLine -1 ps -2.00 ps -220.25 140.25 224.38 140.25 MacLine -220.25 165.75 224.38 165.75 MacLine -264.62 151.00 264.62 155.12 MacLine -179.88 151.00 179.88 155.12 MacLine -1 ps -2.00 ps -222.25 141.25 222.25 164.75 MacLine -180.88 153.00 263.62 153.00 MacLine -1 ps -2.00 ps -304.88 114.75 309.00 114.75 MacLine -304.88 140.25 309.00 140.25 MacLine -349.25 125.50 349.25 129.62 MacLine -264.50 125.50 264.50 129.62 MacLine -1 ps -2.00 ps -306.88 115.75 306.88 139.25 MacLine -265.50 127.50 348.25 127.50 MacLine -1 ps -2.00 ps -389.62 38.38 393.75 38.38 MacLine -389.62 63.88 393.75 63.88 MacLine -434.00 49.12 434.00 53.25 MacLine -349.25 49.12 349.25 53.25 MacLine -1 ps -2.00 ps -391.62 39.38 391.62 62.88 MacLine -350.25 51.12 433.00 51.12 MacLine -1 ps -2.00 ps -474.25 13.00 478.38 13.00 MacLine -474.25 38.50 478.38 38.50 MacLine -518.62 23.75 518.62 27.88 MacLine -433.88 23.75 433.88 27.88 MacLine -1 ps -2.00 ps -476.25 14.00 476.25 37.50 MacLine -434.88 25.75 517.62 25.75 MacLine -1 ps -2.00 ps -newpath 138.62 230.25 4.00 0 360 arc -0 FillPath -newpath 223.25 154.00 4.00 0 360 arc -0 FillPath -newpath 307.88 128.50 4.00 0 360 arc -0 FillPath -newpath 392.62 52.12 4.00 0 360 arc -0 FillPath -newpath 477.25 26.75 4.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av5.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av5.gif deleted file mode 100755 index d4e446655..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av5.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av6.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av6.eps deleted file mode 100755 index 325219742..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av6.eps +++ /dev/null @@ -1,618 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_x6 -%%Creation Date: Tue, Jan 9, 1996 09:43 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 558.00 13.50 MacLine -53.50 13.50 57.00 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 26.75 558.00 26.75 MacLine -grestore -1.00 ps -561.50 26.25 558.00 26.25 MacLine -53.50 26.25 57.00 26.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 39.38 554.50 39.38 MacLine -grestore -1.00 ps -561.50 39.00 554.50 39.00 MacLine -53.50 39.00 60.50 39.00 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(20) 32.25 43.88 17.75 WS -gsave 0.125 ps [1] sd -57.00 52.12 558.00 52.12 MacLine -grestore -1.00 ps -561.50 51.62 558.00 51.62 MacLine -53.50 51.62 57.00 51.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 64.88 558.00 64.88 MacLine -grestore -1.00 ps -561.50 64.38 558.00 64.38 MacLine -53.50 64.38 57.00 64.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 77.62 558.00 77.62 MacLine -grestore -1.00 ps -561.50 77.12 558.00 77.12 MacLine -53.50 77.12 57.00 77.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 90.38 558.00 90.38 MacLine -grestore -1.00 ps -561.50 89.88 558.00 89.88 MacLine -53.50 89.88 57.00 89.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 102.88 554.50 102.88 MacLine -grestore -1.00 ps -561.50 102.50 554.50 102.50 MacLine -53.50 102.50 60.50 102.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(15) 32.25 107.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 115.75 558.00 115.75 MacLine -grestore -1.00 ps -561.50 115.25 558.00 115.25 MacLine -53.50 115.25 57.00 115.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 141.25 558.00 141.25 MacLine -grestore -1.00 ps -561.50 140.75 558.00 140.75 MacLine -53.50 140.75 57.00 140.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 154.00 558.00 154.00 MacLine -grestore -1.00 ps -561.50 153.50 558.00 153.50 MacLine -53.50 153.50 57.00 153.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 166.50 554.50 166.50 MacLine -grestore -1.00 ps -561.50 166.12 554.50 166.12 MacLine -53.50 166.12 60.50 166.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 32.25 171.00 17.75 WS -gsave 0.125 ps [1] sd -57.00 179.38 558.00 179.38 MacLine -grestore -1.00 ps -561.50 178.88 558.00 178.88 MacLine -53.50 178.88 57.00 178.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 192.12 558.00 192.12 MacLine -grestore -1.00 ps -561.50 191.62 558.00 191.62 MacLine -53.50 191.62 57.00 191.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 204.88 558.00 204.88 MacLine -grestore -1.00 ps -561.50 204.38 558.00 204.38 MacLine -53.50 204.38 57.00 204.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 217.50 558.00 217.50 MacLine -grestore -1.00 ps -561.50 217.00 558.00 217.00 MacLine -53.50 217.00 57.00 217.00 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 230.12 554.50 230.12 MacLine -grestore -1.00 ps -561.50 229.75 554.50 229.75 MacLine -53.50 229.75 60.50 229.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 41.12 234.62 8.88 WS -1.00 ps -561.50 242.50 558.00 242.50 MacLine -53.50 242.50 57.00 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 557.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 473.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -392.50 235.50 392.50 20.50 MacLine -grestore -1.00 ps -392.12 13.50 392.12 20.50 MacLine -392.12 242.50 392.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 388.25 259.88 8.88 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(3) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 219.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -138.50 235.50 138.50 20.50 MacLine -grestore -1.00 ps -138.12 13.50 138.12 20.50 MacLine -138.12 242.50 138.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1) 134.25 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -135.62 216.50 139.75 216.50 MacLine -135.62 242.00 139.75 242.00 MacLine -180.00 227.25 180.00 231.38 MacLine -95.25 227.25 95.25 231.38 MacLine -1 ps -2.00 ps -137.62 217.50 137.62 241.00 MacLine -96.25 229.25 179.00 229.25 MacLine -1 ps -2.00 ps -220.25 191.12 224.38 191.12 MacLine -220.25 216.62 224.38 216.62 MacLine -264.62 201.88 264.62 206.00 MacLine -179.88 201.88 179.88 206.00 MacLine -1 ps -2.00 ps -222.25 192.12 222.25 215.62 MacLine -180.88 203.88 263.62 203.88 MacLine -1 ps -2.00 ps -304.88 114.75 309.00 114.75 MacLine -304.88 140.25 309.00 140.25 MacLine -349.25 125.50 349.25 129.62 MacLine -264.50 125.50 264.50 129.62 MacLine -1 ps -2.00 ps -306.88 115.75 306.88 139.25 MacLine -265.50 127.50 348.25 127.50 MacLine -1 ps -2.00 ps -389.62 89.25 393.75 89.25 MacLine -389.62 114.75 393.75 114.75 MacLine -434.00 100.00 434.00 104.12 MacLine -349.25 100.00 349.25 104.12 MacLine -1 ps -2.00 ps -391.62 90.25 391.62 113.75 MacLine -350.25 102.00 433.00 102.00 MacLine -1 ps -2.00 ps -474.25 13.00 478.38 13.00 MacLine -474.25 38.50 478.38 38.50 MacLine -518.62 23.75 518.62 27.88 MacLine -433.88 23.75 433.88 27.88 MacLine -1 ps -2.00 ps -476.25 14.00 476.25 37.50 MacLine -434.88 25.75 517.62 25.75 MacLine -1 ps -2.00 ps -newpath 138.62 230.25 4.00 0 360 arc -0 FillPath -newpath 223.25 204.88 4.00 0 360 arc -0 FillPath -newpath 307.88 128.50 4.00 0 360 arc -0 FillPath -newpath 392.62 103.00 4.00 0 360 arc -0 FillPath -newpath 477.25 26.75 4.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av6.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av6.gif deleted file mode 100755 index be80d6cf0..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av6.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av7.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av7.eps deleted file mode 100755 index 19e917e94..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av7.eps +++ /dev/null @@ -1,694 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_x7 -%%Creation Date: Tue, Jan 9, 1996 09:43 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 242.50 558.00 242.50 MacLine -53.50 242.50 57.00 242.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 234.88 558.00 234.88 MacLine -grestore -1.00 ps -561.50 234.38 558.00 234.38 MacLine -53.50 234.38 57.00 234.38 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 226.50 554.50 226.50 MacLine -grestore -1.00 ps -561.50 226.12 554.50 226.12 MacLine -53.50 226.12 60.50 226.12 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(-14) 26.88 231.00 23.12 WS -gsave 0.125 ps [1] sd -57.00 218.50 558.00 218.50 MacLine -grestore -1.00 ps -561.50 218.00 558.00 218.00 MacLine -53.50 218.00 57.00 218.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 210.25 558.00 210.25 MacLine -grestore -1.00 ps -561.50 209.75 558.00 209.75 MacLine -53.50 209.75 57.00 209.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 202.12 558.00 202.12 MacLine -grestore -1.00 ps -561.50 201.62 558.00 201.62 MacLine -53.50 201.62 57.00 201.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 193.75 554.50 193.75 MacLine -grestore -1.00 ps -561.50 193.38 554.50 193.38 MacLine -53.50 193.38 60.50 193.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-12) 26.88 198.25 23.12 WS -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 177.62 558.00 177.62 MacLine -grestore -1.00 ps -561.50 177.12 558.00 177.12 MacLine -53.50 177.12 57.00 177.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 169.38 558.00 169.38 MacLine -grestore -1.00 ps -561.50 168.88 558.00 168.88 MacLine -53.50 168.88 57.00 168.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 161.12 554.50 161.12 MacLine -grestore -1.00 ps -561.50 160.75 554.50 160.75 MacLine -53.50 160.75 60.50 160.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-10) 26.88 165.62 23.12 WS -gsave 0.125 ps [1] sd -57.00 153.00 558.00 153.00 MacLine -grestore -1.00 ps -561.50 152.50 558.00 152.50 MacLine -53.50 152.50 57.00 152.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 144.88 558.00 144.88 MacLine -grestore -1.00 ps -561.50 144.38 558.00 144.38 MacLine -53.50 144.38 57.00 144.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 136.62 558.00 136.62 MacLine -grestore -1.00 ps -561.50 136.12 558.00 136.12 MacLine -53.50 136.12 57.00 136.12 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -53.50 128.00 60.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-8) 35.75 132.88 14.25 WS -gsave 0.125 ps [1] sd -57.00 120.38 558.00 120.38 MacLine -grestore -1.00 ps -561.50 119.88 558.00 119.88 MacLine -53.50 119.88 57.00 119.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 112.12 558.00 112.12 MacLine -grestore -1.00 ps -561.50 111.62 558.00 111.62 MacLine -53.50 111.62 57.00 111.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 104.00 558.00 104.00 MacLine -grestore -1.00 ps -561.50 103.50 558.00 103.50 MacLine -53.50 103.50 57.00 103.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 95.62 554.50 95.62 MacLine -grestore -1.00 ps -561.50 95.25 554.50 95.25 MacLine -53.50 95.25 60.50 95.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-6) 35.75 100.12 14.25 WS -gsave 0.125 ps [1] sd -57.00 87.62 558.00 87.62 MacLine -grestore -1.00 ps -561.50 87.12 558.00 87.12 MacLine -53.50 87.12 57.00 87.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 79.38 558.00 79.38 MacLine -grestore -1.00 ps -561.50 78.88 558.00 78.88 MacLine -53.50 78.88 57.00 78.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 63.00 554.50 63.00 MacLine -grestore -1.00 ps -561.50 62.62 554.50 62.62 MacLine -53.50 62.62 60.50 62.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-4) 35.75 67.50 14.25 WS -gsave 0.125 ps [1] sd -57.00 54.88 558.00 54.88 MacLine -grestore -1.00 ps -561.50 54.38 558.00 54.38 MacLine -53.50 54.38 57.00 54.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 46.75 558.00 46.75 MacLine -grestore -1.00 ps -561.50 46.25 558.00 46.25 MacLine -53.50 46.25 57.00 46.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 38.50 558.00 38.50 MacLine -grestore -1.00 ps -561.50 38.00 558.00 38.00 MacLine -53.50 38.00 57.00 38.00 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 30.25 554.50 30.25 MacLine -grestore -1.00 ps -561.50 29.88 554.50 29.88 MacLine -53.50 29.88 60.50 29.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-2) 35.75 34.75 14.25 WS -gsave 0.125 ps [1] sd -57.00 22.12 558.00 22.12 MacLine -grestore -1.00 ps -561.50 21.62 558.00 21.62 MacLine -53.50 21.62 57.00 21.62 MacLine -1 ps -1.00 ps -561.50 13.50 558.00 13.50 MacLine -53.50 13.50 57.00 13.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 557.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 473.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -392.50 235.50 392.50 20.50 MacLine -grestore -1.00 ps -392.12 13.50 392.12 20.50 MacLine -392.12 242.50 392.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 388.25 259.88 8.88 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(3) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 219.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -138.50 235.50 138.50 20.50 MacLine -grestore -1.00 ps -138.12 13.50 138.12 20.50 MacLine -138.12 242.50 138.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1) 134.25 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -135.62 13.00 139.75 13.00 MacLine -135.62 45.75 139.75 45.75 MacLine -180.00 27.38 180.00 31.50 MacLine -95.25 27.38 95.25 31.50 MacLine -1 ps -2.00 ps -137.62 14.00 137.62 44.75 MacLine -96.25 29.38 179.00 29.38 MacLine -1 ps -2.00 ps -220.25 94.75 224.38 94.75 MacLine -220.25 127.50 224.38 127.50 MacLine -264.62 109.12 264.62 113.25 MacLine -179.88 109.12 179.88 113.25 MacLine -1 ps -2.00 ps -222.25 95.75 222.25 126.50 MacLine -180.88 111.12 263.62 111.12 MacLine -1 ps -2.00 ps -304.88 111.12 309.00 111.12 MacLine -304.88 143.88 309.00 143.88 MacLine -349.25 125.50 349.25 129.62 MacLine -264.50 125.50 264.50 129.62 MacLine -1 ps -2.00 ps -306.88 112.12 306.88 142.88 MacLine -265.50 127.50 348.25 127.50 MacLine -1 ps -2.00 ps -389.62 192.88 393.75 192.88 MacLine -389.62 225.62 393.75 225.62 MacLine -434.00 207.25 434.00 211.38 MacLine -349.25 207.25 349.25 211.38 MacLine -1 ps -2.00 ps -391.62 193.88 391.62 224.62 MacLine -350.25 209.25 433.00 209.25 MacLine -1 ps -2.00 ps -474.25 209.25 478.38 209.25 MacLine -474.25 242.00 478.38 242.00 MacLine -518.62 223.62 518.62 227.75 MacLine -433.88 223.62 433.88 227.75 MacLine -1 ps -2.00 ps -476.25 210.25 476.25 241.00 MacLine -434.88 225.62 517.62 225.62 MacLine -1 ps -2.00 ps -newpath 138.62 30.38 4.00 0 360 arc -0 FillPath -newpath 223.25 112.12 4.00 0 360 arc -0 FillPath -newpath 307.88 128.50 4.00 0 360 arc -0 FillPath -newpath 392.62 210.25 4.00 0 360 arc -0 FillPath -newpath 477.25 226.62 4.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av7.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av7.gif deleted file mode 100755 index 4c6df96ae..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av7.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av7.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av7.pdf deleted file mode 100644 index 92723b05c..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av7.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av8.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av8.eps deleted file mode 100755 index 270107909..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av8.eps +++ /dev/null @@ -1,636 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_x8 -%%Creation Date: Tue, Jan 9, 1996 09:43 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(-10) 26.88 247.38 23.12 WS -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-8) 35.75 201.62 14.25 WS -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-6) 35.75 155.75 14.25 WS -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-4) 35.75 110.00 14.25 WS -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-2) 35.75 64.12 14.25 WS -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 18.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 557.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 473.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -392.50 235.50 392.50 20.50 MacLine -grestore -1.00 ps -392.12 13.50 392.12 20.50 MacLine -392.12 242.50 392.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 388.25 259.88 8.88 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(3) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 219.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -138.50 235.50 138.50 20.50 MacLine -grestore -1.00 ps -138.12 13.50 138.12 20.50 MacLine -138.12 242.50 138.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1) 134.25 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -135.62 13.00 139.75 13.00 MacLine -135.62 58.75 139.75 58.75 MacLine -180.00 33.88 180.00 38.00 MacLine -95.25 33.88 95.25 38.00 MacLine -1 ps -2.00 ps -137.62 14.00 137.62 57.75 MacLine -96.25 35.88 179.00 35.88 MacLine -1 ps -2.00 ps -220.25 104.62 224.38 104.62 MacLine -220.25 150.38 224.38 150.38 MacLine -264.62 125.50 264.62 129.62 MacLine -179.88 125.50 179.88 129.62 MacLine -1 ps -2.00 ps -222.25 105.62 222.25 149.38 MacLine -180.88 127.50 263.62 127.50 MacLine -1 ps -2.00 ps -304.88 104.62 309.00 104.62 MacLine -304.88 150.38 309.00 150.38 MacLine -349.25 125.50 349.25 129.62 MacLine -264.50 125.50 264.50 129.62 MacLine -1 ps -2.00 ps -306.88 105.62 306.88 149.38 MacLine -265.50 127.50 348.25 127.50 MacLine -1 ps -2.00 ps -389.62 196.25 393.75 196.25 MacLine -389.62 242.00 393.75 242.00 MacLine -434.00 217.12 434.00 221.25 MacLine -349.25 217.12 349.25 221.25 MacLine -1 ps -2.00 ps -391.62 197.25 391.62 241.00 MacLine -350.25 219.12 433.00 219.12 MacLine -1 ps -2.00 ps -474.25 196.25 478.38 196.25 MacLine -474.25 242.00 478.38 242.00 MacLine -518.62 217.12 518.62 221.25 MacLine -433.88 217.12 433.88 221.25 MacLine -1 ps -2.00 ps -476.25 197.25 476.25 241.00 MacLine -434.88 219.12 517.62 219.12 MacLine -1 ps -2.00 ps -newpath 138.62 36.88 4.00 0 360 arc -0 FillPath -newpath 223.25 128.50 4.00 0 360 arc -0 FillPath -newpath 307.88 128.50 4.00 0 360 arc -0 FillPath -newpath 392.62 220.12 4.00 0 360 arc -0 FillPath -newpath 477.25 220.12 4.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av8.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av8.gif deleted file mode 100755 index 2cdddf971..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av8.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av9.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av9.eps deleted file mode 100755 index ccc9633f5..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av9.eps +++ /dev/null @@ -1,745 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_x9 -%%Creation Date: Tue, Jan 9, 1996 09:43 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(6) 41.12 18.38 8.88 WS -gsave 0.125 ps [1] sd -57.00 20.50 558.00 20.50 MacLine -grestore -1.00 ps -561.50 20.00 558.00 20.00 MacLine -53.50 20.00 57.00 20.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 27.12 558.00 27.12 MacLine -grestore -1.00 ps -561.50 26.62 558.00 26.62 MacLine -53.50 26.62 57.00 26.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 33.62 558.00 33.62 MacLine -grestore -1.00 ps -561.50 33.12 558.00 33.12 MacLine -53.50 33.12 57.00 33.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 40.12 558.00 40.12 MacLine -grestore -1.00 ps -561.50 39.62 558.00 39.62 MacLine -53.50 39.62 57.00 39.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 46.62 554.50 46.62 MacLine -grestore -1.00 ps -561.50 46.25 554.50 46.25 MacLine -53.50 46.25 60.50 46.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 41.12 51.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 53.25 558.00 53.25 MacLine -grestore -1.00 ps -561.50 52.75 558.00 52.75 MacLine -53.50 52.75 57.00 52.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 66.38 558.00 66.38 MacLine -grestore -1.00 ps -561.50 65.88 558.00 65.88 MacLine -53.50 65.88 57.00 65.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 72.88 558.00 72.88 MacLine -grestore -1.00 ps -561.50 72.38 558.00 72.38 MacLine -53.50 72.38 57.00 72.38 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 79.25 554.50 79.25 MacLine -grestore -1.00 ps -561.50 78.88 554.50 78.88 MacLine -53.50 78.88 60.50 78.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 83.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 86.00 558.00 86.00 MacLine -grestore -1.00 ps -561.50 85.50 558.00 85.50 MacLine -53.50 85.50 57.00 85.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 92.50 558.00 92.50 MacLine -grestore -1.00 ps -561.50 92.00 558.00 92.00 MacLine -53.50 92.00 57.00 92.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 99.00 558.00 99.00 MacLine -grestore -1.00 ps -561.50 98.50 558.00 98.50 MacLine -53.50 98.50 57.00 98.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 112.00 554.50 112.00 MacLine -grestore -1.00 ps -561.50 111.62 554.50 111.62 MacLine -53.50 111.62 60.50 111.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(3) 41.12 116.50 8.88 WS -gsave 0.125 ps [1] sd -57.00 118.62 558.00 118.62 MacLine -grestore -1.00 ps -561.50 118.12 558.00 118.12 MacLine -53.50 118.12 57.00 118.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 125.25 558.00 125.25 MacLine -grestore -1.00 ps -561.50 124.75 558.00 124.75 MacLine -53.50 124.75 57.00 124.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 131.75 558.00 131.75 MacLine -grestore -1.00 ps -561.50 131.25 558.00 131.25 MacLine -53.50 131.25 57.00 131.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 138.38 558.00 138.38 MacLine -grestore -1.00 ps -561.50 137.88 558.00 137.88 MacLine -53.50 137.88 57.00 137.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 144.75 554.50 144.75 MacLine -grestore -1.00 ps -561.50 144.38 554.50 144.38 MacLine -53.50 144.38 60.50 144.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 149.25 8.88 WS -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 158.00 558.00 158.00 MacLine -grestore -1.00 ps -561.50 157.50 558.00 157.50 MacLine -53.50 157.50 57.00 157.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 164.50 558.00 164.50 MacLine -grestore -1.00 ps -561.50 164.00 558.00 164.00 MacLine -53.50 164.00 57.00 164.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 171.00 558.00 171.00 MacLine -grestore -1.00 ps -561.50 170.50 558.00 170.50 MacLine -53.50 170.50 57.00 170.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 177.50 554.50 177.50 MacLine -grestore -1.00 ps -561.50 177.12 554.50 177.12 MacLine -53.50 177.12 60.50 177.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1) 41.12 182.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 184.12 558.00 184.12 MacLine -grestore -1.00 ps -561.50 183.62 558.00 183.62 MacLine -53.50 183.62 57.00 183.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 190.62 558.00 190.62 MacLine -grestore -1.00 ps -561.50 190.12 558.00 190.12 MacLine -53.50 190.12 57.00 190.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 203.75 558.00 203.75 MacLine -grestore -1.00 ps -561.50 203.25 558.00 203.25 MacLine -53.50 203.25 57.00 203.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 210.12 554.50 210.12 MacLine -grestore -1.00 ps -561.50 209.75 554.50 209.75 MacLine -53.50 209.75 60.50 209.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 214.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 216.88 558.00 216.88 MacLine -grestore -1.00 ps -561.50 216.38 558.00 216.38 MacLine -53.50 216.38 57.00 216.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 223.38 558.00 223.38 MacLine -grestore -1.00 ps -561.50 222.88 558.00 222.88 MacLine -53.50 222.88 57.00 222.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 229.88 558.00 229.88 MacLine -grestore -1.00 ps -561.50 229.38 558.00 229.38 MacLine -53.50 229.38 57.00 229.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 236.50 558.00 236.50 MacLine -grestore -1.00 ps -561.50 236.00 558.00 236.00 MacLine -53.50 236.00 57.00 236.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-1) 35.75 247.38 14.25 WS -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 557.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 473.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -392.50 235.50 392.50 20.50 MacLine -grestore -1.00 ps -392.12 13.50 392.12 20.50 MacLine -392.12 242.50 392.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 388.25 259.88 8.88 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(3) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 219.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -138.50 235.50 138.50 20.50 MacLine -grestore -1.00 ps -138.12 13.50 138.12 20.50 MacLine -138.12 242.50 138.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1) 134.25 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -135.62 176.50 139.75 176.50 MacLine -135.62 242.00 139.75 242.00 MacLine -180.00 207.25 180.00 211.38 MacLine -95.25 207.25 95.25 211.38 MacLine -1 ps -2.00 ps -137.62 177.50 137.62 241.00 MacLine -96.25 209.25 179.00 209.25 MacLine -1 ps -2.00 ps -220.25 78.38 224.38 78.38 MacLine -220.25 143.88 224.38 143.88 MacLine -264.62 109.12 264.62 113.25 MacLine -179.88 109.12 179.88 113.25 MacLine -1 ps -2.00 ps -222.25 79.38 222.25 142.88 MacLine -180.88 111.12 263.62 111.12 MacLine -1 ps -2.00 ps -304.88 111.12 309.00 111.12 MacLine -304.88 176.62 309.00 176.62 MacLine -349.25 141.88 349.25 146.00 MacLine -264.50 141.88 264.50 146.00 MacLine -1 ps -2.00 ps -306.88 112.12 306.88 175.62 MacLine -265.50 143.88 348.25 143.88 MacLine -1 ps -2.00 ps -389.62 13.00 393.75 13.00 MacLine -389.62 78.50 393.75 78.50 MacLine -434.00 43.75 434.00 47.88 MacLine -349.25 43.75 349.25 47.88 MacLine -1 ps -2.00 ps -391.62 14.00 391.62 77.50 MacLine -350.25 45.75 433.00 45.75 MacLine -1 ps -2.00 ps -474.25 45.75 478.38 45.75 MacLine -474.25 111.25 478.38 111.25 MacLine -518.62 76.50 518.62 80.62 MacLine -433.88 76.50 433.88 80.62 MacLine -1 ps -2.00 ps -476.25 46.75 476.25 110.25 MacLine -434.88 78.50 517.62 78.50 MacLine -1 ps -2.00 ps -newpath 138.62 210.25 4.00 0 360 arc -0 FillPath -newpath 223.25 112.12 4.00 0 360 arc -0 FillPath -newpath 307.88 144.88 4.00 0 360 arc -0 FillPath -newpath 392.62 46.75 4.00 0 360 arc -0 FillPath -newpath 477.25 79.50 4.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av9.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av9.gif deleted file mode 100755 index b7ca53a5e..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob03av9.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av1.eps deleted file mode 100755 index d82a575b8..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av1.eps +++ /dev/null @@ -1,712 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_d1 -%%Creation Date: Wed, Jan 10, 1996 09:08 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2.0) 27.75 18.38 22.25 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -53.50 70.75 60.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1.5) 27.75 75.62 22.25 WS -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -53.50 128.00 60.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1.0) 27.75 132.88 22.25 WS -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -53.50 185.25 60.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0.5) 27.75 190.12 22.25 WS -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0.0) 27.75 247.38 22.25 WS -16.00 (_Helvetica) 0 F -gsave 12.38 142.38 translate -90 rotate -(t \(s\)) 0.00 0.00 27.75 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 17.00 MacLine -561.50 242.50 561.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -533.75 239.00 533.75 17.00 MacLine -grestore -1.00 ps -533.25 13.50 533.25 17.00 MacLine -533.25 242.50 533.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -505.50 239.00 505.50 17.00 MacLine -grestore -1.00 ps -505.00 13.50 505.00 17.00 MacLine -505.00 242.50 505.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(15) 468.50 259.88 17.75 WS -gsave 0.125 ps [1] sd -449.12 239.00 449.12 17.00 MacLine -grestore -1.00 ps -448.62 13.50 448.62 17.00 MacLine -448.62 242.50 448.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -420.88 239.00 420.88 17.00 MacLine -grestore -1.00 ps -420.38 13.50 420.38 17.00 MacLine -420.38 242.50 420.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.62 239.00 392.62 17.00 MacLine -grestore -1.00 ps -392.12 13.50 392.12 17.00 MacLine -392.12 242.50 392.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -364.50 239.00 364.50 17.00 MacLine -grestore -1.00 ps -364.00 13.50 364.00 17.00 MacLine -364.00 242.50 364.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -336.12 235.50 336.12 20.50 MacLine -grestore -1.00 ps -335.75 13.50 335.75 20.50 MacLine -335.75 242.50 335.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 327.38 259.88 17.75 WS -gsave 0.125 ps [1] sd -308.00 239.00 308.00 17.00 MacLine -grestore -1.00 ps -307.50 13.50 307.50 17.00 MacLine -307.50 242.50 307.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -279.75 239.00 279.75 17.00 MacLine -grestore -1.00 ps -279.25 13.50 279.25 17.00 MacLine -279.25 242.50 279.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -251.50 239.00 251.50 17.00 MacLine -grestore -1.00 ps -251.00 13.50 251.00 17.00 MacLine -251.00 242.50 251.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -223.38 239.00 223.38 17.00 MacLine -grestore -1.00 ps -222.88 13.50 222.88 17.00 MacLine -222.88 242.50 222.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -195.00 235.50 195.00 20.50 MacLine -grestore -1.00 ps -194.62 13.50 194.62 20.50 MacLine -194.62 242.50 194.62 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 190.75 259.88 8.88 WS -gsave 0.125 ps [1] sd -166.88 239.00 166.88 17.00 MacLine -grestore -1.00 ps -166.38 13.50 166.38 17.00 MacLine -166.38 242.50 166.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -138.62 239.00 138.62 17.00 MacLine -grestore -1.00 ps -138.12 13.50 138.12 17.00 MacLine -138.12 242.50 138.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -110.50 239.00 110.50 17.00 MacLine -grestore -1.00 ps -110.00 13.50 110.00 17.00 MacLine -110.00 242.50 110.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -82.25 239.00 82.25 17.00 MacLine -grestore -1.00 ps -81.75 13.50 81.75 17.00 MacLine -81.75 242.50 81.75 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(d \(m\)) 289.25 284.38 37.50 WS -2.00 ps -107.50 150.38 111.62 150.38 MacLine -107.50 196.12 111.62 196.12 MacLine -123.62 171.25 123.62 175.38 MacLine -95.38 171.25 95.38 175.38 MacLine -1 ps -2.00 ps -109.50 151.38 109.50 195.12 MacLine -96.38 173.25 122.62 173.25 MacLine -1 ps -2.00 ps -192.12 81.75 196.25 81.75 MacLine -192.12 127.50 196.25 127.50 MacLine -208.25 102.62 208.25 106.75 MacLine -180.00 102.62 180.00 106.75 MacLine -1 ps -2.00 ps -194.12 82.75 194.12 126.50 MacLine -181.00 104.62 207.25 104.62 MacLine -1 ps -2.00 ps -276.75 81.75 280.88 81.75 MacLine -276.75 127.50 280.88 127.50 MacLine -292.88 102.62 292.88 106.75 MacLine -264.62 102.62 264.62 106.75 MacLine -1 ps -2.00 ps -278.75 82.75 278.75 126.50 MacLine -265.62 104.62 291.88 104.62 MacLine -1 ps -2.00 ps -361.50 24.50 365.62 24.50 MacLine -361.50 70.25 365.62 70.25 MacLine -377.62 45.38 377.62 49.50 MacLine -349.38 45.38 349.38 49.50 MacLine -1 ps -2.00 ps -363.50 25.50 363.50 69.25 MacLine -350.38 47.38 376.62 47.38 MacLine -1 ps -2.00 ps -446.12 24.50 450.25 24.50 MacLine -446.12 70.25 450.25 70.25 MacLine -462.25 45.38 462.25 49.50 MacLine -434.00 45.38 434.00 49.50 MacLine -1 ps -2.00 ps -448.12 25.50 448.12 69.25 MacLine -435.00 47.38 461.25 47.38 MacLine -1 ps -1.00 ps -newpath 110.50 174.25 3.00 0 360 arc -0 FillPath -newpath 195.12 105.62 3.00 0 360 arc -0 FillPath -newpath 279.75 105.62 3.00 0 360 arc -0 FillPath -newpath 364.50 48.38 3.00 0 360 arc -0 FillPath -newpath 449.12 48.38 3.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av1.gif deleted file mode 100755 index 7507c24fd..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av10.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av10.eps deleted file mode 100755 index 91875ae69..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av10.eps +++ /dev/null @@ -1,712 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_d10 -%%Creation Date: Wed, Jan 10, 1996 09:09 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2.0) 27.75 18.38 22.25 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -53.50 70.75 60.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1.5) 27.75 75.62 22.25 WS -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -53.50 128.00 60.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1.0) 27.75 132.88 22.25 WS -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -53.50 185.25 60.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0.5) 27.75 190.12 22.25 WS -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0.0) 27.75 247.38 22.25 WS -16.00 (_Helvetica) 0 F -gsave 12.38 142.38 translate -90 rotate -(t \(s\)) 0.00 0.00 27.75 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 17.00 MacLine -561.50 242.50 561.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -533.75 239.00 533.75 17.00 MacLine -grestore -1.00 ps -533.25 13.50 533.25 17.00 MacLine -533.25 242.50 533.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -505.50 239.00 505.50 17.00 MacLine -grestore -1.00 ps -505.00 13.50 505.00 17.00 MacLine -505.00 242.50 505.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(15) 468.50 259.88 17.75 WS -gsave 0.125 ps [1] sd -449.12 239.00 449.12 17.00 MacLine -grestore -1.00 ps -448.62 13.50 448.62 17.00 MacLine -448.62 242.50 448.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -420.88 239.00 420.88 17.00 MacLine -grestore -1.00 ps -420.38 13.50 420.38 17.00 MacLine -420.38 242.50 420.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.62 239.00 392.62 17.00 MacLine -grestore -1.00 ps -392.12 13.50 392.12 17.00 MacLine -392.12 242.50 392.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -364.50 239.00 364.50 17.00 MacLine -grestore -1.00 ps -364.00 13.50 364.00 17.00 MacLine -364.00 242.50 364.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -336.12 235.50 336.12 20.50 MacLine -grestore -1.00 ps -335.75 13.50 335.75 20.50 MacLine -335.75 242.50 335.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 327.38 259.88 17.75 WS -gsave 0.125 ps [1] sd -308.00 239.00 308.00 17.00 MacLine -grestore -1.00 ps -307.50 13.50 307.50 17.00 MacLine -307.50 242.50 307.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -279.75 239.00 279.75 17.00 MacLine -grestore -1.00 ps -279.25 13.50 279.25 17.00 MacLine -279.25 242.50 279.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -251.50 239.00 251.50 17.00 MacLine -grestore -1.00 ps -251.00 13.50 251.00 17.00 MacLine -251.00 242.50 251.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -223.38 239.00 223.38 17.00 MacLine -grestore -1.00 ps -222.88 13.50 222.88 17.00 MacLine -222.88 242.50 222.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -195.00 235.50 195.00 20.50 MacLine -grestore -1.00 ps -194.62 13.50 194.62 20.50 MacLine -194.62 242.50 194.62 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 190.75 259.88 8.88 WS -gsave 0.125 ps [1] sd -166.88 239.00 166.88 17.00 MacLine -grestore -1.00 ps -166.38 13.50 166.38 17.00 MacLine -166.38 242.50 166.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -138.62 239.00 138.62 17.00 MacLine -grestore -1.00 ps -138.12 13.50 138.12 17.00 MacLine -138.12 242.50 138.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -110.50 239.00 110.50 17.00 MacLine -grestore -1.00 ps -110.00 13.50 110.00 17.00 MacLine -110.00 242.50 110.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -82.25 239.00 82.25 17.00 MacLine -grestore -1.00 ps -81.75 13.50 81.75 17.00 MacLine -81.75 242.50 81.75 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(d \(m\)) 289.25 284.38 37.50 WS -2.00 ps -149.75 139.00 153.88 139.00 MacLine -149.75 184.75 153.88 184.75 MacLine -165.88 159.88 165.88 164.00 MacLine -137.62 159.88 137.62 164.00 MacLine -1 ps -2.00 ps -151.75 140.00 151.75 183.75 MacLine -138.62 161.88 164.88 161.88 MacLine -1 ps -2.00 ps -220.38 81.75 224.50 81.75 MacLine -220.38 127.50 224.50 127.50 MacLine -236.50 102.62 236.50 106.75 MacLine -208.25 102.62 208.25 106.75 MacLine -1 ps -2.00 ps -222.38 82.75 222.38 126.50 MacLine -209.25 104.62 235.50 104.62 MacLine -1 ps -2.00 ps -290.88 81.75 295.00 81.75 MacLine -290.88 127.50 295.00 127.50 MacLine -307.00 102.62 307.00 106.75 MacLine -278.75 102.62 278.75 106.75 MacLine -1 ps -2.00 ps -292.88 82.75 292.88 126.50 MacLine -279.75 104.62 306.00 104.62 MacLine -1 ps -2.00 ps -361.50 47.38 365.62 47.38 MacLine -361.50 93.12 365.62 93.12 MacLine -377.62 68.25 377.62 72.38 MacLine -349.38 68.25 349.38 72.38 MacLine -1 ps -2.00 ps -363.50 48.38 363.50 92.12 MacLine -350.38 70.25 376.62 70.25 MacLine -1 ps -2.00 ps -432.00 47.38 436.12 47.38 MacLine -432.00 93.12 436.12 93.12 MacLine -448.12 68.25 448.12 72.38 MacLine -419.88 68.25 419.88 72.38 MacLine -1 ps -2.00 ps -434.00 48.38 434.00 92.12 MacLine -420.88 70.25 447.12 70.25 MacLine -1 ps -1.00 ps -newpath 152.75 162.88 3.00 0 360 arc -0 FillPath -newpath 223.38 105.62 3.00 0 360 arc -0 FillPath -newpath 293.88 105.62 3.00 0 360 arc -0 FillPath -newpath 364.50 71.25 3.00 0 360 arc -0 FillPath -newpath 435.00 71.25 3.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av10.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av10.gif deleted file mode 100755 index 40e25121f..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av10.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av2.eps deleted file mode 100755 index a1e4dcf5a..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av2.eps +++ /dev/null @@ -1,712 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_d2 -%%Creation Date: Wed, Jan 10, 1996 09:08 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2.0) 27.75 18.38 22.25 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -53.50 70.75 60.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1.5) 27.75 75.62 22.25 WS -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -53.50 128.00 60.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1.0) 27.75 132.88 22.25 WS -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -53.50 185.25 60.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0.5) 27.75 190.12 22.25 WS -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0.0) 27.75 247.38 22.25 WS -16.00 (_Helvetica) 0 F -gsave 12.38 142.38 translate -90 rotate -(t \(s\)) 0.00 0.00 27.75 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 17.00 MacLine -561.50 242.50 561.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -533.75 239.00 533.75 17.00 MacLine -grestore -1.00 ps -533.25 13.50 533.25 17.00 MacLine -533.25 242.50 533.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -505.50 239.00 505.50 17.00 MacLine -grestore -1.00 ps -505.00 13.50 505.00 17.00 MacLine -505.00 242.50 505.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(15) 468.50 259.88 17.75 WS -gsave 0.125 ps [1] sd -449.12 239.00 449.12 17.00 MacLine -grestore -1.00 ps -448.62 13.50 448.62 17.00 MacLine -448.62 242.50 448.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -420.88 239.00 420.88 17.00 MacLine -grestore -1.00 ps -420.38 13.50 420.38 17.00 MacLine -420.38 242.50 420.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.62 239.00 392.62 17.00 MacLine -grestore -1.00 ps -392.12 13.50 392.12 17.00 MacLine -392.12 242.50 392.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -364.50 239.00 364.50 17.00 MacLine -grestore -1.00 ps -364.00 13.50 364.00 17.00 MacLine -364.00 242.50 364.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -336.12 235.50 336.12 20.50 MacLine -grestore -1.00 ps -335.75 13.50 335.75 20.50 MacLine -335.75 242.50 335.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 327.38 259.88 17.75 WS -gsave 0.125 ps [1] sd -308.00 239.00 308.00 17.00 MacLine -grestore -1.00 ps -307.50 13.50 307.50 17.00 MacLine -307.50 242.50 307.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -279.75 239.00 279.75 17.00 MacLine -grestore -1.00 ps -279.25 13.50 279.25 17.00 MacLine -279.25 242.50 279.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -251.50 239.00 251.50 17.00 MacLine -grestore -1.00 ps -251.00 13.50 251.00 17.00 MacLine -251.00 242.50 251.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -223.38 239.00 223.38 17.00 MacLine -grestore -1.00 ps -222.88 13.50 222.88 17.00 MacLine -222.88 242.50 222.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -195.00 235.50 195.00 20.50 MacLine -grestore -1.00 ps -194.62 13.50 194.62 20.50 MacLine -194.62 242.50 194.62 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 190.75 259.88 8.88 WS -gsave 0.125 ps [1] sd -166.88 239.00 166.88 17.00 MacLine -grestore -1.00 ps -166.38 13.50 166.38 17.00 MacLine -166.38 242.50 166.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -138.62 239.00 138.62 17.00 MacLine -grestore -1.00 ps -138.12 13.50 138.12 17.00 MacLine -138.12 242.50 138.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -110.50 239.00 110.50 17.00 MacLine -grestore -1.00 ps -110.00 13.50 110.00 17.00 MacLine -110.00 242.50 110.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -82.25 239.00 82.25 17.00 MacLine -grestore -1.00 ps -81.75 13.50 81.75 17.00 MacLine -81.75 242.50 81.75 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(d \(m\)) 289.25 284.38 37.50 WS -2.00 ps -79.25 173.25 83.38 173.25 MacLine -79.25 219.00 83.38 219.00 MacLine -95.38 194.12 95.38 198.25 MacLine -67.12 194.12 67.12 198.25 MacLine -1 ps -2.00 ps -81.25 174.25 81.25 218.00 MacLine -68.12 196.12 94.38 196.12 MacLine -1 ps -2.00 ps -135.75 116.00 139.88 116.00 MacLine -135.75 161.75 139.88 161.75 MacLine -151.88 136.88 151.88 141.00 MacLine -123.62 136.88 123.62 141.00 MacLine -1 ps -2.00 ps -137.75 117.00 137.75 160.75 MacLine -124.62 138.88 150.88 138.88 MacLine -1 ps -2.00 ps -192.12 116.00 196.25 116.00 MacLine -192.12 161.75 196.25 161.75 MacLine -208.25 136.88 208.25 141.00 MacLine -180.00 136.88 180.00 141.00 MacLine -1 ps -2.00 ps -194.12 117.00 194.12 160.75 MacLine -181.00 138.88 207.25 138.88 MacLine -1 ps -2.00 ps -248.62 70.25 252.75 70.25 MacLine -248.62 116.00 252.75 116.00 MacLine -264.75 91.12 264.75 95.25 MacLine -236.50 91.12 236.50 95.25 MacLine -1 ps -2.00 ps -250.62 71.25 250.62 115.00 MacLine -237.50 93.12 263.75 93.12 MacLine -1 ps -2.00 ps -305.00 70.25 309.12 70.25 MacLine -305.00 116.00 309.12 116.00 MacLine -321.12 91.12 321.12 95.25 MacLine -292.88 91.12 292.88 95.25 MacLine -1 ps -2.00 ps -307.00 71.25 307.00 115.00 MacLine -293.88 93.12 320.12 93.12 MacLine -1 ps -1.00 ps -newpath 82.25 197.12 3.00 0 360 arc -0 FillPath -newpath 138.75 139.88 3.00 0 360 arc -0 FillPath -newpath 195.12 139.88 3.00 0 360 arc -0 FillPath -newpath 251.62 94.12 3.00 0 360 arc -0 FillPath -newpath 308.00 94.12 3.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av2.gif deleted file mode 100755 index 6747decf1..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av3.eps deleted file mode 100755 index 9abc9807d..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av3.eps +++ /dev/null @@ -1,712 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_d3 -%%Creation Date: Wed, Jan 10, 1996 09:08 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2.0) 27.75 18.38 22.25 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -53.50 70.75 60.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1.5) 27.75 75.62 22.25 WS -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -53.50 128.00 60.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1.0) 27.75 132.88 22.25 WS -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -53.50 185.25 60.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0.5) 27.75 190.12 22.25 WS -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0.0) 27.75 247.38 22.25 WS -16.00 (_Helvetica) 0 F -gsave 12.38 142.38 translate -90 rotate -(t \(s\)) 0.00 0.00 27.75 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 17.00 MacLine -561.50 242.50 561.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -533.75 239.00 533.75 17.00 MacLine -grestore -1.00 ps -533.25 13.50 533.25 17.00 MacLine -533.25 242.50 533.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -505.50 239.00 505.50 17.00 MacLine -grestore -1.00 ps -505.00 13.50 505.00 17.00 MacLine -505.00 242.50 505.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(15) 468.50 259.88 17.75 WS -gsave 0.125 ps [1] sd -449.12 239.00 449.12 17.00 MacLine -grestore -1.00 ps -448.62 13.50 448.62 17.00 MacLine -448.62 242.50 448.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -420.88 239.00 420.88 17.00 MacLine -grestore -1.00 ps -420.38 13.50 420.38 17.00 MacLine -420.38 242.50 420.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.62 239.00 392.62 17.00 MacLine -grestore -1.00 ps -392.12 13.50 392.12 17.00 MacLine -392.12 242.50 392.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -364.50 239.00 364.50 17.00 MacLine -grestore -1.00 ps -364.00 13.50 364.00 17.00 MacLine -364.00 242.50 364.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -336.12 235.50 336.12 20.50 MacLine -grestore -1.00 ps -335.75 13.50 335.75 20.50 MacLine -335.75 242.50 335.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 327.38 259.88 17.75 WS -gsave 0.125 ps [1] sd -308.00 239.00 308.00 17.00 MacLine -grestore -1.00 ps -307.50 13.50 307.50 17.00 MacLine -307.50 242.50 307.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -279.75 239.00 279.75 17.00 MacLine -grestore -1.00 ps -279.25 13.50 279.25 17.00 MacLine -279.25 242.50 279.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -251.50 239.00 251.50 17.00 MacLine -grestore -1.00 ps -251.00 13.50 251.00 17.00 MacLine -251.00 242.50 251.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -223.38 239.00 223.38 17.00 MacLine -grestore -1.00 ps -222.88 13.50 222.88 17.00 MacLine -222.88 242.50 222.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -195.00 235.50 195.00 20.50 MacLine -grestore -1.00 ps -194.62 13.50 194.62 20.50 MacLine -194.62 242.50 194.62 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 190.75 259.88 8.88 WS -gsave 0.125 ps [1] sd -166.88 239.00 166.88 17.00 MacLine -grestore -1.00 ps -166.38 13.50 166.38 17.00 MacLine -166.38 242.50 166.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -138.62 239.00 138.62 17.00 MacLine -grestore -1.00 ps -138.12 13.50 138.12 17.00 MacLine -138.12 242.50 138.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -110.50 239.00 110.50 17.00 MacLine -grestore -1.00 ps -110.00 13.50 110.00 17.00 MacLine -110.00 242.50 110.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -82.25 239.00 82.25 17.00 MacLine -grestore -1.00 ps -81.75 13.50 81.75 17.00 MacLine -81.75 242.50 81.75 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(d \(m\)) 289.25 284.38 37.50 WS -2.00 ps -248.50 93.25 252.62 93.25 MacLine -248.50 139.00 252.62 139.00 MacLine -264.62 114.12 264.62 118.25 MacLine -236.38 114.12 236.38 118.25 MacLine -1 ps -2.00 ps -250.50 94.25 250.50 138.00 MacLine -237.38 116.12 263.62 116.12 MacLine -1 ps -2.00 ps -319.12 47.38 323.25 47.38 MacLine -319.12 93.12 323.25 93.12 MacLine -335.25 68.25 335.25 72.38 MacLine -307.00 68.25 307.00 72.38 MacLine -1 ps -2.00 ps -321.12 48.38 321.12 92.12 MacLine -308.00 70.25 334.25 70.25 MacLine -1 ps -2.00 ps -389.62 58.88 393.75 58.88 MacLine -389.62 104.62 393.75 104.62 MacLine -405.75 79.75 405.75 83.88 MacLine -377.50 79.75 377.50 83.88 MacLine -1 ps -2.00 ps -391.62 59.88 391.62 103.62 MacLine -378.50 81.75 404.75 81.75 MacLine -1 ps -2.00 ps -460.25 13.00 464.38 13.00 MacLine -460.25 58.75 464.38 58.75 MacLine -476.38 33.88 476.38 38.00 MacLine -448.12 33.88 448.12 38.00 MacLine -1 ps -2.00 ps -462.25 14.00 462.25 57.75 MacLine -449.12 35.88 475.38 35.88 MacLine -1 ps -2.00 ps -530.75 24.50 534.88 24.50 MacLine -530.75 70.25 534.88 70.25 MacLine -546.88 45.38 546.88 49.50 MacLine -518.62 45.38 518.62 49.50 MacLine -1 ps -2.00 ps -532.75 25.50 532.75 69.25 MacLine -519.62 47.38 545.88 47.38 MacLine -1 ps -1.00 ps -newpath 251.50 117.12 3.00 0 360 arc -0 FillPath -newpath 322.12 71.25 3.00 0 360 arc -0 FillPath -newpath 392.62 82.75 3.00 0 360 arc -0 FillPath -newpath 463.25 36.88 3.00 0 360 arc -0 FillPath -newpath 533.75 48.38 3.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av3.gif deleted file mode 100755 index b0ab88bbe..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av4.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av4.eps deleted file mode 100755 index b728d4285..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av4.eps +++ /dev/null @@ -1,712 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_d4 -%%Creation Date: Wed, Jan 10, 1996 09:09 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2.0) 27.75 18.38 22.25 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -53.50 70.75 60.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1.5) 27.75 75.62 22.25 WS -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -53.50 128.00 60.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1.0) 27.75 132.88 22.25 WS -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -53.50 185.25 60.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0.5) 27.75 190.12 22.25 WS -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0.0) 27.75 247.38 22.25 WS -16.00 (_Helvetica) 0 F -gsave 12.38 142.38 translate -90 rotate -(t \(s\)) 0.00 0.00 27.75 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 17.00 MacLine -561.50 242.50 561.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -533.75 239.00 533.75 17.00 MacLine -grestore -1.00 ps -533.25 13.50 533.25 17.00 MacLine -533.25 242.50 533.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -505.50 239.00 505.50 17.00 MacLine -grestore -1.00 ps -505.00 13.50 505.00 17.00 MacLine -505.00 242.50 505.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(15) 468.50 259.88 17.75 WS -gsave 0.125 ps [1] sd -449.12 239.00 449.12 17.00 MacLine -grestore -1.00 ps -448.62 13.50 448.62 17.00 MacLine -448.62 242.50 448.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -420.88 239.00 420.88 17.00 MacLine -grestore -1.00 ps -420.38 13.50 420.38 17.00 MacLine -420.38 242.50 420.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.62 239.00 392.62 17.00 MacLine -grestore -1.00 ps -392.12 13.50 392.12 17.00 MacLine -392.12 242.50 392.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -364.50 239.00 364.50 17.00 MacLine -grestore -1.00 ps -364.00 13.50 364.00 17.00 MacLine -364.00 242.50 364.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -336.12 235.50 336.12 20.50 MacLine -grestore -1.00 ps -335.75 13.50 335.75 20.50 MacLine -335.75 242.50 335.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 327.38 259.88 17.75 WS -gsave 0.125 ps [1] sd -308.00 239.00 308.00 17.00 MacLine -grestore -1.00 ps -307.50 13.50 307.50 17.00 MacLine -307.50 242.50 307.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -279.75 239.00 279.75 17.00 MacLine -grestore -1.00 ps -279.25 13.50 279.25 17.00 MacLine -279.25 242.50 279.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -251.50 239.00 251.50 17.00 MacLine -grestore -1.00 ps -251.00 13.50 251.00 17.00 MacLine -251.00 242.50 251.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -223.38 239.00 223.38 17.00 MacLine -grestore -1.00 ps -222.88 13.50 222.88 17.00 MacLine -222.88 242.50 222.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -195.00 235.50 195.00 20.50 MacLine -grestore -1.00 ps -194.62 13.50 194.62 20.50 MacLine -194.62 242.50 194.62 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 190.75 259.88 8.88 WS -gsave 0.125 ps [1] sd -166.88 239.00 166.88 17.00 MacLine -grestore -1.00 ps -166.38 13.50 166.38 17.00 MacLine -166.38 242.50 166.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -138.62 239.00 138.62 17.00 MacLine -grestore -1.00 ps -138.12 13.50 138.12 17.00 MacLine -138.12 242.50 138.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -110.50 239.00 110.50 17.00 MacLine -grestore -1.00 ps -110.00 13.50 110.00 17.00 MacLine -110.00 242.50 110.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -82.25 239.00 82.25 17.00 MacLine -grestore -1.00 ps -81.75 13.50 81.75 17.00 MacLine -81.75 242.50 81.75 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(d \(m\)) 289.25 284.38 37.50 WS -2.00 ps -192.12 116.00 196.25 116.00 MacLine -192.12 161.75 196.25 161.75 MacLine -208.25 136.88 208.25 141.00 MacLine -180.00 136.88 180.00 141.00 MacLine -1 ps -2.00 ps -194.12 117.00 194.12 160.75 MacLine -181.00 138.88 207.25 138.88 MacLine -1 ps -2.00 ps -248.62 70.25 252.75 70.25 MacLine -248.62 116.00 252.75 116.00 MacLine -264.75 91.12 264.75 95.25 MacLine -236.50 91.12 236.50 95.25 MacLine -1 ps -2.00 ps -250.62 71.25 250.62 115.00 MacLine -237.50 93.12 263.75 93.12 MacLine -1 ps -2.00 ps -305.00 81.75 309.12 81.75 MacLine -305.00 127.50 309.12 127.50 MacLine -321.12 102.62 321.12 106.75 MacLine -292.88 102.62 292.88 106.75 MacLine -1 ps -2.00 ps -307.00 82.75 307.00 126.50 MacLine -293.88 104.62 320.12 104.62 MacLine -1 ps -2.00 ps -361.38 47.38 365.50 47.38 MacLine -361.38 93.12 365.50 93.12 MacLine -377.50 68.25 377.50 72.38 MacLine -349.25 68.25 349.25 72.38 MacLine -1 ps -2.00 ps -363.38 48.38 363.38 92.12 MacLine -350.25 70.25 376.50 70.25 MacLine -1 ps -2.00 ps -417.88 47.38 422.00 47.38 MacLine -417.88 93.12 422.00 93.12 MacLine -434.00 68.25 434.00 72.38 MacLine -405.75 68.25 405.75 72.38 MacLine -1 ps -2.00 ps -419.88 48.38 419.88 92.12 MacLine -406.75 70.25 433.00 70.25 MacLine -1 ps -1.00 ps -newpath 195.12 139.88 3.00 0 360 arc -0 FillPath -newpath 251.62 94.12 3.00 0 360 arc -0 FillPath -newpath 308.00 105.62 3.00 0 360 arc -0 FillPath -newpath 364.38 71.25 3.00 0 360 arc -0 FillPath -newpath 420.88 71.25 3.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av4.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av4.gif deleted file mode 100755 index c4a9e4ba9..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av4.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av5.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av5.eps deleted file mode 100755 index 7abacef5f..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av5.eps +++ /dev/null @@ -1,712 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_d5 -%%Creation Date: Wed, Jan 10, 1996 09:09 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2.0) 27.75 18.38 22.25 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -53.50 70.75 60.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1.5) 27.75 75.62 22.25 WS -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -53.50 128.00 60.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1.0) 27.75 132.88 22.25 WS -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -53.50 185.25 60.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0.5) 27.75 190.12 22.25 WS -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0.0) 27.75 247.38 22.25 WS -16.00 (_Helvetica) 0 F -gsave 12.38 142.38 translate -90 rotate -(t \(s\)) 0.00 0.00 27.75 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 17.00 MacLine -561.50 242.50 561.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -533.75 239.00 533.75 17.00 MacLine -grestore -1.00 ps -533.25 13.50 533.25 17.00 MacLine -533.25 242.50 533.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -505.50 239.00 505.50 17.00 MacLine -grestore -1.00 ps -505.00 13.50 505.00 17.00 MacLine -505.00 242.50 505.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(15) 468.50 259.88 17.75 WS -gsave 0.125 ps [1] sd -449.12 239.00 449.12 17.00 MacLine -grestore -1.00 ps -448.62 13.50 448.62 17.00 MacLine -448.62 242.50 448.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -420.88 239.00 420.88 17.00 MacLine -grestore -1.00 ps -420.38 13.50 420.38 17.00 MacLine -420.38 242.50 420.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.62 239.00 392.62 17.00 MacLine -grestore -1.00 ps -392.12 13.50 392.12 17.00 MacLine -392.12 242.50 392.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -364.50 239.00 364.50 17.00 MacLine -grestore -1.00 ps -364.00 13.50 364.00 17.00 MacLine -364.00 242.50 364.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -336.12 235.50 336.12 20.50 MacLine -grestore -1.00 ps -335.75 13.50 335.75 20.50 MacLine -335.75 242.50 335.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 327.38 259.88 17.75 WS -gsave 0.125 ps [1] sd -308.00 239.00 308.00 17.00 MacLine -grestore -1.00 ps -307.50 13.50 307.50 17.00 MacLine -307.50 242.50 307.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -279.75 239.00 279.75 17.00 MacLine -grestore -1.00 ps -279.25 13.50 279.25 17.00 MacLine -279.25 242.50 279.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -251.50 239.00 251.50 17.00 MacLine -grestore -1.00 ps -251.00 13.50 251.00 17.00 MacLine -251.00 242.50 251.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -223.38 239.00 223.38 17.00 MacLine -grestore -1.00 ps -222.88 13.50 222.88 17.00 MacLine -222.88 242.50 222.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -195.00 235.50 195.00 20.50 MacLine -grestore -1.00 ps -194.62 13.50 194.62 20.50 MacLine -194.62 242.50 194.62 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 190.75 259.88 8.88 WS -gsave 0.125 ps [1] sd -166.88 239.00 166.88 17.00 MacLine -grestore -1.00 ps -166.38 13.50 166.38 17.00 MacLine -166.38 242.50 166.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -138.62 239.00 138.62 17.00 MacLine -grestore -1.00 ps -138.12 13.50 138.12 17.00 MacLine -138.12 242.50 138.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -110.50 239.00 110.50 17.00 MacLine -grestore -1.00 ps -110.00 13.50 110.00 17.00 MacLine -110.00 242.50 110.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -82.25 239.00 82.25 17.00 MacLine -grestore -1.00 ps -81.75 13.50 81.75 17.00 MacLine -81.75 242.50 81.75 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(d \(m\)) 289.25 284.38 37.50 WS -2.00 ps -276.75 93.25 280.88 93.25 MacLine -276.75 139.00 280.88 139.00 MacLine -292.88 114.12 292.88 118.25 MacLine -264.62 114.12 264.62 118.25 MacLine -1 ps -2.00 ps -278.75 94.25 278.75 138.00 MacLine -265.62 116.12 291.88 116.12 MacLine -1 ps -2.00 ps -319.12 58.88 323.25 58.88 MacLine -319.12 104.62 323.25 104.62 MacLine -335.25 79.75 335.25 83.88 MacLine -307.00 79.75 307.00 83.88 MacLine -1 ps -2.00 ps -321.12 59.88 321.12 103.62 MacLine -308.00 81.75 334.25 81.75 MacLine -1 ps -2.00 ps -361.38 70.25 365.50 70.25 MacLine -361.38 116.00 365.50 116.00 MacLine -377.50 91.12 377.50 95.25 MacLine -349.25 91.12 349.25 95.25 MacLine -1 ps -2.00 ps -363.38 71.25 363.38 115.00 MacLine -350.25 93.12 376.50 93.12 MacLine -1 ps -2.00 ps -403.75 36.00 407.88 36.00 MacLine -403.75 81.75 407.88 81.75 MacLine -419.88 56.88 419.88 61.00 MacLine -391.62 56.88 391.62 61.00 MacLine -1 ps -2.00 ps -405.75 37.00 405.75 80.75 MacLine -392.62 58.88 418.88 58.88 MacLine -1 ps -2.00 ps -446.12 47.38 450.25 47.38 MacLine -446.12 93.12 450.25 93.12 MacLine -462.25 68.25 462.25 72.38 MacLine -434.00 68.25 434.00 72.38 MacLine -1 ps -2.00 ps -448.12 48.38 448.12 92.12 MacLine -435.00 70.25 461.25 70.25 MacLine -1 ps -1.00 ps -newpath 279.75 117.12 3.00 0 360 arc -0 FillPath -newpath 322.12 82.75 3.00 0 360 arc -0 FillPath -newpath 364.38 94.12 3.00 0 360 arc -0 FillPath -newpath 406.75 59.88 3.00 0 360 arc -0 FillPath -newpath 449.12 71.25 3.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av5.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av5.gif deleted file mode 100755 index e19190468..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av5.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av6.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av6.eps deleted file mode 100755 index 3d9697748..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av6.eps +++ /dev/null @@ -1,712 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_d6 -%%Creation Date: Wed, Jan 10, 1996 09:09 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2.0) 27.75 18.38 22.25 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -53.50 70.75 60.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1.5) 27.75 75.62 22.25 WS -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -53.50 128.00 60.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1.0) 27.75 132.88 22.25 WS -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -53.50 185.25 60.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0.5) 27.75 190.12 22.25 WS -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0.0) 27.75 247.38 22.25 WS -16.00 (_Helvetica) 0 F -gsave 12.38 142.38 translate -90 rotate -(t \(s\)) 0.00 0.00 27.75 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 17.00 MacLine -561.50 242.50 561.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -533.75 239.00 533.75 17.00 MacLine -grestore -1.00 ps -533.25 13.50 533.25 17.00 MacLine -533.25 242.50 533.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -505.50 239.00 505.50 17.00 MacLine -grestore -1.00 ps -505.00 13.50 505.00 17.00 MacLine -505.00 242.50 505.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(15) 468.50 259.88 17.75 WS -gsave 0.125 ps [1] sd -449.12 239.00 449.12 17.00 MacLine -grestore -1.00 ps -448.62 13.50 448.62 17.00 MacLine -448.62 242.50 448.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -420.88 239.00 420.88 17.00 MacLine -grestore -1.00 ps -420.38 13.50 420.38 17.00 MacLine -420.38 242.50 420.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.62 239.00 392.62 17.00 MacLine -grestore -1.00 ps -392.12 13.50 392.12 17.00 MacLine -392.12 242.50 392.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -364.50 239.00 364.50 17.00 MacLine -grestore -1.00 ps -364.00 13.50 364.00 17.00 MacLine -364.00 242.50 364.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -336.12 235.50 336.12 20.50 MacLine -grestore -1.00 ps -335.75 13.50 335.75 20.50 MacLine -335.75 242.50 335.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 327.38 259.88 17.75 WS -gsave 0.125 ps [1] sd -308.00 239.00 308.00 17.00 MacLine -grestore -1.00 ps -307.50 13.50 307.50 17.00 MacLine -307.50 242.50 307.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -279.75 239.00 279.75 17.00 MacLine -grestore -1.00 ps -279.25 13.50 279.25 17.00 MacLine -279.25 242.50 279.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -251.50 239.00 251.50 17.00 MacLine -grestore -1.00 ps -251.00 13.50 251.00 17.00 MacLine -251.00 242.50 251.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -223.38 239.00 223.38 17.00 MacLine -grestore -1.00 ps -222.88 13.50 222.88 17.00 MacLine -222.88 242.50 222.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -195.00 235.50 195.00 20.50 MacLine -grestore -1.00 ps -194.62 13.50 194.62 20.50 MacLine -194.62 242.50 194.62 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 190.75 259.88 8.88 WS -gsave 0.125 ps [1] sd -166.88 239.00 166.88 17.00 MacLine -grestore -1.00 ps -166.38 13.50 166.38 17.00 MacLine -166.38 242.50 166.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -138.62 239.00 138.62 17.00 MacLine -grestore -1.00 ps -138.12 13.50 138.12 17.00 MacLine -138.12 242.50 138.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -110.50 239.00 110.50 17.00 MacLine -grestore -1.00 ps -110.00 13.50 110.00 17.00 MacLine -110.00 242.50 110.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -82.25 239.00 82.25 17.00 MacLine -grestore -1.00 ps -81.75 13.50 81.75 17.00 MacLine -81.75 242.50 81.75 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(d \(m\)) 289.25 284.38 37.50 WS -2.00 ps -107.50 161.88 111.62 161.88 MacLine -107.50 207.62 111.62 207.62 MacLine -123.62 182.75 123.62 186.88 MacLine -95.38 182.75 95.38 186.88 MacLine -1 ps -2.00 ps -109.50 162.88 109.50 206.62 MacLine -96.38 184.75 122.62 184.75 MacLine -1 ps -2.00 ps -192.12 93.12 196.25 93.12 MacLine -192.12 138.88 196.25 138.88 MacLine -208.25 114.00 208.25 118.12 MacLine -180.00 114.00 180.00 118.12 MacLine -1 ps -2.00 ps -194.12 94.12 194.12 137.88 MacLine -181.00 116.00 207.25 116.00 MacLine -1 ps -2.00 ps -276.75 93.12 280.88 93.12 MacLine -276.75 138.88 280.88 138.88 MacLine -292.88 114.00 292.88 118.12 MacLine -264.62 114.00 264.62 118.12 MacLine -1 ps -2.00 ps -278.75 94.12 278.75 137.88 MacLine -265.62 116.00 291.88 116.00 MacLine -1 ps -2.00 ps -361.50 47.38 365.62 47.38 MacLine -361.50 93.12 365.62 93.12 MacLine -377.62 68.25 377.62 72.38 MacLine -349.38 68.25 349.38 72.38 MacLine -1 ps -2.00 ps -363.50 48.38 363.50 92.12 MacLine -350.38 70.25 376.62 70.25 MacLine -1 ps -2.00 ps -446.12 47.38 450.25 47.38 MacLine -446.12 93.12 450.25 93.12 MacLine -462.25 68.25 462.25 72.38 MacLine -434.00 68.25 434.00 72.38 MacLine -1 ps -2.00 ps -448.12 48.38 448.12 92.12 MacLine -435.00 70.25 461.25 70.25 MacLine -1 ps -1.00 ps -newpath 110.50 185.75 3.00 0 360 arc -0 FillPath -newpath 195.12 117.00 3.00 0 360 arc -0 FillPath -newpath 279.75 117.00 3.00 0 360 arc -0 FillPath -newpath 364.50 71.25 3.00 0 360 arc -0 FillPath -newpath 449.12 71.25 3.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av6.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av6.gif deleted file mode 100755 index 3532f9477..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av6.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av7.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av7.eps deleted file mode 100755 index 1ddd0055f..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av7.eps +++ /dev/null @@ -1,712 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_d7 -%%Creation Date: Wed, Jan 10, 1996 09:09 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2.0) 27.75 18.38 22.25 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -53.50 70.75 60.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1.5) 27.75 75.62 22.25 WS -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -53.50 128.00 60.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1.0) 27.75 132.88 22.25 WS -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -53.50 185.25 60.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0.5) 27.75 190.12 22.25 WS -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0.0) 27.75 247.38 22.25 WS -16.00 (_Helvetica) 0 F -gsave 12.38 142.38 translate -90 rotate -(t \(s\)) 0.00 0.00 27.75 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 17.00 MacLine -561.50 242.50 561.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -533.75 239.00 533.75 17.00 MacLine -grestore -1.00 ps -533.25 13.50 533.25 17.00 MacLine -533.25 242.50 533.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -505.50 239.00 505.50 17.00 MacLine -grestore -1.00 ps -505.00 13.50 505.00 17.00 MacLine -505.00 242.50 505.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(15) 468.50 259.88 17.75 WS -gsave 0.125 ps [1] sd -449.12 239.00 449.12 17.00 MacLine -grestore -1.00 ps -448.62 13.50 448.62 17.00 MacLine -448.62 242.50 448.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -420.88 239.00 420.88 17.00 MacLine -grestore -1.00 ps -420.38 13.50 420.38 17.00 MacLine -420.38 242.50 420.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.62 239.00 392.62 17.00 MacLine -grestore -1.00 ps -392.12 13.50 392.12 17.00 MacLine -392.12 242.50 392.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -364.50 239.00 364.50 17.00 MacLine -grestore -1.00 ps -364.00 13.50 364.00 17.00 MacLine -364.00 242.50 364.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -336.12 235.50 336.12 20.50 MacLine -grestore -1.00 ps -335.75 13.50 335.75 20.50 MacLine -335.75 242.50 335.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 327.38 259.88 17.75 WS -gsave 0.125 ps [1] sd -308.00 239.00 308.00 17.00 MacLine -grestore -1.00 ps -307.50 13.50 307.50 17.00 MacLine -307.50 242.50 307.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -279.75 239.00 279.75 17.00 MacLine -grestore -1.00 ps -279.25 13.50 279.25 17.00 MacLine -279.25 242.50 279.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -251.50 239.00 251.50 17.00 MacLine -grestore -1.00 ps -251.00 13.50 251.00 17.00 MacLine -251.00 242.50 251.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -223.38 239.00 223.38 17.00 MacLine -grestore -1.00 ps -222.88 13.50 222.88 17.00 MacLine -222.88 242.50 222.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -195.00 235.50 195.00 20.50 MacLine -grestore -1.00 ps -194.62 13.50 194.62 20.50 MacLine -194.62 242.50 194.62 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 190.75 259.88 8.88 WS -gsave 0.125 ps [1] sd -166.88 239.00 166.88 17.00 MacLine -grestore -1.00 ps -166.38 13.50 166.38 17.00 MacLine -166.38 242.50 166.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -138.62 239.00 138.62 17.00 MacLine -grestore -1.00 ps -138.12 13.50 138.12 17.00 MacLine -138.12 242.50 138.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -110.50 239.00 110.50 17.00 MacLine -grestore -1.00 ps -110.00 13.50 110.00 17.00 MacLine -110.00 242.50 110.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -82.25 239.00 82.25 17.00 MacLine -grestore -1.00 ps -81.75 13.50 81.75 17.00 MacLine -81.75 242.50 81.75 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(d \(m\)) 289.25 284.38 37.50 WS -2.00 ps -163.88 127.50 168.00 127.50 MacLine -163.88 173.25 168.00 173.25 MacLine -180.00 148.38 180.00 152.50 MacLine -151.75 148.38 151.75 152.50 MacLine -1 ps -2.00 ps -165.88 128.50 165.88 172.25 MacLine -152.75 150.38 179.00 150.38 MacLine -1 ps -2.00 ps -248.50 70.25 252.62 70.25 MacLine -248.50 116.00 252.62 116.00 MacLine -264.62 91.12 264.62 95.25 MacLine -236.38 91.12 236.38 95.25 MacLine -1 ps -2.00 ps -250.50 71.25 250.50 115.00 MacLine -237.38 93.12 263.62 93.12 MacLine -1 ps -2.00 ps -333.25 70.25 337.38 70.25 MacLine -333.25 116.00 337.38 116.00 MacLine -349.38 91.12 349.38 95.25 MacLine -321.12 91.12 321.12 95.25 MacLine -1 ps -2.00 ps -335.25 71.25 335.25 115.00 MacLine -322.12 93.12 348.38 93.12 MacLine -1 ps -2.00 ps -417.88 24.50 422.00 24.50 MacLine -417.88 70.25 422.00 70.25 MacLine -434.00 45.38 434.00 49.50 MacLine -405.75 45.38 405.75 49.50 MacLine -1 ps -2.00 ps -419.88 25.50 419.88 69.25 MacLine -406.75 47.38 433.00 47.38 MacLine -1 ps -2.00 ps -502.50 24.50 506.62 24.50 MacLine -502.50 70.25 506.62 70.25 MacLine -518.62 45.38 518.62 49.50 MacLine -490.38 45.38 490.38 49.50 MacLine -1 ps -2.00 ps -504.50 25.50 504.50 69.25 MacLine -491.38 47.38 517.62 47.38 MacLine -1 ps -1.00 ps -newpath 166.88 151.38 3.00 0 360 arc -0 FillPath -newpath 251.50 94.12 3.00 0 360 arc -0 FillPath -newpath 336.25 94.12 3.00 0 360 arc -0 FillPath -newpath 420.88 48.38 3.00 0 360 arc -0 FillPath -newpath 505.50 48.38 3.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av7.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av7.gif deleted file mode 100755 index 3380b707a..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av7.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av7.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av7.pdf deleted file mode 100644 index 218cd2f4e..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av7.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av8.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av8.eps deleted file mode 100755 index 7bb672a0b..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av8.eps +++ /dev/null @@ -1,712 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_d8 -%%Creation Date: Wed, Jan 10, 1996 09:09 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2.0) 27.75 18.38 22.25 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -53.50 70.75 60.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1.5) 27.75 75.62 22.25 WS -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -53.50 128.00 60.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1.0) 27.75 132.88 22.25 WS -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -53.50 185.25 60.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0.5) 27.75 190.12 22.25 WS -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0.0) 27.75 247.38 22.25 WS -16.00 (_Helvetica) 0 F -gsave 12.38 142.38 translate -90 rotate -(t \(s\)) 0.00 0.00 27.75 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 17.00 MacLine -561.50 242.50 561.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -533.75 239.00 533.75 17.00 MacLine -grestore -1.00 ps -533.25 13.50 533.25 17.00 MacLine -533.25 242.50 533.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -505.50 239.00 505.50 17.00 MacLine -grestore -1.00 ps -505.00 13.50 505.00 17.00 MacLine -505.00 242.50 505.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(15) 468.50 259.88 17.75 WS -gsave 0.125 ps [1] sd -449.12 239.00 449.12 17.00 MacLine -grestore -1.00 ps -448.62 13.50 448.62 17.00 MacLine -448.62 242.50 448.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -420.88 239.00 420.88 17.00 MacLine -grestore -1.00 ps -420.38 13.50 420.38 17.00 MacLine -420.38 242.50 420.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.62 239.00 392.62 17.00 MacLine -grestore -1.00 ps -392.12 13.50 392.12 17.00 MacLine -392.12 242.50 392.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -364.50 239.00 364.50 17.00 MacLine -grestore -1.00 ps -364.00 13.50 364.00 17.00 MacLine -364.00 242.50 364.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -336.12 235.50 336.12 20.50 MacLine -grestore -1.00 ps -335.75 13.50 335.75 20.50 MacLine -335.75 242.50 335.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 327.38 259.88 17.75 WS -gsave 0.125 ps [1] sd -308.00 239.00 308.00 17.00 MacLine -grestore -1.00 ps -307.50 13.50 307.50 17.00 MacLine -307.50 242.50 307.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -279.75 239.00 279.75 17.00 MacLine -grestore -1.00 ps -279.25 13.50 279.25 17.00 MacLine -279.25 242.50 279.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -251.50 239.00 251.50 17.00 MacLine -grestore -1.00 ps -251.00 13.50 251.00 17.00 MacLine -251.00 242.50 251.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -223.38 239.00 223.38 17.00 MacLine -grestore -1.00 ps -222.88 13.50 222.88 17.00 MacLine -222.88 242.50 222.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -195.00 235.50 195.00 20.50 MacLine -grestore -1.00 ps -194.62 13.50 194.62 20.50 MacLine -194.62 242.50 194.62 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 190.75 259.88 8.88 WS -gsave 0.125 ps [1] sd -166.88 239.00 166.88 17.00 MacLine -grestore -1.00 ps -166.38 13.50 166.38 17.00 MacLine -166.38 242.50 166.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -138.62 239.00 138.62 17.00 MacLine -grestore -1.00 ps -138.12 13.50 138.12 17.00 MacLine -138.12 242.50 138.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -110.50 239.00 110.50 17.00 MacLine -grestore -1.00 ps -110.00 13.50 110.00 17.00 MacLine -110.00 242.50 110.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -82.25 239.00 82.25 17.00 MacLine -grestore -1.00 ps -81.75 13.50 81.75 17.00 MacLine -81.75 242.50 81.75 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(d \(m\)) 289.25 284.38 37.50 WS -2.00 ps -220.38 104.62 224.50 104.62 MacLine -220.38 150.38 224.50 150.38 MacLine -236.50 125.50 236.50 129.62 MacLine -208.25 125.50 208.25 129.62 MacLine -1 ps -2.00 ps -222.38 105.62 222.38 149.38 MacLine -209.25 127.50 235.50 127.50 MacLine -1 ps -2.00 ps -262.75 58.88 266.88 58.88 MacLine -262.75 104.62 266.88 104.62 MacLine -278.88 79.75 278.88 83.88 MacLine -250.62 79.75 250.62 83.88 MacLine -1 ps -2.00 ps -264.75 59.88 264.75 103.62 MacLine -251.62 81.75 277.88 81.75 MacLine -1 ps -2.00 ps -305.00 70.25 309.12 70.25 MacLine -305.00 116.00 309.12 116.00 MacLine -321.12 91.12 321.12 95.25 MacLine -292.88 91.12 292.88 95.25 MacLine -1 ps -2.00 ps -307.00 71.25 307.00 115.00 MacLine -293.88 93.12 320.12 93.12 MacLine -1 ps -2.00 ps -347.25 36.00 351.38 36.00 MacLine -347.25 81.75 351.38 81.75 MacLine -363.38 56.88 363.38 61.00 MacLine -335.12 56.88 335.12 61.00 MacLine -1 ps -2.00 ps -349.25 37.00 349.25 80.75 MacLine -336.12 58.88 362.38 58.88 MacLine -1 ps -2.00 ps -389.62 47.38 393.75 47.38 MacLine -389.62 93.12 393.75 93.12 MacLine -405.75 68.25 405.75 72.38 MacLine -377.50 68.25 377.50 72.38 MacLine -1 ps -2.00 ps -391.62 48.38 391.62 92.12 MacLine -378.50 70.25 404.75 70.25 MacLine -1 ps -1.00 ps -newpath 223.38 128.50 3.00 0 360 arc -0 FillPath -newpath 265.75 82.75 3.00 0 360 arc -0 FillPath -newpath 308.00 94.12 3.00 0 360 arc -0 FillPath -newpath 350.25 59.88 3.00 0 360 arc -0 FillPath -newpath 392.62 71.25 3.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av8.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av8.gif deleted file mode 100755 index 4a70303e4..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av8.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av9.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av9.eps deleted file mode 100755 index f0293694b..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av9.eps +++ /dev/null @@ -1,712 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_d9 -%%Creation Date: Wed, Jan 10, 1996 09:09 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2.0) 27.75 18.38 22.25 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -53.50 70.75 60.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1.5) 27.75 75.62 22.25 WS -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -53.50 128.00 60.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1.0) 27.75 132.88 22.25 WS -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -53.50 185.25 60.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0.5) 27.75 190.12 22.25 WS -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0.0) 27.75 247.38 22.25 WS -16.00 (_Helvetica) 0 F -gsave 12.38 142.38 translate -90 rotate -(t \(s\)) 0.00 0.00 27.75 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 17.00 MacLine -561.50 242.50 561.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -533.75 239.00 533.75 17.00 MacLine -grestore -1.00 ps -533.25 13.50 533.25 17.00 MacLine -533.25 242.50 533.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -505.50 239.00 505.50 17.00 MacLine -grestore -1.00 ps -505.00 13.50 505.00 17.00 MacLine -505.00 242.50 505.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(15) 468.50 259.88 17.75 WS -gsave 0.125 ps [1] sd -449.12 239.00 449.12 17.00 MacLine -grestore -1.00 ps -448.62 13.50 448.62 17.00 MacLine -448.62 242.50 448.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -420.88 239.00 420.88 17.00 MacLine -grestore -1.00 ps -420.38 13.50 420.38 17.00 MacLine -420.38 242.50 420.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.62 239.00 392.62 17.00 MacLine -grestore -1.00 ps -392.12 13.50 392.12 17.00 MacLine -392.12 242.50 392.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -364.50 239.00 364.50 17.00 MacLine -grestore -1.00 ps -364.00 13.50 364.00 17.00 MacLine -364.00 242.50 364.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -336.12 235.50 336.12 20.50 MacLine -grestore -1.00 ps -335.75 13.50 335.75 20.50 MacLine -335.75 242.50 335.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 327.38 259.88 17.75 WS -gsave 0.125 ps [1] sd -308.00 239.00 308.00 17.00 MacLine -grestore -1.00 ps -307.50 13.50 307.50 17.00 MacLine -307.50 242.50 307.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -279.75 239.00 279.75 17.00 MacLine -grestore -1.00 ps -279.25 13.50 279.25 17.00 MacLine -279.25 242.50 279.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -251.50 239.00 251.50 17.00 MacLine -grestore -1.00 ps -251.00 13.50 251.00 17.00 MacLine -251.00 242.50 251.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -223.38 239.00 223.38 17.00 MacLine -grestore -1.00 ps -222.88 13.50 222.88 17.00 MacLine -222.88 242.50 222.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -195.00 235.50 195.00 20.50 MacLine -grestore -1.00 ps -194.62 13.50 194.62 20.50 MacLine -194.62 242.50 194.62 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 190.75 259.88 8.88 WS -gsave 0.125 ps [1] sd -166.88 239.00 166.88 17.00 MacLine -grestore -1.00 ps -166.38 13.50 166.38 17.00 MacLine -166.38 242.50 166.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -138.62 239.00 138.62 17.00 MacLine -grestore -1.00 ps -138.12 13.50 138.12 17.00 MacLine -138.12 242.50 138.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -110.50 239.00 110.50 17.00 MacLine -grestore -1.00 ps -110.00 13.50 110.00 17.00 MacLine -110.00 242.50 110.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -82.25 239.00 82.25 17.00 MacLine -grestore -1.00 ps -81.75 13.50 81.75 17.00 MacLine -81.75 242.50 81.75 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(d \(m\)) 289.25 284.38 37.50 WS -2.00 ps -262.75 93.25 266.88 93.25 MacLine -262.75 139.00 266.88 139.00 MacLine -278.88 114.12 278.88 118.25 MacLine -250.62 114.12 250.62 118.25 MacLine -1 ps -2.00 ps -264.75 94.25 264.75 138.00 MacLine -251.62 116.12 277.88 116.12 MacLine -1 ps -2.00 ps -319.12 47.38 323.25 47.38 MacLine -319.12 93.12 323.25 93.12 MacLine -335.25 68.25 335.25 72.38 MacLine -307.00 68.25 307.00 72.38 MacLine -1 ps -2.00 ps -321.12 48.38 321.12 92.12 MacLine -308.00 70.25 334.25 70.25 MacLine -1 ps -2.00 ps -375.50 58.88 379.62 58.88 MacLine -375.50 104.62 379.62 104.62 MacLine -391.62 79.75 391.62 83.88 MacLine -363.38 79.75 363.38 83.88 MacLine -1 ps -2.00 ps -377.50 59.88 377.50 103.62 MacLine -364.38 81.75 390.62 81.75 MacLine -1 ps -2.00 ps -432.00 24.50 436.12 24.50 MacLine -432.00 70.25 436.12 70.25 MacLine -448.12 45.38 448.12 49.50 MacLine -419.88 45.38 419.88 49.50 MacLine -1 ps -2.00 ps -434.00 25.50 434.00 69.25 MacLine -420.88 47.38 447.12 47.38 MacLine -1 ps -2.00 ps -488.38 36.00 492.50 36.00 MacLine -488.38 81.75 492.50 81.75 MacLine -504.50 56.88 504.50 61.00 MacLine -476.25 56.88 476.25 61.00 MacLine -1 ps -2.00 ps -490.38 37.00 490.38 80.75 MacLine -477.25 58.88 503.50 58.88 MacLine -1 ps -1.00 ps -newpath 265.75 117.12 3.00 0 360 arc -0 FillPath -newpath 322.12 71.25 3.00 0 360 arc -0 FillPath -newpath 378.50 82.75 3.00 0 360 arc -0 FillPath -newpath 435.00 48.38 3.00 0 360 arc -0 FillPath -newpath 491.38 59.88 3.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av9.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av9.gif deleted file mode 100755 index 091dd1202..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob05av9.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v1.eps deleted file mode 100755 index f287d12d9..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v1.eps +++ /dev/null @@ -1,732 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_k1 -%%Creation Date: 22 May, 1996 9:29 PM -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -18.00 (_Helvetica) 0 F -gsave 13.88 153.50 translate -90 rotate -(x \(cm\)) 0.00 0.00 50.00 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(35) 553.12 259.88 17.75 WS -1.00 ps -544.62 13.50 544.62 17.00 MacLine -544.62 242.50 544.62 239.00 MacLine -1 ps -1.00 ps -527.62 13.50 527.62 17.00 MacLine -527.62 242.50 527.62 239.00 MacLine -1 ps -1.00 ps -510.75 13.50 510.75 17.00 MacLine -510.75 242.50 510.75 239.00 MacLine -1 ps -1.00 ps -493.75 13.50 493.75 17.00 MacLine -493.75 242.50 493.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(30) 468.50 259.88 17.75 WS -1.00 ps -459.88 13.50 459.88 17.00 MacLine -459.88 242.50 459.88 239.00 MacLine -1 ps -1.00 ps -443.00 13.50 443.00 17.00 MacLine -443.00 242.50 443.00 239.00 MacLine -1 ps -1.00 ps -426.00 13.50 426.00 17.00 MacLine -426.00 242.50 426.00 239.00 MacLine -1 ps -1.00 ps -409.12 13.50 409.12 17.00 MacLine -409.12 242.50 409.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -392.50 235.50 392.50 20.50 MacLine -grestore -1.00 ps -392.12 13.50 392.12 20.50 MacLine -392.12 242.50 392.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(25) 383.75 259.88 17.75 WS -1.00 ps -375.25 13.50 375.25 17.00 MacLine -375.25 242.50 375.25 239.00 MacLine -1 ps -1.00 ps -358.25 13.50 358.25 17.00 MacLine -358.25 242.50 358.25 239.00 MacLine -1 ps -1.00 ps -341.38 13.50 341.38 17.00 MacLine -341.38 242.50 341.38 239.00 MacLine -1 ps -1.00 ps -324.38 13.50 324.38 17.00 MacLine -324.38 242.50 324.38 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 299.12 259.88 17.75 WS -1.00 ps -290.62 13.50 290.62 17.00 MacLine -290.62 242.50 290.62 239.00 MacLine -1 ps -1.00 ps -273.62 13.50 273.62 17.00 MacLine -273.62 242.50 273.62 239.00 MacLine -1 ps -1.00 ps -256.75 13.50 256.75 17.00 MacLine -256.75 242.50 256.75 239.00 MacLine -1 ps -1.00 ps -239.75 13.50 239.75 17.00 MacLine -239.75 242.50 239.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(15) 214.50 259.88 17.75 WS -1.00 ps -205.88 13.50 205.88 17.00 MacLine -205.88 242.50 205.88 239.00 MacLine -1 ps -1.00 ps -189.00 13.50 189.00 17.00 MacLine -189.00 242.50 189.00 239.00 MacLine -1 ps -1.00 ps -172.00 13.50 172.00 17.00 MacLine -172.00 242.50 172.00 239.00 MacLine -1 ps -1.00 ps -155.12 13.50 155.12 17.00 MacLine -155.12 242.50 155.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -138.50 235.50 138.50 20.50 MacLine -grestore -1.00 ps -138.12 13.50 138.12 20.50 MacLine -138.12 242.50 138.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 129.75 259.88 17.75 WS -1.00 ps -121.25 13.50 121.25 17.00 MacLine -121.25 242.50 121.25 239.00 MacLine -1 ps -1.00 ps -104.25 13.50 104.25 17.00 MacLine -104.25 242.50 104.25 239.00 MacLine -1 ps -1.00 ps -87.38 13.50 87.38 17.00 MacLine -87.38 242.50 87.38 239.00 MacLine -1 ps -1.00 ps -70.38 13.50 70.38 17.00 MacLine -70.38 242.50 70.38 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 49.62 259.88 8.88 WS -18.00 (_Helvetica) 0 F -(mass \(kg\)) 268.50 283.88 79.00 WS -2.00 ps -135.62 150.38 139.75 150.38 MacLine -135.62 173.38 139.75 173.38 MacLine -154.50 159.88 154.50 164.00 MacLine -120.75 159.88 120.75 164.00 MacLine -1 ps -2.00 ps -137.62 151.38 137.62 172.38 MacLine -121.75 161.88 153.50 161.88 MacLine -1 ps -2.00 ps -220.38 150.38 224.50 150.38 MacLine -220.38 173.38 224.50 173.38 MacLine -239.25 159.88 239.25 164.00 MacLine -205.50 159.88 205.50 164.00 MacLine -1 ps -2.00 ps -222.38 151.38 222.38 172.38 MacLine -206.50 161.88 238.25 161.88 MacLine -1 ps -2.00 ps -305.00 81.62 309.12 81.62 MacLine -305.00 104.62 309.12 104.62 MacLine -323.88 91.12 323.88 95.25 MacLine -290.12 91.12 290.12 95.25 MacLine -1 ps -2.00 ps -307.00 82.62 307.00 103.62 MacLine -291.12 93.12 322.88 93.12 MacLine -1 ps -2.00 ps -389.62 81.62 393.75 81.62 MacLine -389.62 104.62 393.75 104.62 MacLine -408.50 91.12 408.50 95.25 MacLine -374.75 91.12 374.75 95.25 MacLine -1 ps -2.00 ps -391.62 82.62 391.62 103.62 MacLine -375.75 93.12 407.50 93.12 MacLine -1 ps -2.00 ps -474.38 35.88 478.50 35.88 MacLine -474.38 58.88 478.50 58.88 MacLine -493.25 45.38 493.25 49.50 MacLine -459.50 45.38 459.50 49.50 MacLine -1 ps -2.00 ps -476.38 36.88 476.38 57.88 MacLine -460.50 47.38 492.25 47.38 MacLine -1 ps -1.00 ps -newpath 138.62 162.88 3.00 0 360 arc -0 FillPath -newpath 223.38 162.88 3.00 0 360 arc -0 FillPath -newpath 308.00 94.12 3.00 0 360 arc -0 FillPath -newpath 392.62 94.12 3.00 0 360 arc -0 FillPath -newpath 477.38 48.38 3.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v1.gif deleted file mode 100755 index 137d04f28..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v10.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v10.eps deleted file mode 100755 index 740cbf1f9..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v10.eps +++ /dev/null @@ -1,732 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_k10 -%%Creation Date: 22 May, 1996 9:30 PM -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -18.00 (_Helvetica) 0 F -gsave 13.88 153.50 translate -90 rotate -(x \(cm\)) 0.00 0.00 50.00 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(35) 553.12 259.88 17.75 WS -1.00 ps -544.62 13.50 544.62 17.00 MacLine -544.62 242.50 544.62 239.00 MacLine -1 ps -1.00 ps -527.62 13.50 527.62 17.00 MacLine -527.62 242.50 527.62 239.00 MacLine -1 ps -1.00 ps -510.75 13.50 510.75 17.00 MacLine -510.75 242.50 510.75 239.00 MacLine -1 ps -1.00 ps -493.75 13.50 493.75 17.00 MacLine -493.75 242.50 493.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(30) 468.50 259.88 17.75 WS -1.00 ps -459.88 13.50 459.88 17.00 MacLine -459.88 242.50 459.88 239.00 MacLine -1 ps -1.00 ps -443.00 13.50 443.00 17.00 MacLine -443.00 242.50 443.00 239.00 MacLine -1 ps -1.00 ps -426.00 13.50 426.00 17.00 MacLine -426.00 242.50 426.00 239.00 MacLine -1 ps -1.00 ps -409.12 13.50 409.12 17.00 MacLine -409.12 242.50 409.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -392.50 235.50 392.50 20.50 MacLine -grestore -1.00 ps -392.12 13.50 392.12 20.50 MacLine -392.12 242.50 392.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(25) 383.75 259.88 17.75 WS -1.00 ps -375.25 13.50 375.25 17.00 MacLine -375.25 242.50 375.25 239.00 MacLine -1 ps -1.00 ps -358.25 13.50 358.25 17.00 MacLine -358.25 242.50 358.25 239.00 MacLine -1 ps -1.00 ps -341.38 13.50 341.38 17.00 MacLine -341.38 242.50 341.38 239.00 MacLine -1 ps -1.00 ps -324.38 13.50 324.38 17.00 MacLine -324.38 242.50 324.38 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 299.12 259.88 17.75 WS -1.00 ps -290.62 13.50 290.62 17.00 MacLine -290.62 242.50 290.62 239.00 MacLine -1 ps -1.00 ps -273.62 13.50 273.62 17.00 MacLine -273.62 242.50 273.62 239.00 MacLine -1 ps -1.00 ps -256.75 13.50 256.75 17.00 MacLine -256.75 242.50 256.75 239.00 MacLine -1 ps -1.00 ps -239.75 13.50 239.75 17.00 MacLine -239.75 242.50 239.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(15) 214.50 259.88 17.75 WS -1.00 ps -205.88 13.50 205.88 17.00 MacLine -205.88 242.50 205.88 239.00 MacLine -1 ps -1.00 ps -189.00 13.50 189.00 17.00 MacLine -189.00 242.50 189.00 239.00 MacLine -1 ps -1.00 ps -172.00 13.50 172.00 17.00 MacLine -172.00 242.50 172.00 239.00 MacLine -1 ps -1.00 ps -155.12 13.50 155.12 17.00 MacLine -155.12 242.50 155.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -138.50 235.50 138.50 20.50 MacLine -grestore -1.00 ps -138.12 13.50 138.12 20.50 MacLine -138.12 242.50 138.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 129.75 259.88 17.75 WS -1.00 ps -121.25 13.50 121.25 17.00 MacLine -121.25 242.50 121.25 239.00 MacLine -1 ps -1.00 ps -104.25 13.50 104.25 17.00 MacLine -104.25 242.50 104.25 239.00 MacLine -1 ps -1.00 ps -87.38 13.50 87.38 17.00 MacLine -87.38 242.50 87.38 239.00 MacLine -1 ps -1.00 ps -70.38 13.50 70.38 17.00 MacLine -70.38 242.50 70.38 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 49.62 259.88 8.88 WS -18.00 (_Helvetica) 0 F -(mass \(kg\)) 268.50 283.88 79.00 WS -2.00 ps -135.62 196.12 139.75 196.12 MacLine -135.62 219.12 139.75 219.12 MacLine -154.50 205.62 154.50 209.75 MacLine -120.75 205.62 120.75 209.75 MacLine -1 ps -2.00 ps -137.62 197.12 137.62 218.12 MacLine -121.75 207.62 153.50 207.62 MacLine -1 ps -2.00 ps -220.38 150.38 224.50 150.38 MacLine -220.38 173.38 224.50 173.38 MacLine -239.25 159.88 239.25 164.00 MacLine -205.50 159.88 205.50 164.00 MacLine -1 ps -2.00 ps -222.38 151.38 222.38 172.38 MacLine -206.50 161.88 238.25 161.88 MacLine -1 ps -2.00 ps -305.00 150.38 309.12 150.38 MacLine -305.00 173.38 309.12 173.38 MacLine -323.88 159.88 323.88 164.00 MacLine -290.12 159.88 290.12 164.00 MacLine -1 ps -2.00 ps -307.00 151.38 307.00 172.38 MacLine -291.12 161.88 322.88 161.88 MacLine -1 ps -2.00 ps -389.62 81.62 393.75 81.62 MacLine -389.62 104.62 393.75 104.62 MacLine -408.50 91.12 408.50 95.25 MacLine -374.75 91.12 374.75 95.25 MacLine -1 ps -2.00 ps -391.62 82.62 391.62 103.62 MacLine -375.75 93.12 407.50 93.12 MacLine -1 ps -2.00 ps -474.38 81.62 478.50 81.62 MacLine -474.38 104.62 478.50 104.62 MacLine -493.25 91.12 493.25 95.25 MacLine -459.50 91.12 459.50 95.25 MacLine -1 ps -2.00 ps -476.38 82.62 476.38 103.62 MacLine -460.50 93.12 492.25 93.12 MacLine -1 ps -1.00 ps -newpath 138.62 208.62 3.00 0 360 arc -0 FillPath -newpath 223.38 162.88 3.00 0 360 arc -0 FillPath -newpath 308.00 162.88 3.00 0 360 arc -0 FillPath -newpath 392.62 94.12 3.00 0 360 arc -0 FillPath -newpath 477.38 94.12 3.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v10.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v10.gif deleted file mode 100755 index 7a9b555c8..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v10.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v2.eps deleted file mode 100755 index 403369840..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v2.eps +++ /dev/null @@ -1,732 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_k2 -%%Creation Date: 22 May, 1996 9:29 PM -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -18.00 (_Helvetica) 0 F -gsave 13.88 153.50 translate -90 rotate -(x \(cm\)) 0.00 0.00 50.00 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(35) 553.12 259.88 17.75 WS -1.00 ps -544.62 13.50 544.62 17.00 MacLine -544.62 242.50 544.62 239.00 MacLine -1 ps -1.00 ps -527.62 13.50 527.62 17.00 MacLine -527.62 242.50 527.62 239.00 MacLine -1 ps -1.00 ps -510.75 13.50 510.75 17.00 MacLine -510.75 242.50 510.75 239.00 MacLine -1 ps -1.00 ps -493.75 13.50 493.75 17.00 MacLine -493.75 242.50 493.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(30) 468.50 259.88 17.75 WS -1.00 ps -459.88 13.50 459.88 17.00 MacLine -459.88 242.50 459.88 239.00 MacLine -1 ps -1.00 ps -443.00 13.50 443.00 17.00 MacLine -443.00 242.50 443.00 239.00 MacLine -1 ps -1.00 ps -426.00 13.50 426.00 17.00 MacLine -426.00 242.50 426.00 239.00 MacLine -1 ps -1.00 ps -409.12 13.50 409.12 17.00 MacLine -409.12 242.50 409.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -392.50 235.50 392.50 20.50 MacLine -grestore -1.00 ps -392.12 13.50 392.12 20.50 MacLine -392.12 242.50 392.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(25) 383.75 259.88 17.75 WS -1.00 ps -375.25 13.50 375.25 17.00 MacLine -375.25 242.50 375.25 239.00 MacLine -1 ps -1.00 ps -358.25 13.50 358.25 17.00 MacLine -358.25 242.50 358.25 239.00 MacLine -1 ps -1.00 ps -341.38 13.50 341.38 17.00 MacLine -341.38 242.50 341.38 239.00 MacLine -1 ps -1.00 ps -324.38 13.50 324.38 17.00 MacLine -324.38 242.50 324.38 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 299.12 259.88 17.75 WS -1.00 ps -290.62 13.50 290.62 17.00 MacLine -290.62 242.50 290.62 239.00 MacLine -1 ps -1.00 ps -273.62 13.50 273.62 17.00 MacLine -273.62 242.50 273.62 239.00 MacLine -1 ps -1.00 ps -256.75 13.50 256.75 17.00 MacLine -256.75 242.50 256.75 239.00 MacLine -1 ps -1.00 ps -239.75 13.50 239.75 17.00 MacLine -239.75 242.50 239.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(15) 214.50 259.88 17.75 WS -1.00 ps -205.88 13.50 205.88 17.00 MacLine -205.88 242.50 205.88 239.00 MacLine -1 ps -1.00 ps -189.00 13.50 189.00 17.00 MacLine -189.00 242.50 189.00 239.00 MacLine -1 ps -1.00 ps -172.00 13.50 172.00 17.00 MacLine -172.00 242.50 172.00 239.00 MacLine -1 ps -1.00 ps -155.12 13.50 155.12 17.00 MacLine -155.12 242.50 155.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -138.50 235.50 138.50 20.50 MacLine -grestore -1.00 ps -138.12 13.50 138.12 20.50 MacLine -138.12 242.50 138.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 129.75 259.88 17.75 WS -1.00 ps -121.25 13.50 121.25 17.00 MacLine -121.25 242.50 121.25 239.00 MacLine -1 ps -1.00 ps -104.25 13.50 104.25 17.00 MacLine -104.25 242.50 104.25 239.00 MacLine -1 ps -1.00 ps -87.38 13.50 87.38 17.00 MacLine -87.38 242.50 87.38 239.00 MacLine -1 ps -1.00 ps -70.38 13.50 70.38 17.00 MacLine -70.38 242.50 70.38 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 49.62 259.88 8.88 WS -18.00 (_Helvetica) 0 F -(mass \(kg\)) 268.50 283.88 79.00 WS -2.00 ps -135.62 173.25 139.75 173.25 MacLine -135.62 196.25 139.75 196.25 MacLine -154.50 182.75 154.50 186.88 MacLine -120.75 182.75 120.75 186.88 MacLine -1 ps -2.00 ps -137.62 174.25 137.62 195.25 MacLine -121.75 184.75 153.50 184.75 MacLine -1 ps -2.00 ps -220.38 127.38 224.50 127.38 MacLine -220.38 150.38 224.50 150.38 MacLine -239.25 136.88 239.25 141.00 MacLine -205.50 136.88 205.50 141.00 MacLine -1 ps -2.00 ps -222.38 128.38 222.38 149.38 MacLine -206.50 138.88 238.25 138.88 MacLine -1 ps -2.00 ps -305.00 127.38 309.12 127.38 MacLine -305.00 150.38 309.12 150.38 MacLine -323.88 136.88 323.88 141.00 MacLine -290.12 136.88 290.12 141.00 MacLine -1 ps -2.00 ps -307.00 128.38 307.00 149.38 MacLine -291.12 138.88 322.88 138.88 MacLine -1 ps -2.00 ps -389.62 58.75 393.75 58.75 MacLine -389.62 81.75 393.75 81.75 MacLine -408.50 68.25 408.50 72.38 MacLine -374.75 68.25 374.75 72.38 MacLine -1 ps -2.00 ps -391.62 59.75 391.62 80.75 MacLine -375.75 70.25 407.50 70.25 MacLine -1 ps -2.00 ps -474.38 58.75 478.50 58.75 MacLine -474.38 81.75 478.50 81.75 MacLine -493.25 68.25 493.25 72.38 MacLine -459.50 68.25 459.50 72.38 MacLine -1 ps -2.00 ps -476.38 59.75 476.38 80.75 MacLine -460.50 70.25 492.25 70.25 MacLine -1 ps -1.00 ps -newpath 138.62 185.75 3.00 0 360 arc -0 FillPath -newpath 223.38 139.88 3.00 0 360 arc -0 FillPath -newpath 308.00 139.88 3.00 0 360 arc -0 FillPath -newpath 392.62 71.25 3.00 0 360 arc -0 FillPath -newpath 477.38 71.25 3.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v2.gif deleted file mode 100755 index 891441f9f..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v3.eps deleted file mode 100755 index 8e3c13bd9..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v3.eps +++ /dev/null @@ -1,732 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_k3 -%%Creation Date: 22 May, 1996 9:29 PM -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -18.00 (_Helvetica) 0 F -gsave 13.88 153.50 translate -90 rotate -(x \(cm\)) 0.00 0.00 50.00 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(35) 553.12 259.88 17.75 WS -1.00 ps -544.62 13.50 544.62 17.00 MacLine -544.62 242.50 544.62 239.00 MacLine -1 ps -1.00 ps -527.62 13.50 527.62 17.00 MacLine -527.62 242.50 527.62 239.00 MacLine -1 ps -1.00 ps -510.75 13.50 510.75 17.00 MacLine -510.75 242.50 510.75 239.00 MacLine -1 ps -1.00 ps -493.75 13.50 493.75 17.00 MacLine -493.75 242.50 493.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(30) 468.50 259.88 17.75 WS -1.00 ps -459.88 13.50 459.88 17.00 MacLine -459.88 242.50 459.88 239.00 MacLine -1 ps -1.00 ps -443.00 13.50 443.00 17.00 MacLine -443.00 242.50 443.00 239.00 MacLine -1 ps -1.00 ps -426.00 13.50 426.00 17.00 MacLine -426.00 242.50 426.00 239.00 MacLine -1 ps -1.00 ps -409.12 13.50 409.12 17.00 MacLine -409.12 242.50 409.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -392.50 235.50 392.50 20.50 MacLine -grestore -1.00 ps -392.12 13.50 392.12 20.50 MacLine -392.12 242.50 392.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(25) 383.75 259.88 17.75 WS -1.00 ps -375.25 13.50 375.25 17.00 MacLine -375.25 242.50 375.25 239.00 MacLine -1 ps -1.00 ps -358.25 13.50 358.25 17.00 MacLine -358.25 242.50 358.25 239.00 MacLine -1 ps -1.00 ps -341.38 13.50 341.38 17.00 MacLine -341.38 242.50 341.38 239.00 MacLine -1 ps -1.00 ps -324.38 13.50 324.38 17.00 MacLine -324.38 242.50 324.38 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 299.12 259.88 17.75 WS -1.00 ps -290.62 13.50 290.62 17.00 MacLine -290.62 242.50 290.62 239.00 MacLine -1 ps -1.00 ps -273.62 13.50 273.62 17.00 MacLine -273.62 242.50 273.62 239.00 MacLine -1 ps -1.00 ps -256.75 13.50 256.75 17.00 MacLine -256.75 242.50 256.75 239.00 MacLine -1 ps -1.00 ps -239.75 13.50 239.75 17.00 MacLine -239.75 242.50 239.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(15) 214.50 259.88 17.75 WS -1.00 ps -205.88 13.50 205.88 17.00 MacLine -205.88 242.50 205.88 239.00 MacLine -1 ps -1.00 ps -189.00 13.50 189.00 17.00 MacLine -189.00 242.50 189.00 239.00 MacLine -1 ps -1.00 ps -172.00 13.50 172.00 17.00 MacLine -172.00 242.50 172.00 239.00 MacLine -1 ps -1.00 ps -155.12 13.50 155.12 17.00 MacLine -155.12 242.50 155.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -138.50 235.50 138.50 20.50 MacLine -grestore -1.00 ps -138.12 13.50 138.12 20.50 MacLine -138.12 242.50 138.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 129.75 259.88 17.75 WS -1.00 ps -121.25 13.50 121.25 17.00 MacLine -121.25 242.50 121.25 239.00 MacLine -1 ps -1.00 ps -104.25 13.50 104.25 17.00 MacLine -104.25 242.50 104.25 239.00 MacLine -1 ps -1.00 ps -87.38 13.50 87.38 17.00 MacLine -87.38 242.50 87.38 239.00 MacLine -1 ps -1.00 ps -70.38 13.50 70.38 17.00 MacLine -70.38 242.50 70.38 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 49.62 259.88 8.88 WS -18.00 (_Helvetica) 0 F -(mass \(kg\)) 268.50 283.88 79.00 WS -2.00 ps -135.62 150.38 139.75 150.38 MacLine -135.62 173.38 139.75 173.38 MacLine -154.50 159.88 154.50 164.00 MacLine -120.75 159.88 120.75 164.00 MacLine -1 ps -2.00 ps -137.62 151.38 137.62 172.38 MacLine -121.75 161.88 153.50 161.88 MacLine -1 ps -2.00 ps -220.38 150.38 224.50 150.38 MacLine -220.38 173.38 224.50 173.38 MacLine -239.25 159.88 239.25 164.00 MacLine -205.50 159.88 205.50 164.00 MacLine -1 ps -2.00 ps -222.38 151.38 222.38 172.38 MacLine -206.50 161.88 238.25 161.88 MacLine -1 ps -2.00 ps -305.00 104.62 309.12 104.62 MacLine -305.00 127.62 309.12 127.62 MacLine -323.88 114.12 323.88 118.25 MacLine -290.12 114.12 290.12 118.25 MacLine -1 ps -2.00 ps -307.00 105.62 307.00 126.62 MacLine -291.12 116.12 322.88 116.12 MacLine -1 ps -2.00 ps -389.62 81.62 393.75 81.62 MacLine -389.62 104.62 393.75 104.62 MacLine -408.50 91.12 408.50 95.25 MacLine -374.75 91.12 374.75 95.25 MacLine -1 ps -2.00 ps -391.62 82.62 391.62 103.62 MacLine -375.75 93.12 407.50 93.12 MacLine -1 ps -2.00 ps -474.38 35.88 478.50 35.88 MacLine -474.38 58.88 478.50 58.88 MacLine -493.25 45.38 493.25 49.50 MacLine -459.50 45.38 459.50 49.50 MacLine -1 ps -2.00 ps -476.38 36.88 476.38 57.88 MacLine -460.50 47.38 492.25 47.38 MacLine -1 ps -1.00 ps -newpath 138.62 162.88 3.00 0 360 arc -0 FillPath -newpath 223.38 162.88 3.00 0 360 arc -0 FillPath -newpath 308.00 117.12 3.00 0 360 arc -0 FillPath -newpath 392.62 94.12 3.00 0 360 arc -0 FillPath -newpath 477.38 48.38 3.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v3.gif deleted file mode 100755 index 2384b1a59..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v4.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v4.eps deleted file mode 100755 index 2145cb016..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v4.eps +++ /dev/null @@ -1,732 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_k4 -%%Creation Date: 22 May, 1996 9:29 PM -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -18.00 (_Helvetica) 0 F -gsave 13.88 153.50 translate -90 rotate -(x \(cm\)) 0.00 0.00 50.00 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(35) 553.12 259.88 17.75 WS -1.00 ps -544.62 13.50 544.62 17.00 MacLine -544.62 242.50 544.62 239.00 MacLine -1 ps -1.00 ps -527.62 13.50 527.62 17.00 MacLine -527.62 242.50 527.62 239.00 MacLine -1 ps -1.00 ps -510.75 13.50 510.75 17.00 MacLine -510.75 242.50 510.75 239.00 MacLine -1 ps -1.00 ps -493.75 13.50 493.75 17.00 MacLine -493.75 242.50 493.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(30) 468.50 259.88 17.75 WS -1.00 ps -459.88 13.50 459.88 17.00 MacLine -459.88 242.50 459.88 239.00 MacLine -1 ps -1.00 ps -443.00 13.50 443.00 17.00 MacLine -443.00 242.50 443.00 239.00 MacLine -1 ps -1.00 ps -426.00 13.50 426.00 17.00 MacLine -426.00 242.50 426.00 239.00 MacLine -1 ps -1.00 ps -409.12 13.50 409.12 17.00 MacLine -409.12 242.50 409.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -392.50 235.50 392.50 20.50 MacLine -grestore -1.00 ps -392.12 13.50 392.12 20.50 MacLine -392.12 242.50 392.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(25) 383.75 259.88 17.75 WS -1.00 ps -375.25 13.50 375.25 17.00 MacLine -375.25 242.50 375.25 239.00 MacLine -1 ps -1.00 ps -358.25 13.50 358.25 17.00 MacLine -358.25 242.50 358.25 239.00 MacLine -1 ps -1.00 ps -341.38 13.50 341.38 17.00 MacLine -341.38 242.50 341.38 239.00 MacLine -1 ps -1.00 ps -324.38 13.50 324.38 17.00 MacLine -324.38 242.50 324.38 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 299.12 259.88 17.75 WS -1.00 ps -290.62 13.50 290.62 17.00 MacLine -290.62 242.50 290.62 239.00 MacLine -1 ps -1.00 ps -273.62 13.50 273.62 17.00 MacLine -273.62 242.50 273.62 239.00 MacLine -1 ps -1.00 ps -256.75 13.50 256.75 17.00 MacLine -256.75 242.50 256.75 239.00 MacLine -1 ps -1.00 ps -239.75 13.50 239.75 17.00 MacLine -239.75 242.50 239.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(15) 214.50 259.88 17.75 WS -1.00 ps -205.88 13.50 205.88 17.00 MacLine -205.88 242.50 205.88 239.00 MacLine -1 ps -1.00 ps -189.00 13.50 189.00 17.00 MacLine -189.00 242.50 189.00 239.00 MacLine -1 ps -1.00 ps -172.00 13.50 172.00 17.00 MacLine -172.00 242.50 172.00 239.00 MacLine -1 ps -1.00 ps -155.12 13.50 155.12 17.00 MacLine -155.12 242.50 155.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -138.50 235.50 138.50 20.50 MacLine -grestore -1.00 ps -138.12 13.50 138.12 20.50 MacLine -138.12 242.50 138.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 129.75 259.88 17.75 WS -1.00 ps -121.25 13.50 121.25 17.00 MacLine -121.25 242.50 121.25 239.00 MacLine -1 ps -1.00 ps -104.25 13.50 104.25 17.00 MacLine -104.25 242.50 104.25 239.00 MacLine -1 ps -1.00 ps -87.38 13.50 87.38 17.00 MacLine -87.38 242.50 87.38 239.00 MacLine -1 ps -1.00 ps -70.38 13.50 70.38 17.00 MacLine -70.38 242.50 70.38 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 49.62 259.88 8.88 WS -18.00 (_Helvetica) 0 F -(mass \(kg\)) 268.50 283.88 79.00 WS -2.00 ps -135.62 173.25 139.75 173.25 MacLine -135.62 196.25 139.75 196.25 MacLine -154.50 182.75 154.50 186.88 MacLine -120.75 182.75 120.75 186.88 MacLine -1 ps -2.00 ps -137.62 174.25 137.62 195.25 MacLine -121.75 184.75 153.50 184.75 MacLine -1 ps -2.00 ps -220.38 127.38 224.50 127.38 MacLine -220.38 150.38 224.50 150.38 MacLine -239.25 136.88 239.25 141.00 MacLine -205.50 136.88 205.50 141.00 MacLine -1 ps -2.00 ps -222.38 128.38 222.38 149.38 MacLine -206.50 138.88 238.25 138.88 MacLine -1 ps -2.00 ps -305.00 127.38 309.12 127.38 MacLine -305.00 150.38 309.12 150.38 MacLine -323.88 136.88 323.88 141.00 MacLine -290.12 136.88 290.12 141.00 MacLine -1 ps -2.00 ps -307.00 128.38 307.00 149.38 MacLine -291.12 138.88 322.88 138.88 MacLine -1 ps -2.00 ps -389.62 81.62 393.75 81.62 MacLine -389.62 104.62 393.75 104.62 MacLine -408.50 91.12 408.50 95.25 MacLine -374.75 91.12 374.75 95.25 MacLine -1 ps -2.00 ps -391.62 82.62 391.62 103.62 MacLine -375.75 93.12 407.50 93.12 MacLine -1 ps -2.00 ps -474.38 58.75 478.50 58.75 MacLine -474.38 81.75 478.50 81.75 MacLine -493.25 68.25 493.25 72.38 MacLine -459.50 68.25 459.50 72.38 MacLine -1 ps -2.00 ps -476.38 59.75 476.38 80.75 MacLine -460.50 70.25 492.25 70.25 MacLine -1 ps -1.00 ps -newpath 138.62 185.75 3.00 0 360 arc -0 FillPath -newpath 223.38 139.88 3.00 0 360 arc -0 FillPath -newpath 308.00 139.88 3.00 0 360 arc -0 FillPath -newpath 392.62 94.12 3.00 0 360 arc -0 FillPath -newpath 477.38 71.25 3.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v4.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v4.gif deleted file mode 100755 index b4fa83c15..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v4.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v5.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v5.eps deleted file mode 100755 index 6105f0fcb..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v5.eps +++ /dev/null @@ -1,732 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_k5 -%%Creation Date: 22 May, 1996 9:29 PM -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -18.00 (_Helvetica) 0 F -gsave 13.88 153.50 translate -90 rotate -(x \(cm\)) 0.00 0.00 50.00 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(35) 553.12 259.88 17.75 WS -1.00 ps -544.62 13.50 544.62 17.00 MacLine -544.62 242.50 544.62 239.00 MacLine -1 ps -1.00 ps -527.62 13.50 527.62 17.00 MacLine -527.62 242.50 527.62 239.00 MacLine -1 ps -1.00 ps -510.75 13.50 510.75 17.00 MacLine -510.75 242.50 510.75 239.00 MacLine -1 ps -1.00 ps -493.75 13.50 493.75 17.00 MacLine -493.75 242.50 493.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(30) 468.50 259.88 17.75 WS -1.00 ps -459.88 13.50 459.88 17.00 MacLine -459.88 242.50 459.88 239.00 MacLine -1 ps -1.00 ps -443.00 13.50 443.00 17.00 MacLine -443.00 242.50 443.00 239.00 MacLine -1 ps -1.00 ps -426.00 13.50 426.00 17.00 MacLine -426.00 242.50 426.00 239.00 MacLine -1 ps -1.00 ps -409.12 13.50 409.12 17.00 MacLine -409.12 242.50 409.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -392.50 235.50 392.50 20.50 MacLine -grestore -1.00 ps -392.12 13.50 392.12 20.50 MacLine -392.12 242.50 392.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(25) 383.75 259.88 17.75 WS -1.00 ps -375.25 13.50 375.25 17.00 MacLine -375.25 242.50 375.25 239.00 MacLine -1 ps -1.00 ps -358.25 13.50 358.25 17.00 MacLine -358.25 242.50 358.25 239.00 MacLine -1 ps -1.00 ps -341.38 13.50 341.38 17.00 MacLine -341.38 242.50 341.38 239.00 MacLine -1 ps -1.00 ps -324.38 13.50 324.38 17.00 MacLine -324.38 242.50 324.38 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 299.12 259.88 17.75 WS -1.00 ps -290.62 13.50 290.62 17.00 MacLine -290.62 242.50 290.62 239.00 MacLine -1 ps -1.00 ps -273.62 13.50 273.62 17.00 MacLine -273.62 242.50 273.62 239.00 MacLine -1 ps -1.00 ps -256.75 13.50 256.75 17.00 MacLine -256.75 242.50 256.75 239.00 MacLine -1 ps -1.00 ps -239.75 13.50 239.75 17.00 MacLine -239.75 242.50 239.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(15) 214.50 259.88 17.75 WS -1.00 ps -205.88 13.50 205.88 17.00 MacLine -205.88 242.50 205.88 239.00 MacLine -1 ps -1.00 ps -189.00 13.50 189.00 17.00 MacLine -189.00 242.50 189.00 239.00 MacLine -1 ps -1.00 ps -172.00 13.50 172.00 17.00 MacLine -172.00 242.50 172.00 239.00 MacLine -1 ps -1.00 ps -155.12 13.50 155.12 17.00 MacLine -155.12 242.50 155.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -138.50 235.50 138.50 20.50 MacLine -grestore -1.00 ps -138.12 13.50 138.12 20.50 MacLine -138.12 242.50 138.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 129.75 259.88 17.75 WS -1.00 ps -121.25 13.50 121.25 17.00 MacLine -121.25 242.50 121.25 239.00 MacLine -1 ps -1.00 ps -104.25 13.50 104.25 17.00 MacLine -104.25 242.50 104.25 239.00 MacLine -1 ps -1.00 ps -87.38 13.50 87.38 17.00 MacLine -87.38 242.50 87.38 239.00 MacLine -1 ps -1.00 ps -70.38 13.50 70.38 17.00 MacLine -70.38 242.50 70.38 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 49.62 259.88 8.88 WS -18.00 (_Helvetica) 0 F -(mass \(kg\)) 268.50 283.88 79.00 WS -2.00 ps -135.62 150.38 139.75 150.38 MacLine -135.62 173.38 139.75 173.38 MacLine -154.50 159.88 154.50 164.00 MacLine -120.75 159.88 120.75 164.00 MacLine -1 ps -2.00 ps -137.62 151.38 137.62 172.38 MacLine -121.75 161.88 153.50 161.88 MacLine -1 ps -2.00 ps -220.38 150.38 224.50 150.38 MacLine -220.38 173.38 224.50 173.38 MacLine -239.25 159.88 239.25 164.00 MacLine -205.50 159.88 205.50 164.00 MacLine -1 ps -2.00 ps -222.38 151.38 222.38 172.38 MacLine -206.50 161.88 238.25 161.88 MacLine -1 ps -2.00 ps -305.00 104.62 309.12 104.62 MacLine -305.00 127.62 309.12 127.62 MacLine -323.88 114.12 323.88 118.25 MacLine -290.12 114.12 290.12 118.25 MacLine -1 ps -2.00 ps -307.00 105.62 307.00 126.62 MacLine -291.12 116.12 322.88 116.12 MacLine -1 ps -2.00 ps -389.62 104.62 393.75 104.62 MacLine -389.62 127.62 393.75 127.62 MacLine -408.50 114.12 408.50 118.25 MacLine -374.75 114.12 374.75 118.25 MacLine -1 ps -2.00 ps -391.62 105.62 391.62 126.62 MacLine -375.75 116.12 407.50 116.12 MacLine -1 ps -2.00 ps -474.38 35.88 478.50 35.88 MacLine -474.38 58.88 478.50 58.88 MacLine -493.25 45.38 493.25 49.50 MacLine -459.50 45.38 459.50 49.50 MacLine -1 ps -2.00 ps -476.38 36.88 476.38 57.88 MacLine -460.50 47.38 492.25 47.38 MacLine -1 ps -1.00 ps -newpath 138.62 162.88 3.00 0 360 arc -0 FillPath -newpath 223.38 162.88 3.00 0 360 arc -0 FillPath -newpath 308.00 117.12 3.00 0 360 arc -0 FillPath -newpath 392.62 117.12 3.00 0 360 arc -0 FillPath -newpath 477.38 48.38 3.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v5.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v5.gif deleted file mode 100755 index 09cc7b9ad..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v5.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v6.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v6.eps deleted file mode 100755 index 14c948913..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v6.eps +++ /dev/null @@ -1,732 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_k6 -%%Creation Date: 22 May, 1996 9:29 PM -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -18.00 (_Helvetica) 0 F -gsave 13.88 153.50 translate -90 rotate -(x \(cm\)) 0.00 0.00 50.00 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(35) 553.12 259.88 17.75 WS -1.00 ps -544.62 13.50 544.62 17.00 MacLine -544.62 242.50 544.62 239.00 MacLine -1 ps -1.00 ps -527.62 13.50 527.62 17.00 MacLine -527.62 242.50 527.62 239.00 MacLine -1 ps -1.00 ps -510.75 13.50 510.75 17.00 MacLine -510.75 242.50 510.75 239.00 MacLine -1 ps -1.00 ps -493.75 13.50 493.75 17.00 MacLine -493.75 242.50 493.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(30) 468.50 259.88 17.75 WS -1.00 ps -459.88 13.50 459.88 17.00 MacLine -459.88 242.50 459.88 239.00 MacLine -1 ps -1.00 ps -443.00 13.50 443.00 17.00 MacLine -443.00 242.50 443.00 239.00 MacLine -1 ps -1.00 ps -426.00 13.50 426.00 17.00 MacLine -426.00 242.50 426.00 239.00 MacLine -1 ps -1.00 ps -409.12 13.50 409.12 17.00 MacLine -409.12 242.50 409.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -392.50 235.50 392.50 20.50 MacLine -grestore -1.00 ps -392.12 13.50 392.12 20.50 MacLine -392.12 242.50 392.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(25) 383.75 259.88 17.75 WS -1.00 ps -375.25 13.50 375.25 17.00 MacLine -375.25 242.50 375.25 239.00 MacLine -1 ps -1.00 ps -358.25 13.50 358.25 17.00 MacLine -358.25 242.50 358.25 239.00 MacLine -1 ps -1.00 ps -341.38 13.50 341.38 17.00 MacLine -341.38 242.50 341.38 239.00 MacLine -1 ps -1.00 ps -324.38 13.50 324.38 17.00 MacLine -324.38 242.50 324.38 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 299.12 259.88 17.75 WS -1.00 ps -290.62 13.50 290.62 17.00 MacLine -290.62 242.50 290.62 239.00 MacLine -1 ps -1.00 ps -273.62 13.50 273.62 17.00 MacLine -273.62 242.50 273.62 239.00 MacLine -1 ps -1.00 ps -256.75 13.50 256.75 17.00 MacLine -256.75 242.50 256.75 239.00 MacLine -1 ps -1.00 ps -239.75 13.50 239.75 17.00 MacLine -239.75 242.50 239.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(15) 214.50 259.88 17.75 WS -1.00 ps -205.88 13.50 205.88 17.00 MacLine -205.88 242.50 205.88 239.00 MacLine -1 ps -1.00 ps -189.00 13.50 189.00 17.00 MacLine -189.00 242.50 189.00 239.00 MacLine -1 ps -1.00 ps -172.00 13.50 172.00 17.00 MacLine -172.00 242.50 172.00 239.00 MacLine -1 ps -1.00 ps -155.12 13.50 155.12 17.00 MacLine -155.12 242.50 155.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -138.50 235.50 138.50 20.50 MacLine -grestore -1.00 ps -138.12 13.50 138.12 20.50 MacLine -138.12 242.50 138.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 129.75 259.88 17.75 WS -1.00 ps -121.25 13.50 121.25 17.00 MacLine -121.25 242.50 121.25 239.00 MacLine -1 ps -1.00 ps -104.25 13.50 104.25 17.00 MacLine -104.25 242.50 104.25 239.00 MacLine -1 ps -1.00 ps -87.38 13.50 87.38 17.00 MacLine -87.38 242.50 87.38 239.00 MacLine -1 ps -1.00 ps -70.38 13.50 70.38 17.00 MacLine -70.38 242.50 70.38 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 49.62 259.88 8.88 WS -18.00 (_Helvetica) 0 F -(mass \(kg\)) 268.50 283.88 79.00 WS -2.00 ps -135.62 196.12 139.75 196.12 MacLine -135.62 219.12 139.75 219.12 MacLine -154.50 205.62 154.50 209.75 MacLine -120.75 205.62 120.75 209.75 MacLine -1 ps -2.00 ps -137.62 197.12 137.62 218.12 MacLine -121.75 207.62 153.50 207.62 MacLine -1 ps -2.00 ps -220.38 127.38 224.50 127.38 MacLine -220.38 150.38 224.50 150.38 MacLine -239.25 136.88 239.25 141.00 MacLine -205.50 136.88 205.50 141.00 MacLine -1 ps -2.00 ps -222.38 128.38 222.38 149.38 MacLine -206.50 138.88 238.25 138.88 MacLine -1 ps -2.00 ps -305.00 127.38 309.12 127.38 MacLine -305.00 150.38 309.12 150.38 MacLine -323.88 136.88 323.88 141.00 MacLine -290.12 136.88 290.12 141.00 MacLine -1 ps -2.00 ps -307.00 128.38 307.00 149.38 MacLine -291.12 138.88 322.88 138.88 MacLine -1 ps -2.00 ps -389.62 81.62 393.75 81.62 MacLine -389.62 104.62 393.75 104.62 MacLine -408.50 91.12 408.50 95.25 MacLine -374.75 91.12 374.75 95.25 MacLine -1 ps -2.00 ps -391.62 82.62 391.62 103.62 MacLine -375.75 93.12 407.50 93.12 MacLine -1 ps -2.00 ps -474.38 81.62 478.50 81.62 MacLine -474.38 104.62 478.50 104.62 MacLine -493.25 91.12 493.25 95.25 MacLine -459.50 91.12 459.50 95.25 MacLine -1 ps -2.00 ps -476.38 82.62 476.38 103.62 MacLine -460.50 93.12 492.25 93.12 MacLine -1 ps -1.00 ps -newpath 138.62 208.62 3.00 0 360 arc -0 FillPath -newpath 223.38 139.88 3.00 0 360 arc -0 FillPath -newpath 308.00 139.88 3.00 0 360 arc -0 FillPath -newpath 392.62 94.12 3.00 0 360 arc -0 FillPath -newpath 477.38 94.12 3.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v6.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v6.gif deleted file mode 100755 index 3a6f8c983..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v6.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v7.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v7.eps deleted file mode 100755 index 72dd30be1..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v7.eps +++ /dev/null @@ -1,732 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_k7 -%%Creation Date: 22 May, 1996 9:29 PM -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -18.00 (_Helvetica) 0 F -gsave 13.88 153.50 translate -90 rotate -(x \(cm\)) 0.00 0.00 50.00 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(35) 553.12 259.88 17.75 WS -1.00 ps -544.62 13.50 544.62 17.00 MacLine -544.62 242.50 544.62 239.00 MacLine -1 ps -1.00 ps -527.62 13.50 527.62 17.00 MacLine -527.62 242.50 527.62 239.00 MacLine -1 ps -1.00 ps -510.75 13.50 510.75 17.00 MacLine -510.75 242.50 510.75 239.00 MacLine -1 ps -1.00 ps -493.75 13.50 493.75 17.00 MacLine -493.75 242.50 493.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(30) 468.50 259.88 17.75 WS -1.00 ps -459.88 13.50 459.88 17.00 MacLine -459.88 242.50 459.88 239.00 MacLine -1 ps -1.00 ps -443.00 13.50 443.00 17.00 MacLine -443.00 242.50 443.00 239.00 MacLine -1 ps -1.00 ps -426.00 13.50 426.00 17.00 MacLine -426.00 242.50 426.00 239.00 MacLine -1 ps -1.00 ps -409.12 13.50 409.12 17.00 MacLine -409.12 242.50 409.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -392.50 235.50 392.50 20.50 MacLine -grestore -1.00 ps -392.12 13.50 392.12 20.50 MacLine -392.12 242.50 392.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(25) 383.75 259.88 17.75 WS -1.00 ps -375.25 13.50 375.25 17.00 MacLine -375.25 242.50 375.25 239.00 MacLine -1 ps -1.00 ps -358.25 13.50 358.25 17.00 MacLine -358.25 242.50 358.25 239.00 MacLine -1 ps -1.00 ps -341.38 13.50 341.38 17.00 MacLine -341.38 242.50 341.38 239.00 MacLine -1 ps -1.00 ps -324.38 13.50 324.38 17.00 MacLine -324.38 242.50 324.38 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 299.12 259.88 17.75 WS -1.00 ps -290.62 13.50 290.62 17.00 MacLine -290.62 242.50 290.62 239.00 MacLine -1 ps -1.00 ps -273.62 13.50 273.62 17.00 MacLine -273.62 242.50 273.62 239.00 MacLine -1 ps -1.00 ps -256.75 13.50 256.75 17.00 MacLine -256.75 242.50 256.75 239.00 MacLine -1 ps -1.00 ps -239.75 13.50 239.75 17.00 MacLine -239.75 242.50 239.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(15) 214.50 259.88 17.75 WS -1.00 ps -205.88 13.50 205.88 17.00 MacLine -205.88 242.50 205.88 239.00 MacLine -1 ps -1.00 ps -189.00 13.50 189.00 17.00 MacLine -189.00 242.50 189.00 239.00 MacLine -1 ps -1.00 ps -172.00 13.50 172.00 17.00 MacLine -172.00 242.50 172.00 239.00 MacLine -1 ps -1.00 ps -155.12 13.50 155.12 17.00 MacLine -155.12 242.50 155.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -138.50 235.50 138.50 20.50 MacLine -grestore -1.00 ps -138.12 13.50 138.12 20.50 MacLine -138.12 242.50 138.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 129.75 259.88 17.75 WS -1.00 ps -121.25 13.50 121.25 17.00 MacLine -121.25 242.50 121.25 239.00 MacLine -1 ps -1.00 ps -104.25 13.50 104.25 17.00 MacLine -104.25 242.50 104.25 239.00 MacLine -1 ps -1.00 ps -87.38 13.50 87.38 17.00 MacLine -87.38 242.50 87.38 239.00 MacLine -1 ps -1.00 ps -70.38 13.50 70.38 17.00 MacLine -70.38 242.50 70.38 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 49.62 259.88 8.88 WS -18.00 (_Helvetica) 0 F -(mass \(kg\)) 268.50 283.88 79.00 WS -2.00 ps -135.62 173.25 139.75 173.25 MacLine -135.62 196.25 139.75 196.25 MacLine -154.50 182.75 154.50 186.88 MacLine -120.75 182.75 120.75 186.88 MacLine -1 ps -2.00 ps -137.62 174.25 137.62 195.25 MacLine -121.75 184.75 153.50 184.75 MacLine -1 ps -2.00 ps -220.38 150.38 224.50 150.38 MacLine -220.38 173.38 224.50 173.38 MacLine -239.25 159.88 239.25 164.00 MacLine -205.50 159.88 205.50 164.00 MacLine -1 ps -2.00 ps -222.38 151.38 222.38 172.38 MacLine -206.50 161.88 238.25 161.88 MacLine -1 ps -2.00 ps -305.00 104.62 309.12 104.62 MacLine -305.00 127.62 309.12 127.62 MacLine -323.88 114.12 323.88 118.25 MacLine -290.12 114.12 290.12 118.25 MacLine -1 ps -2.00 ps -307.00 105.62 307.00 126.62 MacLine -291.12 116.12 322.88 116.12 MacLine -1 ps -2.00 ps -389.62 104.62 393.75 104.62 MacLine -389.62 127.62 393.75 127.62 MacLine -408.50 114.12 408.50 118.25 MacLine -374.75 114.12 374.75 118.25 MacLine -1 ps -2.00 ps -391.62 105.62 391.62 126.62 MacLine -375.75 116.12 407.50 116.12 MacLine -1 ps -2.00 ps -474.38 58.75 478.50 58.75 MacLine -474.38 81.75 478.50 81.75 MacLine -493.25 68.25 493.25 72.38 MacLine -459.50 68.25 459.50 72.38 MacLine -1 ps -2.00 ps -476.38 59.75 476.38 80.75 MacLine -460.50 70.25 492.25 70.25 MacLine -1 ps -1.00 ps -newpath 138.62 185.75 3.00 0 360 arc -0 FillPath -newpath 223.38 162.88 3.00 0 360 arc -0 FillPath -newpath 308.00 117.12 3.00 0 360 arc -0 FillPath -newpath 392.62 117.12 3.00 0 360 arc -0 FillPath -newpath 477.38 71.25 3.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v7.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v7.gif deleted file mode 100755 index 52a6f7b3d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v7.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v7.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v7.pdf deleted file mode 100644 index a98c9920b..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v7.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v8.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v8.eps deleted file mode 100755 index 4d50cbf85..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v8.eps +++ /dev/null @@ -1,732 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_k8 -%%Creation Date: 22 May, 1996 9:29 PM -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -18.00 (_Helvetica) 0 F -gsave 13.88 153.50 translate -90 rotate -(x \(cm\)) 0.00 0.00 50.00 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(35) 553.12 259.88 17.75 WS -1.00 ps -544.62 13.50 544.62 17.00 MacLine -544.62 242.50 544.62 239.00 MacLine -1 ps -1.00 ps -527.62 13.50 527.62 17.00 MacLine -527.62 242.50 527.62 239.00 MacLine -1 ps -1.00 ps -510.75 13.50 510.75 17.00 MacLine -510.75 242.50 510.75 239.00 MacLine -1 ps -1.00 ps -493.75 13.50 493.75 17.00 MacLine -493.75 242.50 493.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(30) 468.50 259.88 17.75 WS -1.00 ps -459.88 13.50 459.88 17.00 MacLine -459.88 242.50 459.88 239.00 MacLine -1 ps -1.00 ps -443.00 13.50 443.00 17.00 MacLine -443.00 242.50 443.00 239.00 MacLine -1 ps -1.00 ps -426.00 13.50 426.00 17.00 MacLine -426.00 242.50 426.00 239.00 MacLine -1 ps -1.00 ps -409.12 13.50 409.12 17.00 MacLine -409.12 242.50 409.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -392.50 235.50 392.50 20.50 MacLine -grestore -1.00 ps -392.12 13.50 392.12 20.50 MacLine -392.12 242.50 392.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(25) 383.75 259.88 17.75 WS -1.00 ps -375.25 13.50 375.25 17.00 MacLine -375.25 242.50 375.25 239.00 MacLine -1 ps -1.00 ps -358.25 13.50 358.25 17.00 MacLine -358.25 242.50 358.25 239.00 MacLine -1 ps -1.00 ps -341.38 13.50 341.38 17.00 MacLine -341.38 242.50 341.38 239.00 MacLine -1 ps -1.00 ps -324.38 13.50 324.38 17.00 MacLine -324.38 242.50 324.38 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 299.12 259.88 17.75 WS -1.00 ps -290.62 13.50 290.62 17.00 MacLine -290.62 242.50 290.62 239.00 MacLine -1 ps -1.00 ps -273.62 13.50 273.62 17.00 MacLine -273.62 242.50 273.62 239.00 MacLine -1 ps -1.00 ps -256.75 13.50 256.75 17.00 MacLine -256.75 242.50 256.75 239.00 MacLine -1 ps -1.00 ps -239.75 13.50 239.75 17.00 MacLine -239.75 242.50 239.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(15) 214.50 259.88 17.75 WS -1.00 ps -205.88 13.50 205.88 17.00 MacLine -205.88 242.50 205.88 239.00 MacLine -1 ps -1.00 ps -189.00 13.50 189.00 17.00 MacLine -189.00 242.50 189.00 239.00 MacLine -1 ps -1.00 ps -172.00 13.50 172.00 17.00 MacLine -172.00 242.50 172.00 239.00 MacLine -1 ps -1.00 ps -155.12 13.50 155.12 17.00 MacLine -155.12 242.50 155.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -138.50 235.50 138.50 20.50 MacLine -grestore -1.00 ps -138.12 13.50 138.12 20.50 MacLine -138.12 242.50 138.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 129.75 259.88 17.75 WS -1.00 ps -121.25 13.50 121.25 17.00 MacLine -121.25 242.50 121.25 239.00 MacLine -1 ps -1.00 ps -104.25 13.50 104.25 17.00 MacLine -104.25 242.50 104.25 239.00 MacLine -1 ps -1.00 ps -87.38 13.50 87.38 17.00 MacLine -87.38 242.50 87.38 239.00 MacLine -1 ps -1.00 ps -70.38 13.50 70.38 17.00 MacLine -70.38 242.50 70.38 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 49.62 259.88 8.88 WS -18.00 (_Helvetica) 0 F -(mass \(kg\)) 268.50 283.88 79.00 WS -2.00 ps -135.62 196.12 139.75 196.12 MacLine -135.62 219.12 139.75 219.12 MacLine -154.50 205.62 154.50 209.75 MacLine -120.75 205.62 120.75 209.75 MacLine -1 ps -2.00 ps -137.62 197.12 137.62 218.12 MacLine -121.75 207.62 153.50 207.62 MacLine -1 ps -2.00 ps -220.38 150.38 224.50 150.38 MacLine -220.38 173.38 224.50 173.38 MacLine -239.25 159.88 239.25 164.00 MacLine -205.50 159.88 205.50 164.00 MacLine -1 ps -2.00 ps -222.38 151.38 222.38 172.38 MacLine -206.50 161.88 238.25 161.88 MacLine -1 ps -2.00 ps -305.00 127.38 309.12 127.38 MacLine -305.00 150.38 309.12 150.38 MacLine -323.88 136.88 323.88 141.00 MacLine -290.12 136.88 290.12 141.00 MacLine -1 ps -2.00 ps -307.00 128.38 307.00 149.38 MacLine -291.12 138.88 322.88 138.88 MacLine -1 ps -2.00 ps -389.62 81.62 393.75 81.62 MacLine -389.62 104.62 393.75 104.62 MacLine -408.50 91.12 408.50 95.25 MacLine -374.75 91.12 374.75 95.25 MacLine -1 ps -2.00 ps -391.62 82.62 391.62 103.62 MacLine -375.75 93.12 407.50 93.12 MacLine -1 ps -2.00 ps -474.38 81.62 478.50 81.62 MacLine -474.38 104.62 478.50 104.62 MacLine -493.25 91.12 493.25 95.25 MacLine -459.50 91.12 459.50 95.25 MacLine -1 ps -2.00 ps -476.38 82.62 476.38 103.62 MacLine -460.50 93.12 492.25 93.12 MacLine -1 ps -1.00 ps -newpath 138.62 208.62 3.00 0 360 arc -0 FillPath -newpath 223.38 162.88 3.00 0 360 arc -0 FillPath -newpath 308.00 139.88 3.00 0 360 arc -0 FillPath -newpath 392.62 94.12 3.00 0 360 arc -0 FillPath -newpath 477.38 94.12 3.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v8.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v8.gif deleted file mode 100755 index a769c0af7..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v8.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v9.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v9.eps deleted file mode 100755 index bcb98620e..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v9.eps +++ /dev/null @@ -1,732 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_k9 -%%Creation Date: 22 May, 1996 9:30 PM -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -18.00 (_Helvetica) 0 F -gsave 13.88 153.50 translate -90 rotate -(x \(cm\)) 0.00 0.00 50.00 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(35) 553.12 259.88 17.75 WS -1.00 ps -544.62 13.50 544.62 17.00 MacLine -544.62 242.50 544.62 239.00 MacLine -1 ps -1.00 ps -527.62 13.50 527.62 17.00 MacLine -527.62 242.50 527.62 239.00 MacLine -1 ps -1.00 ps -510.75 13.50 510.75 17.00 MacLine -510.75 242.50 510.75 239.00 MacLine -1 ps -1.00 ps -493.75 13.50 493.75 17.00 MacLine -493.75 242.50 493.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(30) 468.50 259.88 17.75 WS -1.00 ps -459.88 13.50 459.88 17.00 MacLine -459.88 242.50 459.88 239.00 MacLine -1 ps -1.00 ps -443.00 13.50 443.00 17.00 MacLine -443.00 242.50 443.00 239.00 MacLine -1 ps -1.00 ps -426.00 13.50 426.00 17.00 MacLine -426.00 242.50 426.00 239.00 MacLine -1 ps -1.00 ps -409.12 13.50 409.12 17.00 MacLine -409.12 242.50 409.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -392.50 235.50 392.50 20.50 MacLine -grestore -1.00 ps -392.12 13.50 392.12 20.50 MacLine -392.12 242.50 392.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(25) 383.75 259.88 17.75 WS -1.00 ps -375.25 13.50 375.25 17.00 MacLine -375.25 242.50 375.25 239.00 MacLine -1 ps -1.00 ps -358.25 13.50 358.25 17.00 MacLine -358.25 242.50 358.25 239.00 MacLine -1 ps -1.00 ps -341.38 13.50 341.38 17.00 MacLine -341.38 242.50 341.38 239.00 MacLine -1 ps -1.00 ps -324.38 13.50 324.38 17.00 MacLine -324.38 242.50 324.38 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 299.12 259.88 17.75 WS -1.00 ps -290.62 13.50 290.62 17.00 MacLine -290.62 242.50 290.62 239.00 MacLine -1 ps -1.00 ps -273.62 13.50 273.62 17.00 MacLine -273.62 242.50 273.62 239.00 MacLine -1 ps -1.00 ps -256.75 13.50 256.75 17.00 MacLine -256.75 242.50 256.75 239.00 MacLine -1 ps -1.00 ps -239.75 13.50 239.75 17.00 MacLine -239.75 242.50 239.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(15) 214.50 259.88 17.75 WS -1.00 ps -205.88 13.50 205.88 17.00 MacLine -205.88 242.50 205.88 239.00 MacLine -1 ps -1.00 ps -189.00 13.50 189.00 17.00 MacLine -189.00 242.50 189.00 239.00 MacLine -1 ps -1.00 ps -172.00 13.50 172.00 17.00 MacLine -172.00 242.50 172.00 239.00 MacLine -1 ps -1.00 ps -155.12 13.50 155.12 17.00 MacLine -155.12 242.50 155.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -138.50 235.50 138.50 20.50 MacLine -grestore -1.00 ps -138.12 13.50 138.12 20.50 MacLine -138.12 242.50 138.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 129.75 259.88 17.75 WS -1.00 ps -121.25 13.50 121.25 17.00 MacLine -121.25 242.50 121.25 239.00 MacLine -1 ps -1.00 ps -104.25 13.50 104.25 17.00 MacLine -104.25 242.50 104.25 239.00 MacLine -1 ps -1.00 ps -87.38 13.50 87.38 17.00 MacLine -87.38 242.50 87.38 239.00 MacLine -1 ps -1.00 ps -70.38 13.50 70.38 17.00 MacLine -70.38 242.50 70.38 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 49.62 259.88 8.88 WS -18.00 (_Helvetica) 0 F -(mass \(kg\)) 268.50 283.88 79.00 WS -2.00 ps -135.62 173.25 139.75 173.25 MacLine -135.62 196.25 139.75 196.25 MacLine -154.50 182.75 154.50 186.88 MacLine -120.75 182.75 120.75 186.88 MacLine -1 ps -2.00 ps -137.62 174.25 137.62 195.25 MacLine -121.75 184.75 153.50 184.75 MacLine -1 ps -2.00 ps -220.38 173.25 224.50 173.25 MacLine -220.38 196.25 224.50 196.25 MacLine -239.25 182.75 239.25 186.88 MacLine -205.50 182.75 205.50 186.88 MacLine -1 ps -2.00 ps -222.38 174.25 222.38 195.25 MacLine -206.50 184.75 238.25 184.75 MacLine -1 ps -2.00 ps -305.00 104.62 309.12 104.62 MacLine -305.00 127.62 309.12 127.62 MacLine -323.88 114.12 323.88 118.25 MacLine -290.12 114.12 290.12 118.25 MacLine -1 ps -2.00 ps -307.00 105.62 307.00 126.62 MacLine -291.12 116.12 322.88 116.12 MacLine -1 ps -2.00 ps -389.62 104.62 393.75 104.62 MacLine -389.62 127.62 393.75 127.62 MacLine -408.50 114.12 408.50 118.25 MacLine -374.75 114.12 374.75 118.25 MacLine -1 ps -2.00 ps -391.62 105.62 391.62 126.62 MacLine -375.75 116.12 407.50 116.12 MacLine -1 ps -2.00 ps -474.38 58.75 478.50 58.75 MacLine -474.38 81.75 478.50 81.75 MacLine -493.25 68.25 493.25 72.38 MacLine -459.50 68.25 459.50 72.38 MacLine -1 ps -2.00 ps -476.38 59.75 476.38 80.75 MacLine -460.50 70.25 492.25 70.25 MacLine -1 ps -1.00 ps -newpath 138.62 185.75 3.00 0 360 arc -0 FillPath -newpath 223.38 185.75 3.00 0 360 arc -0 FillPath -newpath 308.00 117.12 3.00 0 360 arc -0 FillPath -newpath 392.62 117.12 3.00 0 360 arc -0 FillPath -newpath 477.38 71.25 3.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v9.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v9.gif deleted file mode 100755 index 9e919af0d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob07v9.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av1.eps deleted file mode 100755 index 4a45a4b77..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av1.eps +++ /dev/null @@ -1,745 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_x1 -%%Creation Date: Fri, Sep 15, 1995 07:49 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(6) 41.12 18.38 8.88 WS -gsave 0.125 ps [1] sd -57.00 20.50 558.00 20.50 MacLine -grestore -1.00 ps -561.50 20.00 558.00 20.00 MacLine -53.50 20.00 57.00 20.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 27.12 558.00 27.12 MacLine -grestore -1.00 ps -561.50 26.62 558.00 26.62 MacLine -53.50 26.62 57.00 26.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 33.62 558.00 33.62 MacLine -grestore -1.00 ps -561.50 33.12 558.00 33.12 MacLine -53.50 33.12 57.00 33.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 40.12 558.00 40.12 MacLine -grestore -1.00 ps -561.50 39.62 558.00 39.62 MacLine -53.50 39.62 57.00 39.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 46.62 554.50 46.62 MacLine -grestore -1.00 ps -561.50 46.25 554.50 46.25 MacLine -53.50 46.25 60.50 46.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 41.12 51.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 53.25 558.00 53.25 MacLine -grestore -1.00 ps -561.50 52.75 558.00 52.75 MacLine -53.50 52.75 57.00 52.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 66.38 558.00 66.38 MacLine -grestore -1.00 ps -561.50 65.88 558.00 65.88 MacLine -53.50 65.88 57.00 65.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 72.88 558.00 72.88 MacLine -grestore -1.00 ps -561.50 72.38 558.00 72.38 MacLine -53.50 72.38 57.00 72.38 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 79.25 554.50 79.25 MacLine -grestore -1.00 ps -561.50 78.88 554.50 78.88 MacLine -53.50 78.88 60.50 78.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 83.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 86.00 558.00 86.00 MacLine -grestore -1.00 ps -561.50 85.50 558.00 85.50 MacLine -53.50 85.50 57.00 85.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 92.50 558.00 92.50 MacLine -grestore -1.00 ps -561.50 92.00 558.00 92.00 MacLine -53.50 92.00 57.00 92.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 99.00 558.00 99.00 MacLine -grestore -1.00 ps -561.50 98.50 558.00 98.50 MacLine -53.50 98.50 57.00 98.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 112.00 554.50 112.00 MacLine -grestore -1.00 ps -561.50 111.62 554.50 111.62 MacLine -53.50 111.62 60.50 111.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(3) 41.12 116.50 8.88 WS -gsave 0.125 ps [1] sd -57.00 118.62 558.00 118.62 MacLine -grestore -1.00 ps -561.50 118.12 558.00 118.12 MacLine -53.50 118.12 57.00 118.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 125.25 558.00 125.25 MacLine -grestore -1.00 ps -561.50 124.75 558.00 124.75 MacLine -53.50 124.75 57.00 124.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 131.75 558.00 131.75 MacLine -grestore -1.00 ps -561.50 131.25 558.00 131.25 MacLine -53.50 131.25 57.00 131.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 138.38 558.00 138.38 MacLine -grestore -1.00 ps -561.50 137.88 558.00 137.88 MacLine -53.50 137.88 57.00 137.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 144.75 554.50 144.75 MacLine -grestore -1.00 ps -561.50 144.38 554.50 144.38 MacLine -53.50 144.38 60.50 144.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 149.25 8.88 WS -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 158.00 558.00 158.00 MacLine -grestore -1.00 ps -561.50 157.50 558.00 157.50 MacLine -53.50 157.50 57.00 157.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 164.50 558.00 164.50 MacLine -grestore -1.00 ps -561.50 164.00 558.00 164.00 MacLine -53.50 164.00 57.00 164.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 171.00 558.00 171.00 MacLine -grestore -1.00 ps -561.50 170.50 558.00 170.50 MacLine -53.50 170.50 57.00 170.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 177.50 554.50 177.50 MacLine -grestore -1.00 ps -561.50 177.12 554.50 177.12 MacLine -53.50 177.12 60.50 177.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1) 41.12 182.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 184.12 558.00 184.12 MacLine -grestore -1.00 ps -561.50 183.62 558.00 183.62 MacLine -53.50 183.62 57.00 183.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 190.62 558.00 190.62 MacLine -grestore -1.00 ps -561.50 190.12 558.00 190.12 MacLine -53.50 190.12 57.00 190.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 203.75 558.00 203.75 MacLine -grestore -1.00 ps -561.50 203.25 558.00 203.25 MacLine -53.50 203.25 57.00 203.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 210.12 554.50 210.12 MacLine -grestore -1.00 ps -561.50 209.75 554.50 209.75 MacLine -53.50 209.75 60.50 209.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 214.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 216.88 558.00 216.88 MacLine -grestore -1.00 ps -561.50 216.38 558.00 216.38 MacLine -53.50 216.38 57.00 216.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 223.38 558.00 223.38 MacLine -grestore -1.00 ps -561.50 222.88 558.00 222.88 MacLine -53.50 222.88 57.00 222.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 229.88 558.00 229.88 MacLine -grestore -1.00 ps -561.50 229.38 558.00 229.38 MacLine -53.50 229.38 57.00 229.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 236.50 558.00 236.50 MacLine -grestore -1.00 ps -561.50 236.00 558.00 236.00 MacLine -53.50 236.00 57.00 236.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-1) 35.75 247.38 14.25 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(x \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 557.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 473.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -392.50 235.50 392.50 20.50 MacLine -grestore -1.00 ps -392.12 13.50 392.12 20.50 MacLine -392.12 242.50 392.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 388.25 259.88 8.88 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(3) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 219.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -138.50 235.50 138.50 20.50 MacLine -grestore -1.00 ps -138.12 13.50 138.12 20.50 MacLine -138.12 242.50 138.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1) 134.25 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -135.62 176.50 139.75 176.50 MacLine -135.62 242.00 139.75 242.00 MacLine -180.00 207.25 180.00 211.38 MacLine -95.25 207.25 95.25 211.38 MacLine -1 ps -2.00 ps -137.62 177.50 137.62 241.00 MacLine -96.25 209.25 179.00 209.25 MacLine -1 ps -2.00 ps -220.25 78.38 224.38 78.38 MacLine -220.25 143.88 224.38 143.88 MacLine -264.62 109.12 264.62 113.25 MacLine -179.88 109.12 179.88 113.25 MacLine -1 ps -2.00 ps -222.25 79.38 222.25 142.88 MacLine -180.88 111.12 263.62 111.12 MacLine -1 ps -2.00 ps -304.88 111.12 309.00 111.12 MacLine -304.88 176.62 309.00 176.62 MacLine -349.25 141.88 349.25 146.00 MacLine -264.50 141.88 264.50 146.00 MacLine -1 ps -2.00 ps -306.88 112.12 306.88 175.62 MacLine -265.50 143.88 348.25 143.88 MacLine -1 ps -2.00 ps -389.62 13.00 393.75 13.00 MacLine -389.62 78.50 393.75 78.50 MacLine -434.00 43.75 434.00 47.88 MacLine -349.25 43.75 349.25 47.88 MacLine -1 ps -2.00 ps -391.62 14.00 391.62 77.50 MacLine -350.25 45.75 433.00 45.75 MacLine -1 ps -2.00 ps -474.25 45.75 478.38 45.75 MacLine -474.25 111.25 478.38 111.25 MacLine -518.62 76.50 518.62 80.62 MacLine -433.88 76.50 433.88 80.62 MacLine -1 ps -2.00 ps -476.25 46.75 476.25 110.25 MacLine -434.88 78.50 517.62 78.50 MacLine -1 ps -2.00 ps -newpath 138.62 210.25 4.00 0 360 arc -0 FillPath -newpath 223.25 112.12 4.00 0 360 arc -0 FillPath -newpath 307.88 144.88 4.00 0 360 arc -0 FillPath -newpath 392.62 46.75 4.00 0 360 arc -0 FillPath -newpath 477.25 79.50 4.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av1.gif deleted file mode 100755 index be2c7d180..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av10.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av10.eps deleted file mode 100755 index b9c265932..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av10.eps +++ /dev/null @@ -1,618 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_x10 -%%Creation Date: Fri, Sep 15, 1995 07:49 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 242.50 558.00 242.50 MacLine -53.50 242.50 57.00 242.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 230.25 558.00 230.25 MacLine -grestore -1.00 ps -561.50 229.75 558.00 229.75 MacLine -53.50 229.75 57.00 229.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 217.38 554.50 217.38 MacLine -grestore -1.00 ps -561.50 217.00 554.50 217.00 MacLine -53.50 217.00 60.50 217.00 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(-20) 26.88 221.88 23.12 WS -gsave 0.125 ps [1] sd -57.00 204.88 558.00 204.88 MacLine -grestore -1.00 ps -561.50 204.38 558.00 204.38 MacLine -53.50 204.38 57.00 204.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 192.12 558.00 192.12 MacLine -grestore -1.00 ps -561.50 191.62 558.00 191.62 MacLine -53.50 191.62 57.00 191.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 179.38 558.00 179.38 MacLine -grestore -1.00 ps -561.50 178.88 558.00 178.88 MacLine -53.50 178.88 57.00 178.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 166.62 558.00 166.62 MacLine -grestore -1.00 ps -561.50 166.12 558.00 166.12 MacLine -53.50 166.12 57.00 166.12 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 153.88 554.50 153.88 MacLine -grestore -1.00 ps -561.50 153.50 554.50 153.50 MacLine -53.50 153.50 60.50 153.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-15) 26.88 158.38 23.12 WS -gsave 0.125 ps [1] sd -57.00 141.25 558.00 141.25 MacLine -grestore -1.00 ps -561.50 140.75 558.00 140.75 MacLine -53.50 140.75 57.00 140.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 115.75 558.00 115.75 MacLine -grestore -1.00 ps -561.50 115.25 558.00 115.25 MacLine -53.50 115.25 57.00 115.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 103.00 558.00 103.00 MacLine -grestore -1.00 ps -561.50 102.50 558.00 102.50 MacLine -53.50 102.50 57.00 102.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 90.25 554.50 90.25 MacLine -grestore -1.00 ps -561.50 89.88 554.50 89.88 MacLine -53.50 89.88 60.50 89.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-10) 26.88 94.75 23.12 WS -gsave 0.125 ps [1] sd -57.00 77.62 558.00 77.62 MacLine -grestore -1.00 ps -561.50 77.12 558.00 77.12 MacLine -53.50 77.12 57.00 77.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 64.88 558.00 64.88 MacLine -grestore -1.00 ps -561.50 64.38 558.00 64.38 MacLine -53.50 64.38 57.00 64.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 52.12 558.00 52.12 MacLine -grestore -1.00 ps -561.50 51.62 558.00 51.62 MacLine -53.50 51.62 57.00 51.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 39.50 558.00 39.50 MacLine -grestore -1.00 ps -561.50 39.00 558.00 39.00 MacLine -53.50 39.00 57.00 39.00 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 26.62 554.50 26.62 MacLine -grestore -1.00 ps -561.50 26.25 554.50 26.25 MacLine -53.50 26.25 60.50 26.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-5) 35.75 31.12 14.25 WS -1.00 ps -561.50 13.50 558.00 13.50 MacLine -53.50 13.50 57.00 13.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(x \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 557.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 473.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -392.50 235.50 392.50 20.50 MacLine -grestore -1.00 ps -392.12 13.50 392.12 20.50 MacLine -392.12 242.50 392.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 388.25 259.88 8.88 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(3) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 219.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -138.50 235.50 138.50 20.50 MacLine -grestore -1.00 ps -138.12 13.50 138.12 20.50 MacLine -138.12 242.50 138.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1) 134.25 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -135.62 13.00 139.75 13.00 MacLine -135.62 38.50 139.75 38.50 MacLine -180.00 23.75 180.00 27.88 MacLine -95.25 23.75 95.25 27.88 MacLine -1 ps -2.00 ps -137.62 14.00 137.62 37.50 MacLine -96.25 25.75 179.00 25.75 MacLine -1 ps -2.00 ps -220.25 38.38 224.38 38.38 MacLine -220.25 63.88 224.38 63.88 MacLine -264.62 49.12 264.62 53.25 MacLine -179.88 49.12 179.88 53.25 MacLine -1 ps -2.00 ps -222.25 39.38 222.25 62.88 MacLine -180.88 51.12 263.62 51.12 MacLine -1 ps -2.00 ps -304.88 114.75 309.00 114.75 MacLine -304.88 140.25 309.00 140.25 MacLine -349.25 125.50 349.25 129.62 MacLine -264.50 125.50 264.50 129.62 MacLine -1 ps -2.00 ps -306.88 115.75 306.88 139.25 MacLine -265.50 127.50 348.25 127.50 MacLine -1 ps -2.00 ps -389.62 140.25 393.75 140.25 MacLine -389.62 165.75 393.75 165.75 MacLine -434.00 151.00 434.00 155.12 MacLine -349.25 151.00 349.25 155.12 MacLine -1 ps -2.00 ps -391.62 141.25 391.62 164.75 MacLine -350.25 153.00 433.00 153.00 MacLine -1 ps -2.00 ps -474.25 216.50 478.38 216.50 MacLine -474.25 242.00 478.38 242.00 MacLine -518.62 227.25 518.62 231.38 MacLine -433.88 227.25 433.88 231.38 MacLine -1 ps -2.00 ps -476.25 217.50 476.25 241.00 MacLine -434.88 229.25 517.62 229.25 MacLine -1 ps -2.00 ps -newpath 138.62 26.75 4.00 0 360 arc -0 FillPath -newpath 223.25 52.12 4.00 0 360 arc -0 FillPath -newpath 307.88 128.50 4.00 0 360 arc -0 FillPath -newpath 392.62 154.00 4.00 0 360 arc -0 FillPath -newpath 477.25 230.25 4.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av10.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av10.gif deleted file mode 100755 index b68d3602f..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av10.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av2.eps deleted file mode 100755 index 46cedff06..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av2.eps +++ /dev/null @@ -1,694 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_x2 -%%Creation Date: Fri, Sep 15, 1995 07:49 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 242.50 558.00 242.50 MacLine -53.50 242.50 57.00 242.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 234.88 558.00 234.88 MacLine -grestore -1.00 ps -561.50 234.38 558.00 234.38 MacLine -53.50 234.38 57.00 234.38 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 226.50 554.50 226.50 MacLine -grestore -1.00 ps -561.50 226.12 554.50 226.12 MacLine -53.50 226.12 60.50 226.12 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(-14) 26.88 231.00 23.12 WS -gsave 0.125 ps [1] sd -57.00 218.50 558.00 218.50 MacLine -grestore -1.00 ps -561.50 218.00 558.00 218.00 MacLine -53.50 218.00 57.00 218.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 210.25 558.00 210.25 MacLine -grestore -1.00 ps -561.50 209.75 558.00 209.75 MacLine -53.50 209.75 57.00 209.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 202.12 558.00 202.12 MacLine -grestore -1.00 ps -561.50 201.62 558.00 201.62 MacLine -53.50 201.62 57.00 201.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 193.75 554.50 193.75 MacLine -grestore -1.00 ps -561.50 193.38 554.50 193.38 MacLine -53.50 193.38 60.50 193.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-12) 26.88 198.25 23.12 WS -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 177.62 558.00 177.62 MacLine -grestore -1.00 ps -561.50 177.12 558.00 177.12 MacLine -53.50 177.12 57.00 177.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 169.38 558.00 169.38 MacLine -grestore -1.00 ps -561.50 168.88 558.00 168.88 MacLine -53.50 168.88 57.00 168.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 161.12 554.50 161.12 MacLine -grestore -1.00 ps -561.50 160.75 554.50 160.75 MacLine -53.50 160.75 60.50 160.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-10) 26.88 165.62 23.12 WS -gsave 0.125 ps [1] sd -57.00 153.00 558.00 153.00 MacLine -grestore -1.00 ps -561.50 152.50 558.00 152.50 MacLine -53.50 152.50 57.00 152.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 144.88 558.00 144.88 MacLine -grestore -1.00 ps -561.50 144.38 558.00 144.38 MacLine -53.50 144.38 57.00 144.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 136.62 558.00 136.62 MacLine -grestore -1.00 ps -561.50 136.12 558.00 136.12 MacLine -53.50 136.12 57.00 136.12 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -53.50 128.00 60.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-8) 35.75 132.88 14.25 WS -gsave 0.125 ps [1] sd -57.00 120.38 558.00 120.38 MacLine -grestore -1.00 ps -561.50 119.88 558.00 119.88 MacLine -53.50 119.88 57.00 119.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 112.12 558.00 112.12 MacLine -grestore -1.00 ps -561.50 111.62 558.00 111.62 MacLine -53.50 111.62 57.00 111.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 104.00 558.00 104.00 MacLine -grestore -1.00 ps -561.50 103.50 558.00 103.50 MacLine -53.50 103.50 57.00 103.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 95.62 554.50 95.62 MacLine -grestore -1.00 ps -561.50 95.25 554.50 95.25 MacLine -53.50 95.25 60.50 95.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-6) 35.75 100.12 14.25 WS -gsave 0.125 ps [1] sd -57.00 87.62 558.00 87.62 MacLine -grestore -1.00 ps -561.50 87.12 558.00 87.12 MacLine -53.50 87.12 57.00 87.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 79.38 558.00 79.38 MacLine -grestore -1.00 ps -561.50 78.88 558.00 78.88 MacLine -53.50 78.88 57.00 78.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 63.00 554.50 63.00 MacLine -grestore -1.00 ps -561.50 62.62 554.50 62.62 MacLine -53.50 62.62 60.50 62.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-4) 35.75 67.50 14.25 WS -gsave 0.125 ps [1] sd -57.00 54.88 558.00 54.88 MacLine -grestore -1.00 ps -561.50 54.38 558.00 54.38 MacLine -53.50 54.38 57.00 54.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 46.75 558.00 46.75 MacLine -grestore -1.00 ps -561.50 46.25 558.00 46.25 MacLine -53.50 46.25 57.00 46.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 38.50 558.00 38.50 MacLine -grestore -1.00 ps -561.50 38.00 558.00 38.00 MacLine -53.50 38.00 57.00 38.00 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 30.25 554.50 30.25 MacLine -grestore -1.00 ps -561.50 29.88 554.50 29.88 MacLine -53.50 29.88 60.50 29.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-2) 35.75 34.75 14.25 WS -gsave 0.125 ps [1] sd -57.00 22.12 558.00 22.12 MacLine -grestore -1.00 ps -561.50 21.62 558.00 21.62 MacLine -53.50 21.62 57.00 21.62 MacLine -1 ps -1.00 ps -561.50 13.50 558.00 13.50 MacLine -53.50 13.50 57.00 13.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(x \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 557.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 473.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -392.50 235.50 392.50 20.50 MacLine -grestore -1.00 ps -392.12 13.50 392.12 20.50 MacLine -392.12 242.50 392.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 388.25 259.88 8.88 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(3) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 219.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -138.50 235.50 138.50 20.50 MacLine -grestore -1.00 ps -138.12 13.50 138.12 20.50 MacLine -138.12 242.50 138.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1) 134.25 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -135.62 13.00 139.75 13.00 MacLine -135.62 45.75 139.75 45.75 MacLine -180.00 27.38 180.00 31.50 MacLine -95.25 27.38 95.25 31.50 MacLine -1 ps -2.00 ps -137.62 14.00 137.62 44.75 MacLine -96.25 29.38 179.00 29.38 MacLine -1 ps -2.00 ps -220.25 94.75 224.38 94.75 MacLine -220.25 127.50 224.38 127.50 MacLine -264.62 109.12 264.62 113.25 MacLine -179.88 109.12 179.88 113.25 MacLine -1 ps -2.00 ps -222.25 95.75 222.25 126.50 MacLine -180.88 111.12 263.62 111.12 MacLine -1 ps -2.00 ps -304.88 111.12 309.00 111.12 MacLine -304.88 143.88 309.00 143.88 MacLine -349.25 125.50 349.25 129.62 MacLine -264.50 125.50 264.50 129.62 MacLine -1 ps -2.00 ps -306.88 112.12 306.88 142.88 MacLine -265.50 127.50 348.25 127.50 MacLine -1 ps -2.00 ps -389.62 192.88 393.75 192.88 MacLine -389.62 225.62 393.75 225.62 MacLine -434.00 207.25 434.00 211.38 MacLine -349.25 207.25 349.25 211.38 MacLine -1 ps -2.00 ps -391.62 193.88 391.62 224.62 MacLine -350.25 209.25 433.00 209.25 MacLine -1 ps -2.00 ps -474.25 209.25 478.38 209.25 MacLine -474.25 242.00 478.38 242.00 MacLine -518.62 223.62 518.62 227.75 MacLine -433.88 223.62 433.88 227.75 MacLine -1 ps -2.00 ps -476.25 210.25 476.25 241.00 MacLine -434.88 225.62 517.62 225.62 MacLine -1 ps -2.00 ps -newpath 138.62 30.38 4.00 0 360 arc -0 FillPath -newpath 223.25 112.12 4.00 0 360 arc -0 FillPath -newpath 307.88 128.50 4.00 0 360 arc -0 FillPath -newpath 392.62 210.25 4.00 0 360 arc -0 FillPath -newpath 477.25 226.62 4.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av2.gif deleted file mode 100755 index 9488789a7..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av3.eps deleted file mode 100755 index e1d79c5c3..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av3.eps +++ /dev/null @@ -1,745 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_x3 -%%Creation Date: Fri, Sep 15, 1995 07:49 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(6) 41.12 18.38 8.88 WS -gsave 0.125 ps [1] sd -57.00 20.50 558.00 20.50 MacLine -grestore -1.00 ps -561.50 20.00 558.00 20.00 MacLine -53.50 20.00 57.00 20.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 27.12 558.00 27.12 MacLine -grestore -1.00 ps -561.50 26.62 558.00 26.62 MacLine -53.50 26.62 57.00 26.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 33.62 558.00 33.62 MacLine -grestore -1.00 ps -561.50 33.12 558.00 33.12 MacLine -53.50 33.12 57.00 33.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 40.12 558.00 40.12 MacLine -grestore -1.00 ps -561.50 39.62 558.00 39.62 MacLine -53.50 39.62 57.00 39.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 46.62 554.50 46.62 MacLine -grestore -1.00 ps -561.50 46.25 554.50 46.25 MacLine -53.50 46.25 60.50 46.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 41.12 51.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 53.25 558.00 53.25 MacLine -grestore -1.00 ps -561.50 52.75 558.00 52.75 MacLine -53.50 52.75 57.00 52.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 66.38 558.00 66.38 MacLine -grestore -1.00 ps -561.50 65.88 558.00 65.88 MacLine -53.50 65.88 57.00 65.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 72.88 558.00 72.88 MacLine -grestore -1.00 ps -561.50 72.38 558.00 72.38 MacLine -53.50 72.38 57.00 72.38 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 79.25 554.50 79.25 MacLine -grestore -1.00 ps -561.50 78.88 554.50 78.88 MacLine -53.50 78.88 60.50 78.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 83.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 86.00 558.00 86.00 MacLine -grestore -1.00 ps -561.50 85.50 558.00 85.50 MacLine -53.50 85.50 57.00 85.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 92.50 558.00 92.50 MacLine -grestore -1.00 ps -561.50 92.00 558.00 92.00 MacLine -53.50 92.00 57.00 92.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 99.00 558.00 99.00 MacLine -grestore -1.00 ps -561.50 98.50 558.00 98.50 MacLine -53.50 98.50 57.00 98.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 112.00 554.50 112.00 MacLine -grestore -1.00 ps -561.50 111.62 554.50 111.62 MacLine -53.50 111.62 60.50 111.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(3) 41.12 116.50 8.88 WS -gsave 0.125 ps [1] sd -57.00 118.62 558.00 118.62 MacLine -grestore -1.00 ps -561.50 118.12 558.00 118.12 MacLine -53.50 118.12 57.00 118.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 125.25 558.00 125.25 MacLine -grestore -1.00 ps -561.50 124.75 558.00 124.75 MacLine -53.50 124.75 57.00 124.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 131.75 558.00 131.75 MacLine -grestore -1.00 ps -561.50 131.25 558.00 131.25 MacLine -53.50 131.25 57.00 131.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 138.38 558.00 138.38 MacLine -grestore -1.00 ps -561.50 137.88 558.00 137.88 MacLine -53.50 137.88 57.00 137.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 144.75 554.50 144.75 MacLine -grestore -1.00 ps -561.50 144.38 554.50 144.38 MacLine -53.50 144.38 60.50 144.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 149.25 8.88 WS -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 158.00 558.00 158.00 MacLine -grestore -1.00 ps -561.50 157.50 558.00 157.50 MacLine -53.50 157.50 57.00 157.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 164.50 558.00 164.50 MacLine -grestore -1.00 ps -561.50 164.00 558.00 164.00 MacLine -53.50 164.00 57.00 164.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 171.00 558.00 171.00 MacLine -grestore -1.00 ps -561.50 170.50 558.00 170.50 MacLine -53.50 170.50 57.00 170.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 177.50 554.50 177.50 MacLine -grestore -1.00 ps -561.50 177.12 554.50 177.12 MacLine -53.50 177.12 60.50 177.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1) 41.12 182.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 184.12 558.00 184.12 MacLine -grestore -1.00 ps -561.50 183.62 558.00 183.62 MacLine -53.50 183.62 57.00 183.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 190.62 558.00 190.62 MacLine -grestore -1.00 ps -561.50 190.12 558.00 190.12 MacLine -53.50 190.12 57.00 190.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 203.75 558.00 203.75 MacLine -grestore -1.00 ps -561.50 203.25 558.00 203.25 MacLine -53.50 203.25 57.00 203.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 210.12 554.50 210.12 MacLine -grestore -1.00 ps -561.50 209.75 554.50 209.75 MacLine -53.50 209.75 60.50 209.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 214.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 216.88 558.00 216.88 MacLine -grestore -1.00 ps -561.50 216.38 558.00 216.38 MacLine -53.50 216.38 57.00 216.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 223.38 558.00 223.38 MacLine -grestore -1.00 ps -561.50 222.88 558.00 222.88 MacLine -53.50 222.88 57.00 222.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 229.88 558.00 229.88 MacLine -grestore -1.00 ps -561.50 229.38 558.00 229.38 MacLine -53.50 229.38 57.00 229.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 236.50 558.00 236.50 MacLine -grestore -1.00 ps -561.50 236.00 558.00 236.00 MacLine -53.50 236.00 57.00 236.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-1) 35.75 247.38 14.25 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(x \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 557.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 473.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -392.50 235.50 392.50 20.50 MacLine -grestore -1.00 ps -392.12 13.50 392.12 20.50 MacLine -392.12 242.50 392.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 388.25 259.88 8.88 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(3) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 219.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -138.50 235.50 138.50 20.50 MacLine -grestore -1.00 ps -138.12 13.50 138.12 20.50 MacLine -138.12 242.50 138.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1) 134.25 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -135.62 176.50 139.75 176.50 MacLine -135.62 242.00 139.75 242.00 MacLine -180.00 207.25 180.00 211.38 MacLine -95.25 207.25 95.25 211.38 MacLine -1 ps -2.00 ps -137.62 177.50 137.62 241.00 MacLine -96.25 209.25 179.00 209.25 MacLine -1 ps -2.00 ps -220.25 78.38 224.38 78.38 MacLine -220.25 143.88 224.38 143.88 MacLine -264.62 109.12 264.62 113.25 MacLine -179.88 109.12 179.88 113.25 MacLine -1 ps -2.00 ps -222.25 79.38 222.25 142.88 MacLine -180.88 111.12 263.62 111.12 MacLine -1 ps -2.00 ps -304.88 111.12 309.00 111.12 MacLine -304.88 176.62 309.00 176.62 MacLine -349.25 141.88 349.25 146.00 MacLine -264.50 141.88 264.50 146.00 MacLine -1 ps -2.00 ps -306.88 112.12 306.88 175.62 MacLine -265.50 143.88 348.25 143.88 MacLine -1 ps -2.00 ps -389.62 13.00 393.75 13.00 MacLine -389.62 78.50 393.75 78.50 MacLine -434.00 43.75 434.00 47.88 MacLine -349.25 43.75 349.25 47.88 MacLine -1 ps -2.00 ps -391.62 14.00 391.62 77.50 MacLine -350.25 45.75 433.00 45.75 MacLine -1 ps -2.00 ps -474.25 45.75 478.38 45.75 MacLine -474.25 111.25 478.38 111.25 MacLine -518.62 76.50 518.62 80.62 MacLine -433.88 76.50 433.88 80.62 MacLine -1 ps -2.00 ps -476.25 46.75 476.25 110.25 MacLine -434.88 78.50 517.62 78.50 MacLine -1 ps -2.00 ps -newpath 138.62 210.25 4.00 0 360 arc -0 FillPath -newpath 223.25 112.12 4.00 0 360 arc -0 FillPath -newpath 307.88 144.88 4.00 0 360 arc -0 FillPath -newpath 392.62 46.75 4.00 0 360 arc -0 FillPath -newpath 477.25 79.50 4.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av3.gif deleted file mode 100755 index be2c7d180..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av4.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av4.eps deleted file mode 100755 index a45d2024d..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av4.eps +++ /dev/null @@ -1,636 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_x4 -%%Creation Date: Fri, Sep 15, 1995 07:49 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(-10) 26.88 247.38 23.12 WS -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-8) 35.75 201.62 14.25 WS -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-6) 35.75 155.75 14.25 WS -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-4) 35.75 110.00 14.25 WS -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-2) 35.75 64.12 14.25 WS -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 18.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(x \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 557.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 473.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -392.50 235.50 392.50 20.50 MacLine -grestore -1.00 ps -392.12 13.50 392.12 20.50 MacLine -392.12 242.50 392.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 388.25 259.88 8.88 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(3) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 219.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -138.50 235.50 138.50 20.50 MacLine -grestore -1.00 ps -138.12 13.50 138.12 20.50 MacLine -138.12 242.50 138.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1) 134.25 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -135.62 13.00 139.75 13.00 MacLine -135.62 58.75 139.75 58.75 MacLine -180.00 33.88 180.00 38.00 MacLine -95.25 33.88 95.25 38.00 MacLine -1 ps -2.00 ps -137.62 14.00 137.62 57.75 MacLine -96.25 35.88 179.00 35.88 MacLine -1 ps -2.00 ps -220.25 104.62 224.38 104.62 MacLine -220.25 150.38 224.38 150.38 MacLine -264.62 125.50 264.62 129.62 MacLine -179.88 125.50 179.88 129.62 MacLine -1 ps -2.00 ps -222.25 105.62 222.25 149.38 MacLine -180.88 127.50 263.62 127.50 MacLine -1 ps -2.00 ps -304.88 104.62 309.00 104.62 MacLine -304.88 150.38 309.00 150.38 MacLine -349.25 125.50 349.25 129.62 MacLine -264.50 125.50 264.50 129.62 MacLine -1 ps -2.00 ps -306.88 105.62 306.88 149.38 MacLine -265.50 127.50 348.25 127.50 MacLine -1 ps -2.00 ps -389.62 196.25 393.75 196.25 MacLine -389.62 242.00 393.75 242.00 MacLine -434.00 217.12 434.00 221.25 MacLine -349.25 217.12 349.25 221.25 MacLine -1 ps -2.00 ps -391.62 197.25 391.62 241.00 MacLine -350.25 219.12 433.00 219.12 MacLine -1 ps -2.00 ps -474.25 196.25 478.38 196.25 MacLine -474.25 242.00 478.38 242.00 MacLine -518.62 217.12 518.62 221.25 MacLine -433.88 217.12 433.88 221.25 MacLine -1 ps -2.00 ps -476.25 197.25 476.25 241.00 MacLine -434.88 219.12 517.62 219.12 MacLine -1 ps -2.00 ps -newpath 138.62 36.88 4.00 0 360 arc -0 FillPath -newpath 223.25 128.50 4.00 0 360 arc -0 FillPath -newpath 307.88 128.50 4.00 0 360 arc -0 FillPath -newpath 392.62 220.12 4.00 0 360 arc -0 FillPath -newpath 477.25 220.12 4.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av4.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av4.gif deleted file mode 100755 index 27f20c50c..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av4.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av5.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av5.eps deleted file mode 100755 index 7d57db6a7..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av5.eps +++ /dev/null @@ -1,618 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_x5 -%%Creation Date: Fri, Sep 15, 1995 07:49 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(20) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 26.75 558.00 26.75 MacLine -grestore -1.00 ps -561.50 26.25 558.00 26.25 MacLine -53.50 26.25 57.00 26.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 39.50 558.00 39.50 MacLine -grestore -1.00 ps -561.50 39.00 558.00 39.00 MacLine -53.50 39.00 57.00 39.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 52.12 558.00 52.12 MacLine -grestore -1.00 ps -561.50 51.62 558.00 51.62 MacLine -53.50 51.62 57.00 51.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 64.88 558.00 64.88 MacLine -grestore -1.00 ps -561.50 64.38 558.00 64.38 MacLine -53.50 64.38 57.00 64.38 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 77.50 554.50 77.50 MacLine -grestore -1.00 ps -561.50 77.12 554.50 77.12 MacLine -53.50 77.12 60.50 77.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(15) 32.25 82.00 17.75 WS -gsave 0.125 ps [1] sd -57.00 90.38 558.00 90.38 MacLine -grestore -1.00 ps -561.50 89.88 558.00 89.88 MacLine -53.50 89.88 57.00 89.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 103.00 558.00 103.00 MacLine -grestore -1.00 ps -561.50 102.50 558.00 102.50 MacLine -53.50 102.50 57.00 102.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 115.75 558.00 115.75 MacLine -grestore -1.00 ps -561.50 115.25 558.00 115.25 MacLine -53.50 115.25 57.00 115.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 141.12 554.50 141.12 MacLine -grestore -1.00 ps -561.50 140.75 554.50 140.75 MacLine -53.50 140.75 60.50 140.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 32.25 145.62 17.75 WS -gsave 0.125 ps [1] sd -57.00 154.00 558.00 154.00 MacLine -grestore -1.00 ps -561.50 153.50 558.00 153.50 MacLine -53.50 153.50 57.00 153.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 166.62 558.00 166.62 MacLine -grestore -1.00 ps -561.50 166.12 558.00 166.12 MacLine -53.50 166.12 57.00 166.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 179.38 558.00 179.38 MacLine -grestore -1.00 ps -561.50 178.88 558.00 178.88 MacLine -53.50 178.88 57.00 178.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 192.12 558.00 192.12 MacLine -grestore -1.00 ps -561.50 191.62 558.00 191.62 MacLine -53.50 191.62 57.00 191.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 204.75 554.50 204.75 MacLine -grestore -1.00 ps -561.50 204.38 554.50 204.38 MacLine -53.50 204.38 60.50 204.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 41.12 209.25 8.88 WS -gsave 0.125 ps [1] sd -57.00 217.50 558.00 217.50 MacLine -grestore -1.00 ps -561.50 217.00 558.00 217.00 MacLine -53.50 217.00 57.00 217.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 230.25 558.00 230.25 MacLine -grestore -1.00 ps -561.50 229.75 558.00 229.75 MacLine -53.50 229.75 57.00 229.75 MacLine -1 ps -1.00 ps -561.50 242.50 558.00 242.50 MacLine -53.50 242.50 57.00 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(x \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 557.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 473.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -392.50 235.50 392.50 20.50 MacLine -grestore -1.00 ps -392.12 13.50 392.12 20.50 MacLine -392.12 242.50 392.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 388.25 259.88 8.88 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(3) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 219.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -138.50 235.50 138.50 20.50 MacLine -grestore -1.00 ps -138.12 13.50 138.12 20.50 MacLine -138.12 242.50 138.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1) 134.25 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -135.62 216.50 139.75 216.50 MacLine -135.62 242.00 139.75 242.00 MacLine -180.00 227.25 180.00 231.38 MacLine -95.25 227.25 95.25 231.38 MacLine -1 ps -2.00 ps -137.62 217.50 137.62 241.00 MacLine -96.25 229.25 179.00 229.25 MacLine -1 ps -2.00 ps -220.25 140.25 224.38 140.25 MacLine -220.25 165.75 224.38 165.75 MacLine -264.62 151.00 264.62 155.12 MacLine -179.88 151.00 179.88 155.12 MacLine -1 ps -2.00 ps -222.25 141.25 222.25 164.75 MacLine -180.88 153.00 263.62 153.00 MacLine -1 ps -2.00 ps -304.88 114.75 309.00 114.75 MacLine -304.88 140.25 309.00 140.25 MacLine -349.25 125.50 349.25 129.62 MacLine -264.50 125.50 264.50 129.62 MacLine -1 ps -2.00 ps -306.88 115.75 306.88 139.25 MacLine -265.50 127.50 348.25 127.50 MacLine -1 ps -2.00 ps -389.62 38.38 393.75 38.38 MacLine -389.62 63.88 393.75 63.88 MacLine -434.00 49.12 434.00 53.25 MacLine -349.25 49.12 349.25 53.25 MacLine -1 ps -2.00 ps -391.62 39.38 391.62 62.88 MacLine -350.25 51.12 433.00 51.12 MacLine -1 ps -2.00 ps -474.25 13.00 478.38 13.00 MacLine -474.25 38.50 478.38 38.50 MacLine -518.62 23.75 518.62 27.88 MacLine -433.88 23.75 433.88 27.88 MacLine -1 ps -2.00 ps -476.25 14.00 476.25 37.50 MacLine -434.88 25.75 517.62 25.75 MacLine -1 ps -2.00 ps -newpath 138.62 230.25 4.00 0 360 arc -0 FillPath -newpath 223.25 154.00 4.00 0 360 arc -0 FillPath -newpath 307.88 128.50 4.00 0 360 arc -0 FillPath -newpath 392.62 52.12 4.00 0 360 arc -0 FillPath -newpath 477.25 26.75 4.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av5.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av5.gif deleted file mode 100755 index c6ef1aaa5..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av5.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av6.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av6.eps deleted file mode 100755 index 6d5d50424..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av6.eps +++ /dev/null @@ -1,618 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_x6 -%%Creation Date: Fri, Sep 15, 1995 07:49 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 558.00 13.50 MacLine -53.50 13.50 57.00 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 26.75 558.00 26.75 MacLine -grestore -1.00 ps -561.50 26.25 558.00 26.25 MacLine -53.50 26.25 57.00 26.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 39.38 554.50 39.38 MacLine -grestore -1.00 ps -561.50 39.00 554.50 39.00 MacLine -53.50 39.00 60.50 39.00 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(20) 32.25 43.88 17.75 WS -gsave 0.125 ps [1] sd -57.00 52.12 558.00 52.12 MacLine -grestore -1.00 ps -561.50 51.62 558.00 51.62 MacLine -53.50 51.62 57.00 51.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 64.88 558.00 64.88 MacLine -grestore -1.00 ps -561.50 64.38 558.00 64.38 MacLine -53.50 64.38 57.00 64.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 77.62 558.00 77.62 MacLine -grestore -1.00 ps -561.50 77.12 558.00 77.12 MacLine -53.50 77.12 57.00 77.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 90.38 558.00 90.38 MacLine -grestore -1.00 ps -561.50 89.88 558.00 89.88 MacLine -53.50 89.88 57.00 89.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 102.88 554.50 102.88 MacLine -grestore -1.00 ps -561.50 102.50 554.50 102.50 MacLine -53.50 102.50 60.50 102.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(15) 32.25 107.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 115.75 558.00 115.75 MacLine -grestore -1.00 ps -561.50 115.25 558.00 115.25 MacLine -53.50 115.25 57.00 115.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 141.25 558.00 141.25 MacLine -grestore -1.00 ps -561.50 140.75 558.00 140.75 MacLine -53.50 140.75 57.00 140.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 154.00 558.00 154.00 MacLine -grestore -1.00 ps -561.50 153.50 558.00 153.50 MacLine -53.50 153.50 57.00 153.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 166.50 554.50 166.50 MacLine -grestore -1.00 ps -561.50 166.12 554.50 166.12 MacLine -53.50 166.12 60.50 166.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 32.25 171.00 17.75 WS -gsave 0.125 ps [1] sd -57.00 179.38 558.00 179.38 MacLine -grestore -1.00 ps -561.50 178.88 558.00 178.88 MacLine -53.50 178.88 57.00 178.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 192.12 558.00 192.12 MacLine -grestore -1.00 ps -561.50 191.62 558.00 191.62 MacLine -53.50 191.62 57.00 191.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 204.88 558.00 204.88 MacLine -grestore -1.00 ps -561.50 204.38 558.00 204.38 MacLine -53.50 204.38 57.00 204.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 217.50 558.00 217.50 MacLine -grestore -1.00 ps -561.50 217.00 558.00 217.00 MacLine -53.50 217.00 57.00 217.00 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 230.12 554.50 230.12 MacLine -grestore -1.00 ps -561.50 229.75 554.50 229.75 MacLine -53.50 229.75 60.50 229.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 41.12 234.62 8.88 WS -1.00 ps -561.50 242.50 558.00 242.50 MacLine -53.50 242.50 57.00 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(x \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 557.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 473.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -392.50 235.50 392.50 20.50 MacLine -grestore -1.00 ps -392.12 13.50 392.12 20.50 MacLine -392.12 242.50 392.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 388.25 259.88 8.88 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(3) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 219.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -138.50 235.50 138.50 20.50 MacLine -grestore -1.00 ps -138.12 13.50 138.12 20.50 MacLine -138.12 242.50 138.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1) 134.25 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -135.62 216.50 139.75 216.50 MacLine -135.62 242.00 139.75 242.00 MacLine -180.00 227.25 180.00 231.38 MacLine -95.25 227.25 95.25 231.38 MacLine -1 ps -2.00 ps -137.62 217.50 137.62 241.00 MacLine -96.25 229.25 179.00 229.25 MacLine -1 ps -2.00 ps -220.25 191.12 224.38 191.12 MacLine -220.25 216.62 224.38 216.62 MacLine -264.62 201.88 264.62 206.00 MacLine -179.88 201.88 179.88 206.00 MacLine -1 ps -2.00 ps -222.25 192.12 222.25 215.62 MacLine -180.88 203.88 263.62 203.88 MacLine -1 ps -2.00 ps -304.88 114.75 309.00 114.75 MacLine -304.88 140.25 309.00 140.25 MacLine -349.25 125.50 349.25 129.62 MacLine -264.50 125.50 264.50 129.62 MacLine -1 ps -2.00 ps -306.88 115.75 306.88 139.25 MacLine -265.50 127.50 348.25 127.50 MacLine -1 ps -2.00 ps -389.62 89.25 393.75 89.25 MacLine -389.62 114.75 393.75 114.75 MacLine -434.00 100.00 434.00 104.12 MacLine -349.25 100.00 349.25 104.12 MacLine -1 ps -2.00 ps -391.62 90.25 391.62 113.75 MacLine -350.25 102.00 433.00 102.00 MacLine -1 ps -2.00 ps -474.25 13.00 478.38 13.00 MacLine -474.25 38.50 478.38 38.50 MacLine -518.62 23.75 518.62 27.88 MacLine -433.88 23.75 433.88 27.88 MacLine -1 ps -2.00 ps -476.25 14.00 476.25 37.50 MacLine -434.88 25.75 517.62 25.75 MacLine -1 ps -2.00 ps -newpath 138.62 230.25 4.00 0 360 arc -0 FillPath -newpath 223.25 204.88 4.00 0 360 arc -0 FillPath -newpath 307.88 128.50 4.00 0 360 arc -0 FillPath -newpath 392.62 103.00 4.00 0 360 arc -0 FillPath -newpath 477.25 26.75 4.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av6.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av6.gif deleted file mode 100755 index 23c90b8aa..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av6.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av7.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av7.eps deleted file mode 100755 index 56ff591fe..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av7.eps +++ /dev/null @@ -1,694 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_x7 -%%Creation Date: Fri, Sep 15, 1995 07:49 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 242.50 558.00 242.50 MacLine -53.50 242.50 57.00 242.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 234.88 558.00 234.88 MacLine -grestore -1.00 ps -561.50 234.38 558.00 234.38 MacLine -53.50 234.38 57.00 234.38 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 226.50 554.50 226.50 MacLine -grestore -1.00 ps -561.50 226.12 554.50 226.12 MacLine -53.50 226.12 60.50 226.12 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(-14) 26.88 231.00 23.12 WS -gsave 0.125 ps [1] sd -57.00 218.50 558.00 218.50 MacLine -grestore -1.00 ps -561.50 218.00 558.00 218.00 MacLine -53.50 218.00 57.00 218.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 210.25 558.00 210.25 MacLine -grestore -1.00 ps -561.50 209.75 558.00 209.75 MacLine -53.50 209.75 57.00 209.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 202.12 558.00 202.12 MacLine -grestore -1.00 ps -561.50 201.62 558.00 201.62 MacLine -53.50 201.62 57.00 201.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 193.75 554.50 193.75 MacLine -grestore -1.00 ps -561.50 193.38 554.50 193.38 MacLine -53.50 193.38 60.50 193.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-12) 26.88 198.25 23.12 WS -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 177.62 558.00 177.62 MacLine -grestore -1.00 ps -561.50 177.12 558.00 177.12 MacLine -53.50 177.12 57.00 177.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 169.38 558.00 169.38 MacLine -grestore -1.00 ps -561.50 168.88 558.00 168.88 MacLine -53.50 168.88 57.00 168.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 161.12 554.50 161.12 MacLine -grestore -1.00 ps -561.50 160.75 554.50 160.75 MacLine -53.50 160.75 60.50 160.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-10) 26.88 165.62 23.12 WS -gsave 0.125 ps [1] sd -57.00 153.00 558.00 153.00 MacLine -grestore -1.00 ps -561.50 152.50 558.00 152.50 MacLine -53.50 152.50 57.00 152.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 144.88 558.00 144.88 MacLine -grestore -1.00 ps -561.50 144.38 558.00 144.38 MacLine -53.50 144.38 57.00 144.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 136.62 558.00 136.62 MacLine -grestore -1.00 ps -561.50 136.12 558.00 136.12 MacLine -53.50 136.12 57.00 136.12 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -53.50 128.00 60.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-8) 35.75 132.88 14.25 WS -gsave 0.125 ps [1] sd -57.00 120.38 558.00 120.38 MacLine -grestore -1.00 ps -561.50 119.88 558.00 119.88 MacLine -53.50 119.88 57.00 119.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 112.12 558.00 112.12 MacLine -grestore -1.00 ps -561.50 111.62 558.00 111.62 MacLine -53.50 111.62 57.00 111.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 104.00 558.00 104.00 MacLine -grestore -1.00 ps -561.50 103.50 558.00 103.50 MacLine -53.50 103.50 57.00 103.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 95.62 554.50 95.62 MacLine -grestore -1.00 ps -561.50 95.25 554.50 95.25 MacLine -53.50 95.25 60.50 95.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-6) 35.75 100.12 14.25 WS -gsave 0.125 ps [1] sd -57.00 87.62 558.00 87.62 MacLine -grestore -1.00 ps -561.50 87.12 558.00 87.12 MacLine -53.50 87.12 57.00 87.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 79.38 558.00 79.38 MacLine -grestore -1.00 ps -561.50 78.88 558.00 78.88 MacLine -53.50 78.88 57.00 78.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 63.00 554.50 63.00 MacLine -grestore -1.00 ps -561.50 62.62 554.50 62.62 MacLine -53.50 62.62 60.50 62.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-4) 35.75 67.50 14.25 WS -gsave 0.125 ps [1] sd -57.00 54.88 558.00 54.88 MacLine -grestore -1.00 ps -561.50 54.38 558.00 54.38 MacLine -53.50 54.38 57.00 54.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 46.75 558.00 46.75 MacLine -grestore -1.00 ps -561.50 46.25 558.00 46.25 MacLine -53.50 46.25 57.00 46.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 38.50 558.00 38.50 MacLine -grestore -1.00 ps -561.50 38.00 558.00 38.00 MacLine -53.50 38.00 57.00 38.00 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 30.25 554.50 30.25 MacLine -grestore -1.00 ps -561.50 29.88 554.50 29.88 MacLine -53.50 29.88 60.50 29.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-2) 35.75 34.75 14.25 WS -gsave 0.125 ps [1] sd -57.00 22.12 558.00 22.12 MacLine -grestore -1.00 ps -561.50 21.62 558.00 21.62 MacLine -53.50 21.62 57.00 21.62 MacLine -1 ps -1.00 ps -561.50 13.50 558.00 13.50 MacLine -53.50 13.50 57.00 13.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(x \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 557.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 473.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -392.50 235.50 392.50 20.50 MacLine -grestore -1.00 ps -392.12 13.50 392.12 20.50 MacLine -392.12 242.50 392.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 388.25 259.88 8.88 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(3) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 219.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -138.50 235.50 138.50 20.50 MacLine -grestore -1.00 ps -138.12 13.50 138.12 20.50 MacLine -138.12 242.50 138.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1) 134.25 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -135.62 13.00 139.75 13.00 MacLine -135.62 45.75 139.75 45.75 MacLine -180.00 27.38 180.00 31.50 MacLine -95.25 27.38 95.25 31.50 MacLine -1 ps -2.00 ps -137.62 14.00 137.62 44.75 MacLine -96.25 29.38 179.00 29.38 MacLine -1 ps -2.00 ps -220.25 94.75 224.38 94.75 MacLine -220.25 127.50 224.38 127.50 MacLine -264.62 109.12 264.62 113.25 MacLine -179.88 109.12 179.88 113.25 MacLine -1 ps -2.00 ps -222.25 95.75 222.25 126.50 MacLine -180.88 111.12 263.62 111.12 MacLine -1 ps -2.00 ps -304.88 111.12 309.00 111.12 MacLine -304.88 143.88 309.00 143.88 MacLine -349.25 125.50 349.25 129.62 MacLine -264.50 125.50 264.50 129.62 MacLine -1 ps -2.00 ps -306.88 112.12 306.88 142.88 MacLine -265.50 127.50 348.25 127.50 MacLine -1 ps -2.00 ps -389.62 192.88 393.75 192.88 MacLine -389.62 225.62 393.75 225.62 MacLine -434.00 207.25 434.00 211.38 MacLine -349.25 207.25 349.25 211.38 MacLine -1 ps -2.00 ps -391.62 193.88 391.62 224.62 MacLine -350.25 209.25 433.00 209.25 MacLine -1 ps -2.00 ps -474.25 209.25 478.38 209.25 MacLine -474.25 242.00 478.38 242.00 MacLine -518.62 223.62 518.62 227.75 MacLine -433.88 223.62 433.88 227.75 MacLine -1 ps -2.00 ps -476.25 210.25 476.25 241.00 MacLine -434.88 225.62 517.62 225.62 MacLine -1 ps -2.00 ps -newpath 138.62 30.38 4.00 0 360 arc -0 FillPath -newpath 223.25 112.12 4.00 0 360 arc -0 FillPath -newpath 307.88 128.50 4.00 0 360 arc -0 FillPath -newpath 392.62 210.25 4.00 0 360 arc -0 FillPath -newpath 477.25 226.62 4.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av7.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av7.gif deleted file mode 100755 index 9488789a7..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av7.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av7.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av7.pdf deleted file mode 100644 index 71e097c45..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av7.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av8.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av8.eps deleted file mode 100755 index be4ab68fc..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av8.eps +++ /dev/null @@ -1,636 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_x8 -%%Creation Date: Fri, Sep 15, 1995 07:49 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(-10) 26.88 247.38 23.12 WS -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-8) 35.75 201.62 14.25 WS -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-6) 35.75 155.75 14.25 WS -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-4) 35.75 110.00 14.25 WS -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-2) 35.75 64.12 14.25 WS -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 18.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(x \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 557.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 473.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -392.50 235.50 392.50 20.50 MacLine -grestore -1.00 ps -392.12 13.50 392.12 20.50 MacLine -392.12 242.50 392.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 388.25 259.88 8.88 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(3) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 219.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -138.50 235.50 138.50 20.50 MacLine -grestore -1.00 ps -138.12 13.50 138.12 20.50 MacLine -138.12 242.50 138.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1) 134.25 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -135.62 13.00 139.75 13.00 MacLine -135.62 58.75 139.75 58.75 MacLine -180.00 33.88 180.00 38.00 MacLine -95.25 33.88 95.25 38.00 MacLine -1 ps -2.00 ps -137.62 14.00 137.62 57.75 MacLine -96.25 35.88 179.00 35.88 MacLine -1 ps -2.00 ps -220.25 104.62 224.38 104.62 MacLine -220.25 150.38 224.38 150.38 MacLine -264.62 125.50 264.62 129.62 MacLine -179.88 125.50 179.88 129.62 MacLine -1 ps -2.00 ps -222.25 105.62 222.25 149.38 MacLine -180.88 127.50 263.62 127.50 MacLine -1 ps -2.00 ps -304.88 104.62 309.00 104.62 MacLine -304.88 150.38 309.00 150.38 MacLine -349.25 125.50 349.25 129.62 MacLine -264.50 125.50 264.50 129.62 MacLine -1 ps -2.00 ps -306.88 105.62 306.88 149.38 MacLine -265.50 127.50 348.25 127.50 MacLine -1 ps -2.00 ps -389.62 196.25 393.75 196.25 MacLine -389.62 242.00 393.75 242.00 MacLine -434.00 217.12 434.00 221.25 MacLine -349.25 217.12 349.25 221.25 MacLine -1 ps -2.00 ps -391.62 197.25 391.62 241.00 MacLine -350.25 219.12 433.00 219.12 MacLine -1 ps -2.00 ps -474.25 196.25 478.38 196.25 MacLine -474.25 242.00 478.38 242.00 MacLine -518.62 217.12 518.62 221.25 MacLine -433.88 217.12 433.88 221.25 MacLine -1 ps -2.00 ps -476.25 197.25 476.25 241.00 MacLine -434.88 219.12 517.62 219.12 MacLine -1 ps -2.00 ps -newpath 138.62 36.88 4.00 0 360 arc -0 FillPath -newpath 223.25 128.50 4.00 0 360 arc -0 FillPath -newpath 307.88 128.50 4.00 0 360 arc -0 FillPath -newpath 392.62 220.12 4.00 0 360 arc -0 FillPath -newpath 477.25 220.12 4.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av8.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av8.gif deleted file mode 100755 index 27f20c50c..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av8.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av9.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av9.eps deleted file mode 100755 index 1425aab7f..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av9.eps +++ /dev/null @@ -1,745 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_x9 -%%Creation Date: Fri, Sep 15, 1995 07:49 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(6) 41.12 18.38 8.88 WS -gsave 0.125 ps [1] sd -57.00 20.50 558.00 20.50 MacLine -grestore -1.00 ps -561.50 20.00 558.00 20.00 MacLine -53.50 20.00 57.00 20.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 27.12 558.00 27.12 MacLine -grestore -1.00 ps -561.50 26.62 558.00 26.62 MacLine -53.50 26.62 57.00 26.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 33.62 558.00 33.62 MacLine -grestore -1.00 ps -561.50 33.12 558.00 33.12 MacLine -53.50 33.12 57.00 33.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 40.12 558.00 40.12 MacLine -grestore -1.00 ps -561.50 39.62 558.00 39.62 MacLine -53.50 39.62 57.00 39.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 46.62 554.50 46.62 MacLine -grestore -1.00 ps -561.50 46.25 554.50 46.25 MacLine -53.50 46.25 60.50 46.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 41.12 51.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 53.25 558.00 53.25 MacLine -grestore -1.00 ps -561.50 52.75 558.00 52.75 MacLine -53.50 52.75 57.00 52.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 66.38 558.00 66.38 MacLine -grestore -1.00 ps -561.50 65.88 558.00 65.88 MacLine -53.50 65.88 57.00 65.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 72.88 558.00 72.88 MacLine -grestore -1.00 ps -561.50 72.38 558.00 72.38 MacLine -53.50 72.38 57.00 72.38 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 79.25 554.50 79.25 MacLine -grestore -1.00 ps -561.50 78.88 554.50 78.88 MacLine -53.50 78.88 60.50 78.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 83.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 86.00 558.00 86.00 MacLine -grestore -1.00 ps -561.50 85.50 558.00 85.50 MacLine -53.50 85.50 57.00 85.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 92.50 558.00 92.50 MacLine -grestore -1.00 ps -561.50 92.00 558.00 92.00 MacLine -53.50 92.00 57.00 92.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 99.00 558.00 99.00 MacLine -grestore -1.00 ps -561.50 98.50 558.00 98.50 MacLine -53.50 98.50 57.00 98.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 112.00 554.50 112.00 MacLine -grestore -1.00 ps -561.50 111.62 554.50 111.62 MacLine -53.50 111.62 60.50 111.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(3) 41.12 116.50 8.88 WS -gsave 0.125 ps [1] sd -57.00 118.62 558.00 118.62 MacLine -grestore -1.00 ps -561.50 118.12 558.00 118.12 MacLine -53.50 118.12 57.00 118.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 125.25 558.00 125.25 MacLine -grestore -1.00 ps -561.50 124.75 558.00 124.75 MacLine -53.50 124.75 57.00 124.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 131.75 558.00 131.75 MacLine -grestore -1.00 ps -561.50 131.25 558.00 131.25 MacLine -53.50 131.25 57.00 131.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 138.38 558.00 138.38 MacLine -grestore -1.00 ps -561.50 137.88 558.00 137.88 MacLine -53.50 137.88 57.00 137.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 144.75 554.50 144.75 MacLine -grestore -1.00 ps -561.50 144.38 554.50 144.38 MacLine -53.50 144.38 60.50 144.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 149.25 8.88 WS -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 158.00 558.00 158.00 MacLine -grestore -1.00 ps -561.50 157.50 558.00 157.50 MacLine -53.50 157.50 57.00 157.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 164.50 558.00 164.50 MacLine -grestore -1.00 ps -561.50 164.00 558.00 164.00 MacLine -53.50 164.00 57.00 164.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 171.00 558.00 171.00 MacLine -grestore -1.00 ps -561.50 170.50 558.00 170.50 MacLine -53.50 170.50 57.00 170.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 177.50 554.50 177.50 MacLine -grestore -1.00 ps -561.50 177.12 554.50 177.12 MacLine -53.50 177.12 60.50 177.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1) 41.12 182.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 184.12 558.00 184.12 MacLine -grestore -1.00 ps -561.50 183.62 558.00 183.62 MacLine -53.50 183.62 57.00 183.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 190.62 558.00 190.62 MacLine -grestore -1.00 ps -561.50 190.12 558.00 190.12 MacLine -53.50 190.12 57.00 190.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 203.75 558.00 203.75 MacLine -grestore -1.00 ps -561.50 203.25 558.00 203.25 MacLine -53.50 203.25 57.00 203.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 210.12 554.50 210.12 MacLine -grestore -1.00 ps -561.50 209.75 554.50 209.75 MacLine -53.50 209.75 60.50 209.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 214.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 216.88 558.00 216.88 MacLine -grestore -1.00 ps -561.50 216.38 558.00 216.38 MacLine -53.50 216.38 57.00 216.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 223.38 558.00 223.38 MacLine -grestore -1.00 ps -561.50 222.88 558.00 222.88 MacLine -53.50 222.88 57.00 222.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 229.88 558.00 229.88 MacLine -grestore -1.00 ps -561.50 229.38 558.00 229.38 MacLine -53.50 229.38 57.00 229.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 236.50 558.00 236.50 MacLine -grestore -1.00 ps -561.50 236.00 558.00 236.00 MacLine -53.50 236.00 57.00 236.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-1) 35.75 247.38 14.25 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(x \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 557.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 473.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -392.50 235.50 392.50 20.50 MacLine -grestore -1.00 ps -392.12 13.50 392.12 20.50 MacLine -392.12 242.50 392.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 388.25 259.88 8.88 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(3) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 219.00 259.88 8.88 WS -gsave 0.25 ps [1] sd -138.50 235.50 138.50 20.50 MacLine -grestore -1.00 ps -138.12 13.50 138.12 20.50 MacLine -138.12 242.50 138.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1) 134.25 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -135.62 176.50 139.75 176.50 MacLine -135.62 242.00 139.75 242.00 MacLine -180.00 207.25 180.00 211.38 MacLine -95.25 207.25 95.25 211.38 MacLine -1 ps -2.00 ps -137.62 177.50 137.62 241.00 MacLine -96.25 209.25 179.00 209.25 MacLine -1 ps -2.00 ps -220.25 78.38 224.38 78.38 MacLine -220.25 143.88 224.38 143.88 MacLine -264.62 109.12 264.62 113.25 MacLine -179.88 109.12 179.88 113.25 MacLine -1 ps -2.00 ps -222.25 79.38 222.25 142.88 MacLine -180.88 111.12 263.62 111.12 MacLine -1 ps -2.00 ps -304.88 111.12 309.00 111.12 MacLine -304.88 176.62 309.00 176.62 MacLine -349.25 141.88 349.25 146.00 MacLine -264.50 141.88 264.50 146.00 MacLine -1 ps -2.00 ps -306.88 112.12 306.88 175.62 MacLine -265.50 143.88 348.25 143.88 MacLine -1 ps -2.00 ps -389.62 13.00 393.75 13.00 MacLine -389.62 78.50 393.75 78.50 MacLine -434.00 43.75 434.00 47.88 MacLine -349.25 43.75 349.25 47.88 MacLine -1 ps -2.00 ps -391.62 14.00 391.62 77.50 MacLine -350.25 45.75 433.00 45.75 MacLine -1 ps -2.00 ps -474.25 45.75 478.38 45.75 MacLine -474.25 111.25 478.38 111.25 MacLine -518.62 76.50 518.62 80.62 MacLine -433.88 76.50 433.88 80.62 MacLine -1 ps -2.00 ps -476.25 46.75 476.25 110.25 MacLine -434.88 78.50 517.62 78.50 MacLine -1 ps -2.00 ps -newpath 138.62 210.25 4.00 0 360 arc -0 FillPath -newpath 223.25 112.12 4.00 0 360 arc -0 FillPath -newpath 307.88 144.88 4.00 0 360 arc -0 FillPath -newpath 392.62 46.75 4.00 0 360 arc -0 FillPath -newpath 477.25 79.50 4.00 0 360 arc -0 FillPath -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av9.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av9.gif deleted file mode 100755 index be2c7d180..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob12av9.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v1.eps deleted file mode 100755 index c8a09d5d0..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v1.eps +++ /dev/null @@ -1,2049 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 72.0 242.0 540.0 550.0 -%%Creator: Mathematica -%%CreationDate: Wed Aug 18 16:33:47 CDT 1993 -%%EndComments -/Mathdict 100 dict def -Mathdict begin -/Mlmarg 1.0 72 mul def -/Mrmarg 1.0 72 mul def -/Mbmarg 1.0 72 mul def -/Mtmarg 1.0 72 mul def -/Mwidth 8.5 72 mul def -/Mheight 11 72 mul def -/Mtransform { } bind def -/Mnodistort true def -/Mfixwid false def -/Mfixdash false def -/Mrot 0 def -/Mpstart { -MathPictureStart -} bind def -/Mpend { -MathPictureEnd -} bind def -/Mscale { -0 1 0 1 -5 -1 roll -MathScale -} bind def -/ISOLatin1Encoding dup where -{ pop pop } -{ -[ -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright -/parenleft /parenright /asterisk /plus /comma /minus /period /slash -/zero /one /two /three /four /five /six /seven -/eight /nine /colon /semicolon /less /equal /greater /question -/at /A /B /C /D /E /F /G -/H /I /J /K /L /M /N /O -/P /Q /R /S /T /U /V /W -/X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore -/quoteleft /a /b /c /d /e /f /g -/h /i /j /k /l /m /n /o -/p /q /r /s /t /u /v /w -/x /y /z /braceleft /bar /braceright /asciitilde /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent -/dieresis /.notdef /ring /cedilla /.notdef /hungarumlaut /ogonek /caron -/space /exclamdown /cent /sterling /currency /yen /brokenbar /section -/dieresis /copyright /ordfeminine /guillemotleft -/logicalnot /hyphen /registered /macron -/degree /plusminus /twosuperior /threesuperior -/acute /mu /paragraph /periodcentered -/cedilla /onesuperior /ordmasculine /guillemotright -/onequarter /onehalf /threequarters /questiondown -/Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla -/Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis -/Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply -/Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls -/agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla -/egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis -/eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide -/oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis -] def -} ifelse -/MFontDict 50 dict def -/MStrCat -{ -exch -dup length -2 index length add -string -dup 3 1 roll -copy -length -exch dup -4 2 roll exch -putinterval -} def -/MCreateEncoding -{ -1 index -255 string cvs -(-) MStrCat -1 index MStrCat -cvn exch -(Encoding) MStrCat -cvn dup where -{ -exch get -} -{ -pop -StandardEncoding -} ifelse -3 1 roll -dup MFontDict exch known not -{ -1 index findfont -dup length dict -begin -{1 index /FID ne -{def} -{pop pop} -ifelse} forall -/Encoding 3 index -def -currentdict -end -1 index exch definefont pop -MFontDict 1 index -null put -} -if -exch pop -exch pop -} def -/ISOLatin1 { (ISOLatin1) MCreateEncoding } def -/ISO8859 { (ISOLatin1) MCreateEncoding } def -/Mcopyfont { -dup -maxlength -dict -exch -{ -1 index -/FID -eq -{ -pop pop -} -{ -2 index -3 1 roll -put -} -ifelse -} -forall -} def -/Plain /Courier findfont Mcopyfont definefont pop -/Bold /Courier-Bold findfont Mcopyfont definefont pop -/Italic /Courier-Oblique findfont Mcopyfont definefont pop -/MathPictureStart { -gsave -Mtransform -Mlmarg -Mbmarg -translate -/Mtmatrix -matrix currentmatrix -def -/Mgmatrix -matrix currentmatrix -def -} bind def -/MathPictureEnd { -grestore -} bind def -/MathSubStart { -Momatrix -Mgmatrix Mtmatrix -Mlmarg Mrmarg -Mbmarg Mtmarg -Mwidth Mheight -11 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -Mgmatrix setmatrix -13 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -2 copy translate -/Mtmatrix matrix currentmatrix def -/Mlmarg 0 def -/Mrmarg 0 def -/Mbmarg 0 def -/Mtmarg 0 def -3 -1 roll -exch sub -/Mheight exch def -sub -/Mwidth exch def -} bind def -/MathSubEnd { -/Mheight exch def -/Mwidth exch def -/Mtmarg exch def -/Mbmarg exch def -/Mrmarg exch def -/Mlmarg exch def -/Mtmatrix exch def -dup setmatrix -/Mgmatrix exch def -/Momatrix exch def -} bind def -/Mdot { -moveto -0 0 rlineto -stroke -} bind def -/Mtetra { -moveto -lineto -lineto -lineto -fill -} bind def -/Metetra { -moveto -lineto -lineto -lineto -closepath -gsave -fill -grestore -0 setgray -stroke -} bind def -/Mistroke { -flattenpath -0 0 0 -{ -4 2 roll -pop pop -} -{ -4 -1 roll -2 index -sub dup mul -4 -1 roll -2 index -sub dup mul -add sqrt -4 -1 roll -add -3 1 roll -} -{ -stop -} -{ -stop -} -pathforall -pop pop -currentpoint -stroke -moveto -currentdash -3 -1 roll -add -setdash -} bind def -/Mfstroke { -stroke -currentdash -pop 0 -setdash -} bind def -/Mrotsboxa { -gsave -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -grestore -Msboxa -3 -1 roll -/Mtmatrix -exch def -/Mrot -0 def -} bind def -/Msboxa { -newpath -5 -1 roll -Mvboxa -pop -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Msboxa1 -5 -3 roll -Msboxa1 -Mboxrot -[ -7 -2 roll -2 copy -[ -3 1 roll -10 -1 roll -9 -1 roll -] -6 1 roll -5 -2 roll -] -} bind def -/Msboxa1 { -sub -2 div -dup -2 index -1 add -mul -3 -1 roll --1 add -3 -1 roll -mul -} bind def -/Mvboxa { -Mfixwid -{ -Mvboxa1 -} -{ -dup -Mwidthcal -0 exch -{ -add -} -forall -exch -Mvboxa1 -4 index -7 -1 roll -add -4 -1 roll -pop -3 1 roll -} -ifelse -} bind def -/Mvboxa1 { -gsave -newpath -[ true -3 -1 roll -{ -Mbbox -5 -1 roll -{ -0 -5 1 roll -} -{ -7 -1 roll -exch sub -(m) stringwidth pop -.3 mul -sub -7 1 roll -6 -1 roll -4 -1 roll -Mmin -3 -1 roll -5 index -add -5 -1 roll -4 -1 roll -Mmax -4 -1 roll -} -ifelse -false -} -forall -{ stop } if -counttomark -1 add -4 roll -] -grestore -} bind def -/Mbbox { -1 dict begin -0 0 moveto -/temp (T) def -{ gsave -currentpoint newpath moveto -temp 0 3 -1 roll put temp -false charpath flattenpath currentpoint -pathbbox -grestore moveto lineto moveto} forall -pathbbox -newpath -end -} bind def -/Mmin { -2 copy -gt -{ exch } if -pop -} bind def -/Mmax { -2 copy -lt -{ exch } if -pop -} bind def -/Mrotshowa { -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -Mgmatrix setmatrix -Mshowa -/Mtmatrix -exch def -/Mrot 0 def -} bind def -/Mshowa { -4 -2 roll -moveto -2 index -Mtmatrix setmatrix -Mvboxa -7 1 roll -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Mshowa1 -4 1 roll -Mshowa1 -rmoveto -currentpoint -Mfixwid -{ -Mshowax -} -{ -Mshoway -} -ifelse -pop pop pop pop -Mgmatrix setmatrix -} bind def -/Mshowax { -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -Mfixdash -{ -Mfixdashp -} -if -show -} for -} bind def -/Mfixdashp { -dup -length -1 -gt -1 index -true exch -{ -45 -eq -and -} forall -and -{ -gsave -(--) -stringwidth pop -(-) -stringwidth pop -sub -2 div -0 rmoveto -dup -length -1 sub -{ -(-) -show -} -repeat -grestore -} -if -} bind def -/Mshoway { -3 index -Mwidthcal -5 1 roll -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -[ -6 index -aload -length -2 add --1 roll -{ -pop -Strform -stringwidth -pop -neg -exch -add -0 rmoveto -} -exch -kshow -cleartomark -} for -pop -} bind def -/Mwidthcal { -[ -exch -{ -Mwidthcal1 -} -forall -] -[ -exch -dup -Maxlen --1 add -0 1 -3 -1 roll -{ -[ -exch -2 index -{ -1 index -Mget -exch -} -forall -pop -Maxget -exch -} -for -pop -] -Mreva -} bind def -/Mreva { -[ -exch -aload -length --1 1 -{1 roll} -for -] -} bind def -/Mget { -1 index -length --1 add -1 index -ge -{ -get -} -{ -pop pop -0 -} -ifelse -} bind def -/Maxlen { -[ -exch -{ -length -} -forall -Maxget -} bind def -/Maxget { -counttomark --1 add -1 1 -3 -1 roll -{ -pop -Mmax -} -for -exch -pop -} bind def -/Mwidthcal1 { -[ -exch -{ -Strform -stringwidth -pop -} -forall -] -} bind def -/Strform { -/tem (x) def -tem 0 -3 -1 roll -put -tem -} bind def -/Mshowa1 { -2 copy -add -4 1 roll -sub -mul -sub --2 div -} bind def -/MathScale { -Mwidth -Mlmarg Mrmarg add -sub -Mheight -Mbmarg Mtmarg add -sub -0 0 moveto -1 index 0 -lineto -2 copy -lineto -0 1 index -lineto -clip newpath -Mlp -translate -dup -/Mathabs -exch def -scale -/yscale exch def -/ybias exch def -/xscale exch def -/xbias exch def -/Momatrix -xscale yscale matrix scale -xbias ybias matrix translate -matrix concatmatrix def -/Mgmatrix -matrix currentmatrix -def -} bind def -/Mlp { -3 copy -Mlpfirst -{ -Mnodistort -{ -Mmin -dup -} if -4 index -2 index -2 index -Mlprun -11 index -11 -1 roll -10 -4 roll -Mlp1 -8 index -9 -5 roll -Mlp1 -4 -1 roll -and -{ exit } if -3 -1 roll -pop pop -} loop -exch -3 1 roll -7 -3 roll -pop pop pop -} bind def -/Mlpfirst { -3 -1 roll -dup length -2 copy --2 add -get -aload -pop pop pop -4 -2 roll --1 add -get -aload -pop pop pop -6 -1 roll -3 -1 roll -5 -1 roll -sub -div -4 1 roll -exch sub -div -} bind def -/Mlprun { -2 copy -4 index -0 get -dup -4 1 roll -Mlprun1 -3 copy -8 -2 roll -9 -1 roll -{ -3 copy -Mlprun1 -3 copy -11 -3 roll -/gt Mlpminmax -8 3 roll -11 -3 roll -/lt Mlpminmax -8 3 roll -} forall -pop pop pop pop -3 1 roll -pop pop -aload pop -5 -1 roll -aload pop -exch -6 -1 roll -Mlprun2 -8 2 roll -4 -1 roll -Mlprun2 -6 2 roll -3 -1 roll -Mlprun2 -4 2 roll -exch -Mlprun2 -6 2 roll -} bind def -/Mlprun1 { -aload pop -exch -6 -1 roll -5 -1 roll -mul add -4 -2 roll -mul -3 -1 roll -add -} bind def -/Mlprun2 { -2 copy -add 2 div -3 1 roll -exch sub -} bind def -/Mlpminmax { -cvx -2 index -6 index -2 index -exec -{ -7 -3 roll -4 -1 roll -} if -1 index -5 index -3 -1 roll -exec -{ -4 1 roll -pop -5 -1 roll -aload -pop pop -4 -1 roll -aload pop -[ -8 -2 roll -pop -5 -2 roll -pop -6 -2 roll -pop -5 -1 roll -] -4 1 roll -pop -} -{ -pop pop pop -} ifelse -} bind def -/Mlp1 { -5 index -3 index sub -5 index -2 index mul -1 index -le -1 index -0 le -or -dup -not -{ -1 index -3 index div -.99999 mul -8 -1 roll -pop -7 1 roll -} -if -8 -1 roll -2 div -7 -2 roll -pop sub -5 index -6 -3 roll -pop pop -mul sub -exch -} bind def -/intop 0 def -/inrht 0 def -/inflag 0 def -/outflag 0 def -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -/Minner { -outflag -1 -eq -{ -/outflag 0 def -/intop 0 def -/inrht 0 def -} if -5 index -gsave -Mtmatrix setmatrix -Mvboxa pop -grestore -3 -1 roll -pop -dup -intop -gt -{ -/intop -exch def -} -{ pop } -ifelse -dup -inrht -gt -{ -/inrht -exch def -} -{ pop } -ifelse -pop -/inflag -1 def -} bind def -/Mouter { -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -inflag -1 eq -{ -dup -0 lt -{ -dup -intop -mul -neg -/yadtop -exch def -} if -dup -0 gt -{ -dup -intop -mul -/yadbot -exch def -} -if -pop -dup -0 lt -{ -dup -inrht -mul -neg -/xadrht -exch def -} if -dup -0 gt -{ -dup -inrht -mul -/xadlft -exch def -} if -pop -/outflag 1 def -} -{ pop pop} -ifelse -/inflag 0 def -/inrht 0 def -/intop 0 def -} bind def -/Mboxout { -outflag -1 -eq -{ -4 -1 -roll -xadlft -leadjust -add -sub -4 1 roll -3 -1 -roll -yadbot -leadjust -add -sub -3 1 -roll -exch -xadrht -leadjust -add -add -exch -yadtop -leadjust -add -add -/outflag 0 def -/xadlft 0 def -/yadbot 0 def -/xadrht 0 def -/yadtop 0 def -} if -} bind def -/leadjust { -(m) stringwidth pop -.5 mul -} bind def -/Mrotcheck { -dup -90 -eq -{ -yadbot -/yadbot -xadrht -def -/xadrht -yadtop -def -/yadtop -xadlft -def -/xadlft -exch -def -} -if -dup -cos -1 index -sin -Checkaux -dup -cos -1 index -sin neg -exch -Checkaux -3 1 roll -pop pop -} bind def -/Checkaux { -4 index -exch -4 index -mul -3 1 roll -mul add -4 1 roll -} bind def -/Mboxrot { -Mrot -90 eq -{ -brotaux -4 2 -roll -} -if -Mrot -180 eq -{ -4 2 -roll -brotaux -4 2 -roll -brotaux -} -if -Mrot -270 eq -{ -4 2 -roll -brotaux -} -if -} bind def -/brotaux { -neg -exch -neg -} bind def -/Mabswid { -Mathabs -div -setlinewidth -} bind def -/Mabsdash { -exch -Mathabs -[ -3 1 roll -exch -{ -exch -dup -3 -1 roll -exch -div -exch -} -forall -pop ] -exch -setdash -} bind def -/MBeginOrig { Momatrix concat} bind def -/MEndOrig { Mgmatrix setmatrix} bind def -/colorimage where -{ pop } -{ -/colorimage { -3 1 roll -pop pop -5 -1 roll -mul -4 1 roll -{ -currentfile -1 index -readhexstring -pop } -image -} bind def -} ifelse -/sampledsound where -{ pop} -{ /sampledsound { -exch -pop -exch -5 1 roll -mul -4 idiv -mul -2 idiv -exch pop -exch -/Mtempproc exch def -{ Mtempproc pop} -repeat -} bind def -} ifelse -/setcmykcolor where -{ pop} -{ /setcmykcolor { -4 1 -roll -[ -4 1 -roll -] -{ -1 index -sub -1 -sub neg -dup -0 -lt -{ -pop -0 -} -if -dup -1 -gt -{ -pop -1 -} -if -exch -} forall -pop -setrgbcolor -} bind def -} ifelse -%%AspectRatio: 0.61803 -MathPictureStart -/Courier-Oblique findfont 17 scalefont setfont -% Scaling calculations -0.5 0.079365 0.309017 0.014014 [ -[(-6)] 0.02381 0 0 2 0 Minner Mrotsboxa -[(-4)] 0.18254 0 0 2 0 Minner Mrotsboxa -[(-2)] 0.34127 0 0 2 0 Minner Mrotsboxa -[(0)] 0.5 0 0 2 0 Minner Mrotsboxa -[(2)] 0.65873 0 0 2 0 Minner Mrotsboxa -[(4)] 0.81746 0 0 2 0 Minner Mrotsboxa -[(6)] 0.97619 0 0 2 0 Minner Mrotsboxa -[(x)] 0.5 0 0 2 0 0 -1 Mouter Mrotsboxa -[(-20)] -0.0125 0.02873 1 0 0 Minner Mrotsboxa -[(-10)] -0.0125 0.16887 1 0 0 Minner Mrotsboxa -[(0)] -0.0125 0.30902 1 0 0 Minner Mrotsboxa -[(10)] -0.0125 0.44916 1 0 0 Minner Mrotsboxa -[(20)] -0.0125 0.5893 1 0 0 Minner Mrotsboxa -[(y)] -0.0125 0.30902 1 0 90 -1 0 Mouter Mrotsboxa -[ -0.001 -0.001 0 0 ] -[ 1.001 0.61903 0 0 ] -] MathScale -% Start of Graphics -1 setlinecap -1 setlinejoin -newpath -%%Object: Graphics -[ ] 0 setdash -0 setgray -gsave -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.18254 0 moveto -0.18254 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.34127 0 moveto -0.34127 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.5 0 moveto -0.5 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.65873 0 moveto -0.65873 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.81746 0 moveto -0.81746 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.16887 moveto -1 0.16887 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.30902 moveto -1 0.30902 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.44916 moveto -1 0.44916 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.02381 0 moveto -0.02381 0.00625 lineto -stroke -grestore -[(-6)] 0.02381 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.18254 0 moveto -0.18254 0.00625 lineto -stroke -grestore -[(-4)] 0.18254 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.34127 0 moveto -0.34127 0.00625 lineto -stroke -grestore -[(-2)] 0.34127 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.5 0 moveto -0.5 0.00625 lineto -stroke -grestore -[(0)] 0.5 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.65873 0 moveto -0.65873 0.00625 lineto -stroke -grestore -[(2)] 0.65873 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.81746 0 moveto -0.81746 0.00625 lineto -stroke -grestore -[(4)] 0.81746 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.97619 0 moveto -0.97619 0.00625 lineto -stroke -grestore -[(6)] 0.97619 0 0 2 0 Minner Mrotshowa -gsave -0.001 setlinewidth -0.05556 0 moveto -0.05556 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.0873 0 moveto -0.0873 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.11905 0 moveto -0.11905 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.15079 0 moveto -0.15079 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.21429 0 moveto -0.21429 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.24603 0 moveto -0.24603 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.27778 0 moveto -0.27778 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.30952 0 moveto -0.30952 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.37302 0 moveto -0.37302 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.40476 0 moveto -0.40476 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.43651 0 moveto -0.43651 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.46825 0 moveto -0.46825 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.53175 0 moveto -0.53175 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.56349 0 moveto -0.56349 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.59524 0 moveto -0.59524 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.62698 0 moveto -0.62698 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.69048 0 moveto -0.69048 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.72222 0 moveto -0.72222 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.75397 0 moveto -0.75397 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.78571 0 moveto -0.78571 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.84921 0 moveto -0.84921 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.88095 0 moveto -0.88095 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.9127 0 moveto -0.9127 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.94444 0 moveto -0.94444 0.00375 lineto -stroke -grestore -[(x)] 0.5 0 0 2 0 0 -1 Mouter Mrotshowa -gsave -0.002 setlinewidth -0 0 moveto -1 0 lineto -stroke -grestore -gsave -0.002 setlinewidth -0 0.02873 moveto -0.00625 0.02873 lineto -stroke -grestore -[(-20)] -0.0125 0.02873 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.16887 moveto -0.00625 0.16887 lineto -stroke -grestore -[(-10)] -0.0125 0.16887 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.30902 moveto -0.00625 0.30902 lineto -stroke -grestore -[(0)] -0.0125 0.30902 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.44916 moveto -0.00625 0.44916 lineto -stroke -grestore -[(10)] -0.0125 0.44916 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.5893 moveto -0.00625 0.5893 lineto -stroke -grestore -[(20)] -0.0125 0.5893 1 0 0 Minner Mrotshowa -gsave -0.001 setlinewidth -0 0.05676 moveto -0.00375 0.05676 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.08479 moveto -0.00375 0.08479 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.11282 moveto -0.00375 0.11282 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.14084 moveto -0.00375 0.14084 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.1969 moveto -0.00375 0.1969 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.22493 moveto -0.00375 0.22493 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.25296 moveto -0.00375 0.25296 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.28099 moveto -0.00375 0.28099 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.33705 moveto -0.00375 0.33705 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.36507 moveto -0.00375 0.36507 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.3931 moveto -0.00375 0.3931 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.42113 moveto -0.00375 0.42113 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.47719 moveto -0.00375 0.47719 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.50522 moveto -0.00375 0.50522 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.53325 moveto -0.00375 0.53325 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.56128 moveto -0.00375 0.56128 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.0007 moveto -0.00375 0.0007 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.61733 moveto -0.00375 0.61733 lineto -stroke -grestore -[(y)] -0.0125 0.30902 1 0 90 -1 0 Mouter Mrotshowa -gsave -0.002 setlinewidth -0 0 moveto -0 0.61803 lineto -stroke -grestore -grestore -gsave -gsave -0.002 setlinewidth -0.02381 0.61178 moveto -0.02381 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.18254 0.61178 moveto -0.18254 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.34127 0.61178 moveto -0.34127 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.5 0.61178 moveto -0.5 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.65873 0.61178 moveto -0.65873 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.81746 0.61178 moveto -0.81746 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.97619 0.61178 moveto -0.97619 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.05556 0.61428 moveto -0.05556 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.0873 0.61428 moveto -0.0873 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.11905 0.61428 moveto -0.11905 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.15079 0.61428 moveto -0.15079 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.21429 0.61428 moveto -0.21429 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.24603 0.61428 moveto -0.24603 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.27778 0.61428 moveto -0.27778 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.30952 0.61428 moveto -0.30952 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.37302 0.61428 moveto -0.37302 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.40476 0.61428 moveto -0.40476 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.43651 0.61428 moveto -0.43651 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.46825 0.61428 moveto -0.46825 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.53175 0.61428 moveto -0.53175 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.56349 0.61428 moveto -0.56349 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.59524 0.61428 moveto -0.59524 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.62698 0.61428 moveto -0.62698 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.69048 0.61428 moveto -0.69048 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.72222 0.61428 moveto -0.72222 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.75397 0.61428 moveto -0.75397 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.78571 0.61428 moveto -0.78571 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.84921 0.61428 moveto -0.84921 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.88095 0.61428 moveto -0.88095 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.9127 0.61428 moveto -0.9127 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.94444 0.61428 moveto -0.94444 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0 0.61803 moveto -1 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.02873 moveto -1 0.02873 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.16887 moveto -1 0.16887 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.30902 moveto -1 0.30902 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.44916 moveto -1 0.44916 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.5893 moveto -1 0.5893 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.05676 moveto -1 0.05676 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.08479 moveto -1 0.08479 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.11282 moveto -1 0.11282 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.14084 moveto -1 0.14084 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.1969 moveto -1 0.1969 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.22493 moveto -1 0.22493 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.25296 moveto -1 0.25296 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.28099 moveto -1 0.28099 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.33705 moveto -1 0.33705 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.36507 moveto -1 0.36507 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.3931 moveto -1 0.3931 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.42113 moveto -1 0.42113 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.47719 moveto -1 0.47719 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.50522 moveto -1 0.50522 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.53325 moveto -1 0.53325 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.56128 moveto -1 0.56128 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.0007 moveto -1 0.0007 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.61733 moveto -1 0.61733 lineto -stroke -grestore -gsave -0.002 setlinewidth -1 0 moveto -1 0.61803 lineto -stroke -grestore -grestore -gsave -gsave -0.002 setlinewidth -0 0.30902 moveto -1 0.30902 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.5 0 moveto -0.5 0.61803 lineto -stroke -grestore -grestore -0 0 moveto -1 0 lineto -1 0.61803 lineto -0 0.61803 lineto -closepath -clip -newpath -gsave -gsave -gsave -0.004 setlinewidth -0.02381 0.01472 moveto -0.06349 0.03924 lineto -0.10317 0.06377 lineto -0.14286 0.08829 lineto -0.18254 0.11282 lineto -0.22222 0.13734 lineto -0.2619 0.16187 lineto -0.30159 0.18639 lineto -0.34127 0.21092 lineto -0.38095 0.23544 lineto -0.42063 0.25997 lineto -0.46032 0.28449 lineto -0.5 0.30902 lineto -0.53968 0.33354 lineto -0.57937 0.35807 lineto -0.61905 0.38259 lineto -0.65873 0.40712 lineto -0.69841 0.43164 lineto -0.7381 0.45617 lineto -0.77778 0.48069 lineto -0.81746 0.50522 lineto -0.85714 0.52974 lineto -0.89683 0.55427 lineto -0.93651 0.57879 lineto -0.97619 0.60332 lineto -stroke -grestore -grestore -grestore -% End of Graphics -MathPictureEnd -end -showpage diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v1.gif deleted file mode 100755 index 0f379acae..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v10.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v10.eps deleted file mode 100755 index 3d5bdab5b..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v10.eps +++ /dev/null @@ -1,2363 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 72.0 242.0 540.0 550.0 -%%Creator: Mathematica -%%CreationDate: Mon Aug 30 10:22:30 CDT 1993 -%%EndComments -/Mathdict 100 dict def -Mathdict begin -/Mlmarg 1.0 72 mul def -/Mrmarg 1.0 72 mul def -/Mbmarg 1.0 72 mul def -/Mtmarg 1.0 72 mul def -/Mwidth 8.5 72 mul def -/Mheight 11 72 mul def -/Mtransform { } bind def -/Mnodistort true def -/Mfixwid false def -/Mfixdash false def -/Mrot 0 def -/Mpstart { -MathPictureStart -} bind def -/Mpend { -MathPictureEnd -} bind def -/Mscale { -0 1 0 1 -5 -1 roll -MathScale -} bind def -/ISOLatin1Encoding dup where -{ pop pop } -{ -[ -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright -/parenleft /parenright /asterisk /plus /comma /minus /period /slash -/zero /one /two /three /four /five /six /seven -/eight /nine /colon /semicolon /less /equal /greater /question -/at /A /B /C /D /E /F /G -/H /I /J /K /L /M /N /O -/P /Q /R /S /T /U /V /W -/X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore -/quoteleft /a /b /c /d /e /f /g -/h /i /j /k /l /m /n /o -/p /q /r /s /t /u /v /w -/x /y /z /braceleft /bar /braceright /asciitilde /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent -/dieresis /.notdef /ring /cedilla /.notdef /hungarumlaut /ogonek /caron -/space /exclamdown /cent /sterling /currency /yen /brokenbar /section -/dieresis /copyright /ordfeminine /guillemotleft -/logicalnot /hyphen /registered /macron -/degree /plusminus /twosuperior /threesuperior -/acute /mu /paragraph /periodcentered -/cedilla /onesuperior /ordmasculine /guillemotright -/onequarter /onehalf /threequarters /questiondown -/Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla -/Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis -/Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply -/Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls -/agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla -/egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis -/eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide -/oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis -] def -} ifelse -/MFontDict 50 dict def -/MStrCat -{ -exch -dup length -2 index length add -string -dup 3 1 roll -copy -length -exch dup -4 2 roll exch -putinterval -} def -/MCreateEncoding -{ -1 index -255 string cvs -(-) MStrCat -1 index MStrCat -cvn exch -(Encoding) MStrCat -cvn dup where -{ -exch get -} -{ -pop -StandardEncoding -} ifelse -3 1 roll -dup MFontDict exch known not -{ -1 index findfont -dup length dict -begin -{1 index /FID ne -{def} -{pop pop} -ifelse} forall -/Encoding 3 index -def -currentdict -end -1 index exch definefont pop -MFontDict 1 index -null put -} -if -exch pop -exch pop -} def -/ISOLatin1 { (ISOLatin1) MCreateEncoding } def -/ISO8859 { (ISOLatin1) MCreateEncoding } def -/Mcopyfont { -dup -maxlength -dict -exch -{ -1 index -/FID -eq -{ -pop pop -} -{ -2 index -3 1 roll -put -} -ifelse -} -forall -} def -/Plain /Courier findfont Mcopyfont definefont pop -/Bold /Courier-Bold findfont Mcopyfont definefont pop -/Italic /Courier-Oblique findfont Mcopyfont definefont pop -/MathPictureStart { -gsave -Mtransform -Mlmarg -Mbmarg -translate -/Mtmatrix -matrix currentmatrix -def -/Mgmatrix -matrix currentmatrix -def -} bind def -/MathPictureEnd { -grestore -} bind def -/MathSubStart { -Momatrix -Mgmatrix Mtmatrix -Mlmarg Mrmarg -Mbmarg Mtmarg -Mwidth Mheight -11 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -Mgmatrix setmatrix -13 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -2 copy translate -/Mtmatrix matrix currentmatrix def -/Mlmarg 0 def -/Mrmarg 0 def -/Mbmarg 0 def -/Mtmarg 0 def -3 -1 roll -exch sub -/Mheight exch def -sub -/Mwidth exch def -} bind def -/MathSubEnd { -/Mheight exch def -/Mwidth exch def -/Mtmarg exch def -/Mbmarg exch def -/Mrmarg exch def -/Mlmarg exch def -/Mtmatrix exch def -dup setmatrix -/Mgmatrix exch def -/Momatrix exch def -} bind def -/Mdot { -moveto -0 0 rlineto -stroke -} bind def -/Mtetra { -moveto -lineto -lineto -lineto -fill -} bind def -/Metetra { -moveto -lineto -lineto -lineto -closepath -gsave -fill -grestore -0 setgray -stroke -} bind def -/Mistroke { -flattenpath -0 0 0 -{ -4 2 roll -pop pop -} -{ -4 -1 roll -2 index -sub dup mul -4 -1 roll -2 index -sub dup mul -add sqrt -4 -1 roll -add -3 1 roll -} -{ -stop -} -{ -stop -} -pathforall -pop pop -currentpoint -stroke -moveto -currentdash -3 -1 roll -add -setdash -} bind def -/Mfstroke { -stroke -currentdash -pop 0 -setdash -} bind def -/Mrotsboxa { -gsave -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -grestore -Msboxa -3 -1 roll -/Mtmatrix -exch def -/Mrot -0 def -} bind def -/Msboxa { -newpath -5 -1 roll -Mvboxa -pop -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Msboxa1 -5 -3 roll -Msboxa1 -Mboxrot -[ -7 -2 roll -2 copy -[ -3 1 roll -10 -1 roll -9 -1 roll -] -6 1 roll -5 -2 roll -] -} bind def -/Msboxa1 { -sub -2 div -dup -2 index -1 add -mul -3 -1 roll --1 add -3 -1 roll -mul -} bind def -/Mvboxa { -Mfixwid -{ -Mvboxa1 -} -{ -dup -Mwidthcal -0 exch -{ -add -} -forall -exch -Mvboxa1 -4 index -7 -1 roll -add -4 -1 roll -pop -3 1 roll -} -ifelse -} bind def -/Mvboxa1 { -gsave -newpath -[ true -3 -1 roll -{ -Mbbox -5 -1 roll -{ -0 -5 1 roll -} -{ -7 -1 roll -exch sub -(m) stringwidth pop -.3 mul -sub -7 1 roll -6 -1 roll -4 -1 roll -Mmin -3 -1 roll -5 index -add -5 -1 roll -4 -1 roll -Mmax -4 -1 roll -} -ifelse -false -} -forall -{ stop } if -counttomark -1 add -4 roll -] -grestore -} bind def -/Mbbox { -1 dict begin -0 0 moveto -/temp (T) def -{ gsave -currentpoint newpath moveto -temp 0 3 -1 roll put temp -false charpath flattenpath currentpoint -pathbbox -grestore moveto lineto moveto} forall -pathbbox -newpath -end -} bind def -/Mmin { -2 copy -gt -{ exch } if -pop -} bind def -/Mmax { -2 copy -lt -{ exch } if -pop -} bind def -/Mrotshowa { -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -Mgmatrix setmatrix -Mshowa -/Mtmatrix -exch def -/Mrot 0 def -} bind def -/Mshowa { -4 -2 roll -moveto -2 index -Mtmatrix setmatrix -Mvboxa -7 1 roll -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Mshowa1 -4 1 roll -Mshowa1 -rmoveto -currentpoint -Mfixwid -{ -Mshowax -} -{ -Mshoway -} -ifelse -pop pop pop pop -Mgmatrix setmatrix -} bind def -/Mshowax { -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -Mfixdash -{ -Mfixdashp -} -if -show -} for -} bind def -/Mfixdashp { -dup -length -1 -gt -1 index -true exch -{ -45 -eq -and -} forall -and -{ -gsave -(--) -stringwidth pop -(-) -stringwidth pop -sub -2 div -0 rmoveto -dup -length -1 sub -{ -(-) -show -} -repeat -grestore -} -if -} bind def -/Mshoway { -3 index -Mwidthcal -5 1 roll -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -[ -6 index -aload -length -2 add --1 roll -{ -pop -Strform -stringwidth -pop -neg -exch -add -0 rmoveto -} -exch -kshow -cleartomark -} for -pop -} bind def -/Mwidthcal { -[ -exch -{ -Mwidthcal1 -} -forall -] -[ -exch -dup -Maxlen --1 add -0 1 -3 -1 roll -{ -[ -exch -2 index -{ -1 index -Mget -exch -} -forall -pop -Maxget -exch -} -for -pop -] -Mreva -} bind def -/Mreva { -[ -exch -aload -length --1 1 -{1 roll} -for -] -} bind def -/Mget { -1 index -length --1 add -1 index -ge -{ -get -} -{ -pop pop -0 -} -ifelse -} bind def -/Maxlen { -[ -exch -{ -length -} -forall -Maxget -} bind def -/Maxget { -counttomark --1 add -1 1 -3 -1 roll -{ -pop -Mmax -} -for -exch -pop -} bind def -/Mwidthcal1 { -[ -exch -{ -Strform -stringwidth -pop -} -forall -] -} bind def -/Strform { -/tem (x) def -tem 0 -3 -1 roll -put -tem -} bind def -/Mshowa1 { -2 copy -add -4 1 roll -sub -mul -sub --2 div -} bind def -/MathScale { -Mwidth -Mlmarg Mrmarg add -sub -Mheight -Mbmarg Mtmarg add -sub -0 0 moveto -1 index 0 -lineto -2 copy -lineto -0 1 index -lineto -clip newpath -Mlp -translate -dup -/Mathabs -exch def -scale -/yscale exch def -/ybias exch def -/xscale exch def -/xbias exch def -/Momatrix -xscale yscale matrix scale -xbias ybias matrix translate -matrix concatmatrix def -/Mgmatrix -matrix currentmatrix -def -} bind def -/Mlp { -3 copy -Mlpfirst -{ -Mnodistort -{ -Mmin -dup -} if -4 index -2 index -2 index -Mlprun -11 index -11 -1 roll -10 -4 roll -Mlp1 -8 index -9 -5 roll -Mlp1 -4 -1 roll -and -{ exit } if -3 -1 roll -pop pop -} loop -exch -3 1 roll -7 -3 roll -pop pop pop -} bind def -/Mlpfirst { -3 -1 roll -dup length -2 copy --2 add -get -aload -pop pop pop -4 -2 roll --1 add -get -aload -pop pop pop -6 -1 roll -3 -1 roll -5 -1 roll -sub -div -4 1 roll -exch sub -div -} bind def -/Mlprun { -2 copy -4 index -0 get -dup -4 1 roll -Mlprun1 -3 copy -8 -2 roll -9 -1 roll -{ -3 copy -Mlprun1 -3 copy -11 -3 roll -/gt Mlpminmax -8 3 roll -11 -3 roll -/lt Mlpminmax -8 3 roll -} forall -pop pop pop pop -3 1 roll -pop pop -aload pop -5 -1 roll -aload pop -exch -6 -1 roll -Mlprun2 -8 2 roll -4 -1 roll -Mlprun2 -6 2 roll -3 -1 roll -Mlprun2 -4 2 roll -exch -Mlprun2 -6 2 roll -} bind def -/Mlprun1 { -aload pop -exch -6 -1 roll -5 -1 roll -mul add -4 -2 roll -mul -3 -1 roll -add -} bind def -/Mlprun2 { -2 copy -add 2 div -3 1 roll -exch sub -} bind def -/Mlpminmax { -cvx -2 index -6 index -2 index -exec -{ -7 -3 roll -4 -1 roll -} if -1 index -5 index -3 -1 roll -exec -{ -4 1 roll -pop -5 -1 roll -aload -pop pop -4 -1 roll -aload pop -[ -8 -2 roll -pop -5 -2 roll -pop -6 -2 roll -pop -5 -1 roll -] -4 1 roll -pop -} -{ -pop pop pop -} ifelse -} bind def -/Mlp1 { -5 index -3 index sub -5 index -2 index mul -1 index -le -1 index -0 le -or -dup -not -{ -1 index -3 index div -.99999 mul -8 -1 roll -pop -7 1 roll -} -if -8 -1 roll -2 div -7 -2 roll -pop sub -5 index -6 -3 roll -pop pop -mul sub -exch -} bind def -/intop 0 def -/inrht 0 def -/inflag 0 def -/outflag 0 def -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -/Minner { -outflag -1 -eq -{ -/outflag 0 def -/intop 0 def -/inrht 0 def -} if -5 index -gsave -Mtmatrix setmatrix -Mvboxa pop -grestore -3 -1 roll -pop -dup -intop -gt -{ -/intop -exch def -} -{ pop } -ifelse -dup -inrht -gt -{ -/inrht -exch def -} -{ pop } -ifelse -pop -/inflag -1 def -} bind def -/Mouter { -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -inflag -1 eq -{ -dup -0 lt -{ -dup -intop -mul -neg -/yadtop -exch def -} if -dup -0 gt -{ -dup -intop -mul -/yadbot -exch def -} -if -pop -dup -0 lt -{ -dup -inrht -mul -neg -/xadrht -exch def -} if -dup -0 gt -{ -dup -inrht -mul -/xadlft -exch def -} if -pop -/outflag 1 def -} -{ pop pop} -ifelse -/inflag 0 def -/inrht 0 def -/intop 0 def -} bind def -/Mboxout { -outflag -1 -eq -{ -4 -1 -roll -xadlft -leadjust -add -sub -4 1 roll -3 -1 -roll -yadbot -leadjust -add -sub -3 1 -roll -exch -xadrht -leadjust -add -add -exch -yadtop -leadjust -add -add -/outflag 0 def -/xadlft 0 def -/yadbot 0 def -/xadrht 0 def -/yadtop 0 def -} if -} bind def -/leadjust { -(m) stringwidth pop -.5 mul -} bind def -/Mrotcheck { -dup -90 -eq -{ -yadbot -/yadbot -xadrht -def -/xadrht -yadtop -def -/yadtop -xadlft -def -/xadlft -exch -def -} -if -dup -cos -1 index -sin -Checkaux -dup -cos -1 index -sin neg -exch -Checkaux -3 1 roll -pop pop -} bind def -/Checkaux { -4 index -exch -4 index -mul -3 1 roll -mul add -4 1 roll -} bind def -/Mboxrot { -Mrot -90 eq -{ -brotaux -4 2 -roll -} -if -Mrot -180 eq -{ -4 2 -roll -brotaux -4 2 -roll -brotaux -} -if -Mrot -270 eq -{ -4 2 -roll -brotaux -} -if -} bind def -/brotaux { -neg -exch -neg -} bind def -/Mabswid { -Mathabs -div -setlinewidth -} bind def -/Mabsdash { -exch -Mathabs -[ -3 1 roll -exch -{ -exch -dup -3 -1 roll -exch -div -exch -} -forall -pop ] -exch -setdash -} bind def -/MBeginOrig { Momatrix concat} bind def -/MEndOrig { Mgmatrix setmatrix} bind def -/colorimage where -{ pop } -{ -/colorimage { -3 1 roll -pop pop -5 -1 roll -mul -4 1 roll -{ -currentfile -1 index -readhexstring -pop } -image -} bind def -} ifelse -/sampledsound where -{ pop} -{ /sampledsound { -exch -pop -exch -5 1 roll -mul -4 idiv -mul -2 idiv -exch pop -exch -/Mtempproc exch def -{ Mtempproc pop} -repeat -} bind def -} ifelse -/setcmykcolor where -{ pop} -{ /setcmykcolor { -4 1 -roll -[ -4 1 -roll -] -{ -1 index -sub -1 -sub neg -dup -0 -lt -{ -pop -0 -} -if -dup -1 -gt -{ -pop -1 -} -if -exch -} forall -pop -setrgbcolor -} bind def -} ifelse -%%AspectRatio: 0.61803 -MathPictureStart -/Courier-Oblique findfont 17 scalefont setfont -% Scaling calculations -0.430159 0.126984 0.352181 0.016698 [ -[(-3)] 0.04921 0 0 2 0 Minner Mrotsboxa -[(-2)] 0.17619 0 0 2 0 Minner Mrotsboxa -[(-1)] 0.30317 0 0 2 0 Minner Mrotsboxa -[(0)] 0.43016 0 0 2 0 Minner Mrotsboxa -[(1)] 0.55714 0 0 2 0 Minner Mrotsboxa -[(2)] 0.68413 0 0 2 0 Minner Mrotsboxa -[(3)] 0.81111 0 0 2 0 Minner Mrotsboxa -[(4)] 0.9381 0 0 2 0 Minner Mrotsboxa -[(x)] 0.5 0 0 2 0 0 -1 Mouter Mrotsboxa -[(-20)] -0.0125 0.01822 1 0 0 Minner Mrotsboxa -[(-15)] -0.0125 0.10171 1 0 0 Minner Mrotsboxa -[(-10)] -0.0125 0.1852 1 0 0 Minner Mrotsboxa -[(-5)] -0.0125 0.26869 1 0 0 Minner Mrotsboxa -[(0)] -0.0125 0.35218 1 0 0 Minner Mrotsboxa -[(5)] -0.0125 0.43567 1 0 0 Minner Mrotsboxa -[(10)] -0.0125 0.51916 1 0 0 Minner Mrotsboxa -[(15)] -0.0125 0.60265 1 0 0 Minner Mrotsboxa -[(Y)] -0.0125 0.30902 1 0 90 -1 0 Mouter Mrotsboxa -[ -0.001 -0.001 0 0 ] -[ 1.001 0.61903 0 0 ] -] MathScale -% Start of Graphics -1 setlinecap -1 setlinejoin -newpath -%%Object: Graphics -[ ] 0 setdash -0 setgray -gsave -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.04921 0 moveto -0.04921 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.17619 0 moveto -0.17619 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.30317 0 moveto -0.30317 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.43016 0 moveto -0.43016 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.55714 0 moveto -0.55714 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.68413 0 moveto -0.68413 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.81111 0 moveto -0.81111 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.9381 0 moveto -0.9381 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.10171 moveto -1 0.10171 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.1852 moveto -1 0.1852 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.26869 moveto -1 0.26869 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.35218 moveto -1 0.35218 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.43567 moveto -1 0.43567 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.51916 moveto -1 0.51916 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.04921 0 moveto -0.04921 0.00625 lineto -stroke -grestore -[(-3)] 0.04921 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.17619 0 moveto -0.17619 0.00625 lineto -stroke -grestore -[(-2)] 0.17619 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.30317 0 moveto -0.30317 0.00625 lineto -stroke -grestore -[(-1)] 0.30317 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.43016 0 moveto -0.43016 0.00625 lineto -stroke -grestore -[(0)] 0.43016 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.55714 0 moveto -0.55714 0.00625 lineto -stroke -grestore -[(1)] 0.55714 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.68413 0 moveto -0.68413 0.00625 lineto -stroke -grestore -[(2)] 0.68413 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.81111 0 moveto -0.81111 0.00625 lineto -stroke -grestore -[(3)] 0.81111 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.9381 0 moveto -0.9381 0.00625 lineto -stroke -grestore -[(4)] 0.9381 0 0 2 0 Minner Mrotshowa -gsave -0.001 setlinewidth -0.0746 0 moveto -0.0746 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.1 0 moveto -0.1 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.1254 0 moveto -0.1254 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.15079 0 moveto -0.15079 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.20159 0 moveto -0.20159 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.22698 0 moveto -0.22698 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.25238 0 moveto -0.25238 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.27778 0 moveto -0.27778 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.32857 0 moveto -0.32857 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.35397 0 moveto -0.35397 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.37937 0 moveto -0.37937 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.40476 0 moveto -0.40476 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.45556 0 moveto -0.45556 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.48095 0 moveto -0.48095 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.50635 0 moveto -0.50635 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.53175 0 moveto -0.53175 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.58254 0 moveto -0.58254 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.60794 0 moveto -0.60794 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.63333 0 moveto -0.63333 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.65873 0 moveto -0.65873 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.70952 0 moveto -0.70952 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.73492 0 moveto -0.73492 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.76032 0 moveto -0.76032 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.78571 0 moveto -0.78571 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.83651 0 moveto -0.83651 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.8619 0 moveto -0.8619 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.8873 0 moveto -0.8873 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.9127 0 moveto -0.9127 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.02381 0 moveto -0.02381 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.96349 0 moveto -0.96349 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.98889 0 moveto -0.98889 0.00375 lineto -stroke -grestore -[(x)] 0.5 0 0 2 0 0 -1 Mouter Mrotshowa -gsave -0.002 setlinewidth -0 0 moveto -1 0 lineto -stroke -grestore -gsave -0.002 setlinewidth -0 0.01822 moveto -0.00625 0.01822 lineto -stroke -grestore -[(-20)] -0.0125 0.01822 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.10171 moveto -0.00625 0.10171 lineto -stroke -grestore -[(-15)] -0.0125 0.10171 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.1852 moveto -0.00625 0.1852 lineto -stroke -grestore -[(-10)] -0.0125 0.1852 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.26869 moveto -0.00625 0.26869 lineto -stroke -grestore -[(-5)] -0.0125 0.26869 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.35218 moveto -0.00625 0.35218 lineto -stroke -grestore -[(0)] -0.0125 0.35218 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.43567 moveto -0.00625 0.43567 lineto -stroke -grestore -[(5)] -0.0125 0.43567 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.51916 moveto -0.00625 0.51916 lineto -stroke -grestore -[(10)] -0.0125 0.51916 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.60265 moveto -0.00625 0.60265 lineto -stroke -grestore -[(15)] -0.0125 0.60265 1 0 0 Minner Mrotshowa -gsave -0.001 setlinewidth -0 0.03492 moveto -0.00375 0.03492 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.05162 moveto -0.00375 0.05162 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.06832 moveto -0.00375 0.06832 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.08501 moveto -0.00375 0.08501 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.11841 moveto -0.00375 0.11841 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.13511 moveto -0.00375 0.13511 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.15181 moveto -0.00375 0.15181 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.1685 moveto -0.00375 0.1685 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.2019 moveto -0.00375 0.2019 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.2186 moveto -0.00375 0.2186 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.2353 moveto -0.00375 0.2353 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.25199 moveto -0.00375 0.25199 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.28539 moveto -0.00375 0.28539 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.30209 moveto -0.00375 0.30209 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.31879 moveto -0.00375 0.31879 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.33548 moveto -0.00375 0.33548 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.36888 moveto -0.00375 0.36888 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.38558 moveto -0.00375 0.38558 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.40228 moveto -0.00375 0.40228 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.41897 moveto -0.00375 0.41897 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.45237 moveto -0.00375 0.45237 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.46907 moveto -0.00375 0.46907 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.48577 moveto -0.00375 0.48577 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.50246 moveto -0.00375 0.50246 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.53586 moveto -0.00375 0.53586 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.55256 moveto -0.00375 0.55256 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.56926 moveto -0.00375 0.56926 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.58595 moveto -0.00375 0.58595 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.00152 moveto -0.00375 0.00152 lineto -stroke -grestore -[(Y)] -0.0125 0.30902 1 0 90 -1 0 Mouter Mrotshowa -gsave -0.002 setlinewidth -0 0 moveto -0 0.61803 lineto -stroke -grestore -grestore -gsave -gsave -0.002 setlinewidth -0.04921 0.61178 moveto -0.04921 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.17619 0.61178 moveto -0.17619 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.30317 0.61178 moveto -0.30317 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.43016 0.61178 moveto -0.43016 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.55714 0.61178 moveto -0.55714 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.68413 0.61178 moveto -0.68413 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.81111 0.61178 moveto -0.81111 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.9381 0.61178 moveto -0.9381 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.0746 0.61428 moveto -0.0746 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.1 0.61428 moveto -0.1 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.1254 0.61428 moveto -0.1254 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.15079 0.61428 moveto -0.15079 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.20159 0.61428 moveto -0.20159 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.22698 0.61428 moveto -0.22698 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.25238 0.61428 moveto -0.25238 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.27778 0.61428 moveto -0.27778 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.32857 0.61428 moveto -0.32857 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.35397 0.61428 moveto -0.35397 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.37937 0.61428 moveto -0.37937 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.40476 0.61428 moveto -0.40476 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.45556 0.61428 moveto -0.45556 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.48095 0.61428 moveto -0.48095 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.50635 0.61428 moveto -0.50635 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.53175 0.61428 moveto -0.53175 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.58254 0.61428 moveto -0.58254 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.60794 0.61428 moveto -0.60794 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.63333 0.61428 moveto -0.63333 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.65873 0.61428 moveto -0.65873 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.70952 0.61428 moveto -0.70952 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.73492 0.61428 moveto -0.73492 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.76032 0.61428 moveto -0.76032 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.78571 0.61428 moveto -0.78571 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.83651 0.61428 moveto -0.83651 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.8619 0.61428 moveto -0.8619 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.8873 0.61428 moveto -0.8873 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.9127 0.61428 moveto -0.9127 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.02381 0.61428 moveto -0.02381 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.96349 0.61428 moveto -0.96349 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.98889 0.61428 moveto -0.98889 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0 0.61803 moveto -1 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.01822 moveto -1 0.01822 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.10171 moveto -1 0.10171 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.1852 moveto -1 0.1852 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.26869 moveto -1 0.26869 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.35218 moveto -1 0.35218 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.43567 moveto -1 0.43567 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.51916 moveto -1 0.51916 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.60265 moveto -1 0.60265 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.03492 moveto -1 0.03492 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.05162 moveto -1 0.05162 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.06832 moveto -1 0.06832 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.08501 moveto -1 0.08501 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.11841 moveto -1 0.11841 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.13511 moveto -1 0.13511 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.15181 moveto -1 0.15181 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.1685 moveto -1 0.1685 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.2019 moveto -1 0.2019 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.2186 moveto -1 0.2186 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.2353 moveto -1 0.2353 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.25199 moveto -1 0.25199 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.28539 moveto -1 0.28539 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.30209 moveto -1 0.30209 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.31879 moveto -1 0.31879 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.33548 moveto -1 0.33548 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.36888 moveto -1 0.36888 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.38558 moveto -1 0.38558 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.40228 moveto -1 0.40228 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.41897 moveto -1 0.41897 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.45237 moveto -1 0.45237 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.46907 moveto -1 0.46907 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.48577 moveto -1 0.48577 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.50246 moveto -1 0.50246 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.53586 moveto -1 0.53586 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.55256 moveto -1 0.55256 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.56926 moveto -1 0.56926 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.58595 moveto -1 0.58595 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.00152 moveto -1 0.00152 lineto -stroke -grestore -gsave -0.002 setlinewidth -1 0 moveto -1 0.61803 lineto -stroke -grestore -grestore -gsave -gsave -0.002 setlinewidth -0 0.35218 moveto -1 0.35218 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.43016 0 moveto -0.43016 0.61803 lineto -stroke -grestore -grestore -0 0 moveto -1 0 lineto -1 0.61803 lineto -0 0.61803 lineto -closepath -clip -newpath -gsave -gsave -gsave -0.004 setlinewidth -0.02381 0.60332 moveto -0.06349 0.57879 lineto -0.10317 0.55427 lineto -0.14286 0.52974 lineto -0.18254 0.50522 lineto -0.22222 0.48069 lineto -0.2619 0.45617 lineto -0.30159 0.43164 lineto -0.34127 0.40712 lineto -0.38095 0.38259 lineto -0.42063 0.35807 lineto -0.46032 0.33354 lineto -0.5 0.30902 lineto -0.53968 0.28449 lineto -0.57937 0.25997 lineto -0.61905 0.23544 lineto -0.65873 0.21092 lineto -0.69841 0.18639 lineto -0.7381 0.16187 lineto -0.77778 0.13734 lineto -0.81746 0.11282 lineto -0.85714 0.08829 lineto -0.89683 0.06377 lineto -0.93651 0.03924 lineto -0.97619 0.01472 lineto -stroke -grestore -grestore -grestore -% End of Graphics -MathPictureEnd -end -showpage diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v10.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v10.gif deleted file mode 100755 index c0d90dde7..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v10.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v11.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v11.eps deleted file mode 100755 index 0c15beb2f..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v11.eps +++ /dev/null @@ -1,2209 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 72.0 242.0 540.0 550.0 -%%Creator: Mathematica -%%CreationDate: Mon Aug 30 10:29:55 CDT 1993 -%%EndComments -/Mathdict 100 dict def -Mathdict begin -/Mlmarg 1.0 72 mul def -/Mrmarg 1.0 72 mul def -/Mbmarg 1.0 72 mul def -/Mtmarg 1.0 72 mul def -/Mwidth 8.5 72 mul def -/Mheight 11 72 mul def -/Mtransform { } bind def -/Mnodistort true def -/Mfixwid false def -/Mfixdash false def -/Mrot 0 def -/Mpstart { -MathPictureStart -} bind def -/Mpend { -MathPictureEnd -} bind def -/Mscale { -0 1 0 1 -5 -1 roll -MathScale -} bind def -/ISOLatin1Encoding dup where -{ pop pop } -{ -[ -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright -/parenleft /parenright /asterisk /plus /comma /minus /period /slash -/zero /one /two /three /four /five /six /seven -/eight /nine /colon /semicolon /less /equal /greater /question -/at /A /B /C /D /E /F /G -/H /I /J /K /L /M /N /O -/P /Q /R /S /T /U /V /W -/X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore -/quoteleft /a /b /c /d /e /f /g -/h /i /j /k /l /m /n /o -/p /q /r /s /t /u /v /w -/x /y /z /braceleft /bar /braceright /asciitilde /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent -/dieresis /.notdef /ring /cedilla /.notdef /hungarumlaut /ogonek /caron -/space /exclamdown /cent /sterling /currency /yen /brokenbar /section -/dieresis /copyright /ordfeminine /guillemotleft -/logicalnot /hyphen /registered /macron -/degree /plusminus /twosuperior /threesuperior -/acute /mu /paragraph /periodcentered -/cedilla /onesuperior /ordmasculine /guillemotright -/onequarter /onehalf /threequarters /questiondown -/Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla -/Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis -/Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply -/Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls -/agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla -/egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis -/eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide -/oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis -] def -} ifelse -/MFontDict 50 dict def -/MStrCat -{ -exch -dup length -2 index length add -string -dup 3 1 roll -copy -length -exch dup -4 2 roll exch -putinterval -} def -/MCreateEncoding -{ -1 index -255 string cvs -(-) MStrCat -1 index MStrCat -cvn exch -(Encoding) MStrCat -cvn dup where -{ -exch get -} -{ -pop -StandardEncoding -} ifelse -3 1 roll -dup MFontDict exch known not -{ -1 index findfont -dup length dict -begin -{1 index /FID ne -{def} -{pop pop} -ifelse} forall -/Encoding 3 index -def -currentdict -end -1 index exch definefont pop -MFontDict 1 index -null put -} -if -exch pop -exch pop -} def -/ISOLatin1 { (ISOLatin1) MCreateEncoding } def -/ISO8859 { (ISOLatin1) MCreateEncoding } def -/Mcopyfont { -dup -maxlength -dict -exch -{ -1 index -/FID -eq -{ -pop pop -} -{ -2 index -3 1 roll -put -} -ifelse -} -forall -} def -/Plain /Courier findfont Mcopyfont definefont pop -/Bold /Courier-Bold findfont Mcopyfont definefont pop -/Italic /Courier-Oblique findfont Mcopyfont definefont pop -/MathPictureStart { -gsave -Mtransform -Mlmarg -Mbmarg -translate -/Mtmatrix -matrix currentmatrix -def -/Mgmatrix -matrix currentmatrix -def -} bind def -/MathPictureEnd { -grestore -} bind def -/MathSubStart { -Momatrix -Mgmatrix Mtmatrix -Mlmarg Mrmarg -Mbmarg Mtmarg -Mwidth Mheight -11 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -Mgmatrix setmatrix -13 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -2 copy translate -/Mtmatrix matrix currentmatrix def -/Mlmarg 0 def -/Mrmarg 0 def -/Mbmarg 0 def -/Mtmarg 0 def -3 -1 roll -exch sub -/Mheight exch def -sub -/Mwidth exch def -} bind def -/MathSubEnd { -/Mheight exch def -/Mwidth exch def -/Mtmarg exch def -/Mbmarg exch def -/Mrmarg exch def -/Mlmarg exch def -/Mtmatrix exch def -dup setmatrix -/Mgmatrix exch def -/Momatrix exch def -} bind def -/Mdot { -moveto -0 0 rlineto -stroke -} bind def -/Mtetra { -moveto -lineto -lineto -lineto -fill -} bind def -/Metetra { -moveto -lineto -lineto -lineto -closepath -gsave -fill -grestore -0 setgray -stroke -} bind def -/Mistroke { -flattenpath -0 0 0 -{ -4 2 roll -pop pop -} -{ -4 -1 roll -2 index -sub dup mul -4 -1 roll -2 index -sub dup mul -add sqrt -4 -1 roll -add -3 1 roll -} -{ -stop -} -{ -stop -} -pathforall -pop pop -currentpoint -stroke -moveto -currentdash -3 -1 roll -add -setdash -} bind def -/Mfstroke { -stroke -currentdash -pop 0 -setdash -} bind def -/Mrotsboxa { -gsave -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -grestore -Msboxa -3 -1 roll -/Mtmatrix -exch def -/Mrot -0 def -} bind def -/Msboxa { -newpath -5 -1 roll -Mvboxa -pop -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Msboxa1 -5 -3 roll -Msboxa1 -Mboxrot -[ -7 -2 roll -2 copy -[ -3 1 roll -10 -1 roll -9 -1 roll -] -6 1 roll -5 -2 roll -] -} bind def -/Msboxa1 { -sub -2 div -dup -2 index -1 add -mul -3 -1 roll --1 add -3 -1 roll -mul -} bind def -/Mvboxa { -Mfixwid -{ -Mvboxa1 -} -{ -dup -Mwidthcal -0 exch -{ -add -} -forall -exch -Mvboxa1 -4 index -7 -1 roll -add -4 -1 roll -pop -3 1 roll -} -ifelse -} bind def -/Mvboxa1 { -gsave -newpath -[ true -3 -1 roll -{ -Mbbox -5 -1 roll -{ -0 -5 1 roll -} -{ -7 -1 roll -exch sub -(m) stringwidth pop -.3 mul -sub -7 1 roll -6 -1 roll -4 -1 roll -Mmin -3 -1 roll -5 index -add -5 -1 roll -4 -1 roll -Mmax -4 -1 roll -} -ifelse -false -} -forall -{ stop } if -counttomark -1 add -4 roll -] -grestore -} bind def -/Mbbox { -1 dict begin -0 0 moveto -/temp (T) def -{ gsave -currentpoint newpath moveto -temp 0 3 -1 roll put temp -false charpath flattenpath currentpoint -pathbbox -grestore moveto lineto moveto} forall -pathbbox -newpath -end -} bind def -/Mmin { -2 copy -gt -{ exch } if -pop -} bind def -/Mmax { -2 copy -lt -{ exch } if -pop -} bind def -/Mrotshowa { -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -Mgmatrix setmatrix -Mshowa -/Mtmatrix -exch def -/Mrot 0 def -} bind def -/Mshowa { -4 -2 roll -moveto -2 index -Mtmatrix setmatrix -Mvboxa -7 1 roll -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Mshowa1 -4 1 roll -Mshowa1 -rmoveto -currentpoint -Mfixwid -{ -Mshowax -} -{ -Mshoway -} -ifelse -pop pop pop pop -Mgmatrix setmatrix -} bind def -/Mshowax { -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -Mfixdash -{ -Mfixdashp -} -if -show -} for -} bind def -/Mfixdashp { -dup -length -1 -gt -1 index -true exch -{ -45 -eq -and -} forall -and -{ -gsave -(--) -stringwidth pop -(-) -stringwidth pop -sub -2 div -0 rmoveto -dup -length -1 sub -{ -(-) -show -} -repeat -grestore -} -if -} bind def -/Mshoway { -3 index -Mwidthcal -5 1 roll -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -[ -6 index -aload -length -2 add --1 roll -{ -pop -Strform -stringwidth -pop -neg -exch -add -0 rmoveto -} -exch -kshow -cleartomark -} for -pop -} bind def -/Mwidthcal { -[ -exch -{ -Mwidthcal1 -} -forall -] -[ -exch -dup -Maxlen --1 add -0 1 -3 -1 roll -{ -[ -exch -2 index -{ -1 index -Mget -exch -} -forall -pop -Maxget -exch -} -for -pop -] -Mreva -} bind def -/Mreva { -[ -exch -aload -length --1 1 -{1 roll} -for -] -} bind def -/Mget { -1 index -length --1 add -1 index -ge -{ -get -} -{ -pop pop -0 -} -ifelse -} bind def -/Maxlen { -[ -exch -{ -length -} -forall -Maxget -} bind def -/Maxget { -counttomark --1 add -1 1 -3 -1 roll -{ -pop -Mmax -} -for -exch -pop -} bind def -/Mwidthcal1 { -[ -exch -{ -Strform -stringwidth -pop -} -forall -] -} bind def -/Strform { -/tem (x) def -tem 0 -3 -1 roll -put -tem -} bind def -/Mshowa1 { -2 copy -add -4 1 roll -sub -mul -sub --2 div -} bind def -/MathScale { -Mwidth -Mlmarg Mrmarg add -sub -Mheight -Mbmarg Mtmarg add -sub -0 0 moveto -1 index 0 -lineto -2 copy -lineto -0 1 index -lineto -clip newpath -Mlp -translate -dup -/Mathabs -exch def -scale -/yscale exch def -/ybias exch def -/xscale exch def -/xbias exch def -/Momatrix -xscale yscale matrix scale -xbias ybias matrix translate -matrix concatmatrix def -/Mgmatrix -matrix currentmatrix -def -} bind def -/Mlp { -3 copy -Mlpfirst -{ -Mnodistort -{ -Mmin -dup -} if -4 index -2 index -2 index -Mlprun -11 index -11 -1 roll -10 -4 roll -Mlp1 -8 index -9 -5 roll -Mlp1 -4 -1 roll -and -{ exit } if -3 -1 roll -pop pop -} loop -exch -3 1 roll -7 -3 roll -pop pop pop -} bind def -/Mlpfirst { -3 -1 roll -dup length -2 copy --2 add -get -aload -pop pop pop -4 -2 roll --1 add -get -aload -pop pop pop -6 -1 roll -3 -1 roll -5 -1 roll -sub -div -4 1 roll -exch sub -div -} bind def -/Mlprun { -2 copy -4 index -0 get -dup -4 1 roll -Mlprun1 -3 copy -8 -2 roll -9 -1 roll -{ -3 copy -Mlprun1 -3 copy -11 -3 roll -/gt Mlpminmax -8 3 roll -11 -3 roll -/lt Mlpminmax -8 3 roll -} forall -pop pop pop pop -3 1 roll -pop pop -aload pop -5 -1 roll -aload pop -exch -6 -1 roll -Mlprun2 -8 2 roll -4 -1 roll -Mlprun2 -6 2 roll -3 -1 roll -Mlprun2 -4 2 roll -exch -Mlprun2 -6 2 roll -} bind def -/Mlprun1 { -aload pop -exch -6 -1 roll -5 -1 roll -mul add -4 -2 roll -mul -3 -1 roll -add -} bind def -/Mlprun2 { -2 copy -add 2 div -3 1 roll -exch sub -} bind def -/Mlpminmax { -cvx -2 index -6 index -2 index -exec -{ -7 -3 roll -4 -1 roll -} if -1 index -5 index -3 -1 roll -exec -{ -4 1 roll -pop -5 -1 roll -aload -pop pop -4 -1 roll -aload pop -[ -8 -2 roll -pop -5 -2 roll -pop -6 -2 roll -pop -5 -1 roll -] -4 1 roll -pop -} -{ -pop pop pop -} ifelse -} bind def -/Mlp1 { -5 index -3 index sub -5 index -2 index mul -1 index -le -1 index -0 le -or -dup -not -{ -1 index -3 index div -.99999 mul -8 -1 roll -pop -7 1 roll -} -if -8 -1 roll -2 div -7 -2 roll -pop sub -5 index -6 -3 roll -pop pop -mul sub -exch -} bind def -/intop 0 def -/inrht 0 def -/inflag 0 def -/outflag 0 def -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -/Minner { -outflag -1 -eq -{ -/outflag 0 def -/intop 0 def -/inrht 0 def -} if -5 index -gsave -Mtmatrix setmatrix -Mvboxa pop -grestore -3 -1 roll -pop -dup -intop -gt -{ -/intop -exch def -} -{ pop } -ifelse -dup -inrht -gt -{ -/inrht -exch def -} -{ pop } -ifelse -pop -/inflag -1 def -} bind def -/Mouter { -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -inflag -1 eq -{ -dup -0 lt -{ -dup -intop -mul -neg -/yadtop -exch def -} if -dup -0 gt -{ -dup -intop -mul -/yadbot -exch def -} -if -pop -dup -0 lt -{ -dup -inrht -mul -neg -/xadrht -exch def -} if -dup -0 gt -{ -dup -inrht -mul -/xadlft -exch def -} if -pop -/outflag 1 def -} -{ pop pop} -ifelse -/inflag 0 def -/inrht 0 def -/intop 0 def -} bind def -/Mboxout { -outflag -1 -eq -{ -4 -1 -roll -xadlft -leadjust -add -sub -4 1 roll -3 -1 -roll -yadbot -leadjust -add -sub -3 1 -roll -exch -xadrht -leadjust -add -add -exch -yadtop -leadjust -add -add -/outflag 0 def -/xadlft 0 def -/yadbot 0 def -/xadrht 0 def -/yadtop 0 def -} if -} bind def -/leadjust { -(m) stringwidth pop -.5 mul -} bind def -/Mrotcheck { -dup -90 -eq -{ -yadbot -/yadbot -xadrht -def -/xadrht -yadtop -def -/yadtop -xadlft -def -/xadlft -exch -def -} -if -dup -cos -1 index -sin -Checkaux -dup -cos -1 index -sin neg -exch -Checkaux -3 1 roll -pop pop -} bind def -/Checkaux { -4 index -exch -4 index -mul -3 1 roll -mul add -4 1 roll -} bind def -/Mboxrot { -Mrot -90 eq -{ -brotaux -4 2 -roll -} -if -Mrot -180 eq -{ -4 2 -roll -brotaux -4 2 -roll -brotaux -} -if -Mrot -270 eq -{ -4 2 -roll -brotaux -} -if -} bind def -/brotaux { -neg -exch -neg -} bind def -/Mabswid { -Mathabs -div -setlinewidth -} bind def -/Mabsdash { -exch -Mathabs -[ -3 1 roll -exch -{ -exch -dup -3 -1 roll -exch -div -exch -} -forall -pop ] -exch -setdash -} bind def -/MBeginOrig { Momatrix concat} bind def -/MEndOrig { Mgmatrix setmatrix} bind def -/colorimage where -{ pop } -{ -/colorimage { -3 1 roll -pop pop -5 -1 roll -mul -4 1 roll -{ -currentfile -1 index -readhexstring -pop } -image -} bind def -} ifelse -/sampledsound where -{ pop} -{ /sampledsound { -exch -pop -exch -5 1 roll -mul -4 idiv -mul -2 idiv -exch pop -exch -/Mtempproc exch def -{ Mtempproc pop} -repeat -} bind def -} ifelse -/setcmykcolor where -{ pop} -{ /setcmykcolor { -4 1 -roll -[ -4 1 -roll -] -{ -1 index -sub -1 -sub neg -dup -0 -lt -{ -pop -0 -} -if -dup -1 -gt -{ -pop -1 -} -if -exch -} forall -pop -setrgbcolor -} bind def -} ifelse -%%AspectRatio: 0.61803 -MathPictureStart -/Courier-Oblique findfont 17 scalefont setfont -% Scaling calculations -0.398517 0.156128 0.371737 0.01892 [ -[(-2)] 0.08626 0 0 2 0 Minner Mrotsboxa -[(-1)] 0.24239 0 0 2 0 Minner Mrotsboxa -[(0)] 0.39852 0 0 2 0 Minner Mrotsboxa -[(1)] 0.55464 0 0 2 0 Minner Mrotsboxa -[(2)] 0.71077 0 0 2 0 Minner Mrotsboxa -[(3)] 0.8669 0 0 2 0 Minner Mrotsboxa -[(x)] 0.5 0 0 2 0 0 -1 Mouter Mrotsboxa -[(-15)] -0.0125 0.08794 1 0 0 Minner Mrotsboxa -[(-10)] -0.0125 0.18254 1 0 0 Minner Mrotsboxa -[(-5)] -0.0125 0.27714 1 0 0 Minner Mrotsboxa -[(0)] -0.0125 0.37174 1 0 0 Minner Mrotsboxa -[(5)] -0.0125 0.46634 1 0 0 Minner Mrotsboxa -[(10)] -0.0125 0.56094 1 0 0 Minner Mrotsboxa -[(Y)] -0.0125 0.30902 1 0 90 -1 0 Mouter Mrotsboxa -[ -0.001 -0.001 0 0 ] -[ 1.001 0.61903 0 0 ] -] MathScale -% Start of Graphics -1 setlinecap -1 setlinejoin -newpath -%%Object: Graphics -[ ] 0 setdash -0 setgray -gsave -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.08626 0 moveto -0.08626 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.24239 0 moveto -0.24239 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.39852 0 moveto -0.39852 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.55464 0 moveto -0.55464 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.71077 0 moveto -0.71077 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.8669 0 moveto -0.8669 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.08794 moveto -1 0.08794 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.18254 moveto -1 0.18254 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.27714 moveto -1 0.27714 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.37174 moveto -1 0.37174 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.46634 moveto -1 0.46634 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.56094 moveto -1 0.56094 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.08626 0 moveto -0.08626 0.00625 lineto -stroke -grestore -[(-2)] 0.08626 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.24239 0 moveto -0.24239 0.00625 lineto -stroke -grestore -[(-1)] 0.24239 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.39852 0 moveto -0.39852 0.00625 lineto -stroke -grestore -[(0)] 0.39852 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.55464 0 moveto -0.55464 0.00625 lineto -stroke -grestore -[(1)] 0.55464 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.71077 0 moveto -0.71077 0.00625 lineto -stroke -grestore -[(2)] 0.71077 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.8669 0 moveto -0.8669 0.00625 lineto -stroke -grestore -[(3)] 0.8669 0 0 2 0 Minner Mrotshowa -gsave -0.001 setlinewidth -0.11749 0 moveto -0.11749 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.14871 0 moveto -0.14871 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.17994 0 moveto -0.17994 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.21116 0 moveto -0.21116 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.27361 0 moveto -0.27361 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.30484 0 moveto -0.30484 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.33607 0 moveto -0.33607 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.36729 0 moveto -0.36729 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.42974 0 moveto -0.42974 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.46097 0 moveto -0.46097 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.49219 0 moveto -0.49219 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.52342 0 moveto -0.52342 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.58587 0 moveto -0.58587 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.6171 0 moveto -0.6171 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.64832 0 moveto -0.64832 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.67955 0 moveto -0.67955 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.742 0 moveto -0.742 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.77322 0 moveto -0.77322 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.80445 0 moveto -0.80445 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.83568 0 moveto -0.83568 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.05504 0 moveto -0.05504 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.02381 0 moveto -0.02381 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.89813 0 moveto -0.89813 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.92935 0 moveto -0.92935 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.96058 0 moveto -0.96058 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.9918 0 moveto -0.9918 0.00375 lineto -stroke -grestore -[(x)] 0.5 0 0 2 0 0 -1 Mouter Mrotshowa -gsave -0.002 setlinewidth -0 0 moveto -1 0 lineto -stroke -grestore -gsave -0.002 setlinewidth -0 0.08794 moveto -0.00625 0.08794 lineto -stroke -grestore -[(-15)] -0.0125 0.08794 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.18254 moveto -0.00625 0.18254 lineto -stroke -grestore -[(-10)] -0.0125 0.18254 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.27714 moveto -0.00625 0.27714 lineto -stroke -grestore -[(-5)] -0.0125 0.27714 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.37174 moveto -0.00625 0.37174 lineto -stroke -grestore -[(0)] -0.0125 0.37174 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.46634 moveto -0.00625 0.46634 lineto -stroke -grestore -[(5)] -0.0125 0.46634 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.56094 moveto -0.00625 0.56094 lineto -stroke -grestore -[(10)] -0.0125 0.56094 1 0 0 Minner Mrotshowa -gsave -0.001 setlinewidth -0 0.10686 moveto -0.00375 0.10686 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.12578 moveto -0.00375 0.12578 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.1447 moveto -0.00375 0.1447 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.16362 moveto -0.00375 0.16362 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.20146 moveto -0.00375 0.20146 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.22038 moveto -0.00375 0.22038 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.2393 moveto -0.00375 0.2393 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.25822 moveto -0.00375 0.25822 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.29606 moveto -0.00375 0.29606 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.31498 moveto -0.00375 0.31498 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.3339 moveto -0.00375 0.3339 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.35282 moveto -0.00375 0.35282 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.39066 moveto -0.00375 0.39066 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.40958 moveto -0.00375 0.40958 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.4285 moveto -0.00375 0.4285 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.44742 moveto -0.00375 0.44742 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.48526 moveto -0.00375 0.48526 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.50418 moveto -0.00375 0.50418 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.5231 moveto -0.00375 0.5231 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.54202 moveto -0.00375 0.54202 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.06902 moveto -0.00375 0.06902 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.0501 moveto -0.00375 0.0501 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.03118 moveto -0.00375 0.03118 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.01226 moveto -0.00375 0.01226 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.57986 moveto -0.00375 0.57986 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.59878 moveto -0.00375 0.59878 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.6177 moveto -0.00375 0.6177 lineto -stroke -grestore -[(Y)] -0.0125 0.30902 1 0 90 -1 0 Mouter Mrotshowa -gsave -0.002 setlinewidth -0 0 moveto -0 0.61803 lineto -stroke -grestore -grestore -gsave -gsave -0.002 setlinewidth -0.08626 0.61178 moveto -0.08626 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.24239 0.61178 moveto -0.24239 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.39852 0.61178 moveto -0.39852 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.55464 0.61178 moveto -0.55464 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.71077 0.61178 moveto -0.71077 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.8669 0.61178 moveto -0.8669 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.11749 0.61428 moveto -0.11749 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.14871 0.61428 moveto -0.14871 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.17994 0.61428 moveto -0.17994 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.21116 0.61428 moveto -0.21116 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.27361 0.61428 moveto -0.27361 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.30484 0.61428 moveto -0.30484 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.33607 0.61428 moveto -0.33607 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.36729 0.61428 moveto -0.36729 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.42974 0.61428 moveto -0.42974 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.46097 0.61428 moveto -0.46097 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.49219 0.61428 moveto -0.49219 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.52342 0.61428 moveto -0.52342 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.58587 0.61428 moveto -0.58587 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.6171 0.61428 moveto -0.6171 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.64832 0.61428 moveto -0.64832 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.67955 0.61428 moveto -0.67955 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.742 0.61428 moveto -0.742 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.77322 0.61428 moveto -0.77322 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.80445 0.61428 moveto -0.80445 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.83568 0.61428 moveto -0.83568 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.05504 0.61428 moveto -0.05504 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.02381 0.61428 moveto -0.02381 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.89813 0.61428 moveto -0.89813 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.92935 0.61428 moveto -0.92935 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.96058 0.61428 moveto -0.96058 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.9918 0.61428 moveto -0.9918 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0 0.61803 moveto -1 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.08794 moveto -1 0.08794 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.18254 moveto -1 0.18254 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.27714 moveto -1 0.27714 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.37174 moveto -1 0.37174 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.46634 moveto -1 0.46634 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.56094 moveto -1 0.56094 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.10686 moveto -1 0.10686 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.12578 moveto -1 0.12578 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.1447 moveto -1 0.1447 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.16362 moveto -1 0.16362 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.20146 moveto -1 0.20146 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.22038 moveto -1 0.22038 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.2393 moveto -1 0.2393 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.25822 moveto -1 0.25822 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.29606 moveto -1 0.29606 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.31498 moveto -1 0.31498 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.3339 moveto -1 0.3339 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.35282 moveto -1 0.35282 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.39066 moveto -1 0.39066 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.40958 moveto -1 0.40958 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.4285 moveto -1 0.4285 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.44742 moveto -1 0.44742 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.48526 moveto -1 0.48526 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.50418 moveto -1 0.50418 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.5231 moveto -1 0.5231 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.54202 moveto -1 0.54202 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.06902 moveto -1 0.06902 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.0501 moveto -1 0.0501 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.03118 moveto -1 0.03118 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.01226 moveto -1 0.01226 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.57986 moveto -1 0.57986 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.59878 moveto -1 0.59878 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.6177 moveto -1 0.6177 lineto -stroke -grestore -gsave -0.002 setlinewidth -1 0 moveto -1 0.61803 lineto -stroke -grestore -grestore -gsave -gsave -0.002 setlinewidth -0 0.37174 moveto -1 0.37174 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.39852 0 moveto -0.39852 0.61803 lineto -stroke -grestore -grestore -0 0 moveto -1 0 lineto -1 0.61803 lineto -0 0.61803 lineto -closepath -clip -newpath -gsave -gsave -gsave -0.004 setlinewidth -0.02381 0.60332 moveto -0.06349 0.57879 lineto -0.10317 0.55427 lineto -0.14286 0.52974 lineto -0.18254 0.50522 lineto -0.22222 0.48069 lineto -0.2619 0.45617 lineto -0.30159 0.43164 lineto -0.34127 0.40712 lineto -0.38095 0.38259 lineto -0.42063 0.35807 lineto -0.46032 0.33354 lineto -0.5 0.30902 lineto -0.53968 0.28449 lineto -0.57937 0.25997 lineto -0.61905 0.23544 lineto -0.65873 0.21092 lineto -0.69841 0.18639 lineto -0.7381 0.16187 lineto -0.77778 0.13734 lineto -0.81746 0.11282 lineto -0.85714 0.08829 lineto -0.89683 0.06377 lineto -0.93651 0.03924 lineto -0.97619 0.01472 lineto -stroke -grestore -grestore -grestore -% End of Graphics -MathPictureEnd -end -showpage diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v11.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v11.gif deleted file mode 100755 index 323b660bc..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v11.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v12.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v12.eps deleted file mode 100755 index 5c2fcbc83..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v12.eps +++ /dev/null @@ -1,2047 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 72.0 242.0 540.0 550.0 -%%Creator: Mathematica -%%CreationDate: Mon Aug 30 10:30:39 CDT 1993 -%%EndComments -/Mathdict 100 dict def -Mathdict begin -/Mlmarg 1.0 72 mul def -/Mrmarg 1.0 72 mul def -/Mbmarg 1.0 72 mul def -/Mtmarg 1.0 72 mul def -/Mwidth 8.5 72 mul def -/Mheight 11 72 mul def -/Mtransform { } bind def -/Mnodistort true def -/Mfixwid false def -/Mfixdash false def -/Mrot 0 def -/Mpstart { -MathPictureStart -} bind def -/Mpend { -MathPictureEnd -} bind def -/Mscale { -0 1 0 1 -5 -1 roll -MathScale -} bind def -/ISOLatin1Encoding dup where -{ pop pop } -{ -[ -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright -/parenleft /parenright /asterisk /plus /comma /minus /period /slash -/zero /one /two /three /four /five /six /seven -/eight /nine /colon /semicolon /less /equal /greater /question -/at /A /B /C /D /E /F /G -/H /I /J /K /L /M /N /O -/P /Q /R /S /T /U /V /W -/X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore -/quoteleft /a /b /c /d /e /f /g -/h /i /j /k /l /m /n /o -/p /q /r /s /t /u /v /w -/x /y /z /braceleft /bar /braceright /asciitilde /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent -/dieresis /.notdef /ring /cedilla /.notdef /hungarumlaut /ogonek /caron -/space /exclamdown /cent /sterling /currency /yen /brokenbar /section -/dieresis /copyright /ordfeminine /guillemotleft -/logicalnot /hyphen /registered /macron -/degree /plusminus /twosuperior /threesuperior -/acute /mu /paragraph /periodcentered -/cedilla /onesuperior /ordmasculine /guillemotright -/onequarter /onehalf /threequarters /questiondown -/Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla -/Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis -/Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply -/Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls -/agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla -/egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis -/eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide -/oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis -] def -} ifelse -/MFontDict 50 dict def -/MStrCat -{ -exch -dup length -2 index length add -string -dup 3 1 roll -copy -length -exch dup -4 2 roll exch -putinterval -} def -/MCreateEncoding -{ -1 index -255 string cvs -(-) MStrCat -1 index MStrCat -cvn exch -(Encoding) MStrCat -cvn dup where -{ -exch get -} -{ -pop -StandardEncoding -} ifelse -3 1 roll -dup MFontDict exch known not -{ -1 index findfont -dup length dict -begin -{1 index /FID ne -{def} -{pop pop} -ifelse} forall -/Encoding 3 index -def -currentdict -end -1 index exch definefont pop -MFontDict 1 index -null put -} -if -exch pop -exch pop -} def -/ISOLatin1 { (ISOLatin1) MCreateEncoding } def -/ISO8859 { (ISOLatin1) MCreateEncoding } def -/Mcopyfont { -dup -maxlength -dict -exch -{ -1 index -/FID -eq -{ -pop pop -} -{ -2 index -3 1 roll -put -} -ifelse -} -forall -} def -/Plain /Courier findfont Mcopyfont definefont pop -/Bold /Courier-Bold findfont Mcopyfont definefont pop -/Italic /Courier-Oblique findfont Mcopyfont definefont pop -/MathPictureStart { -gsave -Mtransform -Mlmarg -Mbmarg -translate -/Mtmatrix -matrix currentmatrix -def -/Mgmatrix -matrix currentmatrix -def -} bind def -/MathPictureEnd { -grestore -} bind def -/MathSubStart { -Momatrix -Mgmatrix Mtmatrix -Mlmarg Mrmarg -Mbmarg Mtmarg -Mwidth Mheight -11 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -Mgmatrix setmatrix -13 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -2 copy translate -/Mtmatrix matrix currentmatrix def -/Mlmarg 0 def -/Mrmarg 0 def -/Mbmarg 0 def -/Mtmarg 0 def -3 -1 roll -exch sub -/Mheight exch def -sub -/Mwidth exch def -} bind def -/MathSubEnd { -/Mheight exch def -/Mwidth exch def -/Mtmarg exch def -/Mbmarg exch def -/Mrmarg exch def -/Mlmarg exch def -/Mtmatrix exch def -dup setmatrix -/Mgmatrix exch def -/Momatrix exch def -} bind def -/Mdot { -moveto -0 0 rlineto -stroke -} bind def -/Mtetra { -moveto -lineto -lineto -lineto -fill -} bind def -/Metetra { -moveto -lineto -lineto -lineto -closepath -gsave -fill -grestore -0 setgray -stroke -} bind def -/Mistroke { -flattenpath -0 0 0 -{ -4 2 roll -pop pop -} -{ -4 -1 roll -2 index -sub dup mul -4 -1 roll -2 index -sub dup mul -add sqrt -4 -1 roll -add -3 1 roll -} -{ -stop -} -{ -stop -} -pathforall -pop pop -currentpoint -stroke -moveto -currentdash -3 -1 roll -add -setdash -} bind def -/Mfstroke { -stroke -currentdash -pop 0 -setdash -} bind def -/Mrotsboxa { -gsave -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -grestore -Msboxa -3 -1 roll -/Mtmatrix -exch def -/Mrot -0 def -} bind def -/Msboxa { -newpath -5 -1 roll -Mvboxa -pop -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Msboxa1 -5 -3 roll -Msboxa1 -Mboxrot -[ -7 -2 roll -2 copy -[ -3 1 roll -10 -1 roll -9 -1 roll -] -6 1 roll -5 -2 roll -] -} bind def -/Msboxa1 { -sub -2 div -dup -2 index -1 add -mul -3 -1 roll --1 add -3 -1 roll -mul -} bind def -/Mvboxa { -Mfixwid -{ -Mvboxa1 -} -{ -dup -Mwidthcal -0 exch -{ -add -} -forall -exch -Mvboxa1 -4 index -7 -1 roll -add -4 -1 roll -pop -3 1 roll -} -ifelse -} bind def -/Mvboxa1 { -gsave -newpath -[ true -3 -1 roll -{ -Mbbox -5 -1 roll -{ -0 -5 1 roll -} -{ -7 -1 roll -exch sub -(m) stringwidth pop -.3 mul -sub -7 1 roll -6 -1 roll -4 -1 roll -Mmin -3 -1 roll -5 index -add -5 -1 roll -4 -1 roll -Mmax -4 -1 roll -} -ifelse -false -} -forall -{ stop } if -counttomark -1 add -4 roll -] -grestore -} bind def -/Mbbox { -1 dict begin -0 0 moveto -/temp (T) def -{ gsave -currentpoint newpath moveto -temp 0 3 -1 roll put temp -false charpath flattenpath currentpoint -pathbbox -grestore moveto lineto moveto} forall -pathbbox -newpath -end -} bind def -/Mmin { -2 copy -gt -{ exch } if -pop -} bind def -/Mmax { -2 copy -lt -{ exch } if -pop -} bind def -/Mrotshowa { -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -Mgmatrix setmatrix -Mshowa -/Mtmatrix -exch def -/Mrot 0 def -} bind def -/Mshowa { -4 -2 roll -moveto -2 index -Mtmatrix setmatrix -Mvboxa -7 1 roll -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Mshowa1 -4 1 roll -Mshowa1 -rmoveto -currentpoint -Mfixwid -{ -Mshowax -} -{ -Mshoway -} -ifelse -pop pop pop pop -Mgmatrix setmatrix -} bind def -/Mshowax { -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -Mfixdash -{ -Mfixdashp -} -if -show -} for -} bind def -/Mfixdashp { -dup -length -1 -gt -1 index -true exch -{ -45 -eq -and -} forall -and -{ -gsave -(--) -stringwidth pop -(-) -stringwidth pop -sub -2 div -0 rmoveto -dup -length -1 sub -{ -(-) -show -} -repeat -grestore -} -if -} bind def -/Mshoway { -3 index -Mwidthcal -5 1 roll -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -[ -6 index -aload -length -2 add --1 roll -{ -pop -Strform -stringwidth -pop -neg -exch -add -0 rmoveto -} -exch -kshow -cleartomark -} for -pop -} bind def -/Mwidthcal { -[ -exch -{ -Mwidthcal1 -} -forall -] -[ -exch -dup -Maxlen --1 add -0 1 -3 -1 roll -{ -[ -exch -2 index -{ -1 index -Mget -exch -} -forall -pop -Maxget -exch -} -for -pop -] -Mreva -} bind def -/Mreva { -[ -exch -aload -length --1 1 -{1 roll} -for -] -} bind def -/Mget { -1 index -length --1 add -1 index -ge -{ -get -} -{ -pop pop -0 -} -ifelse -} bind def -/Maxlen { -[ -exch -{ -length -} -forall -Maxget -} bind def -/Maxget { -counttomark --1 add -1 1 -3 -1 roll -{ -pop -Mmax -} -for -exch -pop -} bind def -/Mwidthcal1 { -[ -exch -{ -Strform -stringwidth -pop -} -forall -] -} bind def -/Strform { -/tem (x) def -tem 0 -3 -1 roll -put -tem -} bind def -/Mshowa1 { -2 copy -add -4 1 roll -sub -mul -sub --2 div -} bind def -/MathScale { -Mwidth -Mlmarg Mrmarg add -sub -Mheight -Mbmarg Mtmarg add -sub -0 0 moveto -1 index 0 -lineto -2 copy -lineto -0 1 index -lineto -clip newpath -Mlp -translate -dup -/Mathabs -exch def -scale -/yscale exch def -/ybias exch def -/xscale exch def -/xbias exch def -/Momatrix -xscale yscale matrix scale -xbias ybias matrix translate -matrix concatmatrix def -/Mgmatrix -matrix currentmatrix -def -} bind def -/Mlp { -3 copy -Mlpfirst -{ -Mnodistort -{ -Mmin -dup -} if -4 index -2 index -2 index -Mlprun -11 index -11 -1 roll -10 -4 roll -Mlp1 -8 index -9 -5 roll -Mlp1 -4 -1 roll -and -{ exit } if -3 -1 roll -pop pop -} loop -exch -3 1 roll -7 -3 roll -pop pop pop -} bind def -/Mlpfirst { -3 -1 roll -dup length -2 copy --2 add -get -aload -pop pop pop -4 -2 roll --1 add -get -aload -pop pop pop -6 -1 roll -3 -1 roll -5 -1 roll -sub -div -4 1 roll -exch sub -div -} bind def -/Mlprun { -2 copy -4 index -0 get -dup -4 1 roll -Mlprun1 -3 copy -8 -2 roll -9 -1 roll -{ -3 copy -Mlprun1 -3 copy -11 -3 roll -/gt Mlpminmax -8 3 roll -11 -3 roll -/lt Mlpminmax -8 3 roll -} forall -pop pop pop pop -3 1 roll -pop pop -aload pop -5 -1 roll -aload pop -exch -6 -1 roll -Mlprun2 -8 2 roll -4 -1 roll -Mlprun2 -6 2 roll -3 -1 roll -Mlprun2 -4 2 roll -exch -Mlprun2 -6 2 roll -} bind def -/Mlprun1 { -aload pop -exch -6 -1 roll -5 -1 roll -mul add -4 -2 roll -mul -3 -1 roll -add -} bind def -/Mlprun2 { -2 copy -add 2 div -3 1 roll -exch sub -} bind def -/Mlpminmax { -cvx -2 index -6 index -2 index -exec -{ -7 -3 roll -4 -1 roll -} if -1 index -5 index -3 -1 roll -exec -{ -4 1 roll -pop -5 -1 roll -aload -pop pop -4 -1 roll -aload pop -[ -8 -2 roll -pop -5 -2 roll -pop -6 -2 roll -pop -5 -1 roll -] -4 1 roll -pop -} -{ -pop pop pop -} ifelse -} bind def -/Mlp1 { -5 index -3 index sub -5 index -2 index mul -1 index -le -1 index -0 le -or -dup -not -{ -1 index -3 index div -.99999 mul -8 -1 roll -pop -7 1 roll -} -if -8 -1 roll -2 div -7 -2 roll -pop sub -5 index -6 -3 roll -pop pop -mul sub -exch -} bind def -/intop 0 def -/inrht 0 def -/inflag 0 def -/outflag 0 def -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -/Minner { -outflag -1 -eq -{ -/outflag 0 def -/intop 0 def -/inrht 0 def -} if -5 index -gsave -Mtmatrix setmatrix -Mvboxa pop -grestore -3 -1 roll -pop -dup -intop -gt -{ -/intop -exch def -} -{ pop } -ifelse -dup -inrht -gt -{ -/inrht -exch def -} -{ pop } -ifelse -pop -/inflag -1 def -} bind def -/Mouter { -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -inflag -1 eq -{ -dup -0 lt -{ -dup -intop -mul -neg -/yadtop -exch def -} if -dup -0 gt -{ -dup -intop -mul -/yadbot -exch def -} -if -pop -dup -0 lt -{ -dup -inrht -mul -neg -/xadrht -exch def -} if -dup -0 gt -{ -dup -inrht -mul -/xadlft -exch def -} if -pop -/outflag 1 def -} -{ pop pop} -ifelse -/inflag 0 def -/inrht 0 def -/intop 0 def -} bind def -/Mboxout { -outflag -1 -eq -{ -4 -1 -roll -xadlft -leadjust -add -sub -4 1 roll -3 -1 -roll -yadbot -leadjust -add -sub -3 1 -roll -exch -xadrht -leadjust -add -add -exch -yadtop -leadjust -add -add -/outflag 0 def -/xadlft 0 def -/yadbot 0 def -/xadrht 0 def -/yadtop 0 def -} if -} bind def -/leadjust { -(m) stringwidth pop -.5 mul -} bind def -/Mrotcheck { -dup -90 -eq -{ -yadbot -/yadbot -xadrht -def -/xadrht -yadtop -def -/yadtop -xadlft -def -/xadlft -exch -def -} -if -dup -cos -1 index -sin -Checkaux -dup -cos -1 index -sin neg -exch -Checkaux -3 1 roll -pop pop -} bind def -/Checkaux { -4 index -exch -4 index -mul -3 1 roll -mul add -4 1 roll -} bind def -/Mboxrot { -Mrot -90 eq -{ -brotaux -4 2 -roll -} -if -Mrot -180 eq -{ -4 2 -roll -brotaux -4 2 -roll -brotaux -} -if -Mrot -270 eq -{ -4 2 -roll -brotaux -} -if -} bind def -/brotaux { -neg -exch -neg -} bind def -/Mabswid { -Mathabs -div -setlinewidth -} bind def -/Mabsdash { -exch -Mathabs -[ -3 1 roll -exch -{ -exch -dup -3 -1 roll -exch -div -exch -} -forall -pop ] -exch -setdash -} bind def -/MBeginOrig { Momatrix concat} bind def -/MEndOrig { Mgmatrix setmatrix} bind def -/colorimage where -{ pop } -{ -/colorimage { -3 1 roll -pop pop -5 -1 roll -mul -4 1 roll -{ -currentfile -1 index -readhexstring -pop } -image -} bind def -} ifelse -/sampledsound where -{ pop} -{ /sampledsound { -exch -pop -exch -5 1 roll -mul -4 idiv -mul -2 idiv -exch pop -exch -/Mtempproc exch def -{ Mtempproc pop} -repeat -} bind def -} ifelse -/setcmykcolor where -{ pop} -{ /setcmykcolor { -4 1 -roll -[ -4 1 -roll -] -{ -1 index -sub -1 -sub neg -dup -0 -lt -{ -pop -0 -} -if -dup -1 -gt -{ -pop -1 -} -if -exch -} forall -pop -setrgbcolor -} bind def -} ifelse -%%AspectRatio: 0.61803 -MathPictureStart -/Courier-Oblique findfont 17 scalefont setfont -% Scaling calculations -0.398517 0.156128 0.371737 0.01462 [ -[(-2)] 0.08626 0 0 2 0 Minner Mrotsboxa -[(-1)] 0.24239 0 0 2 0 Minner Mrotsboxa -[(0)] 0.39852 0 0 2 0 Minner Mrotsboxa -[(1)] 0.55464 0 0 2 0 Minner Mrotsboxa -[(2)] 0.71077 0 0 2 0 Minner Mrotsboxa -[(3)] 0.8669 0 0 2 0 Minner Mrotsboxa -[(x)] 0.5 0 0 2 0 0 -1 Mouter Mrotsboxa -[(-20)] -0.0125 0.07934 1 0 0 Minner Mrotsboxa -[(-10)] -0.0125 0.22554 1 0 0 Minner Mrotsboxa -[(0)] -0.0125 0.37174 1 0 0 Minner Mrotsboxa -[(10)] -0.0125 0.51794 1 0 0 Minner Mrotsboxa -[(Y)] -0.0125 0.30902 1 0 90 -1 0 Mouter Mrotsboxa -[ -0.001 -0.001 0 0 ] -[ 1.001 0.61903 0 0 ] -] MathScale -% Start of Graphics -1 setlinecap -1 setlinejoin -newpath -%%Object: Graphics -[ ] 0 setdash -0 setgray -gsave -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.08626 0 moveto -0.08626 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.24239 0 moveto -0.24239 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.39852 0 moveto -0.39852 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.55464 0 moveto -0.55464 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.71077 0 moveto -0.71077 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.8669 0 moveto -0.8669 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.07934 moveto -1 0.07934 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.22554 moveto -1 0.22554 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.37174 moveto -1 0.37174 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.51794 moveto -1 0.51794 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.08626 0 moveto -0.08626 0.00625 lineto -stroke -grestore -[(-2)] 0.08626 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.24239 0 moveto -0.24239 0.00625 lineto -stroke -grestore -[(-1)] 0.24239 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.39852 0 moveto -0.39852 0.00625 lineto -stroke -grestore -[(0)] 0.39852 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.55464 0 moveto -0.55464 0.00625 lineto -stroke -grestore -[(1)] 0.55464 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.71077 0 moveto -0.71077 0.00625 lineto -stroke -grestore -[(2)] 0.71077 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.8669 0 moveto -0.8669 0.00625 lineto -stroke -grestore -[(3)] 0.8669 0 0 2 0 Minner Mrotshowa -gsave -0.001 setlinewidth -0.11749 0 moveto -0.11749 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.14871 0 moveto -0.14871 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.17994 0 moveto -0.17994 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.21116 0 moveto -0.21116 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.27361 0 moveto -0.27361 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.30484 0 moveto -0.30484 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.33607 0 moveto -0.33607 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.36729 0 moveto -0.36729 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.42974 0 moveto -0.42974 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.46097 0 moveto -0.46097 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.49219 0 moveto -0.49219 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.52342 0 moveto -0.52342 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.58587 0 moveto -0.58587 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.6171 0 moveto -0.6171 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.64832 0 moveto -0.64832 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.67955 0 moveto -0.67955 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.742 0 moveto -0.742 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.77322 0 moveto -0.77322 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.80445 0 moveto -0.80445 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.83568 0 moveto -0.83568 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.05504 0 moveto -0.05504 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.02381 0 moveto -0.02381 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.89813 0 moveto -0.89813 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.92935 0 moveto -0.92935 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.96058 0 moveto -0.96058 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.9918 0 moveto -0.9918 0.00375 lineto -stroke -grestore -[(x)] 0.5 0 0 2 0 0 -1 Mouter Mrotshowa -gsave -0.002 setlinewidth -0 0 moveto -1 0 lineto -stroke -grestore -gsave -0.002 setlinewidth -0 0.07934 moveto -0.00625 0.07934 lineto -stroke -grestore -[(-20)] -0.0125 0.07934 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.22554 moveto -0.00625 0.22554 lineto -stroke -grestore -[(-10)] -0.0125 0.22554 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.37174 moveto -0.00625 0.37174 lineto -stroke -grestore -[(0)] -0.0125 0.37174 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.51794 moveto -0.00625 0.51794 lineto -stroke -grestore -[(10)] -0.0125 0.51794 1 0 0 Minner Mrotshowa -gsave -0.001 setlinewidth -0 0.10858 moveto -0.00375 0.10858 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.13782 moveto -0.00375 0.13782 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.16706 moveto -0.00375 0.16706 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.1963 moveto -0.00375 0.1963 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.25478 moveto -0.00375 0.25478 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.28402 moveto -0.00375 0.28402 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.31326 moveto -0.00375 0.31326 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.3425 moveto -0.00375 0.3425 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.40098 moveto -0.00375 0.40098 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.43022 moveto -0.00375 0.43022 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.45946 moveto -0.00375 0.45946 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.4887 moveto -0.00375 0.4887 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.0501 moveto -0.00375 0.0501 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.02086 moveto -0.00375 0.02086 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.54718 moveto -0.00375 0.54718 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.57642 moveto -0.00375 0.57642 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.60566 moveto -0.00375 0.60566 lineto -stroke -grestore -[(Y)] -0.0125 0.30902 1 0 90 -1 0 Mouter Mrotshowa -gsave -0.002 setlinewidth -0 0 moveto -0 0.61803 lineto -stroke -grestore -grestore -gsave -gsave -0.002 setlinewidth -0.08626 0.61178 moveto -0.08626 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.24239 0.61178 moveto -0.24239 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.39852 0.61178 moveto -0.39852 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.55464 0.61178 moveto -0.55464 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.71077 0.61178 moveto -0.71077 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.8669 0.61178 moveto -0.8669 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.11749 0.61428 moveto -0.11749 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.14871 0.61428 moveto -0.14871 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.17994 0.61428 moveto -0.17994 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.21116 0.61428 moveto -0.21116 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.27361 0.61428 moveto -0.27361 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.30484 0.61428 moveto -0.30484 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.33607 0.61428 moveto -0.33607 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.36729 0.61428 moveto -0.36729 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.42974 0.61428 moveto -0.42974 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.46097 0.61428 moveto -0.46097 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.49219 0.61428 moveto -0.49219 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.52342 0.61428 moveto -0.52342 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.58587 0.61428 moveto -0.58587 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.6171 0.61428 moveto -0.6171 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.64832 0.61428 moveto -0.64832 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.67955 0.61428 moveto -0.67955 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.742 0.61428 moveto -0.742 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.77322 0.61428 moveto -0.77322 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.80445 0.61428 moveto -0.80445 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.83568 0.61428 moveto -0.83568 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.05504 0.61428 moveto -0.05504 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.02381 0.61428 moveto -0.02381 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.89813 0.61428 moveto -0.89813 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.92935 0.61428 moveto -0.92935 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.96058 0.61428 moveto -0.96058 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.9918 0.61428 moveto -0.9918 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0 0.61803 moveto -1 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.07934 moveto -1 0.07934 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.22554 moveto -1 0.22554 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.37174 moveto -1 0.37174 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.51794 moveto -1 0.51794 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.10858 moveto -1 0.10858 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.13782 moveto -1 0.13782 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.16706 moveto -1 0.16706 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.1963 moveto -1 0.1963 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.25478 moveto -1 0.25478 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.28402 moveto -1 0.28402 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.31326 moveto -1 0.31326 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.3425 moveto -1 0.3425 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.40098 moveto -1 0.40098 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.43022 moveto -1 0.43022 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.45946 moveto -1 0.45946 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.4887 moveto -1 0.4887 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.0501 moveto -1 0.0501 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.02086 moveto -1 0.02086 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.54718 moveto -1 0.54718 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.57642 moveto -1 0.57642 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.60566 moveto -1 0.60566 lineto -stroke -grestore -gsave -0.002 setlinewidth -1 0 moveto -1 0.61803 lineto -stroke -grestore -grestore -gsave -gsave -0.002 setlinewidth -0 0.37174 moveto -1 0.37174 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.39852 0 moveto -0.39852 0.61803 lineto -stroke -grestore -grestore -0 0 moveto -1 0 lineto -1 0.61803 lineto -0 0.61803 lineto -closepath -clip -newpath -gsave -gsave -gsave -0.004 setlinewidth -0.02381 0.60332 moveto -0.06349 0.57879 lineto -0.10317 0.55427 lineto -0.14286 0.52974 lineto -0.18254 0.50522 lineto -0.22222 0.48069 lineto -0.2619 0.45617 lineto -0.30159 0.43164 lineto -0.34127 0.40712 lineto -0.38095 0.38259 lineto -0.42063 0.35807 lineto -0.46032 0.33354 lineto -0.5 0.30902 lineto -0.53968 0.28449 lineto -0.57937 0.25997 lineto -0.61905 0.23544 lineto -0.65873 0.21092 lineto -0.69841 0.18639 lineto -0.7381 0.16187 lineto -0.77778 0.13734 lineto -0.81746 0.11282 lineto -0.85714 0.08829 lineto -0.89683 0.06377 lineto -0.93651 0.03924 lineto -0.97619 0.01472 lineto -stroke -grestore -grestore -grestore -% End of Graphics -MathPictureEnd -end -showpage diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v12.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v12.gif deleted file mode 100755 index 5fb14b768..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v12.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v13.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v13.eps deleted file mode 100755 index 7cf858d99..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v13.eps +++ /dev/null @@ -1,2209 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 72.0 242.0 540.0 550.0 -%%Creator: Mathematica -%%CreationDate: Mon Aug 30 10:31:25 CDT 1993 -%%EndComments -/Mathdict 100 dict def -Mathdict begin -/Mlmarg 1.0 72 mul def -/Mrmarg 1.0 72 mul def -/Mbmarg 1.0 72 mul def -/Mtmarg 1.0 72 mul def -/Mwidth 8.5 72 mul def -/Mheight 11 72 mul def -/Mtransform { } bind def -/Mnodistort true def -/Mfixwid false def -/Mfixdash false def -/Mrot 0 def -/Mpstart { -MathPictureStart -} bind def -/Mpend { -MathPictureEnd -} bind def -/Mscale { -0 1 0 1 -5 -1 roll -MathScale -} bind def -/ISOLatin1Encoding dup where -{ pop pop } -{ -[ -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright -/parenleft /parenright /asterisk /plus /comma /minus /period /slash -/zero /one /two /three /four /five /six /seven -/eight /nine /colon /semicolon /less /equal /greater /question -/at /A /B /C /D /E /F /G -/H /I /J /K /L /M /N /O -/P /Q /R /S /T /U /V /W -/X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore -/quoteleft /a /b /c /d /e /f /g -/h /i /j /k /l /m /n /o -/p /q /r /s /t /u /v /w -/x /y /z /braceleft /bar /braceright /asciitilde /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent -/dieresis /.notdef /ring /cedilla /.notdef /hungarumlaut /ogonek /caron -/space /exclamdown /cent /sterling /currency /yen /brokenbar /section -/dieresis /copyright /ordfeminine /guillemotleft -/logicalnot /hyphen /registered /macron -/degree /plusminus /twosuperior /threesuperior -/acute /mu /paragraph /periodcentered -/cedilla /onesuperior /ordmasculine /guillemotright -/onequarter /onehalf /threequarters /questiondown -/Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla -/Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis -/Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply -/Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls -/agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla -/egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis -/eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide -/oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis -] def -} ifelse -/MFontDict 50 dict def -/MStrCat -{ -exch -dup length -2 index length add -string -dup 3 1 roll -copy -length -exch dup -4 2 roll exch -putinterval -} def -/MCreateEncoding -{ -1 index -255 string cvs -(-) MStrCat -1 index MStrCat -cvn exch -(Encoding) MStrCat -cvn dup where -{ -exch get -} -{ -pop -StandardEncoding -} ifelse -3 1 roll -dup MFontDict exch known not -{ -1 index findfont -dup length dict -begin -{1 index /FID ne -{def} -{pop pop} -ifelse} forall -/Encoding 3 index -def -currentdict -end -1 index exch definefont pop -MFontDict 1 index -null put -} -if -exch pop -exch pop -} def -/ISOLatin1 { (ISOLatin1) MCreateEncoding } def -/ISO8859 { (ISOLatin1) MCreateEncoding } def -/Mcopyfont { -dup -maxlength -dict -exch -{ -1 index -/FID -eq -{ -pop pop -} -{ -2 index -3 1 roll -put -} -ifelse -} -forall -} def -/Plain /Courier findfont Mcopyfont definefont pop -/Bold /Courier-Bold findfont Mcopyfont definefont pop -/Italic /Courier-Oblique findfont Mcopyfont definefont pop -/MathPictureStart { -gsave -Mtransform -Mlmarg -Mbmarg -translate -/Mtmatrix -matrix currentmatrix -def -/Mgmatrix -matrix currentmatrix -def -} bind def -/MathPictureEnd { -grestore -} bind def -/MathSubStart { -Momatrix -Mgmatrix Mtmatrix -Mlmarg Mrmarg -Mbmarg Mtmarg -Mwidth Mheight -11 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -Mgmatrix setmatrix -13 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -2 copy translate -/Mtmatrix matrix currentmatrix def -/Mlmarg 0 def -/Mrmarg 0 def -/Mbmarg 0 def -/Mtmarg 0 def -3 -1 roll -exch sub -/Mheight exch def -sub -/Mwidth exch def -} bind def -/MathSubEnd { -/Mheight exch def -/Mwidth exch def -/Mtmarg exch def -/Mbmarg exch def -/Mrmarg exch def -/Mlmarg exch def -/Mtmatrix exch def -dup setmatrix -/Mgmatrix exch def -/Momatrix exch def -} bind def -/Mdot { -moveto -0 0 rlineto -stroke -} bind def -/Mtetra { -moveto -lineto -lineto -lineto -fill -} bind def -/Metetra { -moveto -lineto -lineto -lineto -closepath -gsave -fill -grestore -0 setgray -stroke -} bind def -/Mistroke { -flattenpath -0 0 0 -{ -4 2 roll -pop pop -} -{ -4 -1 roll -2 index -sub dup mul -4 -1 roll -2 index -sub dup mul -add sqrt -4 -1 roll -add -3 1 roll -} -{ -stop -} -{ -stop -} -pathforall -pop pop -currentpoint -stroke -moveto -currentdash -3 -1 roll -add -setdash -} bind def -/Mfstroke { -stroke -currentdash -pop 0 -setdash -} bind def -/Mrotsboxa { -gsave -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -grestore -Msboxa -3 -1 roll -/Mtmatrix -exch def -/Mrot -0 def -} bind def -/Msboxa { -newpath -5 -1 roll -Mvboxa -pop -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Msboxa1 -5 -3 roll -Msboxa1 -Mboxrot -[ -7 -2 roll -2 copy -[ -3 1 roll -10 -1 roll -9 -1 roll -] -6 1 roll -5 -2 roll -] -} bind def -/Msboxa1 { -sub -2 div -dup -2 index -1 add -mul -3 -1 roll --1 add -3 -1 roll -mul -} bind def -/Mvboxa { -Mfixwid -{ -Mvboxa1 -} -{ -dup -Mwidthcal -0 exch -{ -add -} -forall -exch -Mvboxa1 -4 index -7 -1 roll -add -4 -1 roll -pop -3 1 roll -} -ifelse -} bind def -/Mvboxa1 { -gsave -newpath -[ true -3 -1 roll -{ -Mbbox -5 -1 roll -{ -0 -5 1 roll -} -{ -7 -1 roll -exch sub -(m) stringwidth pop -.3 mul -sub -7 1 roll -6 -1 roll -4 -1 roll -Mmin -3 -1 roll -5 index -add -5 -1 roll -4 -1 roll -Mmax -4 -1 roll -} -ifelse -false -} -forall -{ stop } if -counttomark -1 add -4 roll -] -grestore -} bind def -/Mbbox { -1 dict begin -0 0 moveto -/temp (T) def -{ gsave -currentpoint newpath moveto -temp 0 3 -1 roll put temp -false charpath flattenpath currentpoint -pathbbox -grestore moveto lineto moveto} forall -pathbbox -newpath -end -} bind def -/Mmin { -2 copy -gt -{ exch } if -pop -} bind def -/Mmax { -2 copy -lt -{ exch } if -pop -} bind def -/Mrotshowa { -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -Mgmatrix setmatrix -Mshowa -/Mtmatrix -exch def -/Mrot 0 def -} bind def -/Mshowa { -4 -2 roll -moveto -2 index -Mtmatrix setmatrix -Mvboxa -7 1 roll -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Mshowa1 -4 1 roll -Mshowa1 -rmoveto -currentpoint -Mfixwid -{ -Mshowax -} -{ -Mshoway -} -ifelse -pop pop pop pop -Mgmatrix setmatrix -} bind def -/Mshowax { -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -Mfixdash -{ -Mfixdashp -} -if -show -} for -} bind def -/Mfixdashp { -dup -length -1 -gt -1 index -true exch -{ -45 -eq -and -} forall -and -{ -gsave -(--) -stringwidth pop -(-) -stringwidth pop -sub -2 div -0 rmoveto -dup -length -1 sub -{ -(-) -show -} -repeat -grestore -} -if -} bind def -/Mshoway { -3 index -Mwidthcal -5 1 roll -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -[ -6 index -aload -length -2 add --1 roll -{ -pop -Strform -stringwidth -pop -neg -exch -add -0 rmoveto -} -exch -kshow -cleartomark -} for -pop -} bind def -/Mwidthcal { -[ -exch -{ -Mwidthcal1 -} -forall -] -[ -exch -dup -Maxlen --1 add -0 1 -3 -1 roll -{ -[ -exch -2 index -{ -1 index -Mget -exch -} -forall -pop -Maxget -exch -} -for -pop -] -Mreva -} bind def -/Mreva { -[ -exch -aload -length --1 1 -{1 roll} -for -] -} bind def -/Mget { -1 index -length --1 add -1 index -ge -{ -get -} -{ -pop pop -0 -} -ifelse -} bind def -/Maxlen { -[ -exch -{ -length -} -forall -Maxget -} bind def -/Maxget { -counttomark --1 add -1 1 -3 -1 roll -{ -pop -Mmax -} -for -exch -pop -} bind def -/Mwidthcal1 { -[ -exch -{ -Strform -stringwidth -pop -} -forall -] -} bind def -/Strform { -/tem (x) def -tem 0 -3 -1 roll -put -tem -} bind def -/Mshowa1 { -2 copy -add -4 1 roll -sub -mul -sub --2 div -} bind def -/MathScale { -Mwidth -Mlmarg Mrmarg add -sub -Mheight -Mbmarg Mtmarg add -sub -0 0 moveto -1 index 0 -lineto -2 copy -lineto -0 1 index -lineto -clip newpath -Mlp -translate -dup -/Mathabs -exch def -scale -/yscale exch def -/ybias exch def -/xscale exch def -/xbias exch def -/Momatrix -xscale yscale matrix scale -xbias ybias matrix translate -matrix concatmatrix def -/Mgmatrix -matrix currentmatrix -def -} bind def -/Mlp { -3 copy -Mlpfirst -{ -Mnodistort -{ -Mmin -dup -} if -4 index -2 index -2 index -Mlprun -11 index -11 -1 roll -10 -4 roll -Mlp1 -8 index -9 -5 roll -Mlp1 -4 -1 roll -and -{ exit } if -3 -1 roll -pop pop -} loop -exch -3 1 roll -7 -3 roll -pop pop pop -} bind def -/Mlpfirst { -3 -1 roll -dup length -2 copy --2 add -get -aload -pop pop pop -4 -2 roll --1 add -get -aload -pop pop pop -6 -1 roll -3 -1 roll -5 -1 roll -sub -div -4 1 roll -exch sub -div -} bind def -/Mlprun { -2 copy -4 index -0 get -dup -4 1 roll -Mlprun1 -3 copy -8 -2 roll -9 -1 roll -{ -3 copy -Mlprun1 -3 copy -11 -3 roll -/gt Mlpminmax -8 3 roll -11 -3 roll -/lt Mlpminmax -8 3 roll -} forall -pop pop pop pop -3 1 roll -pop pop -aload pop -5 -1 roll -aload pop -exch -6 -1 roll -Mlprun2 -8 2 roll -4 -1 roll -Mlprun2 -6 2 roll -3 -1 roll -Mlprun2 -4 2 roll -exch -Mlprun2 -6 2 roll -} bind def -/Mlprun1 { -aload pop -exch -6 -1 roll -5 -1 roll -mul add -4 -2 roll -mul -3 -1 roll -add -} bind def -/Mlprun2 { -2 copy -add 2 div -3 1 roll -exch sub -} bind def -/Mlpminmax { -cvx -2 index -6 index -2 index -exec -{ -7 -3 roll -4 -1 roll -} if -1 index -5 index -3 -1 roll -exec -{ -4 1 roll -pop -5 -1 roll -aload -pop pop -4 -1 roll -aload pop -[ -8 -2 roll -pop -5 -2 roll -pop -6 -2 roll -pop -5 -1 roll -] -4 1 roll -pop -} -{ -pop pop pop -} ifelse -} bind def -/Mlp1 { -5 index -3 index sub -5 index -2 index mul -1 index -le -1 index -0 le -or -dup -not -{ -1 index -3 index div -.99999 mul -8 -1 roll -pop -7 1 roll -} -if -8 -1 roll -2 div -7 -2 roll -pop sub -5 index -6 -3 roll -pop pop -mul sub -exch -} bind def -/intop 0 def -/inrht 0 def -/inflag 0 def -/outflag 0 def -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -/Minner { -outflag -1 -eq -{ -/outflag 0 def -/intop 0 def -/inrht 0 def -} if -5 index -gsave -Mtmatrix setmatrix -Mvboxa pop -grestore -3 -1 roll -pop -dup -intop -gt -{ -/intop -exch def -} -{ pop } -ifelse -dup -inrht -gt -{ -/inrht -exch def -} -{ pop } -ifelse -pop -/inflag -1 def -} bind def -/Mouter { -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -inflag -1 eq -{ -dup -0 lt -{ -dup -intop -mul -neg -/yadtop -exch def -} if -dup -0 gt -{ -dup -intop -mul -/yadbot -exch def -} -if -pop -dup -0 lt -{ -dup -inrht -mul -neg -/xadrht -exch def -} if -dup -0 gt -{ -dup -inrht -mul -/xadlft -exch def -} if -pop -/outflag 1 def -} -{ pop pop} -ifelse -/inflag 0 def -/inrht 0 def -/intop 0 def -} bind def -/Mboxout { -outflag -1 -eq -{ -4 -1 -roll -xadlft -leadjust -add -sub -4 1 roll -3 -1 -roll -yadbot -leadjust -add -sub -3 1 -roll -exch -xadrht -leadjust -add -add -exch -yadtop -leadjust -add -add -/outflag 0 def -/xadlft 0 def -/yadbot 0 def -/xadrht 0 def -/yadtop 0 def -} if -} bind def -/leadjust { -(m) stringwidth pop -.5 mul -} bind def -/Mrotcheck { -dup -90 -eq -{ -yadbot -/yadbot -xadrht -def -/xadrht -yadtop -def -/yadtop -xadlft -def -/xadlft -exch -def -} -if -dup -cos -1 index -sin -Checkaux -dup -cos -1 index -sin neg -exch -Checkaux -3 1 roll -pop pop -} bind def -/Checkaux { -4 index -exch -4 index -mul -3 1 roll -mul add -4 1 roll -} bind def -/Mboxrot { -Mrot -90 eq -{ -brotaux -4 2 -roll -} -if -Mrot -180 eq -{ -4 2 -roll -brotaux -4 2 -roll -brotaux -} -if -Mrot -270 eq -{ -4 2 -roll -brotaux -} -if -} bind def -/brotaux { -neg -exch -neg -} bind def -/Mabswid { -Mathabs -div -setlinewidth -} bind def -/Mabsdash { -exch -Mathabs -[ -3 1 roll -exch -{ -exch -dup -3 -1 roll -exch -div -exch -} -forall -pop ] -exch -setdash -} bind def -/MBeginOrig { Momatrix concat} bind def -/MEndOrig { Mgmatrix setmatrix} bind def -/colorimage where -{ pop } -{ -/colorimage { -3 1 roll -pop pop -5 -1 roll -mul -4 1 roll -{ -currentfile -1 index -readhexstring -pop } -image -} bind def -} ifelse -/sampledsound where -{ pop} -{ /sampledsound { -exch -pop -exch -5 1 roll -mul -4 idiv -mul -2 idiv -exch pop -exch -/Mtempproc exch def -{ Mtempproc pop} -repeat -} bind def -} ifelse -/setcmykcolor where -{ pop} -{ /setcmykcolor { -4 1 -roll -[ -4 1 -roll -] -{ -1 index -sub -1 -sub neg -dup -0 -lt -{ -pop -0 -} -if -dup -1 -gt -{ -pop -1 -} -if -exch -} forall -pop -setrgbcolor -} bind def -} ifelse -%%AspectRatio: 0.61803 -MathPictureStart -/Courier-Oblique findfont 17 scalefont setfont -% Scaling calculations -0.345741 0.134138 0.404354 0.011203 [ -[(-2)] 0.07746 0 0 2 0 Minner Mrotsboxa -[(-1)] 0.2116 0 0 2 0 Minner Mrotsboxa -[(0)] 0.34574 0 0 2 0 Minner Mrotsboxa -[(1)] 0.47988 0 0 2 0 Minner Mrotsboxa -[(2)] 0.61402 0 0 2 0 Minner Mrotsboxa -[(3)] 0.74816 0 0 2 0 Minner Mrotsboxa -[(4)] 0.88229 0 0 2 0 Minner Mrotsboxa -[(x)] 0.5 0 0 2 0 0 -1 Mouter Mrotsboxa -[(-30)] -0.0125 0.06827 1 0 0 Minner Mrotsboxa -[(-20)] -0.0125 0.18029 1 0 0 Minner Mrotsboxa -[(-10)] -0.0125 0.29232 1 0 0 Minner Mrotsboxa -[(0)] -0.0125 0.40435 1 0 0 Minner Mrotsboxa -[(10)] -0.0125 0.51638 1 0 0 Minner Mrotsboxa -[(Y)] -0.0125 0.30902 1 0 90 -1 0 Mouter Mrotsboxa -[ -0.001 -0.001 0 0 ] -[ 1.001 0.61903 0 0 ] -] MathScale -% Start of Graphics -1 setlinecap -1 setlinejoin -newpath -%%Object: Graphics -[ ] 0 setdash -0 setgray -gsave -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.07746 0 moveto -0.07746 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.2116 0 moveto -0.2116 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.34574 0 moveto -0.34574 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.47988 0 moveto -0.47988 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.61402 0 moveto -0.61402 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.74816 0 moveto -0.74816 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.88229 0 moveto -0.88229 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.06827 moveto -1 0.06827 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.18029 moveto -1 0.18029 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.29232 moveto -1 0.29232 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.40435 moveto -1 0.40435 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.51638 moveto -1 0.51638 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.07746 0 moveto -0.07746 0.00625 lineto -stroke -grestore -[(-2)] 0.07746 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.2116 0 moveto -0.2116 0.00625 lineto -stroke -grestore -[(-1)] 0.2116 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.34574 0 moveto -0.34574 0.00625 lineto -stroke -grestore -[(0)] 0.34574 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.47988 0 moveto -0.47988 0.00625 lineto -stroke -grestore -[(1)] 0.47988 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.61402 0 moveto -0.61402 0.00625 lineto -stroke -grestore -[(2)] 0.61402 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.74816 0 moveto -0.74816 0.00625 lineto -stroke -grestore -[(3)] 0.74816 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.88229 0 moveto -0.88229 0.00625 lineto -stroke -grestore -[(4)] 0.88229 0 0 2 0 Minner Mrotshowa -gsave -0.001 setlinewidth -0.10429 0 moveto -0.10429 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.13112 0 moveto -0.13112 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.15795 0 moveto -0.15795 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.18478 0 moveto -0.18478 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.23843 0 moveto -0.23843 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.26526 0 moveto -0.26526 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.29209 0 moveto -0.29209 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.31891 0 moveto -0.31891 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.37257 0 moveto -0.37257 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.3994 0 moveto -0.3994 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.42622 0 moveto -0.42622 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.45305 0 moveto -0.45305 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.50671 0 moveto -0.50671 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.53353 0 moveto -0.53353 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.56036 0 moveto -0.56036 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.58719 0 moveto -0.58719 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.64085 0 moveto -0.64085 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.66767 0 moveto -0.66767 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.6945 0 moveto -0.6945 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.72133 0 moveto -0.72133 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.77498 0 moveto -0.77498 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.80181 0 moveto -0.80181 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.82864 0 moveto -0.82864 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.85547 0 moveto -0.85547 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.05064 0 moveto -0.05064 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.02381 0 moveto -0.02381 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.90912 0 moveto -0.90912 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.93595 0 moveto -0.93595 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.96278 0 moveto -0.96278 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.9896 0 moveto -0.9896 0.00375 lineto -stroke -grestore -[(x)] 0.5 0 0 2 0 0 -1 Mouter Mrotshowa -gsave -0.002 setlinewidth -0 0 moveto -1 0 lineto -stroke -grestore -gsave -0.002 setlinewidth -0 0.06827 moveto -0.00625 0.06827 lineto -stroke -grestore -[(-30)] -0.0125 0.06827 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.18029 moveto -0.00625 0.18029 lineto -stroke -grestore -[(-20)] -0.0125 0.18029 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.29232 moveto -0.00625 0.29232 lineto -stroke -grestore -[(-10)] -0.0125 0.29232 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.40435 moveto -0.00625 0.40435 lineto -stroke -grestore -[(0)] -0.0125 0.40435 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.51638 moveto -0.00625 0.51638 lineto -stroke -grestore -[(10)] -0.0125 0.51638 1 0 0 Minner Mrotshowa -gsave -0.001 setlinewidth -0 0.09067 moveto -0.00375 0.09067 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.11308 moveto -0.00375 0.11308 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.13548 moveto -0.00375 0.13548 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.15789 moveto -0.00375 0.15789 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.2027 moveto -0.00375 0.2027 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.22511 moveto -0.00375 0.22511 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.24751 moveto -0.00375 0.24751 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.26992 moveto -0.00375 0.26992 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.31473 moveto -0.00375 0.31473 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.33714 moveto -0.00375 0.33714 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.35954 moveto -0.00375 0.35954 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.38195 moveto -0.00375 0.38195 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.42676 moveto -0.00375 0.42676 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.44917 moveto -0.00375 0.44917 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.47157 moveto -0.00375 0.47157 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.49398 moveto -0.00375 0.49398 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.04586 moveto -0.00375 0.04586 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.02345 moveto -0.00375 0.02345 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.00105 moveto -0.00375 0.00105 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.53879 moveto -0.00375 0.53879 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.5612 moveto -0.00375 0.5612 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.5836 moveto -0.00375 0.5836 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.60601 moveto -0.00375 0.60601 lineto -stroke -grestore -[(Y)] -0.0125 0.30902 1 0 90 -1 0 Mouter Mrotshowa -gsave -0.002 setlinewidth -0 0 moveto -0 0.61803 lineto -stroke -grestore -grestore -gsave -gsave -0.002 setlinewidth -0.07746 0.61178 moveto -0.07746 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.2116 0.61178 moveto -0.2116 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.34574 0.61178 moveto -0.34574 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.47988 0.61178 moveto -0.47988 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.61402 0.61178 moveto -0.61402 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.74816 0.61178 moveto -0.74816 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.88229 0.61178 moveto -0.88229 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.10429 0.61428 moveto -0.10429 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.13112 0.61428 moveto -0.13112 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.15795 0.61428 moveto -0.15795 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.18478 0.61428 moveto -0.18478 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.23843 0.61428 moveto -0.23843 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.26526 0.61428 moveto -0.26526 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.29209 0.61428 moveto -0.29209 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.31891 0.61428 moveto -0.31891 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.37257 0.61428 moveto -0.37257 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.3994 0.61428 moveto -0.3994 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.42622 0.61428 moveto -0.42622 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.45305 0.61428 moveto -0.45305 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.50671 0.61428 moveto -0.50671 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.53353 0.61428 moveto -0.53353 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.56036 0.61428 moveto -0.56036 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.58719 0.61428 moveto -0.58719 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.64085 0.61428 moveto -0.64085 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.66767 0.61428 moveto -0.66767 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.6945 0.61428 moveto -0.6945 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.72133 0.61428 moveto -0.72133 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.77498 0.61428 moveto -0.77498 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.80181 0.61428 moveto -0.80181 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.82864 0.61428 moveto -0.82864 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.85547 0.61428 moveto -0.85547 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.05064 0.61428 moveto -0.05064 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.02381 0.61428 moveto -0.02381 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.90912 0.61428 moveto -0.90912 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.93595 0.61428 moveto -0.93595 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.96278 0.61428 moveto -0.96278 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.9896 0.61428 moveto -0.9896 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0 0.61803 moveto -1 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.06827 moveto -1 0.06827 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.18029 moveto -1 0.18029 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.29232 moveto -1 0.29232 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.40435 moveto -1 0.40435 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.51638 moveto -1 0.51638 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.09067 moveto -1 0.09067 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.11308 moveto -1 0.11308 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.13548 moveto -1 0.13548 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.15789 moveto -1 0.15789 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.2027 moveto -1 0.2027 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.22511 moveto -1 0.22511 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.24751 moveto -1 0.24751 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.26992 moveto -1 0.26992 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.31473 moveto -1 0.31473 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.33714 moveto -1 0.33714 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.35954 moveto -1 0.35954 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.38195 moveto -1 0.38195 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.42676 moveto -1 0.42676 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.44917 moveto -1 0.44917 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.47157 moveto -1 0.47157 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.49398 moveto -1 0.49398 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.04586 moveto -1 0.04586 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.02345 moveto -1 0.02345 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.00105 moveto -1 0.00105 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.53879 moveto -1 0.53879 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.5612 moveto -1 0.5612 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.5836 moveto -1 0.5836 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.60601 moveto -1 0.60601 lineto -stroke -grestore -gsave -0.002 setlinewidth -1 0 moveto -1 0.61803 lineto -stroke -grestore -grestore -gsave -gsave -0.002 setlinewidth -0 0.40435 moveto -1 0.40435 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.34574 0 moveto -0.34574 0.61803 lineto -stroke -grestore -grestore -0 0 moveto -1 0 lineto -1 0.61803 lineto -0 0.61803 lineto -closepath -clip -newpath -gsave -gsave -gsave -0.004 setlinewidth -0.02381 0.60332 moveto -0.06349 0.57879 lineto -0.10317 0.55427 lineto -0.14286 0.52974 lineto -0.18254 0.50522 lineto -0.22222 0.48069 lineto -0.2619 0.45617 lineto -0.30159 0.43164 lineto -0.34127 0.40712 lineto -0.38095 0.38259 lineto -0.42063 0.35807 lineto -0.46032 0.33354 lineto -0.5 0.30902 lineto -0.53968 0.28449 lineto -0.57937 0.25997 lineto -0.61905 0.23544 lineto -0.65873 0.21092 lineto -0.69841 0.18639 lineto -0.7381 0.16187 lineto -0.77778 0.13734 lineto -0.81746 0.11282 lineto -0.85714 0.08829 lineto -0.89683 0.06377 lineto -0.93651 0.03924 lineto -0.97619 0.01472 lineto -stroke -grestore -grestore -grestore -% End of Graphics -MathPictureEnd -end -showpage diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v13.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v13.gif deleted file mode 100755 index 9be8bfa73..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v13.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v14.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v14.eps deleted file mode 100755 index 5625296e3..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v14.eps +++ /dev/null @@ -1,2249 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 72.0 242.0 540.0 550.0 -%%Creator: Mathematica -%%CreationDate: Mon Aug 30 10:33:32 CDT 1993 -%%EndComments -/Mathdict 100 dict def -Mathdict begin -/Mlmarg 1.0 72 mul def -/Mrmarg 1.0 72 mul def -/Mbmarg 1.0 72 mul def -/Mtmarg 1.0 72 mul def -/Mwidth 8.5 72 mul def -/Mheight 11 72 mul def -/Mtransform { } bind def -/Mnodistort true def -/Mfixwid false def -/Mfixdash false def -/Mrot 0 def -/Mpstart { -MathPictureStart -} bind def -/Mpend { -MathPictureEnd -} bind def -/Mscale { -0 1 0 1 -5 -1 roll -MathScale -} bind def -/ISOLatin1Encoding dup where -{ pop pop } -{ -[ -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright -/parenleft /parenright /asterisk /plus /comma /minus /period /slash -/zero /one /two /three /four /five /six /seven -/eight /nine /colon /semicolon /less /equal /greater /question -/at /A /B /C /D /E /F /G -/H /I /J /K /L /M /N /O -/P /Q /R /S /T /U /V /W -/X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore -/quoteleft /a /b /c /d /e /f /g -/h /i /j /k /l /m /n /o -/p /q /r /s /t /u /v /w -/x /y /z /braceleft /bar /braceright /asciitilde /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent -/dieresis /.notdef /ring /cedilla /.notdef /hungarumlaut /ogonek /caron -/space /exclamdown /cent /sterling /currency /yen /brokenbar /section -/dieresis /copyright /ordfeminine /guillemotleft -/logicalnot /hyphen /registered /macron -/degree /plusminus /twosuperior /threesuperior -/acute /mu /paragraph /periodcentered -/cedilla /onesuperior /ordmasculine /guillemotright -/onequarter /onehalf /threequarters /questiondown -/Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla -/Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis -/Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply -/Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls -/agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla -/egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis -/eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide -/oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis -] def -} ifelse -/MFontDict 50 dict def -/MStrCat -{ -exch -dup length -2 index length add -string -dup 3 1 roll -copy -length -exch dup -4 2 roll exch -putinterval -} def -/MCreateEncoding -{ -1 index -255 string cvs -(-) MStrCat -1 index MStrCat -cvn exch -(Encoding) MStrCat -cvn dup where -{ -exch get -} -{ -pop -StandardEncoding -} ifelse -3 1 roll -dup MFontDict exch known not -{ -1 index findfont -dup length dict -begin -{1 index /FID ne -{def} -{pop pop} -ifelse} forall -/Encoding 3 index -def -currentdict -end -1 index exch definefont pop -MFontDict 1 index -null put -} -if -exch pop -exch pop -} def -/ISOLatin1 { (ISOLatin1) MCreateEncoding } def -/ISO8859 { (ISOLatin1) MCreateEncoding } def -/Mcopyfont { -dup -maxlength -dict -exch -{ -1 index -/FID -eq -{ -pop pop -} -{ -2 index -3 1 roll -put -} -ifelse -} -forall -} def -/Plain /Courier findfont Mcopyfont definefont pop -/Bold /Courier-Bold findfont Mcopyfont definefont pop -/Italic /Courier-Oblique findfont Mcopyfont definefont pop -/MathPictureStart { -gsave -Mtransform -Mlmarg -Mbmarg -translate -/Mtmatrix -matrix currentmatrix -def -/Mgmatrix -matrix currentmatrix -def -} bind def -/MathPictureEnd { -grestore -} bind def -/MathSubStart { -Momatrix -Mgmatrix Mtmatrix -Mlmarg Mrmarg -Mbmarg Mtmarg -Mwidth Mheight -11 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -Mgmatrix setmatrix -13 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -2 copy translate -/Mtmatrix matrix currentmatrix def -/Mlmarg 0 def -/Mrmarg 0 def -/Mbmarg 0 def -/Mtmarg 0 def -3 -1 roll -exch sub -/Mheight exch def -sub -/Mwidth exch def -} bind def -/MathSubEnd { -/Mheight exch def -/Mwidth exch def -/Mtmarg exch def -/Mbmarg exch def -/Mrmarg exch def -/Mlmarg exch def -/Mtmatrix exch def -dup setmatrix -/Mgmatrix exch def -/Momatrix exch def -} bind def -/Mdot { -moveto -0 0 rlineto -stroke -} bind def -/Mtetra { -moveto -lineto -lineto -lineto -fill -} bind def -/Metetra { -moveto -lineto -lineto -lineto -closepath -gsave -fill -grestore -0 setgray -stroke -} bind def -/Mistroke { -flattenpath -0 0 0 -{ -4 2 roll -pop pop -} -{ -4 -1 roll -2 index -sub dup mul -4 -1 roll -2 index -sub dup mul -add sqrt -4 -1 roll -add -3 1 roll -} -{ -stop -} -{ -stop -} -pathforall -pop pop -currentpoint -stroke -moveto -currentdash -3 -1 roll -add -setdash -} bind def -/Mfstroke { -stroke -currentdash -pop 0 -setdash -} bind def -/Mrotsboxa { -gsave -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -grestore -Msboxa -3 -1 roll -/Mtmatrix -exch def -/Mrot -0 def -} bind def -/Msboxa { -newpath -5 -1 roll -Mvboxa -pop -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Msboxa1 -5 -3 roll -Msboxa1 -Mboxrot -[ -7 -2 roll -2 copy -[ -3 1 roll -10 -1 roll -9 -1 roll -] -6 1 roll -5 -2 roll -] -} bind def -/Msboxa1 { -sub -2 div -dup -2 index -1 add -mul -3 -1 roll --1 add -3 -1 roll -mul -} bind def -/Mvboxa { -Mfixwid -{ -Mvboxa1 -} -{ -dup -Mwidthcal -0 exch -{ -add -} -forall -exch -Mvboxa1 -4 index -7 -1 roll -add -4 -1 roll -pop -3 1 roll -} -ifelse -} bind def -/Mvboxa1 { -gsave -newpath -[ true -3 -1 roll -{ -Mbbox -5 -1 roll -{ -0 -5 1 roll -} -{ -7 -1 roll -exch sub -(m) stringwidth pop -.3 mul -sub -7 1 roll -6 -1 roll -4 -1 roll -Mmin -3 -1 roll -5 index -add -5 -1 roll -4 -1 roll -Mmax -4 -1 roll -} -ifelse -false -} -forall -{ stop } if -counttomark -1 add -4 roll -] -grestore -} bind def -/Mbbox { -1 dict begin -0 0 moveto -/temp (T) def -{ gsave -currentpoint newpath moveto -temp 0 3 -1 roll put temp -false charpath flattenpath currentpoint -pathbbox -grestore moveto lineto moveto} forall -pathbbox -newpath -end -} bind def -/Mmin { -2 copy -gt -{ exch } if -pop -} bind def -/Mmax { -2 copy -lt -{ exch } if -pop -} bind def -/Mrotshowa { -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -Mgmatrix setmatrix -Mshowa -/Mtmatrix -exch def -/Mrot 0 def -} bind def -/Mshowa { -4 -2 roll -moveto -2 index -Mtmatrix setmatrix -Mvboxa -7 1 roll -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Mshowa1 -4 1 roll -Mshowa1 -rmoveto -currentpoint -Mfixwid -{ -Mshowax -} -{ -Mshoway -} -ifelse -pop pop pop pop -Mgmatrix setmatrix -} bind def -/Mshowax { -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -Mfixdash -{ -Mfixdashp -} -if -show -} for -} bind def -/Mfixdashp { -dup -length -1 -gt -1 index -true exch -{ -45 -eq -and -} forall -and -{ -gsave -(--) -stringwidth pop -(-) -stringwidth pop -sub -2 div -0 rmoveto -dup -length -1 sub -{ -(-) -show -} -repeat -grestore -} -if -} bind def -/Mshoway { -3 index -Mwidthcal -5 1 roll -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -[ -6 index -aload -length -2 add --1 roll -{ -pop -Strform -stringwidth -pop -neg -exch -add -0 rmoveto -} -exch -kshow -cleartomark -} for -pop -} bind def -/Mwidthcal { -[ -exch -{ -Mwidthcal1 -} -forall -] -[ -exch -dup -Maxlen --1 add -0 1 -3 -1 roll -{ -[ -exch -2 index -{ -1 index -Mget -exch -} -forall -pop -Maxget -exch -} -for -pop -] -Mreva -} bind def -/Mreva { -[ -exch -aload -length --1 1 -{1 roll} -for -] -} bind def -/Mget { -1 index -length --1 add -1 index -ge -{ -get -} -{ -pop pop -0 -} -ifelse -} bind def -/Maxlen { -[ -exch -{ -length -} -forall -Maxget -} bind def -/Maxget { -counttomark --1 add -1 1 -3 -1 roll -{ -pop -Mmax -} -for -exch -pop -} bind def -/Mwidthcal1 { -[ -exch -{ -Strform -stringwidth -pop -} -forall -] -} bind def -/Strform { -/tem (x) def -tem 0 -3 -1 roll -put -tem -} bind def -/Mshowa1 { -2 copy -add -4 1 roll -sub -mul -sub --2 div -} bind def -/MathScale { -Mwidth -Mlmarg Mrmarg add -sub -Mheight -Mbmarg Mtmarg add -sub -0 0 moveto -1 index 0 -lineto -2 copy -lineto -0 1 index -lineto -clip newpath -Mlp -translate -dup -/Mathabs -exch def -scale -/yscale exch def -/ybias exch def -/xscale exch def -/xbias exch def -/Momatrix -xscale yscale matrix scale -xbias ybias matrix translate -matrix concatmatrix def -/Mgmatrix -matrix currentmatrix -def -} bind def -/Mlp { -3 copy -Mlpfirst -{ -Mnodistort -{ -Mmin -dup -} if -4 index -2 index -2 index -Mlprun -11 index -11 -1 roll -10 -4 roll -Mlp1 -8 index -9 -5 roll -Mlp1 -4 -1 roll -and -{ exit } if -3 -1 roll -pop pop -} loop -exch -3 1 roll -7 -3 roll -pop pop pop -} bind def -/Mlpfirst { -3 -1 roll -dup length -2 copy --2 add -get -aload -pop pop pop -4 -2 roll --1 add -get -aload -pop pop pop -6 -1 roll -3 -1 roll -5 -1 roll -sub -div -4 1 roll -exch sub -div -} bind def -/Mlprun { -2 copy -4 index -0 get -dup -4 1 roll -Mlprun1 -3 copy -8 -2 roll -9 -1 roll -{ -3 copy -Mlprun1 -3 copy -11 -3 roll -/gt Mlpminmax -8 3 roll -11 -3 roll -/lt Mlpminmax -8 3 roll -} forall -pop pop pop pop -3 1 roll -pop pop -aload pop -5 -1 roll -aload pop -exch -6 -1 roll -Mlprun2 -8 2 roll -4 -1 roll -Mlprun2 -6 2 roll -3 -1 roll -Mlprun2 -4 2 roll -exch -Mlprun2 -6 2 roll -} bind def -/Mlprun1 { -aload pop -exch -6 -1 roll -5 -1 roll -mul add -4 -2 roll -mul -3 -1 roll -add -} bind def -/Mlprun2 { -2 copy -add 2 div -3 1 roll -exch sub -} bind def -/Mlpminmax { -cvx -2 index -6 index -2 index -exec -{ -7 -3 roll -4 -1 roll -} if -1 index -5 index -3 -1 roll -exec -{ -4 1 roll -pop -5 -1 roll -aload -pop pop -4 -1 roll -aload pop -[ -8 -2 roll -pop -5 -2 roll -pop -6 -2 roll -pop -5 -1 roll -] -4 1 roll -pop -} -{ -pop pop pop -} ifelse -} bind def -/Mlp1 { -5 index -3 index sub -5 index -2 index mul -1 index -le -1 index -0 le -or -dup -not -{ -1 index -3 index div -.99999 mul -8 -1 roll -pop -7 1 roll -} -if -8 -1 roll -2 div -7 -2 roll -pop sub -5 index -6 -3 roll -pop pop -mul sub -exch -} bind def -/intop 0 def -/inrht 0 def -/inflag 0 def -/outflag 0 def -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -/Minner { -outflag -1 -eq -{ -/outflag 0 def -/intop 0 def -/inrht 0 def -} if -5 index -gsave -Mtmatrix setmatrix -Mvboxa pop -grestore -3 -1 roll -pop -dup -intop -gt -{ -/intop -exch def -} -{ pop } -ifelse -dup -inrht -gt -{ -/inrht -exch def -} -{ pop } -ifelse -pop -/inflag -1 def -} bind def -/Mouter { -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -inflag -1 eq -{ -dup -0 lt -{ -dup -intop -mul -neg -/yadtop -exch def -} if -dup -0 gt -{ -dup -intop -mul -/yadbot -exch def -} -if -pop -dup -0 lt -{ -dup -inrht -mul -neg -/xadrht -exch def -} if -dup -0 gt -{ -dup -inrht -mul -/xadlft -exch def -} if -pop -/outflag 1 def -} -{ pop pop} -ifelse -/inflag 0 def -/inrht 0 def -/intop 0 def -} bind def -/Mboxout { -outflag -1 -eq -{ -4 -1 -roll -xadlft -leadjust -add -sub -4 1 roll -3 -1 -roll -yadbot -leadjust -add -sub -3 1 -roll -exch -xadrht -leadjust -add -add -exch -yadtop -leadjust -add -add -/outflag 0 def -/xadlft 0 def -/yadbot 0 def -/xadrht 0 def -/yadtop 0 def -} if -} bind def -/leadjust { -(m) stringwidth pop -.5 mul -} bind def -/Mrotcheck { -dup -90 -eq -{ -yadbot -/yadbot -xadrht -def -/xadrht -yadtop -def -/yadtop -xadlft -def -/xadlft -exch -def -} -if -dup -cos -1 index -sin -Checkaux -dup -cos -1 index -sin neg -exch -Checkaux -3 1 roll -pop pop -} bind def -/Checkaux { -4 index -exch -4 index -mul -3 1 roll -mul add -4 1 roll -} bind def -/Mboxrot { -Mrot -90 eq -{ -brotaux -4 2 -roll -} -if -Mrot -180 eq -{ -4 2 -roll -brotaux -4 2 -roll -brotaux -} -if -Mrot -270 eq -{ -4 2 -roll -brotaux -} -if -} bind def -/brotaux { -neg -exch -neg -} bind def -/Mabswid { -Mathabs -div -setlinewidth -} bind def -/Mabsdash { -exch -Mathabs -[ -3 1 roll -exch -{ -exch -dup -3 -1 roll -exch -div -exch -} -forall -pop ] -exch -setdash -} bind def -/MBeginOrig { Momatrix concat} bind def -/MEndOrig { Mgmatrix setmatrix} bind def -/colorimage where -{ pop } -{ -/colorimage { -3 1 roll -pop pop -5 -1 roll -mul -4 1 roll -{ -currentfile -1 index -readhexstring -pop } -image -} bind def -} ifelse -/sampledsound where -{ pop} -{ /sampledsound { -exch -pop -exch -5 1 roll -mul -4 idiv -mul -2 idiv -exch pop -exch -/Mtempproc exch def -{ Mtempproc pop} -repeat -} bind def -} ifelse -/setcmykcolor where -{ pop} -{ /setcmykcolor { -4 1 -roll -[ -4 1 -roll -] -{ -1 index -sub -1 -sub neg -dup -0 -lt -{ -pop -0 -} -if -dup -1 -gt -{ -pop -1 -} -if -exch -} forall -pop -setrgbcolor -} bind def -} ifelse -%%AspectRatio: 0.61803 -MathPictureStart -/Courier-Oblique findfont 17 scalefont setfont -% Scaling calculations -0.345741 0.134138 0.404354 0.009869 [ -[(-2)] 0.07746 0 0 2 0 Minner Mrotsboxa -[(-1)] 0.2116 0 0 2 0 Minner Mrotsboxa -[(0)] 0.34574 0 0 2 0 Minner Mrotsboxa -[(1)] 0.47988 0 0 2 0 Minner Mrotsboxa -[(2)] 0.61402 0 0 2 0 Minner Mrotsboxa -[(3)] 0.74816 0 0 2 0 Minner Mrotsboxa -[(4)] 0.88229 0 0 2 0 Minner Mrotsboxa -[(x)] 0.5 0 0 2 0 0 -1 Mouter Mrotsboxa -[(-40)] -0.0125 0.00958 1 0 0 Minner Mrotsboxa -[(-30)] -0.0125 0.10828 1 0 0 Minner Mrotsboxa -[(-20)] -0.0125 0.20697 1 0 0 Minner Mrotsboxa -[(-10)] -0.0125 0.30566 1 0 0 Minner Mrotsboxa -[(0)] -0.0125 0.40435 1 0 0 Minner Mrotsboxa -[(10)] -0.0125 0.50305 1 0 0 Minner Mrotsboxa -[(20)] -0.0125 0.60174 1 0 0 Minner Mrotsboxa -[(Y)] -0.0125 0.30902 1 0 90 -1 0 Mouter Mrotsboxa -[ -0.001 -0.001 0 0 ] -[ 1.001 0.61903 0 0 ] -] MathScale -% Start of Graphics -1 setlinecap -1 setlinejoin -newpath -%%Object: Graphics -[ ] 0 setdash -0 setgray -gsave -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.07746 0 moveto -0.07746 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.2116 0 moveto -0.2116 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.34574 0 moveto -0.34574 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.47988 0 moveto -0.47988 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.61402 0 moveto -0.61402 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.74816 0 moveto -0.74816 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.88229 0 moveto -0.88229 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.10828 moveto -1 0.10828 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.20697 moveto -1 0.20697 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.30566 moveto -1 0.30566 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.40435 moveto -1 0.40435 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.50305 moveto -1 0.50305 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.07746 0 moveto -0.07746 0.00625 lineto -stroke -grestore -[(-2)] 0.07746 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.2116 0 moveto -0.2116 0.00625 lineto -stroke -grestore -[(-1)] 0.2116 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.34574 0 moveto -0.34574 0.00625 lineto -stroke -grestore -[(0)] 0.34574 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.47988 0 moveto -0.47988 0.00625 lineto -stroke -grestore -[(1)] 0.47988 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.61402 0 moveto -0.61402 0.00625 lineto -stroke -grestore -[(2)] 0.61402 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.74816 0 moveto -0.74816 0.00625 lineto -stroke -grestore -[(3)] 0.74816 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.88229 0 moveto -0.88229 0.00625 lineto -stroke -grestore -[(4)] 0.88229 0 0 2 0 Minner Mrotshowa -gsave -0.001 setlinewidth -0.10429 0 moveto -0.10429 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.13112 0 moveto -0.13112 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.15795 0 moveto -0.15795 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.18478 0 moveto -0.18478 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.23843 0 moveto -0.23843 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.26526 0 moveto -0.26526 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.29209 0 moveto -0.29209 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.31891 0 moveto -0.31891 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.37257 0 moveto -0.37257 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.3994 0 moveto -0.3994 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.42622 0 moveto -0.42622 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.45305 0 moveto -0.45305 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.50671 0 moveto -0.50671 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.53353 0 moveto -0.53353 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.56036 0 moveto -0.56036 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.58719 0 moveto -0.58719 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.64085 0 moveto -0.64085 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.66767 0 moveto -0.66767 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.6945 0 moveto -0.6945 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.72133 0 moveto -0.72133 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.77498 0 moveto -0.77498 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.80181 0 moveto -0.80181 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.82864 0 moveto -0.82864 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.85547 0 moveto -0.85547 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.05064 0 moveto -0.05064 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.02381 0 moveto -0.02381 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.90912 0 moveto -0.90912 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.93595 0 moveto -0.93595 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.96278 0 moveto -0.96278 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.9896 0 moveto -0.9896 0.00375 lineto -stroke -grestore -[(x)] 0.5 0 0 2 0 0 -1 Mouter Mrotshowa -gsave -0.002 setlinewidth -0 0 moveto -1 0 lineto -stroke -grestore -gsave -0.002 setlinewidth -0 0.00958 moveto -0.00625 0.00958 lineto -stroke -grestore -[(-40)] -0.0125 0.00958 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.10828 moveto -0.00625 0.10828 lineto -stroke -grestore -[(-30)] -0.0125 0.10828 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.20697 moveto -0.00625 0.20697 lineto -stroke -grestore -[(-20)] -0.0125 0.20697 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.30566 moveto -0.00625 0.30566 lineto -stroke -grestore -[(-10)] -0.0125 0.30566 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.40435 moveto -0.00625 0.40435 lineto -stroke -grestore -[(0)] -0.0125 0.40435 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.50305 moveto -0.00625 0.50305 lineto -stroke -grestore -[(10)] -0.0125 0.50305 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.60174 moveto -0.00625 0.60174 lineto -stroke -grestore -[(20)] -0.0125 0.60174 1 0 0 Minner Mrotshowa -gsave -0.001 setlinewidth -0 0.02932 moveto -0.00375 0.02932 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.04906 moveto -0.00375 0.04906 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.0688 moveto -0.00375 0.0688 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.08854 moveto -0.00375 0.08854 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.12801 moveto -0.00375 0.12801 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.14775 moveto -0.00375 0.14775 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.16749 moveto -0.00375 0.16749 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.18723 moveto -0.00375 0.18723 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.22671 moveto -0.00375 0.22671 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.24645 moveto -0.00375 0.24645 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.26618 moveto -0.00375 0.26618 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.28592 moveto -0.00375 0.28592 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.3254 moveto -0.00375 0.3254 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.34514 moveto -0.00375 0.34514 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.36488 moveto -0.00375 0.36488 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.38462 moveto -0.00375 0.38462 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.42409 moveto -0.00375 0.42409 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.44383 moveto -0.00375 0.44383 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.46357 moveto -0.00375 0.46357 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.48331 moveto -0.00375 0.48331 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.52279 moveto -0.00375 0.52279 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.54252 moveto -0.00375 0.54252 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.56226 moveto -0.00375 0.56226 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.582 moveto -0.00375 0.582 lineto -stroke -grestore -[(Y)] -0.0125 0.30902 1 0 90 -1 0 Mouter Mrotshowa -gsave -0.002 setlinewidth -0 0 moveto -0 0.61803 lineto -stroke -grestore -grestore -gsave -gsave -0.002 setlinewidth -0.07746 0.61178 moveto -0.07746 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.2116 0.61178 moveto -0.2116 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.34574 0.61178 moveto -0.34574 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.47988 0.61178 moveto -0.47988 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.61402 0.61178 moveto -0.61402 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.74816 0.61178 moveto -0.74816 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.88229 0.61178 moveto -0.88229 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.10429 0.61428 moveto -0.10429 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.13112 0.61428 moveto -0.13112 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.15795 0.61428 moveto -0.15795 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.18478 0.61428 moveto -0.18478 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.23843 0.61428 moveto -0.23843 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.26526 0.61428 moveto -0.26526 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.29209 0.61428 moveto -0.29209 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.31891 0.61428 moveto -0.31891 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.37257 0.61428 moveto -0.37257 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.3994 0.61428 moveto -0.3994 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.42622 0.61428 moveto -0.42622 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.45305 0.61428 moveto -0.45305 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.50671 0.61428 moveto -0.50671 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.53353 0.61428 moveto -0.53353 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.56036 0.61428 moveto -0.56036 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.58719 0.61428 moveto -0.58719 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.64085 0.61428 moveto -0.64085 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.66767 0.61428 moveto -0.66767 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.6945 0.61428 moveto -0.6945 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.72133 0.61428 moveto -0.72133 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.77498 0.61428 moveto -0.77498 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.80181 0.61428 moveto -0.80181 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.82864 0.61428 moveto -0.82864 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.85547 0.61428 moveto -0.85547 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.05064 0.61428 moveto -0.05064 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.02381 0.61428 moveto -0.02381 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.90912 0.61428 moveto -0.90912 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.93595 0.61428 moveto -0.93595 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.96278 0.61428 moveto -0.96278 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.9896 0.61428 moveto -0.9896 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0 0.61803 moveto -1 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.00958 moveto -1 0.00958 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.10828 moveto -1 0.10828 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.20697 moveto -1 0.20697 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.30566 moveto -1 0.30566 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.40435 moveto -1 0.40435 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.50305 moveto -1 0.50305 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.60174 moveto -1 0.60174 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.02932 moveto -1 0.02932 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.04906 moveto -1 0.04906 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.0688 moveto -1 0.0688 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.08854 moveto -1 0.08854 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.12801 moveto -1 0.12801 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.14775 moveto -1 0.14775 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.16749 moveto -1 0.16749 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.18723 moveto -1 0.18723 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.22671 moveto -1 0.22671 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.24645 moveto -1 0.24645 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.26618 moveto -1 0.26618 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.28592 moveto -1 0.28592 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.3254 moveto -1 0.3254 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.34514 moveto -1 0.34514 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.36488 moveto -1 0.36488 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.38462 moveto -1 0.38462 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.42409 moveto -1 0.42409 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.44383 moveto -1 0.44383 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.46357 moveto -1 0.46357 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.48331 moveto -1 0.48331 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.52279 moveto -1 0.52279 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.54252 moveto -1 0.54252 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.56226 moveto -1 0.56226 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.582 moveto -1 0.582 lineto -stroke -grestore -gsave -0.002 setlinewidth -1 0 moveto -1 0.61803 lineto -stroke -grestore -grestore -gsave -gsave -0.002 setlinewidth -0 0.40435 moveto -1 0.40435 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.34574 0 moveto -0.34574 0.61803 lineto -stroke -grestore -grestore -0 0 moveto -1 0 lineto -1 0.61803 lineto -0 0.61803 lineto -closepath -clip -newpath -gsave -gsave -gsave -0.004 setlinewidth -0.02381 0.60332 moveto -0.06349 0.57879 lineto -0.10317 0.55427 lineto -0.14286 0.52974 lineto -0.18254 0.50522 lineto -0.22222 0.48069 lineto -0.2619 0.45617 lineto -0.30159 0.43164 lineto -0.34127 0.40712 lineto -0.38095 0.38259 lineto -0.42063 0.35807 lineto -0.46032 0.33354 lineto -0.5 0.30902 lineto -0.53968 0.28449 lineto -0.57937 0.25997 lineto -0.61905 0.23544 lineto -0.65873 0.21092 lineto -0.69841 0.18639 lineto -0.7381 0.16187 lineto -0.77778 0.13734 lineto -0.81746 0.11282 lineto -0.85714 0.08829 lineto -0.89683 0.06377 lineto -0.93651 0.03924 lineto -0.97619 0.01472 lineto -stroke -grestore -grestore -grestore -% End of Graphics -MathPictureEnd -end -showpage diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v14.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v14.gif deleted file mode 100755 index fce6ff186..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v14.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v2.eps deleted file mode 100755 index 56d7f2153..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v2.eps +++ /dev/null @@ -1,2135 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 72.0 242.0 540.0 550.0 -%%Creator: Mathematica -%%CreationDate: Wed Aug 18 16:35:39 CDT 1993 -%%EndComments -/Mathdict 100 dict def -Mathdict begin -/Mlmarg 1.0 72 mul def -/Mrmarg 1.0 72 mul def -/Mbmarg 1.0 72 mul def -/Mtmarg 1.0 72 mul def -/Mwidth 8.5 72 mul def -/Mheight 11 72 mul def -/Mtransform { } bind def -/Mnodistort true def -/Mfixwid false def -/Mfixdash false def -/Mrot 0 def -/Mpstart { -MathPictureStart -} bind def -/Mpend { -MathPictureEnd -} bind def -/Mscale { -0 1 0 1 -5 -1 roll -MathScale -} bind def -/ISOLatin1Encoding dup where -{ pop pop } -{ -[ -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright -/parenleft /parenright /asterisk /plus /comma /minus /period /slash -/zero /one /two /three /four /five /six /seven -/eight /nine /colon /semicolon /less /equal /greater /question -/at /A /B /C /D /E /F /G -/H /I /J /K /L /M /N /O -/P /Q /R /S /T /U /V /W -/X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore -/quoteleft /a /b /c /d /e /f /g -/h /i /j /k /l /m /n /o -/p /q /r /s /t /u /v /w -/x /y /z /braceleft /bar /braceright /asciitilde /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent -/dieresis /.notdef /ring /cedilla /.notdef /hungarumlaut /ogonek /caron -/space /exclamdown /cent /sterling /currency /yen /brokenbar /section -/dieresis /copyright /ordfeminine /guillemotleft -/logicalnot /hyphen /registered /macron -/degree /plusminus /twosuperior /threesuperior -/acute /mu /paragraph /periodcentered -/cedilla /onesuperior /ordmasculine /guillemotright -/onequarter /onehalf /threequarters /questiondown -/Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla -/Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis -/Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply -/Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls -/agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla -/egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis -/eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide -/oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis -] def -} ifelse -/MFontDict 50 dict def -/MStrCat -{ -exch -dup length -2 index length add -string -dup 3 1 roll -copy -length -exch dup -4 2 roll exch -putinterval -} def -/MCreateEncoding -{ -1 index -255 string cvs -(-) MStrCat -1 index MStrCat -cvn exch -(Encoding) MStrCat -cvn dup where -{ -exch get -} -{ -pop -StandardEncoding -} ifelse -3 1 roll -dup MFontDict exch known not -{ -1 index findfont -dup length dict -begin -{1 index /FID ne -{def} -{pop pop} -ifelse} forall -/Encoding 3 index -def -currentdict -end -1 index exch definefont pop -MFontDict 1 index -null put -} -if -exch pop -exch pop -} def -/ISOLatin1 { (ISOLatin1) MCreateEncoding } def -/ISO8859 { (ISOLatin1) MCreateEncoding } def -/Mcopyfont { -dup -maxlength -dict -exch -{ -1 index -/FID -eq -{ -pop pop -} -{ -2 index -3 1 roll -put -} -ifelse -} -forall -} def -/Plain /Courier findfont Mcopyfont definefont pop -/Bold /Courier-Bold findfont Mcopyfont definefont pop -/Italic /Courier-Oblique findfont Mcopyfont definefont pop -/MathPictureStart { -gsave -Mtransform -Mlmarg -Mbmarg -translate -/Mtmatrix -matrix currentmatrix -def -/Mgmatrix -matrix currentmatrix -def -} bind def -/MathPictureEnd { -grestore -} bind def -/MathSubStart { -Momatrix -Mgmatrix Mtmatrix -Mlmarg Mrmarg -Mbmarg Mtmarg -Mwidth Mheight -11 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -Mgmatrix setmatrix -13 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -2 copy translate -/Mtmatrix matrix currentmatrix def -/Mlmarg 0 def -/Mrmarg 0 def -/Mbmarg 0 def -/Mtmarg 0 def -3 -1 roll -exch sub -/Mheight exch def -sub -/Mwidth exch def -} bind def -/MathSubEnd { -/Mheight exch def -/Mwidth exch def -/Mtmarg exch def -/Mbmarg exch def -/Mrmarg exch def -/Mlmarg exch def -/Mtmatrix exch def -dup setmatrix -/Mgmatrix exch def -/Momatrix exch def -} bind def -/Mdot { -moveto -0 0 rlineto -stroke -} bind def -/Mtetra { -moveto -lineto -lineto -lineto -fill -} bind def -/Metetra { -moveto -lineto -lineto -lineto -closepath -gsave -fill -grestore -0 setgray -stroke -} bind def -/Mistroke { -flattenpath -0 0 0 -{ -4 2 roll -pop pop -} -{ -4 -1 roll -2 index -sub dup mul -4 -1 roll -2 index -sub dup mul -add sqrt -4 -1 roll -add -3 1 roll -} -{ -stop -} -{ -stop -} -pathforall -pop pop -currentpoint -stroke -moveto -currentdash -3 -1 roll -add -setdash -} bind def -/Mfstroke { -stroke -currentdash -pop 0 -setdash -} bind def -/Mrotsboxa { -gsave -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -grestore -Msboxa -3 -1 roll -/Mtmatrix -exch def -/Mrot -0 def -} bind def -/Msboxa { -newpath -5 -1 roll -Mvboxa -pop -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Msboxa1 -5 -3 roll -Msboxa1 -Mboxrot -[ -7 -2 roll -2 copy -[ -3 1 roll -10 -1 roll -9 -1 roll -] -6 1 roll -5 -2 roll -] -} bind def -/Msboxa1 { -sub -2 div -dup -2 index -1 add -mul -3 -1 roll --1 add -3 -1 roll -mul -} bind def -/Mvboxa { -Mfixwid -{ -Mvboxa1 -} -{ -dup -Mwidthcal -0 exch -{ -add -} -forall -exch -Mvboxa1 -4 index -7 -1 roll -add -4 -1 roll -pop -3 1 roll -} -ifelse -} bind def -/Mvboxa1 { -gsave -newpath -[ true -3 -1 roll -{ -Mbbox -5 -1 roll -{ -0 -5 1 roll -} -{ -7 -1 roll -exch sub -(m) stringwidth pop -.3 mul -sub -7 1 roll -6 -1 roll -4 -1 roll -Mmin -3 -1 roll -5 index -add -5 -1 roll -4 -1 roll -Mmax -4 -1 roll -} -ifelse -false -} -forall -{ stop } if -counttomark -1 add -4 roll -] -grestore -} bind def -/Mbbox { -1 dict begin -0 0 moveto -/temp (T) def -{ gsave -currentpoint newpath moveto -temp 0 3 -1 roll put temp -false charpath flattenpath currentpoint -pathbbox -grestore moveto lineto moveto} forall -pathbbox -newpath -end -} bind def -/Mmin { -2 copy -gt -{ exch } if -pop -} bind def -/Mmax { -2 copy -lt -{ exch } if -pop -} bind def -/Mrotshowa { -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -Mgmatrix setmatrix -Mshowa -/Mtmatrix -exch def -/Mrot 0 def -} bind def -/Mshowa { -4 -2 roll -moveto -2 index -Mtmatrix setmatrix -Mvboxa -7 1 roll -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Mshowa1 -4 1 roll -Mshowa1 -rmoveto -currentpoint -Mfixwid -{ -Mshowax -} -{ -Mshoway -} -ifelse -pop pop pop pop -Mgmatrix setmatrix -} bind def -/Mshowax { -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -Mfixdash -{ -Mfixdashp -} -if -show -} for -} bind def -/Mfixdashp { -dup -length -1 -gt -1 index -true exch -{ -45 -eq -and -} forall -and -{ -gsave -(--) -stringwidth pop -(-) -stringwidth pop -sub -2 div -0 rmoveto -dup -length -1 sub -{ -(-) -show -} -repeat -grestore -} -if -} bind def -/Mshoway { -3 index -Mwidthcal -5 1 roll -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -[ -6 index -aload -length -2 add --1 roll -{ -pop -Strform -stringwidth -pop -neg -exch -add -0 rmoveto -} -exch -kshow -cleartomark -} for -pop -} bind def -/Mwidthcal { -[ -exch -{ -Mwidthcal1 -} -forall -] -[ -exch -dup -Maxlen --1 add -0 1 -3 -1 roll -{ -[ -exch -2 index -{ -1 index -Mget -exch -} -forall -pop -Maxget -exch -} -for -pop -] -Mreva -} bind def -/Mreva { -[ -exch -aload -length --1 1 -{1 roll} -for -] -} bind def -/Mget { -1 index -length --1 add -1 index -ge -{ -get -} -{ -pop pop -0 -} -ifelse -} bind def -/Maxlen { -[ -exch -{ -length -} -forall -Maxget -} bind def -/Maxget { -counttomark --1 add -1 1 -3 -1 roll -{ -pop -Mmax -} -for -exch -pop -} bind def -/Mwidthcal1 { -[ -exch -{ -Strform -stringwidth -pop -} -forall -] -} bind def -/Strform { -/tem (x) def -tem 0 -3 -1 roll -put -tem -} bind def -/Mshowa1 { -2 copy -add -4 1 roll -sub -mul -sub --2 div -} bind def -/MathScale { -Mwidth -Mlmarg Mrmarg add -sub -Mheight -Mbmarg Mtmarg add -sub -0 0 moveto -1 index 0 -lineto -2 copy -lineto -0 1 index -lineto -clip newpath -Mlp -translate -dup -/Mathabs -exch def -scale -/yscale exch def -/ybias exch def -/xscale exch def -/xbias exch def -/Momatrix -xscale yscale matrix scale -xbias ybias matrix translate -matrix concatmatrix def -/Mgmatrix -matrix currentmatrix -def -} bind def -/Mlp { -3 copy -Mlpfirst -{ -Mnodistort -{ -Mmin -dup -} if -4 index -2 index -2 index -Mlprun -11 index -11 -1 roll -10 -4 roll -Mlp1 -8 index -9 -5 roll -Mlp1 -4 -1 roll -and -{ exit } if -3 -1 roll -pop pop -} loop -exch -3 1 roll -7 -3 roll -pop pop pop -} bind def -/Mlpfirst { -3 -1 roll -dup length -2 copy --2 add -get -aload -pop pop pop -4 -2 roll --1 add -get -aload -pop pop pop -6 -1 roll -3 -1 roll -5 -1 roll -sub -div -4 1 roll -exch sub -div -} bind def -/Mlprun { -2 copy -4 index -0 get -dup -4 1 roll -Mlprun1 -3 copy -8 -2 roll -9 -1 roll -{ -3 copy -Mlprun1 -3 copy -11 -3 roll -/gt Mlpminmax -8 3 roll -11 -3 roll -/lt Mlpminmax -8 3 roll -} forall -pop pop pop pop -3 1 roll -pop pop -aload pop -5 -1 roll -aload pop -exch -6 -1 roll -Mlprun2 -8 2 roll -4 -1 roll -Mlprun2 -6 2 roll -3 -1 roll -Mlprun2 -4 2 roll -exch -Mlprun2 -6 2 roll -} bind def -/Mlprun1 { -aload pop -exch -6 -1 roll -5 -1 roll -mul add -4 -2 roll -mul -3 -1 roll -add -} bind def -/Mlprun2 { -2 copy -add 2 div -3 1 roll -exch sub -} bind def -/Mlpminmax { -cvx -2 index -6 index -2 index -exec -{ -7 -3 roll -4 -1 roll -} if -1 index -5 index -3 -1 roll -exec -{ -4 1 roll -pop -5 -1 roll -aload -pop pop -4 -1 roll -aload pop -[ -8 -2 roll -pop -5 -2 roll -pop -6 -2 roll -pop -5 -1 roll -] -4 1 roll -pop -} -{ -pop pop pop -} ifelse -} bind def -/Mlp1 { -5 index -3 index sub -5 index -2 index mul -1 index -le -1 index -0 le -or -dup -not -{ -1 index -3 index div -.99999 mul -8 -1 roll -pop -7 1 roll -} -if -8 -1 roll -2 div -7 -2 roll -pop sub -5 index -6 -3 roll -pop pop -mul sub -exch -} bind def -/intop 0 def -/inrht 0 def -/inflag 0 def -/outflag 0 def -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -/Minner { -outflag -1 -eq -{ -/outflag 0 def -/intop 0 def -/inrht 0 def -} if -5 index -gsave -Mtmatrix setmatrix -Mvboxa pop -grestore -3 -1 roll -pop -dup -intop -gt -{ -/intop -exch def -} -{ pop } -ifelse -dup -inrht -gt -{ -/inrht -exch def -} -{ pop } -ifelse -pop -/inflag -1 def -} bind def -/Mouter { -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -inflag -1 eq -{ -dup -0 lt -{ -dup -intop -mul -neg -/yadtop -exch def -} if -dup -0 gt -{ -dup -intop -mul -/yadbot -exch def -} -if -pop -dup -0 lt -{ -dup -inrht -mul -neg -/xadrht -exch def -} if -dup -0 gt -{ -dup -inrht -mul -/xadlft -exch def -} if -pop -/outflag 1 def -} -{ pop pop} -ifelse -/inflag 0 def -/inrht 0 def -/intop 0 def -} bind def -/Mboxout { -outflag -1 -eq -{ -4 -1 -roll -xadlft -leadjust -add -sub -4 1 roll -3 -1 -roll -yadbot -leadjust -add -sub -3 1 -roll -exch -xadrht -leadjust -add -add -exch -yadtop -leadjust -add -add -/outflag 0 def -/xadlft 0 def -/yadbot 0 def -/xadrht 0 def -/yadtop 0 def -} if -} bind def -/leadjust { -(m) stringwidth pop -.5 mul -} bind def -/Mrotcheck { -dup -90 -eq -{ -yadbot -/yadbot -xadrht -def -/xadrht -yadtop -def -/yadtop -xadlft -def -/xadlft -exch -def -} -if -dup -cos -1 index -sin -Checkaux -dup -cos -1 index -sin neg -exch -Checkaux -3 1 roll -pop pop -} bind def -/Checkaux { -4 index -exch -4 index -mul -3 1 roll -mul add -4 1 roll -} bind def -/Mboxrot { -Mrot -90 eq -{ -brotaux -4 2 -roll -} -if -Mrot -180 eq -{ -4 2 -roll -brotaux -4 2 -roll -brotaux -} -if -Mrot -270 eq -{ -4 2 -roll -brotaux -} -if -} bind def -/brotaux { -neg -exch -neg -} bind def -/Mabswid { -Mathabs -div -setlinewidth -} bind def -/Mabsdash { -exch -Mathabs -[ -3 1 roll -exch -{ -exch -dup -3 -1 roll -exch -div -exch -} -forall -pop ] -exch -setdash -} bind def -/MBeginOrig { Momatrix concat} bind def -/MEndOrig { Mgmatrix setmatrix} bind def -/colorimage where -{ pop } -{ -/colorimage { -3 1 roll -pop pop -5 -1 roll -mul -4 1 roll -{ -currentfile -1 index -readhexstring -pop } -image -} bind def -} ifelse -/sampledsound where -{ pop} -{ /sampledsound { -exch -pop -exch -5 1 roll -mul -4 idiv -mul -2 idiv -exch pop -exch -/Mtempproc exch def -{ Mtempproc pop} -repeat -} bind def -} ifelse -/setcmykcolor where -{ pop} -{ /setcmykcolor { -4 1 -roll -[ -4 1 -roll -] -{ -1 index -sub -1 -sub neg -dup -0 -lt -{ -pop -0 -} -if -dup -1 -gt -{ -pop -1 -} -if -exch -} forall -pop -setrgbcolor -} bind def -} ifelse -%%AspectRatio: 0.61803 -MathPictureStart -/Courier-Oblique findfont 17 scalefont setfont -% Scaling calculations -0.5 0.15873 0.309017 0.0218 [ -[(-3)] 0.02381 0 0 2 0 Minner Mrotsboxa -[(-2)] 0.18254 0 0 2 0 Minner Mrotsboxa -[(-1)] 0.34127 0 0 2 0 Minner Mrotsboxa -[(0)] 0.5 0 0 2 0 Minner Mrotsboxa -[(1)] 0.65873 0 0 2 0 Minner Mrotsboxa -[(2)] 0.81746 0 0 2 0 Minner Mrotsboxa -[(3)] 0.97619 0 0 2 0 Minner Mrotsboxa -[(x)] 0.5 0 0 2 0 0 -1 Mouter Mrotsboxa -[(-10)] -0.0125 0.09102 1 0 0 Minner Mrotsboxa -[(-5)] -0.0125 0.20002 1 0 0 Minner Mrotsboxa -[(0)] -0.0125 0.30902 1 0 0 Minner Mrotsboxa -[(5)] -0.0125 0.41802 1 0 0 Minner Mrotsboxa -[(10)] -0.0125 0.52702 1 0 0 Minner Mrotsboxa -[(y)] -0.0125 0.30902 1 0 90 -1 0 Mouter Mrotsboxa -[ -0.001 -0.001 0 0 ] -[ 1.001 0.61903 0 0 ] -] MathScale -% Start of Graphics -1 setlinecap -1 setlinejoin -newpath -%%Object: Graphics -[ ] 0 setdash -0 setgray -gsave -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.18254 0 moveto -0.18254 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.34127 0 moveto -0.34127 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.5 0 moveto -0.5 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.65873 0 moveto -0.65873 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.81746 0 moveto -0.81746 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.09102 moveto -1 0.09102 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.20002 moveto -1 0.20002 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.30902 moveto -1 0.30902 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.41802 moveto -1 0.41802 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.52702 moveto -1 0.52702 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.02381 0 moveto -0.02381 0.00625 lineto -stroke -grestore -[(-3)] 0.02381 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.18254 0 moveto -0.18254 0.00625 lineto -stroke -grestore -[(-2)] 0.18254 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.34127 0 moveto -0.34127 0.00625 lineto -stroke -grestore -[(-1)] 0.34127 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.5 0 moveto -0.5 0.00625 lineto -stroke -grestore -[(0)] 0.5 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.65873 0 moveto -0.65873 0.00625 lineto -stroke -grestore -[(1)] 0.65873 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.81746 0 moveto -0.81746 0.00625 lineto -stroke -grestore -[(2)] 0.81746 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.97619 0 moveto -0.97619 0.00625 lineto -stroke -grestore -[(3)] 0.97619 0 0 2 0 Minner Mrotshowa -gsave -0.001 setlinewidth -0.05556 0 moveto -0.05556 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.0873 0 moveto -0.0873 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.11905 0 moveto -0.11905 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.15079 0 moveto -0.15079 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.21429 0 moveto -0.21429 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.24603 0 moveto -0.24603 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.27778 0 moveto -0.27778 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.30952 0 moveto -0.30952 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.37302 0 moveto -0.37302 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.40476 0 moveto -0.40476 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.43651 0 moveto -0.43651 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.46825 0 moveto -0.46825 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.53175 0 moveto -0.53175 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.56349 0 moveto -0.56349 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.59524 0 moveto -0.59524 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.62698 0 moveto -0.62698 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.69048 0 moveto -0.69048 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.72222 0 moveto -0.72222 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.75397 0 moveto -0.75397 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.78571 0 moveto -0.78571 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.84921 0 moveto -0.84921 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.88095 0 moveto -0.88095 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.9127 0 moveto -0.9127 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.94444 0 moveto -0.94444 0.00375 lineto -stroke -grestore -[(x)] 0.5 0 0 2 0 0 -1 Mouter Mrotshowa -gsave -0.002 setlinewidth -0 0 moveto -1 0 lineto -stroke -grestore -gsave -0.002 setlinewidth -0 0.09102 moveto -0.00625 0.09102 lineto -stroke -grestore -[(-10)] -0.0125 0.09102 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.20002 moveto -0.00625 0.20002 lineto -stroke -grestore -[(-5)] -0.0125 0.20002 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.30902 moveto -0.00625 0.30902 lineto -stroke -grestore -[(0)] -0.0125 0.30902 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.41802 moveto -0.00625 0.41802 lineto -stroke -grestore -[(5)] -0.0125 0.41802 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.52702 moveto -0.00625 0.52702 lineto -stroke -grestore -[(10)] -0.0125 0.52702 1 0 0 Minner Mrotshowa -gsave -0.001 setlinewidth -0 0.11282 moveto -0.00375 0.11282 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.13462 moveto -0.00375 0.13462 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.15642 moveto -0.00375 0.15642 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.17822 moveto -0.00375 0.17822 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.22182 moveto -0.00375 0.22182 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.24362 moveto -0.00375 0.24362 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.26542 moveto -0.00375 0.26542 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.28722 moveto -0.00375 0.28722 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.33082 moveto -0.00375 0.33082 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.35262 moveto -0.00375 0.35262 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.37442 moveto -0.00375 0.37442 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.39622 moveto -0.00375 0.39622 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.43982 moveto -0.00375 0.43982 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.46162 moveto -0.00375 0.46162 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.48342 moveto -0.00375 0.48342 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.50522 moveto -0.00375 0.50522 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.06922 moveto -0.00375 0.06922 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.04742 moveto -0.00375 0.04742 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.02562 moveto -0.00375 0.02562 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.00382 moveto -0.00375 0.00382 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.54882 moveto -0.00375 0.54882 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.57062 moveto -0.00375 0.57062 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.59242 moveto -0.00375 0.59242 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.61422 moveto -0.00375 0.61422 lineto -stroke -grestore -[(y)] -0.0125 0.30902 1 0 90 -1 0 Mouter Mrotshowa -gsave -0.002 setlinewidth -0 0 moveto -0 0.61803 lineto -stroke -grestore -grestore -gsave -gsave -0.002 setlinewidth -0.02381 0.61178 moveto -0.02381 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.18254 0.61178 moveto -0.18254 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.34127 0.61178 moveto -0.34127 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.5 0.61178 moveto -0.5 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.65873 0.61178 moveto -0.65873 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.81746 0.61178 moveto -0.81746 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.97619 0.61178 moveto -0.97619 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.05556 0.61428 moveto -0.05556 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.0873 0.61428 moveto -0.0873 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.11905 0.61428 moveto -0.11905 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.15079 0.61428 moveto -0.15079 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.21429 0.61428 moveto -0.21429 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.24603 0.61428 moveto -0.24603 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.27778 0.61428 moveto -0.27778 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.30952 0.61428 moveto -0.30952 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.37302 0.61428 moveto -0.37302 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.40476 0.61428 moveto -0.40476 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.43651 0.61428 moveto -0.43651 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.46825 0.61428 moveto -0.46825 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.53175 0.61428 moveto -0.53175 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.56349 0.61428 moveto -0.56349 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.59524 0.61428 moveto -0.59524 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.62698 0.61428 moveto -0.62698 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.69048 0.61428 moveto -0.69048 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.72222 0.61428 moveto -0.72222 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.75397 0.61428 moveto -0.75397 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.78571 0.61428 moveto -0.78571 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.84921 0.61428 moveto -0.84921 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.88095 0.61428 moveto -0.88095 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.9127 0.61428 moveto -0.9127 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.94444 0.61428 moveto -0.94444 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0 0.61803 moveto -1 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.09102 moveto -1 0.09102 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.20002 moveto -1 0.20002 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.30902 moveto -1 0.30902 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.41802 moveto -1 0.41802 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.52702 moveto -1 0.52702 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.11282 moveto -1 0.11282 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.13462 moveto -1 0.13462 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.15642 moveto -1 0.15642 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.17822 moveto -1 0.17822 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.22182 moveto -1 0.22182 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.24362 moveto -1 0.24362 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.26542 moveto -1 0.26542 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.28722 moveto -1 0.28722 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.33082 moveto -1 0.33082 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.35262 moveto -1 0.35262 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.37442 moveto -1 0.37442 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.39622 moveto -1 0.39622 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.43982 moveto -1 0.43982 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.46162 moveto -1 0.46162 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.48342 moveto -1 0.48342 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.50522 moveto -1 0.50522 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.06922 moveto -1 0.06922 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.04742 moveto -1 0.04742 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.02562 moveto -1 0.02562 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.00382 moveto -1 0.00382 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.54882 moveto -1 0.54882 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.57062 moveto -1 0.57062 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.59242 moveto -1 0.59242 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.61422 moveto -1 0.61422 lineto -stroke -grestore -gsave -0.002 setlinewidth -1 0 moveto -1 0.61803 lineto -stroke -grestore -grestore -gsave -gsave -0.002 setlinewidth -0 0.30902 moveto -1 0.30902 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.5 0 moveto -0.5 0.61803 lineto -stroke -grestore -grestore -0 0 moveto -1 0 lineto -1 0.61803 lineto -0 0.61803 lineto -closepath -clip -newpath -gsave -gsave -gsave -0.004 setlinewidth -0.02381 0.01472 moveto -0.06349 0.03924 lineto -0.10317 0.06377 lineto -0.14286 0.08829 lineto -0.18254 0.11282 lineto -0.22222 0.13734 lineto -0.2619 0.16187 lineto -0.30159 0.18639 lineto -0.34127 0.21092 lineto -0.38095 0.23544 lineto -0.42063 0.25997 lineto -0.46032 0.28449 lineto -0.5 0.30902 lineto -0.53968 0.33354 lineto -0.57937 0.35807 lineto -0.61905 0.38259 lineto -0.65873 0.40712 lineto -0.69841 0.43164 lineto -0.7381 0.45617 lineto -0.77778 0.48069 lineto -0.81746 0.50522 lineto -0.85714 0.52974 lineto -0.89683 0.55427 lineto -0.93651 0.57879 lineto -0.97619 0.60332 lineto -stroke -grestore -grestore -grestore -% End of Graphics -MathPictureEnd -end -showpage diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v2.gif deleted file mode 100755 index a7745ac90..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v3.eps deleted file mode 100755 index f0a945e64..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v3.eps +++ /dev/null @@ -1,2225 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 72.0 242.0 540.0 550.0 -%%Creator: Mathematica -%%CreationDate: Wed Aug 18 16:37:48 CDT 1993 -%%EndComments -/Mathdict 100 dict def -Mathdict begin -/Mlmarg 1.0 72 mul def -/Mrmarg 1.0 72 mul def -/Mbmarg 1.0 72 mul def -/Mtmarg 1.0 72 mul def -/Mwidth 8.5 72 mul def -/Mheight 11 72 mul def -/Mtransform { } bind def -/Mnodistort true def -/Mfixwid false def -/Mfixdash false def -/Mrot 0 def -/Mpstart { -MathPictureStart -} bind def -/Mpend { -MathPictureEnd -} bind def -/Mscale { -0 1 0 1 -5 -1 roll -MathScale -} bind def -/ISOLatin1Encoding dup where -{ pop pop } -{ -[ -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright -/parenleft /parenright /asterisk /plus /comma /minus /period /slash -/zero /one /two /three /four /five /six /seven -/eight /nine /colon /semicolon /less /equal /greater /question -/at /A /B /C /D /E /F /G -/H /I /J /K /L /M /N /O -/P /Q /R /S /T /U /V /W -/X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore -/quoteleft /a /b /c /d /e /f /g -/h /i /j /k /l /m /n /o -/p /q /r /s /t /u /v /w -/x /y /z /braceleft /bar /braceright /asciitilde /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent -/dieresis /.notdef /ring /cedilla /.notdef /hungarumlaut /ogonek /caron -/space /exclamdown /cent /sterling /currency /yen /brokenbar /section -/dieresis /copyright /ordfeminine /guillemotleft -/logicalnot /hyphen /registered /macron -/degree /plusminus /twosuperior /threesuperior -/acute /mu /paragraph /periodcentered -/cedilla /onesuperior /ordmasculine /guillemotright -/onequarter /onehalf /threequarters /questiondown -/Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla -/Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis -/Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply -/Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls -/agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla -/egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis -/eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide -/oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis -] def -} ifelse -/MFontDict 50 dict def -/MStrCat -{ -exch -dup length -2 index length add -string -dup 3 1 roll -copy -length -exch dup -4 2 roll exch -putinterval -} def -/MCreateEncoding -{ -1 index -255 string cvs -(-) MStrCat -1 index MStrCat -cvn exch -(Encoding) MStrCat -cvn dup where -{ -exch get -} -{ -pop -StandardEncoding -} ifelse -3 1 roll -dup MFontDict exch known not -{ -1 index findfont -dup length dict -begin -{1 index /FID ne -{def} -{pop pop} -ifelse} forall -/Encoding 3 index -def -currentdict -end -1 index exch definefont pop -MFontDict 1 index -null put -} -if -exch pop -exch pop -} def -/ISOLatin1 { (ISOLatin1) MCreateEncoding } def -/ISO8859 { (ISOLatin1) MCreateEncoding } def -/Mcopyfont { -dup -maxlength -dict -exch -{ -1 index -/FID -eq -{ -pop pop -} -{ -2 index -3 1 roll -put -} -ifelse -} -forall -} def -/Plain /Courier findfont Mcopyfont definefont pop -/Bold /Courier-Bold findfont Mcopyfont definefont pop -/Italic /Courier-Oblique findfont Mcopyfont definefont pop -/MathPictureStart { -gsave -Mtransform -Mlmarg -Mbmarg -translate -/Mtmatrix -matrix currentmatrix -def -/Mgmatrix -matrix currentmatrix -def -} bind def -/MathPictureEnd { -grestore -} bind def -/MathSubStart { -Momatrix -Mgmatrix Mtmatrix -Mlmarg Mrmarg -Mbmarg Mtmarg -Mwidth Mheight -11 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -Mgmatrix setmatrix -13 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -2 copy translate -/Mtmatrix matrix currentmatrix def -/Mlmarg 0 def -/Mrmarg 0 def -/Mbmarg 0 def -/Mtmarg 0 def -3 -1 roll -exch sub -/Mheight exch def -sub -/Mwidth exch def -} bind def -/MathSubEnd { -/Mheight exch def -/Mwidth exch def -/Mtmarg exch def -/Mbmarg exch def -/Mrmarg exch def -/Mlmarg exch def -/Mtmatrix exch def -dup setmatrix -/Mgmatrix exch def -/Momatrix exch def -} bind def -/Mdot { -moveto -0 0 rlineto -stroke -} bind def -/Mtetra { -moveto -lineto -lineto -lineto -fill -} bind def -/Metetra { -moveto -lineto -lineto -lineto -closepath -gsave -fill -grestore -0 setgray -stroke -} bind def -/Mistroke { -flattenpath -0 0 0 -{ -4 2 roll -pop pop -} -{ -4 -1 roll -2 index -sub dup mul -4 -1 roll -2 index -sub dup mul -add sqrt -4 -1 roll -add -3 1 roll -} -{ -stop -} -{ -stop -} -pathforall -pop pop -currentpoint -stroke -moveto -currentdash -3 -1 roll -add -setdash -} bind def -/Mfstroke { -stroke -currentdash -pop 0 -setdash -} bind def -/Mrotsboxa { -gsave -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -grestore -Msboxa -3 -1 roll -/Mtmatrix -exch def -/Mrot -0 def -} bind def -/Msboxa { -newpath -5 -1 roll -Mvboxa -pop -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Msboxa1 -5 -3 roll -Msboxa1 -Mboxrot -[ -7 -2 roll -2 copy -[ -3 1 roll -10 -1 roll -9 -1 roll -] -6 1 roll -5 -2 roll -] -} bind def -/Msboxa1 { -sub -2 div -dup -2 index -1 add -mul -3 -1 roll --1 add -3 -1 roll -mul -} bind def -/Mvboxa { -Mfixwid -{ -Mvboxa1 -} -{ -dup -Mwidthcal -0 exch -{ -add -} -forall -exch -Mvboxa1 -4 index -7 -1 roll -add -4 -1 roll -pop -3 1 roll -} -ifelse -} bind def -/Mvboxa1 { -gsave -newpath -[ true -3 -1 roll -{ -Mbbox -5 -1 roll -{ -0 -5 1 roll -} -{ -7 -1 roll -exch sub -(m) stringwidth pop -.3 mul -sub -7 1 roll -6 -1 roll -4 -1 roll -Mmin -3 -1 roll -5 index -add -5 -1 roll -4 -1 roll -Mmax -4 -1 roll -} -ifelse -false -} -forall -{ stop } if -counttomark -1 add -4 roll -] -grestore -} bind def -/Mbbox { -1 dict begin -0 0 moveto -/temp (T) def -{ gsave -currentpoint newpath moveto -temp 0 3 -1 roll put temp -false charpath flattenpath currentpoint -pathbbox -grestore moveto lineto moveto} forall -pathbbox -newpath -end -} bind def -/Mmin { -2 copy -gt -{ exch } if -pop -} bind def -/Mmax { -2 copy -lt -{ exch } if -pop -} bind def -/Mrotshowa { -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -Mgmatrix setmatrix -Mshowa -/Mtmatrix -exch def -/Mrot 0 def -} bind def -/Mshowa { -4 -2 roll -moveto -2 index -Mtmatrix setmatrix -Mvboxa -7 1 roll -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Mshowa1 -4 1 roll -Mshowa1 -rmoveto -currentpoint -Mfixwid -{ -Mshowax -} -{ -Mshoway -} -ifelse -pop pop pop pop -Mgmatrix setmatrix -} bind def -/Mshowax { -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -Mfixdash -{ -Mfixdashp -} -if -show -} for -} bind def -/Mfixdashp { -dup -length -1 -gt -1 index -true exch -{ -45 -eq -and -} forall -and -{ -gsave -(--) -stringwidth pop -(-) -stringwidth pop -sub -2 div -0 rmoveto -dup -length -1 sub -{ -(-) -show -} -repeat -grestore -} -if -} bind def -/Mshoway { -3 index -Mwidthcal -5 1 roll -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -[ -6 index -aload -length -2 add --1 roll -{ -pop -Strform -stringwidth -pop -neg -exch -add -0 rmoveto -} -exch -kshow -cleartomark -} for -pop -} bind def -/Mwidthcal { -[ -exch -{ -Mwidthcal1 -} -forall -] -[ -exch -dup -Maxlen --1 add -0 1 -3 -1 roll -{ -[ -exch -2 index -{ -1 index -Mget -exch -} -forall -pop -Maxget -exch -} -for -pop -] -Mreva -} bind def -/Mreva { -[ -exch -aload -length --1 1 -{1 roll} -for -] -} bind def -/Mget { -1 index -length --1 add -1 index -ge -{ -get -} -{ -pop pop -0 -} -ifelse -} bind def -/Maxlen { -[ -exch -{ -length -} -forall -Maxget -} bind def -/Maxget { -counttomark --1 add -1 1 -3 -1 roll -{ -pop -Mmax -} -for -exch -pop -} bind def -/Mwidthcal1 { -[ -exch -{ -Strform -stringwidth -pop -} -forall -] -} bind def -/Strform { -/tem (x) def -tem 0 -3 -1 roll -put -tem -} bind def -/Mshowa1 { -2 copy -add -4 1 roll -sub -mul -sub --2 div -} bind def -/MathScale { -Mwidth -Mlmarg Mrmarg add -sub -Mheight -Mbmarg Mtmarg add -sub -0 0 moveto -1 index 0 -lineto -2 copy -lineto -0 1 index -lineto -clip newpath -Mlp -translate -dup -/Mathabs -exch def -scale -/yscale exch def -/ybias exch def -/xscale exch def -/xbias exch def -/Momatrix -xscale yscale matrix scale -xbias ybias matrix translate -matrix concatmatrix def -/Mgmatrix -matrix currentmatrix -def -} bind def -/Mlp { -3 copy -Mlpfirst -{ -Mnodistort -{ -Mmin -dup -} if -4 index -2 index -2 index -Mlprun -11 index -11 -1 roll -10 -4 roll -Mlp1 -8 index -9 -5 roll -Mlp1 -4 -1 roll -and -{ exit } if -3 -1 roll -pop pop -} loop -exch -3 1 roll -7 -3 roll -pop pop pop -} bind def -/Mlpfirst { -3 -1 roll -dup length -2 copy --2 add -get -aload -pop pop pop -4 -2 roll --1 add -get -aload -pop pop pop -6 -1 roll -3 -1 roll -5 -1 roll -sub -div -4 1 roll -exch sub -div -} bind def -/Mlprun { -2 copy -4 index -0 get -dup -4 1 roll -Mlprun1 -3 copy -8 -2 roll -9 -1 roll -{ -3 copy -Mlprun1 -3 copy -11 -3 roll -/gt Mlpminmax -8 3 roll -11 -3 roll -/lt Mlpminmax -8 3 roll -} forall -pop pop pop pop -3 1 roll -pop pop -aload pop -5 -1 roll -aload pop -exch -6 -1 roll -Mlprun2 -8 2 roll -4 -1 roll -Mlprun2 -6 2 roll -3 -1 roll -Mlprun2 -4 2 roll -exch -Mlprun2 -6 2 roll -} bind def -/Mlprun1 { -aload pop -exch -6 -1 roll -5 -1 roll -mul add -4 -2 roll -mul -3 -1 roll -add -} bind def -/Mlprun2 { -2 copy -add 2 div -3 1 roll -exch sub -} bind def -/Mlpminmax { -cvx -2 index -6 index -2 index -exec -{ -7 -3 roll -4 -1 roll -} if -1 index -5 index -3 -1 roll -exec -{ -4 1 roll -pop -5 -1 roll -aload -pop pop -4 -1 roll -aload pop -[ -8 -2 roll -pop -5 -2 roll -pop -6 -2 roll -pop -5 -1 roll -] -4 1 roll -pop -} -{ -pop pop pop -} ifelse -} bind def -/Mlp1 { -5 index -3 index sub -5 index -2 index mul -1 index -le -1 index -0 le -or -dup -not -{ -1 index -3 index div -.99999 mul -8 -1 roll -pop -7 1 roll -} -if -8 -1 roll -2 div -7 -2 roll -pop sub -5 index -6 -3 roll -pop pop -mul sub -exch -} bind def -/intop 0 def -/inrht 0 def -/inflag 0 def -/outflag 0 def -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -/Minner { -outflag -1 -eq -{ -/outflag 0 def -/intop 0 def -/inrht 0 def -} if -5 index -gsave -Mtmatrix setmatrix -Mvboxa pop -grestore -3 -1 roll -pop -dup -intop -gt -{ -/intop -exch def -} -{ pop } -ifelse -dup -inrht -gt -{ -/inrht -exch def -} -{ pop } -ifelse -pop -/inflag -1 def -} bind def -/Mouter { -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -inflag -1 eq -{ -dup -0 lt -{ -dup -intop -mul -neg -/yadtop -exch def -} if -dup -0 gt -{ -dup -intop -mul -/yadbot -exch def -} -if -pop -dup -0 lt -{ -dup -inrht -mul -neg -/xadrht -exch def -} if -dup -0 gt -{ -dup -inrht -mul -/xadlft -exch def -} if -pop -/outflag 1 def -} -{ pop pop} -ifelse -/inflag 0 def -/inrht 0 def -/intop 0 def -} bind def -/Mboxout { -outflag -1 -eq -{ -4 -1 -roll -xadlft -leadjust -add -sub -4 1 roll -3 -1 -roll -yadbot -leadjust -add -sub -3 1 -roll -exch -xadrht -leadjust -add -add -exch -yadtop -leadjust -add -add -/outflag 0 def -/xadlft 0 def -/yadbot 0 def -/xadrht 0 def -/yadtop 0 def -} if -} bind def -/leadjust { -(m) stringwidth pop -.5 mul -} bind def -/Mrotcheck { -dup -90 -eq -{ -yadbot -/yadbot -xadrht -def -/xadrht -yadtop -def -/yadtop -xadlft -def -/xadlft -exch -def -} -if -dup -cos -1 index -sin -Checkaux -dup -cos -1 index -sin neg -exch -Checkaux -3 1 roll -pop pop -} bind def -/Checkaux { -4 index -exch -4 index -mul -3 1 roll -mul add -4 1 roll -} bind def -/Mboxrot { -Mrot -90 eq -{ -brotaux -4 2 -roll -} -if -Mrot -180 eq -{ -4 2 -roll -brotaux -4 2 -roll -brotaux -} -if -Mrot -270 eq -{ -4 2 -roll -brotaux -} -if -} bind def -/brotaux { -neg -exch -neg -} bind def -/Mabswid { -Mathabs -div -setlinewidth -} bind def -/Mabsdash { -exch -Mathabs -[ -3 1 roll -exch -{ -exch -dup -3 -1 roll -exch -div -exch -} -forall -pop ] -exch -setdash -} bind def -/MBeginOrig { Momatrix concat} bind def -/MEndOrig { Mgmatrix setmatrix} bind def -/colorimage where -{ pop } -{ -/colorimage { -3 1 roll -pop pop -5 -1 roll -mul -4 1 roll -{ -currentfile -1 index -readhexstring -pop } -image -} bind def -} ifelse -/sampledsound where -{ pop} -{ /sampledsound { -exch -pop -exch -5 1 roll -mul -4 idiv -mul -2 idiv -exch pop -exch -/Mtempproc exch def -{ Mtempproc pop} -repeat -} bind def -} ifelse -/setcmykcolor where -{ pop} -{ /setcmykcolor { -4 1 -roll -[ -4 1 -roll -] -{ -1 index -sub -1 -sub neg -dup -0 -lt -{ -pop -0 -} -if -dup -1 -gt -{ -pop -1 -} -if -exch -} forall -pop -setrgbcolor -} bind def -} ifelse -%%AspectRatio: 0.61803 -MathPictureStart -/Courier-Oblique findfont 17 scalefont setfont -% Scaling calculations -0.5 0.15873 0.309017 0.017518 [ -[(-3)] 0.02381 0 0 2 0 Minner Mrotsboxa -[(-2)] 0.18254 0 0 2 0 Minner Mrotsboxa -[(-1)] 0.34127 0 0 2 0 Minner Mrotsboxa -[(0)] 0.5 0 0 2 0 Minner Mrotsboxa -[(1)] 0.65873 0 0 2 0 Minner Mrotsboxa -[(2)] 0.81746 0 0 2 0 Minner Mrotsboxa -[(3)] 0.97619 0 0 2 0 Minner Mrotsboxa -[(x)] 0.5 0 0 2 0 0 -1 Mouter Mrotsboxa -[(-15)] -0.0125 0.04625 1 0 0 Minner Mrotsboxa -[(-10)] -0.0125 0.13384 1 0 0 Minner Mrotsboxa -[(-5)] -0.0125 0.22143 1 0 0 Minner Mrotsboxa -[(0)] -0.0125 0.30902 1 0 0 Minner Mrotsboxa -[(5)] -0.0125 0.39661 1 0 0 Minner Mrotsboxa -[(10)] -0.0125 0.4842 1 0 0 Minner Mrotsboxa -[(15)] -0.0125 0.57179 1 0 0 Minner Mrotsboxa -[(y)] -0.0125 0.30902 1 0 90 -1 0 Mouter Mrotsboxa -[ -0.001 -0.001 0 0 ] -[ 1.001 0.61903 0 0 ] -] MathScale -% Start of Graphics -1 setlinecap -1 setlinejoin -newpath -%%Object: Graphics -[ ] 0 setdash -0 setgray -gsave -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.18254 0 moveto -0.18254 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.34127 0 moveto -0.34127 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.5 0 moveto -0.5 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.65873 0 moveto -0.65873 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.81746 0 moveto -0.81746 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.04625 moveto -1 0.04625 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.13384 moveto -1 0.13384 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.22143 moveto -1 0.22143 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.30902 moveto -1 0.30902 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.39661 moveto -1 0.39661 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.4842 moveto -1 0.4842 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.57179 moveto -1 0.57179 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.02381 0 moveto -0.02381 0.00625 lineto -stroke -grestore -[(-3)] 0.02381 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.18254 0 moveto -0.18254 0.00625 lineto -stroke -grestore -[(-2)] 0.18254 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.34127 0 moveto -0.34127 0.00625 lineto -stroke -grestore -[(-1)] 0.34127 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.5 0 moveto -0.5 0.00625 lineto -stroke -grestore -[(0)] 0.5 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.65873 0 moveto -0.65873 0.00625 lineto -stroke -grestore -[(1)] 0.65873 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.81746 0 moveto -0.81746 0.00625 lineto -stroke -grestore -[(2)] 0.81746 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.97619 0 moveto -0.97619 0.00625 lineto -stroke -grestore -[(3)] 0.97619 0 0 2 0 Minner Mrotshowa -gsave -0.001 setlinewidth -0.05556 0 moveto -0.05556 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.0873 0 moveto -0.0873 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.11905 0 moveto -0.11905 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.15079 0 moveto -0.15079 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.21429 0 moveto -0.21429 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.24603 0 moveto -0.24603 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.27778 0 moveto -0.27778 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.30952 0 moveto -0.30952 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.37302 0 moveto -0.37302 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.40476 0 moveto -0.40476 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.43651 0 moveto -0.43651 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.46825 0 moveto -0.46825 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.53175 0 moveto -0.53175 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.56349 0 moveto -0.56349 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.59524 0 moveto -0.59524 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.62698 0 moveto -0.62698 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.69048 0 moveto -0.69048 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.72222 0 moveto -0.72222 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.75397 0 moveto -0.75397 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.78571 0 moveto -0.78571 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.84921 0 moveto -0.84921 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.88095 0 moveto -0.88095 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.9127 0 moveto -0.9127 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.94444 0 moveto -0.94444 0.00375 lineto -stroke -grestore -[(x)] 0.5 0 0 2 0 0 -1 Mouter Mrotshowa -gsave -0.002 setlinewidth -0 0 moveto -1 0 lineto -stroke -grestore -gsave -0.002 setlinewidth -0 0.04625 moveto -0.00625 0.04625 lineto -stroke -grestore -[(-15)] -0.0125 0.04625 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.13384 moveto -0.00625 0.13384 lineto -stroke -grestore -[(-10)] -0.0125 0.13384 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.22143 moveto -0.00625 0.22143 lineto -stroke -grestore -[(-5)] -0.0125 0.22143 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.30902 moveto -0.00625 0.30902 lineto -stroke -grestore -[(0)] -0.0125 0.30902 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.39661 moveto -0.00625 0.39661 lineto -stroke -grestore -[(5)] -0.0125 0.39661 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.4842 moveto -0.00625 0.4842 lineto -stroke -grestore -[(10)] -0.0125 0.4842 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.57179 moveto -0.00625 0.57179 lineto -stroke -grestore -[(15)] -0.0125 0.57179 1 0 0 Minner Mrotshowa -gsave -0.001 setlinewidth -0 0.06377 moveto -0.00375 0.06377 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.08128 moveto -0.00375 0.08128 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.0988 moveto -0.00375 0.0988 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.11632 moveto -0.00375 0.11632 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.15136 moveto -0.00375 0.15136 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.16887 moveto -0.00375 0.16887 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.18639 moveto -0.00375 0.18639 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.20391 moveto -0.00375 0.20391 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.23895 moveto -0.00375 0.23895 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.25646 moveto -0.00375 0.25646 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.27398 moveto -0.00375 0.27398 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.2915 moveto -0.00375 0.2915 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.32653 moveto -0.00375 0.32653 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.34405 moveto -0.00375 0.34405 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.36157 moveto -0.00375 0.36157 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.37909 moveto -0.00375 0.37909 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.41412 moveto -0.00375 0.41412 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.43164 moveto -0.00375 0.43164 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.44916 moveto -0.00375 0.44916 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.46668 moveto -0.00375 0.46668 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.50171 moveto -0.00375 0.50171 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.51923 moveto -0.00375 0.51923 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.53675 moveto -0.00375 0.53675 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.55427 moveto -0.00375 0.55427 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.02873 moveto -0.00375 0.02873 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.01121 moveto -0.00375 0.01121 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.5893 moveto -0.00375 0.5893 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.60682 moveto -0.00375 0.60682 lineto -stroke -grestore -[(y)] -0.0125 0.30902 1 0 90 -1 0 Mouter Mrotshowa -gsave -0.002 setlinewidth -0 0 moveto -0 0.61803 lineto -stroke -grestore -grestore -gsave -gsave -0.002 setlinewidth -0.02381 0.61178 moveto -0.02381 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.18254 0.61178 moveto -0.18254 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.34127 0.61178 moveto -0.34127 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.5 0.61178 moveto -0.5 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.65873 0.61178 moveto -0.65873 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.81746 0.61178 moveto -0.81746 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.97619 0.61178 moveto -0.97619 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.05556 0.61428 moveto -0.05556 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.0873 0.61428 moveto -0.0873 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.11905 0.61428 moveto -0.11905 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.15079 0.61428 moveto -0.15079 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.21429 0.61428 moveto -0.21429 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.24603 0.61428 moveto -0.24603 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.27778 0.61428 moveto -0.27778 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.30952 0.61428 moveto -0.30952 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.37302 0.61428 moveto -0.37302 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.40476 0.61428 moveto -0.40476 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.43651 0.61428 moveto -0.43651 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.46825 0.61428 moveto -0.46825 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.53175 0.61428 moveto -0.53175 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.56349 0.61428 moveto -0.56349 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.59524 0.61428 moveto -0.59524 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.62698 0.61428 moveto -0.62698 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.69048 0.61428 moveto -0.69048 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.72222 0.61428 moveto -0.72222 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.75397 0.61428 moveto -0.75397 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.78571 0.61428 moveto -0.78571 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.84921 0.61428 moveto -0.84921 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.88095 0.61428 moveto -0.88095 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.9127 0.61428 moveto -0.9127 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.94444 0.61428 moveto -0.94444 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0 0.61803 moveto -1 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.04625 moveto -1 0.04625 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.13384 moveto -1 0.13384 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.22143 moveto -1 0.22143 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.30902 moveto -1 0.30902 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.39661 moveto -1 0.39661 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.4842 moveto -1 0.4842 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.57179 moveto -1 0.57179 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.06377 moveto -1 0.06377 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.08128 moveto -1 0.08128 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.0988 moveto -1 0.0988 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.11632 moveto -1 0.11632 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.15136 moveto -1 0.15136 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.16887 moveto -1 0.16887 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.18639 moveto -1 0.18639 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.20391 moveto -1 0.20391 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.23895 moveto -1 0.23895 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.25646 moveto -1 0.25646 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.27398 moveto -1 0.27398 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.2915 moveto -1 0.2915 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.32653 moveto -1 0.32653 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.34405 moveto -1 0.34405 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.36157 moveto -1 0.36157 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.37909 moveto -1 0.37909 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.41412 moveto -1 0.41412 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.43164 moveto -1 0.43164 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.44916 moveto -1 0.44916 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.46668 moveto -1 0.46668 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.50171 moveto -1 0.50171 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.51923 moveto -1 0.51923 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.53675 moveto -1 0.53675 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.55427 moveto -1 0.55427 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.02873 moveto -1 0.02873 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.01121 moveto -1 0.01121 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.5893 moveto -1 0.5893 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.60682 moveto -1 0.60682 lineto -stroke -grestore -gsave -0.002 setlinewidth -1 0 moveto -1 0.61803 lineto -stroke -grestore -grestore -gsave -gsave -0.002 setlinewidth -0 0.30902 moveto -1 0.30902 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.5 0 moveto -0.5 0.61803 lineto -stroke -grestore -grestore -0 0 moveto -1 0 lineto -1 0.61803 lineto -0 0.61803 lineto -closepath -clip -newpath -gsave -gsave -gsave -0.004 setlinewidth -0.02381 0.01472 moveto -0.06349 0.03924 lineto -0.10317 0.06377 lineto -0.14286 0.08829 lineto -0.18254 0.11282 lineto -0.22222 0.13734 lineto -0.2619 0.16187 lineto -0.30159 0.18639 lineto -0.34127 0.21092 lineto -0.38095 0.23544 lineto -0.42063 0.25997 lineto -0.46032 0.28449 lineto -0.5 0.30902 lineto -0.53968 0.33354 lineto -0.57937 0.35807 lineto -0.61905 0.38259 lineto -0.65873 0.40712 lineto -0.69841 0.43164 lineto -0.7381 0.45617 lineto -0.77778 0.48069 lineto -0.81746 0.50522 lineto -0.85714 0.52974 lineto -0.89683 0.55427 lineto -0.93651 0.57879 lineto -0.97619 0.60332 lineto -stroke -grestore -grestore -grestore -% End of Graphics -MathPictureEnd -end -showpage diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v3.gif deleted file mode 100755 index 48f3e9cdd..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v4.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v4.eps deleted file mode 100755 index b5bd5cf62..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v4.eps +++ /dev/null @@ -1,2275 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 72.0 242.0 540.0 550.0 -%%Creator: Mathematica -%%CreationDate: Wed Aug 18 16:41:50 CDT 1993 -%%EndComments -/Mathdict 100 dict def -Mathdict begin -/Mlmarg 1.0 72 mul def -/Mrmarg 1.0 72 mul def -/Mbmarg 1.0 72 mul def -/Mtmarg 1.0 72 mul def -/Mwidth 8.5 72 mul def -/Mheight 11 72 mul def -/Mtransform { } bind def -/Mnodistort true def -/Mfixwid false def -/Mfixdash false def -/Mrot 0 def -/Mpstart { -MathPictureStart -} bind def -/Mpend { -MathPictureEnd -} bind def -/Mscale { -0 1 0 1 -5 -1 roll -MathScale -} bind def -/ISOLatin1Encoding dup where -{ pop pop } -{ -[ -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright -/parenleft /parenright /asterisk /plus /comma /minus /period /slash -/zero /one /two /three /four /five /six /seven -/eight /nine /colon /semicolon /less /equal /greater /question -/at /A /B /C /D /E /F /G -/H /I /J /K /L /M /N /O -/P /Q /R /S /T /U /V /W -/X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore -/quoteleft /a /b /c /d /e /f /g -/h /i /j /k /l /m /n /o -/p /q /r /s /t /u /v /w -/x /y /z /braceleft /bar /braceright /asciitilde /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent -/dieresis /.notdef /ring /cedilla /.notdef /hungarumlaut /ogonek /caron -/space /exclamdown /cent /sterling /currency /yen /brokenbar /section -/dieresis /copyright /ordfeminine /guillemotleft -/logicalnot /hyphen /registered /macron -/degree /plusminus /twosuperior /threesuperior -/acute /mu /paragraph /periodcentered -/cedilla /onesuperior /ordmasculine /guillemotright -/onequarter /onehalf /threequarters /questiondown -/Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla -/Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis -/Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply -/Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls -/agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla -/egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis -/eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide -/oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis -] def -} ifelse -/MFontDict 50 dict def -/MStrCat -{ -exch -dup length -2 index length add -string -dup 3 1 roll -copy -length -exch dup -4 2 roll exch -putinterval -} def -/MCreateEncoding -{ -1 index -255 string cvs -(-) MStrCat -1 index MStrCat -cvn exch -(Encoding) MStrCat -cvn dup where -{ -exch get -} -{ -pop -StandardEncoding -} ifelse -3 1 roll -dup MFontDict exch known not -{ -1 index findfont -dup length dict -begin -{1 index /FID ne -{def} -{pop pop} -ifelse} forall -/Encoding 3 index -def -currentdict -end -1 index exch definefont pop -MFontDict 1 index -null put -} -if -exch pop -exch pop -} def -/ISOLatin1 { (ISOLatin1) MCreateEncoding } def -/ISO8859 { (ISOLatin1) MCreateEncoding } def -/Mcopyfont { -dup -maxlength -dict -exch -{ -1 index -/FID -eq -{ -pop pop -} -{ -2 index -3 1 roll -put -} -ifelse -} -forall -} def -/Plain /Courier findfont Mcopyfont definefont pop -/Bold /Courier-Bold findfont Mcopyfont definefont pop -/Italic /Courier-Oblique findfont Mcopyfont definefont pop -/MathPictureStart { -gsave -Mtransform -Mlmarg -Mbmarg -translate -/Mtmatrix -matrix currentmatrix -def -/Mgmatrix -matrix currentmatrix -def -} bind def -/MathPictureEnd { -grestore -} bind def -/MathSubStart { -Momatrix -Mgmatrix Mtmatrix -Mlmarg Mrmarg -Mbmarg Mtmarg -Mwidth Mheight -11 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -Mgmatrix setmatrix -13 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -2 copy translate -/Mtmatrix matrix currentmatrix def -/Mlmarg 0 def -/Mrmarg 0 def -/Mbmarg 0 def -/Mtmarg 0 def -3 -1 roll -exch sub -/Mheight exch def -sub -/Mwidth exch def -} bind def -/MathSubEnd { -/Mheight exch def -/Mwidth exch def -/Mtmarg exch def -/Mbmarg exch def -/Mrmarg exch def -/Mlmarg exch def -/Mtmatrix exch def -dup setmatrix -/Mgmatrix exch def -/Momatrix exch def -} bind def -/Mdot { -moveto -0 0 rlineto -stroke -} bind def -/Mtetra { -moveto -lineto -lineto -lineto -fill -} bind def -/Metetra { -moveto -lineto -lineto -lineto -closepath -gsave -fill -grestore -0 setgray -stroke -} bind def -/Mistroke { -flattenpath -0 0 0 -{ -4 2 roll -pop pop -} -{ -4 -1 roll -2 index -sub dup mul -4 -1 roll -2 index -sub dup mul -add sqrt -4 -1 roll -add -3 1 roll -} -{ -stop -} -{ -stop -} -pathforall -pop pop -currentpoint -stroke -moveto -currentdash -3 -1 roll -add -setdash -} bind def -/Mfstroke { -stroke -currentdash -pop 0 -setdash -} bind def -/Mrotsboxa { -gsave -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -grestore -Msboxa -3 -1 roll -/Mtmatrix -exch def -/Mrot -0 def -} bind def -/Msboxa { -newpath -5 -1 roll -Mvboxa -pop -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Msboxa1 -5 -3 roll -Msboxa1 -Mboxrot -[ -7 -2 roll -2 copy -[ -3 1 roll -10 -1 roll -9 -1 roll -] -6 1 roll -5 -2 roll -] -} bind def -/Msboxa1 { -sub -2 div -dup -2 index -1 add -mul -3 -1 roll --1 add -3 -1 roll -mul -} bind def -/Mvboxa { -Mfixwid -{ -Mvboxa1 -} -{ -dup -Mwidthcal -0 exch -{ -add -} -forall -exch -Mvboxa1 -4 index -7 -1 roll -add -4 -1 roll -pop -3 1 roll -} -ifelse -} bind def -/Mvboxa1 { -gsave -newpath -[ true -3 -1 roll -{ -Mbbox -5 -1 roll -{ -0 -5 1 roll -} -{ -7 -1 roll -exch sub -(m) stringwidth pop -.3 mul -sub -7 1 roll -6 -1 roll -4 -1 roll -Mmin -3 -1 roll -5 index -add -5 -1 roll -4 -1 roll -Mmax -4 -1 roll -} -ifelse -false -} -forall -{ stop } if -counttomark -1 add -4 roll -] -grestore -} bind def -/Mbbox { -1 dict begin -0 0 moveto -/temp (T) def -{ gsave -currentpoint newpath moveto -temp 0 3 -1 roll put temp -false charpath flattenpath currentpoint -pathbbox -grestore moveto lineto moveto} forall -pathbbox -newpath -end -} bind def -/Mmin { -2 copy -gt -{ exch } if -pop -} bind def -/Mmax { -2 copy -lt -{ exch } if -pop -} bind def -/Mrotshowa { -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -Mgmatrix setmatrix -Mshowa -/Mtmatrix -exch def -/Mrot 0 def -} bind def -/Mshowa { -4 -2 roll -moveto -2 index -Mtmatrix setmatrix -Mvboxa -7 1 roll -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Mshowa1 -4 1 roll -Mshowa1 -rmoveto -currentpoint -Mfixwid -{ -Mshowax -} -{ -Mshoway -} -ifelse -pop pop pop pop -Mgmatrix setmatrix -} bind def -/Mshowax { -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -Mfixdash -{ -Mfixdashp -} -if -show -} for -} bind def -/Mfixdashp { -dup -length -1 -gt -1 index -true exch -{ -45 -eq -and -} forall -and -{ -gsave -(--) -stringwidth pop -(-) -stringwidth pop -sub -2 div -0 rmoveto -dup -length -1 sub -{ -(-) -show -} -repeat -grestore -} -if -} bind def -/Mshoway { -3 index -Mwidthcal -5 1 roll -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -[ -6 index -aload -length -2 add --1 roll -{ -pop -Strform -stringwidth -pop -neg -exch -add -0 rmoveto -} -exch -kshow -cleartomark -} for -pop -} bind def -/Mwidthcal { -[ -exch -{ -Mwidthcal1 -} -forall -] -[ -exch -dup -Maxlen --1 add -0 1 -3 -1 roll -{ -[ -exch -2 index -{ -1 index -Mget -exch -} -forall -pop -Maxget -exch -} -for -pop -] -Mreva -} bind def -/Mreva { -[ -exch -aload -length --1 1 -{1 roll} -for -] -} bind def -/Mget { -1 index -length --1 add -1 index -ge -{ -get -} -{ -pop pop -0 -} -ifelse -} bind def -/Maxlen { -[ -exch -{ -length -} -forall -Maxget -} bind def -/Maxget { -counttomark --1 add -1 1 -3 -1 roll -{ -pop -Mmax -} -for -exch -pop -} bind def -/Mwidthcal1 { -[ -exch -{ -Strform -stringwidth -pop -} -forall -] -} bind def -/Strform { -/tem (x) def -tem 0 -3 -1 roll -put -tem -} bind def -/Mshowa1 { -2 copy -add -4 1 roll -sub -mul -sub --2 div -} bind def -/MathScale { -Mwidth -Mlmarg Mrmarg add -sub -Mheight -Mbmarg Mtmarg add -sub -0 0 moveto -1 index 0 -lineto -2 copy -lineto -0 1 index -lineto -clip newpath -Mlp -translate -dup -/Mathabs -exch def -scale -/yscale exch def -/ybias exch def -/xscale exch def -/xbias exch def -/Momatrix -xscale yscale matrix scale -xbias ybias matrix translate -matrix concatmatrix def -/Mgmatrix -matrix currentmatrix -def -} bind def -/Mlp { -3 copy -Mlpfirst -{ -Mnodistort -{ -Mmin -dup -} if -4 index -2 index -2 index -Mlprun -11 index -11 -1 roll -10 -4 roll -Mlp1 -8 index -9 -5 roll -Mlp1 -4 -1 roll -and -{ exit } if -3 -1 roll -pop pop -} loop -exch -3 1 roll -7 -3 roll -pop pop pop -} bind def -/Mlpfirst { -3 -1 roll -dup length -2 copy --2 add -get -aload -pop pop pop -4 -2 roll --1 add -get -aload -pop pop pop -6 -1 roll -3 -1 roll -5 -1 roll -sub -div -4 1 roll -exch sub -div -} bind def -/Mlprun { -2 copy -4 index -0 get -dup -4 1 roll -Mlprun1 -3 copy -8 -2 roll -9 -1 roll -{ -3 copy -Mlprun1 -3 copy -11 -3 roll -/gt Mlpminmax -8 3 roll -11 -3 roll -/lt Mlpminmax -8 3 roll -} forall -pop pop pop pop -3 1 roll -pop pop -aload pop -5 -1 roll -aload pop -exch -6 -1 roll -Mlprun2 -8 2 roll -4 -1 roll -Mlprun2 -6 2 roll -3 -1 roll -Mlprun2 -4 2 roll -exch -Mlprun2 -6 2 roll -} bind def -/Mlprun1 { -aload pop -exch -6 -1 roll -5 -1 roll -mul add -4 -2 roll -mul -3 -1 roll -add -} bind def -/Mlprun2 { -2 copy -add 2 div -3 1 roll -exch sub -} bind def -/Mlpminmax { -cvx -2 index -6 index -2 index -exec -{ -7 -3 roll -4 -1 roll -} if -1 index -5 index -3 -1 roll -exec -{ -4 1 roll -pop -5 -1 roll -aload -pop pop -4 -1 roll -aload pop -[ -8 -2 roll -pop -5 -2 roll -pop -6 -2 roll -pop -5 -1 roll -] -4 1 roll -pop -} -{ -pop pop pop -} ifelse -} bind def -/Mlp1 { -5 index -3 index sub -5 index -2 index mul -1 index -le -1 index -0 le -or -dup -not -{ -1 index -3 index div -.99999 mul -8 -1 roll -pop -7 1 roll -} -if -8 -1 roll -2 div -7 -2 roll -pop sub -5 index -6 -3 roll -pop pop -mul sub -exch -} bind def -/intop 0 def -/inrht 0 def -/inflag 0 def -/outflag 0 def -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -/Minner { -outflag -1 -eq -{ -/outflag 0 def -/intop 0 def -/inrht 0 def -} if -5 index -gsave -Mtmatrix setmatrix -Mvboxa pop -grestore -3 -1 roll -pop -dup -intop -gt -{ -/intop -exch def -} -{ pop } -ifelse -dup -inrht -gt -{ -/inrht -exch def -} -{ pop } -ifelse -pop -/inflag -1 def -} bind def -/Mouter { -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -inflag -1 eq -{ -dup -0 lt -{ -dup -intop -mul -neg -/yadtop -exch def -} if -dup -0 gt -{ -dup -intop -mul -/yadbot -exch def -} -if -pop -dup -0 lt -{ -dup -inrht -mul -neg -/xadrht -exch def -} if -dup -0 gt -{ -dup -inrht -mul -/xadlft -exch def -} if -pop -/outflag 1 def -} -{ pop pop} -ifelse -/inflag 0 def -/inrht 0 def -/intop 0 def -} bind def -/Mboxout { -outflag -1 -eq -{ -4 -1 -roll -xadlft -leadjust -add -sub -4 1 roll -3 -1 -roll -yadbot -leadjust -add -sub -3 1 -roll -exch -xadrht -leadjust -add -add -exch -yadtop -leadjust -add -add -/outflag 0 def -/xadlft 0 def -/yadbot 0 def -/xadrht 0 def -/yadtop 0 def -} if -} bind def -/leadjust { -(m) stringwidth pop -.5 mul -} bind def -/Mrotcheck { -dup -90 -eq -{ -yadbot -/yadbot -xadrht -def -/xadrht -yadtop -def -/yadtop -xadlft -def -/xadlft -exch -def -} -if -dup -cos -1 index -sin -Checkaux -dup -cos -1 index -sin neg -exch -Checkaux -3 1 roll -pop pop -} bind def -/Checkaux { -4 index -exch -4 index -mul -3 1 roll -mul add -4 1 roll -} bind def -/Mboxrot { -Mrot -90 eq -{ -brotaux -4 2 -roll -} -if -Mrot -180 eq -{ -4 2 -roll -brotaux -4 2 -roll -brotaux -} -if -Mrot -270 eq -{ -4 2 -roll -brotaux -} -if -} bind def -/brotaux { -neg -exch -neg -} bind def -/Mabswid { -Mathabs -div -setlinewidth -} bind def -/Mabsdash { -exch -Mathabs -[ -3 1 roll -exch -{ -exch -dup -3 -1 roll -exch -div -exch -} -forall -pop ] -exch -setdash -} bind def -/MBeginOrig { Momatrix concat} bind def -/MEndOrig { Mgmatrix setmatrix} bind def -/colorimage where -{ pop } -{ -/colorimage { -3 1 roll -pop pop -5 -1 roll -mul -4 1 roll -{ -currentfile -1 index -readhexstring -pop } -image -} bind def -} ifelse -/sampledsound where -{ pop} -{ /sampledsound { -exch -pop -exch -5 1 roll -mul -4 idiv -mul -2 idiv -exch pop -exch -/Mtempproc exch def -{ Mtempproc pop} -repeat -} bind def -} ifelse -/setcmykcolor where -{ pop} -{ /setcmykcolor { -4 1 -roll -[ -4 1 -roll -] -{ -1 index -sub -1 -sub neg -dup -0 -lt -{ -pop -0 -} -if -dup -1 -gt -{ -pop -1 -} -if -exch -} forall -pop -setrgbcolor -} bind def -} ifelse -%%AspectRatio: 0.61803 -MathPictureStart -/Courier-Oblique findfont 17 scalefont setfont -% Scaling calculations -0.34127 0.15873 0.210916 0.015823 [ -[(-2)] 0.02381 0 0 2 0 Minner Mrotsboxa -[(-1)] 0.18254 0 0 2 0 Minner Mrotsboxa -[(0)] 0.34127 0 0 2 0 Minner Mrotsboxa -[(1)] 0.5 0 0 2 0 Minner Mrotsboxa -[(2)] 0.65873 0 0 2 0 Minner Mrotsboxa -[(3)] 0.81746 0 0 2 0 Minner Mrotsboxa -[(4)] 0.97619 0 0 2 0 Minner Mrotsboxa -[(x)] 0.5 0 0 2 0 0 -1 Mouter Mrotsboxa -[(-10)] -0.0125 0.05269 1 0 0 Minner Mrotsboxa -[(-5)] -0.0125 0.1318 1 0 0 Minner Mrotsboxa -[(0)] -0.0125 0.21092 1 0 0 Minner Mrotsboxa -[(5)] -0.0125 0.29003 1 0 0 Minner Mrotsboxa -[(10)] -0.0125 0.36914 1 0 0 Minner Mrotsboxa -[(15)] -0.0125 0.44826 1 0 0 Minner Mrotsboxa -[(20)] -0.0125 0.52737 1 0 0 Minner Mrotsboxa -[(25)] -0.0125 0.60648 1 0 0 Minner Mrotsboxa -[(y)] -0.0125 0.30902 1 0 90 -1 0 Mouter Mrotsboxa -[ -0.001 -0.001 0 0 ] -[ 1.001 0.61903 0 0 ] -] MathScale -% Start of Graphics -1 setlinecap -1 setlinejoin -newpath -%%Object: Graphics -[ ] 0 setdash -0 setgray -gsave -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.18254 0 moveto -0.18254 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.34127 0 moveto -0.34127 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.5 0 moveto -0.5 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.65873 0 moveto -0.65873 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.81746 0 moveto -0.81746 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.05269 moveto -1 0.05269 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.1318 moveto -1 0.1318 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.21092 moveto -1 0.21092 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.29003 moveto -1 0.29003 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.36914 moveto -1 0.36914 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.44826 moveto -1 0.44826 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.52737 moveto -1 0.52737 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.02381 0 moveto -0.02381 0.00625 lineto -stroke -grestore -[(-2)] 0.02381 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.18254 0 moveto -0.18254 0.00625 lineto -stroke -grestore -[(-1)] 0.18254 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.34127 0 moveto -0.34127 0.00625 lineto -stroke -grestore -[(0)] 0.34127 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.5 0 moveto -0.5 0.00625 lineto -stroke -grestore -[(1)] 0.5 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.65873 0 moveto -0.65873 0.00625 lineto -stroke -grestore -[(2)] 0.65873 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.81746 0 moveto -0.81746 0.00625 lineto -stroke -grestore -[(3)] 0.81746 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.97619 0 moveto -0.97619 0.00625 lineto -stroke -grestore -[(4)] 0.97619 0 0 2 0 Minner Mrotshowa -gsave -0.001 setlinewidth -0.05556 0 moveto -0.05556 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.0873 0 moveto -0.0873 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.11905 0 moveto -0.11905 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.15079 0 moveto -0.15079 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.21429 0 moveto -0.21429 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.24603 0 moveto -0.24603 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.27778 0 moveto -0.27778 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.30952 0 moveto -0.30952 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.37302 0 moveto -0.37302 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.40476 0 moveto -0.40476 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.43651 0 moveto -0.43651 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.46825 0 moveto -0.46825 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.53175 0 moveto -0.53175 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.56349 0 moveto -0.56349 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.59524 0 moveto -0.59524 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.62698 0 moveto -0.62698 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.69048 0 moveto -0.69048 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.72222 0 moveto -0.72222 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.75397 0 moveto -0.75397 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.78571 0 moveto -0.78571 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.84921 0 moveto -0.84921 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.88095 0 moveto -0.88095 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.9127 0 moveto -0.9127 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.94444 0 moveto -0.94444 0.00375 lineto -stroke -grestore -[(x)] 0.5 0 0 2 0 0 -1 Mouter Mrotshowa -gsave -0.002 setlinewidth -0 0 moveto -1 0 lineto -stroke -grestore -gsave -0.002 setlinewidth -0 0.05269 moveto -0.00625 0.05269 lineto -stroke -grestore -[(-10)] -0.0125 0.05269 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.1318 moveto -0.00625 0.1318 lineto -stroke -grestore -[(-5)] -0.0125 0.1318 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.21092 moveto -0.00625 0.21092 lineto -stroke -grestore -[(0)] -0.0125 0.21092 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.29003 moveto -0.00625 0.29003 lineto -stroke -grestore -[(5)] -0.0125 0.29003 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.36914 moveto -0.00625 0.36914 lineto -stroke -grestore -[(10)] -0.0125 0.36914 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.44826 moveto -0.00625 0.44826 lineto -stroke -grestore -[(15)] -0.0125 0.44826 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.52737 moveto -0.00625 0.52737 lineto -stroke -grestore -[(20)] -0.0125 0.52737 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.60648 moveto -0.00625 0.60648 lineto -stroke -grestore -[(25)] -0.0125 0.60648 1 0 0 Minner Mrotshowa -gsave -0.001 setlinewidth -0 0.06851 moveto -0.00375 0.06851 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.08433 moveto -0.00375 0.08433 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.10016 moveto -0.00375 0.10016 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.11598 moveto -0.00375 0.11598 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.14763 moveto -0.00375 0.14763 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.16345 moveto -0.00375 0.16345 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.17927 moveto -0.00375 0.17927 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.19509 moveto -0.00375 0.19509 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.22674 moveto -0.00375 0.22674 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.24256 moveto -0.00375 0.24256 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.25838 moveto -0.00375 0.25838 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.27421 moveto -0.00375 0.27421 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.30585 moveto -0.00375 0.30585 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.32168 moveto -0.00375 0.32168 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.3375 moveto -0.00375 0.3375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.35332 moveto -0.00375 0.35332 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.38497 moveto -0.00375 0.38497 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.40079 moveto -0.00375 0.40079 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.41661 moveto -0.00375 0.41661 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.43243 moveto -0.00375 0.43243 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.46408 moveto -0.00375 0.46408 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.4799 moveto -0.00375 0.4799 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.49572 moveto -0.00375 0.49572 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.51155 moveto -0.00375 0.51155 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.54319 moveto -0.00375 0.54319 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.55902 moveto -0.00375 0.55902 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.57484 moveto -0.00375 0.57484 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.59066 moveto -0.00375 0.59066 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.03687 moveto -0.00375 0.03687 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.02104 moveto -0.00375 0.02104 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.00522 moveto -0.00375 0.00522 lineto -stroke -grestore -[(y)] -0.0125 0.30902 1 0 90 -1 0 Mouter Mrotshowa -gsave -0.002 setlinewidth -0 0 moveto -0 0.61803 lineto -stroke -grestore -grestore -gsave -gsave -0.002 setlinewidth -0.02381 0.61178 moveto -0.02381 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.18254 0.61178 moveto -0.18254 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.34127 0.61178 moveto -0.34127 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.5 0.61178 moveto -0.5 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.65873 0.61178 moveto -0.65873 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.81746 0.61178 moveto -0.81746 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.97619 0.61178 moveto -0.97619 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.05556 0.61428 moveto -0.05556 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.0873 0.61428 moveto -0.0873 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.11905 0.61428 moveto -0.11905 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.15079 0.61428 moveto -0.15079 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.21429 0.61428 moveto -0.21429 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.24603 0.61428 moveto -0.24603 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.27778 0.61428 moveto -0.27778 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.30952 0.61428 moveto -0.30952 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.37302 0.61428 moveto -0.37302 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.40476 0.61428 moveto -0.40476 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.43651 0.61428 moveto -0.43651 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.46825 0.61428 moveto -0.46825 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.53175 0.61428 moveto -0.53175 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.56349 0.61428 moveto -0.56349 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.59524 0.61428 moveto -0.59524 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.62698 0.61428 moveto -0.62698 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.69048 0.61428 moveto -0.69048 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.72222 0.61428 moveto -0.72222 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.75397 0.61428 moveto -0.75397 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.78571 0.61428 moveto -0.78571 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.84921 0.61428 moveto -0.84921 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.88095 0.61428 moveto -0.88095 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.9127 0.61428 moveto -0.9127 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.94444 0.61428 moveto -0.94444 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0 0.61803 moveto -1 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.05269 moveto -1 0.05269 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.1318 moveto -1 0.1318 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.21092 moveto -1 0.21092 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.29003 moveto -1 0.29003 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.36914 moveto -1 0.36914 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.44826 moveto -1 0.44826 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.52737 moveto -1 0.52737 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.60648 moveto -1 0.60648 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.06851 moveto -1 0.06851 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.08433 moveto -1 0.08433 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.10016 moveto -1 0.10016 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.11598 moveto -1 0.11598 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.14763 moveto -1 0.14763 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.16345 moveto -1 0.16345 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.17927 moveto -1 0.17927 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.19509 moveto -1 0.19509 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.22674 moveto -1 0.22674 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.24256 moveto -1 0.24256 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.25838 moveto -1 0.25838 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.27421 moveto -1 0.27421 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.30585 moveto -1 0.30585 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.32168 moveto -1 0.32168 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.3375 moveto -1 0.3375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.35332 moveto -1 0.35332 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.38497 moveto -1 0.38497 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.40079 moveto -1 0.40079 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.41661 moveto -1 0.41661 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.43243 moveto -1 0.43243 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.46408 moveto -1 0.46408 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.4799 moveto -1 0.4799 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.49572 moveto -1 0.49572 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.51155 moveto -1 0.51155 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.54319 moveto -1 0.54319 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.55902 moveto -1 0.55902 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.57484 moveto -1 0.57484 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.59066 moveto -1 0.59066 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.03687 moveto -1 0.03687 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.02104 moveto -1 0.02104 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.00522 moveto -1 0.00522 lineto -stroke -grestore -gsave -0.002 setlinewidth -1 0 moveto -1 0.61803 lineto -stroke -grestore -grestore -gsave -gsave -0.002 setlinewidth -0 0.21092 moveto -1 0.21092 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.34127 0 moveto -0.34127 0.61803 lineto -stroke -grestore -grestore -0 0 moveto -1 0 lineto -1 0.61803 lineto -0 0.61803 lineto -closepath -clip -newpath -gsave -gsave -gsave -0.004 setlinewidth -0.02381 0.01472 moveto -0.06349 0.03924 lineto -0.10317 0.06377 lineto -0.14286 0.08829 lineto -0.18254 0.11282 lineto -0.22222 0.13734 lineto -0.2619 0.16187 lineto -0.30159 0.18639 lineto -0.34127 0.21092 lineto -0.38095 0.23544 lineto -0.42063 0.25997 lineto -0.46032 0.28449 lineto -0.5 0.30902 lineto -0.53968 0.33354 lineto -0.57937 0.35807 lineto -0.61905 0.38259 lineto -0.65873 0.40712 lineto -0.69841 0.43164 lineto -0.7381 0.45617 lineto -0.77778 0.48069 lineto -0.81746 0.50522 lineto -0.85714 0.52974 lineto -0.89683 0.55427 lineto -0.93651 0.57879 lineto -0.97619 0.60332 lineto -stroke -grestore -grestore -grestore -% End of Graphics -MathPictureEnd -end -showpage diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v4.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v4.gif deleted file mode 100755 index 0180793c5..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v4.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v5.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v5.eps deleted file mode 100755 index 4cfc45ca6..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v5.eps +++ /dev/null @@ -1,2068 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 72.0 242.0 540.0 550.0 -%%Creator: Mathematica -%%CreationDate: Wed Aug 18 16:42:49 CDT 1993 -%%EndComments -/Mathdict 100 dict def -Mathdict begin -/Mlmarg 1.0 72 mul def -/Mrmarg 1.0 72 mul def -/Mbmarg 1.0 72 mul def -/Mtmarg 1.0 72 mul def -/Mwidth 8.5 72 mul def -/Mheight 11 72 mul def -/Mtransform { } bind def -/Mnodistort true def -/Mfixwid false def -/Mfixdash false def -/Mrot 0 def -/Mpstart { -MathPictureStart -} bind def -/Mpend { -MathPictureEnd -} bind def -/Mscale { -0 1 0 1 -5 -1 roll -MathScale -} bind def -/ISOLatin1Encoding dup where -{ pop pop } -{ -[ -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright -/parenleft /parenright /asterisk /plus /comma /minus /period /slash -/zero /one /two /three /four /five /six /seven -/eight /nine /colon /semicolon /less /equal /greater /question -/at /A /B /C /D /E /F /G -/H /I /J /K /L /M /N /O -/P /Q /R /S /T /U /V /W -/X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore -/quoteleft /a /b /c /d /e /f /g -/h /i /j /k /l /m /n /o -/p /q /r /s /t /u /v /w -/x /y /z /braceleft /bar /braceright /asciitilde /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent -/dieresis /.notdef /ring /cedilla /.notdef /hungarumlaut /ogonek /caron -/space /exclamdown /cent /sterling /currency /yen /brokenbar /section -/dieresis /copyright /ordfeminine /guillemotleft -/logicalnot /hyphen /registered /macron -/degree /plusminus /twosuperior /threesuperior -/acute /mu /paragraph /periodcentered -/cedilla /onesuperior /ordmasculine /guillemotright -/onequarter /onehalf /threequarters /questiondown -/Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla -/Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis -/Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply -/Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls -/agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla -/egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis -/eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide -/oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis -] def -} ifelse -/MFontDict 50 dict def -/MStrCat -{ -exch -dup length -2 index length add -string -dup 3 1 roll -copy -length -exch dup -4 2 roll exch -putinterval -} def -/MCreateEncoding -{ -1 index -255 string cvs -(-) MStrCat -1 index MStrCat -cvn exch -(Encoding) MStrCat -cvn dup where -{ -exch get -} -{ -pop -StandardEncoding -} ifelse -3 1 roll -dup MFontDict exch known not -{ -1 index findfont -dup length dict -begin -{1 index /FID ne -{def} -{pop pop} -ifelse} forall -/Encoding 3 index -def -currentdict -end -1 index exch definefont pop -MFontDict 1 index -null put -} -if -exch pop -exch pop -} def -/ISOLatin1 { (ISOLatin1) MCreateEncoding } def -/ISO8859 { (ISOLatin1) MCreateEncoding } def -/Mcopyfont { -dup -maxlength -dict -exch -{ -1 index -/FID -eq -{ -pop pop -} -{ -2 index -3 1 roll -put -} -ifelse -} -forall -} def -/Plain /Courier findfont Mcopyfont definefont pop -/Bold /Courier-Bold findfont Mcopyfont definefont pop -/Italic /Courier-Oblique findfont Mcopyfont definefont pop -/MathPictureStart { -gsave -Mtransform -Mlmarg -Mbmarg -translate -/Mtmatrix -matrix currentmatrix -def -/Mgmatrix -matrix currentmatrix -def -} bind def -/MathPictureEnd { -grestore -} bind def -/MathSubStart { -Momatrix -Mgmatrix Mtmatrix -Mlmarg Mrmarg -Mbmarg Mtmarg -Mwidth Mheight -11 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -Mgmatrix setmatrix -13 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -2 copy translate -/Mtmatrix matrix currentmatrix def -/Mlmarg 0 def -/Mrmarg 0 def -/Mbmarg 0 def -/Mtmarg 0 def -3 -1 roll -exch sub -/Mheight exch def -sub -/Mwidth exch def -} bind def -/MathSubEnd { -/Mheight exch def -/Mwidth exch def -/Mtmarg exch def -/Mbmarg exch def -/Mrmarg exch def -/Mlmarg exch def -/Mtmatrix exch def -dup setmatrix -/Mgmatrix exch def -/Momatrix exch def -} bind def -/Mdot { -moveto -0 0 rlineto -stroke -} bind def -/Mtetra { -moveto -lineto -lineto -lineto -fill -} bind def -/Metetra { -moveto -lineto -lineto -lineto -closepath -gsave -fill -grestore -0 setgray -stroke -} bind def -/Mistroke { -flattenpath -0 0 0 -{ -4 2 roll -pop pop -} -{ -4 -1 roll -2 index -sub dup mul -4 -1 roll -2 index -sub dup mul -add sqrt -4 -1 roll -add -3 1 roll -} -{ -stop -} -{ -stop -} -pathforall -pop pop -currentpoint -stroke -moveto -currentdash -3 -1 roll -add -setdash -} bind def -/Mfstroke { -stroke -currentdash -pop 0 -setdash -} bind def -/Mrotsboxa { -gsave -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -grestore -Msboxa -3 -1 roll -/Mtmatrix -exch def -/Mrot -0 def -} bind def -/Msboxa { -newpath -5 -1 roll -Mvboxa -pop -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Msboxa1 -5 -3 roll -Msboxa1 -Mboxrot -[ -7 -2 roll -2 copy -[ -3 1 roll -10 -1 roll -9 -1 roll -] -6 1 roll -5 -2 roll -] -} bind def -/Msboxa1 { -sub -2 div -dup -2 index -1 add -mul -3 -1 roll --1 add -3 -1 roll -mul -} bind def -/Mvboxa { -Mfixwid -{ -Mvboxa1 -} -{ -dup -Mwidthcal -0 exch -{ -add -} -forall -exch -Mvboxa1 -4 index -7 -1 roll -add -4 -1 roll -pop -3 1 roll -} -ifelse -} bind def -/Mvboxa1 { -gsave -newpath -[ true -3 -1 roll -{ -Mbbox -5 -1 roll -{ -0 -5 1 roll -} -{ -7 -1 roll -exch sub -(m) stringwidth pop -.3 mul -sub -7 1 roll -6 -1 roll -4 -1 roll -Mmin -3 -1 roll -5 index -add -5 -1 roll -4 -1 roll -Mmax -4 -1 roll -} -ifelse -false -} -forall -{ stop } if -counttomark -1 add -4 roll -] -grestore -} bind def -/Mbbox { -1 dict begin -0 0 moveto -/temp (T) def -{ gsave -currentpoint newpath moveto -temp 0 3 -1 roll put temp -false charpath flattenpath currentpoint -pathbbox -grestore moveto lineto moveto} forall -pathbbox -newpath -end -} bind def -/Mmin { -2 copy -gt -{ exch } if -pop -} bind def -/Mmax { -2 copy -lt -{ exch } if -pop -} bind def -/Mrotshowa { -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -Mgmatrix setmatrix -Mshowa -/Mtmatrix -exch def -/Mrot 0 def -} bind def -/Mshowa { -4 -2 roll -moveto -2 index -Mtmatrix setmatrix -Mvboxa -7 1 roll -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Mshowa1 -4 1 roll -Mshowa1 -rmoveto -currentpoint -Mfixwid -{ -Mshowax -} -{ -Mshoway -} -ifelse -pop pop pop pop -Mgmatrix setmatrix -} bind def -/Mshowax { -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -Mfixdash -{ -Mfixdashp -} -if -show -} for -} bind def -/Mfixdashp { -dup -length -1 -gt -1 index -true exch -{ -45 -eq -and -} forall -and -{ -gsave -(--) -stringwidth pop -(-) -stringwidth pop -sub -2 div -0 rmoveto -dup -length -1 sub -{ -(-) -show -} -repeat -grestore -} -if -} bind def -/Mshoway { -3 index -Mwidthcal -5 1 roll -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -[ -6 index -aload -length -2 add --1 roll -{ -pop -Strform -stringwidth -pop -neg -exch -add -0 rmoveto -} -exch -kshow -cleartomark -} for -pop -} bind def -/Mwidthcal { -[ -exch -{ -Mwidthcal1 -} -forall -] -[ -exch -dup -Maxlen --1 add -0 1 -3 -1 roll -{ -[ -exch -2 index -{ -1 index -Mget -exch -} -forall -pop -Maxget -exch -} -for -pop -] -Mreva -} bind def -/Mreva { -[ -exch -aload -length --1 1 -{1 roll} -for -] -} bind def -/Mget { -1 index -length --1 add -1 index -ge -{ -get -} -{ -pop pop -0 -} -ifelse -} bind def -/Maxlen { -[ -exch -{ -length -} -forall -Maxget -} bind def -/Maxget { -counttomark --1 add -1 1 -3 -1 roll -{ -pop -Mmax -} -for -exch -pop -} bind def -/Mwidthcal1 { -[ -exch -{ -Strform -stringwidth -pop -} -forall -] -} bind def -/Strform { -/tem (x) def -tem 0 -3 -1 roll -put -tem -} bind def -/Mshowa1 { -2 copy -add -4 1 roll -sub -mul -sub --2 div -} bind def -/MathScale { -Mwidth -Mlmarg Mrmarg add -sub -Mheight -Mbmarg Mtmarg add -sub -0 0 moveto -1 index 0 -lineto -2 copy -lineto -0 1 index -lineto -clip newpath -Mlp -translate -dup -/Mathabs -exch def -scale -/yscale exch def -/ybias exch def -/xscale exch def -/xbias exch def -/Momatrix -xscale yscale matrix scale -xbias ybias matrix translate -matrix concatmatrix def -/Mgmatrix -matrix currentmatrix -def -} bind def -/Mlp { -3 copy -Mlpfirst -{ -Mnodistort -{ -Mmin -dup -} if -4 index -2 index -2 index -Mlprun -11 index -11 -1 roll -10 -4 roll -Mlp1 -8 index -9 -5 roll -Mlp1 -4 -1 roll -and -{ exit } if -3 -1 roll -pop pop -} loop -exch -3 1 roll -7 -3 roll -pop pop pop -} bind def -/Mlpfirst { -3 -1 roll -dup length -2 copy --2 add -get -aload -pop pop pop -4 -2 roll --1 add -get -aload -pop pop pop -6 -1 roll -3 -1 roll -5 -1 roll -sub -div -4 1 roll -exch sub -div -} bind def -/Mlprun { -2 copy -4 index -0 get -dup -4 1 roll -Mlprun1 -3 copy -8 -2 roll -9 -1 roll -{ -3 copy -Mlprun1 -3 copy -11 -3 roll -/gt Mlpminmax -8 3 roll -11 -3 roll -/lt Mlpminmax -8 3 roll -} forall -pop pop pop pop -3 1 roll -pop pop -aload pop -5 -1 roll -aload pop -exch -6 -1 roll -Mlprun2 -8 2 roll -4 -1 roll -Mlprun2 -6 2 roll -3 -1 roll -Mlprun2 -4 2 roll -exch -Mlprun2 -6 2 roll -} bind def -/Mlprun1 { -aload pop -exch -6 -1 roll -5 -1 roll -mul add -4 -2 roll -mul -3 -1 roll -add -} bind def -/Mlprun2 { -2 copy -add 2 div -3 1 roll -exch sub -} bind def -/Mlpminmax { -cvx -2 index -6 index -2 index -exec -{ -7 -3 roll -4 -1 roll -} if -1 index -5 index -3 -1 roll -exec -{ -4 1 roll -pop -5 -1 roll -aload -pop pop -4 -1 roll -aload pop -[ -8 -2 roll -pop -5 -2 roll -pop -6 -2 roll -pop -5 -1 roll -] -4 1 roll -pop -} -{ -pop pop pop -} ifelse -} bind def -/Mlp1 { -5 index -3 index sub -5 index -2 index mul -1 index -le -1 index -0 le -or -dup -not -{ -1 index -3 index div -.99999 mul -8 -1 roll -pop -7 1 roll -} -if -8 -1 roll -2 div -7 -2 roll -pop sub -5 index -6 -3 roll -pop pop -mul sub -exch -} bind def -/intop 0 def -/inrht 0 def -/inflag 0 def -/outflag 0 def -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -/Minner { -outflag -1 -eq -{ -/outflag 0 def -/intop 0 def -/inrht 0 def -} if -5 index -gsave -Mtmatrix setmatrix -Mvboxa pop -grestore -3 -1 roll -pop -dup -intop -gt -{ -/intop -exch def -} -{ pop } -ifelse -dup -inrht -gt -{ -/inrht -exch def -} -{ pop } -ifelse -pop -/inflag -1 def -} bind def -/Mouter { -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -inflag -1 eq -{ -dup -0 lt -{ -dup -intop -mul -neg -/yadtop -exch def -} if -dup -0 gt -{ -dup -intop -mul -/yadbot -exch def -} -if -pop -dup -0 lt -{ -dup -inrht -mul -neg -/xadrht -exch def -} if -dup -0 gt -{ -dup -inrht -mul -/xadlft -exch def -} if -pop -/outflag 1 def -} -{ pop pop} -ifelse -/inflag 0 def -/inrht 0 def -/intop 0 def -} bind def -/Mboxout { -outflag -1 -eq -{ -4 -1 -roll -xadlft -leadjust -add -sub -4 1 roll -3 -1 -roll -yadbot -leadjust -add -sub -3 1 -roll -exch -xadrht -leadjust -add -add -exch -yadtop -leadjust -add -add -/outflag 0 def -/xadlft 0 def -/yadbot 0 def -/xadrht 0 def -/yadtop 0 def -} if -} bind def -/leadjust { -(m) stringwidth pop -.5 mul -} bind def -/Mrotcheck { -dup -90 -eq -{ -yadbot -/yadbot -xadrht -def -/xadrht -yadtop -def -/yadtop -xadlft -def -/xadlft -exch -def -} -if -dup -cos -1 index -sin -Checkaux -dup -cos -1 index -sin neg -exch -Checkaux -3 1 roll -pop pop -} bind def -/Checkaux { -4 index -exch -4 index -mul -3 1 roll -mul add -4 1 roll -} bind def -/Mboxrot { -Mrot -90 eq -{ -brotaux -4 2 -roll -} -if -Mrot -180 eq -{ -4 2 -roll -brotaux -4 2 -roll -brotaux -} -if -Mrot -270 eq -{ -4 2 -roll -brotaux -} -if -} bind def -/brotaux { -neg -exch -neg -} bind def -/Mabswid { -Mathabs -div -setlinewidth -} bind def -/Mabsdash { -exch -Mathabs -[ -3 1 roll -exch -{ -exch -dup -3 -1 roll -exch -div -exch -} -forall -pop ] -exch -setdash -} bind def -/MBeginOrig { Momatrix concat} bind def -/MEndOrig { Mgmatrix setmatrix} bind def -/colorimage where -{ pop } -{ -/colorimage { -3 1 roll -pop pop -5 -1 roll -mul -4 1 roll -{ -currentfile -1 index -readhexstring -pop } -image -} bind def -} ifelse -/sampledsound where -{ pop} -{ /sampledsound { -exch -pop -exch -5 1 roll -mul -4 idiv -mul -2 idiv -exch pop -exch -/Mtempproc exch def -{ Mtempproc pop} -repeat -} bind def -} ifelse -/setcmykcolor where -{ pop} -{ /setcmykcolor { -4 1 -roll -[ -4 1 -roll -] -{ -1 index -sub -1 -sub neg -dup -0 -lt -{ -pop -0 -} -if -dup -1 -gt -{ -pop -1 -} -if -exch -} forall -pop -setrgbcolor -} bind def -} ifelse -%%AspectRatio: 0.61803 -MathPictureStart -/Courier-Oblique findfont 17 scalefont setfont -% Scaling calculations -0.34127 0.15873 0.210916 0.01274 [ -[(-2)] 0.02381 0 0 2 0 Minner Mrotsboxa -[(-1)] 0.18254 0 0 2 0 Minner Mrotsboxa -[(0)] 0.34127 0 0 2 0 Minner Mrotsboxa -[(1)] 0.5 0 0 2 0 Minner Mrotsboxa -[(2)] 0.65873 0 0 2 0 Minner Mrotsboxa -[(3)] 0.81746 0 0 2 0 Minner Mrotsboxa -[(4)] 0.97619 0 0 2 0 Minner Mrotsboxa -[(x)] 0.5 0 0 2 0 0 -1 Mouter Mrotsboxa -[(-10)] -0.0125 0.08351 1 0 0 Minner Mrotsboxa -[(0)] -0.0125 0.21092 1 0 0 Minner Mrotsboxa -[(10)] -0.0125 0.33832 1 0 0 Minner Mrotsboxa -[(20)] -0.0125 0.46572 1 0 0 Minner Mrotsboxa -[(30)] -0.0125 0.59313 1 0 0 Minner Mrotsboxa -[(y)] -0.0125 0.30902 1 0 90 -1 0 Mouter Mrotsboxa -[ -0.001 -0.001 0 0 ] -[ 1.001 0.61903 0 0 ] -] MathScale -% Start of Graphics -1 setlinecap -1 setlinejoin -newpath -%%Object: Graphics -[ ] 0 setdash -0 setgray -gsave -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.18254 0 moveto -0.18254 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.34127 0 moveto -0.34127 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.5 0 moveto -0.5 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.65873 0 moveto -0.65873 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.81746 0 moveto -0.81746 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.08351 moveto -1 0.08351 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.21092 moveto -1 0.21092 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.33832 moveto -1 0.33832 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.46572 moveto -1 0.46572 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.02381 0 moveto -0.02381 0.00625 lineto -stroke -grestore -[(-2)] 0.02381 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.18254 0 moveto -0.18254 0.00625 lineto -stroke -grestore -[(-1)] 0.18254 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.34127 0 moveto -0.34127 0.00625 lineto -stroke -grestore -[(0)] 0.34127 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.5 0 moveto -0.5 0.00625 lineto -stroke -grestore -[(1)] 0.5 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.65873 0 moveto -0.65873 0.00625 lineto -stroke -grestore -[(2)] 0.65873 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.81746 0 moveto -0.81746 0.00625 lineto -stroke -grestore -[(3)] 0.81746 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.97619 0 moveto -0.97619 0.00625 lineto -stroke -grestore -[(4)] 0.97619 0 0 2 0 Minner Mrotshowa -gsave -0.001 setlinewidth -0.05556 0 moveto -0.05556 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.0873 0 moveto -0.0873 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.11905 0 moveto -0.11905 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.15079 0 moveto -0.15079 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.21429 0 moveto -0.21429 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.24603 0 moveto -0.24603 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.27778 0 moveto -0.27778 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.30952 0 moveto -0.30952 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.37302 0 moveto -0.37302 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.40476 0 moveto -0.40476 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.43651 0 moveto -0.43651 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.46825 0 moveto -0.46825 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.53175 0 moveto -0.53175 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.56349 0 moveto -0.56349 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.59524 0 moveto -0.59524 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.62698 0 moveto -0.62698 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.69048 0 moveto -0.69048 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.72222 0 moveto -0.72222 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.75397 0 moveto -0.75397 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.78571 0 moveto -0.78571 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.84921 0 moveto -0.84921 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.88095 0 moveto -0.88095 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.9127 0 moveto -0.9127 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.94444 0 moveto -0.94444 0.00375 lineto -stroke -grestore -[(x)] 0.5 0 0 2 0 0 -1 Mouter Mrotshowa -gsave -0.002 setlinewidth -0 0 moveto -1 0 lineto -stroke -grestore -gsave -0.002 setlinewidth -0 0.08351 moveto -0.00625 0.08351 lineto -stroke -grestore -[(-10)] -0.0125 0.08351 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.21092 moveto -0.00625 0.21092 lineto -stroke -grestore -[(0)] -0.0125 0.21092 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.33832 moveto -0.00625 0.33832 lineto -stroke -grestore -[(10)] -0.0125 0.33832 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.46572 moveto -0.00625 0.46572 lineto -stroke -grestore -[(20)] -0.0125 0.46572 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.59313 moveto -0.00625 0.59313 lineto -stroke -grestore -[(30)] -0.0125 0.59313 1 0 0 Minner Mrotshowa -gsave -0.001 setlinewidth -0 0.10899 moveto -0.00375 0.10899 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.13447 moveto -0.00375 0.13447 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.15995 moveto -0.00375 0.15995 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.18544 moveto -0.00375 0.18544 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.2364 moveto -0.00375 0.2364 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.26188 moveto -0.00375 0.26188 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.28736 moveto -0.00375 0.28736 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.31284 moveto -0.00375 0.31284 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.3638 moveto -0.00375 0.3638 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.38928 moveto -0.00375 0.38928 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.41476 moveto -0.00375 0.41476 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.44024 moveto -0.00375 0.44024 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.4912 moveto -0.00375 0.4912 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.51668 moveto -0.00375 0.51668 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.54217 moveto -0.00375 0.54217 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.56765 moveto -0.00375 0.56765 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.05803 moveto -0.00375 0.05803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.03255 moveto -0.00375 0.03255 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.00707 moveto -0.00375 0.00707 lineto -stroke -grestore -[(y)] -0.0125 0.30902 1 0 90 -1 0 Mouter Mrotshowa -gsave -0.002 setlinewidth -0 0 moveto -0 0.61803 lineto -stroke -grestore -grestore -gsave -gsave -0.002 setlinewidth -0.02381 0.61178 moveto -0.02381 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.18254 0.61178 moveto -0.18254 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.34127 0.61178 moveto -0.34127 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.5 0.61178 moveto -0.5 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.65873 0.61178 moveto -0.65873 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.81746 0.61178 moveto -0.81746 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.97619 0.61178 moveto -0.97619 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.05556 0.61428 moveto -0.05556 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.0873 0.61428 moveto -0.0873 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.11905 0.61428 moveto -0.11905 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.15079 0.61428 moveto -0.15079 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.21429 0.61428 moveto -0.21429 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.24603 0.61428 moveto -0.24603 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.27778 0.61428 moveto -0.27778 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.30952 0.61428 moveto -0.30952 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.37302 0.61428 moveto -0.37302 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.40476 0.61428 moveto -0.40476 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.43651 0.61428 moveto -0.43651 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.46825 0.61428 moveto -0.46825 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.53175 0.61428 moveto -0.53175 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.56349 0.61428 moveto -0.56349 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.59524 0.61428 moveto -0.59524 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.62698 0.61428 moveto -0.62698 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.69048 0.61428 moveto -0.69048 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.72222 0.61428 moveto -0.72222 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.75397 0.61428 moveto -0.75397 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.78571 0.61428 moveto -0.78571 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.84921 0.61428 moveto -0.84921 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.88095 0.61428 moveto -0.88095 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.9127 0.61428 moveto -0.9127 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.94444 0.61428 moveto -0.94444 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0 0.61803 moveto -1 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.08351 moveto -1 0.08351 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.21092 moveto -1 0.21092 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.33832 moveto -1 0.33832 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.46572 moveto -1 0.46572 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.59313 moveto -1 0.59313 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.10899 moveto -1 0.10899 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.13447 moveto -1 0.13447 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.15995 moveto -1 0.15995 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.18544 moveto -1 0.18544 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.2364 moveto -1 0.2364 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.26188 moveto -1 0.26188 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.28736 moveto -1 0.28736 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.31284 moveto -1 0.31284 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.3638 moveto -1 0.3638 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.38928 moveto -1 0.38928 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.41476 moveto -1 0.41476 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.44024 moveto -1 0.44024 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.4912 moveto -1 0.4912 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.51668 moveto -1 0.51668 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.54217 moveto -1 0.54217 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.56765 moveto -1 0.56765 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.05803 moveto -1 0.05803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.03255 moveto -1 0.03255 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.00707 moveto -1 0.00707 lineto -stroke -grestore -gsave -0.002 setlinewidth -1 0 moveto -1 0.61803 lineto -stroke -grestore -grestore -gsave -gsave -0.002 setlinewidth -0 0.21092 moveto -1 0.21092 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.34127 0 moveto -0.34127 0.61803 lineto -stroke -grestore -grestore -0 0 moveto -1 0 lineto -1 0.61803 lineto -0 0.61803 lineto -closepath -clip -newpath -gsave -gsave -gsave -0.004 setlinewidth -0.02381 0.01472 moveto -0.06349 0.03924 lineto -0.10317 0.06377 lineto -0.14286 0.08829 lineto -0.18254 0.11282 lineto -0.22222 0.13734 lineto -0.2619 0.16187 lineto -0.30159 0.18639 lineto -0.34127 0.21092 lineto -0.38095 0.23544 lineto -0.42063 0.25997 lineto -0.46032 0.28449 lineto -0.5 0.30902 lineto -0.53968 0.33354 lineto -0.57937 0.35807 lineto -0.61905 0.38259 lineto -0.65873 0.40712 lineto -0.69841 0.43164 lineto -0.7381 0.45617 lineto -0.77778 0.48069 lineto -0.81746 0.50522 lineto -0.85714 0.52974 lineto -0.89683 0.55427 lineto -0.93651 0.57879 lineto -0.97619 0.60332 lineto -stroke -grestore -grestore -grestore -% End of Graphics -MathPictureEnd -end -showpage diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v5.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v5.gif deleted file mode 100755 index 7b0808eab..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v5.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v6.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v6.eps deleted file mode 100755 index 45e27ec47..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v6.eps +++ /dev/null @@ -1,2111 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 72.0 242.0 540.0 550.0 -%%Creator: Mathematica -%%CreationDate: Wed Aug 18 16:45:18 CDT 1993 -%%EndComments -/Mathdict 100 dict def -Mathdict begin -/Mlmarg 1.0 72 mul def -/Mrmarg 1.0 72 mul def -/Mbmarg 1.0 72 mul def -/Mtmarg 1.0 72 mul def -/Mwidth 8.5 72 mul def -/Mheight 11 72 mul def -/Mtransform { } bind def -/Mnodistort true def -/Mfixwid false def -/Mfixdash false def -/Mrot 0 def -/Mpstart { -MathPictureStart -} bind def -/Mpend { -MathPictureEnd -} bind def -/Mscale { -0 1 0 1 -5 -1 roll -MathScale -} bind def -/ISOLatin1Encoding dup where -{ pop pop } -{ -[ -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright -/parenleft /parenright /asterisk /plus /comma /minus /period /slash -/zero /one /two /three /four /five /six /seven -/eight /nine /colon /semicolon /less /equal /greater /question -/at /A /B /C /D /E /F /G -/H /I /J /K /L /M /N /O -/P /Q /R /S /T /U /V /W -/X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore -/quoteleft /a /b /c /d /e /f /g -/h /i /j /k /l /m /n /o -/p /q /r /s /t /u /v /w -/x /y /z /braceleft /bar /braceright /asciitilde /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent -/dieresis /.notdef /ring /cedilla /.notdef /hungarumlaut /ogonek /caron -/space /exclamdown /cent /sterling /currency /yen /brokenbar /section -/dieresis /copyright /ordfeminine /guillemotleft -/logicalnot /hyphen /registered /macron -/degree /plusminus /twosuperior /threesuperior -/acute /mu /paragraph /periodcentered -/cedilla /onesuperior /ordmasculine /guillemotright -/onequarter /onehalf /threequarters /questiondown -/Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla -/Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis -/Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply -/Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls -/agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla -/egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis -/eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide -/oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis -] def -} ifelse -/MFontDict 50 dict def -/MStrCat -{ -exch -dup length -2 index length add -string -dup 3 1 roll -copy -length -exch dup -4 2 roll exch -putinterval -} def -/MCreateEncoding -{ -1 index -255 string cvs -(-) MStrCat -1 index MStrCat -cvn exch -(Encoding) MStrCat -cvn dup where -{ -exch get -} -{ -pop -StandardEncoding -} ifelse -3 1 roll -dup MFontDict exch known not -{ -1 index findfont -dup length dict -begin -{1 index /FID ne -{def} -{pop pop} -ifelse} forall -/Encoding 3 index -def -currentdict -end -1 index exch definefont pop -MFontDict 1 index -null put -} -if -exch pop -exch pop -} def -/ISOLatin1 { (ISOLatin1) MCreateEncoding } def -/ISO8859 { (ISOLatin1) MCreateEncoding } def -/Mcopyfont { -dup -maxlength -dict -exch -{ -1 index -/FID -eq -{ -pop pop -} -{ -2 index -3 1 roll -put -} -ifelse -} -forall -} def -/Plain /Courier findfont Mcopyfont definefont pop -/Bold /Courier-Bold findfont Mcopyfont definefont pop -/Italic /Courier-Oblique findfont Mcopyfont definefont pop -/MathPictureStart { -gsave -Mtransform -Mlmarg -Mbmarg -translate -/Mtmatrix -matrix currentmatrix -def -/Mgmatrix -matrix currentmatrix -def -} bind def -/MathPictureEnd { -grestore -} bind def -/MathSubStart { -Momatrix -Mgmatrix Mtmatrix -Mlmarg Mrmarg -Mbmarg Mtmarg -Mwidth Mheight -11 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -Mgmatrix setmatrix -13 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -2 copy translate -/Mtmatrix matrix currentmatrix def -/Mlmarg 0 def -/Mrmarg 0 def -/Mbmarg 0 def -/Mtmarg 0 def -3 -1 roll -exch sub -/Mheight exch def -sub -/Mwidth exch def -} bind def -/MathSubEnd { -/Mheight exch def -/Mwidth exch def -/Mtmarg exch def -/Mbmarg exch def -/Mrmarg exch def -/Mlmarg exch def -/Mtmatrix exch def -dup setmatrix -/Mgmatrix exch def -/Momatrix exch def -} bind def -/Mdot { -moveto -0 0 rlineto -stroke -} bind def -/Mtetra { -moveto -lineto -lineto -lineto -fill -} bind def -/Metetra { -moveto -lineto -lineto -lineto -closepath -gsave -fill -grestore -0 setgray -stroke -} bind def -/Mistroke { -flattenpath -0 0 0 -{ -4 2 roll -pop pop -} -{ -4 -1 roll -2 index -sub dup mul -4 -1 roll -2 index -sub dup mul -add sqrt -4 -1 roll -add -3 1 roll -} -{ -stop -} -{ -stop -} -pathforall -pop pop -currentpoint -stroke -moveto -currentdash -3 -1 roll -add -setdash -} bind def -/Mfstroke { -stroke -currentdash -pop 0 -setdash -} bind def -/Mrotsboxa { -gsave -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -grestore -Msboxa -3 -1 roll -/Mtmatrix -exch def -/Mrot -0 def -} bind def -/Msboxa { -newpath -5 -1 roll -Mvboxa -pop -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Msboxa1 -5 -3 roll -Msboxa1 -Mboxrot -[ -7 -2 roll -2 copy -[ -3 1 roll -10 -1 roll -9 -1 roll -] -6 1 roll -5 -2 roll -] -} bind def -/Msboxa1 { -sub -2 div -dup -2 index -1 add -mul -3 -1 roll --1 add -3 -1 roll -mul -} bind def -/Mvboxa { -Mfixwid -{ -Mvboxa1 -} -{ -dup -Mwidthcal -0 exch -{ -add -} -forall -exch -Mvboxa1 -4 index -7 -1 roll -add -4 -1 roll -pop -3 1 roll -} -ifelse -} bind def -/Mvboxa1 { -gsave -newpath -[ true -3 -1 roll -{ -Mbbox -5 -1 roll -{ -0 -5 1 roll -} -{ -7 -1 roll -exch sub -(m) stringwidth pop -.3 mul -sub -7 1 roll -6 -1 roll -4 -1 roll -Mmin -3 -1 roll -5 index -add -5 -1 roll -4 -1 roll -Mmax -4 -1 roll -} -ifelse -false -} -forall -{ stop } if -counttomark -1 add -4 roll -] -grestore -} bind def -/Mbbox { -1 dict begin -0 0 moveto -/temp (T) def -{ gsave -currentpoint newpath moveto -temp 0 3 -1 roll put temp -false charpath flattenpath currentpoint -pathbbox -grestore moveto lineto moveto} forall -pathbbox -newpath -end -} bind def -/Mmin { -2 copy -gt -{ exch } if -pop -} bind def -/Mmax { -2 copy -lt -{ exch } if -pop -} bind def -/Mrotshowa { -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -Mgmatrix setmatrix -Mshowa -/Mtmatrix -exch def -/Mrot 0 def -} bind def -/Mshowa { -4 -2 roll -moveto -2 index -Mtmatrix setmatrix -Mvboxa -7 1 roll -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Mshowa1 -4 1 roll -Mshowa1 -rmoveto -currentpoint -Mfixwid -{ -Mshowax -} -{ -Mshoway -} -ifelse -pop pop pop pop -Mgmatrix setmatrix -} bind def -/Mshowax { -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -Mfixdash -{ -Mfixdashp -} -if -show -} for -} bind def -/Mfixdashp { -dup -length -1 -gt -1 index -true exch -{ -45 -eq -and -} forall -and -{ -gsave -(--) -stringwidth pop -(-) -stringwidth pop -sub -2 div -0 rmoveto -dup -length -1 sub -{ -(-) -show -} -repeat -grestore -} -if -} bind def -/Mshoway { -3 index -Mwidthcal -5 1 roll -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -[ -6 index -aload -length -2 add --1 roll -{ -pop -Strform -stringwidth -pop -neg -exch -add -0 rmoveto -} -exch -kshow -cleartomark -} for -pop -} bind def -/Mwidthcal { -[ -exch -{ -Mwidthcal1 -} -forall -] -[ -exch -dup -Maxlen --1 add -0 1 -3 -1 roll -{ -[ -exch -2 index -{ -1 index -Mget -exch -} -forall -pop -Maxget -exch -} -for -pop -] -Mreva -} bind def -/Mreva { -[ -exch -aload -length --1 1 -{1 roll} -for -] -} bind def -/Mget { -1 index -length --1 add -1 index -ge -{ -get -} -{ -pop pop -0 -} -ifelse -} bind def -/Maxlen { -[ -exch -{ -length -} -forall -Maxget -} bind def -/Maxget { -counttomark --1 add -1 1 -3 -1 roll -{ -pop -Mmax -} -for -exch -pop -} bind def -/Mwidthcal1 { -[ -exch -{ -Strform -stringwidth -pop -} -forall -] -} bind def -/Strform { -/tem (x) def -tem 0 -3 -1 roll -put -tem -} bind def -/Mshowa1 { -2 copy -add -4 1 roll -sub -mul -sub --2 div -} bind def -/MathScale { -Mwidth -Mlmarg Mrmarg add -sub -Mheight -Mbmarg Mtmarg add -sub -0 0 moveto -1 index 0 -lineto -2 copy -lineto -0 1 index -lineto -clip newpath -Mlp -translate -dup -/Mathabs -exch def -scale -/yscale exch def -/ybias exch def -/xscale exch def -/xbias exch def -/Momatrix -xscale yscale matrix scale -xbias ybias matrix translate -matrix concatmatrix def -/Mgmatrix -matrix currentmatrix -def -} bind def -/Mlp { -3 copy -Mlpfirst -{ -Mnodistort -{ -Mmin -dup -} if -4 index -2 index -2 index -Mlprun -11 index -11 -1 roll -10 -4 roll -Mlp1 -8 index -9 -5 roll -Mlp1 -4 -1 roll -and -{ exit } if -3 -1 roll -pop pop -} loop -exch -3 1 roll -7 -3 roll -pop pop pop -} bind def -/Mlpfirst { -3 -1 roll -dup length -2 copy --2 add -get -aload -pop pop pop -4 -2 roll --1 add -get -aload -pop pop pop -6 -1 roll -3 -1 roll -5 -1 roll -sub -div -4 1 roll -exch sub -div -} bind def -/Mlprun { -2 copy -4 index -0 get -dup -4 1 roll -Mlprun1 -3 copy -8 -2 roll -9 -1 roll -{ -3 copy -Mlprun1 -3 copy -11 -3 roll -/gt Mlpminmax -8 3 roll -11 -3 roll -/lt Mlpminmax -8 3 roll -} forall -pop pop pop pop -3 1 roll -pop pop -aload pop -5 -1 roll -aload pop -exch -6 -1 roll -Mlprun2 -8 2 roll -4 -1 roll -Mlprun2 -6 2 roll -3 -1 roll -Mlprun2 -4 2 roll -exch -Mlprun2 -6 2 roll -} bind def -/Mlprun1 { -aload pop -exch -6 -1 roll -5 -1 roll -mul add -4 -2 roll -mul -3 -1 roll -add -} bind def -/Mlprun2 { -2 copy -add 2 div -3 1 roll -exch sub -} bind def -/Mlpminmax { -cvx -2 index -6 index -2 index -exec -{ -7 -3 roll -4 -1 roll -} if -1 index -5 index -3 -1 roll -exec -{ -4 1 roll -pop -5 -1 roll -aload -pop pop -4 -1 roll -aload pop -[ -8 -2 roll -pop -5 -2 roll -pop -6 -2 roll -pop -5 -1 roll -] -4 1 roll -pop -} -{ -pop pop pop -} ifelse -} bind def -/Mlp1 { -5 index -3 index sub -5 index -2 index mul -1 index -le -1 index -0 le -or -dup -not -{ -1 index -3 index div -.99999 mul -8 -1 roll -pop -7 1 roll -} -if -8 -1 roll -2 div -7 -2 roll -pop sub -5 index -6 -3 roll -pop pop -mul sub -exch -} bind def -/intop 0 def -/inrht 0 def -/inflag 0 def -/outflag 0 def -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -/Minner { -outflag -1 -eq -{ -/outflag 0 def -/intop 0 def -/inrht 0 def -} if -5 index -gsave -Mtmatrix setmatrix -Mvboxa pop -grestore -3 -1 roll -pop -dup -intop -gt -{ -/intop -exch def -} -{ pop } -ifelse -dup -inrht -gt -{ -/inrht -exch def -} -{ pop } -ifelse -pop -/inflag -1 def -} bind def -/Mouter { -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -inflag -1 eq -{ -dup -0 lt -{ -dup -intop -mul -neg -/yadtop -exch def -} if -dup -0 gt -{ -dup -intop -mul -/yadbot -exch def -} -if -pop -dup -0 lt -{ -dup -inrht -mul -neg -/xadrht -exch def -} if -dup -0 gt -{ -dup -inrht -mul -/xadlft -exch def -} if -pop -/outflag 1 def -} -{ pop pop} -ifelse -/inflag 0 def -/inrht 0 def -/intop 0 def -} bind def -/Mboxout { -outflag -1 -eq -{ -4 -1 -roll -xadlft -leadjust -add -sub -4 1 roll -3 -1 -roll -yadbot -leadjust -add -sub -3 1 -roll -exch -xadrht -leadjust -add -add -exch -yadtop -leadjust -add -add -/outflag 0 def -/xadlft 0 def -/yadbot 0 def -/xadrht 0 def -/yadtop 0 def -} if -} bind def -/leadjust { -(m) stringwidth pop -.5 mul -} bind def -/Mrotcheck { -dup -90 -eq -{ -yadbot -/yadbot -xadrht -def -/xadrht -yadtop -def -/yadtop -xadlft -def -/xadlft -exch -def -} -if -dup -cos -1 index -sin -Checkaux -dup -cos -1 index -sin neg -exch -Checkaux -3 1 roll -pop pop -} bind def -/Checkaux { -4 index -exch -4 index -mul -3 1 roll -mul add -4 1 roll -} bind def -/Mboxrot { -Mrot -90 eq -{ -brotaux -4 2 -roll -} -if -Mrot -180 eq -{ -4 2 -roll -brotaux -4 2 -roll -brotaux -} -if -Mrot -270 eq -{ -4 2 -roll -brotaux -} -if -} bind def -/brotaux { -neg -exch -neg -} bind def -/Mabswid { -Mathabs -div -setlinewidth -} bind def -/Mabsdash { -exch -Mathabs -[ -3 1 roll -exch -{ -exch -dup -3 -1 roll -exch -div -exch -} -forall -pop ] -exch -setdash -} bind def -/MBeginOrig { Momatrix concat} bind def -/MEndOrig { Mgmatrix setmatrix} bind def -/colorimage where -{ pop } -{ -/colorimage { -3 1 roll -pop pop -5 -1 roll -mul -4 1 roll -{ -currentfile -1 index -readhexstring -pop } -image -} bind def -} ifelse -/sampledsound where -{ pop} -{ /sampledsound { -exch -pop -exch -5 1 roll -mul -4 idiv -mul -2 idiv -exch pop -exch -/Mtempproc exch def -{ Mtempproc pop} -repeat -} bind def -} ifelse -/setcmykcolor where -{ pop} -{ /setcmykcolor { -4 1 -roll -[ -4 1 -roll -] -{ -1 index -sub -1 -sub neg -dup -0 -lt -{ -pop -0 -} -if -dup -1 -gt -{ -pop -1 -} -if -exch -} forall -pop -setrgbcolor -} bind def -} ifelse -%%AspectRatio: 0.61803 -MathPictureStart -/Courier-Oblique findfont 17 scalefont setfont -% Scaling calculations -0.5 0.119048 0.309017 0.008555 [ -[(-4)] 0.02381 0 0 2 0 Minner Mrotsboxa -[(-2)] 0.2619 0 0 2 0 Minner Mrotsboxa -[(0)] 0.5 0 0 2 0 Minner Mrotsboxa -[(2)] 0.7381 0 0 2 0 Minner Mrotsboxa -[(4)] 0.97619 0 0 2 0 Minner Mrotsboxa -[(x)] 0.5 0 0 2 0 0 -1 Mouter Mrotsboxa -[(-30)] -0.0125 0.05236 1 0 0 Minner Mrotsboxa -[(-20)] -0.0125 0.13791 1 0 0 Minner Mrotsboxa -[(-10)] -0.0125 0.22346 1 0 0 Minner Mrotsboxa -[(0)] -0.0125 0.30902 1 0 0 Minner Mrotsboxa -[(10)] -0.0125 0.39457 1 0 0 Minner Mrotsboxa -[(20)] -0.0125 0.48012 1 0 0 Minner Mrotsboxa -[(30)] -0.0125 0.56568 1 0 0 Minner Mrotsboxa -[(y)] -0.0125 0.30902 1 0 90 -1 0 Mouter Mrotsboxa -[ -0.001 -0.001 0 0 ] -[ 1.001 0.61903 0 0 ] -] MathScale -% Start of Graphics -1 setlinecap -1 setlinejoin -newpath -%%Object: Graphics -[ ] 0 setdash -0 setgray -gsave -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.2619 0 moveto -0.2619 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.5 0 moveto -0.5 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.7381 0 moveto -0.7381 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.05236 moveto -1 0.05236 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.13791 moveto -1 0.13791 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.22346 moveto -1 0.22346 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.30902 moveto -1 0.30902 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.39457 moveto -1 0.39457 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.48012 moveto -1 0.48012 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.56568 moveto -1 0.56568 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.02381 0 moveto -0.02381 0.00625 lineto -stroke -grestore -[(-4)] 0.02381 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.2619 0 moveto -0.2619 0.00625 lineto -stroke -grestore -[(-2)] 0.2619 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.5 0 moveto -0.5 0.00625 lineto -stroke -grestore -[(0)] 0.5 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.7381 0 moveto -0.7381 0.00625 lineto -stroke -grestore -[(2)] 0.7381 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.97619 0 moveto -0.97619 0.00625 lineto -stroke -grestore -[(4)] 0.97619 0 0 2 0 Minner Mrotshowa -gsave -0.001 setlinewidth -0.07143 0 moveto -0.07143 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.11905 0 moveto -0.11905 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.16667 0 moveto -0.16667 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.21429 0 moveto -0.21429 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.30952 0 moveto -0.30952 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.35714 0 moveto -0.35714 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.40476 0 moveto -0.40476 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.45238 0 moveto -0.45238 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.54762 0 moveto -0.54762 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.59524 0 moveto -0.59524 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.64286 0 moveto -0.64286 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.69048 0 moveto -0.69048 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.78571 0 moveto -0.78571 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.83333 0 moveto -0.83333 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.88095 0 moveto -0.88095 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.92857 0 moveto -0.92857 0.00375 lineto -stroke -grestore -[(x)] 0.5 0 0 2 0 0 -1 Mouter Mrotshowa -gsave -0.002 setlinewidth -0 0 moveto -1 0 lineto -stroke -grestore -gsave -0.002 setlinewidth -0 0.05236 moveto -0.00625 0.05236 lineto -stroke -grestore -[(-30)] -0.0125 0.05236 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.13791 moveto -0.00625 0.13791 lineto -stroke -grestore -[(-20)] -0.0125 0.13791 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.22346 moveto -0.00625 0.22346 lineto -stroke -grestore -[(-10)] -0.0125 0.22346 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.30902 moveto -0.00625 0.30902 lineto -stroke -grestore -[(0)] -0.0125 0.30902 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.39457 moveto -0.00625 0.39457 lineto -stroke -grestore -[(10)] -0.0125 0.39457 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.48012 moveto -0.00625 0.48012 lineto -stroke -grestore -[(20)] -0.0125 0.48012 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.56568 moveto -0.00625 0.56568 lineto -stroke -grestore -[(30)] -0.0125 0.56568 1 0 0 Minner Mrotshowa -gsave -0.001 setlinewidth -0 0.06947 moveto -0.00375 0.06947 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.08658 moveto -0.00375 0.08658 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.10369 moveto -0.00375 0.10369 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.1208 moveto -0.00375 0.1208 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.15502 moveto -0.00375 0.15502 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.17213 moveto -0.00375 0.17213 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.18924 moveto -0.00375 0.18924 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.20635 moveto -0.00375 0.20635 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.24057 moveto -0.00375 0.24057 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.25769 moveto -0.00375 0.25769 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.2748 moveto -0.00375 0.2748 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.29191 moveto -0.00375 0.29191 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.32613 moveto -0.00375 0.32613 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.34324 moveto -0.00375 0.34324 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.36035 moveto -0.00375 0.36035 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.37746 moveto -0.00375 0.37746 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.41168 moveto -0.00375 0.41168 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.42879 moveto -0.00375 0.42879 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.4459 moveto -0.00375 0.4459 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.46301 moveto -0.00375 0.46301 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.49723 moveto -0.00375 0.49723 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.51434 moveto -0.00375 0.51434 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.53145 moveto -0.00375 0.53145 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.54857 moveto -0.00375 0.54857 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.03525 moveto -0.00375 0.03525 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.01814 moveto -0.00375 0.01814 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.00103 moveto -0.00375 0.00103 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.58279 moveto -0.00375 0.58279 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.5999 moveto -0.00375 0.5999 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.61701 moveto -0.00375 0.61701 lineto -stroke -grestore -[(y)] -0.0125 0.30902 1 0 90 -1 0 Mouter Mrotshowa -gsave -0.002 setlinewidth -0 0 moveto -0 0.61803 lineto -stroke -grestore -grestore -gsave -gsave -0.002 setlinewidth -0.02381 0.61178 moveto -0.02381 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.2619 0.61178 moveto -0.2619 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.5 0.61178 moveto -0.5 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.7381 0.61178 moveto -0.7381 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.97619 0.61178 moveto -0.97619 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.07143 0.61428 moveto -0.07143 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.11905 0.61428 moveto -0.11905 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.16667 0.61428 moveto -0.16667 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.21429 0.61428 moveto -0.21429 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.30952 0.61428 moveto -0.30952 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.35714 0.61428 moveto -0.35714 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.40476 0.61428 moveto -0.40476 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.45238 0.61428 moveto -0.45238 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.54762 0.61428 moveto -0.54762 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.59524 0.61428 moveto -0.59524 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.64286 0.61428 moveto -0.64286 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.69048 0.61428 moveto -0.69048 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.78571 0.61428 moveto -0.78571 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.83333 0.61428 moveto -0.83333 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.88095 0.61428 moveto -0.88095 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.92857 0.61428 moveto -0.92857 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0 0.61803 moveto -1 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.05236 moveto -1 0.05236 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.13791 moveto -1 0.13791 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.22346 moveto -1 0.22346 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.30902 moveto -1 0.30902 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.39457 moveto -1 0.39457 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.48012 moveto -1 0.48012 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.56568 moveto -1 0.56568 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.06947 moveto -1 0.06947 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.08658 moveto -1 0.08658 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.10369 moveto -1 0.10369 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.1208 moveto -1 0.1208 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.15502 moveto -1 0.15502 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.17213 moveto -1 0.17213 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.18924 moveto -1 0.18924 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.20635 moveto -1 0.20635 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.24057 moveto -1 0.24057 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.25769 moveto -1 0.25769 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.2748 moveto -1 0.2748 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.29191 moveto -1 0.29191 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.32613 moveto -1 0.32613 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.34324 moveto -1 0.34324 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.36035 moveto -1 0.36035 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.37746 moveto -1 0.37746 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.41168 moveto -1 0.41168 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.42879 moveto -1 0.42879 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.4459 moveto -1 0.4459 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.46301 moveto -1 0.46301 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.49723 moveto -1 0.49723 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.51434 moveto -1 0.51434 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.53145 moveto -1 0.53145 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.54857 moveto -1 0.54857 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.03525 moveto -1 0.03525 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.01814 moveto -1 0.01814 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.00103 moveto -1 0.00103 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.58279 moveto -1 0.58279 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.5999 moveto -1 0.5999 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.61701 moveto -1 0.61701 lineto -stroke -grestore -gsave -0.002 setlinewidth -1 0 moveto -1 0.61803 lineto -stroke -grestore -grestore -gsave -gsave -0.002 setlinewidth -0 0.30902 moveto -1 0.30902 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.5 0 moveto -0.5 0.61803 lineto -stroke -grestore -grestore -0 0 moveto -1 0 lineto -1 0.61803 lineto -0 0.61803 lineto -closepath -clip -newpath -gsave -gsave -gsave -0.004 setlinewidth -0.02381 0.01472 moveto -0.06349 0.03924 lineto -0.10317 0.06377 lineto -0.14286 0.08829 lineto -0.18254 0.11282 lineto -0.22222 0.13734 lineto -0.2619 0.16187 lineto -0.30159 0.18639 lineto -0.34127 0.21092 lineto -0.38095 0.23544 lineto -0.42063 0.25997 lineto -0.46032 0.28449 lineto -0.5 0.30902 lineto -0.53968 0.33354 lineto -0.57937 0.35807 lineto -0.61905 0.38259 lineto -0.65873 0.40712 lineto -0.69841 0.43164 lineto -0.7381 0.45617 lineto -0.77778 0.48069 lineto -0.81746 0.50522 lineto -0.85714 0.52974 lineto -0.89683 0.55427 lineto -0.93651 0.57879 lineto -0.97619 0.60332 lineto -stroke -grestore -grestore -grestore -% End of Graphics -MathPictureEnd -end -showpage diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v6.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v6.gif deleted file mode 100755 index 053a9b734..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v6.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v7.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v7.eps deleted file mode 100755 index 5d5582d0a..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v7.eps +++ /dev/null @@ -1,1997 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 72.0 242.0 540.0 550.0 -%%Creator: Mathematica -%%CreationDate: Wed Aug 18 16:50:59 CDT 1993 -%%EndComments -/Mathdict 100 dict def -Mathdict begin -/Mlmarg 1.0 72 mul def -/Mrmarg 1.0 72 mul def -/Mbmarg 1.0 72 mul def -/Mtmarg 1.0 72 mul def -/Mwidth 8.5 72 mul def -/Mheight 11 72 mul def -/Mtransform { } bind def -/Mnodistort true def -/Mfixwid false def -/Mfixdash false def -/Mrot 0 def -/Mpstart { -MathPictureStart -} bind def -/Mpend { -MathPictureEnd -} bind def -/Mscale { -0 1 0 1 -5 -1 roll -MathScale -} bind def -/ISOLatin1Encoding dup where -{ pop pop } -{ -[ -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright -/parenleft /parenright /asterisk /plus /comma /minus /period /slash -/zero /one /two /three /four /five /six /seven -/eight /nine /colon /semicolon /less /equal /greater /question -/at /A /B /C /D /E /F /G -/H /I /J /K /L /M /N /O -/P /Q /R /S /T /U /V /W -/X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore -/quoteleft /a /b /c /d /e /f /g -/h /i /j /k /l /m /n /o -/p /q /r /s /t /u /v /w -/x /y /z /braceleft /bar /braceright /asciitilde /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent -/dieresis /.notdef /ring /cedilla /.notdef /hungarumlaut /ogonek /caron -/space /exclamdown /cent /sterling /currency /yen /brokenbar /section -/dieresis /copyright /ordfeminine /guillemotleft -/logicalnot /hyphen /registered /macron -/degree /plusminus /twosuperior /threesuperior -/acute /mu /paragraph /periodcentered -/cedilla /onesuperior /ordmasculine /guillemotright -/onequarter /onehalf /threequarters /questiondown -/Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla -/Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis -/Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply -/Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls -/agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla -/egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis -/eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide -/oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis -] def -} ifelse -/MFontDict 50 dict def -/MStrCat -{ -exch -dup length -2 index length add -string -dup 3 1 roll -copy -length -exch dup -4 2 roll exch -putinterval -} def -/MCreateEncoding -{ -1 index -255 string cvs -(-) MStrCat -1 index MStrCat -cvn exch -(Encoding) MStrCat -cvn dup where -{ -exch get -} -{ -pop -StandardEncoding -} ifelse -3 1 roll -dup MFontDict exch known not -{ -1 index findfont -dup length dict -begin -{1 index /FID ne -{def} -{pop pop} -ifelse} forall -/Encoding 3 index -def -currentdict -end -1 index exch definefont pop -MFontDict 1 index -null put -} -if -exch pop -exch pop -} def -/ISOLatin1 { (ISOLatin1) MCreateEncoding } def -/ISO8859 { (ISOLatin1) MCreateEncoding } def -/Mcopyfont { -dup -maxlength -dict -exch -{ -1 index -/FID -eq -{ -pop pop -} -{ -2 index -3 1 roll -put -} -ifelse -} -forall -} def -/Plain /Courier findfont Mcopyfont definefont pop -/Bold /Courier-Bold findfont Mcopyfont definefont pop -/Italic /Courier-Oblique findfont Mcopyfont definefont pop -/MathPictureStart { -gsave -Mtransform -Mlmarg -Mbmarg -translate -/Mtmatrix -matrix currentmatrix -def -/Mgmatrix -matrix currentmatrix -def -} bind def -/MathPictureEnd { -grestore -} bind def -/MathSubStart { -Momatrix -Mgmatrix Mtmatrix -Mlmarg Mrmarg -Mbmarg Mtmarg -Mwidth Mheight -11 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -Mgmatrix setmatrix -13 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -2 copy translate -/Mtmatrix matrix currentmatrix def -/Mlmarg 0 def -/Mrmarg 0 def -/Mbmarg 0 def -/Mtmarg 0 def -3 -1 roll -exch sub -/Mheight exch def -sub -/Mwidth exch def -} bind def -/MathSubEnd { -/Mheight exch def -/Mwidth exch def -/Mtmarg exch def -/Mbmarg exch def -/Mrmarg exch def -/Mlmarg exch def -/Mtmatrix exch def -dup setmatrix -/Mgmatrix exch def -/Momatrix exch def -} bind def -/Mdot { -moveto -0 0 rlineto -stroke -} bind def -/Mtetra { -moveto -lineto -lineto -lineto -fill -} bind def -/Metetra { -moveto -lineto -lineto -lineto -closepath -gsave -fill -grestore -0 setgray -stroke -} bind def -/Mistroke { -flattenpath -0 0 0 -{ -4 2 roll -pop pop -} -{ -4 -1 roll -2 index -sub dup mul -4 -1 roll -2 index -sub dup mul -add sqrt -4 -1 roll -add -3 1 roll -} -{ -stop -} -{ -stop -} -pathforall -pop pop -currentpoint -stroke -moveto -currentdash -3 -1 roll -add -setdash -} bind def -/Mfstroke { -stroke -currentdash -pop 0 -setdash -} bind def -/Mrotsboxa { -gsave -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -grestore -Msboxa -3 -1 roll -/Mtmatrix -exch def -/Mrot -0 def -} bind def -/Msboxa { -newpath -5 -1 roll -Mvboxa -pop -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Msboxa1 -5 -3 roll -Msboxa1 -Mboxrot -[ -7 -2 roll -2 copy -[ -3 1 roll -10 -1 roll -9 -1 roll -] -6 1 roll -5 -2 roll -] -} bind def -/Msboxa1 { -sub -2 div -dup -2 index -1 add -mul -3 -1 roll --1 add -3 -1 roll -mul -} bind def -/Mvboxa { -Mfixwid -{ -Mvboxa1 -} -{ -dup -Mwidthcal -0 exch -{ -add -} -forall -exch -Mvboxa1 -4 index -7 -1 roll -add -4 -1 roll -pop -3 1 roll -} -ifelse -} bind def -/Mvboxa1 { -gsave -newpath -[ true -3 -1 roll -{ -Mbbox -5 -1 roll -{ -0 -5 1 roll -} -{ -7 -1 roll -exch sub -(m) stringwidth pop -.3 mul -sub -7 1 roll -6 -1 roll -4 -1 roll -Mmin -3 -1 roll -5 index -add -5 -1 roll -4 -1 roll -Mmax -4 -1 roll -} -ifelse -false -} -forall -{ stop } if -counttomark -1 add -4 roll -] -grestore -} bind def -/Mbbox { -1 dict begin -0 0 moveto -/temp (T) def -{ gsave -currentpoint newpath moveto -temp 0 3 -1 roll put temp -false charpath flattenpath currentpoint -pathbbox -grestore moveto lineto moveto} forall -pathbbox -newpath -end -} bind def -/Mmin { -2 copy -gt -{ exch } if -pop -} bind def -/Mmax { -2 copy -lt -{ exch } if -pop -} bind def -/Mrotshowa { -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -Mgmatrix setmatrix -Mshowa -/Mtmatrix -exch def -/Mrot 0 def -} bind def -/Mshowa { -4 -2 roll -moveto -2 index -Mtmatrix setmatrix -Mvboxa -7 1 roll -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Mshowa1 -4 1 roll -Mshowa1 -rmoveto -currentpoint -Mfixwid -{ -Mshowax -} -{ -Mshoway -} -ifelse -pop pop pop pop -Mgmatrix setmatrix -} bind def -/Mshowax { -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -Mfixdash -{ -Mfixdashp -} -if -show -} for -} bind def -/Mfixdashp { -dup -length -1 -gt -1 index -true exch -{ -45 -eq -and -} forall -and -{ -gsave -(--) -stringwidth pop -(-) -stringwidth pop -sub -2 div -0 rmoveto -dup -length -1 sub -{ -(-) -show -} -repeat -grestore -} -if -} bind def -/Mshoway { -3 index -Mwidthcal -5 1 roll -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -[ -6 index -aload -length -2 add --1 roll -{ -pop -Strform -stringwidth -pop -neg -exch -add -0 rmoveto -} -exch -kshow -cleartomark -} for -pop -} bind def -/Mwidthcal { -[ -exch -{ -Mwidthcal1 -} -forall -] -[ -exch -dup -Maxlen --1 add -0 1 -3 -1 roll -{ -[ -exch -2 index -{ -1 index -Mget -exch -} -forall -pop -Maxget -exch -} -for -pop -] -Mreva -} bind def -/Mreva { -[ -exch -aload -length --1 1 -{1 roll} -for -] -} bind def -/Mget { -1 index -length --1 add -1 index -ge -{ -get -} -{ -pop pop -0 -} -ifelse -} bind def -/Maxlen { -[ -exch -{ -length -} -forall -Maxget -} bind def -/Maxget { -counttomark --1 add -1 1 -3 -1 roll -{ -pop -Mmax -} -for -exch -pop -} bind def -/Mwidthcal1 { -[ -exch -{ -Strform -stringwidth -pop -} -forall -] -} bind def -/Strform { -/tem (x) def -tem 0 -3 -1 roll -put -tem -} bind def -/Mshowa1 { -2 copy -add -4 1 roll -sub -mul -sub --2 div -} bind def -/MathScale { -Mwidth -Mlmarg Mrmarg add -sub -Mheight -Mbmarg Mtmarg add -sub -0 0 moveto -1 index 0 -lineto -2 copy -lineto -0 1 index -lineto -clip newpath -Mlp -translate -dup -/Mathabs -exch def -scale -/yscale exch def -/ybias exch def -/xscale exch def -/xbias exch def -/Momatrix -xscale yscale matrix scale -xbias ybias matrix translate -matrix concatmatrix def -/Mgmatrix -matrix currentmatrix -def -} bind def -/Mlp { -3 copy -Mlpfirst -{ -Mnodistort -{ -Mmin -dup -} if -4 index -2 index -2 index -Mlprun -11 index -11 -1 roll -10 -4 roll -Mlp1 -8 index -9 -5 roll -Mlp1 -4 -1 roll -and -{ exit } if -3 -1 roll -pop pop -} loop -exch -3 1 roll -7 -3 roll -pop pop pop -} bind def -/Mlpfirst { -3 -1 roll -dup length -2 copy --2 add -get -aload -pop pop pop -4 -2 roll --1 add -get -aload -pop pop pop -6 -1 roll -3 -1 roll -5 -1 roll -sub -div -4 1 roll -exch sub -div -} bind def -/Mlprun { -2 copy -4 index -0 get -dup -4 1 roll -Mlprun1 -3 copy -8 -2 roll -9 -1 roll -{ -3 copy -Mlprun1 -3 copy -11 -3 roll -/gt Mlpminmax -8 3 roll -11 -3 roll -/lt Mlpminmax -8 3 roll -} forall -pop pop pop pop -3 1 roll -pop pop -aload pop -5 -1 roll -aload pop -exch -6 -1 roll -Mlprun2 -8 2 roll -4 -1 roll -Mlprun2 -6 2 roll -3 -1 roll -Mlprun2 -4 2 roll -exch -Mlprun2 -6 2 roll -} bind def -/Mlprun1 { -aload pop -exch -6 -1 roll -5 -1 roll -mul add -4 -2 roll -mul -3 -1 roll -add -} bind def -/Mlprun2 { -2 copy -add 2 div -3 1 roll -exch sub -} bind def -/Mlpminmax { -cvx -2 index -6 index -2 index -exec -{ -7 -3 roll -4 -1 roll -} if -1 index -5 index -3 -1 roll -exec -{ -4 1 roll -pop -5 -1 roll -aload -pop pop -4 -1 roll -aload pop -[ -8 -2 roll -pop -5 -2 roll -pop -6 -2 roll -pop -5 -1 roll -] -4 1 roll -pop -} -{ -pop pop pop -} ifelse -} bind def -/Mlp1 { -5 index -3 index sub -5 index -2 index mul -1 index -le -1 index -0 le -or -dup -not -{ -1 index -3 index div -.99999 mul -8 -1 roll -pop -7 1 roll -} -if -8 -1 roll -2 div -7 -2 roll -pop sub -5 index -6 -3 roll -pop pop -mul sub -exch -} bind def -/intop 0 def -/inrht 0 def -/inflag 0 def -/outflag 0 def -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -/Minner { -outflag -1 -eq -{ -/outflag 0 def -/intop 0 def -/inrht 0 def -} if -5 index -gsave -Mtmatrix setmatrix -Mvboxa pop -grestore -3 -1 roll -pop -dup -intop -gt -{ -/intop -exch def -} -{ pop } -ifelse -dup -inrht -gt -{ -/inrht -exch def -} -{ pop } -ifelse -pop -/inflag -1 def -} bind def -/Mouter { -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -inflag -1 eq -{ -dup -0 lt -{ -dup -intop -mul -neg -/yadtop -exch def -} if -dup -0 gt -{ -dup -intop -mul -/yadbot -exch def -} -if -pop -dup -0 lt -{ -dup -inrht -mul -neg -/xadrht -exch def -} if -dup -0 gt -{ -dup -inrht -mul -/xadlft -exch def -} if -pop -/outflag 1 def -} -{ pop pop} -ifelse -/inflag 0 def -/inrht 0 def -/intop 0 def -} bind def -/Mboxout { -outflag -1 -eq -{ -4 -1 -roll -xadlft -leadjust -add -sub -4 1 roll -3 -1 -roll -yadbot -leadjust -add -sub -3 1 -roll -exch -xadrht -leadjust -add -add -exch -yadtop -leadjust -add -add -/outflag 0 def -/xadlft 0 def -/yadbot 0 def -/xadrht 0 def -/yadtop 0 def -} if -} bind def -/leadjust { -(m) stringwidth pop -.5 mul -} bind def -/Mrotcheck { -dup -90 -eq -{ -yadbot -/yadbot -xadrht -def -/xadrht -yadtop -def -/yadtop -xadlft -def -/xadlft -exch -def -} -if -dup -cos -1 index -sin -Checkaux -dup -cos -1 index -sin neg -exch -Checkaux -3 1 roll -pop pop -} bind def -/Checkaux { -4 index -exch -4 index -mul -3 1 roll -mul add -4 1 roll -} bind def -/Mboxrot { -Mrot -90 eq -{ -brotaux -4 2 -roll -} -if -Mrot -180 eq -{ -4 2 -roll -brotaux -4 2 -roll -brotaux -} -if -Mrot -270 eq -{ -4 2 -roll -brotaux -} -if -} bind def -/brotaux { -neg -exch -neg -} bind def -/Mabswid { -Mathabs -div -setlinewidth -} bind def -/Mabsdash { -exch -Mathabs -[ -3 1 roll -exch -{ -exch -dup -3 -1 roll -exch -div -exch -} -forall -pop ] -exch -setdash -} bind def -/MBeginOrig { Momatrix concat} bind def -/MEndOrig { Mgmatrix setmatrix} bind def -/colorimage where -{ pop } -{ -/colorimage { -3 1 roll -pop pop -5 -1 roll -mul -4 1 roll -{ -currentfile -1 index -readhexstring -pop } -image -} bind def -} ifelse -/sampledsound where -{ pop} -{ /sampledsound { -exch -pop -exch -5 1 roll -mul -4 idiv -mul -2 idiv -exch pop -exch -/Mtempproc exch def -{ Mtempproc pop} -repeat -} bind def -} ifelse -/setcmykcolor where -{ pop} -{ /setcmykcolor { -4 1 -roll -[ -4 1 -roll -] -{ -1 index -sub -1 -sub neg -dup -0 -lt -{ -pop -0 -} -if -dup -1 -gt -{ -pop -1 -} -if -exch -} forall -pop -setrgbcolor -} bind def -} ifelse -%%AspectRatio: 0.61803 -MathPictureStart -/Courier-Oblique findfont 17 scalefont setfont -% Scaling calculations -0.404762 0.190476 0.250157 0.012658 [ -[(-2)] 0.02381 0 0 2 0 Minner Mrotsboxa -[(-1)] 0.21429 0 0 2 0 Minner Mrotsboxa -[(0)] 0.40476 0 0 2 0 Minner Mrotsboxa -[(1)] 0.59524 0 0 2 0 Minner Mrotsboxa -[(2)] 0.78571 0 0 2 0 Minner Mrotsboxa -[(3)] 0.97619 0 0 2 0 Minner Mrotsboxa -[(x)] 0.5 0 0 2 0 0 -1 Mouter Mrotsboxa -[(-10)] -0.0125 0.12358 1 0 0 Minner Mrotsboxa -[(0)] -0.0125 0.25016 1 0 0 Minner Mrotsboxa -[(10)] -0.0125 0.37674 1 0 0 Minner Mrotsboxa -[(20)] -0.0125 0.50332 1 0 0 Minner Mrotsboxa -[(y)] -0.0125 0.30902 1 0 90 -1 0 Mouter Mrotsboxa -[ -0.001 -0.001 0 0 ] -[ 1.001 0.61903 0 0 ] -] MathScale -% Start of Graphics -1 setlinecap -1 setlinejoin -newpath -%%Object: Graphics -[ ] 0 setdash -0 setgray -gsave -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.21429 0 moveto -0.21429 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.40476 0 moveto -0.40476 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.59524 0 moveto -0.59524 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.78571 0 moveto -0.78571 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.12358 moveto -1 0.12358 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.25016 moveto -1 0.25016 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.37674 moveto -1 0.37674 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.50332 moveto -1 0.50332 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.02381 0 moveto -0.02381 0.00625 lineto -stroke -grestore -[(-2)] 0.02381 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.21429 0 moveto -0.21429 0.00625 lineto -stroke -grestore -[(-1)] 0.21429 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.40476 0 moveto -0.40476 0.00625 lineto -stroke -grestore -[(0)] 0.40476 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.59524 0 moveto -0.59524 0.00625 lineto -stroke -grestore -[(1)] 0.59524 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.78571 0 moveto -0.78571 0.00625 lineto -stroke -grestore -[(2)] 0.78571 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.97619 0 moveto -0.97619 0.00625 lineto -stroke -grestore -[(3)] 0.97619 0 0 2 0 Minner Mrotshowa -gsave -0.001 setlinewidth -0.0619 0 moveto -0.0619 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.1 0 moveto -0.1 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.1381 0 moveto -0.1381 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.17619 0 moveto -0.17619 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.25238 0 moveto -0.25238 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.29048 0 moveto -0.29048 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.32857 0 moveto -0.32857 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.36667 0 moveto -0.36667 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.44286 0 moveto -0.44286 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.48095 0 moveto -0.48095 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.51905 0 moveto -0.51905 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.55714 0 moveto -0.55714 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.63333 0 moveto -0.63333 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.67143 0 moveto -0.67143 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.70952 0 moveto -0.70952 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.74762 0 moveto -0.74762 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.82381 0 moveto -0.82381 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.8619 0 moveto -0.8619 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.9 0 moveto -0.9 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.9381 0 moveto -0.9381 0.00375 lineto -stroke -grestore -[(x)] 0.5 0 0 2 0 0 -1 Mouter Mrotshowa -gsave -0.002 setlinewidth -0 0 moveto -1 0 lineto -stroke -grestore -gsave -0.002 setlinewidth -0 0.12358 moveto -0.00625 0.12358 lineto -stroke -grestore -[(-10)] -0.0125 0.12358 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.25016 moveto -0.00625 0.25016 lineto -stroke -grestore -[(0)] -0.0125 0.25016 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.37674 moveto -0.00625 0.37674 lineto -stroke -grestore -[(10)] -0.0125 0.37674 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.50332 moveto -0.00625 0.50332 lineto -stroke -grestore -[(20)] -0.0125 0.50332 1 0 0 Minner Mrotshowa -gsave -0.001 setlinewidth -0 0.02231 moveto -0.00375 0.02231 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.04763 moveto -0.00375 0.04763 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.07294 moveto -0.00375 0.07294 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.09826 moveto -0.00375 0.09826 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.14889 moveto -0.00375 0.14889 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.17421 moveto -0.00375 0.17421 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.19952 moveto -0.00375 0.19952 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.22484 moveto -0.00375 0.22484 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.27547 moveto -0.00375 0.27547 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.30079 moveto -0.00375 0.30079 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.32611 moveto -0.00375 0.32611 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.35142 moveto -0.00375 0.35142 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.40205 moveto -0.00375 0.40205 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.42737 moveto -0.00375 0.42737 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.45269 moveto -0.00375 0.45269 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.478 moveto -0.00375 0.478 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.52864 moveto -0.00375 0.52864 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.55395 moveto -0.00375 0.55395 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.57927 moveto -0.00375 0.57927 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.60458 moveto -0.00375 0.60458 lineto -stroke -grestore -[(y)] -0.0125 0.30902 1 0 90 -1 0 Mouter Mrotshowa -gsave -0.002 setlinewidth -0 0 moveto -0 0.61803 lineto -stroke -grestore -grestore -gsave -gsave -0.002 setlinewidth -0.02381 0.61178 moveto -0.02381 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.21429 0.61178 moveto -0.21429 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.40476 0.61178 moveto -0.40476 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.59524 0.61178 moveto -0.59524 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.78571 0.61178 moveto -0.78571 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.97619 0.61178 moveto -0.97619 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.0619 0.61428 moveto -0.0619 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.1 0.61428 moveto -0.1 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.1381 0.61428 moveto -0.1381 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.17619 0.61428 moveto -0.17619 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.25238 0.61428 moveto -0.25238 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.29048 0.61428 moveto -0.29048 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.32857 0.61428 moveto -0.32857 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.36667 0.61428 moveto -0.36667 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.44286 0.61428 moveto -0.44286 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.48095 0.61428 moveto -0.48095 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.51905 0.61428 moveto -0.51905 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.55714 0.61428 moveto -0.55714 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.63333 0.61428 moveto -0.63333 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.67143 0.61428 moveto -0.67143 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.70952 0.61428 moveto -0.70952 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.74762 0.61428 moveto -0.74762 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.82381 0.61428 moveto -0.82381 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.8619 0.61428 moveto -0.8619 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.9 0.61428 moveto -0.9 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.9381 0.61428 moveto -0.9381 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0 0.61803 moveto -1 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.12358 moveto -1 0.12358 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.25016 moveto -1 0.25016 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.37674 moveto -1 0.37674 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.50332 moveto -1 0.50332 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.02231 moveto -1 0.02231 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.04763 moveto -1 0.04763 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.07294 moveto -1 0.07294 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.09826 moveto -1 0.09826 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.14889 moveto -1 0.14889 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.17421 moveto -1 0.17421 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.19952 moveto -1 0.19952 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.22484 moveto -1 0.22484 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.27547 moveto -1 0.27547 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.30079 moveto -1 0.30079 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.32611 moveto -1 0.32611 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.35142 moveto -1 0.35142 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.40205 moveto -1 0.40205 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.42737 moveto -1 0.42737 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.45269 moveto -1 0.45269 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.478 moveto -1 0.478 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.52864 moveto -1 0.52864 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.55395 moveto -1 0.55395 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.57927 moveto -1 0.57927 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.60458 moveto -1 0.60458 lineto -stroke -grestore -gsave -0.002 setlinewidth -1 0 moveto -1 0.61803 lineto -stroke -grestore -grestore -gsave -gsave -0.002 setlinewidth -0 0.25016 moveto -1 0.25016 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.40476 0 moveto -0.40476 0.61803 lineto -stroke -grestore -grestore -0 0 moveto -1 0 lineto -1 0.61803 lineto -0 0.61803 lineto -closepath -clip -newpath -gsave -gsave -gsave -0.004 setlinewidth -0.02381 0.01472 moveto -0.06349 0.03924 lineto -0.10317 0.06377 lineto -0.14286 0.08829 lineto -0.18254 0.11282 lineto -0.22222 0.13734 lineto -0.2619 0.16187 lineto -0.30159 0.18639 lineto -0.34127 0.21092 lineto -0.38095 0.23544 lineto -0.42063 0.25997 lineto -0.46032 0.28449 lineto -0.5 0.30902 lineto -0.53968 0.33354 lineto -0.57937 0.35807 lineto -0.61905 0.38259 lineto -0.65873 0.40712 lineto -0.69841 0.43164 lineto -0.7381 0.45617 lineto -0.77778 0.48069 lineto -0.81746 0.50522 lineto -0.85714 0.52974 lineto -0.89683 0.55427 lineto -0.93651 0.57879 lineto -0.97619 0.60332 lineto -stroke -grestore -grestore -grestore -% End of Graphics -MathPictureEnd -end -showpage diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v7.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v7.gif deleted file mode 100755 index f6845032b..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v7.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v8.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v8.eps deleted file mode 100755 index 44049d626..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v8.eps +++ /dev/null @@ -1,2149 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 72.0 242.0 540.0 550.0 -%%Creator: Mathematica -%%CreationDate: Mon Aug 30 10:27:21 CDT 1993 -%%EndComments -/Mathdict 100 dict def -Mathdict begin -/Mlmarg 1.0 72 mul def -/Mrmarg 1.0 72 mul def -/Mbmarg 1.0 72 mul def -/Mtmarg 1.0 72 mul def -/Mwidth 8.5 72 mul def -/Mheight 11 72 mul def -/Mtransform { } bind def -/Mnodistort true def -/Mfixwid false def -/Mfixdash false def -/Mrot 0 def -/Mpstart { -MathPictureStart -} bind def -/Mpend { -MathPictureEnd -} bind def -/Mscale { -0 1 0 1 -5 -1 roll -MathScale -} bind def -/ISOLatin1Encoding dup where -{ pop pop } -{ -[ -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright -/parenleft /parenright /asterisk /plus /comma /minus /period /slash -/zero /one /two /three /four /five /six /seven -/eight /nine /colon /semicolon /less /equal /greater /question -/at /A /B /C /D /E /F /G -/H /I /J /K /L /M /N /O -/P /Q /R /S /T /U /V /W -/X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore -/quoteleft /a /b /c /d /e /f /g -/h /i /j /k /l /m /n /o -/p /q /r /s /t /u /v /w -/x /y /z /braceleft /bar /braceright /asciitilde /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent -/dieresis /.notdef /ring /cedilla /.notdef /hungarumlaut /ogonek /caron -/space /exclamdown /cent /sterling /currency /yen /brokenbar /section -/dieresis /copyright /ordfeminine /guillemotleft -/logicalnot /hyphen /registered /macron -/degree /plusminus /twosuperior /threesuperior -/acute /mu /paragraph /periodcentered -/cedilla /onesuperior /ordmasculine /guillemotright -/onequarter /onehalf /threequarters /questiondown -/Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla -/Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis -/Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply -/Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls -/agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla -/egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis -/eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide -/oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis -] def -} ifelse -/MFontDict 50 dict def -/MStrCat -{ -exch -dup length -2 index length add -string -dup 3 1 roll -copy -length -exch dup -4 2 roll exch -putinterval -} def -/MCreateEncoding -{ -1 index -255 string cvs -(-) MStrCat -1 index MStrCat -cvn exch -(Encoding) MStrCat -cvn dup where -{ -exch get -} -{ -pop -StandardEncoding -} ifelse -3 1 roll -dup MFontDict exch known not -{ -1 index findfont -dup length dict -begin -{1 index /FID ne -{def} -{pop pop} -ifelse} forall -/Encoding 3 index -def -currentdict -end -1 index exch definefont pop -MFontDict 1 index -null put -} -if -exch pop -exch pop -} def -/ISOLatin1 { (ISOLatin1) MCreateEncoding } def -/ISO8859 { (ISOLatin1) MCreateEncoding } def -/Mcopyfont { -dup -maxlength -dict -exch -{ -1 index -/FID -eq -{ -pop pop -} -{ -2 index -3 1 roll -put -} -ifelse -} -forall -} def -/Plain /Courier findfont Mcopyfont definefont pop -/Bold /Courier-Bold findfont Mcopyfont definefont pop -/Italic /Courier-Oblique findfont Mcopyfont definefont pop -/MathPictureStart { -gsave -Mtransform -Mlmarg -Mbmarg -translate -/Mtmatrix -matrix currentmatrix -def -/Mgmatrix -matrix currentmatrix -def -} bind def -/MathPictureEnd { -grestore -} bind def -/MathSubStart { -Momatrix -Mgmatrix Mtmatrix -Mlmarg Mrmarg -Mbmarg Mtmarg -Mwidth Mheight -11 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -Mgmatrix setmatrix -13 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -2 copy translate -/Mtmatrix matrix currentmatrix def -/Mlmarg 0 def -/Mrmarg 0 def -/Mbmarg 0 def -/Mtmarg 0 def -3 -1 roll -exch sub -/Mheight exch def -sub -/Mwidth exch def -} bind def -/MathSubEnd { -/Mheight exch def -/Mwidth exch def -/Mtmarg exch def -/Mbmarg exch def -/Mrmarg exch def -/Mlmarg exch def -/Mtmatrix exch def -dup setmatrix -/Mgmatrix exch def -/Momatrix exch def -} bind def -/Mdot { -moveto -0 0 rlineto -stroke -} bind def -/Mtetra { -moveto -lineto -lineto -lineto -fill -} bind def -/Metetra { -moveto -lineto -lineto -lineto -closepath -gsave -fill -grestore -0 setgray -stroke -} bind def -/Mistroke { -flattenpath -0 0 0 -{ -4 2 roll -pop pop -} -{ -4 -1 roll -2 index -sub dup mul -4 -1 roll -2 index -sub dup mul -add sqrt -4 -1 roll -add -3 1 roll -} -{ -stop -} -{ -stop -} -pathforall -pop pop -currentpoint -stroke -moveto -currentdash -3 -1 roll -add -setdash -} bind def -/Mfstroke { -stroke -currentdash -pop 0 -setdash -} bind def -/Mrotsboxa { -gsave -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -grestore -Msboxa -3 -1 roll -/Mtmatrix -exch def -/Mrot -0 def -} bind def -/Msboxa { -newpath -5 -1 roll -Mvboxa -pop -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Msboxa1 -5 -3 roll -Msboxa1 -Mboxrot -[ -7 -2 roll -2 copy -[ -3 1 roll -10 -1 roll -9 -1 roll -] -6 1 roll -5 -2 roll -] -} bind def -/Msboxa1 { -sub -2 div -dup -2 index -1 add -mul -3 -1 roll --1 add -3 -1 roll -mul -} bind def -/Mvboxa { -Mfixwid -{ -Mvboxa1 -} -{ -dup -Mwidthcal -0 exch -{ -add -} -forall -exch -Mvboxa1 -4 index -7 -1 roll -add -4 -1 roll -pop -3 1 roll -} -ifelse -} bind def -/Mvboxa1 { -gsave -newpath -[ true -3 -1 roll -{ -Mbbox -5 -1 roll -{ -0 -5 1 roll -} -{ -7 -1 roll -exch sub -(m) stringwidth pop -.3 mul -sub -7 1 roll -6 -1 roll -4 -1 roll -Mmin -3 -1 roll -5 index -add -5 -1 roll -4 -1 roll -Mmax -4 -1 roll -} -ifelse -false -} -forall -{ stop } if -counttomark -1 add -4 roll -] -grestore -} bind def -/Mbbox { -1 dict begin -0 0 moveto -/temp (T) def -{ gsave -currentpoint newpath moveto -temp 0 3 -1 roll put temp -false charpath flattenpath currentpoint -pathbbox -grestore moveto lineto moveto} forall -pathbbox -newpath -end -} bind def -/Mmin { -2 copy -gt -{ exch } if -pop -} bind def -/Mmax { -2 copy -lt -{ exch } if -pop -} bind def -/Mrotshowa { -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -Mgmatrix setmatrix -Mshowa -/Mtmatrix -exch def -/Mrot 0 def -} bind def -/Mshowa { -4 -2 roll -moveto -2 index -Mtmatrix setmatrix -Mvboxa -7 1 roll -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Mshowa1 -4 1 roll -Mshowa1 -rmoveto -currentpoint -Mfixwid -{ -Mshowax -} -{ -Mshoway -} -ifelse -pop pop pop pop -Mgmatrix setmatrix -} bind def -/Mshowax { -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -Mfixdash -{ -Mfixdashp -} -if -show -} for -} bind def -/Mfixdashp { -dup -length -1 -gt -1 index -true exch -{ -45 -eq -and -} forall -and -{ -gsave -(--) -stringwidth pop -(-) -stringwidth pop -sub -2 div -0 rmoveto -dup -length -1 sub -{ -(-) -show -} -repeat -grestore -} -if -} bind def -/Mshoway { -3 index -Mwidthcal -5 1 roll -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -[ -6 index -aload -length -2 add --1 roll -{ -pop -Strform -stringwidth -pop -neg -exch -add -0 rmoveto -} -exch -kshow -cleartomark -} for -pop -} bind def -/Mwidthcal { -[ -exch -{ -Mwidthcal1 -} -forall -] -[ -exch -dup -Maxlen --1 add -0 1 -3 -1 roll -{ -[ -exch -2 index -{ -1 index -Mget -exch -} -forall -pop -Maxget -exch -} -for -pop -] -Mreva -} bind def -/Mreva { -[ -exch -aload -length --1 1 -{1 roll} -for -] -} bind def -/Mget { -1 index -length --1 add -1 index -ge -{ -get -} -{ -pop pop -0 -} -ifelse -} bind def -/Maxlen { -[ -exch -{ -length -} -forall -Maxget -} bind def -/Maxget { -counttomark --1 add -1 1 -3 -1 roll -{ -pop -Mmax -} -for -exch -pop -} bind def -/Mwidthcal1 { -[ -exch -{ -Strform -stringwidth -pop -} -forall -] -} bind def -/Strform { -/tem (x) def -tem 0 -3 -1 roll -put -tem -} bind def -/Mshowa1 { -2 copy -add -4 1 roll -sub -mul -sub --2 div -} bind def -/MathScale { -Mwidth -Mlmarg Mrmarg add -sub -Mheight -Mbmarg Mtmarg add -sub -0 0 moveto -1 index 0 -lineto -2 copy -lineto -0 1 index -lineto -clip newpath -Mlp -translate -dup -/Mathabs -exch def -scale -/yscale exch def -/ybias exch def -/xscale exch def -/xbias exch def -/Momatrix -xscale yscale matrix scale -xbias ybias matrix translate -matrix concatmatrix def -/Mgmatrix -matrix currentmatrix -def -} bind def -/Mlp { -3 copy -Mlpfirst -{ -Mnodistort -{ -Mmin -dup -} if -4 index -2 index -2 index -Mlprun -11 index -11 -1 roll -10 -4 roll -Mlp1 -8 index -9 -5 roll -Mlp1 -4 -1 roll -and -{ exit } if -3 -1 roll -pop pop -} loop -exch -3 1 roll -7 -3 roll -pop pop pop -} bind def -/Mlpfirst { -3 -1 roll -dup length -2 copy --2 add -get -aload -pop pop pop -4 -2 roll --1 add -get -aload -pop pop pop -6 -1 roll -3 -1 roll -5 -1 roll -sub -div -4 1 roll -exch sub -div -} bind def -/Mlprun { -2 copy -4 index -0 get -dup -4 1 roll -Mlprun1 -3 copy -8 -2 roll -9 -1 roll -{ -3 copy -Mlprun1 -3 copy -11 -3 roll -/gt Mlpminmax -8 3 roll -11 -3 roll -/lt Mlpminmax -8 3 roll -} forall -pop pop pop pop -3 1 roll -pop pop -aload pop -5 -1 roll -aload pop -exch -6 -1 roll -Mlprun2 -8 2 roll -4 -1 roll -Mlprun2 -6 2 roll -3 -1 roll -Mlprun2 -4 2 roll -exch -Mlprun2 -6 2 roll -} bind def -/Mlprun1 { -aload pop -exch -6 -1 roll -5 -1 roll -mul add -4 -2 roll -mul -3 -1 roll -add -} bind def -/Mlprun2 { -2 copy -add 2 div -3 1 roll -exch sub -} bind def -/Mlpminmax { -cvx -2 index -6 index -2 index -exec -{ -7 -3 roll -4 -1 roll -} if -1 index -5 index -3 -1 roll -exec -{ -4 1 roll -pop -5 -1 roll -aload -pop pop -4 -1 roll -aload pop -[ -8 -2 roll -pop -5 -2 roll -pop -6 -2 roll -pop -5 -1 roll -] -4 1 roll -pop -} -{ -pop pop pop -} ifelse -} bind def -/Mlp1 { -5 index -3 index sub -5 index -2 index mul -1 index -le -1 index -0 le -or -dup -not -{ -1 index -3 index div -.99999 mul -8 -1 roll -pop -7 1 roll -} -if -8 -1 roll -2 div -7 -2 roll -pop sub -5 index -6 -3 roll -pop pop -mul sub -exch -} bind def -/intop 0 def -/inrht 0 def -/inflag 0 def -/outflag 0 def -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -/Minner { -outflag -1 -eq -{ -/outflag 0 def -/intop 0 def -/inrht 0 def -} if -5 index -gsave -Mtmatrix setmatrix -Mvboxa pop -grestore -3 -1 roll -pop -dup -intop -gt -{ -/intop -exch def -} -{ pop } -ifelse -dup -inrht -gt -{ -/inrht -exch def -} -{ pop } -ifelse -pop -/inflag -1 def -} bind def -/Mouter { -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -inflag -1 eq -{ -dup -0 lt -{ -dup -intop -mul -neg -/yadtop -exch def -} if -dup -0 gt -{ -dup -intop -mul -/yadbot -exch def -} -if -pop -dup -0 lt -{ -dup -inrht -mul -neg -/xadrht -exch def -} if -dup -0 gt -{ -dup -inrht -mul -/xadlft -exch def -} if -pop -/outflag 1 def -} -{ pop pop} -ifelse -/inflag 0 def -/inrht 0 def -/intop 0 def -} bind def -/Mboxout { -outflag -1 -eq -{ -4 -1 -roll -xadlft -leadjust -add -sub -4 1 roll -3 -1 -roll -yadbot -leadjust -add -sub -3 1 -roll -exch -xadrht -leadjust -add -add -exch -yadtop -leadjust -add -add -/outflag 0 def -/xadlft 0 def -/yadbot 0 def -/xadrht 0 def -/yadtop 0 def -} if -} bind def -/leadjust { -(m) stringwidth pop -.5 mul -} bind def -/Mrotcheck { -dup -90 -eq -{ -yadbot -/yadbot -xadrht -def -/xadrht -yadtop -def -/yadtop -xadlft -def -/xadlft -exch -def -} -if -dup -cos -1 index -sin -Checkaux -dup -cos -1 index -sin neg -exch -Checkaux -3 1 roll -pop pop -} bind def -/Checkaux { -4 index -exch -4 index -mul -3 1 roll -mul add -4 1 roll -} bind def -/Mboxrot { -Mrot -90 eq -{ -brotaux -4 2 -roll -} -if -Mrot -180 eq -{ -4 2 -roll -brotaux -4 2 -roll -brotaux -} -if -Mrot -270 eq -{ -4 2 -roll -brotaux -} -if -} bind def -/brotaux { -neg -exch -neg -} bind def -/Mabswid { -Mathabs -div -setlinewidth -} bind def -/Mabsdash { -exch -Mathabs -[ -3 1 roll -exch -{ -exch -dup -3 -1 roll -exch -div -exch -} -forall -pop ] -exch -setdash -} bind def -/MBeginOrig { Momatrix concat} bind def -/MEndOrig { Mgmatrix setmatrix} bind def -/colorimage where -{ pop } -{ -/colorimage { -3 1 roll -pop pop -5 -1 roll -mul -4 1 roll -{ -currentfile -1 index -readhexstring -pop } -image -} bind def -} ifelse -/sampledsound where -{ pop} -{ /sampledsound { -exch -pop -exch -5 1 roll -mul -4 idiv -mul -2 idiv -exch pop -exch -/Mtempproc exch def -{ Mtempproc pop} -repeat -} bind def -} ifelse -/setcmykcolor where -{ pop} -{ /setcmykcolor { -4 1 -roll -[ -4 1 -roll -] -{ -1 index -sub -1 -sub neg -dup -0 -lt -{ -pop -0 -} -if -dup -1 -gt -{ -pop -1 -} -if -exch -} forall -pop -setrgbcolor -} bind def -} ifelse -%%AspectRatio: 0.61803 -MathPictureStart -/Courier-Oblique findfont 17 scalefont setfont -% Scaling calculations -0.480952 0.190476 0.320789 0.045277 [ -[(-2)] 0.1 0 0 2 0 Minner Mrotsboxa -[(-1)] 0.29048 0 0 2 0 Minner Mrotsboxa -[(0)] 0.48095 0 0 2 0 Minner Mrotsboxa -[(1)] 0.67143 0 0 2 0 Minner Mrotsboxa -[(2)] 0.8619 0 0 2 0 Minner Mrotsboxa -[(x)] 0.5 0 0 2 0 0 -1 Mouter Mrotsboxa -[(-6)] -0.0125 0.04913 1 0 0 Minner Mrotsboxa -[(-4)] -0.0125 0.13968 1 0 0 Minner Mrotsboxa -[(-2)] -0.0125 0.23023 1 0 0 Minner Mrotsboxa -[(0)] -0.0125 0.32079 1 0 0 Minner Mrotsboxa -[(2)] -0.0125 0.41134 1 0 0 Minner Mrotsboxa -[(4)] -0.0125 0.5019 1 0 0 Minner Mrotsboxa -[(6)] -0.0125 0.59245 1 0 0 Minner Mrotsboxa -[(Y)] -0.0125 0.30902 1 0 90 -1 0 Mouter Mrotsboxa -[ -0.001 -0.001 0 0 ] -[ 1.001 0.61903 0 0 ] -] MathScale -% Start of Graphics -1 setlinecap -1 setlinejoin -newpath -%%Object: Graphics -[ ] 0 setdash -0 setgray -gsave -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.1 0 moveto -0.1 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.29048 0 moveto -0.29048 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.48095 0 moveto -0.48095 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.67143 0 moveto -0.67143 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.8619 0 moveto -0.8619 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.04913 moveto -1 0.04913 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.13968 moveto -1 0.13968 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.23023 moveto -1 0.23023 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.32079 moveto -1 0.32079 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.41134 moveto -1 0.41134 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.5019 moveto -1 0.5019 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.59245 moveto -1 0.59245 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.1 0 moveto -0.1 0.00625 lineto -stroke -grestore -[(-2)] 0.1 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.29048 0 moveto -0.29048 0.00625 lineto -stroke -grestore -[(-1)] 0.29048 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.48095 0 moveto -0.48095 0.00625 lineto -stroke -grestore -[(0)] 0.48095 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.67143 0 moveto -0.67143 0.00625 lineto -stroke -grestore -[(1)] 0.67143 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.8619 0 moveto -0.8619 0.00625 lineto -stroke -grestore -[(2)] 0.8619 0 0 2 0 Minner Mrotshowa -gsave -0.001 setlinewidth -0.1381 0 moveto -0.1381 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.17619 0 moveto -0.17619 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.21429 0 moveto -0.21429 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.25238 0 moveto -0.25238 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.32857 0 moveto -0.32857 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.36667 0 moveto -0.36667 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.40476 0 moveto -0.40476 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.44286 0 moveto -0.44286 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.51905 0 moveto -0.51905 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.55714 0 moveto -0.55714 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.59524 0 moveto -0.59524 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.63333 0 moveto -0.63333 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.70952 0 moveto -0.70952 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.74762 0 moveto -0.74762 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.78571 0 moveto -0.78571 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.82381 0 moveto -0.82381 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.0619 0 moveto -0.0619 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.02381 0 moveto -0.02381 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.9 0 moveto -0.9 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.9381 0 moveto -0.9381 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.97619 0 moveto -0.97619 0.00375 lineto -stroke -grestore -[(x)] 0.5 0 0 2 0 0 -1 Mouter Mrotshowa -gsave -0.002 setlinewidth -0 0 moveto -1 0 lineto -stroke -grestore -gsave -0.002 setlinewidth -0 0.04913 moveto -0.00625 0.04913 lineto -stroke -grestore -[(-6)] -0.0125 0.04913 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.13968 moveto -0.00625 0.13968 lineto -stroke -grestore -[(-4)] -0.0125 0.13968 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.23023 moveto -0.00625 0.23023 lineto -stroke -grestore -[(-2)] -0.0125 0.23023 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.32079 moveto -0.00625 0.32079 lineto -stroke -grestore -[(0)] -0.0125 0.32079 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.41134 moveto -0.00625 0.41134 lineto -stroke -grestore -[(2)] -0.0125 0.41134 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.5019 moveto -0.00625 0.5019 lineto -stroke -grestore -[(4)] -0.0125 0.5019 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.59245 moveto -0.00625 0.59245 lineto -stroke -grestore -[(6)] -0.0125 0.59245 1 0 0 Minner Mrotshowa -gsave -0.001 setlinewidth -0 0.06724 moveto -0.00375 0.06724 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.08535 moveto -0.00375 0.08535 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.10346 moveto -0.00375 0.10346 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.12157 moveto -0.00375 0.12157 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.15779 moveto -0.00375 0.15779 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.1759 moveto -0.00375 0.1759 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.19401 moveto -0.00375 0.19401 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.21212 moveto -0.00375 0.21212 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.24835 moveto -0.00375 0.24835 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.26646 moveto -0.00375 0.26646 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.28457 moveto -0.00375 0.28457 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.30268 moveto -0.00375 0.30268 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.3389 moveto -0.00375 0.3389 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.35701 moveto -0.00375 0.35701 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.37512 moveto -0.00375 0.37512 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.39323 moveto -0.00375 0.39323 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.42945 moveto -0.00375 0.42945 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.44757 moveto -0.00375 0.44757 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.46568 moveto -0.00375 0.46568 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.48379 moveto -0.00375 0.48379 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.52001 moveto -0.00375 0.52001 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.53812 moveto -0.00375 0.53812 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.55623 moveto -0.00375 0.55623 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.57434 moveto -0.00375 0.57434 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.03101 moveto -0.00375 0.03101 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.0129 moveto -0.00375 0.0129 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.61056 moveto -0.00375 0.61056 lineto -stroke -grestore -[(Y)] -0.0125 0.30902 1 0 90 -1 0 Mouter Mrotshowa -gsave -0.002 setlinewidth -0 0 moveto -0 0.61803 lineto -stroke -grestore -grestore -gsave -gsave -0.002 setlinewidth -0.1 0.61178 moveto -0.1 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.29048 0.61178 moveto -0.29048 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.48095 0.61178 moveto -0.48095 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.67143 0.61178 moveto -0.67143 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.8619 0.61178 moveto -0.8619 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.1381 0.61428 moveto -0.1381 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.17619 0.61428 moveto -0.17619 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.21429 0.61428 moveto -0.21429 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.25238 0.61428 moveto -0.25238 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.32857 0.61428 moveto -0.32857 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.36667 0.61428 moveto -0.36667 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.40476 0.61428 moveto -0.40476 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.44286 0.61428 moveto -0.44286 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.51905 0.61428 moveto -0.51905 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.55714 0.61428 moveto -0.55714 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.59524 0.61428 moveto -0.59524 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.63333 0.61428 moveto -0.63333 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.70952 0.61428 moveto -0.70952 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.74762 0.61428 moveto -0.74762 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.78571 0.61428 moveto -0.78571 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.82381 0.61428 moveto -0.82381 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.0619 0.61428 moveto -0.0619 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.02381 0.61428 moveto -0.02381 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.9 0.61428 moveto -0.9 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.9381 0.61428 moveto -0.9381 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.97619 0.61428 moveto -0.97619 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0 0.61803 moveto -1 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.04913 moveto -1 0.04913 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.13968 moveto -1 0.13968 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.23023 moveto -1 0.23023 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.32079 moveto -1 0.32079 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.41134 moveto -1 0.41134 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.5019 moveto -1 0.5019 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.59245 moveto -1 0.59245 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.06724 moveto -1 0.06724 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.08535 moveto -1 0.08535 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.10346 moveto -1 0.10346 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.12157 moveto -1 0.12157 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.15779 moveto -1 0.15779 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.1759 moveto -1 0.1759 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.19401 moveto -1 0.19401 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.21212 moveto -1 0.21212 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.24835 moveto -1 0.24835 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.26646 moveto -1 0.26646 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.28457 moveto -1 0.28457 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.30268 moveto -1 0.30268 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.3389 moveto -1 0.3389 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.35701 moveto -1 0.35701 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.37512 moveto -1 0.37512 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.39323 moveto -1 0.39323 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.42945 moveto -1 0.42945 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.44757 moveto -1 0.44757 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.46568 moveto -1 0.46568 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.48379 moveto -1 0.48379 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.52001 moveto -1 0.52001 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.53812 moveto -1 0.53812 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.55623 moveto -1 0.55623 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.57434 moveto -1 0.57434 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.03101 moveto -1 0.03101 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.0129 moveto -1 0.0129 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.61056 moveto -1 0.61056 lineto -stroke -grestore -gsave -0.002 setlinewidth -1 0 moveto -1 0.61803 lineto -stroke -grestore -grestore -gsave -gsave -0.002 setlinewidth -0 0.32079 moveto -1 0.32079 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.48095 0 moveto -0.48095 0.61803 lineto -stroke -grestore -grestore -0 0 moveto -1 0 lineto -1 0.61803 lineto -0 0.61803 lineto -closepath -clip -newpath -gsave -gsave -gsave -0.004 setlinewidth -0.02381 0.60332 moveto -0.06349 0.57879 lineto -0.10317 0.55427 lineto -0.14286 0.52974 lineto -0.18254 0.50522 lineto -0.22222 0.48069 lineto -0.2619 0.45617 lineto -0.30159 0.43164 lineto -0.34127 0.40712 lineto -0.38095 0.38259 lineto -0.42063 0.35807 lineto -0.46032 0.33354 lineto -0.5 0.30902 lineto -0.53968 0.28449 lineto -0.57937 0.25997 lineto -0.61905 0.23544 lineto -0.65873 0.21092 lineto -0.69841 0.18639 lineto -0.7381 0.16187 lineto -0.77778 0.13734 lineto -0.81746 0.11282 lineto -0.85714 0.08829 lineto -0.89683 0.06377 lineto -0.93651 0.03924 lineto -0.97619 0.01472 lineto -stroke -grestore -grestore -grestore -% End of Graphics -MathPictureEnd -end -showpage diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v8.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v8.gif deleted file mode 100755 index 68a2d147e..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v8.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v9.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v9.eps deleted file mode 100755 index c4fa5810b..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v9.eps +++ /dev/null @@ -1,2097 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 72.0 242.0 540.0 550.0 -%%Creator: Mathematica -%%CreationDate: Mon Aug 30 10:28:49 CDT 1993 -%%EndComments -/Mathdict 100 dict def -Mathdict begin -/Mlmarg 1.0 72 mul def -/Mrmarg 1.0 72 mul def -/Mbmarg 1.0 72 mul def -/Mtmarg 1.0 72 mul def -/Mwidth 8.5 72 mul def -/Mheight 11 72 mul def -/Mtransform { } bind def -/Mnodistort true def -/Mfixwid false def -/Mfixdash false def -/Mrot 0 def -/Mpstart { -MathPictureStart -} bind def -/Mpend { -MathPictureEnd -} bind def -/Mscale { -0 1 0 1 -5 -1 roll -MathScale -} bind def -/ISOLatin1Encoding dup where -{ pop pop } -{ -[ -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright -/parenleft /parenright /asterisk /plus /comma /minus /period /slash -/zero /one /two /three /four /five /six /seven -/eight /nine /colon /semicolon /less /equal /greater /question -/at /A /B /C /D /E /F /G -/H /I /J /K /L /M /N /O -/P /Q /R /S /T /U /V /W -/X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore -/quoteleft /a /b /c /d /e /f /g -/h /i /j /k /l /m /n /o -/p /q /r /s /t /u /v /w -/x /y /z /braceleft /bar /braceright /asciitilde /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent -/dieresis /.notdef /ring /cedilla /.notdef /hungarumlaut /ogonek /caron -/space /exclamdown /cent /sterling /currency /yen /brokenbar /section -/dieresis /copyright /ordfeminine /guillemotleft -/logicalnot /hyphen /registered /macron -/degree /plusminus /twosuperior /threesuperior -/acute /mu /paragraph /periodcentered -/cedilla /onesuperior /ordmasculine /guillemotright -/onequarter /onehalf /threequarters /questiondown -/Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla -/Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis -/Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply -/Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls -/agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla -/egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis -/eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide -/oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis -] def -} ifelse -/MFontDict 50 dict def -/MStrCat -{ -exch -dup length -2 index length add -string -dup 3 1 roll -copy -length -exch dup -4 2 roll exch -putinterval -} def -/MCreateEncoding -{ -1 index -255 string cvs -(-) MStrCat -1 index MStrCat -cvn exch -(Encoding) MStrCat -cvn dup where -{ -exch get -} -{ -pop -StandardEncoding -} ifelse -3 1 roll -dup MFontDict exch known not -{ -1 index findfont -dup length dict -begin -{1 index /FID ne -{def} -{pop pop} -ifelse} forall -/Encoding 3 index -def -currentdict -end -1 index exch definefont pop -MFontDict 1 index -null put -} -if -exch pop -exch pop -} def -/ISOLatin1 { (ISOLatin1) MCreateEncoding } def -/ISO8859 { (ISOLatin1) MCreateEncoding } def -/Mcopyfont { -dup -maxlength -dict -exch -{ -1 index -/FID -eq -{ -pop pop -} -{ -2 index -3 1 roll -put -} -ifelse -} -forall -} def -/Plain /Courier findfont Mcopyfont definefont pop -/Bold /Courier-Bold findfont Mcopyfont definefont pop -/Italic /Courier-Oblique findfont Mcopyfont definefont pop -/MathPictureStart { -gsave -Mtransform -Mlmarg -Mbmarg -translate -/Mtmatrix -matrix currentmatrix -def -/Mgmatrix -matrix currentmatrix -def -} bind def -/MathPictureEnd { -grestore -} bind def -/MathSubStart { -Momatrix -Mgmatrix Mtmatrix -Mlmarg Mrmarg -Mbmarg Mtmarg -Mwidth Mheight -11 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -Mgmatrix setmatrix -13 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -2 copy translate -/Mtmatrix matrix currentmatrix def -/Mlmarg 0 def -/Mrmarg 0 def -/Mbmarg 0 def -/Mtmarg 0 def -3 -1 roll -exch sub -/Mheight exch def -sub -/Mwidth exch def -} bind def -/MathSubEnd { -/Mheight exch def -/Mwidth exch def -/Mtmarg exch def -/Mbmarg exch def -/Mrmarg exch def -/Mlmarg exch def -/Mtmatrix exch def -dup setmatrix -/Mgmatrix exch def -/Momatrix exch def -} bind def -/Mdot { -moveto -0 0 rlineto -stroke -} bind def -/Mtetra { -moveto -lineto -lineto -lineto -fill -} bind def -/Metetra { -moveto -lineto -lineto -lineto -closepath -gsave -fill -grestore -0 setgray -stroke -} bind def -/Mistroke { -flattenpath -0 0 0 -{ -4 2 roll -pop pop -} -{ -4 -1 roll -2 index -sub dup mul -4 -1 roll -2 index -sub dup mul -add sqrt -4 -1 roll -add -3 1 roll -} -{ -stop -} -{ -stop -} -pathforall -pop pop -currentpoint -stroke -moveto -currentdash -3 -1 roll -add -setdash -} bind def -/Mfstroke { -stroke -currentdash -pop 0 -setdash -} bind def -/Mrotsboxa { -gsave -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -grestore -Msboxa -3 -1 roll -/Mtmatrix -exch def -/Mrot -0 def -} bind def -/Msboxa { -newpath -5 -1 roll -Mvboxa -pop -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Msboxa1 -5 -3 roll -Msboxa1 -Mboxrot -[ -7 -2 roll -2 copy -[ -3 1 roll -10 -1 roll -9 -1 roll -] -6 1 roll -5 -2 roll -] -} bind def -/Msboxa1 { -sub -2 div -dup -2 index -1 add -mul -3 -1 roll --1 add -3 -1 roll -mul -} bind def -/Mvboxa { -Mfixwid -{ -Mvboxa1 -} -{ -dup -Mwidthcal -0 exch -{ -add -} -forall -exch -Mvboxa1 -4 index -7 -1 roll -add -4 -1 roll -pop -3 1 roll -} -ifelse -} bind def -/Mvboxa1 { -gsave -newpath -[ true -3 -1 roll -{ -Mbbox -5 -1 roll -{ -0 -5 1 roll -} -{ -7 -1 roll -exch sub -(m) stringwidth pop -.3 mul -sub -7 1 roll -6 -1 roll -4 -1 roll -Mmin -3 -1 roll -5 index -add -5 -1 roll -4 -1 roll -Mmax -4 -1 roll -} -ifelse -false -} -forall -{ stop } if -counttomark -1 add -4 roll -] -grestore -} bind def -/Mbbox { -1 dict begin -0 0 moveto -/temp (T) def -{ gsave -currentpoint newpath moveto -temp 0 3 -1 roll put temp -false charpath flattenpath currentpoint -pathbbox -grestore moveto lineto moveto} forall -pathbbox -newpath -end -} bind def -/Mmin { -2 copy -gt -{ exch } if -pop -} bind def -/Mmax { -2 copy -lt -{ exch } if -pop -} bind def -/Mrotshowa { -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -Mgmatrix setmatrix -Mshowa -/Mtmatrix -exch def -/Mrot 0 def -} bind def -/Mshowa { -4 -2 roll -moveto -2 index -Mtmatrix setmatrix -Mvboxa -7 1 roll -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Mshowa1 -4 1 roll -Mshowa1 -rmoveto -currentpoint -Mfixwid -{ -Mshowax -} -{ -Mshoway -} -ifelse -pop pop pop pop -Mgmatrix setmatrix -} bind def -/Mshowax { -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -Mfixdash -{ -Mfixdashp -} -if -show -} for -} bind def -/Mfixdashp { -dup -length -1 -gt -1 index -true exch -{ -45 -eq -and -} forall -and -{ -gsave -(--) -stringwidth pop -(-) -stringwidth pop -sub -2 div -0 rmoveto -dup -length -1 sub -{ -(-) -show -} -repeat -grestore -} -if -} bind def -/Mshoway { -3 index -Mwidthcal -5 1 roll -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -[ -6 index -aload -length -2 add --1 roll -{ -pop -Strform -stringwidth -pop -neg -exch -add -0 rmoveto -} -exch -kshow -cleartomark -} for -pop -} bind def -/Mwidthcal { -[ -exch -{ -Mwidthcal1 -} -forall -] -[ -exch -dup -Maxlen --1 add -0 1 -3 -1 roll -{ -[ -exch -2 index -{ -1 index -Mget -exch -} -forall -pop -Maxget -exch -} -for -pop -] -Mreva -} bind def -/Mreva { -[ -exch -aload -length --1 1 -{1 roll} -for -] -} bind def -/Mget { -1 index -length --1 add -1 index -ge -{ -get -} -{ -pop pop -0 -} -ifelse -} bind def -/Maxlen { -[ -exch -{ -length -} -forall -Maxget -} bind def -/Maxget { -counttomark --1 add -1 1 -3 -1 roll -{ -pop -Mmax -} -for -exch -pop -} bind def -/Mwidthcal1 { -[ -exch -{ -Strform -stringwidth -pop -} -forall -] -} bind def -/Strform { -/tem (x) def -tem 0 -3 -1 roll -put -tem -} bind def -/Mshowa1 { -2 copy -add -4 1 roll -sub -mul -sub --2 div -} bind def -/MathScale { -Mwidth -Mlmarg Mrmarg add -sub -Mheight -Mbmarg Mtmarg add -sub -0 0 moveto -1 index 0 -lineto -2 copy -lineto -0 1 index -lineto -clip newpath -Mlp -translate -dup -/Mathabs -exch def -scale -/yscale exch def -/ybias exch def -/xscale exch def -/xbias exch def -/Momatrix -xscale yscale matrix scale -xbias ybias matrix translate -matrix concatmatrix def -/Mgmatrix -matrix currentmatrix -def -} bind def -/Mlp { -3 copy -Mlpfirst -{ -Mnodistort -{ -Mmin -dup -} if -4 index -2 index -2 index -Mlprun -11 index -11 -1 roll -10 -4 roll -Mlp1 -8 index -9 -5 roll -Mlp1 -4 -1 roll -and -{ exit } if -3 -1 roll -pop pop -} loop -exch -3 1 roll -7 -3 roll -pop pop pop -} bind def -/Mlpfirst { -3 -1 roll -dup length -2 copy --2 add -get -aload -pop pop pop -4 -2 roll --1 add -get -aload -pop pop pop -6 -1 roll -3 -1 roll -5 -1 roll -sub -div -4 1 roll -exch sub -div -} bind def -/Mlprun { -2 copy -4 index -0 get -dup -4 1 roll -Mlprun1 -3 copy -8 -2 roll -9 -1 roll -{ -3 copy -Mlprun1 -3 copy -11 -3 roll -/gt Mlpminmax -8 3 roll -11 -3 roll -/lt Mlpminmax -8 3 roll -} forall -pop pop pop pop -3 1 roll -pop pop -aload pop -5 -1 roll -aload pop -exch -6 -1 roll -Mlprun2 -8 2 roll -4 -1 roll -Mlprun2 -6 2 roll -3 -1 roll -Mlprun2 -4 2 roll -exch -Mlprun2 -6 2 roll -} bind def -/Mlprun1 { -aload pop -exch -6 -1 roll -5 -1 roll -mul add -4 -2 roll -mul -3 -1 roll -add -} bind def -/Mlprun2 { -2 copy -add 2 div -3 1 roll -exch sub -} bind def -/Mlpminmax { -cvx -2 index -6 index -2 index -exec -{ -7 -3 roll -4 -1 roll -} if -1 index -5 index -3 -1 roll -exec -{ -4 1 roll -pop -5 -1 roll -aload -pop pop -4 -1 roll -aload pop -[ -8 -2 roll -pop -5 -2 roll -pop -6 -2 roll -pop -5 -1 roll -] -4 1 roll -pop -} -{ -pop pop pop -} ifelse -} bind def -/Mlp1 { -5 index -3 index sub -5 index -2 index mul -1 index -le -1 index -0 le -or -dup -not -{ -1 index -3 index div -.99999 mul -8 -1 roll -pop -7 1 roll -} -if -8 -1 roll -2 div -7 -2 roll -pop sub -5 index -6 -3 roll -pop pop -mul sub -exch -} bind def -/intop 0 def -/inrht 0 def -/inflag 0 def -/outflag 0 def -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -/Minner { -outflag -1 -eq -{ -/outflag 0 def -/intop 0 def -/inrht 0 def -} if -5 index -gsave -Mtmatrix setmatrix -Mvboxa pop -grestore -3 -1 roll -pop -dup -intop -gt -{ -/intop -exch def -} -{ pop } -ifelse -dup -inrht -gt -{ -/inrht -exch def -} -{ pop } -ifelse -pop -/inflag -1 def -} bind def -/Mouter { -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -inflag -1 eq -{ -dup -0 lt -{ -dup -intop -mul -neg -/yadtop -exch def -} if -dup -0 gt -{ -dup -intop -mul -/yadbot -exch def -} -if -pop -dup -0 lt -{ -dup -inrht -mul -neg -/xadrht -exch def -} if -dup -0 gt -{ -dup -inrht -mul -/xadlft -exch def -} if -pop -/outflag 1 def -} -{ pop pop} -ifelse -/inflag 0 def -/inrht 0 def -/intop 0 def -} bind def -/Mboxout { -outflag -1 -eq -{ -4 -1 -roll -xadlft -leadjust -add -sub -4 1 roll -3 -1 -roll -yadbot -leadjust -add -sub -3 1 -roll -exch -xadrht -leadjust -add -add -exch -yadtop -leadjust -add -add -/outflag 0 def -/xadlft 0 def -/yadbot 0 def -/xadrht 0 def -/yadtop 0 def -} if -} bind def -/leadjust { -(m) stringwidth pop -.5 mul -} bind def -/Mrotcheck { -dup -90 -eq -{ -yadbot -/yadbot -xadrht -def -/xadrht -yadtop -def -/yadtop -xadlft -def -/xadlft -exch -def -} -if -dup -cos -1 index -sin -Checkaux -dup -cos -1 index -sin neg -exch -Checkaux -3 1 roll -pop pop -} bind def -/Checkaux { -4 index -exch -4 index -mul -3 1 roll -mul add -4 1 roll -} bind def -/Mboxrot { -Mrot -90 eq -{ -brotaux -4 2 -roll -} -if -Mrot -180 eq -{ -4 2 -roll -brotaux -4 2 -roll -brotaux -} -if -Mrot -270 eq -{ -4 2 -roll -brotaux -} -if -} bind def -/brotaux { -neg -exch -neg -} bind def -/Mabswid { -Mathabs -div -setlinewidth -} bind def -/Mabsdash { -exch -Mathabs -[ -3 1 roll -exch -{ -exch -dup -3 -1 roll -exch -div -exch -} -forall -pop ] -exch -setdash -} bind def -/MBeginOrig { Momatrix concat} bind def -/MEndOrig { Mgmatrix setmatrix} bind def -/colorimage where -{ pop } -{ -/colorimage { -3 1 roll -pop pop -5 -1 roll -mul -4 1 roll -{ -currentfile -1 index -readhexstring -pop } -image -} bind def -} ifelse -/sampledsound where -{ pop} -{ /sampledsound { -exch -pop -exch -5 1 roll -mul -4 idiv -mul -2 idiv -exch pop -exch -/Mtempproc exch def -{ Mtempproc pop} -repeat -} bind def -} ifelse -/setcmykcolor where -{ pop} -{ /setcmykcolor { -4 1 -roll -[ -4 1 -roll -] -{ -1 index -sub -1 -sub neg -dup -0 -lt -{ -pop -0 -} -if -dup -1 -gt -{ -pop -1 -} -if -exch -} forall -pop -setrgbcolor -} bind def -} ifelse -%%AspectRatio: 0.61803 -MathPictureStart -/Courier-Oblique findfont 17 scalefont setfont -% Scaling calculations -0.398517 0.156128 0.371737 0.024742 [ -[(-2)] 0.08626 0 0 2 0 Minner Mrotsboxa -[(-1)] 0.24239 0 0 2 0 Minner Mrotsboxa -[(0)] 0.39852 0 0 2 0 Minner Mrotsboxa -[(1)] 0.55464 0 0 2 0 Minner Mrotsboxa -[(2)] 0.71077 0 0 2 0 Minner Mrotsboxa -[(3)] 0.8669 0 0 2 0 Minner Mrotsboxa -[(x)] 0.5 0 0 2 0 0 -1 Mouter Mrotsboxa -[(-15)] -0.0125 0.00061 1 0 0 Minner Mrotsboxa -[(-10)] -0.0125 0.12432 1 0 0 Minner Mrotsboxa -[(-5)] -0.0125 0.24803 1 0 0 Minner Mrotsboxa -[(0)] -0.0125 0.37174 1 0 0 Minner Mrotsboxa -[(5)] -0.0125 0.49545 1 0 0 Minner Mrotsboxa -[(Y)] -0.0125 0.30902 1 0 90 -1 0 Mouter Mrotsboxa -[ -0.001 -0.001 0 0 ] -[ 1.001 0.61903 0 0 ] -] MathScale -% Start of Graphics -1 setlinecap -1 setlinejoin -newpath -%%Object: Graphics -[ ] 0 setdash -0 setgray -gsave -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.08626 0 moveto -0.08626 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.24239 0 moveto -0.24239 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.39852 0 moveto -0.39852 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.55464 0 moveto -0.55464 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.71077 0 moveto -0.71077 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.8669 0 moveto -0.8669 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.12432 moveto -1 0.12432 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.24803 moveto -1 0.24803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.37174 moveto -1 0.37174 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.49545 moveto -1 0.49545 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.08626 0 moveto -0.08626 0.00625 lineto -stroke -grestore -[(-2)] 0.08626 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.24239 0 moveto -0.24239 0.00625 lineto -stroke -grestore -[(-1)] 0.24239 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.39852 0 moveto -0.39852 0.00625 lineto -stroke -grestore -[(0)] 0.39852 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.55464 0 moveto -0.55464 0.00625 lineto -stroke -grestore -[(1)] 0.55464 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.71077 0 moveto -0.71077 0.00625 lineto -stroke -grestore -[(2)] 0.71077 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.8669 0 moveto -0.8669 0.00625 lineto -stroke -grestore -[(3)] 0.8669 0 0 2 0 Minner Mrotshowa -gsave -0.001 setlinewidth -0.11749 0 moveto -0.11749 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.14871 0 moveto -0.14871 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.17994 0 moveto -0.17994 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.21116 0 moveto -0.21116 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.27361 0 moveto -0.27361 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.30484 0 moveto -0.30484 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.33607 0 moveto -0.33607 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.36729 0 moveto -0.36729 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.42974 0 moveto -0.42974 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.46097 0 moveto -0.46097 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.49219 0 moveto -0.49219 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.52342 0 moveto -0.52342 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.58587 0 moveto -0.58587 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.6171 0 moveto -0.6171 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.64832 0 moveto -0.64832 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.67955 0 moveto -0.67955 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.742 0 moveto -0.742 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.77322 0 moveto -0.77322 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.80445 0 moveto -0.80445 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.83568 0 moveto -0.83568 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.05504 0 moveto -0.05504 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.02381 0 moveto -0.02381 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.89813 0 moveto -0.89813 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.92935 0 moveto -0.92935 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.96058 0 moveto -0.96058 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.9918 0 moveto -0.9918 0.00375 lineto -stroke -grestore -[(x)] 0.5 0 0 2 0 0 -1 Mouter Mrotshowa -gsave -0.002 setlinewidth -0 0 moveto -1 0 lineto -stroke -grestore -gsave -0.002 setlinewidth -0 0.00061 moveto -0.00625 0.00061 lineto -stroke -grestore -[(-15)] -0.0125 0.00061 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.12432 moveto -0.00625 0.12432 lineto -stroke -grestore -[(-10)] -0.0125 0.12432 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.24803 moveto -0.00625 0.24803 lineto -stroke -grestore -[(-5)] -0.0125 0.24803 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.37174 moveto -0.00625 0.37174 lineto -stroke -grestore -[(0)] -0.0125 0.37174 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.49545 moveto -0.00625 0.49545 lineto -stroke -grestore -[(5)] -0.0125 0.49545 1 0 0 Minner Mrotshowa -gsave -0.001 setlinewidth -0 0.02535 moveto -0.00375 0.02535 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.0501 moveto -0.00375 0.0501 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.07484 moveto -0.00375 0.07484 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.09958 moveto -0.00375 0.09958 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.14906 moveto -0.00375 0.14906 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.1738 moveto -0.00375 0.1738 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.19855 moveto -0.00375 0.19855 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.22329 moveto -0.00375 0.22329 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.27277 moveto -0.00375 0.27277 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.29751 moveto -0.00375 0.29751 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.32225 moveto -0.00375 0.32225 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.347 moveto -0.00375 0.347 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.39648 moveto -0.00375 0.39648 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.42122 moveto -0.00375 0.42122 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.44596 moveto -0.00375 0.44596 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.4707 moveto -0.00375 0.4707 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.52019 moveto -0.00375 0.52019 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.54493 moveto -0.00375 0.54493 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.56967 moveto -0.00375 0.56967 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.59441 moveto -0.00375 0.59441 lineto -stroke -grestore -[(Y)] -0.0125 0.30902 1 0 90 -1 0 Mouter Mrotshowa -gsave -0.002 setlinewidth -0 0 moveto -0 0.61803 lineto -stroke -grestore -grestore -gsave -gsave -0.002 setlinewidth -0.08626 0.61178 moveto -0.08626 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.24239 0.61178 moveto -0.24239 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.39852 0.61178 moveto -0.39852 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.55464 0.61178 moveto -0.55464 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.71077 0.61178 moveto -0.71077 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.8669 0.61178 moveto -0.8669 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.11749 0.61428 moveto -0.11749 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.14871 0.61428 moveto -0.14871 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.17994 0.61428 moveto -0.17994 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.21116 0.61428 moveto -0.21116 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.27361 0.61428 moveto -0.27361 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.30484 0.61428 moveto -0.30484 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.33607 0.61428 moveto -0.33607 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.36729 0.61428 moveto -0.36729 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.42974 0.61428 moveto -0.42974 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.46097 0.61428 moveto -0.46097 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.49219 0.61428 moveto -0.49219 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.52342 0.61428 moveto -0.52342 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.58587 0.61428 moveto -0.58587 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.6171 0.61428 moveto -0.6171 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.64832 0.61428 moveto -0.64832 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.67955 0.61428 moveto -0.67955 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.742 0.61428 moveto -0.742 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.77322 0.61428 moveto -0.77322 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.80445 0.61428 moveto -0.80445 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.83568 0.61428 moveto -0.83568 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.05504 0.61428 moveto -0.05504 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.02381 0.61428 moveto -0.02381 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.89813 0.61428 moveto -0.89813 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.92935 0.61428 moveto -0.92935 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.96058 0.61428 moveto -0.96058 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.9918 0.61428 moveto -0.9918 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0 0.61803 moveto -1 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.00061 moveto -1 0.00061 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.12432 moveto -1 0.12432 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.24803 moveto -1 0.24803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.37174 moveto -1 0.37174 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.49545 moveto -1 0.49545 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.02535 moveto -1 0.02535 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.0501 moveto -1 0.0501 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.07484 moveto -1 0.07484 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.09958 moveto -1 0.09958 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.14906 moveto -1 0.14906 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.1738 moveto -1 0.1738 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.19855 moveto -1 0.19855 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.22329 moveto -1 0.22329 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.27277 moveto -1 0.27277 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.29751 moveto -1 0.29751 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.32225 moveto -1 0.32225 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.347 moveto -1 0.347 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.39648 moveto -1 0.39648 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.42122 moveto -1 0.42122 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.44596 moveto -1 0.44596 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.4707 moveto -1 0.4707 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.52019 moveto -1 0.52019 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.54493 moveto -1 0.54493 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.56967 moveto -1 0.56967 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.59441 moveto -1 0.59441 lineto -stroke -grestore -gsave -0.002 setlinewidth -1 0 moveto -1 0.61803 lineto -stroke -grestore -grestore -gsave -gsave -0.002 setlinewidth -0 0.37174 moveto -1 0.37174 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.39852 0 moveto -0.39852 0.61803 lineto -stroke -grestore -grestore -0 0 moveto -1 0 lineto -1 0.61803 lineto -0 0.61803 lineto -closepath -clip -newpath -gsave -gsave -gsave -0.004 setlinewidth -0.02381 0.60332 moveto -0.06349 0.57879 lineto -0.10317 0.55427 lineto -0.14286 0.52974 lineto -0.18254 0.50522 lineto -0.22222 0.48069 lineto -0.2619 0.45617 lineto -0.30159 0.43164 lineto -0.34127 0.40712 lineto -0.38095 0.38259 lineto -0.42063 0.35807 lineto -0.46032 0.33354 lineto -0.5 0.30902 lineto -0.53968 0.28449 lineto -0.57937 0.25997 lineto -0.61905 0.23544 lineto -0.65873 0.21092 lineto -0.69841 0.18639 lineto -0.7381 0.16187 lineto -0.77778 0.13734 lineto -0.81746 0.11282 lineto -0.85714 0.08829 lineto -0.89683 0.06377 lineto -0.93651 0.03924 lineto -0.97619 0.01472 lineto -stroke -grestore -grestore -grestore -% End of Graphics -MathPictureEnd -end -showpage diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v9.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v9.gif deleted file mode 100755 index 6d0bed4a7..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v9.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v9.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v9.pdf deleted file mode 100644 index 2ea1d6c35..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype03/prob17v9.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05.tar.gz b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05.tar.gz deleted file mode 100755 index 49aefa0d9..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05.tar.gz and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av1.eps deleted file mode 100755 index a6d8695a0..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av1.eps +++ /dev/null @@ -1,609 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_v1 -%%Creation Date: Fri, Sep 1, 1995 13:11 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 59.75 M -117.50 59.75 L -117.50 151.38 L -244.50 151.38 L -244.50 105.62 L -308.00 105.62 L -308.00 243.00 L -435.00 243.00 L -435.00 197.25 L -498.50 197.25 L -498.50 105.62 L -562.00 105.62 L -562.00 105.62 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av1.gif deleted file mode 100755 index 46b5628d9..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av10.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av10.eps deleted file mode 100755 index 81c04958e..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av10.eps +++ /dev/null @@ -1,609 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_v10 -%%Creation Date: Fri, Sep 1, 1995 13:12 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 151.38 M -117.50 151.38 L -117.50 243.00 L -244.50 243.00 L -244.50 105.62 L -308.00 105.62 L -308.00 151.38 L -435.00 151.38 L -435.00 59.75 L -498.50 59.75 L -498.50 197.25 L -562.00 197.25 L -562.00 197.25 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av10.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av10.gif deleted file mode 100755 index 31c4e7870..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av10.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av2.eps deleted file mode 100755 index a8b176fc1..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av2.eps +++ /dev/null @@ -1,609 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_v2 -%%Creation Date: Fri, Sep 1, 1995 13:11 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 197.25 M -117.50 197.25 L -117.50 59.75 L -244.50 59.75 L -244.50 151.38 L -308.00 151.38 L -308.00 243.00 L -435.00 243.00 L -435.00 59.75 L -498.50 59.75 L -498.50 105.62 L -562.00 105.62 L -562.00 105.62 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av2.gif deleted file mode 100755 index 13eadbafb..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av3.eps deleted file mode 100755 index e3c0d9951..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av3.eps +++ /dev/null @@ -1,609 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_v3 -%%Creation Date: Fri, Sep 1, 1995 13:11 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 197.25 M -117.50 197.25 L -117.50 197.25 L -244.50 197.25 L -244.50 105.62 L -308.00 105.62 L -308.00 151.38 L -435.00 151.38 L -435.00 59.75 L -498.50 59.75 L -498.50 243.00 L -562.00 243.00 L -562.00 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av3.gif deleted file mode 100755 index 66c213dc0..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av4.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av4.eps deleted file mode 100755 index a33159088..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av4.eps +++ /dev/null @@ -1,609 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_v4 -%%Creation Date: Fri, Sep 1, 1995 13:12 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 105.62 M -117.50 105.62 L -117.50 197.12 L -244.50 197.12 L -244.50 151.38 L -308.00 151.38 L -308.00 59.75 L -435.00 59.75 L -435.00 197.12 L -498.50 197.12 L -498.50 151.38 L -562.00 151.38 L -562.00 151.38 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av4.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av4.gif deleted file mode 100755 index 42fb9d597..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av4.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av5.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av5.eps deleted file mode 100755 index e8c9ec34b..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av5.eps +++ /dev/null @@ -1,609 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_v5 -%%Creation Date: Fri, Sep 1, 1995 13:12 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 243.00 M -117.50 243.00 L -117.50 59.75 L -244.50 59.75 L -244.50 151.38 L -308.00 151.38 L -308.00 105.62 L -435.00 105.62 L -435.00 197.25 L -498.50 197.25 L -498.50 151.38 L -562.00 151.38 L -562.00 151.38 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av5.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av5.gif deleted file mode 100755 index 6eed1d64a..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av5.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av6.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av6.eps deleted file mode 100755 index 737390976..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av6.eps +++ /dev/null @@ -1,609 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_v6 -%%Creation Date: Fri, Sep 1, 1995 13:12 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 105.62 M -117.50 105.62 L -117.50 59.88 L -244.50 59.88 L -244.50 105.62 L -308.00 105.62 L -308.00 151.38 L -435.00 151.38 L -435.00 105.62 L -498.50 105.62 L -498.50 59.88 L -562.00 59.88 L -562.00 59.88 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av6.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av6.gif deleted file mode 100755 index a13933275..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av6.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av7.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av7.eps deleted file mode 100755 index 6f4cf4e7d..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av7.eps +++ /dev/null @@ -1,609 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_v7 -%%Creation Date: Fri, Sep 1, 1995 13:12 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 151.38 M -117.50 151.38 L -117.50 59.75 L -244.50 59.75 L -244.50 151.38 L -308.00 151.38 L -308.00 197.12 L -435.00 197.12 L -435.00 151.38 L -498.50 151.38 L -498.50 59.75 L -562.00 59.75 L -562.00 59.75 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av7.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av7.gif deleted file mode 100755 index 2586ce25b..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av7.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av7.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av7.pdf deleted file mode 100644 index 21a5046e7..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av7.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av8.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av8.eps deleted file mode 100755 index 4ca993d87..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av8.eps +++ /dev/null @@ -1,609 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_v8 -%%Creation Date: Fri, Sep 1, 1995 13:12 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 151.38 M -117.50 151.38 L -117.50 197.25 L -244.50 197.25 L -244.50 151.38 L -308.00 151.38 L -308.00 243.00 L -435.00 243.00 L -435.00 59.75 L -498.50 59.75 L -498.50 105.62 L -562.00 105.62 L -562.00 105.62 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av8.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av8.gif deleted file mode 100755 index ba738c064..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av8.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av9.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av9.eps deleted file mode 100755 index eff91e361..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av9.eps +++ /dev/null @@ -1,609 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_v9 -%%Creation Date: Fri, Sep 1, 1995 13:12 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 197.12 M -117.50 197.12 L -117.50 105.62 L -244.50 105.62 L -244.50 197.12 L -308.00 197.12 L -308.00 151.38 L -435.00 151.38 L -435.00 197.12 L -498.50 197.12 L -498.50 59.75 L -562.00 59.75 L -562.00 59.75 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av9.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av9.gif deleted file mode 100755 index cad3ff1a3..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob02av9.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av1.eps deleted file mode 100755 index 422b6706f..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av1.eps +++ /dev/null @@ -1,603 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_v1 -%%Creation Date: Sat, Sep 2, 1995 11:06 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 243.00 M -117.50 59.75 L -244.50 151.38 L -308.00 105.62 L -435.00 243.00 L -498.50 197.25 L -562.00 105.62 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av1.gif deleted file mode 100755 index 73a81ff9c..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av10.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av10.eps deleted file mode 100755 index d109e5cff..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av10.eps +++ /dev/null @@ -1,603 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_v10 -%%Creation Date: Sat, Sep 2, 1995 11:07 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 243.00 M -117.50 151.38 L -244.50 243.00 L -308.00 105.62 L -435.00 151.38 L -498.50 59.75 L -562.00 197.25 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av10.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av10.gif deleted file mode 100755 index b2c61b529..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av10.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av2.eps deleted file mode 100755 index ca5c96022..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av2.eps +++ /dev/null @@ -1,603 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_v2 -%%Creation Date: Sat, Sep 2, 1995 11:06 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 243.00 M -117.50 197.25 L -244.50 59.75 L -308.00 151.38 L -435.00 243.00 L -498.50 59.75 L -562.00 105.62 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av2.gif deleted file mode 100755 index 1a08b4974..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av3.eps deleted file mode 100755 index 9a3d89a26..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av3.eps +++ /dev/null @@ -1,603 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_v3 -%%Creation Date: Sat, Sep 2, 1995 11:06 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 243.00 M -117.50 197.25 L -244.50 197.25 L -308.00 105.62 L -435.00 151.38 L -498.50 59.75 L -562.00 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av3.gif deleted file mode 100755 index c0bd58245..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av4.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av4.eps deleted file mode 100755 index cfbbb29b9..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av4.eps +++ /dev/null @@ -1,603 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_v4 -%%Creation Date: Sat, Sep 2, 1995 11:06 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 243.00 M -117.50 105.62 L -244.50 197.25 L -308.00 151.38 L -435.00 59.75 L -498.50 197.25 L -562.00 151.38 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av4.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av4.gif deleted file mode 100755 index c448107ed..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av4.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av5.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av5.eps deleted file mode 100755 index 555599c77..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av5.eps +++ /dev/null @@ -1,603 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_v5 -%%Creation Date: Sat, Sep 2, 1995 11:07 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 243.00 M -117.50 243.00 L -244.50 59.75 L -308.00 151.38 L -435.00 105.62 L -498.50 197.25 L -562.00 151.38 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av5.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av5.gif deleted file mode 100755 index b375c5a9d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av5.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av6.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av6.eps deleted file mode 100755 index 8abc41e9a..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av6.eps +++ /dev/null @@ -1,603 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_v6 -%%Creation Date: Sat, Sep 2, 1995 11:07 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 243.00 M -117.50 105.62 L -244.50 59.75 L -308.00 105.62 L -435.00 151.38 L -498.50 105.62 L -562.00 59.75 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av6.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av6.gif deleted file mode 100755 index a97236d6a..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av6.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av7.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av7.eps deleted file mode 100755 index 5b2935f01..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av7.eps +++ /dev/null @@ -1,603 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_v7 -%%Creation Date: Sat, Sep 2, 1995 11:07 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 243.00 M -117.50 151.38 L -244.50 59.75 L -308.00 151.38 L -435.00 197.25 L -498.50 151.38 L -562.00 59.75 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av7.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av7.gif deleted file mode 100755 index b00d50a4b..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av7.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av7.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av7.pdf deleted file mode 100644 index c6c19eba1..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av7.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av8.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av8.eps deleted file mode 100755 index e48a16da3..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av8.eps +++ /dev/null @@ -1,603 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_v8 -%%Creation Date: Sat, Sep 2, 1995 11:07 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 243.00 M -117.50 151.38 L -244.50 197.25 L -308.00 151.38 L -435.00 243.00 L -498.50 59.75 L -562.00 105.62 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av8.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av8.gif deleted file mode 100755 index b6fad7907..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av8.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av9.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av9.eps deleted file mode 100755 index 87300f69a..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av9.eps +++ /dev/null @@ -1,603 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_v9 -%%Creation Date: Sat, Sep 2, 1995 11:07 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 243.00 M -117.50 197.25 L -244.50 105.62 L -308.00 197.25 L -435.00 151.38 L -498.50 197.25 L -562.00 59.75 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av9.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av9.gif deleted file mode 100755 index bb58d48c4..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob03av9.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av1.eps deleted file mode 100755 index f19d1d9ad..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av1.eps +++ /dev/null @@ -1,602 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_v1 -%%Creation Date: Sat, Sep 2, 1995 11:11 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(-10) 26.88 247.38 23.12 WS -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -53.50 185.25 60.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-5) 35.75 190.12 14.25 WS -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -53.50 128.00 60.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 132.88 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -53.50 70.75 60.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 41.12 75.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 1.00 ps 54.50 128.50 561.50 128.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 128.50 M -117.50 36.88 L -244.50 174.25 L -308.00 59.88 L -435.00 128.50 L -498.50 151.38 L -562.00 59.88 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av1.gif deleted file mode 100755 index b415b0216..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av10.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av10.eps deleted file mode 100755 index 9409d2b45..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av10.eps +++ /dev/null @@ -1,602 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_v10 -%%Creation Date: Sat, Sep 2, 1995 11:11 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(-10) 26.88 247.38 23.12 WS -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -53.50 185.25 60.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-5) 35.75 190.12 14.25 WS -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -53.50 128.00 60.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 132.88 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -53.50 70.75 60.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 41.12 75.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 1.00 ps 54.50 128.50 561.50 128.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 128.50 M -117.50 82.75 L -244.50 174.25 L -308.00 59.75 L -435.00 82.75 L -498.50 220.12 L -562.00 105.62 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av10.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av10.gif deleted file mode 100755 index 789717115..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av10.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av2.eps deleted file mode 100755 index 0dd9c0ffb..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av2.eps +++ /dev/null @@ -1,602 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_v2 -%%Creation Date: Sat, Sep 2, 1995 11:11 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(-10) 26.88 247.38 23.12 WS -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -53.50 185.25 60.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-5) 35.75 190.12 14.25 WS -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -53.50 128.00 60.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 132.88 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -53.50 70.75 60.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 41.12 75.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 1.00 ps 54.50 128.50 561.50 128.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 128.50 M -117.50 105.62 L -244.50 220.12 L -308.00 82.75 L -435.00 128.50 L -498.50 220.12 L -562.00 59.75 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av2.gif deleted file mode 100755 index beb50c9a7..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av3.eps deleted file mode 100755 index 75893d357..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av3.eps +++ /dev/null @@ -1,602 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_v3 -%%Creation Date: Sat, Sep 2, 1995 11:11 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(-10) 26.88 247.38 23.12 WS -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -53.50 185.25 60.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-5) 35.75 190.12 14.25 WS -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -53.50 128.00 60.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 132.88 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -53.50 70.75 60.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 41.12 75.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 1.00 ps 54.50 128.50 561.50 128.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 128.50 M -117.50 105.62 L -244.50 151.38 L -308.00 59.75 L -435.00 82.75 L -498.50 220.12 L -562.00 128.50 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av3.gif deleted file mode 100755 index b1f9aea85..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av4.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av4.eps deleted file mode 100755 index 521e332fb..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av4.eps +++ /dev/null @@ -1,602 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_v4 -%%Creation Date: Sat, Sep 2, 1995 11:11 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(-10) 26.88 247.38 23.12 WS -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -53.50 185.25 60.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-5) 35.75 190.12 14.25 WS -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -53.50 128.00 60.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 132.88 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -53.50 70.75 60.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 41.12 75.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 1.00 ps 54.50 128.50 561.50 128.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 128.50 M -117.50 59.88 L -244.50 151.38 L -308.00 82.75 L -435.00 36.88 L -498.50 151.38 L -562.00 82.75 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av4.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av4.gif deleted file mode 100755 index 276114813..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av4.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av5.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av5.eps deleted file mode 100755 index f8a234701..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av5.eps +++ /dev/null @@ -1,602 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_v5 -%%Creation Date: Sat, Sep 2, 1995 11:11 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(-10) 26.88 247.38 23.12 WS -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -53.50 185.25 60.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-5) 35.75 190.12 14.25 WS -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -53.50 128.00 60.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 132.88 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -53.50 70.75 60.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 41.12 75.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 1.00 ps 54.50 128.50 561.50 128.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 128.50 M -117.50 128.50 L -244.50 220.12 L -308.00 82.75 L -435.00 59.75 L -498.50 151.38 L -562.00 82.75 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av5.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av5.gif deleted file mode 100755 index 4ce48d193..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av5.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av6.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av6.eps deleted file mode 100755 index 8d5e6d63b..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av6.eps +++ /dev/null @@ -1,602 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_v6 -%%Creation Date: Sat, Sep 2, 1995 11:11 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(-10) 26.88 247.38 23.12 WS -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -53.50 185.25 60.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-5) 35.75 190.12 14.25 WS -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -53.50 128.00 60.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 132.88 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -53.50 70.75 60.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 41.12 75.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 1.00 ps 54.50 128.50 561.50 128.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 128.50 M -117.50 59.75 L -244.50 220.12 L -308.00 59.75 L -435.00 82.75 L -498.50 197.25 L -562.00 36.88 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av6.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av6.gif deleted file mode 100755 index b7f1b6ffd..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av6.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av7.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av7.eps deleted file mode 100755 index c11a18498..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av7.eps +++ /dev/null @@ -1,602 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_v7 -%%Creation Date: Sat, Sep 2, 1995 11:11 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(-10) 26.88 247.38 23.12 WS -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -53.50 185.25 60.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-5) 35.75 190.12 14.25 WS -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -53.50 128.00 60.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 132.88 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -53.50 70.75 60.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 41.12 75.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 1.00 ps 54.50 128.50 561.50 128.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 128.50 M -117.50 82.75 L -244.50 220.12 L -308.00 82.75 L -435.00 105.62 L -498.50 174.25 L -562.00 36.88 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av7.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av7.gif deleted file mode 100755 index 7ff116b39..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av7.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av7.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av7.pdf deleted file mode 100644 index 21c8c894d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av7.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av8.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av8.eps deleted file mode 100755 index e88ec49ff..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av8.eps +++ /dev/null @@ -1,602 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_v8 -%%Creation Date: Sat, Sep 2, 1995 11:11 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(-10) 26.88 247.38 23.12 WS -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -53.50 185.25 60.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-5) 35.75 190.12 14.25 WS -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -53.50 128.00 60.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 132.88 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -53.50 70.75 60.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 41.12 75.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 1.00 ps 54.50 128.50 561.50 128.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 128.50 M -117.50 82.75 L -244.50 151.38 L -308.00 82.75 L -435.00 128.50 L -498.50 220.12 L -562.00 59.75 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av8.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av8.gif deleted file mode 100755 index c113cbc1a..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av8.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av9.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av9.eps deleted file mode 100755 index de4244dce..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av9.eps +++ /dev/null @@ -1,602 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_v9 -%%Creation Date: Sat, Sep 2, 1995 11:11 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(-10) 26.88 247.38 23.12 WS -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -53.50 185.25 60.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-5) 35.75 190.12 14.25 WS -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -53.50 128.00 60.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 132.88 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -53.50 70.75 60.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 41.12 75.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 1.00 ps 54.50 128.50 561.50 128.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 153.00 translate -90 rotate -(v \(m/s\)) 0.00 0.00 49.12 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 128.50 M -117.50 105.62 L -244.50 197.25 L -308.00 105.62 L -435.00 82.75 L -498.50 151.38 L -562.00 36.88 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av9.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av9.gif deleted file mode 100755 index a8db4851c..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob04av9.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob16a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob16a.eps deleted file mode 100755 index ea27f9b47..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob16a.eps +++ /dev/null @@ -1,2321 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 72.0 242.0 540.0 550.0 -%%Creator: Mathematica -%%CreationDate: Fri Sep 10 09:35:53 EDT 1993 -%%EndComments - -/Mathdict 100 dict def -Mathdict begin -/Mlmarg 1.0 72 mul def -/Mrmarg 1.0 72 mul def -/Mbmarg 1.0 72 mul def -/Mtmarg 1.0 72 mul def -/Mwidth 8.5 72 mul def -/Mheight 11 72 mul def -/Mtransform { } bind def -/Mnodistort true def -/Mfixwid false def -/Mfixdash false def -/Mrot 0 def -/Mpstart { -MathPictureStart -} bind def -/Mpend { -MathPictureEnd -} bind def -/Mscale { -0 1 0 1 -5 -1 roll -MathScale -} bind def -/ISOLatin1Encoding dup where -{ pop pop } -{ -[ -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright -/parenleft /parenright /asterisk /plus /comma /minus /period /slash -/zero /one /two /three /four /five /six /seven -/eight /nine /colon /semicolon /less /equal /greater /question -/at /A /B /C /D /E /F /G -/H /I /J /K /L /M /N /O -/P /Q /R /S /T /U /V /W -/X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore -/quoteleft /a /b /c /d /e /f /g -/h /i /j /k /l /m /n /o -/p /q /r /s /t /u /v /w -/x /y /z /braceleft /bar /braceright /asciitilde /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent -/dieresis /.notdef /ring /cedilla /.notdef /hungarumlaut /ogonek /caron -/space /exclamdown /cent /sterling /currency /yen /brokenbar /section -/dieresis /copyright /ordfeminine /guillemotleft -/logicalnot /hyphen /registered /macron -/degree /plusminus /twosuperior /threesuperior -/acute /mu /paragraph /periodcentered -/cedilla /onesuperior /ordmasculine /guillemotright -/onequarter /onehalf /threequarters /questiondown -/Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla -/Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis -/Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply -/Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls -/agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla -/egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis -/eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide -/oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis -] def -} ifelse -/MFontDict 50 dict def -/MStrCat -{ -exch -dup length -2 index length add -string -dup 3 1 roll -copy -length -exch dup -4 2 roll exch -putinterval -} def -/MCreateEncoding -{ -1 index -255 string cvs -(-) MStrCat -1 index MStrCat -cvn exch -(Encoding) MStrCat -cvn dup where -{ -exch get -} -{ -pop -StandardEncoding -} ifelse -3 1 roll -dup MFontDict exch known not -{ -1 index findfont -dup length dict -begin -{1 index /FID ne -{def} -{pop pop} -ifelse} forall -/Encoding 3 index -def -currentdict -end -1 index exch definefont pop -MFontDict 1 index -null put -} -if -exch pop -exch pop -} def -/ISOLatin1 { (ISOLatin1) MCreateEncoding } def -/ISO8859 { (ISOLatin1) MCreateEncoding } def -/Mcopyfont { -dup -maxlength -dict -exch -{ -1 index -/FID -eq -{ -pop pop -} -{ -2 index -3 1 roll -put -} -ifelse -} -forall -} def -/Plain /Courier findfont Mcopyfont definefont pop -/Bold /Courier-Bold findfont Mcopyfont definefont pop -/Italic /Courier-Oblique findfont Mcopyfont definefont pop -/MathPictureStart { -gsave -Mtransform -Mlmarg -Mbmarg -translate -/Mtmatrix -matrix currentmatrix -def -/Mgmatrix -matrix currentmatrix -def -} bind def -/MathPictureEnd { -grestore -} bind def -/MathSubStart { -Momatrix -Mgmatrix Mtmatrix -Mlmarg Mrmarg -Mbmarg Mtmarg -Mwidth Mheight -11 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -Mgmatrix setmatrix -13 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -2 copy translate -/Mtmatrix matrix currentmatrix def -/Mlmarg 0 def -/Mrmarg 0 def -/Mbmarg 0 def -/Mtmarg 0 def -3 -1 roll -exch sub -/Mheight exch def -sub -/Mwidth exch def -} bind def -/MathSubEnd { -/Mheight exch def -/Mwidth exch def -/Mtmarg exch def -/Mbmarg exch def -/Mrmarg exch def -/Mlmarg exch def -/Mtmatrix exch def -dup setmatrix -/Mgmatrix exch def -/Momatrix exch def -} bind def -/Mdot { -moveto -0 0 rlineto -stroke -} bind def -/Mtetra { -moveto -lineto -lineto -lineto -fill -} bind def -/Metetra { -moveto -lineto -lineto -lineto -closepath -gsave -fill -grestore -0 setgray -stroke -} bind def -/Mistroke { -flattenpath -0 0 0 -{ -4 2 roll -pop pop -} -{ -4 -1 roll -2 index -sub dup mul -4 -1 roll -2 index -sub dup mul -add sqrt -4 -1 roll -add -3 1 roll -} -{ -stop -} -{ -stop -} -pathforall -pop pop -currentpoint -stroke -moveto -currentdash -3 -1 roll -add -setdash -} bind def -/Mfstroke { -stroke -currentdash -pop 0 -setdash -} bind def -/Mrotsboxa { -gsave -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -grestore -Msboxa -3 -1 roll -/Mtmatrix -exch def -/Mrot -0 def -} bind def -/Msboxa { -newpath -5 -1 roll -Mvboxa -pop -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Msboxa1 -5 -3 roll -Msboxa1 -Mboxrot -[ -7 -2 roll -2 copy -[ -3 1 roll -10 -1 roll -9 -1 roll -] -6 1 roll -5 -2 roll -] -} bind def -/Msboxa1 { -sub -2 div -dup -2 index -1 add -mul -3 -1 roll --1 add -3 -1 roll -mul -} bind def -/Mvboxa { -Mfixwid -{ -Mvboxa1 -} -{ -dup -Mwidthcal -0 exch -{ -add -} -forall -exch -Mvboxa1 -4 index -7 -1 roll -add -4 -1 roll -pop -3 1 roll -} -ifelse -} bind def -/Mvboxa1 { -gsave -newpath -[ true -3 -1 roll -{ -Mbbox -5 -1 roll -{ -0 -5 1 roll -} -{ -7 -1 roll -exch sub -(m) stringwidth pop -.3 mul -sub -7 1 roll -6 -1 roll -4 -1 roll -Mmin -3 -1 roll -5 index -add -5 -1 roll -4 -1 roll -Mmax -4 -1 roll -} -ifelse -false -} -forall -{ stop } if -counttomark -1 add -4 roll -] -grestore -} bind def -/Mbbox { -1 dict begin -0 0 moveto -/temp (T) def -{ gsave -currentpoint newpath moveto -temp 0 3 -1 roll put temp -false charpath flattenpath currentpoint -pathbbox -grestore moveto lineto moveto} forall -pathbbox -newpath -end -} bind def -/Mmin { -2 copy -gt -{ exch } if -pop -} bind def -/Mmax { -2 copy -lt -{ exch } if -pop -} bind def -/Mrotshowa { -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -Mgmatrix setmatrix -Mshowa -/Mtmatrix -exch def -/Mrot 0 def -} bind def -/Mshowa { -4 -2 roll -moveto -2 index -Mtmatrix setmatrix -Mvboxa -7 1 roll -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Mshowa1 -4 1 roll -Mshowa1 -rmoveto -currentpoint -Mfixwid -{ -Mshowax -} -{ -Mshoway -} -ifelse -pop pop pop pop -Mgmatrix setmatrix -} bind def -/Mshowax { -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -Mfixdash -{ -Mfixdashp -} -if -show -} for -} bind def -/Mfixdashp { -dup -length -1 -gt -1 index -true exch -{ -45 -eq -and -} forall -and -{ -gsave -(--) -stringwidth pop -(-) -stringwidth pop -sub -2 div -0 rmoveto -dup -length -1 sub -{ -(-) -show -} -repeat -grestore -} -if -} bind def -/Mshoway { -3 index -Mwidthcal -5 1 roll -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -[ -6 index -aload -length -2 add --1 roll -{ -pop -Strform -stringwidth -pop -neg -exch -add -0 rmoveto -} -exch -kshow -cleartomark -} for -pop -} bind def -/Mwidthcal { -[ -exch -{ -Mwidthcal1 -} -forall -] -[ -exch -dup -Maxlen --1 add -0 1 -3 -1 roll -{ -[ -exch -2 index -{ -1 index -Mget -exch -} -forall -pop -Maxget -exch -} -for -pop -] -Mreva -} bind def -/Mreva { -[ -exch -aload -length --1 1 -{1 roll} -for -] -} bind def -/Mget { -1 index -length --1 add -1 index -ge -{ -get -} -{ -pop pop -0 -} -ifelse -} bind def -/Maxlen { -[ -exch -{ -length -} -forall -Maxget -} bind def -/Maxget { -counttomark --1 add -1 1 -3 -1 roll -{ -pop -Mmax -} -for -exch -pop -} bind def -/Mwidthcal1 { -[ -exch -{ -Strform -stringwidth -pop -} -forall -] -} bind def -/Strform { -/tem (x) def -tem 0 -3 -1 roll -put -tem -} bind def -/Mshowa1 { -2 copy -add -4 1 roll -sub -mul -sub --2 div -} bind def -/MathScale { -Mwidth -Mlmarg Mrmarg add -sub -Mheight -Mbmarg Mtmarg add -sub -0 0 moveto -1 index 0 -lineto -2 copy -lineto -0 1 index -lineto -clip newpath -Mlp -translate -dup -/Mathabs -exch def -scale -/yscale exch def -/ybias exch def -/xscale exch def -/xbias exch def -/Momatrix -xscale yscale matrix scale -xbias ybias matrix translate -matrix concatmatrix def -/Mgmatrix -matrix currentmatrix -def -} bind def -/Mlp { -3 copy -Mlpfirst -{ -Mnodistort -{ -Mmin -dup -} if -4 index -2 index -2 index -Mlprun -11 index -11 -1 roll -10 -4 roll -Mlp1 -8 index -9 -5 roll -Mlp1 -4 -1 roll -and -{ exit } if -3 -1 roll -pop pop -} loop -exch -3 1 roll -7 -3 roll -pop pop pop -} bind def -/Mlpfirst { -3 -1 roll -dup length -2 copy --2 add -get -aload -pop pop pop -4 -2 roll --1 add -get -aload -pop pop pop -6 -1 roll -3 -1 roll -5 -1 roll -sub -div -4 1 roll -exch sub -div -} bind def -/Mlprun { -2 copy -4 index -0 get -dup -4 1 roll -Mlprun1 -3 copy -8 -2 roll -9 -1 roll -{ -3 copy -Mlprun1 -3 copy -11 -3 roll -/gt Mlpminmax -8 3 roll -11 -3 roll -/lt Mlpminmax -8 3 roll -} forall -pop pop pop pop -3 1 roll -pop pop -aload pop -5 -1 roll -aload pop -exch -6 -1 roll -Mlprun2 -8 2 roll -4 -1 roll -Mlprun2 -6 2 roll -3 -1 roll -Mlprun2 -4 2 roll -exch -Mlprun2 -6 2 roll -} bind def -/Mlprun1 { -aload pop -exch -6 -1 roll -5 -1 roll -mul add -4 -2 roll -mul -3 -1 roll -add -} bind def -/Mlprun2 { -2 copy -add 2 div -3 1 roll -exch sub -} bind def -/Mlpminmax { -cvx -2 index -6 index -2 index -exec -{ -7 -3 roll -4 -1 roll -} if -1 index -5 index -3 -1 roll -exec -{ -4 1 roll -pop -5 -1 roll -aload -pop pop -4 -1 roll -aload pop -[ -8 -2 roll -pop -5 -2 roll -pop -6 -2 roll -pop -5 -1 roll -] -4 1 roll -pop -} -{ -pop pop pop -} ifelse -} bind def -/Mlp1 { -5 index -3 index sub -5 index -2 index mul -1 index -le -1 index -0 le -or -dup -not -{ -1 index -3 index div -.99999 mul -8 -1 roll -pop -7 1 roll -} -if -8 -1 roll -2 div -7 -2 roll -pop sub -5 index -6 -3 roll -pop pop -mul sub -exch -} bind def -/intop 0 def -/inrht 0 def -/inflag 0 def -/outflag 0 def -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -/Minner { -outflag -1 -eq -{ -/outflag 0 def -/intop 0 def -/inrht 0 def -} if -5 index -gsave -Mtmatrix setmatrix -Mvboxa pop -grestore -3 -1 roll -pop -dup -intop -gt -{ -/intop -exch def -} -{ pop } -ifelse -dup -inrht -gt -{ -/inrht -exch def -} -{ pop } -ifelse -pop -/inflag -1 def -} bind def -/Mouter { -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -inflag -1 eq -{ -dup -0 lt -{ -dup -intop -mul -neg -/yadtop -exch def -} if -dup -0 gt -{ -dup -intop -mul -/yadbot -exch def -} -if -pop -dup -0 lt -{ -dup -inrht -mul -neg -/xadrht -exch def -} if -dup -0 gt -{ -dup -inrht -mul -/xadlft -exch def -} if -pop -/outflag 1 def -} -{ pop pop} -ifelse -/inflag 0 def -/inrht 0 def -/intop 0 def -} bind def -/Mboxout { -outflag -1 -eq -{ -4 -1 -roll -xadlft -leadjust -add -sub -4 1 roll -3 -1 -roll -yadbot -leadjust -add -sub -3 1 -roll -exch -xadrht -leadjust -add -add -exch -yadtop -leadjust -add -add -/outflag 0 def -/xadlft 0 def -/yadbot 0 def -/xadrht 0 def -/yadtop 0 def -} if -} bind def -/leadjust { -(m) stringwidth pop -.5 mul -} bind def -/Mrotcheck { -dup -90 -eq -{ -yadbot -/yadbot -xadrht -def -/xadrht -yadtop -def -/yadtop -xadlft -def -/xadlft -exch -def -} -if -dup -cos -1 index -sin -Checkaux -dup -cos -1 index -sin neg -exch -Checkaux -3 1 roll -pop pop -} bind def -/Checkaux { -4 index -exch -4 index -mul -3 1 roll -mul add -4 1 roll -} bind def -/Mboxrot { -Mrot -90 eq -{ -brotaux -4 2 -roll -} -if -Mrot -180 eq -{ -4 2 -roll -brotaux -4 2 -roll -brotaux -} -if -Mrot -270 eq -{ -4 2 -roll -brotaux -} -if -} bind def -/brotaux { -neg -exch -neg -} bind def -/Mabswid { -Mathabs -div -setlinewidth -} bind def -/Mabsdash { -exch -Mathabs -[ -3 1 roll -exch -{ -exch -dup -3 -1 roll -exch -div -exch -} -forall -pop ] -exch -setdash -} bind def -/MBeginOrig { Momatrix concat} bind def -/MEndOrig { Mgmatrix setmatrix} bind def -/colorimage where -{ pop } -{ -/colorimage { -3 1 roll -pop pop -5 -1 roll -mul -4 1 roll -{ -currentfile -1 index -readhexstring -pop } -image -} bind def -} ifelse -/sampledsound where -{ pop} -{ /sampledsound { -exch -pop -exch -5 1 roll -mul -4 idiv -mul -2 idiv -exch pop -exch -/Mtempproc exch def -{ Mtempproc pop} -repeat -} bind def -} ifelse -/setcmykcolor where -{ pop} -{ /setcmykcolor { -4 1 -roll -[ -4 1 -roll -] -{ -1 index -sub -1 -sub neg -dup -0 -lt -{ -pop -0 -} -if -dup -1 -gt -{ -pop -1 -} -if -exch -} forall -pop -setrgbcolor -} bind def -} ifelse - -%%AspectRatio: 0.61803 -MathPictureStart -/Courier-Oblique findfont 15 scalefont setfont -% Scaling calculations -0.02381 0.136054 0.014715 0.379377 [ -[(0)] 0.02381 0 0 2 0 Minner Mrotsboxa -[(1)] 0.15986 0 0 2 0 Minner Mrotsboxa -[(2)] 0.29592 0 0 2 0 Minner Mrotsboxa -[(3)] 0.43197 0 0 2 0 Minner Mrotsboxa -[(4)] 0.56803 0 0 2 0 Minner Mrotsboxa -[(5)] 0.70408 0 0 2 0 Minner Mrotsboxa -[(6)] 0.84014 0 0 2 0 Minner Mrotsboxa -[(7)] 0.97619 0 0 2 0 Minner Mrotsboxa -[(Time \(min\))] 0.5 0 0 2 0 0 -1 Mouter Mrotsboxa -[(0)] -0.0125 0.01472 1 0 0 Minner Mrotsboxa -[(0.25)] -0.0125 0.10956 1 0 0 Minner Mrotsboxa -[(0.5)] -0.0125 0.2044 1 0 0 Minner Mrotsboxa -[(0.75)] -0.0125 0.29925 1 0 0 Minner Mrotsboxa -[(1)] -0.0125 0.39409 1 0 0 Minner Mrotsboxa -[(1.25)] -0.0125 0.48894 1 0 0 Minner Mrotsboxa -[(1.5)] -0.0125 0.58378 1 0 0 Minner Mrotsboxa -[(Distance [miles])] -0.0125 0.30902 1 0 90 -1 0 Mouter Mrotsboxa -[ -0.001 -0.001 0 0 ] -[ 1.001 0.61903 0 0 ] -] MathScale -% Start of Graphics -1 setlinecap -1 setlinejoin -newpath -%%Object: Graphics -[ ] 0 setdash -0 setgray -gsave -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.15986 0 moveto -0.15986 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.29592 0 moveto -0.29592 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.43197 0 moveto -0.43197 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.56803 0 moveto -0.56803 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.70408 0 moveto -0.70408 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.84014 0 moveto -0.84014 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.10956 moveto -1 0.10956 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.2044 moveto -1 0.2044 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.29925 moveto -1 0.29925 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.39409 moveto -1 0.39409 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.48894 moveto -1 0.48894 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.58378 moveto -1 0.58378 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.02381 0 moveto -0.02381 0.00625 lineto -stroke -grestore -[(0)] 0.02381 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.15986 0 moveto -0.15986 0.00625 lineto -stroke -grestore -[(1)] 0.15986 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.29592 0 moveto -0.29592 0.00625 lineto -stroke -grestore -[(2)] 0.29592 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.43197 0 moveto -0.43197 0.00625 lineto -stroke -grestore -[(3)] 0.43197 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.56803 0 moveto -0.56803 0.00625 lineto -stroke -grestore -[(4)] 0.56803 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.70408 0 moveto -0.70408 0.00625 lineto -stroke -grestore -[(5)] 0.70408 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.84014 0 moveto -0.84014 0.00625 lineto -stroke -grestore -[(6)] 0.84014 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.97619 0 moveto -0.97619 0.00625 lineto -stroke -grestore -[(7)] 0.97619 0 0 2 0 Minner Mrotshowa -gsave -0.001 setlinewidth -0.05102 0 moveto -0.05102 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.07823 0 moveto -0.07823 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.10544 0 moveto -0.10544 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.13265 0 moveto -0.13265 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.18707 0 moveto -0.18707 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.21429 0 moveto -0.21429 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.2415 0 moveto -0.2415 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.26871 0 moveto -0.26871 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.32313 0 moveto -0.32313 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.35034 0 moveto -0.35034 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.37755 0 moveto -0.37755 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.40476 0 moveto -0.40476 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.45918 0 moveto -0.45918 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.48639 0 moveto -0.48639 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.51361 0 moveto -0.51361 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.54082 0 moveto -0.54082 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.59524 0 moveto -0.59524 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.62245 0 moveto -0.62245 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.64966 0 moveto -0.64966 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.67687 0 moveto -0.67687 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.73129 0 moveto -0.73129 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.7585 0 moveto -0.7585 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.78571 0 moveto -0.78571 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.81293 0 moveto -0.81293 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.86735 0 moveto -0.86735 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.89456 0 moveto -0.89456 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.92177 0 moveto -0.92177 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.94898 0 moveto -0.94898 0.00375 lineto -stroke -grestore -[(Time \(min\))] 0.5 0 0 2 0 0 -1 Mouter Mrotshowa -gsave -0.002 setlinewidth -0 0 moveto -1 0 lineto -stroke -grestore -gsave -0.002 setlinewidth -0 0.01472 moveto -0.00625 0.01472 lineto -stroke -grestore -[(0)] -0.0125 0.01472 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.10956 moveto -0.00625 0.10956 lineto -stroke -grestore -[(0.25)] -0.0125 0.10956 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.2044 moveto -0.00625 0.2044 lineto -stroke -grestore -[(0.5)] -0.0125 0.2044 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.29925 moveto -0.00625 0.29925 lineto -stroke -grestore -[(0.75)] -0.0125 0.29925 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.39409 moveto -0.00625 0.39409 lineto -stroke -grestore -[(1)] -0.0125 0.39409 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.48894 moveto -0.00625 0.48894 lineto -stroke -grestore -[(1.25)] -0.0125 0.48894 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.58378 moveto -0.00625 0.58378 lineto -stroke -grestore -[(1.5)] -0.0125 0.58378 1 0 0 Minner Mrotshowa -gsave -0.001 setlinewidth -0 0.03368 moveto -0.00375 0.03368 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.05265 moveto -0.00375 0.05265 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.07162 moveto -0.00375 0.07162 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.09059 moveto -0.00375 0.09059 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.12853 moveto -0.00375 0.12853 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.1475 moveto -0.00375 0.1475 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.16647 moveto -0.00375 0.16647 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.18543 moveto -0.00375 0.18543 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.22337 moveto -0.00375 0.22337 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.24234 moveto -0.00375 0.24234 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.26131 moveto -0.00375 0.26131 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.28028 moveto -0.00375 0.28028 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.31822 moveto -0.00375 0.31822 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.33719 moveto -0.00375 0.33719 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.35615 moveto -0.00375 0.35615 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.37512 moveto -0.00375 0.37512 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.41306 moveto -0.00375 0.41306 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.43203 moveto -0.00375 0.43203 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.451 moveto -0.00375 0.451 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.46997 moveto -0.00375 0.46997 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.50791 moveto -0.00375 0.50791 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.52687 moveto -0.00375 0.52687 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.54584 moveto -0.00375 0.54584 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.56481 moveto -0.00375 0.56481 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.60275 moveto -0.00375 0.60275 lineto -stroke -grestore -[(Distance [miles])] -0.0125 0.30902 1 0 90 -1 0 Mouter Mrotshowa -gsave -0.002 setlinewidth -0 0 moveto -0 0.61803 lineto -stroke -grestore -grestore -gsave -gsave -0.002 setlinewidth -0.02381 0.61178 moveto -0.02381 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.15986 0.61178 moveto -0.15986 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.29592 0.61178 moveto -0.29592 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.43197 0.61178 moveto -0.43197 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.56803 0.61178 moveto -0.56803 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.70408 0.61178 moveto -0.70408 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.84014 0.61178 moveto -0.84014 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.97619 0.61178 moveto -0.97619 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.05102 0.61428 moveto -0.05102 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.07823 0.61428 moveto -0.07823 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.10544 0.61428 moveto -0.10544 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.13265 0.61428 moveto -0.13265 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.18707 0.61428 moveto -0.18707 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.21429 0.61428 moveto -0.21429 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.2415 0.61428 moveto -0.2415 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.26871 0.61428 moveto -0.26871 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.32313 0.61428 moveto -0.32313 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.35034 0.61428 moveto -0.35034 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.37755 0.61428 moveto -0.37755 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.40476 0.61428 moveto -0.40476 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.45918 0.61428 moveto -0.45918 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.48639 0.61428 moveto -0.48639 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.51361 0.61428 moveto -0.51361 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.54082 0.61428 moveto -0.54082 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.59524 0.61428 moveto -0.59524 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.62245 0.61428 moveto -0.62245 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.64966 0.61428 moveto -0.64966 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.67687 0.61428 moveto -0.67687 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.73129 0.61428 moveto -0.73129 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.7585 0.61428 moveto -0.7585 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.78571 0.61428 moveto -0.78571 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.81293 0.61428 moveto -0.81293 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.86735 0.61428 moveto -0.86735 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.89456 0.61428 moveto -0.89456 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.92177 0.61428 moveto -0.92177 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.94898 0.61428 moveto -0.94898 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0 0.61803 moveto -1 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.01472 moveto -1 0.01472 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.10956 moveto -1 0.10956 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.2044 moveto -1 0.2044 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.29925 moveto -1 0.29925 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.39409 moveto -1 0.39409 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.48894 moveto -1 0.48894 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.58378 moveto -1 0.58378 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.03368 moveto -1 0.03368 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.05265 moveto -1 0.05265 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.07162 moveto -1 0.07162 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.09059 moveto -1 0.09059 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.12853 moveto -1 0.12853 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.1475 moveto -1 0.1475 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.16647 moveto -1 0.16647 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.18543 moveto -1 0.18543 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.22337 moveto -1 0.22337 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.24234 moveto -1 0.24234 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.26131 moveto -1 0.26131 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.28028 moveto -1 0.28028 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.31822 moveto -1 0.31822 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.33719 moveto -1 0.33719 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.35615 moveto -1 0.35615 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.37512 moveto -1 0.37512 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.41306 moveto -1 0.41306 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.43203 moveto -1 0.43203 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.451 moveto -1 0.451 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.46997 moveto -1 0.46997 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.50791 moveto -1 0.50791 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.52687 moveto -1 0.52687 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.54584 moveto -1 0.54584 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.56481 moveto -1 0.56481 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.60275 moveto -1 0.60275 lineto -stroke -grestore -gsave -0.002 setlinewidth -1 0 moveto -1 0.61803 lineto -stroke -grestore -grestore -gsave -grestore -0 0 moveto -1 0 lineto -1 0.61803 lineto -0 0.61803 lineto -closepath -clip -newpath -gsave -gsave -gsave -0.004 setlinewidth -0.02381 0.01472 moveto -0.06349 0.01472 lineto -0.10317 0.01472 lineto -0.14286 0.01472 lineto -0.1627 0.01472 lineto -0.17262 0.01472 lineto -0.17758 0.01472 lineto -0.18006 0.01472 lineto -0.18254 0.01472 lineto -0.18378 0.01472 lineto -0.18502 0.01472 lineto -0.18564 0.01472 lineto -0.18626 0.01472 lineto -0.18657 0.01472 lineto -0.18688 0.01472 lineto -0.18719 0.01472 lineto -0.1875 0.01472 lineto -0.18781 0.01472 lineto -0.18812 0.01473 lineto -0.18843 0.01474 lineto -0.18874 0.01475 lineto -0.18936 0.01478 lineto -0.18998 0.01482 lineto -0.19122 0.01493 lineto -0.19246 0.01507 lineto -0.19494 0.01548 lineto -0.19742 0.01603 lineto -0.20238 0.0176 lineto -0.20734 0.01977 lineto -0.2123 0.02254 lineto -0.22222 0.02991 lineto -0.23214 0.03969 lineto -0.24206 0.0519 lineto -0.2619 0.083 lineto -0.30159 0.14939 lineto -0.34127 0.21579 lineto -0.38095 0.28218 lineto -0.42063 0.34857 lineto -0.44048 0.38059 lineto -0.4504 0.39357 lineto -0.46032 0.40413 lineto -0.47024 0.41227 lineto -0.4752 0.41543 lineto -0.48016 0.41799 lineto -0.48512 0.41994 lineto -0.4876 0.42069 lineto -0.49008 0.42129 lineto -0.49256 0.42173 lineto -0.4938 0.4219 lineto -0.49504 0.42203 lineto -Mistroke -0.49566 0.42208 lineto -0.49628 0.42212 lineto -0.49659 0.42214 lineto -0.4969 0.42215 lineto -0.49721 0.42216 lineto -0.49752 0.42217 lineto -0.49783 0.42218 lineto -0.49814 0.42219 lineto -0.49845 0.42219 lineto -0.49876 0.42219 lineto -0.49907 0.42219 lineto -0.49938 0.42218 lineto -0.49969 0.42218 lineto -0.5 0.42217 lineto -0.50031 0.42217 lineto -0.50062 0.42217 lineto -0.50124 0.42217 lineto -0.50248 0.42217 lineto -0.50496 0.42217 lineto -0.50992 0.42217 lineto -0.51984 0.42217 lineto -0.53968 0.42217 lineto -0.57937 0.42217 lineto -0.61905 0.42217 lineto -0.62897 0.42217 lineto -0.63889 0.42217 lineto -0.64385 0.42217 lineto -0.64633 0.42217 lineto -0.64757 0.42217 lineto -0.64881 0.42217 lineto -0.64912 0.42217 lineto -0.64943 0.42217 lineto -0.64974 0.42217 lineto -0.65005 0.42217 lineto -0.65067 0.42218 lineto -0.65129 0.42218 lineto -0.65253 0.42221 lineto -0.65377 0.42224 lineto -0.65625 0.42232 lineto -0.65873 0.42244 lineto -0.66369 0.42277 lineto -0.66865 0.42322 lineto -0.67857 0.42451 lineto -0.68849 0.4263 lineto -0.69841 0.4286 lineto -0.71825 0.4347 lineto -0.7381 0.44282 lineto -0.77778 0.46511 lineto -0.81746 0.49267 lineto -0.85714 0.52033 lineto -Mistroke -0.89683 0.54799 lineto -0.93651 0.57566 lineto -0.97619 0.60332 lineto -Mfstroke -grestore -grestore -grestore -% End of Graphics -MathPictureEnd -end -showpage diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob16a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob16a.gif deleted file mode 100755 index 59be1d1dc..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob16a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob16a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob16a.pdf deleted file mode 100644 index dc59c99a0..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob16a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av1.eps deleted file mode 100755 index 7c8a5f212..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av1.eps +++ /dev/null @@ -1,826 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 395 208 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Wed, Mar 6, 1996 4:13 PM -%%DocumentFonts: (atend) -%%EndComments -0 208 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -44.50 18.00 44.50 171.00 MacLine -376.50 18.00 376.50 171.00 MacLine -1 ps -1.00 ps -376.50 17.50 369.50 17.50 MacLine -44.50 17.50 51.50 17.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(7) 35.50 20.75 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 39.88 369.50 39.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 39.50 369.50 39.50 MacLine -44.50 39.50 51.50 39.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(6) 35.50 42.75 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 61.88 369.50 61.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 61.50 369.50 61.50 MacLine -44.50 61.50 51.50 61.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(5) 35.50 64.75 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 83.88 369.50 83.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 83.50 369.50 83.50 MacLine -44.50 83.50 51.50 83.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 35.50 86.75 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 105.88 369.50 105.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 105.50 369.50 105.50 MacLine -44.50 105.50 51.50 105.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(3) 35.50 108.75 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 127.88 369.50 127.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 127.50 369.50 127.50 MacLine -44.50 127.50 51.50 127.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 35.50 130.75 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 149.88 369.50 149.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 149.50 369.50 149.50 MacLine -44.50 149.50 51.50 149.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(1) 35.50 152.75 5.50 WS -1.00 ps -376.50 171.50 369.50 171.50 MacLine -44.50 171.50 51.50 171.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 35.50 174.75 5.50 WS -12.00 (_Helvetica) 0 F -gsave 9.25 126.88 translate -90 rotate -(Position \(m\)) 0.00 0.00 63.88 WS -grestore -1.00 ps -44.50 171.50 376.50 171.50 MacLine -44.50 17.50 376.50 17.50 MacLine -1 ps -1.00 ps -376.50 17.50 376.50 24.50 MacLine -376.50 171.50 376.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(8) 374.25 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -368.75 168.00 368.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -368.25 17.50 368.25 21.00 MacLine -368.25 171.50 368.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -360.38 168.00 360.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -359.88 17.50 359.88 21.00 MacLine -359.88 171.50 359.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -352.12 168.00 352.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -351.62 17.50 351.62 21.00 MacLine -351.62 171.50 351.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -343.75 168.00 343.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -343.25 17.50 343.25 21.00 MacLine -343.25 171.50 343.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -335.50 166.25 335.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -335.00 17.50 335.00 22.75 MacLine -335.00 171.50 335.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -327.25 168.00 327.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -326.75 17.50 326.75 21.00 MacLine -326.75 171.50 326.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -318.88 168.00 318.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -318.38 17.50 318.38 21.00 MacLine -318.38 171.50 318.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -310.62 168.00 310.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -310.12 17.50 310.12 21.00 MacLine -310.12 171.50 310.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -302.25 168.00 302.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -301.75 17.50 301.75 21.00 MacLine -301.75 171.50 301.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -293.88 164.50 293.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -293.50 17.50 293.50 24.50 MacLine -293.50 171.50 293.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(6) 291.25 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -285.75 168.00 285.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -285.25 17.50 285.25 21.00 MacLine -285.25 171.50 285.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -277.38 168.00 277.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -276.88 17.50 276.88 21.00 MacLine -276.88 171.50 276.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -269.12 168.00 269.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -268.62 17.50 268.62 21.00 MacLine -268.62 171.50 268.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -260.75 168.00 260.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -260.25 17.50 260.25 21.00 MacLine -260.25 171.50 260.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -252.50 166.25 252.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -252.00 17.50 252.00 22.75 MacLine -252.00 171.50 252.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -244.25 168.00 244.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -243.75 17.50 243.75 21.00 MacLine -243.75 171.50 243.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -235.88 168.00 235.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -235.38 17.50 235.38 21.00 MacLine -235.38 171.50 235.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -227.62 168.00 227.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -227.12 17.50 227.12 21.00 MacLine -227.12 171.50 227.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -219.25 168.00 219.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -218.75 17.50 218.75 21.00 MacLine -218.75 171.50 218.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -210.88 164.50 210.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -210.50 17.50 210.50 24.50 MacLine -210.50 171.50 210.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 208.25 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -202.75 168.00 202.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -202.25 17.50 202.25 21.00 MacLine -202.25 171.50 202.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -194.38 168.00 194.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -193.88 17.50 193.88 21.00 MacLine -193.88 171.50 193.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -186.12 168.00 186.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -185.62 17.50 185.62 21.00 MacLine -185.62 171.50 185.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -177.75 168.00 177.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -177.25 17.50 177.25 21.00 MacLine -177.25 171.50 177.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -169.50 166.25 169.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -169.00 17.50 169.00 22.75 MacLine -169.00 171.50 169.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -161.25 168.00 161.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -160.75 17.50 160.75 21.00 MacLine -160.75 171.50 160.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -152.88 168.00 152.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -152.38 17.50 152.38 21.00 MacLine -152.38 171.50 152.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -144.62 168.00 144.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -144.12 17.50 144.12 21.00 MacLine -144.12 171.50 144.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -136.25 168.00 136.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -135.75 17.50 135.75 21.00 MacLine -135.75 171.50 135.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -127.88 164.50 127.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -127.50 17.50 127.50 24.50 MacLine -127.50 171.50 127.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 125.25 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -119.75 168.00 119.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -119.25 17.50 119.25 21.00 MacLine -119.25 171.50 119.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -111.38 168.00 111.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -110.88 17.50 110.88 21.00 MacLine -110.88 171.50 110.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -103.12 168.00 103.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -102.62 17.50 102.62 21.00 MacLine -102.62 171.50 102.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -94.75 168.00 94.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -94.25 17.50 94.25 21.00 MacLine -94.25 171.50 94.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -86.50 166.25 86.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -86.00 17.50 86.00 22.75 MacLine -86.00 171.50 86.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -78.25 168.00 78.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -77.75 17.50 77.75 21.00 MacLine -77.75 171.50 77.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -69.88 168.00 69.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -69.38 17.50 69.38 21.00 MacLine -69.38 171.50 69.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -61.62 168.00 61.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -61.12 17.50 61.12 21.00 MacLine -61.12 171.50 61.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.25 168.00 53.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -52.75 17.50 52.75 21.00 MacLine -52.75 171.50 52.75 168.00 MacLine -1 ps -1.00 ps -44.50 17.50 44.50 24.50 MacLine -44.50 171.50 44.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 42.25 184.25 5.50 WS -12.00 (_Helvetica) 0 F -(Time \(s\)) 189.00 205.25 44.00 WS -1 0 0 SetFore UseFore -2.00 ps -newpath 45.00 172.00 M -86.50 62.00 L -128.00 62.00 L -169.50 128.00 L -211.00 150.00 L -252.50 172.00 L -294.00 172.00 L -335.50 18.00 L -377.00 84.00 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av1.gif deleted file mode 100755 index 6eba7fcc5..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av2.eps deleted file mode 100755 index afb99d7f1..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av2.eps +++ /dev/null @@ -1,901 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 395 208 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Wed, Mar 6, 1996 4:16 PM -%%DocumentFonts: (atend) -%%EndComments -0 208 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -44.50 18.00 44.50 171.00 MacLine -376.50 18.00 376.50 171.00 MacLine -1 ps -1.00 ps -376.50 17.50 369.50 17.50 MacLine -44.50 17.50 51.50 17.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(8) 35.50 20.75 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 27.62 373.00 27.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 27.12 373.00 27.12 MacLine -44.50 27.12 48.00 27.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 37.25 373.00 37.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 36.75 373.00 36.75 MacLine -44.50 36.75 48.00 36.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 46.88 373.00 46.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 46.38 373.00 46.38 MacLine -44.50 46.38 48.00 46.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 56.38 369.50 56.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 56.00 369.50 56.00 MacLine -44.50 56.00 51.50 56.00 MacLine -1 ps -10.00 (_Helvetica) 0 F -(6) 35.50 59.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 66.12 373.00 66.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 65.62 373.00 65.62 MacLine -44.50 65.62 48.00 65.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 75.75 373.00 75.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 75.25 373.00 75.25 MacLine -44.50 75.25 48.00 75.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 85.38 373.00 85.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 84.88 373.00 84.88 MacLine -44.50 84.88 48.00 84.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 94.88 369.50 94.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 94.50 369.50 94.50 MacLine -44.50 94.50 51.50 94.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 35.50 97.75 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 104.62 373.00 104.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 104.12 373.00 104.12 MacLine -44.50 104.12 48.00 104.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 114.25 373.00 114.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 113.75 373.00 113.75 MacLine -44.50 113.75 48.00 113.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 123.88 373.00 123.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 123.38 373.00 123.38 MacLine -44.50 123.38 48.00 123.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 133.38 369.50 133.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 133.00 369.50 133.00 MacLine -44.50 133.00 51.50 133.00 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 35.50 136.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 143.12 373.00 143.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 142.62 373.00 142.62 MacLine -44.50 142.62 48.00 142.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 152.75 373.00 152.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 152.25 373.00 152.25 MacLine -44.50 152.25 48.00 152.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 162.38 373.00 162.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 161.88 373.00 161.88 MacLine -44.50 161.88 48.00 161.88 MacLine -1 ps -1.00 ps -376.50 171.50 369.50 171.50 MacLine -44.50 171.50 51.50 171.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 35.50 174.75 5.50 WS -12.00 (_Helvetica) 0 F -gsave 9.25 126.88 translate -90 rotate -(Position \(m\)) 0.00 0.00 63.88 WS -grestore -1.00 ps -44.50 171.50 376.50 171.50 MacLine -44.50 17.50 376.50 17.50 MacLine -1 ps -1.00 ps -376.50 17.50 376.50 24.50 MacLine -376.50 171.50 376.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(8) 374.25 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -368.75 168.00 368.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -368.25 17.50 368.25 21.00 MacLine -368.25 171.50 368.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -360.38 168.00 360.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -359.88 17.50 359.88 21.00 MacLine -359.88 171.50 359.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -352.12 168.00 352.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -351.62 17.50 351.62 21.00 MacLine -351.62 171.50 351.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -343.75 168.00 343.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -343.25 17.50 343.25 21.00 MacLine -343.25 171.50 343.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -335.50 166.25 335.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -335.00 17.50 335.00 22.75 MacLine -335.00 171.50 335.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -327.25 168.00 327.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -326.75 17.50 326.75 21.00 MacLine -326.75 171.50 326.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -318.88 168.00 318.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -318.38 17.50 318.38 21.00 MacLine -318.38 171.50 318.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -310.62 168.00 310.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -310.12 17.50 310.12 21.00 MacLine -310.12 171.50 310.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -302.25 168.00 302.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -301.75 17.50 301.75 21.00 MacLine -301.75 171.50 301.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -293.88 164.50 293.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -293.50 17.50 293.50 24.50 MacLine -293.50 171.50 293.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(6) 291.25 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -285.75 168.00 285.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -285.25 17.50 285.25 21.00 MacLine -285.25 171.50 285.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -277.38 168.00 277.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -276.88 17.50 276.88 21.00 MacLine -276.88 171.50 276.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -269.12 168.00 269.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -268.62 17.50 268.62 21.00 MacLine -268.62 171.50 268.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -260.75 168.00 260.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -260.25 17.50 260.25 21.00 MacLine -260.25 171.50 260.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -252.50 166.25 252.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -252.00 17.50 252.00 22.75 MacLine -252.00 171.50 252.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -244.25 168.00 244.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -243.75 17.50 243.75 21.00 MacLine -243.75 171.50 243.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -235.88 168.00 235.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -235.38 17.50 235.38 21.00 MacLine -235.38 171.50 235.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -227.62 168.00 227.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -227.12 17.50 227.12 21.00 MacLine -227.12 171.50 227.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -219.25 168.00 219.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -218.75 17.50 218.75 21.00 MacLine -218.75 171.50 218.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -210.88 164.50 210.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -210.50 17.50 210.50 24.50 MacLine -210.50 171.50 210.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 208.25 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -202.75 168.00 202.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -202.25 17.50 202.25 21.00 MacLine -202.25 171.50 202.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -194.38 168.00 194.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -193.88 17.50 193.88 21.00 MacLine -193.88 171.50 193.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -186.12 168.00 186.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -185.62 17.50 185.62 21.00 MacLine -185.62 171.50 185.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -177.75 168.00 177.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -177.25 17.50 177.25 21.00 MacLine -177.25 171.50 177.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -169.50 166.25 169.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -169.00 17.50 169.00 22.75 MacLine -169.00 171.50 169.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -161.25 168.00 161.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -160.75 17.50 160.75 21.00 MacLine -160.75 171.50 160.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -152.88 168.00 152.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -152.38 17.50 152.38 21.00 MacLine -152.38 171.50 152.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -144.62 168.00 144.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -144.12 17.50 144.12 21.00 MacLine -144.12 171.50 144.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -136.25 168.00 136.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -135.75 17.50 135.75 21.00 MacLine -135.75 171.50 135.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -127.88 164.50 127.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -127.50 17.50 127.50 24.50 MacLine -127.50 171.50 127.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 125.25 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -119.75 168.00 119.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -119.25 17.50 119.25 21.00 MacLine -119.25 171.50 119.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -111.38 168.00 111.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -110.88 17.50 110.88 21.00 MacLine -110.88 171.50 110.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -103.12 168.00 103.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -102.62 17.50 102.62 21.00 MacLine -102.62 171.50 102.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -94.75 168.00 94.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -94.25 17.50 94.25 21.00 MacLine -94.25 171.50 94.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -86.50 166.25 86.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -86.00 17.50 86.00 22.75 MacLine -86.00 171.50 86.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -78.25 168.00 78.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -77.75 17.50 77.75 21.00 MacLine -77.75 171.50 77.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -69.88 168.00 69.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -69.38 17.50 69.38 21.00 MacLine -69.38 171.50 69.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -61.62 168.00 61.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -61.12 17.50 61.12 21.00 MacLine -61.12 171.50 61.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.25 168.00 53.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -52.75 17.50 52.75 21.00 MacLine -52.75 171.50 52.75 168.00 MacLine -1 ps -1.00 ps -44.50 17.50 44.50 24.50 MacLine -44.50 171.50 44.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 42.25 184.25 5.50 WS -12.00 (_Helvetica) 0 F -(Time \(s\)) 189.00 205.25 44.00 WS -1 0 0 SetFore UseFore -2.00 ps -newpath 45.00 172.00 M -86.50 114.25 L -128.00 152.75 L -169.50 152.75 L -211.00 18.00 L -252.50 172.00 L -294.00 172.00 L -335.50 114.25 L -377.00 75.75 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av2.gif deleted file mode 100755 index 606f41a85..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av3.eps deleted file mode 100755 index 67a077d8a..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av3.eps +++ /dev/null @@ -1,826 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 395 208 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Wed, Mar 6, 1996 4:18 PM -%%DocumentFonts: (atend) -%%EndComments -0 208 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -44.50 18.00 44.50 171.00 MacLine -376.50 18.00 376.50 171.00 MacLine -1 ps -1.00 ps -376.50 17.50 369.50 17.50 MacLine -44.50 17.50 51.50 17.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(7) 35.50 20.75 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 39.88 369.50 39.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 39.50 369.50 39.50 MacLine -44.50 39.50 51.50 39.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(6) 35.50 42.75 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 61.88 369.50 61.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 61.50 369.50 61.50 MacLine -44.50 61.50 51.50 61.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(5) 35.50 64.75 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 83.88 369.50 83.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 83.50 369.50 83.50 MacLine -44.50 83.50 51.50 83.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 35.50 86.75 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 105.88 369.50 105.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 105.50 369.50 105.50 MacLine -44.50 105.50 51.50 105.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(3) 35.50 108.75 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 127.88 369.50 127.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 127.50 369.50 127.50 MacLine -44.50 127.50 51.50 127.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 35.50 130.75 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 149.88 369.50 149.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 149.50 369.50 149.50 MacLine -44.50 149.50 51.50 149.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(1) 35.50 152.75 5.50 WS -1.00 ps -376.50 171.50 369.50 171.50 MacLine -44.50 171.50 51.50 171.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 35.50 174.75 5.50 WS -12.00 (_Helvetica) 0 F -gsave 9.25 126.88 translate -90 rotate -(Position \(m\)) 0.00 0.00 63.88 WS -grestore -1.00 ps -44.50 171.50 376.50 171.50 MacLine -44.50 17.50 376.50 17.50 MacLine -1 ps -1.00 ps -376.50 17.50 376.50 24.50 MacLine -376.50 171.50 376.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(8) 374.25 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -368.75 168.00 368.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -368.25 17.50 368.25 21.00 MacLine -368.25 171.50 368.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -360.38 168.00 360.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -359.88 17.50 359.88 21.00 MacLine -359.88 171.50 359.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -352.12 168.00 352.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -351.62 17.50 351.62 21.00 MacLine -351.62 171.50 351.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -343.75 168.00 343.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -343.25 17.50 343.25 21.00 MacLine -343.25 171.50 343.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -335.50 166.25 335.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -335.00 17.50 335.00 22.75 MacLine -335.00 171.50 335.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -327.25 168.00 327.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -326.75 17.50 326.75 21.00 MacLine -326.75 171.50 326.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -318.88 168.00 318.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -318.38 17.50 318.38 21.00 MacLine -318.38 171.50 318.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -310.62 168.00 310.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -310.12 17.50 310.12 21.00 MacLine -310.12 171.50 310.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -302.25 168.00 302.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -301.75 17.50 301.75 21.00 MacLine -301.75 171.50 301.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -293.88 164.50 293.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -293.50 17.50 293.50 24.50 MacLine -293.50 171.50 293.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(6) 291.25 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -285.75 168.00 285.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -285.25 17.50 285.25 21.00 MacLine -285.25 171.50 285.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -277.38 168.00 277.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -276.88 17.50 276.88 21.00 MacLine -276.88 171.50 276.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -269.12 168.00 269.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -268.62 17.50 268.62 21.00 MacLine -268.62 171.50 268.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -260.75 168.00 260.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -260.25 17.50 260.25 21.00 MacLine -260.25 171.50 260.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -252.50 166.25 252.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -252.00 17.50 252.00 22.75 MacLine -252.00 171.50 252.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -244.25 168.00 244.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -243.75 17.50 243.75 21.00 MacLine -243.75 171.50 243.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -235.88 168.00 235.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -235.38 17.50 235.38 21.00 MacLine -235.38 171.50 235.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -227.62 168.00 227.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -227.12 17.50 227.12 21.00 MacLine -227.12 171.50 227.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -219.25 168.00 219.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -218.75 17.50 218.75 21.00 MacLine -218.75 171.50 218.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -210.88 164.50 210.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -210.50 17.50 210.50 24.50 MacLine -210.50 171.50 210.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 208.25 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -202.75 168.00 202.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -202.25 17.50 202.25 21.00 MacLine -202.25 171.50 202.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -194.38 168.00 194.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -193.88 17.50 193.88 21.00 MacLine -193.88 171.50 193.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -186.12 168.00 186.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -185.62 17.50 185.62 21.00 MacLine -185.62 171.50 185.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -177.75 168.00 177.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -177.25 17.50 177.25 21.00 MacLine -177.25 171.50 177.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -169.50 166.25 169.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -169.00 17.50 169.00 22.75 MacLine -169.00 171.50 169.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -161.25 168.00 161.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -160.75 17.50 160.75 21.00 MacLine -160.75 171.50 160.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -152.88 168.00 152.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -152.38 17.50 152.38 21.00 MacLine -152.38 171.50 152.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -144.62 168.00 144.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -144.12 17.50 144.12 21.00 MacLine -144.12 171.50 144.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -136.25 168.00 136.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -135.75 17.50 135.75 21.00 MacLine -135.75 171.50 135.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -127.88 164.50 127.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -127.50 17.50 127.50 24.50 MacLine -127.50 171.50 127.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 125.25 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -119.75 168.00 119.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -119.25 17.50 119.25 21.00 MacLine -119.25 171.50 119.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -111.38 168.00 111.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -110.88 17.50 110.88 21.00 MacLine -110.88 171.50 110.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -103.12 168.00 103.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -102.62 17.50 102.62 21.00 MacLine -102.62 171.50 102.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -94.75 168.00 94.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -94.25 17.50 94.25 21.00 MacLine -94.25 171.50 94.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -86.50 166.25 86.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -86.00 17.50 86.00 22.75 MacLine -86.00 171.50 86.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -78.25 168.00 78.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -77.75 17.50 77.75 21.00 MacLine -77.75 171.50 77.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -69.88 168.00 69.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -69.38 17.50 69.38 21.00 MacLine -69.38 171.50 69.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -61.62 168.00 61.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -61.12 17.50 61.12 21.00 MacLine -61.12 171.50 61.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.25 168.00 53.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -52.75 17.50 52.75 21.00 MacLine -52.75 171.50 52.75 168.00 MacLine -1 ps -1.00 ps -44.50 17.50 44.50 24.50 MacLine -44.50 171.50 44.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 42.25 184.25 5.50 WS -12.00 (_Helvetica) 0 F -(Time \(s\)) 189.00 205.25 44.00 WS -1 0 0 SetFore UseFore -2.00 ps -newpath 45.00 172.00 M -86.50 40.00 L -128.00 62.00 L -169.50 106.00 L -211.00 106.00 L -252.50 172.00 L -294.00 172.00 L -335.50 128.00 L -377.00 18.00 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av3.gif deleted file mode 100755 index 0fb4a9ed1..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av4.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av4.eps deleted file mode 100755 index 931cd014f..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av4.eps +++ /dev/null @@ -1,901 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 395 208 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Mon, Mar 11, 1996 2:55 PM -%%DocumentFonts: (atend) -%%EndComments -0 208 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -44.50 18.00 44.50 171.00 MacLine -376.50 18.00 376.50 171.00 MacLine -1 ps -1.00 ps -376.50 17.50 369.50 17.50 MacLine -44.50 17.50 51.50 17.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(8) 35.50 20.75 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 27.62 373.00 27.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 27.12 373.00 27.12 MacLine -44.50 27.12 48.00 27.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 37.25 373.00 37.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 36.75 373.00 36.75 MacLine -44.50 36.75 48.00 36.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 46.88 373.00 46.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 46.38 373.00 46.38 MacLine -44.50 46.38 48.00 46.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 56.38 369.50 56.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 56.00 369.50 56.00 MacLine -44.50 56.00 51.50 56.00 MacLine -1 ps -10.00 (_Helvetica) 0 F -(6) 35.50 59.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 66.12 373.00 66.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 65.62 373.00 65.62 MacLine -44.50 65.62 48.00 65.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 75.75 373.00 75.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 75.25 373.00 75.25 MacLine -44.50 75.25 48.00 75.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 85.38 373.00 85.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 84.88 373.00 84.88 MacLine -44.50 84.88 48.00 84.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 94.88 369.50 94.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 94.50 369.50 94.50 MacLine -44.50 94.50 51.50 94.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 35.50 97.75 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 104.62 373.00 104.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 104.12 373.00 104.12 MacLine -44.50 104.12 48.00 104.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 114.25 373.00 114.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 113.75 373.00 113.75 MacLine -44.50 113.75 48.00 113.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 123.88 373.00 123.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 123.38 373.00 123.38 MacLine -44.50 123.38 48.00 123.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 133.38 369.50 133.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 133.00 369.50 133.00 MacLine -44.50 133.00 51.50 133.00 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 35.50 136.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 143.12 373.00 143.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 142.62 373.00 142.62 MacLine -44.50 142.62 48.00 142.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 152.75 373.00 152.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 152.25 373.00 152.25 MacLine -44.50 152.25 48.00 152.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 162.38 373.00 162.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 161.88 373.00 161.88 MacLine -44.50 161.88 48.00 161.88 MacLine -1 ps -1.00 ps -376.50 171.50 369.50 171.50 MacLine -44.50 171.50 51.50 171.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 35.50 174.75 5.50 WS -12.00 (_Helvetica) 0 F -gsave 9.25 126.88 translate -90 rotate -(Position \(m\)) 0.00 0.00 63.88 WS -grestore -1.00 ps -44.50 171.50 376.50 171.50 MacLine -44.50 17.50 376.50 17.50 MacLine -1 ps -1.00 ps -376.50 17.50 376.50 24.50 MacLine -376.50 171.50 376.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(8) 374.25 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -368.75 168.00 368.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -368.25 17.50 368.25 21.00 MacLine -368.25 171.50 368.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -360.38 168.00 360.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -359.88 17.50 359.88 21.00 MacLine -359.88 171.50 359.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -352.12 168.00 352.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -351.62 17.50 351.62 21.00 MacLine -351.62 171.50 351.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -343.75 168.00 343.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -343.25 17.50 343.25 21.00 MacLine -343.25 171.50 343.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -335.50 166.25 335.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -335.00 17.50 335.00 22.75 MacLine -335.00 171.50 335.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -327.25 168.00 327.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -326.75 17.50 326.75 21.00 MacLine -326.75 171.50 326.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -318.88 168.00 318.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -318.38 17.50 318.38 21.00 MacLine -318.38 171.50 318.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -310.62 168.00 310.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -310.12 17.50 310.12 21.00 MacLine -310.12 171.50 310.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -302.25 168.00 302.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -301.75 17.50 301.75 21.00 MacLine -301.75 171.50 301.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -293.88 164.50 293.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -293.50 17.50 293.50 24.50 MacLine -293.50 171.50 293.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(6) 291.25 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -285.75 168.00 285.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -285.25 17.50 285.25 21.00 MacLine -285.25 171.50 285.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -277.38 168.00 277.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -276.88 17.50 276.88 21.00 MacLine -276.88 171.50 276.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -269.12 168.00 269.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -268.62 17.50 268.62 21.00 MacLine -268.62 171.50 268.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -260.75 168.00 260.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -260.25 17.50 260.25 21.00 MacLine -260.25 171.50 260.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -252.50 166.25 252.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -252.00 17.50 252.00 22.75 MacLine -252.00 171.50 252.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -244.25 168.00 244.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -243.75 17.50 243.75 21.00 MacLine -243.75 171.50 243.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -235.88 168.00 235.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -235.38 17.50 235.38 21.00 MacLine -235.38 171.50 235.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -227.62 168.00 227.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -227.12 17.50 227.12 21.00 MacLine -227.12 171.50 227.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -219.25 168.00 219.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -218.75 17.50 218.75 21.00 MacLine -218.75 171.50 218.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -210.88 164.50 210.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -210.50 17.50 210.50 24.50 MacLine -210.50 171.50 210.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 208.25 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -202.75 168.00 202.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -202.25 17.50 202.25 21.00 MacLine -202.25 171.50 202.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -194.38 168.00 194.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -193.88 17.50 193.88 21.00 MacLine -193.88 171.50 193.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -186.12 168.00 186.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -185.62 17.50 185.62 21.00 MacLine -185.62 171.50 185.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -177.75 168.00 177.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -177.25 17.50 177.25 21.00 MacLine -177.25 171.50 177.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -169.50 166.25 169.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -169.00 17.50 169.00 22.75 MacLine -169.00 171.50 169.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -161.25 168.00 161.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -160.75 17.50 160.75 21.00 MacLine -160.75 171.50 160.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -152.88 168.00 152.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -152.38 17.50 152.38 21.00 MacLine -152.38 171.50 152.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -144.62 168.00 144.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -144.12 17.50 144.12 21.00 MacLine -144.12 171.50 144.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -136.25 168.00 136.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -135.75 17.50 135.75 21.00 MacLine -135.75 171.50 135.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -127.88 164.50 127.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -127.50 17.50 127.50 24.50 MacLine -127.50 171.50 127.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 125.25 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -119.75 168.00 119.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -119.25 17.50 119.25 21.00 MacLine -119.25 171.50 119.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -111.38 168.00 111.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -110.88 17.50 110.88 21.00 MacLine -110.88 171.50 110.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -103.12 168.00 103.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -102.62 17.50 102.62 21.00 MacLine -102.62 171.50 102.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -94.75 168.00 94.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -94.25 17.50 94.25 21.00 MacLine -94.25 171.50 94.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -86.50 166.25 86.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -86.00 17.50 86.00 22.75 MacLine -86.00 171.50 86.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -78.25 168.00 78.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -77.75 17.50 77.75 21.00 MacLine -77.75 171.50 77.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -69.88 168.00 69.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -69.38 17.50 69.38 21.00 MacLine -69.38 171.50 69.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -61.62 168.00 61.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -61.12 17.50 61.12 21.00 MacLine -61.12 171.50 61.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.25 168.00 53.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -52.75 17.50 52.75 21.00 MacLine -52.75 171.50 52.75 168.00 MacLine -1 ps -1.00 ps -44.50 17.50 44.50 24.50 MacLine -44.50 171.50 44.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 42.25 184.25 5.50 WS -12.00 (_Helvetica) 0 F -(Time \(s\)) 189.00 205.25 44.00 WS -1 0 0 SetFore UseFore -2.00 ps -newpath 45.00 172.00 M -86.50 133.50 L -128.00 18.00 L -169.50 56.50 L -211.00 172.00 L -252.50 172.00 L -294.00 133.50 L -335.50 133.50 L -377.00 56.50 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av4.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av4.gif deleted file mode 100755 index 0f80d318a..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av4.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av4.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av4.pdf deleted file mode 100644 index 4ed55cc37..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av4.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av5.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av5.eps deleted file mode 100755 index 2737bda77..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av5.eps +++ /dev/null @@ -1,901 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 395 208 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Wed, Mar 6, 1996 4:22 PM -%%DocumentFonts: (atend) -%%EndComments -0 208 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -44.50 18.00 44.50 171.00 MacLine -376.50 18.00 376.50 171.00 MacLine -1 ps -1.00 ps -376.50 17.50 369.50 17.50 MacLine -44.50 17.50 51.50 17.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(8) 35.50 20.75 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 27.62 373.00 27.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 27.12 373.00 27.12 MacLine -44.50 27.12 48.00 27.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 37.25 373.00 37.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 36.75 373.00 36.75 MacLine -44.50 36.75 48.00 36.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 46.88 373.00 46.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 46.38 373.00 46.38 MacLine -44.50 46.38 48.00 46.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 56.38 369.50 56.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 56.00 369.50 56.00 MacLine -44.50 56.00 51.50 56.00 MacLine -1 ps -10.00 (_Helvetica) 0 F -(6) 35.50 59.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 66.12 373.00 66.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 65.62 373.00 65.62 MacLine -44.50 65.62 48.00 65.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 75.75 373.00 75.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 75.25 373.00 75.25 MacLine -44.50 75.25 48.00 75.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 85.38 373.00 85.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 84.88 373.00 84.88 MacLine -44.50 84.88 48.00 84.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 94.88 369.50 94.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 94.50 369.50 94.50 MacLine -44.50 94.50 51.50 94.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 35.50 97.75 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 104.62 373.00 104.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 104.12 373.00 104.12 MacLine -44.50 104.12 48.00 104.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 114.25 373.00 114.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 113.75 373.00 113.75 MacLine -44.50 113.75 48.00 113.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 123.88 373.00 123.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 123.38 373.00 123.38 MacLine -44.50 123.38 48.00 123.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 133.38 369.50 133.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 133.00 369.50 133.00 MacLine -44.50 133.00 51.50 133.00 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 35.50 136.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 143.12 373.00 143.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 142.62 373.00 142.62 MacLine -44.50 142.62 48.00 142.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 152.75 373.00 152.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 152.25 373.00 152.25 MacLine -44.50 152.25 48.00 152.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 162.38 373.00 162.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 161.88 373.00 161.88 MacLine -44.50 161.88 48.00 161.88 MacLine -1 ps -1.00 ps -376.50 171.50 369.50 171.50 MacLine -44.50 171.50 51.50 171.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 35.50 174.75 5.50 WS -12.00 (_Helvetica) 0 F -gsave 9.25 126.88 translate -90 rotate -(Position \(m\)) 0.00 0.00 63.88 WS -grestore -1.00 ps -44.50 171.50 376.50 171.50 MacLine -44.50 17.50 376.50 17.50 MacLine -1 ps -1.00 ps -376.50 17.50 376.50 24.50 MacLine -376.50 171.50 376.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(8) 374.25 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -368.75 168.00 368.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -368.25 17.50 368.25 21.00 MacLine -368.25 171.50 368.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -360.38 168.00 360.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -359.88 17.50 359.88 21.00 MacLine -359.88 171.50 359.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -352.12 168.00 352.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -351.62 17.50 351.62 21.00 MacLine -351.62 171.50 351.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -343.75 168.00 343.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -343.25 17.50 343.25 21.00 MacLine -343.25 171.50 343.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -335.50 166.25 335.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -335.00 17.50 335.00 22.75 MacLine -335.00 171.50 335.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -327.25 168.00 327.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -326.75 17.50 326.75 21.00 MacLine -326.75 171.50 326.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -318.88 168.00 318.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -318.38 17.50 318.38 21.00 MacLine -318.38 171.50 318.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -310.62 168.00 310.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -310.12 17.50 310.12 21.00 MacLine -310.12 171.50 310.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -302.25 168.00 302.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -301.75 17.50 301.75 21.00 MacLine -301.75 171.50 301.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -293.88 164.50 293.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -293.50 17.50 293.50 24.50 MacLine -293.50 171.50 293.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(6) 291.25 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -285.75 168.00 285.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -285.25 17.50 285.25 21.00 MacLine -285.25 171.50 285.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -277.38 168.00 277.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -276.88 17.50 276.88 21.00 MacLine -276.88 171.50 276.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -269.12 168.00 269.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -268.62 17.50 268.62 21.00 MacLine -268.62 171.50 268.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -260.75 168.00 260.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -260.25 17.50 260.25 21.00 MacLine -260.25 171.50 260.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -252.50 166.25 252.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -252.00 17.50 252.00 22.75 MacLine -252.00 171.50 252.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -244.25 168.00 244.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -243.75 17.50 243.75 21.00 MacLine -243.75 171.50 243.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -235.88 168.00 235.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -235.38 17.50 235.38 21.00 MacLine -235.38 171.50 235.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -227.62 168.00 227.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -227.12 17.50 227.12 21.00 MacLine -227.12 171.50 227.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -219.25 168.00 219.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -218.75 17.50 218.75 21.00 MacLine -218.75 171.50 218.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -210.88 164.50 210.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -210.50 17.50 210.50 24.50 MacLine -210.50 171.50 210.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 208.25 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -202.75 168.00 202.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -202.25 17.50 202.25 21.00 MacLine -202.25 171.50 202.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -194.38 168.00 194.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -193.88 17.50 193.88 21.00 MacLine -193.88 171.50 193.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -186.12 168.00 186.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -185.62 17.50 185.62 21.00 MacLine -185.62 171.50 185.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -177.75 168.00 177.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -177.25 17.50 177.25 21.00 MacLine -177.25 171.50 177.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -169.50 166.25 169.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -169.00 17.50 169.00 22.75 MacLine -169.00 171.50 169.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -161.25 168.00 161.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -160.75 17.50 160.75 21.00 MacLine -160.75 171.50 160.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -152.88 168.00 152.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -152.38 17.50 152.38 21.00 MacLine -152.38 171.50 152.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -144.62 168.00 144.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -144.12 17.50 144.12 21.00 MacLine -144.12 171.50 144.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -136.25 168.00 136.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -135.75 17.50 135.75 21.00 MacLine -135.75 171.50 135.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -127.88 164.50 127.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -127.50 17.50 127.50 24.50 MacLine -127.50 171.50 127.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 125.25 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -119.75 168.00 119.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -119.25 17.50 119.25 21.00 MacLine -119.25 171.50 119.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -111.38 168.00 111.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -110.88 17.50 110.88 21.00 MacLine -110.88 171.50 110.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -103.12 168.00 103.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -102.62 17.50 102.62 21.00 MacLine -102.62 171.50 102.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -94.75 168.00 94.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -94.25 17.50 94.25 21.00 MacLine -94.25 171.50 94.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -86.50 166.25 86.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -86.00 17.50 86.00 22.75 MacLine -86.00 171.50 86.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -78.25 168.00 78.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -77.75 17.50 77.75 21.00 MacLine -77.75 171.50 77.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -69.88 168.00 69.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -69.38 17.50 69.38 21.00 MacLine -69.38 171.50 69.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -61.62 168.00 61.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -61.12 17.50 61.12 21.00 MacLine -61.12 171.50 61.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.25 168.00 53.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -52.75 17.50 52.75 21.00 MacLine -52.75 171.50 52.75 168.00 MacLine -1 ps -1.00 ps -44.50 17.50 44.50 24.50 MacLine -44.50 171.50 44.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 42.25 184.25 5.50 WS -12.00 (_Helvetica) 0 F -(Time \(s\)) 189.00 205.25 44.00 WS -1 0 0 SetFore UseFore -2.00 ps -newpath 45.00 172.00 M -86.50 172.00 L -128.00 56.50 L -169.50 37.25 L -211.00 114.25 L -252.50 152.75 L -294.00 152.75 L -335.50 75.75 L -377.00 18.00 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av5.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av5.gif deleted file mode 100755 index 6207c44eb..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av5.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av6.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av6.eps deleted file mode 100755 index 2c5f9cba0..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av6.eps +++ /dev/null @@ -1,901 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 395 208 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Wed, Mar 6, 1996 4:23 PM -%%DocumentFonts: (atend) -%%EndComments -0 208 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -44.50 18.00 44.50 171.00 MacLine -376.50 18.00 376.50 171.00 MacLine -1 ps -1.00 ps -376.50 17.50 369.50 17.50 MacLine -44.50 17.50 51.50 17.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(8) 35.50 20.75 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 27.62 373.00 27.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 27.12 373.00 27.12 MacLine -44.50 27.12 48.00 27.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 37.25 373.00 37.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 36.75 373.00 36.75 MacLine -44.50 36.75 48.00 36.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 46.88 373.00 46.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 46.38 373.00 46.38 MacLine -44.50 46.38 48.00 46.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 56.38 369.50 56.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 56.00 369.50 56.00 MacLine -44.50 56.00 51.50 56.00 MacLine -1 ps -10.00 (_Helvetica) 0 F -(6) 35.50 59.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 66.12 373.00 66.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 65.62 373.00 65.62 MacLine -44.50 65.62 48.00 65.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 75.75 373.00 75.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 75.25 373.00 75.25 MacLine -44.50 75.25 48.00 75.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 85.38 373.00 85.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 84.88 373.00 84.88 MacLine -44.50 84.88 48.00 84.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 94.88 369.50 94.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 94.50 369.50 94.50 MacLine -44.50 94.50 51.50 94.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 35.50 97.75 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 104.62 373.00 104.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 104.12 373.00 104.12 MacLine -44.50 104.12 48.00 104.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 114.25 373.00 114.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 113.75 373.00 113.75 MacLine -44.50 113.75 48.00 113.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 123.88 373.00 123.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 123.38 373.00 123.38 MacLine -44.50 123.38 48.00 123.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 133.38 369.50 133.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 133.00 369.50 133.00 MacLine -44.50 133.00 51.50 133.00 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 35.50 136.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 143.12 373.00 143.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 142.62 373.00 142.62 MacLine -44.50 142.62 48.00 142.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 152.75 373.00 152.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 152.25 373.00 152.25 MacLine -44.50 152.25 48.00 152.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 162.38 373.00 162.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 161.88 373.00 161.88 MacLine -44.50 161.88 48.00 161.88 MacLine -1 ps -1.00 ps -376.50 171.50 369.50 171.50 MacLine -44.50 171.50 51.50 171.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 35.50 174.75 5.50 WS -12.00 (_Helvetica) 0 F -gsave 9.25 126.88 translate -90 rotate -(Position \(m\)) 0.00 0.00 63.88 WS -grestore -1.00 ps -44.50 171.50 376.50 171.50 MacLine -44.50 17.50 376.50 17.50 MacLine -1 ps -1.00 ps -376.50 17.50 376.50 24.50 MacLine -376.50 171.50 376.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(8) 374.25 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -368.75 168.00 368.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -368.25 17.50 368.25 21.00 MacLine -368.25 171.50 368.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -360.38 168.00 360.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -359.88 17.50 359.88 21.00 MacLine -359.88 171.50 359.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -352.12 168.00 352.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -351.62 17.50 351.62 21.00 MacLine -351.62 171.50 351.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -343.75 168.00 343.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -343.25 17.50 343.25 21.00 MacLine -343.25 171.50 343.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -335.50 166.25 335.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -335.00 17.50 335.00 22.75 MacLine -335.00 171.50 335.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -327.25 168.00 327.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -326.75 17.50 326.75 21.00 MacLine -326.75 171.50 326.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -318.88 168.00 318.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -318.38 17.50 318.38 21.00 MacLine -318.38 171.50 318.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -310.62 168.00 310.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -310.12 17.50 310.12 21.00 MacLine -310.12 171.50 310.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -302.25 168.00 302.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -301.75 17.50 301.75 21.00 MacLine -301.75 171.50 301.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -293.88 164.50 293.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -293.50 17.50 293.50 24.50 MacLine -293.50 171.50 293.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(6) 291.25 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -285.75 168.00 285.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -285.25 17.50 285.25 21.00 MacLine -285.25 171.50 285.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -277.38 168.00 277.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -276.88 17.50 276.88 21.00 MacLine -276.88 171.50 276.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -269.12 168.00 269.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -268.62 17.50 268.62 21.00 MacLine -268.62 171.50 268.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -260.75 168.00 260.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -260.25 17.50 260.25 21.00 MacLine -260.25 171.50 260.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -252.50 166.25 252.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -252.00 17.50 252.00 22.75 MacLine -252.00 171.50 252.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -244.25 168.00 244.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -243.75 17.50 243.75 21.00 MacLine -243.75 171.50 243.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -235.88 168.00 235.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -235.38 17.50 235.38 21.00 MacLine -235.38 171.50 235.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -227.62 168.00 227.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -227.12 17.50 227.12 21.00 MacLine -227.12 171.50 227.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -219.25 168.00 219.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -218.75 17.50 218.75 21.00 MacLine -218.75 171.50 218.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -210.88 164.50 210.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -210.50 17.50 210.50 24.50 MacLine -210.50 171.50 210.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 208.25 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -202.75 168.00 202.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -202.25 17.50 202.25 21.00 MacLine -202.25 171.50 202.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -194.38 168.00 194.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -193.88 17.50 193.88 21.00 MacLine -193.88 171.50 193.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -186.12 168.00 186.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -185.62 17.50 185.62 21.00 MacLine -185.62 171.50 185.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -177.75 168.00 177.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -177.25 17.50 177.25 21.00 MacLine -177.25 171.50 177.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -169.50 166.25 169.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -169.00 17.50 169.00 22.75 MacLine -169.00 171.50 169.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -161.25 168.00 161.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -160.75 17.50 160.75 21.00 MacLine -160.75 171.50 160.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -152.88 168.00 152.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -152.38 17.50 152.38 21.00 MacLine -152.38 171.50 152.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -144.62 168.00 144.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -144.12 17.50 144.12 21.00 MacLine -144.12 171.50 144.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -136.25 168.00 136.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -135.75 17.50 135.75 21.00 MacLine -135.75 171.50 135.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -127.88 164.50 127.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -127.50 17.50 127.50 24.50 MacLine -127.50 171.50 127.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 125.25 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -119.75 168.00 119.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -119.25 17.50 119.25 21.00 MacLine -119.25 171.50 119.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -111.38 168.00 111.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -110.88 17.50 110.88 21.00 MacLine -110.88 171.50 110.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -103.12 168.00 103.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -102.62 17.50 102.62 21.00 MacLine -102.62 171.50 102.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -94.75 168.00 94.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -94.25 17.50 94.25 21.00 MacLine -94.25 171.50 94.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -86.50 166.25 86.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -86.00 17.50 86.00 22.75 MacLine -86.00 171.50 86.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -78.25 168.00 78.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -77.75 17.50 77.75 21.00 MacLine -77.75 171.50 77.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -69.88 168.00 69.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -69.38 17.50 69.38 21.00 MacLine -69.38 171.50 69.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -61.62 168.00 61.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -61.12 17.50 61.12 21.00 MacLine -61.12 171.50 61.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.25 168.00 53.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -52.75 17.50 52.75 21.00 MacLine -52.75 171.50 52.75 168.00 MacLine -1 ps -1.00 ps -44.50 17.50 44.50 24.50 MacLine -44.50 171.50 44.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 42.25 184.25 5.50 WS -12.00 (_Helvetica) 0 F -(Time \(s\)) 189.00 205.25 44.00 WS -1 0 0 SetFore UseFore -2.00 ps -newpath 45.00 172.00 M -86.50 133.50 L -128.00 133.50 L -169.50 95.00 L -211.00 56.50 L -252.50 172.00 L -294.00 172.00 L -335.50 37.25 L -377.00 18.00 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av6.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av6.gif deleted file mode 100755 index e9c87e10c..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob19av6.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob20av1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob20av1.eps deleted file mode 100755 index 9b1b8cab1..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob20av1.eps +++ /dev/null @@ -1,1308 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 395 208 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Thu, Mar 7, 1996 11:44 AM -%%DocumentFonts: (atend) -%%EndComments -0 208 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -44.50 18.00 44.50 171.00 MacLine -376.50 18.00 376.50 171.00 MacLine -1 ps -1.00 ps -376.50 17.50 369.50 17.50 MacLine -44.50 17.50 51.50 17.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(6) 35.50 20.75 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 23.12 373.00 23.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 22.62 373.00 22.62 MacLine -44.50 22.62 48.00 22.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 28.25 373.00 28.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 27.75 373.00 27.75 MacLine -44.50 27.75 48.00 27.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 33.38 373.00 33.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 32.88 373.00 32.88 MacLine -44.50 32.88 48.00 32.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 38.50 373.00 38.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 38.00 373.00 38.00 MacLine -44.50 38.00 48.00 38.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 43.50 369.50 43.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 43.12 369.50 43.12 MacLine -44.50 43.12 51.50 43.12 MacLine -1 ps -10.00 (_Helvetica) 0 F -(5) 35.50 46.38 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 48.75 373.00 48.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 48.25 373.00 48.25 MacLine -44.50 48.25 48.00 48.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 53.88 373.00 53.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 53.38 373.00 53.38 MacLine -44.50 53.38 48.00 53.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 59.12 373.00 59.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 58.62 373.00 58.62 MacLine -44.50 58.62 48.00 58.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 64.25 373.00 64.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 63.75 373.00 63.75 MacLine -44.50 63.75 48.00 63.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 69.25 369.50 69.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 68.88 369.50 68.88 MacLine -44.50 68.88 51.50 68.88 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 35.50 72.12 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 74.50 373.00 74.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 74.00 373.00 74.00 MacLine -44.50 74.00 48.00 74.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 79.62 373.00 79.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 79.12 373.00 79.12 MacLine -44.50 79.12 48.00 79.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 84.75 373.00 84.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 84.25 373.00 84.25 MacLine -44.50 84.25 48.00 84.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 89.88 373.00 89.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 89.38 373.00 89.38 MacLine -44.50 89.38 48.00 89.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 94.88 369.50 94.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 94.50 369.50 94.50 MacLine -44.50 94.50 51.50 94.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(3) 35.50 97.75 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 100.12 373.00 100.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 99.62 373.00 99.62 MacLine -44.50 99.62 48.00 99.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 105.25 373.00 105.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 104.75 373.00 104.75 MacLine -44.50 104.75 48.00 104.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 110.38 373.00 110.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 109.88 373.00 109.88 MacLine -44.50 109.88 48.00 109.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 115.50 373.00 115.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 115.00 373.00 115.00 MacLine -44.50 115.00 48.00 115.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 120.50 369.50 120.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 120.12 369.50 120.12 MacLine -44.50 120.12 51.50 120.12 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 35.50 123.38 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 125.75 373.00 125.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 125.25 373.00 125.25 MacLine -44.50 125.25 48.00 125.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 130.88 373.00 130.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 130.38 373.00 130.38 MacLine -44.50 130.38 48.00 130.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 136.12 373.00 136.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 135.62 373.00 135.62 MacLine -44.50 135.62 48.00 135.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 141.25 373.00 141.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 140.75 373.00 140.75 MacLine -44.50 140.75 48.00 140.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 146.25 369.50 146.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 145.88 369.50 145.88 MacLine -44.50 145.88 51.50 145.88 MacLine -1 ps -10.00 (_Helvetica) 0 F -(1) 35.50 149.12 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 151.50 373.00 151.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 151.00 373.00 151.00 MacLine -44.50 151.00 48.00 151.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 156.62 373.00 156.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 156.12 373.00 156.12 MacLine -44.50 156.12 48.00 156.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 161.75 373.00 161.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 161.25 373.00 161.25 MacLine -44.50 161.25 48.00 161.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 166.88 373.00 166.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 166.38 373.00 166.38 MacLine -44.50 166.38 48.00 166.38 MacLine -1 ps -1.00 ps -376.50 171.50 369.50 171.50 MacLine -44.50 171.50 51.50 171.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 35.50 174.75 5.50 WS -12.00 (_Helvetica) 0 F -gsave 9.25 126.88 translate -90 rotate -(Position \(m\)) 0.00 0.00 63.88 WS -grestore -1.00 ps -44.50 171.50 376.50 171.50 MacLine -44.50 17.50 376.50 17.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -372.00 168.00 372.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -371.50 17.50 371.50 21.00 MacLine -371.50 171.50 371.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -365.38 168.00 365.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -364.88 17.50 364.88 21.00 MacLine -364.88 171.50 364.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -358.62 168.00 358.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -358.12 17.50 358.12 21.00 MacLine -358.12 171.50 358.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -352.00 168.00 352.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -351.50 17.50 351.50 21.00 MacLine -351.50 171.50 351.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -345.25 166.25 345.25 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -344.75 17.50 344.75 22.75 MacLine -344.75 171.50 344.75 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -338.62 168.00 338.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -338.12 17.50 338.12 21.00 MacLine -338.12 171.50 338.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -332.00 168.00 332.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -331.50 17.50 331.50 21.00 MacLine -331.50 171.50 331.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -325.25 168.00 325.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -324.75 17.50 324.75 21.00 MacLine -324.75 171.50 324.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -318.62 168.00 318.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -318.12 17.50 318.12 21.00 MacLine -318.12 171.50 318.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -311.75 164.50 311.75 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -311.38 17.50 311.38 24.50 MacLine -311.38 171.50 311.38 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(8) 309.12 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -305.25 168.00 305.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -304.75 17.50 304.75 21.00 MacLine -304.75 171.50 304.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -298.62 168.00 298.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -298.12 17.50 298.12 21.00 MacLine -298.12 171.50 298.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -291.88 168.00 291.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -291.38 17.50 291.38 21.00 MacLine -291.38 171.50 291.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -285.25 168.00 285.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -284.75 17.50 284.75 21.00 MacLine -284.75 171.50 284.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -278.62 166.25 278.62 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -278.12 17.50 278.12 22.75 MacLine -278.12 171.50 278.12 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -271.88 168.00 271.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -271.38 17.50 271.38 21.00 MacLine -271.38 171.50 271.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -265.25 168.00 265.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -264.75 17.50 264.75 21.00 MacLine -264.75 171.50 264.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -258.50 168.00 258.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -258.00 17.50 258.00 21.00 MacLine -258.00 171.50 258.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -251.88 168.00 251.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -251.38 17.50 251.38 21.00 MacLine -251.38 171.50 251.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -245.12 164.50 245.12 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -244.75 17.50 244.75 24.50 MacLine -244.75 171.50 244.75 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(6) 242.50 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -238.50 168.00 238.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -238.00 17.50 238.00 21.00 MacLine -238.00 171.50 238.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -231.88 168.00 231.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -231.38 17.50 231.38 21.00 MacLine -231.38 171.50 231.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -225.12 168.00 225.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -224.62 17.50 224.62 21.00 MacLine -224.62 171.50 224.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -218.50 168.00 218.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -218.00 17.50 218.00 21.00 MacLine -218.00 171.50 218.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -211.88 166.25 211.88 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -211.38 17.50 211.38 22.75 MacLine -211.38 171.50 211.38 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -205.12 168.00 205.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -204.62 17.50 204.62 21.00 MacLine -204.62 171.50 204.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -198.50 168.00 198.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -198.00 17.50 198.00 21.00 MacLine -198.00 171.50 198.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -191.88 168.00 191.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -191.38 17.50 191.38 21.00 MacLine -191.38 171.50 191.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -185.12 168.00 185.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -184.62 17.50 184.62 21.00 MacLine -184.62 171.50 184.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -178.38 164.50 178.38 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -178.00 17.50 178.00 24.50 MacLine -178.00 171.50 178.00 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 175.75 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -171.75 168.00 171.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -171.25 17.50 171.25 21.00 MacLine -171.25 171.50 171.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -165.12 168.00 165.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -164.62 17.50 164.62 21.00 MacLine -164.62 171.50 164.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -158.50 168.00 158.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -158.00 17.50 158.00 21.00 MacLine -158.00 171.50 158.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -151.75 168.00 151.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -151.25 17.50 151.25 21.00 MacLine -151.25 171.50 151.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -145.12 166.25 145.12 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -144.62 17.50 144.62 22.75 MacLine -144.62 171.50 144.62 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -138.38 168.00 138.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -137.88 17.50 137.88 21.00 MacLine -137.88 171.50 137.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -131.75 168.00 131.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -131.25 17.50 131.25 21.00 MacLine -131.25 171.50 131.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -125.12 168.00 125.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -124.62 17.50 124.62 21.00 MacLine -124.62 171.50 124.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -118.38 168.00 118.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -117.88 17.50 117.88 21.00 MacLine -117.88 171.50 117.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -111.62 164.50 111.62 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -111.25 17.50 111.25 24.50 MacLine -111.25 171.50 111.25 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 109.00 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -105.00 168.00 105.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -104.50 17.50 104.50 21.00 MacLine -104.50 171.50 104.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -98.38 168.00 98.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -97.88 17.50 97.88 21.00 MacLine -97.88 171.50 97.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -91.75 168.00 91.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -91.25 17.50 91.25 21.00 MacLine -91.25 171.50 91.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -85.00 168.00 85.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -84.50 17.50 84.50 21.00 MacLine -84.50 171.50 84.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -78.38 166.25 78.38 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -77.88 17.50 77.88 22.75 MacLine -77.88 171.50 77.88 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -71.75 168.00 71.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -71.25 17.50 71.25 21.00 MacLine -71.25 171.50 71.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -65.00 168.00 65.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -64.50 17.50 64.50 21.00 MacLine -64.50 171.50 64.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -58.38 168.00 58.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -57.88 17.50 57.88 21.00 MacLine -57.88 171.50 57.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -51.62 168.00 51.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -51.12 17.50 51.12 21.00 MacLine -51.12 171.50 51.12 168.00 MacLine -1 ps -1.00 ps -44.50 17.50 44.50 24.50 MacLine -44.50 171.50 44.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 42.25 184.25 5.50 WS -12.00 (_Helvetica) 0 F -(Time \(s\)) 189.00 205.25 44.00 WS -1 0 0 SetFore UseFore -2.00 ps -newpath 45.00 172.00 M -46.62 169.38 L -48.38 166.88 L -50.00 164.25 L -51.62 161.75 L -53.38 159.12 L -55.00 156.62 L -56.62 154.12 L -58.38 151.50 L -60.00 149.00 L -61.75 146.50 L -63.38 144.00 L -65.00 141.50 L -66.62 139.00 L -68.38 136.50 L -70.00 134.00 L -71.75 131.50 L -73.38 129.12 L -75.00 126.62 L -76.75 124.25 L -78.38 121.75 L -80.00 119.38 L -81.75 117.00 L -83.38 114.75 L -85.00 112.38 L -86.75 110.00 L -88.38 107.75 L -90.00 105.50 L -91.75 103.25 L -93.38 101.00 L -95.00 98.75 L -96.75 96.62 L -98.38 94.50 L -100.00 92.38 L -101.75 90.25 L -103.38 88.12 L -105.00 86.12 L -106.75 84.12 L -108.38 82.12 L -110.00 80.12 L -111.75 78.12 L -113.38 76.25 L -115.12 74.38 L -116.75 72.50 L -118.38 70.75 L -120.00 68.88 L -121.75 67.12 L -123.38 65.50 L -125.12 63.75 L -126.75 62.12 L -128.38 60.50 L -130.12 58.88 L -131.75 57.38 L -133.38 55.88 L -135.12 54.38 L -136.75 52.88 L -138.38 51.50 L -140.12 50.12 L -141.75 48.75 L -143.50 47.50 L -145.12 46.25 L -146.75 45.00 L -148.38 43.75 L -150.12 42.62 L -151.75 41.50 L -153.50 40.50 L -155.12 39.38 L -156.75 38.38 L -158.38 37.50 L -160.12 36.50 L -161.75 35.62 L -163.50 34.75 L -165.12 34.00 L -166.75 33.12 L -168.50 32.38 L -170.12 31.75 L -171.75 31.00 L -173.50 30.38 L -175.12 29.88 L -176.75 29.25 L -178.50 28.75 L -180.12 28.25 L -181.88 27.88 L -183.50 27.38 L -185.12 27.00 L -186.75 26.75 L -188.50 26.38 L -190.12 26.12 L -191.88 25.88 L -193.50 25.75 L -195.12 25.50 L -196.88 25.38 L -198.50 25.38 L -200.12 25.25 L -201.88 25.25 L -203.50 25.25 L -205.12 25.25 L -206.88 25.38 L -208.50 25.50 L -210.12 25.62 L -211.88 25.75 L -213.50 26.00 L -215.12 26.25 L -216.88 26.50 L -218.50 26.75 L -220.12 27.00 L -221.88 27.38 L -223.50 27.75 L -225.12 28.12 L -226.88 28.62 L -228.50 29.00 L -230.12 29.50 L -231.88 30.00 L -233.50 30.62 L -235.25 31.12 L -236.88 31.75 L -238.50 32.38 L -240.12 33.00 L -241.88 33.62 L -243.50 34.25 L -245.25 35.00 L -246.88 35.75 L -248.50 36.50 L -250.25 37.25 L -251.88 38.00 L -253.50 38.75 L -255.25 39.62 L -256.88 40.50 L -258.50 41.25 L -260.25 42.12 L -261.88 43.00 L -263.62 44.00 L -265.25 44.88 L -266.88 45.75 L -268.50 46.75 L -270.25 47.75 L -271.88 48.62 L -273.62 49.62 L -275.25 50.62 L -276.88 51.62 L -278.50 52.75 L -280.25 53.75 L -281.88 54.75 L -283.62 55.88 L -285.25 56.88 L -286.88 58.00 L -288.62 59.00 L -290.25 60.12 L -291.88 61.25 L -293.62 62.25 L -295.25 63.38 L -296.88 64.50 L -298.62 65.62 L -300.25 66.75 L -302.00 67.88 L -303.62 69.00 L -305.25 70.12 L -306.88 71.25 L -308.62 72.38 L -310.25 73.50 L -312.00 74.75 L -313.62 75.88 L -315.25 77.00 L -317.00 78.12 L -318.62 79.25 L -320.25 80.38 L -322.00 81.62 L -323.62 82.75 L -325.25 83.88 L -327.00 85.00 L -328.62 86.12 L -330.25 87.25 L -332.00 88.38 L -333.62 89.50 L -335.25 90.62 L -337.00 91.75 L -338.62 92.88 L -340.25 94.00 L -342.00 95.12 L -343.62 96.25 L -345.25 97.38 L -347.00 98.38 L -348.62 99.50 L -350.25 100.62 L -352.00 101.62 L -353.62 102.75 L -355.38 103.75 L -357.00 104.88 L -358.62 105.88 L -360.25 107.00 L -362.00 108.00 L -363.62 109.00 L -365.38 110.00 L -367.00 111.00 L -368.62 112.00 L -370.38 113.00 L -372.00 114.00 L -373.62 115.00 L -375.38 116.00 L -377.00 117.00 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob20av1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob20av1.gif deleted file mode 100755 index dcf44c290..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob20av1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob20av2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob20av2.eps deleted file mode 100755 index d65eaba60..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob20av2.eps +++ /dev/null @@ -1,1308 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 395 208 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Thu, Mar 7, 1996 11:55 AM -%%DocumentFonts: (atend) -%%EndComments -0 208 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -44.50 18.00 44.50 171.00 MacLine -376.50 18.00 376.50 171.00 MacLine -1 ps -1.00 ps -376.50 17.50 369.50 17.50 MacLine -44.50 17.50 51.50 17.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(30) 30.00 20.75 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 23.12 373.00 23.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 22.62 373.00 22.62 MacLine -44.50 22.62 48.00 22.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 28.25 373.00 28.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 27.75 373.00 27.75 MacLine -44.50 27.75 48.00 27.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 33.38 373.00 33.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 32.88 373.00 32.88 MacLine -44.50 32.88 48.00 32.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 38.50 373.00 38.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 38.00 373.00 38.00 MacLine -44.50 38.00 48.00 38.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 43.50 369.50 43.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 43.12 369.50 43.12 MacLine -44.50 43.12 51.50 43.12 MacLine -1 ps -10.00 (_Helvetica) 0 F -(25) 30.00 46.38 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 48.75 373.00 48.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 48.25 373.00 48.25 MacLine -44.50 48.25 48.00 48.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 53.88 373.00 53.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 53.38 373.00 53.38 MacLine -44.50 53.38 48.00 53.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 59.12 373.00 59.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 58.62 373.00 58.62 MacLine -44.50 58.62 48.00 58.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 64.25 373.00 64.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 63.75 373.00 63.75 MacLine -44.50 63.75 48.00 63.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 69.25 369.50 69.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 68.88 369.50 68.88 MacLine -44.50 68.88 51.50 68.88 MacLine -1 ps -10.00 (_Helvetica) 0 F -(20) 30.00 72.12 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 74.50 373.00 74.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 74.00 373.00 74.00 MacLine -44.50 74.00 48.00 74.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 79.62 373.00 79.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 79.12 373.00 79.12 MacLine -44.50 79.12 48.00 79.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 84.75 373.00 84.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 84.25 373.00 84.25 MacLine -44.50 84.25 48.00 84.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 89.88 373.00 89.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 89.38 373.00 89.38 MacLine -44.50 89.38 48.00 89.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 94.88 369.50 94.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 94.50 369.50 94.50 MacLine -44.50 94.50 51.50 94.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(15) 30.00 97.75 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 100.12 373.00 100.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 99.62 373.00 99.62 MacLine -44.50 99.62 48.00 99.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 105.25 373.00 105.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 104.75 373.00 104.75 MacLine -44.50 104.75 48.00 104.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 110.38 373.00 110.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 109.88 373.00 109.88 MacLine -44.50 109.88 48.00 109.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 115.50 373.00 115.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 115.00 373.00 115.00 MacLine -44.50 115.00 48.00 115.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 120.50 369.50 120.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 120.12 369.50 120.12 MacLine -44.50 120.12 51.50 120.12 MacLine -1 ps -10.00 (_Helvetica) 0 F -(10) 30.00 123.38 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 125.75 373.00 125.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 125.25 373.00 125.25 MacLine -44.50 125.25 48.00 125.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 130.88 373.00 130.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 130.38 373.00 130.38 MacLine -44.50 130.38 48.00 130.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 136.12 373.00 136.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 135.62 373.00 135.62 MacLine -44.50 135.62 48.00 135.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 141.25 373.00 141.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 140.75 373.00 140.75 MacLine -44.50 140.75 48.00 140.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 146.25 369.50 146.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 145.88 369.50 145.88 MacLine -44.50 145.88 51.50 145.88 MacLine -1 ps -10.00 (_Helvetica) 0 F -(5) 35.50 149.12 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 151.50 373.00 151.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 151.00 373.00 151.00 MacLine -44.50 151.00 48.00 151.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 156.62 373.00 156.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 156.12 373.00 156.12 MacLine -44.50 156.12 48.00 156.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 161.75 373.00 161.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 161.25 373.00 161.25 MacLine -44.50 161.25 48.00 161.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 166.88 373.00 166.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 166.38 373.00 166.38 MacLine -44.50 166.38 48.00 166.38 MacLine -1 ps -1.00 ps -376.50 171.50 369.50 171.50 MacLine -44.50 171.50 51.50 171.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 35.50 174.75 5.50 WS -12.00 (_Helvetica) 0 F -gsave 9.25 126.88 translate -90 rotate -(Position \(m\)) 0.00 0.00 63.88 WS -grestore -1.00 ps -44.50 171.50 376.50 171.50 MacLine -44.50 17.50 376.50 17.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -372.00 168.00 372.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -371.50 17.50 371.50 21.00 MacLine -371.50 171.50 371.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -365.38 168.00 365.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -364.88 17.50 364.88 21.00 MacLine -364.88 171.50 364.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -358.62 168.00 358.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -358.12 17.50 358.12 21.00 MacLine -358.12 171.50 358.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -352.00 168.00 352.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -351.50 17.50 351.50 21.00 MacLine -351.50 171.50 351.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -345.25 166.25 345.25 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -344.75 17.50 344.75 22.75 MacLine -344.75 171.50 344.75 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -338.62 168.00 338.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -338.12 17.50 338.12 21.00 MacLine -338.12 171.50 338.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -332.00 168.00 332.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -331.50 17.50 331.50 21.00 MacLine -331.50 171.50 331.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -325.25 168.00 325.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -324.75 17.50 324.75 21.00 MacLine -324.75 171.50 324.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -318.62 168.00 318.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -318.12 17.50 318.12 21.00 MacLine -318.12 171.50 318.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -311.75 164.50 311.75 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -311.38 17.50 311.38 24.50 MacLine -311.38 171.50 311.38 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(8) 309.12 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -305.25 168.00 305.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -304.75 17.50 304.75 21.00 MacLine -304.75 171.50 304.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -298.62 168.00 298.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -298.12 17.50 298.12 21.00 MacLine -298.12 171.50 298.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -291.88 168.00 291.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -291.38 17.50 291.38 21.00 MacLine -291.38 171.50 291.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -285.25 168.00 285.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -284.75 17.50 284.75 21.00 MacLine -284.75 171.50 284.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -278.62 166.25 278.62 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -278.12 17.50 278.12 22.75 MacLine -278.12 171.50 278.12 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -271.88 168.00 271.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -271.38 17.50 271.38 21.00 MacLine -271.38 171.50 271.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -265.25 168.00 265.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -264.75 17.50 264.75 21.00 MacLine -264.75 171.50 264.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -258.50 168.00 258.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -258.00 17.50 258.00 21.00 MacLine -258.00 171.50 258.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -251.88 168.00 251.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -251.38 17.50 251.38 21.00 MacLine -251.38 171.50 251.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -245.12 164.50 245.12 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -244.75 17.50 244.75 24.50 MacLine -244.75 171.50 244.75 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(6) 242.50 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -238.50 168.00 238.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -238.00 17.50 238.00 21.00 MacLine -238.00 171.50 238.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -231.88 168.00 231.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -231.38 17.50 231.38 21.00 MacLine -231.38 171.50 231.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -225.12 168.00 225.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -224.62 17.50 224.62 21.00 MacLine -224.62 171.50 224.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -218.50 168.00 218.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -218.00 17.50 218.00 21.00 MacLine -218.00 171.50 218.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -211.88 166.25 211.88 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -211.38 17.50 211.38 22.75 MacLine -211.38 171.50 211.38 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -205.12 168.00 205.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -204.62 17.50 204.62 21.00 MacLine -204.62 171.50 204.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -198.50 168.00 198.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -198.00 17.50 198.00 21.00 MacLine -198.00 171.50 198.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -191.88 168.00 191.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -191.38 17.50 191.38 21.00 MacLine -191.38 171.50 191.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -185.12 168.00 185.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -184.62 17.50 184.62 21.00 MacLine -184.62 171.50 184.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -178.38 164.50 178.38 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -178.00 17.50 178.00 24.50 MacLine -178.00 171.50 178.00 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 175.75 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -171.75 168.00 171.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -171.25 17.50 171.25 21.00 MacLine -171.25 171.50 171.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -165.12 168.00 165.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -164.62 17.50 164.62 21.00 MacLine -164.62 171.50 164.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -158.50 168.00 158.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -158.00 17.50 158.00 21.00 MacLine -158.00 171.50 158.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -151.75 168.00 151.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -151.25 17.50 151.25 21.00 MacLine -151.25 171.50 151.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -145.12 166.25 145.12 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -144.62 17.50 144.62 22.75 MacLine -144.62 171.50 144.62 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -138.38 168.00 138.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -137.88 17.50 137.88 21.00 MacLine -137.88 171.50 137.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -131.75 168.00 131.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -131.25 17.50 131.25 21.00 MacLine -131.25 171.50 131.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -125.12 168.00 125.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -124.62 17.50 124.62 21.00 MacLine -124.62 171.50 124.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -118.38 168.00 118.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -117.88 17.50 117.88 21.00 MacLine -117.88 171.50 117.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -111.62 164.50 111.62 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -111.25 17.50 111.25 24.50 MacLine -111.25 171.50 111.25 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 109.00 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -105.00 168.00 105.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -104.50 17.50 104.50 21.00 MacLine -104.50 171.50 104.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -98.38 168.00 98.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -97.88 17.50 97.88 21.00 MacLine -97.88 171.50 97.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -91.75 168.00 91.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -91.25 17.50 91.25 21.00 MacLine -91.25 171.50 91.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -85.00 168.00 85.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -84.50 17.50 84.50 21.00 MacLine -84.50 171.50 84.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -78.38 166.25 78.38 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -77.88 17.50 77.88 22.75 MacLine -77.88 171.50 77.88 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -71.75 168.00 71.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -71.25 17.50 71.25 21.00 MacLine -71.25 171.50 71.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -65.00 168.00 65.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -64.50 17.50 64.50 21.00 MacLine -64.50 171.50 64.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -58.38 168.00 58.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -57.88 17.50 57.88 21.00 MacLine -57.88 171.50 57.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -51.62 168.00 51.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -51.12 17.50 51.12 21.00 MacLine -51.12 171.50 51.12 168.00 MacLine -1 ps -1.00 ps -44.50 17.50 44.50 24.50 MacLine -44.50 171.50 44.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 42.25 184.25 5.50 WS -12.00 (_Helvetica) 0 F -(Time \(s\)) 189.00 205.25 44.00 WS -1 0 0 SetFore UseFore -2.00 ps -newpath 45.00 172.00 M -46.62 171.25 L -48.38 170.38 L -50.00 169.62 L -51.62 168.75 L -53.38 168.00 L -55.00 167.12 L -56.62 166.25 L -58.38 165.38 L -60.00 164.50 L -61.75 163.50 L -63.38 162.62 L -65.00 161.62 L -66.62 160.75 L -68.38 159.75 L -70.00 158.75 L -71.75 157.75 L -73.38 156.75 L -75.00 155.75 L -76.75 154.62 L -78.38 153.62 L -80.00 152.62 L -81.75 151.50 L -83.38 150.38 L -85.00 149.25 L -86.75 148.12 L -88.38 147.12 L -90.00 145.88 L -91.75 144.75 L -93.38 143.62 L -95.00 142.50 L -96.75 141.25 L -98.38 140.12 L -100.00 138.88 L -101.75 137.62 L -103.38 136.50 L -105.00 135.25 L -106.75 134.00 L -108.38 132.75 L -110.00 131.50 L -111.75 130.25 L -113.38 129.00 L -115.12 127.75 L -116.75 126.38 L -118.38 125.12 L -120.00 123.88 L -121.75 122.50 L -123.38 121.25 L -125.12 120.00 L -126.75 118.62 L -128.38 117.25 L -130.12 116.00 L -131.75 114.62 L -133.38 113.38 L -135.12 112.00 L -136.75 110.75 L -138.38 109.38 L -140.12 108.00 L -141.75 106.75 L -143.50 105.38 L -145.12 104.00 L -146.75 102.75 L -148.38 101.38 L -150.12 100.00 L -151.75 98.75 L -153.50 97.38 L -155.12 96.12 L -156.75 94.75 L -158.38 93.50 L -160.12 92.12 L -161.75 90.88 L -163.50 89.50 L -165.12 88.25 L -166.75 87.00 L -168.50 85.75 L -170.12 84.38 L -171.75 83.12 L -173.50 81.88 L -175.12 80.62 L -176.75 79.50 L -178.50 78.25 L -180.12 77.00 L -181.88 75.75 L -183.50 74.62 L -185.12 73.50 L -186.75 72.25 L -188.50 71.12 L -190.12 70.00 L -191.88 68.88 L -193.50 67.75 L -195.12 66.62 L -196.88 65.62 L -198.50 64.50 L -200.12 63.50 L -201.88 62.50 L -203.50 61.50 L -205.12 60.50 L -206.88 59.50 L -208.50 58.62 L -210.12 57.62 L -211.88 56.75 L -213.50 55.88 L -215.12 55.00 L -216.88 54.25 L -218.50 53.38 L -220.12 52.62 L -221.88 51.88 L -223.50 51.12 L -225.12 50.38 L -226.88 49.75 L -228.50 49.00 L -230.12 48.38 L -231.88 47.75 L -233.50 47.25 L -235.25 46.62 L -236.88 46.12 L -238.50 45.62 L -240.12 45.25 L -241.88 44.75 L -243.50 44.38 L -245.25 44.00 L -246.88 43.75 L -248.50 43.38 L -250.25 43.12 L -251.88 42.88 L -253.50 42.62 L -255.25 42.50 L -256.88 42.38 L -258.50 42.25 L -260.25 42.25 L -261.88 42.12 L -263.62 42.12 L -265.25 42.25 L -266.88 42.25 L -268.50 42.38 L -270.25 42.62 L -271.88 42.75 L -273.62 43.00 L -275.25 43.25 L -276.88 43.62 L -278.50 43.88 L -280.25 44.38 L -281.88 44.75 L -283.62 45.25 L -285.25 45.75 L -286.88 46.25 L -288.62 46.88 L -290.25 47.50 L -291.88 48.25 L -293.62 48.88 L -295.25 49.62 L -296.88 50.50 L -298.62 51.38 L -300.25 52.25 L -302.00 53.12 L -303.62 54.12 L -305.25 55.12 L -306.88 56.25 L -308.62 57.25 L -310.25 58.50 L -312.00 59.62 L -313.62 60.88 L -315.25 62.12 L -317.00 63.50 L -318.62 64.88 L -320.25 66.25 L -322.00 67.75 L -323.62 69.25 L -325.25 70.75 L -327.00 72.38 L -328.62 74.00 L -330.25 75.75 L -332.00 77.38 L -333.62 79.12 L -335.25 81.00 L -337.00 82.88 L -338.62 84.75 L -340.25 86.75 L -342.00 88.62 L -343.62 90.75 L -345.25 92.75 L -347.00 94.88 L -348.62 97.12 L -350.25 99.25 L -352.00 101.50 L -353.62 103.75 L -355.38 106.12 L -357.00 108.50 L -358.62 110.88 L -360.25 113.38 L -362.00 115.88 L -363.62 118.38 L -365.38 121.00 L -367.00 123.62 L -368.62 126.25 L -370.38 129.00 L -372.00 131.62 L -373.62 134.50 L -375.38 137.25 L -377.00 140.12 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob20av2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob20av2.gif deleted file mode 100755 index 164f15a46..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob20av2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob20av2.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob20av2.pdf deleted file mode 100644 index a0c2424c6..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob20av2.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob20av3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob20av3.eps deleted file mode 100755 index 9a92eadc8..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob20av3.eps +++ /dev/null @@ -1,1216 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 395 208 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Thu, Mar 7, 1996 1:23 PM -%%DocumentFonts: (atend) -%%EndComments -0 208 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -44.50 18.00 44.50 171.00 MacLine -376.50 18.00 376.50 171.00 MacLine -1 ps -1.00 ps -376.50 17.50 369.50 17.50 MacLine -44.50 17.50 51.50 17.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(1.0) 27.25 20.75 13.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 25.75 373.00 25.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 25.25 373.00 25.25 MacLine -44.50 25.25 48.00 25.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 33.38 373.00 33.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 32.88 373.00 32.88 MacLine -44.50 32.88 48.00 32.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 41.12 373.00 41.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 40.62 373.00 40.62 MacLine -44.50 40.62 48.00 40.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 48.62 369.50 48.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 48.25 369.50 48.25 MacLine -44.50 48.25 51.50 48.25 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0.8) 27.25 51.50 13.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 56.50 373.00 56.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 56.00 373.00 56.00 MacLine -44.50 56.00 48.00 56.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 64.25 373.00 64.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 63.75 373.00 63.75 MacLine -44.50 63.75 48.00 63.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 71.88 373.00 71.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 71.38 373.00 71.38 MacLine -44.50 71.38 48.00 71.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 79.50 369.50 79.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 79.12 369.50 79.12 MacLine -44.50 79.12 51.50 79.12 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0.6) 27.25 82.38 13.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 87.25 373.00 87.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 86.75 373.00 86.75 MacLine -44.50 86.75 48.00 86.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 95.00 373.00 95.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 94.50 373.00 94.50 MacLine -44.50 94.50 48.00 94.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 102.75 373.00 102.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 102.25 373.00 102.25 MacLine -44.50 102.25 48.00 102.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 110.25 369.50 110.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 109.88 369.50 109.88 MacLine -44.50 109.88 51.50 109.88 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0.4) 27.25 113.12 13.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 118.12 373.00 118.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 117.62 373.00 117.62 MacLine -44.50 117.62 48.00 117.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 125.75 373.00 125.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 125.25 373.00 125.25 MacLine -44.50 125.25 48.00 125.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 133.50 373.00 133.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 133.00 373.00 133.00 MacLine -44.50 133.00 48.00 133.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 141.12 369.50 141.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 140.75 369.50 140.75 MacLine -44.50 140.75 51.50 140.75 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0.2) 27.25 144.00 13.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 148.88 373.00 148.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 148.38 373.00 148.38 MacLine -44.50 148.38 48.00 148.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 156.62 373.00 156.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 156.12 373.00 156.12 MacLine -44.50 156.12 48.00 156.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 164.25 373.00 164.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 163.75 373.00 163.75 MacLine -44.50 163.75 48.00 163.75 MacLine -1 ps -1.00 ps -376.50 171.50 369.50 171.50 MacLine -44.50 171.50 51.50 171.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0.0) 27.25 174.75 13.75 WS -12.00 (_Helvetica) 0 F -gsave 9.25 126.88 translate -90 rotate -(Position \(m\)) 0.00 0.00 63.88 WS -grestore -1.00 ps -44.50 171.50 376.50 171.50 MacLine -44.50 17.50 376.50 17.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -372.00 168.00 372.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -371.50 17.50 371.50 21.00 MacLine -371.50 171.50 371.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -365.38 168.00 365.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -364.88 17.50 364.88 21.00 MacLine -364.88 171.50 364.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -358.62 168.00 358.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -358.12 17.50 358.12 21.00 MacLine -358.12 171.50 358.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -352.00 168.00 352.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -351.50 17.50 351.50 21.00 MacLine -351.50 171.50 351.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -345.25 166.25 345.25 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -344.75 17.50 344.75 22.75 MacLine -344.75 171.50 344.75 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -338.62 168.00 338.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -338.12 17.50 338.12 21.00 MacLine -338.12 171.50 338.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -332.00 168.00 332.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -331.50 17.50 331.50 21.00 MacLine -331.50 171.50 331.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -325.25 168.00 325.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -324.75 17.50 324.75 21.00 MacLine -324.75 171.50 324.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -318.62 168.00 318.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -318.12 17.50 318.12 21.00 MacLine -318.12 171.50 318.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -311.75 164.50 311.75 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -311.38 17.50 311.38 24.50 MacLine -311.38 171.50 311.38 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(8) 309.12 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -305.25 168.00 305.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -304.75 17.50 304.75 21.00 MacLine -304.75 171.50 304.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -298.62 168.00 298.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -298.12 17.50 298.12 21.00 MacLine -298.12 171.50 298.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -291.88 168.00 291.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -291.38 17.50 291.38 21.00 MacLine -291.38 171.50 291.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -285.25 168.00 285.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -284.75 17.50 284.75 21.00 MacLine -284.75 171.50 284.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -278.62 166.25 278.62 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -278.12 17.50 278.12 22.75 MacLine -278.12 171.50 278.12 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -271.88 168.00 271.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -271.38 17.50 271.38 21.00 MacLine -271.38 171.50 271.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -265.25 168.00 265.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -264.75 17.50 264.75 21.00 MacLine -264.75 171.50 264.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -258.50 168.00 258.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -258.00 17.50 258.00 21.00 MacLine -258.00 171.50 258.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -251.88 168.00 251.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -251.38 17.50 251.38 21.00 MacLine -251.38 171.50 251.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -245.12 164.50 245.12 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -244.75 17.50 244.75 24.50 MacLine -244.75 171.50 244.75 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(6) 242.50 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -238.50 168.00 238.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -238.00 17.50 238.00 21.00 MacLine -238.00 171.50 238.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -231.88 168.00 231.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -231.38 17.50 231.38 21.00 MacLine -231.38 171.50 231.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -225.12 168.00 225.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -224.62 17.50 224.62 21.00 MacLine -224.62 171.50 224.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -218.50 168.00 218.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -218.00 17.50 218.00 21.00 MacLine -218.00 171.50 218.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -211.88 166.25 211.88 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -211.38 17.50 211.38 22.75 MacLine -211.38 171.50 211.38 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -205.12 168.00 205.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -204.62 17.50 204.62 21.00 MacLine -204.62 171.50 204.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -198.50 168.00 198.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -198.00 17.50 198.00 21.00 MacLine -198.00 171.50 198.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -191.88 168.00 191.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -191.38 17.50 191.38 21.00 MacLine -191.38 171.50 191.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -185.12 168.00 185.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -184.62 17.50 184.62 21.00 MacLine -184.62 171.50 184.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -178.38 164.50 178.38 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -178.00 17.50 178.00 24.50 MacLine -178.00 171.50 178.00 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 175.75 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -171.75 168.00 171.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -171.25 17.50 171.25 21.00 MacLine -171.25 171.50 171.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -165.12 168.00 165.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -164.62 17.50 164.62 21.00 MacLine -164.62 171.50 164.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -158.50 168.00 158.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -158.00 17.50 158.00 21.00 MacLine -158.00 171.50 158.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -151.75 168.00 151.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -151.25 17.50 151.25 21.00 MacLine -151.25 171.50 151.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -145.12 166.25 145.12 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -144.62 17.50 144.62 22.75 MacLine -144.62 171.50 144.62 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -138.38 168.00 138.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -137.88 17.50 137.88 21.00 MacLine -137.88 171.50 137.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -131.75 168.00 131.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -131.25 17.50 131.25 21.00 MacLine -131.25 171.50 131.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -125.12 168.00 125.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -124.62 17.50 124.62 21.00 MacLine -124.62 171.50 124.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -118.38 168.00 118.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -117.88 17.50 117.88 21.00 MacLine -117.88 171.50 117.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -111.62 164.50 111.62 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -111.25 17.50 111.25 24.50 MacLine -111.25 171.50 111.25 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 109.00 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -105.00 168.00 105.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -104.50 17.50 104.50 21.00 MacLine -104.50 171.50 104.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -98.38 168.00 98.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -97.88 17.50 97.88 21.00 MacLine -97.88 171.50 97.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -91.75 168.00 91.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -91.25 17.50 91.25 21.00 MacLine -91.25 171.50 91.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -85.00 168.00 85.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -84.50 17.50 84.50 21.00 MacLine -84.50 171.50 84.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -78.38 166.25 78.38 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -77.88 17.50 77.88 22.75 MacLine -77.88 171.50 77.88 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -71.75 168.00 71.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -71.25 17.50 71.25 21.00 MacLine -71.25 171.50 71.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -65.00 168.00 65.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -64.50 17.50 64.50 21.00 MacLine -64.50 171.50 64.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -58.38 168.00 58.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -57.88 17.50 57.88 21.00 MacLine -57.88 171.50 57.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -51.62 168.00 51.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -51.12 17.50 51.12 21.00 MacLine -51.12 171.50 51.12 168.00 MacLine -1 ps -1.00 ps -44.50 17.50 44.50 24.50 MacLine -44.50 171.50 44.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 42.25 184.25 5.50 WS -12.00 (_Helvetica) 0 F -(Time \(s\)) 189.00 205.25 44.00 WS -1 0 0 SetFore UseFore -2.00 ps -newpath 45.00 172.00 M -46.62 171.50 L -48.38 171.00 L -50.00 170.38 L -51.62 169.88 L -53.38 169.25 L -55.00 168.75 L -56.62 168.12 L -58.38 167.62 L -60.00 167.00 L -61.75 166.50 L -63.38 165.88 L -65.00 165.25 L -66.62 164.75 L -68.38 164.12 L -70.00 163.50 L -71.75 162.88 L -73.38 162.25 L -75.00 161.62 L -76.75 161.00 L -78.38 160.38 L -80.00 159.75 L -81.75 159.12 L -83.38 158.38 L -85.00 157.75 L -86.75 157.12 L -88.38 156.38 L -90.00 155.75 L -91.75 155.00 L -93.38 154.38 L -95.00 153.62 L -96.75 153.00 L -98.38 152.25 L -100.00 151.50 L -101.75 150.75 L -103.38 150.00 L -105.00 149.25 L -106.75 148.62 L -108.38 147.88 L -110.00 147.00 L -111.75 146.25 L -113.38 145.50 L -115.12 144.75 L -116.75 144.00 L -118.38 143.12 L -120.00 142.38 L -121.75 141.62 L -123.38 140.75 L -125.12 140.00 L -126.75 139.12 L -128.38 138.25 L -130.12 137.50 L -131.75 136.62 L -133.38 135.75 L -135.12 135.00 L -136.75 134.12 L -138.38 133.25 L -140.12 132.38 L -141.75 131.50 L -143.50 130.62 L -145.12 129.75 L -146.75 128.75 L -148.38 127.88 L -150.12 127.00 L -151.75 126.12 L -153.50 125.12 L -155.12 124.25 L -156.75 123.25 L -158.38 122.38 L -160.12 121.38 L -161.75 120.50 L -163.50 119.50 L -165.12 118.62 L -166.75 117.62 L -168.50 116.62 L -170.12 115.75 L -171.75 114.75 L -173.50 113.75 L -175.12 112.75 L -176.75 111.75 L -178.50 110.75 L -180.12 109.75 L -181.88 108.75 L -183.50 107.75 L -185.12 106.75 L -186.75 105.75 L -188.50 104.75 L -190.12 103.75 L -191.88 102.75 L -193.50 101.62 L -195.12 100.62 L -196.88 99.62 L -198.50 98.62 L -200.12 97.50 L -201.88 96.50 L -203.50 95.50 L -205.12 94.38 L -206.88 93.38 L -208.50 92.38 L -210.12 91.25 L -211.88 90.25 L -213.50 89.25 L -215.12 88.12 L -216.88 87.12 L -218.50 86.12 L -220.12 85.00 L -221.88 84.00 L -223.50 83.00 L -225.12 81.88 L -226.88 80.88 L -228.50 79.88 L -230.12 78.88 L -231.88 77.88 L -233.50 76.88 L -235.25 75.75 L -236.88 74.75 L -238.50 73.88 L -240.12 72.88 L -241.88 71.88 L -243.50 70.88 L -245.25 69.88 L -246.88 68.88 L -248.50 68.00 L -250.25 67.00 L -251.88 66.12 L -253.50 65.12 L -255.25 64.25 L -256.88 63.25 L -258.50 62.38 L -260.25 61.50 L -261.88 60.62 L -263.62 59.88 L -265.25 59.00 L -266.88 58.12 L -268.50 57.38 L -270.25 56.62 L -271.88 55.75 L -273.62 55.00 L -275.25 54.38 L -276.88 53.62 L -278.50 52.88 L -280.25 52.25 L -281.88 51.62 L -283.62 51.00 L -285.25 50.38 L -286.88 49.88 L -288.62 49.25 L -290.25 48.75 L -291.88 48.38 L -293.62 47.88 L -295.25 47.50 L -296.88 47.12 L -298.62 46.75 L -300.25 46.38 L -302.00 46.12 L -303.62 45.88 L -305.25 45.75 L -306.88 45.50 L -308.62 45.38 L -310.25 45.38 L -312.00 45.38 L -313.62 45.38 L -315.25 45.50 L -317.00 45.50 L -318.62 45.75 L -320.25 46.00 L -322.00 46.25 L -323.62 46.62 L -325.25 47.00 L -327.00 47.50 L -328.62 48.00 L -330.25 48.62 L -332.00 49.25 L -333.62 50.00 L -335.25 50.75 L -337.00 51.62 L -338.62 52.62 L -340.25 53.62 L -342.00 54.75 L -343.62 55.88 L -345.25 57.12 L -347.00 58.50 L -348.62 60.00 L -350.25 61.50 L -352.00 63.12 L -353.62 64.88 L -355.38 66.75 L -357.00 68.75 L -358.62 70.75 L -360.25 72.88 L -362.00 75.12 L -363.62 77.62 L -365.38 80.12 L -367.00 82.75 L -368.62 85.50 L -370.38 88.38 L -372.00 91.38 L -373.62 94.62 L -375.38 97.88 L -377.00 101.38 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob20av3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob20av3.gif deleted file mode 100755 index d455ce205..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob20av3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob24av1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob24av1.eps deleted file mode 100755 index 09c7cbfaf..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob24av1.eps +++ /dev/null @@ -1,899 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 395 208 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Mon, Mar 11, 1996 3:57 PM -%%DocumentFonts: (atend) -%%EndComments -0 208 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -44.50 18.00 44.50 171.00 MacLine -376.50 18.00 376.50 171.00 MacLine -1 ps -1.00 ps -376.50 17.50 373.00 17.50 MacLine -44.50 17.50 48.00 17.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 27.62 373.00 27.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 27.12 373.00 27.12 MacLine -44.50 27.12 48.00 27.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 37.12 369.50 37.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 36.75 369.50 36.75 MacLine -44.50 36.75 51.50 36.75 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(4) 35.50 40.00 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 46.88 373.00 46.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 46.38 373.00 46.38 MacLine -44.50 46.38 48.00 46.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 56.50 373.00 56.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 56.00 373.00 56.00 MacLine -44.50 56.00 48.00 56.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 66.12 373.00 66.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 65.62 373.00 65.62 MacLine -44.50 65.62 48.00 65.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 75.62 369.50 75.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 75.25 369.50 75.25 MacLine -44.50 75.25 51.50 75.25 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 35.50 78.50 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 85.38 373.00 85.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 84.88 373.00 84.88 MacLine -44.50 84.88 48.00 84.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 95.00 373.00 95.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 94.50 373.00 94.50 MacLine -44.50 94.50 48.00 94.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 104.62 373.00 104.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 104.12 373.00 104.12 MacLine -44.50 104.12 48.00 104.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 114.12 369.50 114.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 113.75 369.50 113.75 MacLine -44.50 113.75 51.50 113.75 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 35.50 117.00 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 123.88 373.00 123.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 123.38 373.00 123.38 MacLine -44.50 123.38 48.00 123.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 133.50 373.00 133.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 133.00 373.00 133.00 MacLine -44.50 133.00 48.00 133.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 143.12 373.00 143.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 142.62 373.00 142.62 MacLine -44.50 142.62 48.00 142.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 152.62 369.50 152.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 152.25 369.50 152.25 MacLine -44.50 152.25 51.50 152.25 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-2) 32.12 155.50 8.88 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 162.38 373.00 162.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 161.88 373.00 161.88 MacLine -44.50 161.88 48.00 161.88 MacLine -1 ps -1.00 ps -376.50 171.50 373.00 171.50 MacLine -44.50 171.50 48.00 171.50 MacLine -1 ps -gsave -[ 2 2 ] sd -gsave 2.00 ps 46.00 114.25 376.00 114.25 0 CapLine grestore -grestore -12.00 (_Helvetica) 0 F -gsave 9.25 131.25 translate -90 rotate -(Velocity \(m/s\)) 0.00 0.00 72.62 WS -grestore -1.00 ps -44.50 171.50 376.50 171.50 MacLine -44.50 17.50 376.50 17.50 MacLine -1 ps -1.00 ps -376.50 17.50 376.50 24.50 MacLine -376.50 171.50 376.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(40) 371.50 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -368.75 168.00 368.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -368.25 17.50 368.25 21.00 MacLine -368.25 171.50 368.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -360.38 168.00 360.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -359.88 17.50 359.88 21.00 MacLine -359.88 171.50 359.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -352.12 168.00 352.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -351.62 17.50 351.62 21.00 MacLine -351.62 171.50 351.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -343.75 168.00 343.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -343.25 17.50 343.25 21.00 MacLine -343.25 171.50 343.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -335.50 166.25 335.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -335.00 17.50 335.00 22.75 MacLine -335.00 171.50 335.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -327.25 168.00 327.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -326.75 17.50 326.75 21.00 MacLine -326.75 171.50 326.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -318.88 168.00 318.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -318.38 17.50 318.38 21.00 MacLine -318.38 171.50 318.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -310.62 168.00 310.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -310.12 17.50 310.12 21.00 MacLine -310.12 171.50 310.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -302.25 168.00 302.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -301.75 17.50 301.75 21.00 MacLine -301.75 171.50 301.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -293.88 164.50 293.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -293.50 17.50 293.50 24.50 MacLine -293.50 171.50 293.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(30) 288.50 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -285.75 168.00 285.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -285.25 17.50 285.25 21.00 MacLine -285.25 171.50 285.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -277.38 168.00 277.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -276.88 17.50 276.88 21.00 MacLine -276.88 171.50 276.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -269.12 168.00 269.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -268.62 17.50 268.62 21.00 MacLine -268.62 171.50 268.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -260.75 168.00 260.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -260.25 17.50 260.25 21.00 MacLine -260.25 171.50 260.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -252.50 166.25 252.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -252.00 17.50 252.00 22.75 MacLine -252.00 171.50 252.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -244.25 168.00 244.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -243.75 17.50 243.75 21.00 MacLine -243.75 171.50 243.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -235.88 168.00 235.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -235.38 17.50 235.38 21.00 MacLine -235.38 171.50 235.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -227.62 168.00 227.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -227.12 17.50 227.12 21.00 MacLine -227.12 171.50 227.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -219.25 168.00 219.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -218.75 17.50 218.75 21.00 MacLine -218.75 171.50 218.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -210.88 164.50 210.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -210.50 17.50 210.50 24.50 MacLine -210.50 171.50 210.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(20) 205.50 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -202.75 168.00 202.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -202.25 17.50 202.25 21.00 MacLine -202.25 171.50 202.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -194.38 168.00 194.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -193.88 17.50 193.88 21.00 MacLine -193.88 171.50 193.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -186.12 168.00 186.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -185.62 17.50 185.62 21.00 MacLine -185.62 171.50 185.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -177.75 168.00 177.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -177.25 17.50 177.25 21.00 MacLine -177.25 171.50 177.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -169.50 166.25 169.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -169.00 17.50 169.00 22.75 MacLine -169.00 171.50 169.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -161.25 168.00 161.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -160.75 17.50 160.75 21.00 MacLine -160.75 171.50 160.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -152.88 168.00 152.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -152.38 17.50 152.38 21.00 MacLine -152.38 171.50 152.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -144.62 168.00 144.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -144.12 17.50 144.12 21.00 MacLine -144.12 171.50 144.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -136.25 168.00 136.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -135.75 17.50 135.75 21.00 MacLine -135.75 171.50 135.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -127.88 164.50 127.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -127.50 17.50 127.50 24.50 MacLine -127.50 171.50 127.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(10) 122.50 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -119.75 168.00 119.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -119.25 17.50 119.25 21.00 MacLine -119.25 171.50 119.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -111.38 168.00 111.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -110.88 17.50 110.88 21.00 MacLine -110.88 171.50 110.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -103.12 168.00 103.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -102.62 17.50 102.62 21.00 MacLine -102.62 171.50 102.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -94.75 168.00 94.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -94.25 17.50 94.25 21.00 MacLine -94.25 171.50 94.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -86.50 166.25 86.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -86.00 17.50 86.00 22.75 MacLine -86.00 171.50 86.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -78.25 168.00 78.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -77.75 17.50 77.75 21.00 MacLine -77.75 171.50 77.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -69.88 168.00 69.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -69.38 17.50 69.38 21.00 MacLine -69.38 171.50 69.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -61.62 168.00 61.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -61.12 17.50 61.12 21.00 MacLine -61.12 171.50 61.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.25 168.00 53.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -52.75 17.50 52.75 21.00 MacLine -52.75 171.50 52.75 168.00 MacLine -1 ps -1.00 ps -44.50 17.50 44.50 24.50 MacLine -44.50 171.50 44.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 42.25 184.25 5.50 WS -12.00 (_Helvetica) 0 F -(Time \(s\)) 189.00 205.25 44.00 WS -1 0 0 SetFore UseFore -2.00 ps -newpath 45.00 18.00 M -128.00 152.75 L -211.00 172.00 L -294.00 37.25 L -377.00 75.75 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob24av1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob24av1.gif deleted file mode 100755 index b4bec4e2f..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob24av1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob24av2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob24av2.eps deleted file mode 100755 index ab3f2b548..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob24av2.eps +++ /dev/null @@ -1,957 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 395 208 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Mon, Mar 11, 1996 3:59 PM -%%DocumentFonts: (atend) -%%EndComments -0 208 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -44.50 18.00 44.50 171.00 MacLine -376.50 18.00 376.50 171.00 MacLine -1 ps -1.00 ps -376.50 17.50 373.00 17.50 MacLine -44.50 17.50 48.00 17.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 25.00 373.00 25.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 24.50 373.00 24.50 MacLine -44.50 24.50 48.00 24.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 31.88 369.50 31.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 31.50 369.50 31.50 MacLine -44.50 31.50 51.50 31.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(6) 35.50 34.75 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 39.00 373.00 39.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 38.50 373.00 38.50 MacLine -44.50 38.50 48.00 38.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 46.00 373.00 46.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 45.50 373.00 45.50 MacLine -44.50 45.50 48.00 45.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 53.00 373.00 53.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 52.50 373.00 52.50 MacLine -44.50 52.50 48.00 52.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 59.88 369.50 59.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 59.50 369.50 59.50 MacLine -44.50 59.50 51.50 59.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 35.50 62.75 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 67.00 373.00 67.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 66.50 373.00 66.50 MacLine -44.50 66.50 48.00 66.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 74.00 373.00 74.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 73.50 373.00 73.50 MacLine -44.50 73.50 48.00 73.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 81.00 373.00 81.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 80.50 373.00 80.50 MacLine -44.50 80.50 48.00 80.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 87.88 369.50 87.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 87.50 369.50 87.50 MacLine -44.50 87.50 51.50 87.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 35.50 90.75 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 95.00 373.00 95.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 94.50 373.00 94.50 MacLine -44.50 94.50 48.00 94.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 102.00 373.00 102.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 101.50 373.00 101.50 MacLine -44.50 101.50 48.00 101.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 109.00 373.00 109.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 108.50 373.00 108.50 MacLine -44.50 108.50 48.00 108.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 115.88 369.50 115.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 115.50 369.50 115.50 MacLine -44.50 115.50 51.50 115.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 35.50 118.75 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 123.00 373.00 123.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 122.50 373.00 122.50 MacLine -44.50 122.50 48.00 122.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 130.00 373.00 130.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 129.50 373.00 129.50 MacLine -44.50 129.50 48.00 129.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 137.00 373.00 137.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 136.50 373.00 136.50 MacLine -44.50 136.50 48.00 136.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 143.88 369.50 143.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 143.50 369.50 143.50 MacLine -44.50 143.50 51.50 143.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-2) 32.12 146.75 8.88 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 151.00 373.00 151.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 150.50 373.00 150.50 MacLine -44.50 150.50 48.00 150.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 158.00 373.00 158.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 157.50 373.00 157.50 MacLine -44.50 157.50 48.00 157.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 165.00 373.00 165.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 164.50 373.00 164.50 MacLine -44.50 164.50 48.00 164.50 MacLine -1 ps -1.00 ps -376.50 171.50 369.50 171.50 MacLine -44.50 171.50 51.50 171.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-4) 32.12 174.75 8.88 WS -gsave -[ 2 2 ] sd -gsave 2.00 ps 46.00 116.00 376.00 116.00 0 CapLine grestore -grestore -12.00 (_Helvetica) 0 F -gsave 9.25 131.25 translate -90 rotate -(Velocity \(m/s\)) 0.00 0.00 72.62 WS -grestore -1.00 ps -44.50 171.50 376.50 171.50 MacLine -44.50 17.50 376.50 17.50 MacLine -1 ps -1.00 ps -376.50 17.50 376.50 24.50 MacLine -376.50 171.50 376.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(40) 371.50 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -368.75 168.00 368.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -368.25 17.50 368.25 21.00 MacLine -368.25 171.50 368.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -360.38 168.00 360.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -359.88 17.50 359.88 21.00 MacLine -359.88 171.50 359.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -352.12 168.00 352.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -351.62 17.50 351.62 21.00 MacLine -351.62 171.50 351.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -343.75 168.00 343.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -343.25 17.50 343.25 21.00 MacLine -343.25 171.50 343.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -335.50 166.25 335.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -335.00 17.50 335.00 22.75 MacLine -335.00 171.50 335.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -327.25 168.00 327.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -326.75 17.50 326.75 21.00 MacLine -326.75 171.50 326.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -318.88 168.00 318.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -318.38 17.50 318.38 21.00 MacLine -318.38 171.50 318.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -310.62 168.00 310.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -310.12 17.50 310.12 21.00 MacLine -310.12 171.50 310.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -302.25 168.00 302.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -301.75 17.50 301.75 21.00 MacLine -301.75 171.50 301.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -293.88 164.50 293.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -293.50 17.50 293.50 24.50 MacLine -293.50 171.50 293.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(30) 288.50 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -285.75 168.00 285.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -285.25 17.50 285.25 21.00 MacLine -285.25 171.50 285.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -277.38 168.00 277.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -276.88 17.50 276.88 21.00 MacLine -276.88 171.50 276.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -269.12 168.00 269.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -268.62 17.50 268.62 21.00 MacLine -268.62 171.50 268.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -260.75 168.00 260.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -260.25 17.50 260.25 21.00 MacLine -260.25 171.50 260.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -252.50 166.25 252.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -252.00 17.50 252.00 22.75 MacLine -252.00 171.50 252.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -244.25 168.00 244.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -243.75 17.50 243.75 21.00 MacLine -243.75 171.50 243.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -235.88 168.00 235.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -235.38 17.50 235.38 21.00 MacLine -235.38 171.50 235.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -227.62 168.00 227.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -227.12 17.50 227.12 21.00 MacLine -227.12 171.50 227.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -219.25 168.00 219.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -218.75 17.50 218.75 21.00 MacLine -218.75 171.50 218.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -210.88 164.50 210.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -210.50 17.50 210.50 24.50 MacLine -210.50 171.50 210.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(20) 205.50 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -202.75 168.00 202.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -202.25 17.50 202.25 21.00 MacLine -202.25 171.50 202.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -194.38 168.00 194.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -193.88 17.50 193.88 21.00 MacLine -193.88 171.50 193.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -186.12 168.00 186.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -185.62 17.50 185.62 21.00 MacLine -185.62 171.50 185.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -177.75 168.00 177.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -177.25 17.50 177.25 21.00 MacLine -177.25 171.50 177.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -169.50 166.25 169.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -169.00 17.50 169.00 22.75 MacLine -169.00 171.50 169.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -161.25 168.00 161.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -160.75 17.50 160.75 21.00 MacLine -160.75 171.50 160.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -152.88 168.00 152.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -152.38 17.50 152.38 21.00 MacLine -152.38 171.50 152.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -144.62 168.00 144.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -144.12 17.50 144.12 21.00 MacLine -144.12 171.50 144.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -136.25 168.00 136.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -135.75 17.50 135.75 21.00 MacLine -135.75 171.50 135.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -127.88 164.50 127.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -127.50 17.50 127.50 24.50 MacLine -127.50 171.50 127.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(10) 122.50 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -119.75 168.00 119.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -119.25 17.50 119.25 21.00 MacLine -119.25 171.50 119.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -111.38 168.00 111.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -110.88 17.50 110.88 21.00 MacLine -110.88 171.50 110.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -103.12 168.00 103.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -102.62 17.50 102.62 21.00 MacLine -102.62 171.50 102.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -94.75 168.00 94.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -94.25 17.50 94.25 21.00 MacLine -94.25 171.50 94.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -86.50 166.25 86.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -86.00 17.50 86.00 22.75 MacLine -86.00 171.50 86.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -78.25 168.00 78.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -77.75 17.50 77.75 21.00 MacLine -77.75 171.50 77.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -69.88 168.00 69.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -69.38 17.50 69.38 21.00 MacLine -69.38 171.50 69.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -61.62 168.00 61.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -61.12 17.50 61.12 21.00 MacLine -61.12 171.50 61.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.25 168.00 53.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -52.75 17.50 52.75 21.00 MacLine -52.75 171.50 52.75 168.00 MacLine -1 ps -1.00 ps -44.50 17.50 44.50 24.50 MacLine -44.50 171.50 44.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 42.25 184.25 5.50 WS -12.00 (_Helvetica) 0 F -(Time \(s\)) 189.00 205.25 44.00 WS -1 0 0 SetFore UseFore -2.00 ps -newpath 45.00 172.00 M -128.00 46.00 L -211.00 18.00 L -294.00 60.00 L -377.00 158.00 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob24av2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob24av2.gif deleted file mode 100755 index c37a6451c..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob24av2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob24av3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob24av3.eps deleted file mode 100755 index 44ca5b771..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob24av3.eps +++ /dev/null @@ -1,937 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 395 208 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Mon, Mar 11, 1996 4:01 PM -%%DocumentFonts: (atend) -%%EndComments -0 208 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -44.50 18.00 44.50 171.00 MacLine -376.50 18.00 376.50 171.00 MacLine -1 ps -1.00 ps -376.50 17.50 373.00 17.50 MacLine -44.50 17.50 48.00 17.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 25.75 373.00 25.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 25.25 373.00 25.25 MacLine -44.50 25.25 48.00 25.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 33.25 369.50 33.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 32.88 369.50 32.88 MacLine -44.50 32.88 51.50 32.88 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(6) 35.50 36.12 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 41.12 373.00 41.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 40.62 373.00 40.62 MacLine -44.50 40.62 48.00 40.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 48.75 373.00 48.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 48.25 373.00 48.25 MacLine -44.50 48.25 48.00 48.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 56.50 373.00 56.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 56.00 373.00 56.00 MacLine -44.50 56.00 48.00 56.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 64.12 369.50 64.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 63.75 369.50 63.75 MacLine -44.50 63.75 51.50 63.75 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 35.50 67.00 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 71.88 373.00 71.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 71.38 373.00 71.38 MacLine -44.50 71.38 48.00 71.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 79.62 373.00 79.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 79.12 373.00 79.12 MacLine -44.50 79.12 48.00 79.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 87.25 373.00 87.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 86.75 373.00 86.75 MacLine -44.50 86.75 48.00 86.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 94.88 369.50 94.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 94.50 369.50 94.50 MacLine -44.50 94.50 51.50 94.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 35.50 97.75 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 102.75 373.00 102.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 102.25 373.00 102.25 MacLine -44.50 102.25 48.00 102.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 110.38 373.00 110.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 109.88 373.00 109.88 MacLine -44.50 109.88 48.00 109.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 118.12 373.00 118.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 117.62 373.00 117.62 MacLine -44.50 117.62 48.00 117.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 125.62 369.50 125.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 125.25 369.50 125.25 MacLine -44.50 125.25 51.50 125.25 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 35.50 128.50 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 133.50 373.00 133.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 133.00 373.00 133.00 MacLine -44.50 133.00 48.00 133.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 141.25 373.00 141.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 140.75 373.00 140.75 MacLine -44.50 140.75 48.00 140.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 148.88 373.00 148.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 148.38 373.00 148.38 MacLine -44.50 148.38 48.00 148.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 156.50 369.50 156.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 156.12 369.50 156.12 MacLine -44.50 156.12 51.50 156.12 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-2) 32.12 159.38 8.88 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 164.25 373.00 164.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 163.75 373.00 163.75 MacLine -44.50 163.75 48.00 163.75 MacLine -1 ps -1.00 ps -376.50 171.50 373.00 171.50 MacLine -44.50 171.50 48.00 171.50 MacLine -1 ps -gsave -[ 2 2 ] sd -gsave 2.00 ps 46.00 125.75 376.00 125.75 0 CapLine grestore -grestore -12.00 (_Helvetica) 0 F -gsave 9.25 131.25 translate -90 rotate -(Velocity \(m/s\)) 0.00 0.00 72.62 WS -grestore -1.00 ps -44.50 171.50 376.50 171.50 MacLine -44.50 17.50 376.50 17.50 MacLine -1 ps -1.00 ps -376.50 17.50 376.50 24.50 MacLine -376.50 171.50 376.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(40) 371.50 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -368.75 168.00 368.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -368.25 17.50 368.25 21.00 MacLine -368.25 171.50 368.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -360.38 168.00 360.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -359.88 17.50 359.88 21.00 MacLine -359.88 171.50 359.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -352.12 168.00 352.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -351.62 17.50 351.62 21.00 MacLine -351.62 171.50 351.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -343.75 168.00 343.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -343.25 17.50 343.25 21.00 MacLine -343.25 171.50 343.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -335.50 166.25 335.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -335.00 17.50 335.00 22.75 MacLine -335.00 171.50 335.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -327.25 168.00 327.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -326.75 17.50 326.75 21.00 MacLine -326.75 171.50 326.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -318.88 168.00 318.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -318.38 17.50 318.38 21.00 MacLine -318.38 171.50 318.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -310.62 168.00 310.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -310.12 17.50 310.12 21.00 MacLine -310.12 171.50 310.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -302.25 168.00 302.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -301.75 17.50 301.75 21.00 MacLine -301.75 171.50 301.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -293.88 164.50 293.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -293.50 17.50 293.50 24.50 MacLine -293.50 171.50 293.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(30) 288.50 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -285.75 168.00 285.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -285.25 17.50 285.25 21.00 MacLine -285.25 171.50 285.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -277.38 168.00 277.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -276.88 17.50 276.88 21.00 MacLine -276.88 171.50 276.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -269.12 168.00 269.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -268.62 17.50 268.62 21.00 MacLine -268.62 171.50 268.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -260.75 168.00 260.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -260.25 17.50 260.25 21.00 MacLine -260.25 171.50 260.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -252.50 166.25 252.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -252.00 17.50 252.00 22.75 MacLine -252.00 171.50 252.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -244.25 168.00 244.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -243.75 17.50 243.75 21.00 MacLine -243.75 171.50 243.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -235.88 168.00 235.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -235.38 17.50 235.38 21.00 MacLine -235.38 171.50 235.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -227.62 168.00 227.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -227.12 17.50 227.12 21.00 MacLine -227.12 171.50 227.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -219.25 168.00 219.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -218.75 17.50 218.75 21.00 MacLine -218.75 171.50 218.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -210.88 164.50 210.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -210.50 17.50 210.50 24.50 MacLine -210.50 171.50 210.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(20) 205.50 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -202.75 168.00 202.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -202.25 17.50 202.25 21.00 MacLine -202.25 171.50 202.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -194.38 168.00 194.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -193.88 17.50 193.88 21.00 MacLine -193.88 171.50 193.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -186.12 168.00 186.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -185.62 17.50 185.62 21.00 MacLine -185.62 171.50 185.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -177.75 168.00 177.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -177.25 17.50 177.25 21.00 MacLine -177.25 171.50 177.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -169.50 166.25 169.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -169.00 17.50 169.00 22.75 MacLine -169.00 171.50 169.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -161.25 168.00 161.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -160.75 17.50 160.75 21.00 MacLine -160.75 171.50 160.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -152.88 168.00 152.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -152.38 17.50 152.38 21.00 MacLine -152.38 171.50 152.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -144.62 168.00 144.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -144.12 17.50 144.12 21.00 MacLine -144.12 171.50 144.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -136.25 168.00 136.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -135.75 17.50 135.75 21.00 MacLine -135.75 171.50 135.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -127.88 164.50 127.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -127.50 17.50 127.50 24.50 MacLine -127.50 171.50 127.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(10) 122.50 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -119.75 168.00 119.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -119.25 17.50 119.25 21.00 MacLine -119.25 171.50 119.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -111.38 168.00 111.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -110.88 17.50 110.88 21.00 MacLine -110.88 171.50 110.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -103.12 168.00 103.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -102.62 17.50 102.62 21.00 MacLine -102.62 171.50 102.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -94.75 168.00 94.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -94.25 17.50 94.25 21.00 MacLine -94.25 171.50 94.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -86.50 166.25 86.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -86.00 17.50 86.00 22.75 MacLine -86.00 171.50 86.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -78.25 168.00 78.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -77.75 17.50 77.75 21.00 MacLine -77.75 171.50 77.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -69.88 168.00 69.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -69.38 17.50 69.38 21.00 MacLine -69.38 171.50 69.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -61.62 168.00 61.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -61.12 17.50 61.12 21.00 MacLine -61.12 171.50 61.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.25 168.00 53.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -52.75 17.50 52.75 21.00 MacLine -52.75 171.50 52.75 168.00 MacLine -1 ps -1.00 ps -44.50 17.50 44.50 24.50 MacLine -44.50 171.50 44.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 42.25 184.25 5.50 WS -12.00 (_Helvetica) 0 F -(Time \(s\)) 189.00 205.25 44.00 WS -1 0 0 SetFore UseFore -2.00 ps -newpath 45.00 95.00 M -128.00 48.75 L -211.00 172.00 L -294.00 125.75 L -377.00 18.00 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob24av3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob24av3.gif deleted file mode 100755 index 4c0682325..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob24av3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob24av4.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob24av4.eps deleted file mode 100755 index cfa9c8df3..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob24av4.eps +++ /dev/null @@ -1,937 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 395 208 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Mon, Mar 11, 1996 4:02 PM -%%DocumentFonts: (atend) -%%EndComments -0 208 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -44.50 18.00 44.50 171.00 MacLine -376.50 18.00 376.50 171.00 MacLine -1 ps -1.00 ps -376.50 17.50 373.00 17.50 MacLine -44.50 17.50 48.00 17.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 25.75 373.00 25.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 25.25 373.00 25.25 MacLine -44.50 25.25 48.00 25.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 33.25 369.50 33.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 32.88 369.50 32.88 MacLine -44.50 32.88 51.50 32.88 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(6) 35.50 36.12 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 41.12 373.00 41.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 40.62 373.00 40.62 MacLine -44.50 40.62 48.00 40.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 48.75 373.00 48.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 48.25 373.00 48.25 MacLine -44.50 48.25 48.00 48.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 56.50 373.00 56.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 56.00 373.00 56.00 MacLine -44.50 56.00 48.00 56.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 64.12 369.50 64.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 63.75 369.50 63.75 MacLine -44.50 63.75 51.50 63.75 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 35.50 67.00 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 71.88 373.00 71.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 71.38 373.00 71.38 MacLine -44.50 71.38 48.00 71.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 79.62 373.00 79.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 79.12 373.00 79.12 MacLine -44.50 79.12 48.00 79.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 87.25 373.00 87.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 86.75 373.00 86.75 MacLine -44.50 86.75 48.00 86.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 94.88 369.50 94.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 94.50 369.50 94.50 MacLine -44.50 94.50 51.50 94.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 35.50 97.75 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 102.75 373.00 102.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 102.25 373.00 102.25 MacLine -44.50 102.25 48.00 102.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 110.38 373.00 110.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 109.88 373.00 109.88 MacLine -44.50 109.88 48.00 109.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 118.12 373.00 118.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 117.62 373.00 117.62 MacLine -44.50 117.62 48.00 117.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 125.62 369.50 125.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 125.25 369.50 125.25 MacLine -44.50 125.25 51.50 125.25 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 35.50 128.50 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 133.50 373.00 133.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 133.00 373.00 133.00 MacLine -44.50 133.00 48.00 133.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 141.25 373.00 141.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 140.75 373.00 140.75 MacLine -44.50 140.75 48.00 140.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 148.88 373.00 148.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 148.38 373.00 148.38 MacLine -44.50 148.38 48.00 148.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 156.50 369.50 156.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 156.12 369.50 156.12 MacLine -44.50 156.12 51.50 156.12 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-2) 32.12 159.38 8.88 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 164.25 373.00 164.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 163.75 373.00 163.75 MacLine -44.50 163.75 48.00 163.75 MacLine -1 ps -1.00 ps -376.50 171.50 373.00 171.50 MacLine -44.50 171.50 48.00 171.50 MacLine -1 ps -gsave -[ 2 2 ] sd -gsave 2.00 ps 46.00 125.75 376.00 125.75 0 CapLine grestore -grestore -12.00 (_Helvetica) 0 F -gsave 9.25 131.25 translate -90 rotate -(Velocity \(m/s\)) 0.00 0.00 72.62 WS -grestore -1.00 ps -44.50 171.50 376.50 171.50 MacLine -44.50 17.50 376.50 17.50 MacLine -1 ps -1.00 ps -376.50 17.50 376.50 24.50 MacLine -376.50 171.50 376.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(40) 371.50 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -368.75 168.00 368.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -368.25 17.50 368.25 21.00 MacLine -368.25 171.50 368.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -360.38 168.00 360.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -359.88 17.50 359.88 21.00 MacLine -359.88 171.50 359.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -352.12 168.00 352.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -351.62 17.50 351.62 21.00 MacLine -351.62 171.50 351.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -343.75 168.00 343.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -343.25 17.50 343.25 21.00 MacLine -343.25 171.50 343.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -335.50 166.25 335.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -335.00 17.50 335.00 22.75 MacLine -335.00 171.50 335.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -327.25 168.00 327.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -326.75 17.50 326.75 21.00 MacLine -326.75 171.50 326.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -318.88 168.00 318.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -318.38 17.50 318.38 21.00 MacLine -318.38 171.50 318.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -310.62 168.00 310.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -310.12 17.50 310.12 21.00 MacLine -310.12 171.50 310.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -302.25 168.00 302.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -301.75 17.50 301.75 21.00 MacLine -301.75 171.50 301.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -293.88 164.50 293.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -293.50 17.50 293.50 24.50 MacLine -293.50 171.50 293.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(30) 288.50 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -285.75 168.00 285.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -285.25 17.50 285.25 21.00 MacLine -285.25 171.50 285.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -277.38 168.00 277.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -276.88 17.50 276.88 21.00 MacLine -276.88 171.50 276.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -269.12 168.00 269.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -268.62 17.50 268.62 21.00 MacLine -268.62 171.50 268.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -260.75 168.00 260.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -260.25 17.50 260.25 21.00 MacLine -260.25 171.50 260.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -252.50 166.25 252.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -252.00 17.50 252.00 22.75 MacLine -252.00 171.50 252.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -244.25 168.00 244.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -243.75 17.50 243.75 21.00 MacLine -243.75 171.50 243.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -235.88 168.00 235.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -235.38 17.50 235.38 21.00 MacLine -235.38 171.50 235.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -227.62 168.00 227.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -227.12 17.50 227.12 21.00 MacLine -227.12 171.50 227.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -219.25 168.00 219.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -218.75 17.50 218.75 21.00 MacLine -218.75 171.50 218.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -210.88 164.50 210.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -210.50 17.50 210.50 24.50 MacLine -210.50 171.50 210.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(20) 205.50 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -202.75 168.00 202.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -202.25 17.50 202.25 21.00 MacLine -202.25 171.50 202.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -194.38 168.00 194.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -193.88 17.50 193.88 21.00 MacLine -193.88 171.50 193.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -186.12 168.00 186.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -185.62 17.50 185.62 21.00 MacLine -185.62 171.50 185.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -177.75 168.00 177.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -177.25 17.50 177.25 21.00 MacLine -177.25 171.50 177.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -169.50 166.25 169.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -169.00 17.50 169.00 22.75 MacLine -169.00 171.50 169.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -161.25 168.00 161.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -160.75 17.50 160.75 21.00 MacLine -160.75 171.50 160.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -152.88 168.00 152.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -152.38 17.50 152.38 21.00 MacLine -152.38 171.50 152.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -144.62 168.00 144.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -144.12 17.50 144.12 21.00 MacLine -144.12 171.50 144.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -136.25 168.00 136.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -135.75 17.50 135.75 21.00 MacLine -135.75 171.50 135.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -127.88 164.50 127.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -127.50 17.50 127.50 24.50 MacLine -127.50 171.50 127.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(10) 122.50 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -119.75 168.00 119.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -119.25 17.50 119.25 21.00 MacLine -119.25 171.50 119.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -111.38 168.00 111.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -110.88 17.50 110.88 21.00 MacLine -110.88 171.50 110.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -103.12 168.00 103.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -102.62 17.50 102.62 21.00 MacLine -102.62 171.50 102.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -94.75 168.00 94.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -94.25 17.50 94.25 21.00 MacLine -94.25 171.50 94.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -86.50 166.25 86.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -86.00 17.50 86.00 22.75 MacLine -86.00 171.50 86.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -78.25 168.00 78.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -77.75 17.50 77.75 21.00 MacLine -77.75 171.50 77.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -69.88 168.00 69.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -69.38 17.50 69.38 21.00 MacLine -69.38 171.50 69.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -61.62 168.00 61.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -61.12 17.50 61.12 21.00 MacLine -61.12 171.50 61.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.25 168.00 53.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -52.75 17.50 52.75 21.00 MacLine -52.75 171.50 52.75 168.00 MacLine -1 ps -1.00 ps -44.50 17.50 44.50 24.50 MacLine -44.50 171.50 44.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 42.25 184.25 5.50 WS -12.00 (_Helvetica) 0 F -(Time \(s\)) 189.00 205.25 44.00 WS -1 0 0 SetFore UseFore -2.00 ps -newpath 45.00 79.62 M -128.00 18.00 L -211.00 125.75 L -294.00 172.00 L -377.00 95.00 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob24av4.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob24av4.gif deleted file mode 100755 index 08174c30d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob24av4.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob24av4.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob24av4.pdf deleted file mode 100644 index 893f360cb..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob24av4.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob24av5.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob24av5.eps deleted file mode 100755 index ade401f98..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob24av5.eps +++ /dev/null @@ -1,899 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 395 208 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Mon, Mar 11, 1996 4:04 PM -%%DocumentFonts: (atend) -%%EndComments -0 208 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -44.50 18.00 44.50 171.00 MacLine -376.50 18.00 376.50 171.00 MacLine -1 ps -1.00 ps -376.50 17.50 373.00 17.50 MacLine -44.50 17.50 48.00 17.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 27.62 373.00 27.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 27.12 373.00 27.12 MacLine -44.50 27.12 48.00 27.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 37.12 369.50 37.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 36.75 369.50 36.75 MacLine -44.50 36.75 51.50 36.75 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(4) 35.50 40.00 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 46.88 373.00 46.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 46.38 373.00 46.38 MacLine -44.50 46.38 48.00 46.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 56.50 373.00 56.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 56.00 373.00 56.00 MacLine -44.50 56.00 48.00 56.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 66.12 373.00 66.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 65.62 373.00 65.62 MacLine -44.50 65.62 48.00 65.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 75.62 369.50 75.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 75.25 369.50 75.25 MacLine -44.50 75.25 51.50 75.25 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 35.50 78.50 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 85.38 373.00 85.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 84.88 373.00 84.88 MacLine -44.50 84.88 48.00 84.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 95.00 373.00 95.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 94.50 373.00 94.50 MacLine -44.50 94.50 48.00 94.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 104.62 373.00 104.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 104.12 373.00 104.12 MacLine -44.50 104.12 48.00 104.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 114.12 369.50 114.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 113.75 369.50 113.75 MacLine -44.50 113.75 51.50 113.75 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 35.50 117.00 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 123.88 373.00 123.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 123.38 373.00 123.38 MacLine -44.50 123.38 48.00 123.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 133.50 373.00 133.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 133.00 373.00 133.00 MacLine -44.50 133.00 48.00 133.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 143.12 373.00 143.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 142.62 373.00 142.62 MacLine -44.50 142.62 48.00 142.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 152.62 369.50 152.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 152.25 369.50 152.25 MacLine -44.50 152.25 51.50 152.25 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-2) 32.12 155.50 8.88 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 162.38 373.00 162.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 161.88 373.00 161.88 MacLine -44.50 161.88 48.00 161.88 MacLine -1 ps -1.00 ps -376.50 171.50 373.00 171.50 MacLine -44.50 171.50 48.00 171.50 MacLine -1 ps -gsave -[ 2 2 ] sd -gsave 2.00 ps 46.00 114.25 376.00 114.25 0 CapLine grestore -grestore -12.00 (_Helvetica) 0 F -gsave 9.25 131.25 translate -90 rotate -(Velocity \(m/s\)) 0.00 0.00 72.62 WS -grestore -1.00 ps -44.50 171.50 376.50 171.50 MacLine -44.50 17.50 376.50 17.50 MacLine -1 ps -1.00 ps -376.50 17.50 376.50 24.50 MacLine -376.50 171.50 376.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(40) 371.50 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -368.75 168.00 368.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -368.25 17.50 368.25 21.00 MacLine -368.25 171.50 368.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -360.38 168.00 360.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -359.88 17.50 359.88 21.00 MacLine -359.88 171.50 359.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -352.12 168.00 352.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -351.62 17.50 351.62 21.00 MacLine -351.62 171.50 351.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -343.75 168.00 343.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -343.25 17.50 343.25 21.00 MacLine -343.25 171.50 343.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -335.50 166.25 335.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -335.00 17.50 335.00 22.75 MacLine -335.00 171.50 335.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -327.25 168.00 327.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -326.75 17.50 326.75 21.00 MacLine -326.75 171.50 326.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -318.88 168.00 318.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -318.38 17.50 318.38 21.00 MacLine -318.38 171.50 318.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -310.62 168.00 310.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -310.12 17.50 310.12 21.00 MacLine -310.12 171.50 310.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -302.25 168.00 302.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -301.75 17.50 301.75 21.00 MacLine -301.75 171.50 301.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -293.88 164.50 293.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -293.50 17.50 293.50 24.50 MacLine -293.50 171.50 293.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(30) 288.50 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -285.75 168.00 285.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -285.25 17.50 285.25 21.00 MacLine -285.25 171.50 285.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -277.38 168.00 277.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -276.88 17.50 276.88 21.00 MacLine -276.88 171.50 276.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -269.12 168.00 269.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -268.62 17.50 268.62 21.00 MacLine -268.62 171.50 268.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -260.75 168.00 260.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -260.25 17.50 260.25 21.00 MacLine -260.25 171.50 260.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -252.50 166.25 252.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -252.00 17.50 252.00 22.75 MacLine -252.00 171.50 252.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -244.25 168.00 244.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -243.75 17.50 243.75 21.00 MacLine -243.75 171.50 243.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -235.88 168.00 235.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -235.38 17.50 235.38 21.00 MacLine -235.38 171.50 235.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -227.62 168.00 227.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -227.12 17.50 227.12 21.00 MacLine -227.12 171.50 227.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -219.25 168.00 219.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -218.75 17.50 218.75 21.00 MacLine -218.75 171.50 218.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -210.88 164.50 210.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -210.50 17.50 210.50 24.50 MacLine -210.50 171.50 210.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(20) 205.50 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -202.75 168.00 202.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -202.25 17.50 202.25 21.00 MacLine -202.25 171.50 202.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -194.38 168.00 194.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -193.88 17.50 193.88 21.00 MacLine -193.88 171.50 193.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -186.12 168.00 186.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -185.62 17.50 185.62 21.00 MacLine -185.62 171.50 185.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -177.75 168.00 177.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -177.25 17.50 177.25 21.00 MacLine -177.25 171.50 177.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -169.50 166.25 169.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -169.00 17.50 169.00 22.75 MacLine -169.00 171.50 169.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -161.25 168.00 161.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -160.75 17.50 160.75 21.00 MacLine -160.75 171.50 160.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -152.88 168.00 152.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -152.38 17.50 152.38 21.00 MacLine -152.38 171.50 152.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -144.62 168.00 144.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -144.12 17.50 144.12 21.00 MacLine -144.12 171.50 144.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -136.25 168.00 136.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -135.75 17.50 135.75 21.00 MacLine -135.75 171.50 135.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -127.88 164.50 127.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -127.50 17.50 127.50 24.50 MacLine -127.50 171.50 127.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(10) 122.50 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -119.75 168.00 119.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -119.25 17.50 119.25 21.00 MacLine -119.25 171.50 119.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -111.38 168.00 111.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -110.88 17.50 110.88 21.00 MacLine -110.88 171.50 110.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -103.12 168.00 103.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -102.62 17.50 102.62 21.00 MacLine -102.62 171.50 102.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -94.75 168.00 94.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -94.25 17.50 94.25 21.00 MacLine -94.25 171.50 94.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -86.50 166.25 86.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -86.00 17.50 86.00 22.75 MacLine -86.00 171.50 86.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -78.25 168.00 78.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -77.75 17.50 77.75 21.00 MacLine -77.75 171.50 77.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -69.88 168.00 69.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -69.38 17.50 69.38 21.00 MacLine -69.38 171.50 69.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -61.62 168.00 61.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -61.12 17.50 61.12 21.00 MacLine -61.12 171.50 61.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.25 168.00 53.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -52.75 17.50 52.75 21.00 MacLine -52.75 171.50 52.75 168.00 MacLine -1 ps -1.00 ps -44.50 17.50 44.50 24.50 MacLine -44.50 171.50 44.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 42.25 184.25 5.50 WS -12.00 (_Helvetica) 0 F -(Time \(s\)) 189.00 205.25 44.00 WS -1 0 0 SetFore UseFore -2.00 ps -newpath 45.00 152.75 M -128.00 114.25 L -211.00 172.00 L -294.00 18.00 L -377.00 37.25 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob24av5.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob24av5.gif deleted file mode 100755 index c3029ec2f..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob24av5.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob27a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob27a.eps deleted file mode 100755 index 6a276120d..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob27a.eps +++ /dev/null @@ -1,7 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 396 234 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: 31 Aug, 1994 17:27 -%%DocumentFonts: (atend) -%%EndComments 0 234 translate 1 -1 scale /IgorSave save def 1000 dict begin 0 setgray 0 setlinecap 1 setlinewidth 0 setlinejoin 1 setmiterlimit [] 0 setdash /aw 0 def /ah 0 def /x0 0 def /y0 0 def /x1 0 def /y1 0 def /x 0 def /y 0 def /w 0 def /c 0 string def /rbak 1 def /gbak 1 def /bbak 1 def /rfor 0 def /gfor 0 def /bfor 0 def /bdef{bind def}bind def /ldef{load def}bdef /xdef{exch def}bdef /UseBack{ rbak gbak bbak setrgbcolor }bdef /UseFore{ rfor gfor bfor setrgbcolor }bdef /SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef /SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef /ps {setlinewidth} bdef /clw {currentlinewidth} bdef /sd {0 setdash} bdef /mstroke {0 clw eq {newpath}{stroke} ifelse} bdef /_R{ .25 sub round .25 add}bdef /allign { transform _R exch _R exch itransform }bdef /L {allign lineto} bdef /M {allign moveto} bdef /addto { dup load exec 3 -1 roll add store }bdef /MacLine{ % xto yto xfrom yfrom MacLine -- newpath % only handles horizontal or vertical lines /y0 xdef /x0 xdef /y1 xdef /x1 xdef x1 x0 sub abs y1 y0 sub abs gt {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} ifelse x0 y0 M x1 y1 L mstroke }bdef /FillPath{ % graylevel FillPath -- fills current path and leaves path alive gsave dup 1 exch sub % glev 1-glev rbak 2 index mul rfor 2 index mul add gbak 3 index mul gfor 3 index mul add bbak 4 index mul bfor 4 index mul add setrgbcolor pop pop fill grestore }bdef /StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive gsave setlinejoin mstroke grestore }bdef /RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange /y1 xdef /x1 xdef /y0 xdef /x0 xdef newpath x0 y0 M x1 y0 L x1 y1 L x0 y1 L closepath }bdef /PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- gsave 5 1 roll RectPath FillPath grestore }bdef /EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color gsave RectPath UseBack fill grestore }bdef /FrameRect{ % x0 y0 x1 y1 FrameRect -- RectPath mstroke }bdef /FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version RectPath mstroke }bdef /ellipse{ /savematrix matrix currentmatrix def translate scale 0 0 1 0 360 arc savematrix setmatrix }bdef /OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange /y1 xdef /x1 xdef /y0 xdef /x0 xdef newpath x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse closepath }bdef /PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- gsave 5 1 roll OvalPath FillPath grestore }bdef /EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color gsave OvalPath UseBack fill grestore }bdef /FrameOval{ % x0 y0 x1 y1 FrameOval -- OvalPath mstroke }bdef /RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r /radius xdef /y1 xdef /x1 xdef /y0 xdef /x0 xdef newpath x0 radius add y0 M x1 y0 x1 y1 radius arcto 4{pop}repeat x1 y1 x0 y1 radius arcto 4{pop}repeat x0 y1 x0 y0 radius arcto 4{pop}repeat x0 y0 x1 y0 radius arcto 4{pop}repeat closepath }bdef /PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- gsave 6 1 roll RRectPath FillPath grestore }bdef /EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color gsave RRectPath UseBack fill grestore }bdef /FrameRRect{ % x0 y0 x1 y1 r FrameRect -- RRectPath mstroke }bdef /CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap gsave setlinecap /y1 xdef /x1 xdef /y0 xdef /x0 xdef newpath x0 y0 M x1 y1 L mstroke grestore }bdef /Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 gsave /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef x0 y0 translate /x1 x1 x0 sub def /y1 y1 y0 sub def y1 x1 atan rotate newpath 0 0 M aw ah 2 div L aw ah 2 div neg L closepath gl FillPath % 10 setmiterlimit % 1 ps % 0 StrokePath grestore }bdef % ************ fonts ************ /normal 0 def /bold 1 def /italic 2 def /underline 4 def /outline 8 def /shadow 16 def /FACE1 bold italic or def /FACE2 outline shadow or def /Shadow { gsave siz 0.08 mul 1 index mul x add exch siz 0.07 mul mul y add M c show grestore } def /Outline { gsave siz .02 mul setlinewidth x y M c true charpath gsave UseBack fill grestore stroke grestore } def /Underline{ gsave siz 0.08 mul ps x y clw add M x c stringwidth pop add y clw add L stroke grestore }bdef /DoShow{ % assumes x,y,c are already set fontkind FACE2 and dup normal eq {c x y M show} if dup outline eq {Outline} if dup shadow eq {1 Shadow Outline} if outline shadow or eq {1 Shadow 1.5 Shadow Outline} if fontkind underline and 0 ne { Underline } if }bdef /DoWShow{ % assumes x,y,c & w are already set gsave x y translate /x 0 def /y 0 def w c stringwidth pop div 1 scale DoShow grestore }bdef /S{ /y xdef /x xdef /c xdef DoShow }bdef /WS{ % string x y desiredwidth WS - /w xdef /y xdef /x xdef /c xdef DoWShow }bdef /F{ /fontkind xdef findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont }bdef /Re-encode { dup length array copy /eap 0 def exch { dup type /integertype eq { /eap xdef } { 1 index exch eap exch put /eap eap 1 add def } ifelse } forall } bind def [ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis /Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute /egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde /oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex /udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls /registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash /.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef /.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash /questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef /guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe /endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide /.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright /fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand /Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex /Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex /Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla /hungarumlaut/ogonek/caron] /zzz xdef /OurEncoding{ zzz StandardEncoding Re-encode }bdef /EncodeFont { findfont dup length dict begin { 1 index /FID ne { def } { pop pop } ifelse } forall /FontName xdef /Encoding xdef FontName currentdict end definefont pop } bind def /AnObj save def 1 1 1 SetBack 0 0 0 SetFore UseFore 0 0 translate 1.00 ps 26.50 14.00 26.50 206.00 MacLine 381.50 14.00 381.50 206.00 MacLine 1 ps 1.00 ps 381.50 206.50 374.50 206.50 MacLine 26.50 206.50 33.50 206.50 MacLine 1 ps 1.00 ps 381.50 151.38 374.50 151.38 MacLine 26.50 151.38 33.50 151.38 MacLine 1 ps 1.00 ps 381.50 96.25 374.50 96.25 MacLine 26.50 96.25 33.50 96.25 MacLine 1 ps 1.00 ps 381.50 41.12 374.50 41.12 MacLine 26.50 41.12 33.50 41.12 MacLine 1 ps OurEncoding /_Times-Roman /Times-Roman EncodeFont 12.00 (_Times-Roman) 0 F gsave 9.00 126.88 translate -90 rotate (Height) 0.00 0.00 32.75 WS grestore 1.00 ps 26.50 206.50 381.50 206.50 MacLine 26.50 13.50 381.50 13.50 MacLine 1 ps 1.00 ps 62.00 13.50 62.00 20.50 MacLine 62.00 206.50 62.00 199.50 MacLine 1 ps 1.00 ps 109.38 13.50 109.38 20.50 MacLine 109.38 206.50 109.38 199.50 MacLine 1 ps 1.00 ps 156.62 13.50 156.62 20.50 MacLine 156.62 206.50 156.62 199.50 MacLine 1 ps 1.00 ps 204.00 13.50 204.00 20.50 MacLine 204.00 206.50 204.00 199.50 MacLine 1 ps 1.00 ps 251.38 13.50 251.38 20.50 MacLine 251.38 206.50 251.38 199.50 MacLine 1 ps 1.00 ps 298.62 13.50 298.62 20.50 MacLine 298.62 206.50 298.62 199.50 MacLine 1 ps 1.00 ps 346.00 13.50 346.00 20.50 MacLine 346.00 206.50 346.00 199.50 MacLine 1 ps 12.00 (_Times-Roman) 0 F (Time) 191.75 231.00 25.50 WS 1.00 ps newpath 86.12 176.62 M 88.38 171.38 L 90.75 166.12 L 93.12 161.00 L 95.50 155.88 L 97.88 151.00 L 100.25 146.25 L 102.62 141.50 L 105.00 136.88 L 107.38 132.38 L 109.75 128.00 L 112.12 123.75 L 114.50 119.62 L 116.88 115.62 L 119.25 111.62 L 121.62 107.75 L 124.00 104.00 L 126.25 100.38 L 128.62 96.88 L 131.00 93.50 L 133.38 90.25 L 135.75 87.00 L 138.12 84.00 L 140.50 81.00 L 142.88 78.12 L 145.25 75.38 L 147.62 72.75 L 150.00 70.12 L 152.38 67.75 L 154.75 65.38 L 157.12 63.25 L 159.50 61.12 L 161.88 59.12 L 164.25 57.25 L 166.50 55.38 L 168.88 53.75 L 171.25 52.12 L 173.62 50.75 L 176.00 49.38 L 178.38 48.12 L 180.75 47.00 L 183.12 46.00 L 185.50 45.00 L 187.88 44.25 L 190.25 43.50 L 192.62 42.88 L 195.00 42.50 L 197.38 42.12 L 199.75 41.75 L 202.12 41.62 L 204.38 41.62 L 206.75 41.62 L 209.12 41.75 L 211.50 42.12 L 213.88 42.50 L 216.25 42.88 L 218.62 43.50 L 221.00 44.25 L 223.38 45.00 L 225.75 46.00 L 228.12 47.00 L 230.50 48.12 L 232.88 49.38 L 235.25 50.75 L 237.62 52.12 L 240.00 53.75 L 242.38 55.38 L 244.62 57.25 L 247.00 59.12 L 249.38 61.12 L 251.75 63.25 L 254.12 65.38 L 256.50 67.75 L 258.88 70.12 L 261.25 72.75 L 263.62 75.38 L 266.00 78.12 L 268.38 81.00 L 270.75 84.00 L 273.12 87.00 L 275.50 90.25 L 277.88 93.50 L 280.25 96.88 L 282.50 100.38 L 284.88 104.00 L 287.25 107.75 L 289.62 111.62 L 292.00 115.62 L 294.38 119.62 L 296.75 123.75 L 299.12 128.00 L 301.50 132.38 L 303.88 136.88 L 306.25 141.50 L 308.62 146.25 L 311.00 151.00 L 313.38 155.88 L 315.75 161.00 L 318.12 166.12 L 320.50 171.38 L mstroke [] sd 1 ps gsave [ 10 10 ] sd gsave 1.00 ps 74.25 151.00 334.62 151.00 0 CapLine grestore grestore gsave [ 10 10 ] sd gsave 1.00 ps 74.25 90.12 334.62 90.12 0 CapLine grestore grestore 86.12 100.12 86.12 151.00 5.12 10.00 0 Arrow 86.12 141.00 86.12 90.12 5.12 10.00 0 Arrow gsave 1.00 ps 86.12 100.12 86.12 141.00 2 CapLine grestore gsave 1.00 ps 98.00 151.00 98.00 173.00 2 CapLine grestore gsave 1.00 ps 311.00 151.00 311.00 173.00 2 CapLine grestore gsave 1.00 ps 275.50 90.12 275.50 112.25 2 CapLine grestore gsave 1.00 ps 133.50 90.12 133.50 112.25 2 CapLine grestore 143.50 101.12 275.50 101.12 5.12 10.00 0 Arrow 265.50 101.12 133.50 101.12 5.12 10.00 0 Arrow gsave 1.00 ps 143.50 101.12 265.50 101.12 2 CapLine grestore 108.00 162.00 311.00 162.00 5.12 10.00 0 Arrow 301.00 162.00 98.00 162.00 5.12 10.00 0 Arrow gsave 1.00 ps 108.00 162.00 301.00 162.00 2 CapLine grestore 71.88 113.75 80.50 125.75 EraseRect 12.00 (_Times-Roman) 0 F (H) 71.88 122.75 8.62 WS 194.62 169.38 214.50 183.38 EraseRect 12.00 (_Times-Roman) 0 F (ÆT) 194.62 178.38 14.75 WS 8.38 (_Times-Roman) 0 F (L) 209.38 181.25 5.12 WS 194.12 107.00 214.88 121.00 EraseRect 12.00 (_Times-Roman) 0 F (ÆT) 194.12 116.00 14.75 WS 8.38 (_Times-Roman) 0 F (H) 208.88 118.88 6.00 WS AnObj restore end IgorSave restore %%DocumentFonts: Times-Roman \ No newline at end of file diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob27a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob27a.gif deleted file mode 100755 index bb44b6afc..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob27a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob27a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob27a.pdf deleted file mode 100644 index ed962c81e..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob27a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob37.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob37.eps deleted file mode 100755 index 9ad39f3f8..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob37.eps +++ /dev/null @@ -1,2107 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Title: TRAINS.EPS -%%Creator: DeskScan II - Hewlett-Packard Company -%%CreationDate: Fri Feb 16 6:11:52 1996 -%%BoundingBox: 0 0 105 250 -%%EndComments -%%EndProlog -save -15 dict begin -/xpoints 105 def -/ypoints 250 def -/xpixels 436 def -/ypixels 1041 def -/rasterbytes 55 def -/bitspercomponent 1 def -/xunits xpixels xpoints div def -/yunits ypixels ypoints div def -/coords [xunits 0 0 yunits neg 0 ypixels] def -/picstr rasterbytes string def -/readimage { currentfile picstr readhexstring pop } def -xpixels ypixels bitspercomponent coords /readimage load -image -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEC024D86FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE09048007FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD24912493FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFECB7EDB6FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDB66DB6FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD20002003FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD20002013FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCC9249B6FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEC377F8FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF24D92493FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000004FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC09249B6FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD24D92493FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2DB64DBFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEC924DB6FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000003FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD24012493FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEC924DB6FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEC3FFF9FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF24992493FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000003FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC49249B67FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF24992493FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEC924DB6FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000000BFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD24812493FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEC924DB6FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDB76DB6FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD24812493FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000003FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC89249B6FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE6DB6CDFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF26D92493FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE4024936FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00041007FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD24D92493FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEC924DB6FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD20002093FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD24000093FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEC924DB6FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFF9FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFF9FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000007FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000003FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000003FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC38000343FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83C0003C3FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC383DE2E3FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6C9B6103F6003FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6DA002BE007FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBEFE3C000063FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6C9363C0001E3FFFFF -FFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3C0601E3FFFFF -FFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB6D83C0F83C3FFFFF -FFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6C9B4280F8043FFFFF -FFF807FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFF8000F0003FFFFF -FFF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDB6D8200580C3FFFFF -FFE001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6D9B43C0D02A3FFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6DBB41C0003E3FFFFF -FF8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDB6D83C0001E3FFFFF -FF00003FFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6D9B63C0F83E3FFFFF -FE00003FFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6D936003FE007FFFFF -FC00003FFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDB6D8203FA043FFFFF -F800000FFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE383FE3E3FFFFF -FF00009FFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6C9343C3F63C3FFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB6D81C3FC3E3FFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83C3FE2A3FFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6C924002FC003FFFFF -FFC003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD8003BE023FFFFF -FFE001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6FE3C1FE3E3FFFFF -FFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6C9363C1FE3E3FFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3C3FA3C3FFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB6DA2C3FE3C3FFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6D936003D6003FFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FC003FFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDB6D8343FE0E3FFFFF -FFE001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6D9B43C3FC3E3FFFFF -FFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6FFB43C3FE1E3FFFFF -FFE001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDB6D83C3FA1E3FFFFF -FFE001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF42C1FE1C3FFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6C9B4003FE003FFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB6D8283FE1C3FFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC383DE2E3FFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6C9361C3FC3A3FFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB6D8142BE1E3FFFFF -FFE001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3C3FE063FFFFF -FFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6C934003FE003FFFFF -FFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8303FE043FFFFF -FFE001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6F83C1FA3C3FFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6C9B4383FE3E3FFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83E3FE3C3FFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB6D8143FE3E3FFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB659B6003FE003FFFFF -FFE001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6002FE003FFFFF -FFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFDB6DA3C3AE163FFFFF -FFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6FFB63C1F8343FFFFF -FFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6DDB600000003FFFFF -FFE001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB6D800000003FFFFF -FFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000003FFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6C9B402BD7E03FFFFF -FFE001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB6D807FFFF03FFFFF -FFC081FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC05FFFE03FFFFF -FFF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6C9B607FFFF03FFFFF -FFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBEDA07FBFD03FFFFF -FFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFE077FBF03FFFFF -FFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6C9B607FFFF03FFFFF -FFE001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE06FFBF03FFFFF -FFE001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB6D803FFFF03FFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6C9B402FDFE03FFFFF -FFF021FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFF03FFFFF -FFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDB6D807FBFE03FFFFF -FFE001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6DDB407FFFF03FFFFF -FFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6DDB407FFF503FFFFF -FFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDB6D8077FFF03FFFFF -FFE813FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6FFB607DFEF03FFFFF -FFC003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6D9B603FFFF03FFFFF -FFF015FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB6D807FFFF03FFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FDFE03FFFFF -FFF0A1FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6C9340FFFFF03FFFFF -FFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6D807EBFF03FFFFF -FFE103FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FFFF03FFFFF -FFF00BFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6C93407FFF703FFFFF -FFE143FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FFFF03FFFFF -FFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6D807DFAF03FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6D93403FFFF03FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE06FF7F03FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDB6D800000003FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6D9B600000003FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6DFB600000003FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDB6D800000003FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6D9B400000003FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEAF800000000000000FC00000003FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000000000000000000FD20800493FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000000000000000000FE0102194FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFE7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFE7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFE7FFF9FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFEDB36DB6FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFE00000003FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFD24800003FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFEC9249B6FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFC3FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFE7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFFFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFFFFFFFFFFFFE7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC93FFFFFFFFFFFFFFFFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD9BFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFF24D92493FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFE00000007FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFC49249B67FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFD24D92493FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF6DB64DBFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFE7FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFEC926DB6FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFE00000003FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFD24812493FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFEC926DB6FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFECBFFF97FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFE7FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF3FFFC7FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF9FFFB7FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFD24D92493FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFC00000003FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFEC924DB67FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFD24DB2493FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF1FFFC7FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF9FFFB7FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF1FFFDBFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF5FFFDBFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF9FFFB7FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF1FFFD9FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFE4FFFC9FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFEC924DB2FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFE4000C007FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFD24092493FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFEC036DB6FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFB7FFBEFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF6FFFDDFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFE7FFFEFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFB3FFBEFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFEDB36DB67FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFD20012493FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFD00012093FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFE4924DB67FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFE7CBFCD3FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7DFFDFBFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFBFDFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7DFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFF7FBFCFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFF7FFFCFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFA6C9249B7FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFE49245827FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFE4924D927FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFD24C924932FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FBF9C013FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFBFFFBE493FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7F9FC922FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFC007FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFBFEFB25DFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FF241FEFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FF001FEFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFEC926D927FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFF0000000BF7FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFD24492413FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFE4936DB27F3EFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFE3FFD9FFFBCFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFBCFFFC97F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFDBFFFA07F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFDBFF904FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFE4FF24BFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFF1E4937FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFBFFF9E49F7FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFD26C924917FBFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFE00000001FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFE4926DB27FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFD26C9249BFFDFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFE4FFFFCFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFBFFFBFFFFE49 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFCFFFFF36 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFC7FFFC32 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFBFFFB7FFF649 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFC3FFC93F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFE3FFFC9FE49BF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFE4926D927926CF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFE00000002007FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFD2049248125FF7 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFEC936D8249FFFB -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFBFFF800FFFFB -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFC93FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFF6FFFFF9 -27FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFB7FFFFFD -27FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFCFBFFFF6 -DBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFFFDFFFC0 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFBF6FB7CFFEC9 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFD204924917F9B6 -DFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFD000000037F087 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFE4926D9279B24F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFA6DBB4DBA49FF -DFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFCFF04FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFBFFFBFC937FF -E7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFDF807FFF -FBEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFCFC27FFF -FB27FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFBFFF9FCF3FFF -F49BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFCFFFBFFF -D00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFA6C924DBFDFFF -D93FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFE4936C927FFFF9 -24FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFE40104003FFFF8 -07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFD2249249BFEFB6 -DFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFBFFF9FFFF641 -3FDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFF209 -FFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFCFFFC937 -FFE7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFDFFF807F -FFFB3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFBFFF927F -FFF92FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFCFFFCFFF -FFF49FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFDFFFFFFF -FFC83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFE4936D927FFFDF -FF893FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFD2009249BFFFBF -FF24FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFD2000000BFFFFF -F00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFE4936D927FFFCF -E49FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFE7FFFCFFFFFF6 -DB7FDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFCFFFFFF6 -CBFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFBFFFBFFFFFF9 -27FFE7DFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFFFFFFFF0 -5FFFFB6FFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFCFFFFFB6 -FFFFFB27FFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFBFFFFE49 -3FFFE49FFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFF8FFFFF87 -BFFFC23FFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFD3249249BFFFBF -DFFE933FFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFE48249927FFFFF -BFF9279FFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFE48000827FFFFF -FFF92FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFD3249249BFFFFF -FFA49FEFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFF -E681FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFBFFFFFFFFFFF -F48BFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFCFFFFFFF -F927FFF597FFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFFFFFFFFF -20FFFFFB6FFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFBFFFBFFFFFFF -24FFFFFB6FFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFCFFFFFFF -DB3FFFE49FFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFE3FFFCFFFFFFF -FFDFFF803FFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFE4924D927FFFFF -FFDFFC937FFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFC0000200BFFFFF -FFEFF9279FFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFD00002003FFFFF -FFF7C06FDFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFE4926DB67FFFFF -FFFB24FFEFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFCFFFFFFF -FFF493FFF3EFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFCFFFFFFF -FFF49BFFF3EFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFBFFFBFFFFFFF -FFD13FFFFD93FFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFFFFFFFFF -FF847FFFF00FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFCFFFFFFF -FFA4FFFFF04FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFBFFFBFFFFFFF -FFDB3FFFED9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF0FFD1FFFFFFF -FFFFFFFF01FFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFD20492493FFFFF -FFFFDFFC93EFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFE00240027FFFFF -FFFFE7FB6FFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFE49269127FFFFF -FFFFF7C17FF7FFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFDA6DB24DBFFFFF -FFFFFB24FFFDF7FFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFC9BFFFBEFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFE49FFFFE43FFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFCFFFFFFF -FFFFD13FFFFC93FFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFC07FFFF84FFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFE7DFFFF24FFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFCFFFFFFF -FFFFFFEFFF409FFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFF20D9241BFFFFF -FFFFFFEFFE05DFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFE4926D927FFFFF -FFFFFFFBFD93EFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFC0000000BFFFFF -FFFFFFFF926FF7FFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFD2049249BFFFFF -FFFFFFFD927FF3FFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFBFFF9FFFFFFF -FFFFFFFB6DFFFDF3FFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFE497FFFE6DFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFCFFFFFFF -FFFFFFE49FFFFE4DFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFBFFFFFFF -FFFFFFDB7FFFFC13FFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFEBDFFFF007FFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFE7FFFCFFFFFFF -FFFFFFE7DFFF924FFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF3FFF9FFFFFFF -FFFFFFFFEFFE49F7FFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFE4936D927FFFFF -FFFFFFFFFFFC01F7FFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFD20492493FFFFF -FFFFFFFFF3E897FDFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFE00000007FFFFF -FFFFFFFFFD927FFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFE4936DB27FFFFF -FFFFFFFFFD927FFEF9FFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFE7FFFCFFFFFFF -FFFFFFFFF24DFFFFB7FFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFE80FFFFE09FFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFED9FFFFE49FFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFCFFFFFFF -FFFFFFFFF24FFFFDB7FFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFCFFFFFFF -FFFFFFFFF3EFFFE00FFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFF3FF924FFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF6DB64FFFFFFF -FFFFFFFFFFFDFE49F7FFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFD20092483FFFFF -FFFFFFFFFFFDFA4FF7FFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFE4924DB27FFFFF -FFFFFFFFFFFEC93FF9FFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFE00000003FFFFF -FFFFFFFFFFFE827FFEFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFD26C9249BFFFFF -FFFFFFFFFFFC92FFFEFBFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFF24FFFFF27FFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE01FFFFF03FFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFCFFFFFFF -FFFFFFFFFFEC9FFFFECBFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF3EFFFF927FFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFEFFFF807FFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFCFFFFFFF -FFFFFFFFFFFFF3FFB6DFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFEC3F6D97FFFFFF -FFFFFFFFFFFFF9FE49F7FFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFE4924DB27FFFFF -FFFFFFFFFFFFFDF649FFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFD20092493FFFFF -FFFFFFFFFFFFFE69B7FDFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFC00000003FFFFF -FFFFFFFFFFFFFF007FFEFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFEC926DB67FFFFF -FFFFFFFFFFFFFD127FFEF9FFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFCFFFFFFF -FFFFFFFFFFFFF24DFFFF24FFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFCFFFFFFF -FFFFFFFFFFFFF00FFFFF00FFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFE937FFFEC9FFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFF2FFFFF927FFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFCFFFFFFF -FFFFFFFFFFFFF7FFFFF027FFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFF3FF24DBFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF2DB70DBFFFFF -FFFFFFFFFFFFFFFDFEC9F7FFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFD24492493FFFFF -FFFFFFFFFFFFFFFDF6CBF7FFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFE09249B27FFFFF -FFFFFFFFFFFFFFFE4927F9FFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFE09041027FFFFF -FFFFFFFFFFFFFFFE003FFCFBFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFDA6D924DBFFFFF -FFFFFFFFFFFFFFFDB6FFFEFBFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFBFFFFFFF -FFFFFFFFFFFFFFF24BFFFF24FFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFF00FFFFE00FFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFCFFFFFFF -FFFFFFFFFFFFFFFDB7FFF499FFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFFFFFFFFF -FFFFFFFFFFFFFFFEEFFFC127FFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFBFFC92FFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFCFFFFFFF -FFFFFFFFFFFFFFFFF7F924DFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFE2DB24DBFFFFF -FFFFFFFFFFFFFFFFF9F20FEFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFE4926D927FFFFF -FFFFFFFFFFFFFFFFF9A6DFE7FFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFC24000403FFFFF -FFFFFFFFFFFFFFFFFEC97FFBFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFD24892493FFFFF -FFFFFFFFFFFFFFFFFC03FFFBFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFDBFFDBFFFFFFF -FFFFFFFFFFFFFFFFC927FFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFF6FFFFFBFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFF6FFFFFBFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFBFFFFFFF -FFFFFFFFFFFFFFFFFBBFFFFCDBFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFDFFFF825FFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFE7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFDFFFD924FFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF3FFFBFFFFFFF -FFFFFFFFFFFFFFFFFFE7FB24DBFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFEC936DB6FFFFFF -FFFFFFFFFFFFFFFFFFF7F0023FFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFD24092493FFFFF -FFFFFFFFFFFFFFFFFFFB249B3FFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFC00000003FFFFF -FFFFFFFFFFFFFFFFFFF2493FDFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFE4926DB67FFFFF -FFFFFFFFFFFFFFFFFFA04BFFDFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFE7FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFC93FFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFA0FFFFDFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFB6FFFFDFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFFF3FFFE49FFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFD26C9249BFFFFF -FFFFFFFFFFFFFFFFFFFFBFFFC01FFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFE4924DB27FFFFF -FFFFFFFFFFFFFFFFFFFFDF249B6FFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFE4000000BFFFFF -FFFFFFFFFFFFFFFFFFFF2490049FFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFD26C9249BFFFFF -FFFFFFFFFFFFFFFFFFF9249924FFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFF4C926FBFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFA00FFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFF92FFFFDFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFDFFFFBFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFFFEFFFFDFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFF9FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEC924DB6FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD20092493FFFFF -FFFFFFFFFFFFFFFFFFFFE7FFFCFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD2001201BFFFFF -FFFFFFFFFFFFFFFFFFFFC3FFF9FFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEC926DB6FFFFFF -FFFFFFFFFFFFFFFFFFFE89249B6FFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFDFF81FFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFD24992493FFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCE7FFFFF9FE787FFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFE0000000BFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9E3FFFFF1FCFE3FFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFEC924DB6FFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3F3FFFFE1FCFE1FFFFFFFF7FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF7FFFCFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3F9FFFFE1F8FE1FFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFF7FFFCFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3F8FFFFD1F8FE1FFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3F8FFFF90F8FF1FFFFFFFFBFFF9FFFFFFF -FFFFFFFFFFFFFFFFFFFFF7FFFCFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7F8FFFF31FC7E1FFFFFFD24C92493FFFFF -FFFFFFFFFFFFFFFFFFFFF7FFFCFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7F8FFFF71FC0E1FFFFFFE4020982FFFFFF -FFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7F87FFEF1FF3E1FFFFFFE4926996FFFFFF -FFFFFFFFFFFFFFFFFFFFF3DB6CDBFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7F87FFCF1FFFE3FFFFFFD26D9249BFFFFF -FFFFFFFFFFFFFFFFFFFF24992493FFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87F87FF9F1FFFC7FFFFFFFF7FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE09249B6FFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7F87FFBF0FFF8FFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFE0120180FFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7F87FF3F0FFF1FFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFF24DB249BFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7F8FFF0001FE7FFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7F8FFFB807FCFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7F8FFFFF0FF9FFFFFFFFFF7FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFFFF7FFFCFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7F0FFFFF1FFBFFFFFFFFFE7FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3F1FFFFF0FF7FFFFFFFFE4926DB27FFFFF -FFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3F3F9FFF0FE10FFFFFFFC00000003FFFFF -FFFFFFFFFFFFFFFFFFFFF7FFFCFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3E3F0FFF0FC001FFFFFFD24492493FFFFF -FFFFFFFFFFFFFFFFFFFFE7FFFCFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9E7F0FFE0FC001FFFFFFEC9B6DB6FFFFFF -FFFFFFFFFFFFFFFFFFFEC9249B6FFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FF1FF803C003FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF24910083FFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFF24932493FFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFEDB76DB6FFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF7FFFCFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFF7FFFCFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDBFEDB7FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD24C92493FFFFF -FFFFFFFFFFFFFFFFFFFFF7FFFCFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD00000003FFFFF -FFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE4936DB27FFFFF -FFFFFFFFFFFFFFFFFFFEDBFFFB7FFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA6DB64DBFFFFF -FFFFFFFFFFFFFFFFFFFF24992493FFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFE4000400FFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFEC926DB6FFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFE6FB6CFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFF7FFFCFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFF7FFFCFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFA6C9249BFFFFF -FFFFFFFFFFFFFFFFFFFFF7FFFCFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFE4924DB27FFFFF -FFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0020004FFFFFF -FFFFFFFFFFFFFFFFFFFFF7FFFCFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD2049249BFFFFF -FFFFFFFFFFFFFFFFFFFFA4DB249BFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFEC924DB6FFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFE0002000BFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FE3FFFFFFFFFFFFFF7FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFFF24DB2493FFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF860301F83FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1E078FE3FFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1F0FC7E3FFFFFFFFFFF7FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFFFF7FFFCFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3F0FC7E3FFFFFFFFFFF3FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3F0FC7E3FFFFFFFFFEC926DB67FFFFF -FFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3F0FC7E3FFFFFFFFFD0001201BFFFFF -FFFFFFFFFFFFFFFFFFFFF7FFFCFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3F0FC7E3FFFFFFFFFD2001000BFFFFF -FFFFFFFFFFFFFFFFFFFFF3FFFDFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3F0FC7E3FFFFFFFFFEC926DB67FFFFF -FFFFFFFFFFFFFFFFFFFED924DB6FFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3F8FC7E3FFFFFFFFFFE3FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFF24812493FFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3F0FC7E3FFFFFFFFFFF7FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFFE0080000BFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3F0FC7E3FFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFED924DB6FFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3F0FC7E3FFFFFFFFFFF7FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF7FFFCFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3F0FC7E1FFFFFFFFFFF7FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFFFF7FFFCFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81E070380FFFFFFFFFFFFFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFF -FFFFFFFFFFFFFFFFFFFFF7FFFCFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD2449249BFFFFF -FFFFFFFFFFFFFFFFFFFFF7FFFCFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE4924D127FFFFF -FFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE4924D127FFFFF -FFFFFFFFFFFFFFFFFFFFF3FFFCFBFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD26C9249BFFFFF -FFFFFFFFFFFFFFFFFFFF24C92493FFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFEC9249B6FFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFEC924DB6FFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFF24DB2493FFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFF7FFFCFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFE7FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFE4926DB27FFFFF -FFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFD20012093FFFFF -FFFFFFFFFFFFFFFFFFFFF7FFFCFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFD24C9249BFFFFF -FFFFFFFFFFFFFFFFFFFFE7FFFCFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFEC936DB6FFFFFF -FFFFFFFFFFFFFFFFFFFEC924DB6FFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFF24982493FFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFF24902493FFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFBFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFEC926DB6FFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF7FFFCFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFFFF7FFFCFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFBFFF9FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFD24C92493FFFFF -FFFFFFFFFFFFFFFFFFFFF7FFFCFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFE00000003FFFFF -FFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFE4926DB27FFFFF -FFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFA6DB24DBFFFFF -FFFFFFFFFFFFFFFFFFFF24992493FFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE4924DB6FFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFEC926DB6FFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFFFE6DB6CDBFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFA089249BFFFFF -FFFFFFFFFFFFFFFFFFFFF7FFFCFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFD2409249BFFFFF -FFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFE4926DB27FFFFF -FFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFE0099204BFFFFF -FFFFFFFFFFFFFFFFFFFFF7FFFCFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFFFF7FFFCFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFEC926DB6FFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF04912493FFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFFF24D92493FFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFED926DB6FFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFE7DBF4DBFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFE0106D007FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFE4926D127FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFD2449249BFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF2FFE0FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFECB36DB6FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFE0000000BFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFD2449249BFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFE4926DB67FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFEC3FEF9FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFD36C9249BFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFE0000000BFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFE4926D927FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFD24C9249BFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFB6DB64DBFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFE7FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFEC936D927FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFE00000003FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFD24492493FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFE4936D927FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFD24C92493FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFD00000003FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFE4926DB27FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFF24D9249BFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFF9FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFE6DF74DFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFE4926D927FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFE48049967FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFD2449249BFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFECBB7DB7FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFDFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFED936DB6FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFC2080008BFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFD2081248BFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFE4926DB27FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFC3FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFCFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFD26C9249BFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFE0000000FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFE09269827FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFD24C9249BFFFFF -FFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF6DBFCDFFFFFF -FFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFBFFFBFFFFFFF -FFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFDFFFFFFF -FFF807FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFDFFFFFFF -FFF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFBFFFBFFFFFFF -FFE005FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFDFFFFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFE7FFFCFFFFFFF -FF80007FFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFE4926DB27FFFFF -FF00007FFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFE00800003FFFFF -FE00001FFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFD24892493FFFFF -FC00000FFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFE4926DB27FFFFF -F800001FFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFE7FFFDFFFFFFF -F88000BFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFE7FFFCFFFFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFBFFFFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFBFFFFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFE7FFFCFFFFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFDFFFFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFBFFFBFFFFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFD24892493FFFFF -FFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFC00000003FFFFF -FFE001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFE4924DB27FFFFF -FFE001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFD24D9249BFFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFCFFFFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFBFFFBFFFFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFDFFFFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFDFFFFFFF -FFE001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFBFFFBFFFFFFF -FFE001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFDFFFFFFF -FFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFE6DBFCFFFFFFF -FFE001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFE4924DB67FFFFF -FFE001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFC00000003FFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFD24092493FFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFED936DB6FFFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFBFFFBFFFFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFDFFFFFFF -FFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFBFFFBFFFFFFF -FFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFCFFFFFFF -FFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFF9FFFFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFEDB36DB6FFFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFD20892493FFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFC00000003FFFFF -FFE001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFEC924DB6FFFFFF -FFC081FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFE7FFFCFFFFFFF -FFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFCFFFFFFF -FFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFBFFFBFFFFFFF -FFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFDFFFFFFF -FFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFCFFFFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFBFFFFFFFFFFF -FFE001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF3FFFFFFFFFFF -FFC081FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFF24D9249BFFFFF -FFF029FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD9FFFFFFFFFFFFFEC124832FFFFFF -FFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC93FFFFFFFFFFFFE49249B07FFFFF -FFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFFFFFFFFFFFF24D92493FFFFF -FFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFBFFF9FFFFFFF -FFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFBFFFFFFFFFFF -FFE817FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFF7FFFCFFFFFFF -FFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFF7FFFDFFFFFFF -FFF005FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFBFFFFFFFFFFF -FFC0A1FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFF7FFFCFFFFFFF -FFF029FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFF7FFFCFFFFFFF -FFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFEC926DB7FFFFFF -FFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFE20002093FFFFF -FFF80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFD24892493FFFFF -FFE947FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFED926DB67FFFFF -FFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFF87BFFFFF -FFE083FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF7FFFCFFFFFFF -FFF0A1FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000000000000000000FFFBFFFFFFFFFFF -FFF2AFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000000000000000000FFFBFFFDFFFFFFF -FFE1A3FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9B6FFF7FFFCFFFFFFF -FFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEF3FFFFFFFFFFF -FFEFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFED9B4013FFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB6D8000024FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000007FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFED9B418000007FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6D834000003FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7C300003FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6C9B4587EC367FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87C7F63C7FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB7D87C5BC3C7FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6C9345800C34FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8780007CFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB6D83008068FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6D9B0D83E030FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0D03A078FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB6D8701A0687FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6D9B0D03E0F0FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6DFB0F03E0F0FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB6D1F000041FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFF0E0000F1FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6D920C1741F1FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB6C3E0DB041FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3E3FF1F3FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFB6C922C3FE1B3FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFC3E3FA0E3FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFC3E3FE3E1FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6D906C3FE1A2FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3C7FE3C1FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDF6C3C7DA2C1FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6C906CBFE587FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC787FC7C7FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB6C30EF86CFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6D9068BFC58FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FF878FF8F8FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB68B0ED868FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6FF070BF8F8FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6DD161FF8F87FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB61B1FD8609FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1F1FF0F07FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB6C9161BF0F17FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB61F17D161FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1E3FF163FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB6C8361BF0F3FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1E3FD163FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1E7FE363FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB648365FE2C3FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC387FC363FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB6587FC340FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB6C8345FE6C3FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83C7FC3C0FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7EDB4D87EC344FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB6C830FBC7C7FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6F8B0FF87CFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6EDB0D87EC30FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEF800FF878FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB6C8001B869FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7EDB000000B1FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03000001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDB6C036C0001BFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FDB03FFEC007FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFF807FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDB6C037FFF81BFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFF81FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFF83FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB6C036DFF03FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFF03FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFEDA0FFFFF03FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDB6C0FFFFF07FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFF07FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB7ED80FFFFD03FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6C1F7FFE01FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB681FFFFE01FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB7ED80FFFFC03FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF681FFFFE0FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB681FFFFC0FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB7ED83FFFFC0FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFC0FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDB601B7FFC1FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDBFFD03FFFFC1FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFF81FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDB601F6FF80FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFF81FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDBFFC07FFFF81FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB601B6DF80FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FFFF83FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00017E07FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000307FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000007FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDFFFE00000007FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000007FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCE000007FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDB7FFFF000007FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDE030007FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDB7DC01E12FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6DB7C9B801E7DFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00803EFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB7ED800003CFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6DB7C00007EFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDFFC00007DFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB76D8200004FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFF0C000007FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF36DB60C000007FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDBFED100000097FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC10C00000FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF36DB401F00000FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE811C80001FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF823FD0001FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB26DB043B6D823FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE807FFBC03FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE187FFFC07FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB26DA00FB6F80FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFF80FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDBFC11FDFF00FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB76D821DBFF107FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF843FFFE00FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6DB60C36DFE21FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDBF6D007FFFC07FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFF6C10FFFFC07FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6DB608F6DF80FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEC11FFFF88FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFED9B6C23FFFF19FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6DB043B6FF01FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF043FFFE03FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6D936087FFFE01FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6DB08FB6F800FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FF7F801FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6D93411FFFF089FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF821DBEF01FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6D863FBFF11FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6D92043EEFE21FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FFFC03FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDFB6D10FDB7C03FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6D9A08F7FF847FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFF803FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFED9B6C31FDB6083FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6DB021F7FF107FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6DB043FFFE10FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6DFB6887FDBE03FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FFFC03FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6D900FFFFC07FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6FFB618F6DF047FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE11FFFF08FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6D823DB7F18FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF043FFFE00FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB7FFF0C3FFFE003FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB6D807DB7C037FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF08FFFF840FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6FFB08FFFF846FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB6C11EDBF08FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC21FFFF10FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB6FD861FEFF11FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6803EDFE01FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6887FFFC23FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB6FD00FFFFC22FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF610F6FF841FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6FFB611FEDF881FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDB6FC31FFFF883FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFFF00FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6DDB443B6DE21FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDB6F807FFFE11FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFF087FFFC03FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6DDA08F76F847FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDBFE18FDFF847FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDB6C11FFFF087FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB6D9821BA6F107FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FFFF007FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF66DB6803FFFE00FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FD047B37C22FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFF7C03FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDB601FEDF047FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF811FBFF887FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF821DFFF08FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF043F6FF01FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF043FFFE11FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807DBBC01FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807B7F861FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0041FF843FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00401F0C3FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDBFFFFC0000F10FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDBFFFFC0000F00FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6FFE798000C01FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03E000C31FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDB7F923E000023FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFE49C000043FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000000007FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6DB64C000030007FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000007840FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFA0000079FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6DB600000037FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000003FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6DBFEC00000007FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6DB008000027FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF020C00000FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6DB76001C000013FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDA007A00006FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFED800FF0003CFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9B6DB7001EF8003FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD043FBE001FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFF6C007DB7C00FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD9B6DB000F6DFE007FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF861FFFFE007FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6DBB6003EDB7E00FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFED9B6D8007F6FF801FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFF6D830FFFFF043FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB6DBB001EEDBE083FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6C003FFFFC107FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6D9B6C107FFFF820FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6DB000F66DF043FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6001FFFFE087FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6C9B6083FFFFC10FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6D8007B7EF821FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801FFFFF043FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB6C92041FFFFE083FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEC003DBEFC107FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC10FFBFF820FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB6C9020FF6FF0C3FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE041FFFFE087FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6FFF6087FFBFC11FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB6C800FFFFF861FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF820FFFFF043FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFDB6FDB0C3FEDBE083FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6C087FFFFC307FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6C107FFFF8207FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFEDB6FD861FFFDF045FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6043FFFFE18FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB6083EFFFC10FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFE6DB6CC30FFF6F843FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF861FFFFF0C7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFDB7EDB041F6FFE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFF76DB6C187DFFFC207FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC10FFFFF8607FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFEDB6ED861FB6FF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFBFEDB60C3FFFFE10EFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFDB76DB6087FFFFC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFF6DB6E830FDB6F803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFEDB061FFFFE087FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFEDB26DB0C3FFFFE00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFEDB7C187DFB78007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF820FFFFF0C03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFF6DB26D041FFFFE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFDBE083EFDFC10BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFC10FEFFF861FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFF6DB26820FFF7F003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFF043FFDFE08FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFA087F7FFC21FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFB6DB24107EFFF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFF821FFFFF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFF6DFB6D043FB7FC101FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFF6DB2087FFFFC103FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFEDFC00FFFFF843FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFB6DBF6801FDB7E107FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFF6DB043F7FFE00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFF6DA007FFFF861FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFDB6DBB400FFDBE083FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFED803FFFFE001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFB6D003DBFFC105FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFCDB6DBA00F7FFF0413FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFF801FFBFF083FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFB6DDB6803EDB7E187FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFDB6D9007BFFF820FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFBFFC00FFFFF861FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFEDDB401F6DBF0C3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFF7FFB6D003FBFFC107FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFB7FFB6C007FFFFC307FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFEFFFFDA00F66DF041FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFF6801FFFFE083FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFEDB7FFE2003FFFFC18FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFDBFFDFFC8007B76F821FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFF8001FBFFF043FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFEDB6FFE001FFDFE087FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFEFFFFFFFE823DB7FC10FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFF0021FFF821FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFDB7EDB64F200016DF043FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFF00000003FE087FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFF6DBFFD000C0001FC10FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFF6DBFEDB600060000F861FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFC00030000F0C3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFEDB36DB76000400000E087FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFED8000200001830FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFC0000100000021FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFB6D936DB00007080000043FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFE0100F040800187FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFF7FFF6DFF40203F80040000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFB6D926C0000FEC0000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFF80003FDE0000103FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFDB6FFB6DB0080FCDA00181E7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFDB6D9240007FB6D001C9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFE0180FFFFF803E7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFF6DB6FDB6C0203F64DB043FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFF6D90001FEDF6FC23FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFDB6D80403FFFFFFE01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FB66DB6FDB0180FDB6E9FC09FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFE80007FFFFFFF000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FEDB6FDB60100FFFFDFFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -DB76DB6E80207FEDB2FF0003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFE0001FFFFFFF8080FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -F6DB6DD00403EDB7FFF0103FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -DFFEDB60101FFFFFBFC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -DFFFDB00807FFFFFFE0203FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -F6DB6C0200FA6DBFFC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFF80007FFFFFFF0003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -DB6680201FFFFFFF8081FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FEDB00C07DBB6DFE0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFF0381FFFFFFFC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -DBFE1F0FFFFFFFFC7E7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -end -restore -%%Trailer diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob37.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob37.gif deleted file mode 100755 index e75e8fe68..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob37.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob37.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob37.pdf deleted file mode 100644 index 3fa85b940..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob37.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aJupi_tld.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aJupi_tld.eps deleted file mode 100755 index dd0ef3bdc..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aJupi_tld.eps +++ /dev/null @@ -1,1547 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: AcJupi_tld.eps - View 1 -- /teacher/CAPA/physimage -%%Creator: Tailor -%%CreationDate: Mon Sep 26 09:41:28 1994 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 16 469 309 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -%%BeginResource: procset (Tailor 1.0) -/TailorGroupBegin {pop} def /TailorGroupEnd {} def -/TailorBlockBegin {pop pop pop} def /TailorBlockEnd {} def -/TailorSetUniformStroke {pop} def -%%EndResource -gsave --20 -55 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -%%EndSetup -gsave -0 0 612 792 rectclip -0 0 612 792 rectclip -gsave -0 setgray -1 setlinewidth -(* Creator: Mathematica\012* Creation date: Sat Nov 28 12:45:32 GMT-0500 1992\012) TailorGroupBegin -gsave -[1 0 0 1 0 0] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -newpath -systemdict -begin -0 0 468 648 setbbox -0 0 moveto -468 0 lineto -468 648 lineto -0 648 lineto -end -clip -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -0 0 0.5 nxsetrgbcolor -0.001 setlinewidth -1 setlinecap -1 setlinejoin -gsave -newpath -systemdict -begin -0.23085 0 0.23085 0.61803 setbbox -0.23085 0 moveto -0.23085 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.43789 0 0.43789 0.61803 setbbox -0.43789 0 moveto -0.43789 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.64493 0 0.64493 0.61803 setbbox -0.64493 0 moveto -0.64493 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.85197 0 0.85197 0.61803 setbbox -0.85197 0 moveto -0.85197 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.07808 1 0.07808 setbbox -0 0.07808 moveto -1 0.07808 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.18983 1 0.18983 setbbox -0 0.18983 moveto -1 0.18983 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.30159 1 0.30159 setbbox -0 0.30159 moveto -1 0.30159 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.41334 1 0.41334 setbbox -0 0.41334 moveto -1 0.41334 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.52509 1 0.52509 setbbox -0 0.52509 moveto -1 0.52509 lineto -end -stroke -grestore -0 nxsetgray -0.002 setlinewidth -gsave -newpath -systemdict -begin -0.02381 0 0.02381 0.00625 setbbox -0.02381 0 moveto -0.02381 0.00625 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -/Courier-Oblique findfont 1 scalefont [22 0 0 22 0 0] makefont -45 -exch -defineuserobject -45 execuserobject setfont -77.453003 209.944 moveto -(0) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0.23085 0 0.23085 0.00625 setbbox -0.23085 0 moveto -0.23085 0.00625 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -144.854004 209.944 moveto -(0.5) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0.43789 0 0.43789 0.00625 setbbox -0.43789 0 moveto -0.43789 0.00625 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -240.022003 210.108994 moveto -(1) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0.64493 0 0.64493 0.00625 setbbox -0.64493 0 moveto -0.64493 0.00625 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -307.423004 209.944 moveto -(1.5) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0.85197 0 0.85197 0.00625 setbbox -0.85197 0 moveto -0.85197 0.00625 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -401.839996 210.108994 moveto -(2) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -0.001 setlinewidth -gsave -newpath -systemdict -begin -0.06522 0 0.06522 0.00375 setbbox -0.06522 0 moveto -0.06522 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.10663 0 0.10663 0.00375 setbbox -0.10663 0 moveto -0.10663 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.14803 0 0.14803 0.00375 setbbox -0.14803 0 moveto -0.14803 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.18944 0 0.18944 0.00375 setbbox -0.18944 0 moveto -0.18944 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.27226 0 0.27226 0.00375 setbbox -0.27226 0 moveto -0.27226 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.31366 0 0.31366 0.00375 setbbox -0.31366 0 moveto -0.31366 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.35507 0 0.35507 0.00375 setbbox -0.35507 0 moveto -0.35507 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.39648 0 0.39648 0.00375 setbbox -0.39648 0 moveto -0.39648 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.4793 0 0.4793 0.00375 setbbox -0.4793 0 moveto -0.4793 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.5207 0 0.5207 0.00375 setbbox -0.5207 0 moveto -0.5207 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.56211 0 0.56211 0.00375 setbbox -0.56211 0 moveto -0.56211 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.60352 0 0.60352 0.00375 setbbox -0.60352 0 moveto -0.60352 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.68634 0 0.68634 0.00375 setbbox -0.68634 0 moveto -0.68634 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.72774 0 0.72774 0.00375 setbbox -0.72774 0 moveto -0.72774 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.76915 0 0.76915 0.00375 setbbox -0.76915 0 moveto -0.76915 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.81056 0 0.81056 0.00375 setbbox -0.81056 0 moveto -0.81056 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.89337 0 0.89337 0.00375 setbbox -0.89337 0 moveto -0.89337 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.93478 0 0.93478 0.00375 setbbox -0.93478 0 moveto -0.93478 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.97619 0 0.97619 0.00375 setbbox -0.97619 0 moveto -0.97619 0.00375 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 -28 -151.539993] concat -204.587997 174.039993 moveto -(Time \(sec\)) show -[1 0 0 1 -28 -151.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -0.002 setlinewidth -gsave -newpath -systemdict -begin -0 0 1 0 setbbox -0 0 moveto -1 0 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.07808 0.00625 0.07808 setbbox -0 0.07808 moveto -0.00625 0.07808 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -30.4939 254.354996 moveto -(-20) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0 0.18983 0.00625 0.18983 setbbox -0 0.18983 moveto -0.00625 0.18983 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -30.4939 297.859009 moveto -(-10) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0 0.30159 0.00625 0.30159 setbbox -0 0.30159 moveto -0.00625 0.30159 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -56.717499 341.368011 moveto -(0) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0 0.41334 0.00625 0.41334 setbbox -0 0.41334 moveto -0.00625 0.41334 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -44.883999 384.872009 moveto -(10) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0 0.52509 0.00625 0.52509 setbbox -0 0.52509 moveto -0.00625 0.52509 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -45.5 428.377014 moveto -(20) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -0.001 setlinewidth -gsave -newpath -systemdict -begin -0 0.10043 0.00375 0.10043 setbbox -0 0.10043 moveto -0.00375 0.10043 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.12278 0.00375 0.12278 setbbox -0 0.12278 moveto -0.00375 0.12278 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.14513 0.00375 0.14513 setbbox -0 0.14513 moveto -0.00375 0.14513 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.16748 0.00375 0.16748 setbbox -0 0.16748 moveto -0.00375 0.16748 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.21218 0.00375 0.21218 setbbox -0 0.21218 moveto -0.00375 0.21218 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.23453 0.00375 0.23453 setbbox -0 0.23453 moveto -0.00375 0.23453 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.25688 0.00375 0.25688 setbbox -0 0.25688 moveto -0.00375 0.25688 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.27923 0.00375 0.27923 setbbox -0 0.27923 moveto -0.00375 0.27923 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.32394 0.00375 0.32394 setbbox -0 0.32394 moveto -0.00375 0.32394 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.34629 0.00375 0.34629 setbbox -0 0.34629 moveto -0.00375 0.34629 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.36864 0.00375 0.36864 setbbox -0 0.36864 moveto -0.00375 0.36864 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.39099 0.00375 0.39099 setbbox -0 0.39099 moveto -0.00375 0.39099 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.43569 0.00375 0.43569 setbbox -0 0.43569 moveto -0.00375 0.43569 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.45804 0.00375 0.45804 setbbox -0 0.45804 moveto -0.00375 0.45804 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.48039 0.00375 0.48039 setbbox -0 0.48039 moveto -0.00375 0.48039 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.50274 0.00375 0.50274 setbbox -0 0.50274 moveto -0.00375 0.50274 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.05573 0.00375 0.05573 setbbox -0 0.05573 moveto -0.00375 0.05573 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.03338 0.00375 0.03338 setbbox -0 0.03338 moveto -0.00375 0.03338 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.01103 0.00375 0.01103 setbbox -0 0.01103 moveto -0.00375 0.01103 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.54744 0.00375 0.54744 setbbox -0 0.54744 moveto -0.00375 0.54744 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.56979 0.00375 0.56979 setbbox -0 0.56979 moveto -0.00375 0.56979 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.59214 0.00375 0.59214 setbbox -0 0.59214 moveto -0.00375 0.59214 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.61449 0.00375 0.61449 setbbox -0 0.61449 moveto -0.00375 0.61449 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[0 1 -1 0 0.296501 -168.217972] concat -222.759995 -20.439899 moveto -(Upward Speed, \(m/s\)) show -[0 1 -1 0 0.296501 -168.217972] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -0.002 setlinewidth -gsave -newpath -systemdict -begin -0 0 0 0.61803 setbbox -0 0 moveto -0 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.02381 0.61178 0.02381 0.61803 setbbox -0.02381 0.61178 moveto -0.02381 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.23085 0.61178 0.23085 0.61803 setbbox -0.23085 0.61178 moveto -0.23085 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.43789 0.61178 0.43789 0.61803 setbbox -0.43789 0.61178 moveto -0.43789 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.64493 0.61178 0.64493 0.61803 setbbox -0.64493 0.61178 moveto -0.64493 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.85197 0.61178 0.85197 0.61803 setbbox -0.85197 0.61178 moveto -0.85197 0.61803 lineto -end -stroke -grestore -0.001 setlinewidth -gsave -newpath -systemdict -begin -0.06522 0.61428 0.06522 0.61803 setbbox -0.06522 0.61428 moveto -0.06522 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.10663 0.61428 0.10663 0.61803 setbbox -0.10663 0.61428 moveto -0.10663 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.14803 0.61428 0.14803 0.61803 setbbox -0.14803 0.61428 moveto -0.14803 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.18944 0.61428 0.18944 0.61803 setbbox -0.18944 0.61428 moveto -0.18944 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.27226 0.61428 0.27226 0.61803 setbbox -0.27226 0.61428 moveto -0.27226 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.31366 0.61428 0.31366 0.61803 setbbox -0.31366 0.61428 moveto -0.31366 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.35507 0.61428 0.35507 0.61803 setbbox -0.35507 0.61428 moveto -0.35507 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.39648 0.61428 0.39648 0.61803 setbbox -0.39648 0.61428 moveto -0.39648 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.4793 0.61428 0.4793 0.61803 setbbox -0.4793 0.61428 moveto -0.4793 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.5207 0.61428 0.5207 0.61803 setbbox -0.5207 0.61428 moveto -0.5207 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.56211 0.61428 0.56211 0.61803 setbbox -0.56211 0.61428 moveto -0.56211 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.60352 0.61428 0.60352 0.61803 setbbox -0.60352 0.61428 moveto -0.60352 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.68634 0.61428 0.68634 0.61803 setbbox -0.68634 0.61428 moveto -0.68634 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.72774 0.61428 0.72774 0.61803 setbbox -0.72774 0.61428 moveto -0.72774 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.76915 0.61428 0.76915 0.61803 setbbox -0.76915 0.61428 moveto -0.76915 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.81056 0.61428 0.81056 0.61803 setbbox -0.81056 0.61428 moveto -0.81056 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.89337 0.61428 0.89337 0.61803 setbbox -0.89337 0.61428 moveto -0.89337 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.93478 0.61428 0.93478 0.61803 setbbox -0.93478 0.61428 moveto -0.93478 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.97619 0.61428 0.97619 0.61803 setbbox -0.97619 0.61428 moveto -0.97619 0.61803 lineto -end -stroke -grestore -0.002 setlinewidth -gsave -newpath -systemdict -begin -0 0.61803 1 0.61803 setbbox -0 0.61803 moveto -1 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.07808 1 0.07808 setbbox -0.99375 0.07808 moveto -1 0.07808 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.18983 1 0.18983 setbbox -0.99375 0.18983 moveto -1 0.18983 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.30159 1 0.30159 setbbox -0.99375 0.30159 moveto -1 0.30159 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.41334 1 0.41334 setbbox -0.99375 0.41334 moveto -1 0.41334 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.52509 1 0.52509 setbbox -0.99375 0.52509 moveto -1 0.52509 lineto -end -stroke -grestore -0.001 setlinewidth -gsave -newpath -systemdict -begin -0.99625 0.10043 1 0.10043 setbbox -0.99625 0.10043 moveto -1 0.10043 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.12278 1 0.12278 setbbox -0.99625 0.12278 moveto -1 0.12278 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.14513 1 0.14513 setbbox -0.99625 0.14513 moveto -1 0.14513 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.16748 1 0.16748 setbbox -0.99625 0.16748 moveto -1 0.16748 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.21218 1 0.21218 setbbox -0.99625 0.21218 moveto -1 0.21218 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.23453 1 0.23453 setbbox -0.99625 0.23453 moveto -1 0.23453 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.25688 1 0.25688 setbbox -0.99625 0.25688 moveto -1 0.25688 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.27923 1 0.27923 setbbox -0.99625 0.27923 moveto -1 0.27923 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.32394 1 0.32394 setbbox -0.99625 0.32394 moveto -1 0.32394 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.34629 1 0.34629 setbbox -0.99625 0.34629 moveto -1 0.34629 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.36864 1 0.36864 setbbox -0.99625 0.36864 moveto -1 0.36864 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.39099 1 0.39099 setbbox -0.99625 0.39099 moveto -1 0.39099 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.43569 1 0.43569 setbbox -0.99625 0.43569 moveto -1 0.43569 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.45804 1 0.45804 setbbox -0.99625 0.45804 moveto -1 0.45804 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.48039 1 0.48039 setbbox -0.99625 0.48039 moveto -1 0.48039 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.50274 1 0.50274 setbbox -0.99625 0.50274 moveto -1 0.50274 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.05573 1 0.05573 setbbox -0.99625 0.05573 moveto -1 0.05573 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.03338 1 0.03338 setbbox -0.99625 0.03338 moveto -1 0.03338 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.01103 1 0.01103 setbbox -0.99625 0.01103 moveto -1 0.01103 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.54744 1 0.54744 setbbox -0.99625 0.54744 moveto -1 0.54744 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.56979 1 0.56979 setbbox -0.99625 0.56979 moveto -1 0.56979 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.59214 1 0.59214 setbbox -0.99625 0.59214 moveto -1 0.59214 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.61449 1 0.61449 setbbox -0.99625 0.61449 moveto -1 0.61449 lineto -end -stroke -grestore -0.002 setlinewidth -gsave -newpath -systemdict -begin -1 0 1 0.61803 setbbox -1 0 moveto -1 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.30159 1 0.30159 setbbox -0 0.30159 moveto -1 0.30159 lineto -end -stroke -grestore -0.004 setlinewidth -gsave -newpath -systemdict -begin -0.02381 0.01472 0.97619 0.60332 setbbox -0.02381 0.60332 moveto -0.06349 0.57879 lineto -0.10317 0.55427 lineto -0.14286 0.52974 lineto -0.18254 0.50522 lineto -0.22222 0.48069 lineto -0.2619 0.45617 lineto -0.30159 0.43164 lineto -0.34127 0.40712 lineto -0.38095 0.38259 lineto -0.42063 0.35807 lineto -0.46032 0.33354 lineto -0.5 0.30902 lineto -0.53968 0.28449 lineto -0.57937 0.25997 lineto -0.61905 0.23544 lineto -0.65873 0.21092 lineto -0.69841 0.18639 lineto -0.7381 0.16187 lineto -0.77778 0.13734 lineto -0.81746 0.11282 lineto -0.85714 0.08829 lineto -0.89683 0.06377 lineto -0.93651 0.03924 lineto -0.97619 0.01472 lineto -end -stroke -grestore -grestore -TailorGroupEnd -grestore -gsave -[1 0 0 -1 0 792] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Courier-Oblique diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aJupi_tld.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aJupi_tld.gif deleted file mode 100755 index 333349152..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aJupi_tld.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aMars_tld.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aMars_tld.eps deleted file mode 100755 index fe3b9dff8..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aMars_tld.eps +++ /dev/null @@ -1,1851 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: AcMars_tld.eps - View 1 -- /teacher/CAPA/physimage -%%Creator: Tailor -%%CreationDate: Mon Sep 26 09:42:49 1994 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 16 469 308 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -%%BeginResource: procset (Tailor 1.0) -/TailorGroupBegin {pop} def /TailorGroupEnd {} def -/TailorBlockBegin {pop pop pop} def /TailorBlockEnd {} def -/TailorSetUniformStroke {pop} def -%%EndResource -gsave --20 -55 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -%%EndSetup -gsave -0 0 612 792 rectclip -0 0 612 792 rectclip -gsave -0 setgray -1 setlinewidth -(* Creator: Mathematica\012* Creation date: Sat Nov 28 12:44:32 GMT-0500 1992\012) TailorGroupBegin -gsave -[1 0 0 1 0 0] matrix invertmatrix concat -[1 0 0 1 0 -169.093002] concat -newpath -systemdict -begin -0 0 468 648 setbbox -0 0 moveto -468 0 lineto -468 648 lineto -0 648 lineto -end -clip -[1 0 0 1 0 -169.093002] matrix invertmatrix concat -[385.721008 0 0 385.721008 78.261002 62.094986] concat -0 0 0.5 nxsetrgbcolor -0.001 setlinewidth -1 setlinecap -1 setlinejoin -gsave -newpath -systemdict -begin -0.21429 0 0.21429 0.61803 setbbox -0.21429 0 moveto -0.21429 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.40476 0 0.40476 0.61803 setbbox -0.40476 0 moveto -0.40476 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.59524 0 0.59524 0.61803 setbbox -0.59524 0 moveto -0.59524 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.78571 0 0.78571 0.61803 setbbox -0.78571 0 moveto -0.78571 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.09699 1 0.09699 setbbox -0 0.09699 moveto -1 0.09699 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.17611 1 0.17611 setbbox -0 0.17611 moveto -1 0.17611 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.25522 1 0.25522 setbbox -0 0.25522 moveto -1 0.25522 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.33433 1 0.33433 setbbox -0 0.33433 moveto -1 0.33433 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.41345 1 0.41345 setbbox -0 0.41345 moveto -1 0.41345 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.49256 1 0.49256 setbbox -0 0.49256 moveto -1 0.49256 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.57167 1 0.57167 setbbox -0 0.57167 moveto -1 0.57167 lineto -end -stroke -grestore -0 nxsetgray -0.002 setlinewidth -gsave -newpath -systemdict -begin -0.02381 0 0.02381 0.00625 setbbox -0.02381 0 moveto -0.02381 0.00625 lineto -end -stroke -grestore -[385.721008 0 0 385.721008 78.261002 62.094986] matrix invertmatrix concat -[1 0 0 1 0 -169.093002] concat -/Courier-Oblique findfont 1 scalefont [22 0 0 22 0 0] makefont -38 -exch -defineuserobject -38 execuserobject setfont -77.322899 210.496994 moveto -(0) show -[1 0 0 1 0 -169.093002] matrix invertmatrix concat -[385.721008 0 0 385.721008 78.261002 62.094986] concat -gsave -newpath -systemdict -begin -0.21429 0 0.21429 0.00625 setbbox -0.21429 0 moveto -0.21429 0.00625 lineto -end -stroke -grestore -[385.721008 0 0 385.721008 78.261002 62.094986] matrix invertmatrix concat -[1 0 0 1 0 -169.093002] concat -152.776993 210.662003 moveto -(2) show -[1 0 0 1 0 -169.093002] matrix invertmatrix concat -[385.721008 0 0 385.721008 78.261002 62.094986] concat -gsave -newpath -systemdict -begin -0.40476 0 0.40476 0.00625 setbbox -0.40476 0 moveto -0.40476 0.00625 lineto -end -stroke -grestore -[385.721008 0 0 385.721008 78.261002 62.094986] matrix invertmatrix concat -[1 0 0 1 0 -169.093002] concat -225.401001 210.662003 moveto -(4) show -[1 0 0 1 0 -169.093002] matrix invertmatrix concat -[385.721008 0 0 385.721008 78.261002 62.094986] concat -gsave -newpath -systemdict -begin -0.59524 0 0.59524 0.00625 setbbox -0.59524 0 moveto -0.59524 0.00625 lineto -end -stroke -grestore -[385.721008 0 0 385.721008 78.261002 62.094986] matrix invertmatrix concat -[1 0 0 1 0 -169.093002] concat -297.708008 210.496994 moveto -(6) show -[1 0 0 1 0 -169.093002] matrix invertmatrix concat -[385.721008 0 0 385.721008 78.261002 62.094986] concat -gsave -newpath -systemdict -begin -0.78571 0 0.78571 0.00625 setbbox -0.78571 0 moveto -0.78571 0.00625 lineto -end -stroke -grestore -[385.721008 0 0 385.721008 78.261002 62.094986] matrix invertmatrix concat -[1 0 0 1 0 -169.093002] concat -371.714996 210.496994 moveto -(8) show -[1 0 0 1 0 -169.093002] matrix invertmatrix concat -[385.721008 0 0 385.721008 78.261002 62.094986] concat -gsave -newpath -systemdict -begin -0.97619 0 0.97619 0.00625 setbbox -0.97619 0 moveto -0.97619 0.00625 lineto -end -stroke -grestore -[385.721008 0 0 385.721008 78.261002 62.094986] matrix invertmatrix concat -[1 0 0 1 0 -169.093002] concat -439.441986 210.496994 moveto -(10) show -[1 0 0 1 0 -169.093002] matrix invertmatrix concat -[385.721008 0 0 385.721008 78.261002 62.094986] concat -0.001 setlinewidth -gsave -newpath -systemdict -begin -0.0619 0 0.0619 0.00375 setbbox -0.0619 0 moveto -0.0619 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.1 0 0.1 0.00375 setbbox -0.1 0 moveto -0.1 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.1381 0 0.1381 0.00375 setbbox -0.1381 0 moveto -0.1381 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.17619 0 0.17619 0.00375 setbbox -0.17619 0 moveto -0.17619 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.25238 0 0.25238 0.00375 setbbox -0.25238 0 moveto -0.25238 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.29048 0 0.29048 0.00375 setbbox -0.29048 0 moveto -0.29048 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.32857 0 0.32857 0.00375 setbbox -0.32857 0 moveto -0.32857 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.36667 0 0.36667 0.00375 setbbox -0.36667 0 moveto -0.36667 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.44286 0 0.44286 0.00375 setbbox -0.44286 0 moveto -0.44286 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.48095 0 0.48095 0.00375 setbbox -0.48095 0 moveto -0.48095 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.51905 0 0.51905 0.00375 setbbox -0.51905 0 moveto -0.51905 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.55714 0 0.55714 0.00375 setbbox -0.55714 0 moveto -0.55714 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.63333 0 0.63333 0.00375 setbbox -0.63333 0 moveto -0.63333 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.67143 0 0.67143 0.00375 setbbox -0.67143 0 moveto -0.67143 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.70952 0 0.70952 0.00375 setbbox -0.70952 0 moveto -0.70952 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.74762 0 0.74762 0.00375 setbbox -0.74762 0 moveto -0.74762 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.82381 0 0.82381 0.00375 setbbox -0.82381 0 moveto -0.82381 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.8619 0 0.8619 0.00375 setbbox -0.8619 0 moveto -0.8619 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.9 0 0.9 0.00375 setbbox -0.9 0 moveto -0.9 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.9381 0 0.9381 0.00375 setbbox -0.9381 0 moveto -0.9381 0.00375 lineto -end -stroke -grestore -[385.721008 0 0 385.721008 78.261002 62.094986] matrix invertmatrix concat -[1 0 0 1 -16 -152.093002] concat -202.753006 174.593002 moveto -(Time \(sec\)) show -[1 0 0 1 -16 -152.093002] matrix invertmatrix concat -[385.721008 0 0 385.721008 78.261002 62.094986] concat -0.002 setlinewidth -gsave -newpath -systemdict -begin -0 0 1 0 setbbox -0 0 moveto -1 0 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.01788 0.00625 0.01788 setbbox -0 0.01788 moveto -0.00625 0.01788 lineto -end -stroke -grestore -[385.721008 0 0 385.721008 78.261002 62.094986] matrix invertmatrix concat -[1 0 0 1 0 -169.093002] concat -30.493799 231.408005 moveto -(-10) show -[1 0 0 1 0 -169.093002] matrix invertmatrix concat -[385.721008 0 0 385.721008 78.261002 62.094986] concat -gsave -newpath -systemdict -begin -0 0.09699 0.00625 0.09699 setbbox -0 0.09699 moveto -0.00625 0.09699 lineto -end -stroke -grestore -[385.721008 0 0 385.721008 78.261002 62.094986] matrix invertmatrix concat -[1 0 0 1 0 -169.093002] concat -43.6936 262.087006 moveto -(-5) show -[1 0 0 1 0 -169.093002] matrix invertmatrix concat -[385.721008 0 0 385.721008 78.261002 62.094986] concat -gsave -newpath -systemdict -begin -0 0.17611 0.00625 0.17611 setbbox -0 0.17611 moveto -0.00625 0.17611 lineto -end -stroke -grestore -[385.721008 0 0 385.721008 78.261002 62.094986] matrix invertmatrix concat -[1 0 0 1 0 -169.093002] concat -56.7174 292.44101 moveto -(0) show -[1 0 0 1 0 -169.093002] matrix invertmatrix concat -[385.721008 0 0 385.721008 78.261002 62.094986] concat -gsave -newpath -systemdict -begin -0 0.25522 0.00625 0.25522 setbbox -0 0.25522 moveto -0.00625 0.25522 lineto -end -stroke -grestore -[385.721008 0 0 385.721008 78.261002 62.094986] matrix invertmatrix concat -[1 0 0 1 0 -169.093002] concat -58.066101 323.119995 moveto -(5) show -[1 0 0 1 0 -169.093002] matrix invertmatrix concat -[385.721008 0 0 385.721008 78.261002 62.094986] concat -gsave -newpath -systemdict -begin -0 0.33433 0.00625 0.33433 setbbox -0 0.33433 moveto -0.00625 0.33433 lineto -end -stroke -grestore -[385.721008 0 0 385.721008 78.261002 62.094986] matrix invertmatrix concat -[1 0 0 1 0 -169.093002] concat -44.8839 353.468994 moveto -(10) show -[1 0 0 1 0 -169.093002] matrix invertmatrix concat -[385.721008 0 0 385.721008 78.261002 62.094986] concat -gsave -newpath -systemdict -begin -0 0.41345 0.00625 0.41345 setbbox -0 0.41345 moveto -0.00625 0.41345 lineto -end -stroke -grestore -[385.721008 0 0 385.721008 78.261002 62.094986] matrix invertmatrix concat -[1 0 0 1 0 -169.093002] concat -44.8839 383.988007 moveto -(15) show -[1 0 0 1 0 -169.093002] matrix invertmatrix concat -[385.721008 0 0 385.721008 78.261002 62.094986] concat -gsave -newpath -systemdict -begin -0 0.49256 0.00625 0.49256 setbbox -0 0.49256 moveto -0.00625 0.49256 lineto -end -stroke -grestore -[385.721008 0 0 385.721008 78.261002 62.094986] matrix invertmatrix concat -[1 0 0 1 0 -169.093002] concat -45.499901 414.502014 moveto -(20) show -[1 0 0 1 0 -169.093002] matrix invertmatrix concat -[385.721008 0 0 385.721008 78.261002 62.094986] concat -gsave -newpath -systemdict -begin -0 0.57167 0.00625 0.57167 setbbox -0 0.57167 moveto -0.00625 0.57167 lineto -end -stroke -grestore -[385.721008 0 0 385.721008 78.261002 62.094986] matrix invertmatrix concat -[1 0 0 1 0 -169.093002] concat -45.499901 445.015991 moveto -(25) show -[1 0 0 1 0 -169.093002] matrix invertmatrix concat -[385.721008 0 0 385.721008 78.261002 62.094986] concat -0.001 setlinewidth -gsave -newpath -systemdict -begin -0 0.0337 0.00375 0.0337 setbbox -0 0.0337 moveto -0.00375 0.0337 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.04952 0.00375 0.04952 setbbox -0 0.04952 moveto -0.00375 0.04952 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.06535 0.00375 0.06535 setbbox -0 0.06535 moveto -0.00375 0.06535 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.08117 0.00375 0.08117 setbbox -0 0.08117 moveto -0.00375 0.08117 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.11282 0.00375 0.11282 setbbox -0 0.11282 moveto -0.00375 0.11282 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.12864 0.00375 0.12864 setbbox -0 0.12864 moveto -0.00375 0.12864 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.14446 0.00375 0.14446 setbbox -0 0.14446 moveto -0.00375 0.14446 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.16028 0.00375 0.16028 setbbox -0 0.16028 moveto -0.00375 0.16028 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.19193 0.00375 0.19193 setbbox -0 0.19193 moveto -0.00375 0.19193 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.20775 0.00375 0.20775 setbbox -0 0.20775 moveto -0.00375 0.20775 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.22357 0.00375 0.22357 setbbox -0 0.22357 moveto -0.00375 0.22357 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.2394 0.00375 0.2394 setbbox -0 0.2394 moveto -0.00375 0.2394 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.27104 0.00375 0.27104 setbbox -0 0.27104 moveto -0.00375 0.27104 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.28687 0.00375 0.28687 setbbox -0 0.28687 moveto -0.00375 0.28687 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.30269 0.00375 0.30269 setbbox -0 0.30269 moveto -0.00375 0.30269 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.31851 0.00375 0.31851 setbbox -0 0.31851 moveto -0.00375 0.31851 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.35016 0.00375 0.35016 setbbox -0 0.35016 moveto -0.00375 0.35016 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.36598 0.00375 0.36598 setbbox -0 0.36598 moveto -0.00375 0.36598 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.3818 0.00375 0.3818 setbbox -0 0.3818 moveto -0.00375 0.3818 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.39762 0.00375 0.39762 setbbox -0 0.39762 moveto -0.00375 0.39762 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.42927 0.00375 0.42927 setbbox -0 0.42927 moveto -0.00375 0.42927 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.44509 0.00375 0.44509 setbbox -0 0.44509 moveto -0.00375 0.44509 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.46091 0.00375 0.46091 setbbox -0 0.46091 moveto -0.00375 0.46091 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.47674 0.00375 0.47674 setbbox -0 0.47674 moveto -0.00375 0.47674 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.50838 0.00375 0.50838 setbbox -0 0.50838 moveto -0.00375 0.50838 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.52421 0.00375 0.52421 setbbox -0 0.52421 moveto -0.00375 0.52421 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.54003 0.00375 0.54003 setbbox -0 0.54003 moveto -0.00375 0.54003 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.55585 0.00375 0.55585 setbbox -0 0.55585 moveto -0.00375 0.55585 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.00206 0.00375 0.00206 setbbox -0 0.00206 moveto -0.00375 0.00206 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.5875 0.00375 0.5875 setbbox -0 0.5875 moveto -0.00375 0.5875 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.60332 0.00375 0.60332 setbbox -0 0.60332 moveto -0.00375 0.60332 lineto -end -stroke -grestore -[385.721008 0 0 385.721008 78.261002 62.094986] matrix invertmatrix concat -[0 1 -1 0 0.296501 -168.770981] concat -222.205994 -20.4398 moveto -(Upward Speed, \(m/s\)) show -[0 1 -1 0 0.296501 -168.770981] matrix invertmatrix concat -[385.721008 0 0 385.721008 78.261002 62.094986] concat -0.002 setlinewidth -gsave -newpath -systemdict -begin -0 0 0 0.61803 setbbox -0 0 moveto -0 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.02381 0.61178 0.02381 0.61803 setbbox -0.02381 0.61178 moveto -0.02381 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.21429 0.61178 0.21429 0.61803 setbbox -0.21429 0.61178 moveto -0.21429 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.40476 0.61178 0.40476 0.61803 setbbox -0.40476 0.61178 moveto -0.40476 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.59524 0.61178 0.59524 0.61803 setbbox -0.59524 0.61178 moveto -0.59524 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.78571 0.61178 0.78571 0.61803 setbbox -0.78571 0.61178 moveto -0.78571 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.97619 0.61178 0.97619 0.61803 setbbox -0.97619 0.61178 moveto -0.97619 0.61803 lineto -end -stroke -grestore -0.001 setlinewidth -gsave -newpath -systemdict -begin -0.0619 0.61428 0.0619 0.61803 setbbox -0.0619 0.61428 moveto -0.0619 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.1 0.61428 0.1 0.61803 setbbox -0.1 0.61428 moveto -0.1 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.1381 0.61428 0.1381 0.61803 setbbox -0.1381 0.61428 moveto -0.1381 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.17619 0.61428 0.17619 0.61803 setbbox -0.17619 0.61428 moveto -0.17619 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.25238 0.61428 0.25238 0.61803 setbbox -0.25238 0.61428 moveto -0.25238 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.29048 0.61428 0.29048 0.61803 setbbox -0.29048 0.61428 moveto -0.29048 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.32857 0.61428 0.32857 0.61803 setbbox -0.32857 0.61428 moveto -0.32857 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.36667 0.61428 0.36667 0.61803 setbbox -0.36667 0.61428 moveto -0.36667 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.44286 0.61428 0.44286 0.61803 setbbox -0.44286 0.61428 moveto -0.44286 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.48095 0.61428 0.48095 0.61803 setbbox -0.48095 0.61428 moveto -0.48095 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.51905 0.61428 0.51905 0.61803 setbbox -0.51905 0.61428 moveto -0.51905 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.55714 0.61428 0.55714 0.61803 setbbox -0.55714 0.61428 moveto -0.55714 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.63333 0.61428 0.63333 0.61803 setbbox -0.63333 0.61428 moveto -0.63333 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.67143 0.61428 0.67143 0.61803 setbbox -0.67143 0.61428 moveto -0.67143 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.70952 0.61428 0.70952 0.61803 setbbox -0.70952 0.61428 moveto -0.70952 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.74762 0.61428 0.74762 0.61803 setbbox -0.74762 0.61428 moveto -0.74762 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.82381 0.61428 0.82381 0.61803 setbbox -0.82381 0.61428 moveto -0.82381 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.8619 0.61428 0.8619 0.61803 setbbox -0.8619 0.61428 moveto -0.8619 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.9 0.61428 0.9 0.61803 setbbox -0.9 0.61428 moveto -0.9 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.9381 0.61428 0.9381 0.61803 setbbox -0.9381 0.61428 moveto -0.9381 0.61803 lineto -end -stroke -grestore -0.002 setlinewidth -gsave -newpath -systemdict -begin -0 0.61803 1 0.61803 setbbox -0 0.61803 moveto -1 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.01788 1 0.01788 setbbox -0.99375 0.01788 moveto -1 0.01788 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.09699 1 0.09699 setbbox -0.99375 0.09699 moveto -1 0.09699 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.17611 1 0.17611 setbbox -0.99375 0.17611 moveto -1 0.17611 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.25522 1 0.25522 setbbox -0.99375 0.25522 moveto -1 0.25522 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.33433 1 0.33433 setbbox -0.99375 0.33433 moveto -1 0.33433 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.41345 1 0.41345 setbbox -0.99375 0.41345 moveto -1 0.41345 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.49256 1 0.49256 setbbox -0.99375 0.49256 moveto -1 0.49256 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.57167 1 0.57167 setbbox -0.99375 0.57167 moveto -1 0.57167 lineto -end -stroke -grestore -0.001 setlinewidth -gsave -newpath -systemdict -begin -0.99625 0.0337 1 0.0337 setbbox -0.99625 0.0337 moveto -1 0.0337 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.04952 1 0.04952 setbbox -0.99625 0.04952 moveto -1 0.04952 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.06535 1 0.06535 setbbox -0.99625 0.06535 moveto -1 0.06535 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.08117 1 0.08117 setbbox -0.99625 0.08117 moveto -1 0.08117 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.11282 1 0.11282 setbbox -0.99625 0.11282 moveto -1 0.11282 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.12864 1 0.12864 setbbox -0.99625 0.12864 moveto -1 0.12864 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.14446 1 0.14446 setbbox -0.99625 0.14446 moveto -1 0.14446 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.16028 1 0.16028 setbbox -0.99625 0.16028 moveto -1 0.16028 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.19193 1 0.19193 setbbox -0.99625 0.19193 moveto -1 0.19193 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.20775 1 0.20775 setbbox -0.99625 0.20775 moveto -1 0.20775 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.22357 1 0.22357 setbbox -0.99625 0.22357 moveto -1 0.22357 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.2394 1 0.2394 setbbox -0.99625 0.2394 moveto -1 0.2394 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.27104 1 0.27104 setbbox -0.99625 0.27104 moveto -1 0.27104 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.28687 1 0.28687 setbbox -0.99625 0.28687 moveto -1 0.28687 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.30269 1 0.30269 setbbox -0.99625 0.30269 moveto -1 0.30269 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.31851 1 0.31851 setbbox -0.99625 0.31851 moveto -1 0.31851 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.35016 1 0.35016 setbbox -0.99625 0.35016 moveto -1 0.35016 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.36598 1 0.36598 setbbox -0.99625 0.36598 moveto -1 0.36598 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.3818 1 0.3818 setbbox -0.99625 0.3818 moveto -1 0.3818 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.39762 1 0.39762 setbbox -0.99625 0.39762 moveto -1 0.39762 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.42927 1 0.42927 setbbox -0.99625 0.42927 moveto -1 0.42927 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.44509 1 0.44509 setbbox -0.99625 0.44509 moveto -1 0.44509 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.46091 1 0.46091 setbbox -0.99625 0.46091 moveto -1 0.46091 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.47674 1 0.47674 setbbox -0.99625 0.47674 moveto -1 0.47674 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.50838 1 0.50838 setbbox -0.99625 0.50838 moveto -1 0.50838 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.52421 1 0.52421 setbbox -0.99625 0.52421 moveto -1 0.52421 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.54003 1 0.54003 setbbox -0.99625 0.54003 moveto -1 0.54003 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.55585 1 0.55585 setbbox -0.99625 0.55585 moveto -1 0.55585 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.00206 1 0.00206 setbbox -0.99625 0.00206 moveto -1 0.00206 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.5875 1 0.5875 setbbox -0.99625 0.5875 moveto -1 0.5875 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.60332 1 0.60332 setbbox -0.99625 0.60332 moveto -1 0.60332 lineto -end -stroke -grestore -0.002 setlinewidth -gsave -newpath -systemdict -begin -1 0 1 0.61803 setbbox -1 0 moveto -1 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.17611 1 0.17611 setbbox -0 0.17611 moveto -1 0.17611 lineto -end -stroke -grestore -0.004 setlinewidth -gsave -newpath -systemdict -begin -0.02381 0.01472 0.97619 0.60332 setbbox -0.02381 0.60332 moveto -0.06349 0.57879 lineto -0.10317 0.55427 lineto -0.14286 0.52974 lineto -0.18254 0.50522 lineto -0.22222 0.48069 lineto -0.2619 0.45617 lineto -0.30159 0.43164 lineto -0.34127 0.40712 lineto -0.38095 0.38259 lineto -0.42063 0.35807 lineto -0.46032 0.33354 lineto -0.5 0.30902 lineto -0.53968 0.28449 lineto -0.57937 0.25997 lineto -0.61905 0.23544 lineto -0.65873 0.21092 lineto -0.69841 0.18639 lineto -0.7381 0.16187 lineto -0.77778 0.13734 lineto -0.81746 0.11282 lineto -0.85714 0.08829 lineto -0.89683 0.06377 lineto -0.93651 0.03924 lineto -0.97619 0.01472 lineto -end -stroke -grestore -grestore -TailorGroupEnd -grestore -gsave -[1 0 0 -1 0 792] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Courier-Oblique diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aMars_tld.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aMars_tld.gif deleted file mode 100755 index ab59d1e0b..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aMars_tld.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aNept_tld.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aNept_tld.eps deleted file mode 100755 index d167591eb..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aNept_tld.eps +++ /dev/null @@ -1,1381 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: AcNept_tld.eps - View 1 -- /teacher/CAPA/physimage -%%Creator: Tailor -%%CreationDate: Mon Sep 26 09:43:45 1994 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 16 469 309 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -%%BeginResource: procset (Tailor 1.0) -/TailorGroupBegin {pop} def /TailorGroupEnd {} def -/TailorBlockBegin {pop pop pop} def /TailorBlockEnd {} def -/TailorSetUniformStroke {pop} def -%%EndResource -gsave --20 -55 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -%%EndSetup -gsave -0 0 612 792 rectclip -0 0 612 792 rectclip -gsave -0 setgray -1 setlinewidth -(* Creator: Mathematica\012* Creation date: Sat Nov 28 12:50:13 GMT-0500 1992\012) TailorGroupBegin -gsave -[1 0 0 1 0 0] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -newpath -systemdict -begin -0 0 468 648 setbbox -0 0 moveto -468 0 lineto -468 648 lineto -0 648 lineto -end -clip -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -0 0 0.5 nxsetrgbcolor -0.001 setlinewidth -1 setlinecap -1 setlinejoin -gsave -newpath -systemdict -begin -0.2619 0 0.2619 0.61803 setbbox -0.2619 0 moveto -0.2619 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.5 0 0.5 0.61803 setbbox -0.5 0 moveto -0.5 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.7381 0 0.7381 0.61803 setbbox -0.7381 0 moveto -0.7381 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.10836 1 0.10836 setbbox -0 0.10836 moveto -1 0.10836 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.24213 1 0.24213 setbbox -0 0.24213 moveto -1 0.24213 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.3759 1 0.3759 setbbox -0 0.3759 moveto -1 0.3759 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.50968 1 0.50968 setbbox -0 0.50968 moveto -1 0.50968 lineto -end -stroke -grestore -0 nxsetgray -0.002 setlinewidth -gsave -newpath -systemdict -begin -0.02381 0 0.02381 0.00625 setbbox -0.02381 0 moveto -0.02381 0.00625 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -/Courier-Oblique findfont 1 scalefont [22 0 0 22 0 0] makefont -38 -exch -defineuserobject -38 execuserobject setfont -77.453003 209.944 moveto -(0) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0.2619 0 0.2619 0.00625 setbbox -0.2619 0 moveto -0.2619 0.00625 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -171.507996 210.108994 moveto -(1) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0.5 0 0.5 0.00625 setbbox -0.5 0 moveto -0.5 0.00625 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -264.816986 210.108994 moveto -(2) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0.7381 0 0.7381 0.00625 setbbox -0.7381 0 moveto -0.7381 0.00625 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -357.246002 209.944 moveto -(3) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0.97619 0 0.97619 0.00625 setbbox -0.97619 0 moveto -0.97619 0.00625 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -449.355011 210.108994 moveto -(4) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -0.001 setlinewidth -gsave -newpath -systemdict -begin -0.07143 0 0.07143 0.00375 setbbox -0.07143 0 moveto -0.07143 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.11905 0 0.11905 0.00375 setbbox -0.11905 0 moveto -0.11905 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.16667 0 0.16667 0.00375 setbbox -0.16667 0 moveto -0.16667 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.21429 0 0.21429 0.00375 setbbox -0.21429 0 moveto -0.21429 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.30952 0 0.30952 0.00375 setbbox -0.30952 0 moveto -0.30952 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.35714 0 0.35714 0.00375 setbbox -0.35714 0 moveto -0.35714 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.40476 0 0.40476 0.00375 setbbox -0.40476 0 moveto -0.40476 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.45238 0 0.45238 0.00375 setbbox -0.45238 0 moveto -0.45238 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.54762 0 0.54762 0.00375 setbbox -0.54762 0 moveto -0.54762 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.59524 0 0.59524 0.00375 setbbox -0.59524 0 moveto -0.59524 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.64286 0 0.64286 0.00375 setbbox -0.64286 0 moveto -0.64286 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.69048 0 0.69048 0.00375 setbbox -0.69048 0 moveto -0.69048 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.78571 0 0.78571 0.00375 setbbox -0.78571 0 moveto -0.78571 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.83333 0 0.83333 0.00375 setbbox -0.83333 0 moveto -0.83333 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.88095 0 0.88095 0.00375 setbbox -0.88095 0 moveto -0.88095 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.92857 0 0.92857 0.00375 setbbox -0.92857 0 moveto -0.92857 0.00375 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 -16 -151.539993] concat -204.587997 174.039993 moveto -(Time \(sec\)) show -[1 0 0 1 -16 -151.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -0.002 setlinewidth -gsave -newpath -systemdict -begin -0 0 1 0 setbbox -0 0 moveto -1 0 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.10836 0.00625 0.10836 setbbox -0 0.10836 moveto -0.00625 0.10836 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -30.4939 266.143005 moveto -(-10) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0 0.24213 0.00625 0.24213 setbbox -0 0.24213 moveto -0.00625 0.24213 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -56.717499 318.220001 moveto -(0) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0 0.3759 0.00625 0.3759 setbbox -0 0.3759 moveto -0.00625 0.3759 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -44.883999 370.296997 moveto -(10) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0 0.50968 0.00625 0.50968 setbbox -0 0.50968 moveto -0.00625 0.50968 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -45.5 422.377991 moveto -(20) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -0.001 setlinewidth -gsave -newpath -systemdict -begin -0 0.13511 0.00375 0.13511 setbbox -0 0.13511 moveto -0.00375 0.13511 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.16187 0.00375 0.16187 setbbox -0 0.16187 moveto -0.00375 0.16187 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.18862 0.00375 0.18862 setbbox -0 0.18862 moveto -0.00375 0.18862 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.21538 0.00375 0.21538 setbbox -0 0.21538 moveto -0.00375 0.21538 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.26888 0.00375 0.26888 setbbox -0 0.26888 moveto -0.00375 0.26888 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.29564 0.00375 0.29564 setbbox -0 0.29564 moveto -0.00375 0.29564 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.32239 0.00375 0.32239 setbbox -0 0.32239 moveto -0.00375 0.32239 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.34915 0.00375 0.34915 setbbox -0 0.34915 moveto -0.00375 0.34915 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.40266 0.00375 0.40266 setbbox -0 0.40266 moveto -0.00375 0.40266 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.42941 0.00375 0.42941 setbbox -0 0.42941 moveto -0.00375 0.42941 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.45617 0.00375 0.45617 setbbox -0 0.45617 moveto -0.00375 0.45617 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.48292 0.00375 0.48292 setbbox -0 0.48292 moveto -0.00375 0.48292 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.0816 0.00375 0.0816 setbbox -0 0.0816 moveto -0.00375 0.0816 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.05485 0.00375 0.05485 setbbox -0 0.05485 moveto -0.00375 0.05485 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.02809 0.00375 0.02809 setbbox -0 0.02809 moveto -0.00375 0.02809 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.00134 0.00375 0.00134 setbbox -0 0.00134 moveto -0.00375 0.00134 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.53643 0.00375 0.53643 setbbox -0 0.53643 moveto -0.00375 0.53643 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.56319 0.00375 0.56319 setbbox -0 0.56319 moveto -0.00375 0.56319 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.58994 0.00375 0.58994 setbbox -0 0.58994 moveto -0.00375 0.58994 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.6167 0.00375 0.6167 setbbox -0 0.6167 moveto -0.00375 0.6167 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[0 1 -1 0 0.296501 -168.217972] concat -222.759995 -20.439899 moveto -(Upward Speed, \(m/s\)) show -[0 1 -1 0 0.296501 -168.217972] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -0.002 setlinewidth -gsave -newpath -systemdict -begin -0 0 0 0.61803 setbbox -0 0 moveto -0 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.02381 0.61178 0.02381 0.61803 setbbox -0.02381 0.61178 moveto -0.02381 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.2619 0.61178 0.2619 0.61803 setbbox -0.2619 0.61178 moveto -0.2619 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.5 0.61178 0.5 0.61803 setbbox -0.5 0.61178 moveto -0.5 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.7381 0.61178 0.7381 0.61803 setbbox -0.7381 0.61178 moveto -0.7381 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.97619 0.61178 0.97619 0.61803 setbbox -0.97619 0.61178 moveto -0.97619 0.61803 lineto -end -stroke -grestore -0.001 setlinewidth -gsave -newpath -systemdict -begin -0.07143 0.61428 0.07143 0.61803 setbbox -0.07143 0.61428 moveto -0.07143 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.11905 0.61428 0.11905 0.61803 setbbox -0.11905 0.61428 moveto -0.11905 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.16667 0.61428 0.16667 0.61803 setbbox -0.16667 0.61428 moveto -0.16667 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.21429 0.61428 0.21429 0.61803 setbbox -0.21429 0.61428 moveto -0.21429 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.30952 0.61428 0.30952 0.61803 setbbox -0.30952 0.61428 moveto -0.30952 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.35714 0.61428 0.35714 0.61803 setbbox -0.35714 0.61428 moveto -0.35714 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.40476 0.61428 0.40476 0.61803 setbbox -0.40476 0.61428 moveto -0.40476 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.45238 0.61428 0.45238 0.61803 setbbox -0.45238 0.61428 moveto -0.45238 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.54762 0.61428 0.54762 0.61803 setbbox -0.54762 0.61428 moveto -0.54762 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.59524 0.61428 0.59524 0.61803 setbbox -0.59524 0.61428 moveto -0.59524 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.64286 0.61428 0.64286 0.61803 setbbox -0.64286 0.61428 moveto -0.64286 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.69048 0.61428 0.69048 0.61803 setbbox -0.69048 0.61428 moveto -0.69048 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.78571 0.61428 0.78571 0.61803 setbbox -0.78571 0.61428 moveto -0.78571 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.83333 0.61428 0.83333 0.61803 setbbox -0.83333 0.61428 moveto -0.83333 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.88095 0.61428 0.88095 0.61803 setbbox -0.88095 0.61428 moveto -0.88095 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.92857 0.61428 0.92857 0.61803 setbbox -0.92857 0.61428 moveto -0.92857 0.61803 lineto -end -stroke -grestore -0.002 setlinewidth -gsave -newpath -systemdict -begin -0 0.61803 1 0.61803 setbbox -0 0.61803 moveto -1 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.10836 1 0.10836 setbbox -0.99375 0.10836 moveto -1 0.10836 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.24213 1 0.24213 setbbox -0.99375 0.24213 moveto -1 0.24213 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.3759 1 0.3759 setbbox -0.99375 0.3759 moveto -1 0.3759 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.50968 1 0.50968 setbbox -0.99375 0.50968 moveto -1 0.50968 lineto -end -stroke -grestore -0.001 setlinewidth -gsave -newpath -systemdict -begin -0.99625 0.13511 1 0.13511 setbbox -0.99625 0.13511 moveto -1 0.13511 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.16187 1 0.16187 setbbox -0.99625 0.16187 moveto -1 0.16187 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.18862 1 0.18862 setbbox -0.99625 0.18862 moveto -1 0.18862 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.21538 1 0.21538 setbbox -0.99625 0.21538 moveto -1 0.21538 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.26888 1 0.26888 setbbox -0.99625 0.26888 moveto -1 0.26888 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.29564 1 0.29564 setbbox -0.99625 0.29564 moveto -1 0.29564 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.32239 1 0.32239 setbbox -0.99625 0.32239 moveto -1 0.32239 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.34915 1 0.34915 setbbox -0.99625 0.34915 moveto -1 0.34915 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.40266 1 0.40266 setbbox -0.99625 0.40266 moveto -1 0.40266 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.42941 1 0.42941 setbbox -0.99625 0.42941 moveto -1 0.42941 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.45617 1 0.45617 setbbox -0.99625 0.45617 moveto -1 0.45617 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.48292 1 0.48292 setbbox -0.99625 0.48292 moveto -1 0.48292 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.0816 1 0.0816 setbbox -0.99625 0.0816 moveto -1 0.0816 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.05485 1 0.05485 setbbox -0.99625 0.05485 moveto -1 0.05485 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.02809 1 0.02809 setbbox -0.99625 0.02809 moveto -1 0.02809 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.00134 1 0.00134 setbbox -0.99625 0.00134 moveto -1 0.00134 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.53643 1 0.53643 setbbox -0.99625 0.53643 moveto -1 0.53643 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.56319 1 0.56319 setbbox -0.99625 0.56319 moveto -1 0.56319 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.58994 1 0.58994 setbbox -0.99625 0.58994 moveto -1 0.58994 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.6167 1 0.6167 setbbox -0.99625 0.6167 moveto -1 0.6167 lineto -end -stroke -grestore -0.002 setlinewidth -gsave -newpath -systemdict -begin -1 0 1 0.61803 setbbox -1 0 moveto -1 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.24213 1 0.24213 setbbox -0 0.24213 moveto -1 0.24213 lineto -end -stroke -grestore -0.004 setlinewidth -gsave -newpath -systemdict -begin -0.02381 0.01472 0.97619 0.60332 setbbox -0.02381 0.60332 moveto -0.06349 0.57879 lineto -0.10317 0.55427 lineto -0.14286 0.52974 lineto -0.18254 0.50522 lineto -0.22222 0.48069 lineto -0.2619 0.45617 lineto -0.30159 0.43164 lineto -0.34127 0.40712 lineto -0.38095 0.38259 lineto -0.42063 0.35807 lineto -0.46032 0.33354 lineto -0.5 0.30902 lineto -0.53968 0.28449 lineto -0.57937 0.25997 lineto -0.61905 0.23544 lineto -0.65873 0.21092 lineto -0.69841 0.18639 lineto -0.7381 0.16187 lineto -0.77778 0.13734 lineto -0.81746 0.11282 lineto -0.85714 0.08829 lineto -0.89683 0.06377 lineto -0.93651 0.03924 lineto -0.97619 0.01472 lineto -end -stroke -grestore -grestore -TailorGroupEnd -grestore -gsave -[1 0 0 -1 0 792] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Courier-Oblique diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aNept_tld.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aNept_tld.gif deleted file mode 100755 index f76ab1251..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aNept_tld.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aSatu_tld.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aSatu_tld.eps deleted file mode 100755 index 486da9712..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aSatu_tld.eps +++ /dev/null @@ -1,1497 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: AcSatu_tld.eps - View 1 -- /teacher/CAPA/physimage -%%Creator: Tailor -%%CreationDate: Mon Sep 26 09:44:29 1994 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 16 469 309 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -%%BeginResource: procset (Tailor 1.0) -/TailorGroupBegin {pop} def /TailorGroupEnd {} def -/TailorBlockBegin {pop pop pop} def /TailorBlockEnd {} def -/TailorSetUniformStroke {pop} def -%%EndResource -gsave --20 -55 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -%%EndSetup -gsave -0 0 612 792 rectclip -0 0 612 792 rectclip -gsave -0 setgray -1 setlinewidth -(* Creator: Mathematica\012* Creation date: Sat Nov 28 12:47:13 GMT-0500 1992\012) TailorGroupBegin -gsave -[1 0 0 1 0 0] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -newpath -systemdict -begin -0 0 468 648 setbbox -0 0 moveto -468 0 lineto -468 648 lineto -0 648 lineto -end -clip -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -0 0 0.5 nxsetrgbcolor -0.001 setlinewidth -1 setlinecap -1 setlinejoin -gsave -newpath -systemdict -begin -0.21429 0 0.21429 0.61803 setbbox -0.21429 0 moveto -0.21429 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.40476 0 0.40476 0.61803 setbbox -0.40476 0 moveto -0.40476 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.59524 0 0.59524 0.61803 setbbox -0.59524 0 moveto -0.59524 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.78571 0 0.78571 0.61803 setbbox -0.78571 0 moveto -0.78571 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.12203 1 0.12203 setbbox -0 0.12203 moveto -1 0.12203 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.25211 1 0.25211 setbbox -0 0.25211 moveto -1 0.25211 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.38219 1 0.38219 setbbox -0 0.38219 moveto -1 0.38219 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.51226 1 0.51226 setbbox -0 0.51226 moveto -1 0.51226 lineto -end -stroke -grestore -0 nxsetgray -0.002 setlinewidth -gsave -newpath -systemdict -begin -0.02381 0 0.02381 0.00625 setbbox -0.02381 0 moveto -0.02381 0.00625 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -/Courier-Oblique findfont 1 scalefont [22 0 0 22 0 0] makefont -38 -exch -defineuserobject -38 execuserobject setfont -77.453003 209.944 moveto -(0) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0.21429 0 0.21429 0.00625 setbbox -0.21429 0 moveto -0.21429 0.00625 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -152.973999 210.108994 moveto -(1) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0.40476 0 0.40476 0.00625 setbbox -0.40476 0 moveto -0.40476 0.00625 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -227.740005 210.108994 moveto -(2) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0.59524 0 0.59524 0.00625 setbbox -0.59524 0 moveto -0.59524 0.00625 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -301.630005 209.944 moveto -(3) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0.78571 0 0.78571 0.00625 setbbox -0.78571 0 moveto -0.78571 0.00625 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -375.200012 210.108994 moveto -(4) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0.97619 0 0.97619 0.00625 setbbox -0.97619 0 moveto -0.97619 0.00625 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -449.56601 210.438995 moveto -(5) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -0.001 setlinewidth -gsave -newpath -systemdict -begin -0.0619 0 0.0619 0.00375 setbbox -0.0619 0 moveto -0.0619 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.1 0 0.1 0.00375 setbbox -0.1 0 moveto -0.1 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.1381 0 0.1381 0.00375 setbbox -0.1381 0 moveto -0.1381 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.17619 0 0.17619 0.00375 setbbox -0.17619 0 moveto -0.17619 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.25238 0 0.25238 0.00375 setbbox -0.25238 0 moveto -0.25238 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.29048 0 0.29048 0.00375 setbbox -0.29048 0 moveto -0.29048 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.32857 0 0.32857 0.00375 setbbox -0.32857 0 moveto -0.32857 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.36667 0 0.36667 0.00375 setbbox -0.36667 0 moveto -0.36667 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.44286 0 0.44286 0.00375 setbbox -0.44286 0 moveto -0.44286 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.48095 0 0.48095 0.00375 setbbox -0.48095 0 moveto -0.48095 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.51905 0 0.51905 0.00375 setbbox -0.51905 0 moveto -0.51905 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.55714 0 0.55714 0.00375 setbbox -0.55714 0 moveto -0.55714 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.63333 0 0.63333 0.00375 setbbox -0.63333 0 moveto -0.63333 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.67143 0 0.67143 0.00375 setbbox -0.67143 0 moveto -0.67143 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.70952 0 0.70952 0.00375 setbbox -0.70952 0 moveto -0.70952 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.74762 0 0.74762 0.00375 setbbox -0.74762 0 moveto -0.74762 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.82381 0 0.82381 0.00375 setbbox -0.82381 0 moveto -0.82381 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.8619 0 0.8619 0.00375 setbbox -0.8619 0 moveto -0.8619 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.9 0 0.9 0.00375 setbbox -0.9 0 moveto -0.9 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.9381 0 0.9381 0.00375 setbbox -0.9381 0 moveto -0.9381 0.00375 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 -17 -151.539993] concat -204.587997 174.039993 moveto -(Time \(sec\)) show -[1 0 0 1 -17 -151.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -0.002 setlinewidth -gsave -newpath -systemdict -begin -0 0 1 0 setbbox -0 0 moveto -1 0 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.12203 0.00625 0.12203 setbbox -0 0.12203 moveto -0.00625 0.12203 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -30.4939 271.463989 moveto -(-10) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0 0.25211 0.00625 0.25211 setbbox -0 0.25211 moveto -0.00625 0.25211 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -56.717499 322.105011 moveto -(0) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0 0.38219 0.00625 0.38219 setbbox -0 0.38219 moveto -0.00625 0.38219 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -44.883999 372.744995 moveto -(10) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0 0.51226 0.00625 0.51226 setbbox -0 0.51226 moveto -0.00625 0.51226 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -45.5 423.381989 moveto -(20) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -0.001 setlinewidth -gsave -newpath -systemdict -begin -0 0.14805 0.00375 0.14805 setbbox -0 0.14805 moveto -0.00375 0.14805 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.17406 0.00375 0.17406 setbbox -0 0.17406 moveto -0.00375 0.17406 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.20008 0.00375 0.20008 setbbox -0 0.20008 moveto -0.00375 0.20008 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.22609 0.00375 0.22609 setbbox -0 0.22609 moveto -0.00375 0.22609 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.27812 0.00375 0.27812 setbbox -0 0.27812 moveto -0.00375 0.27812 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.30414 0.00375 0.30414 setbbox -0 0.30414 moveto -0.00375 0.30414 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.33015 0.00375 0.33015 setbbox -0 0.33015 moveto -0.00375 0.33015 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.35617 0.00375 0.35617 setbbox -0 0.35617 moveto -0.00375 0.35617 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.4082 0.00375 0.4082 setbbox -0 0.4082 moveto -0.00375 0.4082 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.43422 0.00375 0.43422 setbbox -0 0.43422 moveto -0.00375 0.43422 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.46023 0.00375 0.46023 setbbox -0 0.46023 moveto -0.00375 0.46023 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.48625 0.00375 0.48625 setbbox -0 0.48625 moveto -0.00375 0.48625 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.09601 0.00375 0.09601 setbbox -0 0.09601 moveto -0.00375 0.09601 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.07 0.00375 0.07 setbbox -0 0.07 moveto -0.00375 0.07 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.04398 0.00375 0.04398 setbbox -0 0.04398 moveto -0.00375 0.04398 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.01797 0.00375 0.01797 setbbox -0 0.01797 moveto -0.00375 0.01797 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.53828 0.00375 0.53828 setbbox -0 0.53828 moveto -0.00375 0.53828 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.5643 0.00375 0.5643 setbbox -0 0.5643 moveto -0.00375 0.5643 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.59031 0.00375 0.59031 setbbox -0 0.59031 moveto -0.00375 0.59031 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.61633 0.00375 0.61633 setbbox -0 0.61633 moveto -0.00375 0.61633 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[0 1 -1 0 0.296501 -168.217972] concat -222.759995 -20.439899 moveto -(Upward Speed, \(m/s\)) show -[0 1 -1 0 0.296501 -168.217972] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -0.002 setlinewidth -gsave -newpath -systemdict -begin -0 0 0 0.61803 setbbox -0 0 moveto -0 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.02381 0.61178 0.02381 0.61803 setbbox -0.02381 0.61178 moveto -0.02381 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.21429 0.61178 0.21429 0.61803 setbbox -0.21429 0.61178 moveto -0.21429 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.40476 0.61178 0.40476 0.61803 setbbox -0.40476 0.61178 moveto -0.40476 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.59524 0.61178 0.59524 0.61803 setbbox -0.59524 0.61178 moveto -0.59524 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.78571 0.61178 0.78571 0.61803 setbbox -0.78571 0.61178 moveto -0.78571 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.97619 0.61178 0.97619 0.61803 setbbox -0.97619 0.61178 moveto -0.97619 0.61803 lineto -end -stroke -grestore -0.001 setlinewidth -gsave -newpath -systemdict -begin -0.0619 0.61428 0.0619 0.61803 setbbox -0.0619 0.61428 moveto -0.0619 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.1 0.61428 0.1 0.61803 setbbox -0.1 0.61428 moveto -0.1 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.1381 0.61428 0.1381 0.61803 setbbox -0.1381 0.61428 moveto -0.1381 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.17619 0.61428 0.17619 0.61803 setbbox -0.17619 0.61428 moveto -0.17619 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.25238 0.61428 0.25238 0.61803 setbbox -0.25238 0.61428 moveto -0.25238 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.29048 0.61428 0.29048 0.61803 setbbox -0.29048 0.61428 moveto -0.29048 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.32857 0.61428 0.32857 0.61803 setbbox -0.32857 0.61428 moveto -0.32857 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.36667 0.61428 0.36667 0.61803 setbbox -0.36667 0.61428 moveto -0.36667 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.44286 0.61428 0.44286 0.61803 setbbox -0.44286 0.61428 moveto -0.44286 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.48095 0.61428 0.48095 0.61803 setbbox -0.48095 0.61428 moveto -0.48095 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.51905 0.61428 0.51905 0.61803 setbbox -0.51905 0.61428 moveto -0.51905 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.55714 0.61428 0.55714 0.61803 setbbox -0.55714 0.61428 moveto -0.55714 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.63333 0.61428 0.63333 0.61803 setbbox -0.63333 0.61428 moveto -0.63333 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.67143 0.61428 0.67143 0.61803 setbbox -0.67143 0.61428 moveto -0.67143 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.70952 0.61428 0.70952 0.61803 setbbox -0.70952 0.61428 moveto -0.70952 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.74762 0.61428 0.74762 0.61803 setbbox -0.74762 0.61428 moveto -0.74762 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.82381 0.61428 0.82381 0.61803 setbbox -0.82381 0.61428 moveto -0.82381 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.8619 0.61428 0.8619 0.61803 setbbox -0.8619 0.61428 moveto -0.8619 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.9 0.61428 0.9 0.61803 setbbox -0.9 0.61428 moveto -0.9 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.9381 0.61428 0.9381 0.61803 setbbox -0.9381 0.61428 moveto -0.9381 0.61803 lineto -end -stroke -grestore -0.002 setlinewidth -gsave -newpath -systemdict -begin -0 0.61803 1 0.61803 setbbox -0 0.61803 moveto -1 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.12203 1 0.12203 setbbox -0.99375 0.12203 moveto -1 0.12203 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.25211 1 0.25211 setbbox -0.99375 0.25211 moveto -1 0.25211 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.38219 1 0.38219 setbbox -0.99375 0.38219 moveto -1 0.38219 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.51226 1 0.51226 setbbox -0.99375 0.51226 moveto -1 0.51226 lineto -end -stroke -grestore -0.001 setlinewidth -gsave -newpath -systemdict -begin -0.99625 0.14805 1 0.14805 setbbox -0.99625 0.14805 moveto -1 0.14805 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.17406 1 0.17406 setbbox -0.99625 0.17406 moveto -1 0.17406 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.20008 1 0.20008 setbbox -0.99625 0.20008 moveto -1 0.20008 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.22609 1 0.22609 setbbox -0.99625 0.22609 moveto -1 0.22609 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.27812 1 0.27812 setbbox -0.99625 0.27812 moveto -1 0.27812 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.30414 1 0.30414 setbbox -0.99625 0.30414 moveto -1 0.30414 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.33015 1 0.33015 setbbox -0.99625 0.33015 moveto -1 0.33015 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.35617 1 0.35617 setbbox -0.99625 0.35617 moveto -1 0.35617 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.4082 1 0.4082 setbbox -0.99625 0.4082 moveto -1 0.4082 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.43422 1 0.43422 setbbox -0.99625 0.43422 moveto -1 0.43422 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.46023 1 0.46023 setbbox -0.99625 0.46023 moveto -1 0.46023 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.48625 1 0.48625 setbbox -0.99625 0.48625 moveto -1 0.48625 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.09601 1 0.09601 setbbox -0.99625 0.09601 moveto -1 0.09601 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.07 1 0.07 setbbox -0.99625 0.07 moveto -1 0.07 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.04398 1 0.04398 setbbox -0.99625 0.04398 moveto -1 0.04398 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.01797 1 0.01797 setbbox -0.99625 0.01797 moveto -1 0.01797 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.53828 1 0.53828 setbbox -0.99625 0.53828 moveto -1 0.53828 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.5643 1 0.5643 setbbox -0.99625 0.5643 moveto -1 0.5643 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.59031 1 0.59031 setbbox -0.99625 0.59031 moveto -1 0.59031 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.61633 1 0.61633 setbbox -0.99625 0.61633 moveto -1 0.61633 lineto -end -stroke -grestore -0.002 setlinewidth -gsave -newpath -systemdict -begin -1 0 1 0.61803 setbbox -1 0 moveto -1 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.25211 1 0.25211 setbbox -0 0.25211 moveto -1 0.25211 lineto -end -stroke -grestore -0.004 setlinewidth -gsave -newpath -systemdict -begin -0.02381 0.01472 0.97619 0.60332 setbbox -0.02381 0.60332 moveto -0.06349 0.57879 lineto -0.10317 0.55427 lineto -0.14286 0.52974 lineto -0.18254 0.50522 lineto -0.22222 0.48069 lineto -0.2619 0.45617 lineto -0.30159 0.43164 lineto -0.34127 0.40712 lineto -0.38095 0.38259 lineto -0.42063 0.35807 lineto -0.46032 0.33354 lineto -0.5 0.30902 lineto -0.53968 0.28449 lineto -0.57937 0.25997 lineto -0.61905 0.23544 lineto -0.65873 0.21092 lineto -0.69841 0.18639 lineto -0.7381 0.16187 lineto -0.77778 0.13734 lineto -0.81746 0.11282 lineto -0.85714 0.08829 lineto -0.89683 0.06377 lineto -0.93651 0.03924 lineto -0.97619 0.01472 lineto -end -stroke -grestore -grestore -TailorGroupEnd -grestore -gsave -[1 0 0 -1 0 792] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Courier-Oblique diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aSatu_tld.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aSatu_tld.gif deleted file mode 100755 index 609a60c06..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aSatu_tld.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aSatu_tld.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aSatu_tld.pdf deleted file mode 100644 index 5ffc75287..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aSatu_tld.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aUran_tld.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aUran_tld.eps deleted file mode 100755 index d64467605..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aUran_tld.eps +++ /dev/null @@ -1,1639 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: AcUran_tld.eps - View 1 -- /teacher/CAPA/physimage -%%Creator: Tailor -%%CreationDate: Mon Sep 26 09:45:59 1994 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 15 469 309 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -%%BeginResource: procset (Tailor 1.0) -/TailorGroupBegin {pop} def /TailorGroupEnd {} def -/TailorBlockBegin {pop pop pop} def /TailorBlockEnd {} def -/TailorSetUniformStroke {pop} def -%%EndResource -gsave --20 -55 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -%%EndSetup -gsave -0 0 612 792 rectclip -0 0 612 792 rectclip -gsave -0 setgray -1 setlinewidth -(* Creator: Mathematica\012* Creation date: Sat Nov 28 12:48:32 GMT-0500 1992\012) TailorGroupBegin -gsave -[1 0 0 1 0 0] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -newpath -systemdict -begin -0 0 468 648 setbbox -0 0 moveto -468 0 lineto -468 648 lineto -0 648 lineto -end -clip -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -0 0 0.5 nxsetrgbcolor -0.001 setlinewidth -1 setlinecap -1 setlinejoin -gsave -newpath -systemdict -begin -0.18254 0 0.18254 0.61803 setbbox -0.18254 0 moveto -0.18254 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.34127 0 0.34127 0.61803 setbbox -0.34127 0 moveto -0.34127 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.5 0 0.5 0.61803 setbbox -0.5 0 moveto -0.5 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.65873 0 0.65873 0.61803 setbbox -0.65873 0 moveto -0.65873 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.81746 0 0.81746 0.61803 setbbox -0.81746 0 moveto -0.81746 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.13617 1 0.13617 setbbox -0 0.13617 moveto -1 0.13617 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.26243 1 0.26243 setbbox -0 0.26243 moveto -1 0.26243 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.38868 1 0.38868 setbbox -0 0.38868 moveto -1 0.38868 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.51494 1 0.51494 setbbox -0 0.51494 moveto -1 0.51494 lineto -end -stroke -grestore -0 nxsetgray -0.002 setlinewidth -gsave -newpath -systemdict -begin -0.02381 0 0.02381 0.00625 setbbox -0.02381 0 moveto -0.02381 0.00625 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -/Courier-Oblique findfont 1 scalefont [22 0 0 22 0 0] makefont -38 -exch -defineuserobject -38 execuserobject setfont -77.453003 209.944 moveto -(0) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0.18254 0 0.18254 0.00625 setbbox -0.18254 0 moveto -0.18254 0.00625 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -140.613007 210.108994 moveto -(1) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0.34127 0 0.34127 0.00625 setbbox -0.34127 0 moveto -0.34127 0.00625 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -203.022995 210.108994 moveto -(2) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0.5 0 0.5 0.00625 setbbox -0.5 0 moveto -0.5 0.00625 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -264.553009 209.944 moveto -(3) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0.65873 0 0.65873 0.00625 setbbox -0.65873 0 moveto -0.65873 0.00625 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -325.766998 210.108994 moveto -(4) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0.81746 0 0.81746 0.00625 setbbox -0.81746 0 moveto -0.81746 0.00625 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -387.772003 210.438995 moveto -(5) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0.97619 0 0.97619 0.00625 setbbox -0.97619 0 moveto -0.97619 0.00625 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -448.188995 209.944 moveto -(6) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -0.001 setlinewidth -gsave -newpath -systemdict -begin -0.05556 0 0.05556 0.00375 setbbox -0.05556 0 moveto -0.05556 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.0873 0 0.0873 0.00375 setbbox -0.0873 0 moveto -0.0873 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.11905 0 0.11905 0.00375 setbbox -0.11905 0 moveto -0.11905 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.15079 0 0.15079 0.00375 setbbox -0.15079 0 moveto -0.15079 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.21429 0 0.21429 0.00375 setbbox -0.21429 0 moveto -0.21429 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.24603 0 0.24603 0.00375 setbbox -0.24603 0 moveto -0.24603 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.27778 0 0.27778 0.00375 setbbox -0.27778 0 moveto -0.27778 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.30952 0 0.30952 0.00375 setbbox -0.30952 0 moveto -0.30952 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.37302 0 0.37302 0.00375 setbbox -0.37302 0 moveto -0.37302 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.40476 0 0.40476 0.00375 setbbox -0.40476 0 moveto -0.40476 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.43651 0 0.43651 0.00375 setbbox -0.43651 0 moveto -0.43651 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.46825 0 0.46825 0.00375 setbbox -0.46825 0 moveto -0.46825 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.53175 0 0.53175 0.00375 setbbox -0.53175 0 moveto -0.53175 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.56349 0 0.56349 0.00375 setbbox -0.56349 0 moveto -0.56349 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.59524 0 0.59524 0.00375 setbbox -0.59524 0 moveto -0.59524 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.62698 0 0.62698 0.00375 setbbox -0.62698 0 moveto -0.62698 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.69048 0 0.69048 0.00375 setbbox -0.69048 0 moveto -0.69048 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.72222 0 0.72222 0.00375 setbbox -0.72222 0 moveto -0.72222 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.75397 0 0.75397 0.00375 setbbox -0.75397 0 moveto -0.75397 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.78571 0 0.78571 0.00375 setbbox -0.78571 0 moveto -0.78571 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.84921 0 0.84921 0.00375 setbbox -0.84921 0 moveto -0.84921 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.88095 0 0.88095 0.00375 setbbox -0.88095 0 moveto -0.88095 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.9127 0 0.9127 0.00375 setbbox -0.9127 0 moveto -0.9127 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.94444 0 0.94444 0.00375 setbbox -0.94444 0 moveto -0.94444 0.00375 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 -15 -152.539993] concat -204.587997 174.039993 moveto -(Time \(sec\)) show -[1 0 0 1 -15 -152.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -0.002 setlinewidth -gsave -newpath -systemdict -begin -0 0 1 0 setbbox -0 0 moveto -1 0 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.00992 0.00625 0.00992 setbbox -0 0.00992 moveto -0.00625 0.00992 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -30.4939 227.820007 moveto -(-20) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0 0.13617 0.00625 0.13617 setbbox -0 0.13617 moveto -0.00625 0.13617 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -30.4939 276.968994 moveto -(-10) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0 0.26243 0.00625 0.26243 setbbox -0 0.26243 moveto -0.00625 0.26243 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -56.717499 326.122986 moveto -(0) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0 0.38868 0.00625 0.38868 setbbox -0 0.38868 moveto -0.00625 0.38868 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -44.883999 375.272003 moveto -(10) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0 0.51494 0.00625 0.51494 setbbox -0 0.51494 moveto -0.00625 0.51494 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -45.5 424.424988 moveto -(20) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -0.001 setlinewidth -gsave -newpath -systemdict -begin -0 0.03517 0.00375 0.03517 setbbox -0 0.03517 moveto -0.00375 0.03517 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.06042 0.00375 0.06042 setbbox -0 0.06042 moveto -0.00375 0.06042 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.08567 0.00375 0.08567 setbbox -0 0.08567 moveto -0.00375 0.08567 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.11092 0.00375 0.11092 setbbox -0 0.11092 moveto -0.00375 0.11092 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.16142 0.00375 0.16142 setbbox -0 0.16142 moveto -0.00375 0.16142 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.18668 0.00375 0.18668 setbbox -0 0.18668 moveto -0.00375 0.18668 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.21193 0.00375 0.21193 setbbox -0 0.21193 moveto -0.00375 0.21193 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.23718 0.00375 0.23718 setbbox -0 0.23718 moveto -0.00375 0.23718 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.28768 0.00375 0.28768 setbbox -0 0.28768 moveto -0.00375 0.28768 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.31293 0.00375 0.31293 setbbox -0 0.31293 moveto -0.00375 0.31293 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.33818 0.00375 0.33818 setbbox -0 0.33818 moveto -0.00375 0.33818 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.36343 0.00375 0.36343 setbbox -0 0.36343 moveto -0.00375 0.36343 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.41394 0.00375 0.41394 setbbox -0 0.41394 moveto -0.00375 0.41394 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.43919 0.00375 0.43919 setbbox -0 0.43919 moveto -0.00375 0.43919 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.46444 0.00375 0.46444 setbbox -0 0.46444 moveto -0.00375 0.46444 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.48969 0.00375 0.48969 setbbox -0 0.48969 moveto -0.00375 0.48969 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.54019 0.00375 0.54019 setbbox -0 0.54019 moveto -0.00375 0.54019 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.56544 0.00375 0.56544 setbbox -0 0.56544 moveto -0.00375 0.56544 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.59069 0.00375 0.59069 setbbox -0 0.59069 moveto -0.00375 0.59069 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.61594 0.00375 0.61594 setbbox -0 0.61594 moveto -0.00375 0.61594 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[0 1 -1 0 0.296501 -168.217972] concat -222.759995 -20.439899 moveto -(Upward Speed, \(m/s\)) show -[0 1 -1 0 0.296501 -168.217972] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -0.002 setlinewidth -gsave -newpath -systemdict -begin -0 0 0 0.61803 setbbox -0 0 moveto -0 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.02381 0.61178 0.02381 0.61803 setbbox -0.02381 0.61178 moveto -0.02381 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.18254 0.61178 0.18254 0.61803 setbbox -0.18254 0.61178 moveto -0.18254 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.34127 0.61178 0.34127 0.61803 setbbox -0.34127 0.61178 moveto -0.34127 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.5 0.61178 0.5 0.61803 setbbox -0.5 0.61178 moveto -0.5 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.65873 0.61178 0.65873 0.61803 setbbox -0.65873 0.61178 moveto -0.65873 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.81746 0.61178 0.81746 0.61803 setbbox -0.81746 0.61178 moveto -0.81746 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.97619 0.61178 0.97619 0.61803 setbbox -0.97619 0.61178 moveto -0.97619 0.61803 lineto -end -stroke -grestore -0.001 setlinewidth -gsave -newpath -systemdict -begin -0.05556 0.61428 0.05556 0.61803 setbbox -0.05556 0.61428 moveto -0.05556 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.0873 0.61428 0.0873 0.61803 setbbox -0.0873 0.61428 moveto -0.0873 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.11905 0.61428 0.11905 0.61803 setbbox -0.11905 0.61428 moveto -0.11905 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.15079 0.61428 0.15079 0.61803 setbbox -0.15079 0.61428 moveto -0.15079 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.21429 0.61428 0.21429 0.61803 setbbox -0.21429 0.61428 moveto -0.21429 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.24603 0.61428 0.24603 0.61803 setbbox -0.24603 0.61428 moveto -0.24603 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.27778 0.61428 0.27778 0.61803 setbbox -0.27778 0.61428 moveto -0.27778 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.30952 0.61428 0.30952 0.61803 setbbox -0.30952 0.61428 moveto -0.30952 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.37302 0.61428 0.37302 0.61803 setbbox -0.37302 0.61428 moveto -0.37302 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.40476 0.61428 0.40476 0.61803 setbbox -0.40476 0.61428 moveto -0.40476 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.43651 0.61428 0.43651 0.61803 setbbox -0.43651 0.61428 moveto -0.43651 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.46825 0.61428 0.46825 0.61803 setbbox -0.46825 0.61428 moveto -0.46825 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.53175 0.61428 0.53175 0.61803 setbbox -0.53175 0.61428 moveto -0.53175 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.56349 0.61428 0.56349 0.61803 setbbox -0.56349 0.61428 moveto -0.56349 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.59524 0.61428 0.59524 0.61803 setbbox -0.59524 0.61428 moveto -0.59524 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.62698 0.61428 0.62698 0.61803 setbbox -0.62698 0.61428 moveto -0.62698 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.69048 0.61428 0.69048 0.61803 setbbox -0.69048 0.61428 moveto -0.69048 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.72222 0.61428 0.72222 0.61803 setbbox -0.72222 0.61428 moveto -0.72222 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.75397 0.61428 0.75397 0.61803 setbbox -0.75397 0.61428 moveto -0.75397 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.78571 0.61428 0.78571 0.61803 setbbox -0.78571 0.61428 moveto -0.78571 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.84921 0.61428 0.84921 0.61803 setbbox -0.84921 0.61428 moveto -0.84921 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.88095 0.61428 0.88095 0.61803 setbbox -0.88095 0.61428 moveto -0.88095 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.9127 0.61428 0.9127 0.61803 setbbox -0.9127 0.61428 moveto -0.9127 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.94444 0.61428 0.94444 0.61803 setbbox -0.94444 0.61428 moveto -0.94444 0.61803 lineto -end -stroke -grestore -0.002 setlinewidth -gsave -newpath -systemdict -begin -0 0.61803 1 0.61803 setbbox -0 0.61803 moveto -1 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.00992 1 0.00992 setbbox -0.99375 0.00992 moveto -1 0.00992 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.13617 1 0.13617 setbbox -0.99375 0.13617 moveto -1 0.13617 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.26243 1 0.26243 setbbox -0.99375 0.26243 moveto -1 0.26243 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.38868 1 0.38868 setbbox -0.99375 0.38868 moveto -1 0.38868 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.51494 1 0.51494 setbbox -0.99375 0.51494 moveto -1 0.51494 lineto -end -stroke -grestore -0.001 setlinewidth -gsave -newpath -systemdict -begin -0.99625 0.03517 1 0.03517 setbbox -0.99625 0.03517 moveto -1 0.03517 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.06042 1 0.06042 setbbox -0.99625 0.06042 moveto -1 0.06042 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.08567 1 0.08567 setbbox -0.99625 0.08567 moveto -1 0.08567 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.11092 1 0.11092 setbbox -0.99625 0.11092 moveto -1 0.11092 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.16142 1 0.16142 setbbox -0.99625 0.16142 moveto -1 0.16142 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.18668 1 0.18668 setbbox -0.99625 0.18668 moveto -1 0.18668 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.21193 1 0.21193 setbbox -0.99625 0.21193 moveto -1 0.21193 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.23718 1 0.23718 setbbox -0.99625 0.23718 moveto -1 0.23718 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.28768 1 0.28768 setbbox -0.99625 0.28768 moveto -1 0.28768 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.31293 1 0.31293 setbbox -0.99625 0.31293 moveto -1 0.31293 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.33818 1 0.33818 setbbox -0.99625 0.33818 moveto -1 0.33818 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.36343 1 0.36343 setbbox -0.99625 0.36343 moveto -1 0.36343 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.41394 1 0.41394 setbbox -0.99625 0.41394 moveto -1 0.41394 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.43919 1 0.43919 setbbox -0.99625 0.43919 moveto -1 0.43919 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.46444 1 0.46444 setbbox -0.99625 0.46444 moveto -1 0.46444 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.48969 1 0.48969 setbbox -0.99625 0.48969 moveto -1 0.48969 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.54019 1 0.54019 setbbox -0.99625 0.54019 moveto -1 0.54019 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.56544 1 0.56544 setbbox -0.99625 0.56544 moveto -1 0.56544 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.59069 1 0.59069 setbbox -0.99625 0.59069 moveto -1 0.59069 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.61594 1 0.61594 setbbox -0.99625 0.61594 moveto -1 0.61594 lineto -end -stroke -grestore -0.002 setlinewidth -gsave -newpath -systemdict -begin -1 0 1 0.61803 setbbox -1 0 moveto -1 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.26243 1 0.26243 setbbox -0 0.26243 moveto -1 0.26243 lineto -end -stroke -grestore -0.004 setlinewidth -gsave -newpath -systemdict -begin -0.02381 0.01472 0.97619 0.60332 setbbox -0.02381 0.60332 moveto -0.06349 0.57879 lineto -0.10317 0.55427 lineto -0.14286 0.52974 lineto -0.18254 0.50522 lineto -0.22222 0.48069 lineto -0.2619 0.45617 lineto -0.30159 0.43164 lineto -0.34127 0.40712 lineto -0.38095 0.38259 lineto -0.42063 0.35807 lineto -0.46032 0.33354 lineto -0.5 0.30902 lineto -0.53968 0.28449 lineto -0.57937 0.25997 lineto -0.61905 0.23544 lineto -0.65873 0.21092 lineto -0.69841 0.18639 lineto -0.7381 0.16187 lineto -0.77778 0.13734 lineto -0.81746 0.11282 lineto -0.85714 0.08829 lineto -0.89683 0.06377 lineto -0.93651 0.03924 lineto -0.97619 0.01472 lineto -end -stroke -grestore -grestore -TailorGroupEnd -grestore -gsave -[1 0 0 -1 0 792] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Courier-Oblique diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aUran_tld.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aUran_tld.gif deleted file mode 100755 index bfb1104e7..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aUran_tld.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aVenus_tld.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aVenus_tld.eps deleted file mode 100755 index a9e372a82..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aVenus_tld.eps +++ /dev/null @@ -1,1477 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: AcVenus_tld.eps - View 1 -- /teacher/CAPA/physimage -%%Creator: Tailor -%%CreationDate: Mon Sep 26 09:46:35 1994 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 16 469 309 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -%%BeginResource: procset (Tailor 1.0) -/TailorGroupBegin {pop} def /TailorGroupEnd {} def -/TailorBlockBegin {pop pop pop} def /TailorBlockEnd {} def -/TailorSetUniformStroke {pop} def -%%EndResource -gsave --20 -55 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -%%EndSetup -gsave -0 0 612 792 rectclip -0 0 612 792 rectclip -gsave -0 setgray -1 setlinewidth -(* Creator: Mathematica\012* Creation date: Sat Nov 28 12:40:17 GMT-0500 1992\012) TailorGroupBegin -gsave -[1 0 0 1 0 0] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -newpath -systemdict -begin -0 0 468 648 setbbox -0 0 moveto -468 0 lineto -468 648 lineto -0 648 lineto -end -clip -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -0 0 0.5 nxsetrgbcolor -0.001 setlinewidth -1 setlinecap -1 setlinejoin -gsave -newpath -systemdict -begin -0.21429 0 0.21429 0.61803 setbbox -0.21429 0 moveto -0.21429 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.40476 0 0.40476 0.61803 setbbox -0.40476 0 moveto -0.40476 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.59524 0 0.59524 0.61803 setbbox -0.59524 0 moveto -0.59524 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.78571 0 0.78571 0.61803 setbbox -0.78571 0 moveto -0.78571 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.09685 1 0.09685 setbbox -0 0.09685 moveto -1 0.09685 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.23373 1 0.23373 setbbox -0 0.23373 moveto -1 0.23373 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.37062 1 0.37062 setbbox -0 0.37062 moveto -1 0.37062 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.5075 1 0.5075 setbbox -0 0.5075 moveto -1 0.5075 lineto -end -stroke -grestore -0 nxsetgray -0.002 setlinewidth -gsave -newpath -systemdict -begin -0.02381 0 0.02381 0.00625 setbbox -0.02381 0 moveto -0.02381 0.00625 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -/Courier-Oblique findfont 1 scalefont [22 0 0 22 0 0] makefont -38 -exch -defineuserobject -38 execuserobject setfont -77.453003 209.944 moveto -(0) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0.21429 0 0.21429 0.00625 setbbox -0.21429 0 moveto -0.21429 0.00625 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -152.973999 210.108994 moveto -(1) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0.40476 0 0.40476 0.00625 setbbox -0.40476 0 moveto -0.40476 0.00625 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -227.740005 210.108994 moveto -(2) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0.59524 0 0.59524 0.00625 setbbox -0.59524 0 moveto -0.59524 0.00625 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -301.630005 209.944 moveto -(3) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0.78571 0 0.78571 0.00625 setbbox -0.78571 0 moveto -0.78571 0.00625 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -375.200012 210.108994 moveto -(4) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0.97619 0 0.97619 0.00625 setbbox -0.97619 0 moveto -0.97619 0.00625 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -449.56601 210.438995 moveto -(5) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -0.001 setlinewidth -gsave -newpath -systemdict -begin -0.0619 0 0.0619 0.00375 setbbox -0.0619 0 moveto -0.0619 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.1 0 0.1 0.00375 setbbox -0.1 0 moveto -0.1 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.1381 0 0.1381 0.00375 setbbox -0.1381 0 moveto -0.1381 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.17619 0 0.17619 0.00375 setbbox -0.17619 0 moveto -0.17619 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.25238 0 0.25238 0.00375 setbbox -0.25238 0 moveto -0.25238 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.29048 0 0.29048 0.00375 setbbox -0.29048 0 moveto -0.29048 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.32857 0 0.32857 0.00375 setbbox -0.32857 0 moveto -0.32857 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.36667 0 0.36667 0.00375 setbbox -0.36667 0 moveto -0.36667 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.44286 0 0.44286 0.00375 setbbox -0.44286 0 moveto -0.44286 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.48095 0 0.48095 0.00375 setbbox -0.48095 0 moveto -0.48095 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.51905 0 0.51905 0.00375 setbbox -0.51905 0 moveto -0.51905 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.55714 0 0.55714 0.00375 setbbox -0.55714 0 moveto -0.55714 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.63333 0 0.63333 0.00375 setbbox -0.63333 0 moveto -0.63333 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.67143 0 0.67143 0.00375 setbbox -0.67143 0 moveto -0.67143 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.70952 0 0.70952 0.00375 setbbox -0.70952 0 moveto -0.70952 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.74762 0 0.74762 0.00375 setbbox -0.74762 0 moveto -0.74762 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.82381 0 0.82381 0.00375 setbbox -0.82381 0 moveto -0.82381 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.8619 0 0.8619 0.00375 setbbox -0.8619 0 moveto -0.8619 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.9 0 0.9 0.00375 setbbox -0.9 0 moveto -0.9 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.9381 0 0.9381 0.00375 setbbox -0.9381 0 moveto -0.9381 0.00375 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 -15 -151.539993] concat -204.587997 174.039993 moveto -(Time \(sec\)) show -[1 0 0 1 -15 -151.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -0.002 setlinewidth -gsave -newpath -systemdict -begin -0 0 1 0 setbbox -0 0 moveto -1 0 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.09685 0.00625 0.09685 setbbox -0 0.09685 moveto -0.00625 0.09685 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -30.4939 261.661987 moveto -(-10) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0 0.23373 0.00625 0.23373 setbbox -0 0.23373 moveto -0.00625 0.23373 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -56.717499 314.950012 moveto -(0) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0 0.37062 0.00625 0.37062 setbbox -0 0.37062 moveto -0.00625 0.37062 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -44.883999 368.240997 moveto -(10) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -gsave -newpath -systemdict -begin -0 0.5075 0.00625 0.5075 setbbox -0 0.5075 moveto -0.00625 0.5075 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[1 0 0 1 0 -168.539993] concat -45.5 421.528992 moveto -(20) show -[1 0 0 1 0 -168.539993] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -0.001 setlinewidth -gsave -newpath -systemdict -begin -0 0.12422 0.00375 0.12422 setbbox -0 0.12422 moveto -0.00375 0.12422 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.1516 0.00375 0.1516 setbbox -0 0.1516 moveto -0.00375 0.1516 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.17898 0.00375 0.17898 setbbox -0 0.17898 moveto -0.00375 0.17898 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.20635 0.00375 0.20635 setbbox -0 0.20635 moveto -0.00375 0.20635 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.26111 0.00375 0.26111 setbbox -0 0.26111 moveto -0.00375 0.26111 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.28848 0.00375 0.28848 setbbox -0 0.28848 moveto -0.00375 0.28848 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.31586 0.00375 0.31586 setbbox -0 0.31586 moveto -0.00375 0.31586 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.34324 0.00375 0.34324 setbbox -0 0.34324 moveto -0.00375 0.34324 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.39799 0.00375 0.39799 setbbox -0 0.39799 moveto -0.00375 0.39799 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.42537 0.00375 0.42537 setbbox -0 0.42537 moveto -0.00375 0.42537 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.45275 0.00375 0.45275 setbbox -0 0.45275 moveto -0.00375 0.45275 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.48012 0.00375 0.48012 setbbox -0 0.48012 moveto -0.00375 0.48012 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.06947 0.00375 0.06947 setbbox -0 0.06947 moveto -0.00375 0.06947 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.04209 0.00375 0.04209 setbbox -0 0.04209 moveto -0.00375 0.04209 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.01472 0.00375 0.01472 setbbox -0 0.01472 moveto -0.00375 0.01472 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.53488 0.00375 0.53488 setbbox -0 0.53488 moveto -0.00375 0.53488 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.56225 0.00375 0.56225 setbbox -0 0.56225 moveto -0.00375 0.56225 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.58963 0.00375 0.58963 setbbox -0 0.58963 moveto -0.00375 0.58963 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.61701 0.00375 0.61701 setbbox -0 0.61701 moveto -0.00375 0.61701 lineto -end -stroke -grestore -[389.303009 0 0 389.303009 78.306 62.095016] matrix invertmatrix concat -[0 1 -1 0 0.296501 -168.217972] concat -222.759995 -20.439899 moveto -(Upward Speed, \(m/s\)) show -[0 1 -1 0 0.296501 -168.217972] matrix invertmatrix concat -[389.303009 0 0 389.303009 78.306 62.095016] concat -0.002 setlinewidth -gsave -newpath -systemdict -begin -0 0 0 0.61803 setbbox -0 0 moveto -0 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.02381 0.61178 0.02381 0.61803 setbbox -0.02381 0.61178 moveto -0.02381 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.21429 0.61178 0.21429 0.61803 setbbox -0.21429 0.61178 moveto -0.21429 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.40476 0.61178 0.40476 0.61803 setbbox -0.40476 0.61178 moveto -0.40476 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.59524 0.61178 0.59524 0.61803 setbbox -0.59524 0.61178 moveto -0.59524 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.78571 0.61178 0.78571 0.61803 setbbox -0.78571 0.61178 moveto -0.78571 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.97619 0.61178 0.97619 0.61803 setbbox -0.97619 0.61178 moveto -0.97619 0.61803 lineto -end -stroke -grestore -0.001 setlinewidth -gsave -newpath -systemdict -begin -0.0619 0.61428 0.0619 0.61803 setbbox -0.0619 0.61428 moveto -0.0619 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.1 0.61428 0.1 0.61803 setbbox -0.1 0.61428 moveto -0.1 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.1381 0.61428 0.1381 0.61803 setbbox -0.1381 0.61428 moveto -0.1381 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.17619 0.61428 0.17619 0.61803 setbbox -0.17619 0.61428 moveto -0.17619 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.25238 0.61428 0.25238 0.61803 setbbox -0.25238 0.61428 moveto -0.25238 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.29048 0.61428 0.29048 0.61803 setbbox -0.29048 0.61428 moveto -0.29048 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.32857 0.61428 0.32857 0.61803 setbbox -0.32857 0.61428 moveto -0.32857 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.36667 0.61428 0.36667 0.61803 setbbox -0.36667 0.61428 moveto -0.36667 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.44286 0.61428 0.44286 0.61803 setbbox -0.44286 0.61428 moveto -0.44286 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.48095 0.61428 0.48095 0.61803 setbbox -0.48095 0.61428 moveto -0.48095 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.51905 0.61428 0.51905 0.61803 setbbox -0.51905 0.61428 moveto -0.51905 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.55714 0.61428 0.55714 0.61803 setbbox -0.55714 0.61428 moveto -0.55714 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.63333 0.61428 0.63333 0.61803 setbbox -0.63333 0.61428 moveto -0.63333 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.67143 0.61428 0.67143 0.61803 setbbox -0.67143 0.61428 moveto -0.67143 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.70952 0.61428 0.70952 0.61803 setbbox -0.70952 0.61428 moveto -0.70952 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.74762 0.61428 0.74762 0.61803 setbbox -0.74762 0.61428 moveto -0.74762 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.82381 0.61428 0.82381 0.61803 setbbox -0.82381 0.61428 moveto -0.82381 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.8619 0.61428 0.8619 0.61803 setbbox -0.8619 0.61428 moveto -0.8619 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.9 0.61428 0.9 0.61803 setbbox -0.9 0.61428 moveto -0.9 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.9381 0.61428 0.9381 0.61803 setbbox -0.9381 0.61428 moveto -0.9381 0.61803 lineto -end -stroke -grestore -0.002 setlinewidth -gsave -newpath -systemdict -begin -0 0.61803 1 0.61803 setbbox -0 0.61803 moveto -1 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.09685 1 0.09685 setbbox -0.99375 0.09685 moveto -1 0.09685 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.23373 1 0.23373 setbbox -0.99375 0.23373 moveto -1 0.23373 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.37062 1 0.37062 setbbox -0.99375 0.37062 moveto -1 0.37062 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.5075 1 0.5075 setbbox -0.99375 0.5075 moveto -1 0.5075 lineto -end -stroke -grestore -0.001 setlinewidth -gsave -newpath -systemdict -begin -0.99625 0.12422 1 0.12422 setbbox -0.99625 0.12422 moveto -1 0.12422 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.1516 1 0.1516 setbbox -0.99625 0.1516 moveto -1 0.1516 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.17898 1 0.17898 setbbox -0.99625 0.17898 moveto -1 0.17898 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.20635 1 0.20635 setbbox -0.99625 0.20635 moveto -1 0.20635 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.26111 1 0.26111 setbbox -0.99625 0.26111 moveto -1 0.26111 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.28848 1 0.28848 setbbox -0.99625 0.28848 moveto -1 0.28848 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.31586 1 0.31586 setbbox -0.99625 0.31586 moveto -1 0.31586 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.34324 1 0.34324 setbbox -0.99625 0.34324 moveto -1 0.34324 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.39799 1 0.39799 setbbox -0.99625 0.39799 moveto -1 0.39799 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.42537 1 0.42537 setbbox -0.99625 0.42537 moveto -1 0.42537 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.45275 1 0.45275 setbbox -0.99625 0.45275 moveto -1 0.45275 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.48012 1 0.48012 setbbox -0.99625 0.48012 moveto -1 0.48012 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.06947 1 0.06947 setbbox -0.99625 0.06947 moveto -1 0.06947 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.04209 1 0.04209 setbbox -0.99625 0.04209 moveto -1 0.04209 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.01472 1 0.01472 setbbox -0.99625 0.01472 moveto -1 0.01472 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.53488 1 0.53488 setbbox -0.99625 0.53488 moveto -1 0.53488 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.56225 1 0.56225 setbbox -0.99625 0.56225 moveto -1 0.56225 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.58963 1 0.58963 setbbox -0.99625 0.58963 moveto -1 0.58963 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.61701 1 0.61701 setbbox -0.99625 0.61701 moveto -1 0.61701 lineto -end -stroke -grestore -0.002 setlinewidth -gsave -newpath -systemdict -begin -1 0 1 0.61803 setbbox -1 0 moveto -1 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.23373 1 0.23373 setbbox -0 0.23373 moveto -1 0.23373 lineto -end -stroke -grestore -0.004 setlinewidth -gsave -newpath -systemdict -begin -0.02381 0.01472 0.97619 0.60332 setbbox -0.02381 0.60332 moveto -0.06349 0.57879 lineto -0.10317 0.55427 lineto -0.14286 0.52974 lineto -0.18254 0.50522 lineto -0.22222 0.48069 lineto -0.2619 0.45617 lineto -0.30159 0.43164 lineto -0.34127 0.40712 lineto -0.38095 0.38259 lineto -0.42063 0.35807 lineto -0.46032 0.33354 lineto -0.5 0.30902 lineto -0.53968 0.28449 lineto -0.57937 0.25997 lineto -0.61905 0.23544 lineto -0.65873 0.21092 lineto -0.69841 0.18639 lineto -0.7381 0.16187 lineto -0.77778 0.13734 lineto -0.81746 0.11282 lineto -0.85714 0.08829 lineto -0.89683 0.06377 lineto -0.93651 0.03924 lineto -0.97619 0.01472 lineto -end -stroke -grestore -grestore -TailorGroupEnd -grestore -gsave -[1 0 0 -1 0 792] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Courier-Oblique diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aVenus_tld.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aVenus_tld.gif deleted file mode 100755 index fd76faee8..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob42aVenus_tld.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob47a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob47a.eps deleted file mode 100755 index 1a67f0188..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob47a.eps +++ /dev/null @@ -1,377 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: Untitled1.create -%%Creator: Create -%%CreationDate: Wed Dec 11 13:44:35 1996 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 72 444 492 731 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(EpSjNh -% nFKo&n6q]XkCmG.fn!RL_l>^K2+fb5\/4]1_kTN>/]PiON/6So0-\`fp7e,Yjc*RHVh -% &@MRieD_2c!,Rf9G'sg-=^5uup/WPm&`s15PYq4CAI\LTf3=mjGZb$@n`M!E!X;!LDNgdX:F -% O.%#_4>H22@G7a9b+^FHTWPR6Qal+rpZK49-Hl#;e/')KLeQL4)eX2h36+[,][I!mj2bJ]5U -% if7Fr&#QTO1'kSV"3F8X1BO,fF-&A<"nr?d;#QOr8-j$%cM_1M,,BF$a1;JlmQ:^4K4oRDd= -% \VRU:`*o:JHd.e0c@bRPmF#h(kEe3+S -gR -gS 31 163 18 10 rC -gR -gS 26 127 28 46 rC -33 170 :M -f0_9 sf -S -gR -gS 42 172 14 10 rC -gR -gS 37 136 24 46 rC -46 179 :M -f0_9 sf -(0)S -gR -gS 78 172 14 10 rC -gR -gS 73 136 24 46 rC -82 179 :M -f0_9 sf -(5)S -gR -gS 114 172 14 10 rC -gR -gS 109 136 24 46 rC -116 179 :M -f0_9 sf -(10)S -gR -gS 150 172 14 10 rC -gR -gS 145 136 24 46 rC -152 179 :M -f0_9 sf -(15)S -gR -gS 186 172 14 10 rC -gR -gS 181 136 24 46 rC -188 179 :M -f0_9 sf -(20)S -gR -gS 222 172 14 10 rC -gR -gS 217 136 24 46 rC -224 179 :M -f0_9 sf -(25)S -gR -gS 258 172 14 10 rC -gR -gS 253 136 24 46 rC -260 179 :M -f0_9 sf -(30)S -gR -gS 17 19 552 730 rC --1 -1 49 96 1 1 70 59 @b -70 60 -1 1 114 59 1 70 59 @a -156 132 :M -gsave -2.0 setmiterlimit --19984 -19981 -1 1 -19982 -19981 1 -19984 -19982 @a --19983 -19981 :M -newpath -113 59 snapmoveto -119 79 stp 123 100 stp 128 109 stp curveto -133 118 stp 131 118 stp 137 123 stp curveto -142 126 stp 147 132 stp 156 132 stp curveto -stroke --19984 -9982 -10000 10000 -9983 -19981 10000 -19984 -19982 @a -10000 lw --19983 -19981 :M -grestore --1 -1 157 132 1 1 192 108 @b -192 109 -1 1 251 153 1 192 108 @a -139 199 49 12 rC -gR -gS 134 163 59 48 rC -139 208 :M -f0_10 sf -.207 .021(Time \(s\))J -gR -gS 21 57 11 63 rC -gS -26.5 88.5 :T -270 rotate --26.5 -88.5 :T --5 92 :M -f0_10 sf -.797 .08(Position \(m\))J -gR -gR -gS 17 19 552 730 rC -60 185 :M -gsave -2.0 setmiterlimit --19952 -19820.984 -.016 .016 -19950.984 -19820 .016 -19952 -19821 @a -.016 lw --19951 -19820 :M -newpath -49 180 snapmoveto -50 182 stp 50 183 stp 51 183 stp curveto -54 185 stp 57 182 stp 60 184 stp curveto -60 184 stp 60 185 stp 60 185 stp curveto -stroke --19952 -19664.75 -156.25 156.25 -19794.75 -19820 156.25 -19952 -19821 @a -156.25 lw --19951 -19820 :M -grestore -61 185 :M -gsave -2.0 setmiterlimit --19952 -19820.984 -.016 .016 -19950.984 -19820 .016 -19952 -19821 @a -.016 lw --19951 -19820 :M -newpath -71 180 snapmoveto -71 182 stp 71 183 stp 70 183 stp curveto -67 185 stp 64 182 stp 61 184 stp curveto -60 184 stp 61 185 stp 61 185 stp curveto -stroke --19952 -19664.75 -156.25 156.25 -19794.75 -19820 156.25 -19952 -19821 @a -156.25 lw --19951 -19820 :M -grestore -92 185 :M -gsave -2.0 setmiterlimit --19930 -19820.984 -.016 .016 -19928.984 -19820 .016 -19930 -19821 @a -.016 lw --19929 -19820 :M -newpath -71 180 snapmoveto -72 182 stp 72 183 stp 74 183 stp curveto -79 185 stp 85 182 stp 91 184 stp curveto -92 184 stp 91 185 stp 92 185 stp curveto -stroke --19930 -19664.75 -156.25 156.25 -19772.75 -19820 156.25 -19930 -19821 @a -156.25 lw --19929 -19820 :M -grestore -92 185 :M -gsave -2.0 setmiterlimit --19930 -19820.984 -.016 .016 -19928.984 -19820 .016 -19930 -19821 @a -.016 lw --19929 -19820 :M -newpath -112 180 snapmoveto -111 182 stp 112 183 stp 110 183 stp curveto -104 185 stp 98 182 stp 93 184 stp curveto -91 184 stp 92 185 stp 92 185 stp curveto -stroke --19930 -19664.75 -156.25 156.25 -19772.75 -19820 156.25 -19930 -19821 @a -156.25 lw --19929 -19820 :M -grestore -134 185 :M -gsave -2.0 setmiterlimit --19890 -19820.984 -.016 .016 -19888.984 -19820 .016 -19890 -19821 @a -.016 lw --19889 -19820 :M -newpath -111 180 snapmoveto -112 182 stp 112 183 stp 114 183 stp curveto -120 185 stp 127 182 stp 133 184 stp curveto -134 184 stp 133 185 stp 134 185 stp curveto -stroke --19890 -19664.75 -156.25 156.25 -19732.75 -19820 156.25 -19890 -19821 @a -156.25 lw --19889 -19820 :M -grestore -135 185 :M -gsave -2.0 setmiterlimit --19890 -19820.984 -.016 .016 -19888.984 -19820 .016 -19890 -19821 @a -.016 lw --19889 -19820 :M -newpath -157 180 snapmoveto -156 182 stp 157 183 stp 155 183 stp curveto -149 185 stp 142 182 stp 136 184 stp curveto -134 184 stp 135 185 stp 135 185 stp curveto -stroke --19890 -19664.75 -156.25 156.25 -19732.75 -19820 156.25 -19890 -19821 @a -156.25 lw --19889 -19820 :M -grestore -174 185 :M -gsave -2.0 setmiterlimit --19845 -19820.984 -.016 .016 -19843.984 -19820 .016 -19845 -19821 @a -.016 lw --19844 -19820 :M -newpath -156 180 snapmoveto -157 182 stp 157 183 stp 158 183 stp curveto -163 185 stp 169 182 stp 173 184 stp curveto -175 184 stp 174 185 stp 174 185 stp curveto -stroke --19845 -19664.75 -156.25 156.25 -19687.75 -19820 156.25 -19845 -19821 @a -156.25 lw --19844 -19820 :M -grestore -175 185 :M -gsave -2.0 setmiterlimit --19845 -19820.984 -.016 .016 -19843.984 -19820 .016 -19845 -19821 @a -.016 lw --19844 -19820 :M -newpath -193 180 snapmoveto -192 182 stp 192 183 stp 191 183 stp curveto -186 185 stp 180 182 stp 175 184 stp curveto -174 184 stp 175 185 stp 175 185 stp curveto -stroke --19845 -19664.75 -156.25 156.25 -19687.75 -19820 156.25 -19845 -19821 @a -156.25 lw --19844 -19820 :M -grestore -222 185 :M -gsave -2.0 setmiterlimit --19809 -19820.984 -.016 .016 -19807.984 -19820 .016 -19809 -19821 @a -.016 lw --19808 -19820 :M -newpath -192 180 snapmoveto -194 182 stp 193 183 stp 196 183 stp curveto -203 185 stp 213 182 stp 220 184 stp curveto -222 184 stp 221 185 stp 222 185 stp curveto -stroke --19809 -19664.75 -156.25 156.25 -19651.75 -19820 156.25 -19809 -19821 @a -156.25 lw --19808 -19820 :M -grestore -222 185 :M -gsave -2.0 setmiterlimit --19809 -19820.984 -.016 .016 -19807.984 -19820 .016 -19809 -19821 @a -.016 lw --19808 -19820 :M -newpath -251 180 snapmoveto -250 182 stp 250 183 stp 248 183 stp curveto -240 185 stp 231 182 stp 223 184 stp curveto -221 184 stp 222 185 stp 222 185 stp curveto -stroke --19809 -19664.75 -156.25 156.25 -19651.75 -19820 156.25 -19809 -19821 @a -156.25 lw --19808 -19820 :M -grestore -58 186 9 11 rC -gR -gS 53 150 19 47 rC -58 195 :M -f0_10 sf -(A)S -gR -gS 94 186 9 11 rC -gR -gS 89 150 19 47 rC -94 195 :M -f0_10 sf -(B)S -gR -gS 134 186 9 11 rC -gR -gS 129 150 19 47 rC -134 195 :M -f0_10 sf -(C)S -gR -gS 170 186 9 11 rC -gR -gS 165 150 19 47 rC -170 195 :M -f0_10 sf -(D)S -gR -gS 220 186 9 11 rC -gR -gS 215 150 19 47 rC -220 195 :M -f0_10 sf -(E)S -gR -endp -%%Trailer -end -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob57a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob57a.gif deleted file mode 100755 index 7ba96e282..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob57a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob57a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob57a.pdf deleted file mode 100644 index d734994b8..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob57a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob58a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob58a.eps deleted file mode 100755 index 1adfee61a..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob58a.eps +++ /dev/null @@ -1,591 +0,0 @@ -%!PS-Adobe-3.0 EPSF-3.0 -%%BoundingBox: 33 731 196 759 -%%Title: (pssc7cq2.9.cwk \(DR\)) -%%Creator: (ClarisWorks 3.0: LaserWriter 8 8.2) -%%CreationDate: (5:30 PM Sunday, September 22, 1996) -%%For: () -%%Pages: 1 -%%DocumentFonts: Helvetica -%%DocumentNeededFonts: Helvetica -%%DocumentSuppliedFonts: -%%DocumentData: Clean7Bit -%%PageOrder: Ascend -%%Orientation: Portrait -%%DocumentMedia: Default 612 792 0 () () -%ADO_ImageableArea: 31 31 583 761 -%%EndComments -userdict begin/dscInfo 5 dict dup begin -/Title(pssc7cq2.9.cwk \(DR\))def -/Creator(ClarisWorks 3.0: LaserWriter 8 8.2)def -/CreationDate(5:30 PM Sunday, September 22, 1996)def -/For()def -/Pages 1 def -end def end -/md 134 dict def md begin/currentpacking where {pop /sc_oldpacking currentpacking def true setpacking}if -%%BeginFile: adobe_psp_basic -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/bd{bind def}bind def -/xdf{exch def}bd -/xs{exch store}bd -/ld{load def}bd -/Z{0 def}bd -/T/true -/F/false -/:L/lineto -/lw/setlinewidth -/:M/moveto -/rl/rlineto -/rm/rmoveto -/:C/curveto -/:T/translate -/:K/closepath -/:mf/makefont -/gS/gsave -/gR/grestore -/np/newpath -14{ld}repeat -/$m matrix def -/av 81 def -/por true def -/normland false def -/psb-nosave{}bd -/pse-nosave{}bd -/us Z -/psb{/us save store}bd -/pse{us restore}bd -/level2 -/languagelevel where -{ -pop languagelevel 2 ge -}{ -false -}ifelse -def -/featurecleanup -{ -stopped -cleartomark -countdictstack exch sub dup 0 gt -{ -{end}repeat -}{ -pop -}ifelse -}bd -/noload Z -/startnoload -{ -{/noload save store}if -}bd -/endnoload -{ -{noload restore}if -}bd -level2 startnoload -/setjob -{ -statusdict/jobname 3 -1 roll put -}bd -/setcopies -{ -userdict/#copies 3 -1 roll put -}bd -level2 endnoload level2 not startnoload -/setjob -{ -1 dict begin/JobName xdf currentdict end setuserparams -}bd -/setcopies -{ -1 dict begin/NumCopies xdf currentdict end setpagedevice -}bd -level2 not endnoload -/pm Z -/mT Z -/sD Z -/realshowpage Z -/initializepage -{ -/pm save store mT concat -}bd -/endp -{ -pm restore showpage -}def -/$c/DeviceRGB def -/rectclip where -{ -pop/rC/rectclip ld -}{ -/rC -{ -np 4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -clip np -}bd -}ifelse -/rectfill where -{ -pop/rF/rectfill ld -}{ -/rF -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -fill -gR -}bd -}ifelse -/rectstroke where -{ -pop/rS/rectstroke ld -}{ -/rS -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -stroke -gR -}bd -}ifelse -%%EndFile -%%BeginFile: adobe_psp_colorspace_level1 -%%Copyright: Copyright 1991-1993 Adobe Systems Incorporated. All Rights Reserved. -/G/setgray ld -/:F/setrgbcolor ld -%%EndFile -%%BeginFile: adobe_psp_uniform_graphics -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/@a -{ -np :M 0 rl :L 0 exch rl 0 rl :L fill -}bd -/@b -{ -np :M 0 rl 0 exch rl :L 0 rl 0 exch rl fill -}bd -/arct where -{ -pop -}{ -/arct -{ -arcto pop pop pop pop -}bd -}ifelse -/x1 Z -/x2 Z -/y1 Z -/y2 Z -/rad Z -/@q -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -fill -}bd -/@s -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -:K -stroke -}bd -/@i -{ -np 0 360 arc fill -}bd -/@j -{ -gS -np -:T -scale -0 0 .5 0 360 arc -fill -gR -}bd -/@e -{ -np -0 360 arc -:K -stroke -}bd -/@f -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 0 360 arc -:K -$m setmatrix -stroke -}bd -/@k -{ -gS -np -:T -0 0 :M -0 0 5 2 roll -arc fill -gR -}bd -/@l -{ -gS -np -:T -0 0 :M -scale -0 0 .5 5 -2 roll arc -fill -gR -}bd -/@m -{ -np -arc -stroke -}bd -/@n -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 5 -2 roll arc -$m setmatrix -stroke -}bd -%%EndFile -%%BeginFile: adobe_psp_basic_text -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/S/show ld -/A{ -0.0 exch ashow -}bd -/R{ -0.0 exch 32 exch widthshow -}bd -/W{ -0.0 3 1 roll widthshow -}bd -/J{ -0.0 32 4 2 roll 0.0 exch awidthshow -}bd -/V{ -0.0 4 1 roll 0.0 exch awidthshow -}bd -/fcflg true def -/fc{ -fcflg{ -vmstatus exch sub 50000 lt{ -(%%[ Warning: Running out of memory ]%%\r)print flush/fcflg false store -}if pop -}if -}bd -/$f[1 0 0 -1 0 0]def -/:ff{$f :mf}bd -/MacEncoding StandardEncoding 256 array copy def -MacEncoding 39/quotesingle put -MacEncoding 96/grave put -/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis/Udieresis/aacute -/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute/egrave -/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde/oacute -/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex/udieresis -/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/notequal/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdiff/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta/guillemotleft -/guillemotright/ellipsis/space/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide/lozenge -/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright/fi/fl -/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex/Idieresis/Igrave -/Oacute/Ocircumflex/apple/Ograve/Uacute/Ucircumflex/Ugrave/dotlessi/circumflex/tilde -/macron/breve/dotaccent/ring/cedilla/hungarumlaut/ogonek/caron -MacEncoding 128 128 getinterval astore pop -level2 startnoload -/copyfontdict -{ -findfont dup length dict -begin -{ -1 index/FID ne{def}{pop pop}ifelse -}forall -}bd -level2 endnoload level2 not startnoload -/copyfontdict -{ -findfont dup length dict -copy -begin -}bd -level2 not endnoload -md/fontname known not{ -/fontname/customfont def -}if -/Encoding Z -/:mre -{ -copyfontdict -/Encoding MacEncoding def -fontname currentdict -end -definefont :ff def -}bd -/:bsr -{ -copyfontdict -/Encoding Encoding 256 array copy def -Encoding dup -}bd -/pd{put dup}bd -/:esr -{ -pop pop -fontname currentdict -end -definefont :ff def -}bd -/scf -{ -scalefont def -}bd -/scf-non -{ -$m scale :mf setfont -}bd -/ps Z -/fz{/ps xs}bd -/sf/setfont ld -/cF/currentfont ld -/mbf -{ -/makeblendedfont where -{ -pop -makeblendedfont -/ABlend exch definefont -}{ -pop -}ifelse -def -}def -%%EndFile -/currentpacking where {pop sc_oldpacking setpacking}if end -%%EndProlog -%%BeginSetup -md begin -/mT[1 0 0 -1 31 761]def -/sD 16 dict def -%%IncludeFont: Helvetica -/f0_1/Helvetica -:mre -/f0_9 f0_1 9 scf -/Courier findfont[10 0 0 -10 0 0]:mf setfont -%PostScript Hack by Mike Brors 12/7/90 -/DisableNextSetRGBColor - { - userdict begin - /setrgbcolor - { - pop - pop - pop - userdict begin - /setrgbcolor systemdict /setrgbcolor get def - end - } def - end -} bind def -/bcarray where { - pop - bcarray 2 { - /da 4 ps div def - df setfont gsave cs wi - 1 index 0 ne{exch da add exch}if grestore setcharwidth - cs 0 0 smc da 0 smc da da smc 0 da smc c - gray - { gl} - {1 setgray}ifelse - da 2. div dup moveto show - }bind put -} if -% -% Used to snap to device pixels, 1/4th of the pixel in. -/stp { % x y pl x y % Snap To Pixel, pixel (auto stroke adjust) - transform - 0.25 sub round 0.25 add exch - 0.25 sub round 0.25 add exch - itransform -} bind def -/snapmoveto { % x y m - % moveto, auto stroke adjust - stp moveto -} bind def -/snaplineto { % x y l - % lineto, auto stroke adjust - stp lineto -} bind def -%%EndSetup -%%Page: 1 1 -%%BeginPageSetup -initializepage -%%EndPageSetup -gS 0 0 552 730 rC -1 G -2 11 163 19 rF -0 G -.016 lw -2.5 11.5 162 18 rS --.016 -.016 17.016 17.016 .016 .016 17 11 @b --.016 -.016 31.016 19.016 .016 .016 31 11 @b --.016 -.016 45.016 16.016 .016 .016 45 11 @b --.016 -.016 59.016 19.016 .016 .016 59 11 @b --.016 -.016 73.016 16.016 .016 .016 73 11 @b --.016 -.016 87.016 19.016 .016 .016 87 11 @b --.016 -.016 102.016 16.016 .016 .016 102 11 @b --.016 -.016 116.016 19.016 .016 .016 116 11 @b --.016 -.016 130.016 16.016 .016 .016 130 11 @b --.016 -.016 144.016 19.016 .016 .016 144 11 @b --.016 -.016 11.016 13.016 .016 .016 11 11 @b --.016 -.016 5.016 13.016 .016 .016 5 11 @b --.016 -.016 8.016 13.016 .016 .016 8 11 @b --.016 -.016 13.016 13.016 .016 .016 13 11 @b --.016 -.016 25.016 13.016 .016 .016 25 11 @b --.016 -.016 19.016 13.016 .016 .016 19 11 @b --.016 -.016 22.016 13.016 .016 .016 22 11 @b --.016 -.016 28.016 13.016 .016 .016 28 11 @b --.016 -.016 39.016 13.016 .016 .016 39 11 @b --.016 -.016 33.016 13.016 .016 .016 33 11 @b --.016 -.016 36.016 13.016 .016 .016 36 11 @b --.016 -.016 42.016 13.016 .016 .016 42 11 @b --.016 -.016 53.016 13.016 .016 .016 53 11 @b --.016 -.016 47.016 13.016 .016 .016 47 11 @b --.016 -.016 50.016 13.016 .016 .016 50 11 @b --.016 -.016 56.016 13.016 .016 .016 56 11 @b --.016 -.016 67.016 13.016 .016 .016 67 11 @b --.016 -.016 62.016 13.016 .016 .016 62 11 @b --.016 -.016 64.016 13.016 .016 .016 64 11 @b --.016 -.016 70.016 13.016 .016 .016 70 11 @b --.016 -.016 81.016 13.016 .016 .016 81 11 @b --.016 -.016 76.016 13.016 .016 .016 76 11 @b --.016 -.016 79.016 13.016 .016 .016 79 11 @b --.016 -.016 84.016 13.016 .016 .016 84 11 @b --.016 -.016 96.016 13.016 .016 .016 96 11 @b --.016 -.016 90.016 13.016 .016 .016 90 11 @b --.016 -.016 93.016 13.016 .016 .016 93 11 @b --.016 -.016 98.016 13.016 .016 .016 98 11 @b --.016 -.016 110.016 13.016 .016 .016 110 11 @b --.016 -.016 104.016 13.016 .016 .016 104 11 @b --.016 -.016 107.016 13.016 .016 .016 107 11 @b --.016 -.016 113.016 13.016 .016 .016 113 11 @b --.016 -.016 124.016 13.016 .016 .016 124 11 @b --.016 -.016 118.016 13.016 .016 .016 118 11 @b --.016 -.016 121.016 13.016 .016 .016 121 11 @b --.016 -.016 127.016 13.016 .016 .016 127 11 @b --.016 -.016 138.016 13.016 .016 .016 138 11 @b --.016 -.016 132.016 13.016 .016 .016 132 11 @b --.016 -.016 135.016 13.016 .016 .016 135 11 @b --.016 -.016 141.016 13.016 .016 .016 141 11 @b -29 20 6 11 rC -gR -gS 24 0 16 31 rC -29 28 :M -f0_9 sf -(1)S -gR -gS 57 20 6 11 rC -gR -gS 52 0 16 31 rC -57 28 :M -f0_9 sf -(2)S -gR -gS 86 20 5 11 rC -gR -gS 81 0 15 31 rC -86 28 :M -f0_9 sf -(3)S -gR -gS 114 20 6 11 rC -gR -gS 109 0 16 31 rC -114 28 :M -f0_9 sf -(4)S -gR -gS 142 20 6 11 rC -gR -gS 137 0 16 31 rC -142 28 :M -f0_9 sf -(5)S -gR -gS 0 0 552 730 rC --.016 -.016 152.016 13.016 .016 .016 152 11 @b --.016 -.016 147.016 13.016 .016 .016 147 11 @b --.016 -.016 149.016 13.016 .016 .016 149 11 @b --.016 -.016 155.016 13.016 .016 .016 155 11 @b --1 -1 3 9 1 1 2 2 @b --1 -1 9 9 1 1 8 2 @b --1 -1 17 9 1 1 16 2 @b --1 -1 32 9 1 1 31 2 @b --1 -1 40 9 1 1 39 2 @b --1 -1 51 9 1 1 50 2 @b --1 -1 71 9 1 1 70 2 @b --1 -1 85 9 1 1 84 2 @b --1 -1 105 9 1 1 104 2 @b --1 -1 119 9 1 1 118 2 @b --1 -1 142 9 1 1 141 2 @b --1 -1 153 9 1 1 152 2 @b -6 18 20 11 rC -gR -gS 1 0 30 29 rC -6 26 :M -f0_9 sf -(cm)S -gR -endp -%%Trailer -end -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob58a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob58a.gif deleted file mode 100755 index a13581b70..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob58a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob58a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob58a.pdf deleted file mode 100644 index e8bb6daae..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob58a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61ava.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61ava.eps deleted file mode 100755 index 27e33526e..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61ava.eps +++ /dev/null @@ -1,769 +0,0 @@ -%!PS-Adobe-3.0 EPSF-3.0 -%%BoundingBox: 14 535 283 763 -%%Title: (pssc7cq2.13a.cwk \(DR\)) -%%Creator: (ClarisWorks 3.0: LaserWriter 8 8.3.3) -%%CreationDate: (1:45 PM September 23, 1996) -%%For: (Alberding) -%%Pages: 1 -%%DocumentFonts: Helvetica Helvetica-Oblique Palatino-Italic Palatino-Roman -%%DocumentNeededFonts: Helvetica Helvetica-Oblique Palatino-Italic Palatino-Roman -%%DocumentSuppliedFonts: -%%DocumentData: Clean7Bit -%%PageOrder: Ascend -%%Orientation: Portrait -%%DocumentMedia: Default 612 792 0 () () -%ADO_ImageableArea: 14 12 598 780 -%%EndComments -userdict begin/dscInfo 5 dict dup begin -/Title(pssc7cq2.13a.cwk \(DR\))def -/Creator(ClarisWorks 3.0: LaserWriter 8 8.3.3)def -/CreationDate(1:45 PM September 23, 1996)def -/For(Alberding)def -/Pages 1 def -end def end -/md 172 dict def md begin/currentpacking where {pop /sc_oldpacking currentpacking def true setpacking}if -%%BeginFile: adobe_psp_basic -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/bd{bind def}bind def -/xdf{exch def}bd -/xs{exch store}bd -/ld{load def}bd -/Z{0 def}bd -/T/true -/F/false -/:L/lineto -/lw/setlinewidth -/:M/moveto -/rl/rlineto -/rm/rmoveto -/:C/curveto -/:T/translate -/:K/closepath -/:mf/makefont -/gS/gsave -/gR/grestore -/np/newpath -14{ld}repeat -/$m matrix def -/av 83 def -/por true def -/normland false def -/psb-nosave{}bd -/pse-nosave{}bd -/us Z -/psb{/us save store}bd -/pse{us restore}bd -/level2 -/languagelevel where -{ -pop languagelevel 2 ge -}{ -false -}ifelse -def -/featurecleanup -{ -stopped -cleartomark -countdictstack exch sub dup 0 gt -{ -{end}repeat -}{ -pop -}ifelse -}bd -/noload Z -/startnoload -{ -{/noload save store}if -}bd -/endnoload -{ -{noload restore}if -}bd -level2 startnoload -/setjob -{ -statusdict/jobname 3 -1 roll put -}bd -/setcopies -{ -userdict/#copies 3 -1 roll put -}bd -level2 endnoload level2 not startnoload -/setjob -{ -1 dict begin/JobName xdf currentdict end setuserparams -}bd -/setcopies -{ -1 dict begin/NumCopies xdf currentdict end setpagedevice -}bd -level2 not endnoload -/pm Z -/mT Z -/sD Z -/realshowpage Z -/initializepage -{ -/pm save store mT concat -}bd -/endp -{ -pm restore showpage -}def -/$c/DeviceRGB def -/rectclip where -{ -pop/rC/rectclip ld -}{ -/rC -{ -np 4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -clip np -}bd -}ifelse -/rectfill where -{ -pop/rF/rectfill ld -}{ -/rF -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -fill -gR -}bd -}ifelse -/rectstroke where -{ -pop/rS/rectstroke ld -}{ -/rS -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -stroke -gR -}bd -}ifelse -%%EndFile -%%BeginFile: adobe_psp_colorspace_level1 -%%Copyright: Copyright 1991-1993 Adobe Systems Incorporated. All Rights Reserved. -/G/setgray ld -/:F1/setgray ld -/:F/setrgbcolor ld -/:F4/setcmykcolor where -{ -pop -/setcmykcolor ld -}{ -{ -3 -{ -dup -3 -1 roll add -dup 1 gt{pop 1}if -1 exch sub -4 1 roll -}repeat -pop -setrgbcolor -}bd -}ifelse -/:Fx -{ -counttomark -{0{G}0{:F}{:F4}} -exch get -exec -pop -}bd -/:rg{/DeviceRGB :ss}bd -/:sc{$cs :ss}bd -/:dc{/$cs xdf}bd -/:sgl{}def -/:dr{}bd -/:fCRD{pop}bd -/:ckcs{}bd -/:ss{/$c xdf}bd -/$cs Z -%%EndFile -%%BeginFile: adobe_psp_uniform_graphics -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/@a -{ -np :M 0 rl :L 0 exch rl 0 rl :L fill -}bd -/@b -{ -np :M 0 rl 0 exch rl :L 0 rl 0 exch rl fill -}bd -/arct where -{ -pop -}{ -/arct -{ -arcto pop pop pop pop -}bd -}ifelse -/x1 Z -/x2 Z -/y1 Z -/y2 Z -/rad Z -/@q -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -fill -}bd -/@s -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -:K -stroke -}bd -/@i -{ -np 0 360 arc fill -}bd -/@j -{ -gS -np -:T -scale -0 0 .5 0 360 arc -fill -gR -}bd -/@e -{ -np -0 360 arc -:K -stroke -}bd -/@f -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 0 360 arc -:K -$m setmatrix -stroke -}bd -/@k -{ -gS -np -:T -0 0 :M -0 0 5 2 roll -arc fill -gR -}bd -/@l -{ -gS -np -:T -0 0 :M -scale -0 0 .5 5 -2 roll arc -fill -gR -}bd -/@m -{ -np -arc -stroke -}bd -/@n -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 5 -2 roll arc -$m setmatrix -stroke -}bd -%%EndFile -%%BeginFile: adobe_psp_customps -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/$t Z -/$p Z -/$s Z -/$o 1. def -/2state? false def -/ps Z -level2 startnoload -/pushcolor/currentrgbcolor ld -/popcolor/setrgbcolor ld -/setcmykcolor where -{ -pop/currentcmykcolor where -{ -pop/pushcolor/currentcmykcolor ld -/popcolor/setcmykcolor ld -}if -}if -level2 endnoload level2 not startnoload -/pushcolor -{ -currentcolorspace $c eq -{ -currentcolor currentcolorspace true -}{ -currentcmykcolor false -}ifelse -}bd -/popcolor -{ -{ -setcolorspace setcolor -}{ -setcmykcolor -}ifelse -}bd -level2 not endnoload -/pushstatic -{ -ps -2state? -$o -$t -$p -$s -$cs -}bd -/popstatic -{ -/$cs xs -/$s xs -/$p xs -/$t xs -/$o xs -/2state? xs -/ps xs -}bd -/pushgstate -{ -save errordict/nocurrentpoint{pop 0 0}put -currentpoint -3 -1 roll restore -pushcolor -currentlinewidth -currentlinecap -currentlinejoin -currentdash exch aload length -np clippath pathbbox -$m currentmatrix aload pop -}bd -/popgstate -{ -$m astore setmatrix -2 index sub exch -3 index sub exch -rC -array astore exch setdash -setlinejoin -setlinecap -lw -popcolor -np :M -}bd -/bu -{ -pushgstate -gR -pushgstate -2state? -{ -gR -pushgstate -}if -pushstatic -pm restore -mT concat -}bd -/bn -{ -/pm save store -popstatic -popgstate -gS -popgstate -2state? -{ -gS -popgstate -}if -}bd -/cpat{pop 64 div setgray 8{pop}repeat}bd -%%EndFile -%%BeginFile: adobe_psp_basic_text -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/S/show ld -/A{ -0.0 exch ashow -}bd -/R{ -0.0 exch 32 exch widthshow -}bd -/W{ -0.0 3 1 roll widthshow -}bd -/J{ -0.0 32 4 2 roll 0.0 exch awidthshow -}bd -/V{ -0.0 4 1 roll 0.0 exch awidthshow -}bd -/fcflg true def -/fc{ -fcflg{ -vmstatus exch sub 50000 lt{ -(%%[ Warning: Running out of memory ]%%\r)print flush/fcflg false store -}if pop -}if -}bd -/$f[1 0 0 -1 0 0]def -/:ff{$f :mf}bd -/MacEncoding StandardEncoding 256 array copy def -MacEncoding 39/quotesingle put -MacEncoding 96/grave put -/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis/Udieresis/aacute -/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute/egrave -/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde/oacute -/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex/udieresis -/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/notequal/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdiff/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta/guillemotleft -/guillemotright/ellipsis/space/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide/lozenge -/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright/fi/fl -/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex/Idieresis/Igrave -/Oacute/Ocircumflex/apple/Ograve/Uacute/Ucircumflex/Ugrave/dotlessi/circumflex/tilde -/macron/breve/dotaccent/ring/cedilla/hungarumlaut/ogonek/caron -MacEncoding 128 128 getinterval astore pop -level2 startnoload -/copyfontdict -{ -findfont dup length dict -begin -{ -1 index/FID ne{def}{pop pop}ifelse -}forall -}bd -level2 endnoload level2 not startnoload -/copyfontdict -{ -findfont dup length dict -copy -begin -}bd -level2 not endnoload -md/fontname known not{ -/fontname/customfont def -}if -/Encoding Z -/:mre -{ -copyfontdict -/Encoding MacEncoding def -fontname currentdict -end -definefont :ff def -}bd -/:bsr -{ -copyfontdict -/Encoding Encoding 256 array copy def -Encoding dup -}bd -/pd{put dup}bd -/:esr -{ -pop pop -fontname currentdict -end -definefont :ff def -}bd -/scf -{ -scalefont def -}bd -/scf-non -{ -$m scale :mf setfont -}bd -/ps Z -/fz{/ps xs}bd -/sf/setfont ld -/cF/currentfont ld -/mbf -{ -/makeblendedfont where -{ -pop -makeblendedfont -/ABlend exch definefont -}{ -pop -}ifelse -def -}def -%%EndFile -/currentpacking where {pop sc_oldpacking setpacking}if end -%%EndProlog -%%BeginSetup -md begin -/mT[1 0 0 -1 14 780]def -/sD 16 dict def -%%IncludeFont: Helvetica -%%IncludeFont: Helvetica-Oblique -%%IncludeFont: Palatino-Italic -%%IncludeFont: Palatino-Roman -/f0_1/Helvetica -:mre -/f0_12 f0_1 12 scf -/f0_9 f0_1 9 scf -/f1_1/Helvetica-Oblique -:mre -/f1_12 f1_1 12 scf -/f2_1/Palatino-Italic -:mre -/f2_12 f2_1 12 scf -/f3_1/Palatino-Roman -:mre -/f3_12 f3_1 12 scf -/Courier findfont[10 0 0 -10 0 0]:mf setfont -%PostScript Hack by Mike Brors 12/7/90 -/DisableNextSetRGBColor - { - userdict begin - /setrgbcolor - { - pop - pop - pop - userdict begin - /setrgbcolor systemdict /setrgbcolor get def - end - } def - end -} bind def -/bcarray where { - pop - bcarray 2 { - /da 4 ps div def - df setfont gsave cs wi - 1 index 0 ne{exch da add exch}if grestore setcharwidth - cs 0 0 smc da 0 smc da da smc 0 da smc c - gray - { gl} - {1 setgray}ifelse - da 2. div dup moveto show - }bind put -} if -% -% Used to snap to device pixels, 1/4th of the pixel in. -/stp { % x y pl x y % Snap To Pixel, pixel (auto stroke adjust) - transform - 0.25 sub round 0.25 add exch - 0.25 sub round 0.25 add exch - itransform -} bind def -/snapmoveto { % x y m - % moveto, auto stroke adjust - stp moveto -} bind def -/snaplineto { % x y l - % lineto, auto stroke adjust - stp lineto -} bind def -%%EndSetup -%%Page: 1 1 -%%BeginPageSetup -initializepage -%%EndPageSetup -gS 0 0 584 768 rC -17 19 552 730 rC -.5 G -52 23.016 -.016 .016 178.016 23 .016 52 23 @a --.016 -.016 178.016 131.016 .016 .016 178 23 @b --.016 -.016 264.016 239.016 .016 .016 264 131 @b -48 239.016 -.016 .016 264.016 239 .016 48 239 @a -1 G -48 18 1 226 rF -0 G -.016 lw -48.5 18.5 0 225 rS -48 131.016 -.016 .016 264.016 131 .016 48 131 @a -48 77.016 -.016 .016 57.016 77 .016 48 77 @a -48 23.016 -.016 .016 57.016 23 .016 48 23 @a -48 185.016 -.016 .016 57.016 185 .016 48 185 @a -48 239.016 -.016 .016 57.016 239 .016 48 239 @a --.016 -.016 48.016 131.016 .016 .016 48 122 @b --.016 -.016 91.016 131.016 .016 .016 91 122 @b --.016 -.016 134.016 131.016 .016 .016 134 122 @b --.016 -.016 178.016 131.016 .016 .016 178 122 @b --.016 -.016 221.016 131.016 .016 .016 221 122 @b --.016 -.016 264.016 131.016 .016 .016 264 122 @b -264 239 :M -gsave -2.0 setmiterlimit --19982 -19981 -1 1 -19980 -19981 1 -19982 -19982 @a -1 lw --19981 -19981 :M -newpath -48 131 snapmoveto -179 23 snaplineto -264 239 snaplineto -stroke --19982 -9982 -10000 10000 -9981 -19981 10000 -19982 -19982 @a -10000 lw --19981 -19981 :M -grestore -35 19 14 10 rC -gR -gS 30 0 24 29 rC -37 26 :M -f0_9 sf --.259(+2)A -gR -gS 35 73 14 10 rC -gR -gS 30 37 24 46 rC -37 80 :M -f0_9 sf --.259(+1)A -gR -gS 35 127 14 10 rC -gR -gS 30 91 24 46 rC -37 134 :M -f0_9 sf --.259(+0)A -gR -gS 35 181 14 10 rC -gR -gS 30 145 24 46 rC -37 188 :M -f0_9 sf -S -gR -gS 35 235 14 10 rC -gR -gS 30 199 24 46 rC -37 242 :M -f0_9 sf -S -gR -gS 139 150 27 13 rC -gR -gS 134 114 37 49 rC -139 160 :M -f1_12 sf --.106(t )A -f0_12 sf --.222(\(s\))A -gR -gS 19 99 15 45 rC -gS -26.5 121.5 :T -270 rotate --26.5 -121.5 :T -4 124 :M -f2_12 sf --.163(v )A -f3_12 sf --.144<28>A -f0_12 sf --.281(m/s\))A -gR -gR -gS 85 132 13 10 rC -gR -gS 80 96 23 46 rC -89 139 :M -f0_9 sf -(1)S -gR -gS 130 132 13 10 rC -gR -gS 125 96 23 46 rC -134 139 :M -f0_9 sf -(2)S -gR -gS 175 132 13 10 rC -gR -gS 170 96 23 46 rC -179 139 :M -f0_9 sf -(3)S -gR -gS 215 132 14 10 rC -gR -gS 210 96 24 46 rC -219 139 :M -f0_9 sf -(4)S -gR -gS 256 132 13 10 rC -gR -gS 251 96 23 46 rC -260 139 :M -f0_9 sf -(5)S -gR -endp -%%Trailer -end -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61ava.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61ava.gif deleted file mode 100755 index c25c67aa4..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61ava.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61avb.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61avb.eps deleted file mode 100755 index ed0cb144d..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61avb.eps +++ /dev/null @@ -1,775 +0,0 @@ -%!PS-Adobe-3.0 EPSF-3.0 -%%BoundingBox: 14 521 284 761 -%%Title: (pssc7cq2.13b.cwk \(DR\)) -%%Creator: (ClarisWorks 3.0: LaserWriter 8 8.3.3) -%%CreationDate: (1:46 PM September 23, 1996) -%%For: (Alberding) -%%Pages: 1 -%%DocumentFonts: Helvetica-Bold Helvetica-BoldOblique Helvetica Palatino-Italic Palatino-Roman -%%DocumentNeededFonts: Helvetica-Bold Helvetica-BoldOblique Helvetica Palatino-Italic Palatino-Roman -%%DocumentSuppliedFonts: -%%DocumentData: Clean7Bit -%%PageOrder: Ascend -%%Orientation: Portrait -%%DocumentMedia: Default 612 792 0 () () -%ADO_ImageableArea: 14 12 598 780 -%%EndComments -userdict begin/dscInfo 5 dict dup begin -/Title(pssc7cq2.13b.cwk \(DR\))def -/Creator(ClarisWorks 3.0: LaserWriter 8 8.3.3)def -/CreationDate(1:46 PM September 23, 1996)def -/For(Alberding)def -/Pages 1 def -end def end -/md 174 dict def md begin/currentpacking where {pop /sc_oldpacking currentpacking def true setpacking}if -%%BeginFile: adobe_psp_basic -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/bd{bind def}bind def -/xdf{exch def}bd -/xs{exch store}bd -/ld{load def}bd -/Z{0 def}bd -/T/true -/F/false -/:L/lineto -/lw/setlinewidth -/:M/moveto -/rl/rlineto -/rm/rmoveto -/:C/curveto -/:T/translate -/:K/closepath -/:mf/makefont -/gS/gsave -/gR/grestore -/np/newpath -14{ld}repeat -/$m matrix def -/av 83 def -/por true def -/normland false def -/psb-nosave{}bd -/pse-nosave{}bd -/us Z -/psb{/us save store}bd -/pse{us restore}bd -/level2 -/languagelevel where -{ -pop languagelevel 2 ge -}{ -false -}ifelse -def -/featurecleanup -{ -stopped -cleartomark -countdictstack exch sub dup 0 gt -{ -{end}repeat -}{ -pop -}ifelse -}bd -/noload Z -/startnoload -{ -{/noload save store}if -}bd -/endnoload -{ -{noload restore}if -}bd -level2 startnoload -/setjob -{ -statusdict/jobname 3 -1 roll put -}bd -/setcopies -{ -userdict/#copies 3 -1 roll put -}bd -level2 endnoload level2 not startnoload -/setjob -{ -1 dict begin/JobName xdf currentdict end setuserparams -}bd -/setcopies -{ -1 dict begin/NumCopies xdf currentdict end setpagedevice -}bd -level2 not endnoload -/pm Z -/mT Z -/sD Z -/realshowpage Z -/initializepage -{ -/pm save store mT concat -}bd -/endp -{ -pm restore showpage -}def -/$c/DeviceRGB def -/rectclip where -{ -pop/rC/rectclip ld -}{ -/rC -{ -np 4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -clip np -}bd -}ifelse -/rectfill where -{ -pop/rF/rectfill ld -}{ -/rF -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -fill -gR -}bd -}ifelse -/rectstroke where -{ -pop/rS/rectstroke ld -}{ -/rS -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -stroke -gR -}bd -}ifelse -%%EndFile -%%BeginFile: adobe_psp_colorspace_level1 -%%Copyright: Copyright 1991-1993 Adobe Systems Incorporated. All Rights Reserved. -/G/setgray ld -/:F1/setgray ld -/:F/setrgbcolor ld -/:F4/setcmykcolor where -{ -pop -/setcmykcolor ld -}{ -{ -3 -{ -dup -3 -1 roll add -dup 1 gt{pop 1}if -1 exch sub -4 1 roll -}repeat -pop -setrgbcolor -}bd -}ifelse -/:Fx -{ -counttomark -{0{G}0{:F}{:F4}} -exch get -exec -pop -}bd -/:rg{/DeviceRGB :ss}bd -/:sc{$cs :ss}bd -/:dc{/$cs xdf}bd -/:sgl{}def -/:dr{}bd -/:fCRD{pop}bd -/:ckcs{}bd -/:ss{/$c xdf}bd -/$cs Z -%%EndFile -%%BeginFile: adobe_psp_uniform_graphics -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/@a -{ -np :M 0 rl :L 0 exch rl 0 rl :L fill -}bd -/@b -{ -np :M 0 rl 0 exch rl :L 0 rl 0 exch rl fill -}bd -/arct where -{ -pop -}{ -/arct -{ -arcto pop pop pop pop -}bd -}ifelse -/x1 Z -/x2 Z -/y1 Z -/y2 Z -/rad Z -/@q -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -fill -}bd -/@s -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -:K -stroke -}bd -/@i -{ -np 0 360 arc fill -}bd -/@j -{ -gS -np -:T -scale -0 0 .5 0 360 arc -fill -gR -}bd -/@e -{ -np -0 360 arc -:K -stroke -}bd -/@f -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 0 360 arc -:K -$m setmatrix -stroke -}bd -/@k -{ -gS -np -:T -0 0 :M -0 0 5 2 roll -arc fill -gR -}bd -/@l -{ -gS -np -:T -0 0 :M -scale -0 0 .5 5 -2 roll arc -fill -gR -}bd -/@m -{ -np -arc -stroke -}bd -/@n -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 5 -2 roll arc -$m setmatrix -stroke -}bd -%%EndFile -%%BeginFile: adobe_psp_customps -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/$t Z -/$p Z -/$s Z -/$o 1. def -/2state? false def -/ps Z -level2 startnoload -/pushcolor/currentrgbcolor ld -/popcolor/setrgbcolor ld -/setcmykcolor where -{ -pop/currentcmykcolor where -{ -pop/pushcolor/currentcmykcolor ld -/popcolor/setcmykcolor ld -}if -}if -level2 endnoload level2 not startnoload -/pushcolor -{ -currentcolorspace $c eq -{ -currentcolor currentcolorspace true -}{ -currentcmykcolor false -}ifelse -}bd -/popcolor -{ -{ -setcolorspace setcolor -}{ -setcmykcolor -}ifelse -}bd -level2 not endnoload -/pushstatic -{ -ps -2state? -$o -$t -$p -$s -$cs -}bd -/popstatic -{ -/$cs xs -/$s xs -/$p xs -/$t xs -/$o xs -/2state? xs -/ps xs -}bd -/pushgstate -{ -save errordict/nocurrentpoint{pop 0 0}put -currentpoint -3 -1 roll restore -pushcolor -currentlinewidth -currentlinecap -currentlinejoin -currentdash exch aload length -np clippath pathbbox -$m currentmatrix aload pop -}bd -/popgstate -{ -$m astore setmatrix -2 index sub exch -3 index sub exch -rC -array astore exch setdash -setlinejoin -setlinecap -lw -popcolor -np :M -}bd -/bu -{ -pushgstate -gR -pushgstate -2state? -{ -gR -pushgstate -}if -pushstatic -pm restore -mT concat -}bd -/bn -{ -/pm save store -popstatic -popgstate -gS -popgstate -2state? -{ -gS -popgstate -}if -}bd -/cpat{pop 64 div setgray 8{pop}repeat}bd -%%EndFile -%%BeginFile: adobe_psp_basic_text -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/S/show ld -/A{ -0.0 exch ashow -}bd -/R{ -0.0 exch 32 exch widthshow -}bd -/W{ -0.0 3 1 roll widthshow -}bd -/J{ -0.0 32 4 2 roll 0.0 exch awidthshow -}bd -/V{ -0.0 4 1 roll 0.0 exch awidthshow -}bd -/fcflg true def -/fc{ -fcflg{ -vmstatus exch sub 50000 lt{ -(%%[ Warning: Running out of memory ]%%\r)print flush/fcflg false store -}if pop -}if -}bd -/$f[1 0 0 -1 0 0]def -/:ff{$f :mf}bd -/MacEncoding StandardEncoding 256 array copy def -MacEncoding 39/quotesingle put -MacEncoding 96/grave put -/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis/Udieresis/aacute -/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute/egrave -/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde/oacute -/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex/udieresis -/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/notequal/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdiff/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta/guillemotleft -/guillemotright/ellipsis/space/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide/lozenge -/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright/fi/fl -/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex/Idieresis/Igrave -/Oacute/Ocircumflex/apple/Ograve/Uacute/Ucircumflex/Ugrave/dotlessi/circumflex/tilde -/macron/breve/dotaccent/ring/cedilla/hungarumlaut/ogonek/caron -MacEncoding 128 128 getinterval astore pop -level2 startnoload -/copyfontdict -{ -findfont dup length dict -begin -{ -1 index/FID ne{def}{pop pop}ifelse -}forall -}bd -level2 endnoload level2 not startnoload -/copyfontdict -{ -findfont dup length dict -copy -begin -}bd -level2 not endnoload -md/fontname known not{ -/fontname/customfont def -}if -/Encoding Z -/:mre -{ -copyfontdict -/Encoding MacEncoding def -fontname currentdict -end -definefont :ff def -}bd -/:bsr -{ -copyfontdict -/Encoding Encoding 256 array copy def -Encoding dup -}bd -/pd{put dup}bd -/:esr -{ -pop pop -fontname currentdict -end -definefont :ff def -}bd -/scf -{ -scalefont def -}bd -/scf-non -{ -$m scale :mf setfont -}bd -/ps Z -/fz{/ps xs}bd -/sf/setfont ld -/cF/currentfont ld -/mbf -{ -/makeblendedfont where -{ -pop -makeblendedfont -/ABlend exch definefont -}{ -pop -}ifelse -def -}def -%%EndFile -/currentpacking where {pop sc_oldpacking setpacking}if end -%%EndProlog -%%BeginSetup -md begin -/mT[1 0 0 -1 14 780]def -/sD 16 dict def -%%IncludeFont: Helvetica-Bold -%%IncludeFont: Helvetica-BoldOblique -%%IncludeFont: Helvetica -%%IncludeFont: Palatino-Italic -%%IncludeFont: Palatino-Roman -/f0_1/Helvetica-Bold -:mre -/f0_12 f0_1 12 scf -/f0_9 f0_1 9 scf -/f1_1/Helvetica-BoldOblique -:mre -/f1_12 f1_1 12 scf -/f2_1/Helvetica -:mre -/f2_12 f2_1 12 scf -/f3_1/Palatino-Italic -:mre -/f3_12 f3_1 12 scf -/f4_1/Palatino-Roman -:mre -/f4_12 f4_1 12 scf -/Courier findfont[10 0 0 -10 0 0]:mf setfont -%PostScript Hack by Mike Brors 12/7/90 -/DisableNextSetRGBColor - { - userdict begin - /setrgbcolor - { - pop - pop - pop - userdict begin - /setrgbcolor systemdict /setrgbcolor get def - end - } def - end -} bind def -/bcarray where { - pop - bcarray 2 { - /da 4 ps div def - df setfont gsave cs wi - 1 index 0 ne{exch da add exch}if grestore setcharwidth - cs 0 0 smc da 0 smc da da smc 0 da smc c - gray - { gl} - {1 setgray}ifelse - da 2. div dup moveto show - }bind put -} if -% -% Used to snap to device pixels, 1/4th of the pixel in. -/stp { % x y pl x y % Snap To Pixel, pixel (auto stroke adjust) - transform - 0.25 sub round 0.25 add exch - 0.25 sub round 0.25 add exch - itransform -} bind def -/snapmoveto { % x y m - % moveto, auto stroke adjust - stp moveto -} bind def -/snaplineto { % x y l - % lineto, auto stroke adjust - stp lineto -} bind def -%%EndSetup -%%Page: 1 1 -%%BeginPageSetup -initializepage -%%EndPageSetup -gS 0 0 584 768 rC -17 19 552 730 rC -.5 G --.016 -.016 178.016 144.016 .016 .016 178 90 @b -52 90.016 -.016 .016 178.016 90 .016 52 90 @a -48 252.016 -.016 .016 264.016 252 .016 48 252 @a -1 G -48 32 1 226 rF -0 G -.016 lw -48.5 32.5 0 225 rS -48 144.016 -.016 .016 264.016 144 .016 48 144 @a -48 90.016 -.016 .016 57.016 90 .016 48 90 @a -48 36.016 -.016 .016 57.016 36 .016 48 36 @a -48 198.016 -.016 .016 57.016 198 .016 48 198 @a -48 252.016 -.016 .016 57.016 252 .016 48 252 @a --.016 -.016 48.016 144.016 .016 .016 48 135 @b --.016 -.016 91.016 144.016 .016 .016 91 135 @b --.016 -.016 134.016 144.016 .016 .016 134 135 @b --.016 -.016 178.016 144.016 .016 .016 178 135 @b --.016 -.016 221.016 144.016 .016 .016 221 135 @b --.016 -.016 264.016 144.016 .016 .016 264 135 @b -264 252 :M -gsave -2.0 setmiterlimit --19982 -19968 -1 1 -19980 -19968 1 -19982 -19969 @a -1 lw --19981 -19968 :M -newpath -48 144 snapmoveto -179 90 snaplineto -264 252 snaplineto -stroke --19982 -9969 -10000 10000 -9981 -19968 10000 -19982 -19969 @a -10000 lw --19981 -19968 :M -grestore -35 33 14 10 rC -gR -gS 30 0 24 43 rC -36 40 :M -f0_9 sf -.741(+2)A -gR -gS 35 87 14 10 rC -gR -gS 30 51 24 46 rC -36 94 :M -f0_9 sf -.741(+1)A -gR -gS 35 141 14 10 rC -gR -gS 30 105 24 46 rC -36 148 :M -f0_9 sf -.741(+0)A -gR -gS 35 195 14 10 rC -gR -gS 30 159 24 46 rC -36 202 :M -f0_9 sf -.994A -gR -gS 35 249 14 10 rC -gR -gS 30 213 24 46 rC -36 256 :M -f0_9 sf -.994A -gR -gS 139 163 27 13 rC -gR -gS 134 127 37 49 rC -139 173 :M -f1_12 sf -(t )S -f0_12 sf -(\(s\))S -gR -gS 19 112 15 45 rC -gS -26.5 134.5 :T -270 rotate --26.5 -134.5 :T -4 137 :M -f3_12 sf --.163(v )A -f4_12 sf --.144<28>A -f2_12 sf --.281(m/s\))A -gR -gR -gS 85 145 13 10 rC -gR -gS 80 109 23 46 rC -89 152 :M -f0_9 sf -(1)S -gR -gS 130 145 13 10 rC -gR -gS 125 109 23 46 rC -134 152 :M -f0_9 sf -(2)S -gR -gS 175 145 13 10 rC -gR -gS 170 109 23 46 rC -179 152 :M -f0_9 sf -(3)S -gR -gS 215 145 14 10 rC -gR -gS 210 109 24 46 rC -219 152 :M -f0_9 sf -(4)S -gR -gS 256 145 13 10 rC -gR -gS 251 109 23 46 rC -260 152 :M -f0_9 sf -(5)S -gR -gS 17 19 552 730 rC -.5 G --.016 -.016 264.016 252.016 .016 .016 264 144 @b -endp -%%Trailer -end -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61avb.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61avb.gif deleted file mode 100755 index e8e2bd57f..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61avb.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61avc.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61avc.eps deleted file mode 100755 index bce60492a..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61avc.eps +++ /dev/null @@ -1,769 +0,0 @@ -%!PS-Adobe-3.0 EPSF-3.0 -%%BoundingBox: 16 529 284 761 -%%Title: (pssc7cq2.13c.cwk \(DR\)) -%%Creator: (ClarisWorks 3.0: LaserWriter 8 8.3.3) -%%CreationDate: (1:47 PM September 23, 1996) -%%For: (Alberding) -%%Pages: 1 -%%DocumentFonts: Helvetica Helvetica-Oblique Palatino-Italic Palatino-Roman -%%DocumentNeededFonts: Helvetica Helvetica-Oblique Palatino-Italic Palatino-Roman -%%DocumentSuppliedFonts: -%%DocumentData: Clean7Bit -%%PageOrder: Ascend -%%Orientation: Portrait -%%DocumentMedia: Default 612 792 0 () () -%ADO_ImageableArea: 14 12 598 780 -%%EndComments -userdict begin/dscInfo 5 dict dup begin -/Title(pssc7cq2.13c.cwk \(DR\))def -/Creator(ClarisWorks 3.0: LaserWriter 8 8.3.3)def -/CreationDate(1:47 PM September 23, 1996)def -/For(Alberding)def -/Pages 1 def -end def end -/md 172 dict def md begin/currentpacking where {pop /sc_oldpacking currentpacking def true setpacking}if -%%BeginFile: adobe_psp_basic -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/bd{bind def}bind def -/xdf{exch def}bd -/xs{exch store}bd -/ld{load def}bd -/Z{0 def}bd -/T/true -/F/false -/:L/lineto -/lw/setlinewidth -/:M/moveto -/rl/rlineto -/rm/rmoveto -/:C/curveto -/:T/translate -/:K/closepath -/:mf/makefont -/gS/gsave -/gR/grestore -/np/newpath -14{ld}repeat -/$m matrix def -/av 83 def -/por true def -/normland false def -/psb-nosave{}bd -/pse-nosave{}bd -/us Z -/psb{/us save store}bd -/pse{us restore}bd -/level2 -/languagelevel where -{ -pop languagelevel 2 ge -}{ -false -}ifelse -def -/featurecleanup -{ -stopped -cleartomark -countdictstack exch sub dup 0 gt -{ -{end}repeat -}{ -pop -}ifelse -}bd -/noload Z -/startnoload -{ -{/noload save store}if -}bd -/endnoload -{ -{noload restore}if -}bd -level2 startnoload -/setjob -{ -statusdict/jobname 3 -1 roll put -}bd -/setcopies -{ -userdict/#copies 3 -1 roll put -}bd -level2 endnoload level2 not startnoload -/setjob -{ -1 dict begin/JobName xdf currentdict end setuserparams -}bd -/setcopies -{ -1 dict begin/NumCopies xdf currentdict end setpagedevice -}bd -level2 not endnoload -/pm Z -/mT Z -/sD Z -/realshowpage Z -/initializepage -{ -/pm save store mT concat -}bd -/endp -{ -pm restore showpage -}def -/$c/DeviceRGB def -/rectclip where -{ -pop/rC/rectclip ld -}{ -/rC -{ -np 4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -clip np -}bd -}ifelse -/rectfill where -{ -pop/rF/rectfill ld -}{ -/rF -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -fill -gR -}bd -}ifelse -/rectstroke where -{ -pop/rS/rectstroke ld -}{ -/rS -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -stroke -gR -}bd -}ifelse -%%EndFile -%%BeginFile: adobe_psp_colorspace_level1 -%%Copyright: Copyright 1991-1993 Adobe Systems Incorporated. All Rights Reserved. -/G/setgray ld -/:F1/setgray ld -/:F/setrgbcolor ld -/:F4/setcmykcolor where -{ -pop -/setcmykcolor ld -}{ -{ -3 -{ -dup -3 -1 roll add -dup 1 gt{pop 1}if -1 exch sub -4 1 roll -}repeat -pop -setrgbcolor -}bd -}ifelse -/:Fx -{ -counttomark -{0{G}0{:F}{:F4}} -exch get -exec -pop -}bd -/:rg{/DeviceRGB :ss}bd -/:sc{$cs :ss}bd -/:dc{/$cs xdf}bd -/:sgl{}def -/:dr{}bd -/:fCRD{pop}bd -/:ckcs{}bd -/:ss{/$c xdf}bd -/$cs Z -%%EndFile -%%BeginFile: adobe_psp_uniform_graphics -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/@a -{ -np :M 0 rl :L 0 exch rl 0 rl :L fill -}bd -/@b -{ -np :M 0 rl 0 exch rl :L 0 rl 0 exch rl fill -}bd -/arct where -{ -pop -}{ -/arct -{ -arcto pop pop pop pop -}bd -}ifelse -/x1 Z -/x2 Z -/y1 Z -/y2 Z -/rad Z -/@q -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -fill -}bd -/@s -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -:K -stroke -}bd -/@i -{ -np 0 360 arc fill -}bd -/@j -{ -gS -np -:T -scale -0 0 .5 0 360 arc -fill -gR -}bd -/@e -{ -np -0 360 arc -:K -stroke -}bd -/@f -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 0 360 arc -:K -$m setmatrix -stroke -}bd -/@k -{ -gS -np -:T -0 0 :M -0 0 5 2 roll -arc fill -gR -}bd -/@l -{ -gS -np -:T -0 0 :M -scale -0 0 .5 5 -2 roll arc -fill -gR -}bd -/@m -{ -np -arc -stroke -}bd -/@n -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 5 -2 roll arc -$m setmatrix -stroke -}bd -%%EndFile -%%BeginFile: adobe_psp_customps -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/$t Z -/$p Z -/$s Z -/$o 1. def -/2state? false def -/ps Z -level2 startnoload -/pushcolor/currentrgbcolor ld -/popcolor/setrgbcolor ld -/setcmykcolor where -{ -pop/currentcmykcolor where -{ -pop/pushcolor/currentcmykcolor ld -/popcolor/setcmykcolor ld -}if -}if -level2 endnoload level2 not startnoload -/pushcolor -{ -currentcolorspace $c eq -{ -currentcolor currentcolorspace true -}{ -currentcmykcolor false -}ifelse -}bd -/popcolor -{ -{ -setcolorspace setcolor -}{ -setcmykcolor -}ifelse -}bd -level2 not endnoload -/pushstatic -{ -ps -2state? -$o -$t -$p -$s -$cs -}bd -/popstatic -{ -/$cs xs -/$s xs -/$p xs -/$t xs -/$o xs -/2state? xs -/ps xs -}bd -/pushgstate -{ -save errordict/nocurrentpoint{pop 0 0}put -currentpoint -3 -1 roll restore -pushcolor -currentlinewidth -currentlinecap -currentlinejoin -currentdash exch aload length -np clippath pathbbox -$m currentmatrix aload pop -}bd -/popgstate -{ -$m astore setmatrix -2 index sub exch -3 index sub exch -rC -array astore exch setdash -setlinejoin -setlinecap -lw -popcolor -np :M -}bd -/bu -{ -pushgstate -gR -pushgstate -2state? -{ -gR -pushgstate -}if -pushstatic -pm restore -mT concat -}bd -/bn -{ -/pm save store -popstatic -popgstate -gS -popgstate -2state? -{ -gS -popgstate -}if -}bd -/cpat{pop 64 div setgray 8{pop}repeat}bd -%%EndFile -%%BeginFile: adobe_psp_basic_text -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/S/show ld -/A{ -0.0 exch ashow -}bd -/R{ -0.0 exch 32 exch widthshow -}bd -/W{ -0.0 3 1 roll widthshow -}bd -/J{ -0.0 32 4 2 roll 0.0 exch awidthshow -}bd -/V{ -0.0 4 1 roll 0.0 exch awidthshow -}bd -/fcflg true def -/fc{ -fcflg{ -vmstatus exch sub 50000 lt{ -(%%[ Warning: Running out of memory ]%%\r)print flush/fcflg false store -}if pop -}if -}bd -/$f[1 0 0 -1 0 0]def -/:ff{$f :mf}bd -/MacEncoding StandardEncoding 256 array copy def -MacEncoding 39/quotesingle put -MacEncoding 96/grave put -/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis/Udieresis/aacute -/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute/egrave -/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde/oacute -/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex/udieresis -/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/notequal/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdiff/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta/guillemotleft -/guillemotright/ellipsis/space/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide/lozenge -/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright/fi/fl -/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex/Idieresis/Igrave -/Oacute/Ocircumflex/apple/Ograve/Uacute/Ucircumflex/Ugrave/dotlessi/circumflex/tilde -/macron/breve/dotaccent/ring/cedilla/hungarumlaut/ogonek/caron -MacEncoding 128 128 getinterval astore pop -level2 startnoload -/copyfontdict -{ -findfont dup length dict -begin -{ -1 index/FID ne{def}{pop pop}ifelse -}forall -}bd -level2 endnoload level2 not startnoload -/copyfontdict -{ -findfont dup length dict -copy -begin -}bd -level2 not endnoload -md/fontname known not{ -/fontname/customfont def -}if -/Encoding Z -/:mre -{ -copyfontdict -/Encoding MacEncoding def -fontname currentdict -end -definefont :ff def -}bd -/:bsr -{ -copyfontdict -/Encoding Encoding 256 array copy def -Encoding dup -}bd -/pd{put dup}bd -/:esr -{ -pop pop -fontname currentdict -end -definefont :ff def -}bd -/scf -{ -scalefont def -}bd -/scf-non -{ -$m scale :mf setfont -}bd -/ps Z -/fz{/ps xs}bd -/sf/setfont ld -/cF/currentfont ld -/mbf -{ -/makeblendedfont where -{ -pop -makeblendedfont -/ABlend exch definefont -}{ -pop -}ifelse -def -}def -%%EndFile -/currentpacking where {pop sc_oldpacking setpacking}if end -%%EndProlog -%%BeginSetup -md begin -/mT[1 0 0 -1 14 780]def -/sD 16 dict def -%%IncludeFont: Helvetica -%%IncludeFont: Helvetica-Oblique -%%IncludeFont: Palatino-Italic -%%IncludeFont: Palatino-Roman -/f0_1/Helvetica -:mre -/f0_12 f0_1 12 scf -/f0_9 f0_1 9 scf -/f1_1/Helvetica-Oblique -:mre -/f1_12 f1_1 12 scf -/f2_1/Palatino-Italic -:mre -/f2_12 f2_1 12 scf -/f3_1/Palatino-Roman -:mre -/f3_12 f3_1 12 scf -/Courier findfont[10 0 0 -10 0 0]:mf setfont -%PostScript Hack by Mike Brors 12/7/90 -/DisableNextSetRGBColor - { - userdict begin - /setrgbcolor - { - pop - pop - pop - userdict begin - /setrgbcolor systemdict /setrgbcolor get def - end - } def - end -} bind def -/bcarray where { - pop - bcarray 2 { - /da 4 ps div def - df setfont gsave cs wi - 1 index 0 ne{exch da add exch}if grestore setcharwidth - cs 0 0 smc da 0 smc da da smc 0 da smc c - gray - { gl} - {1 setgray}ifelse - da 2. div dup moveto show - }bind put -} if -% -% Used to snap to device pixels, 1/4th of the pixel in. -/stp { % x y pl x y % Snap To Pixel, pixel (auto stroke adjust) - transform - 0.25 sub round 0.25 add exch - 0.25 sub round 0.25 add exch - itransform -} bind def -/snapmoveto { % x y m - % moveto, auto stroke adjust - stp moveto -} bind def -/snaplineto { % x y l - % lineto, auto stroke adjust - stp lineto -} bind def -%%EndSetup -%%Page: 1 1 -%%BeginPageSetup -initializepage -%%EndPageSetup -gS 0 0 584 768 rC -17 19 552 730 rC -.5 G -54 28.016 -.016 .016 180.016 28 .016 54 28 @a --.016 -.016 180.016 136.016 .016 .016 180 28 @b --.016 -.016 222.016 245.016 .016 .016 222 137 @b -49 244.016 -.016 .016 222.016 245 .016 49 244 @a -1 G -49 24 1 226 rF -0 G -.016 lw -49.5 24.5 0 225 rS -49 136.016 -.016 .016 265.016 136 .016 49 136 @a -49 82.016 -.016 .016 58.016 82 .016 49 82 @a -49 28.016 -.016 .016 58.016 28 .016 49 28 @a -49 190.016 -.016 .016 58.016 190 .016 49 190 @a -49 244.016 -.016 .016 58.016 244 .016 49 244 @a --.016 -.016 49.016 136.016 .016 .016 49 127 @b --.016 -.016 93.016 136.016 .016 .016 93 127 @b --.016 -.016 136.016 136.016 .016 .016 136 127 @b --.016 -.016 179.016 136.016 .016 .016 179 127 @b --.016 -.016 222.016 136.016 .016 .016 222 127 @b --.016 -.016 265.016 136.016 .016 .016 265 127 @b -222 245 :M -gsave -2.0 setmiterlimit --19981 -19976 -1 1 -19979 -19976 1 -19981 -19977 @a -1 lw --19980 -19976 :M -newpath -49 136 snapmoveto -180 28 snaplineto -222 245 snaplineto -stroke --19981 -9977 -10000 10000 -9980 -19976 10000 -19981 -19977 @a -10000 lw --19980 -19976 :M -grestore -37 25 13 10 rC -gR -gS 32 0 23 35 rC -39 32 :M -f0_9 sf --.259(+2)A -gR -gS 37 79 13 10 rC -gR -gS 32 43 23 46 rC -39 86 :M -f0_9 sf --.259(+1)A -gR -gS 37 133 13 10 rC -gR -gS 32 97 23 46 rC -39 140 :M -f0_9 sf --.259(+0)A -gR -gS 37 187 13 10 rC -gR -gS 32 151 23 46 rC -39 194 :M -f0_9 sf -S -gR -gS 37 241 13 10 rC -gR -gS 32 205 23 46 rC -39 248 :M -f0_9 sf -S -gR -gS 140 155 27 13 rC -gR -gS 135 119 37 49 rC -140 165 :M -f1_12 sf --.106(t )A -f0_12 sf --.222(\(s\))A -gR -gS 21 104 14 45 rC -gS -28.5 126 :T -270 rotate --28.5 -126 :T -6 129 :M -f2_12 sf --.163(v )A -f3_12 sf --.144<28>A -f0_12 sf --.281(m/s\))A -gR -gR -gS 86 137 14 10 rC -gR -gS 81 101 24 46 rC -90 144 :M -f0_9 sf -(1)S -gR -gS 131 137 14 10 rC -gR -gS 126 101 24 46 rC -135 144 :M -f0_9 sf -(2)S -gR -gS 176 137 14 10 rC -gR -gS 171 101 24 46 rC -180 144 :M -f0_9 sf -(3)S -gR -gS 217 137 13 10 rC -gR -gS 212 101 23 46 rC -221 144 :M -f0_9 sf -(4)S -gR -gS 257 137 14 10 rC -gR -gS 252 101 24 46 rC -261 144 :M -f0_9 sf -(5)S -gR -endp -%%Trailer -end -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61avc.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61avc.gif deleted file mode 100755 index cefd2a23d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61avc.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61avd.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61avd.eps deleted file mode 100755 index 78f032f91..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61avd.eps +++ /dev/null @@ -1,769 +0,0 @@ -%!PS-Adobe-3.0 EPSF-3.0 -%%BoundingBox: 14 535 283 763 -%%Title: (pssc7cq2.13d.cwk \(DR\)) -%%Creator: (ClarisWorks 3.0: LaserWriter 8 8.3.3) -%%CreationDate: (1:48 PM September 23, 1996) -%%For: (Alberding) -%%Pages: 1 -%%DocumentFonts: Helvetica Helvetica-Oblique Palatino-Italic Palatino-Roman -%%DocumentNeededFonts: Helvetica Helvetica-Oblique Palatino-Italic Palatino-Roman -%%DocumentSuppliedFonts: -%%DocumentData: Clean7Bit -%%PageOrder: Ascend -%%Orientation: Portrait -%%DocumentMedia: Default 612 792 0 () () -%ADO_ImageableArea: 14 12 598 780 -%%EndComments -userdict begin/dscInfo 5 dict dup begin -/Title(pssc7cq2.13d.cwk \(DR\))def -/Creator(ClarisWorks 3.0: LaserWriter 8 8.3.3)def -/CreationDate(1:48 PM September 23, 1996)def -/For(Alberding)def -/Pages 1 def -end def end -/md 172 dict def md begin/currentpacking where {pop /sc_oldpacking currentpacking def true setpacking}if -%%BeginFile: adobe_psp_basic -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/bd{bind def}bind def -/xdf{exch def}bd -/xs{exch store}bd -/ld{load def}bd -/Z{0 def}bd -/T/true -/F/false -/:L/lineto -/lw/setlinewidth -/:M/moveto -/rl/rlineto -/rm/rmoveto -/:C/curveto -/:T/translate -/:K/closepath -/:mf/makefont -/gS/gsave -/gR/grestore -/np/newpath -14{ld}repeat -/$m matrix def -/av 83 def -/por true def -/normland false def -/psb-nosave{}bd -/pse-nosave{}bd -/us Z -/psb{/us save store}bd -/pse{us restore}bd -/level2 -/languagelevel where -{ -pop languagelevel 2 ge -}{ -false -}ifelse -def -/featurecleanup -{ -stopped -cleartomark -countdictstack exch sub dup 0 gt -{ -{end}repeat -}{ -pop -}ifelse -}bd -/noload Z -/startnoload -{ -{/noload save store}if -}bd -/endnoload -{ -{noload restore}if -}bd -level2 startnoload -/setjob -{ -statusdict/jobname 3 -1 roll put -}bd -/setcopies -{ -userdict/#copies 3 -1 roll put -}bd -level2 endnoload level2 not startnoload -/setjob -{ -1 dict begin/JobName xdf currentdict end setuserparams -}bd -/setcopies -{ -1 dict begin/NumCopies xdf currentdict end setpagedevice -}bd -level2 not endnoload -/pm Z -/mT Z -/sD Z -/realshowpage Z -/initializepage -{ -/pm save store mT concat -}bd -/endp -{ -pm restore showpage -}def -/$c/DeviceRGB def -/rectclip where -{ -pop/rC/rectclip ld -}{ -/rC -{ -np 4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -clip np -}bd -}ifelse -/rectfill where -{ -pop/rF/rectfill ld -}{ -/rF -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -fill -gR -}bd -}ifelse -/rectstroke where -{ -pop/rS/rectstroke ld -}{ -/rS -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -stroke -gR -}bd -}ifelse -%%EndFile -%%BeginFile: adobe_psp_colorspace_level1 -%%Copyright: Copyright 1991-1993 Adobe Systems Incorporated. All Rights Reserved. -/G/setgray ld -/:F1/setgray ld -/:F/setrgbcolor ld -/:F4/setcmykcolor where -{ -pop -/setcmykcolor ld -}{ -{ -3 -{ -dup -3 -1 roll add -dup 1 gt{pop 1}if -1 exch sub -4 1 roll -}repeat -pop -setrgbcolor -}bd -}ifelse -/:Fx -{ -counttomark -{0{G}0{:F}{:F4}} -exch get -exec -pop -}bd -/:rg{/DeviceRGB :ss}bd -/:sc{$cs :ss}bd -/:dc{/$cs xdf}bd -/:sgl{}def -/:dr{}bd -/:fCRD{pop}bd -/:ckcs{}bd -/:ss{/$c xdf}bd -/$cs Z -%%EndFile -%%BeginFile: adobe_psp_uniform_graphics -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/@a -{ -np :M 0 rl :L 0 exch rl 0 rl :L fill -}bd -/@b -{ -np :M 0 rl 0 exch rl :L 0 rl 0 exch rl fill -}bd -/arct where -{ -pop -}{ -/arct -{ -arcto pop pop pop pop -}bd -}ifelse -/x1 Z -/x2 Z -/y1 Z -/y2 Z -/rad Z -/@q -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -fill -}bd -/@s -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -:K -stroke -}bd -/@i -{ -np 0 360 arc fill -}bd -/@j -{ -gS -np -:T -scale -0 0 .5 0 360 arc -fill -gR -}bd -/@e -{ -np -0 360 arc -:K -stroke -}bd -/@f -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 0 360 arc -:K -$m setmatrix -stroke -}bd -/@k -{ -gS -np -:T -0 0 :M -0 0 5 2 roll -arc fill -gR -}bd -/@l -{ -gS -np -:T -0 0 :M -scale -0 0 .5 5 -2 roll arc -fill -gR -}bd -/@m -{ -np -arc -stroke -}bd -/@n -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 5 -2 roll arc -$m setmatrix -stroke -}bd -%%EndFile -%%BeginFile: adobe_psp_customps -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/$t Z -/$p Z -/$s Z -/$o 1. def -/2state? false def -/ps Z -level2 startnoload -/pushcolor/currentrgbcolor ld -/popcolor/setrgbcolor ld -/setcmykcolor where -{ -pop/currentcmykcolor where -{ -pop/pushcolor/currentcmykcolor ld -/popcolor/setcmykcolor ld -}if -}if -level2 endnoload level2 not startnoload -/pushcolor -{ -currentcolorspace $c eq -{ -currentcolor currentcolorspace true -}{ -currentcmykcolor false -}ifelse -}bd -/popcolor -{ -{ -setcolorspace setcolor -}{ -setcmykcolor -}ifelse -}bd -level2 not endnoload -/pushstatic -{ -ps -2state? -$o -$t -$p -$s -$cs -}bd -/popstatic -{ -/$cs xs -/$s xs -/$p xs -/$t xs -/$o xs -/2state? xs -/ps xs -}bd -/pushgstate -{ -save errordict/nocurrentpoint{pop 0 0}put -currentpoint -3 -1 roll restore -pushcolor -currentlinewidth -currentlinecap -currentlinejoin -currentdash exch aload length -np clippath pathbbox -$m currentmatrix aload pop -}bd -/popgstate -{ -$m astore setmatrix -2 index sub exch -3 index sub exch -rC -array astore exch setdash -setlinejoin -setlinecap -lw -popcolor -np :M -}bd -/bu -{ -pushgstate -gR -pushgstate -2state? -{ -gR -pushgstate -}if -pushstatic -pm restore -mT concat -}bd -/bn -{ -/pm save store -popstatic -popgstate -gS -popgstate -2state? -{ -gS -popgstate -}if -}bd -/cpat{pop 64 div setgray 8{pop}repeat}bd -%%EndFile -%%BeginFile: adobe_psp_basic_text -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/S/show ld -/A{ -0.0 exch ashow -}bd -/R{ -0.0 exch 32 exch widthshow -}bd -/W{ -0.0 3 1 roll widthshow -}bd -/J{ -0.0 32 4 2 roll 0.0 exch awidthshow -}bd -/V{ -0.0 4 1 roll 0.0 exch awidthshow -}bd -/fcflg true def -/fc{ -fcflg{ -vmstatus exch sub 50000 lt{ -(%%[ Warning: Running out of memory ]%%\r)print flush/fcflg false store -}if pop -}if -}bd -/$f[1 0 0 -1 0 0]def -/:ff{$f :mf}bd -/MacEncoding StandardEncoding 256 array copy def -MacEncoding 39/quotesingle put -MacEncoding 96/grave put -/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis/Udieresis/aacute -/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute/egrave -/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde/oacute -/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex/udieresis -/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/notequal/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdiff/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta/guillemotleft -/guillemotright/ellipsis/space/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide/lozenge -/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright/fi/fl -/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex/Idieresis/Igrave -/Oacute/Ocircumflex/apple/Ograve/Uacute/Ucircumflex/Ugrave/dotlessi/circumflex/tilde -/macron/breve/dotaccent/ring/cedilla/hungarumlaut/ogonek/caron -MacEncoding 128 128 getinterval astore pop -level2 startnoload -/copyfontdict -{ -findfont dup length dict -begin -{ -1 index/FID ne{def}{pop pop}ifelse -}forall -}bd -level2 endnoload level2 not startnoload -/copyfontdict -{ -findfont dup length dict -copy -begin -}bd -level2 not endnoload -md/fontname known not{ -/fontname/customfont def -}if -/Encoding Z -/:mre -{ -copyfontdict -/Encoding MacEncoding def -fontname currentdict -end -definefont :ff def -}bd -/:bsr -{ -copyfontdict -/Encoding Encoding 256 array copy def -Encoding dup -}bd -/pd{put dup}bd -/:esr -{ -pop pop -fontname currentdict -end -definefont :ff def -}bd -/scf -{ -scalefont def -}bd -/scf-non -{ -$m scale :mf setfont -}bd -/ps Z -/fz{/ps xs}bd -/sf/setfont ld -/cF/currentfont ld -/mbf -{ -/makeblendedfont where -{ -pop -makeblendedfont -/ABlend exch definefont -}{ -pop -}ifelse -def -}def -%%EndFile -/currentpacking where {pop sc_oldpacking setpacking}if end -%%EndProlog -%%BeginSetup -md begin -/mT[1 0 0 -1 14 780]def -/sD 16 dict def -%%IncludeFont: Helvetica -%%IncludeFont: Helvetica-Oblique -%%IncludeFont: Palatino-Italic -%%IncludeFont: Palatino-Roman -/f0_1/Helvetica -:mre -/f0_12 f0_1 12 scf -/f0_9 f0_1 9 scf -/f1_1/Helvetica-Oblique -:mre -/f1_12 f1_1 12 scf -/f2_1/Palatino-Italic -:mre -/f2_12 f2_1 12 scf -/f3_1/Palatino-Roman -:mre -/f3_12 f3_1 12 scf -/Courier findfont[10 0 0 -10 0 0]:mf setfont -%PostScript Hack by Mike Brors 12/7/90 -/DisableNextSetRGBColor - { - userdict begin - /setrgbcolor - { - pop - pop - pop - userdict begin - /setrgbcolor systemdict /setrgbcolor get def - end - } def - end -} bind def -/bcarray where { - pop - bcarray 2 { - /da 4 ps div def - df setfont gsave cs wi - 1 index 0 ne{exch da add exch}if grestore setcharwidth - cs 0 0 smc da 0 smc da da smc 0 da smc c - gray - { gl} - {1 setgray}ifelse - da 2. div dup moveto show - }bind put -} if -% -% Used to snap to device pixels, 1/4th of the pixel in. -/stp { % x y pl x y % Snap To Pixel, pixel (auto stroke adjust) - transform - 0.25 sub round 0.25 add exch - 0.25 sub round 0.25 add exch - itransform -} bind def -/snapmoveto { % x y m - % moveto, auto stroke adjust - stp moveto -} bind def -/snaplineto { % x y l - % lineto, auto stroke adjust - stp lineto -} bind def -%%EndSetup -%%Page: 1 1 -%%BeginPageSetup -initializepage -%%EndPageSetup -gS 0 0 584 768 rC -17 19 552 730 rC -.5 G -52 23.016 -.016 .016 178.016 23 .016 52 23 @a --.016 -.016 178.016 131.016 .016 .016 178 23 @b --.016 -.016 264.016 185.016 .016 .016 264 131 @b -48 185.016 -.016 .016 264.016 185 .016 48 185 @a -1 G -48 18 1 226 rF -0 G -.016 lw -48.5 18.5 0 225 rS -48 131.016 -.016 .016 264.016 131 .016 48 131 @a -48 77.016 -.016 .016 57.016 77 .016 48 77 @a -48 23.016 -.016 .016 57.016 23 .016 48 23 @a -48 185.016 -.016 .016 57.016 185 .016 48 185 @a -48 239.016 -.016 .016 57.016 239 .016 48 239 @a --.016 -.016 48.016 131.016 .016 .016 48 122 @b --.016 -.016 91.016 131.016 .016 .016 91 122 @b --.016 -.016 134.016 131.016 .016 .016 134 122 @b --.016 -.016 178.016 131.016 .016 .016 178 122 @b --.016 -.016 221.016 131.016 .016 .016 221 122 @b --.016 -.016 264.016 131.016 .016 .016 264 122 @b -264 185 :M -gsave -2.0 setmiterlimit --19982 -19981 -1 1 -19980 -19981 1 -19982 -19982 @a -1 lw --19981 -19981 :M -newpath -48 131 snapmoveto -179 23 snaplineto -264 185 snaplineto -stroke --19982 -9982 -10000 10000 -9981 -19981 10000 -19982 -19982 @a -10000 lw --19981 -19981 :M -grestore -35 19 14 10 rC -gR -gS 30 0 24 29 rC -37 26 :M -f0_9 sf --.259(+2)A -gR -gS 35 73 14 10 rC -gR -gS 30 37 24 46 rC -37 80 :M -f0_9 sf --.259(+1)A -gR -gS 35 127 14 10 rC -gR -gS 30 91 24 46 rC -37 134 :M -f0_9 sf --.259(+0)A -gR -gS 35 181 14 10 rC -gR -gS 30 145 24 46 rC -37 188 :M -f0_9 sf -S -gR -gS 35 235 14 10 rC -gR -gS 30 199 24 46 rC -37 242 :M -f0_9 sf -S -gR -gS 139 150 27 13 rC -gR -gS 134 114 37 49 rC -139 160 :M -f1_12 sf --.106(t )A -f0_12 sf --.222(\(s\))A -gR -gS 19 99 15 45 rC -gS -26.5 121.5 :T -270 rotate --26.5 -121.5 :T -4 124 :M -f2_12 sf --.163(v )A -f3_12 sf --.144<28>A -f0_12 sf --.281(m/s\))A -gR -gR -gS 85 132 13 10 rC -gR -gS 80 96 23 46 rC -89 139 :M -f0_9 sf -(1)S -gR -gS 130 132 13 10 rC -gR -gS 125 96 23 46 rC -134 139 :M -f0_9 sf -(2)S -gR -gS 175 132 13 10 rC -gR -gS 170 96 23 46 rC -179 139 :M -f0_9 sf -(3)S -gR -gS 215 132 14 10 rC -gR -gS 210 96 24 46 rC -219 139 :M -f0_9 sf -(4)S -gR -gS 256 132 13 10 rC -gR -gS 251 96 23 46 rC -260 139 :M -f0_9 sf -(5)S -gR -endp -%%Trailer -end -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61avd.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61avd.gif deleted file mode 100755 index 70cbf2172..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61avd.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61ave.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61ave.eps deleted file mode 100755 index 18d0d92ad..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61ave.eps +++ /dev/null @@ -1,769 +0,0 @@ -%!PS-Adobe-3.0 EPSF-3.0 -%%BoundingBox: 14 532 282 761 -%%Title: (pssc7cq2.13e.cwk \(DR\)) -%%Creator: (ClarisWorks 3.0: LaserWriter 8 8.3.3) -%%CreationDate: (1:48 PM September 23, 1996) -%%For: (Alberding) -%%Pages: 1 -%%DocumentFonts: Helvetica Helvetica-Oblique Palatino-Italic Palatino-Roman -%%DocumentNeededFonts: Helvetica Helvetica-Oblique Palatino-Italic Palatino-Roman -%%DocumentSuppliedFonts: -%%DocumentData: Clean7Bit -%%PageOrder: Ascend -%%Orientation: Portrait -%%DocumentMedia: Default 612 792 0 () () -%ADO_ImageableArea: 14 12 598 780 -%%EndComments -userdict begin/dscInfo 5 dict dup begin -/Title(pssc7cq2.13e.cwk \(DR\))def -/Creator(ClarisWorks 3.0: LaserWriter 8 8.3.3)def -/CreationDate(1:48 PM September 23, 1996)def -/For(Alberding)def -/Pages 1 def -end def end -/md 172 dict def md begin/currentpacking where {pop /sc_oldpacking currentpacking def true setpacking}if -%%BeginFile: adobe_psp_basic -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/bd{bind def}bind def -/xdf{exch def}bd -/xs{exch store}bd -/ld{load def}bd -/Z{0 def}bd -/T/true -/F/false -/:L/lineto -/lw/setlinewidth -/:M/moveto -/rl/rlineto -/rm/rmoveto -/:C/curveto -/:T/translate -/:K/closepath -/:mf/makefont -/gS/gsave -/gR/grestore -/np/newpath -14{ld}repeat -/$m matrix def -/av 83 def -/por true def -/normland false def -/psb-nosave{}bd -/pse-nosave{}bd -/us Z -/psb{/us save store}bd -/pse{us restore}bd -/level2 -/languagelevel where -{ -pop languagelevel 2 ge -}{ -false -}ifelse -def -/featurecleanup -{ -stopped -cleartomark -countdictstack exch sub dup 0 gt -{ -{end}repeat -}{ -pop -}ifelse -}bd -/noload Z -/startnoload -{ -{/noload save store}if -}bd -/endnoload -{ -{noload restore}if -}bd -level2 startnoload -/setjob -{ -statusdict/jobname 3 -1 roll put -}bd -/setcopies -{ -userdict/#copies 3 -1 roll put -}bd -level2 endnoload level2 not startnoload -/setjob -{ -1 dict begin/JobName xdf currentdict end setuserparams -}bd -/setcopies -{ -1 dict begin/NumCopies xdf currentdict end setpagedevice -}bd -level2 not endnoload -/pm Z -/mT Z -/sD Z -/realshowpage Z -/initializepage -{ -/pm save store mT concat -}bd -/endp -{ -pm restore showpage -}def -/$c/DeviceRGB def -/rectclip where -{ -pop/rC/rectclip ld -}{ -/rC -{ -np 4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -clip np -}bd -}ifelse -/rectfill where -{ -pop/rF/rectfill ld -}{ -/rF -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -fill -gR -}bd -}ifelse -/rectstroke where -{ -pop/rS/rectstroke ld -}{ -/rS -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -stroke -gR -}bd -}ifelse -%%EndFile -%%BeginFile: adobe_psp_colorspace_level1 -%%Copyright: Copyright 1991-1993 Adobe Systems Incorporated. All Rights Reserved. -/G/setgray ld -/:F1/setgray ld -/:F/setrgbcolor ld -/:F4/setcmykcolor where -{ -pop -/setcmykcolor ld -}{ -{ -3 -{ -dup -3 -1 roll add -dup 1 gt{pop 1}if -1 exch sub -4 1 roll -}repeat -pop -setrgbcolor -}bd -}ifelse -/:Fx -{ -counttomark -{0{G}0{:F}{:F4}} -exch get -exec -pop -}bd -/:rg{/DeviceRGB :ss}bd -/:sc{$cs :ss}bd -/:dc{/$cs xdf}bd -/:sgl{}def -/:dr{}bd -/:fCRD{pop}bd -/:ckcs{}bd -/:ss{/$c xdf}bd -/$cs Z -%%EndFile -%%BeginFile: adobe_psp_uniform_graphics -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/@a -{ -np :M 0 rl :L 0 exch rl 0 rl :L fill -}bd -/@b -{ -np :M 0 rl 0 exch rl :L 0 rl 0 exch rl fill -}bd -/arct where -{ -pop -}{ -/arct -{ -arcto pop pop pop pop -}bd -}ifelse -/x1 Z -/x2 Z -/y1 Z -/y2 Z -/rad Z -/@q -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -fill -}bd -/@s -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -:K -stroke -}bd -/@i -{ -np 0 360 arc fill -}bd -/@j -{ -gS -np -:T -scale -0 0 .5 0 360 arc -fill -gR -}bd -/@e -{ -np -0 360 arc -:K -stroke -}bd -/@f -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 0 360 arc -:K -$m setmatrix -stroke -}bd -/@k -{ -gS -np -:T -0 0 :M -0 0 5 2 roll -arc fill -gR -}bd -/@l -{ -gS -np -:T -0 0 :M -scale -0 0 .5 5 -2 roll arc -fill -gR -}bd -/@m -{ -np -arc -stroke -}bd -/@n -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 5 -2 roll arc -$m setmatrix -stroke -}bd -%%EndFile -%%BeginFile: adobe_psp_customps -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/$t Z -/$p Z -/$s Z -/$o 1. def -/2state? false def -/ps Z -level2 startnoload -/pushcolor/currentrgbcolor ld -/popcolor/setrgbcolor ld -/setcmykcolor where -{ -pop/currentcmykcolor where -{ -pop/pushcolor/currentcmykcolor ld -/popcolor/setcmykcolor ld -}if -}if -level2 endnoload level2 not startnoload -/pushcolor -{ -currentcolorspace $c eq -{ -currentcolor currentcolorspace true -}{ -currentcmykcolor false -}ifelse -}bd -/popcolor -{ -{ -setcolorspace setcolor -}{ -setcmykcolor -}ifelse -}bd -level2 not endnoload -/pushstatic -{ -ps -2state? -$o -$t -$p -$s -$cs -}bd -/popstatic -{ -/$cs xs -/$s xs -/$p xs -/$t xs -/$o xs -/2state? xs -/ps xs -}bd -/pushgstate -{ -save errordict/nocurrentpoint{pop 0 0}put -currentpoint -3 -1 roll restore -pushcolor -currentlinewidth -currentlinecap -currentlinejoin -currentdash exch aload length -np clippath pathbbox -$m currentmatrix aload pop -}bd -/popgstate -{ -$m astore setmatrix -2 index sub exch -3 index sub exch -rC -array astore exch setdash -setlinejoin -setlinecap -lw -popcolor -np :M -}bd -/bu -{ -pushgstate -gR -pushgstate -2state? -{ -gR -pushgstate -}if -pushstatic -pm restore -mT concat -}bd -/bn -{ -/pm save store -popstatic -popgstate -gS -popgstate -2state? -{ -gS -popgstate -}if -}bd -/cpat{pop 64 div setgray 8{pop}repeat}bd -%%EndFile -%%BeginFile: adobe_psp_basic_text -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/S/show ld -/A{ -0.0 exch ashow -}bd -/R{ -0.0 exch 32 exch widthshow -}bd -/W{ -0.0 3 1 roll widthshow -}bd -/J{ -0.0 32 4 2 roll 0.0 exch awidthshow -}bd -/V{ -0.0 4 1 roll 0.0 exch awidthshow -}bd -/fcflg true def -/fc{ -fcflg{ -vmstatus exch sub 50000 lt{ -(%%[ Warning: Running out of memory ]%%\r)print flush/fcflg false store -}if pop -}if -}bd -/$f[1 0 0 -1 0 0]def -/:ff{$f :mf}bd -/MacEncoding StandardEncoding 256 array copy def -MacEncoding 39/quotesingle put -MacEncoding 96/grave put -/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis/Udieresis/aacute -/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute/egrave -/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde/oacute -/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex/udieresis -/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/notequal/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdiff/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta/guillemotleft -/guillemotright/ellipsis/space/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide/lozenge -/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright/fi/fl -/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex/Idieresis/Igrave -/Oacute/Ocircumflex/apple/Ograve/Uacute/Ucircumflex/Ugrave/dotlessi/circumflex/tilde -/macron/breve/dotaccent/ring/cedilla/hungarumlaut/ogonek/caron -MacEncoding 128 128 getinterval astore pop -level2 startnoload -/copyfontdict -{ -findfont dup length dict -begin -{ -1 index/FID ne{def}{pop pop}ifelse -}forall -}bd -level2 endnoload level2 not startnoload -/copyfontdict -{ -findfont dup length dict -copy -begin -}bd -level2 not endnoload -md/fontname known not{ -/fontname/customfont def -}if -/Encoding Z -/:mre -{ -copyfontdict -/Encoding MacEncoding def -fontname currentdict -end -definefont :ff def -}bd -/:bsr -{ -copyfontdict -/Encoding Encoding 256 array copy def -Encoding dup -}bd -/pd{put dup}bd -/:esr -{ -pop pop -fontname currentdict -end -definefont :ff def -}bd -/scf -{ -scalefont def -}bd -/scf-non -{ -$m scale :mf setfont -}bd -/ps Z -/fz{/ps xs}bd -/sf/setfont ld -/cF/currentfont ld -/mbf -{ -/makeblendedfont where -{ -pop -makeblendedfont -/ABlend exch definefont -}{ -pop -}ifelse -def -}def -%%EndFile -/currentpacking where {pop sc_oldpacking setpacking}if end -%%EndProlog -%%BeginSetup -md begin -/mT[1 0 0 -1 14 780]def -/sD 16 dict def -%%IncludeFont: Helvetica -%%IncludeFont: Helvetica-Oblique -%%IncludeFont: Palatino-Italic -%%IncludeFont: Palatino-Roman -/f0_1/Helvetica -:mre -/f0_12 f0_1 12 scf -/f0_9 f0_1 9 scf -/f1_1/Helvetica-Oblique -:mre -/f1_12 f1_1 12 scf -/f2_1/Palatino-Italic -:mre -/f2_12 f2_1 12 scf -/f3_1/Palatino-Roman -:mre -/f3_12 f3_1 12 scf -/Courier findfont[10 0 0 -10 0 0]:mf setfont -%PostScript Hack by Mike Brors 12/7/90 -/DisableNextSetRGBColor - { - userdict begin - /setrgbcolor - { - pop - pop - pop - userdict begin - /setrgbcolor systemdict /setrgbcolor get def - end - } def - end -} bind def -/bcarray where { - pop - bcarray 2 { - /da 4 ps div def - df setfont gsave cs wi - 1 index 0 ne{exch da add exch}if grestore setcharwidth - cs 0 0 smc da 0 smc da da smc 0 da smc c - gray - { gl} - {1 setgray}ifelse - da 2. div dup moveto show - }bind put -} if -% -% Used to snap to device pixels, 1/4th of the pixel in. -/stp { % x y pl x y % Snap To Pixel, pixel (auto stroke adjust) - transform - 0.25 sub round 0.25 add exch - 0.25 sub round 0.25 add exch - itransform -} bind def -/snapmoveto { % x y m - % moveto, auto stroke adjust - stp moveto -} bind def -/snaplineto { % x y l - % lineto, auto stroke adjust - stp lineto -} bind def -%%EndSetup -%%Page: 1 1 -%%BeginPageSetup -initializepage -%%EndPageSetup -gS 0 0 584 768 rC -17 19 552 730 rC -.5 G -50 25.016 -.016 .016 91.016 25 .016 50 25 @a --.016 -.016 91.016 133.016 .016 .016 91 25 @b --.016 -.016 263.016 241.016 .016 .016 263 133 @b -47 241.016 -.016 .016 263.016 241 .016 47 241 @a -1 G -47 21 1 226 rF -0 G -.016 lw -47.5 21.5 0 225 rS -47 133.016 -.016 .016 263.016 133 .016 47 133 @a -47 79.016 -.016 .016 56.016 79 .016 47 79 @a -47 25.016 -.016 .016 56.016 25 .016 47 25 @a -47 187.016 -.016 .016 56.016 187 .016 47 187 @a -47 241.016 -.016 .016 56.016 241 .016 47 241 @a --.016 -.016 47.016 133.016 .016 .016 47 124 @b --.016 -.016 91.016 133.016 .016 .016 91 124 @b --.016 -.016 134.016 133.016 .016 .016 134 124 @b --.016 -.016 177.016 133.016 .016 .016 177 124 @b --.016 -.016 220.016 133.016 .016 .016 220 124 @b --.016 -.016 263.016 133.016 .016 .016 263 124 @b -263 242 :M -gsave -2.0 setmiterlimit --19983 -19979 -1 1 -19981 -19979 1 -19983 -19980 @a -1 lw --19982 -19979 :M -newpath -47 134 snapmoveto -91 26 snaplineto -263 242 snaplineto -stroke --19983 -9980 -10000 10000 -9982 -19979 10000 -19983 -19980 @a -10000 lw --19982 -19979 :M -grestore -35 22 13 10 rC -gR -gS 30 0 23 32 rC -37 29 :M -f0_9 sf --.259(+2)A -gR -gS 35 76 13 10 rC -gR -gS 30 40 23 46 rC -37 83 :M -f0_9 sf --.259(+1)A -gR -gS 35 130 13 10 rC -gR -gS 30 94 23 46 rC -37 137 :M -f0_9 sf --.259(+0)A -gR -gS 35 184 13 10 rC -gR -gS 30 148 23 46 rC -37 191 :M -f0_9 sf -S -gR -gS 35 238 13 10 rC -gR -gS 30 202 23 46 rC -37 245 :M -f0_9 sf -S -gR -gS 138 152 27 13 rC -gR -gS 133 116 37 49 rC -138 162 :M -f1_12 sf --.106(t )A -f0_12 sf --.222(\(s\))A -gR -gS 19 101 14 45 rC -gS -26.5 123 :T -270 rotate --26.5 -123 :T -4 126 :M -f2_12 sf --.163(v )A -f3_12 sf --.144<28>A -f0_12 sf --.281(m/s\))A -gR -gR -gS 84 134 14 10 rC -gR -gS 79 98 24 46 rC -88 141 :M -f0_9 sf -(1)S -gR -gS 129 134 14 10 rC -gR -gS 124 98 24 46 rC -133 141 :M -f0_9 sf -(2)S -gR -gS 174 134 14 10 rC -gR -gS 169 98 24 46 rC -178 141 :M -f0_9 sf -(3)S -gR -gS 215 134 13 10 rC -gR -gS 210 98 23 46 rC -219 141 :M -f0_9 sf -(4)S -gR -gS 255 134 14 10 rC -gR -gS 250 98 24 46 rC -259 141 :M -f0_9 sf -(5)S -gR -endp -%%Trailer -end -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61ave.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61ave.gif deleted file mode 100755 index 216d4f8c7..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61ave.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61ave.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61ave.pdf deleted file mode 100644 index 64854ee7b..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61ave.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61avf.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61avf.eps deleted file mode 100755 index 3cd1cdb4b..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61avf.eps +++ /dev/null @@ -1,769 +0,0 @@ -%!PS-Adobe-3.0 EPSF-3.0 -%%BoundingBox: 17 534 285 762 -%%Title: (pssc7cq2.13f.cwk \(DR\)) -%%Creator: (ClarisWorks 3.0: LaserWriter 8 8.3.3) -%%CreationDate: (1:49 PM September 23, 1996) -%%For: (Alberding) -%%Pages: 1 -%%DocumentFonts: Helvetica Helvetica-Oblique Palatino-Italic Palatino-Roman -%%DocumentNeededFonts: Helvetica Helvetica-Oblique Palatino-Italic Palatino-Roman -%%DocumentSuppliedFonts: -%%DocumentData: Clean7Bit -%%PageOrder: Ascend -%%Orientation: Portrait -%%DocumentMedia: Default 612 792 0 () () -%ADO_ImageableArea: 14 12 598 780 -%%EndComments -userdict begin/dscInfo 5 dict dup begin -/Title(pssc7cq2.13f.cwk \(DR\))def -/Creator(ClarisWorks 3.0: LaserWriter 8 8.3.3)def -/CreationDate(1:49 PM September 23, 1996)def -/For(Alberding)def -/Pages 1 def -end def end -/md 172 dict def md begin/currentpacking where {pop /sc_oldpacking currentpacking def true setpacking}if -%%BeginFile: adobe_psp_basic -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/bd{bind def}bind def -/xdf{exch def}bd -/xs{exch store}bd -/ld{load def}bd -/Z{0 def}bd -/T/true -/F/false -/:L/lineto -/lw/setlinewidth -/:M/moveto -/rl/rlineto -/rm/rmoveto -/:C/curveto -/:T/translate -/:K/closepath -/:mf/makefont -/gS/gsave -/gR/grestore -/np/newpath -14{ld}repeat -/$m matrix def -/av 83 def -/por true def -/normland false def -/psb-nosave{}bd -/pse-nosave{}bd -/us Z -/psb{/us save store}bd -/pse{us restore}bd -/level2 -/languagelevel where -{ -pop languagelevel 2 ge -}{ -false -}ifelse -def -/featurecleanup -{ -stopped -cleartomark -countdictstack exch sub dup 0 gt -{ -{end}repeat -}{ -pop -}ifelse -}bd -/noload Z -/startnoload -{ -{/noload save store}if -}bd -/endnoload -{ -{noload restore}if -}bd -level2 startnoload -/setjob -{ -statusdict/jobname 3 -1 roll put -}bd -/setcopies -{ -userdict/#copies 3 -1 roll put -}bd -level2 endnoload level2 not startnoload -/setjob -{ -1 dict begin/JobName xdf currentdict end setuserparams -}bd -/setcopies -{ -1 dict begin/NumCopies xdf currentdict end setpagedevice -}bd -level2 not endnoload -/pm Z -/mT Z -/sD Z -/realshowpage Z -/initializepage -{ -/pm save store mT concat -}bd -/endp -{ -pm restore showpage -}def -/$c/DeviceRGB def -/rectclip where -{ -pop/rC/rectclip ld -}{ -/rC -{ -np 4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -clip np -}bd -}ifelse -/rectfill where -{ -pop/rF/rectfill ld -}{ -/rF -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -fill -gR -}bd -}ifelse -/rectstroke where -{ -pop/rS/rectstroke ld -}{ -/rS -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -stroke -gR -}bd -}ifelse -%%EndFile -%%BeginFile: adobe_psp_colorspace_level1 -%%Copyright: Copyright 1991-1993 Adobe Systems Incorporated. All Rights Reserved. -/G/setgray ld -/:F1/setgray ld -/:F/setrgbcolor ld -/:F4/setcmykcolor where -{ -pop -/setcmykcolor ld -}{ -{ -3 -{ -dup -3 -1 roll add -dup 1 gt{pop 1}if -1 exch sub -4 1 roll -}repeat -pop -setrgbcolor -}bd -}ifelse -/:Fx -{ -counttomark -{0{G}0{:F}{:F4}} -exch get -exec -pop -}bd -/:rg{/DeviceRGB :ss}bd -/:sc{$cs :ss}bd -/:dc{/$cs xdf}bd -/:sgl{}def -/:dr{}bd -/:fCRD{pop}bd -/:ckcs{}bd -/:ss{/$c xdf}bd -/$cs Z -%%EndFile -%%BeginFile: adobe_psp_uniform_graphics -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/@a -{ -np :M 0 rl :L 0 exch rl 0 rl :L fill -}bd -/@b -{ -np :M 0 rl 0 exch rl :L 0 rl 0 exch rl fill -}bd -/arct where -{ -pop -}{ -/arct -{ -arcto pop pop pop pop -}bd -}ifelse -/x1 Z -/x2 Z -/y1 Z -/y2 Z -/rad Z -/@q -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -fill -}bd -/@s -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -:K -stroke -}bd -/@i -{ -np 0 360 arc fill -}bd -/@j -{ -gS -np -:T -scale -0 0 .5 0 360 arc -fill -gR -}bd -/@e -{ -np -0 360 arc -:K -stroke -}bd -/@f -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 0 360 arc -:K -$m setmatrix -stroke -}bd -/@k -{ -gS -np -:T -0 0 :M -0 0 5 2 roll -arc fill -gR -}bd -/@l -{ -gS -np -:T -0 0 :M -scale -0 0 .5 5 -2 roll arc -fill -gR -}bd -/@m -{ -np -arc -stroke -}bd -/@n -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 5 -2 roll arc -$m setmatrix -stroke -}bd -%%EndFile -%%BeginFile: adobe_psp_customps -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/$t Z -/$p Z -/$s Z -/$o 1. def -/2state? false def -/ps Z -level2 startnoload -/pushcolor/currentrgbcolor ld -/popcolor/setrgbcolor ld -/setcmykcolor where -{ -pop/currentcmykcolor where -{ -pop/pushcolor/currentcmykcolor ld -/popcolor/setcmykcolor ld -}if -}if -level2 endnoload level2 not startnoload -/pushcolor -{ -currentcolorspace $c eq -{ -currentcolor currentcolorspace true -}{ -currentcmykcolor false -}ifelse -}bd -/popcolor -{ -{ -setcolorspace setcolor -}{ -setcmykcolor -}ifelse -}bd -level2 not endnoload -/pushstatic -{ -ps -2state? -$o -$t -$p -$s -$cs -}bd -/popstatic -{ -/$cs xs -/$s xs -/$p xs -/$t xs -/$o xs -/2state? xs -/ps xs -}bd -/pushgstate -{ -save errordict/nocurrentpoint{pop 0 0}put -currentpoint -3 -1 roll restore -pushcolor -currentlinewidth -currentlinecap -currentlinejoin -currentdash exch aload length -np clippath pathbbox -$m currentmatrix aload pop -}bd -/popgstate -{ -$m astore setmatrix -2 index sub exch -3 index sub exch -rC -array astore exch setdash -setlinejoin -setlinecap -lw -popcolor -np :M -}bd -/bu -{ -pushgstate -gR -pushgstate -2state? -{ -gR -pushgstate -}if -pushstatic -pm restore -mT concat -}bd -/bn -{ -/pm save store -popstatic -popgstate -gS -popgstate -2state? -{ -gS -popgstate -}if -}bd -/cpat{pop 64 div setgray 8{pop}repeat}bd -%%EndFile -%%BeginFile: adobe_psp_basic_text -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/S/show ld -/A{ -0.0 exch ashow -}bd -/R{ -0.0 exch 32 exch widthshow -}bd -/W{ -0.0 3 1 roll widthshow -}bd -/J{ -0.0 32 4 2 roll 0.0 exch awidthshow -}bd -/V{ -0.0 4 1 roll 0.0 exch awidthshow -}bd -/fcflg true def -/fc{ -fcflg{ -vmstatus exch sub 50000 lt{ -(%%[ Warning: Running out of memory ]%%\r)print flush/fcflg false store -}if pop -}if -}bd -/$f[1 0 0 -1 0 0]def -/:ff{$f :mf}bd -/MacEncoding StandardEncoding 256 array copy def -MacEncoding 39/quotesingle put -MacEncoding 96/grave put -/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis/Udieresis/aacute -/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute/egrave -/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde/oacute -/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex/udieresis -/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/notequal/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdiff/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta/guillemotleft -/guillemotright/ellipsis/space/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide/lozenge -/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright/fi/fl -/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex/Idieresis/Igrave -/Oacute/Ocircumflex/apple/Ograve/Uacute/Ucircumflex/Ugrave/dotlessi/circumflex/tilde -/macron/breve/dotaccent/ring/cedilla/hungarumlaut/ogonek/caron -MacEncoding 128 128 getinterval astore pop -level2 startnoload -/copyfontdict -{ -findfont dup length dict -begin -{ -1 index/FID ne{def}{pop pop}ifelse -}forall -}bd -level2 endnoload level2 not startnoload -/copyfontdict -{ -findfont dup length dict -copy -begin -}bd -level2 not endnoload -md/fontname known not{ -/fontname/customfont def -}if -/Encoding Z -/:mre -{ -copyfontdict -/Encoding MacEncoding def -fontname currentdict -end -definefont :ff def -}bd -/:bsr -{ -copyfontdict -/Encoding Encoding 256 array copy def -Encoding dup -}bd -/pd{put dup}bd -/:esr -{ -pop pop -fontname currentdict -end -definefont :ff def -}bd -/scf -{ -scalefont def -}bd -/scf-non -{ -$m scale :mf setfont -}bd -/ps Z -/fz{/ps xs}bd -/sf/setfont ld -/cF/currentfont ld -/mbf -{ -/makeblendedfont where -{ -pop -makeblendedfont -/ABlend exch definefont -}{ -pop -}ifelse -def -}def -%%EndFile -/currentpacking where {pop sc_oldpacking setpacking}if end -%%EndProlog -%%BeginSetup -md begin -/mT[1 0 0 -1 14 780]def -/sD 16 dict def -%%IncludeFont: Helvetica -%%IncludeFont: Helvetica-Oblique -%%IncludeFont: Palatino-Italic -%%IncludeFont: Palatino-Roman -/f0_1/Helvetica -:mre -/f0_12 f0_1 12 scf -/f0_9 f0_1 9 scf -/f1_1/Helvetica-Oblique -:mre -/f1_12 f1_1 12 scf -/f2_1/Palatino-Italic -:mre -/f2_12 f2_1 12 scf -/f3_1/Palatino-Roman -:mre -/f3_12 f3_1 12 scf -/Courier findfont[10 0 0 -10 0 0]:mf setfont -%PostScript Hack by Mike Brors 12/7/90 -/DisableNextSetRGBColor - { - userdict begin - /setrgbcolor - { - pop - pop - pop - userdict begin - /setrgbcolor systemdict /setrgbcolor get def - end - } def - end -} bind def -/bcarray where { - pop - bcarray 2 { - /da 4 ps div def - df setfont gsave cs wi - 1 index 0 ne{exch da add exch}if grestore setcharwidth - cs 0 0 smc da 0 smc da da smc 0 da smc c - gray - { gl} - {1 setgray}ifelse - da 2. div dup moveto show - }bind put -} if -% -% Used to snap to device pixels, 1/4th of the pixel in. -/stp { % x y pl x y % Snap To Pixel, pixel (auto stroke adjust) - transform - 0.25 sub round 0.25 add exch - 0.25 sub round 0.25 add exch - itransform -} bind def -/snapmoveto { % x y m - % moveto, auto stroke adjust - stp moveto -} bind def -/snaplineto { % x y l - % lineto, auto stroke adjust - stp lineto -} bind def -%%EndSetup -%%Page: 1 1 -%%BeginPageSetup -initializepage -%%EndPageSetup -gS 0 0 584 768 rC -17 19 552 730 rC -.5 G -53 23.016 -.016 .016 94.016 23 .016 53 23 @a --.016 -.016 94.016 131.016 .016 .016 94 23 @b --.016 -.016 181.016 241.016 .016 .016 181 133 @b -50 239.016 -.016 .016 180.016 239 .016 50 239 @a -1 G -50 19 1 226 rF -0 G -.016 lw -50.5 19.5 0 225 rS -50 131.016 -.016 .016 266.016 131 .016 50 131 @a -50 77.016 -.016 .016 59.016 77 .016 50 77 @a -50 23.016 -.016 .016 59.016 23 .016 50 23 @a -50 185.016 -.016 .016 59.016 185 .016 50 185 @a -50 239.016 -.016 .016 59.016 239 .016 50 239 @a --.016 -.016 50.016 131.016 .016 .016 50 122 @b --.016 -.016 94.016 131.016 .016 .016 94 122 @b --.016 -.016 137.016 131.016 .016 .016 137 122 @b --.016 -.016 180.016 131.016 .016 .016 180 122 @b --.016 -.016 223.016 131.016 .016 .016 223 122 @b --.016 -.016 266.016 131.016 .016 .016 266 122 @b -181 239 :M -gsave -2.0 setmiterlimit --19980 -19981 -1 1 -19978 -19981 1 -19980 -19982 @a -1 lw --19979 -19981 :M -newpath -50 132 snapmoveto -94 24 snaplineto -181 239 snaplineto -stroke --19980 -9982 -10000 10000 -9979 -19981 10000 -19980 -19982 @a -10000 lw --19979 -19981 :M -grestore -38 20 13 10 rC -gR -gS 33 0 23 30 rC -40 27 :M -f0_9 sf --.259(+2)A -gR -gS 38 74 13 10 rC -gR -gS 33 38 23 46 rC -40 81 :M -f0_9 sf --.259(+1)A -gR -gS 38 128 13 10 rC -gR -gS 33 92 23 46 rC -40 135 :M -f0_9 sf --.259(+0)A -gR -gS 38 182 13 10 rC -gR -gS 33 146 23 46 rC -40 189 :M -f0_9 sf -S -gR -gS 38 236 13 10 rC -gR -gS 33 200 23 46 rC -40 243 :M -f0_9 sf -S -gR -gS 141 150 27 13 rC -gR -gS 136 114 37 49 rC -141 160 :M -f1_12 sf --.106(t )A -f0_12 sf --.222(\(s\))A -gR -gS 22 99 14 45 rC -gS -29.5 121 :T -270 rotate --29.5 -121 :T -7 124 :M -f2_12 sf --.163(v )A -f3_12 sf --.144<28>A -f0_12 sf --.281(m/s\))A -gR -gR -gS 87 132 14 10 rC -gR -gS 82 96 24 46 rC -91 139 :M -f0_9 sf -(1)S -gR -gS 132 132 14 10 rC -gR -gS 127 96 24 46 rC -136 139 :M -f0_9 sf -(2)S -gR -gS 177 132 14 10 rC -gR -gS 172 96 24 46 rC -181 139 :M -f0_9 sf -(3)S -gR -gS 218 132 13 10 rC -gR -gS 213 96 23 46 rC -222 139 :M -f0_9 sf -(4)S -gR -gS 258 132 14 10 rC -gR -gS 253 96 24 46 rC -262 139 :M -f0_9 sf -(5)S -gR -endp -%%Trailer -end -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61avf.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61avf.gif deleted file mode 100755 index f9386f31c..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61avf.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61avg.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61avg.eps deleted file mode 100755 index d374e54b1..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61avg.eps +++ /dev/null @@ -1,769 +0,0 @@ -%!PS-Adobe-3.0 EPSF-3.0 -%%BoundingBox: 15 521 283 761 -%%Title: (pssc7cq2.13g.cwk \(DR\)) -%%Creator: (ClarisWorks 3.0: LaserWriter 8 8.3.3) -%%CreationDate: (1:50 PM September 23, 1996) -%%For: (Alberding) -%%Pages: 1 -%%DocumentFonts: Helvetica Helvetica-Oblique Palatino-Italic Palatino-Roman -%%DocumentNeededFonts: Helvetica Helvetica-Oblique Palatino-Italic Palatino-Roman -%%DocumentSuppliedFonts: -%%DocumentData: Clean7Bit -%%PageOrder: Ascend -%%Orientation: Portrait -%%DocumentMedia: Default 612 792 0 () () -%ADO_ImageableArea: 14 12 598 780 -%%EndComments -userdict begin/dscInfo 5 dict dup begin -/Title(pssc7cq2.13g.cwk \(DR\))def -/Creator(ClarisWorks 3.0: LaserWriter 8 8.3.3)def -/CreationDate(1:50 PM September 23, 1996)def -/For(Alberding)def -/Pages 1 def -end def end -/md 172 dict def md begin/currentpacking where {pop /sc_oldpacking currentpacking def true setpacking}if -%%BeginFile: adobe_psp_basic -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/bd{bind def}bind def -/xdf{exch def}bd -/xs{exch store}bd -/ld{load def}bd -/Z{0 def}bd -/T/true -/F/false -/:L/lineto -/lw/setlinewidth -/:M/moveto -/rl/rlineto -/rm/rmoveto -/:C/curveto -/:T/translate -/:K/closepath -/:mf/makefont -/gS/gsave -/gR/grestore -/np/newpath -14{ld}repeat -/$m matrix def -/av 83 def -/por true def -/normland false def -/psb-nosave{}bd -/pse-nosave{}bd -/us Z -/psb{/us save store}bd -/pse{us restore}bd -/level2 -/languagelevel where -{ -pop languagelevel 2 ge -}{ -false -}ifelse -def -/featurecleanup -{ -stopped -cleartomark -countdictstack exch sub dup 0 gt -{ -{end}repeat -}{ -pop -}ifelse -}bd -/noload Z -/startnoload -{ -{/noload save store}if -}bd -/endnoload -{ -{noload restore}if -}bd -level2 startnoload -/setjob -{ -statusdict/jobname 3 -1 roll put -}bd -/setcopies -{ -userdict/#copies 3 -1 roll put -}bd -level2 endnoload level2 not startnoload -/setjob -{ -1 dict begin/JobName xdf currentdict end setuserparams -}bd -/setcopies -{ -1 dict begin/NumCopies xdf currentdict end setpagedevice -}bd -level2 not endnoload -/pm Z -/mT Z -/sD Z -/realshowpage Z -/initializepage -{ -/pm save store mT concat -}bd -/endp -{ -pm restore showpage -}def -/$c/DeviceRGB def -/rectclip where -{ -pop/rC/rectclip ld -}{ -/rC -{ -np 4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -clip np -}bd -}ifelse -/rectfill where -{ -pop/rF/rectfill ld -}{ -/rF -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -fill -gR -}bd -}ifelse -/rectstroke where -{ -pop/rS/rectstroke ld -}{ -/rS -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -stroke -gR -}bd -}ifelse -%%EndFile -%%BeginFile: adobe_psp_colorspace_level1 -%%Copyright: Copyright 1991-1993 Adobe Systems Incorporated. All Rights Reserved. -/G/setgray ld -/:F1/setgray ld -/:F/setrgbcolor ld -/:F4/setcmykcolor where -{ -pop -/setcmykcolor ld -}{ -{ -3 -{ -dup -3 -1 roll add -dup 1 gt{pop 1}if -1 exch sub -4 1 roll -}repeat -pop -setrgbcolor -}bd -}ifelse -/:Fx -{ -counttomark -{0{G}0{:F}{:F4}} -exch get -exec -pop -}bd -/:rg{/DeviceRGB :ss}bd -/:sc{$cs :ss}bd -/:dc{/$cs xdf}bd -/:sgl{}def -/:dr{}bd -/:fCRD{pop}bd -/:ckcs{}bd -/:ss{/$c xdf}bd -/$cs Z -%%EndFile -%%BeginFile: adobe_psp_uniform_graphics -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/@a -{ -np :M 0 rl :L 0 exch rl 0 rl :L fill -}bd -/@b -{ -np :M 0 rl 0 exch rl :L 0 rl 0 exch rl fill -}bd -/arct where -{ -pop -}{ -/arct -{ -arcto pop pop pop pop -}bd -}ifelse -/x1 Z -/x2 Z -/y1 Z -/y2 Z -/rad Z -/@q -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -fill -}bd -/@s -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -:K -stroke -}bd -/@i -{ -np 0 360 arc fill -}bd -/@j -{ -gS -np -:T -scale -0 0 .5 0 360 arc -fill -gR -}bd -/@e -{ -np -0 360 arc -:K -stroke -}bd -/@f -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 0 360 arc -:K -$m setmatrix -stroke -}bd -/@k -{ -gS -np -:T -0 0 :M -0 0 5 2 roll -arc fill -gR -}bd -/@l -{ -gS -np -:T -0 0 :M -scale -0 0 .5 5 -2 roll arc -fill -gR -}bd -/@m -{ -np -arc -stroke -}bd -/@n -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 5 -2 roll arc -$m setmatrix -stroke -}bd -%%EndFile -%%BeginFile: adobe_psp_customps -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/$t Z -/$p Z -/$s Z -/$o 1. def -/2state? false def -/ps Z -level2 startnoload -/pushcolor/currentrgbcolor ld -/popcolor/setrgbcolor ld -/setcmykcolor where -{ -pop/currentcmykcolor where -{ -pop/pushcolor/currentcmykcolor ld -/popcolor/setcmykcolor ld -}if -}if -level2 endnoload level2 not startnoload -/pushcolor -{ -currentcolorspace $c eq -{ -currentcolor currentcolorspace true -}{ -currentcmykcolor false -}ifelse -}bd -/popcolor -{ -{ -setcolorspace setcolor -}{ -setcmykcolor -}ifelse -}bd -level2 not endnoload -/pushstatic -{ -ps -2state? -$o -$t -$p -$s -$cs -}bd -/popstatic -{ -/$cs xs -/$s xs -/$p xs -/$t xs -/$o xs -/2state? xs -/ps xs -}bd -/pushgstate -{ -save errordict/nocurrentpoint{pop 0 0}put -currentpoint -3 -1 roll restore -pushcolor -currentlinewidth -currentlinecap -currentlinejoin -currentdash exch aload length -np clippath pathbbox -$m currentmatrix aload pop -}bd -/popgstate -{ -$m astore setmatrix -2 index sub exch -3 index sub exch -rC -array astore exch setdash -setlinejoin -setlinecap -lw -popcolor -np :M -}bd -/bu -{ -pushgstate -gR -pushgstate -2state? -{ -gR -pushgstate -}if -pushstatic -pm restore -mT concat -}bd -/bn -{ -/pm save store -popstatic -popgstate -gS -popgstate -2state? -{ -gS -popgstate -}if -}bd -/cpat{pop 64 div setgray 8{pop}repeat}bd -%%EndFile -%%BeginFile: adobe_psp_basic_text -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/S/show ld -/A{ -0.0 exch ashow -}bd -/R{ -0.0 exch 32 exch widthshow -}bd -/W{ -0.0 3 1 roll widthshow -}bd -/J{ -0.0 32 4 2 roll 0.0 exch awidthshow -}bd -/V{ -0.0 4 1 roll 0.0 exch awidthshow -}bd -/fcflg true def -/fc{ -fcflg{ -vmstatus exch sub 50000 lt{ -(%%[ Warning: Running out of memory ]%%\r)print flush/fcflg false store -}if pop -}if -}bd -/$f[1 0 0 -1 0 0]def -/:ff{$f :mf}bd -/MacEncoding StandardEncoding 256 array copy def -MacEncoding 39/quotesingle put -MacEncoding 96/grave put -/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis/Udieresis/aacute -/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute/egrave -/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde/oacute -/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex/udieresis -/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/notequal/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdiff/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta/guillemotleft -/guillemotright/ellipsis/space/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide/lozenge -/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright/fi/fl -/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex/Idieresis/Igrave -/Oacute/Ocircumflex/apple/Ograve/Uacute/Ucircumflex/Ugrave/dotlessi/circumflex/tilde -/macron/breve/dotaccent/ring/cedilla/hungarumlaut/ogonek/caron -MacEncoding 128 128 getinterval astore pop -level2 startnoload -/copyfontdict -{ -findfont dup length dict -begin -{ -1 index/FID ne{def}{pop pop}ifelse -}forall -}bd -level2 endnoload level2 not startnoload -/copyfontdict -{ -findfont dup length dict -copy -begin -}bd -level2 not endnoload -md/fontname known not{ -/fontname/customfont def -}if -/Encoding Z -/:mre -{ -copyfontdict -/Encoding MacEncoding def -fontname currentdict -end -definefont :ff def -}bd -/:bsr -{ -copyfontdict -/Encoding Encoding 256 array copy def -Encoding dup -}bd -/pd{put dup}bd -/:esr -{ -pop pop -fontname currentdict -end -definefont :ff def -}bd -/scf -{ -scalefont def -}bd -/scf-non -{ -$m scale :mf setfont -}bd -/ps Z -/fz{/ps xs}bd -/sf/setfont ld -/cF/currentfont ld -/mbf -{ -/makeblendedfont where -{ -pop -makeblendedfont -/ABlend exch definefont -}{ -pop -}ifelse -def -}def -%%EndFile -/currentpacking where {pop sc_oldpacking setpacking}if end -%%EndProlog -%%BeginSetup -md begin -/mT[1 0 0 -1 14 780]def -/sD 16 dict def -%%IncludeFont: Helvetica -%%IncludeFont: Helvetica-Oblique -%%IncludeFont: Palatino-Italic -%%IncludeFont: Palatino-Roman -/f0_1/Helvetica -:mre -/f0_12 f0_1 12 scf -/f0_9 f0_1 9 scf -/f1_1/Helvetica-Oblique -:mre -/f1_12 f1_1 12 scf -/f2_1/Palatino-Italic -:mre -/f2_12 f2_1 12 scf -/f3_1/Palatino-Roman -:mre -/f3_12 f3_1 12 scf -/Courier findfont[10 0 0 -10 0 0]:mf setfont -%PostScript Hack by Mike Brors 12/7/90 -/DisableNextSetRGBColor - { - userdict begin - /setrgbcolor - { - pop - pop - pop - userdict begin - /setrgbcolor systemdict /setrgbcolor get def - end - } def - end -} bind def -/bcarray where { - pop - bcarray 2 { - /da 4 ps div def - df setfont gsave cs wi - 1 index 0 ne{exch da add exch}if grestore setcharwidth - cs 0 0 smc da 0 smc da da smc 0 da smc c - gray - { gl} - {1 setgray}ifelse - da 2. div dup moveto show - }bind put -} if -% -% Used to snap to device pixels, 1/4th of the pixel in. -/stp { % x y pl x y % Snap To Pixel, pixel (auto stroke adjust) - transform - 0.25 sub round 0.25 add exch - 0.25 sub round 0.25 add exch - itransform -} bind def -/snapmoveto { % x y m - % moveto, auto stroke adjust - stp moveto -} bind def -/snaplineto { % x y l - % lineto, auto stroke adjust - stp lineto -} bind def -%%EndSetup -%%Page: 1 1 -%%BeginPageSetup -initializepage -%%EndPageSetup -gS 0 0 584 768 rC -17 19 552 730 rC -.5 G --.016 -.016 92.016 144.016 .016 .016 92 91 @b -48 90.016 -.016 .016 92.016 90 .016 48 90 @a --.016 -.016 179.016 254.016 .016 .016 179 146 @b -48 252.016 -.016 .016 178.016 252 .016 48 252 @a -1 G -48 32 1 226 rF -0 G -.016 lw -48.5 32.5 0 225 rS -48 144.016 -.016 .016 264.016 144 .016 48 144 @a -48 90.016 -.016 .016 57.016 90 .016 48 90 @a -48 36.016 -.016 .016 57.016 36 .016 48 36 @a -48 198.016 -.016 .016 57.016 198 .016 48 198 @a -48 252.016 -.016 .016 57.016 252 .016 48 252 @a --.016 -.016 48.016 144.016 .016 .016 48 135 @b --.016 -.016 92.016 144.016 .016 .016 92 135 @b --.016 -.016 135.016 144.016 .016 .016 135 135 @b --.016 -.016 178.016 144.016 .016 .016 178 135 @b --.016 -.016 221.016 144.016 .016 .016 221 135 @b --.016 -.016 264.016 144.016 .016 .016 264 135 @b -179 252 :M -gsave -2.0 setmiterlimit --19982 -19968 -1 1 -19980 -19968 1 -19982 -19969 @a -1 lw --19981 -19968 :M -newpath -48 145 snapmoveto -92 91 snaplineto -179 252 snaplineto -stroke --19982 -9969 -10000 10000 -9981 -19968 10000 -19982 -19969 @a -10000 lw --19981 -19968 :M -grestore -36 33 13 10 rC -gR -gS 31 0 23 43 rC -38 40 :M -f0_9 sf --.259(+2)A -gR -gS 36 87 13 10 rC -gR -gS 31 51 23 46 rC -38 94 :M -f0_9 sf --.259(+1)A -gR -gS 36 141 13 10 rC -gR -gS 31 105 23 46 rC -38 148 :M -f0_9 sf --.259(+0)A -gR -gS 36 195 13 10 rC -gR -gS 31 159 23 46 rC -38 202 :M -f0_9 sf -S -gR -gS 36 249 13 10 rC -gR -gS 31 213 23 46 rC -38 256 :M -f0_9 sf -S -gR -gS 139 163 27 13 rC -gR -gS 134 127 37 49 rC -139 173 :M -f1_12 sf --.106(t )A -f0_12 sf --.222(\(s\))A -gR -gS 20 112 14 45 rC -gS -27.5 134 :T -270 rotate --27.5 -134 :T -5 137 :M -f2_12 sf --.163(v )A -f3_12 sf --.144<28>A -f0_12 sf --.281(m/s\))A -gR -gR -gS 85 145 14 10 rC -gR -gS 80 109 24 46 rC -89 152 :M -f0_9 sf -(1)S -gR -gS 130 145 14 10 rC -gR -gS 125 109 24 46 rC -134 152 :M -f0_9 sf -(2)S -gR -gS 175 145 14 10 rC -gR -gS 170 109 24 46 rC -179 152 :M -f0_9 sf -(3)S -gR -gS 216 145 13 10 rC -gR -gS 211 109 23 46 rC -220 152 :M -f0_9 sf -(4)S -gR -gS 256 145 14 10 rC -gR -gS 251 109 24 46 rC -260 152 :M -f0_9 sf -(5)S -gR -endp -%%Trailer -end -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61avg.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61avg.gif deleted file mode 100755 index 8d33f5c59..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob61avg.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob62.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob62.eps deleted file mode 100755 index 4c0c3111c..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob62.eps +++ /dev/null @@ -1,647 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: hecht2.13.create -%%Creator: Create -%%CreationDate: Sun Oct 27 16:15:53 1996 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 142 375 417 560 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(rI9)L/"835o2@,6RU(i3FUj=8M^Q"`ItK)DJ?3arMj+ -% $L*&`fJ1^#5J-kLR'Ergn=;[+cmJFGfXX:Z(!AdnF_#LXSNA)MOtgUYR0Bq^ip.3X8*!=/fX -% J1(*,r&7htT(q>;5Q>/CgCO>#U5B9d%K[I_5mUR]&J[XjM1uWE5Y6[=F].0%s0:Z[KcbOPJg -% VrDVhur@#Z7[2"Mhe_B::`I@ -% %Ai]BPUjb2]7pqFnXL#P(G#!UP^W.^n6tqp0)8rW3CeUAsd%f=qnIjL(JurAO-m`$0R?tat4 -% C]-j1)8>q+r:pRD;81#UIq0uu%<(IVZ\PT++s!HS")"3V`p]^i@VVrNS9Fbn+N%.Y#cX[$UXh;t8A -% M7+YQEu.E3n,q.0-mC=obb_!ItN]!$K'/%`_J07N9XI0LlJM>aoR3X+2]Q\RV"2dfNL5JHm3 -% ;DAgS$,%Ck#M#7``STR.)'bWs)72r*?'m4oqO -% KC1MI?ipnMcO^3Jd=2Y>m>]#f4SH;BJ@F6AW1A[sFg0hZgh#\$KA'prU%T=;K4'<5Kn"+U+e -% M_S6D(dS#>P7oK:68FQ774ClVUcZ<55lm2#t.\ChLp1gY;ul\^AZ>hpWP%k2826i@GD=4'^b -% \2`VI>DK;#S>is\C\UopZFJ0XZks!,ke>_kW+`nakA1%W9EGp*1j5'7p!'K3PcZmZ4*qPnG4 -% Zl8rHFB;oolQP6mG4pl)%7T'`lEf(S^.c01W(3`LH"sI!Ic^&!=e7j!;jGYIjXBC/bZLY!'] -% dHoU;3LXbK*C-'2nKH_B'=VR?fF%_*i!iCld/a&,`TN_:N70W2u-G)hNW3`8:GFGX*N`nV3Dn)-F.hc\pZPX=2%+1pMq=Uk/:2VF<+`&UiqST, -% H#^!ZA5iNVKOW#l6B3!!IlcFqil.!2E&3nW>R5r*og4)8SYJm>u=WRj'Z@aM.T^Ork)Uj=9u -% 8&RpoDB2i:e3VPj:b)hj(8=_26pUX>t0UTEbi[^"%],8aIM7-Yu/u,r"lM6U#0[O,[LC$07O -% jAEr'I+LMpV-F]i0j>_?O$?0")D@%J9W>I?`<+SDskf0=p(Q&+\9\^S[3q5`#pT6X:1@?&s5[b4Q*N%:ZS?UDo^Fg_KCbYrF-VaW6Dl -% R&Z'EIKE_3oNr?W_NeY\d!PR_GE8ktj3[JE7%11Ml6<8_-Kr8LGW]870&qup2.LW*<:JmFdL -% 8Q'U)-;13f!]UT7?"'1B5?8UhY+%^^$&WWqEp:o0WrHlX%8.q`qVPmYK:c(!L1LN2-k" -% dF957[0UX>!,E>2:Z0diemMZ/qPBq?&PsZ_&ZJnE)uD"#,9[`dSUE!)G#\'3pF%-Yrcs:U$P -% @%[",l,Q4Jh?TA[#%`CN3l"'mGH%:R=mY7og?%?d5?D_-eVVDSm3Eo0XF]QeY4f2k?n_)-9p -% .(bV0^(hFH9[8s"?ubTBM!9%dTj@?QSOQb6USH6l,::"=!TUan%a//c+SS>L>86+rmu3; -% h:0/hFub>jfsT>g8aq\7=1inQX&gcA_!)]mXa9Mh;5k+k-1_OhDiF`&us6O*8>MSo]VW4:n^ -% k3Q-P6ECNrU;@19$UGON;7PW`Mn.*"AUQ4N#f=T@0&,*68cL5;]ip-ZDq:K\9D4Q/;e;%3,B^b"*Un%:N8RcTCmXV2'8Wja^hZ^4Bd4VP!pJ)NXI0 -% 5qPX#h#Bg9&(8/_@hFZUKP>_\IJ]G?pr=XqK"+UN*5_Cp3?"jq% -% SP.b:1bL7P#u!9"pO0%CmsP`E[0rVNQr!\N2m;a0_hS!4#CR^BHFh+?]_6QbVL?D&IGP3X<\ -% Su^`[0apF6U^klc1==2f8#]F1E(m6SO!pMDYVgRR:gF8-Q%!8DZA=:!>p5\=+JeEJ>\` -% a.[P8da=cC@";"[akN<-dkQr'h#oT*V)d$Yl(]toUHN4V),Y25:B7-/7E@TUdK!B\U\/te9F -% F#ll*)h7kQu[hGKARIN1=1Xdpk(jlKLP*Vn.u?PY_42;)#"8h-E)Dm3-Y<[CG"aucNf).."b -% ktK-s`CqR:c1#_6Il!bgd('*rbsaF=-i:+i]bc9f3.e,aFI1%)$C$=JOaR-eMHO&=>Y -% 'AiB7R",I>6C3$92_'(^U&DBG'HaC3YXR3/MR@%_bJ`_+9?M=H(gRJju)YTW!6dpk#A&I=jM -% =5(J':G`?5>Id4_.5%oiiLl4a$Mb)JJf2.LCk_-ieH#?,olmR)"\;,5DO'2gFd"mSPBR6^mK -% 4C:.LGk(HpkY(KM;ah[DcdDRab1#S(dci9;0\%kW/"@YO3HgC>F9UN\M9pnIJ6j'$KR'PR#T -% 3WMr"`$67@q5BF"SrI9)L/"835o2@,6RU(i3FUj=8M^Q"`&^*Qu:^*T.9rp1oO$39#(Fo5XirTEBIb]/AmG*8#=8UPlQ%A+dZ.`!Ge^6ieL^3">BoYSFEpfBRY*$(P\mI-_4a2lt.,IRW7ImLS9FM+_ -% %IVk$KgJSY^rMfBJTj57nAq>[O6S`uHPU:$4ld\^d(<25Ph9MKpkt[U'+o#,2*Fo$R2@Ie\3 -% PT7L%KQQHG70M,:H&oqT5UN_WE+j -% !!L/7\YXI`?^@]m_V_?m"W1j&A=D1:Reh-k-Cf+&FsjME-C-$8H]mS?SY%>]XJ):f+A@`o-s -% G]=3^2i(UtA_Z.!Ct-R9.9:TD+tgj]2[@QgBSL9Y2h87o#E]cW\El[[mNYY5M]%X.@EDr)gd -% `RM`94I18e^Z`]-H>I5>feu3O'7lmW2g0TZ4a3K]L@(G]i4J/sZT'EJYn_to=XBls8?ik&J, -% ?of@]I?=q6mDnTc]j/dXMI4N/*O8I',WL368XZH[8C;#GLamJ6+WTp5%1>0 -% P*LWmEJaF!u'B,RD/2A5RAkJ'+ela,H;)11l"-Q9ZBd[icfUU2sDIFqlW@_=\hgifd`Ot)M# -% A\$6RH[1qm[%+/;X@iIr78T9XX7gVZOQj -% E#JBqFCe4CYhRAT5[.Fp.4iHiY\ptANFhJ0/>WNgP?-Aj@)$>%!T*JCqf5QDr-R](lNdY*X$ko]s\Geb'[U)%'7G2`rpkk,^of/m?SJN -% ^4(.huXnj8Hpfo!=q&T_$j"pLD[hB"ufq($u>orOIe:t1Pk6hD.!GcY]L()J:S,XH@m*fJ>G -% )a_%!bs;B"Hn"tMiN8nS^aFG`ARC!^H4f\csRQ9h&sTE.*oTZo3%'*M9*6Q=058PCVLSt?9R -% R8-VP1l7r3A-d\iKLmQB)=r6s%%8pRE=HPI1Bo_0VDYWX9l>7jSDkfl3ROg#1T[pRmmO!%`t -% 3uci_uKI,j8kE8l1-a<2",9BL0^Y;2J3#U(HEQ7Q1ZOc[I^H,F(VfV5dF]^,2]7SS:f$MGp) -% *5mBIEkt-FU<2(9GWCg_O*h3R;Q;4ifg:SmOZH@m'G1@%/[;8sc>1U$3i4LY7_-7Wcf==r!# -% AJcY\_n&"#4N?pILR%sd?dP@/TVhbNFiS5Hd-Xnp7(9)CcTh0:%@e(*; -% [(:&@K2Wn*lKSS/ljg=k5#[)09e.7pYrgYi'3VDP^FEFY)/i[4Dt5oo62MgEmM7Mi%"N@IP# -% MI"nE -% bJ(ZKcgVKJbhec?_CA(Bu:$2-eKUT6A$mAo3?2>@KL(oY_dSWJYiA@Ni>tVD'(Z9keEKjRs; -% .c/%o2ICrN%=-pBqKsPs5lWkfpQcW!W1'hhaA[u!T&j/^K"Ld+I@9PA//';7LKD&XPS9_@D? -% 8H-J4P9pG(;cK!k@Qe[@6F8t_g(<"LD($YL'fu9+sq;G9jCm:.lt/O*O;GI*8DAEQdRe+oQ# -% $>g`B8ca%["`UPh6L,_%bcEu8hZb8]Ol_q!:Zh*ILr;(aKUf@KcRiii]slOrmef4j*=YS0]H -% #$:NNF&mITRB>Y#5.fhg/ZkX,>j^(M2VYITW1dp0"5A9O`LuoVUrt@S):s,2lG`pIFf]X*6a -% tP7rj93"IH9fC)8&Thmuu(thLE.=#AIpb+:R[L/FMl.@V3,Xr>Q"uURAA"Ik8PbC[jAos._ERXO62R4.I==FuiP=jD9mcg]&7;P7MuX.@70m]:E -% Wj_HbkO#Hls"?JKWQ=6Jr$[(DNjGj5Y3\tUg'WKDXEV5sHb:4G,2lrl#,kdB]om)oPu5N^U< -% ]s+Xn]p_g%i*p%ucH2Z^SX[<9dE6pU,H#_P6&]ZlX8L>WLNgJ1GJM7C_C&SD&nh6g@g"IkAgYADGq9tOd:O][XaabF&[:,bQi]W2fo^(C.F%tqNbkiB6g[M" -% !SQf\57ca<_T.;+Xoro>j$7F[XN&DIV$QGa@:fcB48'3KD>1aqT"5sf71;3BE6\*hDU%HAqW -% !rKRmcM%%)Es[s[\BGX;X`<[E/oG_&s6AKJp!!*9I_d"S"jL/sWXj%"itB831:L(X03A+sRj -% fQnGPLX(X,UfE2WLPPfj>'j@qI40c,7YEAE;WK``KNMr@LO=g-KSnE0;* -% pEfO=$Al0)#>fe,TIM:dGD39E_[\@^J=iBL^t$,-,,]belER6UEnU5C#%INFN-!coKG%b?Gqg3A5)pbUd*5.%(=6dm7PfK@)n3 -% ./)n;U^Y*@jLOlO&s4`oluPZU6"TdO8g&Y"'L`[W'-F(!X]eNgX)&83'Q(&=P[Y>hcQ"j"-1 -% T'Np!p7ooh@u!gCE0C!pO3cjIm"-;ZM&ueU*s@EB"t>`e5WUB6$#8uq!+(UR&o3 -% rgtUB3=+$on'ESqq0T81\Vg6"C[o(J0jBTTOT^-meMJ6K4#Sfp'JIPk8'1.%-.XiX@A`Q(F) -% &T!4KOd$:3lQ"j5(-pThnciI\a+2-To3iSEJa-L/pQCZ\pT4oecUH=/aRSZqO5Jia8`0;MbQ -% u!D+%9"+J)$l$)4e4s0,,7EgJt?o]1IE:K-;]o2:mo@LR92t.4h7)QM'AO:4.n$kG3LjKR$[ -% /aRN\Z$JE\ddR?HYU$aZ6N[Y^KbadY%Q!];tFnsPg93JMd14qj?VW*thd\Hs.1NW=s'HAS3H -% 13KV-5>[c@iE7I-l(BZNPq[KFAg.:6R7)UFNG.Q0aD%9h#tE"aS8e:o,ANGDHD1PRPc;3a#j -% RjW=Y?#eT^;6B0Bn`Vfpa*\PD=+N5+8/naJ#*V2af\T7Tu&+=[iI-RNR3Nh"$f4adk&aO6I: -% PQZee>bU)1*ufg5j<$Tl\_jPnZMCCYMq#f&s+G+TWe9.X8mdP@MkuiW* -% [j!a3.CredBL$aX:=PAb04+Zd)Hl`dN!Z#1M]O8>u!9=,M).&-8RG5JXkl`kaDZF\Dl,YP6p -% _Z4Ck!JT:3/c2_)/#X@cYR,BTAt-"4)nBa"U2AY`5RY&g>HsVYXq;m.(m)*E>J,6^"+0@:;< -% t^`6+(-j<[ZYI*(XBM0Yla+>&[[/MOi&\M?HS1rFY0&9 -% +bY,OEqmWM>-3fPYm;TanqmqS&]5'F*1>B=c=t$n=[cAsLC\k&rgTA9W^6tJ&j@VGoU9sP3\ -% kP8t:KtEVHb/lb-3TDWhZ1IF$bK`GXC*!C@LKoYRi2[I\IH3`Xnoht]=sRmZ*a?^(0nM'!"K -% m:]H!Fs:.r>Em$1Hf]muRp!g"bVJAPQl_V<8Nh&E[R4L7Hp0P=%rS -gR -gS 35 235 14 10 rC -gR -gS 30 199 24 46 rC -37 242 :M -f0_9 sf -S -gR -gS 139 150 27 13 rC -gR -gS 134 114 37 49 rC -139 160 :M -f1_12 sf --.106(t )A -f0_12 sf --.222(\(s\))A -gR -gS 19 99 15 45 rC -gS -26.5 121.5 :T -270 rotate --26.5 -121.5 :T -4 124 :M -f2_12 sf --.163(v )A -f3_12 sf --.144<28>A -f0_12 sf --.281(m/s\))A -gR -gR -gS 85 132 13 10 rC -gR -gS 80 96 23 46 rC -89 139 :M -f0_9 sf -(1)S -gR -gS 130 132 13 10 rC -gR -gS 125 96 23 46 rC -134 139 :M -f0_9 sf -(2)S -gR -gS 175 132 13 10 rC -gR -gS 170 96 23 46 rC -179 139 :M -f0_9 sf -(3)S -gR -gS 215 132 14 10 rC -gR -gS 210 96 24 46 rC -219 139 :M -f0_9 sf -(4)S -gR -gS 256 132 13 10 rC -gR -gS 251 96 23 46 rC -260 139 :M -f0_9 sf -(5)S -gR -endp -%%Trailer -end -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77ava.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77ava.gif deleted file mode 100755 index c25c67aa4..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77ava.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77avb.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77avb.eps deleted file mode 100755 index ed0cb144d..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77avb.eps +++ /dev/null @@ -1,775 +0,0 @@ -%!PS-Adobe-3.0 EPSF-3.0 -%%BoundingBox: 14 521 284 761 -%%Title: (pssc7cq2.13b.cwk \(DR\)) -%%Creator: (ClarisWorks 3.0: LaserWriter 8 8.3.3) -%%CreationDate: (1:46 PM September 23, 1996) -%%For: (Alberding) -%%Pages: 1 -%%DocumentFonts: Helvetica-Bold Helvetica-BoldOblique Helvetica Palatino-Italic Palatino-Roman -%%DocumentNeededFonts: Helvetica-Bold Helvetica-BoldOblique Helvetica Palatino-Italic Palatino-Roman -%%DocumentSuppliedFonts: -%%DocumentData: Clean7Bit -%%PageOrder: Ascend -%%Orientation: Portrait -%%DocumentMedia: Default 612 792 0 () () -%ADO_ImageableArea: 14 12 598 780 -%%EndComments -userdict begin/dscInfo 5 dict dup begin -/Title(pssc7cq2.13b.cwk \(DR\))def -/Creator(ClarisWorks 3.0: LaserWriter 8 8.3.3)def -/CreationDate(1:46 PM September 23, 1996)def -/For(Alberding)def -/Pages 1 def -end def end -/md 174 dict def md begin/currentpacking where {pop /sc_oldpacking currentpacking def true setpacking}if -%%BeginFile: adobe_psp_basic -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/bd{bind def}bind def -/xdf{exch def}bd -/xs{exch store}bd -/ld{load def}bd -/Z{0 def}bd -/T/true -/F/false -/:L/lineto -/lw/setlinewidth -/:M/moveto -/rl/rlineto -/rm/rmoveto -/:C/curveto -/:T/translate -/:K/closepath -/:mf/makefont -/gS/gsave -/gR/grestore -/np/newpath -14{ld}repeat -/$m matrix def -/av 83 def -/por true def -/normland false def -/psb-nosave{}bd -/pse-nosave{}bd -/us Z -/psb{/us save store}bd -/pse{us restore}bd -/level2 -/languagelevel where -{ -pop languagelevel 2 ge -}{ -false -}ifelse -def -/featurecleanup -{ -stopped -cleartomark -countdictstack exch sub dup 0 gt -{ -{end}repeat -}{ -pop -}ifelse -}bd -/noload Z -/startnoload -{ -{/noload save store}if -}bd -/endnoload -{ -{noload restore}if -}bd -level2 startnoload -/setjob -{ -statusdict/jobname 3 -1 roll put -}bd -/setcopies -{ -userdict/#copies 3 -1 roll put -}bd -level2 endnoload level2 not startnoload -/setjob -{ -1 dict begin/JobName xdf currentdict end setuserparams -}bd -/setcopies -{ -1 dict begin/NumCopies xdf currentdict end setpagedevice -}bd -level2 not endnoload -/pm Z -/mT Z -/sD Z -/realshowpage Z -/initializepage -{ -/pm save store mT concat -}bd -/endp -{ -pm restore showpage -}def -/$c/DeviceRGB def -/rectclip where -{ -pop/rC/rectclip ld -}{ -/rC -{ -np 4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -clip np -}bd -}ifelse -/rectfill where -{ -pop/rF/rectfill ld -}{ -/rF -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -fill -gR -}bd -}ifelse -/rectstroke where -{ -pop/rS/rectstroke ld -}{ -/rS -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -stroke -gR -}bd -}ifelse -%%EndFile -%%BeginFile: adobe_psp_colorspace_level1 -%%Copyright: Copyright 1991-1993 Adobe Systems Incorporated. All Rights Reserved. -/G/setgray ld -/:F1/setgray ld -/:F/setrgbcolor ld -/:F4/setcmykcolor where -{ -pop -/setcmykcolor ld -}{ -{ -3 -{ -dup -3 -1 roll add -dup 1 gt{pop 1}if -1 exch sub -4 1 roll -}repeat -pop -setrgbcolor -}bd -}ifelse -/:Fx -{ -counttomark -{0{G}0{:F}{:F4}} -exch get -exec -pop -}bd -/:rg{/DeviceRGB :ss}bd -/:sc{$cs :ss}bd -/:dc{/$cs xdf}bd -/:sgl{}def -/:dr{}bd -/:fCRD{pop}bd -/:ckcs{}bd -/:ss{/$c xdf}bd -/$cs Z -%%EndFile -%%BeginFile: adobe_psp_uniform_graphics -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/@a -{ -np :M 0 rl :L 0 exch rl 0 rl :L fill -}bd -/@b -{ -np :M 0 rl 0 exch rl :L 0 rl 0 exch rl fill -}bd -/arct where -{ -pop -}{ -/arct -{ -arcto pop pop pop pop -}bd -}ifelse -/x1 Z -/x2 Z -/y1 Z -/y2 Z -/rad Z -/@q -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -fill -}bd -/@s -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -:K -stroke -}bd -/@i -{ -np 0 360 arc fill -}bd -/@j -{ -gS -np -:T -scale -0 0 .5 0 360 arc -fill -gR -}bd -/@e -{ -np -0 360 arc -:K -stroke -}bd -/@f -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 0 360 arc -:K -$m setmatrix -stroke -}bd -/@k -{ -gS -np -:T -0 0 :M -0 0 5 2 roll -arc fill -gR -}bd -/@l -{ -gS -np -:T -0 0 :M -scale -0 0 .5 5 -2 roll arc -fill -gR -}bd -/@m -{ -np -arc -stroke -}bd -/@n -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 5 -2 roll arc -$m setmatrix -stroke -}bd -%%EndFile -%%BeginFile: adobe_psp_customps -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/$t Z -/$p Z -/$s Z -/$o 1. def -/2state? false def -/ps Z -level2 startnoload -/pushcolor/currentrgbcolor ld -/popcolor/setrgbcolor ld -/setcmykcolor where -{ -pop/currentcmykcolor where -{ -pop/pushcolor/currentcmykcolor ld -/popcolor/setcmykcolor ld -}if -}if -level2 endnoload level2 not startnoload -/pushcolor -{ -currentcolorspace $c eq -{ -currentcolor currentcolorspace true -}{ -currentcmykcolor false -}ifelse -}bd -/popcolor -{ -{ -setcolorspace setcolor -}{ -setcmykcolor -}ifelse -}bd -level2 not endnoload -/pushstatic -{ -ps -2state? -$o -$t -$p -$s -$cs -}bd -/popstatic -{ -/$cs xs -/$s xs -/$p xs -/$t xs -/$o xs -/2state? xs -/ps xs -}bd -/pushgstate -{ -save errordict/nocurrentpoint{pop 0 0}put -currentpoint -3 -1 roll restore -pushcolor -currentlinewidth -currentlinecap -currentlinejoin -currentdash exch aload length -np clippath pathbbox -$m currentmatrix aload pop -}bd -/popgstate -{ -$m astore setmatrix -2 index sub exch -3 index sub exch -rC -array astore exch setdash -setlinejoin -setlinecap -lw -popcolor -np :M -}bd -/bu -{ -pushgstate -gR -pushgstate -2state? -{ -gR -pushgstate -}if -pushstatic -pm restore -mT concat -}bd -/bn -{ -/pm save store -popstatic -popgstate -gS -popgstate -2state? -{ -gS -popgstate -}if -}bd -/cpat{pop 64 div setgray 8{pop}repeat}bd -%%EndFile -%%BeginFile: adobe_psp_basic_text -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/S/show ld -/A{ -0.0 exch ashow -}bd -/R{ -0.0 exch 32 exch widthshow -}bd -/W{ -0.0 3 1 roll widthshow -}bd -/J{ -0.0 32 4 2 roll 0.0 exch awidthshow -}bd -/V{ -0.0 4 1 roll 0.0 exch awidthshow -}bd -/fcflg true def -/fc{ -fcflg{ -vmstatus exch sub 50000 lt{ -(%%[ Warning: Running out of memory ]%%\r)print flush/fcflg false store -}if pop -}if -}bd -/$f[1 0 0 -1 0 0]def -/:ff{$f :mf}bd -/MacEncoding StandardEncoding 256 array copy def -MacEncoding 39/quotesingle put -MacEncoding 96/grave put -/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis/Udieresis/aacute -/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute/egrave -/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde/oacute -/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex/udieresis -/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/notequal/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdiff/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta/guillemotleft -/guillemotright/ellipsis/space/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide/lozenge -/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright/fi/fl -/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex/Idieresis/Igrave -/Oacute/Ocircumflex/apple/Ograve/Uacute/Ucircumflex/Ugrave/dotlessi/circumflex/tilde -/macron/breve/dotaccent/ring/cedilla/hungarumlaut/ogonek/caron -MacEncoding 128 128 getinterval astore pop -level2 startnoload -/copyfontdict -{ -findfont dup length dict -begin -{ -1 index/FID ne{def}{pop pop}ifelse -}forall -}bd -level2 endnoload level2 not startnoload -/copyfontdict -{ -findfont dup length dict -copy -begin -}bd -level2 not endnoload -md/fontname known not{ -/fontname/customfont def -}if -/Encoding Z -/:mre -{ -copyfontdict -/Encoding MacEncoding def -fontname currentdict -end -definefont :ff def -}bd -/:bsr -{ -copyfontdict -/Encoding Encoding 256 array copy def -Encoding dup -}bd -/pd{put dup}bd -/:esr -{ -pop pop -fontname currentdict -end -definefont :ff def -}bd -/scf -{ -scalefont def -}bd -/scf-non -{ -$m scale :mf setfont -}bd -/ps Z -/fz{/ps xs}bd -/sf/setfont ld -/cF/currentfont ld -/mbf -{ -/makeblendedfont where -{ -pop -makeblendedfont -/ABlend exch definefont -}{ -pop -}ifelse -def -}def -%%EndFile -/currentpacking where {pop sc_oldpacking setpacking}if end -%%EndProlog -%%BeginSetup -md begin -/mT[1 0 0 -1 14 780]def -/sD 16 dict def -%%IncludeFont: Helvetica-Bold -%%IncludeFont: Helvetica-BoldOblique -%%IncludeFont: Helvetica -%%IncludeFont: Palatino-Italic -%%IncludeFont: Palatino-Roman -/f0_1/Helvetica-Bold -:mre -/f0_12 f0_1 12 scf -/f0_9 f0_1 9 scf -/f1_1/Helvetica-BoldOblique -:mre -/f1_12 f1_1 12 scf -/f2_1/Helvetica -:mre -/f2_12 f2_1 12 scf -/f3_1/Palatino-Italic -:mre -/f3_12 f3_1 12 scf -/f4_1/Palatino-Roman -:mre -/f4_12 f4_1 12 scf -/Courier findfont[10 0 0 -10 0 0]:mf setfont -%PostScript Hack by Mike Brors 12/7/90 -/DisableNextSetRGBColor - { - userdict begin - /setrgbcolor - { - pop - pop - pop - userdict begin - /setrgbcolor systemdict /setrgbcolor get def - end - } def - end -} bind def -/bcarray where { - pop - bcarray 2 { - /da 4 ps div def - df setfont gsave cs wi - 1 index 0 ne{exch da add exch}if grestore setcharwidth - cs 0 0 smc da 0 smc da da smc 0 da smc c - gray - { gl} - {1 setgray}ifelse - da 2. div dup moveto show - }bind put -} if -% -% Used to snap to device pixels, 1/4th of the pixel in. -/stp { % x y pl x y % Snap To Pixel, pixel (auto stroke adjust) - transform - 0.25 sub round 0.25 add exch - 0.25 sub round 0.25 add exch - itransform -} bind def -/snapmoveto { % x y m - % moveto, auto stroke adjust - stp moveto -} bind def -/snaplineto { % x y l - % lineto, auto stroke adjust - stp lineto -} bind def -%%EndSetup -%%Page: 1 1 -%%BeginPageSetup -initializepage -%%EndPageSetup -gS 0 0 584 768 rC -17 19 552 730 rC -.5 G --.016 -.016 178.016 144.016 .016 .016 178 90 @b -52 90.016 -.016 .016 178.016 90 .016 52 90 @a -48 252.016 -.016 .016 264.016 252 .016 48 252 @a -1 G -48 32 1 226 rF -0 G -.016 lw -48.5 32.5 0 225 rS -48 144.016 -.016 .016 264.016 144 .016 48 144 @a -48 90.016 -.016 .016 57.016 90 .016 48 90 @a -48 36.016 -.016 .016 57.016 36 .016 48 36 @a -48 198.016 -.016 .016 57.016 198 .016 48 198 @a -48 252.016 -.016 .016 57.016 252 .016 48 252 @a --.016 -.016 48.016 144.016 .016 .016 48 135 @b --.016 -.016 91.016 144.016 .016 .016 91 135 @b --.016 -.016 134.016 144.016 .016 .016 134 135 @b --.016 -.016 178.016 144.016 .016 .016 178 135 @b --.016 -.016 221.016 144.016 .016 .016 221 135 @b --.016 -.016 264.016 144.016 .016 .016 264 135 @b -264 252 :M -gsave -2.0 setmiterlimit --19982 -19968 -1 1 -19980 -19968 1 -19982 -19969 @a -1 lw --19981 -19968 :M -newpath -48 144 snapmoveto -179 90 snaplineto -264 252 snaplineto -stroke --19982 -9969 -10000 10000 -9981 -19968 10000 -19982 -19969 @a -10000 lw --19981 -19968 :M -grestore -35 33 14 10 rC -gR -gS 30 0 24 43 rC -36 40 :M -f0_9 sf -.741(+2)A -gR -gS 35 87 14 10 rC -gR -gS 30 51 24 46 rC -36 94 :M -f0_9 sf -.741(+1)A -gR -gS 35 141 14 10 rC -gR -gS 30 105 24 46 rC -36 148 :M -f0_9 sf -.741(+0)A -gR -gS 35 195 14 10 rC -gR -gS 30 159 24 46 rC -36 202 :M -f0_9 sf -.994A -gR -gS 35 249 14 10 rC -gR -gS 30 213 24 46 rC -36 256 :M -f0_9 sf -.994A -gR -gS 139 163 27 13 rC -gR -gS 134 127 37 49 rC -139 173 :M -f1_12 sf -(t )S -f0_12 sf -(\(s\))S -gR -gS 19 112 15 45 rC -gS -26.5 134.5 :T -270 rotate --26.5 -134.5 :T -4 137 :M -f3_12 sf --.163(v )A -f4_12 sf --.144<28>A -f2_12 sf --.281(m/s\))A -gR -gR -gS 85 145 13 10 rC -gR -gS 80 109 23 46 rC -89 152 :M -f0_9 sf -(1)S -gR -gS 130 145 13 10 rC -gR -gS 125 109 23 46 rC -134 152 :M -f0_9 sf -(2)S -gR -gS 175 145 13 10 rC -gR -gS 170 109 23 46 rC -179 152 :M -f0_9 sf -(3)S -gR -gS 215 145 14 10 rC -gR -gS 210 109 24 46 rC -219 152 :M -f0_9 sf -(4)S -gR -gS 256 145 13 10 rC -gR -gS 251 109 23 46 rC -260 152 :M -f0_9 sf -(5)S -gR -gS 17 19 552 730 rC -.5 G --.016 -.016 264.016 252.016 .016 .016 264 144 @b -endp -%%Trailer -end -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77avb.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77avb.gif deleted file mode 100755 index e8e2bd57f..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77avb.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77avc.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77avc.eps deleted file mode 100755 index bce60492a..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77avc.eps +++ /dev/null @@ -1,769 +0,0 @@ -%!PS-Adobe-3.0 EPSF-3.0 -%%BoundingBox: 16 529 284 761 -%%Title: (pssc7cq2.13c.cwk \(DR\)) -%%Creator: (ClarisWorks 3.0: LaserWriter 8 8.3.3) -%%CreationDate: (1:47 PM September 23, 1996) -%%For: (Alberding) -%%Pages: 1 -%%DocumentFonts: Helvetica Helvetica-Oblique Palatino-Italic Palatino-Roman -%%DocumentNeededFonts: Helvetica Helvetica-Oblique Palatino-Italic Palatino-Roman -%%DocumentSuppliedFonts: -%%DocumentData: Clean7Bit -%%PageOrder: Ascend -%%Orientation: Portrait -%%DocumentMedia: Default 612 792 0 () () -%ADO_ImageableArea: 14 12 598 780 -%%EndComments -userdict begin/dscInfo 5 dict dup begin -/Title(pssc7cq2.13c.cwk \(DR\))def -/Creator(ClarisWorks 3.0: LaserWriter 8 8.3.3)def -/CreationDate(1:47 PM September 23, 1996)def -/For(Alberding)def -/Pages 1 def -end def end -/md 172 dict def md begin/currentpacking where {pop /sc_oldpacking currentpacking def true setpacking}if -%%BeginFile: adobe_psp_basic -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/bd{bind def}bind def -/xdf{exch def}bd -/xs{exch store}bd -/ld{load def}bd -/Z{0 def}bd -/T/true -/F/false -/:L/lineto -/lw/setlinewidth -/:M/moveto -/rl/rlineto -/rm/rmoveto -/:C/curveto -/:T/translate -/:K/closepath -/:mf/makefont -/gS/gsave -/gR/grestore -/np/newpath -14{ld}repeat -/$m matrix def -/av 83 def -/por true def -/normland false def -/psb-nosave{}bd -/pse-nosave{}bd -/us Z -/psb{/us save store}bd -/pse{us restore}bd -/level2 -/languagelevel where -{ -pop languagelevel 2 ge -}{ -false -}ifelse -def -/featurecleanup -{ -stopped -cleartomark -countdictstack exch sub dup 0 gt -{ -{end}repeat -}{ -pop -}ifelse -}bd -/noload Z -/startnoload -{ -{/noload save store}if -}bd -/endnoload -{ -{noload restore}if -}bd -level2 startnoload -/setjob -{ -statusdict/jobname 3 -1 roll put -}bd -/setcopies -{ -userdict/#copies 3 -1 roll put -}bd -level2 endnoload level2 not startnoload -/setjob -{ -1 dict begin/JobName xdf currentdict end setuserparams -}bd -/setcopies -{ -1 dict begin/NumCopies xdf currentdict end setpagedevice -}bd -level2 not endnoload -/pm Z -/mT Z -/sD Z -/realshowpage Z -/initializepage -{ -/pm save store mT concat -}bd -/endp -{ -pm restore showpage -}def -/$c/DeviceRGB def -/rectclip where -{ -pop/rC/rectclip ld -}{ -/rC -{ -np 4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -clip np -}bd -}ifelse -/rectfill where -{ -pop/rF/rectfill ld -}{ -/rF -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -fill -gR -}bd -}ifelse -/rectstroke where -{ -pop/rS/rectstroke ld -}{ -/rS -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -stroke -gR -}bd -}ifelse -%%EndFile -%%BeginFile: adobe_psp_colorspace_level1 -%%Copyright: Copyright 1991-1993 Adobe Systems Incorporated. All Rights Reserved. -/G/setgray ld -/:F1/setgray ld -/:F/setrgbcolor ld -/:F4/setcmykcolor where -{ -pop -/setcmykcolor ld -}{ -{ -3 -{ -dup -3 -1 roll add -dup 1 gt{pop 1}if -1 exch sub -4 1 roll -}repeat -pop -setrgbcolor -}bd -}ifelse -/:Fx -{ -counttomark -{0{G}0{:F}{:F4}} -exch get -exec -pop -}bd -/:rg{/DeviceRGB :ss}bd -/:sc{$cs :ss}bd -/:dc{/$cs xdf}bd -/:sgl{}def -/:dr{}bd -/:fCRD{pop}bd -/:ckcs{}bd -/:ss{/$c xdf}bd -/$cs Z -%%EndFile -%%BeginFile: adobe_psp_uniform_graphics -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/@a -{ -np :M 0 rl :L 0 exch rl 0 rl :L fill -}bd -/@b -{ -np :M 0 rl 0 exch rl :L 0 rl 0 exch rl fill -}bd -/arct where -{ -pop -}{ -/arct -{ -arcto pop pop pop pop -}bd -}ifelse -/x1 Z -/x2 Z -/y1 Z -/y2 Z -/rad Z -/@q -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -fill -}bd -/@s -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -:K -stroke -}bd -/@i -{ -np 0 360 arc fill -}bd -/@j -{ -gS -np -:T -scale -0 0 .5 0 360 arc -fill -gR -}bd -/@e -{ -np -0 360 arc -:K -stroke -}bd -/@f -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 0 360 arc -:K -$m setmatrix -stroke -}bd -/@k -{ -gS -np -:T -0 0 :M -0 0 5 2 roll -arc fill -gR -}bd -/@l -{ -gS -np -:T -0 0 :M -scale -0 0 .5 5 -2 roll arc -fill -gR -}bd -/@m -{ -np -arc -stroke -}bd -/@n -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 5 -2 roll arc -$m setmatrix -stroke -}bd -%%EndFile -%%BeginFile: adobe_psp_customps -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/$t Z -/$p Z -/$s Z -/$o 1. def -/2state? false def -/ps Z -level2 startnoload -/pushcolor/currentrgbcolor ld -/popcolor/setrgbcolor ld -/setcmykcolor where -{ -pop/currentcmykcolor where -{ -pop/pushcolor/currentcmykcolor ld -/popcolor/setcmykcolor ld -}if -}if -level2 endnoload level2 not startnoload -/pushcolor -{ -currentcolorspace $c eq -{ -currentcolor currentcolorspace true -}{ -currentcmykcolor false -}ifelse -}bd -/popcolor -{ -{ -setcolorspace setcolor -}{ -setcmykcolor -}ifelse -}bd -level2 not endnoload -/pushstatic -{ -ps -2state? -$o -$t -$p -$s -$cs -}bd -/popstatic -{ -/$cs xs -/$s xs -/$p xs -/$t xs -/$o xs -/2state? xs -/ps xs -}bd -/pushgstate -{ -save errordict/nocurrentpoint{pop 0 0}put -currentpoint -3 -1 roll restore -pushcolor -currentlinewidth -currentlinecap -currentlinejoin -currentdash exch aload length -np clippath pathbbox -$m currentmatrix aload pop -}bd -/popgstate -{ -$m astore setmatrix -2 index sub exch -3 index sub exch -rC -array astore exch setdash -setlinejoin -setlinecap -lw -popcolor -np :M -}bd -/bu -{ -pushgstate -gR -pushgstate -2state? -{ -gR -pushgstate -}if -pushstatic -pm restore -mT concat -}bd -/bn -{ -/pm save store -popstatic -popgstate -gS -popgstate -2state? -{ -gS -popgstate -}if -}bd -/cpat{pop 64 div setgray 8{pop}repeat}bd -%%EndFile -%%BeginFile: adobe_psp_basic_text -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/S/show ld -/A{ -0.0 exch ashow -}bd -/R{ -0.0 exch 32 exch widthshow -}bd -/W{ -0.0 3 1 roll widthshow -}bd -/J{ -0.0 32 4 2 roll 0.0 exch awidthshow -}bd -/V{ -0.0 4 1 roll 0.0 exch awidthshow -}bd -/fcflg true def -/fc{ -fcflg{ -vmstatus exch sub 50000 lt{ -(%%[ Warning: Running out of memory ]%%\r)print flush/fcflg false store -}if pop -}if -}bd -/$f[1 0 0 -1 0 0]def -/:ff{$f :mf}bd -/MacEncoding StandardEncoding 256 array copy def -MacEncoding 39/quotesingle put -MacEncoding 96/grave put -/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis/Udieresis/aacute -/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute/egrave -/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde/oacute -/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex/udieresis -/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/notequal/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdiff/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta/guillemotleft -/guillemotright/ellipsis/space/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide/lozenge -/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright/fi/fl -/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex/Idieresis/Igrave -/Oacute/Ocircumflex/apple/Ograve/Uacute/Ucircumflex/Ugrave/dotlessi/circumflex/tilde -/macron/breve/dotaccent/ring/cedilla/hungarumlaut/ogonek/caron -MacEncoding 128 128 getinterval astore pop -level2 startnoload -/copyfontdict -{ -findfont dup length dict -begin -{ -1 index/FID ne{def}{pop pop}ifelse -}forall -}bd -level2 endnoload level2 not startnoload -/copyfontdict -{ -findfont dup length dict -copy -begin -}bd -level2 not endnoload -md/fontname known not{ -/fontname/customfont def -}if -/Encoding Z -/:mre -{ -copyfontdict -/Encoding MacEncoding def -fontname currentdict -end -definefont :ff def -}bd -/:bsr -{ -copyfontdict -/Encoding Encoding 256 array copy def -Encoding dup -}bd -/pd{put dup}bd -/:esr -{ -pop pop -fontname currentdict -end -definefont :ff def -}bd -/scf -{ -scalefont def -}bd -/scf-non -{ -$m scale :mf setfont -}bd -/ps Z -/fz{/ps xs}bd -/sf/setfont ld -/cF/currentfont ld -/mbf -{ -/makeblendedfont where -{ -pop -makeblendedfont -/ABlend exch definefont -}{ -pop -}ifelse -def -}def -%%EndFile -/currentpacking where {pop sc_oldpacking setpacking}if end -%%EndProlog -%%BeginSetup -md begin -/mT[1 0 0 -1 14 780]def -/sD 16 dict def -%%IncludeFont: Helvetica -%%IncludeFont: Helvetica-Oblique -%%IncludeFont: Palatino-Italic -%%IncludeFont: Palatino-Roman -/f0_1/Helvetica -:mre -/f0_12 f0_1 12 scf -/f0_9 f0_1 9 scf -/f1_1/Helvetica-Oblique -:mre -/f1_12 f1_1 12 scf -/f2_1/Palatino-Italic -:mre -/f2_12 f2_1 12 scf -/f3_1/Palatino-Roman -:mre -/f3_12 f3_1 12 scf -/Courier findfont[10 0 0 -10 0 0]:mf setfont -%PostScript Hack by Mike Brors 12/7/90 -/DisableNextSetRGBColor - { - userdict begin - /setrgbcolor - { - pop - pop - pop - userdict begin - /setrgbcolor systemdict /setrgbcolor get def - end - } def - end -} bind def -/bcarray where { - pop - bcarray 2 { - /da 4 ps div def - df setfont gsave cs wi - 1 index 0 ne{exch da add exch}if grestore setcharwidth - cs 0 0 smc da 0 smc da da smc 0 da smc c - gray - { gl} - {1 setgray}ifelse - da 2. div dup moveto show - }bind put -} if -% -% Used to snap to device pixels, 1/4th of the pixel in. -/stp { % x y pl x y % Snap To Pixel, pixel (auto stroke adjust) - transform - 0.25 sub round 0.25 add exch - 0.25 sub round 0.25 add exch - itransform -} bind def -/snapmoveto { % x y m - % moveto, auto stroke adjust - stp moveto -} bind def -/snaplineto { % x y l - % lineto, auto stroke adjust - stp lineto -} bind def -%%EndSetup -%%Page: 1 1 -%%BeginPageSetup -initializepage -%%EndPageSetup -gS 0 0 584 768 rC -17 19 552 730 rC -.5 G -54 28.016 -.016 .016 180.016 28 .016 54 28 @a --.016 -.016 180.016 136.016 .016 .016 180 28 @b --.016 -.016 222.016 245.016 .016 .016 222 137 @b -49 244.016 -.016 .016 222.016 245 .016 49 244 @a -1 G -49 24 1 226 rF -0 G -.016 lw -49.5 24.5 0 225 rS -49 136.016 -.016 .016 265.016 136 .016 49 136 @a -49 82.016 -.016 .016 58.016 82 .016 49 82 @a -49 28.016 -.016 .016 58.016 28 .016 49 28 @a -49 190.016 -.016 .016 58.016 190 .016 49 190 @a -49 244.016 -.016 .016 58.016 244 .016 49 244 @a --.016 -.016 49.016 136.016 .016 .016 49 127 @b --.016 -.016 93.016 136.016 .016 .016 93 127 @b --.016 -.016 136.016 136.016 .016 .016 136 127 @b --.016 -.016 179.016 136.016 .016 .016 179 127 @b --.016 -.016 222.016 136.016 .016 .016 222 127 @b --.016 -.016 265.016 136.016 .016 .016 265 127 @b -222 245 :M -gsave -2.0 setmiterlimit --19981 -19976 -1 1 -19979 -19976 1 -19981 -19977 @a -1 lw --19980 -19976 :M -newpath -49 136 snapmoveto -180 28 snaplineto -222 245 snaplineto -stroke --19981 -9977 -10000 10000 -9980 -19976 10000 -19981 -19977 @a -10000 lw --19980 -19976 :M -grestore -37 25 13 10 rC -gR -gS 32 0 23 35 rC -39 32 :M -f0_9 sf --.259(+2)A -gR -gS 37 79 13 10 rC -gR -gS 32 43 23 46 rC -39 86 :M -f0_9 sf --.259(+1)A -gR -gS 37 133 13 10 rC -gR -gS 32 97 23 46 rC -39 140 :M -f0_9 sf --.259(+0)A -gR -gS 37 187 13 10 rC -gR -gS 32 151 23 46 rC -39 194 :M -f0_9 sf -S -gR -gS 37 241 13 10 rC -gR -gS 32 205 23 46 rC -39 248 :M -f0_9 sf -S -gR -gS 140 155 27 13 rC -gR -gS 135 119 37 49 rC -140 165 :M -f1_12 sf --.106(t )A -f0_12 sf --.222(\(s\))A -gR -gS 21 104 14 45 rC -gS -28.5 126 :T -270 rotate --28.5 -126 :T -6 129 :M -f2_12 sf --.163(v )A -f3_12 sf --.144<28>A -f0_12 sf --.281(m/s\))A -gR -gR -gS 86 137 14 10 rC -gR -gS 81 101 24 46 rC -90 144 :M -f0_9 sf -(1)S -gR -gS 131 137 14 10 rC -gR -gS 126 101 24 46 rC -135 144 :M -f0_9 sf -(2)S -gR -gS 176 137 14 10 rC -gR -gS 171 101 24 46 rC -180 144 :M -f0_9 sf -(3)S -gR -gS 217 137 13 10 rC -gR -gS 212 101 23 46 rC -221 144 :M -f0_9 sf -(4)S -gR -gS 257 137 14 10 rC -gR -gS 252 101 24 46 rC -261 144 :M -f0_9 sf -(5)S -gR -endp -%%Trailer -end -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77avc.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77avc.gif deleted file mode 100755 index cefd2a23d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77avc.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77avd.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77avd.eps deleted file mode 100755 index 78f032f91..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77avd.eps +++ /dev/null @@ -1,769 +0,0 @@ -%!PS-Adobe-3.0 EPSF-3.0 -%%BoundingBox: 14 535 283 763 -%%Title: (pssc7cq2.13d.cwk \(DR\)) -%%Creator: (ClarisWorks 3.0: LaserWriter 8 8.3.3) -%%CreationDate: (1:48 PM September 23, 1996) -%%For: (Alberding) -%%Pages: 1 -%%DocumentFonts: Helvetica Helvetica-Oblique Palatino-Italic Palatino-Roman -%%DocumentNeededFonts: Helvetica Helvetica-Oblique Palatino-Italic Palatino-Roman -%%DocumentSuppliedFonts: -%%DocumentData: Clean7Bit -%%PageOrder: Ascend -%%Orientation: Portrait -%%DocumentMedia: Default 612 792 0 () () -%ADO_ImageableArea: 14 12 598 780 -%%EndComments -userdict begin/dscInfo 5 dict dup begin -/Title(pssc7cq2.13d.cwk \(DR\))def -/Creator(ClarisWorks 3.0: LaserWriter 8 8.3.3)def -/CreationDate(1:48 PM September 23, 1996)def -/For(Alberding)def -/Pages 1 def -end def end -/md 172 dict def md begin/currentpacking where {pop /sc_oldpacking currentpacking def true setpacking}if -%%BeginFile: adobe_psp_basic -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/bd{bind def}bind def -/xdf{exch def}bd -/xs{exch store}bd -/ld{load def}bd -/Z{0 def}bd -/T/true -/F/false -/:L/lineto -/lw/setlinewidth -/:M/moveto -/rl/rlineto -/rm/rmoveto -/:C/curveto -/:T/translate -/:K/closepath -/:mf/makefont -/gS/gsave -/gR/grestore -/np/newpath -14{ld}repeat -/$m matrix def -/av 83 def -/por true def -/normland false def -/psb-nosave{}bd -/pse-nosave{}bd -/us Z -/psb{/us save store}bd -/pse{us restore}bd -/level2 -/languagelevel where -{ -pop languagelevel 2 ge -}{ -false -}ifelse -def -/featurecleanup -{ -stopped -cleartomark -countdictstack exch sub dup 0 gt -{ -{end}repeat -}{ -pop -}ifelse -}bd -/noload Z -/startnoload -{ -{/noload save store}if -}bd -/endnoload -{ -{noload restore}if -}bd -level2 startnoload -/setjob -{ -statusdict/jobname 3 -1 roll put -}bd -/setcopies -{ -userdict/#copies 3 -1 roll put -}bd -level2 endnoload level2 not startnoload -/setjob -{ -1 dict begin/JobName xdf currentdict end setuserparams -}bd -/setcopies -{ -1 dict begin/NumCopies xdf currentdict end setpagedevice -}bd -level2 not endnoload -/pm Z -/mT Z -/sD Z -/realshowpage Z -/initializepage -{ -/pm save store mT concat -}bd -/endp -{ -pm restore showpage -}def -/$c/DeviceRGB def -/rectclip where -{ -pop/rC/rectclip ld -}{ -/rC -{ -np 4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -clip np -}bd -}ifelse -/rectfill where -{ -pop/rF/rectfill ld -}{ -/rF -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -fill -gR -}bd -}ifelse -/rectstroke where -{ -pop/rS/rectstroke ld -}{ -/rS -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -stroke -gR -}bd -}ifelse -%%EndFile -%%BeginFile: adobe_psp_colorspace_level1 -%%Copyright: Copyright 1991-1993 Adobe Systems Incorporated. All Rights Reserved. -/G/setgray ld -/:F1/setgray ld -/:F/setrgbcolor ld -/:F4/setcmykcolor where -{ -pop -/setcmykcolor ld -}{ -{ -3 -{ -dup -3 -1 roll add -dup 1 gt{pop 1}if -1 exch sub -4 1 roll -}repeat -pop -setrgbcolor -}bd -}ifelse -/:Fx -{ -counttomark -{0{G}0{:F}{:F4}} -exch get -exec -pop -}bd -/:rg{/DeviceRGB :ss}bd -/:sc{$cs :ss}bd -/:dc{/$cs xdf}bd -/:sgl{}def -/:dr{}bd -/:fCRD{pop}bd -/:ckcs{}bd -/:ss{/$c xdf}bd -/$cs Z -%%EndFile -%%BeginFile: adobe_psp_uniform_graphics -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/@a -{ -np :M 0 rl :L 0 exch rl 0 rl :L fill -}bd -/@b -{ -np :M 0 rl 0 exch rl :L 0 rl 0 exch rl fill -}bd -/arct where -{ -pop -}{ -/arct -{ -arcto pop pop pop pop -}bd -}ifelse -/x1 Z -/x2 Z -/y1 Z -/y2 Z -/rad Z -/@q -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -fill -}bd -/@s -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -:K -stroke -}bd -/@i -{ -np 0 360 arc fill -}bd -/@j -{ -gS -np -:T -scale -0 0 .5 0 360 arc -fill -gR -}bd -/@e -{ -np -0 360 arc -:K -stroke -}bd -/@f -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 0 360 arc -:K -$m setmatrix -stroke -}bd -/@k -{ -gS -np -:T -0 0 :M -0 0 5 2 roll -arc fill -gR -}bd -/@l -{ -gS -np -:T -0 0 :M -scale -0 0 .5 5 -2 roll arc -fill -gR -}bd -/@m -{ -np -arc -stroke -}bd -/@n -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 5 -2 roll arc -$m setmatrix -stroke -}bd -%%EndFile -%%BeginFile: adobe_psp_customps -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/$t Z -/$p Z -/$s Z -/$o 1. def -/2state? false def -/ps Z -level2 startnoload -/pushcolor/currentrgbcolor ld -/popcolor/setrgbcolor ld -/setcmykcolor where -{ -pop/currentcmykcolor where -{ -pop/pushcolor/currentcmykcolor ld -/popcolor/setcmykcolor ld -}if -}if -level2 endnoload level2 not startnoload -/pushcolor -{ -currentcolorspace $c eq -{ -currentcolor currentcolorspace true -}{ -currentcmykcolor false -}ifelse -}bd -/popcolor -{ -{ -setcolorspace setcolor -}{ -setcmykcolor -}ifelse -}bd -level2 not endnoload -/pushstatic -{ -ps -2state? -$o -$t -$p -$s -$cs -}bd -/popstatic -{ -/$cs xs -/$s xs -/$p xs -/$t xs -/$o xs -/2state? xs -/ps xs -}bd -/pushgstate -{ -save errordict/nocurrentpoint{pop 0 0}put -currentpoint -3 -1 roll restore -pushcolor -currentlinewidth -currentlinecap -currentlinejoin -currentdash exch aload length -np clippath pathbbox -$m currentmatrix aload pop -}bd -/popgstate -{ -$m astore setmatrix -2 index sub exch -3 index sub exch -rC -array astore exch setdash -setlinejoin -setlinecap -lw -popcolor -np :M -}bd -/bu -{ -pushgstate -gR -pushgstate -2state? -{ -gR -pushgstate -}if -pushstatic -pm restore -mT concat -}bd -/bn -{ -/pm save store -popstatic -popgstate -gS -popgstate -2state? -{ -gS -popgstate -}if -}bd -/cpat{pop 64 div setgray 8{pop}repeat}bd -%%EndFile -%%BeginFile: adobe_psp_basic_text -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/S/show ld -/A{ -0.0 exch ashow -}bd -/R{ -0.0 exch 32 exch widthshow -}bd -/W{ -0.0 3 1 roll widthshow -}bd -/J{ -0.0 32 4 2 roll 0.0 exch awidthshow -}bd -/V{ -0.0 4 1 roll 0.0 exch awidthshow -}bd -/fcflg true def -/fc{ -fcflg{ -vmstatus exch sub 50000 lt{ -(%%[ Warning: Running out of memory ]%%\r)print flush/fcflg false store -}if pop -}if -}bd -/$f[1 0 0 -1 0 0]def -/:ff{$f :mf}bd -/MacEncoding StandardEncoding 256 array copy def -MacEncoding 39/quotesingle put -MacEncoding 96/grave put -/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis/Udieresis/aacute -/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute/egrave -/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde/oacute -/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex/udieresis -/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/notequal/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdiff/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta/guillemotleft -/guillemotright/ellipsis/space/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide/lozenge -/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright/fi/fl -/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex/Idieresis/Igrave -/Oacute/Ocircumflex/apple/Ograve/Uacute/Ucircumflex/Ugrave/dotlessi/circumflex/tilde -/macron/breve/dotaccent/ring/cedilla/hungarumlaut/ogonek/caron -MacEncoding 128 128 getinterval astore pop -level2 startnoload -/copyfontdict -{ -findfont dup length dict -begin -{ -1 index/FID ne{def}{pop pop}ifelse -}forall -}bd -level2 endnoload level2 not startnoload -/copyfontdict -{ -findfont dup length dict -copy -begin -}bd -level2 not endnoload -md/fontname known not{ -/fontname/customfont def -}if -/Encoding Z -/:mre -{ -copyfontdict -/Encoding MacEncoding def -fontname currentdict -end -definefont :ff def -}bd -/:bsr -{ -copyfontdict -/Encoding Encoding 256 array copy def -Encoding dup -}bd -/pd{put dup}bd -/:esr -{ -pop pop -fontname currentdict -end -definefont :ff def -}bd -/scf -{ -scalefont def -}bd -/scf-non -{ -$m scale :mf setfont -}bd -/ps Z -/fz{/ps xs}bd -/sf/setfont ld -/cF/currentfont ld -/mbf -{ -/makeblendedfont where -{ -pop -makeblendedfont -/ABlend exch definefont -}{ -pop -}ifelse -def -}def -%%EndFile -/currentpacking where {pop sc_oldpacking setpacking}if end -%%EndProlog -%%BeginSetup -md begin -/mT[1 0 0 -1 14 780]def -/sD 16 dict def -%%IncludeFont: Helvetica -%%IncludeFont: Helvetica-Oblique -%%IncludeFont: Palatino-Italic -%%IncludeFont: Palatino-Roman -/f0_1/Helvetica -:mre -/f0_12 f0_1 12 scf -/f0_9 f0_1 9 scf -/f1_1/Helvetica-Oblique -:mre -/f1_12 f1_1 12 scf -/f2_1/Palatino-Italic -:mre -/f2_12 f2_1 12 scf -/f3_1/Palatino-Roman -:mre -/f3_12 f3_1 12 scf -/Courier findfont[10 0 0 -10 0 0]:mf setfont -%PostScript Hack by Mike Brors 12/7/90 -/DisableNextSetRGBColor - { - userdict begin - /setrgbcolor - { - pop - pop - pop - userdict begin - /setrgbcolor systemdict /setrgbcolor get def - end - } def - end -} bind def -/bcarray where { - pop - bcarray 2 { - /da 4 ps div def - df setfont gsave cs wi - 1 index 0 ne{exch da add exch}if grestore setcharwidth - cs 0 0 smc da 0 smc da da smc 0 da smc c - gray - { gl} - {1 setgray}ifelse - da 2. div dup moveto show - }bind put -} if -% -% Used to snap to device pixels, 1/4th of the pixel in. -/stp { % x y pl x y % Snap To Pixel, pixel (auto stroke adjust) - transform - 0.25 sub round 0.25 add exch - 0.25 sub round 0.25 add exch - itransform -} bind def -/snapmoveto { % x y m - % moveto, auto stroke adjust - stp moveto -} bind def -/snaplineto { % x y l - % lineto, auto stroke adjust - stp lineto -} bind def -%%EndSetup -%%Page: 1 1 -%%BeginPageSetup -initializepage -%%EndPageSetup -gS 0 0 584 768 rC -17 19 552 730 rC -.5 G -52 23.016 -.016 .016 178.016 23 .016 52 23 @a --.016 -.016 178.016 131.016 .016 .016 178 23 @b --.016 -.016 264.016 185.016 .016 .016 264 131 @b -48 185.016 -.016 .016 264.016 185 .016 48 185 @a -1 G -48 18 1 226 rF -0 G -.016 lw -48.5 18.5 0 225 rS -48 131.016 -.016 .016 264.016 131 .016 48 131 @a -48 77.016 -.016 .016 57.016 77 .016 48 77 @a -48 23.016 -.016 .016 57.016 23 .016 48 23 @a -48 185.016 -.016 .016 57.016 185 .016 48 185 @a -48 239.016 -.016 .016 57.016 239 .016 48 239 @a --.016 -.016 48.016 131.016 .016 .016 48 122 @b --.016 -.016 91.016 131.016 .016 .016 91 122 @b --.016 -.016 134.016 131.016 .016 .016 134 122 @b --.016 -.016 178.016 131.016 .016 .016 178 122 @b --.016 -.016 221.016 131.016 .016 .016 221 122 @b --.016 -.016 264.016 131.016 .016 .016 264 122 @b -264 185 :M -gsave -2.0 setmiterlimit --19982 -19981 -1 1 -19980 -19981 1 -19982 -19982 @a -1 lw --19981 -19981 :M -newpath -48 131 snapmoveto -179 23 snaplineto -264 185 snaplineto -stroke --19982 -9982 -10000 10000 -9981 -19981 10000 -19982 -19982 @a -10000 lw --19981 -19981 :M -grestore -35 19 14 10 rC -gR -gS 30 0 24 29 rC -37 26 :M -f0_9 sf --.259(+2)A -gR -gS 35 73 14 10 rC -gR -gS 30 37 24 46 rC -37 80 :M -f0_9 sf --.259(+1)A -gR -gS 35 127 14 10 rC -gR -gS 30 91 24 46 rC -37 134 :M -f0_9 sf --.259(+0)A -gR -gS 35 181 14 10 rC -gR -gS 30 145 24 46 rC -37 188 :M -f0_9 sf -S -gR -gS 35 235 14 10 rC -gR -gS 30 199 24 46 rC -37 242 :M -f0_9 sf -S -gR -gS 139 150 27 13 rC -gR -gS 134 114 37 49 rC -139 160 :M -f1_12 sf --.106(t )A -f0_12 sf --.222(\(s\))A -gR -gS 19 99 15 45 rC -gS -26.5 121.5 :T -270 rotate --26.5 -121.5 :T -4 124 :M -f2_12 sf --.163(v )A -f3_12 sf --.144<28>A -f0_12 sf --.281(m/s\))A -gR -gR -gS 85 132 13 10 rC -gR -gS 80 96 23 46 rC -89 139 :M -f0_9 sf -(1)S -gR -gS 130 132 13 10 rC -gR -gS 125 96 23 46 rC -134 139 :M -f0_9 sf -(2)S -gR -gS 175 132 13 10 rC -gR -gS 170 96 23 46 rC -179 139 :M -f0_9 sf -(3)S -gR -gS 215 132 14 10 rC -gR -gS 210 96 24 46 rC -219 139 :M -f0_9 sf -(4)S -gR -gS 256 132 13 10 rC -gR -gS 251 96 23 46 rC -260 139 :M -f0_9 sf -(5)S -gR -endp -%%Trailer -end -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77avd.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77avd.gif deleted file mode 100755 index 70cbf2172..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77avd.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77ave.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77ave.eps deleted file mode 100755 index 18d0d92ad..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77ave.eps +++ /dev/null @@ -1,769 +0,0 @@ -%!PS-Adobe-3.0 EPSF-3.0 -%%BoundingBox: 14 532 282 761 -%%Title: (pssc7cq2.13e.cwk \(DR\)) -%%Creator: (ClarisWorks 3.0: LaserWriter 8 8.3.3) -%%CreationDate: (1:48 PM September 23, 1996) -%%For: (Alberding) -%%Pages: 1 -%%DocumentFonts: Helvetica Helvetica-Oblique Palatino-Italic Palatino-Roman -%%DocumentNeededFonts: Helvetica Helvetica-Oblique Palatino-Italic Palatino-Roman -%%DocumentSuppliedFonts: -%%DocumentData: Clean7Bit -%%PageOrder: Ascend -%%Orientation: Portrait -%%DocumentMedia: Default 612 792 0 () () -%ADO_ImageableArea: 14 12 598 780 -%%EndComments -userdict begin/dscInfo 5 dict dup begin -/Title(pssc7cq2.13e.cwk \(DR\))def -/Creator(ClarisWorks 3.0: LaserWriter 8 8.3.3)def -/CreationDate(1:48 PM September 23, 1996)def -/For(Alberding)def -/Pages 1 def -end def end -/md 172 dict def md begin/currentpacking where {pop /sc_oldpacking currentpacking def true setpacking}if -%%BeginFile: adobe_psp_basic -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/bd{bind def}bind def -/xdf{exch def}bd -/xs{exch store}bd -/ld{load def}bd -/Z{0 def}bd -/T/true -/F/false -/:L/lineto -/lw/setlinewidth -/:M/moveto -/rl/rlineto -/rm/rmoveto -/:C/curveto -/:T/translate -/:K/closepath -/:mf/makefont -/gS/gsave -/gR/grestore -/np/newpath -14{ld}repeat -/$m matrix def -/av 83 def -/por true def -/normland false def -/psb-nosave{}bd -/pse-nosave{}bd -/us Z -/psb{/us save store}bd -/pse{us restore}bd -/level2 -/languagelevel where -{ -pop languagelevel 2 ge -}{ -false -}ifelse -def -/featurecleanup -{ -stopped -cleartomark -countdictstack exch sub dup 0 gt -{ -{end}repeat -}{ -pop -}ifelse -}bd -/noload Z -/startnoload -{ -{/noload save store}if -}bd -/endnoload -{ -{noload restore}if -}bd -level2 startnoload -/setjob -{ -statusdict/jobname 3 -1 roll put -}bd -/setcopies -{ -userdict/#copies 3 -1 roll put -}bd -level2 endnoload level2 not startnoload -/setjob -{ -1 dict begin/JobName xdf currentdict end setuserparams -}bd -/setcopies -{ -1 dict begin/NumCopies xdf currentdict end setpagedevice -}bd -level2 not endnoload -/pm Z -/mT Z -/sD Z -/realshowpage Z -/initializepage -{ -/pm save store mT concat -}bd -/endp -{ -pm restore showpage -}def -/$c/DeviceRGB def -/rectclip where -{ -pop/rC/rectclip ld -}{ -/rC -{ -np 4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -clip np -}bd -}ifelse -/rectfill where -{ -pop/rF/rectfill ld -}{ -/rF -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -fill -gR -}bd -}ifelse -/rectstroke where -{ -pop/rS/rectstroke ld -}{ -/rS -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -stroke -gR -}bd -}ifelse -%%EndFile -%%BeginFile: adobe_psp_colorspace_level1 -%%Copyright: Copyright 1991-1993 Adobe Systems Incorporated. All Rights Reserved. -/G/setgray ld -/:F1/setgray ld -/:F/setrgbcolor ld -/:F4/setcmykcolor where -{ -pop -/setcmykcolor ld -}{ -{ -3 -{ -dup -3 -1 roll add -dup 1 gt{pop 1}if -1 exch sub -4 1 roll -}repeat -pop -setrgbcolor -}bd -}ifelse -/:Fx -{ -counttomark -{0{G}0{:F}{:F4}} -exch get -exec -pop -}bd -/:rg{/DeviceRGB :ss}bd -/:sc{$cs :ss}bd -/:dc{/$cs xdf}bd -/:sgl{}def -/:dr{}bd -/:fCRD{pop}bd -/:ckcs{}bd -/:ss{/$c xdf}bd -/$cs Z -%%EndFile -%%BeginFile: adobe_psp_uniform_graphics -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/@a -{ -np :M 0 rl :L 0 exch rl 0 rl :L fill -}bd -/@b -{ -np :M 0 rl 0 exch rl :L 0 rl 0 exch rl fill -}bd -/arct where -{ -pop -}{ -/arct -{ -arcto pop pop pop pop -}bd -}ifelse -/x1 Z -/x2 Z -/y1 Z -/y2 Z -/rad Z -/@q -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -fill -}bd -/@s -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -:K -stroke -}bd -/@i -{ -np 0 360 arc fill -}bd -/@j -{ -gS -np -:T -scale -0 0 .5 0 360 arc -fill -gR -}bd -/@e -{ -np -0 360 arc -:K -stroke -}bd -/@f -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 0 360 arc -:K -$m setmatrix -stroke -}bd -/@k -{ -gS -np -:T -0 0 :M -0 0 5 2 roll -arc fill -gR -}bd -/@l -{ -gS -np -:T -0 0 :M -scale -0 0 .5 5 -2 roll arc -fill -gR -}bd -/@m -{ -np -arc -stroke -}bd -/@n -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 5 -2 roll arc -$m setmatrix -stroke -}bd -%%EndFile -%%BeginFile: adobe_psp_customps -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/$t Z -/$p Z -/$s Z -/$o 1. def -/2state? false def -/ps Z -level2 startnoload -/pushcolor/currentrgbcolor ld -/popcolor/setrgbcolor ld -/setcmykcolor where -{ -pop/currentcmykcolor where -{ -pop/pushcolor/currentcmykcolor ld -/popcolor/setcmykcolor ld -}if -}if -level2 endnoload level2 not startnoload -/pushcolor -{ -currentcolorspace $c eq -{ -currentcolor currentcolorspace true -}{ -currentcmykcolor false -}ifelse -}bd -/popcolor -{ -{ -setcolorspace setcolor -}{ -setcmykcolor -}ifelse -}bd -level2 not endnoload -/pushstatic -{ -ps -2state? -$o -$t -$p -$s -$cs -}bd -/popstatic -{ -/$cs xs -/$s xs -/$p xs -/$t xs -/$o xs -/2state? xs -/ps xs -}bd -/pushgstate -{ -save errordict/nocurrentpoint{pop 0 0}put -currentpoint -3 -1 roll restore -pushcolor -currentlinewidth -currentlinecap -currentlinejoin -currentdash exch aload length -np clippath pathbbox -$m currentmatrix aload pop -}bd -/popgstate -{ -$m astore setmatrix -2 index sub exch -3 index sub exch -rC -array astore exch setdash -setlinejoin -setlinecap -lw -popcolor -np :M -}bd -/bu -{ -pushgstate -gR -pushgstate -2state? -{ -gR -pushgstate -}if -pushstatic -pm restore -mT concat -}bd -/bn -{ -/pm save store -popstatic -popgstate -gS -popgstate -2state? -{ -gS -popgstate -}if -}bd -/cpat{pop 64 div setgray 8{pop}repeat}bd -%%EndFile -%%BeginFile: adobe_psp_basic_text -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/S/show ld -/A{ -0.0 exch ashow -}bd -/R{ -0.0 exch 32 exch widthshow -}bd -/W{ -0.0 3 1 roll widthshow -}bd -/J{ -0.0 32 4 2 roll 0.0 exch awidthshow -}bd -/V{ -0.0 4 1 roll 0.0 exch awidthshow -}bd -/fcflg true def -/fc{ -fcflg{ -vmstatus exch sub 50000 lt{ -(%%[ Warning: Running out of memory ]%%\r)print flush/fcflg false store -}if pop -}if -}bd -/$f[1 0 0 -1 0 0]def -/:ff{$f :mf}bd -/MacEncoding StandardEncoding 256 array copy def -MacEncoding 39/quotesingle put -MacEncoding 96/grave put -/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis/Udieresis/aacute -/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute/egrave -/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde/oacute -/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex/udieresis -/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/notequal/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdiff/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta/guillemotleft -/guillemotright/ellipsis/space/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide/lozenge -/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright/fi/fl -/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex/Idieresis/Igrave -/Oacute/Ocircumflex/apple/Ograve/Uacute/Ucircumflex/Ugrave/dotlessi/circumflex/tilde -/macron/breve/dotaccent/ring/cedilla/hungarumlaut/ogonek/caron -MacEncoding 128 128 getinterval astore pop -level2 startnoload -/copyfontdict -{ -findfont dup length dict -begin -{ -1 index/FID ne{def}{pop pop}ifelse -}forall -}bd -level2 endnoload level2 not startnoload -/copyfontdict -{ -findfont dup length dict -copy -begin -}bd -level2 not endnoload -md/fontname known not{ -/fontname/customfont def -}if -/Encoding Z -/:mre -{ -copyfontdict -/Encoding MacEncoding def -fontname currentdict -end -definefont :ff def -}bd -/:bsr -{ -copyfontdict -/Encoding Encoding 256 array copy def -Encoding dup -}bd -/pd{put dup}bd -/:esr -{ -pop pop -fontname currentdict -end -definefont :ff def -}bd -/scf -{ -scalefont def -}bd -/scf-non -{ -$m scale :mf setfont -}bd -/ps Z -/fz{/ps xs}bd -/sf/setfont ld -/cF/currentfont ld -/mbf -{ -/makeblendedfont where -{ -pop -makeblendedfont -/ABlend exch definefont -}{ -pop -}ifelse -def -}def -%%EndFile -/currentpacking where {pop sc_oldpacking setpacking}if end -%%EndProlog -%%BeginSetup -md begin -/mT[1 0 0 -1 14 780]def -/sD 16 dict def -%%IncludeFont: Helvetica -%%IncludeFont: Helvetica-Oblique -%%IncludeFont: Palatino-Italic -%%IncludeFont: Palatino-Roman -/f0_1/Helvetica -:mre -/f0_12 f0_1 12 scf -/f0_9 f0_1 9 scf -/f1_1/Helvetica-Oblique -:mre -/f1_12 f1_1 12 scf -/f2_1/Palatino-Italic -:mre -/f2_12 f2_1 12 scf -/f3_1/Palatino-Roman -:mre -/f3_12 f3_1 12 scf -/Courier findfont[10 0 0 -10 0 0]:mf setfont -%PostScript Hack by Mike Brors 12/7/90 -/DisableNextSetRGBColor - { - userdict begin - /setrgbcolor - { - pop - pop - pop - userdict begin - /setrgbcolor systemdict /setrgbcolor get def - end - } def - end -} bind def -/bcarray where { - pop - bcarray 2 { - /da 4 ps div def - df setfont gsave cs wi - 1 index 0 ne{exch da add exch}if grestore setcharwidth - cs 0 0 smc da 0 smc da da smc 0 da smc c - gray - { gl} - {1 setgray}ifelse - da 2. div dup moveto show - }bind put -} if -% -% Used to snap to device pixels, 1/4th of the pixel in. -/stp { % x y pl x y % Snap To Pixel, pixel (auto stroke adjust) - transform - 0.25 sub round 0.25 add exch - 0.25 sub round 0.25 add exch - itransform -} bind def -/snapmoveto { % x y m - % moveto, auto stroke adjust - stp moveto -} bind def -/snaplineto { % x y l - % lineto, auto stroke adjust - stp lineto -} bind def -%%EndSetup -%%Page: 1 1 -%%BeginPageSetup -initializepage -%%EndPageSetup -gS 0 0 584 768 rC -17 19 552 730 rC -.5 G -50 25.016 -.016 .016 91.016 25 .016 50 25 @a --.016 -.016 91.016 133.016 .016 .016 91 25 @b --.016 -.016 263.016 241.016 .016 .016 263 133 @b -47 241.016 -.016 .016 263.016 241 .016 47 241 @a -1 G -47 21 1 226 rF -0 G -.016 lw -47.5 21.5 0 225 rS -47 133.016 -.016 .016 263.016 133 .016 47 133 @a -47 79.016 -.016 .016 56.016 79 .016 47 79 @a -47 25.016 -.016 .016 56.016 25 .016 47 25 @a -47 187.016 -.016 .016 56.016 187 .016 47 187 @a -47 241.016 -.016 .016 56.016 241 .016 47 241 @a --.016 -.016 47.016 133.016 .016 .016 47 124 @b --.016 -.016 91.016 133.016 .016 .016 91 124 @b --.016 -.016 134.016 133.016 .016 .016 134 124 @b --.016 -.016 177.016 133.016 .016 .016 177 124 @b --.016 -.016 220.016 133.016 .016 .016 220 124 @b --.016 -.016 263.016 133.016 .016 .016 263 124 @b -263 242 :M -gsave -2.0 setmiterlimit --19983 -19979 -1 1 -19981 -19979 1 -19983 -19980 @a -1 lw --19982 -19979 :M -newpath -47 134 snapmoveto -91 26 snaplineto -263 242 snaplineto -stroke --19983 -9980 -10000 10000 -9982 -19979 10000 -19983 -19980 @a -10000 lw --19982 -19979 :M -grestore -35 22 13 10 rC -gR -gS 30 0 23 32 rC -37 29 :M -f0_9 sf --.259(+2)A -gR -gS 35 76 13 10 rC -gR -gS 30 40 23 46 rC -37 83 :M -f0_9 sf --.259(+1)A -gR -gS 35 130 13 10 rC -gR -gS 30 94 23 46 rC -37 137 :M -f0_9 sf --.259(+0)A -gR -gS 35 184 13 10 rC -gR -gS 30 148 23 46 rC -37 191 :M -f0_9 sf -S -gR -gS 35 238 13 10 rC -gR -gS 30 202 23 46 rC -37 245 :M -f0_9 sf -S -gR -gS 138 152 27 13 rC -gR -gS 133 116 37 49 rC -138 162 :M -f1_12 sf --.106(t )A -f0_12 sf --.222(\(s\))A -gR -gS 19 101 14 45 rC -gS -26.5 123 :T -270 rotate --26.5 -123 :T -4 126 :M -f2_12 sf --.163(v )A -f3_12 sf --.144<28>A -f0_12 sf --.281(m/s\))A -gR -gR -gS 84 134 14 10 rC -gR -gS 79 98 24 46 rC -88 141 :M -f0_9 sf -(1)S -gR -gS 129 134 14 10 rC -gR -gS 124 98 24 46 rC -133 141 :M -f0_9 sf -(2)S -gR -gS 174 134 14 10 rC -gR -gS 169 98 24 46 rC -178 141 :M -f0_9 sf -(3)S -gR -gS 215 134 13 10 rC -gR -gS 210 98 23 46 rC -219 141 :M -f0_9 sf -(4)S -gR -gS 255 134 14 10 rC -gR -gS 250 98 24 46 rC -259 141 :M -f0_9 sf -(5)S -gR -endp -%%Trailer -end -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77ave.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77ave.gif deleted file mode 100755 index 216d4f8c7..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77ave.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77ave.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77ave.pdf deleted file mode 100644 index d14750b6e..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77ave.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77avf.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77avf.eps deleted file mode 100755 index 3cd1cdb4b..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77avf.eps +++ /dev/null @@ -1,769 +0,0 @@ -%!PS-Adobe-3.0 EPSF-3.0 -%%BoundingBox: 17 534 285 762 -%%Title: (pssc7cq2.13f.cwk \(DR\)) -%%Creator: (ClarisWorks 3.0: LaserWriter 8 8.3.3) -%%CreationDate: (1:49 PM September 23, 1996) -%%For: (Alberding) -%%Pages: 1 -%%DocumentFonts: Helvetica Helvetica-Oblique Palatino-Italic Palatino-Roman -%%DocumentNeededFonts: Helvetica Helvetica-Oblique Palatino-Italic Palatino-Roman -%%DocumentSuppliedFonts: -%%DocumentData: Clean7Bit -%%PageOrder: Ascend -%%Orientation: Portrait -%%DocumentMedia: Default 612 792 0 () () -%ADO_ImageableArea: 14 12 598 780 -%%EndComments -userdict begin/dscInfo 5 dict dup begin -/Title(pssc7cq2.13f.cwk \(DR\))def -/Creator(ClarisWorks 3.0: LaserWriter 8 8.3.3)def -/CreationDate(1:49 PM September 23, 1996)def -/For(Alberding)def -/Pages 1 def -end def end -/md 172 dict def md begin/currentpacking where {pop /sc_oldpacking currentpacking def true setpacking}if -%%BeginFile: adobe_psp_basic -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/bd{bind def}bind def -/xdf{exch def}bd -/xs{exch store}bd -/ld{load def}bd -/Z{0 def}bd -/T/true -/F/false -/:L/lineto -/lw/setlinewidth -/:M/moveto -/rl/rlineto -/rm/rmoveto -/:C/curveto -/:T/translate -/:K/closepath -/:mf/makefont -/gS/gsave -/gR/grestore -/np/newpath -14{ld}repeat -/$m matrix def -/av 83 def -/por true def -/normland false def -/psb-nosave{}bd -/pse-nosave{}bd -/us Z -/psb{/us save store}bd -/pse{us restore}bd -/level2 -/languagelevel where -{ -pop languagelevel 2 ge -}{ -false -}ifelse -def -/featurecleanup -{ -stopped -cleartomark -countdictstack exch sub dup 0 gt -{ -{end}repeat -}{ -pop -}ifelse -}bd -/noload Z -/startnoload -{ -{/noload save store}if -}bd -/endnoload -{ -{noload restore}if -}bd -level2 startnoload -/setjob -{ -statusdict/jobname 3 -1 roll put -}bd -/setcopies -{ -userdict/#copies 3 -1 roll put -}bd -level2 endnoload level2 not startnoload -/setjob -{ -1 dict begin/JobName xdf currentdict end setuserparams -}bd -/setcopies -{ -1 dict begin/NumCopies xdf currentdict end setpagedevice -}bd -level2 not endnoload -/pm Z -/mT Z -/sD Z -/realshowpage Z -/initializepage -{ -/pm save store mT concat -}bd -/endp -{ -pm restore showpage -}def -/$c/DeviceRGB def -/rectclip where -{ -pop/rC/rectclip ld -}{ -/rC -{ -np 4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -clip np -}bd -}ifelse -/rectfill where -{ -pop/rF/rectfill ld -}{ -/rF -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -fill -gR -}bd -}ifelse -/rectstroke where -{ -pop/rS/rectstroke ld -}{ -/rS -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -stroke -gR -}bd -}ifelse -%%EndFile -%%BeginFile: adobe_psp_colorspace_level1 -%%Copyright: Copyright 1991-1993 Adobe Systems Incorporated. All Rights Reserved. -/G/setgray ld -/:F1/setgray ld -/:F/setrgbcolor ld -/:F4/setcmykcolor where -{ -pop -/setcmykcolor ld -}{ -{ -3 -{ -dup -3 -1 roll add -dup 1 gt{pop 1}if -1 exch sub -4 1 roll -}repeat -pop -setrgbcolor -}bd -}ifelse -/:Fx -{ -counttomark -{0{G}0{:F}{:F4}} -exch get -exec -pop -}bd -/:rg{/DeviceRGB :ss}bd -/:sc{$cs :ss}bd -/:dc{/$cs xdf}bd -/:sgl{}def -/:dr{}bd -/:fCRD{pop}bd -/:ckcs{}bd -/:ss{/$c xdf}bd -/$cs Z -%%EndFile -%%BeginFile: adobe_psp_uniform_graphics -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/@a -{ -np :M 0 rl :L 0 exch rl 0 rl :L fill -}bd -/@b -{ -np :M 0 rl 0 exch rl :L 0 rl 0 exch rl fill -}bd -/arct where -{ -pop -}{ -/arct -{ -arcto pop pop pop pop -}bd -}ifelse -/x1 Z -/x2 Z -/y1 Z -/y2 Z -/rad Z -/@q -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -fill -}bd -/@s -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -:K -stroke -}bd -/@i -{ -np 0 360 arc fill -}bd -/@j -{ -gS -np -:T -scale -0 0 .5 0 360 arc -fill -gR -}bd -/@e -{ -np -0 360 arc -:K -stroke -}bd -/@f -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 0 360 arc -:K -$m setmatrix -stroke -}bd -/@k -{ -gS -np -:T -0 0 :M -0 0 5 2 roll -arc fill -gR -}bd -/@l -{ -gS -np -:T -0 0 :M -scale -0 0 .5 5 -2 roll arc -fill -gR -}bd -/@m -{ -np -arc -stroke -}bd -/@n -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 5 -2 roll arc -$m setmatrix -stroke -}bd -%%EndFile -%%BeginFile: adobe_psp_customps -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/$t Z -/$p Z -/$s Z -/$o 1. def -/2state? false def -/ps Z -level2 startnoload -/pushcolor/currentrgbcolor ld -/popcolor/setrgbcolor ld -/setcmykcolor where -{ -pop/currentcmykcolor where -{ -pop/pushcolor/currentcmykcolor ld -/popcolor/setcmykcolor ld -}if -}if -level2 endnoload level2 not startnoload -/pushcolor -{ -currentcolorspace $c eq -{ -currentcolor currentcolorspace true -}{ -currentcmykcolor false -}ifelse -}bd -/popcolor -{ -{ -setcolorspace setcolor -}{ -setcmykcolor -}ifelse -}bd -level2 not endnoload -/pushstatic -{ -ps -2state? -$o -$t -$p -$s -$cs -}bd -/popstatic -{ -/$cs xs -/$s xs -/$p xs -/$t xs -/$o xs -/2state? xs -/ps xs -}bd -/pushgstate -{ -save errordict/nocurrentpoint{pop 0 0}put -currentpoint -3 -1 roll restore -pushcolor -currentlinewidth -currentlinecap -currentlinejoin -currentdash exch aload length -np clippath pathbbox -$m currentmatrix aload pop -}bd -/popgstate -{ -$m astore setmatrix -2 index sub exch -3 index sub exch -rC -array astore exch setdash -setlinejoin -setlinecap -lw -popcolor -np :M -}bd -/bu -{ -pushgstate -gR -pushgstate -2state? -{ -gR -pushgstate -}if -pushstatic -pm restore -mT concat -}bd -/bn -{ -/pm save store -popstatic -popgstate -gS -popgstate -2state? -{ -gS -popgstate -}if -}bd -/cpat{pop 64 div setgray 8{pop}repeat}bd -%%EndFile -%%BeginFile: adobe_psp_basic_text -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/S/show ld -/A{ -0.0 exch ashow -}bd -/R{ -0.0 exch 32 exch widthshow -}bd -/W{ -0.0 3 1 roll widthshow -}bd -/J{ -0.0 32 4 2 roll 0.0 exch awidthshow -}bd -/V{ -0.0 4 1 roll 0.0 exch awidthshow -}bd -/fcflg true def -/fc{ -fcflg{ -vmstatus exch sub 50000 lt{ -(%%[ Warning: Running out of memory ]%%\r)print flush/fcflg false store -}if pop -}if -}bd -/$f[1 0 0 -1 0 0]def -/:ff{$f :mf}bd -/MacEncoding StandardEncoding 256 array copy def -MacEncoding 39/quotesingle put -MacEncoding 96/grave put -/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis/Udieresis/aacute -/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute/egrave -/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde/oacute -/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex/udieresis -/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/notequal/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdiff/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta/guillemotleft -/guillemotright/ellipsis/space/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide/lozenge -/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright/fi/fl -/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex/Idieresis/Igrave -/Oacute/Ocircumflex/apple/Ograve/Uacute/Ucircumflex/Ugrave/dotlessi/circumflex/tilde -/macron/breve/dotaccent/ring/cedilla/hungarumlaut/ogonek/caron -MacEncoding 128 128 getinterval astore pop -level2 startnoload -/copyfontdict -{ -findfont dup length dict -begin -{ -1 index/FID ne{def}{pop pop}ifelse -}forall -}bd -level2 endnoload level2 not startnoload -/copyfontdict -{ -findfont dup length dict -copy -begin -}bd -level2 not endnoload -md/fontname known not{ -/fontname/customfont def -}if -/Encoding Z -/:mre -{ -copyfontdict -/Encoding MacEncoding def -fontname currentdict -end -definefont :ff def -}bd -/:bsr -{ -copyfontdict -/Encoding Encoding 256 array copy def -Encoding dup -}bd -/pd{put dup}bd -/:esr -{ -pop pop -fontname currentdict -end -definefont :ff def -}bd -/scf -{ -scalefont def -}bd -/scf-non -{ -$m scale :mf setfont -}bd -/ps Z -/fz{/ps xs}bd -/sf/setfont ld -/cF/currentfont ld -/mbf -{ -/makeblendedfont where -{ -pop -makeblendedfont -/ABlend exch definefont -}{ -pop -}ifelse -def -}def -%%EndFile -/currentpacking where {pop sc_oldpacking setpacking}if end -%%EndProlog -%%BeginSetup -md begin -/mT[1 0 0 -1 14 780]def -/sD 16 dict def -%%IncludeFont: Helvetica -%%IncludeFont: Helvetica-Oblique -%%IncludeFont: Palatino-Italic -%%IncludeFont: Palatino-Roman -/f0_1/Helvetica -:mre -/f0_12 f0_1 12 scf -/f0_9 f0_1 9 scf -/f1_1/Helvetica-Oblique -:mre -/f1_12 f1_1 12 scf -/f2_1/Palatino-Italic -:mre -/f2_12 f2_1 12 scf -/f3_1/Palatino-Roman -:mre -/f3_12 f3_1 12 scf -/Courier findfont[10 0 0 -10 0 0]:mf setfont -%PostScript Hack by Mike Brors 12/7/90 -/DisableNextSetRGBColor - { - userdict begin - /setrgbcolor - { - pop - pop - pop - userdict begin - /setrgbcolor systemdict /setrgbcolor get def - end - } def - end -} bind def -/bcarray where { - pop - bcarray 2 { - /da 4 ps div def - df setfont gsave cs wi - 1 index 0 ne{exch da add exch}if grestore setcharwidth - cs 0 0 smc da 0 smc da da smc 0 da smc c - gray - { gl} - {1 setgray}ifelse - da 2. div dup moveto show - }bind put -} if -% -% Used to snap to device pixels, 1/4th of the pixel in. -/stp { % x y pl x y % Snap To Pixel, pixel (auto stroke adjust) - transform - 0.25 sub round 0.25 add exch - 0.25 sub round 0.25 add exch - itransform -} bind def -/snapmoveto { % x y m - % moveto, auto stroke adjust - stp moveto -} bind def -/snaplineto { % x y l - % lineto, auto stroke adjust - stp lineto -} bind def -%%EndSetup -%%Page: 1 1 -%%BeginPageSetup -initializepage -%%EndPageSetup -gS 0 0 584 768 rC -17 19 552 730 rC -.5 G -53 23.016 -.016 .016 94.016 23 .016 53 23 @a --.016 -.016 94.016 131.016 .016 .016 94 23 @b --.016 -.016 181.016 241.016 .016 .016 181 133 @b -50 239.016 -.016 .016 180.016 239 .016 50 239 @a -1 G -50 19 1 226 rF -0 G -.016 lw -50.5 19.5 0 225 rS -50 131.016 -.016 .016 266.016 131 .016 50 131 @a -50 77.016 -.016 .016 59.016 77 .016 50 77 @a -50 23.016 -.016 .016 59.016 23 .016 50 23 @a -50 185.016 -.016 .016 59.016 185 .016 50 185 @a -50 239.016 -.016 .016 59.016 239 .016 50 239 @a --.016 -.016 50.016 131.016 .016 .016 50 122 @b --.016 -.016 94.016 131.016 .016 .016 94 122 @b --.016 -.016 137.016 131.016 .016 .016 137 122 @b --.016 -.016 180.016 131.016 .016 .016 180 122 @b --.016 -.016 223.016 131.016 .016 .016 223 122 @b --.016 -.016 266.016 131.016 .016 .016 266 122 @b -181 239 :M -gsave -2.0 setmiterlimit --19980 -19981 -1 1 -19978 -19981 1 -19980 -19982 @a -1 lw --19979 -19981 :M -newpath -50 132 snapmoveto -94 24 snaplineto -181 239 snaplineto -stroke --19980 -9982 -10000 10000 -9979 -19981 10000 -19980 -19982 @a -10000 lw --19979 -19981 :M -grestore -38 20 13 10 rC -gR -gS 33 0 23 30 rC -40 27 :M -f0_9 sf --.259(+2)A -gR -gS 38 74 13 10 rC -gR -gS 33 38 23 46 rC -40 81 :M -f0_9 sf --.259(+1)A -gR -gS 38 128 13 10 rC -gR -gS 33 92 23 46 rC -40 135 :M -f0_9 sf --.259(+0)A -gR -gS 38 182 13 10 rC -gR -gS 33 146 23 46 rC -40 189 :M -f0_9 sf -S -gR -gS 38 236 13 10 rC -gR -gS 33 200 23 46 rC -40 243 :M -f0_9 sf -S -gR -gS 141 150 27 13 rC -gR -gS 136 114 37 49 rC -141 160 :M -f1_12 sf --.106(t )A -f0_12 sf --.222(\(s\))A -gR -gS 22 99 14 45 rC -gS -29.5 121 :T -270 rotate --29.5 -121 :T -7 124 :M -f2_12 sf --.163(v )A -f3_12 sf --.144<28>A -f0_12 sf --.281(m/s\))A -gR -gR -gS 87 132 14 10 rC -gR -gS 82 96 24 46 rC -91 139 :M -f0_9 sf -(1)S -gR -gS 132 132 14 10 rC -gR -gS 127 96 24 46 rC -136 139 :M -f0_9 sf -(2)S -gR -gS 177 132 14 10 rC -gR -gS 172 96 24 46 rC -181 139 :M -f0_9 sf -(3)S -gR -gS 218 132 13 10 rC -gR -gS 213 96 23 46 rC -222 139 :M -f0_9 sf -(4)S -gR -gS 258 132 14 10 rC -gR -gS 253 96 24 46 rC -262 139 :M -f0_9 sf -(5)S -gR -endp -%%Trailer -end -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77avf.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77avf.gif deleted file mode 100755 index f9386f31c..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77avf.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77avg.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77avg.eps deleted file mode 100755 index d374e54b1..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77avg.eps +++ /dev/null @@ -1,769 +0,0 @@ -%!PS-Adobe-3.0 EPSF-3.0 -%%BoundingBox: 15 521 283 761 -%%Title: (pssc7cq2.13g.cwk \(DR\)) -%%Creator: (ClarisWorks 3.0: LaserWriter 8 8.3.3) -%%CreationDate: (1:50 PM September 23, 1996) -%%For: (Alberding) -%%Pages: 1 -%%DocumentFonts: Helvetica Helvetica-Oblique Palatino-Italic Palatino-Roman -%%DocumentNeededFonts: Helvetica Helvetica-Oblique Palatino-Italic Palatino-Roman -%%DocumentSuppliedFonts: -%%DocumentData: Clean7Bit -%%PageOrder: Ascend -%%Orientation: Portrait -%%DocumentMedia: Default 612 792 0 () () -%ADO_ImageableArea: 14 12 598 780 -%%EndComments -userdict begin/dscInfo 5 dict dup begin -/Title(pssc7cq2.13g.cwk \(DR\))def -/Creator(ClarisWorks 3.0: LaserWriter 8 8.3.3)def -/CreationDate(1:50 PM September 23, 1996)def -/For(Alberding)def -/Pages 1 def -end def end -/md 172 dict def md begin/currentpacking where {pop /sc_oldpacking currentpacking def true setpacking}if -%%BeginFile: adobe_psp_basic -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/bd{bind def}bind def -/xdf{exch def}bd -/xs{exch store}bd -/ld{load def}bd -/Z{0 def}bd -/T/true -/F/false -/:L/lineto -/lw/setlinewidth -/:M/moveto -/rl/rlineto -/rm/rmoveto -/:C/curveto -/:T/translate -/:K/closepath -/:mf/makefont -/gS/gsave -/gR/grestore -/np/newpath -14{ld}repeat -/$m matrix def -/av 83 def -/por true def -/normland false def -/psb-nosave{}bd -/pse-nosave{}bd -/us Z -/psb{/us save store}bd -/pse{us restore}bd -/level2 -/languagelevel where -{ -pop languagelevel 2 ge -}{ -false -}ifelse -def -/featurecleanup -{ -stopped -cleartomark -countdictstack exch sub dup 0 gt -{ -{end}repeat -}{ -pop -}ifelse -}bd -/noload Z -/startnoload -{ -{/noload save store}if -}bd -/endnoload -{ -{noload restore}if -}bd -level2 startnoload -/setjob -{ -statusdict/jobname 3 -1 roll put -}bd -/setcopies -{ -userdict/#copies 3 -1 roll put -}bd -level2 endnoload level2 not startnoload -/setjob -{ -1 dict begin/JobName xdf currentdict end setuserparams -}bd -/setcopies -{ -1 dict begin/NumCopies xdf currentdict end setpagedevice -}bd -level2 not endnoload -/pm Z -/mT Z -/sD Z -/realshowpage Z -/initializepage -{ -/pm save store mT concat -}bd -/endp -{ -pm restore showpage -}def -/$c/DeviceRGB def -/rectclip where -{ -pop/rC/rectclip ld -}{ -/rC -{ -np 4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -clip np -}bd -}ifelse -/rectfill where -{ -pop/rF/rectfill ld -}{ -/rF -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -fill -gR -}bd -}ifelse -/rectstroke where -{ -pop/rS/rectstroke ld -}{ -/rS -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -stroke -gR -}bd -}ifelse -%%EndFile -%%BeginFile: adobe_psp_colorspace_level1 -%%Copyright: Copyright 1991-1993 Adobe Systems Incorporated. All Rights Reserved. -/G/setgray ld -/:F1/setgray ld -/:F/setrgbcolor ld -/:F4/setcmykcolor where -{ -pop -/setcmykcolor ld -}{ -{ -3 -{ -dup -3 -1 roll add -dup 1 gt{pop 1}if -1 exch sub -4 1 roll -}repeat -pop -setrgbcolor -}bd -}ifelse -/:Fx -{ -counttomark -{0{G}0{:F}{:F4}} -exch get -exec -pop -}bd -/:rg{/DeviceRGB :ss}bd -/:sc{$cs :ss}bd -/:dc{/$cs xdf}bd -/:sgl{}def -/:dr{}bd -/:fCRD{pop}bd -/:ckcs{}bd -/:ss{/$c xdf}bd -/$cs Z -%%EndFile -%%BeginFile: adobe_psp_uniform_graphics -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/@a -{ -np :M 0 rl :L 0 exch rl 0 rl :L fill -}bd -/@b -{ -np :M 0 rl 0 exch rl :L 0 rl 0 exch rl fill -}bd -/arct where -{ -pop -}{ -/arct -{ -arcto pop pop pop pop -}bd -}ifelse -/x1 Z -/x2 Z -/y1 Z -/y2 Z -/rad Z -/@q -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -fill -}bd -/@s -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -:K -stroke -}bd -/@i -{ -np 0 360 arc fill -}bd -/@j -{ -gS -np -:T -scale -0 0 .5 0 360 arc -fill -gR -}bd -/@e -{ -np -0 360 arc -:K -stroke -}bd -/@f -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 0 360 arc -:K -$m setmatrix -stroke -}bd -/@k -{ -gS -np -:T -0 0 :M -0 0 5 2 roll -arc fill -gR -}bd -/@l -{ -gS -np -:T -0 0 :M -scale -0 0 .5 5 -2 roll arc -fill -gR -}bd -/@m -{ -np -arc -stroke -}bd -/@n -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 5 -2 roll arc -$m setmatrix -stroke -}bd -%%EndFile -%%BeginFile: adobe_psp_customps -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/$t Z -/$p Z -/$s Z -/$o 1. def -/2state? false def -/ps Z -level2 startnoload -/pushcolor/currentrgbcolor ld -/popcolor/setrgbcolor ld -/setcmykcolor where -{ -pop/currentcmykcolor where -{ -pop/pushcolor/currentcmykcolor ld -/popcolor/setcmykcolor ld -}if -}if -level2 endnoload level2 not startnoload -/pushcolor -{ -currentcolorspace $c eq -{ -currentcolor currentcolorspace true -}{ -currentcmykcolor false -}ifelse -}bd -/popcolor -{ -{ -setcolorspace setcolor -}{ -setcmykcolor -}ifelse -}bd -level2 not endnoload -/pushstatic -{ -ps -2state? -$o -$t -$p -$s -$cs -}bd -/popstatic -{ -/$cs xs -/$s xs -/$p xs -/$t xs -/$o xs -/2state? xs -/ps xs -}bd -/pushgstate -{ -save errordict/nocurrentpoint{pop 0 0}put -currentpoint -3 -1 roll restore -pushcolor -currentlinewidth -currentlinecap -currentlinejoin -currentdash exch aload length -np clippath pathbbox -$m currentmatrix aload pop -}bd -/popgstate -{ -$m astore setmatrix -2 index sub exch -3 index sub exch -rC -array astore exch setdash -setlinejoin -setlinecap -lw -popcolor -np :M -}bd -/bu -{ -pushgstate -gR -pushgstate -2state? -{ -gR -pushgstate -}if -pushstatic -pm restore -mT concat -}bd -/bn -{ -/pm save store -popstatic -popgstate -gS -popgstate -2state? -{ -gS -popgstate -}if -}bd -/cpat{pop 64 div setgray 8{pop}repeat}bd -%%EndFile -%%BeginFile: adobe_psp_basic_text -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/S/show ld -/A{ -0.0 exch ashow -}bd -/R{ -0.0 exch 32 exch widthshow -}bd -/W{ -0.0 3 1 roll widthshow -}bd -/J{ -0.0 32 4 2 roll 0.0 exch awidthshow -}bd -/V{ -0.0 4 1 roll 0.0 exch awidthshow -}bd -/fcflg true def -/fc{ -fcflg{ -vmstatus exch sub 50000 lt{ -(%%[ Warning: Running out of memory ]%%\r)print flush/fcflg false store -}if pop -}if -}bd -/$f[1 0 0 -1 0 0]def -/:ff{$f :mf}bd -/MacEncoding StandardEncoding 256 array copy def -MacEncoding 39/quotesingle put -MacEncoding 96/grave put -/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis/Udieresis/aacute -/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute/egrave -/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde/oacute -/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex/udieresis -/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/notequal/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdiff/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta/guillemotleft -/guillemotright/ellipsis/space/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide/lozenge -/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright/fi/fl -/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex/Idieresis/Igrave -/Oacute/Ocircumflex/apple/Ograve/Uacute/Ucircumflex/Ugrave/dotlessi/circumflex/tilde -/macron/breve/dotaccent/ring/cedilla/hungarumlaut/ogonek/caron -MacEncoding 128 128 getinterval astore pop -level2 startnoload -/copyfontdict -{ -findfont dup length dict -begin -{ -1 index/FID ne{def}{pop pop}ifelse -}forall -}bd -level2 endnoload level2 not startnoload -/copyfontdict -{ -findfont dup length dict -copy -begin -}bd -level2 not endnoload -md/fontname known not{ -/fontname/customfont def -}if -/Encoding Z -/:mre -{ -copyfontdict -/Encoding MacEncoding def -fontname currentdict -end -definefont :ff def -}bd -/:bsr -{ -copyfontdict -/Encoding Encoding 256 array copy def -Encoding dup -}bd -/pd{put dup}bd -/:esr -{ -pop pop -fontname currentdict -end -definefont :ff def -}bd -/scf -{ -scalefont def -}bd -/scf-non -{ -$m scale :mf setfont -}bd -/ps Z -/fz{/ps xs}bd -/sf/setfont ld -/cF/currentfont ld -/mbf -{ -/makeblendedfont where -{ -pop -makeblendedfont -/ABlend exch definefont -}{ -pop -}ifelse -def -}def -%%EndFile -/currentpacking where {pop sc_oldpacking setpacking}if end -%%EndProlog -%%BeginSetup -md begin -/mT[1 0 0 -1 14 780]def -/sD 16 dict def -%%IncludeFont: Helvetica -%%IncludeFont: Helvetica-Oblique -%%IncludeFont: Palatino-Italic -%%IncludeFont: Palatino-Roman -/f0_1/Helvetica -:mre -/f0_12 f0_1 12 scf -/f0_9 f0_1 9 scf -/f1_1/Helvetica-Oblique -:mre -/f1_12 f1_1 12 scf -/f2_1/Palatino-Italic -:mre -/f2_12 f2_1 12 scf -/f3_1/Palatino-Roman -:mre -/f3_12 f3_1 12 scf -/Courier findfont[10 0 0 -10 0 0]:mf setfont -%PostScript Hack by Mike Brors 12/7/90 -/DisableNextSetRGBColor - { - userdict begin - /setrgbcolor - { - pop - pop - pop - userdict begin - /setrgbcolor systemdict /setrgbcolor get def - end - } def - end -} bind def -/bcarray where { - pop - bcarray 2 { - /da 4 ps div def - df setfont gsave cs wi - 1 index 0 ne{exch da add exch}if grestore setcharwidth - cs 0 0 smc da 0 smc da da smc 0 da smc c - gray - { gl} - {1 setgray}ifelse - da 2. div dup moveto show - }bind put -} if -% -% Used to snap to device pixels, 1/4th of the pixel in. -/stp { % x y pl x y % Snap To Pixel, pixel (auto stroke adjust) - transform - 0.25 sub round 0.25 add exch - 0.25 sub round 0.25 add exch - itransform -} bind def -/snapmoveto { % x y m - % moveto, auto stroke adjust - stp moveto -} bind def -/snaplineto { % x y l - % lineto, auto stroke adjust - stp lineto -} bind def -%%EndSetup -%%Page: 1 1 -%%BeginPageSetup -initializepage -%%EndPageSetup -gS 0 0 584 768 rC -17 19 552 730 rC -.5 G --.016 -.016 92.016 144.016 .016 .016 92 91 @b -48 90.016 -.016 .016 92.016 90 .016 48 90 @a --.016 -.016 179.016 254.016 .016 .016 179 146 @b -48 252.016 -.016 .016 178.016 252 .016 48 252 @a -1 G -48 32 1 226 rF -0 G -.016 lw -48.5 32.5 0 225 rS -48 144.016 -.016 .016 264.016 144 .016 48 144 @a -48 90.016 -.016 .016 57.016 90 .016 48 90 @a -48 36.016 -.016 .016 57.016 36 .016 48 36 @a -48 198.016 -.016 .016 57.016 198 .016 48 198 @a -48 252.016 -.016 .016 57.016 252 .016 48 252 @a --.016 -.016 48.016 144.016 .016 .016 48 135 @b --.016 -.016 92.016 144.016 .016 .016 92 135 @b --.016 -.016 135.016 144.016 .016 .016 135 135 @b --.016 -.016 178.016 144.016 .016 .016 178 135 @b --.016 -.016 221.016 144.016 .016 .016 221 135 @b --.016 -.016 264.016 144.016 .016 .016 264 135 @b -179 252 :M -gsave -2.0 setmiterlimit --19982 -19968 -1 1 -19980 -19968 1 -19982 -19969 @a -1 lw --19981 -19968 :M -newpath -48 145 snapmoveto -92 91 snaplineto -179 252 snaplineto -stroke --19982 -9969 -10000 10000 -9981 -19968 10000 -19982 -19969 @a -10000 lw --19981 -19968 :M -grestore -36 33 13 10 rC -gR -gS 31 0 23 43 rC -38 40 :M -f0_9 sf --.259(+2)A -gR -gS 36 87 13 10 rC -gR -gS 31 51 23 46 rC -38 94 :M -f0_9 sf --.259(+1)A -gR -gS 36 141 13 10 rC -gR -gS 31 105 23 46 rC -38 148 :M -f0_9 sf --.259(+0)A -gR -gS 36 195 13 10 rC -gR -gS 31 159 23 46 rC -38 202 :M -f0_9 sf -S -gR -gS 36 249 13 10 rC -gR -gS 31 213 23 46 rC -38 256 :M -f0_9 sf -S -gR -gS 139 163 27 13 rC -gR -gS 134 127 37 49 rC -139 173 :M -f1_12 sf --.106(t )A -f0_12 sf --.222(\(s\))A -gR -gS 20 112 14 45 rC -gS -27.5 134 :T -270 rotate --27.5 -134 :T -5 137 :M -f2_12 sf --.163(v )A -f3_12 sf --.144<28>A -f0_12 sf --.281(m/s\))A -gR -gR -gS 85 145 14 10 rC -gR -gS 80 109 24 46 rC -89 152 :M -f0_9 sf -(1)S -gR -gS 130 145 14 10 rC -gR -gS 125 109 24 46 rC -134 152 :M -f0_9 sf -(2)S -gR -gS 175 145 14 10 rC -gR -gS 170 109 24 46 rC -179 152 :M -f0_9 sf -(3)S -gR -gS 216 145 13 10 rC -gR -gS 211 109 23 46 rC -220 152 :M -f0_9 sf -(4)S -gR -gS 256 145 14 10 rC -gR -gS 251 109 24 46 rC -260 152 :M -f0_9 sf -(5)S -gR -endp -%%Trailer -end -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77avg.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77avg.gif deleted file mode 100755 index 8d33f5c59..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob77avg.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob80a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob80a.eps deleted file mode 100755 index 5c40221b7..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob80a.eps +++ /dev/null @@ -1,1212 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: pssc7cq5.7.create -%%Creator: Create -%%CreationDate: Tue Oct 22 12:00:51 1996 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: -1 269 563 596 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(b-p]!Zt7Y-72sXu+@m-$q1q!W8AmLg4Se:W`)C&n.9Aj/q9haVR0fep!@j>te -% Xd/;PbAbFo$F*n0i\jK.8V/f#];oTA/9%;[%#'mSP'n%Va6b,AamOX(h(=6IimNH>OLj_KG_ -% 5l]!Ze<8cUUU=r'`$O?ikI^ppP%Q`BB@:,rS(4ErQrKG6COmo6B8fk6YKR@f36!>u%H#oGJ\ -% CaT3UR6_nsB0F%4$oO!k"VkaY;$I;EQiVdMFi`MG:37%&!#tM969n]Y,d>c63@K\O)/Rs1), -% XfZ1/e3J>i\?l7WD<4#apo#"UPgG-6%?P&P(Df`SHj7DWM=.fPmtC2VVB/30tD&RBR8/)?K? -% [aa!l&.G-';*Hr8Jp>Hg\J8#;Y@@'Uk=-u4(Q/WkcPmlU1-C&h;#m(dY0SGM,bnWK[6P_&9O -% h1([6]t"JBrICr3f+W;K)d.5$G[&Oa:C:9f7GQ2>_`=\2NZPQ@-@=fAsf]_H!^SmFpW[J"9R -% MsJM\drTS!eJ.%hPo\8_^&*eKbE.OV+'iYX6[i^kF8A.jM/+nTGK=[W`,Q_A(9MWCar2G)Ye -% !(<:CPgSH/AH:8,fk%1a^=R+f"g"GqJ)J$YkF@f"E+^I88B6W,CCDp''#TYO"5fC%Aj2^lBd-6]^[* -% cK.LqDY2U8`J$bf$^kau6g>IT3b`Mt3!i2*sZ,s":#E/Uo+<<.sTG'^9MZ?R>+IN5fE*)i,1HI/gDuL5'/I%NN`EBX-VF\8$Q].!L^>=t@B^@QE,o5/Q^#W@]S#"1pE4 -% k\4nP-6*^+;@%^9CGMJnH97RA5jd)HGk;f+DC-u.!a+a@IXaU`qN"$cnqX=`jC&JGI0DMcfd -% ,e&k-Go!7O9EE4W6@c:n_$1$?%1n.OF3anJ+6KE"@00RgXE,^_eqc%/#_VJS?&`[fb;P:A"k -% $9`5R5,`COGZ&ZOQK>V6b+qO(?P2'?Y^m#p`a\";$Xtp9YWhmX6a9k4qpNk4L4OWK.$(b#K6 -% e!.tp$0*(Rd>5eG3JP<<+%3armC]:dp^emdNJe=E7&1FO@To;#h\.0[4!06AE!tY('T_H6G3 -% =W9OBVA(+Xn(M8"EgCA,W)2;WYRhQ.;N_CqH!hmZN("ki;tbCe6Due_Z_a.=!/2%=fL59n&Tf%Xi`RD`Or5Z="uUY_(2#S@0A[17'I_3V!cZ.95&?39 -% jOOe!\@b>ZO`5I`KKad6%>4?DO+A8r'>XjU%72e3Z;TQ[@Nbh*EY4"3Zs=Mg=,@6J`X2a&!Z -% Hb__a:d$88g';WT5J+;lW]Gda3MVs7FiGV`-[_gT;9[Si0r7bQVP@26M.-K[DtFc()!NSROBeN#[9]i0BJJaM;&WHQW2(%s@*B'jn/+8JTJVf;!!=&ldUp4q85PR`*2gs--;dA@J4PF2!$ -% QnB<6uA4.Z64KALZGshWb&-+B -% a$$=,(=[5@s0KFJ"!!UWK%_+mZU^$IU_3(B9Brh?WN9@Jh"BUH[c:@;VQ -% QX:>#p;>rH(Fi?'#^f=B`>aPO6l5dWHJOKR&DibTqW4FY?T8V/nF;6oHfC2L'u.uCY>gW((F -% ;kd]&n7CMkph_o?GpI29rLQESTXr#9jml"u:5n3Fpj&;U#1fEIUcCXm/eOc;E_%GKkEIU%O*[dTW@S7X#7f9FZo1qH:($qS-8dL$J"V([hi9PaGg>h8G3$N]P)MH[Q(- -% D7?iN+s":YL1`(">!ePBCC]m]X0$SXm*c<5L6%T*>\4$]+nd6*P'ha;DhUWlNq1@3lY-J[[$ -% H#lTK0tcX..a[Y%9;D4fq:_bN%X;gn"4#D*QM2U%t.r$k?,PMP*H1p3nXjX89!cuQZMWJ0a, -% ;icmpk8JQMoapV:Tj-)l4ufDQ54)U!3Y4H!GaTjqk\_p8gD;el`gMc3(=2g3;[.N`UM]%S1V -% >Op;#.:&4VrKISCfP,GJ?"ab`32rh6RlBX\%sKKu:MZ)%aB7").=n>C;2C?ZL:Gi:L.+\_pP -% TG1ER?ofsK^le:L4bJU`+R>X5]1+<%?cOOfkX8T[q%n&P\nDd>`rL'KG]"Z#Jk5SHu"FABSh -% s87&4TiFciun8eI=:mS-Jn&Z#J8gLS88Eu^V]H9YI8-qJ8+#](/5J[_Ojr'Yr]A/RYLhp&mL,e@I</-9t -% buK'J,Bd@g_c#_.#rDKr+8JoQO9ecC9QH-:njKZJjiP[[1FL`P\q;3uob-\W9N!1D16$4mKF -% (')SqJ`fOVrF^dT#(YrIF/UK&@0h!!#E%EZ0Bko!$;_Xt&--sZ!0(Q=Q0=)0KPH+&5a2le'i -% 5;C!sN-V&(eW_$8>Y[F^!REJE`:6Y2BGcV,ip^#ma?GdJs8lTE)sPMT;)^P[tX0ePaXo"]Gt -% ldo_U%TFTaE>,LsmSk)^hjc)qFNpnlc#ET6.&.$V_!5urXlkjQ[3+<*qO3ED8&:ar#:dHK@" -% &WG[eqf=a85%]>A_flmY-8$3\P_p.!1fOp],&?0o -% A`.NcG4lDUKq#bQjL@bR@N8YL`LW>15gNlc$7@AS_DWLp]!Th)(eb%mlSVbEPZ:@X6'2Mqtd5T3ipC:YdBjWo%KYUf;2WZZ"kbi((.AGC9;#:Z4u& -% [EZ1tM3i[,=Z@JmW%U4`D(^PCWZeLqM>2#o8>8i.7Z]mG5bn[>EWM--hGsmRhn>`/<$Ajh4G -% t]`P6hmumBW\.5[0&Lc"ZrV!ql$aN[1E)@:]%B6b'RYLUN^sibUTX8#68QJQTk;T5\l^;E.) -% e#Um6,0>DfoLVmhg]Y%5,DIX7tj$F/.3IY3QT[47flqQ7dU#fO!W45-of)n&$_JN@#LmJ4+jh"Ysj#I[Yq_EGb\ic],b+TNs -% iRM._3[0KXAq)1mYPkX-Q]"]T#"TkSgc^pk?VdX]AZ2G,r/4)?ehgWK-k\O;km$C*hmjY]Tc -% AB8a*198YC,^+O2ucl99oMMUk.ZLN7Qo:!F^ciO(AX3V0])(LE235@CEYU=4j\\"7;gpaKQ^ -% k!uC.ji*O>Hrp@ZrUfFSNr'O-!,17.u%HKd/at[5o!FO(&u[ux -% EndEmbeddedGraphics N 3956 f74 E ea S 73660 R d43986f -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave --1 269 564 327 rectclip -0 nxsetgray -0 0 0.382954 1 10 SU -gsave -[1 0 0 1 7 278] concat -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 72 89] concat -0 0 2 1 10 SU -11 28 T -N -2 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -29 28 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -47 28 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -65 28 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -83 28 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -101 28 T -N -2 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -119 28 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -137 28 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -155 28 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -173 28 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -191 28 T -N -2 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -209 28 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -227 28 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -245 28 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -263 28 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -281 28 T -N -2 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -299 28 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -317 28 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -335 28 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -353 28 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -371 28 T -N -2 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -389 28 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -407 28 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -425 28 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -443 28 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -461 28 T -N -2 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -11 28 T -N -0.15 L -0 nxsetgray -450 0 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -11 118 T -N -2 L -0 nxsetgray -450 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -11 208 T -N -0.15 L -0 nxsetgray -450 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -11 190 T -N -0.15 L -0 nxsetgray -450 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -11 172 T -N -0.15 L -0 nxsetgray -450 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -11 154 T -N -0.15 L -0 nxsetgray -450 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -11 136 T -N -0.15 L -0 nxsetgray -450 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -11 100 T -N -0.15 L -0 nxsetgray -450 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -11 82 T -N -0.15 L -0 nxsetgray -450 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -11 64 T -N -0.15 L -0 nxsetgray -450 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -11 46 T -N -0.15 L -0 nxsetgray -450 0 0 0 line -0 0 T -grestore -0 0 3 1 10 SU -11 118 T -N -3 L -0 nxsetgray -18 90 0 0 line -0 0 T -grestore -0 0 3 1 10 SU -gsave -/Helvetica-Bold findfont 12 scalefont [1 0 0 -1 0 0] makefont -183 -exch -defineuserobject -183 execuserobject setfont -16 120 T -11 flipV -4.5 5.5 T --3.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(J) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -183 execuserobject setfont -23 208 T -11 flipV -5.5 5.5 T --4.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(K) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -183 execuserobject setfont -210 120 T -11 flipV -5 5.5 T --4 4 T -N 0 0 m -0 nxsetgray -0 0 m -(L) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -183 execuserobject setfont -393 120 T -11 flipV -5.5 5.5 T --4.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(N) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -13 10 T -N -0.15 L -0 nxsetgray -450 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -29 10 T -N -0.15 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -47 10 T -N -0.15 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -65 10 T -N -0.15 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -83 10 T -N -0.15 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -101 10 T -N -2 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -119 10 T -N -0.15 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -137 10 T -N -0.15 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -155 10 T -N -0.15 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -173 10 T -N -0.15 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -191 10 T -N -2 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -209 10 T -N -0.15 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -227 10 T -N -0.15 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -245 10 T -N -0.15 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -263 10 T -N -0.15 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -281 10 T -N -2 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -299 10 T -N -0.15 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -317 10 T -N -0.15 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -335 10 T -N -0.15 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -353 10 T -N -0.15 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -371 10 T -N -2 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -389 10 T -N -0.15 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -407 10 T -N -0.15 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -425 10 T -N -0.15 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -443 10 T -N -0.15 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -461 10 T -N -2 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -11 10 T -N -2 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 3 1 10 SU -28 22 T -N -3 L -0 nxsetgray -372 -185 0 185 line -0 0 T -grestore -0 0 3 1 10 SU -399 23 T -N -3 L -0 nxsetgray -0 96 0 0 line -0 0 T -grestore -0 0 3 1 10 SU -gsave -183 execuserobject setfont -402 12 T -11 flipV -6 5.5 T --5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(M) show -0 0 T -grestore -grestore -grestore -grestore -0 0 2 1 10 SU -gsave -183 execuserobject setfont -82 81 T -11 flipV -4.5 5.5 T --3.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(0) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -183 execuserobject setfont -167 81 T -11 flipV -8 5.5 T --7 4 T -N 0 0 m -0 nxsetgray -0 0 m -(50) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -183 execuserobject setfont -255 81 T -11 flipV -11.5 5.5 T --10.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(100) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -183 execuserobject setfont -342 81 T -11 flipV -11.5 5.5 T --10.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(150) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -183 execuserobject setfont -431 80 T -11 flipV -11.5 5.5 T --10.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(200) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -183 execuserobject setfont -523 80 T -11 flipV -11.5 5.5 T --10.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(250) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -183 execuserobject setfont -44 111 T -11 flipV -16.5 5.5 T --15.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(-1000) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -183 execuserobject setfont -49 291 T -11 flipV -14.5 5.5 T --13.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(1000) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -183 execuserobject setfont -63 202 T -11 flipV -4.5 5.5 T --3.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(0) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -183 execuserobject setfont -29.07019 139 T -153 flipV -10.5 76.5 T --90 R -1.652614 1.934188 S --39.5 3 T -N 0 0 m -0 nxsetgray -0 0 m -(Velocity \(m/s\)) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -183 execuserobject setfont -235.416931 56.940704 T -21 flipV -60 10.5 T -2.553027 1.611919 S --23.5 3 T -N 0 0 m -0 nxsetgray -0 0 m -(Time \(s\)) show -0 0 T -grestore -grestore -0 0 2 1 10 SU -49 82 T -N -2 L -0 nxsetgray -33 18 0 0 line -28.611303 33 18 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -gsave -/Helvetica findfont 12 scalefont [1 0 0 -1 0 0] makefont -12 -exch -defineuserobject -12 execuserobject setfont -8 19 T -67 flipV -24.5 33.5 T --58 R --35 3 T -N 0 0 m -0 nxsetgray -0 0 m -(Time of firing) show -0 0 T -grestore -grestore -0 0 2 1 10 SU -101 82 T -N -2 L -0 nxsetgray -36 -18 0 18 line -153.434174 0 18 arrow -0 0 T -grestore -0 0 2 1 10 SU -gsave -12 execuserobject setfont -133 8 T -80 flipV -27.5 40 T -58 R --43 4 T -N 0 0 m -0 nxsetgray -0 0 m -(Time of Burnout) show -0 0 T -grestore -grestore -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Helvetica-Bold -%%+ Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob80a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob80a.gif deleted file mode 100755 index db83efd8c..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob80a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob80a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob80a.pdf deleted file mode 100644 index 48088f1ad..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype05/prob80a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype06/prob07.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype06/prob07.eps deleted file mode 100755 index ab3eb5021..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype06/prob07.eps +++ /dev/null @@ -1,2954 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: hecht4.20.create.2.create -%%Creator: Create -%%CreationDate: Sun Jan 5 17:58:14 1997 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 173 382 400 546 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(ok%qW^+Q]'o&M7a,X-^r^PhK;V3#olsr]Yjn-0%/TYeaGBAX -% ]aPkP_)F_mq9_qoQ)P>QrL)[%UdFoQqd*UJ`T8heI#]V9.>: -% 1d1E_.QoA.hEK!G&T<"IcEgQ0 -% ]7VlSYH.oG[cO\[eM$Y1=B$p.KNB85`S)2$%N">T&j^K6h^ -% 2>P"@.3A0BAi2OU8+4k\M$ToE*AQ)_))V&=@0J^GG[+Ai=^G*G9_:go0*>a`R%R9c8-Y*lA5 -% "hdK?G%GIpkBGlf-g%"*TI5M@m/75tTR[[?++O)0=s/@t2@A]DlpV7)V,:F;"bp8qaIsOo1< -% ZX7,jKZL&MpAa!/lT]<'V*55o^//'J7[b[:(3N;c"\DJ4V%Ra9Y4o^]^;3!3GJL.]bi=Guq+ -% :iej,+L\Y&=cU[0;J6ZT8jn"Lt!$F)B2?V;t0T04b(a05_jY^%\KoMC(;5I]E)?^To6NL%YA -% bH*,Ua>YqrbPkjfi4M2jBk;eikln`0Z/R+6k=]JP$%TKL]CqD+ZBCd5gV55PlMsP0j#;9J-- -% ;BI.XMF-N,b$5i5bTcpl@8F'>>tITFsbB>1nY>$IOW.:Rdu<[hadD$o'=T<;;Prg]^lXag*, -% 2rK9$NhkXPC[DW^O&n*PjH]WcUC];_'*.3edtLleWrK`@o8K@q/(-PgXs76R^`EdUJU#LdmF -% ($d]8jP)?,5oKZ^U@n=1mQ.WGd7ogu.rXgAEXL1]6&]G@TB5n,@OF!/?S[`XBTX&BMKf%PW3cK-6'rLHQ]sY'q6nMd8TW] -% $ZcQICU!LqLTtR'CIE*8+^*qZ"CVckYH$mS"V9G(qf%Zm4^QUU%/iK]GinNHI\MCMf9d`D.& -% %u!`2nBG'"Ol:!ne?*8muG"U\[,WE<+T%;M'VRL(k;=j`[=[B;BACuoA8_s,a\P#E>XZ/I_' -% EYFtiV(Og6$W#h<:V?O'0*L8"?M`(\^Bt.;In>M\#""E'&nS:=]dI6TC07>U[ODecbYp1qJI -% u@a0oifC&h:D!+Rl>M%IUSs=Z(,6@[7dq^#L-J)$!Vs1D*^UHbD\SoKZ1e8:Z(XWW[:p%.Qkl5V9q-b,WT\ld5,$-fX%'4j -% $ba&L]CaEn:G$)Q)H]6F,*.Kd]]p@H'>uk>cN>rn!a'6<5plT\B4s/4iC6AW[Z57(M-VZ1Zh -% D97fiU.UJf0=r^9pH -% 'qbUC7d">X\P4')itX@1b2UtAbWI:ibfHQ$fEA#&8C^iYAhaE?JPY?Y5_/_F-fPMpp/;&mEI -% +r.Am1aR=N')c)Gl)bLQE01UBi\ -% 9tj_0);hKP>76WSY/%noaAdGq<5S=5j9:il=_1466FEfmH:bF-9,9\i'd[cqj)hH/ng1d*`f -% 4IDp5u0jJ2tpDJ;nOHDU//R'tLg<;krYi4*5jPD(_Kqj[8;I`tr)-7^)'Sc(R"j9t2&(/]ra1RVU[?K>%'Q>,qYUiZeFe-[/aKNp7LcXaN-Nj\EJN]I"cHZ"F&6o/m"P!;Y9!c9ZO3jm4>gXjRk(Lff!Wn8Xfhh -% #AaPHLo\$>Gk^,A2JrXFW:B\&:7Oh5B,'d>hqJFI*+J#,BlEriNI^(5K(FB$#ohsZ;UeM6b#GHM$Hhu@H)h@EB+8V'8 -% IcRId3ng"JBE5P!C1!ZBU\CQ,;Qe20V(KS*X?jMJex -% EndEmbeddedGraphics N 2344 928 E 11 S 45f69 R 3057c31b -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -173 382 227 164 rectclip -0 0 2 1 10 SU -238 406 T -N -gsave N -0 0 m 0 84 l -clip -N -0 setlinewidth -0 nxsetgray -0.020402 nxsetgray -0.040819 nxsetgray -0.06122 nxsetgray -0.081637 nxsetgray -0.102039 nxsetgray -0.122456 nxsetgray -0.142857 nxsetgray -0.163259 nxsetgray -0.183676 nxsetgray -0.204077 nxsetgray -0.224494 nxsetgray -0.244896 nxsetgray -0.265313 nxsetgray -0.285714 nxsetgray -0.306116 nxsetgray -0.326533 nxsetgray -0.346934 nxsetgray -0.367351 nxsetgray -0.387753 nxsetgray -0.40817 nxsetgray -0.428571 nxsetgray -0.448973 nxsetgray -0.46939 nxsetgray -0.489792 nxsetgray -0.510208 nxsetgray -0.53061 nxsetgray -0.551027 nxsetgray -0.571429 nxsetgray -0.59183 nxsetgray -0.612247 nxsetgray -0.632649 nxsetgray -0.653066 nxsetgray -0.673467 nxsetgray -0.693884 nxsetgray -0.714286 nxsetgray -0.734687 nxsetgray -0.755104 nxsetgray -0.775506 nxsetgray -0.795923 nxsetgray -0.816324 nxsetgray -0.836741 nxsetgray -0.857143 nxsetgray -0.877544 nxsetgray -0.897961 nxsetgray -0.918363 nxsetgray -0.93878 nxsetgray -0.959181 nxsetgray -0.979598 nxsetgray -1 nxsetgray -N -grestore -2 L -0 nxsetgray -0 84 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -238 406 T -N -gsave N -0 0 m 84 0 l -clip -N -0 setlinewidth -0 nxsetgray -0.020402 nxsetgray -0.040819 nxsetgray -0.06122 nxsetgray -0.081637 nxsetgray -0.102039 nxsetgray -0.122456 nxsetgray -0.142857 nxsetgray -0.163259 nxsetgray -0.183676 nxsetgray -0.204077 nxsetgray -0.224494 nxsetgray -0.244896 nxsetgray -0.265313 nxsetgray -0.285714 nxsetgray -0.306116 nxsetgray -0.326533 nxsetgray -0.346934 nxsetgray -0.367351 nxsetgray -0.387753 nxsetgray -0.40817 nxsetgray -0.428571 nxsetgray -0.448973 nxsetgray -0.46939 nxsetgray -0.489792 nxsetgray -0.510208 nxsetgray -0.53061 nxsetgray -0.551027 nxsetgray -0.571429 nxsetgray -0.59183 nxsetgray -0.612247 nxsetgray -0.632649 nxsetgray -0.653066 nxsetgray -0.673467 nxsetgray -0.693884 nxsetgray -0.714286 nxsetgray -0.734687 nxsetgray -0.755104 nxsetgray -0.775506 nxsetgray -0.795923 nxsetgray -0.816324 nxsetgray -0.836741 nxsetgray -0.857143 nxsetgray -0.877544 nxsetgray -0.897961 nxsetgray -0.918363 nxsetgray -0.93878 nxsetgray -0.959181 nxsetgray -0.979598 nxsetgray -1 nxsetgray -N -grestore -2 L -0 nxsetgray -84 0 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -323 406 T -N -gsave N -0 0 m 0 84 l -clip -N -0 setlinewidth -0 nxsetgray -0.020402 nxsetgray -0.040819 nxsetgray -0.06122 nxsetgray -0.081637 nxsetgray -0.102039 nxsetgray -0.122456 nxsetgray -0.142857 nxsetgray -0.163259 nxsetgray -0.183676 nxsetgray -0.204077 nxsetgray -0.224494 nxsetgray -0.244896 nxsetgray -0.265313 nxsetgray -0.285714 nxsetgray -0.306116 nxsetgray -0.326533 nxsetgray -0.346934 nxsetgray -0.367351 nxsetgray -0.387753 nxsetgray -0.40817 nxsetgray -0.428571 nxsetgray -0.448973 nxsetgray -0.46939 nxsetgray -0.489792 nxsetgray -0.510208 nxsetgray -0.53061 nxsetgray -0.551027 nxsetgray -0.571429 nxsetgray -0.59183 nxsetgray -0.612247 nxsetgray -0.632649 nxsetgray -0.653066 nxsetgray -0.673467 nxsetgray -0.693884 nxsetgray -0.714286 nxsetgray -0.734687 nxsetgray -0.755104 nxsetgray -0.775506 nxsetgray -0.795923 nxsetgray -0.816324 nxsetgray -0.836741 nxsetgray -0.857143 nxsetgray -0.877544 nxsetgray -0.897961 nxsetgray -0.918363 nxsetgray -0.93878 nxsetgray -0.959181 nxsetgray -0.979598 nxsetgray -1 nxsetgray -N -grestore -2 L -0 nxsetgray -0 84 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -238 490 T -N -2 L -0 nxsetgray -84 0 0 0 line -0 0 T -grestore -0 0 3 1 10 SU -336 504 T -N -gsave N -0 0 m 28 28 l -clip -N -0 setlinewidth -0 nxsetgray -0 0 0.56 28 rectfill -0.020402 nxsetgray -0.56 0 0.56 28 rectfill -0.040819 nxsetgray -1.12 0 0.56 28 rectfill -0.06122 nxsetgray -1.68 0 0.56 28 rectfill -0.081637 nxsetgray -2.24 0 0.56 28 rectfill -0.102039 nxsetgray -2.8 0 0.56 28 rectfill -0.122456 nxsetgray -3.36 0 0.56 28 rectfill -0.142857 nxsetgray -3.92 0 0.56 28 rectfill -0.163259 nxsetgray -4.48 0 0.56 28 rectfill -0.183676 nxsetgray -5.04 0 0.56 28 rectfill -0.204077 nxsetgray -5.6 0 0.56 28 rectfill -0.224494 nxsetgray -6.16 0 0.56 28 rectfill -0.244896 nxsetgray -6.72 0 0.56 28 rectfill -0.265313 nxsetgray -7.28 0 0.56 28 rectfill -0.285714 nxsetgray -7.84 0 0.56 28 rectfill -0.306116 nxsetgray -8.4 0 0.56 28 rectfill -0.326533 nxsetgray -8.96 0 0.56 28 rectfill -0.346934 nxsetgray -9.52 0 0.56 28 rectfill -0.367351 nxsetgray -10.080001 0 0.56 28 rectfill -0.387753 nxsetgray -10.640001 0 0.56 28 rectfill -0.40817 nxsetgray -11.200002 0 0.56 28 rectfill -0.428571 nxsetgray -11.760002 0 0.56 28 rectfill -0.448973 nxsetgray -12.320003 0 0.56 28 rectfill -0.46939 nxsetgray -12.880003 0 0.56 28 rectfill -0.489792 nxsetgray -13.440003 0 0.56 28 rectfill -0.510208 nxsetgray -14.000004 0 0.56 28 rectfill -0.53061 nxsetgray -14.560004 0 0.56 28 rectfill -0.551027 nxsetgray -15.120005 0 0.56 28 rectfill -0.571429 nxsetgray -15.680005 0 0.56 28 rectfill -0.59183 nxsetgray -16.240005 0 0.56 28 rectfill -0.612247 nxsetgray -16.800005 0 0.56 28 rectfill -0.632649 nxsetgray -17.360004 0 0.56 28 rectfill -0.653066 nxsetgray -17.920004 0 0.56 28 rectfill -0.673467 nxsetgray -18.480003 0 0.56 28 rectfill -0.693884 nxsetgray -19.040003 0 0.56 28 rectfill -0.714286 nxsetgray -19.600002 0 0.56 28 rectfill -0.734687 nxsetgray -20.160002 0 0.56 28 rectfill -0.755104 nxsetgray -20.720001 0 0.56 28 rectfill -0.775506 nxsetgray -21.280001 0 0.56 28 rectfill -0.795923 nxsetgray -21.84 0 0.56 28 rectfill -0.816324 nxsetgray -22.4 0 0.56 28 rectfill -0.836741 nxsetgray -22.959999 0 0.56 28 rectfill -0.857143 nxsetgray -23.519999 0 0.56 28 rectfill -0.877544 nxsetgray -24.079998 0 0.56 28 rectfill -0.897961 nxsetgray -24.639997 0 0.56 28 rectfill -0.918363 nxsetgray -25.199997 0 0.56 28 rectfill -0.93878 nxsetgray -25.759996 0 0.56 28 rectfill -0.959181 nxsetgray -26.319996 0 0.56 28 rectfill -0.979598 nxsetgray -26.879995 0 0.56 28 rectfill -1 nxsetgray -27.439995 0 0.56 28 rectfill -N -grestore -3 L -0 nxsetgray -28 28 0 0 line -45.001328 28 28 arrow -0 0 T -grestore -0 0 3 1 10 SU -210 490 T -N -gsave N -0 28 m 28 0 l -clip -N -0 setlinewidth -0 nxsetgray -0 0 0.56 28 rectfill -0.020402 nxsetgray -0.56 0 0.56 28 rectfill -0.040819 nxsetgray -1.12 0 0.56 28 rectfill -0.06122 nxsetgray -1.68 0 0.56 28 rectfill -0.081637 nxsetgray -2.24 0 0.56 28 rectfill -0.102039 nxsetgray -2.8 0 0.56 28 rectfill -0.122456 nxsetgray -3.36 0 0.56 28 rectfill -0.142857 nxsetgray -3.92 0 0.56 28 rectfill -0.163259 nxsetgray -4.48 0 0.56 28 rectfill -0.183676 nxsetgray -5.04 0 0.56 28 rectfill -0.204077 nxsetgray -5.6 0 0.56 28 rectfill -0.224494 nxsetgray -6.16 0 0.56 28 rectfill -0.244896 nxsetgray -6.72 0 0.56 28 rectfill -0.265313 nxsetgray -7.28 0 0.56 28 rectfill -0.285714 nxsetgray -7.84 0 0.56 28 rectfill -0.306116 nxsetgray -8.4 0 0.56 28 rectfill -0.326533 nxsetgray -8.96 0 0.56 28 rectfill -0.346934 nxsetgray -9.52 0 0.56 28 rectfill -0.367351 nxsetgray -10.080001 0 0.56 28 rectfill -0.387753 nxsetgray -10.640001 0 0.56 28 rectfill -0.40817 nxsetgray -11.200002 0 0.56 28 rectfill -0.428571 nxsetgray -11.760002 0 0.56 28 rectfill -0.448973 nxsetgray -12.320003 0 0.56 28 rectfill -0.46939 nxsetgray -12.880003 0 0.56 28 rectfill -0.489792 nxsetgray -13.440003 0 0.56 28 rectfill -0.510208 nxsetgray -14.000004 0 0.56 28 rectfill -0.53061 nxsetgray -14.560004 0 0.56 28 rectfill -0.551027 nxsetgray -15.120005 0 0.56 28 rectfill -0.571429 nxsetgray -15.680005 0 0.56 28 rectfill -0.59183 nxsetgray -16.240005 0 0.56 28 rectfill -0.612247 nxsetgray -16.800005 0 0.56 28 rectfill -0.632649 nxsetgray -17.360004 0 0.56 28 rectfill -0.653066 nxsetgray -17.920004 0 0.56 28 rectfill -0.673467 nxsetgray -18.480003 0 0.56 28 rectfill -0.693884 nxsetgray -19.040003 0 0.56 28 rectfill -0.714286 nxsetgray -19.600002 0 0.56 28 rectfill -0.734687 nxsetgray -20.160002 0 0.56 28 rectfill -0.755104 nxsetgray -20.720001 0 0.56 28 rectfill -0.775506 nxsetgray -21.280001 0 0.56 28 rectfill -0.795923 nxsetgray -21.84 0 0.56 28 rectfill -0.816324 nxsetgray -22.4 0 0.56 28 rectfill -0.836741 nxsetgray -22.959999 0 0.56 28 rectfill -0.857143 nxsetgray -23.519999 0 0.56 28 rectfill -0.877544 nxsetgray -24.079998 0 0.56 28 rectfill -0.897961 nxsetgray -24.639997 0 0.56 28 rectfill -0.918363 nxsetgray -25.199997 0 0.56 28 rectfill -0.93878 nxsetgray -25.759996 0 0.56 28 rectfill -0.959181 nxsetgray -26.319996 0 0.56 28 rectfill -0.979598 nxsetgray -26.879995 0 0.56 28 rectfill -1 nxsetgray -27.439995 0 0.56 28 rectfill -N -grestore -3 L -0 nxsetgray -28 -28 0 28 line --45.001328 28 0 arrow -0 0 T -grestore -0 0 1 1 10 SU -182 406 T -N -gsave N -0 0 m 196 0 l -clip -N -0 setlinewidth -0 nxsetgray -0.020402 nxsetgray -0.040819 nxsetgray -0.06122 nxsetgray -0.081637 nxsetgray -0.102039 nxsetgray -0.122456 nxsetgray -0.142857 nxsetgray -0.163259 nxsetgray -0.183676 nxsetgray -0.204077 nxsetgray -0.224494 nxsetgray -0.244896 nxsetgray -0.265313 nxsetgray -0.285714 nxsetgray -0.306116 nxsetgray -0.326533 nxsetgray -0.346934 nxsetgray -0.367351 nxsetgray -0.387753 nxsetgray -0.40817 nxsetgray -0.428571 nxsetgray -0.448973 nxsetgray -0.46939 nxsetgray -0.489792 nxsetgray -0.510208 nxsetgray -0.53061 nxsetgray -0.551027 nxsetgray -0.571429 nxsetgray -0.59183 nxsetgray -0.612247 nxsetgray -0.632649 nxsetgray -0.653066 nxsetgray -0.673467 nxsetgray -0.693884 nxsetgray -0.714286 nxsetgray -0.734687 nxsetgray -0.755104 nxsetgray -0.775506 nxsetgray -0.795923 nxsetgray -0.816324 nxsetgray -0.836741 nxsetgray -0.857143 nxsetgray -0.877544 nxsetgray -0.897961 nxsetgray -0.918363 nxsetgray -0.93878 nxsetgray -0.959181 nxsetgray -0.979598 nxsetgray -1 nxsetgray -N -grestore -1 L -0 nxsetgray -196 0 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -196 392 T -N -gsave N -0 0 m 14 14 l -clip -N -0 setlinewidth -0 nxsetgray -0 0 0.28 14 rectfill -0.020402 nxsetgray -0.28 0 0.28 14 rectfill -0.040819 nxsetgray -0.56 0 0.28 14 rectfill -0.06122 nxsetgray -0.84 0 0.28 14 rectfill -0.081637 nxsetgray -1.12 0 0.28 14 rectfill -0.102039 nxsetgray -1.4 0 0.28 14 rectfill -0.122456 nxsetgray -1.68 0 0.28 14 rectfill -0.142857 nxsetgray -1.96 0 0.28 14 rectfill -0.163259 nxsetgray -2.24 0 0.28 14 rectfill -0.183676 nxsetgray -2.52 0 0.28 14 rectfill -0.204077 nxsetgray -2.8 0 0.28 14 rectfill -0.224494 nxsetgray -3.08 0 0.28 14 rectfill -0.244896 nxsetgray -3.36 0 0.28 14 rectfill -0.265313 nxsetgray -3.64 0 0.28 14 rectfill -0.285714 nxsetgray -3.92 0 0.28 14 rectfill -0.306116 nxsetgray -4.2 0 0.28 14 rectfill -0.326533 nxsetgray -4.48 0 0.28 14 rectfill -0.346934 nxsetgray -4.76 0 0.28 14 rectfill -0.367351 nxsetgray -5.04 0 0.28 14 rectfill -0.387753 nxsetgray -5.320001 0 0.28 14 rectfill -0.40817 nxsetgray -5.600001 0 0.28 14 rectfill -0.428571 nxsetgray -5.880001 0 0.28 14 rectfill -0.448973 nxsetgray -6.160001 0 0.28 14 rectfill -0.46939 nxsetgray -6.440001 0 0.28 14 rectfill -0.489792 nxsetgray -6.720002 0 0.28 14 rectfill -0.510208 nxsetgray -7.000002 0 0.28 14 rectfill -0.53061 nxsetgray -7.280002 0 0.28 14 rectfill -0.551027 nxsetgray -7.560002 0 0.28 14 rectfill -0.571429 nxsetgray -7.840003 0 0.28 14 rectfill -0.59183 nxsetgray -8.120003 0 0.28 14 rectfill -0.612247 nxsetgray -8.400002 0 0.28 14 rectfill -0.632649 nxsetgray -8.680002 0 0.28 14 rectfill -0.653066 nxsetgray -8.960002 0 0.28 14 rectfill -0.673467 nxsetgray -9.240002 0 0.28 14 rectfill -0.693884 nxsetgray -9.520001 0 0.28 14 rectfill -0.714286 nxsetgray -9.800001 0 0.28 14 rectfill -0.734687 nxsetgray -10.080001 0 0.28 14 rectfill -0.755104 nxsetgray -10.360001 0 0.28 14 rectfill -0.775506 nxsetgray -10.64 0 0.28 14 rectfill -0.795923 nxsetgray -10.92 0 0.28 14 rectfill -0.816324 nxsetgray -11.2 0 0.28 14 rectfill -0.836741 nxsetgray -11.48 0 0.28 14 rectfill -0.857143 nxsetgray -11.759999 0 0.28 14 rectfill -0.877544 nxsetgray -12.039999 0 0.28 14 rectfill -0.897961 nxsetgray -12.319999 0 0.28 14 rectfill -0.918363 nxsetgray -12.599998 0 0.28 14 rectfill -0.93878 nxsetgray -12.879998 0 0.28 14 rectfill -0.959181 nxsetgray -13.159998 0 0.28 14 rectfill -0.979598 nxsetgray -13.439998 0 0.28 14 rectfill -1 nxsetgray -13.719997 0 0.28 14 rectfill -N -grestore -1 L -0 nxsetgray -14 14 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -210 392 T -N -gsave N -0 0 m 14 14 l -clip -N -0 setlinewidth -0 nxsetgray -0 0 0.28 14 rectfill -0.020402 nxsetgray -0.28 0 0.28 14 rectfill -0.040819 nxsetgray -0.56 0 0.28 14 rectfill -0.06122 nxsetgray -0.84 0 0.28 14 rectfill -0.081637 nxsetgray -1.12 0 0.28 14 rectfill -0.102039 nxsetgray -1.4 0 0.28 14 rectfill -0.122456 nxsetgray -1.68 0 0.28 14 rectfill -0.142857 nxsetgray -1.96 0 0.28 14 rectfill -0.163259 nxsetgray -2.24 0 0.28 14 rectfill -0.183676 nxsetgray -2.52 0 0.28 14 rectfill -0.204077 nxsetgray -2.8 0 0.28 14 rectfill -0.224494 nxsetgray -3.08 0 0.28 14 rectfill -0.244896 nxsetgray -3.36 0 0.28 14 rectfill -0.265313 nxsetgray -3.64 0 0.28 14 rectfill -0.285714 nxsetgray -3.92 0 0.28 14 rectfill -0.306116 nxsetgray -4.2 0 0.28 14 rectfill -0.326533 nxsetgray -4.48 0 0.28 14 rectfill -0.346934 nxsetgray -4.76 0 0.28 14 rectfill -0.367351 nxsetgray -5.04 0 0.28 14 rectfill -0.387753 nxsetgray -5.320001 0 0.28 14 rectfill -0.40817 nxsetgray -5.600001 0 0.28 14 rectfill -0.428571 nxsetgray -5.880001 0 0.28 14 rectfill -0.448973 nxsetgray -6.160001 0 0.28 14 rectfill -0.46939 nxsetgray -6.440001 0 0.28 14 rectfill -0.489792 nxsetgray -6.720002 0 0.28 14 rectfill -0.510208 nxsetgray -7.000002 0 0.28 14 rectfill -0.53061 nxsetgray -7.280002 0 0.28 14 rectfill -0.551027 nxsetgray -7.560002 0 0.28 14 rectfill -0.571429 nxsetgray -7.840003 0 0.28 14 rectfill -0.59183 nxsetgray -8.120003 0 0.28 14 rectfill -0.612247 nxsetgray -8.400002 0 0.28 14 rectfill -0.632649 nxsetgray -8.680002 0 0.28 14 rectfill -0.653066 nxsetgray -8.960002 0 0.28 14 rectfill -0.673467 nxsetgray -9.240002 0 0.28 14 rectfill -0.693884 nxsetgray -9.520001 0 0.28 14 rectfill -0.714286 nxsetgray -9.800001 0 0.28 14 rectfill -0.734687 nxsetgray -10.080001 0 0.28 14 rectfill -0.755104 nxsetgray -10.360001 0 0.28 14 rectfill -0.775506 nxsetgray -10.64 0 0.28 14 rectfill -0.795923 nxsetgray -10.92 0 0.28 14 rectfill -0.816324 nxsetgray -11.2 0 0.28 14 rectfill -0.836741 nxsetgray -11.48 0 0.28 14 rectfill -0.857143 nxsetgray -11.759999 0 0.28 14 rectfill -0.877544 nxsetgray -12.039999 0 0.28 14 rectfill -0.897961 nxsetgray -12.319999 0 0.28 14 rectfill -0.918363 nxsetgray -12.599998 0 0.28 14 rectfill -0.93878 nxsetgray -12.879998 0 0.28 14 rectfill -0.959181 nxsetgray -13.159998 0 0.28 14 rectfill -0.979598 nxsetgray -13.439998 0 0.28 14 rectfill -1 nxsetgray -13.719997 0 0.28 14 rectfill -N -grestore -1 L -0 nxsetgray -14 14 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -224 392 T -N -gsave N -0 0 m 14 14 l -clip -N -0 setlinewidth -0 nxsetgray -0 0 0.28 14 rectfill -0.020402 nxsetgray -0.28 0 0.28 14 rectfill -0.040819 nxsetgray -0.56 0 0.28 14 rectfill -0.06122 nxsetgray -0.84 0 0.28 14 rectfill -0.081637 nxsetgray -1.12 0 0.28 14 rectfill -0.102039 nxsetgray -1.4 0 0.28 14 rectfill -0.122456 nxsetgray -1.68 0 0.28 14 rectfill -0.142857 nxsetgray -1.96 0 0.28 14 rectfill -0.163259 nxsetgray -2.24 0 0.28 14 rectfill -0.183676 nxsetgray -2.52 0 0.28 14 rectfill -0.204077 nxsetgray -2.8 0 0.28 14 rectfill -0.224494 nxsetgray -3.08 0 0.28 14 rectfill -0.244896 nxsetgray -3.36 0 0.28 14 rectfill -0.265313 nxsetgray -3.64 0 0.28 14 rectfill -0.285714 nxsetgray -3.92 0 0.28 14 rectfill -0.306116 nxsetgray -4.2 0 0.28 14 rectfill -0.326533 nxsetgray -4.48 0 0.28 14 rectfill -0.346934 nxsetgray -4.76 0 0.28 14 rectfill -0.367351 nxsetgray -5.04 0 0.28 14 rectfill -0.387753 nxsetgray -5.320001 0 0.28 14 rectfill -0.40817 nxsetgray -5.600001 0 0.28 14 rectfill -0.428571 nxsetgray -5.880001 0 0.28 14 rectfill -0.448973 nxsetgray -6.160001 0 0.28 14 rectfill -0.46939 nxsetgray -6.440001 0 0.28 14 rectfill -0.489792 nxsetgray -6.720002 0 0.28 14 rectfill -0.510208 nxsetgray -7.000002 0 0.28 14 rectfill -0.53061 nxsetgray -7.280002 0 0.28 14 rectfill -0.551027 nxsetgray -7.560002 0 0.28 14 rectfill -0.571429 nxsetgray -7.840003 0 0.28 14 rectfill -0.59183 nxsetgray -8.120003 0 0.28 14 rectfill -0.612247 nxsetgray -8.400002 0 0.28 14 rectfill -0.632649 nxsetgray -8.680002 0 0.28 14 rectfill -0.653066 nxsetgray -8.960002 0 0.28 14 rectfill -0.673467 nxsetgray -9.240002 0 0.28 14 rectfill -0.693884 nxsetgray -9.520001 0 0.28 14 rectfill -0.714286 nxsetgray -9.800001 0 0.28 14 rectfill -0.734687 nxsetgray -10.080001 0 0.28 14 rectfill -0.755104 nxsetgray -10.360001 0 0.28 14 rectfill -0.775506 nxsetgray -10.64 0 0.28 14 rectfill -0.795923 nxsetgray -10.92 0 0.28 14 rectfill -0.816324 nxsetgray -11.2 0 0.28 14 rectfill -0.836741 nxsetgray -11.48 0 0.28 14 rectfill -0.857143 nxsetgray -11.759999 0 0.28 14 rectfill -0.877544 nxsetgray -12.039999 0 0.28 14 rectfill -0.897961 nxsetgray -12.319999 0 0.28 14 rectfill -0.918363 nxsetgray -12.599998 0 0.28 14 rectfill -0.93878 nxsetgray -12.879998 0 0.28 14 rectfill -0.959181 nxsetgray -13.159998 0 0.28 14 rectfill -0.979598 nxsetgray -13.439998 0 0.28 14 rectfill -1 nxsetgray -13.719997 0 0.28 14 rectfill -N -grestore -1 L -0 nxsetgray -14 14 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -238 392 T -N -gsave N -0 0 m 14 14 l -clip -N -0 setlinewidth -0 nxsetgray -0 0 0.28 14 rectfill -0.020402 nxsetgray -0.28 0 0.28 14 rectfill -0.040819 nxsetgray -0.56 0 0.28 14 rectfill -0.06122 nxsetgray -0.84 0 0.28 14 rectfill -0.081637 nxsetgray -1.12 0 0.28 14 rectfill -0.102039 nxsetgray -1.4 0 0.28 14 rectfill -0.122456 nxsetgray -1.68 0 0.28 14 rectfill -0.142857 nxsetgray -1.96 0 0.28 14 rectfill -0.163259 nxsetgray -2.24 0 0.28 14 rectfill -0.183676 nxsetgray -2.52 0 0.28 14 rectfill -0.204077 nxsetgray -2.8 0 0.28 14 rectfill -0.224494 nxsetgray -3.08 0 0.28 14 rectfill -0.244896 nxsetgray -3.36 0 0.28 14 rectfill -0.265313 nxsetgray -3.64 0 0.28 14 rectfill -0.285714 nxsetgray -3.92 0 0.28 14 rectfill -0.306116 nxsetgray -4.2 0 0.28 14 rectfill -0.326533 nxsetgray -4.48 0 0.28 14 rectfill -0.346934 nxsetgray -4.76 0 0.28 14 rectfill -0.367351 nxsetgray -5.04 0 0.28 14 rectfill -0.387753 nxsetgray -5.320001 0 0.28 14 rectfill -0.40817 nxsetgray -5.600001 0 0.28 14 rectfill -0.428571 nxsetgray -5.880001 0 0.28 14 rectfill -0.448973 nxsetgray -6.160001 0 0.28 14 rectfill -0.46939 nxsetgray -6.440001 0 0.28 14 rectfill -0.489792 nxsetgray -6.720002 0 0.28 14 rectfill -0.510208 nxsetgray -7.000002 0 0.28 14 rectfill -0.53061 nxsetgray -7.280002 0 0.28 14 rectfill -0.551027 nxsetgray -7.560002 0 0.28 14 rectfill -0.571429 nxsetgray -7.840003 0 0.28 14 rectfill -0.59183 nxsetgray -8.120003 0 0.28 14 rectfill -0.612247 nxsetgray -8.400002 0 0.28 14 rectfill -0.632649 nxsetgray -8.680002 0 0.28 14 rectfill -0.653066 nxsetgray -8.960002 0 0.28 14 rectfill -0.673467 nxsetgray -9.240002 0 0.28 14 rectfill -0.693884 nxsetgray -9.520001 0 0.28 14 rectfill -0.714286 nxsetgray -9.800001 0 0.28 14 rectfill -0.734687 nxsetgray -10.080001 0 0.28 14 rectfill -0.755104 nxsetgray -10.360001 0 0.28 14 rectfill -0.775506 nxsetgray -10.64 0 0.28 14 rectfill -0.795923 nxsetgray -10.92 0 0.28 14 rectfill -0.816324 nxsetgray -11.2 0 0.28 14 rectfill -0.836741 nxsetgray -11.48 0 0.28 14 rectfill -0.857143 nxsetgray -11.759999 0 0.28 14 rectfill -0.877544 nxsetgray -12.039999 0 0.28 14 rectfill -0.897961 nxsetgray -12.319999 0 0.28 14 rectfill -0.918363 nxsetgray -12.599998 0 0.28 14 rectfill -0.93878 nxsetgray -12.879998 0 0.28 14 rectfill -0.959181 nxsetgray -13.159998 0 0.28 14 rectfill -0.979598 nxsetgray -13.439998 0 0.28 14 rectfill -1 nxsetgray -13.719997 0 0.28 14 rectfill -N -grestore -1 L -0 nxsetgray -14 14 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -252 392 T -N -gsave N -0 0 m 14 14 l -clip -N -0 setlinewidth -0 nxsetgray -0 0 0.28 14 rectfill -0.020402 nxsetgray -0.28 0 0.28 14 rectfill -0.040819 nxsetgray -0.56 0 0.28 14 rectfill -0.06122 nxsetgray -0.84 0 0.28 14 rectfill -0.081637 nxsetgray -1.12 0 0.28 14 rectfill -0.102039 nxsetgray -1.4 0 0.28 14 rectfill -0.122456 nxsetgray -1.68 0 0.28 14 rectfill -0.142857 nxsetgray -1.96 0 0.28 14 rectfill -0.163259 nxsetgray -2.24 0 0.28 14 rectfill -0.183676 nxsetgray -2.52 0 0.28 14 rectfill -0.204077 nxsetgray -2.8 0 0.28 14 rectfill -0.224494 nxsetgray -3.08 0 0.28 14 rectfill -0.244896 nxsetgray -3.36 0 0.28 14 rectfill -0.265313 nxsetgray -3.64 0 0.28 14 rectfill -0.285714 nxsetgray -3.92 0 0.28 14 rectfill -0.306116 nxsetgray -4.2 0 0.28 14 rectfill -0.326533 nxsetgray -4.48 0 0.28 14 rectfill -0.346934 nxsetgray -4.76 0 0.28 14 rectfill -0.367351 nxsetgray -5.04 0 0.28 14 rectfill -0.387753 nxsetgray -5.320001 0 0.28 14 rectfill -0.40817 nxsetgray -5.600001 0 0.28 14 rectfill -0.428571 nxsetgray -5.880001 0 0.28 14 rectfill -0.448973 nxsetgray -6.160001 0 0.28 14 rectfill -0.46939 nxsetgray -6.440001 0 0.28 14 rectfill -0.489792 nxsetgray -6.720002 0 0.28 14 rectfill -0.510208 nxsetgray -7.000002 0 0.28 14 rectfill -0.53061 nxsetgray -7.280002 0 0.28 14 rectfill -0.551027 nxsetgray -7.560002 0 0.28 14 rectfill -0.571429 nxsetgray -7.840003 0 0.28 14 rectfill -0.59183 nxsetgray -8.120003 0 0.28 14 rectfill -0.612247 nxsetgray -8.400002 0 0.28 14 rectfill -0.632649 nxsetgray -8.680002 0 0.28 14 rectfill -0.653066 nxsetgray -8.960002 0 0.28 14 rectfill -0.673467 nxsetgray -9.240002 0 0.28 14 rectfill -0.693884 nxsetgray -9.520001 0 0.28 14 rectfill -0.714286 nxsetgray -9.800001 0 0.28 14 rectfill -0.734687 nxsetgray -10.080001 0 0.28 14 rectfill -0.755104 nxsetgray -10.360001 0 0.28 14 rectfill -0.775506 nxsetgray -10.64 0 0.28 14 rectfill -0.795923 nxsetgray -10.92 0 0.28 14 rectfill -0.816324 nxsetgray -11.2 0 0.28 14 rectfill -0.836741 nxsetgray -11.48 0 0.28 14 rectfill -0.857143 nxsetgray -11.759999 0 0.28 14 rectfill -0.877544 nxsetgray -12.039999 0 0.28 14 rectfill -0.897961 nxsetgray -12.319999 0 0.28 14 rectfill -0.918363 nxsetgray -12.599998 0 0.28 14 rectfill -0.93878 nxsetgray -12.879998 0 0.28 14 rectfill -0.959181 nxsetgray -13.159998 0 0.28 14 rectfill -0.979598 nxsetgray -13.439998 0 0.28 14 rectfill -1 nxsetgray -13.719997 0 0.28 14 rectfill -N -grestore -1 L -0 nxsetgray -14 14 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -266 392 T -N -gsave N -0 0 m 14 14 l -clip -N -0 setlinewidth -0 nxsetgray -0 0 0.28 14 rectfill -0.020402 nxsetgray -0.28 0 0.28 14 rectfill -0.040819 nxsetgray -0.56 0 0.28 14 rectfill -0.06122 nxsetgray -0.84 0 0.28 14 rectfill -0.081637 nxsetgray -1.12 0 0.28 14 rectfill -0.102039 nxsetgray -1.4 0 0.28 14 rectfill -0.122456 nxsetgray -1.68 0 0.28 14 rectfill -0.142857 nxsetgray -1.96 0 0.28 14 rectfill -0.163259 nxsetgray -2.24 0 0.28 14 rectfill -0.183676 nxsetgray -2.52 0 0.28 14 rectfill -0.204077 nxsetgray -2.8 0 0.28 14 rectfill -0.224494 nxsetgray -3.08 0 0.28 14 rectfill -0.244896 nxsetgray -3.36 0 0.28 14 rectfill -0.265313 nxsetgray -3.64 0 0.28 14 rectfill -0.285714 nxsetgray -3.92 0 0.28 14 rectfill -0.306116 nxsetgray -4.2 0 0.28 14 rectfill -0.326533 nxsetgray -4.48 0 0.28 14 rectfill -0.346934 nxsetgray -4.76 0 0.28 14 rectfill -0.367351 nxsetgray -5.04 0 0.28 14 rectfill -0.387753 nxsetgray -5.320001 0 0.28 14 rectfill -0.40817 nxsetgray -5.600001 0 0.28 14 rectfill -0.428571 nxsetgray -5.880001 0 0.28 14 rectfill -0.448973 nxsetgray -6.160001 0 0.28 14 rectfill -0.46939 nxsetgray -6.440001 0 0.28 14 rectfill -0.489792 nxsetgray -6.720002 0 0.28 14 rectfill -0.510208 nxsetgray -7.000002 0 0.28 14 rectfill -0.53061 nxsetgray -7.280002 0 0.28 14 rectfill -0.551027 nxsetgray -7.560002 0 0.28 14 rectfill -0.571429 nxsetgray -7.840003 0 0.28 14 rectfill -0.59183 nxsetgray -8.120003 0 0.28 14 rectfill -0.612247 nxsetgray -8.400002 0 0.28 14 rectfill -0.632649 nxsetgray -8.680002 0 0.28 14 rectfill -0.653066 nxsetgray -8.960002 0 0.28 14 rectfill -0.673467 nxsetgray -9.240002 0 0.28 14 rectfill -0.693884 nxsetgray -9.520001 0 0.28 14 rectfill -0.714286 nxsetgray -9.800001 0 0.28 14 rectfill -0.734687 nxsetgray -10.080001 0 0.28 14 rectfill -0.755104 nxsetgray -10.360001 0 0.28 14 rectfill -0.775506 nxsetgray -10.64 0 0.28 14 rectfill -0.795923 nxsetgray -10.92 0 0.28 14 rectfill -0.816324 nxsetgray -11.2 0 0.28 14 rectfill -0.836741 nxsetgray -11.48 0 0.28 14 rectfill -0.857143 nxsetgray -11.759999 0 0.28 14 rectfill -0.877544 nxsetgray -12.039999 0 0.28 14 rectfill -0.897961 nxsetgray -12.319999 0 0.28 14 rectfill -0.918363 nxsetgray -12.599998 0 0.28 14 rectfill -0.93878 nxsetgray -12.879998 0 0.28 14 rectfill -0.959181 nxsetgray -13.159998 0 0.28 14 rectfill -0.979598 nxsetgray -13.439998 0 0.28 14 rectfill -1 nxsetgray -13.719997 0 0.28 14 rectfill -N -grestore -1 L -0 nxsetgray -14 14 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -280 392 T -N -gsave N -0 0 m 14 14 l -clip -N -0 setlinewidth -0 nxsetgray -0 0 0.28 14 rectfill -0.020402 nxsetgray -0.28 0 0.28 14 rectfill -0.040819 nxsetgray -0.56 0 0.28 14 rectfill -0.06122 nxsetgray -0.84 0 0.28 14 rectfill -0.081637 nxsetgray -1.12 0 0.28 14 rectfill -0.102039 nxsetgray -1.4 0 0.28 14 rectfill -0.122456 nxsetgray -1.68 0 0.28 14 rectfill -0.142857 nxsetgray -1.96 0 0.28 14 rectfill -0.163259 nxsetgray -2.24 0 0.28 14 rectfill -0.183676 nxsetgray -2.52 0 0.28 14 rectfill -0.204077 nxsetgray -2.8 0 0.28 14 rectfill -0.224494 nxsetgray -3.08 0 0.28 14 rectfill -0.244896 nxsetgray -3.36 0 0.28 14 rectfill -0.265313 nxsetgray -3.64 0 0.28 14 rectfill -0.285714 nxsetgray -3.92 0 0.28 14 rectfill -0.306116 nxsetgray -4.2 0 0.28 14 rectfill -0.326533 nxsetgray -4.48 0 0.28 14 rectfill -0.346934 nxsetgray -4.76 0 0.28 14 rectfill -0.367351 nxsetgray -5.04 0 0.28 14 rectfill -0.387753 nxsetgray -5.320001 0 0.28 14 rectfill -0.40817 nxsetgray -5.600001 0 0.28 14 rectfill -0.428571 nxsetgray -5.880001 0 0.28 14 rectfill -0.448973 nxsetgray -6.160001 0 0.28 14 rectfill -0.46939 nxsetgray -6.440001 0 0.28 14 rectfill -0.489792 nxsetgray -6.720002 0 0.28 14 rectfill -0.510208 nxsetgray -7.000002 0 0.28 14 rectfill -0.53061 nxsetgray -7.280002 0 0.28 14 rectfill -0.551027 nxsetgray -7.560002 0 0.28 14 rectfill -0.571429 nxsetgray -7.840003 0 0.28 14 rectfill -0.59183 nxsetgray -8.120003 0 0.28 14 rectfill -0.612247 nxsetgray -8.400002 0 0.28 14 rectfill -0.632649 nxsetgray -8.680002 0 0.28 14 rectfill -0.653066 nxsetgray -8.960002 0 0.28 14 rectfill -0.673467 nxsetgray -9.240002 0 0.28 14 rectfill -0.693884 nxsetgray -9.520001 0 0.28 14 rectfill -0.714286 nxsetgray -9.800001 0 0.28 14 rectfill -0.734687 nxsetgray -10.080001 0 0.28 14 rectfill -0.755104 nxsetgray -10.360001 0 0.28 14 rectfill -0.775506 nxsetgray -10.64 0 0.28 14 rectfill -0.795923 nxsetgray -10.92 0 0.28 14 rectfill -0.816324 nxsetgray -11.2 0 0.28 14 rectfill -0.836741 nxsetgray -11.48 0 0.28 14 rectfill -0.857143 nxsetgray -11.759999 0 0.28 14 rectfill -0.877544 nxsetgray -12.039999 0 0.28 14 rectfill -0.897961 nxsetgray -12.319999 0 0.28 14 rectfill -0.918363 nxsetgray -12.599998 0 0.28 14 rectfill -0.93878 nxsetgray -12.879998 0 0.28 14 rectfill -0.959181 nxsetgray -13.159998 0 0.28 14 rectfill -0.979598 nxsetgray -13.439998 0 0.28 14 rectfill -1 nxsetgray -13.719997 0 0.28 14 rectfill -N -grestore -1 L -0 nxsetgray -14 14 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -294 392 T -N -gsave N -0 0 m 14 14 l -clip -N -0 setlinewidth -0 nxsetgray -0 0 0.28 14 rectfill -0.020402 nxsetgray -0.28 0 0.28 14 rectfill -0.040819 nxsetgray -0.56 0 0.28 14 rectfill -0.06122 nxsetgray -0.84 0 0.28 14 rectfill -0.081637 nxsetgray -1.12 0 0.28 14 rectfill -0.102039 nxsetgray -1.4 0 0.28 14 rectfill -0.122456 nxsetgray -1.68 0 0.28 14 rectfill -0.142857 nxsetgray -1.96 0 0.28 14 rectfill -0.163259 nxsetgray -2.24 0 0.28 14 rectfill -0.183676 nxsetgray -2.52 0 0.28 14 rectfill -0.204077 nxsetgray -2.8 0 0.28 14 rectfill -0.224494 nxsetgray -3.08 0 0.28 14 rectfill -0.244896 nxsetgray -3.36 0 0.28 14 rectfill -0.265313 nxsetgray -3.64 0 0.28 14 rectfill -0.285714 nxsetgray -3.92 0 0.28 14 rectfill -0.306116 nxsetgray -4.2 0 0.28 14 rectfill -0.326533 nxsetgray -4.48 0 0.28 14 rectfill -0.346934 nxsetgray -4.76 0 0.28 14 rectfill -0.367351 nxsetgray -5.04 0 0.28 14 rectfill -0.387753 nxsetgray -5.320001 0 0.28 14 rectfill -0.40817 nxsetgray -5.600001 0 0.28 14 rectfill -0.428571 nxsetgray -5.880001 0 0.28 14 rectfill -0.448973 nxsetgray -6.160001 0 0.28 14 rectfill -0.46939 nxsetgray -6.440001 0 0.28 14 rectfill -0.489792 nxsetgray -6.720002 0 0.28 14 rectfill -0.510208 nxsetgray -7.000002 0 0.28 14 rectfill -0.53061 nxsetgray -7.280002 0 0.28 14 rectfill -0.551027 nxsetgray -7.560002 0 0.28 14 rectfill -0.571429 nxsetgray -7.840003 0 0.28 14 rectfill -0.59183 nxsetgray -8.120003 0 0.28 14 rectfill -0.612247 nxsetgray -8.400002 0 0.28 14 rectfill -0.632649 nxsetgray -8.680002 0 0.28 14 rectfill -0.653066 nxsetgray -8.960002 0 0.28 14 rectfill -0.673467 nxsetgray -9.240002 0 0.28 14 rectfill -0.693884 nxsetgray -9.520001 0 0.28 14 rectfill -0.714286 nxsetgray -9.800001 0 0.28 14 rectfill -0.734687 nxsetgray -10.080001 0 0.28 14 rectfill -0.755104 nxsetgray -10.360001 0 0.28 14 rectfill -0.775506 nxsetgray -10.64 0 0.28 14 rectfill -0.795923 nxsetgray -10.92 0 0.28 14 rectfill -0.816324 nxsetgray -11.2 0 0.28 14 rectfill -0.836741 nxsetgray -11.48 0 0.28 14 rectfill -0.857143 nxsetgray -11.759999 0 0.28 14 rectfill -0.877544 nxsetgray -12.039999 0 0.28 14 rectfill -0.897961 nxsetgray -12.319999 0 0.28 14 rectfill -0.918363 nxsetgray -12.599998 0 0.28 14 rectfill -0.93878 nxsetgray -12.879998 0 0.28 14 rectfill -0.959181 nxsetgray -13.159998 0 0.28 14 rectfill -0.979598 nxsetgray -13.439998 0 0.28 14 rectfill -1 nxsetgray -13.719997 0 0.28 14 rectfill -N -grestore -1 L -0 nxsetgray -14 14 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -308 392 T -N -gsave N -0 0 m 14 14 l -clip -N -0 setlinewidth -0 nxsetgray -0 0 0.28 14 rectfill -0.020402 nxsetgray -0.28 0 0.28 14 rectfill -0.040819 nxsetgray -0.56 0 0.28 14 rectfill -0.06122 nxsetgray -0.84 0 0.28 14 rectfill -0.081637 nxsetgray -1.12 0 0.28 14 rectfill -0.102039 nxsetgray -1.4 0 0.28 14 rectfill -0.122456 nxsetgray -1.68 0 0.28 14 rectfill -0.142857 nxsetgray -1.96 0 0.28 14 rectfill -0.163259 nxsetgray -2.24 0 0.28 14 rectfill -0.183676 nxsetgray -2.52 0 0.28 14 rectfill -0.204077 nxsetgray -2.8 0 0.28 14 rectfill -0.224494 nxsetgray -3.08 0 0.28 14 rectfill -0.244896 nxsetgray -3.36 0 0.28 14 rectfill -0.265313 nxsetgray -3.64 0 0.28 14 rectfill -0.285714 nxsetgray -3.92 0 0.28 14 rectfill -0.306116 nxsetgray -4.2 0 0.28 14 rectfill -0.326533 nxsetgray -4.48 0 0.28 14 rectfill -0.346934 nxsetgray -4.76 0 0.28 14 rectfill -0.367351 nxsetgray -5.04 0 0.28 14 rectfill -0.387753 nxsetgray -5.320001 0 0.28 14 rectfill -0.40817 nxsetgray -5.600001 0 0.28 14 rectfill -0.428571 nxsetgray -5.880001 0 0.28 14 rectfill -0.448973 nxsetgray -6.160001 0 0.28 14 rectfill -0.46939 nxsetgray -6.440001 0 0.28 14 rectfill -0.489792 nxsetgray -6.720002 0 0.28 14 rectfill -0.510208 nxsetgray -7.000002 0 0.28 14 rectfill -0.53061 nxsetgray -7.280002 0 0.28 14 rectfill -0.551027 nxsetgray -7.560002 0 0.28 14 rectfill -0.571429 nxsetgray -7.840003 0 0.28 14 rectfill -0.59183 nxsetgray -8.120003 0 0.28 14 rectfill -0.612247 nxsetgray -8.400002 0 0.28 14 rectfill -0.632649 nxsetgray -8.680002 0 0.28 14 rectfill -0.653066 nxsetgray -8.960002 0 0.28 14 rectfill -0.673467 nxsetgray -9.240002 0 0.28 14 rectfill -0.693884 nxsetgray -9.520001 0 0.28 14 rectfill -0.714286 nxsetgray -9.800001 0 0.28 14 rectfill -0.734687 nxsetgray -10.080001 0 0.28 14 rectfill -0.755104 nxsetgray -10.360001 0 0.28 14 rectfill -0.775506 nxsetgray -10.64 0 0.28 14 rectfill -0.795923 nxsetgray -10.92 0 0.28 14 rectfill -0.816324 nxsetgray -11.2 0 0.28 14 rectfill -0.836741 nxsetgray -11.48 0 0.28 14 rectfill -0.857143 nxsetgray -11.759999 0 0.28 14 rectfill -0.877544 nxsetgray -12.039999 0 0.28 14 rectfill -0.897961 nxsetgray -12.319999 0 0.28 14 rectfill -0.918363 nxsetgray -12.599998 0 0.28 14 rectfill -0.93878 nxsetgray -12.879998 0 0.28 14 rectfill -0.959181 nxsetgray -13.159998 0 0.28 14 rectfill -0.979598 nxsetgray -13.439998 0 0.28 14 rectfill -1 nxsetgray -13.719997 0 0.28 14 rectfill -N -grestore -1 L -0 nxsetgray -14 14 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -322 392 T -N -gsave N -0 0 m 14 14 l -clip -N -0 setlinewidth -0 nxsetgray -0 0 0.28 14 rectfill -0.020402 nxsetgray -0.28 0 0.28 14 rectfill -0.040819 nxsetgray -0.56 0 0.28 14 rectfill -0.06122 nxsetgray -0.84 0 0.28 14 rectfill -0.081637 nxsetgray -1.12 0 0.28 14 rectfill -0.102039 nxsetgray -1.4 0 0.28 14 rectfill -0.122456 nxsetgray -1.68 0 0.28 14 rectfill -0.142857 nxsetgray -1.96 0 0.28 14 rectfill -0.163259 nxsetgray -2.24 0 0.28 14 rectfill -0.183676 nxsetgray -2.52 0 0.28 14 rectfill -0.204077 nxsetgray -2.8 0 0.28 14 rectfill -0.224494 nxsetgray -3.08 0 0.28 14 rectfill -0.244896 nxsetgray -3.36 0 0.28 14 rectfill -0.265313 nxsetgray -3.64 0 0.28 14 rectfill -0.285714 nxsetgray -3.92 0 0.28 14 rectfill -0.306116 nxsetgray -4.2 0 0.28 14 rectfill -0.326533 nxsetgray -4.48 0 0.28 14 rectfill -0.346934 nxsetgray -4.76 0 0.28 14 rectfill -0.367351 nxsetgray -5.04 0 0.28 14 rectfill -0.387753 nxsetgray -5.320001 0 0.28 14 rectfill -0.40817 nxsetgray -5.600001 0 0.28 14 rectfill -0.428571 nxsetgray -5.880001 0 0.28 14 rectfill -0.448973 nxsetgray -6.160001 0 0.28 14 rectfill -0.46939 nxsetgray -6.440001 0 0.28 14 rectfill -0.489792 nxsetgray -6.720002 0 0.28 14 rectfill -0.510208 nxsetgray -7.000002 0 0.28 14 rectfill -0.53061 nxsetgray -7.280002 0 0.28 14 rectfill -0.551027 nxsetgray -7.560002 0 0.28 14 rectfill -0.571429 nxsetgray -7.840003 0 0.28 14 rectfill -0.59183 nxsetgray -8.120003 0 0.28 14 rectfill -0.612247 nxsetgray -8.400002 0 0.28 14 rectfill -0.632649 nxsetgray -8.680002 0 0.28 14 rectfill -0.653066 nxsetgray -8.960002 0 0.28 14 rectfill -0.673467 nxsetgray -9.240002 0 0.28 14 rectfill -0.693884 nxsetgray -9.520001 0 0.28 14 rectfill -0.714286 nxsetgray -9.800001 0 0.28 14 rectfill -0.734687 nxsetgray -10.080001 0 0.28 14 rectfill -0.755104 nxsetgray -10.360001 0 0.28 14 rectfill -0.775506 nxsetgray -10.64 0 0.28 14 rectfill -0.795923 nxsetgray -10.92 0 0.28 14 rectfill -0.816324 nxsetgray -11.2 0 0.28 14 rectfill -0.836741 nxsetgray -11.48 0 0.28 14 rectfill -0.857143 nxsetgray -11.759999 0 0.28 14 rectfill -0.877544 nxsetgray -12.039999 0 0.28 14 rectfill -0.897961 nxsetgray -12.319999 0 0.28 14 rectfill -0.918363 nxsetgray -12.599998 0 0.28 14 rectfill -0.93878 nxsetgray -12.879998 0 0.28 14 rectfill -0.959181 nxsetgray -13.159998 0 0.28 14 rectfill -0.979598 nxsetgray -13.439998 0 0.28 14 rectfill -1 nxsetgray -13.719997 0 0.28 14 rectfill -N -grestore -1 L -0 nxsetgray -14 14 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -336 392 T -N -gsave N -0 0 m 14 14 l -clip -N -0 setlinewidth -0 nxsetgray -0 0 0.28 14 rectfill -0.020402 nxsetgray -0.28 0 0.28 14 rectfill -0.040819 nxsetgray -0.56 0 0.28 14 rectfill -0.06122 nxsetgray -0.84 0 0.28 14 rectfill -0.081637 nxsetgray -1.12 0 0.28 14 rectfill -0.102039 nxsetgray -1.4 0 0.28 14 rectfill -0.122456 nxsetgray -1.68 0 0.28 14 rectfill -0.142857 nxsetgray -1.96 0 0.28 14 rectfill -0.163259 nxsetgray -2.24 0 0.28 14 rectfill -0.183676 nxsetgray -2.52 0 0.28 14 rectfill -0.204077 nxsetgray -2.8 0 0.28 14 rectfill -0.224494 nxsetgray -3.08 0 0.28 14 rectfill -0.244896 nxsetgray -3.36 0 0.28 14 rectfill -0.265313 nxsetgray -3.64 0 0.28 14 rectfill -0.285714 nxsetgray -3.92 0 0.28 14 rectfill -0.306116 nxsetgray -4.2 0 0.28 14 rectfill -0.326533 nxsetgray -4.48 0 0.28 14 rectfill -0.346934 nxsetgray -4.76 0 0.28 14 rectfill -0.367351 nxsetgray -5.04 0 0.28 14 rectfill -0.387753 nxsetgray -5.320001 0 0.28 14 rectfill -0.40817 nxsetgray -5.600001 0 0.28 14 rectfill -0.428571 nxsetgray -5.880001 0 0.28 14 rectfill -0.448973 nxsetgray -6.160001 0 0.28 14 rectfill -0.46939 nxsetgray -6.440001 0 0.28 14 rectfill -0.489792 nxsetgray -6.720002 0 0.28 14 rectfill -0.510208 nxsetgray -7.000002 0 0.28 14 rectfill -0.53061 nxsetgray -7.280002 0 0.28 14 rectfill -0.551027 nxsetgray -7.560002 0 0.28 14 rectfill -0.571429 nxsetgray -7.840003 0 0.28 14 rectfill -0.59183 nxsetgray -8.120003 0 0.28 14 rectfill -0.612247 nxsetgray -8.400002 0 0.28 14 rectfill -0.632649 nxsetgray -8.680002 0 0.28 14 rectfill -0.653066 nxsetgray -8.960002 0 0.28 14 rectfill -0.673467 nxsetgray -9.240002 0 0.28 14 rectfill -0.693884 nxsetgray -9.520001 0 0.28 14 rectfill -0.714286 nxsetgray -9.800001 0 0.28 14 rectfill -0.734687 nxsetgray -10.080001 0 0.28 14 rectfill -0.755104 nxsetgray -10.360001 0 0.28 14 rectfill -0.775506 nxsetgray -10.64 0 0.28 14 rectfill -0.795923 nxsetgray -10.92 0 0.28 14 rectfill -0.816324 nxsetgray -11.2 0 0.28 14 rectfill -0.836741 nxsetgray -11.48 0 0.28 14 rectfill -0.857143 nxsetgray -11.759999 0 0.28 14 rectfill -0.877544 nxsetgray -12.039999 0 0.28 14 rectfill -0.897961 nxsetgray -12.319999 0 0.28 14 rectfill -0.918363 nxsetgray -12.599998 0 0.28 14 rectfill -0.93878 nxsetgray -12.879998 0 0.28 14 rectfill -0.959181 nxsetgray -13.159998 0 0.28 14 rectfill -0.979598 nxsetgray -13.439998 0 0.28 14 rectfill -1 nxsetgray -13.719997 0 0.28 14 rectfill -N -grestore -1 L -0 nxsetgray -14 14 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -350 392 T -N -gsave N -0 0 m 14 14 l -clip -N -0 setlinewidth -0 nxsetgray -0 0 0.28 14 rectfill -0.020402 nxsetgray -0.28 0 0.28 14 rectfill -0.040819 nxsetgray -0.56 0 0.28 14 rectfill -0.06122 nxsetgray -0.84 0 0.28 14 rectfill -0.081637 nxsetgray -1.12 0 0.28 14 rectfill -0.102039 nxsetgray -1.4 0 0.28 14 rectfill -0.122456 nxsetgray -1.68 0 0.28 14 rectfill -0.142857 nxsetgray -1.96 0 0.28 14 rectfill -0.163259 nxsetgray -2.24 0 0.28 14 rectfill -0.183676 nxsetgray -2.52 0 0.28 14 rectfill -0.204077 nxsetgray -2.8 0 0.28 14 rectfill -0.224494 nxsetgray -3.08 0 0.28 14 rectfill -0.244896 nxsetgray -3.36 0 0.28 14 rectfill -0.265313 nxsetgray -3.64 0 0.28 14 rectfill -0.285714 nxsetgray -3.92 0 0.28 14 rectfill -0.306116 nxsetgray -4.2 0 0.28 14 rectfill -0.326533 nxsetgray -4.48 0 0.28 14 rectfill -0.346934 nxsetgray -4.76 0 0.28 14 rectfill -0.367351 nxsetgray -5.04 0 0.28 14 rectfill -0.387753 nxsetgray -5.320001 0 0.28 14 rectfill -0.40817 nxsetgray -5.600001 0 0.28 14 rectfill -0.428571 nxsetgray -5.880001 0 0.28 14 rectfill -0.448973 nxsetgray -6.160001 0 0.28 14 rectfill -0.46939 nxsetgray -6.440001 0 0.28 14 rectfill -0.489792 nxsetgray -6.720002 0 0.28 14 rectfill -0.510208 nxsetgray -7.000002 0 0.28 14 rectfill -0.53061 nxsetgray -7.280002 0 0.28 14 rectfill -0.551027 nxsetgray -7.560002 0 0.28 14 rectfill -0.571429 nxsetgray -7.840003 0 0.28 14 rectfill -0.59183 nxsetgray -8.120003 0 0.28 14 rectfill -0.612247 nxsetgray -8.400002 0 0.28 14 rectfill -0.632649 nxsetgray -8.680002 0 0.28 14 rectfill -0.653066 nxsetgray -8.960002 0 0.28 14 rectfill -0.673467 nxsetgray -9.240002 0 0.28 14 rectfill -0.693884 nxsetgray -9.520001 0 0.28 14 rectfill -0.714286 nxsetgray -9.800001 0 0.28 14 rectfill -0.734687 nxsetgray -10.080001 0 0.28 14 rectfill -0.755104 nxsetgray -10.360001 0 0.28 14 rectfill -0.775506 nxsetgray -10.64 0 0.28 14 rectfill -0.795923 nxsetgray -10.92 0 0.28 14 rectfill -0.816324 nxsetgray -11.2 0 0.28 14 rectfill -0.836741 nxsetgray -11.48 0 0.28 14 rectfill -0.857143 nxsetgray -11.759999 0 0.28 14 rectfill -0.877544 nxsetgray -12.039999 0 0.28 14 rectfill -0.897961 nxsetgray -12.319999 0 0.28 14 rectfill -0.918363 nxsetgray -12.599998 0 0.28 14 rectfill -0.93878 nxsetgray -12.879998 0 0.28 14 rectfill -0.959181 nxsetgray -13.159998 0 0.28 14 rectfill -0.979598 nxsetgray -13.439998 0 0.28 14 rectfill -1 nxsetgray -13.719997 0 0.28 14 rectfill -N -grestore -1 L -0 nxsetgray -14 14 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -364 392 T -N -gsave N -0 0 m 14 14 l -clip -N -0 setlinewidth -0 nxsetgray -0 0 0.28 14 rectfill -0.020402 nxsetgray -0.28 0 0.28 14 rectfill -0.040819 nxsetgray -0.56 0 0.28 14 rectfill -0.06122 nxsetgray -0.84 0 0.28 14 rectfill -0.081637 nxsetgray -1.12 0 0.28 14 rectfill -0.102039 nxsetgray -1.4 0 0.28 14 rectfill -0.122456 nxsetgray -1.68 0 0.28 14 rectfill -0.142857 nxsetgray -1.96 0 0.28 14 rectfill -0.163259 nxsetgray -2.24 0 0.28 14 rectfill -0.183676 nxsetgray -2.52 0 0.28 14 rectfill -0.204077 nxsetgray -2.8 0 0.28 14 rectfill -0.224494 nxsetgray -3.08 0 0.28 14 rectfill -0.244896 nxsetgray -3.36 0 0.28 14 rectfill -0.265313 nxsetgray -3.64 0 0.28 14 rectfill -0.285714 nxsetgray -3.92 0 0.28 14 rectfill -0.306116 nxsetgray -4.2 0 0.28 14 rectfill -0.326533 nxsetgray -4.48 0 0.28 14 rectfill -0.346934 nxsetgray -4.76 0 0.28 14 rectfill -0.367351 nxsetgray -5.04 0 0.28 14 rectfill -0.387753 nxsetgray -5.320001 0 0.28 14 rectfill -0.40817 nxsetgray -5.600001 0 0.28 14 rectfill -0.428571 nxsetgray -5.880001 0 0.28 14 rectfill -0.448973 nxsetgray -6.160001 0 0.28 14 rectfill -0.46939 nxsetgray -6.440001 0 0.28 14 rectfill -0.489792 nxsetgray -6.720002 0 0.28 14 rectfill -0.510208 nxsetgray -7.000002 0 0.28 14 rectfill -0.53061 nxsetgray -7.280002 0 0.28 14 rectfill -0.551027 nxsetgray -7.560002 0 0.28 14 rectfill -0.571429 nxsetgray -7.840003 0 0.28 14 rectfill -0.59183 nxsetgray -8.120003 0 0.28 14 rectfill -0.612247 nxsetgray -8.400002 0 0.28 14 rectfill -0.632649 nxsetgray -8.680002 0 0.28 14 rectfill -0.653066 nxsetgray -8.960002 0 0.28 14 rectfill -0.673467 nxsetgray -9.240002 0 0.28 14 rectfill -0.693884 nxsetgray -9.520001 0 0.28 14 rectfill -0.714286 nxsetgray -9.800001 0 0.28 14 rectfill -0.734687 nxsetgray -10.080001 0 0.28 14 rectfill -0.755104 nxsetgray -10.360001 0 0.28 14 rectfill -0.775506 nxsetgray -10.64 0 0.28 14 rectfill -0.795923 nxsetgray -10.92 0 0.28 14 rectfill -0.816324 nxsetgray -11.2 0 0.28 14 rectfill -0.836741 nxsetgray -11.48 0 0.28 14 rectfill -0.857143 nxsetgray -11.759999 0 0.28 14 rectfill -0.877544 nxsetgray -12.039999 0 0.28 14 rectfill -0.897961 nxsetgray -12.319999 0 0.28 14 rectfill -0.918363 nxsetgray -12.599998 0 0.28 14 rectfill -0.93878 nxsetgray -12.879998 0 0.28 14 rectfill -0.959181 nxsetgray -13.159998 0 0.28 14 rectfill -0.979598 nxsetgray -13.439998 0 0.28 14 rectfill -1 nxsetgray -13.719997 0 0.28 14 rectfill -N -grestore -1 L -0 nxsetgray -14 14 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -182 392 T -N -gsave N -0 0 m 14 14 l -clip -N -0 setlinewidth -0 nxsetgray -0 0 0.28 14 rectfill -0.020402 nxsetgray -0.28 0 0.28 14 rectfill -0.040819 nxsetgray -0.56 0 0.28 14 rectfill -0.06122 nxsetgray -0.84 0 0.28 14 rectfill -0.081637 nxsetgray -1.12 0 0.28 14 rectfill -0.102039 nxsetgray -1.4 0 0.28 14 rectfill -0.122456 nxsetgray -1.68 0 0.28 14 rectfill -0.142857 nxsetgray -1.96 0 0.28 14 rectfill -0.163259 nxsetgray -2.24 0 0.28 14 rectfill -0.183676 nxsetgray -2.52 0 0.28 14 rectfill -0.204077 nxsetgray -2.8 0 0.28 14 rectfill -0.224494 nxsetgray -3.08 0 0.28 14 rectfill -0.244896 nxsetgray -3.36 0 0.28 14 rectfill -0.265313 nxsetgray -3.64 0 0.28 14 rectfill -0.285714 nxsetgray -3.92 0 0.28 14 rectfill -0.306116 nxsetgray -4.2 0 0.28 14 rectfill -0.326533 nxsetgray -4.48 0 0.28 14 rectfill -0.346934 nxsetgray -4.76 0 0.28 14 rectfill -0.367351 nxsetgray -5.04 0 0.28 14 rectfill -0.387753 nxsetgray -5.320001 0 0.28 14 rectfill -0.40817 nxsetgray -5.600001 0 0.28 14 rectfill -0.428571 nxsetgray -5.880001 0 0.28 14 rectfill -0.448973 nxsetgray -6.160001 0 0.28 14 rectfill -0.46939 nxsetgray -6.440001 0 0.28 14 rectfill -0.489792 nxsetgray -6.720002 0 0.28 14 rectfill -0.510208 nxsetgray -7.000002 0 0.28 14 rectfill -0.53061 nxsetgray -7.280002 0 0.28 14 rectfill -0.551027 nxsetgray -7.560002 0 0.28 14 rectfill -0.571429 nxsetgray -7.840003 0 0.28 14 rectfill -0.59183 nxsetgray -8.120003 0 0.28 14 rectfill -0.612247 nxsetgray -8.400002 0 0.28 14 rectfill -0.632649 nxsetgray -8.680002 0 0.28 14 rectfill -0.653066 nxsetgray -8.960002 0 0.28 14 rectfill -0.673467 nxsetgray -9.240002 0 0.28 14 rectfill -0.693884 nxsetgray -9.520001 0 0.28 14 rectfill -0.714286 nxsetgray -9.800001 0 0.28 14 rectfill -0.734687 nxsetgray -10.080001 0 0.28 14 rectfill -0.755104 nxsetgray -10.360001 0 0.28 14 rectfill -0.775506 nxsetgray -10.64 0 0.28 14 rectfill -0.795923 nxsetgray -10.92 0 0.28 14 rectfill -0.816324 nxsetgray -11.2 0 0.28 14 rectfill -0.836741 nxsetgray -11.48 0 0.28 14 rectfill -0.857143 nxsetgray -11.759999 0 0.28 14 rectfill -0.877544 nxsetgray -12.039999 0 0.28 14 rectfill -0.897961 nxsetgray -12.319999 0 0.28 14 rectfill -0.918363 nxsetgray -12.599998 0 0.28 14 rectfill -0.93878 nxsetgray -12.879998 0 0.28 14 rectfill -0.959181 nxsetgray -13.159998 0 0.28 14 rectfill -0.979598 nxsetgray -13.439998 0 0.28 14 rectfill -1 nxsetgray -13.719997 0 0.28 14 rectfill -N -grestore -1 L -0 nxsetgray -14 14 0 0 line -0 0 T -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -/Helvetica findfont 12 scalefont [1 0 0 -1 0 0] makefont -12 -exch -defineuserobject -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1063] concat -12 execuserobject setfont -0 nxsetgray -324 536 moveto (F2) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1063] concat -12 execuserobject setfont -0 nxsetgray -220 536 moveto (F1) show -grestore -grestore -0 0 0.15 1 10 SU -[4] 0 setdash -196 490 T -N -gsave N -0 0 m 42 0 l -clip -N -0 setlinewidth -0 nxsetgray -0.020402 nxsetgray -0.040819 nxsetgray -0.06122 nxsetgray -0.081637 nxsetgray -0.102039 nxsetgray -0.122456 nxsetgray -0.142857 nxsetgray -0.163259 nxsetgray -0.183676 nxsetgray -0.204077 nxsetgray -0.224494 nxsetgray -0.244896 nxsetgray -0.265313 nxsetgray -0.285714 nxsetgray -0.306116 nxsetgray -0.326533 nxsetgray -0.346934 nxsetgray -0.367351 nxsetgray -0.387753 nxsetgray -0.40817 nxsetgray -0.428571 nxsetgray -0.448973 nxsetgray -0.46939 nxsetgray -0.489792 nxsetgray -0.510208 nxsetgray -0.53061 nxsetgray -0.551027 nxsetgray -0.571429 nxsetgray -0.59183 nxsetgray -0.612247 nxsetgray -0.632649 nxsetgray -0.653066 nxsetgray -0.673467 nxsetgray -0.693884 nxsetgray -0.714286 nxsetgray -0.734687 nxsetgray -0.755104 nxsetgray -0.775506 nxsetgray -0.795923 nxsetgray -0.816324 nxsetgray -0.836741 nxsetgray -0.857143 nxsetgray -0.877544 nxsetgray -0.897961 nxsetgray -0.918363 nxsetgray -0.93878 nxsetgray -0.959181 nxsetgray -0.979598 nxsetgray -1 nxsetgray -N -grestore -0.15 L -0 nxsetgray -42 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -[4] 0 setdash -322 490 T -N -gsave N -0 0 m 42 0 l -clip -N -0 setlinewidth -0 nxsetgray -0.020402 nxsetgray -0.040819 nxsetgray -0.06122 nxsetgray -0.081637 nxsetgray -0.102039 nxsetgray -0.122456 nxsetgray -0.142857 nxsetgray -0.163259 nxsetgray -0.183676 nxsetgray -0.204077 nxsetgray -0.224494 nxsetgray -0.244896 nxsetgray -0.265313 nxsetgray -0.285714 nxsetgray -0.306116 nxsetgray -0.326533 nxsetgray -0.346934 nxsetgray -0.367351 nxsetgray -0.387753 nxsetgray -0.40817 nxsetgray -0.428571 nxsetgray -0.448973 nxsetgray -0.46939 nxsetgray -0.489792 nxsetgray -0.510208 nxsetgray -0.53061 nxsetgray -0.551027 nxsetgray -0.571429 nxsetgray -0.59183 nxsetgray -0.612247 nxsetgray -0.632649 nxsetgray -0.653066 nxsetgray -0.673467 nxsetgray -0.693884 nxsetgray -0.714286 nxsetgray -0.734687 nxsetgray -0.755104 nxsetgray -0.775506 nxsetgray -0.795923 nxsetgray -0.816324 nxsetgray -0.836741 nxsetgray -0.857143 nxsetgray -0.877544 nxsetgray -0.897961 nxsetgray -0.918363 nxsetgray -0.93878 nxsetgray -0.959181 nxsetgray -0.979598 nxsetgray -1 nxsetgray -N -grestore -0.15 L -0 nxsetgray -42 0 0 0 line -0 0 T -grestore -0 0 3 1 10 SU -322 490 T -N -gsave N -0 0 m 14 14 l -clip -N -0 setlinewidth -0 nxsetgray -0 0 0.28 14 rectfill -0.020402 nxsetgray -0.28 0 0.28 14 rectfill -0.040819 nxsetgray -0.56 0 0.28 14 rectfill -0.06122 nxsetgray -0.84 0 0.28 14 rectfill -0.081637 nxsetgray -1.12 0 0.28 14 rectfill -0.102039 nxsetgray -1.4 0 0.28 14 rectfill -0.122456 nxsetgray -1.68 0 0.28 14 rectfill -0.142857 nxsetgray -1.96 0 0.28 14 rectfill -0.163259 nxsetgray -2.24 0 0.28 14 rectfill -0.183676 nxsetgray -2.52 0 0.28 14 rectfill -0.204077 nxsetgray -2.8 0 0.28 14 rectfill -0.224494 nxsetgray -3.08 0 0.28 14 rectfill -0.244896 nxsetgray -3.36 0 0.28 14 rectfill -0.265313 nxsetgray -3.64 0 0.28 14 rectfill -0.285714 nxsetgray -3.92 0 0.28 14 rectfill -0.306116 nxsetgray -4.2 0 0.28 14 rectfill -0.326533 nxsetgray -4.48 0 0.28 14 rectfill -0.346934 nxsetgray -4.76 0 0.28 14 rectfill -0.367351 nxsetgray -5.04 0 0.28 14 rectfill -0.387753 nxsetgray -5.320001 0 0.28 14 rectfill -0.40817 nxsetgray -5.600001 0 0.28 14 rectfill -0.428571 nxsetgray -5.880001 0 0.28 14 rectfill -0.448973 nxsetgray -6.160001 0 0.28 14 rectfill -0.46939 nxsetgray -6.440001 0 0.28 14 rectfill -0.489792 nxsetgray -6.720002 0 0.28 14 rectfill -0.510208 nxsetgray -7.000002 0 0.28 14 rectfill -0.53061 nxsetgray -7.280002 0 0.28 14 rectfill -0.551027 nxsetgray -7.560002 0 0.28 14 rectfill -0.571429 nxsetgray -7.840003 0 0.28 14 rectfill -0.59183 nxsetgray -8.120003 0 0.28 14 rectfill -0.612247 nxsetgray -8.400002 0 0.28 14 rectfill -0.632649 nxsetgray -8.680002 0 0.28 14 rectfill -0.653066 nxsetgray -8.960002 0 0.28 14 rectfill -0.673467 nxsetgray -9.240002 0 0.28 14 rectfill -0.693884 nxsetgray -9.520001 0 0.28 14 rectfill -0.714286 nxsetgray -9.800001 0 0.28 14 rectfill -0.734687 nxsetgray -10.080001 0 0.28 14 rectfill -0.755104 nxsetgray -10.360001 0 0.28 14 rectfill -0.775506 nxsetgray -10.64 0 0.28 14 rectfill -0.795923 nxsetgray -10.92 0 0.28 14 rectfill -0.816324 nxsetgray -11.2 0 0.28 14 rectfill -0.836741 nxsetgray -11.48 0 0.28 14 rectfill -0.857143 nxsetgray -11.759999 0 0.28 14 rectfill -0.877544 nxsetgray -12.039999 0 0.28 14 rectfill -0.897961 nxsetgray -12.319999 0 0.28 14 rectfill -0.918363 nxsetgray -12.599998 0 0.28 14 rectfill -0.93878 nxsetgray -12.879998 0 0.28 14 rectfill -0.959181 nxsetgray -13.159998 0 0.28 14 rectfill -0.979598 nxsetgray -13.439998 0 0.28 14 rectfill -1 nxsetgray -13.719997 0 0.28 14 rectfill -N -grestore -3 L -0 nxsetgray -14 14 0 0 line -0 0 T -grestore -0 0 3 1 10 SU -196 518 T -N -gsave N -0 14 m 14 0 l -clip -N -0 setlinewidth -0 nxsetgray -0 0 0.28 14 rectfill -0.020402 nxsetgray -0.28 0 0.28 14 rectfill -0.040819 nxsetgray -0.56 0 0.28 14 rectfill -0.06122 nxsetgray -0.84 0 0.28 14 rectfill -0.081637 nxsetgray -1.12 0 0.28 14 rectfill -0.102039 nxsetgray -1.4 0 0.28 14 rectfill -0.122456 nxsetgray -1.68 0 0.28 14 rectfill -0.142857 nxsetgray -1.96 0 0.28 14 rectfill -0.163259 nxsetgray -2.24 0 0.28 14 rectfill -0.183676 nxsetgray -2.52 0 0.28 14 rectfill -0.204077 nxsetgray -2.8 0 0.28 14 rectfill -0.224494 nxsetgray -3.08 0 0.28 14 rectfill -0.244896 nxsetgray -3.36 0 0.28 14 rectfill -0.265313 nxsetgray -3.64 0 0.28 14 rectfill -0.285714 nxsetgray -3.92 0 0.28 14 rectfill -0.306116 nxsetgray -4.2 0 0.28 14 rectfill -0.326533 nxsetgray -4.48 0 0.28 14 rectfill -0.346934 nxsetgray -4.76 0 0.28 14 rectfill -0.367351 nxsetgray -5.04 0 0.28 14 rectfill -0.387753 nxsetgray -5.320001 0 0.28 14 rectfill -0.40817 nxsetgray -5.600001 0 0.28 14 rectfill -0.428571 nxsetgray -5.880001 0 0.28 14 rectfill -0.448973 nxsetgray -6.160001 0 0.28 14 rectfill -0.46939 nxsetgray -6.440001 0 0.28 14 rectfill -0.489792 nxsetgray -6.720002 0 0.28 14 rectfill -0.510208 nxsetgray -7.000002 0 0.28 14 rectfill -0.53061 nxsetgray -7.280002 0 0.28 14 rectfill -0.551027 nxsetgray -7.560002 0 0.28 14 rectfill -0.571429 nxsetgray -7.840003 0 0.28 14 rectfill -0.59183 nxsetgray -8.120003 0 0.28 14 rectfill -0.612247 nxsetgray -8.400002 0 0.28 14 rectfill -0.632649 nxsetgray -8.680002 0 0.28 14 rectfill -0.653066 nxsetgray -8.960002 0 0.28 14 rectfill -0.673467 nxsetgray -9.240002 0 0.28 14 rectfill -0.693884 nxsetgray -9.520001 0 0.28 14 rectfill -0.714286 nxsetgray -9.800001 0 0.28 14 rectfill -0.734687 nxsetgray -10.080001 0 0.28 14 rectfill -0.755104 nxsetgray -10.360001 0 0.28 14 rectfill -0.775506 nxsetgray -10.64 0 0.28 14 rectfill -0.795923 nxsetgray -10.92 0 0.28 14 rectfill -0.816324 nxsetgray -11.2 0 0.28 14 rectfill -0.836741 nxsetgray -11.48 0 0.28 14 rectfill -0.857143 nxsetgray -11.759999 0 0.28 14 rectfill -0.877544 nxsetgray -12.039999 0 0.28 14 rectfill -0.897961 nxsetgray -12.319999 0 0.28 14 rectfill -0.918363 nxsetgray -12.599998 0 0.28 14 rectfill -0.93878 nxsetgray -12.879998 0 0.28 14 rectfill -0.959181 nxsetgray -13.159998 0 0.28 14 rectfill -0.979598 nxsetgray -13.439998 0 0.28 14 rectfill -1 nxsetgray -13.719997 0 0.28 14 rectfill -N -grestore -3 L -0 nxsetgray -14 -14 0 14 line -0 0 T -grestore -0 0 3 1 10 SU -336 448 T -N -gsave N -0 0 m 42 0 l -clip -N -0 setlinewidth -0 nxsetgray -0.020402 nxsetgray -0.040819 nxsetgray -0.06122 nxsetgray -0.081637 nxsetgray -0.102039 nxsetgray -0.122456 nxsetgray -0.142857 nxsetgray -0.163259 nxsetgray -0.183676 nxsetgray -0.204077 nxsetgray -0.224494 nxsetgray -0.244896 nxsetgray -0.265313 nxsetgray -0.285714 nxsetgray -0.306116 nxsetgray -0.326533 nxsetgray -0.346934 nxsetgray -0.367351 nxsetgray -0.387753 nxsetgray -0.40817 nxsetgray -0.428571 nxsetgray -0.448973 nxsetgray -0.46939 nxsetgray -0.489792 nxsetgray -0.510208 nxsetgray -0.53061 nxsetgray -0.551027 nxsetgray -0.571429 nxsetgray -0.59183 nxsetgray -0.612247 nxsetgray -0.632649 nxsetgray -0.653066 nxsetgray -0.673467 nxsetgray -0.693884 nxsetgray -0.714286 nxsetgray -0.734687 nxsetgray -0.755104 nxsetgray -0.775506 nxsetgray -0.795923 nxsetgray -0.816324 nxsetgray -0.836741 nxsetgray -0.857143 nxsetgray -0.877544 nxsetgray -0.897961 nxsetgray -0.918363 nxsetgray -0.93878 nxsetgray -0.959181 nxsetgray -0.979598 nxsetgray -1 nxsetgray -N -grestore -3 L -0 nxsetgray -42 0 0 0 line -0 42 0 arrow -0 0 T -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 867] concat -12 execuserobject setfont -0 nxsetgray -374 438 moveto (F3) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1001] concat -/Symbol findfont 12 scalefont [1 0 0 -1 0 0] makefont -438 -exch -defineuserobject -438 execuserobject setfont -0 nxsetgray -347 505 moveto (q) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -438 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1001] concat -438 execuserobject setfont -0 nxsetgray -206 505 moveto (q) show -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Symbol -%%+ Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype06/prob07.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype06/prob07.gif deleted file mode 100755 index 6a457fc88..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype06/prob07.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype06/prob08.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype06/prob08.eps deleted file mode 100755 index 450185e16..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype06/prob08.eps +++ /dev/null @@ -1,821 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: hecht4.24.create -%%Creator: Create -%%CreationDate: Mon Jan 6 17:48:13 1997 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 156 152 425 441 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr($"Ce'ed"3TUk_(r?-O^tOBu]N+H%;hjUe5o1WY>^P!($h4BJgGO7=[Y6!(7) -% \mqRIuB[`\MP%8E[!!(lq"[KOL+UDiSl5`2mDV`'W,FTLG.8pEm&]Y$23![5HJ"D7>EpSk9> -% ekL\?=g?b/_[q+qc3ckWU&0?A'90*2L4t*6410DhYOZ=>e!iAUtM;n!!*r@Y\Mu7J,nEHP92 -% %DpKGA"0uj;o)ISBJ-*!;&#I4LU:cJGq!]^@e8M4o9IkA]0+.@'p_M3I]V`b!aAbLX3K*!&S -% _!'5%GmBpc!4Z&PC]8urRsB+4iYuj3'R-'XoL[&m5GU\KaTL(!(W_)WT^WZt!Gi>R.cd"A)e -% SALefFh['m<]-OAT]KAc8=3+--/J-t4;ERY[\hXsLU9M?#X2>6,t$kZ#kTdK9mGq>EK@\rR"$7Lo&iR5^]5J/?K#=n^=Ap^&^-sa$k#!6Y+ -% UF%sV[+#S+D76>$`b2;HXst`Pd2p(I!OFXScZ>?DR0G5oiAM`LNF/O#/aE/OP5Q.p[m\60?T+r-D+TqERU -% )b@``?i;$/"bM#[kD*:,K#Vk[IB(s_B"Hf$]NnZK4_/V[%J=(@'?c13V(]\TgE]LR/g%MZIM -% ?Qc#qnDr7rHNOp=>L!>$)cES20Z*])gt?g47,q+_F8!!ca]2,oFDU%[qJNQUdm]&(1 -% AE#tkhJ2EN%UL&)h2qd>!P'_!\)qpV*jb$WF36Fte-BGGp;nQTmb.0J:?]_h"/=Tq?e'4E"1 -% iEsH[EJV%m7><"5Nh>GJEbR%:0rGS,3PH,sRV`;1TPh!!FEpr$?-.B_#K`^_]+er=Ob-A;&MIVJ8&(@.QN@(*nl]]U'ZdamTm,sW:K5_d,W7]6e^Y -% sAAP>%C!*l^F`ek7Pj5HmfF6^;:ln<:GWm\QeMZQpR2M0n?%Jc5*kk!&'X7MC1er)&ERnlg1 -% <%3qs%7Y%I_BL66gmgnERSF%-[\NHf^W`#]4mJ2]*!MC8mt'cD6:4d:[*?b$=?%.M4jm;?&E -% ']e]g)*Tm3#"4geKI/_DaS!*HMB.&9lme-Q9:gm!Fi,B[lI*EgP-T^hqd=#4GtUW8P'N0pc6 -% V^X#s=G!#@ETT!M5@T^WU@d=r!GKREBa:)XOCeJ6E(igF;3J2KNoR?c#<[HH'EBP3"8l8 -% uCBCB"A`OsmK6^!!,ncg?/8#sW\'/"/_3TYn:]VD0c$FsSRq`jQei%*^*bd!e$>"`Q&U7&^V -% N[EfG[Pa0&PiPV1NW9f$U1>]c\1h0GTe&@8N4f+`>-m!E"H_+^_+mV7SS@C]dF\#qEL=$:7. -% X$.8L>u8Cec:<'W5_7g]%>=h^RdXlp6jZ.Dg:#$%Kebu?.(aXn'8Ff3i$U/QtL1$,s/MK<%b -% 3j7Rul#gVW4mf8F!6N![*itGV/ZX';LKCA$oTaFp.#5%FL=3T+45&7sp,iZ2>n/ET^78kK._ -% 7&?4Z3k621Sk7K;YZbEN1q!WhJ!?RSn6_)Js"5(`dAEWaRfX7AUl)e(EC+`qHWU7HY$08Wa0 -% QTaZ1=K2[enPX#3l!1BcR)G3qYY:*6Me9"Q!WRcn+%$E*E-%l<-+G1NP?jp>n!uL#`#;a/G$ -% Xn"l*7CKd1VCO5FJ+7'fY@[bp3.!j^rRK\J:o\^_%&b&8f2`u#6f(?%:P@9);%1V(cWAL&sb -% n='qjD<]R^N1@./PgY[3(*TE[:3_AN\Y"ui&3`VZc)).(Np#EM.Z1#N*Q,"r1nciFY5W3D?Q -% E!$ripW#"=JIRWuLD\B'##(&n%@0-;nj9n01r'-UAUjk+s*+`EB(?@F+CtM0iOrrMD]RKgLA -% R:q^G;HJJ&h'80t8#&k-]/\4V<50i1^il-k-Eq@LN5b5\8["-$R$a8ubGB.cW*6%+)%]pA-_ -% ^o<%J0o=NoZ^=Nbn(,1:KN*n[p\Af&>n:W`jl3qU@_]KAnIb@!GJrns1.V>rD;9X_2cPXX"^ -% 2]0W/;G9rRFa[;5n%dmA0p,@aA/&;%%r$$)s![70c2^4F0OaYgL/*1L4KcKNFElP]%:Ur1Rm -% 4uh\^aq%!:W`SRDMM2^i([I3un)[8<;@I"`GmVH]dsq,L`V>+:NV!%KJShY1KJ^AZm[XNq@@ -% !7,)h"[6mWa0=J+[sHR?rj[\7$u6E4R+.NuLETH/=D5D-bl,W[Z55mUj%D&J!-!`=q"%)NgQ:d>TC<8&`a -% &i`>o%W<1LQf&DT-KrE)PX.Qj!O,ukJoD@K&qH6!j8cl=[rGha-p(6D?4dIh!!$i>!I=nL@a -% nK$-W\$)<;iU5#FL#L#[GKI6B,J'2dh/C+US2l!A/7gH^.LAjB#qMJdK1O.#^hp<&n$;$aB,&\K -% UE!G'F7VQp_?dW!DSqb.l9mM:`:H!L/)fDZfP2p[8IXI:L>MPC<2-1=GG,m;8bm/%F>5V5S. -% @c#%rGjFFY%7&cgOW!i7%B?h#.D6$<_4J6V4g?-%V?k^ngC+HcFu:Ltg6pJr632BK2,`)$ah -% E/0r##a4t;-Wk>S`J(h09h&]I(8ZnMaGQS1Df?U4u!5QSiJ)98XBZD -% `.=#Wg7DLOl[a*tePd0JR?CIYZsA2$Js363n`E!lapLE0-%%Lb&ZFLFUqS]#@H_![?24#M>u -% 7U]jblLeKWrMH;'`Pu%PD(^NfcNg$Dq&7p^)(l^rEK%AQWor*YMA2Gl+!Wa_ob#j`R(lJY+N -% F"T(%/CWEOc9p?=;'kZ,7oq>5`i.9Kc+T/cT$]fBJ]5S("FUngPCpH.#Ro35V3*?!Qe7V\WW -% 2%O?Abh*@[3+@?'/QPP5??3N8'7(lm4q!E5A9sJCXYTh:`?=[*MLh#rVuq'J<0303030606060C0C0C181818303030606060C0C0C0818181>fg bk -:b -24 16 208 19 rF -:e -0 G -24 35 -1 1 232 34 1 24 34 @a -33 35 -1 1 52 88 1 33 34 @a --1 -1 52 89 1 1 213 34 @b --1 -1 52 107 1 1 51 88 @b -35 94 :M - gsave newpath -33 106 moveto -70 106 lineto -70 134 lineto -33 134 lineto -closepath eoclip --4 -4 56 166 4 4 92 120 @b -.05 G --4 -4 53 163 4 4 89 117 @b -.1 G --4 -4 51 161 4 4 87 115 @b -.15 G --4 -4 49 159 4 4 85 113 @b -.2 G --4 -4 47 157 4 4 83 111 @b -.25 G --4 -4 45 155 4 4 81 109 @b -.3 G --4 -4 43 153 4 4 79 107 @b -.35 G --4 -4 41 151 4 4 77 105 @b -.4 G --4 -4 39 149 4 4 75 103 @b -.45 G --4 -4 37 147 4 4 73 101 @b -.5 G --4 -4 35 145 4 4 71 99 @b -.55 G --4 -4 33 143 4 4 69 97 @b -.6 G --4 -4 31 141 4 4 67 95 @b -.65 G --4 -4 29 139 4 4 65 93 @b -.7 G --4 -4 27 137 4 4 63 91 @b -.75 G --4 -4 25 135 4 4 61 89 @b -.8 G --4 -4 23 133 4 4 59 87 @b -.85 G --4 -4 21 131 4 4 57 85 @b -.9 G --4 -4 19 129 4 4 55 83 @b -.95 G --4 -4 17 127 4 4 53 81 @b -1 G --4 -4 15 125 4 4 51 79 @b --4 -4 13 123 4 4 49 77 @b -.95 G --4 -4 10 120 4 4 46 74 @b -.9 G --4 -4 8 118 4 4 44 72 @b -.85 G --4 -4 6 116 4 4 42 70 @b -.8 G --4 -4 4 114 4 4 40 68 @b -.75 G --4 -4 2 112 4 4 38 66 @b -.7 G --4 -4 0 110 4 4 36 64 @b -.65 G --4 -4 -2 108 4 4 34 62 @b -.6 G --4 -4 -4 106 4 4 32 60 @b -.55 G --4 -4 -6 104 4 4 30 58 @b -.5 G --4 -4 -8 102 4 4 28 56 @b -.45 G --4 -4 -10 100 4 4 26 54 @b -.4 G --4 -4 -12 98 4 4 24 52 @b -.35 G --4 -4 -14 96 4 4 22 50 @b -.3 G --4 -4 -16 94 4 4 20 48 @b -.25 G --4 -4 -18 92 4 4 18 46 @b -.2 G --4 -4 -20 90 4 4 16 44 @b -.15 G --4 -4 -22 88 4 4 14 42 @b -.1 G --4 -4 -24 86 4 4 12 40 @b -.05 G --4 -4 -26 84 4 4 10 38 @b -0 G --4 -4 -28 82 4 4 8 36 @b -4 lw --32 78 :M - grestore -1 lw -33.5 106.5 36 27 rS -39 114 18 14 rC -gR -gS 34 78 28 50 rC -42 124 :M -f0_12 sf -(W)S -gR -gS 55 73 18 11 rC -gR -gS 50 37 28 47 rC -55 81 :M -f1_9 sf --.303(90)A -cF -f2_9 sf --.303A -sf -gR -gS 41 82 9 12 rC -gR -gS 36 46 19 48 rC -41 91 :M -f1_10 sf -(O)S -gR -gS 32 57 9 12 rC -gR -gS 27 21 19 48 rC -32 66 :M -f1_10 sf -(A)S -gR -gS 145 60 11 12 rC -gR -gS 140 24 21 48 rC -145 69 :M -f1_10 sf -(B)S -gR -gS 172 35 11 11 rC -gR -gS 167 0 21 46 rC -172 44 :M -f2_10 sf -(a)S -gR -endp -%%Trailer -end -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype06/prob09.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype06/prob09.gif deleted file mode 100755 index 66f2f3712..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype06/prob09.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype06/prob10a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype06/prob10a.eps deleted file mode 100755 index bbe62901e..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype06/prob10a.eps +++ /dev/null @@ -1,899 +0,0 @@ -%!PS-Adobe-3.0 EPSF-3.0 -%%BoundingBox: 18 569 236 766 -%%Title: (protractor \(DR\)) -%%Creator: (ClarisWorks 3.0: LaserWriter 8 8.2) -%%CreationDate: (21:27 Tuesday, December 31, 1996) -%%For: (Alberding) -%%Pages: 1 -%%DocumentFonts: Helvetica Symbol -%%DocumentNeededFonts: Helvetica Symbol -%%DocumentSuppliedFonts: -%%DocumentData: Clean7Bit -%%PageOrder: Ascend -%%Orientation: Portrait -%%DocumentMedia: Default 612 792 0 () () -%ADO_ImageableArea: 15 6 597 773 -%%EndComments -userdict begin/dscInfo 5 dict dup begin -/Title(protractor \(DR\))def -/Creator(ClarisWorks 3.0: LaserWriter 8 8.2)def -/CreationDate(21:27 Tuesday, December 31, 1996)def -/For(Alberding)def -/Pages 1 def -end def end -/md 136 dict def md begin/currentpacking where {pop /sc_oldpacking currentpacking def true setpacking}if -%%BeginFile: adobe_psp_basic -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/bd{bind def}bind def -/xdf{exch def}bd -/xs{exch store}bd -/ld{load def}bd -/Z{0 def}bd -/T/true -/F/false -/:L/lineto -/lw/setlinewidth -/:M/moveto -/rl/rlineto -/rm/rmoveto -/:C/curveto -/:T/translate -/:K/closepath -/:mf/makefont -/gS/gsave -/gR/grestore -/np/newpath -14{ld}repeat -/$m matrix def -/av 81 def -/por true def -/normland false def -/psb-nosave{}bd -/pse-nosave{}bd -/us Z -/psb{/us save store}bd -/pse{us restore}bd -/level2 -/languagelevel where -{ -pop languagelevel 2 ge -}{ -false -}ifelse -def -/featurecleanup -{ -stopped -cleartomark -countdictstack exch sub dup 0 gt -{ -{end}repeat -}{ -pop -}ifelse -}bd -/noload Z -/startnoload -{ -{/noload save store}if -}bd -/endnoload -{ -{noload restore}if -}bd -level2 startnoload -/setjob -{ -statusdict/jobname 3 -1 roll put -}bd -/setcopies -{ -userdict/#copies 3 -1 roll put -}bd -level2 endnoload level2 not startnoload -/setjob -{ -1 dict begin/JobName xdf currentdict end setuserparams -}bd -/setcopies -{ -1 dict begin/NumCopies xdf currentdict end setpagedevice -}bd -level2 not endnoload -/pm Z -/mT Z -/sD Z -/realshowpage Z -/initializepage -{ -/pm save store mT concat -}bd -/endp -{ -pm restore showpage -}def -/$c/DeviceRGB def -/rectclip where -{ -pop/rC/rectclip ld -}{ -/rC -{ -np 4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -clip np -}bd -}ifelse -/rectfill where -{ -pop/rF/rectfill ld -}{ -/rF -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -fill -gR -}bd -}ifelse -/rectstroke where -{ -pop/rS/rectstroke ld -}{ -/rS -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -stroke -gR -}bd -}ifelse -%%EndFile -%%BeginFile: adobe_psp_colorspace_level1 -%%Copyright: Copyright 1991-1993 Adobe Systems Incorporated. All Rights Reserved. -/G/setgray ld -/:F/setrgbcolor ld -%%EndFile -%%BeginFile: adobe_psp_uniform_graphics -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/@a -{ -np :M 0 rl :L 0 exch rl 0 rl :L fill -}bd -/@b -{ -np :M 0 rl 0 exch rl :L 0 rl 0 exch rl fill -}bd -/arct where -{ -pop -}{ -/arct -{ -arcto pop pop pop pop -}bd -}ifelse -/x1 Z -/x2 Z -/y1 Z -/y2 Z -/rad Z -/@q -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -fill -}bd -/@s -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -:K -stroke -}bd -/@i -{ -np 0 360 arc fill -}bd -/@j -{ -gS -np -:T -scale -0 0 .5 0 360 arc -fill -gR -}bd -/@e -{ -np -0 360 arc -:K -stroke -}bd -/@f -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 0 360 arc -:K -$m setmatrix -stroke -}bd -/@k -{ -gS -np -:T -0 0 :M -0 0 5 2 roll -arc fill -gR -}bd -/@l -{ -gS -np -:T -0 0 :M -scale -0 0 .5 5 -2 roll arc -fill -gR -}bd -/@m -{ -np -arc -stroke -}bd -/@n -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 5 -2 roll arc -$m setmatrix -stroke -}bd -%%EndFile -%%BeginFile: adobe_psp_basic_text -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/S/show ld -/A{ -0.0 exch ashow -}bd -/R{ -0.0 exch 32 exch widthshow -}bd -/W{ -0.0 3 1 roll widthshow -}bd -/J{ -0.0 32 4 2 roll 0.0 exch awidthshow -}bd -/V{ -0.0 4 1 roll 0.0 exch awidthshow -}bd -/fcflg true def -/fc{ -fcflg{ -vmstatus exch sub 50000 lt{ -(%%[ Warning: Running out of memory ]%%\r)print flush/fcflg false store -}if pop -}if -}bd -/$f[1 0 0 -1 0 0]def -/:ff{$f :mf}bd -/MacEncoding StandardEncoding 256 array copy def -MacEncoding 39/quotesingle put -MacEncoding 96/grave put -/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis/Udieresis/aacute -/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute/egrave -/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde/oacute -/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex/udieresis -/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/notequal/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdiff/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta/guillemotleft -/guillemotright/ellipsis/space/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide/lozenge -/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright/fi/fl -/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex/Idieresis/Igrave -/Oacute/Ocircumflex/apple/Ograve/Uacute/Ucircumflex/Ugrave/dotlessi/circumflex/tilde -/macron/breve/dotaccent/ring/cedilla/hungarumlaut/ogonek/caron -MacEncoding 128 128 getinterval astore pop -level2 startnoload -/copyfontdict -{ -findfont dup length dict -begin -{ -1 index/FID ne{def}{pop pop}ifelse -}forall -}bd -level2 endnoload level2 not startnoload -/copyfontdict -{ -findfont dup length dict -copy -begin -}bd -level2 not endnoload -md/fontname known not{ -/fontname/customfont def -}if -/Encoding Z -/:mre -{ -copyfontdict -/Encoding MacEncoding def -fontname currentdict -end -definefont :ff def -}bd -/:bsr -{ -copyfontdict -/Encoding Encoding 256 array copy def -Encoding dup -}bd -/pd{put dup}bd -/:esr -{ -pop pop -fontname currentdict -end -definefont :ff def -}bd -/scf -{ -scalefont def -}bd -/scf-non -{ -$m scale :mf setfont -}bd -/ps Z -/fz{/ps xs}bd -/sf/setfont ld -/cF/currentfont ld -/mbf -{ -/makeblendedfont where -{ -pop -makeblendedfont -/ABlend exch definefont -}{ -pop -}ifelse -def -}def -%%EndFile -/currentpacking where {pop sc_oldpacking setpacking}if end -%%EndProlog -%%BeginSetup -md begin -/mT[1 0 0 -1 15 773]def -/sD 16 dict def -%%IncludeFont: Helvetica -%%IncludeFont: Symbol -/f0_1/Helvetica -:mre -/f0_9 f0_1 9 scf -/f1_1/Symbol -:bsr -240/apple pd -:esr -/f1_9 f1_1 9 scf -/Courier findfont[10 0 0 -10 0 0]:mf setfont -%PostScript Hack by Mike Brors 12/7/90 -/DisableNextSetRGBColor - { - userdict begin - /setrgbcolor - { - pop - pop - pop - userdict begin - /setrgbcolor systemdict /setrgbcolor get def - end - } def - end -} bind def -/bcarray where { - pop - bcarray 2 { - /da 4 ps div def - df setfont gsave cs wi - 1 index 0 ne{exch da add exch}if grestore setcharwidth - cs 0 0 smc da 0 smc da da smc 0 da smc c - gray - { gl} - {1 setgray}ifelse - da 2. div dup moveto show - }bind put -} if -% -% Used to snap to device pixels, 1/4th of the pixel in. -/stp { % x y pl x y % Snap To Pixel, pixel (auto stroke adjust) - transform - 0.25 sub round 0.25 add exch - 0.25 sub round 0.25 add exch - itransform -} bind def -/snapmoveto { % x y m - % moveto, auto stroke adjust - stp moveto -} bind def -/snaplineto { % x y l - % lineto, auto stroke adjust - stp lineto -} bind def -%%EndSetup -%%Page: 1 1 -%%BeginPageSetup -initializepage -%%EndPageSetup -gS 0 0 582 767 rC -201 100 11 11 rC -gR -gS 196 64 21 47 rC -203 108 :M -f0_9 sf --.602(0)A -cF -f1_9 sf --.602A -sf -gR -gS 106 8 16 11 rC -gR -gS 101 0 26 19 rC -108 16 :M -f0_9 sf --.303(90)A -cF -f1_9 sf --.303A -sf -gR -gS 5 97 21 11 rC -gR -gS 0 61 31 47 rC -7 105 :M -f0_9 sf --.203(180)A -cF -f1_9 sf --.203A -sf -gR -gS 0 0 582 767 rC -1 G -86.5 -90 0 110.5 104.5 @k -0 G -.016 lw -110.5 104.5 86 -90 0 @m --.016 -.016 110.016 104.016 .016 .016 110 18 @b -110 104.016 -.016 .016 197.016 104 .016 110 104 @a -1 G -86.5 -90 -15 110.5 104.5 @k -0 G -110.5 104.5 86 -90 -15 @m --.016 -.016 110.016 104.016 .016 .016 110 18 @b --.016 -.016 110.016 104.016 .016 .016 194 82 @b -1 G -86.5 -90 -30 110.5 104.5 @k -0 G -110.5 104.5 86 -90 -30 @m --.016 -.016 110.016 104.016 .016 .016 110 18 @b --.016 -.016 110.016 104.016 .016 .016 185 61 @b -1 G -86.5 -90 -45 110.5 104.5 @k -0 G -110.5 104.5 86 -90 -45 @m --.016 -.016 110.016 104.016 .016 .016 110 18 @b --.016 -.016 110.016 104.016 .016 .016 171 43 @b -1 G -86.5 -90 -60 110.5 104.5 @k -0 G -110.5 104.5 86 -90 -60 @m --.016 -.016 110.016 104.016 .016 .016 110 18 @b --.016 -.016 110.016 104.016 .016 .016 153 29 @b -1 G -86.5 -90 -75 110.5 104.5 @k -0 G -110.5 104.5 86 -90 -75 @m --.016 -.016 110.016 104.016 .016 .016 110 18 @b --.016 -.016 110.016 104.016 .016 .016 132 20 @b -1 G -86.5 180 270 110.5 104.5 @k -0 G -110.5 104.5 86 180 270 @m -24 104.016 -.016 .016 110.016 104 .016 24 104 @a --.016 -.016 110.016 104.016 .016 .016 110 18 @b -1 G -86.5 195 270 110.5 104.5 @k -0 G -110.5 104.5 86 195 270 @m -26 82.016 -.016 .016 110.016 104 .016 26 82 @a --.016 -.016 110.016 104.016 .016 .016 110 18 @b -1 G -86.5 210 270 110.5 104.5 @k -0 G -110.5 104.5 86 210 270 @m -35 61.016 -.016 .016 110.016 104 .016 35 61 @a --.016 -.016 110.016 104.016 .016 .016 110 18 @b -1 G -86.5 225 270 110.5 104.5 @k -0 G -110.5 104.5 86 225 270 @m -49 43.016 -.016 .016 110.016 104 .016 49 43 @a --.016 -.016 110.016 104.016 .016 .016 110 18 @b -1 G -86.5 240 270 110.5 104.5 @k -0 G -110.5 104.5 86 240 270 @m -67 29.016 -.016 .016 110.016 104 .016 67 29 @a --.016 -.016 110.016 104.016 .016 .016 110 18 @b -1 G -86.5 255 270 110.5 104.5 @k -0 G -110.5 104.5 86 255 270 @m -88 20.016 -.016 .016 110.016 104 .016 88 20 @a --.016 -.016 110.016 104.016 .016 .016 110 18 @b -110.5 104.5 86 0 90 @m -110 104.016 -.016 .016 197.016 104 .016 110 104 @a --.016 -.016 110.016 191.016 .016 .016 110 104 @b -15 90 172 173 110.5 104 @n -110 104.016 -.016 .016 194.016 126 .016 110 104 @a --.016 -.016 110.016 191.016 .016 .016 110 104 @b -30 90 172 173 110.5 104 @n -110 104.016 -.016 .016 185.016 147 .016 110 104 @a --.016 -.016 110.016 191.016 .016 .016 110 104 @b -45 90 172 173 110.5 104 @n -110 104.016 -.016 .016 171.016 165 .016 110 104 @a --.016 -.016 110.016 191.016 .016 .016 110 104 @b -60 90 172 173 110.5 104 @n -110 104.016 -.016 .016 153.016 179 .016 110 104 @a --.016 -.016 110.016 191.016 .016 .016 110 104 @b -75 90 172 173 110.5 104 @n -110 104.016 -.016 .016 132.016 188 .016 110 104 @a --.016 -.016 110.016 191.016 .016 .016 110 104 @b -110.5 104.5 86 90 180 @m --.016 -.016 110.016 191.016 .016 .016 110 104 @b -24 104.016 -.016 .016 110.016 104 .016 24 104 @a -90 165 172 173 110.5 104 @n --.016 -.016 110.016 191.016 .016 .016 110 104 @b --.016 -.016 26.016 126.016 .016 .016 110 104 @b -90 150 172 173 110.5 104 @n --.016 -.016 110.016 191.016 .016 .016 110 104 @b --.016 -.016 35.016 147.016 .016 .016 110 104 @b -90 135 172 173 110.5 104 @n --.016 -.016 110.016 191.016 .016 .016 110 104 @b --.016 -.016 49.016 165.016 .016 .016 110 104 @b -90 120 172 173 110.5 104 @n --.016 -.016 110.016 191.016 .016 .016 110 104 @b --.016 -.016 67.016 179.016 .016 .016 110 104 @b -90 105 172 173 110.5 104 @n --.016 -.016 110.016 191.016 .016 .016 110 104 @b --.016 -.016 88.016 188.016 .016 .016 110 104 @b --.016 -.016 188.016 109.016 .016 .016 188 100 @b --.016 -.016 179.016 109.016 .016 .016 179 100 @b --.016 -.016 170.016 109.016 .016 .016 170 100 @b --.016 -.016 162.016 109.016 .016 .016 162 100 @b --.016 -.016 153.016 109.016 .016 .016 153 100 @b --.016 -.016 144.016 109.016 .016 .016 144 100 @b --.016 -.016 136.016 109.016 .016 .016 136 100 @b --.016 -.016 127.016 109.016 .016 .016 127 100 @b --.016 -.016 119.016 109.016 .016 .016 119 100 @b --.016 -.016 110.016 109.016 .016 .016 110 100 @b --.016 -.016 101.016 109.016 .016 .016 101 100 @b --.016 -.016 93.016 109.016 .016 .016 93 100 @b --.016 -.016 84.016 109.016 .016 .016 84 100 @b --.016 -.016 75.016 109.016 .016 .016 75 100 @b --.016 -.016 67.016 109.016 .016 .016 67 100 @b --.016 -.016 58.016 109.016 .016 .016 58 100 @b --.016 -.016 50.016 109.016 .016 .016 50 100 @b --.016 -.016 41.016 109.016 .016 .016 41 100 @b --.016 -.016 32.016 109.016 .016 .016 32 100 @b --.016 -.016 24.016 109.016 .016 .016 24 100 @b --.016 -.016 196.016 109.016 .016 .016 196 100 @b -106 182.016 -.016 .016 115.016 182 .016 106 182 @a -106 174.016 -.016 .016 115.016 174 .016 106 174 @a -106 165.016 -.016 .016 115.016 165 .016 106 165 @a -106 156.016 -.016 .016 115.016 156 .016 106 156 @a -106 148.016 -.016 .016 115.016 148 .016 106 148 @a -106 139.016 -.016 .016 115.016 139 .016 106 139 @a -106 131.016 -.016 .016 115.016 131 .016 106 131 @a -106 122.016 -.016 .016 115.016 122 .016 106 122 @a -106 113.016 -.016 .016 115.016 113 .016 106 113 @a -106 105.016 -.016 .016 115.016 105 .016 106 105 @a -106 96.016 -.016 .016 115.016 96 .016 106 96 @a -106 87.016 -.016 .016 115.016 87 .016 106 87 @a -106 79.016 -.016 .016 115.016 79 .016 106 79 @a -106 70.016 -.016 .016 115.016 70 .016 106 70 @a -106 62.016 -.016 .016 115.016 62 .016 106 62 @a -106 53.016 -.016 .016 115.016 53 .016 106 53 @a -106 44.016 -.016 .016 115.016 44 .016 106 44 @a -106 36.016 -.016 .016 115.016 36 .016 106 36 @a -106 27.016 -.016 .016 115.016 27 .016 106 27 @a -106 18.016 -.016 .016 115.016 18 .016 106 18 @a -106 191.016 -.016 .016 115.016 191 .016 106 191 @a -128 12 16 11 rC -gR -gS 123 0 26 23 rC -130 20 :M -f0_9 sf --.303(75)A -cF -f1_9 sf --.303A -sf -gR -gS 151 21 16 11 rC -gR -gS 146 0 26 32 rC -153 29 :M -f0_9 sf --.303(60)A -cF -f1_9 sf --.303A -sf -gR -gS 171 38 16 11 rC -gR -gS 166 2 26 47 rC -173 46 :M -f0_9 sf --.303(45)A -cF -f1_9 sf --.303A -sf -gR -gS 186 54 16 11 rC -gR -gS 181 18 26 47 rC -188 62 :M -f0_9 sf --.303(30)A -cF -f1_9 sf --.303A -sf -gR -gS 196 77 16 11 rC -gR -gS 191 41 26 47 rC -198 85 :M -f0_9 sf --.303(15)A -cF -f1_9 sf --.303A -sf -gR -gS 77 11 21 11 rC -gR -gS 72 0 31 22 rC -79 19 :M -f0_9 sf --.203(105)A -cF -f1_9 sf --.203A -sf -gR -gS 56 20 21 11 rC -gR -gS 51 0 31 31 rC -58 28 :M -f0_9 sf --.203(120)A -cF -f1_9 sf --.203A -sf -gR -gS 36 35 21 11 rC -gR -gS 31 0 31 46 rC -38 43 :M -f0_9 sf --.203(135)A -cF -f1_9 sf --.203A -sf -gR -gS 19 54 21 11 rC -gR -gS 14 18 31 47 rC -21 62 :M -f0_9 sf --.203(150)A -cF -f1_9 sf --.203A -sf -gR -gS 9 76 21 11 rC -gR -gS 4 40 31 47 rC -11 84 :M -f0_9 sf --.203(165)A -cF -f1_9 sf --.203A -sf -gR -gS 196 124 20 11 rC -gR -gS 191 88 30 47 rC -197 132 :M -f0_9 sf --.203A -cF -f1_9 sf --.203A -sf -gR -gS 185 147 21 11 rC -gR -gS 180 111 31 47 rC -186 155 :M -f0_9 sf --.203A -cF -f1_9 sf --.203A -sf -gR -gS 169 166 21 12 rC -gR -gS 164 130 31 48 rC -170 174 :M -f0_9 sf --.203A -cF -f1_9 sf --.203A -sf -gR -gS 152 182 21 11 rC -gR -gS 147 146 31 47 rC -153 190 :M -f0_9 sf --.203A -cF -f1_9 sf --.203A -sf -gR -gS 127 190 21 11 rC -gR -gS 122 154 31 47 rC -128 198 :M -f0_9 sf --.203A -cF -f1_9 sf --.203A -sf -gR -gS 102 194 21 11 rC -gR -gS 97 158 31 47 rC -103 202 :M -f0_9 sf --.203A -cF -f1_9 sf --.203A -sf -gR -gS 76 191 27 11 rC -gR -gS 71 155 37 47 rC -78 199 :M -f0_9 sf --.153(\320105)A -cF -f1_9 sf --.153A -sf -gR -gS 51 182 27 12 rC -gR -gS 46 146 37 48 rC -53 190 :M -f0_9 sf --.153(\320120)A -cF -f1_9 sf --.153A -sf -gR -gS 28 169 27 12 rC -gR -gS 23 133 37 48 rC -30 177 :M -f0_9 sf --.153(\320135)A -cF -f1_9 sf --.153A -sf -gR -gS 12 149 24 12 rC -gR -gS 7 113 34 48 rC -13 157 :M -f0_9 sf --.153(\320150)A -cF -f1_9 sf --.153A -sf -gR -gS 4 126 24 12 rC -gR -gS 0 90 33 48 rC -5 134 :M -f0_9 sf --.153(\320165)A -cF -f1_9 sf --.153A -sf -gR -endp -%%Trailer -end -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype06/prob10a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype06/prob10a.gif deleted file mode 100755 index d25793a90..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype06/prob10a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob02a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob02a.eps deleted file mode 100755 index ea199552c..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob02a.eps +++ /dev/null @@ -1,452 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: hw3p16f.eps -%%CreationDate: 9/4/1994 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%+ Helvetica -%%+ Symbol -%%BoundingBox:132 470 448 606 -%%EndComments -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica/Helvetica 0 Z -%%EndEncoding -%%BeginEncoding: _Symbol Symbol -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Symbol/Symbol 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -2541 5356 2697 4731 2853 4731 2 P -1 sg fill -gr -gs -2541 5356 2697 4731 2853 4731 2 P -1.25 slw 0 sg str -gr -gs -5354 4106 5428 4264 5280 4264 2 P -0 sg fill -gr -gs -5354 4731 5280 4573 5428 4573 2 P -0 sg fill -gr -gs -5354.625 4106.625 m -5354.625 4731.625 L -1.25 slw 0 sg str -gr -gs -5197.625 4106.625 m -5588.625 4106.625 L -1.25 slw 0 sg str -gr -gs -5380 4306 5484 4531 R -1 sg fill -gr -/_Times-Roman ff [208 0 0 -208 0 0] mf sf -5380 4462 m 0 sg (h) show -gs -3526 4400 3559 4431 3579 4453 3597 4476 3613 4501 3628 4527 3641 4553 3652 4580 -3653 4583 8 P -1.25 slw 0 sg str -gr -gs -3397 4324 3545 4375 3499 4442 2 P -0 sg fill -gr -gs -3679 4731 3682 4575 3603 4595 2 P -0 sg fill -gr -gs -3764 4095 4023 4465 3796 4624 3537 4254 3 P -1 sg fill -gr -gs 3780 4359 t 55 rotate -3780 -4359 t -/_Helvetica ff [208 0 0 -208 0 0] mf sf -3554 4429 m 0 sg (69\241 ) show -gr -gs -3713 3481 3725 3655 3588 3602 2 P -0 sg fill -gr -gs -3244.5 4731.5 m -3713.5 3481.5 L -35 slw 0 sg str -gr -gs -3596 4154 4012 4449 R -1 sg fill -gr -/_Symbol ff [208 0 0 -208 0 0] mf sf -3596 4379 m 0 sg (q ) show -gs -0 slc -newpath -3127.5 3481.5 6877.5 7231.5 0 90 A -35 slw 0 sg str -gr -gs -0 slc -newpath -3127.5 3481.5 6877.5 7231.5 90 180 A -35 slw 0 sg str -gr -gs -5002 3481 5076 3639 4928 3639 2 P -0 sg fill -gr -gs -5002 4731 4928 4573 5076 4573 2 P -0 sg fill -gr -gs -5002.625 3481.625 m -5002.625 4731.625 L -1.25 slw 0 sg str -gr -gs -4815 3993 4954 4219 R -1 sg fill -gr -/_Times-Roman ff [208 0 0 -208 0 0] mf sf -4815 4149 m 0 sg (H) show -gs -6417 3915 6556 4141 R -1 sg fill -gr -6417 4071 m 2.08 slw 0 sg (A) olshow -gs -2541 5356 2541 4731 5666 4731 5666 4106 7541 4106 7541 5356 2541 5356 6 P closepath -0.5 sg fill -gr -gs -2541 5356 2541 4731 5666 4731 5666 4106 7541 4106 7541 5356 2541 5356 6 P closepath -1.25 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob02a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob02a.gif deleted file mode 100755 index beaa20ccb..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob02a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob02a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob02a.pdf deleted file mode 100644 index 17ab66816..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob02a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av1.eps deleted file mode 100755 index 74f88ed6e..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av1.eps +++ /dev/null @@ -1,768 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_xy1 -%%Creation Date: Sun, Sep 10, 1995 06:41 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(-100) 18.00 247.38 32.00 WS -gsave 0.125 ps [1] sd -57.00 230.25 558.00 230.25 MacLine -grestore -1.00 ps -561.50 229.75 558.00 229.75 MacLine -53.50 229.75 57.00 229.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 217.50 558.00 217.50 MacLine -grestore -1.00 ps -561.50 217.00 558.00 217.00 MacLine -53.50 217.00 57.00 217.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 204.88 558.00 204.88 MacLine -grestore -1.00 ps -561.50 204.38 558.00 204.38 MacLine -53.50 204.38 57.00 204.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 192.12 558.00 192.12 MacLine -grestore -1.00 ps -561.50 191.62 558.00 191.62 MacLine -53.50 191.62 57.00 191.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 179.25 554.50 179.25 MacLine -grestore -1.00 ps -561.50 178.88 554.50 178.88 MacLine -53.50 178.88 60.50 178.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-50) 26.88 183.75 23.12 WS -gsave 0.125 ps [1] sd -57.00 166.62 558.00 166.62 MacLine -grestore -1.00 ps -561.50 166.12 558.00 166.12 MacLine -53.50 166.12 57.00 166.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 154.00 558.00 154.00 MacLine -grestore -1.00 ps -561.50 153.50 558.00 153.50 MacLine -53.50 153.50 57.00 153.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 141.25 558.00 141.25 MacLine -grestore -1.00 ps -561.50 140.75 558.00 140.75 MacLine -53.50 140.75 57.00 140.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 115.62 554.50 115.62 MacLine -grestore -1.00 ps -561.50 115.25 554.50 115.25 MacLine -53.50 115.25 60.50 115.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 120.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 103.00 558.00 103.00 MacLine -grestore -1.00 ps -561.50 102.50 558.00 102.50 MacLine -53.50 102.50 57.00 102.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 90.38 558.00 90.38 MacLine -grestore -1.00 ps -561.50 89.88 558.00 89.88 MacLine -53.50 89.88 57.00 89.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 77.62 558.00 77.62 MacLine -grestore -1.00 ps -561.50 77.12 558.00 77.12 MacLine -53.50 77.12 57.00 77.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 64.88 558.00 64.88 MacLine -grestore -1.00 ps -561.50 64.38 558.00 64.38 MacLine -53.50 64.38 57.00 64.38 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 52.00 554.50 52.00 MacLine -grestore -1.00 ps -561.50 51.62 554.50 51.62 MacLine -53.50 51.62 60.50 51.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(50) 32.25 56.50 17.75 WS -gsave 0.125 ps [1] sd -57.00 39.50 558.00 39.50 MacLine -grestore -1.00 ps -561.50 39.00 558.00 39.00 MacLine -53.50 39.00 57.00 39.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 26.75 558.00 26.75 MacLine -grestore -1.00 ps -561.50 26.25 558.00 26.25 MacLine -53.50 26.25 57.00 26.25 MacLine -1 ps -1.00 ps -561.50 13.50 558.00 13.50 MacLine -53.50 13.50 57.00 13.50 MacLine -1 ps -gsave 1.00 ps 54.50 115.75 561.50 115.75 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(y \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(25) 553.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -545.12 239.00 545.12 17.00 MacLine -grestore -1.00 ps -544.62 13.50 544.62 17.00 MacLine -544.62 242.50 544.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -528.12 239.00 528.12 17.00 MacLine -grestore -1.00 ps -527.62 13.50 527.62 17.00 MacLine -527.62 242.50 527.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -511.25 239.00 511.25 17.00 MacLine -grestore -1.00 ps -510.75 13.50 510.75 17.00 MacLine -510.75 242.50 510.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -494.25 239.00 494.25 17.00 MacLine -grestore -1.00 ps -493.75 13.50 493.75 17.00 MacLine -493.75 242.50 493.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 468.50 259.88 17.75 WS -gsave 0.125 ps [1] sd -460.38 239.00 460.38 17.00 MacLine -grestore -1.00 ps -459.88 13.50 459.88 17.00 MacLine -459.88 242.50 459.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -443.50 239.00 443.50 17.00 MacLine -grestore -1.00 ps -443.00 13.50 443.00 17.00 MacLine -443.00 242.50 443.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -426.50 239.00 426.50 17.00 MacLine -grestore -1.00 ps -426.00 13.50 426.00 17.00 MacLine -426.00 242.50 426.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -409.62 239.00 409.62 17.00 MacLine -grestore -1.00 ps -409.12 13.50 409.12 17.00 MacLine -409.12 242.50 409.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -392.50 235.50 392.50 20.50 MacLine -grestore -1.00 ps -392.12 13.50 392.12 20.50 MacLine -392.12 242.50 392.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(15) 383.75 259.88 17.75 WS -gsave 0.125 ps [1] sd -375.75 239.00 375.75 17.00 MacLine -grestore -1.00 ps -375.25 13.50 375.25 17.00 MacLine -375.25 242.50 375.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -358.75 239.00 358.75 17.00 MacLine -grestore -1.00 ps -358.25 13.50 358.25 17.00 MacLine -358.25 242.50 358.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -341.88 239.00 341.88 17.00 MacLine -grestore -1.00 ps -341.38 13.50 341.38 17.00 MacLine -341.38 242.50 341.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -324.88 239.00 324.88 17.00 MacLine -grestore -1.00 ps -324.38 13.50 324.38 17.00 MacLine -324.38 242.50 324.38 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 299.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -291.12 239.00 291.12 17.00 MacLine -grestore -1.00 ps -290.62 13.50 290.62 17.00 MacLine -290.62 242.50 290.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -274.12 239.00 274.12 17.00 MacLine -grestore -1.00 ps -273.62 13.50 273.62 17.00 MacLine -273.62 242.50 273.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -257.25 239.00 257.25 17.00 MacLine -grestore -1.00 ps -256.75 13.50 256.75 17.00 MacLine -256.75 242.50 256.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -240.25 239.00 240.25 17.00 MacLine -grestore -1.00 ps -239.75 13.50 239.75 17.00 MacLine -239.75 242.50 239.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 219.00 259.88 8.88 WS -gsave 0.125 ps [1] sd -206.38 239.00 206.38 17.00 MacLine -grestore -1.00 ps -205.88 13.50 205.88 17.00 MacLine -205.88 242.50 205.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -189.50 239.00 189.50 17.00 MacLine -grestore -1.00 ps -189.00 13.50 189.00 17.00 MacLine -189.00 242.50 189.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -172.50 239.00 172.50 17.00 MacLine -grestore -1.00 ps -172.00 13.50 172.00 17.00 MacLine -172.00 242.50 172.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -155.62 239.00 155.62 17.00 MacLine -grestore -1.00 ps -155.12 13.50 155.12 17.00 MacLine -155.12 242.50 155.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -138.50 235.50 138.50 20.50 MacLine -grestore -1.00 ps -138.12 13.50 138.12 20.50 MacLine -138.12 242.50 138.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 134.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -121.75 239.00 121.75 17.00 MacLine -grestore -1.00 ps -121.25 13.50 121.25 17.00 MacLine -121.25 242.50 121.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -104.75 239.00 104.75 17.00 MacLine -grestore -1.00 ps -104.25 13.50 104.25 17.00 MacLine -104.25 242.50 104.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -87.88 239.00 87.88 17.00 MacLine -grestore -1.00 ps -87.38 13.50 87.38 17.00 MacLine -87.38 242.50 87.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -70.88 239.00 70.88 17.00 MacLine -grestore -1.00 ps -70.38 13.50 70.38 17.00 MacLine -70.38 242.50 70.38 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-5) 46.88 259.88 14.25 WS -gsave 1.00 ps 138.62 242.50 138.62 14.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -(x \(m\)) 289.75 284.38 36.62 WS -2.00 ps -134.75 115.75 142.75 115.75 2 CapLine -138.75 111.75 138.75 119.75 2 CapLine -151.62 98.00 159.62 98.00 2 CapLine -155.62 94.00 155.62 102.00 2 CapLine -168.62 82.75 176.62 82.75 2 CapLine -172.62 78.75 172.62 86.75 2 CapLine -185.50 70.00 193.50 70.00 2 CapLine -189.50 66.00 189.50 74.00 2 CapLine -202.50 59.88 210.50 59.88 2 CapLine -206.50 55.88 206.50 63.88 2 CapLine -219.38 52.25 227.38 52.25 2 CapLine -223.38 48.25 223.38 56.25 2 CapLine -236.25 47.12 244.25 47.12 2 CapLine -240.25 43.12 240.25 51.12 2 CapLine -253.25 44.50 261.25 44.50 2 CapLine -257.25 40.50 257.25 48.50 2 CapLine -270.12 44.50 278.12 44.50 2 CapLine -274.12 40.50 274.12 48.50 2 CapLine -287.12 47.12 295.12 47.12 2 CapLine -291.12 43.12 291.12 51.12 2 CapLine -304.00 52.25 312.00 52.25 2 CapLine -308.00 48.25 308.00 56.25 2 CapLine -320.88 59.88 328.88 59.88 2 CapLine -324.88 55.88 324.88 63.88 2 CapLine -337.88 70.00 345.88 70.00 2 CapLine -341.88 66.00 341.88 74.00 2 CapLine -354.88 82.75 362.88 82.75 2 CapLine -358.88 78.75 358.88 86.75 2 CapLine -371.75 98.00 379.75 98.00 2 CapLine -375.75 94.00 375.75 102.00 2 CapLine -388.62 115.75 396.62 115.75 2 CapLine -392.62 111.75 392.62 119.75 2 CapLine -405.62 136.12 413.62 136.12 2 CapLine -409.62 132.12 409.62 140.12 2 CapLine -422.50 159.00 430.50 159.00 2 CapLine -426.50 155.00 426.50 163.00 2 CapLine -439.50 184.50 447.50 184.50 2 CapLine -443.50 180.50 443.50 188.50 2 CapLine -456.38 212.50 464.38 212.50 2 CapLine -460.38 208.50 460.38 216.50 2 CapLine -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av1.gif deleted file mode 100755 index b7259252f..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av10.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av10.eps deleted file mode 100755 index f4699bbd1..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av10.eps +++ /dev/null @@ -1,1129 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_xy10 -%%Creation Date: Sun, Sep 10, 1995 06:42 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 242.50 556.25 242.50 MacLine -53.50 242.50 58.75 242.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 237.25 558.00 237.25 MacLine -grestore -1.00 ps -561.50 236.75 558.00 236.75 MacLine -53.50 236.75 57.00 236.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 225.88 558.00 225.88 MacLine -grestore -1.00 ps -561.50 225.38 558.00 225.38 MacLine -53.50 225.38 57.00 225.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 214.25 554.50 214.25 MacLine -grestore -1.00 ps -561.50 213.88 554.50 213.88 MacLine -53.50 213.88 60.50 213.88 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(-400) 18.00 218.75 32.00 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 202.88 558.00 202.88 MacLine -grestore -1.00 ps -561.50 202.38 558.00 202.38 MacLine -53.50 202.38 57.00 202.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 191.50 558.00 191.50 MacLine -grestore -1.00 ps -561.50 191.00 558.00 191.00 MacLine -53.50 191.00 57.00 191.00 MacLine -1 ps -gsave 0.125 ps [1] sd -58.75 185.75 556.25 185.75 MacLine -grestore -1.00 ps -561.50 185.25 556.25 185.25 MacLine -53.50 185.25 58.75 185.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 180.00 558.00 180.00 MacLine -grestore -1.00 ps -561.50 179.50 558.00 179.50 MacLine -53.50 179.50 57.00 179.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 168.62 558.00 168.62 MacLine -grestore -1.00 ps -561.50 168.12 558.00 168.12 MacLine -53.50 168.12 57.00 168.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 157.00 554.50 157.00 MacLine -grestore -1.00 ps -561.50 156.62 554.50 156.62 MacLine -53.50 156.62 60.50 156.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-200) 18.00 161.50 32.00 WS -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 145.62 558.00 145.62 MacLine -grestore -1.00 ps -561.50 145.12 558.00 145.12 MacLine -53.50 145.12 57.00 145.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 134.25 558.00 134.25 MacLine -grestore -1.00 ps -561.50 133.75 558.00 133.75 MacLine -53.50 133.75 57.00 133.75 MacLine -1 ps -gsave 0.125 ps [1] sd -58.75 128.50 556.25 128.50 MacLine -grestore -1.00 ps -561.50 128.00 556.25 128.00 MacLine -53.50 128.00 58.75 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 122.75 558.00 122.75 MacLine -grestore -1.00 ps -561.50 122.25 558.00 122.25 MacLine -53.50 122.25 57.00 122.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 111.38 558.00 111.38 MacLine -grestore -1.00 ps -561.50 110.88 558.00 110.88 MacLine -53.50 110.88 57.00 110.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 99.75 554.50 99.75 MacLine -grestore -1.00 ps -561.50 99.38 554.50 99.38 MacLine -53.50 99.38 60.50 99.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 104.25 8.88 WS -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 88.38 558.00 88.38 MacLine -grestore -1.00 ps -561.50 87.88 558.00 87.88 MacLine -53.50 87.88 57.00 87.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 77.00 558.00 77.00 MacLine -grestore -1.00 ps -561.50 76.50 558.00 76.50 MacLine -53.50 76.50 57.00 76.50 MacLine -1 ps -gsave 0.125 ps [1] sd -58.75 71.25 556.25 71.25 MacLine -grestore -1.00 ps -561.50 70.75 556.25 70.75 MacLine -53.50 70.75 58.75 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 65.50 558.00 65.50 MacLine -grestore -1.00 ps -561.50 65.00 558.00 65.00 MacLine -53.50 65.00 57.00 65.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 54.12 558.00 54.12 MacLine -grestore -1.00 ps -561.50 53.62 558.00 53.62 MacLine -53.50 53.62 57.00 53.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 42.50 554.50 42.50 MacLine -grestore -1.00 ps -561.50 42.12 554.50 42.12 MacLine -53.50 42.12 60.50 42.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(200) 23.38 47.00 26.62 WS -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 31.12 558.00 31.12 MacLine -grestore -1.00 ps -561.50 30.62 558.00 30.62 MacLine -53.50 30.62 57.00 30.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 19.75 558.00 19.75 MacLine -grestore -1.00 ps -561.50 19.25 558.00 19.25 MacLine -53.50 19.25 57.00 19.25 MacLine -1 ps -1.00 ps -561.50 13.50 556.25 13.50 MacLine -53.50 13.50 58.75 13.50 MacLine -1 ps -gsave 1.00 ps 54.50 99.88 561.50 99.88 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(y \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -557.75 239.00 557.75 17.00 MacLine -grestore -1.00 ps -557.25 13.50 557.25 17.00 MacLine -557.25 242.50 557.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -549.25 239.00 549.25 17.00 MacLine -grestore -1.00 ps -548.75 13.50 548.75 17.00 MacLine -548.75 242.50 548.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -540.88 237.25 540.88 18.75 MacLine -grestore -1.00 ps -540.38 13.50 540.38 18.75 MacLine -540.38 242.50 540.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -532.38 239.00 532.38 17.00 MacLine -grestore -1.00 ps -531.88 13.50 531.88 17.00 MacLine -531.88 242.50 531.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -523.88 239.00 523.88 17.00 MacLine -grestore -1.00 ps -523.38 13.50 523.38 17.00 MacLine -523.38 242.50 523.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -515.38 239.00 515.38 17.00 MacLine -grestore -1.00 ps -514.88 13.50 514.88 17.00 MacLine -514.88 242.50 514.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -507.00 239.00 507.00 17.00 MacLine -grestore -1.00 ps -506.50 13.50 506.50 17.00 MacLine -506.50 242.50 506.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(100) 485.25 259.88 26.62 WS -gsave 0.125 ps [1] sd -490.00 239.00 490.00 17.00 MacLine -grestore -1.00 ps -489.50 13.50 489.50 17.00 MacLine -489.50 242.50 489.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -481.62 239.00 481.62 17.00 MacLine -grestore -1.00 ps -481.12 13.50 481.12 17.00 MacLine -481.12 242.50 481.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -473.12 239.00 473.12 17.00 MacLine -grestore -1.00 ps -472.62 13.50 472.62 17.00 MacLine -472.62 242.50 472.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -464.62 239.00 464.62 17.00 MacLine -grestore -1.00 ps -464.12 13.50 464.12 17.00 MacLine -464.12 242.50 464.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -456.12 237.25 456.12 18.75 MacLine -grestore -1.00 ps -455.62 13.50 455.62 18.75 MacLine -455.62 242.50 455.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -447.75 239.00 447.75 17.00 MacLine -grestore -1.00 ps -447.25 13.50 447.25 17.00 MacLine -447.25 242.50 447.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -439.25 239.00 439.25 17.00 MacLine -grestore -1.00 ps -438.75 13.50 438.75 17.00 MacLine -438.75 242.50 438.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -430.75 239.00 430.75 17.00 MacLine -grestore -1.00 ps -430.25 13.50 430.25 17.00 MacLine -430.25 242.50 430.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -422.25 239.00 422.25 17.00 MacLine -grestore -1.00 ps -421.75 13.50 421.75 17.00 MacLine -421.75 242.50 421.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -413.75 235.50 413.75 20.50 MacLine -grestore -1.00 ps -413.38 13.50 413.38 20.50 MacLine -413.38 242.50 413.38 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(80) 405.00 259.88 17.75 WS -gsave 0.125 ps [1] sd -405.38 239.00 405.38 17.00 MacLine -grestore -1.00 ps -404.88 13.50 404.88 17.00 MacLine -404.88 242.50 404.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -396.88 239.00 396.88 17.00 MacLine -grestore -1.00 ps -396.38 13.50 396.38 17.00 MacLine -396.38 242.50 396.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -388.38 239.00 388.38 17.00 MacLine -grestore -1.00 ps -387.88 13.50 387.88 17.00 MacLine -387.88 242.50 387.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -380.00 239.00 380.00 17.00 MacLine -grestore -1.00 ps -379.50 13.50 379.50 17.00 MacLine -379.50 242.50 379.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -371.50 237.25 371.50 18.75 MacLine -grestore -1.00 ps -371.00 13.50 371.00 18.75 MacLine -371.00 242.50 371.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -363.00 239.00 363.00 17.00 MacLine -grestore -1.00 ps -362.50 13.50 362.50 17.00 MacLine -362.50 242.50 362.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -354.62 239.00 354.62 17.00 MacLine -grestore -1.00 ps -354.12 13.50 354.12 17.00 MacLine -354.12 242.50 354.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -346.12 239.00 346.12 17.00 MacLine -grestore -1.00 ps -345.62 13.50 345.62 17.00 MacLine -345.62 242.50 345.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -337.62 239.00 337.62 17.00 MacLine -grestore -1.00 ps -337.12 13.50 337.12 17.00 MacLine -337.12 242.50 337.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -329.00 235.50 329.00 20.50 MacLine -grestore -1.00 ps -328.62 13.50 328.62 20.50 MacLine -328.62 242.50 328.62 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(60) 320.25 259.88 17.75 WS -gsave 0.125 ps [1] sd -320.75 239.00 320.75 17.00 MacLine -grestore -1.00 ps -320.25 13.50 320.25 17.00 MacLine -320.25 242.50 320.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -312.25 239.00 312.25 17.00 MacLine -grestore -1.00 ps -311.75 13.50 311.75 17.00 MacLine -311.75 242.50 311.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -303.75 239.00 303.75 17.00 MacLine -grestore -1.00 ps -303.25 13.50 303.25 17.00 MacLine -303.25 242.50 303.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -295.25 239.00 295.25 17.00 MacLine -grestore -1.00 ps -294.75 13.50 294.75 17.00 MacLine -294.75 242.50 294.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -286.88 237.25 286.88 18.75 MacLine -grestore -1.00 ps -286.38 13.50 286.38 18.75 MacLine -286.38 242.50 286.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -278.38 239.00 278.38 17.00 MacLine -grestore -1.00 ps -277.88 13.50 277.88 17.00 MacLine -277.88 242.50 277.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -269.88 239.00 269.88 17.00 MacLine -grestore -1.00 ps -269.38 13.50 269.38 17.00 MacLine -269.38 242.50 269.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -261.38 239.00 261.38 17.00 MacLine -grestore -1.00 ps -260.88 13.50 260.88 17.00 MacLine -260.88 242.50 260.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -253.00 239.00 253.00 17.00 MacLine -grestore -1.00 ps -252.50 13.50 252.50 17.00 MacLine -252.50 242.50 252.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(40) 235.62 259.88 17.75 WS -gsave 0.125 ps [1] sd -236.00 239.00 236.00 17.00 MacLine -grestore -1.00 ps -235.50 13.50 235.50 17.00 MacLine -235.50 242.50 235.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -227.62 239.00 227.62 17.00 MacLine -grestore -1.00 ps -227.12 13.50 227.12 17.00 MacLine -227.12 242.50 227.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -219.12 239.00 219.12 17.00 MacLine -grestore -1.00 ps -218.62 13.50 218.62 17.00 MacLine -218.62 242.50 218.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -210.62 239.00 210.62 17.00 MacLine -grestore -1.00 ps -210.12 13.50 210.12 17.00 MacLine -210.12 242.50 210.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -202.12 237.25 202.12 18.75 MacLine -grestore -1.00 ps -201.62 13.50 201.62 18.75 MacLine -201.62 242.50 201.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -193.75 239.00 193.75 17.00 MacLine -grestore -1.00 ps -193.25 13.50 193.25 17.00 MacLine -193.25 242.50 193.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -185.25 239.00 185.25 17.00 MacLine -grestore -1.00 ps -184.75 13.50 184.75 17.00 MacLine -184.75 242.50 184.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -176.75 239.00 176.75 17.00 MacLine -grestore -1.00 ps -176.25 13.50 176.25 17.00 MacLine -176.25 242.50 176.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -168.25 239.00 168.25 17.00 MacLine -grestore -1.00 ps -167.75 13.50 167.75 17.00 MacLine -167.75 242.50 167.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -159.75 235.50 159.75 20.50 MacLine -grestore -1.00 ps -159.38 13.50 159.38 20.50 MacLine -159.38 242.50 159.38 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 151.00 259.88 17.75 WS -gsave 0.125 ps [1] sd -151.38 239.00 151.38 17.00 MacLine -grestore -1.00 ps -150.88 13.50 150.88 17.00 MacLine -150.88 242.50 150.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -142.88 239.00 142.88 17.00 MacLine -grestore -1.00 ps -142.38 13.50 142.38 17.00 MacLine -142.38 242.50 142.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -134.38 239.00 134.38 17.00 MacLine -grestore -1.00 ps -133.88 13.50 133.88 17.00 MacLine -133.88 242.50 133.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -126.00 239.00 126.00 17.00 MacLine -grestore -1.00 ps -125.50 13.50 125.50 17.00 MacLine -125.50 242.50 125.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -117.50 237.25 117.50 18.75 MacLine -grestore -1.00 ps -117.00 13.50 117.00 18.75 MacLine -117.00 242.50 117.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -109.00 239.00 109.00 17.00 MacLine -grestore -1.00 ps -108.50 13.50 108.50 17.00 MacLine -108.50 242.50 108.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -100.62 239.00 100.62 17.00 MacLine -grestore -1.00 ps -100.12 13.50 100.12 17.00 MacLine -100.12 242.50 100.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -92.12 239.00 92.12 17.00 MacLine -grestore -1.00 ps -91.62 13.50 91.62 17.00 MacLine -91.62 242.50 91.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -83.62 239.00 83.62 17.00 MacLine -grestore -1.00 ps -83.12 13.50 83.12 17.00 MacLine -83.12 242.50 83.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -75.00 235.50 75.00 20.50 MacLine -grestore -1.00 ps -74.62 13.50 74.62 20.50 MacLine -74.62 242.50 74.62 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 70.75 259.88 8.88 WS -gsave 0.125 ps [1] sd -66.75 239.00 66.75 17.00 MacLine -grestore -1.00 ps -66.25 13.50 66.25 17.00 MacLine -66.25 242.50 66.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -58.25 239.00 58.25 17.00 MacLine -grestore -1.00 ps -57.75 13.50 57.75 17.00 MacLine -57.75 242.50 57.75 239.00 MacLine -1 ps -gsave 1.00 ps 75.12 242.50 75.12 14.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -(x \(m\)) 289.75 284.38 36.62 WS -2.00 ps -71.25 99.88 79.25 99.88 2 CapLine -75.25 95.88 75.25 103.88 2 CapLine -94.50 126.75 102.50 126.75 2 CapLine -98.50 122.75 98.50 130.75 2 CapLine -117.75 150.25 125.75 150.25 2 CapLine -121.75 146.25 121.75 154.25 2 CapLine -141.12 170.25 149.12 170.25 2 CapLine -145.12 166.25 145.12 174.25 2 CapLine -164.38 186.88 172.38 186.88 2 CapLine -168.38 182.88 168.38 190.88 2 CapLine -187.62 200.12 195.62 200.12 2 CapLine -191.62 196.12 191.62 204.12 2 CapLine -210.88 209.75 218.88 209.75 2 CapLine -214.88 205.75 214.88 213.75 2 CapLine -234.25 216.12 242.25 216.12 2 CapLine -238.25 212.12 238.25 220.12 2 CapLine -257.50 218.88 265.50 218.88 2 CapLine -261.50 214.88 261.50 222.88 2 CapLine -280.75 218.38 288.75 218.38 2 CapLine -284.75 214.38 284.75 222.38 2 CapLine -304.00 214.38 312.00 214.38 2 CapLine -308.00 210.38 308.00 218.38 2 CapLine -327.25 206.88 335.25 206.88 2 CapLine -331.25 202.88 331.25 210.88 2 CapLine -350.50 196.00 358.50 196.00 2 CapLine -354.50 192.00 354.50 200.00 2 CapLine -373.88 181.75 381.88 181.75 2 CapLine -377.88 177.75 377.88 185.75 2 CapLine -397.12 164.00 405.12 164.00 2 CapLine -401.12 160.00 401.12 168.00 2 CapLine -420.38 142.75 428.38 142.75 2 CapLine -424.38 138.75 424.38 146.75 2 CapLine -443.75 118.25 451.75 118.25 2 CapLine -447.75 114.25 447.75 122.25 2 CapLine -467.00 90.12 475.00 90.12 2 CapLine -471.00 86.12 471.00 94.12 2 CapLine -490.25 58.62 498.25 58.62 2 CapLine -494.25 54.62 494.25 62.62 2 CapLine -513.50 23.75 521.50 23.75 2 CapLine -517.50 19.75 517.50 27.75 2 CapLine -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av10.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av10.gif deleted file mode 100755 index ebf4f31aa..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av10.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av10.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av10.pdf deleted file mode 100644 index 5bad127c9..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av10.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av2.eps deleted file mode 100755 index d80a36ab3..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av2.eps +++ /dev/null @@ -1,832 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_xy2 -%%Creation Date: Sun, Sep 10, 1995 06:41 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(100) 23.38 18.38 26.62 WS -gsave 0.125 ps [1] sd -57.00 26.75 558.00 26.75 MacLine -grestore -1.00 ps -561.50 26.25 558.00 26.25 MacLine -53.50 26.25 57.00 26.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 39.50 558.00 39.50 MacLine -grestore -1.00 ps -561.50 39.00 558.00 39.00 MacLine -53.50 39.00 57.00 39.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 52.12 558.00 52.12 MacLine -grestore -1.00 ps -561.50 51.62 558.00 51.62 MacLine -53.50 51.62 57.00 51.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 64.88 558.00 64.88 MacLine -grestore -1.00 ps -561.50 64.38 558.00 64.38 MacLine -53.50 64.38 57.00 64.38 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 77.50 554.50 77.50 MacLine -grestore -1.00 ps -561.50 77.12 554.50 77.12 MacLine -53.50 77.12 60.50 77.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(50) 32.25 82.00 17.75 WS -gsave 0.125 ps [1] sd -57.00 90.38 558.00 90.38 MacLine -grestore -1.00 ps -561.50 89.88 558.00 89.88 MacLine -53.50 89.88 57.00 89.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 103.00 558.00 103.00 MacLine -grestore -1.00 ps -561.50 102.50 558.00 102.50 MacLine -53.50 102.50 57.00 102.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 115.75 558.00 115.75 MacLine -grestore -1.00 ps -561.50 115.25 558.00 115.25 MacLine -53.50 115.25 57.00 115.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 141.12 554.50 141.12 MacLine -grestore -1.00 ps -561.50 140.75 554.50 140.75 MacLine -53.50 140.75 60.50 140.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 145.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 154.00 558.00 154.00 MacLine -grestore -1.00 ps -561.50 153.50 558.00 153.50 MacLine -53.50 153.50 57.00 153.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 166.62 558.00 166.62 MacLine -grestore -1.00 ps -561.50 166.12 558.00 166.12 MacLine -53.50 166.12 57.00 166.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 179.38 558.00 179.38 MacLine -grestore -1.00 ps -561.50 178.88 558.00 178.88 MacLine -53.50 178.88 57.00 178.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 192.12 558.00 192.12 MacLine -grestore -1.00 ps -561.50 191.62 558.00 191.62 MacLine -53.50 191.62 57.00 191.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 204.75 554.50 204.75 MacLine -grestore -1.00 ps -561.50 204.38 554.50 204.38 MacLine -53.50 204.38 60.50 204.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-50) 26.88 209.25 23.12 WS -gsave 0.125 ps [1] sd -57.00 217.50 558.00 217.50 MacLine -grestore -1.00 ps -561.50 217.00 558.00 217.00 MacLine -53.50 217.00 57.00 217.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 230.25 558.00 230.25 MacLine -grestore -1.00 ps -561.50 229.75 558.00 229.75 MacLine -53.50 229.75 57.00 229.75 MacLine -1 ps -1.00 ps -561.50 242.50 558.00 242.50 MacLine -53.50 242.50 57.00 242.50 MacLine -1 ps -gsave 1.00 ps 54.50 141.25 561.50 141.25 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(y \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 18.75 MacLine -561.50 242.50 561.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -549.25 239.00 549.25 17.00 MacLine -grestore -1.00 ps -548.75 13.50 548.75 17.00 MacLine -548.75 242.50 548.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -536.62 239.00 536.62 17.00 MacLine -grestore -1.00 ps -536.12 13.50 536.12 17.00 MacLine -536.12 242.50 536.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -523.88 239.00 523.88 17.00 MacLine -grestore -1.00 ps -523.38 13.50 523.38 17.00 MacLine -523.38 242.50 523.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -511.25 239.00 511.25 17.00 MacLine -grestore -1.00 ps -510.75 13.50 510.75 17.00 MacLine -510.75 242.50 510.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(30) 489.62 259.88 17.75 WS -gsave 0.125 ps [1] sd -485.75 239.00 485.75 17.00 MacLine -grestore -1.00 ps -485.25 13.50 485.25 17.00 MacLine -485.25 242.50 485.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -473.12 239.00 473.12 17.00 MacLine -grestore -1.00 ps -472.62 13.50 472.62 17.00 MacLine -472.62 242.50 472.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -460.38 239.00 460.38 17.00 MacLine -grestore -1.00 ps -459.88 13.50 459.88 17.00 MacLine -459.88 242.50 459.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -447.75 239.00 447.75 17.00 MacLine -grestore -1.00 ps -447.25 13.50 447.25 17.00 MacLine -447.25 242.50 447.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -435.00 237.25 435.00 18.75 MacLine -grestore -1.00 ps -434.50 13.50 434.50 18.75 MacLine -434.50 242.50 434.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -422.25 239.00 422.25 17.00 MacLine -grestore -1.00 ps -421.75 13.50 421.75 17.00 MacLine -421.75 242.50 421.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -409.62 239.00 409.62 17.00 MacLine -grestore -1.00 ps -409.12 13.50 409.12 17.00 MacLine -409.12 242.50 409.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -396.88 239.00 396.88 17.00 MacLine -grestore -1.00 ps -396.38 13.50 396.38 17.00 MacLine -396.38 242.50 396.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -384.25 239.00 384.25 17.00 MacLine -grestore -1.00 ps -383.75 13.50 383.75 17.00 MacLine -383.75 242.50 383.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 362.62 259.88 17.75 WS -gsave 0.125 ps [1] sd -358.75 239.00 358.75 17.00 MacLine -grestore -1.00 ps -358.25 13.50 358.25 17.00 MacLine -358.25 242.50 358.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -346.12 239.00 346.12 17.00 MacLine -grestore -1.00 ps -345.62 13.50 345.62 17.00 MacLine -345.62 242.50 345.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -333.38 239.00 333.38 17.00 MacLine -grestore -1.00 ps -332.88 13.50 332.88 17.00 MacLine -332.88 242.50 332.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -320.75 239.00 320.75 17.00 MacLine -grestore -1.00 ps -320.25 13.50 320.25 17.00 MacLine -320.25 242.50 320.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -308.00 237.25 308.00 18.75 MacLine -grestore -1.00 ps -307.50 13.50 307.50 18.75 MacLine -307.50 242.50 307.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -295.25 239.00 295.25 17.00 MacLine -grestore -1.00 ps -294.75 13.50 294.75 17.00 MacLine -294.75 242.50 294.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -282.62 239.00 282.62 17.00 MacLine -grestore -1.00 ps -282.12 13.50 282.12 17.00 MacLine -282.12 242.50 282.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -269.88 239.00 269.88 17.00 MacLine -grestore -1.00 ps -269.38 13.50 269.38 17.00 MacLine -269.38 242.50 269.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -257.25 239.00 257.25 17.00 MacLine -grestore -1.00 ps -256.75 13.50 256.75 17.00 MacLine -256.75 242.50 256.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 235.62 259.88 17.75 WS -gsave 0.125 ps [1] sd -231.75 239.00 231.75 17.00 MacLine -grestore -1.00 ps -231.25 13.50 231.25 17.00 MacLine -231.25 242.50 231.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -219.12 239.00 219.12 17.00 MacLine -grestore -1.00 ps -218.62 13.50 218.62 17.00 MacLine -218.62 242.50 218.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -206.38 239.00 206.38 17.00 MacLine -grestore -1.00 ps -205.88 13.50 205.88 17.00 MacLine -205.88 242.50 205.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -193.75 239.00 193.75 17.00 MacLine -grestore -1.00 ps -193.25 13.50 193.25 17.00 MacLine -193.25 242.50 193.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -181.00 237.25 181.00 18.75 MacLine -grestore -1.00 ps -180.50 13.50 180.50 18.75 MacLine -180.50 242.50 180.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -168.25 239.00 168.25 17.00 MacLine -grestore -1.00 ps -167.75 13.50 167.75 17.00 MacLine -167.75 242.50 167.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -155.62 239.00 155.62 17.00 MacLine -grestore -1.00 ps -155.12 13.50 155.12 17.00 MacLine -155.12 242.50 155.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -142.88 239.00 142.88 17.00 MacLine -grestore -1.00 ps -142.38 13.50 142.38 17.00 MacLine -142.38 242.50 142.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -130.25 239.00 130.25 17.00 MacLine -grestore -1.00 ps -129.75 13.50 129.75 17.00 MacLine -129.75 242.50 129.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 113.12 259.88 8.88 WS -gsave 0.125 ps [1] sd -104.75 239.00 104.75 17.00 MacLine -grestore -1.00 ps -104.25 13.50 104.25 17.00 MacLine -104.25 242.50 104.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -92.12 239.00 92.12 17.00 MacLine -grestore -1.00 ps -91.62 13.50 91.62 17.00 MacLine -91.62 242.50 91.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -79.38 239.00 79.38 17.00 MacLine -grestore -1.00 ps -78.88 13.50 78.88 17.00 MacLine -78.88 242.50 78.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.75 239.00 66.75 17.00 MacLine -grestore -1.00 ps -66.25 13.50 66.25 17.00 MacLine -66.25 242.50 66.25 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 18.75 MacLine -53.50 242.50 53.50 237.25 MacLine -1 ps -gsave 1.00 ps 117.50 242.50 117.50 14.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -(x \(m\)) 289.75 284.38 36.62 WS -2.00 ps -113.50 141.25 121.50 141.25 2 CapLine -117.50 137.25 117.50 145.25 2 CapLine -132.62 159.00 140.62 159.00 2 CapLine -136.62 155.00 136.62 163.00 2 CapLine -151.62 174.25 159.62 174.25 2 CapLine -155.62 170.25 155.62 178.25 2 CapLine -170.75 187.00 178.75 187.00 2 CapLine -174.75 183.00 174.75 191.00 2 CapLine -189.75 197.12 197.75 197.12 2 CapLine -193.75 193.12 193.75 201.12 2 CapLine -208.75 204.75 216.75 204.75 2 CapLine -212.75 200.75 212.75 208.75 2 CapLine -227.88 209.88 235.88 209.88 2 CapLine -231.88 205.88 231.88 213.88 2 CapLine -246.88 212.50 254.88 212.50 2 CapLine -250.88 208.50 250.88 216.50 2 CapLine -266.00 212.50 274.00 212.50 2 CapLine -270.00 208.50 270.00 216.50 2 CapLine -285.00 209.88 293.00 209.88 2 CapLine -289.00 205.88 289.00 213.88 2 CapLine -304.00 204.75 312.00 204.75 2 CapLine -308.00 200.75 308.00 208.75 2 CapLine -323.00 197.12 331.00 197.12 2 CapLine -327.00 193.12 327.00 201.12 2 CapLine -342.12 187.00 350.12 187.00 2 CapLine -346.12 183.00 346.12 191.00 2 CapLine -361.12 174.25 369.12 174.25 2 CapLine -365.12 170.25 365.12 178.25 2 CapLine -380.25 159.00 388.25 159.00 2 CapLine -384.25 155.00 384.25 163.00 2 CapLine -399.25 141.25 407.25 141.25 2 CapLine -403.25 137.25 403.25 145.25 2 CapLine -418.25 120.88 426.25 120.88 2 CapLine -422.25 116.88 422.25 124.88 2 CapLine -437.38 98.00 445.38 98.00 2 CapLine -441.38 94.00 441.38 102.00 2 CapLine -456.38 72.50 464.38 72.50 2 CapLine -460.38 68.50 460.38 76.50 2 CapLine -475.50 44.50 483.50 44.50 2 CapLine -479.50 40.50 479.50 48.50 2 CapLine -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av2.gif deleted file mode 100755 index 4d6ffe0fe..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av3.eps deleted file mode 100755 index 47e203dfb..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av3.eps +++ /dev/null @@ -1,1031 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_xy3 -%%Creation Date: Sun, Sep 10, 1995 06:41 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(200) 23.38 18.38 26.62 WS -gsave 0.125 ps [1] sd -57.00 20.50 558.00 20.50 MacLine -grestore -1.00 ps -561.50 20.00 558.00 20.00 MacLine -53.50 20.00 57.00 20.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 27.12 558.00 27.12 MacLine -grestore -1.00 ps -561.50 26.62 558.00 26.62 MacLine -53.50 26.62 57.00 26.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 33.62 558.00 33.62 MacLine -grestore -1.00 ps -561.50 33.12 558.00 33.12 MacLine -53.50 33.12 57.00 33.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 40.12 558.00 40.12 MacLine -grestore -1.00 ps -561.50 39.62 558.00 39.62 MacLine -53.50 39.62 57.00 39.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 46.62 554.50 46.62 MacLine -grestore -1.00 ps -561.50 46.25 554.50 46.25 MacLine -53.50 46.25 60.50 46.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(150) 23.38 51.12 26.62 WS -gsave 0.125 ps [1] sd -57.00 53.25 558.00 53.25 MacLine -grestore -1.00 ps -561.50 52.75 558.00 52.75 MacLine -53.50 52.75 57.00 52.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 66.38 558.00 66.38 MacLine -grestore -1.00 ps -561.50 65.88 558.00 65.88 MacLine -53.50 65.88 57.00 65.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 72.88 558.00 72.88 MacLine -grestore -1.00 ps -561.50 72.38 558.00 72.38 MacLine -53.50 72.38 57.00 72.38 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 79.25 554.50 79.25 MacLine -grestore -1.00 ps -561.50 78.88 554.50 78.88 MacLine -53.50 78.88 60.50 78.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(100) 23.38 83.75 26.62 WS -gsave 0.125 ps [1] sd -57.00 86.00 558.00 86.00 MacLine -grestore -1.00 ps -561.50 85.50 558.00 85.50 MacLine -53.50 85.50 57.00 85.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 92.50 558.00 92.50 MacLine -grestore -1.00 ps -561.50 92.00 558.00 92.00 MacLine -53.50 92.00 57.00 92.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 99.00 558.00 99.00 MacLine -grestore -1.00 ps -561.50 98.50 558.00 98.50 MacLine -53.50 98.50 57.00 98.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 112.00 554.50 112.00 MacLine -grestore -1.00 ps -561.50 111.62 554.50 111.62 MacLine -53.50 111.62 60.50 111.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(50) 32.25 116.50 17.75 WS -gsave 0.125 ps [1] sd -57.00 118.62 558.00 118.62 MacLine -grestore -1.00 ps -561.50 118.12 558.00 118.12 MacLine -53.50 118.12 57.00 118.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 125.25 558.00 125.25 MacLine -grestore -1.00 ps -561.50 124.75 558.00 124.75 MacLine -53.50 124.75 57.00 124.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 131.75 558.00 131.75 MacLine -grestore -1.00 ps -561.50 131.25 558.00 131.25 MacLine -53.50 131.25 57.00 131.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 138.38 558.00 138.38 MacLine -grestore -1.00 ps -561.50 137.88 558.00 137.88 MacLine -53.50 137.88 57.00 137.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 144.75 554.50 144.75 MacLine -grestore -1.00 ps -561.50 144.38 554.50 144.38 MacLine -53.50 144.38 60.50 144.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 149.25 8.88 WS -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 158.00 558.00 158.00 MacLine -grestore -1.00 ps -561.50 157.50 558.00 157.50 MacLine -53.50 157.50 57.00 157.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 164.50 558.00 164.50 MacLine -grestore -1.00 ps -561.50 164.00 558.00 164.00 MacLine -53.50 164.00 57.00 164.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 171.00 558.00 171.00 MacLine -grestore -1.00 ps -561.50 170.50 558.00 170.50 MacLine -53.50 170.50 57.00 170.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 177.50 554.50 177.50 MacLine -grestore -1.00 ps -561.50 177.12 554.50 177.12 MacLine -53.50 177.12 60.50 177.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-50) 26.88 182.00 23.12 WS -gsave 0.125 ps [1] sd -57.00 184.12 558.00 184.12 MacLine -grestore -1.00 ps -561.50 183.62 558.00 183.62 MacLine -53.50 183.62 57.00 183.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 190.62 558.00 190.62 MacLine -grestore -1.00 ps -561.50 190.12 558.00 190.12 MacLine -53.50 190.12 57.00 190.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 203.75 558.00 203.75 MacLine -grestore -1.00 ps -561.50 203.25 558.00 203.25 MacLine -53.50 203.25 57.00 203.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 210.12 554.50 210.12 MacLine -grestore -1.00 ps -561.50 209.75 554.50 209.75 MacLine -53.50 209.75 60.50 209.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-100) 18.00 214.62 32.00 WS -gsave 0.125 ps [1] sd -57.00 216.88 558.00 216.88 MacLine -grestore -1.00 ps -561.50 216.38 558.00 216.38 MacLine -53.50 216.38 57.00 216.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 223.38 558.00 223.38 MacLine -grestore -1.00 ps -561.50 222.88 558.00 222.88 MacLine -53.50 222.88 57.00 222.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 229.88 558.00 229.88 MacLine -grestore -1.00 ps -561.50 229.38 558.00 229.38 MacLine -53.50 229.38 57.00 229.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 236.50 558.00 236.50 MacLine -grestore -1.00 ps -561.50 236.00 558.00 236.00 MacLine -53.50 236.00 57.00 236.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-150) 18.00 247.38 32.00 WS -gsave 1.00 ps 54.50 144.88 561.50 144.88 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(y \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 18.75 MacLine -561.50 242.50 561.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -551.88 239.00 551.88 17.00 MacLine -grestore -1.00 ps -551.38 13.50 551.38 17.00 MacLine -551.38 242.50 551.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -541.62 239.00 541.62 17.00 MacLine -grestore -1.00 ps -541.12 13.50 541.12 17.00 MacLine -541.12 242.50 541.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -531.50 239.00 531.50 17.00 MacLine -grestore -1.00 ps -531.00 13.50 531.00 17.00 MacLine -531.00 242.50 531.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -521.38 239.00 521.38 17.00 MacLine -grestore -1.00 ps -520.88 13.50 520.88 17.00 MacLine -520.88 242.50 520.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -511.12 235.50 511.12 20.50 MacLine -grestore -1.00 ps -510.75 13.50 510.75 20.50 MacLine -510.75 242.50 510.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(40) 502.38 259.88 17.75 WS -gsave 0.125 ps [1] sd -501.00 239.00 501.00 17.00 MacLine -grestore -1.00 ps -500.50 13.50 500.50 17.00 MacLine -500.50 242.50 500.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -490.88 239.00 490.88 17.00 MacLine -grestore -1.00 ps -490.38 13.50 490.38 17.00 MacLine -490.38 242.50 490.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.75 239.00 480.75 17.00 MacLine -grestore -1.00 ps -480.25 13.50 480.25 17.00 MacLine -480.25 242.50 480.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -470.50 239.00 470.50 17.00 MacLine -grestore -1.00 ps -470.00 13.50 470.00 17.00 MacLine -470.00 242.50 470.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -460.38 237.25 460.38 18.75 MacLine -grestore -1.00 ps -459.88 13.50 459.88 18.75 MacLine -459.88 242.50 459.88 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -450.25 239.00 450.25 17.00 MacLine -grestore -1.00 ps -449.75 13.50 449.75 17.00 MacLine -449.75 242.50 449.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -440.12 239.00 440.12 17.00 MacLine -grestore -1.00 ps -439.62 13.50 439.62 17.00 MacLine -439.62 242.50 439.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -429.88 239.00 429.88 17.00 MacLine -grestore -1.00 ps -429.38 13.50 429.38 17.00 MacLine -429.38 242.50 429.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -419.75 239.00 419.75 17.00 MacLine -grestore -1.00 ps -419.25 13.50 419.25 17.00 MacLine -419.25 242.50 419.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -409.50 235.50 409.50 20.50 MacLine -grestore -1.00 ps -409.12 13.50 409.12 20.50 MacLine -409.12 242.50 409.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(30) 400.75 259.88 17.75 WS -gsave 0.125 ps [1] sd -399.50 239.00 399.50 17.00 MacLine -grestore -1.00 ps -399.00 13.50 399.00 17.00 MacLine -399.00 242.50 399.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -389.25 239.00 389.25 17.00 MacLine -grestore -1.00 ps -388.75 13.50 388.75 17.00 MacLine -388.75 242.50 388.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -379.12 239.00 379.12 17.00 MacLine -grestore -1.00 ps -378.62 13.50 378.62 17.00 MacLine -378.62 242.50 378.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -369.00 239.00 369.00 17.00 MacLine -grestore -1.00 ps -368.50 13.50 368.50 17.00 MacLine -368.50 242.50 368.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -358.75 237.25 358.75 18.75 MacLine -grestore -1.00 ps -358.25 13.50 358.25 18.75 MacLine -358.25 242.50 358.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -348.62 239.00 348.62 17.00 MacLine -grestore -1.00 ps -348.12 13.50 348.12 17.00 MacLine -348.12 242.50 348.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -338.50 239.00 338.50 17.00 MacLine -grestore -1.00 ps -338.00 13.50 338.00 17.00 MacLine -338.00 242.50 338.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -328.38 239.00 328.38 17.00 MacLine -grestore -1.00 ps -327.88 13.50 327.88 17.00 MacLine -327.88 242.50 327.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -318.12 239.00 318.12 17.00 MacLine -grestore -1.00 ps -317.62 13.50 317.62 17.00 MacLine -317.62 242.50 317.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 299.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -297.88 239.00 297.88 17.00 MacLine -grestore -1.00 ps -297.38 13.50 297.38 17.00 MacLine -297.38 242.50 297.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -287.62 239.00 287.62 17.00 MacLine -grestore -1.00 ps -287.12 13.50 287.12 17.00 MacLine -287.12 242.50 287.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -277.50 239.00 277.50 17.00 MacLine -grestore -1.00 ps -277.00 13.50 277.00 17.00 MacLine -277.00 242.50 277.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -267.38 239.00 267.38 17.00 MacLine -grestore -1.00 ps -266.88 13.50 266.88 17.00 MacLine -266.88 242.50 266.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -257.25 237.25 257.25 18.75 MacLine -grestore -1.00 ps -256.75 13.50 256.75 18.75 MacLine -256.75 242.50 256.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -247.00 239.00 247.00 17.00 MacLine -grestore -1.00 ps -246.50 13.50 246.50 17.00 MacLine -246.50 242.50 246.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -236.88 239.00 236.88 17.00 MacLine -grestore -1.00 ps -236.38 13.50 236.38 17.00 MacLine -236.38 242.50 236.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -226.75 239.00 226.75 17.00 MacLine -grestore -1.00 ps -226.25 13.50 226.25 17.00 MacLine -226.25 242.50 226.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -216.50 239.00 216.50 17.00 MacLine -grestore -1.00 ps -216.00 13.50 216.00 17.00 MacLine -216.00 242.50 216.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -206.25 235.50 206.25 20.50 MacLine -grestore -1.00 ps -205.88 13.50 205.88 20.50 MacLine -205.88 242.50 205.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 197.50 259.88 17.75 WS -gsave 0.125 ps [1] sd -196.25 239.00 196.25 17.00 MacLine -grestore -1.00 ps -195.75 13.50 195.75 17.00 MacLine -195.75 242.50 195.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -186.12 239.00 186.12 17.00 MacLine -grestore -1.00 ps -185.62 13.50 185.62 17.00 MacLine -185.62 242.50 185.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -175.88 239.00 175.88 17.00 MacLine -grestore -1.00 ps -175.38 13.50 175.38 17.00 MacLine -175.38 242.50 175.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -165.75 239.00 165.75 17.00 MacLine -grestore -1.00 ps -165.25 13.50 165.25 17.00 MacLine -165.25 242.50 165.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -155.62 237.25 155.62 18.75 MacLine -grestore -1.00 ps -155.12 13.50 155.12 18.75 MacLine -155.12 242.50 155.12 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -145.50 239.00 145.50 17.00 MacLine -grestore -1.00 ps -145.00 13.50 145.00 17.00 MacLine -145.00 242.50 145.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -135.25 239.00 135.25 17.00 MacLine -grestore -1.00 ps -134.75 13.50 134.75 17.00 MacLine -134.75 242.50 134.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -125.12 239.00 125.12 17.00 MacLine -grestore -1.00 ps -124.62 13.50 124.62 17.00 MacLine -124.62 242.50 124.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -115.00 239.00 115.00 17.00 MacLine -grestore -1.00 ps -114.50 13.50 114.50 17.00 MacLine -114.50 242.50 114.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -104.62 235.50 104.62 20.50 MacLine -grestore -1.00 ps -104.25 13.50 104.25 20.50 MacLine -104.25 242.50 104.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 100.38 259.88 8.88 WS -gsave 0.125 ps [1] sd -94.62 239.00 94.62 17.00 MacLine -grestore -1.00 ps -94.12 13.50 94.12 17.00 MacLine -94.12 242.50 94.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -84.50 239.00 84.50 17.00 MacLine -grestore -1.00 ps -84.00 13.50 84.00 17.00 MacLine -84.00 242.50 84.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -74.38 239.00 74.38 17.00 MacLine -grestore -1.00 ps -73.88 13.50 73.88 17.00 MacLine -73.88 242.50 73.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -64.12 239.00 64.12 17.00 MacLine -grestore -1.00 ps -63.62 13.50 63.62 17.00 MacLine -63.62 242.50 63.62 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 18.75 MacLine -53.50 242.50 53.50 237.25 MacLine -1 ps -gsave 1.00 ps 104.75 242.50 104.75 14.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -(x \(m\)) 289.75 284.38 36.62 WS -2.00 ps -100.88 144.88 108.88 144.88 2 CapLine -104.88 140.88 104.88 148.88 2 CapLine -121.25 120.38 129.25 120.38 2 CapLine -125.25 116.38 125.25 124.38 2 CapLine -141.50 99.12 149.50 99.12 2 CapLine -145.50 95.12 145.50 103.12 2 CapLine -161.88 81.12 169.88 81.12 2 CapLine -165.88 77.12 165.88 85.12 2 CapLine -182.12 66.38 190.12 66.38 2 CapLine -186.12 62.38 186.12 70.38 2 CapLine -202.50 54.88 210.50 54.88 2 CapLine -206.50 50.88 206.50 58.88 2 CapLine -222.75 46.75 230.75 46.75 2 CapLine -226.75 42.75 226.75 50.75 2 CapLine -243.12 41.88 251.12 41.88 2 CapLine -247.12 37.88 247.12 45.88 2 CapLine -263.38 40.12 271.38 40.12 2 CapLine -267.38 36.12 267.38 44.12 2 CapLine -283.75 41.88 291.75 41.88 2 CapLine -287.75 37.88 287.75 45.88 2 CapLine -304.00 46.75 312.00 46.75 2 CapLine -308.00 42.75 308.00 50.75 2 CapLine -324.25 54.88 332.25 54.88 2 CapLine -328.25 50.88 328.25 58.88 2 CapLine -344.62 66.38 352.62 66.38 2 CapLine -348.62 62.38 348.62 70.38 2 CapLine -365.00 81.12 373.00 81.12 2 CapLine -369.00 77.12 369.00 85.12 2 CapLine -385.25 99.12 393.25 99.12 2 CapLine -389.25 95.12 389.25 103.12 2 CapLine -405.62 120.38 413.62 120.38 2 CapLine -409.62 116.38 409.62 124.38 2 CapLine -425.88 144.88 433.88 144.88 2 CapLine -429.88 140.88 429.88 148.88 2 CapLine -446.25 172.62 454.25 172.62 2 CapLine -450.25 168.62 450.25 176.62 2 CapLine -466.50 203.75 474.50 203.75 2 CapLine -470.50 199.75 470.50 207.75 2 CapLine -486.88 238.12 494.88 238.12 2 CapLine -490.88 234.12 490.88 242.12 2 CapLine -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av3.gif deleted file mode 100755 index 5d68c271e..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av4.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av4.eps deleted file mode 100755 index 71ebb2764..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av4.eps +++ /dev/null @@ -1,1103 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_xy4 -%%Creation Date: Sun, Sep 10, 1995 06:41 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(-200) 18.00 247.38 32.00 WS -gsave 0.125 ps [1] sd -57.00 236.50 558.00 236.50 MacLine -grestore -1.00 ps -561.50 236.00 558.00 236.00 MacLine -53.50 236.00 57.00 236.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 229.88 558.00 229.88 MacLine -grestore -1.00 ps -561.50 229.38 558.00 229.38 MacLine -53.50 229.38 57.00 229.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 223.38 558.00 223.38 MacLine -grestore -1.00 ps -561.50 222.88 558.00 222.88 MacLine -53.50 222.88 57.00 222.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 216.88 558.00 216.88 MacLine -grestore -1.00 ps -561.50 216.38 558.00 216.38 MacLine -53.50 216.38 57.00 216.38 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 210.12 554.50 210.12 MacLine -grestore -1.00 ps -561.50 209.75 554.50 209.75 MacLine -53.50 209.75 60.50 209.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-150) 18.00 214.62 32.00 WS -gsave 0.125 ps [1] sd -57.00 203.75 558.00 203.75 MacLine -grestore -1.00 ps -561.50 203.25 558.00 203.25 MacLine -53.50 203.25 57.00 203.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 190.62 558.00 190.62 MacLine -grestore -1.00 ps -561.50 190.12 558.00 190.12 MacLine -53.50 190.12 57.00 190.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 184.12 558.00 184.12 MacLine -grestore -1.00 ps -561.50 183.62 558.00 183.62 MacLine -53.50 183.62 57.00 183.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 177.50 554.50 177.50 MacLine -grestore -1.00 ps -561.50 177.12 554.50 177.12 MacLine -53.50 177.12 60.50 177.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-100) 18.00 182.00 32.00 WS -gsave 0.125 ps [1] sd -57.00 171.00 558.00 171.00 MacLine -grestore -1.00 ps -561.50 170.50 558.00 170.50 MacLine -53.50 170.50 57.00 170.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 164.50 558.00 164.50 MacLine -grestore -1.00 ps -561.50 164.00 558.00 164.00 MacLine -53.50 164.00 57.00 164.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 158.00 558.00 158.00 MacLine -grestore -1.00 ps -561.50 157.50 558.00 157.50 MacLine -53.50 157.50 57.00 157.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 144.75 554.50 144.75 MacLine -grestore -1.00 ps -561.50 144.38 554.50 144.38 MacLine -53.50 144.38 60.50 144.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-50) 26.88 149.25 23.12 WS -gsave 0.125 ps [1] sd -57.00 138.38 558.00 138.38 MacLine -grestore -1.00 ps -561.50 137.88 558.00 137.88 MacLine -53.50 137.88 57.00 137.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 131.75 558.00 131.75 MacLine -grestore -1.00 ps -561.50 131.25 558.00 131.25 MacLine -53.50 131.25 57.00 131.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 125.25 558.00 125.25 MacLine -grestore -1.00 ps -561.50 124.75 558.00 124.75 MacLine -53.50 124.75 57.00 124.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 118.62 558.00 118.62 MacLine -grestore -1.00 ps -561.50 118.12 558.00 118.12 MacLine -53.50 118.12 57.00 118.12 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 112.00 554.50 112.00 MacLine -grestore -1.00 ps -561.50 111.62 554.50 111.62 MacLine -53.50 111.62 60.50 111.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 116.50 8.88 WS -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 99.00 558.00 99.00 MacLine -grestore -1.00 ps -561.50 98.50 558.00 98.50 MacLine -53.50 98.50 57.00 98.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 92.50 558.00 92.50 MacLine -grestore -1.00 ps -561.50 92.00 558.00 92.00 MacLine -53.50 92.00 57.00 92.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 86.00 558.00 86.00 MacLine -grestore -1.00 ps -561.50 85.50 558.00 85.50 MacLine -53.50 85.50 57.00 85.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 79.25 554.50 79.25 MacLine -grestore -1.00 ps -561.50 78.88 554.50 78.88 MacLine -53.50 78.88 60.50 78.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(50) 32.25 83.75 17.75 WS -gsave 0.125 ps [1] sd -57.00 72.88 558.00 72.88 MacLine -grestore -1.00 ps -561.50 72.38 558.00 72.38 MacLine -53.50 72.38 57.00 72.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 66.38 558.00 66.38 MacLine -grestore -1.00 ps -561.50 65.88 558.00 65.88 MacLine -53.50 65.88 57.00 65.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 53.25 558.00 53.25 MacLine -grestore -1.00 ps -561.50 52.75 558.00 52.75 MacLine -53.50 52.75 57.00 52.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 46.62 554.50 46.62 MacLine -grestore -1.00 ps -561.50 46.25 554.50 46.25 MacLine -53.50 46.25 60.50 46.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(100) 23.38 51.12 26.62 WS -gsave 0.125 ps [1] sd -57.00 40.12 558.00 40.12 MacLine -grestore -1.00 ps -561.50 39.62 558.00 39.62 MacLine -53.50 39.62 57.00 39.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 33.62 558.00 33.62 MacLine -grestore -1.00 ps -561.50 33.12 558.00 33.12 MacLine -53.50 33.12 57.00 33.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 27.12 558.00 27.12 MacLine -grestore -1.00 ps -561.50 26.62 558.00 26.62 MacLine -53.50 26.62 57.00 26.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 20.50 558.00 20.50 MacLine -grestore -1.00 ps -561.50 20.00 558.00 20.00 MacLine -53.50 20.00 57.00 20.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(150) 23.38 18.38 26.62 WS -gsave 1.00 ps 54.50 112.12 561.50 112.12 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(y \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 18.75 MacLine -561.50 242.50 561.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -553.50 239.00 553.50 17.00 MacLine -grestore -1.00 ps -553.00 13.50 553.00 17.00 MacLine -553.00 242.50 553.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -545.12 239.00 545.12 17.00 MacLine -grestore -1.00 ps -544.62 13.50 544.62 17.00 MacLine -544.62 242.50 544.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -536.62 239.00 536.62 17.00 MacLine -grestore -1.00 ps -536.12 13.50 536.12 17.00 MacLine -536.12 242.50 536.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -528.12 239.00 528.12 17.00 MacLine -grestore -1.00 ps -527.62 13.50 527.62 17.00 MacLine -527.62 242.50 527.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -519.50 235.50 519.50 20.50 MacLine -grestore -1.00 ps -519.12 13.50 519.12 20.50 MacLine -519.12 242.50 519.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(50) 510.75 259.88 17.75 WS -gsave 0.125 ps [1] sd -511.25 239.00 511.25 17.00 MacLine -grestore -1.00 ps -510.75 13.50 510.75 17.00 MacLine -510.75 242.50 510.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -502.75 239.00 502.75 17.00 MacLine -grestore -1.00 ps -502.25 13.50 502.25 17.00 MacLine -502.25 242.50 502.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -494.25 239.00 494.25 17.00 MacLine -grestore -1.00 ps -493.75 13.50 493.75 17.00 MacLine -493.75 242.50 493.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -485.75 239.00 485.75 17.00 MacLine -grestore -1.00 ps -485.25 13.50 485.25 17.00 MacLine -485.25 242.50 485.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -477.38 237.25 477.38 18.75 MacLine -grestore -1.00 ps -476.88 13.50 476.88 18.75 MacLine -476.88 242.50 476.88 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -468.88 239.00 468.88 17.00 MacLine -grestore -1.00 ps -468.38 13.50 468.38 17.00 MacLine -468.38 242.50 468.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -460.38 239.00 460.38 17.00 MacLine -grestore -1.00 ps -459.88 13.50 459.88 17.00 MacLine -459.88 242.50 459.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -451.88 239.00 451.88 17.00 MacLine -grestore -1.00 ps -451.38 13.50 451.38 17.00 MacLine -451.38 242.50 451.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -443.50 239.00 443.50 17.00 MacLine -grestore -1.00 ps -443.00 13.50 443.00 17.00 MacLine -443.00 242.50 443.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(40) 426.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -426.50 239.00 426.50 17.00 MacLine -grestore -1.00 ps -426.00 13.50 426.00 17.00 MacLine -426.00 242.50 426.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -418.12 239.00 418.12 17.00 MacLine -grestore -1.00 ps -417.62 13.50 417.62 17.00 MacLine -417.62 242.50 417.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -409.62 239.00 409.62 17.00 MacLine -grestore -1.00 ps -409.12 13.50 409.12 17.00 MacLine -409.12 242.50 409.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -401.12 239.00 401.12 17.00 MacLine -grestore -1.00 ps -400.62 13.50 400.62 17.00 MacLine -400.62 242.50 400.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.62 237.25 392.62 18.75 MacLine -grestore -1.00 ps -392.12 13.50 392.12 18.75 MacLine -392.12 242.50 392.12 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -384.25 239.00 384.25 17.00 MacLine -grestore -1.00 ps -383.75 13.50 383.75 17.00 MacLine -383.75 242.50 383.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -375.75 239.00 375.75 17.00 MacLine -grestore -1.00 ps -375.25 13.50 375.25 17.00 MacLine -375.25 242.50 375.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -367.25 239.00 367.25 17.00 MacLine -grestore -1.00 ps -366.75 13.50 366.75 17.00 MacLine -366.75 242.50 366.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -358.75 239.00 358.75 17.00 MacLine -grestore -1.00 ps -358.25 13.50 358.25 17.00 MacLine -358.25 242.50 358.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -350.25 235.50 350.25 20.50 MacLine -grestore -1.00 ps -349.88 13.50 349.88 20.50 MacLine -349.88 242.50 349.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(30) 341.50 259.88 17.75 WS -gsave 0.125 ps [1] sd -341.88 239.00 341.88 17.00 MacLine -grestore -1.00 ps -341.38 13.50 341.38 17.00 MacLine -341.38 242.50 341.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -333.38 239.00 333.38 17.00 MacLine -grestore -1.00 ps -332.88 13.50 332.88 17.00 MacLine -332.88 242.50 332.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -324.88 239.00 324.88 17.00 MacLine -grestore -1.00 ps -324.38 13.50 324.38 17.00 MacLine -324.38 242.50 324.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.50 239.00 316.50 17.00 MacLine -grestore -1.00 ps -316.00 13.50 316.00 17.00 MacLine -316.00 242.50 316.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -308.00 237.25 308.00 18.75 MacLine -grestore -1.00 ps -307.50 13.50 307.50 18.75 MacLine -307.50 242.50 307.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -299.50 239.00 299.50 17.00 MacLine -grestore -1.00 ps -299.00 13.50 299.00 17.00 MacLine -299.00 242.50 299.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -291.12 239.00 291.12 17.00 MacLine -grestore -1.00 ps -290.62 13.50 290.62 17.00 MacLine -290.62 242.50 290.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -282.62 239.00 282.62 17.00 MacLine -grestore -1.00 ps -282.12 13.50 282.12 17.00 MacLine -282.12 242.50 282.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -274.12 239.00 274.12 17.00 MacLine -grestore -1.00 ps -273.62 13.50 273.62 17.00 MacLine -273.62 242.50 273.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -265.50 235.50 265.50 20.50 MacLine -grestore -1.00 ps -265.12 13.50 265.12 20.50 MacLine -265.12 242.50 265.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 256.75 259.88 17.75 WS -gsave 0.125 ps [1] sd -257.25 239.00 257.25 17.00 MacLine -grestore -1.00 ps -256.75 13.50 256.75 17.00 MacLine -256.75 242.50 256.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -248.75 239.00 248.75 17.00 MacLine -grestore -1.00 ps -248.25 13.50 248.25 17.00 MacLine -248.25 242.50 248.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -240.25 239.00 240.25 17.00 MacLine -grestore -1.00 ps -239.75 13.50 239.75 17.00 MacLine -239.75 242.50 239.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -231.75 239.00 231.75 17.00 MacLine -grestore -1.00 ps -231.25 13.50 231.25 17.00 MacLine -231.25 242.50 231.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -223.38 237.25 223.38 18.75 MacLine -grestore -1.00 ps -222.88 13.50 222.88 18.75 MacLine -222.88 242.50 222.88 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -214.88 239.00 214.88 17.00 MacLine -grestore -1.00 ps -214.38 13.50 214.38 17.00 MacLine -214.38 242.50 214.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -206.38 239.00 206.38 17.00 MacLine -grestore -1.00 ps -205.88 13.50 205.88 17.00 MacLine -205.88 242.50 205.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -197.88 239.00 197.88 17.00 MacLine -grestore -1.00 ps -197.38 13.50 197.38 17.00 MacLine -197.38 242.50 197.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -189.50 239.00 189.50 17.00 MacLine -grestore -1.00 ps -189.00 13.50 189.00 17.00 MacLine -189.00 242.50 189.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 172.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -172.50 239.00 172.50 17.00 MacLine -grestore -1.00 ps -172.00 13.50 172.00 17.00 MacLine -172.00 242.50 172.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -164.12 239.00 164.12 17.00 MacLine -grestore -1.00 ps -163.62 13.50 163.62 17.00 MacLine -163.62 242.50 163.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -155.62 239.00 155.62 17.00 MacLine -grestore -1.00 ps -155.12 13.50 155.12 17.00 MacLine -155.12 242.50 155.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -147.12 239.00 147.12 17.00 MacLine -grestore -1.00 ps -146.62 13.50 146.62 17.00 MacLine -146.62 242.50 146.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -138.62 237.25 138.62 18.75 MacLine -grestore -1.00 ps -138.12 13.50 138.12 18.75 MacLine -138.12 242.50 138.12 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -130.25 239.00 130.25 17.00 MacLine -grestore -1.00 ps -129.75 13.50 129.75 17.00 MacLine -129.75 242.50 129.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -121.75 239.00 121.75 17.00 MacLine -grestore -1.00 ps -121.25 13.50 121.25 17.00 MacLine -121.25 242.50 121.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -113.25 239.00 113.25 17.00 MacLine -grestore -1.00 ps -112.75 13.50 112.75 17.00 MacLine -112.75 242.50 112.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -104.75 239.00 104.75 17.00 MacLine -grestore -1.00 ps -104.25 13.50 104.25 17.00 MacLine -104.25 242.50 104.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -96.25 235.50 96.25 20.50 MacLine -grestore -1.00 ps -95.88 13.50 95.88 20.50 MacLine -95.88 242.50 95.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 92.00 259.88 8.88 WS -gsave 0.125 ps [1] sd -87.88 239.00 87.88 17.00 MacLine -grestore -1.00 ps -87.38 13.50 87.38 17.00 MacLine -87.38 242.50 87.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -79.38 239.00 79.38 17.00 MacLine -grestore -1.00 ps -78.88 13.50 78.88 17.00 MacLine -78.88 242.50 78.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -70.88 239.00 70.88 17.00 MacLine -grestore -1.00 ps -70.38 13.50 70.38 17.00 MacLine -70.38 242.50 70.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -62.50 239.00 62.50 17.00 MacLine -grestore -1.00 ps -62.00 13.50 62.00 17.00 MacLine -62.00 242.50 62.00 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 18.75 MacLine -53.50 242.50 53.50 237.25 MacLine -1 ps -gsave 1.00 ps 96.38 242.50 96.38 14.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -(x \(m\)) 289.75 284.38 36.62 WS -2.00 ps -92.38 112.12 100.38 112.12 2 CapLine -96.38 108.12 96.38 116.12 2 CapLine -113.62 136.62 121.62 136.62 2 CapLine -117.62 132.62 117.62 140.62 2 CapLine -134.75 157.88 142.75 157.88 2 CapLine -138.75 153.88 138.75 161.88 2 CapLine -155.88 175.88 163.88 175.88 2 CapLine -159.88 171.88 159.88 179.88 2 CapLine -177.00 190.62 185.00 190.62 2 CapLine -181.00 186.62 181.00 194.62 2 CapLine -198.25 202.12 206.25 202.12 2 CapLine -202.25 198.12 202.25 206.12 2 CapLine -219.38 210.25 227.38 210.25 2 CapLine -223.38 206.25 223.38 214.25 2 CapLine -240.62 215.12 248.62 215.12 2 CapLine -244.62 211.12 244.62 219.12 2 CapLine -261.75 216.88 269.75 216.88 2 CapLine -265.75 212.88 265.75 220.88 2 CapLine -282.88 215.12 290.88 215.12 2 CapLine -286.88 211.12 286.88 219.12 2 CapLine -304.00 210.25 312.00 210.25 2 CapLine -308.00 206.25 308.00 214.25 2 CapLine -325.12 202.12 333.12 202.12 2 CapLine -329.12 198.12 329.12 206.12 2 CapLine -346.38 190.62 354.38 190.62 2 CapLine -350.38 186.62 350.38 194.62 2 CapLine -367.50 175.88 375.50 175.88 2 CapLine -371.50 171.88 371.50 179.88 2 CapLine -388.62 157.88 396.62 157.88 2 CapLine -392.62 153.88 392.62 161.88 2 CapLine -409.88 136.62 417.88 136.62 2 CapLine -413.88 132.62 413.88 140.62 2 CapLine -431.00 112.12 439.00 112.12 2 CapLine -435.00 108.12 435.00 116.12 2 CapLine -452.12 84.38 460.12 84.38 2 CapLine -456.12 80.38 456.12 88.38 2 CapLine -473.38 53.25 481.38 53.25 2 CapLine -477.38 49.25 477.38 57.25 2 CapLine -494.50 18.88 502.50 18.88 2 CapLine -498.50 14.88 498.50 22.88 2 CapLine -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av4.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av4.gif deleted file mode 100755 index 1e2fbd7fa..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av4.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av5.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av5.eps deleted file mode 100755 index 06caee90a..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av5.eps +++ /dev/null @@ -1,1118 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_xy5 -%%Creation Date: Sun, Sep 10, 1995 06:41 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(500) 23.38 18.38 26.62 WS -gsave 0.125 ps [1] sd -57.00 22.38 558.00 22.38 MacLine -grestore -1.00 ps -561.50 21.88 558.00 21.88 MacLine -53.50 21.88 57.00 21.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 30.62 558.00 30.62 MacLine -grestore -1.00 ps -561.50 30.12 558.00 30.12 MacLine -53.50 30.12 57.00 30.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 39.00 558.00 39.00 MacLine -grestore -1.00 ps -561.50 38.50 558.00 38.50 MacLine -53.50 38.50 57.00 38.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 47.25 558.00 47.25 MacLine -grestore -1.00 ps -561.50 46.75 558.00 46.75 MacLine -53.50 46.75 57.00 46.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 55.50 554.50 55.50 MacLine -grestore -1.00 ps -561.50 55.12 554.50 55.12 MacLine -53.50 55.12 60.50 55.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(400) 23.38 60.00 26.62 WS -gsave 0.125 ps [1] sd -57.00 64.00 558.00 64.00 MacLine -grestore -1.00 ps -561.50 63.50 558.00 63.50 MacLine -53.50 63.50 57.00 63.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 72.25 558.00 72.25 MacLine -grestore -1.00 ps -561.50 71.75 558.00 71.75 MacLine -53.50 71.75 57.00 71.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 80.62 558.00 80.62 MacLine -grestore -1.00 ps -561.50 80.12 558.00 80.12 MacLine -53.50 80.12 57.00 80.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 89.00 558.00 89.00 MacLine -grestore -1.00 ps -561.50 88.50 558.00 88.50 MacLine -53.50 88.50 57.00 88.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 97.12 554.50 97.12 MacLine -grestore -1.00 ps -561.50 96.75 554.50 96.75 MacLine -53.50 96.75 60.50 96.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(300) 23.38 101.62 26.62 WS -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 113.88 558.00 113.88 MacLine -grestore -1.00 ps -561.50 113.38 558.00 113.38 MacLine -53.50 113.38 57.00 113.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 122.25 558.00 122.25 MacLine -grestore -1.00 ps -561.50 121.75 558.00 121.75 MacLine -53.50 121.75 57.00 121.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 130.62 558.00 130.62 MacLine -grestore -1.00 ps -561.50 130.12 558.00 130.12 MacLine -53.50 130.12 57.00 130.12 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 138.75 554.50 138.75 MacLine -grestore -1.00 ps -561.50 138.38 554.50 138.38 MacLine -53.50 138.38 60.50 138.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(200) 23.38 143.25 26.62 WS -gsave 0.125 ps [1] sd -57.00 147.25 558.00 147.25 MacLine -grestore -1.00 ps -561.50 146.75 558.00 146.75 MacLine -53.50 146.75 57.00 146.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 155.62 558.00 155.62 MacLine -grestore -1.00 ps -561.50 155.12 558.00 155.12 MacLine -53.50 155.12 57.00 155.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 163.88 558.00 163.88 MacLine -grestore -1.00 ps -561.50 163.38 558.00 163.38 MacLine -53.50 163.38 57.00 163.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 172.25 558.00 172.25 MacLine -grestore -1.00 ps -561.50 171.75 558.00 171.75 MacLine -53.50 171.75 57.00 171.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 180.38 554.50 180.38 MacLine -grestore -1.00 ps -561.50 180.00 554.50 180.00 MacLine -53.50 180.00 60.50 180.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(100) 23.38 184.88 26.62 WS -gsave 0.125 ps [1] sd -57.00 188.88 558.00 188.88 MacLine -grestore -1.00 ps -561.50 188.38 558.00 188.38 MacLine -53.50 188.38 57.00 188.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 205.50 558.00 205.50 MacLine -grestore -1.00 ps -561.50 205.00 558.00 205.00 MacLine -53.50 205.00 57.00 205.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 213.88 558.00 213.88 MacLine -grestore -1.00 ps -561.50 213.38 558.00 213.38 MacLine -53.50 213.38 57.00 213.38 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 222.00 554.50 222.00 MacLine -grestore -1.00 ps -561.50 221.62 554.50 221.62 MacLine -53.50 221.62 60.50 221.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 226.50 8.88 WS -gsave 0.125 ps [1] sd -57.00 230.50 558.00 230.50 MacLine -grestore -1.00 ps -561.50 230.00 558.00 230.00 MacLine -53.50 230.00 57.00 230.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 238.88 558.00 238.88 MacLine -grestore -1.00 ps -561.50 238.38 558.00 238.38 MacLine -53.50 238.38 57.00 238.38 MacLine -1 ps -gsave 1.00 ps 54.50 222.12 561.50 222.12 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(y \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 18.75 MacLine -561.50 242.50 561.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -554.75 239.00 554.75 17.00 MacLine -grestore -1.00 ps -554.25 13.50 554.25 17.00 MacLine -554.25 242.50 554.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -547.50 239.00 547.50 17.00 MacLine -grestore -1.00 ps -547.00 13.50 547.00 17.00 MacLine -547.00 242.50 547.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -540.25 239.00 540.25 17.00 MacLine -grestore -1.00 ps -539.75 13.50 539.75 17.00 MacLine -539.75 242.50 539.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -533.00 239.00 533.00 17.00 MacLine -grestore -1.00 ps -532.50 13.50 532.50 17.00 MacLine -532.50 242.50 532.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -525.62 235.50 525.62 20.50 MacLine -grestore -1.00 ps -525.25 13.50 525.25 20.50 MacLine -525.25 242.50 525.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(60) 516.88 259.88 17.75 WS -gsave 0.125 ps [1] sd -518.50 239.00 518.50 17.00 MacLine -grestore -1.00 ps -518.00 13.50 518.00 17.00 MacLine -518.00 242.50 518.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -511.25 239.00 511.25 17.00 MacLine -grestore -1.00 ps -510.75 13.50 510.75 17.00 MacLine -510.75 242.50 510.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -504.00 239.00 504.00 17.00 MacLine -grestore -1.00 ps -503.50 13.50 503.50 17.00 MacLine -503.50 242.50 503.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -496.62 239.00 496.62 17.00 MacLine -grestore -1.00 ps -496.12 13.50 496.12 17.00 MacLine -496.12 242.50 496.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -489.38 237.25 489.38 18.75 MacLine -grestore -1.00 ps -488.88 13.50 488.88 18.75 MacLine -488.88 242.50 488.88 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -482.12 239.00 482.12 17.00 MacLine -grestore -1.00 ps -481.62 13.50 481.62 17.00 MacLine -481.62 242.50 481.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -474.88 239.00 474.88 17.00 MacLine -grestore -1.00 ps -474.38 13.50 474.38 17.00 MacLine -474.38 242.50 474.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -467.62 239.00 467.62 17.00 MacLine -grestore -1.00 ps -467.12 13.50 467.12 17.00 MacLine -467.12 242.50 467.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -460.38 239.00 460.38 17.00 MacLine -grestore -1.00 ps -459.88 13.50 459.88 17.00 MacLine -459.88 242.50 459.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -453.00 235.50 453.00 20.50 MacLine -grestore -1.00 ps -452.62 13.50 452.62 20.50 MacLine -452.62 242.50 452.62 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(50) 444.25 259.88 17.75 WS -gsave 0.125 ps [1] sd -445.88 239.00 445.88 17.00 MacLine -grestore -1.00 ps -445.38 13.50 445.38 17.00 MacLine -445.38 242.50 445.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -438.62 239.00 438.62 17.00 MacLine -grestore -1.00 ps -438.12 13.50 438.12 17.00 MacLine -438.12 242.50 438.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -431.38 239.00 431.38 17.00 MacLine -grestore -1.00 ps -430.88 13.50 430.88 17.00 MacLine -430.88 242.50 430.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -424.12 239.00 424.12 17.00 MacLine -grestore -1.00 ps -423.62 13.50 423.62 17.00 MacLine -423.62 242.50 423.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -416.88 237.25 416.88 18.75 MacLine -grestore -1.00 ps -416.38 13.50 416.38 18.75 MacLine -416.38 242.50 416.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -409.62 239.00 409.62 17.00 MacLine -grestore -1.00 ps -409.12 13.50 409.12 17.00 MacLine -409.12 242.50 409.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -402.38 239.00 402.38 17.00 MacLine -grestore -1.00 ps -401.88 13.50 401.88 17.00 MacLine -401.88 242.50 401.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -395.12 239.00 395.12 17.00 MacLine -grestore -1.00 ps -394.62 13.50 394.62 17.00 MacLine -394.62 242.50 394.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -387.88 239.00 387.88 17.00 MacLine -grestore -1.00 ps -387.38 13.50 387.38 17.00 MacLine -387.38 242.50 387.38 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -380.50 235.50 380.50 20.50 MacLine -grestore -1.00 ps -380.12 13.50 380.12 20.50 MacLine -380.12 242.50 380.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(40) 371.75 259.88 17.75 WS -gsave 0.125 ps [1] sd -373.38 239.00 373.38 17.00 MacLine -grestore -1.00 ps -372.88 13.50 372.88 17.00 MacLine -372.88 242.50 372.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -366.00 239.00 366.00 17.00 MacLine -grestore -1.00 ps -365.50 13.50 365.50 17.00 MacLine -365.50 242.50 365.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -358.75 239.00 358.75 17.00 MacLine -grestore -1.00 ps -358.25 13.50 358.25 17.00 MacLine -358.25 242.50 358.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -351.50 239.00 351.50 17.00 MacLine -grestore -1.00 ps -351.00 13.50 351.00 17.00 MacLine -351.00 242.50 351.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -344.25 237.25 344.25 18.75 MacLine -grestore -1.00 ps -343.75 13.50 343.75 18.75 MacLine -343.75 242.50 343.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -337.00 239.00 337.00 17.00 MacLine -grestore -1.00 ps -336.50 13.50 336.50 17.00 MacLine -336.50 242.50 336.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -329.75 239.00 329.75 17.00 MacLine -grestore -1.00 ps -329.25 13.50 329.25 17.00 MacLine -329.25 242.50 329.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -322.50 239.00 322.50 17.00 MacLine -grestore -1.00 ps -322.00 13.50 322.00 17.00 MacLine -322.00 242.50 322.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -315.25 239.00 315.25 17.00 MacLine -grestore -1.00 ps -314.75 13.50 314.75 17.00 MacLine -314.75 242.50 314.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(30) 299.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -300.75 239.00 300.75 17.00 MacLine -grestore -1.00 ps -300.25 13.50 300.25 17.00 MacLine -300.25 242.50 300.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -293.50 239.00 293.50 17.00 MacLine -grestore -1.00 ps -293.00 13.50 293.00 17.00 MacLine -293.00 242.50 293.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -286.25 239.00 286.25 17.00 MacLine -grestore -1.00 ps -285.75 13.50 285.75 17.00 MacLine -285.75 242.50 285.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -279.00 239.00 279.00 17.00 MacLine -grestore -1.00 ps -278.50 13.50 278.50 17.00 MacLine -278.50 242.50 278.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -271.75 237.25 271.75 18.75 MacLine -grestore -1.00 ps -271.25 13.50 271.25 18.75 MacLine -271.25 242.50 271.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -264.50 239.00 264.50 17.00 MacLine -grestore -1.00 ps -264.00 13.50 264.00 17.00 MacLine -264.00 242.50 264.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -257.25 239.00 257.25 17.00 MacLine -grestore -1.00 ps -256.75 13.50 256.75 17.00 MacLine -256.75 242.50 256.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -250.00 239.00 250.00 17.00 MacLine -grestore -1.00 ps -249.50 13.50 249.50 17.00 MacLine -249.50 242.50 249.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -242.62 239.00 242.62 17.00 MacLine -grestore -1.00 ps -242.12 13.50 242.12 17.00 MacLine -242.12 242.50 242.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -235.25 235.50 235.25 20.50 MacLine -grestore -1.00 ps -234.88 13.50 234.88 20.50 MacLine -234.88 242.50 234.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 226.50 259.88 17.75 WS -gsave 0.125 ps [1] sd -228.12 239.00 228.12 17.00 MacLine -grestore -1.00 ps -227.62 13.50 227.62 17.00 MacLine -227.62 242.50 227.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -220.88 239.00 220.88 17.00 MacLine -grestore -1.00 ps -220.38 13.50 220.38 17.00 MacLine -220.38 242.50 220.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -213.62 239.00 213.62 17.00 MacLine -grestore -1.00 ps -213.12 13.50 213.12 17.00 MacLine -213.12 242.50 213.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -206.38 239.00 206.38 17.00 MacLine -grestore -1.00 ps -205.88 13.50 205.88 17.00 MacLine -205.88 242.50 205.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -199.12 237.25 199.12 18.75 MacLine -grestore -1.00 ps -198.62 13.50 198.62 18.75 MacLine -198.62 242.50 198.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -191.88 239.00 191.88 17.00 MacLine -grestore -1.00 ps -191.38 13.50 191.38 17.00 MacLine -191.38 242.50 191.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -184.62 239.00 184.62 17.00 MacLine -grestore -1.00 ps -184.12 13.50 184.12 17.00 MacLine -184.12 242.50 184.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -177.38 239.00 177.38 17.00 MacLine -grestore -1.00 ps -176.88 13.50 176.88 17.00 MacLine -176.88 242.50 176.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -170.12 239.00 170.12 17.00 MacLine -grestore -1.00 ps -169.62 13.50 169.62 17.00 MacLine -169.62 242.50 169.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -162.75 235.50 162.75 20.50 MacLine -grestore -1.00 ps -162.38 13.50 162.38 20.50 MacLine -162.38 242.50 162.38 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 154.00 259.88 17.75 WS -gsave 0.125 ps [1] sd -155.62 239.00 155.62 17.00 MacLine -grestore -1.00 ps -155.12 13.50 155.12 17.00 MacLine -155.12 242.50 155.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -148.38 239.00 148.38 17.00 MacLine -grestore -1.00 ps -147.88 13.50 147.88 17.00 MacLine -147.88 242.50 147.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -141.12 239.00 141.12 17.00 MacLine -grestore -1.00 ps -140.62 13.50 140.62 17.00 MacLine -140.62 242.50 140.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -133.88 239.00 133.88 17.00 MacLine -grestore -1.00 ps -133.38 13.50 133.38 17.00 MacLine -133.38 242.50 133.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -126.62 237.25 126.62 18.75 MacLine -grestore -1.00 ps -126.12 13.50 126.12 18.75 MacLine -126.12 242.50 126.12 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -119.38 239.00 119.38 17.00 MacLine -grestore -1.00 ps -118.88 13.50 118.88 17.00 MacLine -118.88 242.50 118.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -112.00 239.00 112.00 17.00 MacLine -grestore -1.00 ps -111.50 13.50 111.50 17.00 MacLine -111.50 242.50 111.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -104.75 239.00 104.75 17.00 MacLine -grestore -1.00 ps -104.25 13.50 104.25 17.00 MacLine -104.25 242.50 104.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -97.50 239.00 97.50 17.00 MacLine -grestore -1.00 ps -97.00 13.50 97.00 17.00 MacLine -97.00 242.50 97.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -90.12 235.50 90.12 20.50 MacLine -grestore -1.00 ps -89.75 13.50 89.75 20.50 MacLine -89.75 242.50 89.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 85.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -83.00 239.00 83.00 17.00 MacLine -grestore -1.00 ps -82.50 13.50 82.50 17.00 MacLine -82.50 242.50 82.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -75.75 239.00 75.75 17.00 MacLine -grestore -1.00 ps -75.25 13.50 75.25 17.00 MacLine -75.25 242.50 75.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -68.50 239.00 68.50 17.00 MacLine -grestore -1.00 ps -68.00 13.50 68.00 17.00 MacLine -68.00 242.50 68.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -61.25 239.00 61.25 17.00 MacLine -grestore -1.00 ps -60.75 13.50 60.75 17.00 MacLine -60.75 242.50 60.75 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 18.75 MacLine -53.50 242.50 53.50 237.25 MacLine -1 ps -gsave 1.00 ps 90.25 242.50 90.25 14.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -(x \(m\)) 289.75 284.38 36.62 WS -2.00 ps -86.38 222.12 94.38 222.12 2 CapLine -90.38 218.12 90.38 226.12 2 CapLine -108.12 198.25 116.12 198.25 2 CapLine -112.12 194.25 112.12 202.25 2 CapLine -129.88 176.38 137.88 176.38 2 CapLine -133.88 172.38 133.88 180.38 2 CapLine -151.62 156.62 159.62 156.62 2 CapLine -155.62 152.62 155.62 160.62 2 CapLine -173.38 138.88 181.38 138.88 2 CapLine -177.38 134.88 177.38 142.88 2 CapLine -195.12 123.25 203.12 123.25 2 CapLine -199.12 119.25 199.12 127.25 2 CapLine -217.00 109.75 225.00 109.75 2 CapLine -221.00 105.75 221.00 113.75 2 CapLine -238.75 98.38 246.75 98.38 2 CapLine -242.75 94.38 242.75 102.38 2 CapLine -260.50 89.00 268.50 89.00 2 CapLine -264.50 85.00 264.50 93.00 2 CapLine -282.25 81.62 290.25 81.62 2 CapLine -286.25 77.62 286.25 85.62 2 CapLine -304.00 76.50 312.00 76.50 2 CapLine -308.00 72.50 308.00 80.50 2 CapLine -325.75 73.38 333.75 73.38 2 CapLine -329.75 69.38 329.75 77.38 2 CapLine -347.50 72.25 355.50 72.25 2 CapLine -351.50 68.25 351.50 76.25 2 CapLine -369.38 73.38 377.38 73.38 2 CapLine -373.38 69.38 373.38 77.38 2 CapLine -391.12 76.50 399.12 76.50 2 CapLine -395.12 72.50 395.12 80.50 2 CapLine -412.88 81.62 420.88 81.62 2 CapLine -416.88 77.62 416.88 85.62 2 CapLine -434.62 89.00 442.62 89.00 2 CapLine -438.62 85.00 438.62 93.00 2 CapLine -456.38 98.38 464.38 98.38 2 CapLine -460.38 94.38 460.38 102.38 2 CapLine -478.12 109.75 486.12 109.75 2 CapLine -482.12 105.75 482.12 113.75 2 CapLine -500.00 123.25 508.00 123.25 2 CapLine -504.00 119.25 504.00 127.25 2 CapLine -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av5.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av5.gif deleted file mode 100755 index 52eb4fdac..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av5.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av6.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av6.eps deleted file mode 100755 index a6e429c98..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av6.eps +++ /dev/null @@ -1,901 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_xy6 -%%Creation Date: Sun, Sep 10, 1995 06:41 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(-500) 18.00 247.38 32.00 WS -gsave 0.125 ps [1] sd -57.00 234.62 558.00 234.62 MacLine -grestore -1.00 ps -561.50 234.12 558.00 234.12 MacLine -53.50 234.12 57.00 234.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 226.38 558.00 226.38 MacLine -grestore -1.00 ps -561.50 225.88 558.00 225.88 MacLine -53.50 225.88 57.00 225.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 218.00 558.00 218.00 MacLine -grestore -1.00 ps -561.50 217.50 558.00 217.50 MacLine -53.50 217.50 57.00 217.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 209.75 558.00 209.75 MacLine -grestore -1.00 ps -561.50 209.25 558.00 209.25 MacLine -53.50 209.25 57.00 209.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 201.25 554.50 201.25 MacLine -grestore -1.00 ps -561.50 200.88 554.50 200.88 MacLine -53.50 200.88 60.50 200.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-400) 18.00 205.75 32.00 WS -gsave 0.125 ps [1] sd -57.00 193.00 558.00 193.00 MacLine -grestore -1.00 ps -561.50 192.50 558.00 192.50 MacLine -53.50 192.50 57.00 192.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 184.75 558.00 184.75 MacLine -grestore -1.00 ps -561.50 184.25 558.00 184.25 MacLine -53.50 184.25 57.00 184.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 176.38 558.00 176.38 MacLine -grestore -1.00 ps -561.50 175.88 558.00 175.88 MacLine -53.50 175.88 57.00 175.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 168.00 558.00 168.00 MacLine -grestore -1.00 ps -561.50 167.50 558.00 167.50 MacLine -53.50 167.50 57.00 167.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 159.62 554.50 159.62 MacLine -grestore -1.00 ps -561.50 159.25 554.50 159.25 MacLine -53.50 159.25 60.50 159.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-300) 18.00 164.12 32.00 WS -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 143.12 558.00 143.12 MacLine -grestore -1.00 ps -561.50 142.62 558.00 142.62 MacLine -53.50 142.62 57.00 142.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 134.75 558.00 134.75 MacLine -grestore -1.00 ps -561.50 134.25 558.00 134.25 MacLine -53.50 134.25 57.00 134.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 126.38 558.00 126.38 MacLine -grestore -1.00 ps -561.50 125.88 558.00 125.88 MacLine -53.50 125.88 57.00 125.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 118.00 554.50 118.00 MacLine -grestore -1.00 ps -561.50 117.62 554.50 117.62 MacLine -53.50 117.62 60.50 117.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-200) 18.00 122.50 32.00 WS -gsave 0.125 ps [1] sd -57.00 109.75 558.00 109.75 MacLine -grestore -1.00 ps -561.50 109.25 558.00 109.25 MacLine -53.50 109.25 57.00 109.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 101.38 558.00 101.38 MacLine -grestore -1.00 ps -561.50 100.88 558.00 100.88 MacLine -53.50 100.88 57.00 100.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 93.12 558.00 93.12 MacLine -grestore -1.00 ps -561.50 92.62 558.00 92.62 MacLine -53.50 92.62 57.00 92.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 84.75 558.00 84.75 MacLine -grestore -1.00 ps -561.50 84.25 558.00 84.25 MacLine -53.50 84.25 57.00 84.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 76.38 554.50 76.38 MacLine -grestore -1.00 ps -561.50 76.00 554.50 76.00 MacLine -53.50 76.00 60.50 76.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-100) 18.00 80.88 32.00 WS -gsave 0.125 ps [1] sd -57.00 68.12 558.00 68.12 MacLine -grestore -1.00 ps -561.50 67.62 558.00 67.62 MacLine -53.50 67.62 57.00 67.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 51.50 558.00 51.50 MacLine -grestore -1.00 ps -561.50 51.00 558.00 51.00 MacLine -53.50 51.00 57.00 51.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 43.12 558.00 43.12 MacLine -grestore -1.00 ps -561.50 42.62 558.00 42.62 MacLine -53.50 42.62 57.00 42.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 34.75 554.50 34.75 MacLine -grestore -1.00 ps -561.50 34.38 554.50 34.38 MacLine -53.50 34.38 60.50 34.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 39.25 8.88 WS -gsave 0.125 ps [1] sd -57.00 26.50 558.00 26.50 MacLine -grestore -1.00 ps -561.50 26.00 558.00 26.00 MacLine -53.50 26.00 57.00 26.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 18.12 558.00 18.12 MacLine -grestore -1.00 ps -561.50 17.62 558.00 17.62 MacLine -53.50 17.62 57.00 17.62 MacLine -1 ps -gsave 1.00 ps 54.50 34.88 561.50 34.88 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(y \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -555.62 239.00 555.62 17.00 MacLine -grestore -1.00 ps -555.12 13.50 555.12 17.00 MacLine -555.12 242.50 555.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -543.00 239.00 543.00 17.00 MacLine -grestore -1.00 ps -542.50 13.50 542.50 17.00 MacLine -542.50 242.50 542.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -530.25 237.25 530.25 18.75 MacLine -grestore -1.00 ps -529.75 13.50 529.75 18.75 MacLine -529.75 242.50 529.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -517.50 239.00 517.50 17.00 MacLine -grestore -1.00 ps -517.00 13.50 517.00 17.00 MacLine -517.00 242.50 517.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -504.88 239.00 504.88 17.00 MacLine -grestore -1.00 ps -504.38 13.50 504.38 17.00 MacLine -504.38 242.50 504.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -492.12 239.00 492.12 17.00 MacLine -grestore -1.00 ps -491.62 13.50 491.62 17.00 MacLine -491.62 242.50 491.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -479.50 239.00 479.50 17.00 MacLine -grestore -1.00 ps -479.00 13.50 479.00 17.00 MacLine -479.00 242.50 479.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -466.62 235.50 466.62 20.50 MacLine -grestore -1.00 ps -466.25 13.50 466.25 20.50 MacLine -466.25 242.50 466.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(60) 457.88 259.88 17.75 WS -gsave 0.125 ps [1] sd -454.00 239.00 454.00 17.00 MacLine -grestore -1.00 ps -453.50 13.50 453.50 17.00 MacLine -453.50 242.50 453.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -441.38 239.00 441.38 17.00 MacLine -grestore -1.00 ps -440.88 13.50 440.88 17.00 MacLine -440.88 242.50 440.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -428.62 239.00 428.62 17.00 MacLine -grestore -1.00 ps -428.12 13.50 428.12 17.00 MacLine -428.12 242.50 428.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -416.00 239.00 416.00 17.00 MacLine -grestore -1.00 ps -415.50 13.50 415.50 17.00 MacLine -415.50 242.50 415.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -403.25 237.25 403.25 18.75 MacLine -grestore -1.00 ps -402.75 13.50 402.75 18.75 MacLine -402.75 242.50 402.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -390.50 239.00 390.50 17.00 MacLine -grestore -1.00 ps -390.00 13.50 390.00 17.00 MacLine -390.00 242.50 390.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -377.88 239.00 377.88 17.00 MacLine -grestore -1.00 ps -377.38 13.50 377.38 17.00 MacLine -377.38 242.50 377.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -365.12 239.00 365.12 17.00 MacLine -grestore -1.00 ps -364.62 13.50 364.62 17.00 MacLine -364.62 242.50 364.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -352.50 239.00 352.50 17.00 MacLine -grestore -1.00 ps -352.00 13.50 352.00 17.00 MacLine -352.00 242.50 352.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -339.62 235.50 339.62 20.50 MacLine -grestore -1.00 ps -339.25 13.50 339.25 20.50 MacLine -339.25 242.50 339.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(40) 330.88 259.88 17.75 WS -gsave 0.125 ps [1] sd -327.00 239.00 327.00 17.00 MacLine -grestore -1.00 ps -326.50 13.50 326.50 17.00 MacLine -326.50 242.50 326.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -314.38 239.00 314.38 17.00 MacLine -grestore -1.00 ps -313.88 13.50 313.88 17.00 MacLine -313.88 242.50 313.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -301.62 239.00 301.62 17.00 MacLine -grestore -1.00 ps -301.12 13.50 301.12 17.00 MacLine -301.12 242.50 301.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -289.00 239.00 289.00 17.00 MacLine -grestore -1.00 ps -288.50 13.50 288.50 17.00 MacLine -288.50 242.50 288.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -276.25 237.25 276.25 18.75 MacLine -grestore -1.00 ps -275.75 13.50 275.75 18.75 MacLine -275.75 242.50 275.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -263.50 239.00 263.50 17.00 MacLine -grestore -1.00 ps -263.00 13.50 263.00 17.00 MacLine -263.00 242.50 263.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -250.88 239.00 250.88 17.00 MacLine -grestore -1.00 ps -250.38 13.50 250.38 17.00 MacLine -250.38 242.50 250.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -238.12 239.00 238.12 17.00 MacLine -grestore -1.00 ps -237.62 13.50 237.62 17.00 MacLine -237.62 242.50 237.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -225.50 239.00 225.50 17.00 MacLine -grestore -1.00 ps -225.00 13.50 225.00 17.00 MacLine -225.00 242.50 225.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -212.62 235.50 212.62 20.50 MacLine -grestore -1.00 ps -212.25 13.50 212.25 20.50 MacLine -212.25 242.50 212.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 203.88 259.88 17.75 WS -gsave 0.125 ps [1] sd -200.00 239.00 200.00 17.00 MacLine -grestore -1.00 ps -199.50 13.50 199.50 17.00 MacLine -199.50 242.50 199.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -187.38 239.00 187.38 17.00 MacLine -grestore -1.00 ps -186.88 13.50 186.88 17.00 MacLine -186.88 242.50 186.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -174.62 239.00 174.62 17.00 MacLine -grestore -1.00 ps -174.12 13.50 174.12 17.00 MacLine -174.12 242.50 174.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -162.00 239.00 162.00 17.00 MacLine -grestore -1.00 ps -161.50 13.50 161.50 17.00 MacLine -161.50 242.50 161.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -149.25 237.25 149.25 18.75 MacLine -grestore -1.00 ps -148.75 13.50 148.75 18.75 MacLine -148.75 242.50 148.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -136.50 239.00 136.50 17.00 MacLine -grestore -1.00 ps -136.00 13.50 136.00 17.00 MacLine -136.00 242.50 136.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -123.88 239.00 123.88 17.00 MacLine -grestore -1.00 ps -123.38 13.50 123.38 17.00 MacLine -123.38 242.50 123.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -111.12 239.00 111.12 17.00 MacLine -grestore -1.00 ps -110.62 13.50 110.62 17.00 MacLine -110.62 242.50 110.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -98.50 239.00 98.50 17.00 MacLine -grestore -1.00 ps -98.00 13.50 98.00 17.00 MacLine -98.00 242.50 98.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -85.62 235.50 85.62 20.50 MacLine -grestore -1.00 ps -85.25 13.50 85.25 20.50 MacLine -85.25 242.50 85.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 81.38 259.88 8.88 WS -gsave 0.125 ps [1] sd -73.00 239.00 73.00 17.00 MacLine -grestore -1.00 ps -72.50 13.50 72.50 17.00 MacLine -72.50 242.50 72.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -60.38 239.00 60.38 17.00 MacLine -grestore -1.00 ps -59.88 13.50 59.88 17.00 MacLine -59.88 242.50 59.88 239.00 MacLine -1 ps -gsave 1.00 ps 85.75 242.50 85.75 14.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -(x \(m\)) 289.75 284.38 36.62 WS -2.00 ps -81.75 34.88 89.75 34.88 2 CapLine -85.75 30.88 85.75 38.88 2 CapLine -104.00 58.75 112.00 58.75 2 CapLine -108.00 54.75 108.00 62.75 2 CapLine -126.25 80.62 134.25 80.62 2 CapLine -130.25 76.62 130.25 84.62 2 CapLine -148.50 100.38 156.50 100.38 2 CapLine -152.50 96.38 152.50 104.38 2 CapLine -170.75 118.12 178.75 118.12 2 CapLine -174.75 114.12 174.75 122.12 2 CapLine -192.88 133.75 200.88 133.75 2 CapLine -196.88 129.75 196.88 137.75 2 CapLine -215.12 147.25 223.12 147.25 2 CapLine -219.12 143.25 219.12 151.25 2 CapLine -237.38 158.62 245.38 158.62 2 CapLine -241.38 154.62 241.38 162.62 2 CapLine -259.62 168.00 267.62 168.00 2 CapLine -263.62 164.00 263.62 172.00 2 CapLine -281.88 175.38 289.88 175.38 2 CapLine -285.88 171.38 285.88 179.38 2 CapLine -304.00 180.50 312.00 180.50 2 CapLine -308.00 176.50 308.00 184.50 2 CapLine -326.25 183.62 334.25 183.62 2 CapLine -330.25 179.62 330.25 187.62 2 CapLine -348.38 184.75 356.38 184.75 2 CapLine -352.38 180.75 352.38 188.75 2 CapLine -370.75 183.62 378.75 183.62 2 CapLine -374.75 179.62 374.75 187.62 2 CapLine -392.88 180.50 400.88 180.50 2 CapLine -396.88 176.50 396.88 184.50 2 CapLine -415.12 175.38 423.12 175.38 2 CapLine -419.12 171.38 419.12 179.38 2 CapLine -437.38 168.00 445.38 168.00 2 CapLine -441.38 164.00 441.38 172.00 2 CapLine -459.50 158.62 467.50 158.62 2 CapLine -463.50 154.62 463.50 162.62 2 CapLine -481.75 147.25 489.75 147.25 2 CapLine -485.75 143.25 485.75 151.25 2 CapLine -504.00 133.75 512.00 133.75 2 CapLine -508.00 129.75 508.00 137.75 2 CapLine -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av6.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av6.gif deleted file mode 100755 index f6f75f997..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av6.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av7.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av7.eps deleted file mode 100755 index aec875f1d..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av7.eps +++ /dev/null @@ -1,975 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_xy7 -%%Creation Date: Sun, Sep 10, 1995 06:41 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(600) 23.38 18.38 26.62 WS -gsave 0.125 ps [1] sd -57.00 21.00 558.00 21.00 MacLine -grestore -1.00 ps -561.50 20.50 558.00 20.50 MacLine -53.50 20.50 57.00 20.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 28.12 558.00 28.12 MacLine -grestore -1.00 ps -561.50 27.62 558.00 27.62 MacLine -53.50 27.62 57.00 27.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 35.12 558.00 35.12 MacLine -grestore -1.00 ps -561.50 34.62 558.00 34.62 MacLine -53.50 34.62 57.00 34.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 42.12 558.00 42.12 MacLine -grestore -1.00 ps -561.50 41.62 558.00 41.62 MacLine -53.50 41.62 57.00 41.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 49.12 554.50 49.12 MacLine -grestore -1.00 ps -561.50 48.75 554.50 48.75 MacLine -53.50 48.75 60.50 48.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(500) 23.38 53.62 26.62 WS -gsave 0.125 ps [1] sd -57.00 56.25 558.00 56.25 MacLine -grestore -1.00 ps -561.50 55.75 558.00 55.75 MacLine -53.50 55.75 57.00 55.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 63.38 558.00 63.38 MacLine -grestore -1.00 ps -561.50 62.88 558.00 62.88 MacLine -53.50 62.88 57.00 62.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 70.38 558.00 70.38 MacLine -grestore -1.00 ps -561.50 69.88 558.00 69.88 MacLine -53.50 69.88 57.00 69.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 77.38 558.00 77.38 MacLine -grestore -1.00 ps -561.50 76.88 558.00 76.88 MacLine -53.50 76.88 57.00 76.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 84.38 554.50 84.38 MacLine -grestore -1.00 ps -561.50 84.00 554.50 84.00 MacLine -53.50 84.00 60.50 84.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(400) 23.38 88.88 26.62 WS -gsave 0.125 ps [1] sd -57.00 91.50 558.00 91.50 MacLine -grestore -1.00 ps -561.50 91.00 558.00 91.00 MacLine -53.50 91.00 57.00 91.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 98.50 558.00 98.50 MacLine -grestore -1.00 ps -561.50 98.00 558.00 98.00 MacLine -53.50 98.00 57.00 98.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 112.62 558.00 112.62 MacLine -grestore -1.00 ps -561.50 112.12 558.00 112.12 MacLine -53.50 112.12 57.00 112.12 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 119.62 554.50 119.62 MacLine -grestore -1.00 ps -561.50 119.25 554.50 119.25 MacLine -53.50 119.25 60.50 119.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(300) 23.38 124.12 26.62 WS -gsave 0.125 ps [1] sd -57.00 126.75 558.00 126.75 MacLine -grestore -1.00 ps -561.50 126.25 558.00 126.25 MacLine -53.50 126.25 57.00 126.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 133.75 558.00 133.75 MacLine -grestore -1.00 ps -561.50 133.25 558.00 133.25 MacLine -53.50 133.25 57.00 133.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.88 558.00 140.88 MacLine -grestore -1.00 ps -561.50 140.38 558.00 140.38 MacLine -53.50 140.38 57.00 140.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 147.88 558.00 147.88 MacLine -grestore -1.00 ps -561.50 147.38 558.00 147.38 MacLine -53.50 147.38 57.00 147.38 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 154.75 554.50 154.75 MacLine -grestore -1.00 ps -561.50 154.38 554.50 154.38 MacLine -53.50 154.38 60.50 154.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(200) 23.38 159.25 26.62 WS -gsave 0.125 ps [1] sd -57.00 162.00 558.00 162.00 MacLine -grestore -1.00 ps -561.50 161.50 558.00 161.50 MacLine -53.50 161.50 57.00 161.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 169.00 558.00 169.00 MacLine -grestore -1.00 ps -561.50 168.50 558.00 168.50 MacLine -53.50 168.50 57.00 168.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 176.00 558.00 176.00 MacLine -grestore -1.00 ps -561.50 175.50 558.00 175.50 MacLine -53.50 175.50 57.00 175.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 183.12 558.00 183.12 MacLine -grestore -1.00 ps -561.50 182.62 558.00 182.62 MacLine -53.50 182.62 57.00 182.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 190.00 554.50 190.00 MacLine -grestore -1.00 ps -561.50 189.62 554.50 189.62 MacLine -53.50 189.62 60.50 189.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(100) 23.38 194.50 26.62 WS -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 204.25 558.00 204.25 MacLine -grestore -1.00 ps -561.50 203.75 558.00 203.75 MacLine -53.50 203.75 57.00 203.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 211.25 558.00 211.25 MacLine -grestore -1.00 ps -561.50 210.75 558.00 210.75 MacLine -53.50 210.75 57.00 210.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 218.38 558.00 218.38 MacLine -grestore -1.00 ps -561.50 217.88 558.00 217.88 MacLine -53.50 217.88 57.00 217.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 225.25 554.50 225.25 MacLine -grestore -1.00 ps -561.50 224.88 554.50 224.88 MacLine -53.50 224.88 60.50 224.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 229.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 232.38 558.00 232.38 MacLine -grestore -1.00 ps -561.50 231.88 558.00 231.88 MacLine -53.50 231.88 57.00 231.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 239.50 558.00 239.50 MacLine -grestore -1.00 ps -561.50 239.00 558.00 239.00 MacLine -53.50 239.00 57.00 239.00 MacLine -1 ps -gsave 1.00 ps 54.50 225.38 561.50 225.38 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(y \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -556.38 239.00 556.38 17.00 MacLine -grestore -1.00 ps -555.88 13.50 555.88 17.00 MacLine -555.88 242.50 555.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -545.12 239.00 545.12 17.00 MacLine -grestore -1.00 ps -544.62 13.50 544.62 17.00 MacLine -544.62 242.50 544.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -533.62 235.50 533.62 20.50 MacLine -grestore -1.00 ps -533.25 13.50 533.25 20.50 MacLine -533.25 242.50 533.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(80) 524.88 259.88 17.75 WS -gsave 0.125 ps [1] sd -522.50 239.00 522.50 17.00 MacLine -grestore -1.00 ps -522.00 13.50 522.00 17.00 MacLine -522.00 242.50 522.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -511.25 239.00 511.25 17.00 MacLine -grestore -1.00 ps -510.75 13.50 510.75 17.00 MacLine -510.75 242.50 510.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -499.88 239.00 499.88 17.00 MacLine -grestore -1.00 ps -499.38 13.50 499.38 17.00 MacLine -499.38 242.50 499.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -488.62 239.00 488.62 17.00 MacLine -grestore -1.00 ps -488.12 13.50 488.12 17.00 MacLine -488.12 242.50 488.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -477.38 237.25 477.38 18.75 MacLine -grestore -1.00 ps -476.88 13.50 476.88 18.75 MacLine -476.88 242.50 476.88 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -466.00 239.00 466.00 17.00 MacLine -grestore -1.00 ps -465.50 13.50 465.50 17.00 MacLine -465.50 242.50 465.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -454.75 239.00 454.75 17.00 MacLine -grestore -1.00 ps -454.25 13.50 454.25 17.00 MacLine -454.25 242.50 454.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -443.50 239.00 443.50 17.00 MacLine -grestore -1.00 ps -443.00 13.50 443.00 17.00 MacLine -443.00 242.50 443.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -432.12 239.00 432.12 17.00 MacLine -grestore -1.00 ps -431.62 13.50 431.62 17.00 MacLine -431.62 242.50 431.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -420.75 235.50 420.75 20.50 MacLine -grestore -1.00 ps -420.38 13.50 420.38 20.50 MacLine -420.38 242.50 420.38 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(60) 412.00 259.88 17.75 WS -gsave 0.125 ps [1] sd -409.62 239.00 409.62 17.00 MacLine -grestore -1.00 ps -409.12 13.50 409.12 17.00 MacLine -409.12 242.50 409.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -398.25 239.00 398.25 17.00 MacLine -grestore -1.00 ps -397.75 13.50 397.75 17.00 MacLine -397.75 242.50 397.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -387.00 239.00 387.00 17.00 MacLine -grestore -1.00 ps -386.50 13.50 386.50 17.00 MacLine -386.50 242.50 386.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -375.75 239.00 375.75 17.00 MacLine -grestore -1.00 ps -375.25 13.50 375.25 17.00 MacLine -375.25 242.50 375.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -364.50 237.25 364.50 18.75 MacLine -grestore -1.00 ps -364.00 13.50 364.00 18.75 MacLine -364.00 242.50 364.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -353.12 239.00 353.12 17.00 MacLine -grestore -1.00 ps -352.62 13.50 352.62 17.00 MacLine -352.62 242.50 352.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -341.88 239.00 341.88 17.00 MacLine -grestore -1.00 ps -341.38 13.50 341.38 17.00 MacLine -341.38 242.50 341.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -330.62 239.00 330.62 17.00 MacLine -grestore -1.00 ps -330.12 13.50 330.12 17.00 MacLine -330.12 242.50 330.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -319.25 239.00 319.25 17.00 MacLine -grestore -1.00 ps -318.75 13.50 318.75 17.00 MacLine -318.75 242.50 318.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(40) 299.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -296.75 239.00 296.75 17.00 MacLine -grestore -1.00 ps -296.25 13.50 296.25 17.00 MacLine -296.25 242.50 296.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -285.38 239.00 285.38 17.00 MacLine -grestore -1.00 ps -284.88 13.50 284.88 17.00 MacLine -284.88 242.50 284.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -274.12 239.00 274.12 17.00 MacLine -grestore -1.00 ps -273.62 13.50 273.62 17.00 MacLine -273.62 242.50 273.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -262.88 239.00 262.88 17.00 MacLine -grestore -1.00 ps -262.38 13.50 262.38 17.00 MacLine -262.38 242.50 262.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -251.50 237.25 251.50 18.75 MacLine -grestore -1.00 ps -251.00 13.50 251.00 18.75 MacLine -251.00 242.50 251.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -240.25 239.00 240.25 17.00 MacLine -grestore -1.00 ps -239.75 13.50 239.75 17.00 MacLine -239.75 242.50 239.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -229.00 239.00 229.00 17.00 MacLine -grestore -1.00 ps -228.50 13.50 228.50 17.00 MacLine -228.50 242.50 228.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -217.75 239.00 217.75 17.00 MacLine -grestore -1.00 ps -217.25 13.50 217.25 17.00 MacLine -217.25 242.50 217.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -206.38 239.00 206.38 17.00 MacLine -grestore -1.00 ps -205.88 13.50 205.88 17.00 MacLine -205.88 242.50 205.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -195.00 235.50 195.00 20.50 MacLine -grestore -1.00 ps -194.62 13.50 194.62 20.50 MacLine -194.62 242.50 194.62 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 186.25 259.88 17.75 WS -gsave 0.125 ps [1] sd -183.88 239.00 183.88 17.00 MacLine -grestore -1.00 ps -183.38 13.50 183.38 17.00 MacLine -183.38 242.50 183.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -172.50 239.00 172.50 17.00 MacLine -grestore -1.00 ps -172.00 13.50 172.00 17.00 MacLine -172.00 242.50 172.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -161.25 239.00 161.25 17.00 MacLine -grestore -1.00 ps -160.75 13.50 160.75 17.00 MacLine -160.75 242.50 160.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -150.00 239.00 150.00 17.00 MacLine -grestore -1.00 ps -149.50 13.50 149.50 17.00 MacLine -149.50 242.50 149.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -138.62 237.25 138.62 18.75 MacLine -grestore -1.00 ps -138.12 13.50 138.12 18.75 MacLine -138.12 242.50 138.12 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -127.38 239.00 127.38 17.00 MacLine -grestore -1.00 ps -126.88 13.50 126.88 17.00 MacLine -126.88 242.50 126.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -116.12 239.00 116.12 17.00 MacLine -grestore -1.00 ps -115.62 13.50 115.62 17.00 MacLine -115.62 242.50 115.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -104.75 239.00 104.75 17.00 MacLine -grestore -1.00 ps -104.25 13.50 104.25 17.00 MacLine -104.25 242.50 104.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -93.50 239.00 93.50 17.00 MacLine -grestore -1.00 ps -93.00 13.50 93.00 17.00 MacLine -93.00 242.50 93.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -82.12 235.50 82.12 20.50 MacLine -grestore -1.00 ps -81.75 13.50 81.75 20.50 MacLine -81.75 242.50 81.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 77.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -70.88 239.00 70.88 17.00 MacLine -grestore -1.00 ps -70.38 13.50 70.38 17.00 MacLine -70.38 242.50 70.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -59.62 239.00 59.62 17.00 MacLine -grestore -1.00 ps -59.12 13.50 59.12 17.00 MacLine -59.12 242.50 59.12 239.00 MacLine -1 ps -gsave 1.00 ps 82.25 242.50 82.25 14.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -(x \(m\)) 289.75 284.38 36.62 WS -2.00 ps -78.25 225.38 86.25 225.38 2 CapLine -82.25 221.38 82.25 229.38 2 CapLine -100.88 198.62 108.88 198.62 2 CapLine -104.88 194.62 104.88 202.62 2 CapLine -123.50 174.62 131.50 174.62 2 CapLine -127.50 170.62 127.50 178.62 2 CapLine -146.00 153.50 154.00 153.50 2 CapLine -150.00 149.50 150.00 157.50 2 CapLine -168.62 135.25 176.62 135.25 2 CapLine -172.62 131.25 172.62 139.25 2 CapLine -191.12 119.75 199.12 119.75 2 CapLine -195.12 115.75 195.12 123.75 2 CapLine -213.75 107.00 221.75 107.00 2 CapLine -217.75 103.00 217.75 111.00 2 CapLine -236.38 97.12 244.38 97.12 2 CapLine -240.38 93.12 240.38 101.12 2 CapLine -258.88 90.12 266.88 90.12 2 CapLine -262.88 86.12 262.88 94.12 2 CapLine -281.50 85.88 289.50 85.88 2 CapLine -285.50 81.88 285.50 89.88 2 CapLine -304.00 84.50 312.00 84.50 2 CapLine -308.00 80.50 308.00 88.50 2 CapLine -326.62 85.88 334.62 85.88 2 CapLine -330.62 81.88 330.62 89.88 2 CapLine -349.12 90.12 357.12 90.12 2 CapLine -353.12 86.12 353.12 94.12 2 CapLine -371.75 97.12 379.75 97.12 2 CapLine -375.75 93.12 375.75 101.12 2 CapLine -394.38 107.00 402.38 107.00 2 CapLine -398.38 103.00 398.38 111.00 2 CapLine -416.88 119.75 424.88 119.75 2 CapLine -420.88 115.75 420.88 123.75 2 CapLine -439.50 135.25 447.50 135.25 2 CapLine -443.50 131.25 443.50 139.25 2 CapLine -462.00 153.50 470.00 153.50 2 CapLine -466.00 149.50 466.00 157.50 2 CapLine -484.62 174.62 492.62 174.62 2 CapLine -488.62 170.62 488.62 178.62 2 CapLine -507.25 198.62 515.25 198.62 2 CapLine -511.25 194.62 511.25 202.62 2 CapLine -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av7.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av7.gif deleted file mode 100755 index 888ffb66d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av7.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av8.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av8.eps deleted file mode 100755 index d5c3c9ea4..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av8.eps +++ /dev/null @@ -1,1010 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_xy8 -%%Creation Date: Sun, Sep 10, 1995 06:42 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(-600) 18.00 247.38 32.00 WS -gsave 0.125 ps [1] sd -57.00 236.00 558.00 236.00 MacLine -grestore -1.00 ps -561.50 235.50 558.00 235.50 MacLine -53.50 235.50 57.00 235.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 228.88 558.00 228.88 MacLine -grestore -1.00 ps -561.50 228.38 558.00 228.38 MacLine -53.50 228.38 57.00 228.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 221.88 558.00 221.88 MacLine -grestore -1.00 ps -561.50 221.38 558.00 221.38 MacLine -53.50 221.38 57.00 221.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 214.88 558.00 214.88 MacLine -grestore -1.00 ps -561.50 214.38 558.00 214.38 MacLine -53.50 214.38 57.00 214.38 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 207.62 554.50 207.62 MacLine -grestore -1.00 ps -561.50 207.25 554.50 207.25 MacLine -53.50 207.25 60.50 207.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-500) 18.00 212.12 32.00 WS -gsave 0.125 ps [1] sd -57.00 200.75 558.00 200.75 MacLine -grestore -1.00 ps -561.50 200.25 558.00 200.25 MacLine -53.50 200.25 57.00 200.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 193.62 558.00 193.62 MacLine -grestore -1.00 ps -561.50 193.12 558.00 193.12 MacLine -53.50 193.12 57.00 193.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 186.62 558.00 186.62 MacLine -grestore -1.00 ps -561.50 186.12 558.00 186.12 MacLine -53.50 186.12 57.00 186.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 179.62 558.00 179.62 MacLine -grestore -1.00 ps -561.50 179.12 558.00 179.12 MacLine -53.50 179.12 57.00 179.12 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 172.38 554.50 172.38 MacLine -grestore -1.00 ps -561.50 172.00 554.50 172.00 MacLine -53.50 172.00 60.50 172.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-400) 18.00 176.88 32.00 WS -gsave 0.125 ps [1] sd -57.00 165.50 558.00 165.50 MacLine -grestore -1.00 ps -561.50 165.00 558.00 165.00 MacLine -53.50 165.00 57.00 165.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 158.50 558.00 158.50 MacLine -grestore -1.00 ps -561.50 158.00 558.00 158.00 MacLine -53.50 158.00 57.00 158.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 144.38 558.00 144.38 MacLine -grestore -1.00 ps -561.50 143.88 558.00 143.88 MacLine -53.50 143.88 57.00 143.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 137.12 554.50 137.12 MacLine -grestore -1.00 ps -561.50 136.75 554.50 136.75 MacLine -53.50 136.75 60.50 136.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-300) 18.00 141.62 32.00 WS -gsave 0.125 ps [1] sd -57.00 130.25 558.00 130.25 MacLine -grestore -1.00 ps -561.50 129.75 558.00 129.75 MacLine -53.50 129.75 57.00 129.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 123.25 558.00 123.25 MacLine -grestore -1.00 ps -561.50 122.75 558.00 122.75 MacLine -53.50 122.75 57.00 122.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 116.12 558.00 116.12 MacLine -grestore -1.00 ps -561.50 115.62 558.00 115.62 MacLine -53.50 115.62 57.00 115.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 109.12 558.00 109.12 MacLine -grestore -1.00 ps -561.50 108.62 558.00 108.62 MacLine -53.50 108.62 57.00 108.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 102.00 554.50 102.00 MacLine -grestore -1.00 ps -561.50 101.62 554.50 101.62 MacLine -53.50 101.62 60.50 101.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-200) 18.00 106.50 32.00 WS -gsave 0.125 ps [1] sd -57.00 95.00 558.00 95.00 MacLine -grestore -1.00 ps -561.50 94.50 558.00 94.50 MacLine -53.50 94.50 57.00 94.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 88.00 558.00 88.00 MacLine -grestore -1.00 ps -561.50 87.50 558.00 87.50 MacLine -53.50 87.50 57.00 87.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 81.00 558.00 81.00 MacLine -grestore -1.00 ps -561.50 80.50 558.00 80.50 MacLine -53.50 80.50 57.00 80.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 73.88 558.00 73.88 MacLine -grestore -1.00 ps -561.50 73.38 558.00 73.38 MacLine -53.50 73.38 57.00 73.38 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 66.75 554.50 66.75 MacLine -grestore -1.00 ps -561.50 66.38 554.50 66.38 MacLine -53.50 66.38 60.50 66.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-100) 18.00 71.25 32.00 WS -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 52.75 558.00 52.75 MacLine -grestore -1.00 ps -561.50 52.25 558.00 52.25 MacLine -53.50 52.25 57.00 52.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 45.75 558.00 45.75 MacLine -grestore -1.00 ps -561.50 45.25 558.00 45.25 MacLine -53.50 45.25 57.00 45.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 38.62 558.00 38.62 MacLine -grestore -1.00 ps -561.50 38.12 558.00 38.12 MacLine -53.50 38.12 57.00 38.12 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 31.50 554.50 31.50 MacLine -grestore -1.00 ps -561.50 31.12 554.50 31.12 MacLine -53.50 31.12 60.50 31.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 36.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 24.62 558.00 24.62 MacLine -grestore -1.00 ps -561.50 24.12 558.00 24.12 MacLine -53.50 24.12 57.00 24.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 17.50 558.00 17.50 MacLine -grestore -1.00 ps -561.50 17.00 558.00 17.00 MacLine -53.50 17.00 57.00 17.00 MacLine -1 ps -gsave 1.00 ps 54.50 31.62 561.50 31.62 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(y \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -556.88 239.00 556.88 17.00 MacLine -grestore -1.00 ps -556.38 13.50 556.38 17.00 MacLine -556.38 242.50 556.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -546.75 239.00 546.75 17.00 MacLine -grestore -1.00 ps -546.25 13.50 546.25 17.00 MacLine -546.25 242.50 546.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -536.62 237.25 536.62 18.75 MacLine -grestore -1.00 ps -536.12 13.50 536.12 18.75 MacLine -536.12 242.50 536.12 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -526.50 239.00 526.50 17.00 MacLine -grestore -1.00 ps -526.00 13.50 526.00 17.00 MacLine -526.00 242.50 526.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -516.25 239.00 516.25 17.00 MacLine -grestore -1.00 ps -515.75 13.50 515.75 17.00 MacLine -515.75 242.50 515.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -506.12 239.00 506.12 17.00 MacLine -grestore -1.00 ps -505.62 13.50 505.62 17.00 MacLine -505.62 242.50 505.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -496.00 239.00 496.00 17.00 MacLine -grestore -1.00 ps -495.50 13.50 495.50 17.00 MacLine -495.50 242.50 495.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -485.62 235.50 485.62 20.50 MacLine -grestore -1.00 ps -485.25 13.50 485.25 20.50 MacLine -485.25 242.50 485.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(80) 476.88 259.88 17.75 WS -gsave 0.125 ps [1] sd -475.62 239.00 475.62 17.00 MacLine -grestore -1.00 ps -475.12 13.50 475.12 17.00 MacLine -475.12 242.50 475.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -465.50 239.00 465.50 17.00 MacLine -grestore -1.00 ps -465.00 13.50 465.00 17.00 MacLine -465.00 242.50 465.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -455.38 239.00 455.38 17.00 MacLine -grestore -1.00 ps -454.88 13.50 454.88 17.00 MacLine -454.88 242.50 454.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -445.12 239.00 445.12 17.00 MacLine -grestore -1.00 ps -444.62 13.50 444.62 17.00 MacLine -444.62 242.50 444.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -435.00 237.25 435.00 18.75 MacLine -grestore -1.00 ps -434.50 13.50 434.50 18.75 MacLine -434.50 242.50 434.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -424.88 239.00 424.88 17.00 MacLine -grestore -1.00 ps -424.38 13.50 424.38 17.00 MacLine -424.38 242.50 424.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -414.62 239.00 414.62 17.00 MacLine -grestore -1.00 ps -414.12 13.50 414.12 17.00 MacLine -414.12 242.50 414.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -404.50 239.00 404.50 17.00 MacLine -grestore -1.00 ps -404.00 13.50 404.00 17.00 MacLine -404.00 242.50 404.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -394.38 239.00 394.38 17.00 MacLine -grestore -1.00 ps -393.88 13.50 393.88 17.00 MacLine -393.88 242.50 393.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -384.12 235.50 384.12 20.50 MacLine -grestore -1.00 ps -383.75 13.50 383.75 20.50 MacLine -383.75 242.50 383.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(60) 375.38 259.88 17.75 WS -gsave 0.125 ps [1] sd -374.00 239.00 374.00 17.00 MacLine -grestore -1.00 ps -373.50 13.50 373.50 17.00 MacLine -373.50 242.50 373.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -363.88 239.00 363.88 17.00 MacLine -grestore -1.00 ps -363.38 13.50 363.38 17.00 MacLine -363.38 242.50 363.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -353.75 239.00 353.75 17.00 MacLine -grestore -1.00 ps -353.25 13.50 353.25 17.00 MacLine -353.25 242.50 353.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -343.50 239.00 343.50 17.00 MacLine -grestore -1.00 ps -343.00 13.50 343.00 17.00 MacLine -343.00 242.50 343.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -333.38 237.25 333.38 18.75 MacLine -grestore -1.00 ps -332.88 13.50 332.88 18.75 MacLine -332.88 242.50 332.88 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 239.00 323.25 17.00 MacLine -grestore -1.00 ps -322.75 13.50 322.75 17.00 MacLine -322.75 242.50 322.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -313.12 239.00 313.12 17.00 MacLine -grestore -1.00 ps -312.62 13.50 312.62 17.00 MacLine -312.62 242.50 312.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -302.88 239.00 302.88 17.00 MacLine -grestore -1.00 ps -302.38 13.50 302.38 17.00 MacLine -302.38 242.50 302.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -292.75 239.00 292.75 17.00 MacLine -grestore -1.00 ps -292.25 13.50 292.25 17.00 MacLine -292.25 242.50 292.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -282.50 235.50 282.50 20.50 MacLine -grestore -1.00 ps -282.12 13.50 282.12 20.50 MacLine -282.12 242.50 282.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(40) 273.75 259.88 17.75 WS -gsave 0.125 ps [1] sd -272.50 239.00 272.50 17.00 MacLine -grestore -1.00 ps -272.00 13.50 272.00 17.00 MacLine -272.00 242.50 272.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -262.25 239.00 262.25 17.00 MacLine -grestore -1.00 ps -261.75 13.50 261.75 17.00 MacLine -261.75 242.50 261.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -252.12 239.00 252.12 17.00 MacLine -grestore -1.00 ps -251.62 13.50 251.62 17.00 MacLine -251.62 242.50 251.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -242.00 239.00 242.00 17.00 MacLine -grestore -1.00 ps -241.50 13.50 241.50 17.00 MacLine -241.50 242.50 241.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -231.75 237.25 231.75 18.75 MacLine -grestore -1.00 ps -231.25 13.50 231.25 18.75 MacLine -231.25 242.50 231.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -221.62 239.00 221.62 17.00 MacLine -grestore -1.00 ps -221.12 13.50 221.12 17.00 MacLine -221.12 242.50 221.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -211.50 239.00 211.50 17.00 MacLine -grestore -1.00 ps -211.00 13.50 211.00 17.00 MacLine -211.00 242.50 211.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -201.38 239.00 201.38 17.00 MacLine -grestore -1.00 ps -200.88 13.50 200.88 17.00 MacLine -200.88 242.50 200.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -191.12 239.00 191.12 17.00 MacLine -grestore -1.00 ps -190.62 13.50 190.62 17.00 MacLine -190.62 242.50 190.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 172.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -170.88 239.00 170.88 17.00 MacLine -grestore -1.00 ps -170.38 13.50 170.38 17.00 MacLine -170.38 242.50 170.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -160.62 239.00 160.62 17.00 MacLine -grestore -1.00 ps -160.12 13.50 160.12 17.00 MacLine -160.12 242.50 160.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -150.50 239.00 150.50 17.00 MacLine -grestore -1.00 ps -150.00 13.50 150.00 17.00 MacLine -150.00 242.50 150.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -140.38 239.00 140.38 17.00 MacLine -grestore -1.00 ps -139.88 13.50 139.88 17.00 MacLine -139.88 242.50 139.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -130.25 237.25 130.25 18.75 MacLine -grestore -1.00 ps -129.75 13.50 129.75 18.75 MacLine -129.75 242.50 129.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -120.00 239.00 120.00 17.00 MacLine -grestore -1.00 ps -119.50 13.50 119.50 17.00 MacLine -119.50 242.50 119.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -109.88 239.00 109.88 17.00 MacLine -grestore -1.00 ps -109.38 13.50 109.38 17.00 MacLine -109.38 242.50 109.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -99.75 239.00 99.75 17.00 MacLine -grestore -1.00 ps -99.25 13.50 99.25 17.00 MacLine -99.25 242.50 99.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -89.50 239.00 89.50 17.00 MacLine -grestore -1.00 ps -89.00 13.50 89.00 17.00 MacLine -89.00 242.50 89.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -79.25 235.50 79.25 20.50 MacLine -grestore -1.00 ps -78.88 13.50 78.88 20.50 MacLine -78.88 242.50 78.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 75.00 259.88 8.88 WS -gsave 0.125 ps [1] sd -69.25 239.00 69.25 17.00 MacLine -grestore -1.00 ps -68.75 13.50 68.75 17.00 MacLine -68.75 242.50 68.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -59.12 239.00 59.12 17.00 MacLine -grestore -1.00 ps -58.62 13.50 58.62 17.00 MacLine -58.62 242.50 58.62 239.00 MacLine -1 ps -gsave 1.00 ps 79.38 242.50 79.38 14.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -(x \(m\)) 289.75 284.38 36.62 WS -2.00 ps -75.50 31.62 83.50 31.62 2 CapLine -79.50 27.62 79.50 35.62 2 CapLine -98.38 58.38 106.38 58.38 2 CapLine -102.38 54.38 102.38 62.38 2 CapLine -121.25 82.38 129.25 82.38 2 CapLine -125.25 78.38 125.25 86.38 2 CapLine -144.00 103.50 152.00 103.50 2 CapLine -148.00 99.50 148.00 107.50 2 CapLine -166.88 121.75 174.88 121.75 2 CapLine -170.88 117.75 170.88 125.75 2 CapLine -189.75 137.25 197.75 137.25 2 CapLine -193.75 133.25 193.75 141.25 2 CapLine -212.62 150.00 220.62 150.00 2 CapLine -216.62 146.00 216.62 154.00 2 CapLine -235.50 159.88 243.50 159.88 2 CapLine -239.50 155.88 239.50 163.88 2 CapLine -258.38 166.88 266.38 166.88 2 CapLine -262.38 162.88 262.38 170.88 2 CapLine -281.25 171.12 289.25 171.12 2 CapLine -285.25 167.12 285.25 175.12 2 CapLine -304.00 172.50 312.00 172.50 2 CapLine -308.00 168.50 308.00 176.50 2 CapLine -326.88 171.12 334.88 171.12 2 CapLine -330.88 167.12 330.88 175.12 2 CapLine -349.75 166.88 357.75 166.88 2 CapLine -353.75 162.88 353.75 170.88 2 CapLine -372.62 159.88 380.62 159.88 2 CapLine -376.62 155.88 376.62 163.88 2 CapLine -395.50 150.00 403.50 150.00 2 CapLine -399.50 146.00 399.50 154.00 2 CapLine -418.25 137.25 426.25 137.25 2 CapLine -422.25 133.25 422.25 141.25 2 CapLine -441.12 121.75 449.12 121.75 2 CapLine -445.12 117.75 445.12 125.75 2 CapLine -464.00 103.50 472.00 103.50 2 CapLine -468.00 99.50 468.00 107.50 2 CapLine -486.88 82.38 494.88 82.38 2 CapLine -490.88 78.38 490.88 86.38 2 CapLine -509.75 58.38 517.75 58.38 2 CapLine -513.75 54.38 513.75 62.38 2 CapLine -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av8.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av8.gif deleted file mode 100755 index 1a3f2e5b7..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av8.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av9.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av9.eps deleted file mode 100755 index ac01b0509..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av9.eps +++ /dev/null @@ -1,1094 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_xy9 -%%Creation Date: Sun, Sep 10, 1995 06:42 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 556.25 13.50 MacLine -53.50 13.50 58.75 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 19.75 558.00 19.75 MacLine -grestore -1.00 ps -561.50 19.25 558.00 19.25 MacLine -53.50 19.25 57.00 19.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 31.12 558.00 31.12 MacLine -grestore -1.00 ps -561.50 30.62 558.00 30.62 MacLine -53.50 30.62 57.00 30.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 42.50 554.50 42.50 MacLine -grestore -1.00 ps -561.50 42.12 554.50 42.12 MacLine -53.50 42.12 60.50 42.12 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(400) 23.38 47.00 26.62 WS -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 54.12 558.00 54.12 MacLine -grestore -1.00 ps -561.50 53.62 558.00 53.62 MacLine -53.50 53.62 57.00 53.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 65.50 558.00 65.50 MacLine -grestore -1.00 ps -561.50 65.00 558.00 65.00 MacLine -53.50 65.00 57.00 65.00 MacLine -1 ps -gsave 0.125 ps [1] sd -58.75 71.25 556.25 71.25 MacLine -grestore -1.00 ps -561.50 70.75 556.25 70.75 MacLine -53.50 70.75 58.75 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 77.00 558.00 77.00 MacLine -grestore -1.00 ps -561.50 76.50 558.00 76.50 MacLine -53.50 76.50 57.00 76.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 88.38 558.00 88.38 MacLine -grestore -1.00 ps -561.50 87.88 558.00 87.88 MacLine -53.50 87.88 57.00 87.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 99.75 554.50 99.75 MacLine -grestore -1.00 ps -561.50 99.38 554.50 99.38 MacLine -53.50 99.38 60.50 99.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(200) 23.38 104.25 26.62 WS -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 111.38 558.00 111.38 MacLine -grestore -1.00 ps -561.50 110.88 558.00 110.88 MacLine -53.50 110.88 57.00 110.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 122.75 558.00 122.75 MacLine -grestore -1.00 ps -561.50 122.25 558.00 122.25 MacLine -53.50 122.25 57.00 122.25 MacLine -1 ps -gsave 0.125 ps [1] sd -58.75 128.50 556.25 128.50 MacLine -grestore -1.00 ps -561.50 128.00 556.25 128.00 MacLine -53.50 128.00 58.75 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 134.25 558.00 134.25 MacLine -grestore -1.00 ps -561.50 133.75 558.00 133.75 MacLine -53.50 133.75 57.00 133.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 145.62 558.00 145.62 MacLine -grestore -1.00 ps -561.50 145.12 558.00 145.12 MacLine -53.50 145.12 57.00 145.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 157.00 554.50 157.00 MacLine -grestore -1.00 ps -561.50 156.62 554.50 156.62 MacLine -53.50 156.62 60.50 156.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 161.50 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 168.62 558.00 168.62 MacLine -grestore -1.00 ps -561.50 168.12 558.00 168.12 MacLine -53.50 168.12 57.00 168.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 180.00 558.00 180.00 MacLine -grestore -1.00 ps -561.50 179.50 558.00 179.50 MacLine -53.50 179.50 57.00 179.50 MacLine -1 ps -gsave 0.125 ps [1] sd -58.75 185.75 556.25 185.75 MacLine -grestore -1.00 ps -561.50 185.25 556.25 185.25 MacLine -53.50 185.25 58.75 185.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 191.50 558.00 191.50 MacLine -grestore -1.00 ps -561.50 191.00 558.00 191.00 MacLine -53.50 191.00 57.00 191.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 202.88 558.00 202.88 MacLine -grestore -1.00 ps -561.50 202.38 558.00 202.38 MacLine -53.50 202.38 57.00 202.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 214.25 554.50 214.25 MacLine -grestore -1.00 ps -561.50 213.88 554.50 213.88 MacLine -53.50 213.88 60.50 213.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-200) 18.00 218.75 32.00 WS -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 225.88 558.00 225.88 MacLine -grestore -1.00 ps -561.50 225.38 558.00 225.38 MacLine -53.50 225.38 57.00 225.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 237.25 558.00 237.25 MacLine -grestore -1.00 ps -561.50 236.75 558.00 236.75 MacLine -53.50 236.75 57.00 236.75 MacLine -1 ps -1.00 ps -561.50 242.50 556.25 242.50 MacLine -53.50 242.50 58.75 242.50 MacLine -1 ps -gsave 1.00 ps 54.50 157.12 561.50 157.12 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(y \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -557.38 239.00 557.38 17.00 MacLine -grestore -1.00 ps -556.88 13.50 556.88 17.00 MacLine -556.88 242.50 556.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -548.12 239.00 548.12 17.00 MacLine -grestore -1.00 ps -547.62 13.50 547.62 17.00 MacLine -547.62 242.50 547.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -538.75 235.50 538.75 20.50 MacLine -grestore -1.00 ps -538.38 13.50 538.38 20.50 MacLine -538.38 242.50 538.38 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(100) 525.62 259.88 26.62 WS -gsave 0.125 ps [1] sd -529.62 239.00 529.62 17.00 MacLine -grestore -1.00 ps -529.12 13.50 529.12 17.00 MacLine -529.12 242.50 529.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -520.38 239.00 520.38 17.00 MacLine -grestore -1.00 ps -519.88 13.50 519.88 17.00 MacLine -519.88 242.50 519.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -511.25 239.00 511.25 17.00 MacLine -grestore -1.00 ps -510.75 13.50 510.75 17.00 MacLine -510.75 242.50 510.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -502.00 239.00 502.00 17.00 MacLine -grestore -1.00 ps -501.50 13.50 501.50 17.00 MacLine -501.50 242.50 501.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -492.75 237.25 492.75 18.75 MacLine -grestore -1.00 ps -492.25 13.50 492.25 18.75 MacLine -492.25 242.50 492.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -483.50 239.00 483.50 17.00 MacLine -grestore -1.00 ps -483.00 13.50 483.00 17.00 MacLine -483.00 242.50 483.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -474.25 239.00 474.25 17.00 MacLine -grestore -1.00 ps -473.75 13.50 473.75 17.00 MacLine -473.75 242.50 473.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -465.00 239.00 465.00 17.00 MacLine -grestore -1.00 ps -464.50 13.50 464.50 17.00 MacLine -464.50 242.50 464.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -455.75 239.00 455.75 17.00 MacLine -grestore -1.00 ps -455.25 13.50 455.25 17.00 MacLine -455.25 242.50 455.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -446.38 235.50 446.38 20.50 MacLine -grestore -1.00 ps -446.00 13.50 446.00 20.50 MacLine -446.00 242.50 446.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(80) 437.62 259.88 17.75 WS -gsave 0.125 ps [1] sd -437.25 239.00 437.25 17.00 MacLine -grestore -1.00 ps -436.75 13.50 436.75 17.00 MacLine -436.75 242.50 436.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -428.12 239.00 428.12 17.00 MacLine -grestore -1.00 ps -427.62 13.50 427.62 17.00 MacLine -427.62 242.50 427.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -418.88 239.00 418.88 17.00 MacLine -grestore -1.00 ps -418.38 13.50 418.38 17.00 MacLine -418.38 242.50 418.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -409.62 239.00 409.62 17.00 MacLine -grestore -1.00 ps -409.12 13.50 409.12 17.00 MacLine -409.12 242.50 409.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -400.38 237.25 400.38 18.75 MacLine -grestore -1.00 ps -399.88 13.50 399.88 18.75 MacLine -399.88 242.50 399.88 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -391.12 239.00 391.12 17.00 MacLine -grestore -1.00 ps -390.62 13.50 390.62 17.00 MacLine -390.62 242.50 390.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -381.88 239.00 381.88 17.00 MacLine -grestore -1.00 ps -381.38 13.50 381.38 17.00 MacLine -381.38 242.50 381.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -372.62 239.00 372.62 17.00 MacLine -grestore -1.00 ps -372.12 13.50 372.12 17.00 MacLine -372.12 242.50 372.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -363.38 239.00 363.38 17.00 MacLine -grestore -1.00 ps -362.88 13.50 362.88 17.00 MacLine -362.88 242.50 362.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -354.00 235.50 354.00 20.50 MacLine -grestore -1.00 ps -353.62 13.50 353.62 20.50 MacLine -353.62 242.50 353.62 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(60) 345.25 259.88 17.75 WS -gsave 0.125 ps [1] sd -345.00 239.00 345.00 17.00 MacLine -grestore -1.00 ps -344.50 13.50 344.50 17.00 MacLine -344.50 242.50 344.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -335.75 239.00 335.75 17.00 MacLine -grestore -1.00 ps -335.25 13.50 335.25 17.00 MacLine -335.25 242.50 335.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -326.50 239.00 326.50 17.00 MacLine -grestore -1.00 ps -326.00 13.50 326.00 17.00 MacLine -326.00 242.50 326.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -317.25 239.00 317.25 17.00 MacLine -grestore -1.00 ps -316.75 13.50 316.75 17.00 MacLine -316.75 242.50 316.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -308.00 237.25 308.00 18.75 MacLine -grestore -1.00 ps -307.50 13.50 307.50 18.75 MacLine -307.50 242.50 307.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -298.75 239.00 298.75 17.00 MacLine -grestore -1.00 ps -298.25 13.50 298.25 17.00 MacLine -298.25 242.50 298.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -289.50 239.00 289.50 17.00 MacLine -grestore -1.00 ps -289.00 13.50 289.00 17.00 MacLine -289.00 242.50 289.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -280.25 239.00 280.25 17.00 MacLine -grestore -1.00 ps -279.75 13.50 279.75 17.00 MacLine -279.75 242.50 279.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -271.00 239.00 271.00 17.00 MacLine -grestore -1.00 ps -270.50 13.50 270.50 17.00 MacLine -270.50 242.50 270.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -261.75 235.50 261.75 20.50 MacLine -grestore -1.00 ps -261.38 13.50 261.38 20.50 MacLine -261.38 242.50 261.38 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(40) 253.00 259.88 17.75 WS -gsave 0.125 ps [1] sd -252.62 239.00 252.62 17.00 MacLine -grestore -1.00 ps -252.12 13.50 252.12 17.00 MacLine -252.12 242.50 252.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -243.38 239.00 243.38 17.00 MacLine -grestore -1.00 ps -242.88 13.50 242.88 17.00 MacLine -242.88 242.50 242.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -234.12 239.00 234.12 17.00 MacLine -grestore -1.00 ps -233.62 13.50 233.62 17.00 MacLine -233.62 242.50 233.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -224.88 239.00 224.88 17.00 MacLine -grestore -1.00 ps -224.38 13.50 224.38 17.00 MacLine -224.38 242.50 224.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -215.62 237.25 215.62 18.75 MacLine -grestore -1.00 ps -215.12 13.50 215.12 18.75 MacLine -215.12 242.50 215.12 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -206.38 239.00 206.38 17.00 MacLine -grestore -1.00 ps -205.88 13.50 205.88 17.00 MacLine -205.88 242.50 205.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -197.12 239.00 197.12 17.00 MacLine -grestore -1.00 ps -196.62 13.50 196.62 17.00 MacLine -196.62 242.50 196.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -187.88 239.00 187.88 17.00 MacLine -grestore -1.00 ps -187.38 13.50 187.38 17.00 MacLine -187.38 242.50 187.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -178.75 239.00 178.75 17.00 MacLine -grestore -1.00 ps -178.25 13.50 178.25 17.00 MacLine -178.25 242.50 178.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -169.38 235.50 169.38 20.50 MacLine -grestore -1.00 ps -169.00 13.50 169.00 20.50 MacLine -169.00 242.50 169.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 160.62 259.88 17.75 WS -gsave 0.125 ps [1] sd -160.25 239.00 160.25 17.00 MacLine -grestore -1.00 ps -159.75 13.50 159.75 17.00 MacLine -159.75 242.50 159.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -151.00 239.00 151.00 17.00 MacLine -grestore -1.00 ps -150.50 13.50 150.50 17.00 MacLine -150.50 242.50 150.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -141.75 239.00 141.75 17.00 MacLine -grestore -1.00 ps -141.25 13.50 141.25 17.00 MacLine -141.25 242.50 141.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -132.50 239.00 132.50 17.00 MacLine -grestore -1.00 ps -132.00 13.50 132.00 17.00 MacLine -132.00 242.50 132.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -123.25 237.25 123.25 18.75 MacLine -grestore -1.00 ps -122.75 13.50 122.75 18.75 MacLine -122.75 242.50 122.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -114.00 239.00 114.00 17.00 MacLine -grestore -1.00 ps -113.50 13.50 113.50 17.00 MacLine -113.50 242.50 113.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -104.75 239.00 104.75 17.00 MacLine -grestore -1.00 ps -104.25 13.50 104.25 17.00 MacLine -104.25 242.50 104.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -95.62 239.00 95.62 17.00 MacLine -grestore -1.00 ps -95.12 13.50 95.12 17.00 MacLine -95.12 242.50 95.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -86.38 239.00 86.38 17.00 MacLine -grestore -1.00 ps -85.88 13.50 85.88 17.00 MacLine -85.88 242.50 85.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -77.00 235.50 77.00 20.50 MacLine -grestore -1.00 ps -76.62 13.50 76.62 20.50 MacLine -76.62 242.50 76.62 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 72.75 259.88 8.88 WS -gsave 0.125 ps [1] sd -67.88 239.00 67.88 17.00 MacLine -grestore -1.00 ps -67.38 13.50 67.38 17.00 MacLine -67.38 242.50 67.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -58.62 239.00 58.62 17.00 MacLine -grestore -1.00 ps -58.12 13.50 58.12 17.00 MacLine -58.12 242.50 58.12 239.00 MacLine -1 ps -gsave 1.00 ps 77.12 242.50 77.12 14.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -(x \(m\)) 289.75 284.38 36.62 WS -2.00 ps -73.12 157.12 81.12 157.12 2 CapLine -77.12 153.12 77.12 161.12 2 CapLine -96.25 130.25 104.25 130.25 2 CapLine -100.25 126.25 100.25 134.25 2 CapLine -119.38 106.75 127.38 106.75 2 CapLine -123.38 102.75 123.38 110.75 2 CapLine -142.38 86.75 150.38 86.75 2 CapLine -146.38 82.75 146.38 90.75 2 CapLine -165.50 70.12 173.50 70.12 2 CapLine -169.50 66.12 169.50 74.12 2 CapLine -188.62 56.88 196.62 56.88 2 CapLine -192.62 52.88 192.62 60.88 2 CapLine -211.62 47.25 219.62 47.25 2 CapLine -215.62 43.25 215.62 51.25 2 CapLine -234.75 40.88 242.75 40.88 2 CapLine -238.75 36.88 238.75 44.88 2 CapLine -257.88 38.12 265.88 38.12 2 CapLine -261.88 34.12 261.88 42.12 2 CapLine -281.00 38.62 289.00 38.62 2 CapLine -285.00 34.62 285.00 42.62 2 CapLine -304.00 42.62 312.00 42.62 2 CapLine -308.00 38.62 308.00 46.62 2 CapLine -327.12 50.12 335.12 50.12 2 CapLine -331.12 46.12 331.12 54.12 2 CapLine -350.12 61.00 358.12 61.00 2 CapLine -354.12 57.00 354.12 65.00 2 CapLine -373.25 75.25 381.25 75.25 2 CapLine -377.25 71.25 377.25 79.25 2 CapLine -396.38 93.00 404.38 93.00 2 CapLine -400.38 89.00 400.38 97.00 2 CapLine -419.50 114.25 427.50 114.25 2 CapLine -423.50 110.25 423.50 118.25 2 CapLine -442.50 138.75 450.50 138.75 2 CapLine -446.50 134.75 446.50 142.75 2 CapLine -465.62 166.88 473.62 166.88 2 CapLine -469.62 162.88 469.62 170.88 2 CapLine -488.75 198.38 496.75 198.38 2 CapLine -492.75 194.38 492.75 202.38 2 CapLine -511.88 233.25 519.88 233.25 2 CapLine -515.88 229.25 515.88 237.25 2 CapLine -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av9.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av9.gif deleted file mode 100755 index 9b20e755c..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob04av9.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob06a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob06a.eps deleted file mode 100755 index d5814f285..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob06a.eps +++ /dev/null @@ -1,371 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: hw3p12f.eps -%%CreationDate: 9/4/1994 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%BoundingBox:66 409 386 730 -%%EndComments -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -5803 3729 5994 3955 R -1 sg fill -gr -/_Times-Roman ff [208 0 0 -208 0 0] mf sf -5803 3885 m 0 sg (O ) show -gs -6367 3920 6209 3994 6209 3846 2 P -0 sg fill -gr -gs -1367.625 3920.625 m -6367.625 3920.625 L -1.25 slw 0 sg str -gr -gs -1992.625 2045.625 5742.375 5795.375 OV -1.25 slw 0 sg str -gr -gs -5017 2439 4978 2609 4862 2518 2 P -0 sg fill -gr -gs -5017.625 2439.625 m -3867.625 3920.625 L -1.25 slw 0 sg str -gr -gs -4939 2361 5095 2517 OV -0 sg fill -gr -gs -4939.625 2361.625 5095.375 2517.375 OV -1.25 slw 0 sg str -gr -gs -5169 2088 5378 2314 R -1 sg fill -gr -5169 2244 m 2.08 slw 0 sg (P ) olshow -gs -4492 3182 4596 3408 R -1 sg fill -gr -4492 3338 m 2.08 slw 0 sg (r ) olshow -gs -6523 3807 6627 4033 R -1 sg fill -gr -6523 3963 m 2.08 slw 0 sg (x) olshow -gs -3815 1151 3867 1377 R -1 sg fill -gr -3815 1307 m 2.08 slw 0 sg (y) olshow -gs -3867 1420 3941 1578 3793 1578 2 P -0 sg fill -gr -gs -3867.625 1420.625 m -3867.625 6420.625 L -1.25 slw 0 sg str -gr -gs -3999 2772 4058 2780 4106 2790 4152 2800 4199 2813 4245 2828 4290 2845 4334 2863 -4378 2884 4420 2906 4462 2930 4503 2955 4542 2982 4575 3007 13 P -1.25 slw 0 sg str -gr -gs -3999 2773 4167 2728 4142 2873 2 P -0 sg fill -gr -gs -3999.625 2773.625 m -4062.625 2785.625 L -1.25 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob06a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob06a.gif deleted file mode 100755 index 78da6d10a..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob06a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob06a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob06a.pdf deleted file mode 100644 index 71254e4e2..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob06a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob07.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob07.eps deleted file mode 100755 index bd18b3b40..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob07.eps +++ /dev/null @@ -1,1312 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Title: BOMBER.EPS -%%Creator: DeskScan II - Hewlett-Packard Company -%%CreationDate: Wed Jan 24 6:6:44 1996 -%%BoundingBox: 0 0 216 103 -%%EndComments -%%EndProlog -save -15 dict begin -/xpoints 216 def -/ypoints 103 def -/xpixels 300 def -/ypixels 143 def -/rasterbytes 300 def -/bitspercomponent 8 def -/xunits xpixels xpoints div def -/yunits ypixels ypoints div def -/coords [xunits 0 0 yunits neg 0 ypixels] def -/picstr rasterbytes string def -/readimage { currentfile picstr readhexstring pop } def -xpixels ypixels bitspercomponent coords /readimage load -image -D5D5D6D5D5D5D5D8DCD9DBDDDCDFE1E2E2E2DEE0E0E3E4E3E3E5E4E7E9EAEBEAEAE8E6E8E9 -EAECEDEDEAEAECEDEFEFECECEDEFF0F1EEEDEFEFEEF0F0EFF0F1F4F5F4F6F6F4EFEFF0EFF3 -F3EFF4F5F4F1EEF0F4F4F1F1F1F1F3F4F4F5F4F1F0EDF0EFF1F4F3F0F0F0F0EFF2F3EFEFF0 -F0F2F3F1F0F3F3F1F2F3F4F6F4F1F0F1F0F0EFF1EFF0F5F4F6F5F3F3F0EDF3F1EFEDF4F6F3 -F2F3F3F3F0F3F2F3F6F0F0F1F3F6F7F8F6F6F8F7F3F1F3F2F6F9F9F7F8F8F9F3F2F1F2EFF6 -F5F3F4F4F6F8F5F1F3F6F4F3F4F1F4F3F5F7F8F8F7F8F5F1EFF4F7F4F3F4F4F7F7F9F7F7F7 -F6F3F3F2F6F7F3F3F4F4F3F3F6F3F2F6F4EFF2F3F3F6F7F6F6F3F4F4F6F4F4F3F4F8F9F9F9 -F9F5F4F4F4F3F6FAFAF3F2F3F3F3F4F6F4F3F4F8F5F4F5F7F6F5F4F3F5F3F6F7F3F5F6F7F4 -F4F6F4F1 -D3D5D3D5D7D5D5DAD9D7DDDED9DDE0E2E2E3E1E0E0E5E3E0E5E6E3E4E7E9EAEBEAE8E6EAEB -EAE8ECE9E9ECEBEAEFEDEAEDEDEAEFEFECF0F2EFECF1F1F0F0EDF3F5F4F6F4F3EDF0F3F1F1 -F3F3F4F4F5F4EFF2F4F1EFF1F3F1F4F3F3F4F5F2F1EDF2F2ECF3F3EEF0F3EFECF3F3ECEFF1 -F0F3F3F0F3F0EFF5F4F0F1F4F3EDF3F3ECF0F3F1EFF3F4F6F6F4F2F2F0EDF4F1EFEFF3F3EE -F2F5F1F3F4F5F0F3F6F0F3F4F0F3F6F5F7F7F8F6F1F1F7F1F4F8F7F9F7F8F6F0F3F4F1F0F7 -F4F4F6F4F1F8F4EFF4F7F3EFF4EEF3F3F3F7F8F8F6F6F6F2F0F4F3EFF3F7F3F1F7F7F8F6F6 -F4F1F5F1F4F6F1F3F4F4F0F4F6F0F0F4F4EDF3F6F3F1F7F4F0F4F6F3F4F3F4F1EEF6F8F8F9 -F9F5F3F0F5F6F1F7F6EFF1F5F2EFF3F6F1EFF6F6F1F2F5F4F3F3F3F4F3F0F4F6F1F3F8F7F1 -F4F7F6F0 -D0D4D4D5D6D7D5D9D9DADEDEDBDBDFE1E2E1E1E0DFE4E0E1E6E6E4E3E8EAEAECEAE7E6EAEC -ECE8EBEBEAECEAE8ECEEEBEDEEEAECEDEAF3F3EFEDF1F1EFECEDF2F5F4F5F3F3EDEEF0F1F3 -F3F3F4F3F3F3EFF1F3F1EDF0F3F5F4F3F4F5F4F4EFEDF2F3EFF3F2EDF1F2EEEBF3F2ECEFF4 -F2F2F1F1F3EEF0F6F4F3EDF3F2EFF4F3EFF0F2F0F0F2F3F6F5F3F3F5F1EFF6F6F1F0F3F1EF -F1F4F4F5F7F6F1F3F7F5F7F7F3F1F7F6F6F7F8F4EFF1F6F3F7F9F7F5F6F8F6F0F4F6F4F0F7 -F9F9F9F6EFF4F5F0F4F5F4F0F7F3F4F1F3F7F7F7F7F6F6F3EEF5F3EFF6F6F4EEF3F8F7F7F6 -F6F3F2EFF3F3F0F3F6F4F0F4F6F1F2F6F4EFF6F7F6EFF4F5F0F3F6F4F7F6F7F1F1F7F9F8F8 -F8F6F3F1F6F7F1F4F6EFF3F6F3F0F4F6F1F2F7F5F0F4F6F3EFF5F6F7F3F0F6F6F2F2F8F6F0 -F5F6F6F0 -CED2D3D5D7D7D5D8D7D9DCDEDBDADDE0E0E2E1DEE0E2DFE1E5E4E3E1E7E9E9E7E9E7E5E8EB -ECE9EAECEDEEEDE8EBEFEFEEEFEBEDECEDF1F2F0ECEFEDEBEDF0F0F1F3F3F3F3EDF0EFF0F3 -F5F3F3F1F2F3EFF0F3F1EEF1EFF1F4F3F4F4F4F4F1EFF0EFEEF3F2EDF1F1EDEDF3F2EDF0F3 -F2F1EFF3F1EDEEF3F4F1EDF1F0EDF3F3EDEDF0ECEBF0F3F5F3F2F3F3F0EFF4F3EFEEF3F1EF -F2F0F1F7F4F6F0F3F7F7F7F7F1F0F6F5F6F6F6F4EFF1F2F1F7FAF9F7F7F9F4F1F5F7F3F1F7 -F8F6F8F6EFF3F4F0F6F7F4F1F7F1F0F2F5F5F7F7F7F9F6F3EFF6F1EFF5F7F6EFF3F7F7F7F7 -F4F2F0F0F4F4F0F3F5F3EFF6F6F0F3F7F3EFF6F8F6EFF3F6F1F1F4F6F9F7F7F1F3F6F9F7F9 -F9F7F4F0F4F3F0F6F6EFF3F7F3EDF4F6F1F2F7F4F0F3F5F4EFF7F6F8F5EFF4F4F2F3F8F6F1 -F4F6F6EF -D0D1D1D4D6D4D5D8D8D8DBDCD9DADCDEE0E1E0E0DFE2E0E2E5E4E2E4E7E9E8E6E6E6E5E6E9 -EAE9EBEDEDEDECE7ECECEBEEECEAEDEDEAF0F1EFEBECEDEEF0EFF1F0F1F4F3F3ECF0F0EDF0 -F4F4F4F3F0F3EFF0EEEFEDF3F0EDF2F3F4F6F4F4F3F1EFEDF0F3F3EDF2F1EDEDF3F3EEF1F3 -F3EDEFF4F3EEEEF3F2F1EDF1EFEDF3F3EAECEDEFECF0F3F1F3F4F0F3F0EFF6F3EEEFF3F3EF -F3F3EFF4F6F7F0F4F7F5F8F6F1F1F5F6F7F5F4EEEFF3F3EDF3F9F9F7F8F8F6F0F5F7F3F2F7 -F9F7F7F5EFF4F4EFF4F4F3F1F6EFF3F6F4F7F6F6F7F7F6F3F0F5F3EFF4F7F5F0F4F7F6F7F6 -F3F0F3F4F3F5EFF1F7F3EDF4F6F1F3F7F5EEF4F6F5F0F4F6F0F4F4F0F5F7F7F1F1F7F9F7F7 -F9F7F7F2F1F1F0F6F7F0F4F6F4EFF6F7F1F1F7F6F0F4F6F4F0F5F7F9F3F0F5F5EFF3F9F6F2 -F6F7F6F0 -D1D2D1D3D6D5D5D9DAD9D9D9DADCDBDEDFE2E2E0E0E2E2E1E3E4E3E4E6E8E9E6E6E6E6E7E8 -E9EAEDEDECEBE9ECEDEBEAECEAEDEFEFEDEDEDEAEBEFEFEDECECF1F0EFF3F3EFEDF0EEEDF2 -F4F5F4F3F0F0EFF0ECEEECF1F0EEF3F4F4F4F3F3F0EFECECEDF2F0EDF1F1EDECF2F1EDF0F3 -F3EFF0F5F2F0EDF3F1EFF0F3F0EFF0F3EAEEF2F1EDF0F2F1F3F4F1F1EEF0F4F2EBECF1F0EE -F1F1EFF5F7F6F0F2F6F2F3F2F1F3F5F7F8F6F6F3EFF3F3F0F3F7F8F9F8F7F3EFF3F6F3F0F6 -F5F4F5F3F3F5F2F0F3F3F1F3F7F1F3F5F2F6F6F7F6F7F5F2F0F4F6F2F4F6F1F3F9F9F7F7F6 -F4F0F4F3F1F3EFF0F4F3F1F6F6F0F2F4F2F0F3F4F3F0F3F3F0F2F3F0F6F7F6F1F0F7F7F9F7 -F9F7F7F3F1F1F0F5F5EFF3F5F3EEF3F5F1F3F6F4F0F3F7F3F0F4F8F8F3EFF4F4F0F1F4F3F2 -F4F5F4F1 -D4D3D4D6D6D5D7DADBDCDBDCDDDDDBDDE0E1E0E0E1E3E3E2E2E3E5E4E7E9E8E6E7E9E9EAEB -ECEDEEF0EDEDEDEDECECECEEEFF1F1F0F0F1EFEEECEEF1F1EFF0F1F0F0F3F3F3F3F3F3F3F4 -F4F3F4F3EDF1F3F1EDF1F1F1F1F1F3F3F0F2F3F0ECEFEEEDEFF0F0F0F3F1EEF1F2F0F0F1F2 -F3F1F0F3F2F2F0F2F1F0F2F4F4F3F3F5F3F2F3F1F1F3F1F1F5F4F1F0F3F3F4F3F1F3F3F3F3 -F4F3F5F6F7F6F3F6F6F7F6F4F4F6F6F6F7F6F3F7F4F6F6F5F7F7F7F9F9F7F6F4F5F6F5F5F5 -F9F7F5F5F8F7F7F5F7F3F4F6F7F5F4F6F6F7F6F7F7F7F6F5F4F5F6F6F4F5F5F7F9F9F8F7F7 -F6F3F3F3F3F7F4F5F6F4F6F7F4F6F4F4F4F5F6F4F5F8F7F4F6F6F4F4F7F7F7F6F6F7F7F8F7 -F9F6F3F0EDF0F1F4F4F3F4F6F4F4F5F6F4F5F6F6F3F4F6F6F5F5F7F9F4F3F6F5F4F4F4F3F6 -F6F6F4F6 -D4D3D4D7D6D5D8DBDCDBDBDDDDDDDBDDE0E1E0E1E3E3E3E2E3E4E3E6E7E9E9E6E7E7E8EAEC -EDEDEFEFEFEFEEEDEDEDECEFF0F0F0F1F1F1EFEFECEDF1F3F2F3F1F0F2F3F4F4F3F4F4F3F4 -F3F3F3F3F0F1F1F0F1F4F2F0F3F4F3F1EFF3F5F1EDF1F0EFF0EFF0EFF3F1EFF3F2F0F3F3EF -F0F3EFF0F4F1F0F3F3F0F2F4F6F6F5F6F4F4F2F0F4F3F0F0F5F5F0F1F4F5F5F4F4F5F6F5F4 -F5F6F6F6F7F6F4F7F8F8F7F6F5F6F5F6F8F6F6F8F7F9F9F9F7F8F9F8F9F9F9F7F7F9F7F7F7 -F9F7F9F9F9F9F9F7F6F6F6F5F7F6F7F8F9F9F7F7F7FAF7F7F6F6F7F7F7F9F9F8F7F7F8F9F9 -F7F9F7F6F6F6F7F8F7F8F8F9F5F6F7F7F8F8F8F9F9F9F7F7F9F9F7F9F8F8F8FAF8F9F9F8F9 -F9F6F1F5F6F6F2F2F7F7F9F9F8F7F9F8F7F9F8F7F6F5F7F9F9F7F7F9F9F7F7F7F7F6F7F6F7 -F9F9F8F9 -D4D3D4D7D7D5D8DADBDBD9DBDCDEDBDDE2E2E2E0E3E4E3E2E3E3E3E5E8E9E8E6E6E9E7EBED -EDEFEDEFEDF0EDECECECEBEEF0EFEDF0F0EFEFEFECEDF0F1F3F2F0F3F4F4F4F5F4F4F3F3F3 -F1F3F4F1EFF3F3F4F4F6F3F0F3F4F3F1F0F4F4F3EEF0EFEDF0F1F1EDF3F1EFF4F0EDF3F4F3 -F2F4F1F3F4F3F0F4F4F1F1F4F5F4F6F5F4F3F1F1F6F4F0F1F6F4F2F1F5F7F6F3F5F6F7F7F6 -F5F6F5F6F8F7F6F7F7F7F6F6F7F8F7F3F7F7F7F7F7F7F9F8FAF9F8F8F9F9F9F7F7F8F9F7F7 -F8F8F8F9F9F9F9F7F9F7F7F8F7F6F8F9F8F8F9F9F7F9F7F8F7F9F8F8F8F9F7F9F8F8F9F9F6 -F7F7F8F6F7F6F7F7F7F7F8F9F7F9F9F7F9F9F9F9F9F9F8F7F6F8F8F9F7F6F7F9F9FAF9F9F9 -FAF7F3F3F6F6F2F4F7F7F9FAFAF9F8F9F9F7F7F7F7F9F7F9F9F8F9F9F8F7F7F7F7F7FAF8F8 -F9F9F9F8 -D4D3D4D7D7D6D7DBDCDBD9DADEDEDBDEE1E1E1E1E4E6E3E3E3E5E3E5E7E9E9E6E6E9EAEAEA -EDEFEEEFEEEFEEEDEDECECEEF0EFEEEFF0F2F1F0EEEEF1F3F2F0F1F3F3F5F7F5F5F4F4F4F4 -F3F5F4F3EFF3F6F6F6F5F3EFF3F4F5F1F2F4F6F3F0F3F0EFF4F4F3EFF3F1F0F3F1F0F5F6F6 -F4F3F1F3F5F4F0F4F3F1F3F4F6F6F7F6F6F5EFF3F6F4F1F2F9F6F0F3F6F6F7F5F5F6F7F6F6 -F7F7F7F6F7F6F8F7F7F6F9F8F7F8F7F7F8F8F8F7F7F8F8F8F9FAFAFAF9F9F8F8FAF9F9F9F9 -F9FAFAF9FAF7F9F6F7F8F8F9F9F7F7F7F8F8F8F8F9F9FAF7F7F9F9F9F9FAF9F8F8F7F7F8F9 -F9F9F8F7F8F7F7F7F9F7F9FAF9FAF9F7FAF9F9F8F9FAF9F8F9F9F7F7F8F8F7F9F7F9F9F9FA -FAF9F9F4F4F4F4F7F7F9F8F9F9F9FAF9F9F9F8F8F9F9FAFBF9FAF9F9F9F9F8F9F8F7FAF9F9 -F9F9F8F9 -D5D3D4D7D8D7D7D8DBDAD9DCDEDFDCDEE0E2E0DFE2E2E2E0E3E5E5E4E6E8E9E6E7EAEBEAE9 -ECEEEDEDEEEFF0F0F0ECECEFF1F0F1F1F1F3F3F2EDEDF1F2F1EFEFF0F0F4F6F4F5F4F3F3F4 -F4F4F4F3EDF1F3F6F6F7F3F0F4F6F6F1F1F4F5F1F2F5F2F1F4F5F1F1F4F0F0F3F2F1F3F6F4 -F4F4F1F3F4F3F0F4F4F2F2F4F6F7F8F6F6F3EFF4F7F7F4F1F5F4F1F5F7F3F4F7F8F8F9F7F8 -F7F7F8F7F8F4F8FAF9F9F9F7F8F8F7F7F8F9F8F9F7F8F9F7F9FAF9F9F8F7F9F8F7F8F9FAF8 -FAFAF9F9F9F9F9F9F9F8FAF9F6F7F8F9F9F9F7F8F8F7FAF8F8F7F8F7F6F9F9F7F9F9F9F9F8 -F9F9F9F7F9F6F7F7F8F9FAFAFAF9F9F8F9F9F9F8F8F9FAF9F7F9F6F7F8F9F9F9F9F9FAFAFA -FAF9FAF8F7F7FAF9FAF7F7FAF9F9FAF9F9FAF9F9F9FAF9FAFAF9F9FAF9F7FAF9F9FAF9F9F9 -F9FAF9F9 -D4D4D4D6D8D8D8D9DADADBDCDEE0DEDDDBD8D2D2CBCDD0CBD6E3E6E5E6E7E7E7E8E8EAEAEA -EDEFEEEEF0F0F1F0EFEDEDEEEFF2F1F3F2F3F3F1EFEFF0F1F1F0F1F1F0F4F5F5F4F6F5F4F5 -F4F4F4F3F1F2F3F6F8F6F3F3F3F6F5F4F2F3F3F3F3F6F3F2F1F3F2F5F4F1F0F1F3F3F2F3F4 -F6F4F3F3F4F3F0F3F4F3F2F4F6F7F7F6F6F3F1F4F7F6F4F3F3F3F4F6F8F3F4F6F6F9F6F7F6 -F7F7F6F8F7F7F9F8F6F8FAF9F8F7F8F8F7F8F7F9F6F9F9F7F9FAFAFAF8F9FAFAF9F8F9F9F9 -F9F9F9F9F8F9FAFAFAF9F8F8F7F7FAFAF9F9F9F9F8F8F9F8F7F7F7F7FAF8F8F7F9FAF9FAF8 -F8F8F7F7F6F9F9F9F9FAF9F9F9F9F9FAF9F8F9F9F9F9F9FAF7F9F7F7F7F7F8F9F9FAF9F7FA -FAF8FAF9FAFAFAFAFAF9F8FAF8F8F7F9FAF9F8F9FAF9F9F9F9FAF9F9F9F9FAFAFAFAF9F7FA -F9FAFAF9 -D5D5D7D7D9D9D9DADBDBDDDEDEDFDFDCC85C4D4D46464B484DBCE5E6E9EAE9E9EAEBEAEBEA -EAEDEDEFF0F0F0EEECF0EFF0F1F2EFEFF1F3F4F2F3F3F3F3F4F3F4F4F3F4F6F5F4F6F6F5F6 -F5F4F5F4F6F6F6F7F7F6F6F5F5F6F7F6F4F4F6F5F7F9F7F6F5F7F5F4F4F3F3F4F6F6F6F3F6 -F6F6F7F5F5F6F6F6F7F6F6F6F6F6F4F1F2F4F5F4F6F4F3F4F6F4F4F6F6F7F6F6F3F4F7F7F7 -F6F5F4F5F7F4F7F9F7F6F9F9F6F7F6F8F7F6F4F7F9F8F9F9F9F9FAF9F6F5FAFAF9F7FAF9F9 -F9F6F8F9F7F6F8F9F7F7F8F5F6F6F9F9FAFAFAFAF7F9F8F9FAF7F9F8F7F6F6F6FAF9F8F9F9 -F9F8F8F7F7F9F9F7FAF9F9F9F8F8F9FAFAF7FAF9FAFAF9F9F9F9F8F9F9F7F9F7F9FAFAF9F9 -FAF6F8F9F8FAFAFAF7F9F9FAF9F9F9FAFAF7F6F8F9FAFAFAF9FAF9FAF9F9F9FAFAF9F9F9F9 -F9FAF9F9 -D5D6D7D8D9DADBDBDCDDDEDFDEDFDEDCD35A6D717E839CA29FB9E3E7E9EAEAEAECECEDECE8 -E7EEF0EFF0F0EFEBEAEFF1F2F2F3EDEBF1F3F3F3F3F3F4F3F4F3F4F4F5F4F4F6F5F5F5F6F6 -F6F4F6F6F7F4F6F7F6F6F6F6F6F7F6F6F6F6F6F6F6F9F6F5F6F6F7F6F1EEF3F6F6F6F6F5F7 -F9F6F7F7F5F5F7F7F7F6F6F7F6F6F3EFEEF3F6F4F3EEEFF3F6F6F7F8F8F8F7F5F0F1F5F6F6 -F6F4F0F3F4F3F5F9F8F7F8F8F9FAF9F6F3F0F2F8F9F8F9F9F7F9F9F8F3F0F7F9F8F8F8F8F8 -F9F3F4F8F5EFF3F8F9F9F7F1F4F1F3F8F9F9FAFAF9F8F7F9FAF9F8F7F4F0EFF7FAF9F8F9F9 -F9F7F8F7F6F9F8F7F9F9F9F8F7F8F8F9FAF9F9F8F9FAF9FAF7F9F9F8FAF9F9F9F9FAFAF9FA -F8F3F3F8F9F9F9F9F9F8F9FAFAF9F8FAF9F4F0F6FAF8F9F7F9FAFAF9F9F9FAF9FAFAFAFAF9 -F9FAF9FA -D4D5D7D9D9D9DADADBDCDDDEDEDEDEDCD783C7C7CAC9D0D6DBDCE3E7E8EAEAEAEAE9ECECEA -ECEEEFF0F0EFF0EBEAF1F1F1F2F2EDECF0F1F3F3F3F3F3F3F4F3F4F3F4F4F4F4F4F6F6F6F5 -F7F5F6F6F6F6F4F6F5F6F6F6F6F6F5F5F3F6F6F7F6F7F4F5F6F6F5F6F1EFF5F6F6F6F5F4F7 -F6F6F6F6F5F6F6F8F6F6F5F6F6F5F4EFF0F7F7F7F6EDF1F7F7F8F6F7F7F7F7F2F2F7F6F4F8 -F8F3F1F6F7F5F0F6F7F7F8F8F6F9F9F3F3F6F6F7F7F4F7F7F7F7F9F9F2F0F7F8F8F9F6F7F8 -F9F7F6F9F4EDF6F8F8FAF8F6F6F3F1F6F7F7F9F8F8F8F8F9F9F8F8F7F6F1F3F7F7F7F9F9F9 -F8F8FAF6F0F7F7F7F7F8F7F7F7F7F7F7F9F8F7FAF9F9FAF9F9F8F9F8F9F9F9F9FAF9F9F8F9 -F9F3F4F9F7F6F7F9FAF9F9F9F9F7F9F9F7F3EFF7F9F6F9F7F9FAF9F8F7F7F8F7F9FAFAFAF9 -FAF9F6F9 -D0D3D6D8D9D8D9D9D9D9DBDEDCDCDCDCD78DBFCBC8CDC9D0D4D8E0E6E8EAE9E9E5E4E9EBE8 -EAEEF0EFF0EFF0EAE8ECEDEEF0F1ECECF1F1F0F0F2F1EFF0F3F3F1F0F0F3F3F1F1F4F3F3F2 -F1F3F5F6F6F7F4F3F3F3F1F1F5F6F4F3F0F3F2F3F4F6F3F1F3F3F4F5F0F0F4F6F6F7F6F3F3 -F4F4F6F7F3F3F3F6F3F3F3F4F6F5F5EFEDF4F5F4F3ECF1F7F8F7F6F6F6F8F4EFF4F8F7F7F4 -F3F3F0F7F8F6F3F4F7F9F8F8F7F7F7F1F4F6F4F7F4F0F1F6F6F3F4F6F1EFF6F5F5F5F4F5F7 -F8F6F3F9F4EEF7F8F9F8F7F7F5F3F0F6F7F8F6F6F6F7F9F9F9F9F8F7F6F1F3F5F6F6F9F9F6 -F6F6F7F8F3F6F5F3F6F9F7F6F4F3F4F4F6F6F6F6F6F9F9F8F8F8F9F5F6F5F5F5F8FAF9F6F5 -F6F3F6F7F6F2F4F7F9F7F9F9F7F7F6F6F6F2F3F7F7F3F3F9FAF7F7F7F8F5F7F6F7F7F6F7FA -F9F5F2F6 -D0D3D5D7D9D9D8D5D8D8D7DCDDDBDBDBD9BF86C5CDD1D4D6D0D6DEE4E6E9EAE9E7E5E7EAE6 -E7ECEFEFEFEFF0ECEAEDEFEAEDF0EDEBF1F0ECEEF2EFECF1F2EDF1F3F0EEF3F0F2F3EFF1F0 -EDF2F5F6F6F7F3F2EDF1F3EFF0F4F1F0F2F1EEF0F3F1EEF3F3EFF1F4EFEFF4F5F6F7F6F3F1 -F3F3F0F5F3EFF2F4EEF3F4F1F2F3F4EDEAF0F2F2F1ECF0F6F6F6F6F7F7F6F3EFF4F6F4F0F1 -F4F2EEF6F9F6F3F3F6F7F7F6F7F7F6F1F0F3F5F5F3F0F3F7F4F1F3F4EFF0F6F3F0F3F3F1F4 -F7F0F0F6F4EFF4F6F9F7F8F7F5EFF0F3F6F1F3F4F2F3F7F9F7F8F7F7F5EFF2F4F3EFF5F6F1 -F3F4F2F6F6F3F3F4F0F3F7F3F1F3F3F0F1F5F2F3F3F5F7F7F7F8F7F4F1F4F3F1F6F9F4F3F3 -F3F0F3F7F3F1F0F6F8F7F7F7F7F6F3F3F3EFF1F6F4F1F0F7F7F3F1F4F1F0F4F4F3F4F4F3F6 -F7F4EFF3 -D0D3D6D7D8D9D7D6D7D8D6DADCDDDBDADACC76C8D0D1D6D9D7D7DEE2E3E9EAEAEAE6E7E9E5 -E8EDEDEDEDEEEFEAECF0F0ECEBEEECEAF1EFEAEDF3EFEDF1EFECF1F3F2EDF0F0F1F1EBF0F0 -EDF3F5F4F6F6F6F3EEF2F4EFEFF3EFF0F4F3EEF1F3EEEFF4F3F0EDF4EFEFF4F4F6F6F6F4F3 -F3F1EFF3F3EFF5F0EFF4F5F3EFF3F4EFEFF3F3F3F3ECF2F6F6F6F5F6F5F6F1F0F3F6F2EFF5 -F5F4EFF5F8F7F3F1F5F7F6F6F6F6F6F4F0EEF4F6F3EFF4F7F3F1F6F5EFF1F7F4EFF3F5F3F1 -F7F0F2F6F3F0F4F5F6F6F8F6F6F1F0F6F3F1F6F9F5F0F5F8F9F8F7F6F6F0F2F7F4ECF2F3F1 -EFF3F1F3F4F1F3F3F0F0F3F0F0F4F6F0F1F6F4F3F0F3F7F7F6F8F9F3F2F1F3EFF2F7F2F1F7 -F6F0F4F7F7F1F2F7F9F7F7F7F9F4F1F4F3F1F2F7F7F3F2F8F7F1F3F7F3EFF4F4F3F3F4F1F0 -F6F7F1F4 -D1D3D6D7D9D8D9DBDAD9D7D9DCDBD9D9DAD25CB9D1D3D5D9D9D9DDE0DFE4E9EAE9E5E7E7E5 -E7ECEDEDEDEEEFEAEAEFEFEDEBEDECECF0EFEAEFF1EFECF1EFEDF2F2F3ECEFF3F0EFEDEFED -F0F3F4F6F6F7F6F4F0F1F4EEF1F4EFF1F4F3EEF1F3ECF1F3F3F1EDF3EFEEF4F5F6F6F5F6F3 -F0EAF0F1F0EFF3EFF0F4F4F3EDF3F4EDECF1F4F4F5EDF1F6F5F5F4F4F6F6F2F0F4F6F1EFF4 -F6F3EEF5F8F9F3F2F4F7F7F6F6F7F4F6F6F3F3F6F3EDF2F6F3F1F6F6F0F0F7F4F0F1F4F1F2 -F6EFF3F6F3EFF5F6F4F6F6F6F6F3F0F5F1F2F7F6F4EFF2F6F9F8F7F5F5EFF3F4F6EEF3F6F5 -F3F4F1F0F4F7F6F6F3EFF4EFF2F6F6F0F1F5F2EFF1F6F7F9F7F7F8F6F6F3F5F0F1F6F2F3F8 -F7F1F4F7F8F0F1F7F8F7F9F8F7F4F1F6F7F3F1F7F9F3F3F7F7F1F3F7F4F0F6F7F7F6F6F3F0 -F4F5F1F4 -D0D3D5D7D7D8D9DADBD8D7D8DAD9DADBDAD86DA5D5D6D6D9D3D7E0E2DFE5E7E9E8E4E6E7E5 -E7EBEDEEEDEFEEE9E9EEEEECEBEEEDECF0EFEAEEF0EFECF1EFECF1F2EFECF0F3EFECF1EFEA -F2F3F5F5F6F4F5F6F3F1F1EDF2F3F0F0F4F4EDF1F4EDEDF2F3F0EFF4F0F0F4F3F6F6F6F6F3 -EFECF2F1EFF1F4F0F1F4F4F2F0F3F3EDEDF4F4F4F3EDF1F5F5F5F4F6F5F6F3EFF4F6F1EDF3 -F5F3EEF5F6F9F3F1F6F6F7F6F4F6F4F4F5F3F3F7F3EFF3F4F3EFF7F6EFF1F6F5F3F0F2EFF6 -F7F0F1F7F3EEF6F9F4F7F6F7F6F3F1F6F4F0F5F6F3F0F4F8F8F6F6F6F4F0F1F5F4EFF1F4F5 -F4F3F1F2F5F5F7F8F2F1F3EFF3F6F4EFF3F4EFF3F5F4F7F7F5F5F8F6F7F6F4EFF1F6EFF2F7 -F5EFF2F7F7F0F3F7F9F7F7F7F9F4F1F6F7F3F1F6F5F2F1F5F6F1F4F7F6F0F5F7F7F6F6F2F0 -F4F6F0F3 -D0D3D5D7D7D9D9D7D9D7D7DBD9D9DBDBDADA929CD0D4D5D6D5D9DEE0DDE2E0DDE5E5E9E9E6 -E6EBEDEDEEEEECE8E9ECEDEAEDEEEAECEEEDEAEEEDECECF2F2EDEDF1EDEFF3F2F0EFF4F1ED -F3F3F4F4F7F5F5F5F2F0EEEDF1F3EDF0F3F2EDEFF3F3EDF1F3EFF3F4EFEEF3F3F4F4F4F6F4 -F1EEF4F3EFF3F6F6F0F3F2F0F3F5F1ECEFF3F3F3F1EFEFF4F6F4F4F5F5F6F3EFF4F7F3F0F2 -F3F3F0F6F7F7F1F4F7F6F6F7F7F6F7F8F4EFF1F4F2EFF4F4F1F1F6F6F1F1F6F5F3F1F2F0F2 -F5F0F1F7F2EEF4F8F5F8F7F6F6F0EFF4F6F3F4F5F2F1F7F8F7F7F7F6F3EFF0F3F1F0F5F4F3 -F3F2EFF3F4F2F4F4EFF3F5F3F0F4F3EFF3F4F0F3F3F1F6F6F8F8F8F5F3F4F3F0F3F6F0F1F6 -F7F0F3F3F5F0F4F7F9F9F7F8F7F3F0F4F7F2F0F6F3F3F2F5F5F1F3F6F4F0F3F6F3F5F4F0F2 -F4F3EFF5 -D3D5D5D7D8D9D8D9D9DBDCDCDCDDDDDDDEDCAE85D0D4D7D9D9D8D5D9DCD8D5CDD9E7EAEAE9 -EBECECEDEFEFEDECEFEFEEEDEFEFEFEDEFF1EFF1F0EFF1F3F2F1F1F1F1F3F3F3F1F2F2F3F1 -F4F2F4F5F7F5F5F0EDF0F0EFF3F3F3F3F3F3F3F3F3F6F3F2F1F3F5F4F3F3F3F4F6F6F4F6F6 -F4F3F6F4F3F4F5F6F3F3F3F4F4F5F3F3F3F3F3F5F4F4F3F4F6F6F6F6F6F6F4F0F3F6F7F5F3 -F3F5F4F7F7F6F0F6F6F4F5F7F7F6F7F7F6F3F4F6F3F4F6F5F3F4F6F7F5F4F6F4EFEEF1F1F3 -F6F4F4F6F3F3F5F7F6F7F7F7F6F3F4F6F7F6F4F3F4F6F8F8F9F7F6F6F4F3F3F3F3F4F6F8F4 -F3F2F6F6F6F4F3F2F4F5F7F5F3F2F3EFF3F9F4F4F3F5F6F7F8F8F8F7F5F4F3F4F6F6F3F4F7 -F6F4F4F4F4F4F7F7F9F7F7F7F8F4F3F4F6F3F3F5F3F2F3F8F7F3F3F6F5F3F4F7F7F6F4F4F7 -F6F3F4F5 -D4D5D7D7D9D8D9DADBDBDEDDDDDEDEE0E0DEBD6CCAD4D7D8D9D8D5D1CBD3DBDFD1E4E9EAEB -ECEDECEEEEEDEFEFEFF0EFF0F0F1F2F1F3F2F2F1F1F3F1F3F3F3F4F5F3F3F3F3F3F3F3F3F3 -F3F3F4F5F4F6F4F0F1F3F3F2F0F3F6F4F3F5F4F4F6F4F3F6F3F5F5F4F4F4F5F4F4F4F5F5F4 -F4F4F5F5F6F4F4F5F4F6F6F5F4F6F5F4F4F5F4F6F5F5F5F4F6F5F6F7F6F3F4F4F1F6F7F6F6 -F5F7F6F7F7F3F4F6F6F5F7F7F7F6F7F8F9F7F7F9F7F7F7F7F7F7F7F8F6F7F7F3F2F4F6F4F1 -F7F7F7F9F6F7F7F6F6F5F6F7F6F4F6F7F7F8F7F7F8F8F9F8F8F6F6F7F5F6F5F6F7F7F9F7F7 -F5F7F7F7F7F7F7F6F6F7F7F6F7F6F5EFF3F7F6F7F7F7F7F7FAF8F8F7FAF8F6F7F6F7F7F7F9 -F9F8F9F9F8F8F7F8FAF6F7F8F7F7F7F6F7F6F6F7F7F6F4F9F8F9F7F8F8F6F7F8FAF9F8F7F9 -F9F8F7F7 -D5D5D5D7D9D9D9D9DCDCDCDEDEDEDFE0E0DFCB61BCD2D4D1D4D1CCC7D0DCDCD8D9D4E6E9EA -EDEEEDEEEDEDEFEFEFF0F0F0F0F1F1F1F1F3F1F3F2F3F3F3F3F3F3F3F3F3F4F4F3F4F3F4F3 -F4F3F3F4F4F4F3F2F0F3F2EFEFF3F3F6F3F4F5F6F4F6F3F5F4F4F5F4F4F6F5F3F6F5F5F6F4 -F4F4F6F6F5F6F4F6F5F4F4F4F5F6F5F6F5F6F4F4F5F6F4F5F5F3F6F5F5F6F6F4F3F5F7F6F7 -F7F7F7F9F7F4F6F7F9F6F9F9F9F9F8F7F7F7F7F8F7F7F8F6F7F7F6F7F7F7F7F4F1F4F4F4F2 -F7F7F7F8F7F7F7F8F7F7F6F7F7F5F6F7F7F7F6F9F6F9F9F8F7F6F4F6F7F7F7F6F6F7F8F7F8 -F7F6F7F6F7F8F7F6F6F7F7F6F6F6F6F2F2F7F7F8F7F8F6F7F7F8F9F9FAF8F9F9F7F7F9F9F9 -F9F9FAF9F8F9F8F9F7F8F7F7F9F9F9F8F7F9F6F9F6F6F7F8F7F7F7FAF8F8F8F9F9FAF9F9F9 -FAFAFAF9 -D5D5D7D9D8D9D9DADBDCDDDEDEDFDFE0DFDFD15BA6D4CECCC9C7CBCDD7DBD3C4CFD2E5EAEB -EDEEEDEEECEFEFEFF0F0F1F1F1F1F1F2F2F3F3F3F3F3F3F3F3F3F3F4F3F3F3F4F3F5F4F4F4 -F4F4F3F4F5F5F3F4F2F2F1F2F3F5F5F6F4F6F6F7F6F5F4F4F6F5F6F5F4F4F6F4F4F5F5F4F6 -F4F4F6F5F6F5F4F6F5F6F4F6F4F6F6F5F4F6F4F7F6F7F5F6F7F4F6F4F4F6F6F4F7F6F6F7F6 -F6F7F7F7F6F6F7F7F7F7F9F8F9F9F7F7F7F7F7F7F7F9F7F7F7F8F7F7F7F6F7F6F4F4F3F4F7 -F9F7F8F9F7F6F7F7F7F6F7F8F7F6F7F9F7F8F7F7F7F7F7F9F7F7F7F6F6F8F7F8F9F7F7F8F8 -F8F8F7F6F7F8F8F5F7F7F7F7F7F6F4F1F3F6F7F7F6F8F7F7F7F7F8F9FAF8F9F9F8F7F7F8F8 -F9F9FAF9FAFAF9F7F9F8F7F9F8F9F9F9F9F8F7F8F6F4F7F7F7F9F9F9F7F9F9FAFAF8F9F9F9 -F9F9F8FA -D5D7D7D8D9D9DADBDCDCDDDEDFDFDFE2E1DED96A67C0C7BFC5D1D1CECFBFC5C9DADEE3E9EC -EDEDEDEDEDEFEFEFF0F0F1F1F1F2F0F3F3F3F3F4F4F2F3F3F3F3F4F3F3F3F4F4F4F4F4F4F4 -F3F4F3F4F6F5F5F4F5F4F5F4F6F6F4F4F4F6F6F5F6F6F4F5F4F5F5F6F4F6F6F4F6F5F7F5F5 -F4F3F6F5F4F6F5F6F7F6F6F4F4F6F6F7F6F6F5F6F7F6F5F6F6F6F6F6F4F5F5F4F5F6F6F7F6 -F6F7F6F7F7F7F8F8F8F8F8F7F7F8F7F6F6F7F6F9F7F7F8F6F7F8F9F8F8F7F7F6F8F7F8F7F8 -F9F8F7F8F9F7F7F7F6F6F9F8F7F8F9F7F8F7F7F7F7F6F8F8F8F8F9F9F8F9F8F7F8F7F8F7F7 -F6F7F8F7F8F8F8F7F8F7F8F9F9F6F7F6F8F9F7F7F7F9F9F8F9F9F8F7F9F9F9F8FAF9F8F7F9 -F9F8F9F9F8F9F9F9F9FAF9F9F9F7F9F9F9F7F8F9F7F6F7F9F8F9F9FAF9F7F8F8F9F8FAFAFA -F9F9F9FA -D5D6D5D7D7D9DADBDCDDDEDEDEDEDFE0E0E0DC9058A5BBBDC2C9CDC3BFAEC9D4DBE0E0E4E9 -ECEDEEEEEEF0EFEEF0F1F1F2F1F1F1F3F3F3F3F4F3F3F3F3F5F4F3F4F2F3F4F4F3F3F4F4F3 -F4F3F5F5F4F4F4F5F4F3F4F6F7F5F5F6F5F6F6F5F5F4F4F6F5F6F5F6F5F5F4F4F5F5F6F6F6 -F4F5F4F5F5F4F5F6F5F6F5F4F4F6F6F7F5F6F6F5F7F6F5F6F7F6F6F6F6F5F6F6F6F6F7F6F6 -F6F6F7F7F6F8F7F9F8F7F8F6F7F7F7F4F5F7F7F9F7F7F9F7F7F9F9F7F9F8F9F7F7F9F8F8F8 -FAF9F8F9F8F7F7F6F6F7F9F8F8F6F7F8F8F9F7F7F8F7F9F9F8F7F7F9F7F9F7F7F9F7F9F7F7 -F8F8F9F7F9F7F9F7F7F7FAF9F8F8F8F7F8F8F9F9F7F9F8F9F8F7F8F7F9F9F8F9FAFAF8F9F8 -FAF7F9F9F9F8F7F9FAFAF9F9F9F9F8F8F8F9F9F9F7F7F7FAFAF9F8F9F7F8F9F9F9F8FAFAF9 -F9F9FAF9 -D5D5D6D8D8D9DADBDCDCDEDEDEDEDFE0E0E0DDAE4F7EBCC5C9C0A5A3C0CDD1D1D7D9DBE4E7 -ECEDEEEEEDEEEFEFEFF1EFF1F0F0F1F2F2F3F3F3F3F2F3F3F4F4F3F4F4F3F3F3F3F3F3F4F3 -F4F5F4F5F6F5F4F4F4F3F4F3F5F4F6F5F4F6F6F6F4F5F6F4F4F6F6F6F4F4F3F6F6F6F5F6F6 -F6F5F5F6F5F6F6F6F4F2F4F4F3F3F5F6F4F6F6F6F7F6F6F6F7F6F6F6F6F4F7F5F6F6F6F7F7 -F6F8F7F6F7F8F7F8F7F7F8F7F7F8F5F3F6F8F7F7F9F6F6F8F9F8F7F8F8F8F7F6F7F7F8F8F9 -F9F7FAF8F7F6F6F6F6F7FAF8F8F5F7F9F8FAF9F9F6F7F8F8F7F7F7F6F6F9F7F7F9F6F9F9F8 -F7F6F8F6F6F7F6F7F7F8F8F7F8F7F7F8F9F7F8F9F7F8F8F7F8F7F9F9F8FAFAF9F9F7F8F7F7 -FAF9F9F9F8F9F9FAF9F6F7F8F9F7F9F9F9F9F7F8F7F7F6FAF9F7F8FAF9F7F7F9FAF9F9F9F9 -F9F9FAF7 -D4D5D5D8D8D9DADBDCDCDDDEDEDEDEE0E1E0DEBC4677B9BCA3ADB9AEC8CDCFD1D5DBD6E2E3 -E8ECECEDEDEFEFF0EFF0EEF0F0F1F1F3F1F2F2F3F3F3F2F3F3F3F3F4F3F2F3F2F4F3F3F3F3 -F4F4F4F4F4F4F4F6F4F4F5F4F4F4F5F4F4F5F4F6F5F5F4F5F5F6F6F5F4F4F6F4F4F5F6F6F6 -F7F4F6F6F5F6F6F3EFEEF3F4EFEFF3F5F5F4F6F6F7F7F6F5F8F7F7F6F6F4F6F6F7F6F6F7F6 -F5F7F7F7F5F7F7F9F7F7F7F7F7F7F1F1F7F7F7F8F6F3F0F3F7F9F7F7F7F9F9F8F7F6F9F8F7 -F8F6F7F8F8F9F6F7F6F8F7F9F9F6F7F7F7F9F8F7F7F7F8F9F8F7F7F8F7F9F9F9F8F8F9F9F4 -F3F2F6F4F3F2F2F3F7F8F7F3F2F2F3F8F8F7F7F8F6F8F7F8FAF9F9F9F8FAFAFAF9F9F8F7F7 -FAFAF8F9F8FAF9F9F9F2F2F6F8F8F8F9F9F9F8F8F7F7F7F7F7F8F7F9F8F8F7F9FAF9F9F9FA -FAF9F9F8 -D4D5D6D9D8D9D9DBDBDCDCDEDEDEDEE0E0DFDEC94858BFB9BBBDAE6A82BACDD5D2DCDCDFE0 -E2E9ECEDEDEEEEEFF1F1F0F0F0F0F0F1F3F3F4F3F3F3F2F1F1F3F2F3F3F3F4F4F4F4F4F3F3 -F3F4F4F4F4F4F3F4F5F4F4F4F5F5F5F5F5F6F5F5F4F4F4F5F4F6F6F7F6F4F5F3F4F5F6F5F4 -F4F4F6F6F4F4F3F1F3F3F3F3EDF1F4F6F6F6F6F6F6F4F6F5F6F6F7F6F6F5F7F7F9F7F7F7F7 -F7F7F7F7F6F6F9F9F7F6F6F7F6F5F5F3F6F6F7F7F6F2EFF5F6F7F6F7F5F6F8F6F5F6F6F7F7 -F9F8F7F7F8F8F8F6F6F7FAF9F9F6F7F8F7F8F7F7F7F6F7F6F6F7F9F9F7F6F7F7F6F7F7F7EF -F4F2F6F4F0F5F5EFF4F6F1F2F4F4EFF5F7F8F7F7F6F7F7F7F7F7FAF8F7F7F9F9F7F9F9F7F6 -F8F7F9F9F8F9F8F7F6F0F1F7F9F7F7F9F7F8F8F8F7F7F7F9F8F7F9F9F7F7F9F9F8FAFAF9F9 -FAFAF9F8 -D5D4D5D7D7D7D7D9D9DADBDCDEDFDEE0E0E0DFD5546DB7BCC5CDB04C4BB9D0D3D7DCD7DADD -E4E4E9ECEDECEDEFF0EFF0F1F0F0F1F1F1F3F3F2F2F3F3F1F3F3F3F3F2F1F3F6F3F3F3F3F3 -F4F3F4F5F3F3F3F3F4F3F4F5F4F6F4F4F4F5F6F5F3F4F5F6F4F4F3F4F5F4F4F3F2F4F5F4F5 -F6F6F4F6F3F3F1F1F3F4F5F3ECF1F3F4F4F5F5F3F2F1F3F3F4F3F3F4F4F4F4F6F5F3F3F4F4 -F4F4F4F5F5F6F6F8F6F3F3F3F4F4F3F4F7F6F4F4F4F0EFF6F5F1F0F6F5F6F9F5F3F1F3F4F7 -F6F4F4F6F7F8F7F9F7F6F5F7F7F4F5F5F4F7F6F6F6F6F6F6F5F6F4F5F5F1F4F7F7F6F6F6F1 -F2F0F4F2EFF4F4EFF2F4EEF4F6F6F0F1F6F6F7F7F6F3F5F4F6F7F9F7F8F6F7F4F7F8F8F7F3 -F3F7F9F8F6F7F6F7F6F1F2F7F6F6F5F6F6F7F6F7F6F4F4F7F7F7F6F7F6F7F9F9F8F8F9F8F9 -F7F7F7F7 -D4D4D3D5D8D6D5D6D5D9D9DCDDDDDFE0E0E1DED75C589AC7D3D5AB4C4FBAD0D5D8D8D4D4DC -E1E3E8EBEDEDEDEFF0EFF0F0F0EFF1F0F1F2F1EAF0F3F3F3F3F2F2F1EDECF3F3F3F3F3F3F3 -F3F3F3F4F4F3EFEFF3F1F1F3F4F5F4F4F3F5F4F4F3F4F4F3F4F3F4F5F5F4F3F3F4F4ECEDF4 -F4F3F3F1EFF2F2EEF1F3F4F3ECEDF0EFEDF3F2EFF3F0ECF0F3EDF0F2EFF1EFF0F0F1F0F0EF -F3EFF1F1F3F6F5F7F6F0F3EEF3F5EFEEF6F4EFF3F2EFEFF5F3F1EFF3F6F5F8F5F2EFF1F5F3 -F1F3F2F3F6F7F7F7F7F3F0F4F2EFF1F0F1F2EFF0F5F2F0F4F6F0F0F3F2EFF1F4F7F5F6F7F5 -F3F3F5EFEEF3F0EDEFF3EFF3F5F5EEF2F6F6F6F7F3ECF1F2F1F6F8F7F7F4F1F2F2F4F6F3EF -EFF3F6F1F3F3F3F3F3F2F3F9F5F3F1F3F1F2F3F6F3F1F0F4F2F3F1F3F3F6F7F3F3F3F3F6F7 -F3F4F3F3 -D3D3D2D5D7D7D6D5D8D9D7DADCDEDEE0E0E0DEDB82559BD1D6D7BB4D4FB7D9D4D4D4D0D5DC -DDE3E6E7EAECEDEEF0EFEFEDF0EFF1EFF0F1F1F0F1F2F3F2F3F2F3F3EFEDF2F3F3F3F4F2F3 -F4F3F3F4F3F3EFF0F3F3EEF2F4F3F3F3F3F3F4F4F4F4F3F3F3F3F3F4F5F5F4F3F3F3F3F5F3 -F4F2F3F1EFF3F3EFEDEEF3F2ECF1F3F3ECEDF0EDF1F0EAEDF1EBEFF0ECECEEEDF2F4F3EFF0 -F5F1F1EDEFF5F6F8F6F3F3EDF1F6EDF1F4F2EFF3F3EDF0F4F4F3F0F4F4F4F8F7F3F0F2F6F2 -F1F5F3F3F6F6F8F8F6F0F3F6F3ECF3F6F6F4EFF3F6F0F0F7F5F1F1F4F4EFF3F7F7F5F7F7F6 -F6F6F3EFEFF3F1F0EFF1ECF0F3F3EDF4F6F6F8F6EFEDF3F4F3F6F6F6F7F1F0F3F3F0F3F4F2 -EFF4F3F0F4F4EFF1F4EFF1F7F1F1F6F6F1F0F3F5F0F0F1F3F1F3F3EFF3F6F3F1F9F6F4F3F6 -F3F6F3F1 -D4D3D1D5D7D7D5D4D9D9D7D9DCDEDEE1E0DFDEDDB2609CD4D7D7BF494FB5D9D1D6D8D3C9D1 -D9DBE0E5E8EAEBECEFEFEDEDEFEDF0EDEDF0F1F0F1F2F3F1F1F0F1F2EEEEF2F1F3F3F2ECF1 -F3F3F3F4F3F0EDF1F4F2EEF1F5F3F0F1F1F3F3F3F3F4F2F0F1F1F3F3F3F4F3F3F3F1F2F2F2 -F1F3F3F1EEF3F3F2F0EFF3EFEDF0F2F3EEEBF3F2F0F1ECECF3F0EFF0EEECECEDF0F3F2EFF0 -F3F0EDEFF1F4F4F6F4F1EEEDF0F5EEF1F4F1ECF2F4F0F0F4F4F1EFF3F2F4F6F6F3F0F3F5F1 -F0F0F2F3F3F4F8F6F2EFF1F6F4EDF3F5F6F3F0F3F3F0F0F4F4EFF1F5F2EDF4F7F7F5F6F6F6 -F6F6F5EDEDF2F0EFEEF2EDF1F1F0F1F5F6F4F5F4EDECF1F4F4F5F6F5F5F3F1F3F2EFF2F6F2 -EFF7F2F1F2F3EEEFF4F1F1F4EFF1F4F6F1F0F3F6EFF0F0F2F0F3F3EFF3F5EFF3F6F7F4EFF3 -F6F7F4F0 -D4D3D1D4D6D7D5D5D7D7D7DADDDEDEE0DEE0DEDEC8638DD5D9D7C45167C0DBD3D1D7D5D0D7 -DBD9DCE4E2E7EAE9EBEDEBEAECEBEEEBECEEEFEDEEF1F0EEF0EFEEF3EFEEF1EFEFF0EFEDF1 -F3F3F3F3F3F0EDF1F3EFF0F2F4F2EFEFF1F2EFEFF0F1F1EEF1F0EEF3EFEFF1F1F0F1F0F1F2 -EFF1F3F1EEEFF1F1F0EEF3EFECEFEEEFECEBF1F1EFF0EAEAF3F1EDF0ECECEDEAEEF1F0EDF0 -F2ECF0F1F0F2F1F4F4EEEFF1EDF0ECEEEEF0ECF0F0EFF0F1F3EFEDF1ECF3F4F3F3EEEDF3F0 -EFF1EFF0F1F2F7F5EFF0F1F7F3EDF0F3F3F1EDEFF0EFEFF1F1F0F0F1EEEAF0F4F3EFF3F3F1 -F4F4F1EFEEF0F0EEEFF4EFF1F3F0F2F3F2F6F3EFECEEF0EFF1F6F6F5F4F3F3F4F1EEF2F4F1 -EFF4F1F4F3F3EFEDF1F0F1F0EEEFF1F6F2F1F4F3EEEFF2F1EFF3F3F0EFF3F0F3F6F6F1EDF3 -F3F3F4F0 -D3D3D0D4D6D7D5D4D6D7D9DBDDE0DEDFE0E0DEDFD46367CED8D5D0C1CAD4D7DBCED7CACED6 -DBD9DAE0E1E3E8E9EAECEAE9EDEDEEEDEDEFF0EDEDEFECEDF2F1F0F2EFEDF0EDEDF0F0ECEF -F2F2F3F2F3EEEDF0EFEFF1F3F4F3EFEFF3F3EEEFF2F4F1F0F3F0EDF2F1EEF1F2F0F1EBEFF1 -EEEEF3F0EDF3F0EEEDECF1EFEBEEECECEAEAEFEFEFEDEAEDF1EFEDEFEAEDEEECEAF0ECECF1 -F1EDF3EFEFF3F4F6F3EFF3EFEBEEECF0EFEFECF1EFF0EEF0F1F0EFF5F0F4F6F4F4EEEFF1EF -EFEFF1EFF1F1F6F5EDEEF1F6F3EDF0F0F3F3EDF0F0EEEFEFEFEFF0EFEFEEEEF3F2EEF3F2F1 -F3F4F0F3EFF0EFEFF3F4F3EEF0F0EFF4EFF1F5EFECECF1EDEEF4F6F6F5F3F3F3F0EDF2F4F1 -F0F0F0F3F3F1EFEEF2F0F1F1F0EFF3F1EFF1F4F4F0F0F2F1EFF0F1F0EFECF2F0F6F4F1F3F6 -F3F4F1F0 -D3D3D0D4D7D7D5D5D7D9DCDCDDDEDEE0E0E0E0E0D86A5BBDD5D4D4D4D4D7D7D9D7D1C0D2D5 -D9DCDBDCDFE0E5E6E9EDECE9EDEFF0EEEDEFF0EEEEF0EAEEF1F1F2F2EEECF1EDEDF1F1F1F1 -F0F1F3F1F2EDEEF3F3F2F2F3F3F2EFEFF3F3EFF1F3F3F1EFF1EEEEF3F2EFF1F1F1F1EDF1F2 -F1F1F3EFEDF2F1EDECECF3F1F0F1EFECECEFEDF0EFF0ECEFF3F1EAEDF1F0EDF0F0EEECECEF -F2F1F0EFF2F3F5F6F1EFF3F1F1EFF1F1EFF0F0F0F0F0F1F1EFEFF2F4F0F3F5F3F1F0F0F0EF -F1EFF0F2F2F0F5F6EFF0F2F6F1EFF1F2F0F0F0F0F0F0F0F1ECEFF0F0F1F2F3F3F3F1F4F3F4 -F3F2EFF4F3F1EFF3F3F5F4F1EDEEF1F4F1EFF4F0EDEFF0EDF1F4F6F6F6F4F0EFEFEFF4F2F0 -F2F0F2F3F1F0F3F2F0F1F0F2F4F2F1F1EFF0F4F4F1F0EFF0F0F1F1F2F1EDF5F2F2F2F2F4F6 -F3F1F1F3 -D3D2D1D4D6D7D5D4D8DADCDDDCDCDEE0E0E0E0E0DD885372D3DCDBD8D5D7D9DEDCCFB7CFD5 -D1D8D8DCD9DEE5E6E9ECEBEAEFEDEEECECF0EFEEEEF0ECEDF1F1F1F2EFEEF0EDECF0F0F1F3 -F3F3F2F1F1ECF0F3F3F3F3F3F3F1EFEFF3F3EFEFF2F3F1ECF0F1EDF2F2F1EFF0F1F2EDF1F3 -F1F0F3F0EDF2F2F0EFECF1F3F3F3F1EEEDF0EDEDF3F3F0F0F3F3EDF2F3F2EDF2F4F0ECEDEE -F3F4F3EEEFF3F4F5F2F0F4F6F3EFF3F3EFF3F5F3F0F2F4F3F3EFF1F3EFF4F4EFF1F3F2F0F4 -F3F0F3F6F3F1F6F4F0F3F5F6F4F3F3F3F3F1F2F2F0F3F5F3EEF2F0F1F3F6F4F3F2F0F4F4F4 -F4F3F0F3F5F3EFF3F4F3F3F3F0F2F4F3F2F1F3F0F1F3F5EFF2F4F6F5F4F0F2F3EFF1F6F6F5 -F6F0F3F6F6F5F6F3F2F6F4F1F5F6F5F1EFF0F3F7F6F2F1F4F3F1F3F5F6F4F7F8F7F3F3F6F7 -F4F3F4F6 -D3D3D1D4D5D6D4D4D7DADCDDDDDADADEE0E2E2E1DEB2548DD5DCDDDCD5D7D9DCDBD0C9D1D1 -CBD0CCDBD9DBE0DEE5E9E8E9ECEDEFECECEDEEECEBF0EDECF0F0F0F0EDEFF1EFECEFEFF0F1 -F3F3F2F1EFEEF1F3F3F3F3F3F3F3EEEEF0F1EEEEF2F3EFECEFF0EDF1F3F1EDF0F3F3EFEFF1 -F0F1F2F0EDF2EFF0F0ECF2F3F3F3F3EDF0F1F0EFF3F2EFEFF2F2EDF0F1F3ECF1F3F0EDEDEF -F3F3F5F1F0F4F3F6F4F1F3F4F2F1F4F3EFF2F5F3F0F3F3F1F3F2F3F4F0F4F4F0F0F2F2F0F3 -F3EFF3F6F2F1F3F4EEF3F4F5F6F4F1F4F4F2F3F3EDF2F3F1F1F4F1F0F1F4F0F3F3F0F3F3F2 -F3F3EEF0F4F1EFF2F6F6F5F6F2F1F3F3F0F3F4EFF0F4F3EFF0F4F4F6F4EFF1F3F1F0F4F5F6 -F5F2F3F5F6F4F5F3F1F6F4F1F3F7F7F4EFEFF3F6F5F3F3F6F5F1F3F3F4F4F8F9F7F6F4F5F6 -F4F3F7F7 -D2D2D1D3D5D7D6D6D7DBDCDBDCDBDBDFE2E1E2E2DEBF5471D3DCE0D9CB97C3B08EB567A38D -67AE5CB4D9D9DBDCDFE0E7E9ECEEEFEDEAEEEEEEEFF1F0F0F0EFEFF1F0F0F1F1EFEEEFF0F2 -F3F1F3F0F0EFF0F4F4F3F3F3F3F3F1F0EFF0F1F0F0F3F2EFEFF1F0F1F3F2F0F2F3F3F1F0F0 -F0F3F1F1EFF2F0F3F0F2F4F3F3F3F3F1F1F2F0F2F5F3F1F1F3F3F0F0F1F2F2F3F3F3F0EEF0 -F4F4F5F5F2F1F3F6F6F5F3F3F3F5F6F3F1F3F3F3F3F4F4F3F3F4F6F4F3F4F3F3F3F3F4F3F4 -F4F3F3F5F3F3F4F4F1F2F3F5F6F4F4F4F3F4F4F2F0F3F3F4F4F6F6F4F2F2F3F4F6F1F1F2F3 -F3F5F4F0F3F4F4F3F6F6F7F6F3F3F3F3F3F5F4F3F1F4F4F2F3F4F7F6F6F2F3F3F3F2F4F4F5 -F7F6F5F4F4F5F5F4F4F6F5F5F4F6F7F5F2F0F2F5F6F3F5F6F7F7F4F5F6F8F8F9F7F6F7F6F5 -F6F7F9F7 -D3D4D3D5D5D7D7D9DADBDCDBDCDDDDE0E1E2E1E1E0CB6063CDDEE0DEBF72BD7C90A149AABD -79C35B71D2D4DBCBC4BFD7EAEEF0EEF0F0F0F0F1F1F0F1F1F1F1F1F2F3F1F2F3F0F3F2F1F2 -F2F3F2F3F3F2F2F3F3F2F3F4F4F2F3F3F3F3F4F3F2F3F3F3F3F3F3F4F3F3F3F3F3F2EFF1F3 -F3F3F2F2F3F2F3F3F3F3F2F3F3F3F3F2F3F3F3F3F4F4F3F4F4F3F3F4F3F3F3F4F4F4F4F3F3 -F5F4F4F6F5F6F5F7F6F5F4F6F6F6F6F6F6F6F5F6F5F6F6F6F6F7F6F6F6F6F7F6F6F5F5F6F6 -F7F5F4F5F4F6F6F6F6F4F7F5F6F4F6F5F6F4F4F2F0F4F6F6F7F7F7F5F5F4F5F3F5F4F4F6F6 -F7F4F5F4F3F4F6F6F6F7F6F5F4F4F6F5F5F6F6F4F4F6F6F6F6F7F7F7F4F4F7F5F6F6F7F6F4 -F6F9F8F8F8F7F9F9F8F7F7F6F7F6F8F7F4F4F4F5F7F6F6F7F9F7F8F8F7F9FAF9F7F9F9F8F9 -F9F9F9F8 -D4D4D5D6D6D7D9D9DBDCDCDCDCDEDDE0E0E2E1E2E0D76F5BBDDCE0DEC16F978972C358A282 -6AC563B2D4D1CECDC0C4CFE6ECEDEFEEF0F0F1F1F2F1EFF2F1F1F1F2F3F1F1F3F1F2F1F0F2 -F1F2F2F2F3F3F3F3F3F3F3F3F4F2F2F3F3F3F3F3F2F3F3F1F2F1F3F3F3F3F3F3F3F2F2F3F3 -F1F3F3F3F3F0F1F3F1F2F2F3F3F0F2F1F3F3F3F3F5F5F3F3F3F3F3F3F3F3F3F6F6F5F3F4F3 -F3F6F6F4F4F6F6F6F6F6F6F6F5F6F5F6F6F6F6F7F4F6F6F6F6F6F6F5F6F6F7F5F5F4F6F6F9 -F8F6F6F6F4F7F6F7F4F6F6F8F6F4F4F5F4F6F6F3F0F3F6F7F6F5F6F5F5F6F6F4F4F5F6F4F7 -F5F4F5F6F5F4F4F5F6F6F6F3F4F4F3F5F5F4F6F6F3F7F6F5F4F6F5F5F4F4F6F7F7F7F8F7F8 -F7F7F7F7F6F8FAF9F8F8F7F7F7F7F7F7F7F6F6F7F7F7F6F8F8F8F7F8F7F8F9F7F7F8F9F9F9 -F8F8F9F9 -D4D4D5D7D7D6D9D9DBDADADCDCDCDCDFE0E1E2E2E1D98959A1D9E0DFD6CED7D3D4D6CCC8CD -CBD2D1D3D2D2D1D0C9CCCBDCE5ECEFEEEEF0F0F1F0EFEFF0F0F0F1F2F1F2F2F1F1F1F0F1F2 -F2F1F1F3F3F3F1F3F1F3F3F3F3F2F0F3F3F3F1F0F2F3F1F2F3F1F0F1F2F3F1F0F2F2F0F3F3 -F3F1F2F3F0F0F1F2F1F1F1F0F3F3F1F3F3F3F3F3F4F3F1F3F3F3F2F3F3F3F4F4F5F3F2F3F3 -F3F4F6F3F3F7F5F5F5F6F6F6F5F5F4F5F4F5F6F5F5F6F6F5F4F5F6F6F5F6F6F5F3F4F6F6F6 -F6F6F6F6F6F6F6F6F6F6F7F7F6F3F4F4F5F6F5F1F1F2F4F6F4F3F6F6F6F4F4F4F6F4F4F5F6 -F4F6F7F5F5F5F4F4F7F5F6F7F5F4F4F4F6F6F6F6F6F5F4F4F7F4F5F4F5F4F4F5F6F6F6F6F7 -F7F7F7F7F7F8F9F8F9F8F8F7F8F7F7F7F7F5F6F7F7F7F6F7F7F6F7F6F7F6F8F7F9F7F9F9F8 -F7F7F8F7 -D3D5D4D6D7D7D8D9DADADBDDDEDDDDDFE0E1E2E1E2DB9A5871D3DDDCDADBDDD9E0DEDCD4D4 -D5C4CDD2D1D3C7CDD2BABDC7D4E8EDEFEFF0F0EFECEAECECF0F1EFF1F0F1F1F1F0F1F1F1F3 -F2F1F1F3F1F3F3F1F2F3F3F3F1F1F2F3F2F0EDEDECF1F2F3EFEEECEDF1F1EDE2EDE9F0F1F3 -F1EBEDF1F1F1F1F2F1F2F1F1F3F3F3F3F3F3F2F1F3F1F2F3F3F2F3F6F3F4F3F3F3F2EDECF1 -F2F3F3F3F4F5F5F4F5F6F6F4F4F3F4F4F3F4F6F4F6F5F4F5F3F5F5F7F5F6F5F4F6F4F4F4F6 -F6F7F6F7F4F3F4F6F6F7F7F5F4EDF0F1F3F4F5F5F3F4F3F6F4F1F4F6F7F4F4F3F4F5F4F6F4 -F4F4F6F1F3F4F3F4F6F6F6F6F5F4F5F5F6F3F5F4F3F5F5F4F6F5F3F5F7F6F5F7F6F7F7F6F6 -F8F9F8F6F7F3F6F8F9F9F8F7F7F8F7F6F8F6F5F9F7F8F4F3F3F3F3F3F2F6F7F3F8F9F9F9F4 -F2F3F3F6 -D4D4D6D6D5D7D8D9DADBDBDCDEDEDEE0E0E0E0E1E1DEB35A63BFD6DEDEDBDCD8DFDDDFD7C4 -CBD3D0D0D0D1C9CECDC4C3BFBCDDEBEDEEF0F0EFECEAEFEDF1F0F0F0F0F0F1F2F0F0EFEEEE -EDEFEEEEEDECEAEAEDEFEDEFF0F0F0F1EEEAEDF0EBECF0F0EBF1EFEAEFEFEAEDF1ECECEFF3 -F1E9EDF1F2F2F1F3F1F2F0F1F1F1EFF1F2F1F0F1F1F1F2F2F3F2F3F4F1F3F2F3F3F2EDEBF3 -F3F3F4F4F3F4F4F4F6F6F5F4F3F6F4F4F4F4F6F4F4F3F4F3F3F4F6F7F6F5F5F4F4F5F4F3F4 -F6F6F7F7F5F3F6F5F5F7F6F6F3F0F3EFF0F4F4F4F3F3F3F3F3F3F5F4F6F5F4F6F6F3F3F7F6 -F6F4F4F0F1F4F3F3F5F5F6F4F3F5F4F4F5F4F5F4F4F5F6F3F5F6F3F4F8F7F7F6F6F6F7F6F5 -F7F5F6F6F6EDF2F7F9F7F7F8F8F7F7F7F8F7F7F7F8F8F1F1F3F3EEEFF2F6F3EDF2F6F8F7F3 -EEF3F1F1 -D2D4D4D5D3D5D7D7D9D9D9DCDCDCDCDEDFE0E0E1E1E0C25967BCD9DEDEDEDEDCDFDAD4D1CB -CDCBCBC8D0CBD2D1D1D0C5C5C4CBDCEBEDEDEDEEE9E9EDEFEFEDEDECEDEAE9E5DCD5CEC5BA -B5B4B5A98385888D9A98959FB9B9AAB0C5CCDFEBE9E8EDEAECEFEFEAEBEDE8EFF1EDE9ECF3 -F2E8EDF2EEF0F1F1EEF1F3F1F0F0EEF0EFEEEFF0F1F1F1F1EDECF0F3F0F0F1F1F3F2ECEDF2 -F3F2F2F1F3F4F3F4F4F3F4F3F1F3F4F1F4F3F4F4F0F3F3F1F1F2F3F4F4F6F3F3F3F4F4F3F3 -F5F7F6F4F4F3F4F4F3F3F3F4F6F3F4EFEFF4F3F4F5F3F3F4F6F4F3F3F3F3F1F3F7F3F3F4F4 -F4F4F5F3F3F4F3EDF4F4F4F4F2F3F3F4F4EFF3F3F4F4F3F3F3F4F3F3F3F5F4F7F6F7F4F4F3 -F7F6F6F6F2ECF0F5F7F6F6F8F7F7F7F8F7F6F7F6F7F8F1F3F4F4EDECF3F6F3EEEFF3F9F8F6 -F3F5F3EF -CDD1D0D1D2D3D6D4D5D7D5D7D9D9D9D9DDDFE0E0E1DED06357A5D8DBD8DBD4D5D6C9D0CFD0 -A998B3C7C9CDC4D0D1D4CFCDC4C1C5E5EAE7E9ECE7E8EBE9E7E0DACDBD8E655C504F504F51 -4659595760576F5A555C6363616C45443E3E497CBAC9E1E5E6E9ECE8E8ECE9EDF0EBEDEDED -F0E7EBEDEAECEEF1EFEFF0EFEDE9E9EAEEEEE9ECEDEBF0ECE9E8EDEFEBEDEDECF1F0EBEDF0 -EDEEEDECECECEFF3F0EEF0EFECEFF0ECEFF2F2EEEDEDEFF0F0ECF0EFF1F4F5F4F5F4F0F0F4 -F4F4EFEFF0EEEFF0F2EDF1F2EEF0F0EDECF0F3F3F3F3F3F4F4F1F0F0EFEDEEF1F5F0EFF1EF -ECF1F3EFF0F2EEEBEFF4F3EEEEF0F1F2EFECEEF3F1F0F0F0F1F2EFEFF0EFF0F4F5F7F3EFF1 -F5F3F3F3EEEEF1F3F7F6F6F6F4F2F4F6F7F6F5F6F5F6F6F2EFF3EDEDF1F3F3EDEFEFF2F4F4 -F3F0EFEE -CED1D0D1D2D1D4D4D5D7D5D8D7D9DAD9DBDEDEE0E1DFD8775889D4D9DAD8D1D9DBCCCDCDD6 -B3909AC7CCC4C9CAD5D3CCCFC8C4C7D7E3E3E9EBE5E6E8D6916353484248444848514C5050 -484F514D4D4D4F4B4B4D4B48444539373A373437343A486FADC7E5E6E6EDEAE9EFEEEFE9EC -EEE8EAEDEDE9EBF0EFEDF0EFEEEBEAE5EBE9E6EBEDE7EDF0EDE7EFECE9EDEDE9EDEFEAECF0 -E9ECF1F0EBE9EDF1ECEFF3EDEBF1F0E9ECF1ECEEF1F1EEEEEFEFF3F1ECEFF3F3F3F4F2EDF3 -F3F3EBF3F3EDEFF3F1EAF1F3EFF0F2EFEDF1F3F2F4F1F2F3F3F2EEEDF1F2EAF1F1ECEFF1EF -EBF3F4EDF1F3F1ECF0F3EEEDF1F1EDF2F1EAEEF0ECF0F3F1ECF0F0F2EFEDF0F3F4F3F3EFEF -F3F3F4F0EDF0F2F0F4F5F5F4F6F3F3F4F6F6F3F4F4F6F6F0ECEEECEAF0F3F0ECEFF1EFF3F1 -ECF0EFEC -CED1D1D3D1CFD2D5D4D6D6DAD9DADAD9D8DDDEDFE0DFD97E4D60CED8D5CACBD5D9D3D1DAD8 -C5A6BDCEC9BFC9CBD4D4CED6CDC0C0C7D1DDE6E9E6E6E9E3DCD0B4724239373A37372F2F2E -3431312C2C2C2E2E2C292C2E292F2E2E2E2E3132312F3134373B89C1DCE5EAEAEAECEBE8EB -EDE8EAECEDE9ECEFEEECEBEDEDE9E6E6EBECEBEAECE9EAEFECE8EDEEEEEEEDE8EAEDE8EAEE -E9EDF1F0EBE9F0F0EAEFF1EDECEFF2E9EDEFEBEEF1F0EFEBF1F2F3F0EAEDF1F1F3F3F1EDF3 -F4F1EDF3F1EDEFF2EEEAEFF1F3F2F3EDECF1F4F1F2F3F2F3F3F3EFECF2F2EAF1F1ECF0F2EF -ECF3F3ECF1F4F2ECEFF2EDEDEFF1F1F0F1E9EEF0EAF1F3F2EAECF1F3F1EAF0F1F4F4F3EFEF -F5F3F3F0ECEDEFEDF1F2F2F3F3F3F3F4F6F4F3F4F4F4F3F0ECEFEAECF1F2EEECECF1EEF0EF -EDF3F0EB -CDD0D1D5D3D1D1D5D5D5D7D8DBD9D9DAD8DADCDEDEDDD89A5455C2D9CD6F9AD4D9D7D9DAD9 -D5C3CEC7C7BDC7CFD3D4D4CFCBC9C3CBCBD5E6E8E5E6E7E5E5E9E8E1CC9C654234342F2E2C -2E312C2E322C272C27292C2C2C2727292927272C2E2F2F2F2F32323A4C6C9AC7DDE4E9E9EA -ECE6EAECECEBECEEEFEAEAEEECE6E9ECECE7EAEAEAE7E9EAE7E7EDE9EFF0EFE9EAECE4E6EF -E9EDF3F1ECEBEFEDEAEFF1ECEBEFF1EAECEDEAECEDF0EDECEDF3F1EFEAEFF1EFF2F5F3EFF3 -F5F0ECF0EFEEEDF0ECEAF0F0F0EFEFEDECF1F1F0F2F4F3F3F3F2EFEDEFF0EAEDEDEBEFF1ED -EBF1F2ECF0F0EFEBF0F3EDECECECECEFF1ECEDEFEBF0EFEEEBEDEDF1F0ECEFEDEFF1F3EDEF -F3F1EDEDEDEEEFF2EEEDF1F3F3F0F3F5F3F1F1F1F0F1F1EFEFEFEAECF2F2EEEDEDF0F0F0EF -EDEFEFEE -CDD0D0D3D1D1D5D5D4D4D7D7D8D9D8D7D9DBDCDEDCDCDABA606D9CD3C88582C5D9D7D9DCD9 -D9CDCDC0CAC9C7C9C7C9CFCFD1CECDD0BDCFE4E7E6E5E9E8E6E6E6E5E3E3E2D1BD8655392F -2F34393C37342E2E2C2929262C292C2726272627292727272E2F2F3737323A3A4F6AB0C9DA -E5E3E7EAEAEAEBEEEDEDE7EAEAE7ECEAEAE9ECEDE9E7EAEAE8E6EDE9ECF0EEE9EDEFE8E8EF -EBECEFEFECEBF1F0E9EDEEEDEDEFEAE9EDEDEDEAEEEFECEDEBEDF2EFEAF1F3EFEDF3F3EEF1 -F3EDECF0EFECEDF0EAECF0EFECEDEEEBECEFF0F3F3F3F3F3F2EFF1F1F0EFECEFEEEBF0F0EA -EBF2EFECEDEFEDEBF0F2ECECECEBEBF0F1E9EFEEE9EFF0ECEBEFEFF2EEEAF0F1EEF0F3F0F0 -F5F3EDEBEFF1EEF2ECEEF1F4F3EEF1F3EEF1F0EDEEEEEFF1EFEFEAECF0F3F0EDF0F3F1F1F0 -EEEFEFED -CECED0D1D0D4D4D5D5D6D8D8D9D9D7D9DBDADBDDDDDBD9C86C605361545054A9DAD8DBDFD9 -D0D4CDC9C9CECBC5CBC9CDD4D6D8D1CDC9C5DCE3E7E6EAE9E7E7E7E7E8E8E7E3E5E5E2C498 -5040373934373131292E2C27292729292726221F2726261F22262C2C2F2F2F2F32393A3B4B -608ECCD9E3E9E4ECEDECE7E2EBE9EAEAECEDEBE8E8EAECE9E7ECEEE9E8ECEAEAF0EDE9E5EC -EFEFECEDEAECF1F0ECECEFEFEFF0E9EBEDEDF0EEECECEEF0EDEDEDEDEDF3F3F1EDF1F0EFF1 -F0EFEEF1F1EDEDEEEBECF0EDEDEFEFEEEDEFEFF1F1F3F3F3F1EFECECEAECEAF0EDE8EEF1EC -EAEFEDECECEFEDECF1F1EDF0EDECECEDEDEAEFEFEEEFEFECECEFF1F1EDECEFF0EEEFF3EFEF -F3F1ECEDEEF1EFF1ECECF2F4F3F0F1F2EEF0F1EDECEFEEEEEEEEECEDEFF1EFEDEFEFF1F3F3 -EFEEEEF1 -CFD0D0D3D3D4D5D6D5D9D9D7D9DAD9DADCD9DBDEDEDCD8CE6A5054544B54547AD3DCDAD4CF -D2DCD5CDCACDD0C4CED0D1D1D0D5D6D5CFCED4DCE3E9ECEAE9ECEDEBECEAEAE4E7E9E7E7E3 -DDC3A550423A2F2C31322F2E31272729272622222227261F222424262C26272C3134343737 -34343E4B6791C0DBE6E7E6EAEDECECECEEE9EBEDE9EAEEECEBF1EFEAECEEECEBEFEFECEAEF -F1F0F2EEEAEAF1F3F3EFEFF1F3F3EFF0F0EEF0F2EDEFF2F0EDEFF3F0EFF3F3EFEDF0F0EEF1 -F0EDF0F3F4F3F2EFEFF2F1EDF1F2F2F3F3F2F0EEEFF3F3F3EFECEAEDEFECEAF1EDEFF2F1ED -F0F1EFEFF2F1F1F3F3F4F1F1EDEEF1F1EFECEFF1EFF1F3EFEDEEF3F3EFEFF2F1EFEFF1EFEF -F3F1EDF1F1F0EFF3F2EEF2F3F2F0F1F3EEF1F3F3EFF0F3F3F0F3F3EFF0F4F4F4F5F3F3F3F6 -F2F1F3F3 -D0CFD0D4D3D4D5D5D4D8D7D7DADBD9DBDCDBDADDDCDEDBD37E53585049504D4DC4D4CFD1D6 -DCDDD7CCCDD2CDCCC8CBC7CFCED8D7D9CFC8C9D5DEE6ECE9EAECEDEEECEDEDE8E8EAEBEAE5 -E5E9E7E3D3A66C403B3231342F312F292727272222262C241F2924242224222427272C2E2F -312F37373439394877B0C5DBE7E9EBECECE7EAECE9E7ECEAE9EEEFEBEAEFEDEBEDEFECECEE -F0F2F3F0ECE9EFF1F1F0EDF0F1F1EFF0F1EFF0F1EFEEF0EFECF0F4F0EDF0F1F0EFF1F1EDF1 -F1EFEFF1F3F2F3EEEFF2F1EEEFF1F1F1F1EEF1EEF0F3F4F0F1EEEAF0EFEDEAEFEDEDF3F3EF -EFF3F0EDF1F3F1F3F2F3F1F1ECEFEFEFEFECEEF1F0F1F3F0EBEFF2F3F0F0F1F2EFEFF1F0EF -F1F1EDF1F0EFEDF2F1EEF1F3F2EFF1F3F0F0F4F3F0F3F4F3F2F5F3F0F0F6F5F6F7F4F2F3F6 -F3F2F3F5 -CFD0D0D3D4D4D4D5D7D8D8D7DBDBD9DADBDCDBDCDCDEDCD87E574D4B464F4D4F9FD5D7DAE0 -E0DDDBC4CBD4CBD4CACBCCD5D3D8D4D6D1D4BFCDD5E0E8E7EBECECECEDEEEDEAEAEFEDEBE7 -E7E9EBEBEBE6E2D8B788443932342E2C2C272C2727242426222426261F22221F221F272926 -292E2F2F313734343E343A4272A3C0DCE8E7E4EBEAEAEAEAEAEDEDEBECF0EFEBECEDEDECED -EEF3F3F1EDE9ECF0F2F2F0EFF0F0EFF1F1EDF0F2F0EFF0F0EDEFF2F1EBEEEEF0F1F1EFEDF2 -F1F1F0EFECF2F2EFEFEFF0F3F0EDEFF1F0EDEFEFF3F1F3F3F1F1EDEDEAEBECF0F0EFF1F1ED -EEF1F1EFEEF2EFF2EFF2F3F1ECEEF1F1F1EFEBEDEFF3F1EFECF0F2F1F0EFF0EFF0F1F1EFEE -F1F0F0EFF0F0EEF3F3F0EFF3F3F0F1F4F4F0F2F3F3F4F4F3F2F4F3F1F3F4F7F5F6F3F2F3F5 -F3F2F3F3 -D1D2D4D4D5D5D6D8D9DADADBDBDBDCDCDCDDDDDFDFE0DEDBA64B4546484B4D5885D8DCDEDB -DCE1DED3CFD3D1D7CBC4C5CED0D0D9DCD5D6CDCAC7DAE5E9ECECEDEEEDEDEEEDE9EDEDEEEE -EDEEEDEDECEAECEAE6E5D9CB975841322F292F2F2C2F292C292E2727262627262427222424 -2726292C29272E32313232323A393C46779BC0D8E3EAEAEAEDF0EFEFEFF0F0F1F0EEF0F0F0 -EFF3F3F0F0EFF1F3F3F1F1F1F3F3F3F3F3F3F2F3F3F1F3F4F3F4F3F2EFF3F4F4F1F3F3F1F1 -F1F3F1F1F0F1F1F1F1F2F2F3F3F0F2F2F3F4F3F1EFF3F2F2F3F2F2F1EEEFF0F1F1F4F2F2F2 -F0F0F0F0F1F1F3EDF1F4F1F2F0F0F1F0EFF1F0F2F0F3F0EDEFEFF1F1F1F3F3F3F4F3F3F1F4 -F2F0F3F3F3F2F0F5F3F3F3F4F5F3F3F5F6F4F5F4F4F6F6F6F4F4F4F6F7F7F9F7F7F5F5F6F6 -F6F7F6F6 -D1D2D4D5D6D6D7D8D9D9DCDBDCDCDCDEDEDEDEDEDEDFDADBB0544944484C465560C9DCDCDC -DEE1E0E0D1D2D9D6D1CBCDCBD4DBDBE2DCDED9D4C9D5DEE6EDEBEFEDEDEFF0EEECECEFEEEF -EFEFF0EFEDEDEFECE8EAEAE9E6DED49F653932312E2C272E2C2C27272C2726271F241F2222 -24262C262424222727272E3434373434373A3A405377BADADFE6ECEEEEEFF0EFF0F1F0F0EF -F0F1F0EFF1F1F1F1F3F3F3F0F3F4F4F3F2F3F2F3F3F3F3F4F3F3F3F0EEF3F5F3F3F3F2F1F2 -F1F1F0F1F0F2F3F1F2F3F3F3F2F3F2F4F4F3F3EDF2F3F3F4F3F3F3F1F3F1F2F1F3F2F3F3F3 -EFF2F3EFF1F3F1F0F1F0EFF0F0EFF0F2F1F2F2F2F2F2F2F1F0F3F3F3F2EFF1F2F3F3F3F3F4 -F3F3F1F3F3F3F1F3F4F4F5F4F3F3F4F4F5F4F4F4F5F4F6F7F7F6F5F7F6F8F7F7F7F4F6F7F6 -F7F7F7F7 -D1D4D4D4D5D5D6D7D7D8DADADADCDCDEDDDDDEDEDEDFDCDBC4514850484B4C5855A9D9D9D8 -DDDEE2E0CBCDCFCED1D0C9CFD4D7DCD9DBD5DBD6D7CDCFE2EBEDECEDEFEDF0F0F0F0EFEFEC -ECEFF0F1F0F0F0F0ECE9EAEAE9EAEBE9E5D8B9834B312C2C2E31292C2924262E242427241F -26272427242726222427222C272C2C31343731373B393A405171B3D2DDE8EDECEDEEEDEDF0 -EFF1F0F1F1F1F1F3F3F3F2F1F2F4F4F3F3F3F3F3F2F2F1F1F2F1F3EDEDF2F3F4EFF1F3F3F3 -F1F2F1F2F1F2F2F1F2F3F3F1F2F1F3F3EFF0F3F0F1F3F3F3F3F2F2F1F1F0F1F1F3F3F3F2F4 -F3F1F2EEF0F3F3F3F0EEEFF0F0F1EFEEF1F1F1F3F3F3F1F1F3F1F1F1F2F0F3F3F3F3F4F4F6 -F4F4F4F3F3F4F3F3F3F5F4F1F3F3F3F6F4F5F4F3F4F5F6F6F6F7F7F7F7F7F6F7F7F7F7F7F7 -F6F7F7F7 -D1D3D4D4D5D1D5D7D5D9D9D7D7D9DCDDDDDCDDDEDFDCDEDCCD6551544C4849484B8ED4D4D6 -DBDEE1E1D6C9CDD0D1CBD3CCCFD5D8D1D3D9D6D2CAC0C7DCE3EAEDEEEDEEF0F0EEF2EFEDE6 -EAEDEFEFF0F1F0F0EFEAE9E9EAEDECEAEAEAEAE7D8C0895541342F31323129272629292222 -272626222624242626262424262624272929293134343437373739455372B3C9D9E7EAECEF -ECEFEEEDECEFF1F1F0F1F2F1F3F3F3F3F3F3F3F3F0F1F2F1F1EDF0F0F3F3F3F0F1F2F3F3F2 -F2F2F0F3F0F1F3F3F3F1F3F3F1F1F3F0F1F1F2F1EEF1F3F2F2F0F3F2F2F3EFF1EFEEF1F1F2 -F0F0F0ECEFF0F0F1F1EFF0F0F0EFF0EDF1F1F3F0F0F3F3ECEDEFEDEEF0F1F3F2F4F3F3F1F4 -F3F4F5F3F3F5F3F2F3F4F3F3F4F3F5F4F5F4F5F4F1F4F5F6F5F4F4F6F3F1F2F4F6F6F7F7F6 -F9F7F8F8 -D0D2D4D4D5D2D2D6D9D9D9D6D5D7DBDCDDDADBDDDFDEDEDDD47A4F4B4C4B5A494D57C9D3D5 -D5D5DEE0DBC5C5D4CBC4D0C4CBCDD5DBD9D2D1D6CECDD4D5E0E6EAEDEDEEEFF0EFF0F0EDE5 -EAEFEFEEF1F0EFEEEDEAECECEAECEDEDE9EBEBECE9E9E9E1D1AA674039372E2E2C26242726 -29262E242C24272422262224261F1D2426242426292F312F323232373737373C41589CC5D6 -E7EADECCD4D3E2E7EAEFF0F3F1F1F0F3F3F2F0EFEFF1F1F2F1ECEEF3F3F1F1F2F3F1F3F4F3 -F2EFF0F2F1F3F3F3F3F3F3F1F1F2F1F1F3F2F3F3F0F1F3F3F1F0F3F3F2F0F0EFECE9F0F0EC -F0F0EEEBEFF1ECF0EDF0EDEFF0EFEDEEEFF1F1F1F0F3F4F0EAECEFEFEEEBF0F3F3F5F3F3F3 -F3F1F4F3F4F4F2F2F3F4F4F1F2F2F4F3F3F4F4F2F1F4F4F5F5F3F3F4F1EDEFF4F5F3F4F6F7 -F7F6F8F7 -D0D0D2D3D4D4D4D7D7D7D7D5D4D8D9DADBDADCDCDDDDDEDCD6885958494D4B4C4B4BA3D3D1 -D8D7DBD7CEC3CAD6D7D1CEC7CDC9D1D7D9D7D7D1DAD4D4D7E7E7E8ECEDEDF0EDEDEDEBECE6 -EBEDEBE9ECF0F0EFEEEFF0ECE6EDEEECEBECEBECEBEDEAE9E8E9E5D5BF8E4D322E2E292629 -2C22272727262627221F26221F221F262422261F2626242727272E312F2F2F312F37344045 -5597B7C4D0CAC0ABAEC9DFE7EAEEEBF0F1F1EFEFEFEDF2F2F0F0F0F0EEF0F0F1F1F0F1F3EE -EFF0F0F0F1F3F2F2F4F3F3F3F1EFEFF3EBF2F3F0F0F0F2F0F0EFF1F3F3F1EFF1ECEAEFF0EF -F2F1F0EDF0EFEBEFECEFECEAEDEDEEEFF3F1F0F0EFF1F4F0E9EEF1F0F1EAEAEFF0F3EFF1F1 -F3EFF2F1F2F1EFF0F3F3F0EEF3F3F3F2F4F3F2F2F4F4F3F3F2F1F0F3F4F0F1F3F3F4F4F4F6 -F6F6F7F4 -CBCDCED1D2D1D1D4D4D4D4D4D5D8D5D9DAD9D9D8D9DCDDDDD9A65A55504646464C5190D2D5 -D7CFC9CBD7CBBBD0C9CBC7CBCDC4C5D1D7D0CACBD9DBDAD7E9E7E5E9EAEAEEEEEBE9E9E9E7 -EBECEAE6E7ECEDEEEDEDEDE9E7EAEAE9E8EBEAECEBECEAEBE9E9E9E5E3E1D4B598492F2724 -2624262C2426292C241D221F221F221D2222262626241F2224262427262C292C2E313A3939 -323C404960B0CED0CCC3C8BAB3D0DBE4ECEFECE9EAEBEAECEFEAEAEFEEEAEAE9EBEEEEF0EC -E9EDECEDF1F1F1F1F0F0EFEDECEAEDEEEFF2F0EFECEAEDECEDEEEEEDEDEFEFF0EAE9EDECEC -EFF0EFEBEEEFE9E9EBECECEAEBEAEBECF0F0EDEBECECEEF1EFEEEEF0EEEBE7EDF0F1EFF0EF -EEEFEFF0EEECE9F0F3F2EFEBEEF3F0EDF0F2EDF0F1F1EFEFF0EFEFF2F0ECEFEFF0F0F0F1F3 -F1F0F3F2 -CDCFCECFD1D0D1D5D4D2D5D4D4D6D5D7D8D7D9D9D9DDDDDDDBBB6C574C45464D51585AC9D0 -CAD0CDD4D0D1C1CBD0CBC8C8CED1C9CDD0D0CED9DBDCDEDEE7E7E5E7E7E6E9EDE7EAECE9E6 -E9EBEBE7E8EAEDEDEEEEEBEBE6EAE8E6EAECECE7E9ECEDECEDECEAE2E6E8E5E0E2DCC79C65 -402C242924242624221D242224241D261F2626262422221D1D24242224262626272C373E34 -49557686A9C0CDD4D6D7DAD7CCC4B4BFD9D9D7E2E9E7E6EBEDE9EAEFEAE8EAE9E8EAEDE9E7 -E9EDE8E9F0EEF1F1EDECEBEAEDE7EBEEEDF0EFEDEDECEAE6E9EDE9EDECE9EAEFEBE8EDECE6 -E9EDEAE7EDEAEBEAE9EDEFE9EAECE9EAEDEEE9E9E9EAE8ECEFE9EBEDF0EDE8EBF1F0ECEAEF -F0F1ECEDE9ECEAEBEFF1EFE9EEF2ECE9F1F2EBECF2F0EBEFEFECEBF1F0E8EDF0ECEDF0F0EE -EFF2F0EF -CDCDCECDCECED2D4D4D3D7D5D3D7D7D8D7D6D9D7DBDCDCDCDCC75C4D4C4948514B4C4F9CC4 -D0D0C9CCCDD0BFABCCC1C5D1D0CABDC2D7D4CDD4DED8E1DCDEE6E7EAE9E8E7ECE7E7ECEAE7 -E8EAEAE5E7EDEDEDECEEEDEAE9ECE9E6ECEDECE7E8ECEBECEEECE6E6EAECE6E3E7E5DEE3E5 -D8B2412622242622221F1D1F1C1D1D1D1F1D1D221F221F1F22242422292426292F2F394248 -41729BB7C9CDD0D6CBD7E0DDD2CCD0CEC8C4C2CDCBD7E2DFE7E5E7EDE3E9ECE6E7E3ECE7EA -EFEFE7E9EFEFF0EDE7EDEAE8EEE5EAEDF1F1EEE9EFEDEAE8ECEAE7EAE9E9E6EEECE6EDEDE8 -E7E8EAE7EBE5E9E7E5E5EAE7ECEDEAE8EEEBE8E9ECEAE3E8EEE3EDF0EFECE9EAF0EFEAEAEC -EFF0EFEFE9EAEAE8EBF1F0EAF0F3EDECF1F0ECEEF2EFECF1F1EAEBF0EDE7F1F1ECEDF3F3ED -F1F4F1EE -CDCECDCDCFCFD1D5D2D5D7D6D4D5D7D5D5D8D7D7DADCDDDDDCD15B5B5053484F49504F65CB -D0CBC5CBCDCBCCBBBFC5CFC9D4D1CDCBD6D5CDD7D8DDD8DBD4E2E9EAEAE7E8EBE7E6E9E8E5 -E6E7E7E5E6E9EAEDEAEAE8E6E8EAE9E5ECECEAE7E7ECE9EAEFECE6E5EBE9E7E4E5E2E0E3E6 -E2DDCE6D312724222422221F24261D2726221F1D221F1D1D2422221D241F1F1F26242E3139 -3A3144507EA5BAB9BAA3B7C5D0D6D4D4CDCDD9D5C4C2C5D3E0DCE3DEDBE0E6E5E5E2E5E6EA -EEEBE6E7EAEDEEEAE9EFEBEAEAE5EAEEF0EBEDEAEBEAEAE5ECEAE8E7EAE7E6ECE9E7EAE9E7 -E3E7E8E7EBE6E5E6E2E4E7E6EAEDEAE8EBE9E9E7EBECE4E8EBEFEDEDEDEBE7EBEFEDEBEAEC -EDEDF0EFEBECEEE9E9EDEBE5ECF2ECE9EDF0EAEAF2F0EAF1F3EFEBEEEAE8EDEFEDECF0F0ED -F1F3F1EF -CBCECDCED0D0D2D5D1D4D6D5D4D5D7D6D7D8D5D7DADCDCDEDBD05A45505C424B4C44454FC4 -D0C9C7C8D3CDBDC7C0C0CDC5D1CDC5C7D4D9D4D2D8CBD6D9D5D7E2E6E8E6E9E8E6E6E7E9E3 -E6E6E7E3E5E6E9EAE7E7E7E7E6E9E6E4E8E7E5E5E7E6EAE9ECECE7E6E9E7E5E2E6E6E1E5E6 -E2DEE2E0C195613E312929292724272C2C272622241F1F1F221D24241D1D1D1D222426272C -2C262E3239393A5361575A6C9FA5A3C7CDCFD1D0C8C7B9BFC0C2D1CAD0D3DEDCD9D7E2DCE4 -EBE7E3E3E7E7EAE5ECEDE7E5ECE2E6EAE9EAEDE6E9E6E9E5EDECE5E9ECE7E7EAE9E5EDEDE6 -E2E6E6E3E9E3E8EBE5E9E8E6EAEAE6E4EAE7E5E7EDEAE5E8E9EBEBEAE9E9E9EEF0EEEBE9E9 -E9ECEFF0E9EEF0EAEAEDEBE6ECECEBEAEDF0EAEBF3EFEAF1F3EEEBF0EDECF0F1EDEDF3F0EC -EFF1EDED -CBCCCED0CFCFD1D4D2D2D5D3D2D4D7D7D7D9D5D6DBDBDCDCDBD5714B4D423B3E423B4445A1 -C4C1C1C1B4C0B3B295A3C0C5C7D0CDC7C9D3D3D5CBCFCBD8DBD4D5D7DFE3E6E6E4E2E6E7E3 -E2E3E3E7E5E5E3E5E0E6E5E4E3E7E7E6E4E3E4E6E4E4E5E7EAEAE9E6E5E5E4E3E7E6E3E5E7 -E2E0E2E3E0E0DBD3B76F483429292C27272929262626222224272222221D1D261D1F222224 -27272F373E393B444B4C575B4C5A5360717792A6B5BFBD989B9AB4AD86718E989FC1DBE0E1 -E0DCCCBBA5C2CBCBD3DCDFE5E7E2E5E6E9ECEFECE7E9E5E4ECE7E6E7E9E6E9E9E5E7E6E6E2 -E5E7E3E3E6E1E5E6E4E7E7E6E9E9E4E5E8EAE7E5EAE7E7E6E5E9EBE8E8E8EDF0EFEEECEAEC -EDE9EDEFE9EAEAE8EAECEAE8EDEDEAEBECEDEAEFEFEBE9EDEFEEEAEFEBEBEFF0EBECF2EFED -EFEDEAEC -CDCDD1D1D0D2D4D6D4D4D5D6D3D4D5D5D4D5D0CDC2C0C9C8CBC57C4F493E3A393E3B3C3945 -4B4F4C484850546C63978EA9A6AAB2AAB4A297A38690A59B9C908967779592AEABBFBABDB3 -BBB5B0BAAEB9B9B7B7B9BDB0C8BDBBB7BBB5C3C595A6C0BFC0C2C4BDC0C0C2BFC2C4BFC8C1 -C2C0BFC1BFC0BDBFBCB4B5A24B32292C2C272C27272C22242422222729222222222222221F -2226292F344046495A555C6340393E48657AB4C5C0CCD5D2D1D7DCDCD9DCDBD4D4D4D4E2E8 -EBEBE3E0DFE5E5D1CFC5C5C4D5DCE2E9E9E5E6E6E3E5E5E3E7EAE5E7E9E7EAEAE9E7EAE7E2 -E8EBE5E5E6E3E7E9E9E8E8E9ECEAE7EAEDECE8E7E7E9E9E6EAECEDEBEDEEEDF0EDEFEDE9EF -F0E9EFEFEAEEEDECEAEFECEAECEFEDEDEFEDEAECF0F0F0F1F2F2EFEDEDEEF1F1EFF1F1EDEF -F0EEEEF3 -CECED1D0D0D4D4D4D5D3D4CAA28D7C765C555146404448505751484840494B4F4849423945 -4444404444463C4946494B4448454B454240454B3E3E3C3E41403E423C4044444644424642 -4D454048483C453E4145424D48424545454045464C40444C4445454149454945484C504C4B -494842484645394040424142402F32272E2729272426261F22292926292424242422242624 -222224272C32323A454B4232394B91B9DADBE1E6E6E3E9E5E2E6E9EAE5EAE7E6EAE9E7E8EC -EBEBE1E5E9EDF0E9EDE7D3CABFB088C3BAA2B7BAB0BAC7C1C8CBCFD4D1D9DAD9D5D1D4D5D5 -D9DCD9D9D9D9E0D9DEE1DEE4E9E6E5EAEAE6E6DEDEDBD6DBDEDFE9E9EDECEDEFECEDE5E6EC -EEEEEEEDE7ECF0ECE8EDEEECECEDECEAEFEEEBECF1F1F2F3F3F2F2EDEEF1F2F0EEF3F4F0EF -F3F0EDF2 -CFCFD0CFD1D4D0D4D5D3D2983B3734343232423B3A4C485C6A5C6063576A836C8D676C5865 -5A6055575A4C5157535557545453544857504B494B44454C4F54505049494C4D4C4C4B4C49 -4B4B484F4F4B4F484F494F5046494D4B4D4C4C514F4942484145484048424144484C4D4645 -494649514D41483B3E37393C3131272F3A3B3432322E2927292226292724242C2626262C2F -2F2426262C272627272C2C2CA2BAC0D3DDE0DFE5E5DCE3DED8DCE2E6E7E8E7E8E7E8E8E7ED -EEEBE3E6EAEAF0EDEDECDFDCD5BFB0AD9AC0CDD4CABFCBB0C0A189989AB49CA6918683776A -6C86655B5A60615063919797B0BAC1C3C4ADA6A1B29A959B91BDC4CACABBC7C7CDC4C8D0D4 -D4D7D9DAD5D8DCDDDCDCE0E1E5E6EBECECEDECEAEDF0F1F2F1F3F4F2EEEFF0EFEFF3F4F1F1 -F3F2F0EF -CFD0D0D1D2D3D1D4D4D4D3AB51393231322F322F323A414C535988797A769798BAAB9A6C6C -547C675B6D675C46445A555458866576897A604F6C5B6C5A6F67674C5A676A605C576A6D79 -61716C635A6D617765615B53515C585C54495B5350585551494F4C424D4F49494C494D514F -51454C4B46424644464C544541443A34403732342F403A37323429262626262926271D272E -2F26312224222626262626277EB4BFBFD1D5D9D9D6CBC7C3B3B5BBE0E2E5E7EBE1E6E6E9EA -EEEADFE7E9DEEEEFEFECD8D4CDC9C9BDB7A9BDCDCCE3E9E7E2DFE6E4DCDDDBD0D9CBD1CFC2 -9FA99F71655959485C766F6753576A7C717E767189797C9B7A89909B7C8290AE855958919B -9091987A95858598A9AE88828E92A3D9E8ECF0EFF0F1F1F3F1EFF0F3EFF1F2F1F1F3F5F3F3 -F4F4F5F3 -CFD0D1D2D2D4D3D5D5D3D4C8B54834373B3C42516F71727E9C9CB7BDBAB3C5B7BDC4868860 -5A6D6A5A55604C425977727182A3907C97A5957E67718397727C86837A90A2A3908D88838D -838D7CA3A29B90857C7C6D6D8E77837A92677E83635C6C5150555750514D515A555067484B -4D6A4C544C44484444585554464C5348483C4240393B4144483E403E4B453A2C2422222627 -2422241F1F222422272624274D718379ADA9929BA6959089635561C7D3D9E1DED7E2DFDBD5 -E0DDDBDADFD9E6E9EDEFCDCEC7CDBFC7C7CDD3CFCDCABDAB9097AABDC5C8D4D5DEE5E9EBEA -EAE9E9E5DF916D5B7C9195768286898295908D77908E909B97A69BA3959CA2C089393972A5 -A5AB90A3A389A3A5BDB9AB9091A28D90C3E3EAEDF0F2F2F1F3F2F2F3F3F3F3F1F3F4F5F5F5 -F3F6F4F7 -CECDD0D2D4D3D4D4D1D0CBA3B0888989988E8876909892929798B4B3ABB0BFC2B0BC7A6F6D -775A535863605A5461615854585150514D55586565618E909A86868289A1A9BAA99A979FA1 -9A9CB29A909891B29790928D9BB2B3ADB5857995767772656C72595B5B5165766589615C54 -4F5B5857514C594B4146554C5B54515A7150534946414B4C4D484C4C72978E8E584B3A392F -292F2927291F1F22261F2727424C535A59716F6A67596158544F515C6A92ADA6B4BAC1BA86 -C3C19A91798DD3E4E2E7CEDAD3CDC7B7C7CFCDE2DEE5D7C8CC9A5B423A3C443C4958677AA3 -ADC4D0D5DAB5718EAAB4AD82AEBAAB90ABA1BFB3C0BFC8B4CEC0D0D0C9C0CAD4C8BABCC5D1 -D2C3C4CEC8BFC1C2C9E0D38E5C9A6151B7C0C9D8E9EFF0F0F3F1F0F1F3F3F3F3F3F3F3F6F4 -F3F3F4F3 -CCD0D0D1D2D1D2D0C4976C575357463A393A3732312F323B3B3E464945494B4B4549464546 -4D4D544954676779716D7A83889CA5A2AAAAA1868889959F98A9978986B2B7BFB09AA2B2A5 -B591C1A382ADB9A6C0BDB5BFB2B7B9A5B38D8D86AE9A768E7A957A79887E7686909A715B76 -6C63615B57515A4D4C4D576A6F6160717661554B4B55584D45484F497EB7A6ADAEA695829A -6F61453C31292E2C272724222E2E414D506D7288887C83717E8D8688985159AEC7B5BCB4B3 -B2CDBABDC0C4D0CDD4D286A2B39F88BDBFC3C7D3D4DFD5CCD2C5C3897A49413A403B3E4445 -464D5989ADC4AEB2A9CCBFC0B9C9BFC1D2D6CCC4D2D1CECED1D1D6D9CDC9D1DFDEE3E2D9DF -D6D2DCDBD9DBDFDBD7EBD56F344C324BB78E92B0BDEAEEF1F1F3F2F3F3F3F3F2F3F3F3F4F4 -F3F4F3F1 -CED0CFD0D2D0D1D2D2CAC9BFA16F5045403A3132312F31343B3A3B372F323434372E2F2C29 -292F292E322F2C2E2C2E313131373B3C4B575B6563778686989B838EA1B2B7C8B7B9C1C4B7 -C2A3B0B7C4B3B4BFB0B2ADA1B5BBC1B2A9A397A19C918386AA8995A388AD7E9A919897718D -8D8D776D59484C4C596A6761796D6C8583797C6C505B576161674C4D7AA9A198AE919FA3BD -BDA3A9B2835A553A2F34342729242C324042485B516A5A5A6359675B65796C8D917AA3AEA1 -97B2858EAE859FA19CA55C5B445146637C838898A1BDB7BFC8CDCDC5D0BFC3B7C1C9C8CBCD -D1D9D5DDDEDBC5C7C0C5BDC4C9D0CDD1DED5CFD5DBDEDADCDBDAE0E0D9DADDE1E2DFE6E3E2 -E0DEE5E8E7E6E7E6DEECE1853E594254B55C5095B5C7E6F1F1F3F3F3F2F3F3F3F4F2F3F4F3 -F2F4F0EE -CDCFD0D0D1D1D1D1D0CBC7C5CAC7BFBF9B5A3A3C39342F2F373434322C2F3132322F2E2C29 -2729292E2E272E31292E2C292726292E2E2C2F2F2E2F2F373C406592B7B3B9B9BBA2A3C2BA -BAB0A5C3BCBFA2AA9897ABB3B4BCC4BBA5BCA69C919777866D919F9185978D888298AB979F -AAB0A14D312E2C32556F898685A195B5A388B090577C82717C606A588E989BAE9A8EA59AB5 -A2A9ABB7AB8598895B604F3A2C272224292C2C3B313141484948494C557E91656A63828265 -6C515A5A59575B576A5953583A3B3E5A86A5B4C0C9C7CFCDD3D9DEE2D9DBE0DDD4DDDEDCE1 -E5E9E9ECECEDE3CBCB8241467ECDD9CCD09292DED1A1BF6C6C88D4E8E3E1A179839BDFC3B0 -C0DAD6BFC1CAE9E3C9CEDEE0C2B4ADC9E0DAC7C3D7B58DE2F0F3F0F1F1F1F5F2F3F3F3F4F6 -F3F1EEEF -CCD0D0CFCECECDA37EB08DABB2C5C4A2C49A4B485349372F2F2C29272F292E2C2C29292C27 -272C272C2E2C2E2E2C2727292C26292C2E2C2F312F3C343A3E414571BABAC5BF92987CADAE -B3B2B3C092A6A97A867EA28D97A5AAA28EB7866D8683677A897A676A6571919572A2BD95A1 -A18D572C27454B26294C9A868395B0AEB49BA2955C72916F867272606797638386A67E82A1 -9FA1A29C898267777179656A5045342C2626242C27313134323A393445413B40403B37403B -423C4240373A414442373437345572BAD0D7D7D0D7D7D7D4D5D8DBE0E0DEE2DFE0E1DEDCDE -E0E1E0E5EBEDECC4AD3A638857C7CDD0CB4C4BDBC55CA554A249AEE7E3D84F578289D25061 -5967A93A6145C58D4C515AC5455059ADECEDEDEFEFCF98A1E0EDEBF0F2F1F0EDF1F2F2F4F3 -F1F0EFED -C9CCCDCBCDCFCB8D4F867CB5BDB7BAA6C0A66A67544D453431342E2E3431343137312E2726 -2927262729292927262727272E26272F2F31323C343B42484F53586CA3BAC1A59C86899BA5 -B2B391A2839AA986918691A9AB8E869C9B827E716765616A6C79656C7260597A79AEB74F53 -4F4829292C91772F27314F494F4C575A6D5A61584857504D54554946586C5B76836F775C61 -76826F657976795B505A535358615A494845312724262E24262E2E262C272C2927312E2C2E -2E292F2F31312F2C262726272F92A5B4C4D1CECCCBCDD0D4D0C4C5D4D9DCDCCCDED9DEDAD9 -D9D8DEDDDFE7EAC1973C4D7290C3C2C0B4323BCEBD4C9853CA6F92E4E3DA4C97D2E5D954D5 -C5509A54D06C9165BDE0AEC549D7DFE2EDEAEDF0E9E6E3CEBCCAE7ECF1EFECEDEFF0F3F1EE -EFEFEBEC -C9CACBCACFD0CA8648585AA9B9BBA19B857165604B3E423B393B3C3C37323739343B374831 -32322F2E2E2F312C2C31313131373C3C393B3B4649545C5B6D61728595A59A83AB97868E91 -7E766D765554586765656D7E9871677C9F86867E6D6A655C656F606F7959617191889A4C5B -59553A7AA5CACB9C6C324F534B3A636F676D4C45413C3E423C443C44535C57575B5C4C485A -6A5A5565575450584D51504841494439343C3B2927222426222427262C292F27242C2E292F -272C2E292E2926262626261D2249716189A5BAABB08EA9B99748B3C4D2D0D5CFD2C7CAD0BD -C9C5C0CED9DEE9C1A9834B413C9FBFBF853A41ADC4659734393AC9E4E4DE4B374FD3D251DC -CA4C9F3E5341A25BC7E9ECDC3C7198E8F0EDF0DBBBD0E7EAD950AEE3EDEDECEEF3F0F2EFEC -F2F2EFEC -C9C9CBCBCDCDC9B9AB9754596372585C605049424241373C373739373734373A3C3B3C392F -3C3A403B4249512F42373A3A3A3A40494046465A577263716F5C5A7E90AA91575B6C82866C -59597659554B534F59544F5C6063546760868D63675C5B5A5A5959616A6A6F7185908E404B -41442E40A2CCCFA932273E3C42346D95A19C88513E424C4D46504248444F5850554D444148 -41504B4F46454D4F45404045404439312F2426242626261F24241D26272229242626262929 -24292E2E2C2E3231241D1F1C1D373E454D5C6A82885445585C725B677C92B2C1B5A3A9B2B5 -BF9A88A6C7CFD5AB903B7A60329AB3C053272E63AD579855A240D2E6E5E048A9DAE3C946D5 -BA5090597741CD50B2E2DAD041ABC3E4ECE9D37A7983C7E1E2403BABE5EBEAEDEFF1F1EFEC -EFF2EFED -C5C7C9CBCCCDCBCBCDCBC5A95B53443E45413C40404037393C343A343934323A323C324031 -4448454B4D484557535C60615959635B6576606D656D7C6A6A6C79719CA3856C5A77594F58 -49506149574846545150554C5465545C6F6C6160585A535154605B6171556F65676A653B42 -423C26227AC0CE72262C393A39394F4F506365503C4049444B5448414B51554D7661514849 -4B4944584D4245423A453C323A3A3429262422221D242422241F1D221F1F1F272224261F22 -1F241D1C22221F27261D1D1C222E31313A45555C605A585A656D65554054A3A9ABBC9F88A2 -9579868E9BAEA5497E3A3237536060AD415C6350A25C9B59D760BDE6E5E049BCE0E3D5456D -505C8E6CC544CB5553984D9839A2AECBDFC3594F5C76C4E9D73A2C3BB3E4E7EDEEEDF1EFEC -EDF1F0EE -C7C9CCCDCDCDCBCBCDCDCECEC9C9BFB3A397887777594C49443B3B34343734322C343C3737 -3A403C45574F4C4D4C4F576561619782729291A9A3BBB08D9882898D7E827E60495050424B -4D4C42454448465550454D514B4F5751585563595553514C50674F5B6058605A5C7C585760 -6A6F2E296D415B552631594C484B4D5444493B3C46404B3E41494851454853506A65655555 -5549504546463B3A3A3C3E3A39322C2C292626261F262626291D1F1F1F1D22262426272427 -2922262622221F27292E241A22222424292C373B3C2F3C3E4B4048494B4F676C6A7771655C -6158464C544D6079918291AAAAA2919589B4D4D1D4D4D5D0DBC5D5E3E6E6C4D2DCE0DEC28E -88BCA2A1D28EBDBC5B4B91BD493C3C799F6A50494B97DCE2C92F272F48D7E9EAEAEBF1EFE9 -ECEFEDED -CBCACBCDCFCDCECDCECDCECDCDD0D2D1D1D4D3CFD3CDCDCDC7BDB4A99A907A6750504F4D3C -3432323441423A39404B3E46554B766F6F8391929BA6A6A59B9A97B2AAB3A69589857A586F -79675B534C423E454B4949444C514C4D3E324F49506C4C534851546D586360585B5463555B -53583B2E2927272E2446594D4242424B534139344142463E41403C4544494F4460555A6759 -4C42343B454B443E392E393B422E242426222629272229272C242229313241241D1D1F2624 -1D222426272C2C2E3C4239262424241F241D1F29272F262F343737443B464F414B44423A40 -423B32345B676A61927EA19C92919CADB2C0DCDEDDDDDFD3DAD4E1E0DFDADBDBD5D9DBD8DC -D0C5C4D2D7D2D8CED5C9C9C5C3C2C5794840403B5385AEC5C261514B55DAE9ECE9EDF1F1F0 -EFEBEDEF -CBC9CBCECCCECFCED0D0D0CFD1D1D4D1D2D5D4D4D7D5D2D4D7D4D3D1D1D4D4D7D5D1D3D0C7 -C1B49F71554F34323434393A3C3E3A48495855535A6D726C716A88778E88958E90918876A2 -B2929B895C50403C3C4C4667725C5953554648505C635454494D54654D5358616A554F5358 -515C55422C29293C4F4F504D413C41463C3B39373237403B45413C42393C3A3B453C3A424F -48372F343E3E343E322937322C292E2C29262C2727292E2E2F2926221D22262622261F2629 -2229272C2F34292E31323E3C3129312C2724271D1F292624222C322F2C2C272E312E2E2F32 -343E4F60596C7E797E7A65678E8EAEBD98BDCBD7C7C3D3C4C9CDD4D3CDCCD2CAD0DBD9C8CA -BAABB2C5CAC1C5AA8E9A7C90B4B489423E4F425B635454557651424190E8EFF0EBF0F2F3F0 -F1F1F1EF -CBC8CBCFCECECECFCFCFD2D0D3D4D6D4D4D7D6D6D8D8D2D5D8D7D1CFD2D3D5D7D9D9D9DBD4 -D9DAD8D4D5D5CCC9B7A97E584C4137313B3239324941443B413C4945466363635B65617277 -7788918D9B9A82928E979CA3BBBAC0B2BCBDB99FA68979915C5B6079615A6051635A4D5054 -60575A545749575B65514F54403E3C48403E3E37393A3C3B3E3E3B39393A41393234373241 -3C342E2F2F312C34292E2F2F372E2629262929292C2F312F2E272622262622221D1F22292C -292F32272F2F2737373739392F2F343A343B4031312E2729292C2C262F2F2C343440414246 -556085655B5C6C76796A5948657CA5B4A9ADBAB9B5A3B4B4BDB9C7BFBAB4C2C4C3BDC4C9B3 -9A95ADA5B9BFB3A5858288B3BCBDB5B39F9CA6B0B4B29C866D4C4276CFEBF1F3EDEFF2F3F1 -F0F3EFF2 -C9C9CCD1CDCCCFD1D0CED0D1D0D3D4D4D5DAD7D6D8DBD4D9DAD7D3D1D4D7D8D9DBD8DDD9DD -DBDADDDBDBE1E0DEDEDDE0DED9D1C4ADA95567514440413739403C3C394145484542494F49 -495C54546D6F656A765B89989B9BB9AAAEBBB0A3A9AE9FA3A5B297AEC2AB95A2A9A5899F8E -8D9F97A5B5ADA9A69F88AAAEA39F98A9AA9A9AA39CAB9F90869898585054766A5153595448 -403E4245393A44373B34312F2E2C27372E2C24272E31292F2C29292F2E32322E29342E3A34 -342F3432372F3B3B393B3A3137323E3A40393B39423B37403B48544044403B4C4B425B545A -6F585357595450605B72724455716C83A186959298A6828DAA97ADA59590ABBCBAADA3B09F -9291B7AAAEBDBFC3C7C7D4DEDBC4C5C8BBBFCDC5CACAC4C29B6DB5E1EEEDF1F3F1F1F2F4F3 -F0F1F1F1 -CBCCCDCCCFCDCFD1D3D0D1D2D3D4D2D5D7D6D6D8DBD9D5DBD6D8D5D6D5D4D9DAE0DBDEE2DE -DCE2DEDFE0E2E3E0E3E3E3E4E1E1E0DFDA9CD9DBD7C9C3B0917957494041413234343B3E32 -3A3C423E3A2F3C423939516082977E828892A6929B8698A69CA298A39A82897295A3A5A29C -A29B9A829095A1908E7795858E90A19CA388AA9895A69F90636A76594B4B584D5550554F4F -3C4B464044493B423C34323434323A373437343A3E323732313E40453B4042424C46545351 -50534D4F5157585151425A534C4F5A675753656A675A53637776595B5B454945484F515459 -5C504B584F4F534D54515C4B485063595C5B716A5977615B7E799A906F79728D909CB295A5 -C8C8D4D7D9DAD9DBD9C5CBDEDCC2B4BDAEBCC8B7A6A27C887ED6EAEFF1F1F3F2F2F3F3F3F3 -F3F3F2F3 -CDCFCCCCCDCBCECFD0D1D1D4D0D1D5D5D8D5D9D7D7D4D5DBD9D8D7D7D3D9DDDBDBDDDEDDDD -E0E3E0DCE1E6E4E3E6E2E2E6E5E3E2E4E3E0E2E6E6E3E2E2E4E2DFDAD7C09C5A4F4D403E32 -323439372F31313B443E5153679182515C635B6F657179825B71636C766171636C6C6C7E67 -505C6C544B58555B514D494653556D777A7982797779775B51404848324048464244393E41 -3231373E3B2F2F32312F31343131322F32343937393937323E41423B4040344D415348414F -484C484C4D3C53515854606C766C6F85768589A1AEA5A2A6B9B9A5ABA69C584B9CA9AAC3B5 -BD71517C715853494B49423C3449C1585A8897657CA5B4B4B7BFC3C2B7C7C0CBC4D5D6D1D3 -D2D4DEDCD8D5D6CECDCCCAD4C7ADB5B2A18E928D836A6CC1DFEFEFF1F1F1F3F2F2F1F3F1F3 -F4F4F3F1 -CDD0CCCBCCCBC7CDD1D0D1D4CFD4D6D7D5D4D8D9D7D5D7DBDAD6D7D6D7D4DBD8D7DCDAE0E0 -DDE0E1E1E2E3E3E2E6E0E3E3E7E3E6E6E3E3E5E7E6E3E2E6E9E5E4E4E4E5E3DDDBD9D2D3BD -927754513E4239343937373B79D097484141444B444D4D4C514D5146454C555154577E906C -7A596D57515C60676D6D535A584F535A544957514D5349483E342F3B3C40393439342F2F2F -2E2C2E2F2E2F2E312E292F2E2E272C2C373C3A32393B403B3E423B373B3B3A39393C3E313C -4445423C3C2F466372505B6361504850594F4F6F7C7A71607E6F8260484B3B5771838D8979 -7A6A6D63675348594C4F534D42599B61676DB07189B2BFCBD7D1CACDD0C4CBCCCED0D0C7C7 -CBCFD4D2CBCBD3CFC5C4AABDAE9F927A855B59577AC5E5F0F1EFF1F1F1F1F3F1F0F0F1F2F1 -F3F3F3F1 -CACECBC9CBCDC7CDD0D0CED0D3CFABCCD7D5D6D8D7D3D6DBD9D9D9DAD8D7D6D8DBDDDDDCDF -DEDEDEE1E2E5E5E5E1E0DEE1E7E7E7E7E7E7E7E8EAE8E9E6E7DFE3E3DCE0E0E4E3E3DFE5E6 -DFDFDCDED6D1C5C3B2926D465377633B372F3731393B32343C413C393A373C454946595048 -4945424D4449484045464049443B3E4542374042424042423B2F323231262E2E2F292C2C27 -2C262C2C2C2C26242F2C2C2E34312E32312C3239323B40414146404242413C2F2F322F2F2F -2C2F2F31312F3E4F5848545851464451514F4F6560496A605C55504D4F423E444D636D6F7E -616D5A5A60727A835A5B6F6F7289A685A59292464D7A9BBAB3B4A19BA9A3B4C7CAC5C0BAC0 -C4B4B9BA9A9CA6A37E6163776D4D4C53505C8ECDE6EDF1F3F1F3F4F3F1F3F4F3EFEDF1F0ED -EFF2F3F0 -C9CBCDC8CDCEC8CBCDCFD1D5D1D1C4C8D7D7D3D4D5D8D6D9D9D7D6D8D9D9D8D9E0DEDCDCDE -E2DEDFE2E3DCE1E1E1E0D9DDDEE3E5E6E8E7E3E5E5EAE9E6EAE6E5E2E6DDE3E0E3E1E6E2E5 -E7E5E5E6E2E2E2E1E1E2DADCD7C4A69B8D67512F27322C2E2F2E26272E2E312F2F323B3439 -37343739322C3E2E2C2E2F272F292E2E2F2F2C2E342C322F29272E2C2F2C292E272C292424 -271F2426272426272C2F2C31342F2F2E342F31292E2E2C31393734373232272C2F322F2F29 -29272C292C293A393C373B3C463E424840464B4B57414B4D4D504B4C4640414040464D4B4F -5053494B555358514042423C424449484F49404246506A6F656C6D5C72717785B0927E7263 -7E776771575958514F554545444B72B4D3E2ECEFEEEFF1F2F1F3F3F3EFF4F3F4F3F2F3EFED -F1F3F2F3 -CACCCBD0CECDCBC5CBCDD4D1D1CDD2D2D0D5D5D5D6D4D5D9D7DAD6DBD8DCD7D7DCE0DEDBDE -DEDEDEE2E3E3DFDEDBDEDCE4E5E2E2E2E5E6E7E6E3E7E6E8E7E6E9E2E6E3E4E3E1E7E6E2E3 -E4E6E5E5E3E0E3E1E0E5E5E2E5E2E2DFE2DFD4492C46539798638357413E40343B373A3734 -342F342F313C3131312E2E2E2E2E2E2E2C2E27272C2C2C2C2E2727326C606065654C5A5545 -454142544D45494C4C53586079776A5C6A57454C50585C5C5B6A5B4B4D50536072765C5950 -4657546153422C2E2F273127292E343431323A343E37373C3C3E373B343B37343A3A3A3439 -39443B373B3E3E3B31393B342F39403C393A3B313A3B46484D48454D4F514F5458464C483E -4440404041464240445054AAC9DEE8EEECECEFEFF0F0F4F3F0F1EFF0F3F3F3F3F2F2F3EFEB -F3F4EFF0 -C5C9CBCDCDCBC9C9C7C9CED0CBCED0D2D3D2D3D5D5D6D5D5D3D6D1CED5DAD4D7D7DDDCD9D9 -DADCDEDEE3E0DCDCDADADDE5E1E0E0DFE8E6EAE7E7E6E5E4E5DEE0E3E9E8E7E4E1E6E5DEE6 -E5E3E7E6E2E2E7E0DEE5E4DEE6E1DFE0E0E2DC9145BCBDDCE2E2DEDACED1D0C4D2B5D0D0D2 -CDC2C4CBCBCCC7C5CDC2ADC0BDB4ADB3B9BDA39FA9979FA39A9B955A7A767786827C635A61 -616060886F617E85839B76405361515963576A4942718663769F7E586D909AB29CBCB2A69A -95BAB4C5C9583C443C37393E39393934393E3432393E392C34393731322F2F3132312E2E29 -2E342E2E2C312E292727292E312E312C322F2C2C2C2E343239343B3C393732373E342F3237 -37374C6D7C8DAAC8DADDC4E7E7EDEDEDE9E7EAEAEDF3F4F3F3F1F0F0EEF0F2F3EDECF1EEEC -F3EFE9EA -C5C9CCCECDCBC8CDD0CFCDD0CDCACACCD0CED0D3D5D5D3D5D1DAD5D4D1D9D6D8D6DDDDDCDE -DEE0DEDDE0E2DFDEE4E0DEE5E3DCDCE0E5E7E9E7E2E5E3E5E3E2E4E6E5E9E7E0DCE6E2DFE2 -E5E1E5E5DEE4E9E4E1E4E7E2E6E0DCE2E1E0E0DCDADCE0E1E0E0E0E0E1DDDEE3E3E5DCE1E5 -E2D8DBDCDEE0E0E0DFDFDBE0E5E1DCE1DEDDD4DBD2D7DCD8D1D9B7909A635A726A55725351 -676F8D86858291ADA3888D4051404F854842716C4277594B715A5131407AA3B051427C8844 -72793B88CBB0D7D0D4D1CDCEC7CBC5C7C9CDC0C0C5C5C0B0BFBFB7AB91989891859A85798D -888E766C63635153504D505058545353504F4F3C29272626273739535965605B656D98ABC4 -CDBDD7E5E6E2E7EBE3E8E6ECE8EAECE9EDEFECEBECF2F3F1F1ECF0F0ECECF1F1E9EDEFEDEE -F2F3EDE9 -C9C7C9CBCDCBC5CCCEC9C7D1D1CFD0CFCECDD0D5D4D3D1D4D5DAD3D3D7D4D3D9DBDEDFE3E0 -E2DDDDDCDBE0DEE0E3E2DEE1E3DFDBE1E6E0E4E7E6E2E2E8E3E0E3E3E3E9E6E2E3E6E3E0E4 -E7E1E5E6DFE7E9E5E1E7E6E5E6E2E0E3E2E3E2E6E4E1E2E0E5E0DBE2E0DDDBE4E1E3DDDEDC -DDDADADBD9E2E0E2DCDBD5D7E0DEDCE1E2DBD6D1D5D4D3CDDDD5955C797E6D51717E857261 -6D7A8985857686A58376764271483E654C3B497A4C9A884C6C72924F3C7EBDBC533B6CA949 -91923A6AC4BDDCD9DEDAE1DDDEDBDCDFE2E3E2D9DEE4E1E2E3DEDCE4E0E2E2E1E6E2E2DEE1 -D9E2E0E0DEE4DEDCDEDAD9DEDCE1DDDDDFDDDAD2973729273B8ECEDFE3E7E3DBE0E5E3E1E3 -E9E4E6EBE9E5EAEAE2ECEEEDE9E9ECEAEBEFEEECF1EEF2F3F3F0EEEEEAEAF2F0E7F1F2EDED -F1F2EEEC -C3C1C7C8C9CCC9CACAC7CACED1CFCCCECFCFD3D2D4D1D5CDD3DAD1CED5D0D1D9D9DADCE0DE -E0DEDBD8DCDCDBDEE3E0DFE0E5E1DEE2E5E4E0E2E5E5E3E6DDDCE0DFE2E0E3E2E5E8E6E5E7 -E3E0E6E7E2E2EAE7DEE3E5E6DCE0E5E5E2E2E6E7E7E2E0DFE5E3E5E4E2E3E0E3E2E2DCE3E2 -D8DEDEE0E0DCDCE2DBDCDED8DCE2D8D7D9D9D2CBD8D7D7DBDDCC7159586A6D6D6C7E8D887E -6D769A7A88A1919286959A6083775B82855B61777CAE986A9C97A9657292AEC7854C839144 -929C498DCAB2DEE3D7D9DFDBD7DCDCE3E1E0D7DBDBDADEDEE2DBDEDCD5E2E2EAE1D9E5DBE6 -E2E2DEE2E3E4E1E2E5E2E0E2DFE0DBE2E7E4E3E6DFCEC7CFD4DDE3E9E7E5E7E4E7EAE7E0E4 -EAE5E3E9EAE5E9E9E4ECEDEBEAEAECE9EDEFEDEAEDEDF1EFF1F2F0EFEAEBF0EEEFF3F0ECEF -F0EFEEEB -C0C4C7C9C9C9C7CECFC9CED1CDCDCECED1D1D1D1D2D1D6D4D8D8D4D5D4D3D1DBD7D7DDE0E1 -DBDEDBDDE0DFDCDEE2E2E0DEE3E5DFE6E6E6E5E4E4E5E3E3E5E0E1E5E4E5E4E0E1E6E2E4E7 -E3DDE5E0E2E5E9E3DEE7E8E3DEE2E5E4DFE0E7E7EBE4E2E2E4E9DEE1E5E1DBE3E6E3DEE2E3 -DEDEDEE7E3E3E5E3DEDAD9DDE0E0DBD4D7E0D9D7DADCD7DCD5D0635557505B5A4F60636172 -5B5C797E79726561658583766A6A86768D826A828D8D827E8E8DA9B09C9C89B3B07A9BB3AE -B9C4B9C9C4B9D7E3DDD8DBDBDEE2E2DCE5E2D9DCE5E3E5E9E7E3D8E2E5E3E1E6E4DEEAE0E3 -E2DBDAE3E2E2E5E6E7E2E3E6E7E2E2E3E1E5E6E9E5E5E6E7E2E3E5E9E9E6E6E5EAECEAE3EB -EBE7E3EBEAE5ECECE3E9ECEEEAF0EEECEDF0F0EBEDF1F4F0F1EFEDEDECEEF1F0EDF1F3EDED -F0EFEFEC -C7C7C9CBCDCBCACECCCCCDD0CED1CED1D4D4D1D1D1D5D7D8D8D2D6D1D5DAD8DCDCD9DDDEDE -DFDEE0E1E0E0DDDDE0E3E2DEE2E5E1E0E4E5E3E7E8E6E7E5E4E2E3E3E4E4E4E5E1E6E2E7E6 -DEDEE2E2E7E6E9E3E4E5E9E6E1E3E7E6E3E6E8E2E9E7E2DEE0E8E4E3E6DEDCE2E2E0E5E8E3 -E1DCE2E3E5E1E2E7E3DDE2DFDBDCDED7DDDDE3DCD8DDDEDBD9DBB29177868D8E919CA1AEAD -9F987679827682897A6A67606A5C584B45322F312F3934537E82767C7A898290898D92826C -57615889AEC0E2E1E2E5DEE5E2E4DFDEE3E0DCDFDBE3E5E9E1E4E0E4E5E8E6E4DDE4E5E1E7 -E3E6E3E1E6E6E7E7EBECE6E9E9E7EAE6E1E3E6E8E6E6E3E7E2E2E7EDECE9E7E9EEEDEAE9E8 -ECE9EAEDEDECECF1EEECEDEFEFF3F2EFEDEFEDE9EFF3F6F2ECEFEFEFEFF1EEEBEEF2F3EEEF -F0EFEDEF -C9C9C5CBCDCACCCED3D3D1D2D5D5D1CFD5D7D4D5DAD5D9D5D7D7D8D6D7D9DADCD9D9DADBE0 -DCE0E3DEDDDFDFDCDFE1E1E7E3E2E0E3E2E2E0E4E8EAE7E6E6E6E5E7E5E7E8E8E5E7E5E9E5 -E4E0E5E5E7E7E2E8DEE9E6E5E3E3E7E3E2E6E7E9E5EAE7DFE0E9E8E3E1E0E3E5E6E9E8E5E3 -E0DCE2E5E6E1E0E2E3E2E5E2DFDFE3DCDDE0D5D8D5D9DCE0DEDBDCD4DBDCD9DED6E5DCDEE0 -D9DEDCE2E6D9DEE9E4D9BF659A5A55322E272727313246A3D5E0E2D0DFDEE0E5E7DDDCD5D6 -D1D2D1DADADDE6DEE2E9E5EADDE4E7E0E5E2E5E2DEE6E5EAE6E6DFE6E0E3E5E3DEE0E7E7EA -E6E5E4E3E9E6E8E6EAEDE7E7EBE9EAE6E9E9EAEAECECE5ECE9E7E8EAE9E7EAEAEDECF0EFEA -EDEFF0EFEDF1F1F1F0EFEEF1F3F3F4F3EEF1F1ECF0F3F4F1EFF2F0EEF3F4F3F3F4F4F3F1F3 -F1EDF1F1 -C8CBC9CBCDCBCBCDD3CDD0D2D4CFCFCED5D3D4D5D9D7D6D4D5D2D1D2D0DDD6DADCD8DBE0E2 -DBE2E4E0DCE1E2E4E2E0E5E3E0DCE0DEDEE6E4E2E4E9E5E5E7E5E2E7E7E9E7E7E2E4E3E8E5 -E0E3E6E4E6E6EBE6E0DEE3E2E5E3E5E8E6E8E9E7E3E9E6E7E2E9E5E1DBDFE5E0E4E5E9E7E7 -E2DCE0E4E5E4E7E3E5E6E7E3DCE0DFDDDEE4DBD5DAD5E0D7E1E2DBDBE1DBCCDAE0DEDEDFE2 -DBDBE5EAE8D4E7ECE6E0A22E2C2F2E2727222C324F95C3CDD5E6E3DFE5E6E7E5E5DEE7D5DA -E0DDD7E3D5D4D7DBDBE6E7E5E6DBDDDFEBE5E5DFD4E8E0E9E7E7E3E9E3E0E3E7E7E6E9E9E9 -E7E6E2E7EAE7E9E3EAEDECE7EAEEE9E3EAEDE7EAEFECE9EBEBE7E7ECEAE9EDEDEDEBF0EFEF -EDF3F4F1EDEFEFEFF2F2EFEEF1F2F4F3EFEFEFEAEDF2F2F2EFF3F2F1F3F5F5F7F6F4F1F1F3 -F2F0F2F3 -C7CAC9CBCDCDCDD1D1D1D3D4D4CFCDD4D7D2D6D7DBD7D7D8D6D9D7D7D7D9D7DCDCDDDEE3E5 -E2E4E4E0E0E3E6E4E5E3E0E4E5E3E2E6E5E9EDE6E3E6E7E7EAE7E9E6E5E8E5E4E7E2E3E8E8 -E5E5E7E7E7E9E9E7E9E4E4E5E8E6DEE3E7EAECE7EAECE7E3E2E6E6E8E2E0E7E4DFE7E7E3E6 -E1E2E2E2DDDEE9E7E4E3E6E9DADAD8E5DEE1DCDFE0E0DDDEE3E6E2E3E0E0D6DFDCE5EAE3EE -E3E0E0DCD7E2EAECECE2C05059716042272629292E2E42B9D5E6E5D7E6E3E2E5E4DCDFEBE3 -DCE2D8DDD6E0E3D9E2DCE2E3E5DFE2DEE5E3E7E6E7E6E4EAE7E3E5E7EAE9E6E8EBEDE9EAEB -E8EAE3E5E9E6EBE9ECE9E7EAE6EDEBEBEEEFEAECEAEBEFEDEBEAE8EDE9EAECEFF0EDEEF1F2 -F0F4F5F0F0F1F0F0F6F4F2EFF3F4F4F6F3EFECECF0F1F3F3F3F5F3F3F3F5F5F6F7F4F4F3F3 -F5F4F4F6 -C7CDCCCBCDCDD0CED0D2D0D4D5D4D1D7D7D7D8D9D9D7D8DBD9DBD9DADCDEDCD7DEE3E3E2E5 -E5E2E3E1E5E3E6E5E6E4E5E7E6E7E7E5E5E7E7E7E6E8E5E8EAEAE9E8EEEAE7E7EBE7E9ECEB -E8E4E5EAE9E9E8E9EAECEAEAECECECEEEAECEAE8E9E7EAE6E5E4E7EBEAEAE3E6E1E5E7E6E6 -E3E5E5EAE4E3E0E5E5E6E3E2E4E6E4E5E1E2E2E1E5E3E2E3E2E2E2E7EAE7E9E5DCE0EAEAE9 -E5E7F2ECEDF1EFEAE7E4DCD5DED9D8D1BC89AEB4BAB7BFDEE0E2F0EFEAE3E5DFE5E6E9EFE8 -E0E4E3E2E0E2E0E5DADDE1DBDBE0E3E7E6ECE6E6E7E5E2E8EFE5E6E9EAEAE8E9ECEEEEECED -ECEFEFEDE4EAEDECEFEEEDEDEEEEEDEFEEECE8EEF1F0F2EEEFEFEEF0F0F1F1F0F3F3F1F0F1 -EFF3F6F1F3F3F3F3F3F4F6F5F3F5F6F6F4F3F3F2F2F4F6F6F6F7F6F6F4F6F6F6F7F6F7F7F6 -F7F7F6F7 -C5C5C7C5CCCFCDD1D1D5D2D3D1D5D5D8D5D6D6D4DBD6D8DBD4D9DDDBDCE3E0DEE0E3E3E2E5 -E5E5E3E5E2E3E7E5E2EAE7E8E9E9EAE9E7E9E9E5E3ECE6E5E5E8E9E4E9E6E9E7E8E9EAEAEA -E5EAE7ECEDECE7E8E7EBEAE9EAECEDECECEDE7EBE6EBEAE8E9E5E8ECECEAE8EAE6E7E8E6E5 -E2E5E1EAE6E6E7E5E3E9E9DEE5E4E0E0E7E2DCE1E5E2DCE3DEE9E9E5E5E6E7E7E1E9DDE9DF -E5EAE6EFEBEFF1EEEDE3D8D9DEDDDEDEDBD3DBE0E0E5E6E9E8E5ECF1F0ECE9E3E6E5ECE6E5 -EDE8E0E8E7E6E9E2DDE0E2DDE5E9EAE8E9EAE8EDE7ECE5EAEDE9E2EAECECECE7EBECEDE9E5 -EBEEEFE7E9EAECECEDEDEDEDEFECEEEFEFECEDEEEFF0F0F0EFF0EEEFF1F0EFEDF0F3EFF1F0 -F1F3F4F1F3F3F4F3F4F4F4F6F5F6F4F5F4F5F4F3F6F5F4F6F6F7F6F7F6F7F8F6F6F6F7F7F7 -F8F7F7F6 -CBC9CCCCCED0D3D2D4D4D2D1D4D7D4D5D8DADBDBDBD9DCDBD9DADEDDDFE2E1E0E4E5E4E0E4 -E6E7E7E5E5E7E6E5E6E7E9EAEAE9EAEAEAE9E4E2E2E6E9EAEAE8E7E6E7E5EBEAEAE5E9EBEA -EBEAEBEFEDEFEDEAEAEFEEEDEAEAEAECEAECEAE9ECEAE8EAEDEEEAECEDE9E6EAEAEAE9EEEE -E7E8E7E9EBEBE6E7E6E6E9E7EAE9E6E2E7E5DEE9E5E4E3E0D7E4E6E2F0EBEEEAE7DFEAE6E7 -EDEFEAF0EFE7E5E3EBE5ABA1B9B4A9957E798290AABBC5DDE5E9E9EBEAECEDF1EAEAEDE3E3 -E3E7E0EAE7E1E3DCE3E4E5E2E3E9EDEAECEBE8E3ECECEDECECEAEAE8EBECE9DFDEDDE2E1E5 -EDEDE8EDEBE8EEEAEAEDEFEDEEEDEDEEEFF0EFEFEFEDEDF1EEF0EDEDF1F1F1EEEFF2F3F3F3 -F1F1F3F1F2F3F1F1F3F4F4F4F4F4F4F4F4F4F4F5F4F5F6F7F5F7F6F5F6F6F6F7F6F6F5F5F6 -F7F8F6F6 -CBCCD0CDD1D1D1D3D3D2D1D4D5D6D0D8DBDAD7DBDBD9DCDBDBDEDFE1E0E3E2E2E6E5E6E3E6 -E6E6E7E5E4EAE6E5E7E4E9EAEBEAECEDE9E6E7E6E9E9EBEFEAE7EBEDE8EBECEBECE9E8EAEA -EAE9E9EFEEEDEEECE9F0EFECEAECEAECECEDEEEEE9E7E7EBEFEBE7EDEBE9E4E6ECEAE9EAEC -E7E7E6E6E8E3DDE8EAEBE7EFECEEDEE2E5E5E6E6E8E6E3E4E6DEDADCE9E7EBE9E8DDDBE5D7 -ECE7E5EDF3F1E6E4EADC8539403B37312F2F2E2F323954CBE5EAE5ECE6E3EFEDEBECEDDADF -E9E6EBEAEBE2DDE2E9E3DAE5E1E3E7E7EDEDE9E9E9E2EAE3EAE6EAEAEAEDE0E0ECE7E5E7EC -E7EBEEF0EAEDEDEDE9EDEDEDF0EFEFEDEDF0EFECEFF0EFEDF0F1E6EAECEFF1F3F4F3F1EEF2 -F3F3F3F4F2F0F2F2F3F4F4F4F3F4F4F5F5F4F3F3F5F6F5F7F6F6F6F6F5F5F6F6F7F4F4F3F0 -F3F6F7F8 -C9CCD0CED1D1D0D3D5D4D3D5D5D7D7D8DCDCDBDBD9DCDCDBDEE1DFDCDFE0E3E2E5E3E6E6E5 -E5E4E7E8E6E9EAE7E7E5EAE8E9EBEAECEBEAEFECEBECEEECEBEAEDEFE1EAEDECECEDEAECEA -E9ECECEDEAEFEDEDEDEDECEDEEEDEDECECEFECEBEAE8E9ECEBE7E9EEECEFEAE9ECE7E9EAEA -E8EAE7E8E6E7E3EAEBECE8E2E9E7E6DFE9E2DDE2DBE0E1E3DEE2D8E1DCE5EDE7DBEEE2E0DE -E2E3ECECEAECEBE8EAE1653B97764031312F2F31344C86DBE7E8E1E7E0DEE4EDEDEAEFECE9 -E6E3E9DAE6E6DCDBE4E5E4E9EAE8ECE3E7E3E6ECECEAEAE5E9EDEAE9EDECE3E5ECE7E7E2EA -E6E9ECEBEBEEEAE8ECEDEAE9ECEFECECEAEAEFEDEFEFF1F0EFEAE9EBEEF2F1F0F3F3F1F1F2 -F3F3F3F3EFF0F3F2F1F4F3F5F4F4F4F4F4F4F3F6F6F6F6F5F4F6F5F7F4F3F5F6F6F4F6F0EF -F4F4F4F4 -CBCDD0CDD0D2D4D1D2D4D4D6D5D8D7D8D9DCDADDDBD9DEDFDCDDE0E0E0DEE0DEE3E1E2E5E5 -E5E7E6E6E6E5EAE9E8EAE9E6EAE7EAE9EAEAEDECEAEDEFEBEDEAECEBE5EBEBEBEAEAEBE9EC -ECECEDEDEAEDEDEDECEFEFECECECECEDECF0ECE9EDECEEEDEAECEEECECEDEFE9EAECECE7E7 -DEE9EAE3E3E5E7EAE8E7E7E6E9E3E3E3DEDCDFE5E5E3E5E7E0E5E2E9E2E3E2E5DEDCDEE6D9 -E2EAECE2E6DAE0DFE6E2674B727C4D3A3937393C4D5792D5DFE0E5E8E6E8E5E4E7EBE7E9E8 -EAE9EAE5E2E0E7E2DBE6E2E9E9EBE6E9E6E9E7E8E8E5ECE5E4EEEAE2EAEBE0E2E9E9E7E5EB -EAEAECEAEAEAE6EAEEEDEAEAECEEEBEBECE7EEECEBEEEFF1ECEAEDEDF1F0EEF0F0F3F1EBF0 -F0F2F4F3F0F3F3F0EFF0F0F1F3F4F3F3F2F4F4F4F4F4F4F5F4F4F3F3F4F4F5F5F3F4F4F0EE -F3F4F3F3 -CDCBCED0D2D3D4D5D5D5D5D7D8D6D5D6D9DBDCDEDCDEDCDDDED8E1DEDFDFDFE0E2E2E6E4E5 -E7E4E6E6E7E7E9E9EBEAEDEBE4DFE7E6E6E9E7E9ECEBECE6EAEAEAECEBEAECEAE7EAEDEBEF -EDEDECEFEBEEEDEDE9EEECEEECEFEFEBE9ECECE7EAEAECEAE7E6E9E9E7E6E7E3E8E7EAE5E8 -E2E9E2E6E7E1E0E2E5E5E2E7E7E5E5E0E1E6E6E1DFD9E0E5E2E6E6E5E9EADCE6DEE7E6DEDC -D7DEE4E8E0E2DCDEE3E2CDC8DBDBD9D5D1CACAD0CFC5D0D7DEE0E8F0EDE0E2E3EBDEE1E7E9 -EFE8DEE2E3E3E5E6E0E4E3E0E2E8E6E8EAE8EBEADEE6E7E3E5E9ECE6EAE8E1E2E7EAE7E7EA -EAEBECEAE6E3E3ECEDE9E6DFE6EDECEAEAE7EBECEBEAECEEE9E9EDEAEFE7E8EAF0F0EDECEC -EEEDF0F1EDEFF2F0EDECE9EBF3F5F4F0EFF0F1F0F0F0F4F6F3F3F1F1F1F4F4F4F2F0F1EFEF -F3F0EFEF -CCCDCDD0D1D2D4D5D6D7D7D7D7D7D5D6DADBDCDDDFDCDBDBDDDCDEDFDEDCDFDEE2E4E5E1E6 -E6E7E7E6E6E7EAEAE9E8EBE9E1E3E5E5E6E7E6E7ECEAE8E3E7EAEAEDEBE9EBEAE7ECECEEED -EDEDEEF0ECEDECEFECEFEDEDEDE9E9EFEAECE8E7E6E3EAEEE9E5ECECE9E6EAE6E7E8E9EBE4 -E6E7E0E0E6E6E1E5E4DFE0E0DFEAE7E6E6E0E2E2DFE2E3E3E0ECE2E8EAE5E6E2D9D7D9E1DB -DCDCE2DEE0DBE5E6E2E9DB615786B9A354455392884B455CBDDEE6E0E9E5DEE1F1E6E1E3EC -DEE8E5E0DCE3F0E3E5E7DFD9DEE1E3E7EAE5E6EDE3E7E7E9E7EAE8E5E3E7E5E7E5E9E4E7E7 -E8EBE9E9E8EAE6EBEAE5EAEAE6E7EAEAECEBE9ECEDF0EBEDE8E8E7E9EFEFE9E8F1EFE9E9F0 -EBEAF0F2EAEDF0EEEFF1EDE9EDF2EEEDF1F1EDEDF2F1F3F4F3EEF1F3EDF0F4F4EDF3F3EFEF -F3F3F1ED -CDCECFCED0CED4D4D5D7D7D7D7D6D6D9DBDDDCD8DEDED9DBDCDDDCDCDBE0E0DFE0E3E6E3E7 -E5E1E5E7E7E9E8E8EAE9E9E9E7E6EAE9E6E6EDECEDE9E7ECEAEAE9EFEAE9EAEAE8E9EBEDEE -EDECEFF0EAEDECEDECF0EFEEEBF0EDECEDECEDEBE8E9ECEDEBE8EFEDEAE7EAE5E7EBEDE7E3 -E7E7E3E3E7E9E0E9E6E0E3E5E3E8E6E8E6DDE2E3E5E4E6E3E6EADCE2E5E7E1E8E2D9E1EFE9 -E7E7DFDEE5DDE5E6E3E9DC5A515C857E58535467676F90AED5DFE8DFDCEAEAE1DFE7EDE2E6 -E5ECE4DBE0DEE0E3E0DDDBD9E1E0E4EAE7EEEDE9E2E8EDEBE8E3E9E5E7E7E8E1E5E6E2E7E7 -ECEBE7E5E7E9E5EAE8EAEDEDE9E5E7EDEDEBE9ECEDEDEAEEEFEAE7E5EFECEAEAF0EBE8E9F0 -ECE9F0F0EBEEEFEEEFF1EEEBEBEFEAF0F3F3EDEDF2F3F3F4F3F0EFF2EFEDF3F1ECF1F3F1F0 -F2F4F1F0 -CDCDCCCDCFCDD1D2D5D7D9D8D5D5D7D7D7DADBDCDEDBD9DCDDDCDDDEDCE1E2E2DFE3E1E6E6 -E6E3E3E3EAEAEAEBE9EAEAE9E9EBE9EAEAECEDECEDE9E9ECEBE9ECECE9EAF0EDE8E8E9EEED -EEE9ECECECECEEECF0F0EDF0ECECECEAEAE7EBECE6EAE9EBE9E5EDEAE6E6E9E5E4ECE8EBE5 -E8E9E3E2E6E7E2E4E3E5E6E9E2E7ECE9E4E2DDE2EAE6E5E6E5E3E5E4E2E3E6E4E0D0D9E8E6 -ECE9DBD7E2E5E3DDDEE2DCC0D6D6DEE0DFD6DED7D4E0E1EAE7E2DFE2DBE4E7E3E0E9E9E3E6 -E2EFEDE2DBE3E6E6E6DFE5E4E6E4E3E2E6E3ECE7DEE7ECE9E6E6E5E3E9E1E5E6E3E4E3E9ED -ECE9E7E6EBE6E3ECF0EDE6E7E5DFE3EAE7E3E6E9EDEAEAEEEDEDECE8ECEDEBE7EAEEE8EAEC -EDEAEFEFEBEBEEEDEDF0EEEDEDF0EBF0F3EFEFEEF1F1EFEFEFF1F3F3EFECF0EFEDF0F0EDEF -F1EDEDF0 -CED0CFD0D1D0D3D4D7D7D7D7D8D6D7D8D7D9DEDEDEDEDBDEDFDEE0DEDBE3E2E1E2E3E6E5E5 -E5E4E7E7E8ECECEDECECECEDEDE9EAE9EAECEDEFEFECE9ECEEE8E6ECE9EBEEECE6E9EBECED -ECEBECEEEAEFEEEFF0F1F0EBEDECEDECE7E9EDEAE7E6E9EAE5E5EBEAE7E7E9E5E5E6EAE7E4 -EBE8E2E3E3E8E2E5E2E3E2E8E4E3E2E3E1E2E3E3E6E7E1E2E4E1E2E4D9E7E6E5DBE0D8E7DE -E7E5DDDAE2E6E4DCDBD5AE559FB0827672718286B283B0D9E0E5E2E8DFDEE3E2E4E8E2E6EA -E3E7ECDFD6E3EAE9EAEAE2E3E2DEE0E2E8DDEBE9DAE0E9EADCDEE6E5E2E3E9E2DEE0E5E9E6 -EAE7E6E4EAE6E5EAE9EAEAE7EAE5E5ECE8E2DEE9EFEBEAEAEAE8ECE8EBE9E6EAEDEDE7E9E8 -E8E5E9F0EAEDEFECEBEFF0EBEDF1EAEFF2F0EBECF3F4EFEDF3F1F1F0EDEDF1EEEEF1F0ECF0 -F1EDEDED -CECECDCFCFCFD1D2D7D7D9D8D8D9D9DAD8D9DCDEDFDEDBDEE1E0DEE0DFE1E2E2E1E5E5E6E8 -E5E3E5E6E9E9ECECECECEAEAEBECEAE7ECECECEFEDEEEEECEDEBE9EAE7EAEEEDEAEAEFEDEC -EDEBEAEAECF0EFEFF3F2F0EDEFEFEDEAE7E9ECEBE9E6E7EAE6E6EAE8E6E6EAE5E7E7E5E7E7 -EAE7E7DEE3E0DCECE5E3E6E6E5E4E7DFE6E7DEE9E9E5DCE5EDEEE2E3E5E0E6E8E5EBEAE9EC -E6E7E2CDDCE9E6E2E4D8A9446788413B3B3C4446794472CFDEE6E0E0EAE9EBE5DCECEAE0DF -DEE7E9DBDCE6E8E7E4E6DDE3E6E0E6E5E6E5ECE8E1DDE6E9E5E0EBE5E9E3E9E1E8E4E5E7E9 -EAE9E3E1EAEAE5EAEAE9E6E7E7E5E4EAEAE7E2EAECE7E7EAEEEAEAE6EDEAE7EAEBEDEAEAEA -E5E7EDEEEAEBEFEEEAEFEFECF0F3F1EEEFEEECECF3F3F0F1F3F1EDEDEDF1F4EDEDF1F0EFF0 -F0EDEFF0 -CFD0CFD1D1D4D5D5D8D9D8DBDAD7DBDBDADBDDDEDFE0DDDDE0DEE0E2E0E2E5E2E2E6E6E7E6 -E7E6E6E4E8EAEAE9EBEAECECEDECEAE9EDECECEDEBEDEEEEEFECE9ECEBEAECECEAEBEDEBEF -F0ECEFEAEDEFEFF1F3F0F0F0F0EEE8EFE9E8EFEBE6E6EBE7E8E9E7E7E8E9EAE6EBEDEAECEC -EAE5E9E0E4E7E9ECDEDFE6E8E2E7E5EAEBE6DEECEAE6E4EAE6E9E3E0E8E6E3EAE5E7E7E4EB -EEE8EBD9E5EAE7EBE4E0CCCDE0DBD4DBDED8D7DCDDDBDFECE8E9E5E2ECEFECDFEAF0E5D7E7 -E7EDEBE0EAE9E8E7E2E0E1E1E9E7E6E5E8EEEFECE5E0E6E7E8E5ECE8E9EAECE1E7EAECE8E9 -E6E7E7E5EAEFE7E9E7EAE9E4E6DFE2E3E5E4E5EFE9E4EEEFEAE8ECEEF0ECECEFEDF1F2EFEF -E9EFF0F1EBEAEEEBEFF3EEEDF5F0F5F3F3F3ECEFF4F3F1F1F3F4F1EFF1F3F3F1F1F3F0EFF5 -F3EDF3F3 -D1D1D1D3D4D4D6D7D5D7D8D9D9D8D9DBDADADEDCDFE0DEDDE0E0E2E4E3E5E5E3E5E5E6E7E5 -E6E9E9E7EAE7E9EBECEDEFECEDEAE9E9EDEEEDEAE7E2E6ECEDECEDEFEEE7EAECEAEEEFEDF0 -EEEAECEAECEFECEDF1EFF0EFF0ECECECEAE9EEEAE7ECEAE9E7EAEAE9EAE9EBE6E9EDEAEAED -ECEDEBE8E4E9EFEFE8E6E8E9E7E4E3E3E2E7E4E5EBE8E6E0E6E7E7E9E5E6DBEBE5E0EFEDE8 -ECEAEAE4DCF0EDEFE6E5CDCEDEDBD5C5A58D8872657289C1EAECECEDF2ECE2E6EDEFE3DFE8 -E3EAECE8EDEAEAE3DEE6E8E4E9E5E5E5E6EEEAECE7E6E8E8E7E6EEE7E2E9E6E9EDECEEEAE9 -ECEAE9E1E8ECEDE7E8EEEAE6EBE0E3EAE8EAE7EDEEEAE9EAECE7E7EAECEDEDECEBECEEEFF0 -ECECF3F3EDEEEFEAEDF3EDEDF3F3F4F5F5F1ECECF3F2EFF1F4F3F4F3EFF3F3EFF3F4F2F1F4 -F3F0F3F5 -D0D2D3D4D4D6D7D8D9D8DADBDBD7DAD9DBDBDEDCDEE0DFE1DEDFE3E5E2E3E3E5E6E6E7E7E8 -E7E9E7E7EAE7E8EBECEEEEECEDECEAECECEEECEAE9E4E6EAECEDEFF0EDE8E9EBEDF0F0F1EF -EDEAEDECEDEEEDEDF0EFECEDF0EDEBEDECEBEFEDEAEDECE9EAE9EEECE8E5E7E7E9F0EFEDEC -EDEBEBEAE6E7EAE9E7E6E9ECE6E5DDE6E6E9E8E8E9E6EAEFE7EBEAE9EAEDE9E9E5DBECE8E8 -E5EEEAE9E4E8ECF0E8E8AB444F71AD4C343B3E393C4461BDEAF0F1EFEBEDEFE3F0EDE7E6EA -ECE8E6DEE5ECE2E2E1E4E7E0E6E4E7E7EAE7EBEAE6ECECECEAEAEFEDE7EAE8EBF1EEEDE7ED -EBEDEBE9E8EBE9E8ECEFE9EAE9E9E8E9EBEAECEEEFEBEAEAEDEDEAEBE9ECEEEDE9EEF0EFF1 -EFF0F4F4F0EFEEEFEEF0EFEFF3F4F3F5F6F0EBECF2F2F1F1F4F5F6F4F3F1F3F3F4F4F4F3F4 -F3F3F3F4 -CED1D2D5D5D5D5D8DAD8DADBDCDBDCDEDEDEE0DEE0E0E0E2E0DEE2E5E4E5E3E5E6E6E7E8E7 -EAE9E9E9E9E8EAEBEDEAECEDECECEDEDEFECEBEDE9E6EAF0EBEEEDEDEDEDEFEFEEF1F0F1F3 -EFEFF0EDEDEDEEF0EFEBF0EEEFEDF0F1EDEFF1F0EFEEECF0EEECECECE7ECE8E6EAEFECECED -E6E6ECEDEAEDEDF2E7E7E3E6EDEAE1EAE6E9E6DCEDEAF0EAEDEDEDEFF5F1F3EEEFECE7F1ED -F4F3F5F4F0F0EDEFE6EBD7C8CDD4D2CAC5C9CFD0DCDCDFE2EDE9EEF3E2EFF4E8F1E0E6F0EC -E8E4E2E3E5E2DBE7E6EAEAE9E8E7ECEDEAE3EEEDE9EBEEF1F0F0F0EFEDEDECECECECF1F1F0 -EFECEDEDE9EAEFF0EFF0EFF0EBEDEAECEDEAEFEDEFECEDF0EDEFF0F0EDEFF1F3EEEFF0F2F2 -F3F1F4F1F4F1F3F3F2F3F3F4F3F4F4F7F6F3EFF0F3F5F6F4F7F8F7F8F7F4F6F6F7F7F7F7F7 -F7F7F9F8 -D0D0D1D4D5D5D5D7D9D9D9DADCDCDCDEDEDEE0E0E3E2E2E3E1E3E4E6E5E5E6E5E6E7E8E8E6 -E9EAEAE9EAE9ECECEEECEEEDECECECEDF0EDEFEDEDEBEEF0EEEFEFF0EFEFF0F1EFF0EFF1F3 -F1F0EFF0EFEEEEF1EFF0F0EFEFEDEDEFEBECEDEFEFF1EFF0F0EEECEDECEDEFEEEFEDEDEAEA -E9ECEFEDF0EDEEE9EAE9E6ECEEE7EAEBE1E9EAECEAECECF0EFE8EDEDEAF1F2EFEAE8EAF1E9 -EFF1F0EEEAF6F0ECE9ECE6E9E6E6E5E6E9E9E7E4E0ECE9E6EFEEECEFEEF1EEF0EAEDE9E5E7 -E9E8E1E7E7E5E2E1E7E8EBE3E9EAECEFEDE7EBEAEDEDF0EFF1EDF1EFEDF0E9EDEDEDF2EFEF -ECEDEDF0ECECF1F1EEF3F3EFEFEEEFEDF1F0F1F0F0F1EEF0EAF0F0F0F1F3F4F3F2F3F1F1F3 -F4F4F3F3F6F4F3F3F3F3F6F5F3F4F4F4F7F5F3F3F4F5F6F7F7F7F6F7F5F6F6F7F7F7F7F7F8 -F7F9F7F7 -CFD1D1D2D5D5D6D7D8D9DBDBDCDBDCDCDDDEDFE0E2E2E2E4E2E2E2E4E5E6E6E7E7E7E8E7E4 -E7EBEAEAE9EAEBEBEDECEDEDF1EDEDEDEDEEEFEDEDEAEFF0EFF0EFF1EFEFF0F0EFEFEEF0EF -F0F1F0F0F2EFF0F1F2F1EFEFEFEEECEDEDEFEEEEF0EFEFEEEDF0F0EDEFEFEFECE8EDEDECEC -E9EEEFEFEFF1EFECEDECECEFE9ECEDEDE7EDE9EBE2E6EDF2F0E7EFEDEFF2F1EDF3F0E7F1EC -F2EFEDF0F0F3F1ECE4E68EBAD1D1D3D8DADCD8E2DEE3E1E0ECE3F0E6F5EEF2E4E1F2F2EBE5 -EFE4EDEDE6EAE3E6E3E3E5EEE8E7EAEDEDEEEAE7EEEFEEEFF3F1F3ECEBEFEDEDF0EBE8ECEC -E5E5ECEEEDEFEFF0EDEFF1F0EBEEEFECECEAEDEEEEF0EBEEF0F2F3F1F1F0F2F2F3F3F1F0F1 -F4F3F4F3F4F2F2F3F3F5F6F3F6F6F4F6F7F5F3F3F4F7F6F7F6F6F5F6F2F4F6F6F6F6F5F7F9 -F7F7F6F7 -CCD0D1D5D5D4D7D7D7D9DADBDCDBDBDCDEDEDEE0E3E1DFDFDFDFE0E1E5E4E5E6E9E9E7E6DD -E5E7E9EAEAEAECECEBECECEDEDEDEFECEAEFEFF0EDEBEFF0EFEDEFF2EDEAEBEAE7EBECECEA -F0EDEFF0F3F3F2F0EFF1EBEAEFF0F0ECE9EAEDEAECECECEBECEFEFECEBECEAE6E7EAEAEDED -EBEEEFECEFF2EEEDEFEBEFEDE8EDE5E9E9EFE9E7E9ECEBEFF0E7EDF1F2F1EAEDF4ECF2F3EF -F1F4F4EFF0F4F1EDEFD74B404849403E446F576D71C5D6E0E4F0EDE7F0E5EDEAECE6E6DCE9 -EDE8EAEBE3E9E5E2E3E5E5E2E7E7E9EDE8E5EBE7E9ECEFF1EAEFF1EDF0F0EEEEECEEE9ECE9 -E1E7EAEDEEE8E7ECEDF0EEEFECEEEDEBEAEBEFF0EFEDEDECEFEDF0F1F1F0F1F1F0F1F3F1EE -F1F2F1EFF1F0F0F0F0F3F6F3F5F5F4F4F5F3F1F2F2F5F3F3F3F3F1F3F2F3F3F4F4F4F4F6F6 -F3F4F5F6 -CBD0D1D4D4D5D7D7D7D8D9D9DBDBDCDCDEDDDFE0E2E1DDE0E1E0DEE0E5E6E5E6E9E9E7E6E3 -E6E8E7EAE8EBE9ECEDEDECEDECEEEDEAE9EEEFF1F0F1F0F1EFEFEFF0EFEBEEECE8EDF0EFEA -EFECEDF1F1F2F2EFEDF1EBE8F0EFEFEDE8EDEFE7EDF0EFEEE8ECEDEAECEDE9E7ECEEEDEFEF -EEEFEFF1EDF0F0F0EDEDEDEEEFEDE3E8EDEEEEEEEFF0EEF0F0EDEDF1EAF0F0EDEDEEF0F1EE -F1F1F3EEEDF4ECEDF3E786BFD2BD896557574B45414665D4E4E3E7E0ECE9E2EAEAE5DFD3E6 -E7E5E7E2E2DEDBE2E2E5E3E6E2E2E6E6E3E6EAE9EDECF1EDEEECEFECEFEDEFEDE7EDEFEFEE -EAECEAEDEAEDEDECEAECECF0ECEFEBEAEEE9ECEFECF1EFEFEFF3F1F0F3F2F0F0F0F2F5F0EA -EFF0EFEFF0EBEFF1EFEFF4F6F3F4F5F4F3F4F1F2F3F3EDF0F2EFEDEFF3F3EFEFF0EFF4F5F1 -EFF1F0F3 -CBCDD0D2D3D5D4D5D7D6D9DBD9D8D9DCDCDCDCDEE0DFDCE0E0E3E1DEE1E5E5E7E7E7E5E6E6 -E7E9E9E9E9ECEAEAECEBEBECECECEDEDEBEDEDEEEEEEECEDF0EEEFEFEDEDEDECE9EBEFF0ED -EFEFECEFF1F2F1F2EEF1F1EAEFEFEEEBEAEEEFEDEFEFF1F0E9E7EDECEBEFEAE7EDEFEDEDEF -EFF0F0F0EEEFEFF0EDEFEFEDEDF0E7E9F1EDE9ECECE8E6EEEFEDF0F1F1F0EFF1F1F0EFF0EC -F1F1F4F3F3F0E6EDEDE05377A6B5766F8291A2B2C0C9DBE0E2E0E8E7EEDFEAE7E5E2ECDEDE -E0E7E0E0E4D9D8E2E6DFE7E7DFE2E5DFE1E2EAE2E7E9ECEFECEDEFEDECEEECE9ECEEEDEDED -F0E9EDE9EAEEECE9F0EAEDEFEEEFECE9EFE9E8EDE9EDEEEEECEFF1F1EFEFEFF1F0F1F3F1EA -F0F1F3F3F1ECEFF3F2F0F4F4F4F4F5F3EFF5F4F2F4F2EFF3F3F0EDF1F5F5F2EFF0EFF4F7F3 -F3F3F0EF -CBCDCDCED4D2D1D2D4D4D7D9D6D7D7D9DAD7D9DBDFE1DFE2E1E2E2DEE0E3E5E5E6E6E5E2E3 -E2E4E8E8E9EAE6E9E9E7E6E9E7E8EBE9E8E9ECECECEAE6EBE8E8EAEBEDF0EBECE8EBEDEDED -EDECEAEEF0EFEDF1F0F2ECE9ECEAEAEAEBEDECEDF0EEEFEFEDE6EBF0EFEEE7EAEDF0EFEEEE -EDEDECEDEBECEDEDEFEFEBE9E9E9E6E5ECE7E8E6E3E2EAE7EFF0EDECE9E7F0EEECEDEAF0EA -F0F4EFF1F1ECE9EAE9E0CFB5AD794C3E3B3B31343741A2E3E6E5E7EDE7D7DEE3D5E0E5DEDE -DCE1E5DEE9E4ECE6E0E2D8E0E5E5E2EAE6E5EBE8DFE6EAEBE7E6E9E8E9ECE9E9E6EEEEEFED -ECEDEAE4E7ECEAEAECEDEEEDE9EDE9E8EAE3E7ECEAEDEDF0EEE9EDEDEFF0F0F1F3EDEFF0EB -F0F3F3F3F2EDF1F3F3F4F5F6F4F3F4F4F3F5F4F6F7F4F3F2F2F0EBF0F6F5F3F3F1F0F4F7F4 -F2EFEEED -CBCDCECBD0D0D0D4D4D3D7D8D5D7DAD9DADBD8D9DEDEDFE0E0E1E1DFDEE2E3E6E7E3E5E2E2 -E6E4E8E8E9E8E6E8E6E6E9E9E6E8E8E7E7E8EAE6ECECEAECEBECE8EBF1EFEDEAE7E9EAEFED -EAEEECECECEFEEEEF0F1EEECEAEBE9E9EFF0F0EFEFEFF0ECEFE6EAEFEFEDEAEAEDF0EDF0EF -EDEFEDEBE8ECECE8EAECE9E9ECEAE5E0E9E9E7E5E6EAEFECEFEFECEEECEDECE9EEE7EBF0F1 -F0F3F0F3F3E3ECEAE6DEE9E7E6E2DBD9D5C8B2AEA2A1C4DEE0E2E7DCDFCDE5E0E1E5E5D9E3 -E6E5E0DDE0E6EFECE9E0DCE3E2E2E7E7E2E8E5EBE5E6ECEBE4E6E9E6E4E9ECE9E8EDEFEFEF -EDE9EAEAECF0E9EAEAECEDE9EAEFEAEAEDE6E7ECEFF0E7EFF0ECEAECEDECEFEFEDEDF0EDEA -F0F4F5F5F3ECF0F6F5F4F6F5F4F3F4F4F3F3F4F5F4F5F3F0EEEDECEFF4F3EFEDEFEFF3F4F0 -EEF0EFED -CBCFCECCD0D0CFD4D4D1D6D7D4D7D9DBDBDCDBD7DCDBDCDFE0E3E2DEDFE2E3E5E6E6E5E1E0 -E5E5E5E6E8E7E5E7E6E5EAEAE7E7EAE9E6E7EAE6EAEBEAEEF0EEE7E9EDF0EFEDE6E8ECEEEF -EDEFECEAECEFEFECEAEBEDEDEAEAE6EAF0EFEDE9ECF0F0EFEDE8ECF0EDEEEDE9ECEEEDEFEE -E8ECEEECE9EBEBE9E9EEEAEAF0EBEAE2E9E8E8E5E9ECEDF1EAEFEDE7ECECEEEAEBEDF1EEF3 -F3F5F4F1EDE9EDEAE7E2E0B2D0DCE0DEDBCEDCDFD7DEDAE3E0E0E5E3E9E1E3E5ECE9E5E1DA -E2E6E7E9E6DDEDEAE9E2E0E5DFE0E7E6E7E5E4E0DCE5E9EEE9DEE9EAE9ECEDE9EAF0F0F0F0 -F0F0EDE9EBF0EDE7E7E9EBE7EBEEEDF0F0EDE7EDEEEFEDF3F2F0EAEDEEE8ECEFEAF0F3F2EC -F0F3F5F4F2EAF0F3F5F4F3F4F4F3F5F4F3F3F4F4F3F4F4F0F0EFECEFF4F1EDEFF3F2F3F3EE -EFF0EEEE -CBCDCBCDD0D0CED2D3D0D6D7D4D7D5D8DADBD9D7DADBD8DEE2E2E1DCDFE1E1E6E7E6E4DFE1 -E3E0E0E6E7E5E3E5E5E5ECEBE8E7E8E8E6E7E7E6E9E9E9EDEBE8E9E8EDF0F0EDE7E9EAECED -EEECEAECEBEDEEECE9E9ECEDEAE8E9EAEEEFEEEAEEEDEDECEBEAECEEEDEEE9E8ECEDECEDEC -EAEAEBEBE8EDECE9E8EBE6E8EBE7E3E6E7ECE3E7E8E9EAEAF3EFE9E6ECF0EFE7EDE7EDEFED -F0F5F3EDEBE5E6E4E7E2DB584B589A9A4C3C6C98774F6389CCE2E4E5EAE7E9E4E9DEDBDAE2 -D9DEE7E3E9E3EAEDE2E1E3E5E4DDE1E0E4D8E5DFE5E6E7EBEBE5E9EAE9E5EDE8E9F0F0F1F0 -EBEAECE9ECF0EDE9EBEAEDEAEAEAEAECEEECEAEDECEDEDF3F4F0EAECF0EDEFEEECECF1F0ED -F1F4F4F3F0ECF0F4F3F3F2F1F1F3F4F2F1F0F3F3EFF0F3F2F1F0EBEEF1EEECF0F4F3F3F1EF -F0F0EFEF -C9CDCBCBD1D0D0D4D1D1D5D6D5D7D6D6D7D9D8D8D9DBDADDE0E1DFDEE0E1E3E6E6E5E4DEE1 -E2E0E0E3E5E3E5E7E5E6E9E9E5E7E9E9E4E6E7E7E7E9E5E7EAEAEAE9ECF0ECECE7E6E9EEEF -EBEAE9EBEAEEEDEDEAECECECE9E6EBEAE9EFEDE8ECEDECEEE8E9E7EAECECE6E7EAE9ECEDEC -E8E8EAEDE9E8EAE9E7E8E6E8E5E5E5E7E7ECE6E1E7ECF0F2F3EEE8EEEFEFEDE9EDF1E8EFF3 -F0F2ECEEECE7E7EDE8DEE59CC9D1CBB3796C7782776F7185D1DCECE6E6ECE5DEE0DEDEDCE4 -D8E0E4EBE7E3EAE3E2DBE1E0DED9DDE6E2E0E5E0E5E9E5E4EBE9E9E9E9E8EBEAE6EBF0EDE9 -EDECEDE8ECF0EDEEEAEAEFEAEAEBEBE8ECECE8E9ECF1EDEEF2F1EDEEF0ECECEFECEEEEF1ED -F3F4F4F2F0ECF0F3F0F3F4F0EFF3F1F0F4F3F0EFECEEF1F2F1EDE9ECF1F1EBEFF3F1EFF0F1 -EFF3EFEF -CBCDCBCFD1CFD1D4D4D4D5D5D5D5D7D7D8DADAD7DBDDDDDBDEDEDEE2E3E2E3E6E6E6E2E2E2 -E2E2E3E6E7E5E6E5E7E7E8E7E5E1E8E8E9E9E9EAE9E8EAE9ECEBEAEAEDEEEEE6E8E9EAECEF -EAEAE9EAE8EEEDEAEAEBEDEAE8EAECECE9F0EFEEECEBEAEAECECE6EBEDE9E7EAE9EAEFF0EF -EBE7EAECEAE9EAE9E9E9E4E9EAE9E7E9E6E5E6E6ECF0F0F2F0EFEBEDECE9ECE9EEECEDEFF2 -F3F3ECEDEDEFF1F1EBE2E5E3E7DFE3E6E2CDDDDBDEE0DDDCDFE0E7EDEAE6E6E1E4E3E2E7E9 -E1E2E0E6E5E3E9E5E4E2E6E7E3E0DEE9E3E6E3E5E7E6E3E6ECECEBE9E9EAE9E9EAE9ECEDEB -EFEEEDE8ECF1EDEBECEAEBEBEAECECEDEEECEAECEDEDEFEDF2F1EBEDEDEEEFEFEFEDEDF0EE -F1F3F4F1EEEDEFF1F0F1F3F3F1F3EFF5F4F5F1EEEEF1EDEFEFECECEDF0F3EFEDF1EDEFF1F2 -EFF0F1F4 -CFCECDD1D1CFD4D6D7D6D8D9D8D7D8DBDBDCDCD9DCE0DEDEDFE0E0E2E4E2E1E6E6E7E5E2E1 -E7E4E2E5E6E6E5E7E8EAECE9E8E4EBEDEAEAECECEBEAECE9ECEFECEEF0EFEFEDEBEDEBEAEF -EBE9ECEDEAECEDEDEAEFF0EDEBEFEFEBEAF0EDEEF0F0EDEBEAEDE9ECEFEEECEDE9E9EBEFED -ECE5EAECE9E9E7E8E9EAEAECEAEAEDE6E6E9E9E9EEEEEFF1F0F0EDEFF1EFEAF1EEF0EAEAF3 -F2EDF1EFE9F3F3F1EEE7E4E3E6E8E0DEE6DFE6E1E5DDE6E3DCE9EAF1E9EEE7E9E2E6DBE5EA -E5E8E3E7E0E2DFE9E6E5DEE2E2E4E9E6EDEEE0E7EAE3EAE9E7E8E9EDE6EAEDECECECF0ECE9 -EFF0EEF1F1F1F1F1EFEFEFEEEAECEFF1F3F1EEEAF0F2EDECF3F3EDEFEFF1F1F0F3F2F0F0F3 -F2F4F4F4F0F0EDF0F0F3F4F5F3F3F0F3F4F3F2F1F2F4F3F4F0F2F3F0F3F5F4F0F2F1F0F3F6 -F4F2F2F7 -CED1CDD1D1D0D5D7D7D7D8D9DAD7D8DCDCDDDCDCDFDFDEDBE0E1DEE2E3E3E1E3E5E6E2E2E1 -E5E7E5E6E6E3E5E7EAECECEAE9E8EAEBE9E6EBEDE9EAE9E5EAECECEFF0EDF0EDECEAEBEFEF -EAE9F0EDEAEBEDEAEAF1F0EFEBEDEDEEECF1ECEFF0EFEFEEEAECE9EAEDEEEBEDEAECE7EBEF -EFE9E9E9EBE9E9EEEAE8E9ECE6E8E9E9E8EAE7E2E9E6ECF0EDEFE9EBEFF2EFF0F0F3EEF1F1 -F3F1F0EEEEF0EDEFEEE5C7DEE6E8E0E2E6E5DEE2E1D7E0DFDFE8E5E4EDEFE5E7E9ECE7E2EA -E7E6E9E5E1E6EAEBEAECE6E0EAE7E3E9E8E9E3EDEFE3EFF1EFEBEAEFE6E9EDF1EEECF0EEEC -EFF1EDEDEFF2F3F1F0EFF1F1EAEAEFF1F3F3F0ECF2F2EBEBEFF3F1F0F2F3F0EFF3F1F0F3F4 -F4F6F4F3F4F1F0F1EFF2F4F6F4F4F0F2F4F3F3F3F0F3F4F5F1F3F3F1F4F6F4F1F4F4F2F3F6 -F5F1F3F6 -CDD1CED0D5D1D1D4D5D7D9DCDCD8D7D9DBDCDCDBDDE0DCDBE2E3DEE0E3E2E0E3E7E5E6E5E0 -E4E6E2E6E5E3E4E9EDECEBECEAEAEAECEBE9ECECEAEAEAECECEAEDEDEFEEEFEDEBEAEBEEEB -E9EBEFEDECEBEEF0EBECEDECECEDEEECEBEFF0EFF0F0ECEBEBF0EEECEBEAEDEDEDEAECEDEF -EFEEE7EEEBECEDEEECE9E9EBEAEBECEDECE5E6E5E9E9EBEDF4EAEAE5EDF2F0EDEDF0F3F3F0 -F3F2E6EFEDE7F1ECE6CC487ACBBB989AABBFC2DFDBDCD1DBDDE4E5E5EDEFE9DAE1ECE6E9EA -E9E4E7EEE6E9E3EFEEEBEFE8EBE6E7EFEDE7E9E9E3EDF1E7F0EAEEF1EBEAECEFEFECEEEFEE -ECEAECECF1F0F1F1F1E9EFEDEDECEDEFF0EFEDF0F1F0EEECF3F3F1EEF0EFEFEFF3F1F0F1F3 -F4F3F5F3F3F3F3F4F1F1F3F3F4F6F3F2F3F3F4F5F3F1F3F3F4F7F3F1F2F4F3F1F4F5F4F3F4 -F3F3F3F6 -D0D1D0D3D5D4D5D6D6D8D9DBDCDBD9DBDBDDDCDDDCE0E0E0E1E3E2E3E2E3E2E3E5E5E6E5E5 -E5E5E7E9E9E5E9E9ECEBEDEDECECEDEEEDECEEEEECEEECEDEFEBEDEFF1EFEFEFEDF0EEF1F0 -ECEFEFF0F0EEF0F1F1EFE4EFF0EFF1EFEFF0F0F0F1F1F1EFF0F3F2F0EDEFF0EFF0F1EDEDF0 -EFEEEFEEECF0F0F1EFEDEBEEEFF0EFEDF0ECEFECE8E5ECF1F1EFEFECF1F3EFEFF0F0EFF6F0 -F5F3EFF3EBF1F4E6EAC571BCA56F4540404B3BA95767B7DCDFE3EAE5EAF3E9E9E7EDECEDE9 -E1DEE7EBE8EAEDE5E7EFEAE7E3ECECEDEDECEBF0EDF2F0ECF3F0F0F2F0ECEEEFEDF0F3F0EF -F0EFEEEFEFF2F3F2F0F1F1F1F0F3F0F0F3F1EFF3F3F0F1F0F3F1F0F2F0F0F0F0F3F3F4F4F4 -F4F4F4F2F3F3F7F4F3F2F4F5F6F5F6F6F4F4F5F6F5F5F6F5F7F7F6F5F5F4F6F5F7F7F9F6F5 -F6F6F6F6 -D0D1D1D4D5D5D5D6D6D9D9D9DBDBDBDCDCDEDDDEE1DEDEE3E2E2E2E5E2E3E6E7E5E6E8E7E6 -E6E8E8E7E6E6E9EAEAE9EBECEDEFEFEEEDEDEEEFEEEEECEFEDF0F0F1EFF0EFEFEDEFEEEDF0 -F0F1EDEFEEEFF0F1EEF1ECEEF0F2F1EFEDF1F0F1F2F3F0EFF0F3F1F1F2F0EFEFECEFEFF0ED -EDEDEEEFEDEDEFF0EFF0EDECECF3F0EEF0F3F0F1F0EFEDF0E5EFF3F2F3F4F0F2F3F4F2F5F3 -F4F0F3EFF3F4F0EAE3E4E5E9E6E5D7D1C0C1A2B59F97C5E3E9EAF1ECEBF0F3EAE7EFECEDEB -E1E8ECEBEDE6E9E9E5EAE4EAECE9EAEDE9EEEBEAECEDEFF0EAF0F0F2F1F3F0F0EFF3F3EEF0 -EFF1EEECECF0EEF1F1F0EFF1EFEFF1F0F1F1F1F1F1F3EFF2F3F3EFF0F1EFF1F0F2F0F1F4F3 -F4F3F5F3F3F5F5F3F4F6F4F5F6F5F6F7F7F6F6F6F5F6F7F7F6F9F7F6F6F7F6F7F7F7F8F7F8 -F5F5F6F6 -D0D1D3D4D5D5D5D7D8D9D9D9D9D9DBDCDCDDDCDFE0DFE0E1E3E2E4E5E5E5E7E7E5E6E9E9E6 -E6E9E9E8E8E7ECECECECECECEEEDEFEEF0EDEFEFF1F0EEEFEFF0EFF0F0F1F1F1F0F0EFEEEE -F0F0F0EDF0EFF0F1EFF0F1F0F1F3F0EDEDEFEEEFF0F0EFF0F3F1F0F3F3F0F0EEF0EFEDF0ED -ECEFEFEFEFEBEDEDF1F0EEEDEDF0EFEFF0F2F0F0F1EFF3F0F0EFF4F2F3F1F3F3F3F6F5F4F4 -F3EAF6F3F4EFF3ECE3E5D5C9E5E9E7E5E5EAE7E5E7E4E5E3EAF1ECEFEDECEFE4ECEFE1E9ED -ECECE8EBEDECE4E6E6EAE2EAEBE9E9EDF0EBECEBEDECF0F3EFEDEDF3EFF0EBF0E9EFF2F0F0 -EDE9EDF0F0EFEFF3F1EDEDF1F0F0F3F1F2F3F3EFF1F1F4F2F1F1EEEFF0F1F1F0F0F1F2F4F5 -F2F4F7F4F2F4F6F7F6F7F4F7F5F5F6F4F6F6F5F5F5F7F7F7F5F6F5F7F7F7F5F7F7F7F7F6F7 -F7F6F4F6 -D0D1D4D4D4D4D5D6D7D6D8D7D6D9D9D9DCDDDDDDE0E0E0E2E2E3E4E3E5E5E6E6E5E5E7E7E7 -E7E7E7E9EAEBEDEAEEEAECECEDEAE9ECF0EEEFF0F1F1EFF0F1EDF0F0F1F0F0F1F0F1EDF0F2 -F1F1F0F1EDF0F0F3F0F3F2F1F0F0EBEAEAE9EDEFEDEDF1F3F2F0F1F1F1ECECEDEBF0EFEFEF -EDEEEFEFEDEDEDEBEEF0EDF0F0F1EEEEEFF1EDF0F0EFEFEEEDF0F3F6F2F3F1F0F1F5F3F7F3 -F0F0F3F5F4F5F3E8EDDC794BA9D5D19190BDC4BCC4D1E3DCE0EAF0F3E9E8F3ECF1ECE6E8ED -ECEAE6EAE9E8E1EEE7E7ECE9F0EFF0EFECE9EBECEDECF1F2F3EAEBF1EFEEEDEFF0EDEFF3F0 -EBE6EDF0F0EFF3F3F1F0F0EEF0F1F3F0F1F0F0F2EFEFEEF1F1F0EEEEEFEFF2F0F1F1F0F1F3 -F3F4F5EFF3F4F5F6F4F6F6F6F7F6F6F6F6F4F4F6F8F9F7F6F7F5F6F9F7F6F8F5F4F5F5F4F6 -F6F5F4F5 -D0D1D1D5D5D5D4D7D8D7D9D7D5D8D8DADCDEDDDDE0DFDFE2E3E3E3E1E5E6E5E7E6E6E7E8E9 -E9E4E8EAE9E9ECEAEDECE9EDEEE9E9ECEFEDEDEDF0EFEFF0F0EDEFF0F1F1F3F1F0F2EAEFF0 -F0F1F2F1F1F2F0F0F2F0F1EFF0EDEDEFEAE8F0EFEFEFF0EFF1F1F3F0EFF0F0EBE8ECEEF0EF -EEF0EFF1F0F0E9ECEDEFEFF1EEEEF1F1F1EAEFF1EAE9E4EAEAECF3F4F6F7F5F2F1F4F3F7F4 -F8F6F6F8F4F0F0ECECE7B48386ABBF41393E44343A4661CAE9E7EBEDEAE5EAE9E5E6E4E9E9 -E6E3EAEFEAE7E7E6E3E7EBEFE8E5EDEEE6E7ECEBECEAECEDECF0F1F0EBEEECEDECF0EFECF0 -E3F0EEEDEEEFF0F3EEEFEFEDECF1F1EBF3F1ECEFEDEEEDEDEDF2ECECEFF0EFF1F1EEF0F0F2 -F2F4F3EDF1F6F3F6F6F6F3F2F6F3F4F5F5F4F5F5F7F7F6F7F5F5F7F7F5F6F4F3F0F3F1F1F4 -F7F5F1EF -CFD0D1D1D4D4D4D6D5D7D7D5D5D9D9DBDCDEE0DEDFE0E0E0E3E4E4E5E4E6E4E5E7E5E7E7E5 -E6E9E8E7E8EAEAE7EAEAEBEBEAE9E9EDEDEFEDEFEEEFEDEFEEEFEDF0F1F1F1F0EFEFE7EFED -F1F2F1F0F1F1EFEFF0F0F0F1F0F1EFF0E9E7F0F3F1F1F0EFF1F3ECF0F0F0F1EEEFEFEEEFF0 -EFEFF0F2F0F0F0EDF0EEF0F3F0F0F1EFEFEEEFEFE9ECEEEDE9EBF2F0F2F4F4EFF3F3F2F3F4 -F5EFF3F6F4F3EDE7E9EEEBEAE6E6DECAC9BDB5A18D899CD0E5F3F1F3E9DCDFE6E5E5E7E9F1 -EAE7EFE3E3E4E2E5DEE6E5EBE9E8ECEDE6EBEDEAE5E5E2E4E4EFEFEEEEEFEBE8EFEEECECEA -E9EDECEAE4EAECEDECEBEEF1EDEAEDEAEEECECF0EEEBEBEDEEF0EDE9EDEEEDF0F0F0EFF1F1 -F3F1ECECF2F3F3F3F3F4F3F3F3F2F3F4F2F3F6F4F5F6F7F6F3F4F5F5F3F6F4F4F1F4F3F0F3 -F6F6F0EF -CDD0D0D0D2D2D4D5D4D2D5D4D6D9D6D8D9DBDCDBDBDAE0E2E1E3E3E0DEE0E2E3E6E8E6E7E2 -E3E5E7E6E4E6E8E6E9E8E7E7E9E6EBEEEFECEEEFEDE9E8EAEDF0EDECECEEEFF0EDEBEBECEB -EBEFEEEDEDECEEEFEDECEBECF0F1EEEFE7E9EDF1F0EEF0EFEBEDEDEDEAECF0EDECEEEEF0EF -EDEDEBECEEF0EAEAECEDEDEDEDF0F0EDECECEDEFECEAEDEEE8ECEDF3F2F3F0EFF1F1EDF1F0 -F2E6EFEDF1EFEDEDE9EAECE9E6E7E7E7E6E4E3E1E6E6E6E1E5EDE4E5ECE3E6E7DEE0E6E7E7 -DEE2EBDFE4E6E6DCE9DEE6E5E9E7E6E5E4E4E6E3E5DFE0DFE2E9EDE7E9EBE5EAE7E9EDEAEB -EDEAECE8E7E6EAEDEAE5EDECE9E4E6E7EEE7E6EBECECE9ECE9EAE9E5E9E9E8E9EFEFEBEAF1 -F1F0E9EFF0EDF1EFEFF1F3EFF1EFF1F4F2F3F1F3F3F3F1F3F3F3F1F1F0F3F7F3F0F4F6F1F4 -F4F4EDF2 -CACDCDCDD1CFD1D4D1D4D6D4D5D8D6D9DAD7DBD9DDDADBE2E2E2E0DEDCE0E1E3E6E6E9E7E3 -E5E1E3E7E2E7E7E5E9E6E4E9E9E6E9ECECECEDEEE9E7E8E9E9EDECEEEDE9EBECE9EAECEFE9 -EAF0EDE9EBECEBEFEFEEEBECF0F0ECECE9E9EDF1ECEDF0F0EBEAEFEDE8EBEFEDE9EDEEEFEF -EEEDEAEAE9EDE6EAEDECEFEBECEFEDE9EDEFEBF0EFEAE8E9E7EBE9F3F1F3F3F0ECEFEEEDED -F1EFE7EDF1ECE9EFEBE7EBE9E4E3E7E6E3E7E0DCE7E6E3E3E7E2E3E6E4E3E5E7DDDCE6E7DC -DCDBE2E2E0E6E6E2E3DEE4DFE2E3E1E5DEE2E4E9E5E1E0E2E2E4E7E4E4E7E3E8E8E6E3E6E7 -DEE2E7E6E7E3E6E9E6DCEEECE5E3E7E5EAE2E7E8E4E6EAE3E9E9E6E8EBE5E7E5EBE8E3E8EA -EFEBE7EDEFEEEBEDEDEAEFEFECEEEAF0EFF0EFEEF2EFF1F2F0F0EDF0EDEFF3F0ECF1F4F1F3 -F3F1EEF3 -CBCCCDCED0CECED3D0D5D6D4D5D8DADBDBD7D8D9DAD9DCE1E2E1DCDCDDDFE1E4E6E6E7E7E4 -E5E1E5E5E2E5E8E6EAE5E3E9EBE7E8EAECECECECEBE8E9E9E8E7EEF0EFEBEAECE6E7EDEDEA -E8F0EDEAEAEEECF0F0F1EDECF0F1ECEFEBE9EEF1EBEDF0F3EAEAF0EFE9EBF0EEEAEDEFEFF0 -EEEEEDEAE7EFE7EAF0F0EEE9ECF0EEE8ECEDEDEEF0EAE7ECEAEDF1F1F1F2F1ECEBF0EEEAEA -F0F0ECF1EFE7EAEDEBE6E8EDECE9E5E4EAEAE1E7E7E5E6E9ECDEE7E3E2DDD8E2E4E3E8E0E3 -E0E4E2DCDEE5E3E5E9E6E7DEE5E3E5E5E3E5E6E6E5E7E3E5E3E8E5E6E8E6DFE6E6E5E1E0E3 -E5E1EAE6EAE4E2E5E0E3E9EBE3E1E5E9E8DBDCE5DEE3E9DCE5EBE6E3EBE7E5E2E9E7E7EAE6 -EAEAE6EEF1ECEAEBEDEBEAF0EFEDEAEEEFEFECEDF1ECEDF1EEEEEDF1EFF0F3F0EEF4F4F3F1 -F3EFEFF4 -CBCCCECED1D0CFD4D0D4D7D4D4D8D9DADBD6D6D7D9DADCDFE0E1DEDEDDDEE0E4E7E6E8E5E2 -E1E3E5E2E1E3E5E5EAE5E4E9E9E7E6E7E8E5E6E7ECE8E7ECE6E9EDEDEDEAE8E9E9E8EEEDEB -EAEEEDEAECECEAECEDEDECEDEFF0EFEFE9E9EEF1ECEBEFF0EAEAEEEFE9EAF0ECE9EDEFEFEF -ECE9EAEAEAEDECEAF1F0EEEAE8EFEDE9EAE9EAEFF1EDEAEBE9EAEEE9EFF0F1F0ECEAEAE6ED -E9EDEAEFEDE8EBECE9E7E5E3E8E8E6E9E3E8E0E7E5E9E7E8E8DEE2E6E3DFE1E2E3E0E6E7E5 -E2E5E5DEE6E9E3E5E3E3E3D6E3E1E2E5E4E5E6E9E3E4E6E8E6E6DFE8E3E5E0E7E9E5E4EAE8 -E6E2E7E6EBE0E6E7E7E3E7EAECE6E9ECEAE3E3E5E7EBECE3E6E5E3E1E7E2E5E8E6E9ECEAE7 -EAECE8EDEFEBE9ECEFEDE9F0ECE9ECEDEDECECEFEFF0F0F0EFECEDF0EEEFF1EDEFF2F5F3EF -EEEDF0F4 -CBCCCBCED0CECFD4D1D2D5D4D4D7DADADBD7D7D7DBDADCE0DDDFDFDCDCDFDEDFE4E4E5E3E0 -E3E3E5E5E0E5E6DFE4E6E3E9E8E3E6EAE7E8E9EBEAEAE6E5E6E9EBEEEAE8E9EAE9E5ECEAEA -E7E9EAE9ECECE7E9EAE9EAEAEFEFF0EDE9E9EDF0ECEAEFEEE7E9EFEDE9E9ECEBE7EDEFEEEC -EAE8ECEAE9F0E9EBF1EEECECE7EDEAE8EAEDE8EBEFEDE9E9E6E8EFEDEDEBF1EDE9ECEAEBE9 -EAEDE8EAECE9E8EAEBE9E7E9E9EAEAECE6E3DEE6E7E7E7E5E7E2E1E3E5E3E2E1E2E1E9E7E5 -E2E6E7DEE6E5E2E1E2DFDDE0E6E3E7E7E7E4E6EDE6DEE3E6E7E4E5E0E5E6E5E6E8E5E3E9E9 -E7E3EAE8E5E7E6E8E9E0E6EBE7E2E6EAE6E5E7E5E0E5E4E3E5E5E7E3E7E6E8E9E6E9E7E4E7 -E8E8E6E9ECE8EDEDECEBEBEDECECEBEDECECEFEFEDEFF0EFEDECEEEFECEDEFEFEDEFF4F3EF -EDEEF0F3 -CCCCCBCED0CED1D4D1D2D4D5D4D7D8D8D7D7D7D8D9D9DADEDEDDDEDCDCDEDEE0E3E6E5E3E1 -E0E3E3E3E2E5E4E4E5E5E6E8E7E4E6E9EBEAE9EBEBE8E7E8EAEAEAECEAEAEBE9E9EAEAECEA -E7E9E8EAEDEDEAECECECE9E9F0F1EEECE9EAEBEFEDEAEFF0E8E7EDEEE9E9E9E8E9E9EBEFED -ECECEAEAEAEDE9E7EDEDEAE9EAEAE7E8EBECE9E9EDEBE7E8E7E8ECEEDFEDEEE9EAF0EFE7EB -EAE3E6E9EDEDE9E9EAE9EAE7EBE8EBE8E6E1E3E7E5E9ECE3E5E6E4E3E3DDE2E0DEDFE2E0E2 -E3E1E5E0E6EAE5E6E4E0DFE6E2E2E6E7E6E6E4EAE6DFE2E2E5E5E4E1E9E5E3E7EAE3E3EAE7 -E4E2ECE3EBE7DEE6E7E7E5E5E6E9E7E9E1E2E2E2E4E2E3DEE6E7E7E5E9E6E6E3E7E8E4E2E9 -E6E6E5EAE6E5E6E9E2E4E8EFEBEFECECE9ECECECECECEEEFEDF0ECEFEBEDF1EDEDEDF1F2EF -EDF1F2F4 -end -restore -%%Trailer diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob07.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob07.gif deleted file mode 100755 index f38859e22..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob07.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob07.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob07.pdf deleted file mode 100644 index 905ecc8e0..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob07.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob12.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob12.eps deleted file mode 100755 index 598fd4ccf..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob12.eps +++ /dev/null @@ -1,4151 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Ski_Jump.eps -%%CreationDate: 5/17/1996 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%+ Symbol -%%BoundingBox:237 475 442 668 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -%%BeginEncoding: _Symbol Symbol -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Symbol/Symbol 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -7393 5319 4358 5319 4248 5436 7283 5436 7393 5319 4 P closepath -0.75 sg fill -gr -gs -4346.625 5319.625 m -7393.625 5319.625 L -1.25 slw 0 sg str -gr -gs -4918 3384 4918 3416 5044 3415 5044 3384 4994 3351 5007 3302 4943 3302 4918 3384 -7 P closepath -1 sg fill -gr -gs -4918 3384 4918 3416 5044 3415 5044 3384 4994 3351 5007 3302 4943 3302 4918 3384 -7 P closepath -1.25 slw 0 sg str -gr -gs -4994.625 3351.625 m -4943.625 3416.625 L -1.25 slw 0 sg str -gr -gs -4975.625 3302.625 m -4981.625 3367.625 L -1.25 slw 0 sg str -gr -gs -4953 3298 4955 3299 4957 3300 4960 3301 4962 3301 4965 3301 4968 3301 4972 3302 -4975 3302 4978 3302 4981 3302 4983 3302 4986 3302 4988 3302 4990 3302 4992 3302 -4994 3302 4995 3302 4996 3302 4997 3302 4998 3302 4999 3302 5000 3302 5000 3301 -5001 3299 5002 3298 5004 3296 5005 3293 5007 3290 5009 3286 5012 3282 5014 3278 -5017 3273 5021 3267 5024 3261 5028 3255 5032 3248 5037 3241 5041 3233 5045 3226 -5048 3219 5052 3213 5055 3206 5058 3201 5060 3195 5063 3190 5065 3185 5067 3181 -5068 3176 5069 3173 5070 3169 5071 3166 5071 3163 5072 3161 5071 3158 5071 3156 -5071 3153 5071 3151 5071 3149 5071 3147 5070 3144 5070 3142 5069 3140 5069 3138 -5068 3136 5068 3134 5067 3132 5066 3130 5065 3128 5065 3126 5063 3123 5062 3121 -5060 3118 5058 3116 5056 3112 5053 3109 5050 3105 5047 3102 5043 3097 5039 3093 -5035 3088 5031 3084 5026 3078 5021 3073 5015 3067 5010 3062 5004 3056 4998 3050 -4993 3045 4989 3040 4984 3036 4980 3032 4977 3028 4973 3025 4970 3022 4968 3020 -4965 3018 4963 3016 4962 3015 4960 3013 4959 3013 4958 3012 4957 3012 4955 3012 -4953 3011 4953 3145 4955 3146 4958 3147 4961 3149 4963 3149 4965 3150 4967 3151 -4969 3152 4971 3153 4972 3154 4974 3154 4975 3155 4976 3156 4977 3156 4978 3157 -4978 3158 4979 3158 4979 3159 4978 3159 4978 3160 4977 3161 4977 3162 4976 3163 -4975 3165 4975 3166 4974 3168 4973 3170 4972 3172 4972 3174 4971 3177 4970 3180 -4969 3182 4968 3186 4967 3189 4966 3192 4965 3195 4964 3198 4963 3202 4962 3205 -4961 3208 4960 3212 4959 3215 4958 3218 4957 3222 4956 3225 4955 3229 4954 3232 -4953 3236 4953 3240 153 P -0.5 sg fill -gr -gs -4945 3286 4945 3287 4945 3289 4945 3291 4946 3293 4947 3294 4948 3295 4950 3296 -4951 3298 4953 3298 4953 3011 4951 3011 4948 3010 4945 3010 4941 3009 4937 3008 -4933 3007 4928 3006 4923 3005 4917 3004 4911 3003 4904 3002 4898 3001 4890 2999 -4884 2998 4878 2997 4872 2996 4867 2995 4862 2994 4857 2993 4853 2993 4850 2992 -4846 2992 4844 2992 4841 2992 4840 2992 4838 2992 4837 2992 4837 2993 4836 2993 -4836 2994 4835 2995 4835 2996 4835 2997 4835 2998 4834 3000 4834 3001 4834 3003 -4834 3005 4834 3007 4834 3009 4834 3012 4834 3014 4834 3017 4834 3020 4834 3022 -4834 3025 4834 3028 4834 3031 4835 3034 4835 3037 4836 3039 4837 3042 4838 3045 -4839 3048 4840 3051 4841 3053 4842 3056 4843 3059 4845 3062 4847 3065 4848 3067 -4850 3070 4852 3073 4854 3076 4857 3079 4860 3082 4863 3085 4866 3088 4869 3091 -4873 3094 4877 3098 4881 3101 4885 3104 4890 3107 4894 3110 4900 3114 4905 3117 -4910 3120 4914 3123 4919 3126 4924 3129 4928 3131 4932 3133 4936 3136 4939 3138 -4943 3140 4946 3142 4950 3143 4953 3145 4953 3236 4953 3240 4952 3243 4951 3247 -4950 3250 4949 3254 4949 3257 4948 3260 4948 3263 4947 3266 4947 3269 4946 3272 -4946 3274 4945 3277 4945 3279 4945 3281 4945 3283 4945 3286 117 P closepath -0.5 sg fill -gr -gs -4945.625 3286.625 m -4945.625 3287.625 L -1.25 slw 0 sg str -gr -gs -4945.625 3287.625 m -4945.625 3289.625 L -1.25 slw 0 sg str -gr -gs -4945.625 3289.625 m -4945.625 3291.625 L -1.25 slw 0 sg str -gr -gs -4945.625 3291.625 m -4946.625 3293.625 L -1.25 slw 0 sg str -gr -gs -4946.625 3293.625 m -4947.625 3294.625 L -1.25 slw 0 sg str -gr -gs -4947.625 3294.625 m -4948.625 3295.625 L -1.25 slw 0 sg str -gr -gs -4948.625 3295.625 m -4950.625 3296.625 L -1.25 slw 0 sg str -gr -gs -4950.625 3296.625 m -4951.625 3298.625 L -1.25 slw 0 sg str -gr -gs -4951.625 3298.625 m -4953.625 3298.625 L -1.25 slw 0 sg str -gr -gs -4953.625 3298.625 m -4955.625 3299.625 L -1.25 slw 0 sg str -gr -gs -4955.625 3299.625 m -4957.625 3300.625 L -1.25 slw 0 sg str -gr -gs -4957.625 3300.625 m -4960.625 3301.625 L -1.25 slw 0 sg str -gr -gs -4960.625 3301.625 m -4962.625 3301.625 L -1.25 slw 0 sg str -gr -gs -4962.625 3301.625 m -4965.625 3301.625 L -1.25 slw 0 sg str -gr -gs -4965.625 3301.625 m -4968.625 3301.625 L -1.25 slw 0 sg str -gr -gs -4968.625 3301.625 m -4972.625 3302.625 L -1.25 slw 0 sg str -gr -gs -4972.625 3302.625 m -4975.625 3302.625 L -1.25 slw 0 sg str -gr -gs -4975.625 3302.625 m -4978.625 3302.625 L -1.25 slw 0 sg str -gr -gs -4978.625 3302.625 m -4981.625 3302.625 L -1.25 slw 0 sg str -gr -gs -4981.625 3302.625 m -4983.625 3302.625 L -1.25 slw 0 sg str -gr -gs -4983.625 3302.625 m -4986.625 3302.625 L -1.25 slw 0 sg str -gr -gs -4986.625 3302.625 m -4988.625 3302.625 L -1.25 slw 0 sg str -gr -gs -4988.625 3302.625 m -4990.625 3302.625 L -1.25 slw 0 sg str -gr -gs -4990.625 3302.625 m -4992.625 3302.625 L -1.25 slw 0 sg str -gr -gs -4992.625 3302.625 m -4994.625 3302.625 L -1.25 slw 0 sg str -gr -gs -4994.625 3302.625 m -4995.625 3302.625 L -1.25 slw 0 sg str -gr -gs -4995.625 3302.625 m -4996.625 3302.625 L -1.25 slw 0 sg str -gr -gs -4996.625 3302.625 m -4997.625 3302.625 L -1.25 slw 0 sg str -gr -gs -4997.625 3302.625 m -4998.625 3302.625 L -1.25 slw 0 sg str -gr -gs -4998.625 3302.625 m -4999.625 3302.625 L -1.25 slw 0 sg str -gr -gs -4999.625 3302.625 m -5000.625 3302.625 L -1.25 slw 0 sg str -gr -gs -5000.625 3302.625 m -5000.625 3301.625 L -1.25 slw 0 sg str -gr -gs -5000.625 3301.625 m -5001.625 3299.625 L -1.25 slw 0 sg str -gr -gs -5001.625 3299.625 m -5002.625 3298.625 L -1.25 slw 0 sg str -gr -gs -5002.625 3298.625 m -5004.625 3296.625 L -1.25 slw 0 sg str -gr -gs -5004.625 3296.625 m -5005.625 3293.625 L -1.25 slw 0 sg str -gr -gs -5005.625 3293.625 m -5007.625 3290.625 L -1.25 slw 0 sg str -gr -gs -5007.625 3290.625 m -5009.625 3286.625 L -1.25 slw 0 sg str -gr -gs -5009.625 3286.625 m -5012.625 3282.625 L -1.25 slw 0 sg str -gr -gs -5012.625 3282.625 m -5014.625 3278.625 L -1.25 slw 0 sg str -gr -gs -5014.625 3278.625 m -5017.625 3273.625 L -1.25 slw 0 sg str -gr -gs -5017.625 3273.625 m -5021.625 3267.625 L -1.25 slw 0 sg str -gr -gs -5021.625 3267.625 m -5024.625 3261.625 L -1.25 slw 0 sg str -gr -gs -5024.625 3261.625 m -5028.625 3255.625 L -1.25 slw 0 sg str -gr -gs -5028.625 3255.625 m -5032.625 3248.625 L -1.25 slw 0 sg str -gr -gs -5032.625 3248.625 m -5037.625 3241.625 L -1.25 slw 0 sg str -gr -gs -5037.625 3241.625 m -5041.625 3233.625 L -1.25 slw 0 sg str -gr -gs -5041.625 3233.625 m -5045.625 3226.625 L -1.25 slw 0 sg str -gr -gs -5045.625 3226.625 m -5048.625 3219.625 L -1.25 slw 0 sg str -gr -gs -5048.625 3219.625 m -5052.625 3213.625 L -1.25 slw 0 sg str -gr -gs -5052.625 3213.625 m -5055.625 3206.625 L -1.25 slw 0 sg str -gr -gs -5055.625 3206.625 m -5058.625 3201.625 L -1.25 slw 0 sg str -gr -gs -5058.625 3201.625 m -5060.625 3195.625 L -1.25 slw 0 sg str -gr -gs -5060.625 3195.625 m -5063.625 3190.625 L -1.25 slw 0 sg str -gr -gs -5063.625 3190.625 m -5065.625 3185.625 L -1.25 slw 0 sg str -gr -gs -5065.625 3185.625 m -5067.625 3181.625 L -1.25 slw 0 sg str -gr -gs -5067.625 3181.625 m -5068.625 3176.625 L -1.25 slw 0 sg str -gr -gs -5068.625 3176.625 m -5069.625 3173.625 L -1.25 slw 0 sg str -gr -gs -5069.625 3173.625 m -5070.625 3169.625 L -1.25 slw 0 sg str -gr -gs -5070.625 3169.625 m -5071.625 3166.625 L -1.25 slw 0 sg str -gr -gs -5071.625 3166.625 m -5071.625 3163.625 L -1.25 slw 0 sg str -gr -gs -5071.625 3163.625 m -5072.625 3161.625 L -1.25 slw 0 sg str -gr -gs -5072.625 3161.625 m -5071.625 3158.625 L -1.25 slw 0 sg str -gr -gs -5071.625 3158.625 m -5071.625 3156.625 L -1.25 slw 0 sg str -gr -gs -5071.625 3156.625 m -5071.625 3153.625 L -1.25 slw 0 sg str -gr -gs -5071.625 3153.625 m -5071.625 3151.625 L -1.25 slw 0 sg str -gr -gs -5071.625 3151.625 m -5071.625 3149.625 L -1.25 slw 0 sg str -gr -gs -5071.625 3149.625 m -5071.625 3147.625 L -1.25 slw 0 sg str -gr -gs -5071.625 3147.625 m -5070.625 3144.625 L -1.25 slw 0 sg str -gr -gs -5070.625 3144.625 m -5070.625 3142.625 L -1.25 slw 0 sg str -gr -gs -5070.625 3142.625 m -5069.625 3140.625 L -1.25 slw 0 sg str -gr -gs -5069.625 3140.625 m -5069.625 3138.625 L -1.25 slw 0 sg str -gr -gs -5069.625 3138.625 m -5068.625 3136.625 L -1.25 slw 0 sg str -gr -gs -5068.625 3136.625 m -5068.625 3134.625 L -1.25 slw 0 sg str -gr -gs -5068.625 3134.625 m -5067.625 3132.625 L -1.25 slw 0 sg str -gr -gs -5067.625 3132.625 m -5066.625 3130.625 L -1.25 slw 0 sg str -gr -gs -5066.625 3130.625 m -5065.625 3128.625 L -1.25 slw 0 sg str -gr -gs -5065.625 3128.625 m -5065.625 3126.625 L -1.25 slw 0 sg str -gr -gs -5065.625 3126.625 m -5063.625 3123.625 L -1.25 slw 0 sg str -gr -gs -5063.625 3123.625 m -5062.625 3121.625 L -1.25 slw 0 sg str -gr -gs -5062.625 3121.625 m -5060.625 3118.625 L -1.25 slw 0 sg str -gr -gs -5060.625 3118.625 m -5058.625 3116.625 L -1.25 slw 0 sg str -gr -gs -5058.625 3116.625 m -5056.625 3112.625 L -1.25 slw 0 sg str -gr -gs -5056.625 3112.625 m -5053.625 3109.625 L -1.25 slw 0 sg str -gr -gs -5053.625 3109.625 m -5050.625 3105.625 L -1.25 slw 0 sg str -gr -gs -5050.625 3105.625 m -5047.625 3102.625 L -1.25 slw 0 sg str -gr -gs -5047.625 3102.625 m -5043.625 3097.625 L -1.25 slw 0 sg str -gr -gs -5043.625 3097.625 m -5039.625 3093.625 L -1.25 slw 0 sg str -gr -gs -5039.625 3093.625 m -5035.625 3088.625 L -1.25 slw 0 sg str -gr -gs -5035.625 3088.625 m -5031.625 3084.625 L -1.25 slw 0 sg str -gr -gs -5031.625 3084.625 m -5026.625 3078.625 L -1.25 slw 0 sg str -gr -gs -5026.625 3078.625 m -5021.625 3073.625 L -1.25 slw 0 sg str -gr -gs -5021.625 3073.625 m -5015.625 3067.625 L -1.25 slw 0 sg str -gr -gs -5015.625 3067.625 m -5010.625 3062.625 L -1.25 slw 0 sg str -gr -gs -5010.625 3062.625 m -5004.625 3056.625 L -1.25 slw 0 sg str -gr -gs -5004.625 3056.625 m -4998.625 3050.625 L -1.25 slw 0 sg str -gr -gs -4998.625 3050.625 m -4993.625 3045.625 L -1.25 slw 0 sg str -gr -gs -4993.625 3045.625 m -4989.625 3040.625 L -1.25 slw 0 sg str -gr -gs -4989.625 3040.625 m -4984.625 3036.625 L -1.25 slw 0 sg str -gr -gs -4984.625 3036.625 m -4980.625 3032.625 L -1.25 slw 0 sg str -gr -gs -4980.625 3032.625 m -4977.625 3028.625 L -1.25 slw 0 sg str -gr -gs -4977.625 3028.625 m -4973.625 3025.625 L -1.25 slw 0 sg str -gr -gs -4973.625 3025.625 m -4970.625 3022.625 L -1.25 slw 0 sg str -gr -gs -4970.625 3022.625 m -4968.625 3020.625 L -1.25 slw 0 sg str -gr -gs -4968.625 3020.625 m -4965.625 3018.625 L -1.25 slw 0 sg str -gr -gs -4965.625 3018.625 m -4963.625 3016.625 L -1.25 slw 0 sg str -gr -gs -4963.625 3016.625 m -4962.625 3015.625 L -1.25 slw 0 sg str -gr -gs -4962.625 3015.625 m -4960.625 3013.625 L -1.25 slw 0 sg str -gr -gs -4960.625 3013.625 m -4959.625 3013.625 L -1.25 slw 0 sg str -gr -gs -4959.625 3013.625 m -4958.625 3012.625 L -1.25 slw 0 sg str -gr -gs -4958.625 3012.625 m -4957.625 3012.625 L -1.25 slw 0 sg str -gr -gs -4957.625 3012.625 m -4955.625 3012.625 L -1.25 slw 0 sg str -gr -gs -4955.625 3012.625 m -4953.625 3011.625 L -1.25 slw 0 sg str -gr -gs -4953.625 3011.625 m -4951.625 3011.625 L -1.25 slw 0 sg str -gr -gs -4951.625 3011.625 m -4948.625 3010.625 L -1.25 slw 0 sg str -gr -gs -4948.625 3010.625 m -4945.625 3010.625 L -1.25 slw 0 sg str -gr -gs -4945.625 3010.625 m -4941.625 3009.625 L -1.25 slw 0 sg str -gr -gs -4941.625 3009.625 m -4937.625 3008.625 L -1.25 slw 0 sg str -gr -gs -4937.625 3008.625 m -4933.625 3007.625 L -1.25 slw 0 sg str -gr -gs -4933.625 3007.625 m -4928.625 3006.625 L -1.25 slw 0 sg str -gr -gs -4928.625 3006.625 m -4923.625 3005.625 L -1.25 slw 0 sg str -gr -gs -4923.625 3005.625 m -4917.625 3004.625 L -1.25 slw 0 sg str -gr -gs -4917.625 3004.625 m -4911.625 3003.625 L -1.25 slw 0 sg str -gr -gs -4911.625 3003.625 m -4904.625 3002.625 L -1.25 slw 0 sg str -gr -gs -4904.625 3002.625 m -4898.625 3001.625 L -1.25 slw 0 sg str -gr -gs -4898.625 3001.625 m -4890.625 2999.625 L -1.25 slw 0 sg str -gr -gs -4890.625 2999.625 m -4884.625 2998.625 L -1.25 slw 0 sg str -gr -gs -4884.625 2998.625 m -4878.625 2997.625 L -1.25 slw 0 sg str -gr -gs -4878.625 2997.625 m -4872.625 2996.625 L -1.25 slw 0 sg str -gr -gs -4872.625 2996.625 m -4867.625 2995.625 L -1.25 slw 0 sg str -gr -gs -4867.625 2995.625 m -4862.625 2994.625 L -1.25 slw 0 sg str -gr -gs -4862.625 2994.625 m -4857.625 2993.625 L -1.25 slw 0 sg str -gr -gs -4857.625 2993.625 m -4853.625 2993.625 L -1.25 slw 0 sg str -gr -gs -4853.625 2993.625 m -4850.625 2992.625 L -1.25 slw 0 sg str -gr -gs -4850.625 2992.625 m -4846.625 2992.625 L -1.25 slw 0 sg str -gr -gs -4846.625 2992.625 m -4844.625 2992.625 L -1.25 slw 0 sg str -gr -gs -4844.625 2992.625 m -4841.625 2992.625 L -1.25 slw 0 sg str -gr -gs -4841.625 2992.625 m -4840.625 2992.625 L -1.25 slw 0 sg str -gr -gs -4840.625 2992.625 m -4838.625 2992.625 L -1.25 slw 0 sg str -gr -gs -4838.625 2992.625 m -4837.625 2992.625 L -1.25 slw 0 sg str -gr -gs -4837.625 2992.625 m -4837.625 2993.625 L -1.25 slw 0 sg str -gr -gs -4837.625 2993.625 m -4836.625 2993.625 L -1.25 slw 0 sg str -gr -gs -4836.625 2993.625 m -4836.625 2994.625 L -1.25 slw 0 sg str -gr -gs -4836.625 2994.625 m -4835.625 2995.625 L -1.25 slw 0 sg str -gr -gs -4835.625 2995.625 m -4835.625 2996.625 L -1.25 slw 0 sg str -gr -gs -4835.625 2996.625 m -4835.625 2997.625 L -1.25 slw 0 sg str -gr -gs -4835.625 2997.625 m -4835.625 2998.625 L -1.25 slw 0 sg str -gr -gs -4835.625 2998.625 m -4834.625 3000.625 L -1.25 slw 0 sg str -gr -gs -4834.625 3000.625 m -4834.625 3001.625 L -1.25 slw 0 sg str -gr -gs -4834.625 3001.625 m -4834.625 3003.625 L -1.25 slw 0 sg str -gr -gs -4834.625 3003.625 m -4834.625 3005.625 L -1.25 slw 0 sg str -gr -gs -4834.625 3005.625 m -4834.625 3007.625 L -1.25 slw 0 sg str -gr -gs -4834.625 3007.625 m -4834.625 3009.625 L -1.25 slw 0 sg str -gr -gs -4834.625 3009.625 m -4834.625 3012.625 L -1.25 slw 0 sg str -gr -gs -4834.625 3012.625 m -4834.625 3014.625 L -1.25 slw 0 sg str -gr -gs -4834.625 3014.625 m -4834.625 3017.625 L -1.25 slw 0 sg str -gr -gs -4834.625 3017.625 m -4834.625 3020.625 L -1.25 slw 0 sg str -gr -gs -4834.625 3020.625 m -4834.625 3022.625 L -1.25 slw 0 sg str -gr -gs -4834.625 3022.625 m -4834.625 3025.625 L -1.25 slw 0 sg str -gr -gs -4834.625 3025.625 m -4834.625 3028.625 L -1.25 slw 0 sg str -gr -gs -4834.625 3028.625 m -4834.625 3031.625 L -1.25 slw 0 sg str -gr -gs -4834.625 3031.625 m -4835.625 3034.625 L -1.25 slw 0 sg str -gr -gs -4835.625 3034.625 m -4835.625 3037.625 L -1.25 slw 0 sg str -gr -gs -4835.625 3037.625 m -4836.625 3039.625 L -1.25 slw 0 sg str -gr -gs -4836.625 3039.625 m -4837.625 3042.625 L -1.25 slw 0 sg str -gr -gs -4837.625 3042.625 m -4838.625 3045.625 L -1.25 slw 0 sg str -gr -gs -4838.625 3045.625 m -4839.625 3048.625 L -1.25 slw 0 sg str -gr -gs -4839.625 3048.625 m -4840.625 3051.625 L -1.25 slw 0 sg str -gr -gs -4840.625 3051.625 m -4841.625 3053.625 L -1.25 slw 0 sg str -gr -gs -4841.625 3053.625 m -4842.625 3056.625 L -1.25 slw 0 sg str -gr -gs -4842.625 3056.625 m -4843.625 3059.625 L -1.25 slw 0 sg str -gr -gs -4843.625 3059.625 m -4845.625 3062.625 L -1.25 slw 0 sg str -gr -gs -4845.625 3062.625 m -4847.625 3065.625 L -1.25 slw 0 sg str -gr -gs -4847.625 3065.625 m -4848.625 3067.625 L -1.25 slw 0 sg str -gr -gs -4848.625 3067.625 m -4850.625 3070.625 L -1.25 slw 0 sg str -gr -gs -4850.625 3070.625 m -4852.625 3073.625 L -1.25 slw 0 sg str -gr -gs -4852.625 3073.625 m -4854.625 3076.625 L -1.25 slw 0 sg str -gr -gs -4854.625 3076.625 m -4857.625 3079.625 L -1.25 slw 0 sg str -gr -gs -4857.625 3079.625 m -4860.625 3082.625 L -1.25 slw 0 sg str -gr -gs -4860.625 3082.625 m -4863.625 3085.625 L -1.25 slw 0 sg str -gr -gs -4863.625 3085.625 m -4866.625 3088.625 L -1.25 slw 0 sg str -gr -gs -4866.625 3088.625 m -4869.625 3091.625 L -1.25 slw 0 sg str -gr -gs -4869.625 3091.625 m -4873.625 3094.625 L -1.25 slw 0 sg str -gr -gs -4873.625 3094.625 m -4877.625 3098.625 L -1.25 slw 0 sg str -gr -gs -4877.625 3098.625 m -4881.625 3101.625 L -1.25 slw 0 sg str -gr -gs -4881.625 3101.625 m -4885.625 3104.625 L -1.25 slw 0 sg str -gr -gs -4885.625 3104.625 m -4890.625 3107.625 L -1.25 slw 0 sg str -gr -gs -4890.625 3107.625 m -4894.625 3110.625 L -1.25 slw 0 sg str -gr -gs -4894.625 3110.625 m -4900.625 3114.625 L -1.25 slw 0 sg str -gr -gs -4900.625 3114.625 m -4905.625 3117.625 L -1.25 slw 0 sg str -gr -gs -4905.625 3117.625 m -4910.625 3120.625 L -1.25 slw 0 sg str -gr -gs -4910.625 3120.625 m -4914.625 3123.625 L -1.25 slw 0 sg str -gr -gs -4914.625 3123.625 m -4919.625 3126.625 L -1.25 slw 0 sg str -gr -gs -4919.625 3126.625 m -4924.625 3129.625 L -1.25 slw 0 sg str -gr -gs -4924.625 3129.625 m -4928.625 3131.625 L -1.25 slw 0 sg str -gr -gs -4928.625 3131.625 m -4932.625 3133.625 L -1.25 slw 0 sg str -gr -gs -4932.625 3133.625 m -4936.625 3136.625 L -1.25 slw 0 sg str -gr -gs -4936.625 3136.625 m -4939.625 3138.625 L -1.25 slw 0 sg str -gr -gs -4939.625 3138.625 m -4943.625 3140.625 L -1.25 slw 0 sg str -gr -gs -4943.625 3140.625 m -4946.625 3142.625 L -1.25 slw 0 sg str -gr -gs -4946.625 3142.625 m -4950.625 3143.625 L -1.25 slw 0 sg str -gr -gs -4950.625 3143.625 m -4953.625 3145.625 L -1.25 slw 0 sg str -gr -gs -4953.625 3145.625 m -4955.625 3146.625 L -1.25 slw 0 sg str -gr -gs -4955.625 3146.625 m -4958.625 3147.625 L -1.25 slw 0 sg str -gr -gs -4958.625 3147.625 m -4961.625 3149.625 L -1.25 slw 0 sg str -gr -gs -4961.625 3149.625 m -4963.625 3149.625 L -1.25 slw 0 sg str -gr -gs -4963.625 3149.625 m -4965.625 3150.625 L -1.25 slw 0 sg str -gr -gs -4965.625 3150.625 m -4967.625 3151.625 L -1.25 slw 0 sg str -gr -gs -4967.625 3151.625 m -4969.625 3152.625 L -1.25 slw 0 sg str -gr -gs -4969.625 3152.625 m -4971.625 3153.625 L -1.25 slw 0 sg str -gr -gs -4971.625 3153.625 m -4972.625 3154.625 L -1.25 slw 0 sg str -gr -gs -4972.625 3154.625 m -4974.625 3154.625 L -1.25 slw 0 sg str -gr -gs -4974.625 3154.625 m -4975.625 3155.625 L -1.25 slw 0 sg str -gr -gs -4975.625 3155.625 m -4976.625 3156.625 L -1.25 slw 0 sg str -gr -gs -4976.625 3156.625 m -4977.625 3156.625 L -1.25 slw 0 sg str -gr -gs -4977.625 3156.625 m -4978.625 3157.625 L -1.25 slw 0 sg str -gr -gs -4978.625 3157.625 m -4978.625 3158.625 L -1.25 slw 0 sg str -gr -gs -4978.625 3158.625 m -4979.625 3158.625 L -1.25 slw 0 sg str -gr -gs -4979.625 3158.625 m -4979.625 3159.625 L -1.25 slw 0 sg str -gr -gs -4979.625 3159.625 m -4978.625 3159.625 L -1.25 slw 0 sg str -gr -gs -4978.625 3159.625 m -4978.625 3160.625 L -1.25 slw 0 sg str -gr -gs -4978.625 3160.625 m -4977.625 3161.625 L -1.25 slw 0 sg str -gr -gs -4977.625 3161.625 m -4977.625 3162.625 L -1.25 slw 0 sg str -gr -gs -4977.625 3162.625 m -4976.625 3163.625 L -1.25 slw 0 sg str -gr -gs -4976.625 3163.625 m -4975.625 3165.625 L -1.25 slw 0 sg str -gr -gs -4975.625 3165.625 m -4975.625 3166.625 L -1.25 slw 0 sg str -gr -gs -4975.625 3166.625 m -4974.625 3168.625 L -1.25 slw 0 sg str -gr -gs -4974.625 3168.625 m -4973.625 3170.625 L -1.25 slw 0 sg str -gr -gs -4973.625 3170.625 m -4972.625 3172.625 L -1.25 slw 0 sg str -gr -gs -4972.625 3172.625 m -4972.625 3174.625 L -1.25 slw 0 sg str -gr -gs -4972.625 3174.625 m -4971.625 3177.625 L -1.25 slw 0 sg str -gr -gs -4971.625 3177.625 m -4970.625 3180.625 L -1.25 slw 0 sg str -gr -gs -4970.625 3180.625 m -4969.625 3182.625 L -1.25 slw 0 sg str -gr -gs -4969.625 3182.625 m -4968.625 3186.625 L -1.25 slw 0 sg str -gr -gs -4968.625 3186.625 m -4967.625 3189.625 L -1.25 slw 0 sg str -gr -gs -4967.625 3189.625 m -4966.625 3192.625 L -1.25 slw 0 sg str -gr -gs -4966.625 3192.625 m -4965.625 3195.625 L -1.25 slw 0 sg str -gr -gs -4965.625 3195.625 m -4964.625 3198.625 L -1.25 slw 0 sg str -gr -gs -4964.625 3198.625 m -4963.625 3202.625 L -1.25 slw 0 sg str -gr -gs -4963.625 3202.625 m -4962.625 3205.625 L -1.25 slw 0 sg str -gr -gs -4962.625 3205.625 m -4961.625 3208.625 L -1.25 slw 0 sg str -gr -gs -4961.625 3208.625 m -4960.625 3212.625 L -1.25 slw 0 sg str -gr -gs -4960.625 3212.625 m -4959.625 3215.625 L -1.25 slw 0 sg str -gr -gs -4959.625 3215.625 m -4958.625 3218.625 L -1.25 slw 0 sg str -gr -gs -4958.625 3218.625 m -4957.625 3222.625 L -1.25 slw 0 sg str -gr -gs -4957.625 3222.625 m -4956.625 3225.625 L -1.25 slw 0 sg str -gr -gs -4956.625 3225.625 m -4955.625 3229.625 L -1.25 slw 0 sg str -gr -gs -4955.625 3229.625 m -4954.625 3232.625 L -1.25 slw 0 sg str -gr -gs -4954.625 3232.625 m -4953.625 3236.625 L -1.25 slw 0 sg str -gr -gs -4953.625 3236.625 m -4953.625 3240.625 L -1.25 slw 0 sg str -gr -gs -4953.625 3240.625 m -4952.625 3243.625 L -1.25 slw 0 sg str -gr -gs -4952.625 3243.625 m -4951.625 3247.625 L -1.25 slw 0 sg str -gr -gs -4951.625 3247.625 m -4950.625 3250.625 L -1.25 slw 0 sg str -gr -gs -4950.625 3250.625 m -4949.625 3254.625 L -1.25 slw 0 sg str -gr -gs -4949.625 3254.625 m -4949.625 3257.625 L -1.25 slw 0 sg str -gr -gs -4949.625 3257.625 m -4948.625 3260.625 L -1.25 slw 0 sg str -gr -gs -4948.625 3260.625 m -4948.625 3263.625 L -1.25 slw 0 sg str -gr -gs -4948.625 3263.625 m -4947.625 3266.625 L -1.25 slw 0 sg str -gr -gs -4947.625 3266.625 m -4947.625 3269.625 L -1.25 slw 0 sg str -gr -gs -4947.625 3269.625 m -4946.625 3272.625 L -1.25 slw 0 sg str -gr -gs -4946.625 3272.625 m -4946.625 3274.625 L -1.25 slw 0 sg str -gr -gs -4946.625 3274.625 m -4945.625 3277.625 L -1.25 slw 0 sg str -gr -gs -4945.625 3277.625 m -4945.625 3279.625 L -1.25 slw 0 sg str -gr -gs -4945.625 3279.625 m -4945.625 3281.625 L -1.25 slw 0 sg str -gr -gs -4945.625 3281.625 m -4945.625 3283.625 L -1.25 slw 0 sg str -gr -gs -4945.625 3283.625 m -4945.625 3286.625 L -1.25 slw 0 sg str -gr -gs -4970 3006 4969 3006 4967 3007 4965 3008 4963 3008 4960 3008 4957 3009 4954 3008 -4950 3008 4948 3008 4948 2722 4950 2721 4954 2719 4958 2716 4962 2714 4966 2712 -4970 2710 4974 2709 4977 2708 4981 2707 4985 2707 4989 2707 4992 2707 4995 2707 -4998 2707 5002 2707 5005 2707 5008 2707 5011 2708 5014 2708 5017 2709 5020 2709 -5023 2710 5026 2710 5028 2711 5031 2712 5034 2713 5037 2714 5039 2715 5042 2716 -5044 2717 5046 2718 5048 2719 5050 2720 5052 2722 5054 2723 5056 2725 5057 2726 -5059 2728 5060 2729 5061 2731 5063 2733 5064 2735 5065 2737 5065 2738 5066 2741 -5067 2743 5067 2745 5068 2747 5068 2750 5068 2753 5068 2756 5068 2758 5068 2762 -5068 2765 5067 2768 5067 2771 5066 2775 5065 2779 5065 2783 5064 2786 5063 2790 -5062 2794 5061 2798 5060 2802 5058 2806 5057 2809 5056 2813 5055 2817 5053 2821 -5052 2825 5051 2828 5049 2832 5048 2836 5046 2840 5045 2844 5043 2847 5041 2851 -5039 2855 5037 2859 5035 2863 5034 2867 5032 2871 5030 2876 5028 2880 5026 2884 -5024 2888 5022 2892 5020 2897 5018 2901 5016 2905 5014 2910 5011 2914 5009 2918 -5007 2922 5005 2926 5004 2930 5002 2934 5000 2938 4998 2942 4997 2946 4995 2949 -4993 2953 4992 2957 4990 2960 4989 2964 4988 2967 4987 2971 4985 2974 4984 2977 -4983 2980 4981 2983 4980 2986 4979 2988 4978 2990 4977 2993 4976 2995 4975 2997 -4974 2999 4973 3000 4972 3002 4971 3003 4970 3004 4970 3006 133 P closepath -0.87 sg fill -gr -gs -4948 3008 4945 3008 4940 3007 4935 3007 4929 3006 4923 3005 4916 3003 4909 3002 -4902 3001 4894 2999 4887 2998 4880 2996 4874 2995 4868 2994 4863 2993 4858 2992 -4854 2992 4849 2991 4846 2990 4843 2990 4840 2989 4838 2989 4836 2989 4834 2989 -4833 2988 4832 2988 4831 2988 4831 2987 4830 2987 4830 2986 4829 2985 4829 2984 -4829 2982 4829 2981 4829 2980 4829 2978 4829 2976 4830 2974 4830 2972 4831 2970 -4831 2967 4832 2964 4833 2960 4834 2956 4835 2951 4836 2946 4838 2940 4840 2934 -4842 2928 4844 2920 4846 2913 4849 2904 4852 2896 4855 2886 4858 2877 4862 2867 -4865 2856 4869 2846 4872 2837 4876 2827 4880 2818 4883 2810 4887 2802 4891 2794 -4895 2787 4899 2779 4903 2773 4907 2766 4912 2760 4916 2755 4920 2749 4925 2745 -4929 2740 4933 2736 4937 2732 4942 2728 4946 2724 4948 2722 77 P -0.87 sg fill -gr -gs -4970.625 3006.625 m -4969.625 3006.625 L -1.25 slw 0 sg str -gr -gs -4969.625 3006.625 m -4967.625 3007.625 L -1.25 slw 0 sg str -gr -gs -4967.625 3007.625 m -4965.625 3008.625 L -1.25 slw 0 sg str -gr -gs -4965.625 3008.625 m -4963.625 3008.625 L -1.25 slw 0 sg str -gr -gs -4963.625 3008.625 m -4960.625 3008.625 L -1.25 slw 0 sg str -gr -gs -4960.625 3008.625 m -4957.625 3009.625 L -1.25 slw 0 sg str -gr -gs -4957.625 3009.625 m -4954.625 3008.625 L -1.25 slw 0 sg str -gr -gs -4954.625 3008.625 m -4950.625 3008.625 L -1.25 slw 0 sg str -gr -gs -4950.625 3008.625 m -4945.625 3008.625 L -1.25 slw 0 sg str -gr -gs -4945.625 3008.625 m -4940.625 3007.625 L -1.25 slw 0 sg str -gr -gs -4940.625 3007.625 m -4935.625 3007.625 L -1.25 slw 0 sg str -gr -gs -4935.625 3007.625 m -4929.625 3006.625 L -1.25 slw 0 sg str -gr -gs -4929.625 3006.625 m -4923.625 3005.625 L -1.25 slw 0 sg str -gr -gs -4923.625 3005.625 m -4916.625 3003.625 L -1.25 slw 0 sg str -gr -gs -4916.625 3003.625 m -4909.625 3002.625 L -1.25 slw 0 sg str -gr -gs -4909.625 3002.625 m -4902.625 3001.625 L -1.25 slw 0 sg str -gr -gs -4902.625 3001.625 m -4894.625 2999.625 L -1.25 slw 0 sg str -gr -gs -4894.625 2999.625 m -4887.625 2998.625 L -1.25 slw 0 sg str -gr -gs -4887.625 2998.625 m -4880.625 2996.625 L -1.25 slw 0 sg str -gr -gs -4880.625 2996.625 m -4874.625 2995.625 L -1.25 slw 0 sg str -gr -gs -4874.625 2995.625 m -4868.625 2994.625 L -1.25 slw 0 sg str -gr -gs -4868.625 2994.625 m -4863.625 2993.625 L -1.25 slw 0 sg str -gr -gs -4863.625 2993.625 m -4858.625 2992.625 L -1.25 slw 0 sg str -gr -gs -4858.625 2992.625 m -4854.625 2992.625 L -1.25 slw 0 sg str -gr -gs -4854.625 2992.625 m -4849.625 2991.625 L -1.25 slw 0 sg str -gr -gs -4849.625 2991.625 m -4846.625 2990.625 L -1.25 slw 0 sg str -gr -gs -4846.625 2990.625 m -4843.625 2990.625 L -1.25 slw 0 sg str -gr -gs -4843.625 2990.625 m -4840.625 2989.625 L -1.25 slw 0 sg str -gr -gs -4840.625 2989.625 m -4838.625 2989.625 L -1.25 slw 0 sg str -gr -gs -4838.625 2989.625 m -4836.625 2989.625 L -1.25 slw 0 sg str -gr -gs -4836.625 2989.625 m -4834.625 2989.625 L -1.25 slw 0 sg str -gr -gs -4834.625 2989.625 m -4833.625 2988.625 L -1.25 slw 0 sg str -gr -gs -4833.625 2988.625 m -4832.625 2988.625 L -1.25 slw 0 sg str -gr -gs -4832.625 2988.625 m -4831.625 2988.625 L -1.25 slw 0 sg str -gr -gs -4831.625 2988.625 m -4831.625 2987.625 L -1.25 slw 0 sg str -gr -gs -4831.625 2987.625 m -4830.625 2987.625 L -1.25 slw 0 sg str -gr -gs -4830.625 2987.625 m -4830.625 2986.625 L -1.25 slw 0 sg str -gr -gs -4830.625 2986.625 m -4829.625 2985.625 L -1.25 slw 0 sg str -gr -gs -4829.625 2985.625 m -4829.625 2984.625 L -1.25 slw 0 sg str -gr -gs -4829.625 2984.625 m -4829.625 2982.625 L -1.25 slw 0 sg str -gr -gs -4829.625 2982.625 m -4829.625 2981.625 L -1.25 slw 0 sg str -gr -gs -4829.625 2981.625 m -4829.625 2980.625 L -1.25 slw 0 sg str -gr -gs -4829.625 2980.625 m -4829.625 2978.625 L -1.25 slw 0 sg str -gr -gs -4829.625 2978.625 m -4829.625 2976.625 L -1.25 slw 0 sg str -gr -gs -4829.625 2976.625 m -4830.625 2974.625 L -1.25 slw 0 sg str -gr -gs -4830.625 2974.625 m -4830.625 2972.625 L -1.25 slw 0 sg str -gr -gs -4830.625 2972.625 m -4831.625 2970.625 L -1.25 slw 0 sg str -gr -gs -4831.625 2970.625 m -4831.625 2967.625 L -1.25 slw 0 sg str -gr -gs -4831.625 2967.625 m -4832.625 2964.625 L -1.25 slw 0 sg str -gr -gs -4832.625 2964.625 m -4833.625 2960.625 L -1.25 slw 0 sg str -gr -gs -4833.625 2960.625 m -4834.625 2956.625 L -1.25 slw 0 sg str -gr -gs -4834.625 2956.625 m -4835.625 2951.625 L -1.25 slw 0 sg str -gr -gs -4835.625 2951.625 m -4836.625 2946.625 L -1.25 slw 0 sg str -gr -gs -4836.625 2946.625 m -4838.625 2940.625 L -1.25 slw 0 sg str -gr -gs -4838.625 2940.625 m -4840.625 2934.625 L -1.25 slw 0 sg str -gr -gs -4840.625 2934.625 m -4842.625 2928.625 L -1.25 slw 0 sg str -gr -gs -4842.625 2928.625 m -4844.625 2920.625 L -1.25 slw 0 sg str -gr -gs -4844.625 2920.625 m -4846.625 2913.625 L -1.25 slw 0 sg str -gr -gs -4846.625 2913.625 m -4849.625 2904.625 L -1.25 slw 0 sg str -gr -gs -4849.625 2904.625 m -4852.625 2896.625 L -1.25 slw 0 sg str -gr -gs -4852.625 2896.625 m -4855.625 2886.625 L -1.25 slw 0 sg str -gr -gs -4855.625 2886.625 m -4858.625 2877.625 L -1.25 slw 0 sg str -gr -gs -4858.625 2877.625 m -4862.625 2867.625 L -1.25 slw 0 sg str -gr -gs -4862.625 2867.625 m -4865.625 2856.625 L -1.25 slw 0 sg str -gr -gs -4865.625 2856.625 m -4869.625 2846.625 L -1.25 slw 0 sg str -gr -gs -4869.625 2846.625 m -4872.625 2837.625 L -1.25 slw 0 sg str -gr -gs -4872.625 2837.625 m -4876.625 2827.625 L -1.25 slw 0 sg str -gr -gs -4876.625 2827.625 m -4880.625 2818.625 L -1.25 slw 0 sg str -gr -gs -4880.625 2818.625 m -4883.625 2810.625 L -1.25 slw 0 sg str -gr -gs -4883.625 2810.625 m -4887.625 2802.625 L -1.25 slw 0 sg str -gr -gs -4887.625 2802.625 m -4891.625 2794.625 L -1.25 slw 0 sg str -gr -gs -4891.625 2794.625 m -4895.625 2787.625 L -1.25 slw 0 sg str -gr -gs -4895.625 2787.625 m -4899.625 2779.625 L -1.25 slw 0 sg str -gr -gs -4899.625 2779.625 m -4903.625 2773.625 L -1.25 slw 0 sg str -gr -gs -4903.625 2773.625 m -4907.625 2766.625 L -1.25 slw 0 sg str -gr -gs -4907.625 2766.625 m -4912.625 2760.625 L -1.25 slw 0 sg str -gr -gs -4912.625 2760.625 m -4916.625 2755.625 L -1.25 slw 0 sg str -gr -gs -4916.625 2755.625 m -4920.625 2749.625 L -1.25 slw 0 sg str -gr -gs -4920.625 2749.625 m -4925.625 2745.625 L -1.25 slw 0 sg str -gr -gs -4925.625 2745.625 m -4929.625 2740.625 L -1.25 slw 0 sg str -gr -gs -4929.625 2740.625 m -4933.625 2736.625 L -1.25 slw 0 sg str -gr -gs -4933.625 2736.625 m -4937.625 2732.625 L -1.25 slw 0 sg str -gr -gs -4937.625 2732.625 m -4942.625 2728.625 L -1.25 slw 0 sg str -gr -gs -4942.625 2728.625 m -4946.625 2724.625 L -1.25 slw 0 sg str -gr -gs -4946.625 2724.625 m -4950.625 2721.625 L -1.25 slw 0 sg str -gr -gs -4950.625 2721.625 m -4954.625 2719.625 L -1.25 slw 0 sg str -gr -gs -4954.625 2719.625 m -4958.625 2716.625 L -1.25 slw 0 sg str -gr -gs -4958.625 2716.625 m -4962.625 2714.625 L -1.25 slw 0 sg str -gr -gs -4962.625 2714.625 m -4966.625 2712.625 L -1.25 slw 0 sg str -gr -gs -4966.625 2712.625 m -4970.625 2710.625 L -1.25 slw 0 sg str -gr -gs -4970.625 2710.625 m -4974.625 2709.625 L -1.25 slw 0 sg str -gr -gs -4974.625 2709.625 m -4977.625 2708.625 L -1.25 slw 0 sg str -gr -gs -4977.625 2708.625 m -4981.625 2707.625 L -1.25 slw 0 sg str -gr -gs -4981.625 2707.625 m -4985.625 2707.625 L -1.25 slw 0 sg str -gr -gs -4985.625 2707.625 m -4989.625 2707.625 L -1.25 slw 0 sg str -gr -gs -4989.625 2707.625 m -4992.625 2707.625 L -1.25 slw 0 sg str -gr -gs -4992.625 2707.625 m -4995.625 2707.625 L -1.25 slw 0 sg str -gr -gs -4995.625 2707.625 m -4998.625 2707.625 L -1.25 slw 0 sg str -gr -gs -4998.625 2707.625 m -5002.625 2707.625 L -1.25 slw 0 sg str -gr -gs -5002.625 2707.625 m -5005.625 2707.625 L -1.25 slw 0 sg str -gr -gs -5005.625 2707.625 m -5008.625 2707.625 L -1.25 slw 0 sg str -gr -gs -5008.625 2707.625 m -5011.625 2708.625 L -1.25 slw 0 sg str -gr -gs -5011.625 2708.625 m -5014.625 2708.625 L -1.25 slw 0 sg str -gr -gs -5014.625 2708.625 m -5017.625 2709.625 L -1.25 slw 0 sg str -gr -gs -5017.625 2709.625 m -5020.625 2709.625 L -1.25 slw 0 sg str -gr -gs -5020.625 2709.625 m -5023.625 2710.625 L -1.25 slw 0 sg str -gr -gs -5023.625 2710.625 m -5026.625 2710.625 L -1.25 slw 0 sg str -gr -gs -5026.625 2710.625 m -5028.625 2711.625 L -1.25 slw 0 sg str -gr -gs -5028.625 2711.625 m -5031.625 2712.625 L -1.25 slw 0 sg str -gr -gs -5031.625 2712.625 m -5034.625 2713.625 L -1.25 slw 0 sg str -gr -gs -5034.625 2713.625 m -5037.625 2714.625 L -1.25 slw 0 sg str -gr -gs -5037.625 2714.625 m -5039.625 2715.625 L -1.25 slw 0 sg str -gr -gs -5039.625 2715.625 m -5042.625 2716.625 L -1.25 slw 0 sg str -gr -gs -5042.625 2716.625 m -5044.625 2717.625 L -1.25 slw 0 sg str -gr -gs -5044.625 2717.625 m -5046.625 2718.625 L -1.25 slw 0 sg str -gr -gs -5046.625 2718.625 m -5048.625 2719.625 L -1.25 slw 0 sg str -gr -gs -5048.625 2719.625 m -5050.625 2720.625 L -1.25 slw 0 sg str -gr -gs -5050.625 2720.625 m -5052.625 2722.625 L -1.25 slw 0 sg str -gr -gs -5052.625 2722.625 m -5054.625 2723.625 L -1.25 slw 0 sg str -gr -gs -5054.625 2723.625 m -5056.625 2725.625 L -1.25 slw 0 sg str -gr -gs -5056.625 2725.625 m -5057.625 2726.625 L -1.25 slw 0 sg str -gr -gs -5057.625 2726.625 m -5059.625 2728.625 L -1.25 slw 0 sg str -gr -gs -5059.625 2728.625 m -5060.625 2729.625 L -1.25 slw 0 sg str -gr -gs -5060.625 2729.625 m -5061.625 2731.625 L -1.25 slw 0 sg str -gr -gs -5061.625 2731.625 m -5063.625 2733.625 L -1.25 slw 0 sg str -gr -gs -5063.625 2733.625 m -5064.625 2735.625 L -1.25 slw 0 sg str -gr -gs -5064.625 2735.625 m -5065.625 2737.625 L -1.25 slw 0 sg str -gr -gs -5065.625 2737.625 m -5065.625 2738.625 L -1.25 slw 0 sg str -gr -gs -5065.625 2738.625 m -5066.625 2741.625 L -1.25 slw 0 sg str -gr -gs -5066.625 2741.625 m -5067.625 2743.625 L -1.25 slw 0 sg str -gr -gs -5067.625 2743.625 m -5067.625 2745.625 L -1.25 slw 0 sg str -gr -gs -5067.625 2745.625 m -5068.625 2747.625 L -1.25 slw 0 sg str -gr -gs -5068.625 2747.625 m -5068.625 2750.625 L -1.25 slw 0 sg str -gr -gs -5068.625 2750.625 m -5068.625 2753.625 L -1.25 slw 0 sg str -gr -gs -5068.625 2753.625 m -5068.625 2756.625 L -1.25 slw 0 sg str -gr -gs -5068.625 2756.625 m -5068.625 2758.625 L -1.25 slw 0 sg str -gr -gs -5068.625 2758.625 m -5068.625 2762.625 L -1.25 slw 0 sg str -gr -gs -5068.625 2762.625 m -5068.625 2765.625 L -1.25 slw 0 sg str -gr -gs -5068.625 2765.625 m -5067.625 2768.625 L -1.25 slw 0 sg str -gr -gs -5067.625 2768.625 m -5067.625 2771.625 L -1.25 slw 0 sg str -gr -gs -5067.625 2771.625 m -5066.625 2775.625 L -1.25 slw 0 sg str -gr -gs -5066.625 2775.625 m -5065.625 2779.625 L -1.25 slw 0 sg str -gr -gs -5065.625 2779.625 m -5065.625 2783.625 L -1.25 slw 0 sg str -gr -gs -5065.625 2783.625 m -5064.625 2786.625 L -1.25 slw 0 sg str -gr -gs -5064.625 2786.625 m -5063.625 2790.625 L -1.25 slw 0 sg str -gr -gs -5063.625 2790.625 m -5062.625 2794.625 L -1.25 slw 0 sg str -gr -gs -5062.625 2794.625 m -5061.625 2798.625 L -1.25 slw 0 sg str -gr -gs -5061.625 2798.625 m -5060.625 2802.625 L -1.25 slw 0 sg str -gr -gs -5060.625 2802.625 m -5058.625 2806.625 L -1.25 slw 0 sg str -gr -gs -5058.625 2806.625 m -5057.625 2809.625 L -1.25 slw 0 sg str -gr -gs -5057.625 2809.625 m -5056.625 2813.625 L -1.25 slw 0 sg str -gr -gs -5056.625 2813.625 m -5055.625 2817.625 L -1.25 slw 0 sg str -gr -gs -5055.625 2817.625 m -5053.625 2821.625 L -1.25 slw 0 sg str -gr -gs -5053.625 2821.625 m -5052.625 2825.625 L -1.25 slw 0 sg str -gr -gs -5052.625 2825.625 m -5051.625 2828.625 L -1.25 slw 0 sg str -gr -gs -5051.625 2828.625 m -5049.625 2832.625 L -1.25 slw 0 sg str -gr -gs -5049.625 2832.625 m -5048.625 2836.625 L -1.25 slw 0 sg str -gr -gs -5048.625 2836.625 m -5046.625 2840.625 L -1.25 slw 0 sg str -gr -gs -5046.625 2840.625 m -5045.625 2844.625 L -1.25 slw 0 sg str -gr -gs -5045.625 2844.625 m -5043.625 2847.625 L -1.25 slw 0 sg str -gr -gs -5043.625 2847.625 m -5041.625 2851.625 L -1.25 slw 0 sg str -gr -gs -5041.625 2851.625 m -5039.625 2855.625 L -1.25 slw 0 sg str -gr -gs -5039.625 2855.625 m -5037.625 2859.625 L -1.25 slw 0 sg str -gr -gs -5037.625 2859.625 m -5035.625 2863.625 L -1.25 slw 0 sg str -gr -gs -5035.625 2863.625 m -5034.625 2867.625 L -1.25 slw 0 sg str -gr -gs -5034.625 2867.625 m -5032.625 2871.625 L -1.25 slw 0 sg str -gr -gs -5032.625 2871.625 m -5030.625 2876.625 L -1.25 slw 0 sg str -gr -gs -5030.625 2876.625 m -5028.625 2880.625 L -1.25 slw 0 sg str -gr -gs -5028.625 2880.625 m -5026.625 2884.625 L -1.25 slw 0 sg str -gr -gs -5026.625 2884.625 m -5024.625 2888.625 L -1.25 slw 0 sg str -gr -gs -5024.625 2888.625 m -5022.625 2892.625 L -1.25 slw 0 sg str -gr -gs -5022.625 2892.625 m -5020.625 2897.625 L -1.25 slw 0 sg str -gr -gs -5020.625 2897.625 m -5018.625 2901.625 L -1.25 slw 0 sg str -gr -gs -5018.625 2901.625 m -5016.625 2905.625 L -1.25 slw 0 sg str -gr -gs -5016.625 2905.625 m -5014.625 2910.625 L -1.25 slw 0 sg str -gr -gs -5014.625 2910.625 m -5011.625 2914.625 L -1.25 slw 0 sg str -gr -gs -5011.625 2914.625 m -5009.625 2918.625 L -1.25 slw 0 sg str -gr -gs -5009.625 2918.625 m -5007.625 2922.625 L -1.25 slw 0 sg str -gr -gs -5007.625 2922.625 m -5005.625 2926.625 L -1.25 slw 0 sg str -gr -gs -5005.625 2926.625 m -5004.625 2930.625 L -1.25 slw 0 sg str -gr -gs -5004.625 2930.625 m -5002.625 2934.625 L -1.25 slw 0 sg str -gr -gs -5002.625 2934.625 m -5000.625 2938.625 L -1.25 slw 0 sg str -gr -gs -5000.625 2938.625 m -4998.625 2942.625 L -1.25 slw 0 sg str -gr -gs -4998.625 2942.625 m -4997.625 2946.625 L -1.25 slw 0 sg str -gr -gs -4997.625 2946.625 m -4995.625 2949.625 L -1.25 slw 0 sg str -gr -gs -4995.625 2949.625 m -4993.625 2953.625 L -1.25 slw 0 sg str -gr -gs -4993.625 2953.625 m -4992.625 2957.625 L -1.25 slw 0 sg str -gr -gs -4992.625 2957.625 m -4990.625 2960.625 L -1.25 slw 0 sg str -gr -gs -4990.625 2960.625 m -4989.625 2964.625 L -1.25 slw 0 sg str -gr -gs -4989.625 2964.625 m -4988.625 2967.625 L -1.25 slw 0 sg str -gr -gs -4988.625 2967.625 m -4987.625 2971.625 L -1.25 slw 0 sg str -gr -gs -4987.625 2971.625 m -4985.625 2974.625 L -1.25 slw 0 sg str -gr -gs -4985.625 2974.625 m -4984.625 2977.625 L -1.25 slw 0 sg str -gr -gs -4984.625 2977.625 m -4983.625 2980.625 L -1.25 slw 0 sg str -gr -gs -4983.625 2980.625 m -4981.625 2983.625 L -1.25 slw 0 sg str -gr -gs -4981.625 2983.625 m -4980.625 2986.625 L -1.25 slw 0 sg str -gr -gs -4980.625 2986.625 m -4979.625 2988.625 L -1.25 slw 0 sg str -gr -gs -4979.625 2988.625 m -4978.625 2990.625 L -1.25 slw 0 sg str -gr -gs -4978.625 2990.625 m -4977.625 2993.625 L -1.25 slw 0 sg str -gr -gs -4977.625 2993.625 m -4976.625 2995.625 L -1.25 slw 0 sg str -gr -gs -4976.625 2995.625 m -4975.625 2997.625 L -1.25 slw 0 sg str -gr -gs -4975.625 2997.625 m -4974.625 2999.625 L -1.25 slw 0 sg str -gr -gs -4974.625 2999.625 m -4973.625 3000.625 L -1.25 slw 0 sg str -gr -gs -4973.625 3000.625 m -4972.625 3002.625 L -1.25 slw 0 sg str -gr -gs -4972.625 3002.625 m -4971.625 3003.625 L -1.25 slw 0 sg str -gr -gs -4971.625 3003.625 m -4970.625 3004.625 L -1.25 slw 0 sg str -gr -gs -4970.625 3004.625 m -4970.625 3006.625 L -1.25 slw 0 sg str -gr -gs -5022 2790 5052 2806 5048 2809 5045 2813 5042 2816 5039 2820 5036 2823 5033 2827 -5030 2830 5028 2833 5025 2836 5023 2839 5022 2841 12 P -0.87 sg fill -gr -gs -5022 2958 5024 2959 5030 2961 5036 2964 5043 2966 5049 2968 5056 2971 5062 2973 -5068 2975 5073 2976 5079 2978 5084 2980 5088 2981 5092 2982 5096 2983 5100 2984 -5103 2984 5106 2985 5108 2985 5110 2985 5112 2985 5113 2985 5115 2985 5115 2984 -5116 2983 5117 2983 5118 2982 5119 2982 5119 2981 5120 2981 5121 2980 5122 2979 -5123 2979 5123 2978 5124 2977 5125 2976 5126 2976 5126 2975 5126 2974 5127 2973 -5127 2972 5128 2971 5128 2970 5129 2970 5129 2969 5130 2968 5131 2967 5131 2966 -5132 2966 5132 2965 5133 2965 5133 2964 5133 2963 5133 2962 5133 2961 5133 2960 -5132 2959 5132 2958 5131 2957 5131 2956 5130 2955 5129 2954 5128 2953 5127 2952 -5126 2951 5125 2951 5123 2950 5122 2949 5121 2948 5119 2947 5118 2946 5117 2945 -5116 2944 5114 2943 5113 2942 5112 2941 5110 2940 5109 2939 5108 2938 5106 2937 -5105 2936 5104 2936 5102 2934 5101 2933 5099 2932 5097 2931 5094 2929 5092 2927 -5089 2926 5086 2924 5082 2922 5079 2920 5075 2917 5071 2915 5066 2913 5062 2910 -5057 2907 5052 2905 5046 2902 5041 2899 5037 2897 5033 2894 5029 2892 5025 2890 -5022 2888 104 P -0.87 sg fill -gr -gs -5022 2790 5022 2841 5021 2842 5019 2845 5017 2848 5016 2850 5014 2853 5013 2856 -5011 2858 5010 2860 5009 2862 5008 2864 5008 2866 5007 2868 5006 2869 5006 2871 -5005 2872 5005 2873 5005 2875 5005 2876 5005 2877 5005 2878 5006 2879 5007 2880 -5008 2880 5010 2881 5011 2882 5013 2884 5016 2885 5019 2887 5022 2888 5022 2958 -5018 2957 5012 2955 5007 2953 5001 2951 4996 2949 4990 2948 4985 2946 4980 2944 -4974 2943 4969 2941 4965 2940 4960 2938 4955 2936 4951 2935 4947 2933 4943 2932 -4939 2930 4936 2928 4933 2927 4930 2925 4927 2923 4925 2922 4923 2920 4921 2918 -4920 2916 4919 2914 4918 2913 4917 2911 4916 2909 4915 2907 4914 2905 4914 2903 -4913 2901 4913 2899 4912 2897 4912 2895 4911 2893 4911 2891 4911 2889 4911 2887 -4911 2885 4911 2883 4911 2882 4911 2880 4911 2878 4911 2875 4911 2873 4912 2871 -4912 2868 4913 2866 4914 2863 4915 2860 4916 2857 4917 2854 4918 2851 4920 2847 -4921 2844 4923 2840 4925 2837 4926 2833 4928 2829 4930 2825 4932 2822 4933 2818 -4935 2814 4937 2811 4939 2808 4940 2804 4942 2801 4944 2798 4946 2795 4947 2791 -4949 2788 4951 2785 4953 2783 4967 2760 107 P -0.87 sg fill -gr -gs -5052.625 2806.625 m -5048.625 2809.625 L -1.25 slw 0 sg str -gr -gs -5048.625 2809.625 m -5045.625 2813.625 L -1.25 slw 0 sg str -gr -gs -5045.625 2813.625 m -5042.625 2816.625 L -1.25 slw 0 sg str -gr -gs -5042.625 2816.625 m -5039.625 2820.625 L -1.25 slw 0 sg str -gr -gs -5039.625 2820.625 m -5036.625 2823.625 L -1.25 slw 0 sg str -gr -gs -5036.625 2823.625 m -5033.625 2827.625 L -1.25 slw 0 sg str -gr -gs -5033.625 2827.625 m -5030.625 2830.625 L -1.25 slw 0 sg str -gr -gs -5030.625 2830.625 m -5028.625 2833.625 L -1.25 slw 0 sg str -gr -gs -5028.625 2833.625 m -5025.625 2836.625 L -1.25 slw 0 sg str -gr -gs -5025.625 2836.625 m -5023.625 2839.625 L -1.25 slw 0 sg str -gr -gs -5023.625 2839.625 m -5021.625 2842.625 L -1.25 slw 0 sg str -gr -gs -5021.625 2842.625 m -5019.625 2845.625 L -1.25 slw 0 sg str -gr -gs -5019.625 2845.625 m -5017.625 2848.625 L -1.25 slw 0 sg str -gr -gs -5017.625 2848.625 m -5016.625 2850.625 L -1.25 slw 0 sg str -gr -gs -5016.625 2850.625 m -5014.625 2853.625 L -1.25 slw 0 sg str -gr -gs -5014.625 2853.625 m -5013.625 2856.625 L -1.25 slw 0 sg str -gr -gs -5013.625 2856.625 m -5011.625 2858.625 L -1.25 slw 0 sg str -gr -gs -5011.625 2858.625 m -5010.625 2860.625 L -1.25 slw 0 sg str -gr -gs -5010.625 2860.625 m -5009.625 2862.625 L -1.25 slw 0 sg str -gr -gs -5009.625 2862.625 m -5008.625 2864.625 L -1.25 slw 0 sg str -gr -gs -5008.625 2864.625 m -5008.625 2866.625 L -1.25 slw 0 sg str -gr -gs -5008.625 2866.625 m -5007.625 2868.625 L -1.25 slw 0 sg str -gr -gs -5007.625 2868.625 m -5006.625 2869.625 L -1.25 slw 0 sg str -gr -gs -5006.625 2869.625 m -5006.625 2871.625 L -1.25 slw 0 sg str -gr -gs -5006.625 2871.625 m -5005.625 2872.625 L -1.25 slw 0 sg str -gr -gs -5005.625 2872.625 m -5005.625 2873.625 L -1.25 slw 0 sg str -gr -gs -5005.625 2873.625 m -5005.625 2875.625 L -1.25 slw 0 sg str -gr -gs -5005.625 2875.625 m -5005.625 2876.625 L -1.25 slw 0 sg str -gr -gs -5005.625 2876.625 m -5005.625 2877.625 L -1.25 slw 0 sg str -gr -gs -5005.625 2877.625 m -5005.625 2878.625 L -1.25 slw 0 sg str -gr -gs -5005.625 2878.625 m -5006.625 2879.625 L -1.25 slw 0 sg str -gr -gs -5006.625 2879.625 m -5007.625 2880.625 L -1.25 slw 0 sg str -gr -gs -5007.625 2880.625 m -5008.625 2880.625 L -1.25 slw 0 sg str -gr -gs -5008.625 2880.625 m -5010.625 2881.625 L -1.25 slw 0 sg str -gr -gs -5010.625 2881.625 m -5011.625 2882.625 L -1.25 slw 0 sg str -gr -gs -5011.625 2882.625 m -5013.625 2884.625 L -1.25 slw 0 sg str -gr -gs -5013.625 2884.625 m -5016.625 2885.625 L -1.25 slw 0 sg str -gr -gs -5016.625 2885.625 m -5019.625 2887.625 L -1.25 slw 0 sg str -gr -gs -5019.625 2887.625 m -5022.625 2888.625 L -1.25 slw 0 sg str -gr -gs -5022.625 2888.625 m -5025.625 2890.625 L -1.25 slw 0 sg str -gr -gs -5025.625 2890.625 m -5029.625 2892.625 L -1.25 slw 0 sg str -gr -gs -5029.625 2892.625 m -5033.625 2894.625 L -1.25 slw 0 sg str -gr -gs -5033.625 2894.625 m -5037.625 2897.625 L -1.25 slw 0 sg str -gr -gs -5037.625 2897.625 m -5041.625 2899.625 L -1.25 slw 0 sg str -gr -gs -5041.625 2899.625 m -5046.625 2902.625 L -1.25 slw 0 sg str -gr -gs -5046.625 2902.625 m -5052.625 2905.625 L -1.25 slw 0 sg str -gr -gs -5052.625 2905.625 m -5057.625 2907.625 L -1.25 slw 0 sg str -gr -gs -5057.625 2907.625 m -5062.625 2910.625 L -1.25 slw 0 sg str -gr -gs -5062.625 2910.625 m -5066.625 2913.625 L -1.25 slw 0 sg str -gr -gs -5066.625 2913.625 m -5071.625 2915.625 L -1.25 slw 0 sg str -gr -gs -5071.625 2915.625 m -5075.625 2917.625 L -1.25 slw 0 sg str -gr -gs -5075.625 2917.625 m -5079.625 2920.625 L -1.25 slw 0 sg str -gr -gs -5079.625 2920.625 m -5082.625 2922.625 L -1.25 slw 0 sg str -gr -gs -5082.625 2922.625 m -5086.625 2924.625 L -1.25 slw 0 sg str -gr -gs -5086.625 2924.625 m -5089.625 2926.625 L -1.25 slw 0 sg str -gr -gs -5089.625 2926.625 m -5092.625 2927.625 L -1.25 slw 0 sg str -gr -gs -5092.625 2927.625 m -5094.625 2929.625 L -1.25 slw 0 sg str -gr -gs -5094.625 2929.625 m -5097.625 2931.625 L -1.25 slw 0 sg str -gr -gs -5097.625 2931.625 m -5099.625 2932.625 L -1.25 slw 0 sg str -gr -gs -5099.625 2932.625 m -5101.625 2933.625 L -1.25 slw 0 sg str -gr -gs -5101.625 2933.625 m -5102.625 2934.625 L -1.25 slw 0 sg str -gr -gs -5102.625 2934.625 m -5104.625 2936.625 L -1.25 slw 0 sg str -gr -gs -5104.625 2936.625 m -5105.625 2936.625 L -1.25 slw 0 sg str -gr -gs -5105.625 2936.625 m -5106.625 2937.625 L -1.25 slw 0 sg str -gr -gs -5106.625 2937.625 m -5108.625 2938.625 L -1.25 slw 0 sg str -gr -gs -5108.625 2938.625 m -5109.625 2939.625 L -1.25 slw 0 sg str -gr -gs -5109.625 2939.625 m -5110.625 2940.625 L -1.25 slw 0 sg str -gr -gs -5110.625 2940.625 m -5112.625 2941.625 L -1.25 slw 0 sg str -gr -gs -5112.625 2941.625 m -5113.625 2942.625 L -1.25 slw 0 sg str -gr -gs -5113.625 2942.625 m -5114.625 2943.625 L -1.25 slw 0 sg str -gr -gs -5114.625 2943.625 m -5116.625 2944.625 L -1.25 slw 0 sg str -gr -gs -5116.625 2944.625 m -5117.625 2945.625 L -1.25 slw 0 sg str -gr -gs -5117.625 2945.625 m -5118.625 2946.625 L -1.25 slw 0 sg str -gr -gs -5118.625 2946.625 m -5119.625 2947.625 L -1.25 slw 0 sg str -gr -gs -5119.625 2947.625 m -5121.625 2948.625 L -1.25 slw 0 sg str -gr -gs -5121.625 2948.625 m -5122.625 2949.625 L -1.25 slw 0 sg str -gr -gs -5122.625 2949.625 m -5123.625 2950.625 L -1.25 slw 0 sg str -gr -gs -5123.625 2950.625 m -5125.625 2951.625 L -1.25 slw 0 sg str -gr -gs -5125.625 2951.625 m -5126.625 2951.625 L -1.25 slw 0 sg str -gr -gs -5126.625 2951.625 m -5127.625 2952.625 L -1.25 slw 0 sg str -gr -gs -5127.625 2952.625 m -5128.625 2953.625 L -1.25 slw 0 sg str -gr -gs -5128.625 2953.625 m -5129.625 2954.625 L -1.25 slw 0 sg str -gr -gs -5129.625 2954.625 m -5130.625 2955.625 L -1.25 slw 0 sg str -gr -gs -5130.625 2955.625 m -5131.625 2956.625 L -1.25 slw 0 sg str -gr -gs -5131.625 2956.625 m -5131.625 2957.625 L -1.25 slw 0 sg str -gr -gs -5131.625 2957.625 m -5132.625 2958.625 L -1.25 slw 0 sg str -gr -gs -5132.625 2958.625 m -5132.625 2959.625 L -1.25 slw 0 sg str -gr -gs -5132.625 2959.625 m -5133.625 2960.625 L -1.25 slw 0 sg str -gr -gs -5133.625 2960.625 m -5133.625 2961.625 L -1.25 slw 0 sg str -gr -gs -5133.625 2961.625 m -5133.625 2962.625 L -1.25 slw 0 sg str -gr -gs -5133.625 2962.625 m -5133.625 2963.625 L -1.25 slw 0 sg str -gr -gs -5133.625 2963.625 m -5133.625 2964.625 L -1.25 slw 0 sg str -gr -gs -5133.625 2964.625 m -5133.625 2965.625 L -1.25 slw 0 sg str -gr -gs -5133.625 2965.625 m -5132.625 2965.625 L -1.25 slw 0 sg str -gr -gs -5132.625 2965.625 m -5132.625 2966.625 L -1.25 slw 0 sg str -gr -gs -5132.625 2966.625 m -5131.625 2966.625 L -1.25 slw 0 sg str -gr -gs -5131.625 2966.625 m -5131.625 2967.625 L -1.25 slw 0 sg str -gr -gs -5131.625 2967.625 m -5130.625 2968.625 L -1.25 slw 0 sg str -gr -gs -5130.625 2968.625 m -5129.625 2969.625 L -1.25 slw 0 sg str -gr -gs -5129.625 2969.625 m -5129.625 2970.625 L -1.25 slw 0 sg str -gr -gs -5129.625 2970.625 m -5128.625 2970.625 L -1.25 slw 0 sg str -gr -gs -5128.625 2970.625 m -5128.625 2971.625 L -1.25 slw 0 sg str -gr -gs -5128.625 2971.625 m -5127.625 2972.625 L -1.25 slw 0 sg str -gr -gs -5127.625 2972.625 m -5127.625 2973.625 L -1.25 slw 0 sg str -gr -gs -5127.625 2973.625 m -5126.625 2974.625 L -1.25 slw 0 sg str -gr -gs -5126.625 2974.625 m -5126.625 2975.625 L -1.25 slw 0 sg str -gr -gs -5126.625 2975.625 m -5126.625 2976.625 L -1.25 slw 0 sg str -gr -gs -5126.625 2976.625 m -5125.625 2976.625 L -1.25 slw 0 sg str -gr -gs -5125.625 2976.625 m -5124.625 2977.625 L -1.25 slw 0 sg str -gr -gs -5124.625 2977.625 m -5123.625 2978.625 L -1.25 slw 0 sg str -gr -gs -5123.625 2978.625 m -5123.625 2979.625 L -1.25 slw 0 sg str -gr -gs -5123.625 2979.625 m -5122.625 2979.625 L -1.25 slw 0 sg str -gr -gs -5122.625 2979.625 m -5121.625 2980.625 L -1.25 slw 0 sg str -gr -gs -5121.625 2980.625 m -5120.625 2981.625 L -1.25 slw 0 sg str -gr -gs -5120.625 2981.625 m -5119.625 2981.625 L -1.25 slw 0 sg str -gr -gs -5119.625 2981.625 m -5119.625 2982.625 L -1.25 slw 0 sg str -gr -gs -5119.625 2982.625 m -5118.625 2982.625 L -1.25 slw 0 sg str -gr -gs -5118.625 2982.625 m -5117.625 2983.625 L -1.25 slw 0 sg str -gr -gs -5117.625 2983.625 m -5116.625 2983.625 L -1.25 slw 0 sg str -gr -gs -5116.625 2983.625 m -5115.625 2984.625 L -1.25 slw 0 sg str -gr -gs -5115.625 2984.625 m -5115.625 2985.625 L -1.25 slw 0 sg str -gr -gs -5115.625 2985.625 m -5113.625 2985.625 L -1.25 slw 0 sg str -gr -gs -5113.625 2985.625 m -5112.625 2985.625 L -1.25 slw 0 sg str -gr -gs -5112.625 2985.625 m -5110.625 2985.625 L -1.25 slw 0 sg str -gr -gs -5110.625 2985.625 m -5108.625 2985.625 L -1.25 slw 0 sg str -gr -gs -5108.625 2985.625 m -5106.625 2985.625 L -1.25 slw 0 sg str -gr -gs -5106.625 2985.625 m -5103.625 2984.625 L -1.25 slw 0 sg str -gr -gs -5103.625 2984.625 m -5100.625 2984.625 L -1.25 slw 0 sg str -gr -gs -5100.625 2984.625 m -5096.625 2983.625 L -1.25 slw 0 sg str -gr -gs -5096.625 2983.625 m -5092.625 2982.625 L -1.25 slw 0 sg str -gr -gs -5092.625 2982.625 m -5088.625 2981.625 L -1.25 slw 0 sg str -gr -gs -5088.625 2981.625 m -5084.625 2980.625 L -1.25 slw 0 sg str -gr -gs -5084.625 2980.625 m -5079.625 2978.625 L -1.25 slw 0 sg str -gr -gs -5079.625 2978.625 m -5073.625 2976.625 L -1.25 slw 0 sg str -gr -gs -5073.625 2976.625 m -5068.625 2975.625 L -1.25 slw 0 sg str -gr -gs -5068.625 2975.625 m -5062.625 2973.625 L -1.25 slw 0 sg str -gr -gs -5062.625 2973.625 m -5056.625 2971.625 L -1.25 slw 0 sg str -gr -gs -5056.625 2971.625 m -5049.625 2968.625 L -1.25 slw 0 sg str -gr -gs -5049.625 2968.625 m -5043.625 2966.625 L -1.25 slw 0 sg str -gr -gs -5043.625 2966.625 m -5036.625 2964.625 L -1.25 slw 0 sg str -gr -gs -5036.625 2964.625 m -5030.625 2961.625 L -1.25 slw 0 sg str -gr -gs -5030.625 2961.625 m -5024.625 2959.625 L -1.25 slw 0 sg str -gr -gs -5024.625 2959.625 m -5018.625 2957.625 L -1.25 slw 0 sg str -gr -gs -5018.625 2957.625 m -5012.625 2955.625 L -1.25 slw 0 sg str -gr -gs -5012.625 2955.625 m -5007.625 2953.625 L -1.25 slw 0 sg str -gr -gs -5007.625 2953.625 m -5001.625 2951.625 L -1.25 slw 0 sg str -gr -gs -5001.625 2951.625 m -4996.625 2949.625 L -1.25 slw 0 sg str -gr -gs -4996.625 2949.625 m -4990.625 2948.625 L -1.25 slw 0 sg str -gr -gs -4990.625 2948.625 m -4985.625 2946.625 L -1.25 slw 0 sg str -gr -gs -4985.625 2946.625 m -4980.625 2944.625 L -1.25 slw 0 sg str -gr -gs -4980.625 2944.625 m -4974.625 2943.625 L -1.25 slw 0 sg str -gr -gs -4974.625 2943.625 m -4969.625 2941.625 L -1.25 slw 0 sg str -gr -gs -4969.625 2941.625 m -4965.625 2940.625 L -1.25 slw 0 sg str -gr -gs -4965.625 2940.625 m -4960.625 2938.625 L -1.25 slw 0 sg str -gr -gs -4960.625 2938.625 m -4955.625 2936.625 L -1.25 slw 0 sg str -gr -gs -4955.625 2936.625 m -4951.625 2935.625 L -1.25 slw 0 sg str -gr -gs -4951.625 2935.625 m -4947.625 2933.625 L -1.25 slw 0 sg str -gr -gs -4947.625 2933.625 m -4943.625 2932.625 L -1.25 slw 0 sg str -gr -gs -4943.625 2932.625 m -4939.625 2930.625 L -1.25 slw 0 sg str -gr -gs -4939.625 2930.625 m -4936.625 2928.625 L -1.25 slw 0 sg str -gr -gs -4936.625 2928.625 m -4933.625 2927.625 L -1.25 slw 0 sg str -gr -gs -4933.625 2927.625 m -4930.625 2925.625 L -1.25 slw 0 sg str -gr -gs -4930.625 2925.625 m -4927.625 2923.625 L -1.25 slw 0 sg str -gr -gs -4927.625 2923.625 m -4925.625 2922.625 L -1.25 slw 0 sg str -gr -gs -4925.625 2922.625 m -4923.625 2920.625 L -1.25 slw 0 sg str -gr -gs -4923.625 2920.625 m -4921.625 2918.625 L -1.25 slw 0 sg str -gr -gs -4921.625 2918.625 m -4920.625 2916.625 L -1.25 slw 0 sg str -gr -gs -4920.625 2916.625 m -4919.625 2914.625 L -1.25 slw 0 sg str -gr -gs -4919.625 2914.625 m -4918.625 2913.625 L -1.25 slw 0 sg str -gr -gs -4918.625 2913.625 m -4917.625 2911.625 L -1.25 slw 0 sg str -gr -gs -4917.625 2911.625 m -4916.625 2909.625 L -1.25 slw 0 sg str -gr -gs -4916.625 2909.625 m -4915.625 2907.625 L -1.25 slw 0 sg str -gr -gs -4915.625 2907.625 m -4914.625 2905.625 L -1.25 slw 0 sg str -gr -gs -4914.625 2905.625 m -4914.625 2903.625 L -1.25 slw 0 sg str -gr -gs -4914.625 2903.625 m -4913.625 2901.625 L -1.25 slw 0 sg str -gr -gs -4913.625 2901.625 m -4913.625 2899.625 L -1.25 slw 0 sg str -gr -gs -4913.625 2899.625 m -4912.625 2897.625 L -1.25 slw 0 sg str -gr -gs -4912.625 2897.625 m -4912.625 2895.625 L -1.25 slw 0 sg str -gr -gs -4912.625 2895.625 m -4911.625 2893.625 L -1.25 slw 0 sg str -gr -gs -4911.625 2893.625 m -4911.625 2891.625 L -1.25 slw 0 sg str -gr -gs -4911.625 2891.625 m -4911.625 2889.625 L -1.25 slw 0 sg str -gr -gs -4911.625 2889.625 m -4911.625 2887.625 L -1.25 slw 0 sg str -gr -gs -4911.625 2887.625 m -4911.625 2885.625 L -1.25 slw 0 sg str -gr -gs -4911.625 2885.625 m -4911.625 2883.625 L -1.25 slw 0 sg str -gr -gs -4911.625 2883.625 m -4911.625 2882.625 L -1.25 slw 0 sg str -gr -gs -4911.625 2882.625 m -4911.625 2880.625 L -1.25 slw 0 sg str -gr -gs -4911.625 2880.625 m -4911.625 2878.625 L -1.25 slw 0 sg str -gr -gs -4911.625 2878.625 m -4911.625 2875.625 L -1.25 slw 0 sg str -gr -gs -4911.625 2875.625 m -4911.625 2873.625 L -1.25 slw 0 sg str -gr -gs -4911.625 2873.625 m -4912.625 2871.625 L -1.25 slw 0 sg str -gr -gs -4912.625 2871.625 m -4912.625 2868.625 L -1.25 slw 0 sg str -gr -gs -4912.625 2868.625 m -4913.625 2866.625 L -1.25 slw 0 sg str -gr -gs -4913.625 2866.625 m -4914.625 2863.625 L -1.25 slw 0 sg str -gr -gs -4914.625 2863.625 m -4915.625 2860.625 L -1.25 slw 0 sg str -gr -gs -4915.625 2860.625 m -4916.625 2857.625 L -1.25 slw 0 sg str -gr -gs -4916.625 2857.625 m -4917.625 2854.625 L -1.25 slw 0 sg str -gr -gs -4917.625 2854.625 m -4918.625 2851.625 L -1.25 slw 0 sg str -gr -gs -4918.625 2851.625 m -4920.625 2847.625 L -1.25 slw 0 sg str -gr -gs -4920.625 2847.625 m -4921.625 2844.625 L -1.25 slw 0 sg str -gr -gs -4921.625 2844.625 m -4923.625 2840.625 L -1.25 slw 0 sg str -gr -gs -4923.625 2840.625 m -4925.625 2837.625 L -1.25 slw 0 sg str -gr -gs -4925.625 2837.625 m -4926.625 2833.625 L -1.25 slw 0 sg str -gr -gs -4926.625 2833.625 m -4928.625 2829.625 L -1.25 slw 0 sg str -gr -gs -4928.625 2829.625 m -4930.625 2825.625 L -1.25 slw 0 sg str -gr -gs -4930.625 2825.625 m -4932.625 2822.625 L -1.25 slw 0 sg str -gr -gs -4932.625 2822.625 m -4933.625 2818.625 L -1.25 slw 0 sg str -gr -gs -4933.625 2818.625 m -4935.625 2814.625 L -1.25 slw 0 sg str -gr -gs -4935.625 2814.625 m -4937.625 2811.625 L -1.25 slw 0 sg str -gr -gs -4937.625 2811.625 m -4939.625 2808.625 L -1.25 slw 0 sg str -gr -gs -4939.625 2808.625 m -4940.625 2804.625 L -1.25 slw 0 sg str -gr -gs -4940.625 2804.625 m -4942.625 2801.625 L -1.25 slw 0 sg str -gr -gs -4942.625 2801.625 m -4944.625 2798.625 L -1.25 slw 0 sg str -gr -gs -4944.625 2798.625 m -4946.625 2795.625 L -1.25 slw 0 sg str -gr -gs -4946.625 2795.625 m -4947.625 2791.625 L -1.25 slw 0 sg str -gr -gs -4947.625 2791.625 m -4949.625 2788.625 L -1.25 slw 0 sg str -gr -gs -4949.625 2788.625 m -4951.625 2785.625 L -1.25 slw 0 sg str -gr -gs -4951.625 2785.625 m -4953.625 2783.625 L -1.25 slw 0 sg str -gr -gs -4953.625 2783.625 m -4967.625 2760.625 L -1.25 slw 0 sg str -gr -gs -5124 2975 5125 2973 5126 2972 5127 2971 5128 2970 5129 2969 5131 2968 5132 2967 -5133 2967 5135 2966 5136 2965 5137 2965 5139 2965 5140 2965 5142 2964 5143 2964 -5145 2965 5146 2965 5148 2965 5149 2965 5151 2966 5152 2967 5154 2967 5155 2968 -5157 2969 5159 2970 5160 2972 5162 2973 5164 2974 5165 2976 5167 2978 5169 2980 -5171 2982 5172 2983 5174 2985 5175 2987 5176 2989 5177 2990 5178 2992 5179 2993 -5179 2995 5180 2996 5180 2998 5180 2999 5180 3000 5179 3001 5179 3002 5178 3003 -5178 3005 5177 3005 5176 3006 5175 3007 5174 3008 5173 3009 5172 3010 5171 3011 -5171 3012 5170 3013 5169 3014 5168 3015 5167 3016 5166 3017 5165 3018 5164 3019 -5164 3020 5163 3020 5162 3021 5161 3022 5160 3022 5158 3023 5157 3023 5156 3023 -5155 3023 5153 3023 5152 3023 5151 3023 5149 3022 5148 3022 5146 3021 5144 3020 -5143 3020 5141 3018 5139 3017 5137 3016 5136 3015 5134 3014 5133 3013 5132 3012 -5130 3010 5129 3009 5128 3008 5127 3006 5125 3005 5124 3003 5123 3002 5122 3000 -5122 2999 5121 2997 5120 2995 5119 2994 5119 2992 5119 2991 5119 2989 5118 2988 -5119 2986 5119 2985 5119 2983 5119 2982 5120 2980 5121 2979 5122 2977 5122 2976 -5124 2975 112 P closepath -0.5 sg fill -gr -gs -5124 2975 5125 2973 5126 2972 5127 2971 5128 2970 5129 2969 5131 2968 5132 2967 -5133 2967 5135 2966 5136 2965 5137 2965 5139 2965 5140 2965 5142 2964 5143 2964 -5145 2965 5146 2965 5148 2965 5149 2965 5151 2966 5152 2967 5154 2967 5155 2968 -5157 2969 5159 2970 5160 2972 5162 2973 5164 2974 5165 2976 5167 2978 5169 2980 -5171 2982 5172 2983 5174 2985 5175 2987 5176 2989 5177 2990 5178 2992 5179 2993 -5179 2995 5180 2996 5180 2998 5180 2999 5180 3000 5179 3001 5179 3002 5178 3003 -5178 3005 5177 3005 5176 3006 5175 3007 5174 3008 5173 3009 5172 3010 5171 3011 -5171 3012 5170 3013 5169 3014 5168 3015 5167 3016 5166 3017 5165 3018 5164 3019 -5164 3020 5163 3020 5162 3021 5161 3022 5160 3022 5158 3023 5157 3023 5156 3023 -5155 3023 5153 3023 5152 3023 5151 3023 5149 3022 5148 3022 5146 3021 5144 3020 -5143 3020 5141 3018 5139 3017 5137 3016 5136 3015 5134 3014 5133 3013 5132 3012 -5130 3010 5129 3009 5128 3008 5127 3006 5125 3005 5124 3003 5123 3002 5122 3000 -5122 2999 5121 2997 5120 2995 5119 2994 5119 2992 5119 2991 5119 2989 5118 2988 -5119 2986 5119 2985 5119 2983 5119 2982 5120 2980 5121 2979 5122 2977 5122 2976 -5124 2975 112 P closepath -1.25 slw 0 sg str -gr -gs -4826 3311 4827 3311 4828 3311 4829 3312 4830 3312 4831 3313 4832 3313 4833 3314 -4835 3315 4836 3315 4837 3316 4838 3317 4839 3317 4840 3318 4841 3319 4842 3320 -4844 3321 4844 3322 4845 3323 4846 3324 4847 3325 4848 3326 4848 3327 4849 3328 -4850 3329 4850 3330 4851 3331 4852 3332 4852 3333 4853 3334 4853 3335 4854 3336 -4855 3338 4855 3339 4855 3340 4856 3341 4856 3342 4856 3343 4857 3344 4857 3345 -4857 3346 4857 3347 4857 3348 4857 3349 4857 3350 4856 3350 4856 3351 4856 3352 -4856 3353 4855 3353 4854 3353 4854 3354 4853 3354 4852 3355 4851 3355 4850 3355 -4849 3355 4848 3355 4847 3355 4846 3354 4845 3354 4844 3354 4843 3354 4841 3353 -4840 3353 4839 3353 4838 3352 4836 3352 4835 3351 4834 3351 4833 3350 4832 3349 -4831 3349 4830 3348 4829 3347 4828 3346 4827 3345 4826 3344 4825 3344 4824 3343 -4823 3342 4822 3341 4821 3340 4820 3339 4819 3338 4818 3337 4818 3336 4817 3335 -4816 3334 4815 3332 4815 3331 4814 3330 4814 3329 4813 3328 4813 3327 4812 3325 -4812 3324 4811 3323 4811 3322 4811 3321 4810 3320 4810 3319 4810 3318 4810 3317 -4810 3316 4810 3315 4811 3315 4811 3314 4811 3313 4812 3313 4812 3312 4813 3312 -4813 3311 4814 3311 4815 3311 4815 3310 4816 3310 4817 3310 4818 3310 4819 3310 -4820 3310 4821 3310 4822 3310 4823 3310 4824 3310 4826 3311 125 P closepath -1 sg fill -gr -gs -4826 3311 4827 3311 4828 3311 4829 3312 4830 3312 4831 3313 4832 3313 4833 3314 -4835 3315 4836 3315 4837 3316 4838 3317 4839 3317 4840 3318 4841 3319 4842 3320 -4844 3321 4844 3322 4845 3323 4846 3324 4847 3325 4848 3326 4848 3327 4849 3328 -4850 3329 4850 3330 4851 3331 4852 3332 4852 3333 4853 3334 4853 3335 4854 3336 -4855 3338 4855 3339 4855 3340 4856 3341 4856 3342 4856 3343 4857 3344 4857 3345 -4857 3346 4857 3347 4857 3348 4857 3349 4857 3350 4856 3350 4856 3351 4856 3352 -4856 3353 4855 3353 4854 3353 4854 3354 4853 3354 4852 3355 4851 3355 4850 3355 -4849 3355 4848 3355 4847 3355 4846 3354 4845 3354 4844 3354 4843 3354 4841 3353 -4840 3353 4839 3353 4838 3352 4836 3352 4835 3351 4834 3351 4833 3350 4832 3349 -4831 3349 4830 3348 4829 3347 4828 3346 4827 3345 4826 3344 4825 3344 4824 3343 -4823 3342 4822 3341 4821 3340 4820 3339 4819 3338 4818 3337 4818 3336 4817 3335 -4816 3334 4815 3332 4815 3331 4814 3330 4814 3329 4813 3328 4813 3327 4812 3325 -4812 3324 4811 3323 4811 3322 4811 3321 4810 3320 4810 3319 4810 3318 4810 3317 -4810 3316 4810 3315 4811 3315 4811 3314 4811 3313 4812 3313 4812 3312 4813 3312 -4813 3311 4814 3311 4815 3311 4815 3310 4816 3310 4817 3310 4818 3310 4819 3310 -4820 3310 4821 3310 4822 3310 4823 3310 4824 3310 4826 3311 125 P closepath -1.25 slw 0 sg str -gr -gs -4834.625 3333.625 m -5129.625 3012.625 L -1.25 slw 0 sg str -gr -gs -5157.625 2981.625 m -5185.625 2951.625 L -1.25 slw 0 sg str -gr -gs -4825.625 3345.625 m -4806.625 3363.625 L -1.25 slw 0 sg str -gr -gs -4988 2707 4986 2701 4984 2695 4983 2690 4982 2685 4981 2680 4980 2675 4979 2671 -4979 2666 4979 2662 4979 2658 4979 2654 4979 2650 4979 2647 4980 2644 4981 2640 -4982 2638 4982 2635 4983 2632 4984 2629 4986 2627 4987 2624 4988 2621 4990 2619 -4992 2617 4993 2614 4995 2612 4997 2610 5000 2608 5002 2605 5004 2603 5007 2601 -5010 2600 5012 2598 5015 2596 5017 2594 5020 2593 5023 2592 5025 2591 5028 2590 -5031 2590 5033 2589 5036 2589 5038 2589 5041 2589 5044 2589 5046 2590 5049 2591 -5052 2592 5054 2593 5056 2594 5059 2595 5061 2596 5063 2598 5066 2600 5068 2601 -5070 2603 5072 2605 5074 2607 5076 2610 5078 2612 5080 2614 5082 2617 5084 2620 -5086 2623 5087 2625 5089 2628 5090 2631 5092 2634 5093 2637 5094 2640 5094 2643 -5095 2646 5095 2648 5096 2651 5096 2654 5096 2657 5095 2660 5095 2663 5094 2666 -5094 2669 5092 2671 5091 2674 5090 2677 5089 2679 5088 2682 5087 2684 5085 2687 -5084 2689 5083 2691 5081 2694 5080 2696 5078 2698 5077 2700 5075 2702 5073 2704 -5072 2707 5058 2722 97 P -1 sg fill -gr -gs -4988 2707 4986 2701 4984 2695 4983 2690 4982 2685 4981 2680 4980 2675 4979 2671 -4979 2666 4979 2662 4979 2658 4979 2654 4979 2650 4979 2647 4980 2644 4981 2640 -4982 2638 4982 2635 4983 2632 4984 2629 4986 2627 4987 2624 4988 2621 4990 2619 -4992 2617 4993 2614 4995 2612 4997 2610 5000 2608 5002 2605 5004 2603 5007 2601 -5010 2600 5012 2598 5015 2596 5017 2594 5020 2593 5023 2592 5025 2591 5028 2590 -5031 2590 5033 2589 5036 2589 5038 2589 5041 2589 5044 2589 5046 2590 5049 2591 -5052 2592 5054 2593 5056 2594 5059 2595 5061 2596 5063 2598 5066 2600 5068 2601 -5070 2603 5072 2605 5074 2607 5076 2610 5078 2612 5080 2614 5082 2617 5084 2620 -5086 2623 5087 2625 5089 2628 5090 2631 5092 2634 5093 2637 5094 2640 5094 2643 -5095 2646 5095 2648 5096 2651 5096 2654 5096 2657 5095 2660 5095 2663 5094 2666 -5094 2669 5092 2671 5091 2674 5090 2677 5089 2679 5088 2682 5087 2684 5085 2687 -5084 2689 5083 2691 5081 2694 5080 2696 5078 2698 5077 2700 5075 2702 5073 2704 -5072 2707 5058 2722 97 P -1.25 slw 0 sg str -gr -gs -4967 2654 4968 2656 4969 2658 4971 2660 4973 2662 4976 2664 4979 2665 4982 2666 -4986 2666 4990 2667 4995 2667 5000 2666 5005 2666 5011 2665 5017 2664 5024 2662 -5031 2661 5037 2659 5043 2657 5049 2655 5055 2654 5060 2653 5064 2652 5068 2650 -5072 2650 5076 2649 5079 2648 5081 2647 5083 2647 5085 2647 5086 2647 5087 2646 -5088 2647 5089 2647 5089 2646 5090 2646 5091 2645 5092 2644 5092 2643 5093 2642 -5094 2641 5095 2640 5095 2638 5096 2637 5096 2636 5097 2635 5097 2634 5097 2632 -5097 2631 5097 2630 5097 2629 5097 2628 5097 2627 5096 2626 5096 2625 5095 2624 -5094 2623 5093 2621 5092 2620 5090 2619 5089 2618 5088 2617 5086 2616 5085 2614 -5083 2613 5081 2611 5079 2610 5077 2608 5075 2607 5073 2605 5071 2603 5068 2601 -5066 2600 5063 2598 5060 2596 5058 2594 5055 2593 5053 2591 5051 2590 5048 2589 -5046 2588 5044 2587 5042 2586 5040 2585 5038 2585 5036 2584 5034 2584 5032 2584 -5031 2584 5029 2584 5027 2584 5025 2584 5024 2584 5022 2584 5020 2585 5018 2585 -5017 2586 5015 2586 5013 2587 5011 2587 5010 2588 5008 2589 5006 2590 5004 2591 -5003 2592 5001 2593 4999 2594 4997 2595 4995 2596 4993 2597 4991 2598 4990 2600 -4988 2601 4986 2603 4984 2604 4982 2606 4981 2607 4979 2609 4977 2611 4975 2613 -4974 2615 4972 2616 4970 2618 4969 2620 4968 2623 4967 2625 4966 2627 4965 2629 -4965 2632 4964 2634 4964 2637 4964 2639 4964 2642 4965 2645 4965 2648 4966 2651 -4967 2654 136 P closepath -0 0 0 1 1 1 [238 221 187 119 238 221 187 119] patfill -gr -gs -4967 2654 4968 2656 4969 2658 4971 2660 4973 2662 4976 2664 4979 2665 4982 2666 -4986 2666 4990 2667 4995 2667 5000 2666 5005 2666 5011 2665 5017 2664 5024 2662 -5031 2661 5037 2659 5043 2657 5049 2655 5055 2654 5060 2653 5064 2652 5068 2650 -5072 2650 5076 2649 5079 2648 5081 2647 5083 2647 5085 2647 5086 2647 5087 2646 -5088 2647 5089 2647 5089 2646 5090 2646 5091 2645 5092 2644 5092 2643 5093 2642 -5094 2641 5095 2640 5095 2638 5096 2637 5096 2636 5097 2635 5097 2634 5097 2632 -5097 2631 5097 2630 5097 2629 5097 2628 5097 2627 5096 2626 5096 2625 5095 2624 -5094 2623 5093 2621 5092 2620 5090 2619 5089 2618 5088 2617 5086 2616 5085 2614 -5083 2613 5081 2611 5079 2610 5077 2608 5075 2607 5073 2605 5071 2603 5068 2601 -5066 2600 5063 2598 5060 2596 5058 2594 5055 2593 5053 2591 5051 2590 5048 2589 -5046 2588 5044 2587 5042 2586 5040 2585 5038 2585 5036 2584 5034 2584 5032 2584 -5031 2584 5029 2584 5027 2584 5025 2584 5024 2584 5022 2584 5020 2585 5018 2585 -5017 2586 5015 2586 5013 2587 5011 2587 5010 2588 5008 2589 5006 2590 5004 2591 -5003 2592 5001 2593 4999 2594 4997 2595 4995 2596 4993 2597 4991 2598 4990 2600 -4988 2601 4986 2603 4984 2604 4982 2606 4981 2607 4979 2609 4977 2611 4975 2613 -4974 2615 4972 2616 4970 2618 4969 2620 4968 2623 4967 2625 4966 2627 4965 2629 -4965 2632 4964 2634 4964 2637 4964 2639 4964 2642 4965 2645 4965 2648 4966 2651 -4967 2654 136 P closepath -1.25 slw 0 sg str -gr -gs -6456 4151 6612 4377 R -1 sg fill -gr -/_Times-Roman ff [208 0 0 -208 0 0] mf sf -6456 4307 m 0 sg (d) show -gs -6950 5015 7055 5310 R -1 sg fill -gr -/_Symbol ff [208 0 0 -208 0 0] mf sf -6950 5240 m 0 sg (q) show -gs -4502 3444 4454 3443 4406 3440 4357 3435 4310 3428 4262 3419 4218 3409 4502 2272 -7 P -1 sg fill -gr -gs -4502 3444 4454 3443 4406 3440 4357 3435 4310 3428 4262 3419 4218 3409 6 P -1.25 slw 0 sg str -gr -gs -4502.625 3444.625 m -5518.625 3444.625 L -1.25 slw 0 sg str -gr -gs -5518.625 3444.625 m -7393.625 5319.625 L -1.25 slw 0 sg str -gr -gs -5518.625 3444.625 m -5635.625 3327.625 L -1.25 slw 0 sg str -gr -gs -7393.625 5319.625 m -7510.625 5202.625 L -1.25 slw 0 sg str -gr -gs -7452 5260 7301 5173 7365 5109 2 P -0 sg fill -gr -gs -6612.625 4421.625 m -7333.625 5141.625 L -1.25 slw 0 sg str -gr -gs -5596 3405 5747 3492 5683 3556 2 P -0 sg fill -gr -gs -6338.625 4147.625 m -5715.625 3524.625 L -1.25 slw 0 sg str -gr -gs -5458 3346 5451 3367 5444 3380 5436 3391 5426 3401 5415 3409 5402 3416 5389 3421 -5376 3424 5362 3424 5362 3327 10 P -1 sg fill -gr -gs -5424 3312 5417 3333 5410 3346 5402 3357 5392 3367 5381 3375 5368 3382 5355 3387 -5342 3390 5328 3390 9 P -35 slw 0 sg str -gr -gs -5362.5 3424.5 m -4678.5 3424.5 L -35 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob12.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob12.gif deleted file mode 100755 index ed100eddd..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob12.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob12.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob12.pdf deleted file mode 100644 index d0c42505d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob12.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v1.eps deleted file mode 100755 index d103cfaac..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v1.eps +++ /dev/null @@ -1,1184 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_x1 -%%Creation Date: Sun, Sep 10, 1995 06:45 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 240.88 558.00 240.88 MacLine -grestore -1.00 ps -561.50 240.38 558.00 240.38 MacLine -62.50 240.38 66.00 240.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 232.88 558.00 232.88 MacLine -grestore -1.00 ps -561.50 232.38 558.00 232.38 MacLine -62.50 232.38 66.00 232.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 224.75 558.00 224.75 MacLine -grestore -1.00 ps -561.50 224.25 558.00 224.25 MacLine -62.50 224.25 66.00 224.25 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 216.50 554.50 216.50 MacLine -grestore -1.00 ps -561.50 216.12 554.50 216.12 MacLine -62.50 216.12 69.50 216.12 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(-200) 27.00 221.00 32.00 WS -gsave 0.125 ps [1] sd -66.00 208.50 558.00 208.50 MacLine -grestore -1.00 ps -561.50 208.00 558.00 208.00 MacLine -62.50 208.00 66.00 208.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 200.50 558.00 200.50 MacLine -grestore -1.00 ps -561.50 200.00 558.00 200.00 MacLine -62.50 200.00 66.00 200.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 192.38 558.00 192.38 MacLine -grestore -1.00 ps -561.50 191.88 558.00 191.88 MacLine -62.50 191.88 66.00 191.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 184.25 558.00 184.25 MacLine -grestore -1.00 ps -561.50 183.75 558.00 183.75 MacLine -62.50 183.75 66.00 183.75 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 176.00 554.50 176.00 MacLine -grestore -1.00 ps -561.50 175.62 554.50 175.62 MacLine -62.50 175.62 69.50 175.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-150) 27.00 180.50 32.00 WS -gsave 0.125 ps [1] sd -66.00 168.12 558.00 168.12 MacLine -grestore -1.00 ps -561.50 167.62 558.00 167.62 MacLine -62.50 167.62 66.00 167.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 160.00 558.00 160.00 MacLine -grestore -1.00 ps -561.50 159.50 558.00 159.50 MacLine -62.50 159.50 66.00 159.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 151.88 558.00 151.88 MacLine -grestore -1.00 ps -561.50 151.38 558.00 151.38 MacLine -62.50 151.38 66.00 151.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 143.88 558.00 143.88 MacLine -grestore -1.00 ps -561.50 143.38 558.00 143.38 MacLine -62.50 143.38 66.00 143.38 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 135.62 554.50 135.62 MacLine -grestore -1.00 ps -561.50 135.25 554.50 135.25 MacLine -62.50 135.25 69.50 135.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-100) 27.00 140.12 32.00 WS -gsave 0.125 ps [1] sd -66.00 127.62 558.00 127.62 MacLine -grestore -1.00 ps -561.50 127.12 558.00 127.12 MacLine -62.50 127.12 66.00 127.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 119.50 558.00 119.50 MacLine -grestore -1.00 ps -561.50 119.00 558.00 119.00 MacLine -62.50 119.00 66.00 119.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 111.50 558.00 111.50 MacLine -grestore -1.00 ps -561.50 111.00 558.00 111.00 MacLine -62.50 111.00 66.00 111.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 103.38 558.00 103.38 MacLine -grestore -1.00 ps -561.50 102.88 558.00 102.88 MacLine -62.50 102.88 66.00 102.88 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 95.12 554.50 95.12 MacLine -grestore -1.00 ps -561.50 94.75 554.50 94.75 MacLine -62.50 94.75 69.50 94.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-50) 35.88 99.62 23.12 WS -gsave 0.125 ps [1] sd -66.00 87.25 558.00 87.25 MacLine -grestore -1.00 ps -561.50 86.75 558.00 86.75 MacLine -62.50 86.75 66.00 86.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 79.12 558.00 79.12 MacLine -grestore -1.00 ps -561.50 78.62 558.00 78.62 MacLine -62.50 78.62 66.00 78.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 71.00 558.00 71.00 MacLine -grestore -1.00 ps -561.50 70.50 558.00 70.50 MacLine -62.50 70.50 66.00 70.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 62.88 558.00 62.88 MacLine -grestore -1.00 ps -561.50 62.38 558.00 62.38 MacLine -62.50 62.38 66.00 62.38 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 54.75 554.50 54.75 MacLine -grestore -1.00 ps -561.50 54.38 554.50 54.38 MacLine -62.50 54.38 69.50 54.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 50.12 59.25 8.88 WS -gsave 0.125 ps [1] sd -66.00 46.75 558.00 46.75 MacLine -grestore -1.00 ps -561.50 46.25 558.00 46.25 MacLine -62.50 46.25 66.00 46.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 38.62 558.00 38.62 MacLine -grestore -1.00 ps -561.50 38.12 558.00 38.12 MacLine -62.50 38.12 66.00 38.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 30.62 558.00 30.62 MacLine -grestore -1.00 ps -561.50 30.12 558.00 30.12 MacLine -62.50 30.12 66.00 30.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 22.50 558.00 22.50 MacLine -grestore -1.00 ps -561.50 22.00 558.00 22.00 MacLine -62.50 22.00 66.00 22.00 MacLine -1 ps -1.00 ps -561.50 13.88 554.50 13.88 MacLine -62.50 13.88 69.50 13.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(50) 41.25 18.75 17.75 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(x \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -558.38 239.00 558.38 17.00 MacLine -grestore -1.00 ps -557.88 13.50 557.88 17.00 MacLine -557.88 242.50 557.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -551.25 239.00 551.25 17.00 MacLine -grestore -1.00 ps -550.75 13.50 550.75 17.00 MacLine -550.75 242.50 550.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -544.12 237.25 544.12 18.75 MacLine -grestore -1.00 ps -543.62 13.50 543.62 18.75 MacLine -543.62 242.50 543.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -537.00 239.00 537.00 17.00 MacLine -grestore -1.00 ps -536.50 13.50 536.50 17.00 MacLine -536.50 242.50 536.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -529.88 239.00 529.88 17.00 MacLine -grestore -1.00 ps -529.38 13.50 529.38 17.00 MacLine -529.38 242.50 529.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.75 239.00 522.75 17.00 MacLine -grestore -1.00 ps -522.25 13.50 522.25 17.00 MacLine -522.25 242.50 522.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -515.62 239.00 515.62 17.00 MacLine -grestore -1.00 ps -515.12 13.50 515.12 17.00 MacLine -515.12 242.50 515.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -508.38 235.50 508.38 20.50 MacLine -grestore -1.00 ps -508.00 13.50 508.00 20.50 MacLine -508.00 242.50 508.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 504.12 259.88 8.88 WS -gsave 0.125 ps [1] sd -501.38 239.00 501.38 17.00 MacLine -grestore -1.00 ps -500.88 13.50 500.88 17.00 MacLine -500.88 242.50 500.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -494.25 239.00 494.25 17.00 MacLine -grestore -1.00 ps -493.75 13.50 493.75 17.00 MacLine -493.75 242.50 493.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.12 239.00 487.12 17.00 MacLine -grestore -1.00 ps -486.62 13.50 486.62 17.00 MacLine -486.62 242.50 486.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.00 239.00 480.00 17.00 MacLine -grestore -1.00 ps -479.50 13.50 479.50 17.00 MacLine -479.50 242.50 479.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.88 237.25 472.88 18.75 MacLine -grestore -1.00 ps -472.38 13.50 472.38 18.75 MacLine -472.38 242.50 472.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -465.75 239.00 465.75 17.00 MacLine -grestore -1.00 ps -465.25 13.50 465.25 17.00 MacLine -465.25 242.50 465.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -458.62 239.00 458.62 17.00 MacLine -grestore -1.00 ps -458.12 13.50 458.12 17.00 MacLine -458.12 242.50 458.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -451.50 239.00 451.50 17.00 MacLine -grestore -1.00 ps -451.00 13.50 451.00 17.00 MacLine -451.00 242.50 451.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -444.38 239.00 444.38 17.00 MacLine -grestore -1.00 ps -443.88 13.50 443.88 17.00 MacLine -443.88 242.50 443.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -437.12 235.50 437.12 20.50 MacLine -grestore -1.00 ps -436.75 13.50 436.75 20.50 MacLine -436.75 242.50 436.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 432.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -430.12 239.00 430.12 17.00 MacLine -grestore -1.00 ps -429.62 13.50 429.62 17.00 MacLine -429.62 242.50 429.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -423.00 239.00 423.00 17.00 MacLine -grestore -1.00 ps -422.50 13.50 422.50 17.00 MacLine -422.50 242.50 422.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -415.88 239.00 415.88 17.00 MacLine -grestore -1.00 ps -415.38 13.50 415.38 17.00 MacLine -415.38 242.50 415.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -408.75 239.00 408.75 17.00 MacLine -grestore -1.00 ps -408.25 13.50 408.25 17.00 MacLine -408.25 242.50 408.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -401.62 237.25 401.62 18.75 MacLine -grestore -1.00 ps -401.12 13.50 401.12 18.75 MacLine -401.12 242.50 401.12 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -394.50 239.00 394.50 17.00 MacLine -grestore -1.00 ps -394.00 13.50 394.00 17.00 MacLine -394.00 242.50 394.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -387.38 239.00 387.38 17.00 MacLine -grestore -1.00 ps -386.88 13.50 386.88 17.00 MacLine -386.88 242.50 386.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -380.25 239.00 380.25 17.00 MacLine -grestore -1.00 ps -379.75 13.50 379.75 17.00 MacLine -379.75 242.50 379.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.12 239.00 373.12 17.00 MacLine -grestore -1.00 ps -372.62 13.50 372.62 17.00 MacLine -372.62 242.50 372.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -365.88 235.50 365.88 20.50 MacLine -grestore -1.00 ps -365.50 13.50 365.50 20.50 MacLine -365.50 242.50 365.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 361.62 259.88 8.88 WS -gsave 0.125 ps [1] sd -358.88 239.00 358.88 17.00 MacLine -grestore -1.00 ps -358.38 13.50 358.38 17.00 MacLine -358.38 242.50 358.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -351.75 239.00 351.75 17.00 MacLine -grestore -1.00 ps -351.25 13.50 351.25 17.00 MacLine -351.25 242.50 351.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -344.62 239.00 344.62 17.00 MacLine -grestore -1.00 ps -344.12 13.50 344.12 17.00 MacLine -344.12 242.50 344.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -337.50 239.00 337.50 17.00 MacLine -grestore -1.00 ps -337.00 13.50 337.00 17.00 MacLine -337.00 242.50 337.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -330.38 237.25 330.38 18.75 MacLine -grestore -1.00 ps -329.88 13.50 329.88 18.75 MacLine -329.88 242.50 329.88 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 239.00 323.25 17.00 MacLine -grestore -1.00 ps -322.75 13.50 322.75 17.00 MacLine -322.75 242.50 322.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.12 239.00 316.12 17.00 MacLine -grestore -1.00 ps -315.62 13.50 315.62 17.00 MacLine -315.62 242.50 315.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -308.88 239.00 308.88 17.00 MacLine -grestore -1.00 ps -308.38 13.50 308.38 17.00 MacLine -308.38 242.50 308.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -301.75 239.00 301.75 17.00 MacLine -grestore -1.00 ps -301.25 13.50 301.25 17.00 MacLine -301.25 242.50 301.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -294.50 235.50 294.50 20.50 MacLine -grestore -1.00 ps -294.12 13.50 294.12 20.50 MacLine -294.12 242.50 294.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 290.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -287.50 239.00 287.50 17.00 MacLine -grestore -1.00 ps -287.00 13.50 287.00 17.00 MacLine -287.00 242.50 287.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -280.38 239.00 280.38 17.00 MacLine -grestore -1.00 ps -279.88 13.50 279.88 17.00 MacLine -279.88 242.50 279.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -273.25 239.00 273.25 17.00 MacLine -grestore -1.00 ps -272.75 13.50 272.75 17.00 MacLine -272.75 242.50 272.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.12 239.00 266.12 17.00 MacLine -grestore -1.00 ps -265.62 13.50 265.62 17.00 MacLine -265.62 242.50 265.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -259.00 237.25 259.00 18.75 MacLine -grestore -1.00 ps -258.50 13.50 258.50 18.75 MacLine -258.50 242.50 258.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -251.88 239.00 251.88 17.00 MacLine -grestore -1.00 ps -251.38 13.50 251.38 17.00 MacLine -251.38 242.50 251.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -244.75 239.00 244.75 17.00 MacLine -grestore -1.00 ps -244.25 13.50 244.25 17.00 MacLine -244.25 242.50 244.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -237.62 239.00 237.62 17.00 MacLine -grestore -1.00 ps -237.12 13.50 237.12 17.00 MacLine -237.12 242.50 237.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -230.50 239.00 230.50 17.00 MacLine -grestore -1.00 ps -230.00 13.50 230.00 17.00 MacLine -230.00 242.50 230.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-2) 216.25 259.88 14.25 WS -gsave 0.125 ps [1] sd -216.25 239.00 216.25 17.00 MacLine -grestore -1.00 ps -215.75 13.50 215.75 17.00 MacLine -215.75 242.50 215.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -209.12 239.00 209.12 17.00 MacLine -grestore -1.00 ps -208.62 13.50 208.62 17.00 MacLine -208.62 242.50 208.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -202.00 239.00 202.00 17.00 MacLine -grestore -1.00 ps -201.50 13.50 201.50 17.00 MacLine -201.50 242.50 201.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -194.88 239.00 194.88 17.00 MacLine -grestore -1.00 ps -194.38 13.50 194.38 17.00 MacLine -194.38 242.50 194.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -187.75 237.25 187.75 18.75 MacLine -grestore -1.00 ps -187.25 13.50 187.25 18.75 MacLine -187.25 242.50 187.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -180.62 239.00 180.62 17.00 MacLine -grestore -1.00 ps -180.12 13.50 180.12 17.00 MacLine -180.12 242.50 180.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -173.50 239.00 173.50 17.00 MacLine -grestore -1.00 ps -173.00 13.50 173.00 17.00 MacLine -173.00 242.50 173.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -166.38 239.00 166.38 17.00 MacLine -grestore -1.00 ps -165.88 13.50 165.88 17.00 MacLine -165.88 242.50 165.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.25 239.00 159.25 17.00 MacLine -grestore -1.00 ps -158.75 13.50 158.75 17.00 MacLine -158.75 242.50 158.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -152.00 235.50 152.00 20.50 MacLine -grestore -1.00 ps -151.62 13.50 151.62 20.50 MacLine -151.62 242.50 151.62 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-4) 145.00 259.88 14.25 WS -gsave 0.125 ps [1] sd -145.00 239.00 145.00 17.00 MacLine -grestore -1.00 ps -144.50 13.50 144.50 17.00 MacLine -144.50 242.50 144.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -137.88 239.00 137.88 17.00 MacLine -grestore -1.00 ps -137.38 13.50 137.38 17.00 MacLine -137.38 242.50 137.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -130.75 239.00 130.75 17.00 MacLine -grestore -1.00 ps -130.25 13.50 130.25 17.00 MacLine -130.25 242.50 130.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -123.62 239.00 123.62 17.00 MacLine -grestore -1.00 ps -123.12 13.50 123.12 17.00 MacLine -123.12 242.50 123.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -116.50 237.25 116.50 18.75 MacLine -grestore -1.00 ps -116.00 13.50 116.00 18.75 MacLine -116.00 242.50 116.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -109.38 239.00 109.38 17.00 MacLine -grestore -1.00 ps -108.88 13.50 108.88 17.00 MacLine -108.88 242.50 108.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.25 239.00 102.25 17.00 MacLine -grestore -1.00 ps -101.75 13.50 101.75 17.00 MacLine -101.75 242.50 101.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -95.12 239.00 95.12 17.00 MacLine -grestore -1.00 ps -94.62 13.50 94.62 17.00 MacLine -94.62 242.50 94.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -88.00 239.00 88.00 17.00 MacLine -grestore -1.00 ps -87.50 13.50 87.50 17.00 MacLine -87.50 242.50 87.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -80.75 235.50 80.75 20.50 MacLine -grestore -1.00 ps -80.38 13.50 80.38 20.50 MacLine -80.38 242.50 80.38 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-6) 73.75 259.88 14.25 WS -gsave 0.125 ps [1] sd -73.75 239.00 73.75 17.00 MacLine -grestore -1.00 ps -73.25 13.50 73.25 17.00 MacLine -73.25 242.50 73.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.62 239.00 66.62 17.00 MacLine -grestore -1.00 ps -66.12 13.50 66.12 17.00 MacLine -66.12 242.50 66.12 239.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(t \(s\)) 298.62 284.38 27.75 WS -2.00 ps -newpath 63.12 128.38 M -68.12 139.75 L -73.12 150.50 L -78.12 160.50 L -83.12 170.00 L -88.25 178.75 L -93.25 186.88 L -98.38 194.38 L -103.38 201.25 L -108.38 207.62 L -113.50 213.38 L -118.50 218.62 L -123.50 223.25 L -128.50 227.38 L -133.62 231.00 L -138.62 234.12 L -143.62 236.75 L -148.75 238.88 L -153.75 240.62 L -158.88 241.75 L -163.88 242.62 L -168.88 243.00 L -173.88 243.00 L -179.00 242.50 L -184.00 241.75 L -189.00 240.62 L -194.12 239.00 L -199.12 237.12 L -204.12 235.00 L -209.25 232.50 L -214.25 229.75 L -219.25 226.62 L -224.25 223.25 L -229.38 219.62 L -234.38 215.88 L -239.50 211.75 L -244.50 207.50 L -249.50 203.00 L -254.62 198.25 L -259.62 193.38 L -264.62 188.38 L -269.62 183.25 L -274.75 178.00 L -279.75 172.50 L -284.75 167.00 L -289.88 161.38 L -294.88 155.75 L -300.00 150.00 L -305.00 144.12 L -310.00 138.38 L -315.00 132.50 L -320.00 126.62 L -325.00 120.75 L -330.12 114.88 L -335.12 109.12 L -340.25 103.38 L -345.25 97.62 L -350.25 92.00 L -355.38 86.38 L -360.38 81.00 L -365.38 75.62 L -370.38 70.50 L -375.50 65.38 L -380.50 60.50 L -385.50 55.75 L -390.62 51.12 L -395.62 46.75 L -400.75 42.62 L -405.75 38.75 L -410.75 35.00 L -415.75 31.50 L -420.88 28.38 L -425.88 25.50 L -430.88 22.88 L -436.00 20.62 L -441.00 18.62 L -446.00 17.00 L -451.12 15.62 L -456.12 14.75 L -461.12 14.25 L -466.12 14.00 L -471.25 14.25 L -476.25 14.88 L -481.38 16.00 L -486.38 17.50 L -491.38 19.50 L -496.50 21.88 L -501.50 24.88 L -506.50 28.25 L -511.50 32.25 L -516.62 36.75 L -521.62 41.75 L -526.62 47.25 L -531.75 53.38 L -536.75 60.12 L -541.88 67.50 L -546.88 75.38 L -551.88 83.88 L -556.88 93.00 L -561.88 102.88 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v1.gif deleted file mode 100755 index 8dee746f7..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v10.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v10.eps deleted file mode 100755 index 707f1289b..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v10.eps +++ /dev/null @@ -1,1238 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_x10 -%%Creation Date: Sun, Sep 10, 1995 06:46 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 16.25 558.00 16.25 MacLine -grestore -1.00 ps -561.50 15.75 558.00 15.75 MacLine -62.50 15.75 66.00 15.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 22.50 558.00 22.50 MacLine -grestore -1.00 ps -561.50 22.00 558.00 22.00 MacLine -62.50 22.00 66.00 22.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 28.88 558.00 28.88 MacLine -grestore -1.00 ps -561.50 28.38 558.00 28.38 MacLine -62.50 28.38 66.00 28.38 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 35.12 554.50 35.12 MacLine -grestore -1.00 ps -561.50 34.75 554.50 34.75 MacLine -62.50 34.75 69.50 34.75 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(350) 32.38 39.62 26.62 WS -gsave 0.125 ps [1] sd -66.00 41.62 558.00 41.62 MacLine -grestore -1.00 ps -561.50 41.12 558.00 41.12 MacLine -62.50 41.12 66.00 41.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 47.88 558.00 47.88 MacLine -grestore -1.00 ps -561.50 47.38 558.00 47.38 MacLine -62.50 47.38 66.00 47.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 54.25 558.00 54.25 MacLine -grestore -1.00 ps -561.50 53.75 558.00 53.75 MacLine -62.50 53.75 66.00 53.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 60.62 558.00 60.62 MacLine -grestore -1.00 ps -561.50 60.12 558.00 60.12 MacLine -62.50 60.12 66.00 60.12 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 66.88 554.50 66.88 MacLine -grestore -1.00 ps -561.50 66.50 554.50 66.50 MacLine -62.50 66.50 69.50 66.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(300) 32.38 71.38 26.62 WS -gsave 0.125 ps [1] sd -66.00 73.38 558.00 73.38 MacLine -grestore -1.00 ps -561.50 72.88 558.00 72.88 MacLine -62.50 72.88 66.00 72.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 79.62 558.00 79.62 MacLine -grestore -1.00 ps -561.50 79.12 558.00 79.12 MacLine -62.50 79.12 66.00 79.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 86.00 558.00 86.00 MacLine -grestore -1.00 ps -561.50 85.50 558.00 85.50 MacLine -62.50 85.50 66.00 85.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 92.38 558.00 92.38 MacLine -grestore -1.00 ps -561.50 91.88 558.00 91.88 MacLine -62.50 91.88 66.00 91.88 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 98.62 554.50 98.62 MacLine -grestore -1.00 ps -561.50 98.25 554.50 98.25 MacLine -62.50 98.25 69.50 98.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(250) 32.38 103.12 26.62 WS -gsave 0.125 ps [1] sd -66.00 105.12 558.00 105.12 MacLine -grestore -1.00 ps -561.50 104.62 558.00 104.62 MacLine -62.50 104.62 66.00 104.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 111.38 558.00 111.38 MacLine -grestore -1.00 ps -561.50 110.88 558.00 110.88 MacLine -62.50 110.88 66.00 110.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 117.75 558.00 117.75 MacLine -grestore -1.00 ps -561.50 117.25 558.00 117.25 MacLine -62.50 117.25 66.00 117.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 124.12 558.00 124.12 MacLine -grestore -1.00 ps -561.50 123.62 558.00 123.62 MacLine -62.50 123.62 66.00 123.62 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 130.38 554.50 130.38 MacLine -grestore -1.00 ps -561.50 130.00 554.50 130.00 MacLine -62.50 130.00 69.50 130.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(200) 32.38 134.88 26.62 WS -gsave 0.125 ps [1] sd -66.00 136.75 558.00 136.75 MacLine -grestore -1.00 ps -561.50 136.25 558.00 136.25 MacLine -62.50 136.25 66.00 136.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 143.12 558.00 143.12 MacLine -grestore -1.00 ps -561.50 142.62 558.00 142.62 MacLine -62.50 142.62 66.00 142.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 149.50 558.00 149.50 MacLine -grestore -1.00 ps -561.50 149.00 558.00 149.00 MacLine -62.50 149.00 66.00 149.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 155.88 558.00 155.88 MacLine -grestore -1.00 ps -561.50 155.38 558.00 155.38 MacLine -62.50 155.38 66.00 155.38 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 162.12 554.50 162.12 MacLine -grestore -1.00 ps -561.50 161.75 554.50 161.75 MacLine -62.50 161.75 69.50 161.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(150) 32.38 166.62 26.62 WS -gsave 0.125 ps [1] sd -66.00 168.50 558.00 168.50 MacLine -grestore -1.00 ps -561.50 168.00 558.00 168.00 MacLine -62.50 168.00 66.00 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 174.88 558.00 174.88 MacLine -grestore -1.00 ps -561.50 174.38 558.00 174.38 MacLine -62.50 174.38 66.00 174.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 181.25 558.00 181.25 MacLine -grestore -1.00 ps -561.50 180.75 558.00 180.75 MacLine -62.50 180.75 66.00 180.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 187.62 558.00 187.62 MacLine -grestore -1.00 ps -561.50 187.12 558.00 187.12 MacLine -62.50 187.12 66.00 187.12 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 193.88 554.50 193.88 MacLine -grestore -1.00 ps -561.50 193.50 554.50 193.50 MacLine -62.50 193.50 69.50 193.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(100) 32.38 198.38 26.62 WS -gsave 0.125 ps [1] sd -66.00 200.25 558.00 200.25 MacLine -grestore -1.00 ps -561.50 199.75 558.00 199.75 MacLine -62.50 199.75 66.00 199.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 206.62 558.00 206.62 MacLine -grestore -1.00 ps -561.50 206.12 558.00 206.12 MacLine -62.50 206.12 66.00 206.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 213.00 558.00 213.00 MacLine -grestore -1.00 ps -561.50 212.50 558.00 212.50 MacLine -62.50 212.50 66.00 212.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 219.38 558.00 219.38 MacLine -grestore -1.00 ps -561.50 218.88 558.00 218.88 MacLine -62.50 218.88 66.00 218.88 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 225.50 554.50 225.50 MacLine -grestore -1.00 ps -561.50 225.12 554.50 225.12 MacLine -62.50 225.12 69.50 225.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(50) 41.25 230.00 17.75 WS -gsave 0.125 ps [1] sd -66.00 232.00 558.00 232.00 MacLine -grestore -1.00 ps -561.50 231.50 558.00 231.50 MacLine -62.50 231.50 66.00 231.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 238.38 558.00 238.38 MacLine -grestore -1.00 ps -561.50 237.88 558.00 237.88 MacLine -62.50 237.88 66.00 237.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(x \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -558.38 239.00 558.38 17.00 MacLine -grestore -1.00 ps -557.88 13.50 557.88 17.00 MacLine -557.88 242.50 557.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -551.25 239.00 551.25 17.00 MacLine -grestore -1.00 ps -550.75 13.50 550.75 17.00 MacLine -550.75 242.50 550.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -544.12 237.25 544.12 18.75 MacLine -grestore -1.00 ps -543.62 13.50 543.62 18.75 MacLine -543.62 242.50 543.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -537.00 239.00 537.00 17.00 MacLine -grestore -1.00 ps -536.50 13.50 536.50 17.00 MacLine -536.50 242.50 536.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -529.88 239.00 529.88 17.00 MacLine -grestore -1.00 ps -529.38 13.50 529.38 17.00 MacLine -529.38 242.50 529.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.75 239.00 522.75 17.00 MacLine -grestore -1.00 ps -522.25 13.50 522.25 17.00 MacLine -522.25 242.50 522.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -515.62 239.00 515.62 17.00 MacLine -grestore -1.00 ps -515.12 13.50 515.12 17.00 MacLine -515.12 242.50 515.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -508.38 235.50 508.38 20.50 MacLine -grestore -1.00 ps -508.00 13.50 508.00 20.50 MacLine -508.00 242.50 508.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 504.12 259.88 8.88 WS -gsave 0.125 ps [1] sd -501.38 239.00 501.38 17.00 MacLine -grestore -1.00 ps -500.88 13.50 500.88 17.00 MacLine -500.88 242.50 500.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -494.25 239.00 494.25 17.00 MacLine -grestore -1.00 ps -493.75 13.50 493.75 17.00 MacLine -493.75 242.50 493.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.12 239.00 487.12 17.00 MacLine -grestore -1.00 ps -486.62 13.50 486.62 17.00 MacLine -486.62 242.50 486.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.00 239.00 480.00 17.00 MacLine -grestore -1.00 ps -479.50 13.50 479.50 17.00 MacLine -479.50 242.50 479.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.88 237.25 472.88 18.75 MacLine -grestore -1.00 ps -472.38 13.50 472.38 18.75 MacLine -472.38 242.50 472.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -465.75 239.00 465.75 17.00 MacLine -grestore -1.00 ps -465.25 13.50 465.25 17.00 MacLine -465.25 242.50 465.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -458.62 239.00 458.62 17.00 MacLine -grestore -1.00 ps -458.12 13.50 458.12 17.00 MacLine -458.12 242.50 458.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -451.50 239.00 451.50 17.00 MacLine -grestore -1.00 ps -451.00 13.50 451.00 17.00 MacLine -451.00 242.50 451.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -444.38 239.00 444.38 17.00 MacLine -grestore -1.00 ps -443.88 13.50 443.88 17.00 MacLine -443.88 242.50 443.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -437.12 235.50 437.12 20.50 MacLine -grestore -1.00 ps -436.75 13.50 436.75 20.50 MacLine -436.75 242.50 436.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 432.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -430.12 239.00 430.12 17.00 MacLine -grestore -1.00 ps -429.62 13.50 429.62 17.00 MacLine -429.62 242.50 429.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -423.00 239.00 423.00 17.00 MacLine -grestore -1.00 ps -422.50 13.50 422.50 17.00 MacLine -422.50 242.50 422.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -415.88 239.00 415.88 17.00 MacLine -grestore -1.00 ps -415.38 13.50 415.38 17.00 MacLine -415.38 242.50 415.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -408.75 239.00 408.75 17.00 MacLine -grestore -1.00 ps -408.25 13.50 408.25 17.00 MacLine -408.25 242.50 408.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -401.62 237.25 401.62 18.75 MacLine -grestore -1.00 ps -401.12 13.50 401.12 18.75 MacLine -401.12 242.50 401.12 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -394.50 239.00 394.50 17.00 MacLine -grestore -1.00 ps -394.00 13.50 394.00 17.00 MacLine -394.00 242.50 394.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -387.38 239.00 387.38 17.00 MacLine -grestore -1.00 ps -386.88 13.50 386.88 17.00 MacLine -386.88 242.50 386.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -380.25 239.00 380.25 17.00 MacLine -grestore -1.00 ps -379.75 13.50 379.75 17.00 MacLine -379.75 242.50 379.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.12 239.00 373.12 17.00 MacLine -grestore -1.00 ps -372.62 13.50 372.62 17.00 MacLine -372.62 242.50 372.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -365.88 235.50 365.88 20.50 MacLine -grestore -1.00 ps -365.50 13.50 365.50 20.50 MacLine -365.50 242.50 365.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 361.62 259.88 8.88 WS -gsave 0.125 ps [1] sd -358.88 239.00 358.88 17.00 MacLine -grestore -1.00 ps -358.38 13.50 358.38 17.00 MacLine -358.38 242.50 358.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -351.75 239.00 351.75 17.00 MacLine -grestore -1.00 ps -351.25 13.50 351.25 17.00 MacLine -351.25 242.50 351.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -344.62 239.00 344.62 17.00 MacLine -grestore -1.00 ps -344.12 13.50 344.12 17.00 MacLine -344.12 242.50 344.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -337.50 239.00 337.50 17.00 MacLine -grestore -1.00 ps -337.00 13.50 337.00 17.00 MacLine -337.00 242.50 337.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -330.38 237.25 330.38 18.75 MacLine -grestore -1.00 ps -329.88 13.50 329.88 18.75 MacLine -329.88 242.50 329.88 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 239.00 323.25 17.00 MacLine -grestore -1.00 ps -322.75 13.50 322.75 17.00 MacLine -322.75 242.50 322.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.12 239.00 316.12 17.00 MacLine -grestore -1.00 ps -315.62 13.50 315.62 17.00 MacLine -315.62 242.50 315.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -308.88 239.00 308.88 17.00 MacLine -grestore -1.00 ps -308.38 13.50 308.38 17.00 MacLine -308.38 242.50 308.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -301.75 239.00 301.75 17.00 MacLine -grestore -1.00 ps -301.25 13.50 301.25 17.00 MacLine -301.25 242.50 301.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -294.50 235.50 294.50 20.50 MacLine -grestore -1.00 ps -294.12 13.50 294.12 20.50 MacLine -294.12 242.50 294.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 290.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -287.50 239.00 287.50 17.00 MacLine -grestore -1.00 ps -287.00 13.50 287.00 17.00 MacLine -287.00 242.50 287.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -280.38 239.00 280.38 17.00 MacLine -grestore -1.00 ps -279.88 13.50 279.88 17.00 MacLine -279.88 242.50 279.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -273.25 239.00 273.25 17.00 MacLine -grestore -1.00 ps -272.75 13.50 272.75 17.00 MacLine -272.75 242.50 272.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.12 239.00 266.12 17.00 MacLine -grestore -1.00 ps -265.62 13.50 265.62 17.00 MacLine -265.62 242.50 265.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -259.00 237.25 259.00 18.75 MacLine -grestore -1.00 ps -258.50 13.50 258.50 18.75 MacLine -258.50 242.50 258.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -251.88 239.00 251.88 17.00 MacLine -grestore -1.00 ps -251.38 13.50 251.38 17.00 MacLine -251.38 242.50 251.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -244.75 239.00 244.75 17.00 MacLine -grestore -1.00 ps -244.25 13.50 244.25 17.00 MacLine -244.25 242.50 244.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -237.62 239.00 237.62 17.00 MacLine -grestore -1.00 ps -237.12 13.50 237.12 17.00 MacLine -237.12 242.50 237.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -230.50 239.00 230.50 17.00 MacLine -grestore -1.00 ps -230.00 13.50 230.00 17.00 MacLine -230.00 242.50 230.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-2) 216.25 259.88 14.25 WS -gsave 0.125 ps [1] sd -216.25 239.00 216.25 17.00 MacLine -grestore -1.00 ps -215.75 13.50 215.75 17.00 MacLine -215.75 242.50 215.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -209.12 239.00 209.12 17.00 MacLine -grestore -1.00 ps -208.62 13.50 208.62 17.00 MacLine -208.62 242.50 208.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -202.00 239.00 202.00 17.00 MacLine -grestore -1.00 ps -201.50 13.50 201.50 17.00 MacLine -201.50 242.50 201.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -194.88 239.00 194.88 17.00 MacLine -grestore -1.00 ps -194.38 13.50 194.38 17.00 MacLine -194.38 242.50 194.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -187.75 237.25 187.75 18.75 MacLine -grestore -1.00 ps -187.25 13.50 187.25 18.75 MacLine -187.25 242.50 187.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -180.62 239.00 180.62 17.00 MacLine -grestore -1.00 ps -180.12 13.50 180.12 17.00 MacLine -180.12 242.50 180.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -173.50 239.00 173.50 17.00 MacLine -grestore -1.00 ps -173.00 13.50 173.00 17.00 MacLine -173.00 242.50 173.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -166.38 239.00 166.38 17.00 MacLine -grestore -1.00 ps -165.88 13.50 165.88 17.00 MacLine -165.88 242.50 165.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.25 239.00 159.25 17.00 MacLine -grestore -1.00 ps -158.75 13.50 158.75 17.00 MacLine -158.75 242.50 158.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -152.00 235.50 152.00 20.50 MacLine -grestore -1.00 ps -151.62 13.50 151.62 20.50 MacLine -151.62 242.50 151.62 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-4) 145.00 259.88 14.25 WS -gsave 0.125 ps [1] sd -145.00 239.00 145.00 17.00 MacLine -grestore -1.00 ps -144.50 13.50 144.50 17.00 MacLine -144.50 242.50 144.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -137.88 239.00 137.88 17.00 MacLine -grestore -1.00 ps -137.38 13.50 137.38 17.00 MacLine -137.38 242.50 137.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -130.75 239.00 130.75 17.00 MacLine -grestore -1.00 ps -130.25 13.50 130.25 17.00 MacLine -130.25 242.50 130.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -123.62 239.00 123.62 17.00 MacLine -grestore -1.00 ps -123.12 13.50 123.12 17.00 MacLine -123.12 242.50 123.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -116.50 237.25 116.50 18.75 MacLine -grestore -1.00 ps -116.00 13.50 116.00 18.75 MacLine -116.00 242.50 116.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -109.38 239.00 109.38 17.00 MacLine -grestore -1.00 ps -108.88 13.50 108.88 17.00 MacLine -108.88 242.50 108.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.25 239.00 102.25 17.00 MacLine -grestore -1.00 ps -101.75 13.50 101.75 17.00 MacLine -101.75 242.50 101.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -95.12 239.00 95.12 17.00 MacLine -grestore -1.00 ps -94.62 13.50 94.62 17.00 MacLine -94.62 242.50 94.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -88.00 239.00 88.00 17.00 MacLine -grestore -1.00 ps -87.50 13.50 87.50 17.00 MacLine -87.50 242.50 87.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -80.75 235.50 80.75 20.50 MacLine -grestore -1.00 ps -80.38 13.50 80.38 20.50 MacLine -80.38 242.50 80.38 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-6) 73.75 259.88 14.25 WS -gsave 0.125 ps [1] sd -73.75 239.00 73.75 17.00 MacLine -grestore -1.00 ps -73.25 13.50 73.25 17.00 MacLine -73.25 242.50 73.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.62 239.00 66.62 17.00 MacLine -grestore -1.00 ps -66.12 13.50 66.12 17.00 MacLine -66.12 242.50 66.12 239.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(t \(s\)) 298.62 284.38 27.75 WS -2.00 ps -newpath 63.12 123.38 M -68.12 134.25 L -73.12 144.38 L -78.12 154.12 L -83.12 163.12 L -88.25 171.75 L -93.25 179.62 L -98.38 187.12 L -103.38 194.12 L -108.38 200.50 L -113.50 206.38 L -118.50 211.88 L -123.50 216.88 L -128.50 221.38 L -133.62 225.38 L -138.62 229.00 L -143.62 232.12 L -148.75 234.88 L -153.75 237.12 L -158.88 239.12 L -163.88 240.62 L -168.88 241.75 L -173.88 242.50 L -179.00 242.88 L -184.00 243.00 L -189.00 242.75 L -194.12 242.12 L -199.12 241.12 L -204.12 240.00 L -209.25 238.50 L -214.25 236.62 L -219.25 234.50 L -224.25 232.25 L -229.38 229.62 L -234.38 226.75 L -239.50 223.75 L -244.50 220.50 L -249.50 217.00 L -254.62 213.25 L -259.62 209.38 L -264.62 205.38 L -269.62 201.12 L -274.75 196.75 L -279.75 192.25 L -284.75 187.50 L -289.88 182.75 L -294.88 177.88 L -300.00 172.88 L -305.00 167.75 L -310.00 162.62 L -315.00 157.38 L -320.00 152.12 L -325.00 146.75 L -330.12 141.50 L -335.12 136.00 L -340.25 130.62 L -345.25 125.25 L -350.25 119.88 L -355.38 114.50 L -360.38 109.12 L -365.38 103.75 L -370.38 98.50 L -375.50 93.25 L -380.50 88.12 L -385.50 83.00 L -390.62 78.12 L -395.62 73.25 L -400.75 68.50 L -405.75 63.88 L -410.75 59.38 L -415.75 55.00 L -420.88 50.88 L -425.88 46.75 L -430.88 43.00 L -436.00 39.25 L -441.00 35.88 L -446.00 32.62 L -451.12 29.62 L -456.12 26.75 L -461.12 24.25 L -466.12 22.00 L -471.25 20.00 L -476.25 18.25 L -481.38 16.75 L -486.38 15.62 L -491.38 14.75 L -496.50 14.25 L -501.50 14.00 L -506.50 14.12 L -511.50 14.62 L -516.62 15.50 L -521.62 16.75 L -526.62 18.25 L -531.75 20.38 L -536.75 22.75 L -541.88 25.50 L -546.88 28.75 L -551.88 32.50 L -556.88 36.62 L -561.88 41.25 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v10.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v10.gif deleted file mode 100755 index 47aa7903e..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v10.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v10.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v10.pdf deleted file mode 100644 index 457082174..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v10.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v2.eps deleted file mode 100755 index 6c08f7460..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v2.eps +++ /dev/null @@ -1,1301 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_x2 -%%Creation Date: Sun, Sep 10, 1995 06:45 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 14.00 558.00 14.00 MacLine -62.50 14.00 66.00 14.00 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 19.38 554.50 19.38 MacLine -grestore -1.00 ps -561.50 19.00 554.50 19.00 MacLine -62.50 19.00 69.50 19.00 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(400) 32.38 23.88 26.62 WS -gsave 0.125 ps [1] sd -66.00 24.50 558.00 24.50 MacLine -grestore -1.00 ps -561.50 24.00 558.00 24.00 MacLine -62.50 24.00 66.00 24.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 29.50 558.00 29.50 MacLine -grestore -1.00 ps -561.50 29.00 558.00 29.00 MacLine -62.50 29.00 66.00 29.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 34.50 558.00 34.50 MacLine -grestore -1.00 ps -561.50 34.00 558.00 34.00 MacLine -62.50 34.00 66.00 34.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 39.50 558.00 39.50 MacLine -grestore -1.00 ps -561.50 39.00 558.00 39.00 MacLine -62.50 39.00 66.00 39.00 MacLine -1 ps -gsave 0.125 ps [1] sd -67.75 44.50 556.25 44.50 MacLine -grestore -1.00 ps -561.50 44.00 556.25 44.00 MacLine -62.50 44.00 67.75 44.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 49.50 558.00 49.50 MacLine -grestore -1.00 ps -561.50 49.00 558.00 49.00 MacLine -62.50 49.00 66.00 49.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 54.50 558.00 54.50 MacLine -grestore -1.00 ps -561.50 54.00 558.00 54.00 MacLine -62.50 54.00 66.00 54.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 59.50 558.00 59.50 MacLine -grestore -1.00 ps -561.50 59.00 558.00 59.00 MacLine -62.50 59.00 66.00 59.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 64.50 558.00 64.50 MacLine -grestore -1.00 ps -561.50 64.00 558.00 64.00 MacLine -62.50 64.00 66.00 64.00 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 69.38 554.50 69.38 MacLine -grestore -1.00 ps -561.50 69.00 554.50 69.00 MacLine -62.50 69.00 69.50 69.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(300) 32.38 73.88 26.62 WS -gsave 0.125 ps [1] sd -66.00 74.50 558.00 74.50 MacLine -grestore -1.00 ps -561.50 74.00 558.00 74.00 MacLine -62.50 74.00 66.00 74.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 79.50 558.00 79.50 MacLine -grestore -1.00 ps -561.50 79.00 558.00 79.00 MacLine -62.50 79.00 66.00 79.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 84.50 558.00 84.50 MacLine -grestore -1.00 ps -561.50 84.00 558.00 84.00 MacLine -62.50 84.00 66.00 84.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 89.50 558.00 89.50 MacLine -grestore -1.00 ps -561.50 89.00 558.00 89.00 MacLine -62.50 89.00 66.00 89.00 MacLine -1 ps -gsave 0.125 ps [1] sd -67.75 94.50 556.25 94.50 MacLine -grestore -1.00 ps -561.50 94.00 556.25 94.00 MacLine -62.50 94.00 67.75 94.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 99.50 558.00 99.50 MacLine -grestore -1.00 ps -561.50 99.00 558.00 99.00 MacLine -62.50 99.00 66.00 99.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 104.50 558.00 104.50 MacLine -grestore -1.00 ps -561.50 104.00 558.00 104.00 MacLine -62.50 104.00 66.00 104.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 109.50 558.00 109.50 MacLine -grestore -1.00 ps -561.50 109.00 558.00 109.00 MacLine -62.50 109.00 66.00 109.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 114.50 558.00 114.50 MacLine -grestore -1.00 ps -561.50 114.00 558.00 114.00 MacLine -62.50 114.00 66.00 114.00 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 119.38 554.50 119.38 MacLine -grestore -1.00 ps -561.50 119.00 554.50 119.00 MacLine -62.50 119.00 69.50 119.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(200) 32.38 123.88 26.62 WS -gsave 0.125 ps [1] sd -66.00 124.50 558.00 124.50 MacLine -grestore -1.00 ps -561.50 124.00 558.00 124.00 MacLine -62.50 124.00 66.00 124.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 129.50 558.00 129.50 MacLine -grestore -1.00 ps -561.50 129.00 558.00 129.00 MacLine -62.50 129.00 66.00 129.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 134.50 558.00 134.50 MacLine -grestore -1.00 ps -561.50 134.00 558.00 134.00 MacLine -62.50 134.00 66.00 134.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 139.50 558.00 139.50 MacLine -grestore -1.00 ps -561.50 139.00 558.00 139.00 MacLine -62.50 139.00 66.00 139.00 MacLine -1 ps -gsave 0.125 ps [1] sd -67.75 144.50 556.25 144.50 MacLine -grestore -1.00 ps -561.50 144.00 556.25 144.00 MacLine -62.50 144.00 67.75 144.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 149.50 558.00 149.50 MacLine -grestore -1.00 ps -561.50 149.00 558.00 149.00 MacLine -62.50 149.00 66.00 149.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 154.50 558.00 154.50 MacLine -grestore -1.00 ps -561.50 154.00 558.00 154.00 MacLine -62.50 154.00 66.00 154.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 159.50 558.00 159.50 MacLine -grestore -1.00 ps -561.50 159.00 558.00 159.00 MacLine -62.50 159.00 66.00 159.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 164.50 558.00 164.50 MacLine -grestore -1.00 ps -561.50 164.00 558.00 164.00 MacLine -62.50 164.00 66.00 164.00 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 169.38 554.50 169.38 MacLine -grestore -1.00 ps -561.50 169.00 554.50 169.00 MacLine -62.50 169.00 69.50 169.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(100) 32.38 173.88 26.62 WS -gsave 0.125 ps [1] sd -66.00 174.50 558.00 174.50 MacLine -grestore -1.00 ps -561.50 174.00 558.00 174.00 MacLine -62.50 174.00 66.00 174.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 179.50 558.00 179.50 MacLine -grestore -1.00 ps -561.50 179.00 558.00 179.00 MacLine -62.50 179.00 66.00 179.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 184.50 558.00 184.50 MacLine -grestore -1.00 ps -561.50 184.00 558.00 184.00 MacLine -62.50 184.00 66.00 184.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 189.50 558.00 189.50 MacLine -grestore -1.00 ps -561.50 189.00 558.00 189.00 MacLine -62.50 189.00 66.00 189.00 MacLine -1 ps -gsave 0.125 ps [1] sd -67.75 194.50 556.25 194.50 MacLine -grestore -1.00 ps -561.50 194.00 556.25 194.00 MacLine -62.50 194.00 67.75 194.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 199.50 558.00 199.50 MacLine -grestore -1.00 ps -561.50 199.00 558.00 199.00 MacLine -62.50 199.00 66.00 199.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 204.50 558.00 204.50 MacLine -grestore -1.00 ps -561.50 204.00 558.00 204.00 MacLine -62.50 204.00 66.00 204.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 209.50 558.00 209.50 MacLine -grestore -1.00 ps -561.50 209.00 558.00 209.00 MacLine -62.50 209.00 66.00 209.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 214.50 558.00 214.50 MacLine -grestore -1.00 ps -561.50 214.00 558.00 214.00 MacLine -62.50 214.00 66.00 214.00 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 219.38 554.50 219.38 MacLine -grestore -1.00 ps -561.50 219.00 554.50 219.00 MacLine -62.50 219.00 69.50 219.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 50.12 223.88 8.88 WS -gsave 0.125 ps [1] sd -66.00 224.50 558.00 224.50 MacLine -grestore -1.00 ps -561.50 224.00 558.00 224.00 MacLine -62.50 224.00 66.00 224.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 229.50 558.00 229.50 MacLine -grestore -1.00 ps -561.50 229.00 558.00 229.00 MacLine -62.50 229.00 66.00 229.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 234.50 558.00 234.50 MacLine -grestore -1.00 ps -561.50 234.00 558.00 234.00 MacLine -62.50 234.00 66.00 234.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 239.50 558.00 239.50 MacLine -grestore -1.00 ps -561.50 239.00 558.00 239.00 MacLine -62.50 239.00 66.00 239.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(x \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -558.38 239.00 558.38 17.00 MacLine -grestore -1.00 ps -557.88 13.50 557.88 17.00 MacLine -557.88 242.50 557.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -551.25 239.00 551.25 17.00 MacLine -grestore -1.00 ps -550.75 13.50 550.75 17.00 MacLine -550.75 242.50 550.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -544.12 237.25 544.12 18.75 MacLine -grestore -1.00 ps -543.62 13.50 543.62 18.75 MacLine -543.62 242.50 543.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -537.00 239.00 537.00 17.00 MacLine -grestore -1.00 ps -536.50 13.50 536.50 17.00 MacLine -536.50 242.50 536.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -529.88 239.00 529.88 17.00 MacLine -grestore -1.00 ps -529.38 13.50 529.38 17.00 MacLine -529.38 242.50 529.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.75 239.00 522.75 17.00 MacLine -grestore -1.00 ps -522.25 13.50 522.25 17.00 MacLine -522.25 242.50 522.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -515.62 239.00 515.62 17.00 MacLine -grestore -1.00 ps -515.12 13.50 515.12 17.00 MacLine -515.12 242.50 515.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -508.38 235.50 508.38 20.50 MacLine -grestore -1.00 ps -508.00 13.50 508.00 20.50 MacLine -508.00 242.50 508.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 504.12 259.88 8.88 WS -gsave 0.125 ps [1] sd -501.38 239.00 501.38 17.00 MacLine -grestore -1.00 ps -500.88 13.50 500.88 17.00 MacLine -500.88 242.50 500.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -494.25 239.00 494.25 17.00 MacLine -grestore -1.00 ps -493.75 13.50 493.75 17.00 MacLine -493.75 242.50 493.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.12 239.00 487.12 17.00 MacLine -grestore -1.00 ps -486.62 13.50 486.62 17.00 MacLine -486.62 242.50 486.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.00 239.00 480.00 17.00 MacLine -grestore -1.00 ps -479.50 13.50 479.50 17.00 MacLine -479.50 242.50 479.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.88 237.25 472.88 18.75 MacLine -grestore -1.00 ps -472.38 13.50 472.38 18.75 MacLine -472.38 242.50 472.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -465.75 239.00 465.75 17.00 MacLine -grestore -1.00 ps -465.25 13.50 465.25 17.00 MacLine -465.25 242.50 465.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -458.62 239.00 458.62 17.00 MacLine -grestore -1.00 ps -458.12 13.50 458.12 17.00 MacLine -458.12 242.50 458.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -451.50 239.00 451.50 17.00 MacLine -grestore -1.00 ps -451.00 13.50 451.00 17.00 MacLine -451.00 242.50 451.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -444.38 239.00 444.38 17.00 MacLine -grestore -1.00 ps -443.88 13.50 443.88 17.00 MacLine -443.88 242.50 443.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -437.12 235.50 437.12 20.50 MacLine -grestore -1.00 ps -436.75 13.50 436.75 20.50 MacLine -436.75 242.50 436.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 432.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -430.12 239.00 430.12 17.00 MacLine -grestore -1.00 ps -429.62 13.50 429.62 17.00 MacLine -429.62 242.50 429.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -423.00 239.00 423.00 17.00 MacLine -grestore -1.00 ps -422.50 13.50 422.50 17.00 MacLine -422.50 242.50 422.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -415.88 239.00 415.88 17.00 MacLine -grestore -1.00 ps -415.38 13.50 415.38 17.00 MacLine -415.38 242.50 415.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -408.75 239.00 408.75 17.00 MacLine -grestore -1.00 ps -408.25 13.50 408.25 17.00 MacLine -408.25 242.50 408.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -401.62 237.25 401.62 18.75 MacLine -grestore -1.00 ps -401.12 13.50 401.12 18.75 MacLine -401.12 242.50 401.12 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -394.50 239.00 394.50 17.00 MacLine -grestore -1.00 ps -394.00 13.50 394.00 17.00 MacLine -394.00 242.50 394.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -387.38 239.00 387.38 17.00 MacLine -grestore -1.00 ps -386.88 13.50 386.88 17.00 MacLine -386.88 242.50 386.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -380.25 239.00 380.25 17.00 MacLine -grestore -1.00 ps -379.75 13.50 379.75 17.00 MacLine -379.75 242.50 379.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.12 239.00 373.12 17.00 MacLine -grestore -1.00 ps -372.62 13.50 372.62 17.00 MacLine -372.62 242.50 372.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -365.88 235.50 365.88 20.50 MacLine -grestore -1.00 ps -365.50 13.50 365.50 20.50 MacLine -365.50 242.50 365.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 361.62 259.88 8.88 WS -gsave 0.125 ps [1] sd -358.88 239.00 358.88 17.00 MacLine -grestore -1.00 ps -358.38 13.50 358.38 17.00 MacLine -358.38 242.50 358.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -351.75 239.00 351.75 17.00 MacLine -grestore -1.00 ps -351.25 13.50 351.25 17.00 MacLine -351.25 242.50 351.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -344.62 239.00 344.62 17.00 MacLine -grestore -1.00 ps -344.12 13.50 344.12 17.00 MacLine -344.12 242.50 344.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -337.50 239.00 337.50 17.00 MacLine -grestore -1.00 ps -337.00 13.50 337.00 17.00 MacLine -337.00 242.50 337.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -330.38 237.25 330.38 18.75 MacLine -grestore -1.00 ps -329.88 13.50 329.88 18.75 MacLine -329.88 242.50 329.88 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 239.00 323.25 17.00 MacLine -grestore -1.00 ps -322.75 13.50 322.75 17.00 MacLine -322.75 242.50 322.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.12 239.00 316.12 17.00 MacLine -grestore -1.00 ps -315.62 13.50 315.62 17.00 MacLine -315.62 242.50 315.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -308.88 239.00 308.88 17.00 MacLine -grestore -1.00 ps -308.38 13.50 308.38 17.00 MacLine -308.38 242.50 308.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -301.75 239.00 301.75 17.00 MacLine -grestore -1.00 ps -301.25 13.50 301.25 17.00 MacLine -301.25 242.50 301.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -294.50 235.50 294.50 20.50 MacLine -grestore -1.00 ps -294.12 13.50 294.12 20.50 MacLine -294.12 242.50 294.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 290.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -287.50 239.00 287.50 17.00 MacLine -grestore -1.00 ps -287.00 13.50 287.00 17.00 MacLine -287.00 242.50 287.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -280.38 239.00 280.38 17.00 MacLine -grestore -1.00 ps -279.88 13.50 279.88 17.00 MacLine -279.88 242.50 279.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -273.25 239.00 273.25 17.00 MacLine -grestore -1.00 ps -272.75 13.50 272.75 17.00 MacLine -272.75 242.50 272.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.12 239.00 266.12 17.00 MacLine -grestore -1.00 ps -265.62 13.50 265.62 17.00 MacLine -265.62 242.50 265.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -259.00 237.25 259.00 18.75 MacLine -grestore -1.00 ps -258.50 13.50 258.50 18.75 MacLine -258.50 242.50 258.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -251.88 239.00 251.88 17.00 MacLine -grestore -1.00 ps -251.38 13.50 251.38 17.00 MacLine -251.38 242.50 251.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -244.75 239.00 244.75 17.00 MacLine -grestore -1.00 ps -244.25 13.50 244.25 17.00 MacLine -244.25 242.50 244.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -237.62 239.00 237.62 17.00 MacLine -grestore -1.00 ps -237.12 13.50 237.12 17.00 MacLine -237.12 242.50 237.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -230.50 239.00 230.50 17.00 MacLine -grestore -1.00 ps -230.00 13.50 230.00 17.00 MacLine -230.00 242.50 230.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-2) 216.25 259.88 14.25 WS -gsave 0.125 ps [1] sd -216.25 239.00 216.25 17.00 MacLine -grestore -1.00 ps -215.75 13.50 215.75 17.00 MacLine -215.75 242.50 215.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -209.12 239.00 209.12 17.00 MacLine -grestore -1.00 ps -208.62 13.50 208.62 17.00 MacLine -208.62 242.50 208.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -202.00 239.00 202.00 17.00 MacLine -grestore -1.00 ps -201.50 13.50 201.50 17.00 MacLine -201.50 242.50 201.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -194.88 239.00 194.88 17.00 MacLine -grestore -1.00 ps -194.38 13.50 194.38 17.00 MacLine -194.38 242.50 194.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -187.75 237.25 187.75 18.75 MacLine -grestore -1.00 ps -187.25 13.50 187.25 18.75 MacLine -187.25 242.50 187.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -180.62 239.00 180.62 17.00 MacLine -grestore -1.00 ps -180.12 13.50 180.12 17.00 MacLine -180.12 242.50 180.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -173.50 239.00 173.50 17.00 MacLine -grestore -1.00 ps -173.00 13.50 173.00 17.00 MacLine -173.00 242.50 173.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -166.38 239.00 166.38 17.00 MacLine -grestore -1.00 ps -165.88 13.50 165.88 17.00 MacLine -165.88 242.50 165.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.25 239.00 159.25 17.00 MacLine -grestore -1.00 ps -158.75 13.50 158.75 17.00 MacLine -158.75 242.50 158.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -152.00 235.50 152.00 20.50 MacLine -grestore -1.00 ps -151.62 13.50 151.62 20.50 MacLine -151.62 242.50 151.62 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-4) 145.00 259.88 14.25 WS -gsave 0.125 ps [1] sd -145.00 239.00 145.00 17.00 MacLine -grestore -1.00 ps -144.50 13.50 144.50 17.00 MacLine -144.50 242.50 144.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -137.88 239.00 137.88 17.00 MacLine -grestore -1.00 ps -137.38 13.50 137.38 17.00 MacLine -137.38 242.50 137.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -130.75 239.00 130.75 17.00 MacLine -grestore -1.00 ps -130.25 13.50 130.25 17.00 MacLine -130.25 242.50 130.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -123.62 239.00 123.62 17.00 MacLine -grestore -1.00 ps -123.12 13.50 123.12 17.00 MacLine -123.12 242.50 123.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -116.50 237.25 116.50 18.75 MacLine -grestore -1.00 ps -116.00 13.50 116.00 18.75 MacLine -116.00 242.50 116.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -109.38 239.00 109.38 17.00 MacLine -grestore -1.00 ps -108.88 13.50 108.88 17.00 MacLine -108.88 242.50 108.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.25 239.00 102.25 17.00 MacLine -grestore -1.00 ps -101.75 13.50 101.75 17.00 MacLine -101.75 242.50 101.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -95.12 239.00 95.12 17.00 MacLine -grestore -1.00 ps -94.62 13.50 94.62 17.00 MacLine -94.62 242.50 94.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -88.00 239.00 88.00 17.00 MacLine -grestore -1.00 ps -87.50 13.50 87.50 17.00 MacLine -87.50 242.50 87.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -80.75 235.50 80.75 20.50 MacLine -grestore -1.00 ps -80.38 13.50 80.38 20.50 MacLine -80.38 242.50 80.38 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-6) 73.75 259.88 14.25 WS -gsave 0.125 ps [1] sd -73.75 239.00 73.75 17.00 MacLine -grestore -1.00 ps -73.25 13.50 73.25 17.00 MacLine -73.25 242.50 73.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.62 239.00 66.62 17.00 MacLine -grestore -1.00 ps -66.12 13.50 66.12 17.00 MacLine -66.12 242.50 66.12 239.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(t \(s\)) 298.62 284.38 27.75 WS -2.00 ps -newpath 63.12 76.75 M -68.12 79.75 L -73.12 82.50 L -78.12 84.88 L -83.12 87.00 L -88.25 88.88 L -93.25 90.50 L -98.38 91.75 L -103.38 92.88 L -108.38 93.75 L -113.50 94.25 L -118.50 94.62 L -123.50 94.88 L -128.50 94.75 L -133.62 94.62 L -138.62 94.12 L -143.62 93.50 L -148.75 92.75 L -153.75 91.75 L -158.88 90.62 L -163.88 89.38 L -168.88 88.00 L -173.88 86.38 L -179.00 84.75 L -184.00 83.00 L -189.00 81.12 L -194.12 79.12 L -199.12 77.00 L -204.12 74.88 L -209.25 72.62 L -214.25 70.38 L -219.25 68.00 L -224.25 65.62 L -229.38 63.25 L -234.38 60.75 L -239.50 58.25 L -244.50 55.75 L -249.50 53.25 L -254.62 50.75 L -259.62 48.25 L -264.62 45.88 L -269.62 43.38 L -274.75 41.00 L -279.75 38.62 L -284.75 36.38 L -289.88 34.12 L -294.88 32.00 L -300.00 29.88 L -305.00 27.88 L -310.00 26.00 L -315.00 24.25 L -320.00 22.62 L -325.00 21.00 L -330.12 19.62 L -335.12 18.38 L -340.25 17.25 L -345.25 16.25 L -350.25 15.38 L -355.38 14.75 L -360.38 14.38 L -365.38 14.12 L -370.38 14.00 L -375.50 14.12 L -380.50 14.50 L -385.50 15.12 L -390.62 15.88 L -395.62 17.00 L -400.75 18.25 L -405.75 19.88 L -410.75 21.75 L -415.75 23.75 L -420.88 26.25 L -425.88 28.88 L -430.88 31.88 L -436.00 35.25 L -441.00 38.75 L -446.00 42.75 L -451.12 47.00 L -456.12 51.62 L -461.12 56.62 L -466.12 62.00 L -471.25 67.62 L -476.25 73.75 L -481.38 80.25 L -486.38 87.00 L -491.38 94.25 L -496.50 102.00 L -501.50 110.12 L -506.50 118.62 L -511.50 127.50 L -516.62 137.00 L -521.62 146.75 L -526.62 157.12 L -531.75 167.88 L -536.75 179.12 L -541.88 190.88 L -546.88 203.12 L -551.88 216.00 L -556.88 229.25 L -561.88 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v2.gif deleted file mode 100755 index 3c0b8ecc1..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v3.eps deleted file mode 100755 index 4611d372c..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v3.eps +++ /dev/null @@ -1,1228 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_x3 -%%Creation Date: Sun, Sep 10, 1995 06:45 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 17.88 554.50 17.88 MacLine -grestore -1.00 ps -561.50 17.50 554.50 17.50 MacLine -62.50 17.50 69.50 17.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(1300) 23.50 22.38 35.50 WS -gsave 0.125 ps [1] sd -66.00 24.62 558.00 24.62 MacLine -grestore -1.00 ps -561.50 24.12 558.00 24.12 MacLine -62.50 24.12 66.00 24.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 31.25 558.00 31.25 MacLine -grestore -1.00 ps -561.50 30.75 558.00 30.75 MacLine -62.50 30.75 66.00 30.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 37.88 558.00 37.88 MacLine -grestore -1.00 ps -561.50 37.38 558.00 37.38 MacLine -62.50 37.38 66.00 37.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 44.50 558.00 44.50 MacLine -grestore -1.00 ps -561.50 44.00 558.00 44.00 MacLine -62.50 44.00 66.00 44.00 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 51.12 554.50 51.12 MacLine -grestore -1.00 ps -561.50 50.75 554.50 50.75 MacLine -62.50 50.75 69.50 50.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1200) 23.50 55.62 35.50 WS -gsave 0.125 ps [1] sd -66.00 57.88 558.00 57.88 MacLine -grestore -1.00 ps -561.50 57.38 558.00 57.38 MacLine -62.50 57.38 66.00 57.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 64.50 558.00 64.50 MacLine -grestore -1.00 ps -561.50 64.00 558.00 64.00 MacLine -62.50 64.00 66.00 64.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 71.12 558.00 71.12 MacLine -grestore -1.00 ps -561.50 70.62 558.00 70.62 MacLine -62.50 70.62 66.00 70.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 77.75 558.00 77.75 MacLine -grestore -1.00 ps -561.50 77.25 558.00 77.25 MacLine -62.50 77.25 66.00 77.25 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 84.25 554.50 84.25 MacLine -grestore -1.00 ps -561.50 83.88 554.50 83.88 MacLine -62.50 83.88 69.50 83.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1100) 23.50 88.75 35.50 WS -gsave 0.125 ps [1] sd -66.00 91.00 558.00 91.00 MacLine -grestore -1.00 ps -561.50 90.50 558.00 90.50 MacLine -62.50 90.50 66.00 90.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 97.62 558.00 97.62 MacLine -grestore -1.00 ps -561.50 97.12 558.00 97.12 MacLine -62.50 97.12 66.00 97.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 104.25 558.00 104.25 MacLine -grestore -1.00 ps -561.50 103.75 558.00 103.75 MacLine -62.50 103.75 66.00 103.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 110.88 558.00 110.88 MacLine -grestore -1.00 ps -561.50 110.38 558.00 110.38 MacLine -62.50 110.38 66.00 110.38 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 117.38 554.50 117.38 MacLine -grestore -1.00 ps -561.50 117.00 554.50 117.00 MacLine -62.50 117.00 69.50 117.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1000) 23.50 121.88 35.50 WS -gsave 0.125 ps [1] sd -66.00 124.12 558.00 124.12 MacLine -grestore -1.00 ps -561.50 123.62 558.00 123.62 MacLine -62.50 123.62 66.00 123.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 130.88 558.00 130.88 MacLine -grestore -1.00 ps -561.50 130.38 558.00 130.38 MacLine -62.50 130.38 66.00 130.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 137.50 558.00 137.50 MacLine -grestore -1.00 ps -561.50 137.00 558.00 137.00 MacLine -62.50 137.00 66.00 137.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 144.12 558.00 144.12 MacLine -grestore -1.00 ps -561.50 143.62 558.00 143.62 MacLine -62.50 143.62 66.00 143.62 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 150.62 554.50 150.62 MacLine -grestore -1.00 ps -561.50 150.25 554.50 150.25 MacLine -62.50 150.25 69.50 150.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(900) 32.38 155.12 26.62 WS -gsave 0.125 ps [1] sd -66.00 157.38 558.00 157.38 MacLine -grestore -1.00 ps -561.50 156.88 558.00 156.88 MacLine -62.50 156.88 66.00 156.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 164.00 558.00 164.00 MacLine -grestore -1.00 ps -561.50 163.50 558.00 163.50 MacLine -62.50 163.50 66.00 163.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 170.62 558.00 170.62 MacLine -grestore -1.00 ps -561.50 170.12 558.00 170.12 MacLine -62.50 170.12 66.00 170.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 177.25 558.00 177.25 MacLine -grestore -1.00 ps -561.50 176.75 558.00 176.75 MacLine -62.50 176.75 66.00 176.75 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 183.75 554.50 183.75 MacLine -grestore -1.00 ps -561.50 183.38 554.50 183.38 MacLine -62.50 183.38 69.50 183.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(800) 32.38 188.25 26.62 WS -gsave 0.125 ps [1] sd -66.00 190.50 558.00 190.50 MacLine -grestore -1.00 ps -561.50 190.00 558.00 190.00 MacLine -62.50 190.00 66.00 190.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 197.12 558.00 197.12 MacLine -grestore -1.00 ps -561.50 196.62 558.00 196.62 MacLine -62.50 196.62 66.00 196.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 203.75 558.00 203.75 MacLine -grestore -1.00 ps -561.50 203.25 558.00 203.25 MacLine -62.50 203.25 66.00 203.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 210.38 558.00 210.38 MacLine -grestore -1.00 ps -561.50 209.88 558.00 209.88 MacLine -62.50 209.88 66.00 209.88 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 217.00 554.50 217.00 MacLine -grestore -1.00 ps -561.50 216.62 554.50 216.62 MacLine -62.50 216.62 69.50 216.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(700) 32.38 221.50 26.62 WS -gsave 0.125 ps [1] sd -66.00 223.75 558.00 223.75 MacLine -grestore -1.00 ps -561.50 223.25 558.00 223.25 MacLine -62.50 223.25 66.00 223.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 230.38 558.00 230.38 MacLine -grestore -1.00 ps -561.50 229.88 558.00 229.88 MacLine -62.50 229.88 66.00 229.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 237.00 558.00 237.00 MacLine -grestore -1.00 ps -561.50 236.50 558.00 236.50 MacLine -62.50 236.50 66.00 236.50 MacLine -1 ps -1.00 ps -561.50 243.12 558.00 243.12 MacLine -62.50 243.12 66.00 243.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(x \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -558.38 239.00 558.38 17.00 MacLine -grestore -1.00 ps -557.88 13.50 557.88 17.00 MacLine -557.88 242.50 557.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -551.25 239.00 551.25 17.00 MacLine -grestore -1.00 ps -550.75 13.50 550.75 17.00 MacLine -550.75 242.50 550.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -544.12 237.25 544.12 18.75 MacLine -grestore -1.00 ps -543.62 13.50 543.62 18.75 MacLine -543.62 242.50 543.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -537.00 239.00 537.00 17.00 MacLine -grestore -1.00 ps -536.50 13.50 536.50 17.00 MacLine -536.50 242.50 536.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -529.88 239.00 529.88 17.00 MacLine -grestore -1.00 ps -529.38 13.50 529.38 17.00 MacLine -529.38 242.50 529.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.75 239.00 522.75 17.00 MacLine -grestore -1.00 ps -522.25 13.50 522.25 17.00 MacLine -522.25 242.50 522.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -515.62 239.00 515.62 17.00 MacLine -grestore -1.00 ps -515.12 13.50 515.12 17.00 MacLine -515.12 242.50 515.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -508.38 235.50 508.38 20.50 MacLine -grestore -1.00 ps -508.00 13.50 508.00 20.50 MacLine -508.00 242.50 508.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 504.12 259.88 8.88 WS -gsave 0.125 ps [1] sd -501.38 239.00 501.38 17.00 MacLine -grestore -1.00 ps -500.88 13.50 500.88 17.00 MacLine -500.88 242.50 500.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -494.25 239.00 494.25 17.00 MacLine -grestore -1.00 ps -493.75 13.50 493.75 17.00 MacLine -493.75 242.50 493.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.12 239.00 487.12 17.00 MacLine -grestore -1.00 ps -486.62 13.50 486.62 17.00 MacLine -486.62 242.50 486.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.00 239.00 480.00 17.00 MacLine -grestore -1.00 ps -479.50 13.50 479.50 17.00 MacLine -479.50 242.50 479.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.88 237.25 472.88 18.75 MacLine -grestore -1.00 ps -472.38 13.50 472.38 18.75 MacLine -472.38 242.50 472.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -465.75 239.00 465.75 17.00 MacLine -grestore -1.00 ps -465.25 13.50 465.25 17.00 MacLine -465.25 242.50 465.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -458.62 239.00 458.62 17.00 MacLine -grestore -1.00 ps -458.12 13.50 458.12 17.00 MacLine -458.12 242.50 458.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -451.50 239.00 451.50 17.00 MacLine -grestore -1.00 ps -451.00 13.50 451.00 17.00 MacLine -451.00 242.50 451.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -444.38 239.00 444.38 17.00 MacLine -grestore -1.00 ps -443.88 13.50 443.88 17.00 MacLine -443.88 242.50 443.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -437.12 235.50 437.12 20.50 MacLine -grestore -1.00 ps -436.75 13.50 436.75 20.50 MacLine -436.75 242.50 436.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 432.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -430.12 239.00 430.12 17.00 MacLine -grestore -1.00 ps -429.62 13.50 429.62 17.00 MacLine -429.62 242.50 429.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -423.00 239.00 423.00 17.00 MacLine -grestore -1.00 ps -422.50 13.50 422.50 17.00 MacLine -422.50 242.50 422.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -415.88 239.00 415.88 17.00 MacLine -grestore -1.00 ps -415.38 13.50 415.38 17.00 MacLine -415.38 242.50 415.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -408.75 239.00 408.75 17.00 MacLine -grestore -1.00 ps -408.25 13.50 408.25 17.00 MacLine -408.25 242.50 408.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -401.62 237.25 401.62 18.75 MacLine -grestore -1.00 ps -401.12 13.50 401.12 18.75 MacLine -401.12 242.50 401.12 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -394.50 239.00 394.50 17.00 MacLine -grestore -1.00 ps -394.00 13.50 394.00 17.00 MacLine -394.00 242.50 394.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -387.38 239.00 387.38 17.00 MacLine -grestore -1.00 ps -386.88 13.50 386.88 17.00 MacLine -386.88 242.50 386.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -380.25 239.00 380.25 17.00 MacLine -grestore -1.00 ps -379.75 13.50 379.75 17.00 MacLine -379.75 242.50 379.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.12 239.00 373.12 17.00 MacLine -grestore -1.00 ps -372.62 13.50 372.62 17.00 MacLine -372.62 242.50 372.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -365.88 235.50 365.88 20.50 MacLine -grestore -1.00 ps -365.50 13.50 365.50 20.50 MacLine -365.50 242.50 365.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 361.62 259.88 8.88 WS -gsave 0.125 ps [1] sd -358.88 239.00 358.88 17.00 MacLine -grestore -1.00 ps -358.38 13.50 358.38 17.00 MacLine -358.38 242.50 358.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -351.75 239.00 351.75 17.00 MacLine -grestore -1.00 ps -351.25 13.50 351.25 17.00 MacLine -351.25 242.50 351.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -344.62 239.00 344.62 17.00 MacLine -grestore -1.00 ps -344.12 13.50 344.12 17.00 MacLine -344.12 242.50 344.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -337.50 239.00 337.50 17.00 MacLine -grestore -1.00 ps -337.00 13.50 337.00 17.00 MacLine -337.00 242.50 337.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -330.38 237.25 330.38 18.75 MacLine -grestore -1.00 ps -329.88 13.50 329.88 18.75 MacLine -329.88 242.50 329.88 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 239.00 323.25 17.00 MacLine -grestore -1.00 ps -322.75 13.50 322.75 17.00 MacLine -322.75 242.50 322.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.12 239.00 316.12 17.00 MacLine -grestore -1.00 ps -315.62 13.50 315.62 17.00 MacLine -315.62 242.50 315.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -308.88 239.00 308.88 17.00 MacLine -grestore -1.00 ps -308.38 13.50 308.38 17.00 MacLine -308.38 242.50 308.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -301.75 239.00 301.75 17.00 MacLine -grestore -1.00 ps -301.25 13.50 301.25 17.00 MacLine -301.25 242.50 301.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -294.50 235.50 294.50 20.50 MacLine -grestore -1.00 ps -294.12 13.50 294.12 20.50 MacLine -294.12 242.50 294.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 290.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -287.50 239.00 287.50 17.00 MacLine -grestore -1.00 ps -287.00 13.50 287.00 17.00 MacLine -287.00 242.50 287.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -280.38 239.00 280.38 17.00 MacLine -grestore -1.00 ps -279.88 13.50 279.88 17.00 MacLine -279.88 242.50 279.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -273.25 239.00 273.25 17.00 MacLine -grestore -1.00 ps -272.75 13.50 272.75 17.00 MacLine -272.75 242.50 272.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.12 239.00 266.12 17.00 MacLine -grestore -1.00 ps -265.62 13.50 265.62 17.00 MacLine -265.62 242.50 265.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -259.00 237.25 259.00 18.75 MacLine -grestore -1.00 ps -258.50 13.50 258.50 18.75 MacLine -258.50 242.50 258.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -251.88 239.00 251.88 17.00 MacLine -grestore -1.00 ps -251.38 13.50 251.38 17.00 MacLine -251.38 242.50 251.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -244.75 239.00 244.75 17.00 MacLine -grestore -1.00 ps -244.25 13.50 244.25 17.00 MacLine -244.25 242.50 244.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -237.62 239.00 237.62 17.00 MacLine -grestore -1.00 ps -237.12 13.50 237.12 17.00 MacLine -237.12 242.50 237.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -230.50 239.00 230.50 17.00 MacLine -grestore -1.00 ps -230.00 13.50 230.00 17.00 MacLine -230.00 242.50 230.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-2) 216.25 259.88 14.25 WS -gsave 0.125 ps [1] sd -216.25 239.00 216.25 17.00 MacLine -grestore -1.00 ps -215.75 13.50 215.75 17.00 MacLine -215.75 242.50 215.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -209.12 239.00 209.12 17.00 MacLine -grestore -1.00 ps -208.62 13.50 208.62 17.00 MacLine -208.62 242.50 208.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -202.00 239.00 202.00 17.00 MacLine -grestore -1.00 ps -201.50 13.50 201.50 17.00 MacLine -201.50 242.50 201.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -194.88 239.00 194.88 17.00 MacLine -grestore -1.00 ps -194.38 13.50 194.38 17.00 MacLine -194.38 242.50 194.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -187.75 237.25 187.75 18.75 MacLine -grestore -1.00 ps -187.25 13.50 187.25 18.75 MacLine -187.25 242.50 187.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -180.62 239.00 180.62 17.00 MacLine -grestore -1.00 ps -180.12 13.50 180.12 17.00 MacLine -180.12 242.50 180.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -173.50 239.00 173.50 17.00 MacLine -grestore -1.00 ps -173.00 13.50 173.00 17.00 MacLine -173.00 242.50 173.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -166.38 239.00 166.38 17.00 MacLine -grestore -1.00 ps -165.88 13.50 165.88 17.00 MacLine -165.88 242.50 165.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.25 239.00 159.25 17.00 MacLine -grestore -1.00 ps -158.75 13.50 158.75 17.00 MacLine -158.75 242.50 158.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -152.00 235.50 152.00 20.50 MacLine -grestore -1.00 ps -151.62 13.50 151.62 20.50 MacLine -151.62 242.50 151.62 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-4) 145.00 259.88 14.25 WS -gsave 0.125 ps [1] sd -145.00 239.00 145.00 17.00 MacLine -grestore -1.00 ps -144.50 13.50 144.50 17.00 MacLine -144.50 242.50 144.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -137.88 239.00 137.88 17.00 MacLine -grestore -1.00 ps -137.38 13.50 137.38 17.00 MacLine -137.38 242.50 137.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -130.75 239.00 130.75 17.00 MacLine -grestore -1.00 ps -130.25 13.50 130.25 17.00 MacLine -130.25 242.50 130.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -123.62 239.00 123.62 17.00 MacLine -grestore -1.00 ps -123.12 13.50 123.12 17.00 MacLine -123.12 242.50 123.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -116.50 237.25 116.50 18.75 MacLine -grestore -1.00 ps -116.00 13.50 116.00 18.75 MacLine -116.00 242.50 116.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -109.38 239.00 109.38 17.00 MacLine -grestore -1.00 ps -108.88 13.50 108.88 17.00 MacLine -108.88 242.50 108.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.25 239.00 102.25 17.00 MacLine -grestore -1.00 ps -101.75 13.50 101.75 17.00 MacLine -101.75 242.50 101.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -95.12 239.00 95.12 17.00 MacLine -grestore -1.00 ps -94.62 13.50 94.62 17.00 MacLine -94.62 242.50 94.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -88.00 239.00 88.00 17.00 MacLine -grestore -1.00 ps -87.50 13.50 87.50 17.00 MacLine -87.50 242.50 87.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -80.75 235.50 80.75 20.50 MacLine -grestore -1.00 ps -80.38 13.50 80.38 20.50 MacLine -80.38 242.50 80.38 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-6) 73.75 259.88 14.25 WS -gsave 0.125 ps [1] sd -73.75 239.00 73.75 17.00 MacLine -grestore -1.00 ps -73.25 13.50 73.25 17.00 MacLine -73.25 242.50 73.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.62 239.00 66.62 17.00 MacLine -grestore -1.00 ps -66.12 13.50 66.12 17.00 MacLine -66.12 242.50 66.12 239.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(t \(s\)) 298.62 284.38 27.75 WS -2.00 ps -newpath 63.12 14.00 M -68.12 14.25 L -73.12 14.62 L -78.12 15.25 L -83.12 16.12 L -88.25 17.12 L -93.25 18.38 L -98.38 19.75 L -103.38 21.38 L -108.38 23.12 L -113.50 25.12 L -118.50 27.12 L -123.50 29.38 L -128.50 31.88 L -133.62 34.38 L -138.62 37.00 L -143.62 39.88 L -148.75 42.88 L -153.75 45.88 L -158.88 49.12 L -163.88 52.38 L -168.88 55.88 L -173.88 59.38 L -179.00 62.88 L -184.00 66.62 L -189.00 70.38 L -194.12 74.25 L -199.12 78.12 L -204.12 82.12 L -209.25 86.25 L -214.25 90.38 L -219.25 94.50 L -224.25 98.75 L -229.38 103.00 L -234.38 107.25 L -239.50 111.62 L -244.50 115.88 L -249.50 120.25 L -254.62 124.62 L -259.62 129.00 L -264.62 133.25 L -269.62 137.62 L -274.75 142.00 L -279.75 146.38 L -284.75 150.62 L -289.88 154.88 L -294.88 159.12 L -300.00 163.38 L -305.00 167.50 L -310.00 171.62 L -315.00 175.62 L -320.00 179.62 L -325.00 183.50 L -330.12 187.38 L -335.12 191.12 L -340.25 194.88 L -345.25 198.38 L -350.25 201.88 L -355.38 205.25 L -360.38 208.62 L -365.38 211.75 L -370.38 214.75 L -375.50 217.75 L -380.50 220.50 L -385.50 223.12 L -390.62 225.75 L -395.62 228.00 L -400.75 230.25 L -405.75 232.38 L -410.75 234.25 L -415.75 236.00 L -420.88 237.50 L -425.88 238.88 L -430.88 240.12 L -436.00 241.00 L -441.00 241.88 L -446.00 242.50 L -451.12 242.88 L -456.12 243.00 L -461.12 243.00 L -466.12 242.62 L -471.25 242.12 L -476.25 241.38 L -481.38 240.38 L -486.38 239.12 L -491.38 237.75 L -496.50 235.88 L -501.50 233.88 L -506.50 231.62 L -511.50 229.00 L -516.62 226.25 L -521.62 223.12 L -526.62 219.62 L -531.75 216.00 L -536.75 211.88 L -541.88 207.50 L -546.88 202.88 L -551.88 198.00 L -556.88 192.62 L -561.88 187.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v3.gif deleted file mode 100755 index 692cf8435..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v4.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v4.eps deleted file mode 100755 index 38291cfed..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v4.eps +++ /dev/null @@ -1,1225 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_x4 -%%Creation Date: Sun, Sep 10, 1995 06:45 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.75 558.00 13.75 MacLine -62.50 13.75 66.00 13.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 21.00 558.00 21.00 MacLine -grestore -1.00 ps -561.50 20.50 558.00 20.50 MacLine -62.50 20.50 66.00 20.50 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 27.62 554.50 27.62 MacLine -grestore -1.00 ps -561.50 27.25 554.50 27.25 MacLine -62.50 27.25 69.50 27.25 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(1100) 23.50 32.12 35.50 WS -gsave 0.125 ps [1] sd -66.00 34.50 558.00 34.50 MacLine -grestore -1.00 ps -561.50 34.00 558.00 34.00 MacLine -62.50 34.00 66.00 34.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 41.12 558.00 41.12 MacLine -grestore -1.00 ps -561.50 40.62 558.00 40.62 MacLine -62.50 40.62 66.00 40.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 47.88 558.00 47.88 MacLine -grestore -1.00 ps -561.50 47.38 558.00 47.38 MacLine -62.50 47.38 66.00 47.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 54.62 558.00 54.62 MacLine -grestore -1.00 ps -561.50 54.12 558.00 54.12 MacLine -62.50 54.12 66.00 54.12 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 61.25 554.50 61.25 MacLine -grestore -1.00 ps -561.50 60.88 554.50 60.88 MacLine -62.50 60.88 69.50 60.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1000) 23.50 65.75 35.50 WS -gsave 0.125 ps [1] sd -66.00 68.12 558.00 68.12 MacLine -grestore -1.00 ps -561.50 67.62 558.00 67.62 MacLine -62.50 67.62 66.00 67.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 74.88 558.00 74.88 MacLine -grestore -1.00 ps -561.50 74.38 558.00 74.38 MacLine -62.50 74.38 66.00 74.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 81.62 558.00 81.62 MacLine -grestore -1.00 ps -561.50 81.12 558.00 81.12 MacLine -62.50 81.12 66.00 81.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 88.38 558.00 88.38 MacLine -grestore -1.00 ps -561.50 87.88 558.00 87.88 MacLine -62.50 87.88 66.00 87.88 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 95.00 554.50 95.00 MacLine -grestore -1.00 ps -561.50 94.62 554.50 94.62 MacLine -62.50 94.62 69.50 94.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(900) 32.38 99.50 26.62 WS -gsave 0.125 ps [1] sd -66.00 101.88 558.00 101.88 MacLine -grestore -1.00 ps -561.50 101.38 558.00 101.38 MacLine -62.50 101.38 66.00 101.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 108.62 558.00 108.62 MacLine -grestore -1.00 ps -561.50 108.12 558.00 108.12 MacLine -62.50 108.12 66.00 108.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 115.38 558.00 115.38 MacLine -grestore -1.00 ps -561.50 114.88 558.00 114.88 MacLine -62.50 114.88 66.00 114.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 122.12 558.00 122.12 MacLine -grestore -1.00 ps -561.50 121.62 558.00 121.62 MacLine -62.50 121.62 66.00 121.62 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 128.75 554.50 128.75 MacLine -grestore -1.00 ps -561.50 128.38 554.50 128.38 MacLine -62.50 128.38 69.50 128.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(800) 32.38 133.25 26.62 WS -gsave 0.125 ps [1] sd -66.00 135.62 558.00 135.62 MacLine -grestore -1.00 ps -561.50 135.12 558.00 135.12 MacLine -62.50 135.12 66.00 135.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 142.38 558.00 142.38 MacLine -grestore -1.00 ps -561.50 141.88 558.00 141.88 MacLine -62.50 141.88 66.00 141.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 149.00 558.00 149.00 MacLine -grestore -1.00 ps -561.50 148.50 558.00 148.50 MacLine -62.50 148.50 66.00 148.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 155.75 558.00 155.75 MacLine -grestore -1.00 ps -561.50 155.25 558.00 155.25 MacLine -62.50 155.25 66.00 155.25 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 162.38 554.50 162.38 MacLine -grestore -1.00 ps -561.50 162.00 554.50 162.00 MacLine -62.50 162.00 69.50 162.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(700) 32.38 166.88 26.62 WS -gsave 0.125 ps [1] sd -66.00 169.25 558.00 169.25 MacLine -grestore -1.00 ps -561.50 168.75 558.00 168.75 MacLine -62.50 168.75 66.00 168.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 176.00 558.00 176.00 MacLine -grestore -1.00 ps -561.50 175.50 558.00 175.50 MacLine -62.50 175.50 66.00 175.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 182.75 558.00 182.75 MacLine -grestore -1.00 ps -561.50 182.25 558.00 182.25 MacLine -62.50 182.25 66.00 182.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 189.50 558.00 189.50 MacLine -grestore -1.00 ps -561.50 189.00 558.00 189.00 MacLine -62.50 189.00 66.00 189.00 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 196.12 554.50 196.12 MacLine -grestore -1.00 ps -561.50 195.75 554.50 195.75 MacLine -62.50 195.75 69.50 195.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(600) 32.38 200.62 26.62 WS -gsave 0.125 ps [1] sd -66.00 203.00 558.00 203.00 MacLine -grestore -1.00 ps -561.50 202.50 558.00 202.50 MacLine -62.50 202.50 66.00 202.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 209.75 558.00 209.75 MacLine -grestore -1.00 ps -561.50 209.25 558.00 209.25 MacLine -62.50 209.25 66.00 209.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 216.50 558.00 216.50 MacLine -grestore -1.00 ps -561.50 216.00 558.00 216.00 MacLine -62.50 216.00 66.00 216.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 223.25 558.00 223.25 MacLine -grestore -1.00 ps -561.50 222.75 558.00 222.75 MacLine -62.50 222.75 66.00 222.75 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 229.88 554.50 229.88 MacLine -grestore -1.00 ps -561.50 229.50 554.50 229.50 MacLine -62.50 229.50 69.50 229.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(500) 32.38 234.38 26.62 WS -gsave 0.125 ps [1] sd -66.00 236.75 558.00 236.75 MacLine -grestore -1.00 ps -561.50 236.25 558.00 236.25 MacLine -62.50 236.25 66.00 236.25 MacLine -1 ps -1.00 ps -561.50 243.00 558.00 243.00 MacLine -62.50 243.00 66.00 243.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(x \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -558.38 239.00 558.38 17.00 MacLine -grestore -1.00 ps -557.88 13.50 557.88 17.00 MacLine -557.88 242.50 557.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -551.25 239.00 551.25 17.00 MacLine -grestore -1.00 ps -550.75 13.50 550.75 17.00 MacLine -550.75 242.50 550.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -544.12 237.25 544.12 18.75 MacLine -grestore -1.00 ps -543.62 13.50 543.62 18.75 MacLine -543.62 242.50 543.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -537.00 239.00 537.00 17.00 MacLine -grestore -1.00 ps -536.50 13.50 536.50 17.00 MacLine -536.50 242.50 536.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -529.88 239.00 529.88 17.00 MacLine -grestore -1.00 ps -529.38 13.50 529.38 17.00 MacLine -529.38 242.50 529.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.75 239.00 522.75 17.00 MacLine -grestore -1.00 ps -522.25 13.50 522.25 17.00 MacLine -522.25 242.50 522.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -515.62 239.00 515.62 17.00 MacLine -grestore -1.00 ps -515.12 13.50 515.12 17.00 MacLine -515.12 242.50 515.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -508.38 235.50 508.38 20.50 MacLine -grestore -1.00 ps -508.00 13.50 508.00 20.50 MacLine -508.00 242.50 508.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 504.12 259.88 8.88 WS -gsave 0.125 ps [1] sd -501.38 239.00 501.38 17.00 MacLine -grestore -1.00 ps -500.88 13.50 500.88 17.00 MacLine -500.88 242.50 500.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -494.25 239.00 494.25 17.00 MacLine -grestore -1.00 ps -493.75 13.50 493.75 17.00 MacLine -493.75 242.50 493.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.12 239.00 487.12 17.00 MacLine -grestore -1.00 ps -486.62 13.50 486.62 17.00 MacLine -486.62 242.50 486.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.00 239.00 480.00 17.00 MacLine -grestore -1.00 ps -479.50 13.50 479.50 17.00 MacLine -479.50 242.50 479.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.88 237.25 472.88 18.75 MacLine -grestore -1.00 ps -472.38 13.50 472.38 18.75 MacLine -472.38 242.50 472.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -465.75 239.00 465.75 17.00 MacLine -grestore -1.00 ps -465.25 13.50 465.25 17.00 MacLine -465.25 242.50 465.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -458.62 239.00 458.62 17.00 MacLine -grestore -1.00 ps -458.12 13.50 458.12 17.00 MacLine -458.12 242.50 458.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -451.50 239.00 451.50 17.00 MacLine -grestore -1.00 ps -451.00 13.50 451.00 17.00 MacLine -451.00 242.50 451.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -444.38 239.00 444.38 17.00 MacLine -grestore -1.00 ps -443.88 13.50 443.88 17.00 MacLine -443.88 242.50 443.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -437.12 235.50 437.12 20.50 MacLine -grestore -1.00 ps -436.75 13.50 436.75 20.50 MacLine -436.75 242.50 436.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 432.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -430.12 239.00 430.12 17.00 MacLine -grestore -1.00 ps -429.62 13.50 429.62 17.00 MacLine -429.62 242.50 429.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -423.00 239.00 423.00 17.00 MacLine -grestore -1.00 ps -422.50 13.50 422.50 17.00 MacLine -422.50 242.50 422.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -415.88 239.00 415.88 17.00 MacLine -grestore -1.00 ps -415.38 13.50 415.38 17.00 MacLine -415.38 242.50 415.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -408.75 239.00 408.75 17.00 MacLine -grestore -1.00 ps -408.25 13.50 408.25 17.00 MacLine -408.25 242.50 408.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -401.62 237.25 401.62 18.75 MacLine -grestore -1.00 ps -401.12 13.50 401.12 18.75 MacLine -401.12 242.50 401.12 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -394.50 239.00 394.50 17.00 MacLine -grestore -1.00 ps -394.00 13.50 394.00 17.00 MacLine -394.00 242.50 394.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -387.38 239.00 387.38 17.00 MacLine -grestore -1.00 ps -386.88 13.50 386.88 17.00 MacLine -386.88 242.50 386.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -380.25 239.00 380.25 17.00 MacLine -grestore -1.00 ps -379.75 13.50 379.75 17.00 MacLine -379.75 242.50 379.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.12 239.00 373.12 17.00 MacLine -grestore -1.00 ps -372.62 13.50 372.62 17.00 MacLine -372.62 242.50 372.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -365.88 235.50 365.88 20.50 MacLine -grestore -1.00 ps -365.50 13.50 365.50 20.50 MacLine -365.50 242.50 365.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 361.62 259.88 8.88 WS -gsave 0.125 ps [1] sd -358.88 239.00 358.88 17.00 MacLine -grestore -1.00 ps -358.38 13.50 358.38 17.00 MacLine -358.38 242.50 358.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -351.75 239.00 351.75 17.00 MacLine -grestore -1.00 ps -351.25 13.50 351.25 17.00 MacLine -351.25 242.50 351.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -344.62 239.00 344.62 17.00 MacLine -grestore -1.00 ps -344.12 13.50 344.12 17.00 MacLine -344.12 242.50 344.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -337.50 239.00 337.50 17.00 MacLine -grestore -1.00 ps -337.00 13.50 337.00 17.00 MacLine -337.00 242.50 337.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -330.38 237.25 330.38 18.75 MacLine -grestore -1.00 ps -329.88 13.50 329.88 18.75 MacLine -329.88 242.50 329.88 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 239.00 323.25 17.00 MacLine -grestore -1.00 ps -322.75 13.50 322.75 17.00 MacLine -322.75 242.50 322.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.12 239.00 316.12 17.00 MacLine -grestore -1.00 ps -315.62 13.50 315.62 17.00 MacLine -315.62 242.50 315.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -308.88 239.00 308.88 17.00 MacLine -grestore -1.00 ps -308.38 13.50 308.38 17.00 MacLine -308.38 242.50 308.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -301.75 239.00 301.75 17.00 MacLine -grestore -1.00 ps -301.25 13.50 301.25 17.00 MacLine -301.25 242.50 301.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -294.50 235.50 294.50 20.50 MacLine -grestore -1.00 ps -294.12 13.50 294.12 20.50 MacLine -294.12 242.50 294.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 290.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -287.50 239.00 287.50 17.00 MacLine -grestore -1.00 ps -287.00 13.50 287.00 17.00 MacLine -287.00 242.50 287.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -280.38 239.00 280.38 17.00 MacLine -grestore -1.00 ps -279.88 13.50 279.88 17.00 MacLine -279.88 242.50 279.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -273.25 239.00 273.25 17.00 MacLine -grestore -1.00 ps -272.75 13.50 272.75 17.00 MacLine -272.75 242.50 272.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.12 239.00 266.12 17.00 MacLine -grestore -1.00 ps -265.62 13.50 265.62 17.00 MacLine -265.62 242.50 265.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -259.00 237.25 259.00 18.75 MacLine -grestore -1.00 ps -258.50 13.50 258.50 18.75 MacLine -258.50 242.50 258.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -251.88 239.00 251.88 17.00 MacLine -grestore -1.00 ps -251.38 13.50 251.38 17.00 MacLine -251.38 242.50 251.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -244.75 239.00 244.75 17.00 MacLine -grestore -1.00 ps -244.25 13.50 244.25 17.00 MacLine -244.25 242.50 244.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -237.62 239.00 237.62 17.00 MacLine -grestore -1.00 ps -237.12 13.50 237.12 17.00 MacLine -237.12 242.50 237.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -230.50 239.00 230.50 17.00 MacLine -grestore -1.00 ps -230.00 13.50 230.00 17.00 MacLine -230.00 242.50 230.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-2) 216.25 259.88 14.25 WS -gsave 0.125 ps [1] sd -216.25 239.00 216.25 17.00 MacLine -grestore -1.00 ps -215.75 13.50 215.75 17.00 MacLine -215.75 242.50 215.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -209.12 239.00 209.12 17.00 MacLine -grestore -1.00 ps -208.62 13.50 208.62 17.00 MacLine -208.62 242.50 208.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -202.00 239.00 202.00 17.00 MacLine -grestore -1.00 ps -201.50 13.50 201.50 17.00 MacLine -201.50 242.50 201.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -194.88 239.00 194.88 17.00 MacLine -grestore -1.00 ps -194.38 13.50 194.38 17.00 MacLine -194.38 242.50 194.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -187.75 237.25 187.75 18.75 MacLine -grestore -1.00 ps -187.25 13.50 187.25 18.75 MacLine -187.25 242.50 187.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -180.62 239.00 180.62 17.00 MacLine -grestore -1.00 ps -180.12 13.50 180.12 17.00 MacLine -180.12 242.50 180.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -173.50 239.00 173.50 17.00 MacLine -grestore -1.00 ps -173.00 13.50 173.00 17.00 MacLine -173.00 242.50 173.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -166.38 239.00 166.38 17.00 MacLine -grestore -1.00 ps -165.88 13.50 165.88 17.00 MacLine -165.88 242.50 165.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.25 239.00 159.25 17.00 MacLine -grestore -1.00 ps -158.75 13.50 158.75 17.00 MacLine -158.75 242.50 158.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -152.00 235.50 152.00 20.50 MacLine -grestore -1.00 ps -151.62 13.50 151.62 20.50 MacLine -151.62 242.50 151.62 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-4) 145.00 259.88 14.25 WS -gsave 0.125 ps [1] sd -145.00 239.00 145.00 17.00 MacLine -grestore -1.00 ps -144.50 13.50 144.50 17.00 MacLine -144.50 242.50 144.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -137.88 239.00 137.88 17.00 MacLine -grestore -1.00 ps -137.38 13.50 137.38 17.00 MacLine -137.38 242.50 137.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -130.75 239.00 130.75 17.00 MacLine -grestore -1.00 ps -130.25 13.50 130.25 17.00 MacLine -130.25 242.50 130.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -123.62 239.00 123.62 17.00 MacLine -grestore -1.00 ps -123.12 13.50 123.12 17.00 MacLine -123.12 242.50 123.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -116.50 237.25 116.50 18.75 MacLine -grestore -1.00 ps -116.00 13.50 116.00 18.75 MacLine -116.00 242.50 116.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -109.38 239.00 109.38 17.00 MacLine -grestore -1.00 ps -108.88 13.50 108.88 17.00 MacLine -108.88 242.50 108.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.25 239.00 102.25 17.00 MacLine -grestore -1.00 ps -101.75 13.50 101.75 17.00 MacLine -101.75 242.50 101.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -95.12 239.00 95.12 17.00 MacLine -grestore -1.00 ps -94.62 13.50 94.62 17.00 MacLine -94.62 242.50 94.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -88.00 239.00 88.00 17.00 MacLine -grestore -1.00 ps -87.50 13.50 87.50 17.00 MacLine -87.50 242.50 87.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -80.75 235.50 80.75 20.50 MacLine -grestore -1.00 ps -80.38 13.50 80.38 20.50 MacLine -80.38 242.50 80.38 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-6) 73.75 259.88 14.25 WS -gsave 0.125 ps [1] sd -73.75 239.00 73.75 17.00 MacLine -grestore -1.00 ps -73.25 13.50 73.25 17.00 MacLine -73.25 242.50 73.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.62 239.00 66.62 17.00 MacLine -grestore -1.00 ps -66.12 13.50 66.12 17.00 MacLine -66.12 242.50 66.12 239.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(t \(s\)) 298.62 284.38 27.75 WS -2.00 ps -newpath 63.12 185.12 M -68.12 190.88 L -73.12 196.25 L -78.12 201.38 L -83.12 206.12 L -88.25 210.62 L -93.25 214.75 L -98.38 218.62 L -103.38 222.12 L -108.38 225.38 L -113.50 228.38 L -118.50 231.00 L -123.50 233.38 L -128.50 235.38 L -133.62 237.25 L -138.62 238.88 L -143.62 240.12 L -148.75 241.12 L -153.75 242.00 L -158.88 242.50 L -163.88 242.88 L -168.88 243.00 L -173.88 242.88 L -179.00 242.50 L -184.00 242.00 L -189.00 241.25 L -194.12 240.25 L -199.12 239.12 L -204.12 237.75 L -209.25 236.25 L -214.25 234.50 L -219.25 232.62 L -224.25 230.62 L -229.38 228.38 L -234.38 226.00 L -239.50 223.50 L -244.50 220.88 L -249.50 218.12 L -254.62 215.12 L -259.62 212.12 L -264.62 208.88 L -269.62 205.62 L -274.75 202.25 L -279.75 198.75 L -284.75 195.12 L -289.88 191.50 L -294.88 187.62 L -300.00 183.88 L -305.00 179.88 L -310.00 175.88 L -315.00 171.88 L -320.00 167.75 L -325.00 163.50 L -330.12 159.25 L -335.12 155.00 L -340.25 150.75 L -345.25 146.38 L -350.25 142.12 L -355.38 137.75 L -360.38 133.38 L -365.38 129.00 L -370.38 124.62 L -375.50 120.25 L -380.50 115.88 L -385.50 111.50 L -390.62 107.12 L -395.62 102.88 L -400.75 98.62 L -405.75 94.38 L -410.75 90.12 L -415.75 86.00 L -420.88 82.00 L -425.88 78.00 L -430.88 74.00 L -436.00 70.12 L -441.00 66.38 L -446.00 62.62 L -451.12 59.00 L -456.12 55.50 L -461.12 52.12 L -466.12 48.75 L -471.25 45.50 L -476.25 42.50 L -481.38 39.50 L -486.38 36.75 L -491.38 34.00 L -496.50 31.50 L -501.50 29.12 L -506.50 26.88 L -511.50 24.75 L -516.62 22.88 L -521.62 21.12 L -526.62 19.62 L -531.75 18.12 L -536.75 17.00 L -541.88 16.00 L -546.88 15.12 L -551.88 14.50 L -556.88 14.25 L -561.88 14.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v4.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v4.gif deleted file mode 100755 index efb37a7ca..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v4.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v5.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v5.eps deleted file mode 100755 index b6a777db7..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v5.eps +++ /dev/null @@ -1,1257 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_x5 -%%Creation Date: Sun, Sep 10, 1995 06:45 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -gsave 0.125 ps [1] sd -67.75 241.50 556.25 241.50 MacLine -grestore -1.00 ps -561.50 241.00 556.25 241.00 MacLine -62.50 241.00 67.75 241.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 235.62 558.00 235.62 MacLine -grestore -1.00 ps -561.50 235.12 558.00 235.12 MacLine -62.50 235.12 66.00 235.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 229.88 558.00 229.88 MacLine -grestore -1.00 ps -561.50 229.38 558.00 229.38 MacLine -62.50 229.38 66.00 229.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 224.00 558.00 224.00 MacLine -grestore -1.00 ps -561.50 223.50 558.00 223.50 MacLine -62.50 223.50 66.00 223.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 218.12 558.00 218.12 MacLine -grestore -1.00 ps -561.50 217.62 558.00 217.62 MacLine -62.50 217.62 66.00 217.62 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 212.25 554.50 212.25 MacLine -grestore -1.00 ps -561.50 211.88 554.50 211.88 MacLine -62.50 211.88 69.50 211.88 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(-300) 27.00 216.75 32.00 WS -gsave 0.125 ps [1] sd -66.00 206.50 558.00 206.50 MacLine -grestore -1.00 ps -561.50 206.00 558.00 206.00 MacLine -62.50 206.00 66.00 206.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 200.62 558.00 200.62 MacLine -grestore -1.00 ps -561.50 200.12 558.00 200.12 MacLine -62.50 200.12 66.00 200.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 194.88 558.00 194.88 MacLine -grestore -1.00 ps -561.50 194.38 558.00 194.38 MacLine -62.50 194.38 66.00 194.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 189.00 558.00 189.00 MacLine -grestore -1.00 ps -561.50 188.50 558.00 188.50 MacLine -62.50 188.50 66.00 188.50 MacLine -1 ps -gsave 0.125 ps [1] sd -67.75 183.12 556.25 183.12 MacLine -grestore -1.00 ps -561.50 182.62 556.25 182.62 MacLine -62.50 182.62 67.75 182.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 177.38 558.00 177.38 MacLine -grestore -1.00 ps -561.50 176.88 558.00 176.88 MacLine -62.50 176.88 66.00 176.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 171.50 558.00 171.50 MacLine -grestore -1.00 ps -561.50 171.00 558.00 171.00 MacLine -62.50 171.00 66.00 171.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 165.75 558.00 165.75 MacLine -grestore -1.00 ps -561.50 165.25 558.00 165.25 MacLine -62.50 165.25 66.00 165.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 159.88 558.00 159.88 MacLine -grestore -1.00 ps -561.50 159.38 558.00 159.38 MacLine -62.50 159.38 66.00 159.38 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 153.88 554.50 153.88 MacLine -grestore -1.00 ps -561.50 153.50 554.50 153.50 MacLine -62.50 153.50 69.50 153.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-200) 27.00 158.38 32.00 WS -gsave 0.125 ps [1] sd -66.00 148.25 558.00 148.25 MacLine -grestore -1.00 ps -561.50 147.75 558.00 147.75 MacLine -62.50 147.75 66.00 147.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 142.38 558.00 142.38 MacLine -grestore -1.00 ps -561.50 141.88 558.00 141.88 MacLine -62.50 141.88 66.00 141.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 136.50 558.00 136.50 MacLine -grestore -1.00 ps -561.50 136.00 558.00 136.00 MacLine -62.50 136.00 66.00 136.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 130.75 558.00 130.75 MacLine -grestore -1.00 ps -561.50 130.25 558.00 130.25 MacLine -62.50 130.25 66.00 130.25 MacLine -1 ps -gsave 0.125 ps [1] sd -67.75 124.88 556.25 124.88 MacLine -grestore -1.00 ps -561.50 124.38 556.25 124.38 MacLine -62.50 124.38 67.75 124.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 119.12 558.00 119.12 MacLine -grestore -1.00 ps -561.50 118.62 558.00 118.62 MacLine -62.50 118.62 66.00 118.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 113.25 558.00 113.25 MacLine -grestore -1.00 ps -561.50 112.75 558.00 112.75 MacLine -62.50 112.75 66.00 112.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 107.38 558.00 107.38 MacLine -grestore -1.00 ps -561.50 106.88 558.00 106.88 MacLine -62.50 106.88 66.00 106.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 101.62 558.00 101.62 MacLine -grestore -1.00 ps -561.50 101.12 558.00 101.12 MacLine -62.50 101.12 66.00 101.12 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 95.62 554.50 95.62 MacLine -grestore -1.00 ps -561.50 95.25 554.50 95.25 MacLine -62.50 95.25 69.50 95.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-100) 27.00 100.12 32.00 WS -gsave 0.125 ps [1] sd -66.00 89.88 558.00 89.88 MacLine -grestore -1.00 ps -561.50 89.38 558.00 89.38 MacLine -62.50 89.38 66.00 89.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 84.12 558.00 84.12 MacLine -grestore -1.00 ps -561.50 83.62 558.00 83.62 MacLine -62.50 83.62 66.00 83.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 78.25 558.00 78.25 MacLine -grestore -1.00 ps -561.50 77.75 558.00 77.75 MacLine -62.50 77.75 66.00 77.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 72.50 558.00 72.50 MacLine -grestore -1.00 ps -561.50 72.00 558.00 72.00 MacLine -62.50 72.00 66.00 72.00 MacLine -1 ps -gsave 0.125 ps [1] sd -67.75 66.62 556.25 66.62 MacLine -grestore -1.00 ps -561.50 66.12 556.25 66.12 MacLine -62.50 66.12 67.75 66.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 60.75 558.00 60.75 MacLine -grestore -1.00 ps -561.50 60.25 558.00 60.25 MacLine -62.50 60.25 66.00 60.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 55.00 558.00 55.00 MacLine -grestore -1.00 ps -561.50 54.50 558.00 54.50 MacLine -62.50 54.50 66.00 54.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 49.12 558.00 49.12 MacLine -grestore -1.00 ps -561.50 48.62 558.00 48.62 MacLine -62.50 48.62 66.00 48.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 43.25 558.00 43.25 MacLine -grestore -1.00 ps -561.50 42.75 558.00 42.75 MacLine -62.50 42.75 66.00 42.75 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 37.38 554.50 37.38 MacLine -grestore -1.00 ps -561.50 37.00 554.50 37.00 MacLine -62.50 37.00 69.50 37.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 50.12 41.88 8.88 WS -gsave 0.125 ps [1] sd -66.00 31.62 558.00 31.62 MacLine -grestore -1.00 ps -561.50 31.12 558.00 31.12 MacLine -62.50 31.12 66.00 31.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 25.88 558.00 25.88 MacLine -grestore -1.00 ps -561.50 25.38 558.00 25.38 MacLine -62.50 25.38 66.00 25.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 20.00 558.00 20.00 MacLine -grestore -1.00 ps -561.50 19.50 558.00 19.50 MacLine -62.50 19.50 66.00 19.50 MacLine -1 ps -1.00 ps -561.50 13.62 558.00 13.62 MacLine -62.50 13.62 66.00 13.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(x \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -558.38 239.00 558.38 17.00 MacLine -grestore -1.00 ps -557.88 13.50 557.88 17.00 MacLine -557.88 242.50 557.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -551.25 239.00 551.25 17.00 MacLine -grestore -1.00 ps -550.75 13.50 550.75 17.00 MacLine -550.75 242.50 550.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -544.12 237.25 544.12 18.75 MacLine -grestore -1.00 ps -543.62 13.50 543.62 18.75 MacLine -543.62 242.50 543.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -537.00 239.00 537.00 17.00 MacLine -grestore -1.00 ps -536.50 13.50 536.50 17.00 MacLine -536.50 242.50 536.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -529.88 239.00 529.88 17.00 MacLine -grestore -1.00 ps -529.38 13.50 529.38 17.00 MacLine -529.38 242.50 529.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.75 239.00 522.75 17.00 MacLine -grestore -1.00 ps -522.25 13.50 522.25 17.00 MacLine -522.25 242.50 522.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -515.62 239.00 515.62 17.00 MacLine -grestore -1.00 ps -515.12 13.50 515.12 17.00 MacLine -515.12 242.50 515.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -508.38 235.50 508.38 20.50 MacLine -grestore -1.00 ps -508.00 13.50 508.00 20.50 MacLine -508.00 242.50 508.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 504.12 259.88 8.88 WS -gsave 0.125 ps [1] sd -501.38 239.00 501.38 17.00 MacLine -grestore -1.00 ps -500.88 13.50 500.88 17.00 MacLine -500.88 242.50 500.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -494.25 239.00 494.25 17.00 MacLine -grestore -1.00 ps -493.75 13.50 493.75 17.00 MacLine -493.75 242.50 493.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.12 239.00 487.12 17.00 MacLine -grestore -1.00 ps -486.62 13.50 486.62 17.00 MacLine -486.62 242.50 486.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.00 239.00 480.00 17.00 MacLine -grestore -1.00 ps -479.50 13.50 479.50 17.00 MacLine -479.50 242.50 479.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.88 237.25 472.88 18.75 MacLine -grestore -1.00 ps -472.38 13.50 472.38 18.75 MacLine -472.38 242.50 472.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -465.75 239.00 465.75 17.00 MacLine -grestore -1.00 ps -465.25 13.50 465.25 17.00 MacLine -465.25 242.50 465.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -458.62 239.00 458.62 17.00 MacLine -grestore -1.00 ps -458.12 13.50 458.12 17.00 MacLine -458.12 242.50 458.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -451.50 239.00 451.50 17.00 MacLine -grestore -1.00 ps -451.00 13.50 451.00 17.00 MacLine -451.00 242.50 451.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -444.38 239.00 444.38 17.00 MacLine -grestore -1.00 ps -443.88 13.50 443.88 17.00 MacLine -443.88 242.50 443.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -437.12 235.50 437.12 20.50 MacLine -grestore -1.00 ps -436.75 13.50 436.75 20.50 MacLine -436.75 242.50 436.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 432.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -430.12 239.00 430.12 17.00 MacLine -grestore -1.00 ps -429.62 13.50 429.62 17.00 MacLine -429.62 242.50 429.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -423.00 239.00 423.00 17.00 MacLine -grestore -1.00 ps -422.50 13.50 422.50 17.00 MacLine -422.50 242.50 422.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -415.88 239.00 415.88 17.00 MacLine -grestore -1.00 ps -415.38 13.50 415.38 17.00 MacLine -415.38 242.50 415.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -408.75 239.00 408.75 17.00 MacLine -grestore -1.00 ps -408.25 13.50 408.25 17.00 MacLine -408.25 242.50 408.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -401.62 237.25 401.62 18.75 MacLine -grestore -1.00 ps -401.12 13.50 401.12 18.75 MacLine -401.12 242.50 401.12 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -394.50 239.00 394.50 17.00 MacLine -grestore -1.00 ps -394.00 13.50 394.00 17.00 MacLine -394.00 242.50 394.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -387.38 239.00 387.38 17.00 MacLine -grestore -1.00 ps -386.88 13.50 386.88 17.00 MacLine -386.88 242.50 386.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -380.25 239.00 380.25 17.00 MacLine -grestore -1.00 ps -379.75 13.50 379.75 17.00 MacLine -379.75 242.50 379.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.12 239.00 373.12 17.00 MacLine -grestore -1.00 ps -372.62 13.50 372.62 17.00 MacLine -372.62 242.50 372.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -365.88 235.50 365.88 20.50 MacLine -grestore -1.00 ps -365.50 13.50 365.50 20.50 MacLine -365.50 242.50 365.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 361.62 259.88 8.88 WS -gsave 0.125 ps [1] sd -358.88 239.00 358.88 17.00 MacLine -grestore -1.00 ps -358.38 13.50 358.38 17.00 MacLine -358.38 242.50 358.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -351.75 239.00 351.75 17.00 MacLine -grestore -1.00 ps -351.25 13.50 351.25 17.00 MacLine -351.25 242.50 351.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -344.62 239.00 344.62 17.00 MacLine -grestore -1.00 ps -344.12 13.50 344.12 17.00 MacLine -344.12 242.50 344.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -337.50 239.00 337.50 17.00 MacLine -grestore -1.00 ps -337.00 13.50 337.00 17.00 MacLine -337.00 242.50 337.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -330.38 237.25 330.38 18.75 MacLine -grestore -1.00 ps -329.88 13.50 329.88 18.75 MacLine -329.88 242.50 329.88 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 239.00 323.25 17.00 MacLine -grestore -1.00 ps -322.75 13.50 322.75 17.00 MacLine -322.75 242.50 322.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.12 239.00 316.12 17.00 MacLine -grestore -1.00 ps -315.62 13.50 315.62 17.00 MacLine -315.62 242.50 315.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -308.88 239.00 308.88 17.00 MacLine -grestore -1.00 ps -308.38 13.50 308.38 17.00 MacLine -308.38 242.50 308.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -301.75 239.00 301.75 17.00 MacLine -grestore -1.00 ps -301.25 13.50 301.25 17.00 MacLine -301.25 242.50 301.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -294.50 235.50 294.50 20.50 MacLine -grestore -1.00 ps -294.12 13.50 294.12 20.50 MacLine -294.12 242.50 294.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 290.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -287.50 239.00 287.50 17.00 MacLine -grestore -1.00 ps -287.00 13.50 287.00 17.00 MacLine -287.00 242.50 287.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -280.38 239.00 280.38 17.00 MacLine -grestore -1.00 ps -279.88 13.50 279.88 17.00 MacLine -279.88 242.50 279.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -273.25 239.00 273.25 17.00 MacLine -grestore -1.00 ps -272.75 13.50 272.75 17.00 MacLine -272.75 242.50 272.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.12 239.00 266.12 17.00 MacLine -grestore -1.00 ps -265.62 13.50 265.62 17.00 MacLine -265.62 242.50 265.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -259.00 237.25 259.00 18.75 MacLine -grestore -1.00 ps -258.50 13.50 258.50 18.75 MacLine -258.50 242.50 258.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -251.88 239.00 251.88 17.00 MacLine -grestore -1.00 ps -251.38 13.50 251.38 17.00 MacLine -251.38 242.50 251.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -244.75 239.00 244.75 17.00 MacLine -grestore -1.00 ps -244.25 13.50 244.25 17.00 MacLine -244.25 242.50 244.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -237.62 239.00 237.62 17.00 MacLine -grestore -1.00 ps -237.12 13.50 237.12 17.00 MacLine -237.12 242.50 237.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -230.50 239.00 230.50 17.00 MacLine -grestore -1.00 ps -230.00 13.50 230.00 17.00 MacLine -230.00 242.50 230.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-2) 216.25 259.88 14.25 WS -gsave 0.125 ps [1] sd -216.25 239.00 216.25 17.00 MacLine -grestore -1.00 ps -215.75 13.50 215.75 17.00 MacLine -215.75 242.50 215.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -209.12 239.00 209.12 17.00 MacLine -grestore -1.00 ps -208.62 13.50 208.62 17.00 MacLine -208.62 242.50 208.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -202.00 239.00 202.00 17.00 MacLine -grestore -1.00 ps -201.50 13.50 201.50 17.00 MacLine -201.50 242.50 201.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -194.88 239.00 194.88 17.00 MacLine -grestore -1.00 ps -194.38 13.50 194.38 17.00 MacLine -194.38 242.50 194.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -187.75 237.25 187.75 18.75 MacLine -grestore -1.00 ps -187.25 13.50 187.25 18.75 MacLine -187.25 242.50 187.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -180.62 239.00 180.62 17.00 MacLine -grestore -1.00 ps -180.12 13.50 180.12 17.00 MacLine -180.12 242.50 180.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -173.50 239.00 173.50 17.00 MacLine -grestore -1.00 ps -173.00 13.50 173.00 17.00 MacLine -173.00 242.50 173.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -166.38 239.00 166.38 17.00 MacLine -grestore -1.00 ps -165.88 13.50 165.88 17.00 MacLine -165.88 242.50 165.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.25 239.00 159.25 17.00 MacLine -grestore -1.00 ps -158.75 13.50 158.75 17.00 MacLine -158.75 242.50 158.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -152.00 235.50 152.00 20.50 MacLine -grestore -1.00 ps -151.62 13.50 151.62 20.50 MacLine -151.62 242.50 151.62 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-4) 145.00 259.88 14.25 WS -gsave 0.125 ps [1] sd -145.00 239.00 145.00 17.00 MacLine -grestore -1.00 ps -144.50 13.50 144.50 17.00 MacLine -144.50 242.50 144.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -137.88 239.00 137.88 17.00 MacLine -grestore -1.00 ps -137.38 13.50 137.38 17.00 MacLine -137.38 242.50 137.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -130.75 239.00 130.75 17.00 MacLine -grestore -1.00 ps -130.25 13.50 130.25 17.00 MacLine -130.25 242.50 130.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -123.62 239.00 123.62 17.00 MacLine -grestore -1.00 ps -123.12 13.50 123.12 17.00 MacLine -123.12 242.50 123.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -116.50 237.25 116.50 18.75 MacLine -grestore -1.00 ps -116.00 13.50 116.00 18.75 MacLine -116.00 242.50 116.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -109.38 239.00 109.38 17.00 MacLine -grestore -1.00 ps -108.88 13.50 108.88 17.00 MacLine -108.88 242.50 108.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.25 239.00 102.25 17.00 MacLine -grestore -1.00 ps -101.75 13.50 101.75 17.00 MacLine -101.75 242.50 101.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -95.12 239.00 95.12 17.00 MacLine -grestore -1.00 ps -94.62 13.50 94.62 17.00 MacLine -94.62 242.50 94.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -88.00 239.00 88.00 17.00 MacLine -grestore -1.00 ps -87.50 13.50 87.50 17.00 MacLine -87.50 242.50 87.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -80.75 235.50 80.75 20.50 MacLine -grestore -1.00 ps -80.38 13.50 80.38 20.50 MacLine -80.38 242.50 80.38 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-6) 73.75 259.88 14.25 WS -gsave 0.125 ps [1] sd -73.75 239.00 73.75 17.00 MacLine -grestore -1.00 ps -73.25 13.50 73.25 17.00 MacLine -73.25 242.50 73.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.62 239.00 66.62 17.00 MacLine -grestore -1.00 ps -66.12 13.50 66.12 17.00 MacLine -66.12 242.50 66.12 239.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(t \(s\)) 298.62 284.38 27.75 WS -2.00 ps -newpath 63.12 243.00 M -68.12 227.62 L -73.12 212.75 L -78.12 198.62 L -83.12 185.12 L -88.25 172.25 L -93.25 159.88 L -98.38 148.12 L -103.38 136.88 L -108.38 126.25 L -113.50 116.25 L -118.50 106.62 L -123.50 97.62 L -128.50 89.12 L -133.62 81.25 L -138.62 73.75 L -143.62 66.75 L -148.75 60.25 L -153.75 54.25 L -158.88 48.75 L -163.88 43.62 L -168.88 38.88 L -173.88 34.75 L -179.00 30.88 L -184.00 27.50 L -189.00 24.50 L -194.12 22.00 L -199.12 19.75 L -204.12 17.88 L -209.25 16.38 L -214.25 15.38 L -219.25 14.50 L -224.25 14.12 L -229.38 14.00 L -234.38 14.25 L -239.50 14.75 L -244.50 15.50 L -249.50 16.62 L -254.62 18.00 L -259.62 19.62 L -264.62 21.50 L -269.62 23.62 L -274.75 26.00 L -279.75 28.62 L -284.75 31.38 L -289.88 34.38 L -294.88 37.62 L -300.00 41.00 L -305.00 44.62 L -310.00 48.25 L -315.00 52.25 L -320.00 56.25 L -325.00 60.38 L -330.12 64.75 L -335.12 69.12 L -340.25 73.62 L -345.25 78.25 L -350.25 83.00 L -355.38 87.75 L -360.38 92.62 L -365.38 97.62 L -370.38 102.50 L -375.50 107.50 L -380.50 112.62 L -385.50 117.62 L -390.62 122.62 L -395.62 127.75 L -400.75 132.75 L -405.75 137.75 L -410.75 142.75 L -415.75 147.62 L -420.88 152.62 L -425.88 157.38 L -430.88 162.12 L -436.00 166.88 L -441.00 171.50 L -446.00 176.00 L -451.12 180.38 L -456.12 184.62 L -461.12 188.75 L -466.12 192.75 L -471.25 196.50 L -476.25 200.25 L -481.38 203.75 L -486.38 207.00 L -491.38 210.25 L -496.50 213.12 L -501.50 215.88 L -506.50 218.38 L -511.50 220.62 L -516.62 222.75 L -521.62 224.50 L -526.62 226.00 L -531.75 227.38 L -536.75 228.25 L -541.88 229.00 L -546.88 229.38 L -551.88 229.50 L -556.88 229.25 L -561.88 228.75 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v5.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v5.gif deleted file mode 100755 index acd61ff93..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v5.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v6.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v6.eps deleted file mode 100755 index 01dec29e5..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v6.eps +++ /dev/null @@ -1,1264 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_x6 -%%Creation Date: Sun, Sep 10, 1995 06:46 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.12 558.00 13.12 MacLine -62.50 13.12 66.00 13.12 MacLine -1 ps -gsave 0.125 ps [1] sd -67.75 19.25 556.25 19.25 MacLine -grestore -1.00 ps -561.50 18.75 556.25 18.75 MacLine -62.50 18.75 67.75 18.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 25.00 558.00 25.00 MacLine -grestore -1.00 ps -561.50 24.50 558.00 24.50 MacLine -62.50 24.50 66.00 24.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 30.62 558.00 30.62 MacLine -grestore -1.00 ps -561.50 30.12 558.00 30.12 MacLine -62.50 30.12 66.00 30.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 36.25 558.00 36.25 MacLine -grestore -1.00 ps -561.50 35.75 558.00 35.75 MacLine -62.50 35.75 66.00 35.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 41.88 558.00 41.88 MacLine -grestore -1.00 ps -561.50 41.38 558.00 41.38 MacLine -62.50 41.38 66.00 41.38 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 47.38 554.50 47.38 MacLine -grestore -1.00 ps -561.50 47.00 554.50 47.00 MacLine -62.50 47.00 69.50 47.00 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(1000) 23.50 51.88 35.50 WS -gsave 0.125 ps [1] sd -66.00 53.12 558.00 53.12 MacLine -grestore -1.00 ps -561.50 52.62 558.00 52.62 MacLine -62.50 52.62 66.00 52.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 58.75 558.00 58.75 MacLine -grestore -1.00 ps -561.50 58.25 558.00 58.25 MacLine -62.50 58.25 66.00 58.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 64.38 558.00 64.38 MacLine -grestore -1.00 ps -561.50 63.88 558.00 63.88 MacLine -62.50 63.88 66.00 63.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 70.00 558.00 70.00 MacLine -grestore -1.00 ps -561.50 69.50 558.00 69.50 MacLine -62.50 69.50 66.00 69.50 MacLine -1 ps -gsave 0.125 ps [1] sd -67.75 75.62 556.25 75.62 MacLine -grestore -1.00 ps -561.50 75.12 556.25 75.12 MacLine -62.50 75.12 67.75 75.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 81.25 558.00 81.25 MacLine -grestore -1.00 ps -561.50 80.75 558.00 80.75 MacLine -62.50 80.75 66.00 80.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 87.00 558.00 87.00 MacLine -grestore -1.00 ps -561.50 86.50 558.00 86.50 MacLine -62.50 86.50 66.00 86.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 92.62 558.00 92.62 MacLine -grestore -1.00 ps -561.50 92.12 558.00 92.12 MacLine -62.50 92.12 66.00 92.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 98.25 558.00 98.25 MacLine -grestore -1.00 ps -561.50 97.75 558.00 97.75 MacLine -62.50 97.75 66.00 97.75 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 103.75 554.50 103.75 MacLine -grestore -1.00 ps -561.50 103.38 554.50 103.38 MacLine -62.50 103.38 69.50 103.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(900) 32.38 108.25 26.62 WS -gsave 0.125 ps [1] sd -66.00 109.50 558.00 109.50 MacLine -grestore -1.00 ps -561.50 109.00 558.00 109.00 MacLine -62.50 109.00 66.00 109.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 115.12 558.00 115.12 MacLine -grestore -1.00 ps -561.50 114.62 558.00 114.62 MacLine -62.50 114.62 66.00 114.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 120.75 558.00 120.75 MacLine -grestore -1.00 ps -561.50 120.25 558.00 120.25 MacLine -62.50 120.25 66.00 120.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 126.38 558.00 126.38 MacLine -grestore -1.00 ps -561.50 125.88 558.00 125.88 MacLine -62.50 125.88 66.00 125.88 MacLine -1 ps -gsave 0.125 ps [1] sd -67.75 132.00 556.25 132.00 MacLine -grestore -1.00 ps -561.50 131.50 556.25 131.50 MacLine -62.50 131.50 67.75 131.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 137.62 558.00 137.62 MacLine -grestore -1.00 ps -561.50 137.12 558.00 137.12 MacLine -62.50 137.12 66.00 137.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 143.25 558.00 143.25 MacLine -grestore -1.00 ps -561.50 142.75 558.00 142.75 MacLine -62.50 142.75 66.00 142.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 149.00 558.00 149.00 MacLine -grestore -1.00 ps -561.50 148.50 558.00 148.50 MacLine -62.50 148.50 66.00 148.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 154.62 558.00 154.62 MacLine -grestore -1.00 ps -561.50 154.12 558.00 154.12 MacLine -62.50 154.12 66.00 154.12 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 160.12 554.50 160.12 MacLine -grestore -1.00 ps -561.50 159.75 554.50 159.75 MacLine -62.50 159.75 69.50 159.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(800) 32.38 164.62 26.62 WS -gsave 0.125 ps [1] sd -66.00 165.88 558.00 165.88 MacLine -grestore -1.00 ps -561.50 165.38 558.00 165.38 MacLine -62.50 165.38 66.00 165.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 171.50 558.00 171.50 MacLine -grestore -1.00 ps -561.50 171.00 558.00 171.00 MacLine -62.50 171.00 66.00 171.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 177.12 558.00 177.12 MacLine -grestore -1.00 ps -561.50 176.62 558.00 176.62 MacLine -62.50 176.62 66.00 176.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 182.75 558.00 182.75 MacLine -grestore -1.00 ps -561.50 182.25 558.00 182.25 MacLine -62.50 182.25 66.00 182.25 MacLine -1 ps -gsave 0.125 ps [1] sd -67.75 188.38 556.25 188.38 MacLine -grestore -1.00 ps -561.50 187.88 556.25 187.88 MacLine -62.50 187.88 67.75 187.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 194.00 558.00 194.00 MacLine -grestore -1.00 ps -561.50 193.50 558.00 193.50 MacLine -62.50 193.50 66.00 193.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 199.62 558.00 199.62 MacLine -grestore -1.00 ps -561.50 199.12 558.00 199.12 MacLine -62.50 199.12 66.00 199.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 205.25 558.00 205.25 MacLine -grestore -1.00 ps -561.50 204.75 558.00 204.75 MacLine -62.50 204.75 66.00 204.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 211.00 558.00 211.00 MacLine -grestore -1.00 ps -561.50 210.50 558.00 210.50 MacLine -62.50 210.50 66.00 210.50 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 216.50 554.50 216.50 MacLine -grestore -1.00 ps -561.50 216.12 554.50 216.12 MacLine -62.50 216.12 69.50 216.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(700) 32.38 221.00 26.62 WS -gsave 0.125 ps [1] sd -66.00 222.25 558.00 222.25 MacLine -grestore -1.00 ps -561.50 221.75 558.00 221.75 MacLine -62.50 221.75 66.00 221.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 227.88 558.00 227.88 MacLine -grestore -1.00 ps -561.50 227.38 558.00 227.38 MacLine -62.50 227.38 66.00 227.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 233.50 558.00 233.50 MacLine -grestore -1.00 ps -561.50 233.00 558.00 233.00 MacLine -62.50 233.00 66.00 233.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 239.12 558.00 239.12 MacLine -grestore -1.00 ps -561.50 238.62 558.00 238.62 MacLine -62.50 238.62 66.00 238.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(x \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -558.38 239.00 558.38 17.00 MacLine -grestore -1.00 ps -557.88 13.50 557.88 17.00 MacLine -557.88 242.50 557.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -551.25 239.00 551.25 17.00 MacLine -grestore -1.00 ps -550.75 13.50 550.75 17.00 MacLine -550.75 242.50 550.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -544.12 237.25 544.12 18.75 MacLine -grestore -1.00 ps -543.62 13.50 543.62 18.75 MacLine -543.62 242.50 543.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -537.00 239.00 537.00 17.00 MacLine -grestore -1.00 ps -536.50 13.50 536.50 17.00 MacLine -536.50 242.50 536.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -529.88 239.00 529.88 17.00 MacLine -grestore -1.00 ps -529.38 13.50 529.38 17.00 MacLine -529.38 242.50 529.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.75 239.00 522.75 17.00 MacLine -grestore -1.00 ps -522.25 13.50 522.25 17.00 MacLine -522.25 242.50 522.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -515.62 239.00 515.62 17.00 MacLine -grestore -1.00 ps -515.12 13.50 515.12 17.00 MacLine -515.12 242.50 515.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -508.38 235.50 508.38 20.50 MacLine -grestore -1.00 ps -508.00 13.50 508.00 20.50 MacLine -508.00 242.50 508.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 504.12 259.88 8.88 WS -gsave 0.125 ps [1] sd -501.38 239.00 501.38 17.00 MacLine -grestore -1.00 ps -500.88 13.50 500.88 17.00 MacLine -500.88 242.50 500.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -494.25 239.00 494.25 17.00 MacLine -grestore -1.00 ps -493.75 13.50 493.75 17.00 MacLine -493.75 242.50 493.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.12 239.00 487.12 17.00 MacLine -grestore -1.00 ps -486.62 13.50 486.62 17.00 MacLine -486.62 242.50 486.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.00 239.00 480.00 17.00 MacLine -grestore -1.00 ps -479.50 13.50 479.50 17.00 MacLine -479.50 242.50 479.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.88 237.25 472.88 18.75 MacLine -grestore -1.00 ps -472.38 13.50 472.38 18.75 MacLine -472.38 242.50 472.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -465.75 239.00 465.75 17.00 MacLine -grestore -1.00 ps -465.25 13.50 465.25 17.00 MacLine -465.25 242.50 465.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -458.62 239.00 458.62 17.00 MacLine -grestore -1.00 ps -458.12 13.50 458.12 17.00 MacLine -458.12 242.50 458.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -451.50 239.00 451.50 17.00 MacLine -grestore -1.00 ps -451.00 13.50 451.00 17.00 MacLine -451.00 242.50 451.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -444.38 239.00 444.38 17.00 MacLine -grestore -1.00 ps -443.88 13.50 443.88 17.00 MacLine -443.88 242.50 443.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -437.12 235.50 437.12 20.50 MacLine -grestore -1.00 ps -436.75 13.50 436.75 20.50 MacLine -436.75 242.50 436.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 432.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -430.12 239.00 430.12 17.00 MacLine -grestore -1.00 ps -429.62 13.50 429.62 17.00 MacLine -429.62 242.50 429.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -423.00 239.00 423.00 17.00 MacLine -grestore -1.00 ps -422.50 13.50 422.50 17.00 MacLine -422.50 242.50 422.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -415.88 239.00 415.88 17.00 MacLine -grestore -1.00 ps -415.38 13.50 415.38 17.00 MacLine -415.38 242.50 415.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -408.75 239.00 408.75 17.00 MacLine -grestore -1.00 ps -408.25 13.50 408.25 17.00 MacLine -408.25 242.50 408.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -401.62 237.25 401.62 18.75 MacLine -grestore -1.00 ps -401.12 13.50 401.12 18.75 MacLine -401.12 242.50 401.12 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -394.50 239.00 394.50 17.00 MacLine -grestore -1.00 ps -394.00 13.50 394.00 17.00 MacLine -394.00 242.50 394.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -387.38 239.00 387.38 17.00 MacLine -grestore -1.00 ps -386.88 13.50 386.88 17.00 MacLine -386.88 242.50 386.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -380.25 239.00 380.25 17.00 MacLine -grestore -1.00 ps -379.75 13.50 379.75 17.00 MacLine -379.75 242.50 379.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.12 239.00 373.12 17.00 MacLine -grestore -1.00 ps -372.62 13.50 372.62 17.00 MacLine -372.62 242.50 372.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -365.88 235.50 365.88 20.50 MacLine -grestore -1.00 ps -365.50 13.50 365.50 20.50 MacLine -365.50 242.50 365.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 361.62 259.88 8.88 WS -gsave 0.125 ps [1] sd -358.88 239.00 358.88 17.00 MacLine -grestore -1.00 ps -358.38 13.50 358.38 17.00 MacLine -358.38 242.50 358.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -351.75 239.00 351.75 17.00 MacLine -grestore -1.00 ps -351.25 13.50 351.25 17.00 MacLine -351.25 242.50 351.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -344.62 239.00 344.62 17.00 MacLine -grestore -1.00 ps -344.12 13.50 344.12 17.00 MacLine -344.12 242.50 344.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -337.50 239.00 337.50 17.00 MacLine -grestore -1.00 ps -337.00 13.50 337.00 17.00 MacLine -337.00 242.50 337.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -330.38 237.25 330.38 18.75 MacLine -grestore -1.00 ps -329.88 13.50 329.88 18.75 MacLine -329.88 242.50 329.88 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 239.00 323.25 17.00 MacLine -grestore -1.00 ps -322.75 13.50 322.75 17.00 MacLine -322.75 242.50 322.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.12 239.00 316.12 17.00 MacLine -grestore -1.00 ps -315.62 13.50 315.62 17.00 MacLine -315.62 242.50 315.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -308.88 239.00 308.88 17.00 MacLine -grestore -1.00 ps -308.38 13.50 308.38 17.00 MacLine -308.38 242.50 308.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -301.75 239.00 301.75 17.00 MacLine -grestore -1.00 ps -301.25 13.50 301.25 17.00 MacLine -301.25 242.50 301.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -294.50 235.50 294.50 20.50 MacLine -grestore -1.00 ps -294.12 13.50 294.12 20.50 MacLine -294.12 242.50 294.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 290.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -287.50 239.00 287.50 17.00 MacLine -grestore -1.00 ps -287.00 13.50 287.00 17.00 MacLine -287.00 242.50 287.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -280.38 239.00 280.38 17.00 MacLine -grestore -1.00 ps -279.88 13.50 279.88 17.00 MacLine -279.88 242.50 279.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -273.25 239.00 273.25 17.00 MacLine -grestore -1.00 ps -272.75 13.50 272.75 17.00 MacLine -272.75 242.50 272.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.12 239.00 266.12 17.00 MacLine -grestore -1.00 ps -265.62 13.50 265.62 17.00 MacLine -265.62 242.50 265.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -259.00 237.25 259.00 18.75 MacLine -grestore -1.00 ps -258.50 13.50 258.50 18.75 MacLine -258.50 242.50 258.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -251.88 239.00 251.88 17.00 MacLine -grestore -1.00 ps -251.38 13.50 251.38 17.00 MacLine -251.38 242.50 251.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -244.75 239.00 244.75 17.00 MacLine -grestore -1.00 ps -244.25 13.50 244.25 17.00 MacLine -244.25 242.50 244.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -237.62 239.00 237.62 17.00 MacLine -grestore -1.00 ps -237.12 13.50 237.12 17.00 MacLine -237.12 242.50 237.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -230.50 239.00 230.50 17.00 MacLine -grestore -1.00 ps -230.00 13.50 230.00 17.00 MacLine -230.00 242.50 230.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-2) 216.25 259.88 14.25 WS -gsave 0.125 ps [1] sd -216.25 239.00 216.25 17.00 MacLine -grestore -1.00 ps -215.75 13.50 215.75 17.00 MacLine -215.75 242.50 215.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -209.12 239.00 209.12 17.00 MacLine -grestore -1.00 ps -208.62 13.50 208.62 17.00 MacLine -208.62 242.50 208.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -202.00 239.00 202.00 17.00 MacLine -grestore -1.00 ps -201.50 13.50 201.50 17.00 MacLine -201.50 242.50 201.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -194.88 239.00 194.88 17.00 MacLine -grestore -1.00 ps -194.38 13.50 194.38 17.00 MacLine -194.38 242.50 194.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -187.75 237.25 187.75 18.75 MacLine -grestore -1.00 ps -187.25 13.50 187.25 18.75 MacLine -187.25 242.50 187.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -180.62 239.00 180.62 17.00 MacLine -grestore -1.00 ps -180.12 13.50 180.12 17.00 MacLine -180.12 242.50 180.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -173.50 239.00 173.50 17.00 MacLine -grestore -1.00 ps -173.00 13.50 173.00 17.00 MacLine -173.00 242.50 173.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -166.38 239.00 166.38 17.00 MacLine -grestore -1.00 ps -165.88 13.50 165.88 17.00 MacLine -165.88 242.50 165.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.25 239.00 159.25 17.00 MacLine -grestore -1.00 ps -158.75 13.50 158.75 17.00 MacLine -158.75 242.50 158.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -152.00 235.50 152.00 20.50 MacLine -grestore -1.00 ps -151.62 13.50 151.62 20.50 MacLine -151.62 242.50 151.62 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-4) 145.00 259.88 14.25 WS -gsave 0.125 ps [1] sd -145.00 239.00 145.00 17.00 MacLine -grestore -1.00 ps -144.50 13.50 144.50 17.00 MacLine -144.50 242.50 144.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -137.88 239.00 137.88 17.00 MacLine -grestore -1.00 ps -137.38 13.50 137.38 17.00 MacLine -137.38 242.50 137.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -130.75 239.00 130.75 17.00 MacLine -grestore -1.00 ps -130.25 13.50 130.25 17.00 MacLine -130.25 242.50 130.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -123.62 239.00 123.62 17.00 MacLine -grestore -1.00 ps -123.12 13.50 123.12 17.00 MacLine -123.12 242.50 123.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -116.50 237.25 116.50 18.75 MacLine -grestore -1.00 ps -116.00 13.50 116.00 18.75 MacLine -116.00 242.50 116.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -109.38 239.00 109.38 17.00 MacLine -grestore -1.00 ps -108.88 13.50 108.88 17.00 MacLine -108.88 242.50 108.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.25 239.00 102.25 17.00 MacLine -grestore -1.00 ps -101.75 13.50 101.75 17.00 MacLine -101.75 242.50 101.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -95.12 239.00 95.12 17.00 MacLine -grestore -1.00 ps -94.62 13.50 94.62 17.00 MacLine -94.62 242.50 94.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -88.00 239.00 88.00 17.00 MacLine -grestore -1.00 ps -87.50 13.50 87.50 17.00 MacLine -87.50 242.50 87.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -80.75 235.50 80.75 20.50 MacLine -grestore -1.00 ps -80.38 13.50 80.38 20.50 MacLine -80.38 242.50 80.38 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-6) 73.75 259.88 14.25 WS -gsave 0.125 ps [1] sd -73.75 239.00 73.75 17.00 MacLine -grestore -1.00 ps -73.25 13.50 73.25 17.00 MacLine -73.25 242.50 73.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.62 239.00 66.62 17.00 MacLine -grestore -1.00 ps -66.12 13.50 66.12 17.00 MacLine -66.12 242.50 66.12 239.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(t \(s\)) 298.62 284.38 27.75 WS -2.00 ps -newpath 63.12 134.50 M -68.12 137.12 L -73.12 139.38 L -78.12 141.25 L -83.12 142.88 L -88.25 144.12 L -93.25 145.12 L -98.38 145.88 L -103.38 146.25 L -108.38 146.38 L -113.50 146.25 L -118.50 146.00 L -123.50 145.38 L -128.50 144.50 L -133.62 143.38 L -138.62 142.12 L -143.62 140.62 L -148.75 138.88 L -153.75 137.00 L -158.88 135.00 L -163.88 132.75 L -168.88 130.38 L -173.88 127.88 L -179.00 125.25 L -184.00 122.38 L -189.00 119.50 L -194.12 116.50 L -199.12 113.38 L -204.12 110.12 L -209.25 106.75 L -214.25 103.38 L -219.25 100.00 L -224.25 96.50 L -229.38 93.00 L -234.38 89.38 L -239.50 85.75 L -244.50 82.12 L -249.50 78.50 L -254.62 75.00 L -259.62 71.38 L -264.62 67.75 L -269.62 64.25 L -274.75 60.75 L -279.75 57.25 L -284.75 53.88 L -289.88 50.62 L -294.88 47.38 L -300.00 44.25 L -305.00 41.25 L -310.00 38.25 L -315.00 35.50 L -320.00 32.75 L -325.00 30.25 L -330.12 27.88 L -335.12 25.62 L -340.25 23.50 L -345.25 21.62 L -350.25 20.00 L -355.38 18.50 L -360.38 17.12 L -365.38 16.00 L -370.38 15.12 L -375.50 14.50 L -380.50 14.12 L -385.50 14.00 L -390.62 14.12 L -395.62 14.50 L -400.75 15.25 L -405.75 16.12 L -410.75 17.50 L -415.75 19.00 L -420.88 21.00 L -425.88 23.25 L -430.88 25.75 L -436.00 28.62 L -441.00 32.00 L -446.00 35.62 L -451.12 39.62 L -456.12 44.00 L -461.12 48.88 L -466.12 54.00 L -471.25 59.75 L -476.25 65.75 L -481.38 72.25 L -486.38 79.12 L -491.38 86.62 L -496.50 94.38 L -501.50 102.75 L -506.50 111.50 L -511.50 120.88 L -516.62 130.62 L -521.62 141.00 L -526.62 151.75 L -531.75 163.12 L -536.75 175.00 L -541.88 187.50 L -546.88 200.50 L -551.88 214.12 L -556.88 228.25 L -561.88 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v6.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v6.gif deleted file mode 100755 index 10891004d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v6.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v7.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v7.eps deleted file mode 100755 index ba79945f9..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v7.eps +++ /dev/null @@ -1,1257 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_x7 -%%Creation Date: Sun, Sep 10, 1995 06:46 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 241.50 558.00 241.50 MacLine -grestore -1.00 ps -561.50 241.00 558.00 241.00 MacLine -62.50 241.00 66.00 241.00 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 235.50 554.50 235.50 MacLine -grestore -1.00 ps -561.50 235.12 554.50 235.12 MacLine -62.50 235.12 69.50 235.12 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(-800) 27.00 240.00 32.00 WS -gsave 0.125 ps [1] sd -66.00 229.75 558.00 229.75 MacLine -grestore -1.00 ps -561.50 229.25 558.00 229.25 MacLine -62.50 229.25 66.00 229.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 224.00 558.00 224.00 MacLine -grestore -1.00 ps -561.50 223.50 558.00 223.50 MacLine -62.50 223.50 66.00 223.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 218.12 558.00 218.12 MacLine -grestore -1.00 ps -561.50 217.62 558.00 217.62 MacLine -62.50 217.62 66.00 217.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 212.25 558.00 212.25 MacLine -grestore -1.00 ps -561.50 211.75 558.00 211.75 MacLine -62.50 211.75 66.00 211.75 MacLine -1 ps -gsave 0.125 ps [1] sd -67.75 206.50 556.25 206.50 MacLine -grestore -1.00 ps -561.50 206.00 556.25 206.00 MacLine -62.50 206.00 67.75 206.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 200.62 558.00 200.62 MacLine -grestore -1.00 ps -561.50 200.12 558.00 200.12 MacLine -62.50 200.12 66.00 200.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 194.75 558.00 194.75 MacLine -grestore -1.00 ps -561.50 194.25 558.00 194.25 MacLine -62.50 194.25 66.00 194.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 189.00 558.00 189.00 MacLine -grestore -1.00 ps -561.50 188.50 558.00 188.50 MacLine -62.50 188.50 66.00 188.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 183.12 558.00 183.12 MacLine -grestore -1.00 ps -561.50 182.62 558.00 182.62 MacLine -62.50 182.62 66.00 182.62 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 177.12 554.50 177.12 MacLine -grestore -1.00 ps -561.50 176.75 554.50 176.75 MacLine -62.50 176.75 69.50 176.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-600) 27.00 181.62 32.00 WS -gsave 0.125 ps [1] sd -66.00 171.50 558.00 171.50 MacLine -grestore -1.00 ps -561.50 171.00 558.00 171.00 MacLine -62.50 171.00 66.00 171.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 165.62 558.00 165.62 MacLine -grestore -1.00 ps -561.50 165.12 558.00 165.12 MacLine -62.50 165.12 66.00 165.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 159.75 558.00 159.75 MacLine -grestore -1.00 ps -561.50 159.25 558.00 159.25 MacLine -62.50 159.25 66.00 159.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 154.00 558.00 154.00 MacLine -grestore -1.00 ps -561.50 153.50 558.00 153.50 MacLine -62.50 153.50 66.00 153.50 MacLine -1 ps -gsave 0.125 ps [1] sd -67.75 148.12 556.25 148.12 MacLine -grestore -1.00 ps -561.50 147.62 556.25 147.62 MacLine -62.50 147.62 67.75 147.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 142.25 558.00 142.25 MacLine -grestore -1.00 ps -561.50 141.75 558.00 141.75 MacLine -62.50 141.75 66.00 141.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 136.50 558.00 136.50 MacLine -grestore -1.00 ps -561.50 136.00 558.00 136.00 MacLine -62.50 136.00 66.00 136.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 130.62 558.00 130.62 MacLine -grestore -1.00 ps -561.50 130.12 558.00 130.12 MacLine -62.50 130.12 66.00 130.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 124.75 558.00 124.75 MacLine -grestore -1.00 ps -561.50 124.25 558.00 124.25 MacLine -62.50 124.25 66.00 124.25 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 118.88 554.50 118.88 MacLine -grestore -1.00 ps -561.50 118.50 554.50 118.50 MacLine -62.50 118.50 69.50 118.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-400) 27.00 123.38 32.00 WS -gsave 0.125 ps [1] sd -66.00 113.12 558.00 113.12 MacLine -grestore -1.00 ps -561.50 112.62 558.00 112.62 MacLine -62.50 112.62 66.00 112.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 107.25 558.00 107.25 MacLine -grestore -1.00 ps -561.50 106.75 558.00 106.75 MacLine -62.50 106.75 66.00 106.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 101.50 558.00 101.50 MacLine -grestore -1.00 ps -561.50 101.00 558.00 101.00 MacLine -62.50 101.00 66.00 101.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 95.62 558.00 95.62 MacLine -grestore -1.00 ps -561.50 95.12 558.00 95.12 MacLine -62.50 95.12 66.00 95.12 MacLine -1 ps -gsave 0.125 ps [1] sd -67.75 89.75 556.25 89.75 MacLine -grestore -1.00 ps -561.50 89.25 556.25 89.25 MacLine -62.50 89.25 67.75 89.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 84.00 558.00 84.00 MacLine -grestore -1.00 ps -561.50 83.50 558.00 83.50 MacLine -62.50 83.50 66.00 83.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 78.12 558.00 78.12 MacLine -grestore -1.00 ps -561.50 77.62 558.00 77.62 MacLine -62.50 77.62 66.00 77.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 72.25 558.00 72.25 MacLine -grestore -1.00 ps -561.50 71.75 558.00 71.75 MacLine -62.50 71.75 66.00 71.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 66.50 558.00 66.50 MacLine -grestore -1.00 ps -561.50 66.00 558.00 66.00 MacLine -62.50 66.00 66.00 66.00 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 60.50 554.50 60.50 MacLine -grestore -1.00 ps -561.50 60.12 554.50 60.12 MacLine -62.50 60.12 69.50 60.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-200) 27.00 65.00 32.00 WS -gsave 0.125 ps [1] sd -66.00 54.75 558.00 54.75 MacLine -grestore -1.00 ps -561.50 54.25 558.00 54.25 MacLine -62.50 54.25 66.00 54.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 49.00 558.00 49.00 MacLine -grestore -1.00 ps -561.50 48.50 558.00 48.50 MacLine -62.50 48.50 66.00 48.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 43.12 558.00 43.12 MacLine -grestore -1.00 ps -561.50 42.62 558.00 42.62 MacLine -62.50 42.62 66.00 42.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 37.25 558.00 37.25 MacLine -grestore -1.00 ps -561.50 36.75 558.00 36.75 MacLine -62.50 36.75 66.00 36.75 MacLine -1 ps -gsave 0.125 ps [1] sd -67.75 31.50 556.25 31.50 MacLine -grestore -1.00 ps -561.50 31.00 556.25 31.00 MacLine -62.50 31.00 67.75 31.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 25.62 558.00 25.62 MacLine -grestore -1.00 ps -561.50 25.12 558.00 25.12 MacLine -62.50 25.12 66.00 25.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 19.75 558.00 19.75 MacLine -grestore -1.00 ps -561.50 19.25 558.00 19.25 MacLine -62.50 19.25 66.00 19.25 MacLine -1 ps -1.00 ps -561.50 13.50 558.00 13.50 MacLine -62.50 13.50 66.00 13.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(x \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -558.38 239.00 558.38 17.00 MacLine -grestore -1.00 ps -557.88 13.50 557.88 17.00 MacLine -557.88 242.50 557.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -551.25 239.00 551.25 17.00 MacLine -grestore -1.00 ps -550.75 13.50 550.75 17.00 MacLine -550.75 242.50 550.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -544.12 237.25 544.12 18.75 MacLine -grestore -1.00 ps -543.62 13.50 543.62 18.75 MacLine -543.62 242.50 543.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -537.00 239.00 537.00 17.00 MacLine -grestore -1.00 ps -536.50 13.50 536.50 17.00 MacLine -536.50 242.50 536.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -529.88 239.00 529.88 17.00 MacLine -grestore -1.00 ps -529.38 13.50 529.38 17.00 MacLine -529.38 242.50 529.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.75 239.00 522.75 17.00 MacLine -grestore -1.00 ps -522.25 13.50 522.25 17.00 MacLine -522.25 242.50 522.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -515.62 239.00 515.62 17.00 MacLine -grestore -1.00 ps -515.12 13.50 515.12 17.00 MacLine -515.12 242.50 515.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -508.38 235.50 508.38 20.50 MacLine -grestore -1.00 ps -508.00 13.50 508.00 20.50 MacLine -508.00 242.50 508.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 504.12 259.88 8.88 WS -gsave 0.125 ps [1] sd -501.38 239.00 501.38 17.00 MacLine -grestore -1.00 ps -500.88 13.50 500.88 17.00 MacLine -500.88 242.50 500.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -494.25 239.00 494.25 17.00 MacLine -grestore -1.00 ps -493.75 13.50 493.75 17.00 MacLine -493.75 242.50 493.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.12 239.00 487.12 17.00 MacLine -grestore -1.00 ps -486.62 13.50 486.62 17.00 MacLine -486.62 242.50 486.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.00 239.00 480.00 17.00 MacLine -grestore -1.00 ps -479.50 13.50 479.50 17.00 MacLine -479.50 242.50 479.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.88 237.25 472.88 18.75 MacLine -grestore -1.00 ps -472.38 13.50 472.38 18.75 MacLine -472.38 242.50 472.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -465.75 239.00 465.75 17.00 MacLine -grestore -1.00 ps -465.25 13.50 465.25 17.00 MacLine -465.25 242.50 465.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -458.62 239.00 458.62 17.00 MacLine -grestore -1.00 ps -458.12 13.50 458.12 17.00 MacLine -458.12 242.50 458.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -451.50 239.00 451.50 17.00 MacLine -grestore -1.00 ps -451.00 13.50 451.00 17.00 MacLine -451.00 242.50 451.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -444.38 239.00 444.38 17.00 MacLine -grestore -1.00 ps -443.88 13.50 443.88 17.00 MacLine -443.88 242.50 443.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -437.12 235.50 437.12 20.50 MacLine -grestore -1.00 ps -436.75 13.50 436.75 20.50 MacLine -436.75 242.50 436.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 432.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -430.12 239.00 430.12 17.00 MacLine -grestore -1.00 ps -429.62 13.50 429.62 17.00 MacLine -429.62 242.50 429.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -423.00 239.00 423.00 17.00 MacLine -grestore -1.00 ps -422.50 13.50 422.50 17.00 MacLine -422.50 242.50 422.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -415.88 239.00 415.88 17.00 MacLine -grestore -1.00 ps -415.38 13.50 415.38 17.00 MacLine -415.38 242.50 415.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -408.75 239.00 408.75 17.00 MacLine -grestore -1.00 ps -408.25 13.50 408.25 17.00 MacLine -408.25 242.50 408.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -401.62 237.25 401.62 18.75 MacLine -grestore -1.00 ps -401.12 13.50 401.12 18.75 MacLine -401.12 242.50 401.12 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -394.50 239.00 394.50 17.00 MacLine -grestore -1.00 ps -394.00 13.50 394.00 17.00 MacLine -394.00 242.50 394.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -387.38 239.00 387.38 17.00 MacLine -grestore -1.00 ps -386.88 13.50 386.88 17.00 MacLine -386.88 242.50 386.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -380.25 239.00 380.25 17.00 MacLine -grestore -1.00 ps -379.75 13.50 379.75 17.00 MacLine -379.75 242.50 379.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.12 239.00 373.12 17.00 MacLine -grestore -1.00 ps -372.62 13.50 372.62 17.00 MacLine -372.62 242.50 372.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -365.88 235.50 365.88 20.50 MacLine -grestore -1.00 ps -365.50 13.50 365.50 20.50 MacLine -365.50 242.50 365.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 361.62 259.88 8.88 WS -gsave 0.125 ps [1] sd -358.88 239.00 358.88 17.00 MacLine -grestore -1.00 ps -358.38 13.50 358.38 17.00 MacLine -358.38 242.50 358.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -351.75 239.00 351.75 17.00 MacLine -grestore -1.00 ps -351.25 13.50 351.25 17.00 MacLine -351.25 242.50 351.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -344.62 239.00 344.62 17.00 MacLine -grestore -1.00 ps -344.12 13.50 344.12 17.00 MacLine -344.12 242.50 344.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -337.50 239.00 337.50 17.00 MacLine -grestore -1.00 ps -337.00 13.50 337.00 17.00 MacLine -337.00 242.50 337.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -330.38 237.25 330.38 18.75 MacLine -grestore -1.00 ps -329.88 13.50 329.88 18.75 MacLine -329.88 242.50 329.88 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 239.00 323.25 17.00 MacLine -grestore -1.00 ps -322.75 13.50 322.75 17.00 MacLine -322.75 242.50 322.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.12 239.00 316.12 17.00 MacLine -grestore -1.00 ps -315.62 13.50 315.62 17.00 MacLine -315.62 242.50 315.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -308.88 239.00 308.88 17.00 MacLine -grestore -1.00 ps -308.38 13.50 308.38 17.00 MacLine -308.38 242.50 308.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -301.75 239.00 301.75 17.00 MacLine -grestore -1.00 ps -301.25 13.50 301.25 17.00 MacLine -301.25 242.50 301.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -294.50 235.50 294.50 20.50 MacLine -grestore -1.00 ps -294.12 13.50 294.12 20.50 MacLine -294.12 242.50 294.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 290.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -287.50 239.00 287.50 17.00 MacLine -grestore -1.00 ps -287.00 13.50 287.00 17.00 MacLine -287.00 242.50 287.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -280.38 239.00 280.38 17.00 MacLine -grestore -1.00 ps -279.88 13.50 279.88 17.00 MacLine -279.88 242.50 279.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -273.25 239.00 273.25 17.00 MacLine -grestore -1.00 ps -272.75 13.50 272.75 17.00 MacLine -272.75 242.50 272.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.12 239.00 266.12 17.00 MacLine -grestore -1.00 ps -265.62 13.50 265.62 17.00 MacLine -265.62 242.50 265.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -259.00 237.25 259.00 18.75 MacLine -grestore -1.00 ps -258.50 13.50 258.50 18.75 MacLine -258.50 242.50 258.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -251.88 239.00 251.88 17.00 MacLine -grestore -1.00 ps -251.38 13.50 251.38 17.00 MacLine -251.38 242.50 251.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -244.75 239.00 244.75 17.00 MacLine -grestore -1.00 ps -244.25 13.50 244.25 17.00 MacLine -244.25 242.50 244.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -237.62 239.00 237.62 17.00 MacLine -grestore -1.00 ps -237.12 13.50 237.12 17.00 MacLine -237.12 242.50 237.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -230.50 239.00 230.50 17.00 MacLine -grestore -1.00 ps -230.00 13.50 230.00 17.00 MacLine -230.00 242.50 230.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-2) 216.25 259.88 14.25 WS -gsave 0.125 ps [1] sd -216.25 239.00 216.25 17.00 MacLine -grestore -1.00 ps -215.75 13.50 215.75 17.00 MacLine -215.75 242.50 215.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -209.12 239.00 209.12 17.00 MacLine -grestore -1.00 ps -208.62 13.50 208.62 17.00 MacLine -208.62 242.50 208.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -202.00 239.00 202.00 17.00 MacLine -grestore -1.00 ps -201.50 13.50 201.50 17.00 MacLine -201.50 242.50 201.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -194.88 239.00 194.88 17.00 MacLine -grestore -1.00 ps -194.38 13.50 194.38 17.00 MacLine -194.38 242.50 194.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -187.75 237.25 187.75 18.75 MacLine -grestore -1.00 ps -187.25 13.50 187.25 18.75 MacLine -187.25 242.50 187.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -180.62 239.00 180.62 17.00 MacLine -grestore -1.00 ps -180.12 13.50 180.12 17.00 MacLine -180.12 242.50 180.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -173.50 239.00 173.50 17.00 MacLine -grestore -1.00 ps -173.00 13.50 173.00 17.00 MacLine -173.00 242.50 173.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -166.38 239.00 166.38 17.00 MacLine -grestore -1.00 ps -165.88 13.50 165.88 17.00 MacLine -165.88 242.50 165.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.25 239.00 159.25 17.00 MacLine -grestore -1.00 ps -158.75 13.50 158.75 17.00 MacLine -158.75 242.50 158.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -152.00 235.50 152.00 20.50 MacLine -grestore -1.00 ps -151.62 13.50 151.62 20.50 MacLine -151.62 242.50 151.62 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-4) 145.00 259.88 14.25 WS -gsave 0.125 ps [1] sd -145.00 239.00 145.00 17.00 MacLine -grestore -1.00 ps -144.50 13.50 144.50 17.00 MacLine -144.50 242.50 144.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -137.88 239.00 137.88 17.00 MacLine -grestore -1.00 ps -137.38 13.50 137.38 17.00 MacLine -137.38 242.50 137.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -130.75 239.00 130.75 17.00 MacLine -grestore -1.00 ps -130.25 13.50 130.25 17.00 MacLine -130.25 242.50 130.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -123.62 239.00 123.62 17.00 MacLine -grestore -1.00 ps -123.12 13.50 123.12 17.00 MacLine -123.12 242.50 123.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -116.50 237.25 116.50 18.75 MacLine -grestore -1.00 ps -116.00 13.50 116.00 18.75 MacLine -116.00 242.50 116.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -109.38 239.00 109.38 17.00 MacLine -grestore -1.00 ps -108.88 13.50 108.88 17.00 MacLine -108.88 242.50 108.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.25 239.00 102.25 17.00 MacLine -grestore -1.00 ps -101.75 13.50 101.75 17.00 MacLine -101.75 242.50 101.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -95.12 239.00 95.12 17.00 MacLine -grestore -1.00 ps -94.62 13.50 94.62 17.00 MacLine -94.62 242.50 94.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -88.00 239.00 88.00 17.00 MacLine -grestore -1.00 ps -87.50 13.50 87.50 17.00 MacLine -87.50 242.50 87.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -80.75 235.50 80.75 20.50 MacLine -grestore -1.00 ps -80.38 13.50 80.38 20.50 MacLine -80.38 242.50 80.38 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-6) 73.75 259.88 14.25 WS -gsave 0.125 ps [1] sd -73.75 239.00 73.75 17.00 MacLine -grestore -1.00 ps -73.25 13.50 73.25 17.00 MacLine -73.25 242.50 73.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.62 239.00 66.62 17.00 MacLine -grestore -1.00 ps -66.12 13.50 66.12 17.00 MacLine -66.12 242.50 66.12 239.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(t \(s\)) 298.62 284.38 27.75 WS -2.00 ps -newpath 63.12 14.00 M -68.12 14.12 L -73.12 14.38 L -78.12 14.75 L -83.12 15.50 L -88.25 16.38 L -93.25 17.38 L -98.38 18.50 L -103.38 19.88 L -108.38 21.38 L -113.50 23.12 L -118.50 24.88 L -123.50 26.88 L -128.50 29.00 L -133.62 31.38 L -138.62 33.75 L -143.62 36.25 L -148.75 38.88 L -153.75 41.75 L -158.88 44.62 L -163.88 47.62 L -168.88 50.75 L -173.88 54.00 L -179.00 57.25 L -184.00 60.62 L -189.00 64.12 L -194.12 67.75 L -199.12 71.38 L -204.12 75.00 L -209.25 78.88 L -214.25 82.62 L -219.25 86.62 L -224.25 90.50 L -229.38 94.50 L -234.38 98.50 L -239.50 102.62 L -244.50 106.75 L -249.50 110.88 L -254.62 115.00 L -259.62 119.12 L -264.62 123.25 L -269.62 127.50 L -274.75 131.62 L -279.75 135.75 L -284.75 140.00 L -289.88 144.12 L -294.88 148.25 L -300.00 152.38 L -305.00 156.50 L -310.00 160.50 L -315.00 164.50 L -320.00 168.50 L -325.00 172.38 L -330.12 176.25 L -335.12 180.12 L -340.25 183.88 L -345.25 187.50 L -350.25 191.12 L -355.38 194.62 L -360.38 198.00 L -365.38 201.38 L -370.38 204.62 L -375.50 207.88 L -380.50 210.88 L -385.50 213.88 L -390.62 216.75 L -395.62 219.38 L -400.75 222.00 L -405.75 224.50 L -410.75 226.88 L -415.75 229.00 L -420.88 231.12 L -425.88 233.00 L -430.88 234.75 L -436.00 236.38 L -441.00 237.88 L -446.00 239.12 L -451.12 240.25 L -456.12 241.12 L -461.12 241.88 L -466.12 242.50 L -471.25 242.75 L -476.25 243.00 L -481.38 243.00 L -486.38 242.75 L -491.38 242.25 L -496.50 241.62 L -501.50 240.75 L -506.50 239.62 L -511.50 238.25 L -516.62 236.62 L -521.62 234.88 L -526.62 232.75 L -531.75 230.50 L -536.75 227.88 L -541.88 225.00 L -546.88 222.00 L -551.88 218.62 L -556.88 214.88 L -561.88 211.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v7.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v7.gif deleted file mode 100755 index f72c857ed..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v7.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v8.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v8.eps deleted file mode 100755 index 1ae22f671..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v8.eps +++ /dev/null @@ -1,1228 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_x8 -%%Creation Date: Sun, Sep 10, 1995 06:46 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 242.25 554.50 242.25 MacLine -62.50 242.25 69.50 242.25 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(-1300) 18.12 247.12 40.88 WS -gsave 0.125 ps [1] sd -66.00 235.88 558.00 235.88 MacLine -grestore -1.00 ps -561.50 235.38 558.00 235.38 MacLine -62.50 235.38 66.00 235.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 229.12 558.00 229.12 MacLine -grestore -1.00 ps -561.50 228.62 558.00 228.62 MacLine -62.50 228.62 66.00 228.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 222.38 558.00 222.38 MacLine -grestore -1.00 ps -561.50 221.88 558.00 221.88 MacLine -62.50 221.88 66.00 221.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 215.62 558.00 215.62 MacLine -grestore -1.00 ps -561.50 215.12 558.00 215.12 MacLine -62.50 215.12 66.00 215.12 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 208.75 554.50 208.75 MacLine -grestore -1.00 ps -561.50 208.38 554.50 208.38 MacLine -62.50 208.38 69.50 208.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-1200) 18.12 213.25 40.88 WS -gsave 0.125 ps [1] sd -66.00 202.12 558.00 202.12 MacLine -grestore -1.00 ps -561.50 201.62 558.00 201.62 MacLine -62.50 201.62 66.00 201.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 195.38 558.00 195.38 MacLine -grestore -1.00 ps -561.50 194.88 558.00 194.88 MacLine -62.50 194.88 66.00 194.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 188.62 558.00 188.62 MacLine -grestore -1.00 ps -561.50 188.12 558.00 188.12 MacLine -62.50 188.12 66.00 188.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 181.75 558.00 181.75 MacLine -grestore -1.00 ps -561.50 181.25 558.00 181.25 MacLine -62.50 181.25 66.00 181.25 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 174.88 554.50 174.88 MacLine -grestore -1.00 ps -561.50 174.50 554.50 174.50 MacLine -62.50 174.50 69.50 174.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-1100) 18.12 179.38 40.88 WS -gsave 0.125 ps [1] sd -66.00 168.25 558.00 168.25 MacLine -grestore -1.00 ps -561.50 167.75 558.00 167.75 MacLine -62.50 167.75 66.00 167.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 161.50 558.00 161.50 MacLine -grestore -1.00 ps -561.50 161.00 558.00 161.00 MacLine -62.50 161.00 66.00 161.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 154.75 558.00 154.75 MacLine -grestore -1.00 ps -561.50 154.25 558.00 154.25 MacLine -62.50 154.25 66.00 154.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 148.00 558.00 148.00 MacLine -grestore -1.00 ps -561.50 147.50 558.00 147.50 MacLine -62.50 147.50 66.00 147.50 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 141.12 554.50 141.12 MacLine -grestore -1.00 ps -561.50 140.75 554.50 140.75 MacLine -62.50 140.75 69.50 140.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-1000) 18.12 145.62 40.88 WS -gsave 0.125 ps [1] sd -66.00 134.50 558.00 134.50 MacLine -grestore -1.00 ps -561.50 134.00 558.00 134.00 MacLine -62.50 134.00 66.00 134.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 127.62 558.00 127.62 MacLine -grestore -1.00 ps -561.50 127.12 558.00 127.12 MacLine -62.50 127.12 66.00 127.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 120.88 558.00 120.88 MacLine -grestore -1.00 ps -561.50 120.38 558.00 120.38 MacLine -62.50 120.38 66.00 120.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 114.12 558.00 114.12 MacLine -grestore -1.00 ps -561.50 113.62 558.00 113.62 MacLine -62.50 113.62 66.00 113.62 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 107.25 554.50 107.25 MacLine -grestore -1.00 ps -561.50 106.88 554.50 106.88 MacLine -62.50 106.88 69.50 106.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-900) 27.00 111.75 32.00 WS -gsave 0.125 ps [1] sd -66.00 100.62 558.00 100.62 MacLine -grestore -1.00 ps -561.50 100.12 558.00 100.12 MacLine -62.50 100.12 66.00 100.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 93.88 558.00 93.88 MacLine -grestore -1.00 ps -561.50 93.38 558.00 93.38 MacLine -62.50 93.38 66.00 93.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 87.12 558.00 87.12 MacLine -grestore -1.00 ps -561.50 86.62 558.00 86.62 MacLine -62.50 86.62 66.00 86.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 80.25 558.00 80.25 MacLine -grestore -1.00 ps -561.50 79.75 558.00 79.75 MacLine -62.50 79.75 66.00 79.75 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 73.38 554.50 73.38 MacLine -grestore -1.00 ps -561.50 73.00 554.50 73.00 MacLine -62.50 73.00 69.50 73.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-800) 27.00 77.88 32.00 WS -gsave 0.125 ps [1] sd -66.00 66.75 558.00 66.75 MacLine -grestore -1.00 ps -561.50 66.25 558.00 66.25 MacLine -62.50 66.25 66.00 66.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 60.00 558.00 60.00 MacLine -grestore -1.00 ps -561.50 59.50 558.00 59.50 MacLine -62.50 59.50 66.00 59.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 53.25 558.00 53.25 MacLine -grestore -1.00 ps -561.50 52.75 558.00 52.75 MacLine -62.50 52.75 66.00 52.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 46.50 558.00 46.50 MacLine -grestore -1.00 ps -561.50 46.00 558.00 46.00 MacLine -62.50 46.00 66.00 46.00 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 39.62 554.50 39.62 MacLine -grestore -1.00 ps -561.50 39.25 554.50 39.25 MacLine -62.50 39.25 69.50 39.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-700) 27.00 44.12 32.00 WS -gsave 0.125 ps [1] sd -66.00 33.00 558.00 33.00 MacLine -grestore -1.00 ps -561.50 32.50 558.00 32.50 MacLine -62.50 32.50 66.00 32.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 26.12 558.00 26.12 MacLine -grestore -1.00 ps -561.50 25.62 558.00 25.62 MacLine -62.50 25.62 66.00 25.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 19.38 558.00 19.38 MacLine -grestore -1.00 ps -561.50 18.88 558.00 18.88 MacLine -62.50 18.88 66.00 18.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 12.62 558.00 12.62 MacLine -grestore -1.00 ps -561.50 12.12 558.00 12.12 MacLine -62.50 12.12 66.00 12.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(x \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -558.38 239.00 558.38 17.00 MacLine -grestore -1.00 ps -557.88 13.50 557.88 17.00 MacLine -557.88 242.50 557.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -551.25 239.00 551.25 17.00 MacLine -grestore -1.00 ps -550.75 13.50 550.75 17.00 MacLine -550.75 242.50 550.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -544.12 237.25 544.12 18.75 MacLine -grestore -1.00 ps -543.62 13.50 543.62 18.75 MacLine -543.62 242.50 543.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -537.00 239.00 537.00 17.00 MacLine -grestore -1.00 ps -536.50 13.50 536.50 17.00 MacLine -536.50 242.50 536.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -529.88 239.00 529.88 17.00 MacLine -grestore -1.00 ps -529.38 13.50 529.38 17.00 MacLine -529.38 242.50 529.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.75 239.00 522.75 17.00 MacLine -grestore -1.00 ps -522.25 13.50 522.25 17.00 MacLine -522.25 242.50 522.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -515.62 239.00 515.62 17.00 MacLine -grestore -1.00 ps -515.12 13.50 515.12 17.00 MacLine -515.12 242.50 515.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -508.38 235.50 508.38 20.50 MacLine -grestore -1.00 ps -508.00 13.50 508.00 20.50 MacLine -508.00 242.50 508.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 504.12 259.88 8.88 WS -gsave 0.125 ps [1] sd -501.38 239.00 501.38 17.00 MacLine -grestore -1.00 ps -500.88 13.50 500.88 17.00 MacLine -500.88 242.50 500.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -494.25 239.00 494.25 17.00 MacLine -grestore -1.00 ps -493.75 13.50 493.75 17.00 MacLine -493.75 242.50 493.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.12 239.00 487.12 17.00 MacLine -grestore -1.00 ps -486.62 13.50 486.62 17.00 MacLine -486.62 242.50 486.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.00 239.00 480.00 17.00 MacLine -grestore -1.00 ps -479.50 13.50 479.50 17.00 MacLine -479.50 242.50 479.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.88 237.25 472.88 18.75 MacLine -grestore -1.00 ps -472.38 13.50 472.38 18.75 MacLine -472.38 242.50 472.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -465.75 239.00 465.75 17.00 MacLine -grestore -1.00 ps -465.25 13.50 465.25 17.00 MacLine -465.25 242.50 465.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -458.62 239.00 458.62 17.00 MacLine -grestore -1.00 ps -458.12 13.50 458.12 17.00 MacLine -458.12 242.50 458.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -451.50 239.00 451.50 17.00 MacLine -grestore -1.00 ps -451.00 13.50 451.00 17.00 MacLine -451.00 242.50 451.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -444.38 239.00 444.38 17.00 MacLine -grestore -1.00 ps -443.88 13.50 443.88 17.00 MacLine -443.88 242.50 443.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -437.12 235.50 437.12 20.50 MacLine -grestore -1.00 ps -436.75 13.50 436.75 20.50 MacLine -436.75 242.50 436.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 432.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -430.12 239.00 430.12 17.00 MacLine -grestore -1.00 ps -429.62 13.50 429.62 17.00 MacLine -429.62 242.50 429.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -423.00 239.00 423.00 17.00 MacLine -grestore -1.00 ps -422.50 13.50 422.50 17.00 MacLine -422.50 242.50 422.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -415.88 239.00 415.88 17.00 MacLine -grestore -1.00 ps -415.38 13.50 415.38 17.00 MacLine -415.38 242.50 415.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -408.75 239.00 408.75 17.00 MacLine -grestore -1.00 ps -408.25 13.50 408.25 17.00 MacLine -408.25 242.50 408.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -401.62 237.25 401.62 18.75 MacLine -grestore -1.00 ps -401.12 13.50 401.12 18.75 MacLine -401.12 242.50 401.12 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -394.50 239.00 394.50 17.00 MacLine -grestore -1.00 ps -394.00 13.50 394.00 17.00 MacLine -394.00 242.50 394.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -387.38 239.00 387.38 17.00 MacLine -grestore -1.00 ps -386.88 13.50 386.88 17.00 MacLine -386.88 242.50 386.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -380.25 239.00 380.25 17.00 MacLine -grestore -1.00 ps -379.75 13.50 379.75 17.00 MacLine -379.75 242.50 379.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.12 239.00 373.12 17.00 MacLine -grestore -1.00 ps -372.62 13.50 372.62 17.00 MacLine -372.62 242.50 372.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -365.88 235.50 365.88 20.50 MacLine -grestore -1.00 ps -365.50 13.50 365.50 20.50 MacLine -365.50 242.50 365.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 361.62 259.88 8.88 WS -gsave 0.125 ps [1] sd -358.88 239.00 358.88 17.00 MacLine -grestore -1.00 ps -358.38 13.50 358.38 17.00 MacLine -358.38 242.50 358.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -351.75 239.00 351.75 17.00 MacLine -grestore -1.00 ps -351.25 13.50 351.25 17.00 MacLine -351.25 242.50 351.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -344.62 239.00 344.62 17.00 MacLine -grestore -1.00 ps -344.12 13.50 344.12 17.00 MacLine -344.12 242.50 344.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -337.50 239.00 337.50 17.00 MacLine -grestore -1.00 ps -337.00 13.50 337.00 17.00 MacLine -337.00 242.50 337.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -330.38 237.25 330.38 18.75 MacLine -grestore -1.00 ps -329.88 13.50 329.88 18.75 MacLine -329.88 242.50 329.88 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 239.00 323.25 17.00 MacLine -grestore -1.00 ps -322.75 13.50 322.75 17.00 MacLine -322.75 242.50 322.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.12 239.00 316.12 17.00 MacLine -grestore -1.00 ps -315.62 13.50 315.62 17.00 MacLine -315.62 242.50 315.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -308.88 239.00 308.88 17.00 MacLine -grestore -1.00 ps -308.38 13.50 308.38 17.00 MacLine -308.38 242.50 308.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -301.75 239.00 301.75 17.00 MacLine -grestore -1.00 ps -301.25 13.50 301.25 17.00 MacLine -301.25 242.50 301.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -294.50 235.50 294.50 20.50 MacLine -grestore -1.00 ps -294.12 13.50 294.12 20.50 MacLine -294.12 242.50 294.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 290.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -287.50 239.00 287.50 17.00 MacLine -grestore -1.00 ps -287.00 13.50 287.00 17.00 MacLine -287.00 242.50 287.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -280.38 239.00 280.38 17.00 MacLine -grestore -1.00 ps -279.88 13.50 279.88 17.00 MacLine -279.88 242.50 279.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -273.25 239.00 273.25 17.00 MacLine -grestore -1.00 ps -272.75 13.50 272.75 17.00 MacLine -272.75 242.50 272.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.12 239.00 266.12 17.00 MacLine -grestore -1.00 ps -265.62 13.50 265.62 17.00 MacLine -265.62 242.50 265.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -259.00 237.25 259.00 18.75 MacLine -grestore -1.00 ps -258.50 13.50 258.50 18.75 MacLine -258.50 242.50 258.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -251.88 239.00 251.88 17.00 MacLine -grestore -1.00 ps -251.38 13.50 251.38 17.00 MacLine -251.38 242.50 251.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -244.75 239.00 244.75 17.00 MacLine -grestore -1.00 ps -244.25 13.50 244.25 17.00 MacLine -244.25 242.50 244.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -237.62 239.00 237.62 17.00 MacLine -grestore -1.00 ps -237.12 13.50 237.12 17.00 MacLine -237.12 242.50 237.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -230.50 239.00 230.50 17.00 MacLine -grestore -1.00 ps -230.00 13.50 230.00 17.00 MacLine -230.00 242.50 230.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-2) 216.25 259.88 14.25 WS -gsave 0.125 ps [1] sd -216.25 239.00 216.25 17.00 MacLine -grestore -1.00 ps -215.75 13.50 215.75 17.00 MacLine -215.75 242.50 215.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -209.12 239.00 209.12 17.00 MacLine -grestore -1.00 ps -208.62 13.50 208.62 17.00 MacLine -208.62 242.50 208.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -202.00 239.00 202.00 17.00 MacLine -grestore -1.00 ps -201.50 13.50 201.50 17.00 MacLine -201.50 242.50 201.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -194.88 239.00 194.88 17.00 MacLine -grestore -1.00 ps -194.38 13.50 194.38 17.00 MacLine -194.38 242.50 194.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -187.75 237.25 187.75 18.75 MacLine -grestore -1.00 ps -187.25 13.50 187.25 18.75 MacLine -187.25 242.50 187.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -180.62 239.00 180.62 17.00 MacLine -grestore -1.00 ps -180.12 13.50 180.12 17.00 MacLine -180.12 242.50 180.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -173.50 239.00 173.50 17.00 MacLine -grestore -1.00 ps -173.00 13.50 173.00 17.00 MacLine -173.00 242.50 173.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -166.38 239.00 166.38 17.00 MacLine -grestore -1.00 ps -165.88 13.50 165.88 17.00 MacLine -165.88 242.50 165.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.25 239.00 159.25 17.00 MacLine -grestore -1.00 ps -158.75 13.50 158.75 17.00 MacLine -158.75 242.50 158.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -152.00 235.50 152.00 20.50 MacLine -grestore -1.00 ps -151.62 13.50 151.62 20.50 MacLine -151.62 242.50 151.62 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-4) 145.00 259.88 14.25 WS -gsave 0.125 ps [1] sd -145.00 239.00 145.00 17.00 MacLine -grestore -1.00 ps -144.50 13.50 144.50 17.00 MacLine -144.50 242.50 144.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -137.88 239.00 137.88 17.00 MacLine -grestore -1.00 ps -137.38 13.50 137.38 17.00 MacLine -137.38 242.50 137.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -130.75 239.00 130.75 17.00 MacLine -grestore -1.00 ps -130.25 13.50 130.25 17.00 MacLine -130.25 242.50 130.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -123.62 239.00 123.62 17.00 MacLine -grestore -1.00 ps -123.12 13.50 123.12 17.00 MacLine -123.12 242.50 123.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -116.50 237.25 116.50 18.75 MacLine -grestore -1.00 ps -116.00 13.50 116.00 18.75 MacLine -116.00 242.50 116.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -109.38 239.00 109.38 17.00 MacLine -grestore -1.00 ps -108.88 13.50 108.88 17.00 MacLine -108.88 242.50 108.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.25 239.00 102.25 17.00 MacLine -grestore -1.00 ps -101.75 13.50 101.75 17.00 MacLine -101.75 242.50 101.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -95.12 239.00 95.12 17.00 MacLine -grestore -1.00 ps -94.62 13.50 94.62 17.00 MacLine -94.62 242.50 94.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -88.00 239.00 88.00 17.00 MacLine -grestore -1.00 ps -87.50 13.50 87.50 17.00 MacLine -87.50 242.50 87.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -80.75 235.50 80.75 20.50 MacLine -grestore -1.00 ps -80.38 13.50 80.38 20.50 MacLine -80.38 242.50 80.38 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-6) 73.75 259.88 14.25 WS -gsave 0.125 ps [1] sd -73.75 239.00 73.75 17.00 MacLine -grestore -1.00 ps -73.25 13.50 73.25 17.00 MacLine -73.25 242.50 73.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.62 239.00 66.62 17.00 MacLine -grestore -1.00 ps -66.12 13.50 66.12 17.00 MacLine -66.12 242.50 66.12 239.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(t \(s\)) 298.62 284.38 27.75 WS -2.00 ps -newpath 63.12 243.00 M -68.12 240.38 L -73.12 237.75 L -78.12 234.75 L -83.12 231.75 L -88.25 228.62 L -93.25 225.38 L -98.38 222.00 L -103.38 218.50 L -108.38 214.88 L -113.50 211.12 L -118.50 207.38 L -123.50 203.50 L -128.50 199.50 L -133.62 195.38 L -138.62 191.25 L -143.62 187.00 L -148.75 182.75 L -153.75 178.38 L -158.88 174.00 L -163.88 169.50 L -168.88 165.00 L -173.88 160.50 L -179.00 156.00 L -184.00 151.38 L -189.00 146.75 L -194.12 142.25 L -199.12 137.62 L -204.12 133.00 L -209.25 128.38 L -214.25 123.88 L -219.25 119.25 L -224.25 114.75 L -229.38 110.12 L -234.38 105.75 L -239.50 101.25 L -244.50 96.88 L -249.50 92.50 L -254.62 88.12 L -259.62 84.00 L -264.62 79.75 L -269.62 75.62 L -274.75 71.62 L -279.75 67.75 L -284.75 63.88 L -289.88 60.12 L -294.88 56.50 L -300.00 53.00 L -305.00 49.50 L -310.00 46.25 L -315.00 43.12 L -320.00 40.00 L -325.00 37.12 L -330.12 34.38 L -335.12 31.75 L -340.25 29.38 L -345.25 27.00 L -350.25 24.88 L -355.38 23.00 L -360.38 21.12 L -365.38 19.62 L -370.38 18.12 L -375.50 17.00 L -380.50 16.00 L -385.50 15.12 L -390.62 14.50 L -395.62 14.12 L -400.75 14.00 L -405.75 14.12 L -410.75 14.38 L -415.75 15.00 L -420.88 15.75 L -425.88 16.75 L -430.88 18.12 L -436.00 19.62 L -441.00 21.50 L -446.00 23.62 L -451.12 26.00 L -456.12 28.75 L -461.12 31.62 L -466.12 35.00 L -471.25 38.50 L -476.25 42.38 L -481.38 46.62 L -486.38 51.12 L -491.38 56.00 L -496.50 61.12 L -501.50 66.62 L -506.50 72.50 L -511.50 78.75 L -516.62 85.25 L -521.62 92.25 L -526.62 99.50 L -531.75 107.12 L -536.75 115.25 L -541.88 123.62 L -546.88 132.50 L -551.88 141.62 L -556.88 151.25 L -561.88 161.25 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v8.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v8.gif deleted file mode 100755 index aacfc233e..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v8.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v9.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v9.eps deleted file mode 100755 index b43c7e7aa..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v9.eps +++ /dev/null @@ -1,1198 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_x9 -%%Creation Date: Sun, Sep 10, 1995 06:46 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 18.62 558.00 18.62 MacLine -grestore -1.00 ps -561.50 18.12 558.00 18.12 MacLine -62.50 18.12 66.00 18.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 26.12 558.00 26.12 MacLine -grestore -1.00 ps -561.50 25.62 558.00 25.62 MacLine -62.50 25.62 66.00 25.62 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 33.38 554.50 33.38 MacLine -grestore -1.00 ps -561.50 33.00 554.50 33.00 MacLine -62.50 33.00 69.50 33.00 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2000) 23.50 37.88 35.50 WS -gsave 0.125 ps [1] sd -66.00 41.00 558.00 41.00 MacLine -grestore -1.00 ps -561.50 40.50 558.00 40.50 MacLine -62.50 40.50 66.00 40.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 48.50 558.00 48.50 MacLine -grestore -1.00 ps -561.50 48.00 558.00 48.00 MacLine -62.50 48.00 66.00 48.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 55.88 558.00 55.88 MacLine -grestore -1.00 ps -561.50 55.38 558.00 55.38 MacLine -62.50 55.38 66.00 55.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 63.38 558.00 63.38 MacLine -grestore -1.00 ps -561.50 62.88 558.00 62.88 MacLine -62.50 62.88 66.00 62.88 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 70.62 554.50 70.62 MacLine -grestore -1.00 ps -561.50 70.25 554.50 70.25 MacLine -62.50 70.25 69.50 70.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1950) 23.50 75.12 35.50 WS -gsave 0.125 ps [1] sd -66.00 78.25 558.00 78.25 MacLine -grestore -1.00 ps -561.50 77.75 558.00 77.75 MacLine -62.50 77.75 66.00 77.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 85.75 558.00 85.75 MacLine -grestore -1.00 ps -561.50 85.25 558.00 85.25 MacLine -62.50 85.25 66.00 85.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 93.12 558.00 93.12 MacLine -grestore -1.00 ps -561.50 92.62 558.00 92.62 MacLine -62.50 92.62 66.00 92.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 100.62 558.00 100.62 MacLine -grestore -1.00 ps -561.50 100.12 558.00 100.12 MacLine -62.50 100.12 66.00 100.12 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 107.88 554.50 107.88 MacLine -grestore -1.00 ps -561.50 107.50 554.50 107.50 MacLine -62.50 107.50 69.50 107.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1900) 23.50 112.38 35.50 WS -gsave 0.125 ps [1] sd -66.00 115.50 558.00 115.50 MacLine -grestore -1.00 ps -561.50 115.00 558.00 115.00 MacLine -62.50 115.00 66.00 115.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 123.00 558.00 123.00 MacLine -grestore -1.00 ps -561.50 122.50 558.00 122.50 MacLine -62.50 122.50 66.00 122.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 130.38 558.00 130.38 MacLine -grestore -1.00 ps -561.50 129.88 558.00 129.88 MacLine -62.50 129.88 66.00 129.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 137.88 558.00 137.88 MacLine -grestore -1.00 ps -561.50 137.38 558.00 137.38 MacLine -62.50 137.38 66.00 137.38 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 145.12 554.50 145.12 MacLine -grestore -1.00 ps -561.50 144.75 554.50 144.75 MacLine -62.50 144.75 69.50 144.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1850) 23.50 149.62 35.50 WS -gsave 0.125 ps [1] sd -66.00 152.75 558.00 152.75 MacLine -grestore -1.00 ps -561.50 152.25 558.00 152.25 MacLine -62.50 152.25 66.00 152.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 160.25 558.00 160.25 MacLine -grestore -1.00 ps -561.50 159.75 558.00 159.75 MacLine -62.50 159.75 66.00 159.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 167.62 558.00 167.62 MacLine -grestore -1.00 ps -561.50 167.12 558.00 167.12 MacLine -62.50 167.12 66.00 167.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 175.12 558.00 175.12 MacLine -grestore -1.00 ps -561.50 174.62 558.00 174.62 MacLine -62.50 174.62 66.00 174.62 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 182.38 554.50 182.38 MacLine -grestore -1.00 ps -561.50 182.00 554.50 182.00 MacLine -62.50 182.00 69.50 182.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1800) 23.50 186.88 35.50 WS -gsave 0.125 ps [1] sd -66.00 190.00 558.00 190.00 MacLine -grestore -1.00 ps -561.50 189.50 558.00 189.50 MacLine -62.50 189.50 66.00 189.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 197.50 558.00 197.50 MacLine -grestore -1.00 ps -561.50 197.00 558.00 197.00 MacLine -62.50 197.00 66.00 197.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 204.88 558.00 204.88 MacLine -grestore -1.00 ps -561.50 204.38 558.00 204.38 MacLine -62.50 204.38 66.00 204.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 212.38 558.00 212.38 MacLine -grestore -1.00 ps -561.50 211.88 558.00 211.88 MacLine -62.50 211.88 66.00 211.88 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 219.62 554.50 219.62 MacLine -grestore -1.00 ps -561.50 219.25 554.50 219.25 MacLine -62.50 219.25 69.50 219.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1750) 23.50 224.12 35.50 WS -gsave 0.125 ps [1] sd -66.00 227.25 558.00 227.25 MacLine -grestore -1.00 ps -561.50 226.75 558.00 226.75 MacLine -62.50 226.75 66.00 226.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 234.75 558.00 234.75 MacLine -grestore -1.00 ps -561.50 234.25 558.00 234.25 MacLine -62.50 234.25 66.00 234.25 MacLine -1 ps -1.00 ps -561.50 241.62 558.00 241.62 MacLine -62.50 241.62 66.00 241.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(x \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -558.38 239.00 558.38 17.00 MacLine -grestore -1.00 ps -557.88 13.50 557.88 17.00 MacLine -557.88 242.50 557.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -551.25 239.00 551.25 17.00 MacLine -grestore -1.00 ps -550.75 13.50 550.75 17.00 MacLine -550.75 242.50 550.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -544.12 237.25 544.12 18.75 MacLine -grestore -1.00 ps -543.62 13.50 543.62 18.75 MacLine -543.62 242.50 543.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -537.00 239.00 537.00 17.00 MacLine -grestore -1.00 ps -536.50 13.50 536.50 17.00 MacLine -536.50 242.50 536.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -529.88 239.00 529.88 17.00 MacLine -grestore -1.00 ps -529.38 13.50 529.38 17.00 MacLine -529.38 242.50 529.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.75 239.00 522.75 17.00 MacLine -grestore -1.00 ps -522.25 13.50 522.25 17.00 MacLine -522.25 242.50 522.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -515.62 239.00 515.62 17.00 MacLine -grestore -1.00 ps -515.12 13.50 515.12 17.00 MacLine -515.12 242.50 515.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -508.38 235.50 508.38 20.50 MacLine -grestore -1.00 ps -508.00 13.50 508.00 20.50 MacLine -508.00 242.50 508.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 504.12 259.88 8.88 WS -gsave 0.125 ps [1] sd -501.38 239.00 501.38 17.00 MacLine -grestore -1.00 ps -500.88 13.50 500.88 17.00 MacLine -500.88 242.50 500.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -494.25 239.00 494.25 17.00 MacLine -grestore -1.00 ps -493.75 13.50 493.75 17.00 MacLine -493.75 242.50 493.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.12 239.00 487.12 17.00 MacLine -grestore -1.00 ps -486.62 13.50 486.62 17.00 MacLine -486.62 242.50 486.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.00 239.00 480.00 17.00 MacLine -grestore -1.00 ps -479.50 13.50 479.50 17.00 MacLine -479.50 242.50 479.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.88 237.25 472.88 18.75 MacLine -grestore -1.00 ps -472.38 13.50 472.38 18.75 MacLine -472.38 242.50 472.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -465.75 239.00 465.75 17.00 MacLine -grestore -1.00 ps -465.25 13.50 465.25 17.00 MacLine -465.25 242.50 465.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -458.62 239.00 458.62 17.00 MacLine -grestore -1.00 ps -458.12 13.50 458.12 17.00 MacLine -458.12 242.50 458.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -451.50 239.00 451.50 17.00 MacLine -grestore -1.00 ps -451.00 13.50 451.00 17.00 MacLine -451.00 242.50 451.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -444.38 239.00 444.38 17.00 MacLine -grestore -1.00 ps -443.88 13.50 443.88 17.00 MacLine -443.88 242.50 443.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -437.12 235.50 437.12 20.50 MacLine -grestore -1.00 ps -436.75 13.50 436.75 20.50 MacLine -436.75 242.50 436.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 432.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -430.12 239.00 430.12 17.00 MacLine -grestore -1.00 ps -429.62 13.50 429.62 17.00 MacLine -429.62 242.50 429.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -423.00 239.00 423.00 17.00 MacLine -grestore -1.00 ps -422.50 13.50 422.50 17.00 MacLine -422.50 242.50 422.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -415.88 239.00 415.88 17.00 MacLine -grestore -1.00 ps -415.38 13.50 415.38 17.00 MacLine -415.38 242.50 415.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -408.75 239.00 408.75 17.00 MacLine -grestore -1.00 ps -408.25 13.50 408.25 17.00 MacLine -408.25 242.50 408.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -401.62 237.25 401.62 18.75 MacLine -grestore -1.00 ps -401.12 13.50 401.12 18.75 MacLine -401.12 242.50 401.12 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -394.50 239.00 394.50 17.00 MacLine -grestore -1.00 ps -394.00 13.50 394.00 17.00 MacLine -394.00 242.50 394.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -387.38 239.00 387.38 17.00 MacLine -grestore -1.00 ps -386.88 13.50 386.88 17.00 MacLine -386.88 242.50 386.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -380.25 239.00 380.25 17.00 MacLine -grestore -1.00 ps -379.75 13.50 379.75 17.00 MacLine -379.75 242.50 379.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.12 239.00 373.12 17.00 MacLine -grestore -1.00 ps -372.62 13.50 372.62 17.00 MacLine -372.62 242.50 372.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -365.88 235.50 365.88 20.50 MacLine -grestore -1.00 ps -365.50 13.50 365.50 20.50 MacLine -365.50 242.50 365.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 361.62 259.88 8.88 WS -gsave 0.125 ps [1] sd -358.88 239.00 358.88 17.00 MacLine -grestore -1.00 ps -358.38 13.50 358.38 17.00 MacLine -358.38 242.50 358.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -351.75 239.00 351.75 17.00 MacLine -grestore -1.00 ps -351.25 13.50 351.25 17.00 MacLine -351.25 242.50 351.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -344.62 239.00 344.62 17.00 MacLine -grestore -1.00 ps -344.12 13.50 344.12 17.00 MacLine -344.12 242.50 344.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -337.50 239.00 337.50 17.00 MacLine -grestore -1.00 ps -337.00 13.50 337.00 17.00 MacLine -337.00 242.50 337.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -330.38 237.25 330.38 18.75 MacLine -grestore -1.00 ps -329.88 13.50 329.88 18.75 MacLine -329.88 242.50 329.88 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 239.00 323.25 17.00 MacLine -grestore -1.00 ps -322.75 13.50 322.75 17.00 MacLine -322.75 242.50 322.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.12 239.00 316.12 17.00 MacLine -grestore -1.00 ps -315.62 13.50 315.62 17.00 MacLine -315.62 242.50 315.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -308.88 239.00 308.88 17.00 MacLine -grestore -1.00 ps -308.38 13.50 308.38 17.00 MacLine -308.38 242.50 308.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -301.75 239.00 301.75 17.00 MacLine -grestore -1.00 ps -301.25 13.50 301.25 17.00 MacLine -301.25 242.50 301.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -294.50 235.50 294.50 20.50 MacLine -grestore -1.00 ps -294.12 13.50 294.12 20.50 MacLine -294.12 242.50 294.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 290.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -287.50 239.00 287.50 17.00 MacLine -grestore -1.00 ps -287.00 13.50 287.00 17.00 MacLine -287.00 242.50 287.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -280.38 239.00 280.38 17.00 MacLine -grestore -1.00 ps -279.88 13.50 279.88 17.00 MacLine -279.88 242.50 279.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -273.25 239.00 273.25 17.00 MacLine -grestore -1.00 ps -272.75 13.50 272.75 17.00 MacLine -272.75 242.50 272.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.12 239.00 266.12 17.00 MacLine -grestore -1.00 ps -265.62 13.50 265.62 17.00 MacLine -265.62 242.50 265.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -259.00 237.25 259.00 18.75 MacLine -grestore -1.00 ps -258.50 13.50 258.50 18.75 MacLine -258.50 242.50 258.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -251.88 239.00 251.88 17.00 MacLine -grestore -1.00 ps -251.38 13.50 251.38 17.00 MacLine -251.38 242.50 251.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -244.75 239.00 244.75 17.00 MacLine -grestore -1.00 ps -244.25 13.50 244.25 17.00 MacLine -244.25 242.50 244.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -237.62 239.00 237.62 17.00 MacLine -grestore -1.00 ps -237.12 13.50 237.12 17.00 MacLine -237.12 242.50 237.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -230.50 239.00 230.50 17.00 MacLine -grestore -1.00 ps -230.00 13.50 230.00 17.00 MacLine -230.00 242.50 230.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-2) 216.25 259.88 14.25 WS -gsave 0.125 ps [1] sd -216.25 239.00 216.25 17.00 MacLine -grestore -1.00 ps -215.75 13.50 215.75 17.00 MacLine -215.75 242.50 215.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -209.12 239.00 209.12 17.00 MacLine -grestore -1.00 ps -208.62 13.50 208.62 17.00 MacLine -208.62 242.50 208.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -202.00 239.00 202.00 17.00 MacLine -grestore -1.00 ps -201.50 13.50 201.50 17.00 MacLine -201.50 242.50 201.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -194.88 239.00 194.88 17.00 MacLine -grestore -1.00 ps -194.38 13.50 194.38 17.00 MacLine -194.38 242.50 194.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -187.75 237.25 187.75 18.75 MacLine -grestore -1.00 ps -187.25 13.50 187.25 18.75 MacLine -187.25 242.50 187.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -180.62 239.00 180.62 17.00 MacLine -grestore -1.00 ps -180.12 13.50 180.12 17.00 MacLine -180.12 242.50 180.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -173.50 239.00 173.50 17.00 MacLine -grestore -1.00 ps -173.00 13.50 173.00 17.00 MacLine -173.00 242.50 173.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -166.38 239.00 166.38 17.00 MacLine -grestore -1.00 ps -165.88 13.50 165.88 17.00 MacLine -165.88 242.50 165.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.25 239.00 159.25 17.00 MacLine -grestore -1.00 ps -158.75 13.50 158.75 17.00 MacLine -158.75 242.50 158.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -152.00 235.50 152.00 20.50 MacLine -grestore -1.00 ps -151.62 13.50 151.62 20.50 MacLine -151.62 242.50 151.62 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-4) 145.00 259.88 14.25 WS -gsave 0.125 ps [1] sd -145.00 239.00 145.00 17.00 MacLine -grestore -1.00 ps -144.50 13.50 144.50 17.00 MacLine -144.50 242.50 144.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -137.88 239.00 137.88 17.00 MacLine -grestore -1.00 ps -137.38 13.50 137.38 17.00 MacLine -137.38 242.50 137.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -130.75 239.00 130.75 17.00 MacLine -grestore -1.00 ps -130.25 13.50 130.25 17.00 MacLine -130.25 242.50 130.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -123.62 239.00 123.62 17.00 MacLine -grestore -1.00 ps -123.12 13.50 123.12 17.00 MacLine -123.12 242.50 123.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -116.50 237.25 116.50 18.75 MacLine -grestore -1.00 ps -116.00 13.50 116.00 18.75 MacLine -116.00 242.50 116.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -109.38 239.00 109.38 17.00 MacLine -grestore -1.00 ps -108.88 13.50 108.88 17.00 MacLine -108.88 242.50 108.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.25 239.00 102.25 17.00 MacLine -grestore -1.00 ps -101.75 13.50 101.75 17.00 MacLine -101.75 242.50 101.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -95.12 239.00 95.12 17.00 MacLine -grestore -1.00 ps -94.62 13.50 94.62 17.00 MacLine -94.62 242.50 94.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -88.00 239.00 88.00 17.00 MacLine -grestore -1.00 ps -87.50 13.50 87.50 17.00 MacLine -87.50 242.50 87.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -80.75 235.50 80.75 20.50 MacLine -grestore -1.00 ps -80.38 13.50 80.38 20.50 MacLine -80.38 242.50 80.38 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-6) 73.75 259.88 14.25 WS -gsave 0.125 ps [1] sd -73.75 239.00 73.75 17.00 MacLine -grestore -1.00 ps -73.25 13.50 73.25 17.00 MacLine -73.25 242.50 73.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.62 239.00 66.62 17.00 MacLine -grestore -1.00 ps -66.12 13.50 66.12 17.00 MacLine -66.12 242.50 66.12 239.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(t \(s\)) 298.62 284.38 27.75 WS -2.00 ps -newpath 63.12 243.00 M -68.12 227.12 L -73.12 212.00 L -78.12 197.50 L -83.12 183.62 L -88.25 170.50 L -93.25 157.88 L -98.38 146.00 L -103.38 134.75 L -108.38 124.00 L -113.50 113.88 L -118.50 104.38 L -123.50 95.38 L -128.50 87.00 L -133.62 79.12 L -138.62 71.75 L -143.62 64.88 L -148.75 58.50 L -153.75 52.62 L -158.88 47.12 L -163.88 42.25 L -168.88 37.75 L -173.88 33.62 L -179.00 30.00 L -184.00 26.75 L -189.00 24.00 L -194.12 21.50 L -199.12 19.38 L -204.12 17.75 L -209.25 16.38 L -214.25 15.25 L -219.25 14.50 L -224.25 14.12 L -229.38 14.00 L -234.38 14.12 L -239.50 14.62 L -244.50 15.38 L -249.50 16.25 L -254.62 17.38 L -259.62 18.75 L -264.62 20.38 L -269.62 22.25 L -274.75 24.12 L -279.75 26.38 L -284.75 28.62 L -289.88 31.12 L -294.88 33.62 L -300.00 36.38 L -305.00 39.12 L -310.00 42.00 L -315.00 45.00 L -320.00 48.00 L -325.00 51.12 L -330.12 54.25 L -335.12 57.50 L -340.25 60.62 L -345.25 63.88 L -350.25 67.00 L -355.38 70.25 L -360.38 73.38 L -365.38 76.50 L -370.38 79.50 L -375.50 82.38 L -380.50 85.25 L -385.50 88.12 L -390.62 90.75 L -395.62 93.25 L -400.75 95.75 L -405.75 98.00 L -410.75 100.12 L -415.75 102.00 L -420.88 103.75 L -425.88 105.38 L -430.88 106.75 L -436.00 107.88 L -441.00 108.75 L -446.00 109.38 L -451.12 109.75 L -456.12 109.88 L -461.12 109.62 L -466.12 109.12 L -471.25 108.38 L -476.25 107.25 L -481.38 105.88 L -486.38 104.00 L -491.38 101.88 L -496.50 99.38 L -501.50 96.38 L -506.50 93.12 L -511.50 89.38 L -516.62 85.25 L -521.62 80.62 L -526.62 75.50 L -531.75 70.00 L -536.75 64.12 L -541.88 57.62 L -546.88 50.62 L -551.88 43.12 L -556.88 35.12 L -561.88 26.62 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v9.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v9.gif deleted file mode 100755 index df6843e0f..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a1v9.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v1.eps deleted file mode 100755 index 1957a44cd..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v1.eps +++ /dev/null @@ -1,1170 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_y1 -%%Creation Date: Sun, Sep 10, 1995 06:45 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 17.12 558.00 17.12 MacLine -grestore -1.00 ps -561.50 16.62 558.00 16.62 MacLine -62.50 16.62 66.00 16.62 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 25.75 554.50 25.75 MacLine -grestore -1.00 ps -561.50 25.38 554.50 25.38 MacLine -62.50 25.38 69.50 25.38 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(800) 32.38 30.25 26.62 WS -gsave 0.125 ps [1] sd -66.00 34.62 558.00 34.62 MacLine -grestore -1.00 ps -561.50 34.12 558.00 34.12 MacLine -62.50 34.12 66.00 34.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 43.25 558.00 43.25 MacLine -grestore -1.00 ps -561.50 42.75 558.00 42.75 MacLine -62.50 42.75 66.00 42.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 52.00 558.00 52.00 MacLine -grestore -1.00 ps -561.50 51.50 558.00 51.50 MacLine -62.50 51.50 66.00 51.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 60.75 558.00 60.75 MacLine -grestore -1.00 ps -561.50 60.25 558.00 60.25 MacLine -62.50 60.25 66.00 60.25 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 69.38 554.50 69.38 MacLine -grestore -1.00 ps -561.50 69.00 554.50 69.00 MacLine -62.50 69.00 69.50 69.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(700) 32.38 73.88 26.62 WS -gsave 0.125 ps [1] sd -66.00 78.12 558.00 78.12 MacLine -grestore -1.00 ps -561.50 77.62 558.00 77.62 MacLine -62.50 77.62 66.00 77.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 86.88 558.00 86.88 MacLine -grestore -1.00 ps -561.50 86.38 558.00 86.38 MacLine -62.50 86.38 66.00 86.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 95.62 558.00 95.62 MacLine -grestore -1.00 ps -561.50 95.12 558.00 95.12 MacLine -62.50 95.12 66.00 95.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 104.38 558.00 104.38 MacLine -grestore -1.00 ps -561.50 103.88 558.00 103.88 MacLine -62.50 103.88 66.00 103.88 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 112.88 554.50 112.88 MacLine -grestore -1.00 ps -561.50 112.50 554.50 112.50 MacLine -62.50 112.50 69.50 112.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(600) 32.38 117.38 26.62 WS -gsave 0.125 ps [1] sd -66.00 121.75 558.00 121.75 MacLine -grestore -1.00 ps -561.50 121.25 558.00 121.25 MacLine -62.50 121.25 66.00 121.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 130.50 558.00 130.50 MacLine -grestore -1.00 ps -561.50 130.00 558.00 130.00 MacLine -62.50 130.00 66.00 130.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 139.12 558.00 139.12 MacLine -grestore -1.00 ps -561.50 138.62 558.00 138.62 MacLine -62.50 138.62 66.00 138.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 147.88 558.00 147.88 MacLine -grestore -1.00 ps -561.50 147.38 558.00 147.38 MacLine -62.50 147.38 66.00 147.38 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 156.50 554.50 156.50 MacLine -grestore -1.00 ps -561.50 156.12 554.50 156.12 MacLine -62.50 156.12 69.50 156.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(500) 32.38 161.00 26.62 WS -gsave 0.125 ps [1] sd -66.00 165.38 558.00 165.38 MacLine -grestore -1.00 ps -561.50 164.88 558.00 164.88 MacLine -62.50 164.88 66.00 164.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 174.00 558.00 174.00 MacLine -grestore -1.00 ps -561.50 173.50 558.00 173.50 MacLine -62.50 173.50 66.00 173.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 182.75 558.00 182.75 MacLine -grestore -1.00 ps -561.50 182.25 558.00 182.25 MacLine -62.50 182.25 66.00 182.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 191.50 558.00 191.50 MacLine -grestore -1.00 ps -561.50 191.00 558.00 191.00 MacLine -62.50 191.00 66.00 191.00 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 200.12 554.50 200.12 MacLine -grestore -1.00 ps -561.50 199.75 554.50 199.75 MacLine -62.50 199.75 69.50 199.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(400) 32.38 204.62 26.62 WS -gsave 0.125 ps [1] sd -66.00 208.88 558.00 208.88 MacLine -grestore -1.00 ps -561.50 208.38 558.00 208.38 MacLine -62.50 208.38 66.00 208.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 217.62 558.00 217.62 MacLine -grestore -1.00 ps -561.50 217.12 558.00 217.12 MacLine -62.50 217.12 66.00 217.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 226.38 558.00 226.38 MacLine -grestore -1.00 ps -561.50 225.88 558.00 225.88 MacLine -62.50 225.88 66.00 225.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 235.12 558.00 235.12 MacLine -grestore -1.00 ps -561.50 234.62 558.00 234.62 MacLine -62.50 234.62 66.00 234.62 MacLine -1 ps -1.00 ps -561.50 243.25 554.50 243.25 MacLine -62.50 243.25 69.50 243.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(300) 32.38 248.12 26.62 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(y \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -558.38 239.00 558.38 17.00 MacLine -grestore -1.00 ps -557.88 13.50 557.88 17.00 MacLine -557.88 242.50 557.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -551.25 239.00 551.25 17.00 MacLine -grestore -1.00 ps -550.75 13.50 550.75 17.00 MacLine -550.75 242.50 550.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -544.12 237.25 544.12 18.75 MacLine -grestore -1.00 ps -543.62 13.50 543.62 18.75 MacLine -543.62 242.50 543.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -537.00 239.00 537.00 17.00 MacLine -grestore -1.00 ps -536.50 13.50 536.50 17.00 MacLine -536.50 242.50 536.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -529.88 239.00 529.88 17.00 MacLine -grestore -1.00 ps -529.38 13.50 529.38 17.00 MacLine -529.38 242.50 529.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.75 239.00 522.75 17.00 MacLine -grestore -1.00 ps -522.25 13.50 522.25 17.00 MacLine -522.25 242.50 522.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -515.62 239.00 515.62 17.00 MacLine -grestore -1.00 ps -515.12 13.50 515.12 17.00 MacLine -515.12 242.50 515.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -508.38 235.50 508.38 20.50 MacLine -grestore -1.00 ps -508.00 13.50 508.00 20.50 MacLine -508.00 242.50 508.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 504.12 259.88 8.88 WS -gsave 0.125 ps [1] sd -501.38 239.00 501.38 17.00 MacLine -grestore -1.00 ps -500.88 13.50 500.88 17.00 MacLine -500.88 242.50 500.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -494.25 239.00 494.25 17.00 MacLine -grestore -1.00 ps -493.75 13.50 493.75 17.00 MacLine -493.75 242.50 493.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.12 239.00 487.12 17.00 MacLine -grestore -1.00 ps -486.62 13.50 486.62 17.00 MacLine -486.62 242.50 486.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.00 239.00 480.00 17.00 MacLine -grestore -1.00 ps -479.50 13.50 479.50 17.00 MacLine -479.50 242.50 479.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.88 237.25 472.88 18.75 MacLine -grestore -1.00 ps -472.38 13.50 472.38 18.75 MacLine -472.38 242.50 472.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -465.75 239.00 465.75 17.00 MacLine -grestore -1.00 ps -465.25 13.50 465.25 17.00 MacLine -465.25 242.50 465.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -458.62 239.00 458.62 17.00 MacLine -grestore -1.00 ps -458.12 13.50 458.12 17.00 MacLine -458.12 242.50 458.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -451.50 239.00 451.50 17.00 MacLine -grestore -1.00 ps -451.00 13.50 451.00 17.00 MacLine -451.00 242.50 451.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -444.38 239.00 444.38 17.00 MacLine -grestore -1.00 ps -443.88 13.50 443.88 17.00 MacLine -443.88 242.50 443.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -437.12 235.50 437.12 20.50 MacLine -grestore -1.00 ps -436.75 13.50 436.75 20.50 MacLine -436.75 242.50 436.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 432.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -430.12 239.00 430.12 17.00 MacLine -grestore -1.00 ps -429.62 13.50 429.62 17.00 MacLine -429.62 242.50 429.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -423.00 239.00 423.00 17.00 MacLine -grestore -1.00 ps -422.50 13.50 422.50 17.00 MacLine -422.50 242.50 422.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -415.88 239.00 415.88 17.00 MacLine -grestore -1.00 ps -415.38 13.50 415.38 17.00 MacLine -415.38 242.50 415.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -408.75 239.00 408.75 17.00 MacLine -grestore -1.00 ps -408.25 13.50 408.25 17.00 MacLine -408.25 242.50 408.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -401.62 237.25 401.62 18.75 MacLine -grestore -1.00 ps -401.12 13.50 401.12 18.75 MacLine -401.12 242.50 401.12 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -394.50 239.00 394.50 17.00 MacLine -grestore -1.00 ps -394.00 13.50 394.00 17.00 MacLine -394.00 242.50 394.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -387.38 239.00 387.38 17.00 MacLine -grestore -1.00 ps -386.88 13.50 386.88 17.00 MacLine -386.88 242.50 386.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -380.25 239.00 380.25 17.00 MacLine -grestore -1.00 ps -379.75 13.50 379.75 17.00 MacLine -379.75 242.50 379.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.12 239.00 373.12 17.00 MacLine -grestore -1.00 ps -372.62 13.50 372.62 17.00 MacLine -372.62 242.50 372.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -365.88 235.50 365.88 20.50 MacLine -grestore -1.00 ps -365.50 13.50 365.50 20.50 MacLine -365.50 242.50 365.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 361.62 259.88 8.88 WS -gsave 0.125 ps [1] sd -358.88 239.00 358.88 17.00 MacLine -grestore -1.00 ps -358.38 13.50 358.38 17.00 MacLine -358.38 242.50 358.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -351.75 239.00 351.75 17.00 MacLine -grestore -1.00 ps -351.25 13.50 351.25 17.00 MacLine -351.25 242.50 351.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -344.62 239.00 344.62 17.00 MacLine -grestore -1.00 ps -344.12 13.50 344.12 17.00 MacLine -344.12 242.50 344.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -337.50 239.00 337.50 17.00 MacLine -grestore -1.00 ps -337.00 13.50 337.00 17.00 MacLine -337.00 242.50 337.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -330.38 237.25 330.38 18.75 MacLine -grestore -1.00 ps -329.88 13.50 329.88 18.75 MacLine -329.88 242.50 329.88 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 239.00 323.25 17.00 MacLine -grestore -1.00 ps -322.75 13.50 322.75 17.00 MacLine -322.75 242.50 322.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.12 239.00 316.12 17.00 MacLine -grestore -1.00 ps -315.62 13.50 315.62 17.00 MacLine -315.62 242.50 315.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -308.88 239.00 308.88 17.00 MacLine -grestore -1.00 ps -308.38 13.50 308.38 17.00 MacLine -308.38 242.50 308.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -301.75 239.00 301.75 17.00 MacLine -grestore -1.00 ps -301.25 13.50 301.25 17.00 MacLine -301.25 242.50 301.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -294.50 235.50 294.50 20.50 MacLine -grestore -1.00 ps -294.12 13.50 294.12 20.50 MacLine -294.12 242.50 294.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 290.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -287.50 239.00 287.50 17.00 MacLine -grestore -1.00 ps -287.00 13.50 287.00 17.00 MacLine -287.00 242.50 287.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -280.38 239.00 280.38 17.00 MacLine -grestore -1.00 ps -279.88 13.50 279.88 17.00 MacLine -279.88 242.50 279.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -273.25 239.00 273.25 17.00 MacLine -grestore -1.00 ps -272.75 13.50 272.75 17.00 MacLine -272.75 242.50 272.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.12 239.00 266.12 17.00 MacLine -grestore -1.00 ps -265.62 13.50 265.62 17.00 MacLine -265.62 242.50 265.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -259.00 237.25 259.00 18.75 MacLine -grestore -1.00 ps -258.50 13.50 258.50 18.75 MacLine -258.50 242.50 258.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -251.88 239.00 251.88 17.00 MacLine -grestore -1.00 ps -251.38 13.50 251.38 17.00 MacLine -251.38 242.50 251.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -244.75 239.00 244.75 17.00 MacLine -grestore -1.00 ps -244.25 13.50 244.25 17.00 MacLine -244.25 242.50 244.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -237.62 239.00 237.62 17.00 MacLine -grestore -1.00 ps -237.12 13.50 237.12 17.00 MacLine -237.12 242.50 237.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -230.50 239.00 230.50 17.00 MacLine -grestore -1.00 ps -230.00 13.50 230.00 17.00 MacLine -230.00 242.50 230.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-2) 216.25 259.88 14.25 WS -gsave 0.125 ps [1] sd -216.25 239.00 216.25 17.00 MacLine -grestore -1.00 ps -215.75 13.50 215.75 17.00 MacLine -215.75 242.50 215.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -209.12 239.00 209.12 17.00 MacLine -grestore -1.00 ps -208.62 13.50 208.62 17.00 MacLine -208.62 242.50 208.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -202.00 239.00 202.00 17.00 MacLine -grestore -1.00 ps -201.50 13.50 201.50 17.00 MacLine -201.50 242.50 201.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -194.88 239.00 194.88 17.00 MacLine -grestore -1.00 ps -194.38 13.50 194.38 17.00 MacLine -194.38 242.50 194.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -187.75 237.25 187.75 18.75 MacLine -grestore -1.00 ps -187.25 13.50 187.25 18.75 MacLine -187.25 242.50 187.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -180.62 239.00 180.62 17.00 MacLine -grestore -1.00 ps -180.12 13.50 180.12 17.00 MacLine -180.12 242.50 180.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -173.50 239.00 173.50 17.00 MacLine -grestore -1.00 ps -173.00 13.50 173.00 17.00 MacLine -173.00 242.50 173.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -166.38 239.00 166.38 17.00 MacLine -grestore -1.00 ps -165.88 13.50 165.88 17.00 MacLine -165.88 242.50 165.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.25 239.00 159.25 17.00 MacLine -grestore -1.00 ps -158.75 13.50 158.75 17.00 MacLine -158.75 242.50 158.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -152.00 235.50 152.00 20.50 MacLine -grestore -1.00 ps -151.62 13.50 151.62 20.50 MacLine -151.62 242.50 151.62 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-4) 145.00 259.88 14.25 WS -gsave 0.125 ps [1] sd -145.00 239.00 145.00 17.00 MacLine -grestore -1.00 ps -144.50 13.50 144.50 17.00 MacLine -144.50 242.50 144.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -137.88 239.00 137.88 17.00 MacLine -grestore -1.00 ps -137.38 13.50 137.38 17.00 MacLine -137.38 242.50 137.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -130.75 239.00 130.75 17.00 MacLine -grestore -1.00 ps -130.25 13.50 130.25 17.00 MacLine -130.25 242.50 130.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -123.62 239.00 123.62 17.00 MacLine -grestore -1.00 ps -123.12 13.50 123.12 17.00 MacLine -123.12 242.50 123.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -116.50 237.25 116.50 18.75 MacLine -grestore -1.00 ps -116.00 13.50 116.00 18.75 MacLine -116.00 242.50 116.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -109.38 239.00 109.38 17.00 MacLine -grestore -1.00 ps -108.88 13.50 108.88 17.00 MacLine -108.88 242.50 108.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.25 239.00 102.25 17.00 MacLine -grestore -1.00 ps -101.75 13.50 101.75 17.00 MacLine -101.75 242.50 101.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -95.12 239.00 95.12 17.00 MacLine -grestore -1.00 ps -94.62 13.50 94.62 17.00 MacLine -94.62 242.50 94.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -88.00 239.00 88.00 17.00 MacLine -grestore -1.00 ps -87.50 13.50 87.50 17.00 MacLine -87.50 242.50 87.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -80.75 235.50 80.75 20.50 MacLine -grestore -1.00 ps -80.38 13.50 80.38 20.50 MacLine -80.38 242.50 80.38 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-6) 73.75 259.88 14.25 WS -gsave 0.125 ps [1] sd -73.75 239.00 73.75 17.00 MacLine -grestore -1.00 ps -73.25 13.50 73.25 17.00 MacLine -73.25 242.50 73.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.62 239.00 66.62 17.00 MacLine -grestore -1.00 ps -66.12 13.50 66.12 17.00 MacLine -66.12 242.50 66.12 239.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(t \(s\)) 298.62 284.38 27.75 WS -2.00 ps -newpath 63.12 112.75 M -68.12 125.38 L -73.12 137.12 L -78.12 148.38 L -83.12 158.75 L -88.25 168.50 L -93.25 177.62 L -98.38 186.00 L -103.38 193.75 L -108.38 200.88 L -113.50 207.38 L -118.50 213.38 L -123.50 218.62 L -128.50 223.38 L -133.62 227.62 L -138.62 231.38 L -143.62 234.50 L -148.75 237.12 L -153.75 239.12 L -158.88 240.88 L -163.88 242.00 L -168.88 242.75 L -173.88 243.00 L -179.00 242.88 L -184.00 242.25 L -189.00 241.38 L -194.12 240.00 L -199.12 238.25 L -204.12 236.25 L -209.25 233.88 L -214.25 231.12 L -219.25 228.12 L -224.25 224.88 L -229.38 221.25 L -234.38 217.50 L -239.50 213.38 L -244.50 209.12 L -249.50 204.50 L -254.62 199.75 L -259.62 194.88 L -264.62 189.75 L -269.62 184.50 L -274.75 179.12 L -279.75 173.62 L -284.75 168.00 L -289.88 162.25 L -294.88 156.38 L -300.00 150.50 L -305.00 144.62 L -310.00 138.62 L -315.00 132.62 L -320.00 126.62 L -325.00 120.50 L -330.12 114.62 L -335.12 108.62 L -340.25 102.75 L -345.25 96.88 L -350.25 91.12 L -355.38 85.38 L -360.38 79.88 L -365.38 74.38 L -370.38 69.12 L -375.50 63.88 L -380.50 59.00 L -385.50 54.12 L -390.62 49.50 L -395.62 45.12 L -400.75 41.00 L -405.75 37.00 L -410.75 33.38 L -415.75 30.00 L -420.88 26.88 L -425.88 24.00 L -430.88 21.50 L -436.00 19.38 L -441.00 17.50 L -446.00 16.12 L -451.12 15.00 L -456.12 14.25 L -461.12 14.00 L -466.12 14.12 L -471.25 14.75 L -476.25 15.75 L -481.38 17.12 L -486.38 19.12 L -491.38 21.50 L -496.50 24.50 L -501.50 28.00 L -506.50 32.00 L -511.50 36.50 L -516.62 41.62 L -521.62 47.38 L -526.62 53.75 L -531.75 60.62 L -536.75 68.12 L -541.88 76.38 L -546.88 85.12 L -551.88 94.62 L -556.88 104.88 L -561.88 115.75 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v1.gif deleted file mode 100755 index 7ba224f1c..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v10.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v10.eps deleted file mode 100755 index b9d80a222..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v10.eps +++ /dev/null @@ -1,1162 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_y10 -%%Creation Date: Sun, Sep 10, 1995 06:45 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 243.12 558.00 243.12 MacLine -62.50 243.12 66.00 243.12 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 234.38 554.50 234.38 MacLine -grestore -1.00 ps -561.50 234.00 554.50 234.00 MacLine -62.50 234.00 69.50 234.00 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(-3400) 18.12 238.88 40.88 WS -gsave 0.125 ps [1] sd -66.00 225.38 558.00 225.38 MacLine -grestore -1.00 ps -561.50 224.88 558.00 224.88 MacLine -62.50 224.88 66.00 224.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 216.12 558.00 216.12 MacLine -grestore -1.00 ps -561.50 215.62 558.00 215.62 MacLine -62.50 215.62 66.00 215.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 207.00 558.00 207.00 MacLine -grestore -1.00 ps -561.50 206.50 558.00 206.50 MacLine -62.50 206.50 66.00 206.50 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 197.75 554.50 197.75 MacLine -grestore -1.00 ps -561.50 197.38 554.50 197.38 MacLine -62.50 197.38 69.50 197.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-3200) 18.12 202.25 40.88 WS -gsave 0.125 ps [1] sd -66.00 188.75 558.00 188.75 MacLine -grestore -1.00 ps -561.50 188.25 558.00 188.25 MacLine -62.50 188.25 66.00 188.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 179.62 558.00 179.62 MacLine -grestore -1.00 ps -561.50 179.12 558.00 179.12 MacLine -62.50 179.12 66.00 179.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 170.38 558.00 170.38 MacLine -grestore -1.00 ps -561.50 169.88 558.00 169.88 MacLine -62.50 169.88 66.00 169.88 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 161.12 554.50 161.12 MacLine -grestore -1.00 ps -561.50 160.75 554.50 160.75 MacLine -62.50 160.75 69.50 160.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-3000) 18.12 165.62 40.88 WS -gsave 0.125 ps [1] sd -66.00 152.12 558.00 152.12 MacLine -grestore -1.00 ps -561.50 151.62 558.00 151.62 MacLine -62.50 151.62 66.00 151.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 143.00 558.00 143.00 MacLine -grestore -1.00 ps -561.50 142.50 558.00 142.50 MacLine -62.50 142.50 66.00 142.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 133.88 558.00 133.88 MacLine -grestore -1.00 ps -561.50 133.38 558.00 133.38 MacLine -62.50 133.38 66.00 133.38 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 124.50 554.50 124.50 MacLine -grestore -1.00 ps -561.50 124.12 554.50 124.12 MacLine -62.50 124.12 69.50 124.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-2800) 18.12 129.00 40.88 WS -gsave 0.125 ps [1] sd -66.00 115.50 558.00 115.50 MacLine -grestore -1.00 ps -561.50 115.00 558.00 115.00 MacLine -62.50 115.00 66.00 115.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 106.38 558.00 106.38 MacLine -grestore -1.00 ps -561.50 105.88 558.00 105.88 MacLine -62.50 105.88 66.00 105.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 97.25 558.00 97.25 MacLine -grestore -1.00 ps -561.50 96.75 558.00 96.75 MacLine -62.50 96.75 66.00 96.75 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 88.00 554.50 88.00 MacLine -grestore -1.00 ps -561.50 87.62 554.50 87.62 MacLine -62.50 87.62 69.50 87.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-2600) 18.12 92.50 40.88 WS -gsave 0.125 ps [1] sd -66.00 78.88 558.00 78.88 MacLine -grestore -1.00 ps -561.50 78.38 558.00 78.38 MacLine -62.50 78.38 66.00 78.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 69.75 558.00 69.75 MacLine -grestore -1.00 ps -561.50 69.25 558.00 69.25 MacLine -62.50 69.25 66.00 69.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 60.62 558.00 60.62 MacLine -grestore -1.00 ps -561.50 60.12 558.00 60.12 MacLine -62.50 60.12 66.00 60.12 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 51.38 554.50 51.38 MacLine -grestore -1.00 ps -561.50 51.00 554.50 51.00 MacLine -62.50 51.00 69.50 51.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-2400) 18.12 55.88 40.88 WS -gsave 0.125 ps [1] sd -66.00 42.25 558.00 42.25 MacLine -grestore -1.00 ps -561.50 41.75 558.00 41.75 MacLine -62.50 41.75 66.00 41.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 33.12 558.00 33.12 MacLine -grestore -1.00 ps -561.50 32.62 558.00 32.62 MacLine -62.50 32.62 66.00 32.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 24.00 558.00 24.00 MacLine -grestore -1.00 ps -561.50 23.50 558.00 23.50 MacLine -62.50 23.50 66.00 23.50 MacLine -1 ps -1.00 ps -561.50 14.38 554.50 14.38 MacLine -62.50 14.38 69.50 14.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-2200) 18.12 19.25 40.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(y \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -558.38 239.00 558.38 17.00 MacLine -grestore -1.00 ps -557.88 13.50 557.88 17.00 MacLine -557.88 242.50 557.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -551.25 239.00 551.25 17.00 MacLine -grestore -1.00 ps -550.75 13.50 550.75 17.00 MacLine -550.75 242.50 550.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -544.12 237.25 544.12 18.75 MacLine -grestore -1.00 ps -543.62 13.50 543.62 18.75 MacLine -543.62 242.50 543.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -537.00 239.00 537.00 17.00 MacLine -grestore -1.00 ps -536.50 13.50 536.50 17.00 MacLine -536.50 242.50 536.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -529.88 239.00 529.88 17.00 MacLine -grestore -1.00 ps -529.38 13.50 529.38 17.00 MacLine -529.38 242.50 529.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.75 239.00 522.75 17.00 MacLine -grestore -1.00 ps -522.25 13.50 522.25 17.00 MacLine -522.25 242.50 522.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -515.62 239.00 515.62 17.00 MacLine -grestore -1.00 ps -515.12 13.50 515.12 17.00 MacLine -515.12 242.50 515.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -508.38 235.50 508.38 20.50 MacLine -grestore -1.00 ps -508.00 13.50 508.00 20.50 MacLine -508.00 242.50 508.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 504.12 259.88 8.88 WS -gsave 0.125 ps [1] sd -501.38 239.00 501.38 17.00 MacLine -grestore -1.00 ps -500.88 13.50 500.88 17.00 MacLine -500.88 242.50 500.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -494.25 239.00 494.25 17.00 MacLine -grestore -1.00 ps -493.75 13.50 493.75 17.00 MacLine -493.75 242.50 493.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.12 239.00 487.12 17.00 MacLine -grestore -1.00 ps -486.62 13.50 486.62 17.00 MacLine -486.62 242.50 486.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.00 239.00 480.00 17.00 MacLine -grestore -1.00 ps -479.50 13.50 479.50 17.00 MacLine -479.50 242.50 479.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.88 237.25 472.88 18.75 MacLine -grestore -1.00 ps -472.38 13.50 472.38 18.75 MacLine -472.38 242.50 472.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -465.75 239.00 465.75 17.00 MacLine -grestore -1.00 ps -465.25 13.50 465.25 17.00 MacLine -465.25 242.50 465.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -458.62 239.00 458.62 17.00 MacLine -grestore -1.00 ps -458.12 13.50 458.12 17.00 MacLine -458.12 242.50 458.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -451.50 239.00 451.50 17.00 MacLine -grestore -1.00 ps -451.00 13.50 451.00 17.00 MacLine -451.00 242.50 451.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -444.38 239.00 444.38 17.00 MacLine -grestore -1.00 ps -443.88 13.50 443.88 17.00 MacLine -443.88 242.50 443.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -437.12 235.50 437.12 20.50 MacLine -grestore -1.00 ps -436.75 13.50 436.75 20.50 MacLine -436.75 242.50 436.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 432.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -430.12 239.00 430.12 17.00 MacLine -grestore -1.00 ps -429.62 13.50 429.62 17.00 MacLine -429.62 242.50 429.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -423.00 239.00 423.00 17.00 MacLine -grestore -1.00 ps -422.50 13.50 422.50 17.00 MacLine -422.50 242.50 422.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -415.88 239.00 415.88 17.00 MacLine -grestore -1.00 ps -415.38 13.50 415.38 17.00 MacLine -415.38 242.50 415.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -408.75 239.00 408.75 17.00 MacLine -grestore -1.00 ps -408.25 13.50 408.25 17.00 MacLine -408.25 242.50 408.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -401.62 237.25 401.62 18.75 MacLine -grestore -1.00 ps -401.12 13.50 401.12 18.75 MacLine -401.12 242.50 401.12 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -394.50 239.00 394.50 17.00 MacLine -grestore -1.00 ps -394.00 13.50 394.00 17.00 MacLine -394.00 242.50 394.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -387.38 239.00 387.38 17.00 MacLine -grestore -1.00 ps -386.88 13.50 386.88 17.00 MacLine -386.88 242.50 386.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -380.25 239.00 380.25 17.00 MacLine -grestore -1.00 ps -379.75 13.50 379.75 17.00 MacLine -379.75 242.50 379.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.12 239.00 373.12 17.00 MacLine -grestore -1.00 ps -372.62 13.50 372.62 17.00 MacLine -372.62 242.50 372.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -365.88 235.50 365.88 20.50 MacLine -grestore -1.00 ps -365.50 13.50 365.50 20.50 MacLine -365.50 242.50 365.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 361.62 259.88 8.88 WS -gsave 0.125 ps [1] sd -358.88 239.00 358.88 17.00 MacLine -grestore -1.00 ps -358.38 13.50 358.38 17.00 MacLine -358.38 242.50 358.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -351.75 239.00 351.75 17.00 MacLine -grestore -1.00 ps -351.25 13.50 351.25 17.00 MacLine -351.25 242.50 351.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -344.62 239.00 344.62 17.00 MacLine -grestore -1.00 ps -344.12 13.50 344.12 17.00 MacLine -344.12 242.50 344.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -337.50 239.00 337.50 17.00 MacLine -grestore -1.00 ps -337.00 13.50 337.00 17.00 MacLine -337.00 242.50 337.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -330.38 237.25 330.38 18.75 MacLine -grestore -1.00 ps -329.88 13.50 329.88 18.75 MacLine -329.88 242.50 329.88 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 239.00 323.25 17.00 MacLine -grestore -1.00 ps -322.75 13.50 322.75 17.00 MacLine -322.75 242.50 322.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.12 239.00 316.12 17.00 MacLine -grestore -1.00 ps -315.62 13.50 315.62 17.00 MacLine -315.62 242.50 315.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -308.88 239.00 308.88 17.00 MacLine -grestore -1.00 ps -308.38 13.50 308.38 17.00 MacLine -308.38 242.50 308.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -301.75 239.00 301.75 17.00 MacLine -grestore -1.00 ps -301.25 13.50 301.25 17.00 MacLine -301.25 242.50 301.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -294.50 235.50 294.50 20.50 MacLine -grestore -1.00 ps -294.12 13.50 294.12 20.50 MacLine -294.12 242.50 294.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 290.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -287.50 239.00 287.50 17.00 MacLine -grestore -1.00 ps -287.00 13.50 287.00 17.00 MacLine -287.00 242.50 287.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -280.38 239.00 280.38 17.00 MacLine -grestore -1.00 ps -279.88 13.50 279.88 17.00 MacLine -279.88 242.50 279.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -273.25 239.00 273.25 17.00 MacLine -grestore -1.00 ps -272.75 13.50 272.75 17.00 MacLine -272.75 242.50 272.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.12 239.00 266.12 17.00 MacLine -grestore -1.00 ps -265.62 13.50 265.62 17.00 MacLine -265.62 242.50 265.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -259.00 237.25 259.00 18.75 MacLine -grestore -1.00 ps -258.50 13.50 258.50 18.75 MacLine -258.50 242.50 258.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -251.88 239.00 251.88 17.00 MacLine -grestore -1.00 ps -251.38 13.50 251.38 17.00 MacLine -251.38 242.50 251.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -244.75 239.00 244.75 17.00 MacLine -grestore -1.00 ps -244.25 13.50 244.25 17.00 MacLine -244.25 242.50 244.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -237.62 239.00 237.62 17.00 MacLine -grestore -1.00 ps -237.12 13.50 237.12 17.00 MacLine -237.12 242.50 237.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -230.50 239.00 230.50 17.00 MacLine -grestore -1.00 ps -230.00 13.50 230.00 17.00 MacLine -230.00 242.50 230.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-2) 216.25 259.88 14.25 WS -gsave 0.125 ps [1] sd -216.25 239.00 216.25 17.00 MacLine -grestore -1.00 ps -215.75 13.50 215.75 17.00 MacLine -215.75 242.50 215.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -209.12 239.00 209.12 17.00 MacLine -grestore -1.00 ps -208.62 13.50 208.62 17.00 MacLine -208.62 242.50 208.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -202.00 239.00 202.00 17.00 MacLine -grestore -1.00 ps -201.50 13.50 201.50 17.00 MacLine -201.50 242.50 201.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -194.88 239.00 194.88 17.00 MacLine -grestore -1.00 ps -194.38 13.50 194.38 17.00 MacLine -194.38 242.50 194.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -187.75 237.25 187.75 18.75 MacLine -grestore -1.00 ps -187.25 13.50 187.25 18.75 MacLine -187.25 242.50 187.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -180.62 239.00 180.62 17.00 MacLine -grestore -1.00 ps -180.12 13.50 180.12 17.00 MacLine -180.12 242.50 180.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -173.50 239.00 173.50 17.00 MacLine -grestore -1.00 ps -173.00 13.50 173.00 17.00 MacLine -173.00 242.50 173.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -166.38 239.00 166.38 17.00 MacLine -grestore -1.00 ps -165.88 13.50 165.88 17.00 MacLine -165.88 242.50 165.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.25 239.00 159.25 17.00 MacLine -grestore -1.00 ps -158.75 13.50 158.75 17.00 MacLine -158.75 242.50 158.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -152.00 235.50 152.00 20.50 MacLine -grestore -1.00 ps -151.62 13.50 151.62 20.50 MacLine -151.62 242.50 151.62 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-4) 145.00 259.88 14.25 WS -gsave 0.125 ps [1] sd -145.00 239.00 145.00 17.00 MacLine -grestore -1.00 ps -144.50 13.50 144.50 17.00 MacLine -144.50 242.50 144.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -137.88 239.00 137.88 17.00 MacLine -grestore -1.00 ps -137.38 13.50 137.38 17.00 MacLine -137.38 242.50 137.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -130.75 239.00 130.75 17.00 MacLine -grestore -1.00 ps -130.25 13.50 130.25 17.00 MacLine -130.25 242.50 130.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -123.62 239.00 123.62 17.00 MacLine -grestore -1.00 ps -123.12 13.50 123.12 17.00 MacLine -123.12 242.50 123.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -116.50 237.25 116.50 18.75 MacLine -grestore -1.00 ps -116.00 13.50 116.00 18.75 MacLine -116.00 242.50 116.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -109.38 239.00 109.38 17.00 MacLine -grestore -1.00 ps -108.88 13.50 108.88 17.00 MacLine -108.88 242.50 108.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.25 239.00 102.25 17.00 MacLine -grestore -1.00 ps -101.75 13.50 101.75 17.00 MacLine -101.75 242.50 101.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -95.12 239.00 95.12 17.00 MacLine -grestore -1.00 ps -94.62 13.50 94.62 17.00 MacLine -94.62 242.50 94.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -88.00 239.00 88.00 17.00 MacLine -grestore -1.00 ps -87.50 13.50 87.50 17.00 MacLine -87.50 242.50 87.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -80.75 235.50 80.75 20.50 MacLine -grestore -1.00 ps -80.38 13.50 80.38 20.50 MacLine -80.38 242.50 80.38 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-6) 73.75 259.88 14.25 WS -gsave 0.125 ps [1] sd -73.75 239.00 73.75 17.00 MacLine -grestore -1.00 ps -73.25 13.50 73.25 17.00 MacLine -73.25 242.50 73.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.62 239.00 66.62 17.00 MacLine -grestore -1.00 ps -66.12 13.50 66.12 17.00 MacLine -66.12 242.50 66.12 239.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(t \(s\)) 298.62 284.38 27.75 WS -2.00 ps -newpath 63.12 243.00 M -68.12 232.25 L -73.12 222.00 L -78.12 212.12 L -83.12 202.62 L -88.25 193.62 L -93.25 185.00 L -98.38 176.62 L -103.38 168.75 L -108.38 161.12 L -113.50 154.00 L -118.50 147.12 L -123.50 140.75 L -128.50 134.50 L -133.62 128.75 L -138.62 123.25 L -143.62 118.12 L -148.75 113.12 L -153.75 108.62 L -158.88 104.38 L -163.88 100.25 L -168.88 96.62 L -173.88 93.12 L -179.00 89.88 L -184.00 86.88 L -189.00 84.25 L -194.12 81.75 L -199.12 79.50 L -204.12 77.50 L -209.25 75.62 L -214.25 74.00 L -219.25 72.62 L -224.25 71.38 L -229.38 70.38 L -234.38 69.50 L -239.50 68.75 L -244.50 68.25 L -249.50 67.88 L -254.62 67.62 L -259.62 67.50 L -264.62 67.50 L -269.62 67.62 L -274.75 67.88 L -279.75 68.25 L -284.75 68.62 L -289.88 69.12 L -294.88 69.75 L -300.00 70.50 L -305.00 71.25 L -310.00 72.00 L -315.00 72.88 L -320.00 73.75 L -325.00 74.75 L -330.12 75.75 L -335.12 76.62 L -340.25 77.62 L -345.25 78.62 L -350.25 79.62 L -355.38 80.62 L -360.38 81.62 L -365.38 82.50 L -370.38 83.38 L -375.50 84.25 L -380.50 85.00 L -385.50 85.75 L -390.62 86.38 L -395.62 87.00 L -400.75 87.50 L -405.75 88.00 L -410.75 88.25 L -415.75 88.50 L -420.88 88.62 L -425.88 88.62 L -430.88 88.50 L -436.00 88.12 L -441.00 87.75 L -446.00 87.12 L -451.12 86.38 L -456.12 85.50 L -461.12 84.50 L -466.12 83.12 L -471.25 81.75 L -476.25 80.12 L -481.38 78.25 L -486.38 76.12 L -491.38 73.88 L -496.50 71.25 L -501.50 68.50 L -506.50 65.50 L -511.50 62.25 L -516.62 58.75 L -521.62 55.00 L -526.62 50.88 L -531.75 46.50 L -536.75 41.88 L -541.88 37.00 L -546.88 31.75 L -551.88 26.12 L -556.88 20.25 L -561.88 14.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v10.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v10.gif deleted file mode 100755 index 99abf545c..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v10.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v10.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v10.pdf deleted file mode 100644 index 4b2421ae1..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v10.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v2.eps deleted file mode 100755 index b84d31076..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v2.eps +++ /dev/null @@ -1,1322 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_y2 -%%Creation Date: Sun, Sep 10, 1995 06:45 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.25 558.00 13.25 MacLine -62.50 13.25 66.00 13.25 MacLine -1 ps -gsave 0.125 ps [1] sd -67.75 18.38 556.25 18.38 MacLine -grestore -1.00 ps -561.50 17.88 556.25 17.88 MacLine -62.50 17.88 67.75 17.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 23.12 558.00 23.12 MacLine -grestore -1.00 ps -561.50 22.62 558.00 22.62 MacLine -62.50 22.62 66.00 22.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 27.88 558.00 27.88 MacLine -grestore -1.00 ps -561.50 27.38 558.00 27.38 MacLine -62.50 27.38 66.00 27.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 32.62 558.00 32.62 MacLine -grestore -1.00 ps -561.50 32.12 558.00 32.12 MacLine -62.50 32.12 66.00 32.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 37.25 558.00 37.25 MacLine -grestore -1.00 ps -561.50 36.75 558.00 36.75 MacLine -62.50 36.75 66.00 36.75 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 41.88 554.50 41.88 MacLine -grestore -1.00 ps -561.50 41.50 554.50 41.50 MacLine -62.50 41.50 69.50 41.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(1400) 23.50 46.38 35.50 WS -gsave 0.125 ps [1] sd -66.00 46.75 558.00 46.75 MacLine -grestore -1.00 ps -561.50 46.25 558.00 46.25 MacLine -62.50 46.25 66.00 46.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 51.38 558.00 51.38 MacLine -grestore -1.00 ps -561.50 50.88 558.00 50.88 MacLine -62.50 50.88 66.00 50.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 56.12 558.00 56.12 MacLine -grestore -1.00 ps -561.50 55.62 558.00 55.62 MacLine -62.50 55.62 66.00 55.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 60.88 558.00 60.88 MacLine -grestore -1.00 ps -561.50 60.38 558.00 60.38 MacLine -62.50 60.38 66.00 60.38 MacLine -1 ps -gsave 0.125 ps [1] sd -67.75 65.62 556.25 65.62 MacLine -grestore -1.00 ps -561.50 65.12 556.25 65.12 MacLine -62.50 65.12 67.75 65.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 70.25 558.00 70.25 MacLine -grestore -1.00 ps -561.50 69.75 558.00 69.75 MacLine -62.50 69.75 66.00 69.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 75.00 558.00 75.00 MacLine -grestore -1.00 ps -561.50 74.50 558.00 74.50 MacLine -62.50 74.50 66.00 74.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 79.75 558.00 79.75 MacLine -grestore -1.00 ps -561.50 79.25 558.00 79.25 MacLine -62.50 79.25 66.00 79.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 84.50 558.00 84.50 MacLine -grestore -1.00 ps -561.50 84.00 558.00 84.00 MacLine -62.50 84.00 66.00 84.00 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 89.00 554.50 89.00 MacLine -grestore -1.00 ps -561.50 88.62 554.50 88.62 MacLine -62.50 88.62 69.50 88.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1300) 23.50 93.50 35.50 WS -gsave 0.125 ps [1] sd -66.00 93.88 558.00 93.88 MacLine -grestore -1.00 ps -561.50 93.38 558.00 93.38 MacLine -62.50 93.38 66.00 93.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 98.62 558.00 98.62 MacLine -grestore -1.00 ps -561.50 98.12 558.00 98.12 MacLine -62.50 98.12 66.00 98.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 103.25 558.00 103.25 MacLine -grestore -1.00 ps -561.50 102.75 558.00 102.75 MacLine -62.50 102.75 66.00 102.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 108.00 558.00 108.00 MacLine -grestore -1.00 ps -561.50 107.50 558.00 107.50 MacLine -62.50 107.50 66.00 107.50 MacLine -1 ps -gsave 0.125 ps [1] sd -67.75 112.75 556.25 112.75 MacLine -grestore -1.00 ps -561.50 112.25 556.25 112.25 MacLine -62.50 112.25 67.75 112.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 117.50 558.00 117.50 MacLine -grestore -1.00 ps -561.50 117.00 558.00 117.00 MacLine -62.50 117.00 66.00 117.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 122.12 558.00 122.12 MacLine -grestore -1.00 ps -561.50 121.62 558.00 121.62 MacLine -62.50 121.62 66.00 121.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 126.88 558.00 126.88 MacLine -grestore -1.00 ps -561.50 126.38 558.00 126.38 MacLine -62.50 126.38 66.00 126.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 131.62 558.00 131.62 MacLine -grestore -1.00 ps -561.50 131.12 558.00 131.12 MacLine -62.50 131.12 66.00 131.12 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 136.25 554.50 136.25 MacLine -grestore -1.00 ps -561.50 135.88 554.50 135.88 MacLine -62.50 135.88 69.50 135.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1200) 23.50 140.75 35.50 WS -gsave 0.125 ps [1] sd -66.00 141.00 558.00 141.00 MacLine -grestore -1.00 ps -561.50 140.50 558.00 140.50 MacLine -62.50 140.50 66.00 140.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 145.75 558.00 145.75 MacLine -grestore -1.00 ps -561.50 145.25 558.00 145.25 MacLine -62.50 145.25 66.00 145.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 150.50 558.00 150.50 MacLine -grestore -1.00 ps -561.50 150.00 558.00 150.00 MacLine -62.50 150.00 66.00 150.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 155.12 558.00 155.12 MacLine -grestore -1.00 ps -561.50 154.62 558.00 154.62 MacLine -62.50 154.62 66.00 154.62 MacLine -1 ps -gsave 0.125 ps [1] sd -67.75 159.88 556.25 159.88 MacLine -grestore -1.00 ps -561.50 159.38 556.25 159.38 MacLine -62.50 159.38 67.75 159.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 164.62 558.00 164.62 MacLine -grestore -1.00 ps -561.50 164.12 558.00 164.12 MacLine -62.50 164.12 66.00 164.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 169.38 558.00 169.38 MacLine -grestore -1.00 ps -561.50 168.88 558.00 168.88 MacLine -62.50 168.88 66.00 168.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 174.00 558.00 174.00 MacLine -grestore -1.00 ps -561.50 173.50 558.00 173.50 MacLine -62.50 173.50 66.00 173.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 178.75 558.00 178.75 MacLine -grestore -1.00 ps -561.50 178.25 558.00 178.25 MacLine -62.50 178.25 66.00 178.25 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 183.38 554.50 183.38 MacLine -grestore -1.00 ps -561.50 183.00 554.50 183.00 MacLine -62.50 183.00 69.50 183.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1100) 23.50 187.88 35.50 WS -gsave 0.125 ps [1] sd -66.00 188.25 558.00 188.25 MacLine -grestore -1.00 ps -561.50 187.75 558.00 187.75 MacLine -62.50 187.75 66.00 187.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 192.88 558.00 192.88 MacLine -grestore -1.00 ps -561.50 192.38 558.00 192.38 MacLine -62.50 192.38 66.00 192.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 197.62 558.00 197.62 MacLine -grestore -1.00 ps -561.50 197.12 558.00 197.12 MacLine -62.50 197.12 66.00 197.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 202.38 558.00 202.38 MacLine -grestore -1.00 ps -561.50 201.88 558.00 201.88 MacLine -62.50 201.88 66.00 201.88 MacLine -1 ps -gsave 0.125 ps [1] sd -67.75 207.00 556.25 207.00 MacLine -grestore -1.00 ps -561.50 206.50 556.25 206.50 MacLine -62.50 206.50 67.75 206.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 211.75 558.00 211.75 MacLine -grestore -1.00 ps -561.50 211.25 558.00 211.25 MacLine -62.50 211.25 66.00 211.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 216.50 558.00 216.50 MacLine -grestore -1.00 ps -561.50 216.00 558.00 216.00 MacLine -62.50 216.00 66.00 216.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 221.25 558.00 221.25 MacLine -grestore -1.00 ps -561.50 220.75 558.00 220.75 MacLine -62.50 220.75 66.00 220.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 225.88 558.00 225.88 MacLine -grestore -1.00 ps -561.50 225.38 558.00 225.38 MacLine -62.50 225.38 66.00 225.38 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 230.50 554.50 230.50 MacLine -grestore -1.00 ps -561.50 230.12 554.50 230.12 MacLine -62.50 230.12 69.50 230.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1000) 23.50 235.00 35.50 WS -gsave 0.125 ps [1] sd -66.00 235.38 558.00 235.38 MacLine -grestore -1.00 ps -561.50 234.88 558.00 234.88 MacLine -62.50 234.88 66.00 234.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 240.12 558.00 240.12 MacLine -grestore -1.00 ps -561.50 239.62 558.00 239.62 MacLine -62.50 239.62 66.00 239.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(y \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -558.38 239.00 558.38 17.00 MacLine -grestore -1.00 ps -557.88 13.50 557.88 17.00 MacLine -557.88 242.50 557.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -551.25 239.00 551.25 17.00 MacLine -grestore -1.00 ps -550.75 13.50 550.75 17.00 MacLine -550.75 242.50 550.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -544.12 237.25 544.12 18.75 MacLine -grestore -1.00 ps -543.62 13.50 543.62 18.75 MacLine -543.62 242.50 543.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -537.00 239.00 537.00 17.00 MacLine -grestore -1.00 ps -536.50 13.50 536.50 17.00 MacLine -536.50 242.50 536.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -529.88 239.00 529.88 17.00 MacLine -grestore -1.00 ps -529.38 13.50 529.38 17.00 MacLine -529.38 242.50 529.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.75 239.00 522.75 17.00 MacLine -grestore -1.00 ps -522.25 13.50 522.25 17.00 MacLine -522.25 242.50 522.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -515.62 239.00 515.62 17.00 MacLine -grestore -1.00 ps -515.12 13.50 515.12 17.00 MacLine -515.12 242.50 515.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -508.38 235.50 508.38 20.50 MacLine -grestore -1.00 ps -508.00 13.50 508.00 20.50 MacLine -508.00 242.50 508.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 504.12 259.88 8.88 WS -gsave 0.125 ps [1] sd -501.38 239.00 501.38 17.00 MacLine -grestore -1.00 ps -500.88 13.50 500.88 17.00 MacLine -500.88 242.50 500.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -494.25 239.00 494.25 17.00 MacLine -grestore -1.00 ps -493.75 13.50 493.75 17.00 MacLine -493.75 242.50 493.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.12 239.00 487.12 17.00 MacLine -grestore -1.00 ps -486.62 13.50 486.62 17.00 MacLine -486.62 242.50 486.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.00 239.00 480.00 17.00 MacLine -grestore -1.00 ps -479.50 13.50 479.50 17.00 MacLine -479.50 242.50 479.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.88 237.25 472.88 18.75 MacLine -grestore -1.00 ps -472.38 13.50 472.38 18.75 MacLine -472.38 242.50 472.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -465.75 239.00 465.75 17.00 MacLine -grestore -1.00 ps -465.25 13.50 465.25 17.00 MacLine -465.25 242.50 465.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -458.62 239.00 458.62 17.00 MacLine -grestore -1.00 ps -458.12 13.50 458.12 17.00 MacLine -458.12 242.50 458.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -451.50 239.00 451.50 17.00 MacLine -grestore -1.00 ps -451.00 13.50 451.00 17.00 MacLine -451.00 242.50 451.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -444.38 239.00 444.38 17.00 MacLine -grestore -1.00 ps -443.88 13.50 443.88 17.00 MacLine -443.88 242.50 443.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -437.12 235.50 437.12 20.50 MacLine -grestore -1.00 ps -436.75 13.50 436.75 20.50 MacLine -436.75 242.50 436.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 432.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -430.12 239.00 430.12 17.00 MacLine -grestore -1.00 ps -429.62 13.50 429.62 17.00 MacLine -429.62 242.50 429.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -423.00 239.00 423.00 17.00 MacLine -grestore -1.00 ps -422.50 13.50 422.50 17.00 MacLine -422.50 242.50 422.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -415.88 239.00 415.88 17.00 MacLine -grestore -1.00 ps -415.38 13.50 415.38 17.00 MacLine -415.38 242.50 415.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -408.75 239.00 408.75 17.00 MacLine -grestore -1.00 ps -408.25 13.50 408.25 17.00 MacLine -408.25 242.50 408.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -401.62 237.25 401.62 18.75 MacLine -grestore -1.00 ps -401.12 13.50 401.12 18.75 MacLine -401.12 242.50 401.12 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -394.50 239.00 394.50 17.00 MacLine -grestore -1.00 ps -394.00 13.50 394.00 17.00 MacLine -394.00 242.50 394.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -387.38 239.00 387.38 17.00 MacLine -grestore -1.00 ps -386.88 13.50 386.88 17.00 MacLine -386.88 242.50 386.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -380.25 239.00 380.25 17.00 MacLine -grestore -1.00 ps -379.75 13.50 379.75 17.00 MacLine -379.75 242.50 379.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.12 239.00 373.12 17.00 MacLine -grestore -1.00 ps -372.62 13.50 372.62 17.00 MacLine -372.62 242.50 372.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -365.88 235.50 365.88 20.50 MacLine -grestore -1.00 ps -365.50 13.50 365.50 20.50 MacLine -365.50 242.50 365.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 361.62 259.88 8.88 WS -gsave 0.125 ps [1] sd -358.88 239.00 358.88 17.00 MacLine -grestore -1.00 ps -358.38 13.50 358.38 17.00 MacLine -358.38 242.50 358.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -351.75 239.00 351.75 17.00 MacLine -grestore -1.00 ps -351.25 13.50 351.25 17.00 MacLine -351.25 242.50 351.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -344.62 239.00 344.62 17.00 MacLine -grestore -1.00 ps -344.12 13.50 344.12 17.00 MacLine -344.12 242.50 344.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -337.50 239.00 337.50 17.00 MacLine -grestore -1.00 ps -337.00 13.50 337.00 17.00 MacLine -337.00 242.50 337.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -330.38 237.25 330.38 18.75 MacLine -grestore -1.00 ps -329.88 13.50 329.88 18.75 MacLine -329.88 242.50 329.88 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 239.00 323.25 17.00 MacLine -grestore -1.00 ps -322.75 13.50 322.75 17.00 MacLine -322.75 242.50 322.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.12 239.00 316.12 17.00 MacLine -grestore -1.00 ps -315.62 13.50 315.62 17.00 MacLine -315.62 242.50 315.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -308.88 239.00 308.88 17.00 MacLine -grestore -1.00 ps -308.38 13.50 308.38 17.00 MacLine -308.38 242.50 308.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -301.75 239.00 301.75 17.00 MacLine -grestore -1.00 ps -301.25 13.50 301.25 17.00 MacLine -301.25 242.50 301.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -294.50 235.50 294.50 20.50 MacLine -grestore -1.00 ps -294.12 13.50 294.12 20.50 MacLine -294.12 242.50 294.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 290.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -287.50 239.00 287.50 17.00 MacLine -grestore -1.00 ps -287.00 13.50 287.00 17.00 MacLine -287.00 242.50 287.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -280.38 239.00 280.38 17.00 MacLine -grestore -1.00 ps -279.88 13.50 279.88 17.00 MacLine -279.88 242.50 279.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -273.25 239.00 273.25 17.00 MacLine -grestore -1.00 ps -272.75 13.50 272.75 17.00 MacLine -272.75 242.50 272.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.12 239.00 266.12 17.00 MacLine -grestore -1.00 ps -265.62 13.50 265.62 17.00 MacLine -265.62 242.50 265.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -259.00 237.25 259.00 18.75 MacLine -grestore -1.00 ps -258.50 13.50 258.50 18.75 MacLine -258.50 242.50 258.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -251.88 239.00 251.88 17.00 MacLine -grestore -1.00 ps -251.38 13.50 251.38 17.00 MacLine -251.38 242.50 251.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -244.75 239.00 244.75 17.00 MacLine -grestore -1.00 ps -244.25 13.50 244.25 17.00 MacLine -244.25 242.50 244.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -237.62 239.00 237.62 17.00 MacLine -grestore -1.00 ps -237.12 13.50 237.12 17.00 MacLine -237.12 242.50 237.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -230.50 239.00 230.50 17.00 MacLine -grestore -1.00 ps -230.00 13.50 230.00 17.00 MacLine -230.00 242.50 230.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-2) 216.25 259.88 14.25 WS -gsave 0.125 ps [1] sd -216.25 239.00 216.25 17.00 MacLine -grestore -1.00 ps -215.75 13.50 215.75 17.00 MacLine -215.75 242.50 215.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -209.12 239.00 209.12 17.00 MacLine -grestore -1.00 ps -208.62 13.50 208.62 17.00 MacLine -208.62 242.50 208.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -202.00 239.00 202.00 17.00 MacLine -grestore -1.00 ps -201.50 13.50 201.50 17.00 MacLine -201.50 242.50 201.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -194.88 239.00 194.88 17.00 MacLine -grestore -1.00 ps -194.38 13.50 194.38 17.00 MacLine -194.38 242.50 194.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -187.75 237.25 187.75 18.75 MacLine -grestore -1.00 ps -187.25 13.50 187.25 18.75 MacLine -187.25 242.50 187.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -180.62 239.00 180.62 17.00 MacLine -grestore -1.00 ps -180.12 13.50 180.12 17.00 MacLine -180.12 242.50 180.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -173.50 239.00 173.50 17.00 MacLine -grestore -1.00 ps -173.00 13.50 173.00 17.00 MacLine -173.00 242.50 173.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -166.38 239.00 166.38 17.00 MacLine -grestore -1.00 ps -165.88 13.50 165.88 17.00 MacLine -165.88 242.50 165.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.25 239.00 159.25 17.00 MacLine -grestore -1.00 ps -158.75 13.50 158.75 17.00 MacLine -158.75 242.50 158.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -152.00 235.50 152.00 20.50 MacLine -grestore -1.00 ps -151.62 13.50 151.62 20.50 MacLine -151.62 242.50 151.62 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-4) 145.00 259.88 14.25 WS -gsave 0.125 ps [1] sd -145.00 239.00 145.00 17.00 MacLine -grestore -1.00 ps -144.50 13.50 144.50 17.00 MacLine -144.50 242.50 144.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -137.88 239.00 137.88 17.00 MacLine -grestore -1.00 ps -137.38 13.50 137.38 17.00 MacLine -137.38 242.50 137.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -130.75 239.00 130.75 17.00 MacLine -grestore -1.00 ps -130.25 13.50 130.25 17.00 MacLine -130.25 242.50 130.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -123.62 239.00 123.62 17.00 MacLine -grestore -1.00 ps -123.12 13.50 123.12 17.00 MacLine -123.12 242.50 123.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -116.50 237.25 116.50 18.75 MacLine -grestore -1.00 ps -116.00 13.50 116.00 18.75 MacLine -116.00 242.50 116.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -109.38 239.00 109.38 17.00 MacLine -grestore -1.00 ps -108.88 13.50 108.88 17.00 MacLine -108.88 242.50 108.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.25 239.00 102.25 17.00 MacLine -grestore -1.00 ps -101.75 13.50 101.75 17.00 MacLine -101.75 242.50 101.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -95.12 239.00 95.12 17.00 MacLine -grestore -1.00 ps -94.62 13.50 94.62 17.00 MacLine -94.62 242.50 94.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -88.00 239.00 88.00 17.00 MacLine -grestore -1.00 ps -87.50 13.50 87.50 17.00 MacLine -87.50 242.50 87.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -80.75 235.50 80.75 20.50 MacLine -grestore -1.00 ps -80.38 13.50 80.38 20.50 MacLine -80.38 242.50 80.38 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-6) 73.75 259.88 14.25 WS -gsave 0.125 ps [1] sd -73.75 239.00 73.75 17.00 MacLine -grestore -1.00 ps -73.25 13.50 73.25 17.00 MacLine -73.25 242.50 73.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.62 239.00 66.62 17.00 MacLine -grestore -1.00 ps -66.12 13.50 66.12 17.00 MacLine -66.12 242.50 66.12 239.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(t \(s\)) 298.62 284.38 27.75 WS -2.00 ps -newpath 63.12 203.75 M -68.12 200.62 L -73.12 197.75 L -78.12 195.12 L -83.12 192.75 L -88.25 190.75 L -93.25 188.88 L -98.38 187.25 L -103.38 185.88 L -108.38 184.75 L -113.50 183.88 L -118.50 183.25 L -123.50 182.75 L -128.50 182.50 L -133.62 182.38 L -138.62 182.38 L -143.62 182.62 L -148.75 183.12 L -153.75 183.62 L -158.88 184.38 L -163.88 185.25 L -168.88 186.25 L -173.88 187.38 L -179.00 188.62 L -184.00 190.00 L -189.00 191.38 L -194.12 192.88 L -199.12 194.50 L -204.12 196.25 L -209.25 198.00 L -214.25 199.75 L -219.25 201.62 L -224.25 203.62 L -229.38 205.62 L -234.38 207.50 L -239.50 209.62 L -244.50 211.62 L -249.50 213.62 L -254.62 215.62 L -259.62 217.62 L -264.62 219.62 L -269.62 221.62 L -274.75 223.50 L -279.75 225.38 L -284.75 227.25 L -289.88 229.00 L -294.88 230.62 L -300.00 232.25 L -305.00 233.88 L -310.00 235.25 L -315.00 236.62 L -320.00 237.88 L -325.00 239.00 L -330.12 240.00 L -335.12 240.88 L -340.25 241.62 L -345.25 242.25 L -350.25 242.62 L -355.38 242.88 L -360.38 243.00 L -365.38 242.88 L -370.38 242.62 L -375.50 242.12 L -380.50 241.50 L -385.50 240.62 L -390.62 239.50 L -395.62 238.12 L -400.75 236.62 L -405.75 234.75 L -410.75 232.75 L -415.75 230.38 L -420.88 227.75 L -425.88 224.88 L -430.88 221.75 L -436.00 218.38 L -441.00 214.62 L -446.00 210.50 L -451.12 206.12 L -456.12 201.50 L -461.12 196.50 L -466.12 191.12 L -471.25 185.38 L -476.25 179.25 L -481.38 172.88 L -486.38 166.12 L -491.38 158.88 L -496.50 151.25 L -501.50 143.38 L -506.50 135.00 L -511.50 126.25 L -516.62 117.00 L -521.62 107.38 L -526.62 97.38 L -531.75 86.88 L -536.75 75.88 L -541.88 64.50 L -546.88 52.62 L -551.88 40.25 L -556.88 27.38 L -561.88 14.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v2.gif deleted file mode 100755 index 14ea31846..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v3.eps deleted file mode 100755 index b03977364..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v3.eps +++ /dev/null @@ -1,1164 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_y3 -%%Creation Date: Sun, Sep 10, 1995 06:45 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 19.38 558.00 19.38 MacLine -grestore -1.00 ps -561.50 18.88 558.00 18.88 MacLine -62.50 18.88 66.00 18.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 28.25 558.00 28.25 MacLine -grestore -1.00 ps -561.50 27.75 558.00 27.75 MacLine -62.50 27.75 66.00 27.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 37.12 558.00 37.12 MacLine -grestore -1.00 ps -561.50 36.62 558.00 36.62 MacLine -62.50 36.62 66.00 36.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 46.00 558.00 46.00 MacLine -grestore -1.00 ps -561.50 45.50 558.00 45.50 MacLine -62.50 45.50 66.00 45.50 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 54.75 554.50 54.75 MacLine -grestore -1.00 ps -561.50 54.38 554.50 54.38 MacLine -62.50 54.38 69.50 54.38 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(1600) 23.50 59.25 35.50 WS -gsave 0.125 ps [1] sd -66.00 63.75 558.00 63.75 MacLine -grestore -1.00 ps -561.50 63.25 558.00 63.25 MacLine -62.50 63.25 66.00 63.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 72.62 558.00 72.62 MacLine -grestore -1.00 ps -561.50 72.12 558.00 72.12 MacLine -62.50 72.12 66.00 72.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 81.50 558.00 81.50 MacLine -grestore -1.00 ps -561.50 81.00 558.00 81.00 MacLine -62.50 81.00 66.00 81.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 90.38 558.00 90.38 MacLine -grestore -1.00 ps -561.50 89.88 558.00 89.88 MacLine -62.50 89.88 66.00 89.88 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 99.12 554.50 99.12 MacLine -grestore -1.00 ps -561.50 98.75 554.50 98.75 MacLine -62.50 98.75 69.50 98.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1500) 23.50 103.62 35.50 WS -gsave 0.125 ps [1] sd -66.00 108.12 558.00 108.12 MacLine -grestore -1.00 ps -561.50 107.62 558.00 107.62 MacLine -62.50 107.62 66.00 107.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -62.50 116.50 66.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 125.88 558.00 125.88 MacLine -grestore -1.00 ps -561.50 125.38 558.00 125.38 MacLine -62.50 125.38 66.00 125.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 134.75 558.00 134.75 MacLine -grestore -1.00 ps -561.50 134.25 558.00 134.25 MacLine -62.50 134.25 66.00 134.25 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 143.50 554.50 143.50 MacLine -grestore -1.00 ps -561.50 143.12 554.50 143.12 MacLine -62.50 143.12 69.50 143.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1400) 23.50 148.00 35.50 WS -gsave 0.125 ps [1] sd -66.00 152.50 558.00 152.50 MacLine -grestore -1.00 ps -561.50 152.00 558.00 152.00 MacLine -62.50 152.00 66.00 152.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 161.38 558.00 161.38 MacLine -grestore -1.00 ps -561.50 160.88 558.00 160.88 MacLine -62.50 160.88 66.00 160.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 170.25 558.00 170.25 MacLine -grestore -1.00 ps -561.50 169.75 558.00 169.75 MacLine -62.50 169.75 66.00 169.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 179.12 558.00 179.12 MacLine -grestore -1.00 ps -561.50 178.62 558.00 178.62 MacLine -62.50 178.62 66.00 178.62 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 187.88 554.50 187.88 MacLine -grestore -1.00 ps -561.50 187.50 554.50 187.50 MacLine -62.50 187.50 69.50 187.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1300) 23.50 192.38 35.50 WS -gsave 0.125 ps [1] sd -66.00 196.88 558.00 196.88 MacLine -grestore -1.00 ps -561.50 196.38 558.00 196.38 MacLine -62.50 196.38 66.00 196.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 205.75 558.00 205.75 MacLine -grestore -1.00 ps -561.50 205.25 558.00 205.25 MacLine -62.50 205.25 66.00 205.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 214.62 558.00 214.62 MacLine -grestore -1.00 ps -561.50 214.12 558.00 214.12 MacLine -62.50 214.12 66.00 214.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 223.50 558.00 223.50 MacLine -grestore -1.00 ps -561.50 223.00 558.00 223.00 MacLine -62.50 223.00 66.00 223.00 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 232.25 554.50 232.25 MacLine -grestore -1.00 ps -561.50 231.88 554.50 231.88 MacLine -62.50 231.88 69.50 231.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1200) 23.50 236.75 35.50 WS -gsave 0.125 ps [1] sd -66.00 241.25 558.00 241.25 MacLine -grestore -1.00 ps -561.50 240.75 558.00 240.75 MacLine -62.50 240.75 66.00 240.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(y \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -558.38 239.00 558.38 17.00 MacLine -grestore -1.00 ps -557.88 13.50 557.88 17.00 MacLine -557.88 242.50 557.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -551.25 239.00 551.25 17.00 MacLine -grestore -1.00 ps -550.75 13.50 550.75 17.00 MacLine -550.75 242.50 550.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -544.12 237.25 544.12 18.75 MacLine -grestore -1.00 ps -543.62 13.50 543.62 18.75 MacLine -543.62 242.50 543.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -537.00 239.00 537.00 17.00 MacLine -grestore -1.00 ps -536.50 13.50 536.50 17.00 MacLine -536.50 242.50 536.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -529.88 239.00 529.88 17.00 MacLine -grestore -1.00 ps -529.38 13.50 529.38 17.00 MacLine -529.38 242.50 529.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.75 239.00 522.75 17.00 MacLine -grestore -1.00 ps -522.25 13.50 522.25 17.00 MacLine -522.25 242.50 522.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -515.62 239.00 515.62 17.00 MacLine -grestore -1.00 ps -515.12 13.50 515.12 17.00 MacLine -515.12 242.50 515.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -508.38 235.50 508.38 20.50 MacLine -grestore -1.00 ps -508.00 13.50 508.00 20.50 MacLine -508.00 242.50 508.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 504.12 259.88 8.88 WS -gsave 0.125 ps [1] sd -501.38 239.00 501.38 17.00 MacLine -grestore -1.00 ps -500.88 13.50 500.88 17.00 MacLine -500.88 242.50 500.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -494.25 239.00 494.25 17.00 MacLine -grestore -1.00 ps -493.75 13.50 493.75 17.00 MacLine -493.75 242.50 493.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.12 239.00 487.12 17.00 MacLine -grestore -1.00 ps -486.62 13.50 486.62 17.00 MacLine -486.62 242.50 486.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.00 239.00 480.00 17.00 MacLine -grestore -1.00 ps -479.50 13.50 479.50 17.00 MacLine -479.50 242.50 479.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.88 237.25 472.88 18.75 MacLine -grestore -1.00 ps -472.38 13.50 472.38 18.75 MacLine -472.38 242.50 472.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -465.75 239.00 465.75 17.00 MacLine -grestore -1.00 ps -465.25 13.50 465.25 17.00 MacLine -465.25 242.50 465.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -458.62 239.00 458.62 17.00 MacLine -grestore -1.00 ps -458.12 13.50 458.12 17.00 MacLine -458.12 242.50 458.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -451.50 239.00 451.50 17.00 MacLine -grestore -1.00 ps -451.00 13.50 451.00 17.00 MacLine -451.00 242.50 451.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -444.38 239.00 444.38 17.00 MacLine -grestore -1.00 ps -443.88 13.50 443.88 17.00 MacLine -443.88 242.50 443.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -437.12 235.50 437.12 20.50 MacLine -grestore -1.00 ps -436.75 13.50 436.75 20.50 MacLine -436.75 242.50 436.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 432.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -430.12 239.00 430.12 17.00 MacLine -grestore -1.00 ps -429.62 13.50 429.62 17.00 MacLine -429.62 242.50 429.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -423.00 239.00 423.00 17.00 MacLine -grestore -1.00 ps -422.50 13.50 422.50 17.00 MacLine -422.50 242.50 422.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -415.88 239.00 415.88 17.00 MacLine -grestore -1.00 ps -415.38 13.50 415.38 17.00 MacLine -415.38 242.50 415.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -408.75 239.00 408.75 17.00 MacLine -grestore -1.00 ps -408.25 13.50 408.25 17.00 MacLine -408.25 242.50 408.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -401.62 237.25 401.62 18.75 MacLine -grestore -1.00 ps -401.12 13.50 401.12 18.75 MacLine -401.12 242.50 401.12 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -394.50 239.00 394.50 17.00 MacLine -grestore -1.00 ps -394.00 13.50 394.00 17.00 MacLine -394.00 242.50 394.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -387.38 239.00 387.38 17.00 MacLine -grestore -1.00 ps -386.88 13.50 386.88 17.00 MacLine -386.88 242.50 386.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -380.25 239.00 380.25 17.00 MacLine -grestore -1.00 ps -379.75 13.50 379.75 17.00 MacLine -379.75 242.50 379.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.12 239.00 373.12 17.00 MacLine -grestore -1.00 ps -372.62 13.50 372.62 17.00 MacLine -372.62 242.50 372.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -365.88 235.50 365.88 20.50 MacLine -grestore -1.00 ps -365.50 13.50 365.50 20.50 MacLine -365.50 242.50 365.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 361.62 259.88 8.88 WS -gsave 0.125 ps [1] sd -358.88 239.00 358.88 17.00 MacLine -grestore -1.00 ps -358.38 13.50 358.38 17.00 MacLine -358.38 242.50 358.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -351.75 239.00 351.75 17.00 MacLine -grestore -1.00 ps -351.25 13.50 351.25 17.00 MacLine -351.25 242.50 351.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -344.62 239.00 344.62 17.00 MacLine -grestore -1.00 ps -344.12 13.50 344.12 17.00 MacLine -344.12 242.50 344.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -337.50 239.00 337.50 17.00 MacLine -grestore -1.00 ps -337.00 13.50 337.00 17.00 MacLine -337.00 242.50 337.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -330.38 237.25 330.38 18.75 MacLine -grestore -1.00 ps -329.88 13.50 329.88 18.75 MacLine -329.88 242.50 329.88 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 239.00 323.25 17.00 MacLine -grestore -1.00 ps -322.75 13.50 322.75 17.00 MacLine -322.75 242.50 322.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.12 239.00 316.12 17.00 MacLine -grestore -1.00 ps -315.62 13.50 315.62 17.00 MacLine -315.62 242.50 315.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -308.88 239.00 308.88 17.00 MacLine -grestore -1.00 ps -308.38 13.50 308.38 17.00 MacLine -308.38 242.50 308.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -301.75 239.00 301.75 17.00 MacLine -grestore -1.00 ps -301.25 13.50 301.25 17.00 MacLine -301.25 242.50 301.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -294.50 235.50 294.50 20.50 MacLine -grestore -1.00 ps -294.12 13.50 294.12 20.50 MacLine -294.12 242.50 294.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 290.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -287.50 239.00 287.50 17.00 MacLine -grestore -1.00 ps -287.00 13.50 287.00 17.00 MacLine -287.00 242.50 287.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -280.38 239.00 280.38 17.00 MacLine -grestore -1.00 ps -279.88 13.50 279.88 17.00 MacLine -279.88 242.50 279.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -273.25 239.00 273.25 17.00 MacLine -grestore -1.00 ps -272.75 13.50 272.75 17.00 MacLine -272.75 242.50 272.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.12 239.00 266.12 17.00 MacLine -grestore -1.00 ps -265.62 13.50 265.62 17.00 MacLine -265.62 242.50 265.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -259.00 237.25 259.00 18.75 MacLine -grestore -1.00 ps -258.50 13.50 258.50 18.75 MacLine -258.50 242.50 258.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -251.88 239.00 251.88 17.00 MacLine -grestore -1.00 ps -251.38 13.50 251.38 17.00 MacLine -251.38 242.50 251.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -244.75 239.00 244.75 17.00 MacLine -grestore -1.00 ps -244.25 13.50 244.25 17.00 MacLine -244.25 242.50 244.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -237.62 239.00 237.62 17.00 MacLine -grestore -1.00 ps -237.12 13.50 237.12 17.00 MacLine -237.12 242.50 237.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -230.50 239.00 230.50 17.00 MacLine -grestore -1.00 ps -230.00 13.50 230.00 17.00 MacLine -230.00 242.50 230.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-2) 216.25 259.88 14.25 WS -gsave 0.125 ps [1] sd -216.25 239.00 216.25 17.00 MacLine -grestore -1.00 ps -215.75 13.50 215.75 17.00 MacLine -215.75 242.50 215.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -209.12 239.00 209.12 17.00 MacLine -grestore -1.00 ps -208.62 13.50 208.62 17.00 MacLine -208.62 242.50 208.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -202.00 239.00 202.00 17.00 MacLine -grestore -1.00 ps -201.50 13.50 201.50 17.00 MacLine -201.50 242.50 201.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -194.88 239.00 194.88 17.00 MacLine -grestore -1.00 ps -194.38 13.50 194.38 17.00 MacLine -194.38 242.50 194.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -187.75 237.25 187.75 18.75 MacLine -grestore -1.00 ps -187.25 13.50 187.25 18.75 MacLine -187.25 242.50 187.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -180.62 239.00 180.62 17.00 MacLine -grestore -1.00 ps -180.12 13.50 180.12 17.00 MacLine -180.12 242.50 180.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -173.50 239.00 173.50 17.00 MacLine -grestore -1.00 ps -173.00 13.50 173.00 17.00 MacLine -173.00 242.50 173.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -166.38 239.00 166.38 17.00 MacLine -grestore -1.00 ps -165.88 13.50 165.88 17.00 MacLine -165.88 242.50 165.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.25 239.00 159.25 17.00 MacLine -grestore -1.00 ps -158.75 13.50 158.75 17.00 MacLine -158.75 242.50 158.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -152.00 235.50 152.00 20.50 MacLine -grestore -1.00 ps -151.62 13.50 151.62 20.50 MacLine -151.62 242.50 151.62 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-4) 145.00 259.88 14.25 WS -gsave 0.125 ps [1] sd -145.00 239.00 145.00 17.00 MacLine -grestore -1.00 ps -144.50 13.50 144.50 17.00 MacLine -144.50 242.50 144.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -137.88 239.00 137.88 17.00 MacLine -grestore -1.00 ps -137.38 13.50 137.38 17.00 MacLine -137.38 242.50 137.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -130.75 239.00 130.75 17.00 MacLine -grestore -1.00 ps -130.25 13.50 130.25 17.00 MacLine -130.25 242.50 130.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -123.62 239.00 123.62 17.00 MacLine -grestore -1.00 ps -123.12 13.50 123.12 17.00 MacLine -123.12 242.50 123.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -116.50 237.25 116.50 18.75 MacLine -grestore -1.00 ps -116.00 13.50 116.00 18.75 MacLine -116.00 242.50 116.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -109.38 239.00 109.38 17.00 MacLine -grestore -1.00 ps -108.88 13.50 108.88 17.00 MacLine -108.88 242.50 108.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.25 239.00 102.25 17.00 MacLine -grestore -1.00 ps -101.75 13.50 101.75 17.00 MacLine -101.75 242.50 101.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -95.12 239.00 95.12 17.00 MacLine -grestore -1.00 ps -94.62 13.50 94.62 17.00 MacLine -94.62 242.50 94.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -88.00 239.00 88.00 17.00 MacLine -grestore -1.00 ps -87.50 13.50 87.50 17.00 MacLine -87.50 242.50 87.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -80.75 235.50 80.75 20.50 MacLine -grestore -1.00 ps -80.38 13.50 80.38 20.50 MacLine -80.38 242.50 80.38 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-6) 73.75 259.88 14.25 WS -gsave 0.125 ps [1] sd -73.75 239.00 73.75 17.00 MacLine -grestore -1.00 ps -73.25 13.50 73.25 17.00 MacLine -73.25 242.50 73.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.62 239.00 66.62 17.00 MacLine -grestore -1.00 ps -66.12 13.50 66.12 17.00 MacLine -66.12 242.50 66.12 239.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(t \(s\)) 298.62 284.38 27.75 WS -2.00 ps -newpath 63.12 243.00 M -68.12 242.50 L -73.12 241.75 L -78.12 240.88 L -83.12 239.88 L -88.25 238.62 L -93.25 237.25 L -98.38 235.62 L -103.38 233.88 L -108.38 232.00 L -113.50 230.00 L -118.50 227.75 L -123.50 225.50 L -128.50 223.00 L -133.62 220.50 L -138.62 217.75 L -143.62 214.88 L -148.75 212.00 L -153.75 208.88 L -158.88 205.75 L -163.88 202.50 L -168.88 199.12 L -173.88 195.62 L -179.00 192.12 L -184.00 188.50 L -189.00 184.88 L -194.12 181.12 L -199.12 177.25 L -204.12 173.38 L -209.25 169.50 L -214.25 165.50 L -219.25 161.50 L -224.25 157.38 L -229.38 153.25 L -234.38 149.12 L -239.50 145.00 L -244.50 140.88 L -249.50 136.62 L -254.62 132.50 L -259.62 128.25 L -264.62 124.00 L -269.62 119.88 L -274.75 115.75 L -279.75 111.50 L -284.75 107.38 L -289.88 103.25 L -294.88 99.12 L -300.00 95.12 L -305.00 91.12 L -310.00 87.12 L -315.00 83.12 L -320.00 79.25 L -325.00 75.50 L -330.12 71.75 L -335.12 68.12 L -340.25 64.50 L -345.25 61.00 L -350.25 57.50 L -355.38 54.25 L -360.38 51.00 L -365.38 47.88 L -370.38 44.88 L -375.50 41.88 L -380.50 39.12 L -385.50 36.38 L -390.62 33.88 L -395.62 31.38 L -400.75 29.12 L -405.75 27.00 L -410.75 25.00 L -415.75 23.12 L -420.88 21.38 L -425.88 19.88 L -430.88 18.50 L -436.00 17.38 L -441.00 16.25 L -446.00 15.50 L -451.12 14.75 L -456.12 14.38 L -461.12 14.12 L -466.12 14.00 L -471.25 14.12 L -476.25 14.50 L -481.38 15.00 L -486.38 15.88 L -491.38 16.88 L -496.50 18.12 L -501.50 19.62 L -506.50 21.38 L -511.50 23.25 L -516.62 25.50 L -521.62 28.00 L -526.62 30.75 L -531.75 33.75 L -536.75 37.00 L -541.88 40.62 L -546.88 44.50 L -551.88 48.50 L -556.88 53.00 L -561.88 57.75 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v3.gif deleted file mode 100755 index 08a02ca8f..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v4.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v4.eps deleted file mode 100755 index 9664964ee..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v4.eps +++ /dev/null @@ -1,1177 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_y4 -%%Creation Date: Sun, Sep 10, 1995 06:45 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 14.12 558.00 14.12 MacLine -62.50 14.12 66.00 14.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 22.88 558.00 22.88 MacLine -grestore -1.00 ps -561.50 22.38 558.00 22.38 MacLine -62.50 22.38 66.00 22.38 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 31.00 554.50 31.00 MacLine -grestore -1.00 ps -561.50 30.62 554.50 30.62 MacLine -62.50 30.62 69.50 30.62 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2500) 23.50 35.50 35.50 WS -gsave 0.125 ps [1] sd -66.00 39.38 558.00 39.38 MacLine -grestore -1.00 ps -561.50 38.88 558.00 38.88 MacLine -62.50 38.88 66.00 38.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 47.50 558.00 47.50 MacLine -grestore -1.00 ps -561.50 47.00 558.00 47.00 MacLine -62.50 47.00 66.00 47.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 55.75 558.00 55.75 MacLine -grestore -1.00 ps -561.50 55.25 558.00 55.25 MacLine -62.50 55.25 66.00 55.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 64.00 558.00 64.00 MacLine -grestore -1.00 ps -561.50 63.50 558.00 63.50 MacLine -62.50 63.50 66.00 63.50 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 72.00 554.50 72.00 MacLine -grestore -1.00 ps -561.50 71.62 554.50 71.62 MacLine -62.50 71.62 69.50 71.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2400) 23.50 76.50 35.50 WS -gsave 0.125 ps [1] sd -66.00 80.38 558.00 80.38 MacLine -grestore -1.00 ps -561.50 79.88 558.00 79.88 MacLine -62.50 79.88 66.00 79.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 88.62 558.00 88.62 MacLine -grestore -1.00 ps -561.50 88.12 558.00 88.12 MacLine -62.50 88.12 66.00 88.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 96.75 558.00 96.75 MacLine -grestore -1.00 ps -561.50 96.25 558.00 96.25 MacLine -62.50 96.25 66.00 96.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 105.00 558.00 105.00 MacLine -grestore -1.00 ps -561.50 104.50 558.00 104.50 MacLine -62.50 104.50 66.00 104.50 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 113.12 554.50 113.12 MacLine -grestore -1.00 ps -561.50 112.75 554.50 112.75 MacLine -62.50 112.75 69.50 112.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2300) 23.50 117.62 35.50 WS -gsave 0.125 ps [1] sd -66.00 121.38 558.00 121.38 MacLine -grestore -1.00 ps -561.50 120.88 558.00 120.88 MacLine -62.50 120.88 66.00 120.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 129.62 558.00 129.62 MacLine -grestore -1.00 ps -561.50 129.12 558.00 129.12 MacLine -62.50 129.12 66.00 129.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 137.88 558.00 137.88 MacLine -grestore -1.00 ps -561.50 137.38 558.00 137.38 MacLine -62.50 137.38 66.00 137.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 146.00 558.00 146.00 MacLine -grestore -1.00 ps -561.50 145.50 558.00 145.50 MacLine -62.50 145.50 66.00 145.50 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 154.12 554.50 154.12 MacLine -grestore -1.00 ps -561.50 153.75 554.50 153.75 MacLine -62.50 153.75 69.50 153.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2200) 23.50 158.62 35.50 WS -gsave 0.125 ps [1] sd -66.00 162.50 558.00 162.50 MacLine -grestore -1.00 ps -561.50 162.00 558.00 162.00 MacLine -62.50 162.00 66.00 162.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 170.75 558.00 170.75 MacLine -grestore -1.00 ps -561.50 170.25 558.00 170.25 MacLine -62.50 170.25 66.00 170.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 178.88 558.00 178.88 MacLine -grestore -1.00 ps -561.50 178.38 558.00 178.38 MacLine -62.50 178.38 66.00 178.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 187.12 558.00 187.12 MacLine -grestore -1.00 ps -561.50 186.62 558.00 186.62 MacLine -62.50 186.62 66.00 186.62 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 195.25 554.50 195.25 MacLine -grestore -1.00 ps -561.50 194.88 554.50 194.88 MacLine -62.50 194.88 69.50 194.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2100) 23.50 199.75 35.50 WS -gsave 0.125 ps [1] sd -66.00 203.50 558.00 203.50 MacLine -grestore -1.00 ps -561.50 203.00 558.00 203.00 MacLine -62.50 203.00 66.00 203.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 211.75 558.00 211.75 MacLine -grestore -1.00 ps -561.50 211.25 558.00 211.25 MacLine -62.50 211.25 66.00 211.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 220.00 558.00 220.00 MacLine -grestore -1.00 ps -561.50 219.50 558.00 219.50 MacLine -62.50 219.50 66.00 219.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 228.12 558.00 228.12 MacLine -grestore -1.00 ps -561.50 227.62 558.00 227.62 MacLine -62.50 227.62 66.00 227.62 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 236.25 554.50 236.25 MacLine -grestore -1.00 ps -561.50 235.88 554.50 235.88 MacLine -62.50 235.88 69.50 235.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2000) 23.50 240.75 35.50 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(y \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -558.38 239.00 558.38 17.00 MacLine -grestore -1.00 ps -557.88 13.50 557.88 17.00 MacLine -557.88 242.50 557.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -551.25 239.00 551.25 17.00 MacLine -grestore -1.00 ps -550.75 13.50 550.75 17.00 MacLine -550.75 242.50 550.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -544.12 237.25 544.12 18.75 MacLine -grestore -1.00 ps -543.62 13.50 543.62 18.75 MacLine -543.62 242.50 543.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -537.00 239.00 537.00 17.00 MacLine -grestore -1.00 ps -536.50 13.50 536.50 17.00 MacLine -536.50 242.50 536.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -529.88 239.00 529.88 17.00 MacLine -grestore -1.00 ps -529.38 13.50 529.38 17.00 MacLine -529.38 242.50 529.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.75 239.00 522.75 17.00 MacLine -grestore -1.00 ps -522.25 13.50 522.25 17.00 MacLine -522.25 242.50 522.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -515.62 239.00 515.62 17.00 MacLine -grestore -1.00 ps -515.12 13.50 515.12 17.00 MacLine -515.12 242.50 515.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -508.38 235.50 508.38 20.50 MacLine -grestore -1.00 ps -508.00 13.50 508.00 20.50 MacLine -508.00 242.50 508.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 504.12 259.88 8.88 WS -gsave 0.125 ps [1] sd -501.38 239.00 501.38 17.00 MacLine -grestore -1.00 ps -500.88 13.50 500.88 17.00 MacLine -500.88 242.50 500.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -494.25 239.00 494.25 17.00 MacLine -grestore -1.00 ps -493.75 13.50 493.75 17.00 MacLine -493.75 242.50 493.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.12 239.00 487.12 17.00 MacLine -grestore -1.00 ps -486.62 13.50 486.62 17.00 MacLine -486.62 242.50 486.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.00 239.00 480.00 17.00 MacLine -grestore -1.00 ps -479.50 13.50 479.50 17.00 MacLine -479.50 242.50 479.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.88 237.25 472.88 18.75 MacLine -grestore -1.00 ps -472.38 13.50 472.38 18.75 MacLine -472.38 242.50 472.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -465.75 239.00 465.75 17.00 MacLine -grestore -1.00 ps -465.25 13.50 465.25 17.00 MacLine -465.25 242.50 465.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -458.62 239.00 458.62 17.00 MacLine -grestore -1.00 ps -458.12 13.50 458.12 17.00 MacLine -458.12 242.50 458.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -451.50 239.00 451.50 17.00 MacLine -grestore -1.00 ps -451.00 13.50 451.00 17.00 MacLine -451.00 242.50 451.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -444.38 239.00 444.38 17.00 MacLine -grestore -1.00 ps -443.88 13.50 443.88 17.00 MacLine -443.88 242.50 443.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -437.12 235.50 437.12 20.50 MacLine -grestore -1.00 ps -436.75 13.50 436.75 20.50 MacLine -436.75 242.50 436.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 432.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -430.12 239.00 430.12 17.00 MacLine -grestore -1.00 ps -429.62 13.50 429.62 17.00 MacLine -429.62 242.50 429.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -423.00 239.00 423.00 17.00 MacLine -grestore -1.00 ps -422.50 13.50 422.50 17.00 MacLine -422.50 242.50 422.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -415.88 239.00 415.88 17.00 MacLine -grestore -1.00 ps -415.38 13.50 415.38 17.00 MacLine -415.38 242.50 415.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -408.75 239.00 408.75 17.00 MacLine -grestore -1.00 ps -408.25 13.50 408.25 17.00 MacLine -408.25 242.50 408.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -401.62 237.25 401.62 18.75 MacLine -grestore -1.00 ps -401.12 13.50 401.12 18.75 MacLine -401.12 242.50 401.12 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -394.50 239.00 394.50 17.00 MacLine -grestore -1.00 ps -394.00 13.50 394.00 17.00 MacLine -394.00 242.50 394.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -387.38 239.00 387.38 17.00 MacLine -grestore -1.00 ps -386.88 13.50 386.88 17.00 MacLine -386.88 242.50 386.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -380.25 239.00 380.25 17.00 MacLine -grestore -1.00 ps -379.75 13.50 379.75 17.00 MacLine -379.75 242.50 379.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.12 239.00 373.12 17.00 MacLine -grestore -1.00 ps -372.62 13.50 372.62 17.00 MacLine -372.62 242.50 372.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -365.88 235.50 365.88 20.50 MacLine -grestore -1.00 ps -365.50 13.50 365.50 20.50 MacLine -365.50 242.50 365.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 361.62 259.88 8.88 WS -gsave 0.125 ps [1] sd -358.88 239.00 358.88 17.00 MacLine -grestore -1.00 ps -358.38 13.50 358.38 17.00 MacLine -358.38 242.50 358.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -351.75 239.00 351.75 17.00 MacLine -grestore -1.00 ps -351.25 13.50 351.25 17.00 MacLine -351.25 242.50 351.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -344.62 239.00 344.62 17.00 MacLine -grestore -1.00 ps -344.12 13.50 344.12 17.00 MacLine -344.12 242.50 344.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -337.50 239.00 337.50 17.00 MacLine -grestore -1.00 ps -337.00 13.50 337.00 17.00 MacLine -337.00 242.50 337.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -330.38 237.25 330.38 18.75 MacLine -grestore -1.00 ps -329.88 13.50 329.88 18.75 MacLine -329.88 242.50 329.88 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 239.00 323.25 17.00 MacLine -grestore -1.00 ps -322.75 13.50 322.75 17.00 MacLine -322.75 242.50 322.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.12 239.00 316.12 17.00 MacLine -grestore -1.00 ps -315.62 13.50 315.62 17.00 MacLine -315.62 242.50 315.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -308.88 239.00 308.88 17.00 MacLine -grestore -1.00 ps -308.38 13.50 308.38 17.00 MacLine -308.38 242.50 308.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -301.75 239.00 301.75 17.00 MacLine -grestore -1.00 ps -301.25 13.50 301.25 17.00 MacLine -301.25 242.50 301.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -294.50 235.50 294.50 20.50 MacLine -grestore -1.00 ps -294.12 13.50 294.12 20.50 MacLine -294.12 242.50 294.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 290.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -287.50 239.00 287.50 17.00 MacLine -grestore -1.00 ps -287.00 13.50 287.00 17.00 MacLine -287.00 242.50 287.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -280.38 239.00 280.38 17.00 MacLine -grestore -1.00 ps -279.88 13.50 279.88 17.00 MacLine -279.88 242.50 279.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -273.25 239.00 273.25 17.00 MacLine -grestore -1.00 ps -272.75 13.50 272.75 17.00 MacLine -272.75 242.50 272.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.12 239.00 266.12 17.00 MacLine -grestore -1.00 ps -265.62 13.50 265.62 17.00 MacLine -265.62 242.50 265.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -259.00 237.25 259.00 18.75 MacLine -grestore -1.00 ps -258.50 13.50 258.50 18.75 MacLine -258.50 242.50 258.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -251.88 239.00 251.88 17.00 MacLine -grestore -1.00 ps -251.38 13.50 251.38 17.00 MacLine -251.38 242.50 251.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -244.75 239.00 244.75 17.00 MacLine -grestore -1.00 ps -244.25 13.50 244.25 17.00 MacLine -244.25 242.50 244.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -237.62 239.00 237.62 17.00 MacLine -grestore -1.00 ps -237.12 13.50 237.12 17.00 MacLine -237.12 242.50 237.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -230.50 239.00 230.50 17.00 MacLine -grestore -1.00 ps -230.00 13.50 230.00 17.00 MacLine -230.00 242.50 230.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-2) 216.25 259.88 14.25 WS -gsave 0.125 ps [1] sd -216.25 239.00 216.25 17.00 MacLine -grestore -1.00 ps -215.75 13.50 215.75 17.00 MacLine -215.75 242.50 215.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -209.12 239.00 209.12 17.00 MacLine -grestore -1.00 ps -208.62 13.50 208.62 17.00 MacLine -208.62 242.50 208.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -202.00 239.00 202.00 17.00 MacLine -grestore -1.00 ps -201.50 13.50 201.50 17.00 MacLine -201.50 242.50 201.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -194.88 239.00 194.88 17.00 MacLine -grestore -1.00 ps -194.38 13.50 194.38 17.00 MacLine -194.38 242.50 194.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -187.75 237.25 187.75 18.75 MacLine -grestore -1.00 ps -187.25 13.50 187.25 18.75 MacLine -187.25 242.50 187.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -180.62 239.00 180.62 17.00 MacLine -grestore -1.00 ps -180.12 13.50 180.12 17.00 MacLine -180.12 242.50 180.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -173.50 239.00 173.50 17.00 MacLine -grestore -1.00 ps -173.00 13.50 173.00 17.00 MacLine -173.00 242.50 173.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -166.38 239.00 166.38 17.00 MacLine -grestore -1.00 ps -165.88 13.50 165.88 17.00 MacLine -165.88 242.50 165.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.25 239.00 159.25 17.00 MacLine -grestore -1.00 ps -158.75 13.50 158.75 17.00 MacLine -158.75 242.50 158.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -152.00 235.50 152.00 20.50 MacLine -grestore -1.00 ps -151.62 13.50 151.62 20.50 MacLine -151.62 242.50 151.62 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-4) 145.00 259.88 14.25 WS -gsave 0.125 ps [1] sd -145.00 239.00 145.00 17.00 MacLine -grestore -1.00 ps -144.50 13.50 144.50 17.00 MacLine -144.50 242.50 144.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -137.88 239.00 137.88 17.00 MacLine -grestore -1.00 ps -137.38 13.50 137.38 17.00 MacLine -137.38 242.50 137.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -130.75 239.00 130.75 17.00 MacLine -grestore -1.00 ps -130.25 13.50 130.25 17.00 MacLine -130.25 242.50 130.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -123.62 239.00 123.62 17.00 MacLine -grestore -1.00 ps -123.12 13.50 123.12 17.00 MacLine -123.12 242.50 123.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -116.50 237.25 116.50 18.75 MacLine -grestore -1.00 ps -116.00 13.50 116.00 18.75 MacLine -116.00 242.50 116.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -109.38 239.00 109.38 17.00 MacLine -grestore -1.00 ps -108.88 13.50 108.88 17.00 MacLine -108.88 242.50 108.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.25 239.00 102.25 17.00 MacLine -grestore -1.00 ps -101.75 13.50 101.75 17.00 MacLine -101.75 242.50 101.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -95.12 239.00 95.12 17.00 MacLine -grestore -1.00 ps -94.62 13.50 94.62 17.00 MacLine -94.62 242.50 94.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -88.00 239.00 88.00 17.00 MacLine -grestore -1.00 ps -87.50 13.50 87.50 17.00 MacLine -87.50 242.50 87.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -80.75 235.50 80.75 20.50 MacLine -grestore -1.00 ps -80.38 13.50 80.38 20.50 MacLine -80.38 242.50 80.38 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-6) 73.75 259.88 14.25 WS -gsave 0.125 ps [1] sd -73.75 239.00 73.75 17.00 MacLine -grestore -1.00 ps -73.25 13.50 73.25 17.00 MacLine -73.25 242.50 73.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.62 239.00 66.62 17.00 MacLine -grestore -1.00 ps -66.12 13.50 66.12 17.00 MacLine -66.12 242.50 66.12 239.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(t \(s\)) 298.62 284.38 27.75 WS -2.00 ps -newpath 63.12 14.00 M -68.12 28.12 L -73.12 41.75 L -78.12 54.75 L -83.12 67.25 L -88.25 79.25 L -93.25 90.62 L -98.38 101.62 L -103.38 112.12 L -108.38 122.12 L -113.50 131.62 L -118.50 140.62 L -123.50 149.25 L -128.50 157.38 L -133.62 165.12 L -138.62 172.38 L -143.62 179.25 L -148.75 185.75 L -153.75 191.75 L -158.88 197.38 L -163.88 202.75 L -168.88 207.62 L -173.88 212.12 L -179.00 216.25 L -184.00 220.12 L -189.00 223.62 L -194.12 226.88 L -199.12 229.75 L -204.12 232.25 L -209.25 234.50 L -214.25 236.50 L -219.25 238.25 L -224.25 239.62 L -229.38 240.75 L -234.38 241.62 L -239.50 242.38 L -244.50 242.75 L -249.50 243.00 L -254.62 243.00 L -259.62 242.75 L -264.62 242.38 L -269.62 241.75 L -274.75 241.00 L -279.75 240.12 L -284.75 239.00 L -289.88 237.75 L -294.88 236.38 L -300.00 234.75 L -305.00 233.12 L -310.00 231.38 L -315.00 229.50 L -320.00 227.62 L -325.00 225.50 L -330.12 223.38 L -335.12 221.25 L -340.25 219.00 L -345.25 216.75 L -350.25 214.38 L -355.38 212.12 L -360.38 209.75 L -365.38 207.38 L -370.38 205.00 L -375.50 202.62 L -380.50 200.25 L -385.50 197.88 L -390.62 195.62 L -395.62 193.38 L -400.75 191.12 L -405.75 189.00 L -410.75 187.00 L -415.75 185.00 L -420.88 183.12 L -425.88 181.38 L -430.88 179.75 L -436.00 178.12 L -441.00 176.75 L -446.00 175.50 L -451.12 174.38 L -456.12 173.38 L -461.12 172.50 L -466.12 171.88 L -471.25 171.50 L -476.25 171.25 L -481.38 171.12 L -486.38 171.38 L -491.38 171.75 L -496.50 172.38 L -501.50 173.12 L -506.50 174.25 L -511.50 175.62 L -516.62 177.25 L -521.62 179.12 L -526.62 181.38 L -531.75 183.88 L -536.75 186.62 L -541.88 189.75 L -546.88 193.25 L -551.88 197.00 L -556.88 201.12 L -561.88 205.62 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v4.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v4.gif deleted file mode 100755 index 8e846e53b..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v4.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v5.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v5.eps deleted file mode 100755 index a0874d84c..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v5.eps +++ /dev/null @@ -1,1292 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_y5 -%%Creation Date: Sun, Sep 10, 1995 06:45 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 14.38 556.25 14.38 MacLine -62.50 14.38 67.75 14.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 20.00 558.00 20.00 MacLine -grestore -1.00 ps -561.50 19.50 558.00 19.50 MacLine -62.50 19.50 66.00 19.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 25.25 558.00 25.25 MacLine -grestore -1.00 ps -561.50 24.75 558.00 24.75 MacLine -62.50 24.75 66.00 24.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 30.50 558.00 30.50 MacLine -grestore -1.00 ps -561.50 30.00 558.00 30.00 MacLine -62.50 30.00 66.00 30.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 35.75 558.00 35.75 MacLine -grestore -1.00 ps -561.50 35.25 558.00 35.25 MacLine -62.50 35.25 66.00 35.25 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 40.75 554.50 40.75 MacLine -grestore -1.00 ps -561.50 40.38 554.50 40.38 MacLine -62.50 40.38 69.50 40.38 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2800) 23.50 45.25 35.50 WS -gsave 0.125 ps [1] sd -66.00 46.12 558.00 46.12 MacLine -grestore -1.00 ps -561.50 45.62 558.00 45.62 MacLine -62.50 45.62 66.00 45.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 51.38 558.00 51.38 MacLine -grestore -1.00 ps -561.50 50.88 558.00 50.88 MacLine -62.50 50.88 66.00 50.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 56.62 558.00 56.62 MacLine -grestore -1.00 ps -561.50 56.12 558.00 56.12 MacLine -62.50 56.12 66.00 56.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 61.75 558.00 61.75 MacLine -grestore -1.00 ps -561.50 61.25 558.00 61.25 MacLine -62.50 61.25 66.00 61.25 MacLine -1 ps -gsave 0.125 ps [1] sd -67.75 67.00 556.25 67.00 MacLine -grestore -1.00 ps -561.50 66.50 556.25 66.50 MacLine -62.50 66.50 67.75 66.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 72.25 558.00 72.25 MacLine -grestore -1.00 ps -561.50 71.75 558.00 71.75 MacLine -62.50 71.75 66.00 71.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 77.50 558.00 77.50 MacLine -grestore -1.00 ps -561.50 77.00 558.00 77.00 MacLine -62.50 77.00 66.00 77.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 82.62 558.00 82.62 MacLine -grestore -1.00 ps -561.50 82.12 558.00 82.12 MacLine -62.50 82.12 66.00 82.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 87.88 558.00 87.88 MacLine -grestore -1.00 ps -561.50 87.38 558.00 87.38 MacLine -62.50 87.38 66.00 87.38 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 93.00 554.50 93.00 MacLine -grestore -1.00 ps -561.50 92.62 554.50 92.62 MacLine -62.50 92.62 69.50 92.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2700) 23.50 97.50 35.50 WS -gsave 0.125 ps [1] sd -66.00 98.38 558.00 98.38 MacLine -grestore -1.00 ps -561.50 97.88 558.00 97.88 MacLine -62.50 97.88 66.00 97.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 103.50 558.00 103.50 MacLine -grestore -1.00 ps -561.50 103.00 558.00 103.00 MacLine -62.50 103.00 66.00 103.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 108.75 558.00 108.75 MacLine -grestore -1.00 ps -561.50 108.25 558.00 108.25 MacLine -62.50 108.25 66.00 108.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 114.00 558.00 114.00 MacLine -grestore -1.00 ps -561.50 113.50 558.00 113.50 MacLine -62.50 113.50 66.00 113.50 MacLine -1 ps -gsave 0.125 ps [1] sd -67.75 119.25 556.25 119.25 MacLine -grestore -1.00 ps -561.50 118.75 556.25 118.75 MacLine -62.50 118.75 67.75 118.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 124.50 558.00 124.50 MacLine -grestore -1.00 ps -561.50 124.00 558.00 124.00 MacLine -62.50 124.00 66.00 124.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 129.62 558.00 129.62 MacLine -grestore -1.00 ps -561.50 129.12 558.00 129.12 MacLine -62.50 129.12 66.00 129.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 134.88 558.00 134.88 MacLine -grestore -1.00 ps -561.50 134.38 558.00 134.38 MacLine -62.50 134.38 66.00 134.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 140.12 558.00 140.12 MacLine -grestore -1.00 ps -561.50 139.62 558.00 139.62 MacLine -62.50 139.62 66.00 139.62 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 145.25 554.50 145.25 MacLine -grestore -1.00 ps -561.50 144.88 554.50 144.88 MacLine -62.50 144.88 69.50 144.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2600) 23.50 149.75 35.50 WS -gsave 0.125 ps [1] sd -66.00 150.50 558.00 150.50 MacLine -grestore -1.00 ps -561.50 150.00 558.00 150.00 MacLine -62.50 150.00 66.00 150.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 155.75 558.00 155.75 MacLine -grestore -1.00 ps -561.50 155.25 558.00 155.25 MacLine -62.50 155.25 66.00 155.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 161.00 558.00 161.00 MacLine -grestore -1.00 ps -561.50 160.50 558.00 160.50 MacLine -62.50 160.50 66.00 160.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 166.25 558.00 166.25 MacLine -grestore -1.00 ps -561.50 165.75 558.00 165.75 MacLine -62.50 165.75 66.00 165.75 MacLine -1 ps -gsave 0.125 ps [1] sd -67.75 171.38 556.25 171.38 MacLine -grestore -1.00 ps -561.50 170.88 556.25 170.88 MacLine -62.50 170.88 67.75 170.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 176.62 558.00 176.62 MacLine -grestore -1.00 ps -561.50 176.12 558.00 176.12 MacLine -62.50 176.12 66.00 176.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 181.88 558.00 181.88 MacLine -grestore -1.00 ps -561.50 181.38 558.00 181.38 MacLine -62.50 181.38 66.00 181.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 187.12 558.00 187.12 MacLine -grestore -1.00 ps -561.50 186.62 558.00 186.62 MacLine -62.50 186.62 66.00 186.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 192.25 558.00 192.25 MacLine -grestore -1.00 ps -561.50 191.75 558.00 191.75 MacLine -62.50 191.75 66.00 191.75 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 197.38 554.50 197.38 MacLine -grestore -1.00 ps -561.50 197.00 554.50 197.00 MacLine -62.50 197.00 69.50 197.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2500) 23.50 201.88 35.50 WS -gsave 0.125 ps [1] sd -66.00 202.75 558.00 202.75 MacLine -grestore -1.00 ps -561.50 202.25 558.00 202.25 MacLine -62.50 202.25 66.00 202.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 208.00 558.00 208.00 MacLine -grestore -1.00 ps -561.50 207.50 558.00 207.50 MacLine -62.50 207.50 66.00 207.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 213.25 558.00 213.25 MacLine -grestore -1.00 ps -561.50 212.75 558.00 212.75 MacLine -62.50 212.75 66.00 212.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 218.38 558.00 218.38 MacLine -grestore -1.00 ps -561.50 217.88 558.00 217.88 MacLine -62.50 217.88 66.00 217.88 MacLine -1 ps -gsave 0.125 ps [1] sd -67.75 223.62 556.25 223.62 MacLine -grestore -1.00 ps -561.50 223.12 556.25 223.12 MacLine -62.50 223.12 67.75 223.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 228.88 558.00 228.88 MacLine -grestore -1.00 ps -561.50 228.38 558.00 228.38 MacLine -62.50 228.38 66.00 228.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 234.12 558.00 234.12 MacLine -grestore -1.00 ps -561.50 233.62 558.00 233.62 MacLine -62.50 233.62 66.00 233.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 239.25 558.00 239.25 MacLine -grestore -1.00 ps -561.50 238.75 558.00 238.75 MacLine -62.50 238.75 66.00 238.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 244.50 558.00 244.50 MacLine -grestore -1.00 ps -561.50 244.00 558.00 244.00 MacLine -62.50 244.00 66.00 244.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(y \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -558.38 239.00 558.38 17.00 MacLine -grestore -1.00 ps -557.88 13.50 557.88 17.00 MacLine -557.88 242.50 557.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -551.25 239.00 551.25 17.00 MacLine -grestore -1.00 ps -550.75 13.50 550.75 17.00 MacLine -550.75 242.50 550.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -544.12 237.25 544.12 18.75 MacLine -grestore -1.00 ps -543.62 13.50 543.62 18.75 MacLine -543.62 242.50 543.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -537.00 239.00 537.00 17.00 MacLine -grestore -1.00 ps -536.50 13.50 536.50 17.00 MacLine -536.50 242.50 536.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -529.88 239.00 529.88 17.00 MacLine -grestore -1.00 ps -529.38 13.50 529.38 17.00 MacLine -529.38 242.50 529.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.75 239.00 522.75 17.00 MacLine -grestore -1.00 ps -522.25 13.50 522.25 17.00 MacLine -522.25 242.50 522.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -515.62 239.00 515.62 17.00 MacLine -grestore -1.00 ps -515.12 13.50 515.12 17.00 MacLine -515.12 242.50 515.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -508.38 235.50 508.38 20.50 MacLine -grestore -1.00 ps -508.00 13.50 508.00 20.50 MacLine -508.00 242.50 508.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 504.12 259.88 8.88 WS -gsave 0.125 ps [1] sd -501.38 239.00 501.38 17.00 MacLine -grestore -1.00 ps -500.88 13.50 500.88 17.00 MacLine -500.88 242.50 500.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -494.25 239.00 494.25 17.00 MacLine -grestore -1.00 ps -493.75 13.50 493.75 17.00 MacLine -493.75 242.50 493.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.12 239.00 487.12 17.00 MacLine -grestore -1.00 ps -486.62 13.50 486.62 17.00 MacLine -486.62 242.50 486.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.00 239.00 480.00 17.00 MacLine -grestore -1.00 ps -479.50 13.50 479.50 17.00 MacLine -479.50 242.50 479.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.88 237.25 472.88 18.75 MacLine -grestore -1.00 ps -472.38 13.50 472.38 18.75 MacLine -472.38 242.50 472.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -465.75 239.00 465.75 17.00 MacLine -grestore -1.00 ps -465.25 13.50 465.25 17.00 MacLine -465.25 242.50 465.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -458.62 239.00 458.62 17.00 MacLine -grestore -1.00 ps -458.12 13.50 458.12 17.00 MacLine -458.12 242.50 458.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -451.50 239.00 451.50 17.00 MacLine -grestore -1.00 ps -451.00 13.50 451.00 17.00 MacLine -451.00 242.50 451.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -444.38 239.00 444.38 17.00 MacLine -grestore -1.00 ps -443.88 13.50 443.88 17.00 MacLine -443.88 242.50 443.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -437.12 235.50 437.12 20.50 MacLine -grestore -1.00 ps -436.75 13.50 436.75 20.50 MacLine -436.75 242.50 436.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 432.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -430.12 239.00 430.12 17.00 MacLine -grestore -1.00 ps -429.62 13.50 429.62 17.00 MacLine -429.62 242.50 429.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -423.00 239.00 423.00 17.00 MacLine -grestore -1.00 ps -422.50 13.50 422.50 17.00 MacLine -422.50 242.50 422.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -415.88 239.00 415.88 17.00 MacLine -grestore -1.00 ps -415.38 13.50 415.38 17.00 MacLine -415.38 242.50 415.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -408.75 239.00 408.75 17.00 MacLine -grestore -1.00 ps -408.25 13.50 408.25 17.00 MacLine -408.25 242.50 408.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -401.62 237.25 401.62 18.75 MacLine -grestore -1.00 ps -401.12 13.50 401.12 18.75 MacLine -401.12 242.50 401.12 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -394.50 239.00 394.50 17.00 MacLine -grestore -1.00 ps -394.00 13.50 394.00 17.00 MacLine -394.00 242.50 394.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -387.38 239.00 387.38 17.00 MacLine -grestore -1.00 ps -386.88 13.50 386.88 17.00 MacLine -386.88 242.50 386.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -380.25 239.00 380.25 17.00 MacLine -grestore -1.00 ps -379.75 13.50 379.75 17.00 MacLine -379.75 242.50 379.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.12 239.00 373.12 17.00 MacLine -grestore -1.00 ps -372.62 13.50 372.62 17.00 MacLine -372.62 242.50 372.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -365.88 235.50 365.88 20.50 MacLine -grestore -1.00 ps -365.50 13.50 365.50 20.50 MacLine -365.50 242.50 365.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 361.62 259.88 8.88 WS -gsave 0.125 ps [1] sd -358.88 239.00 358.88 17.00 MacLine -grestore -1.00 ps -358.38 13.50 358.38 17.00 MacLine -358.38 242.50 358.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -351.75 239.00 351.75 17.00 MacLine -grestore -1.00 ps -351.25 13.50 351.25 17.00 MacLine -351.25 242.50 351.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -344.62 239.00 344.62 17.00 MacLine -grestore -1.00 ps -344.12 13.50 344.12 17.00 MacLine -344.12 242.50 344.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -337.50 239.00 337.50 17.00 MacLine -grestore -1.00 ps -337.00 13.50 337.00 17.00 MacLine -337.00 242.50 337.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -330.38 237.25 330.38 18.75 MacLine -grestore -1.00 ps -329.88 13.50 329.88 18.75 MacLine -329.88 242.50 329.88 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 239.00 323.25 17.00 MacLine -grestore -1.00 ps -322.75 13.50 322.75 17.00 MacLine -322.75 242.50 322.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.12 239.00 316.12 17.00 MacLine -grestore -1.00 ps -315.62 13.50 315.62 17.00 MacLine -315.62 242.50 315.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -308.88 239.00 308.88 17.00 MacLine -grestore -1.00 ps -308.38 13.50 308.38 17.00 MacLine -308.38 242.50 308.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -301.75 239.00 301.75 17.00 MacLine -grestore -1.00 ps -301.25 13.50 301.25 17.00 MacLine -301.25 242.50 301.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -294.50 235.50 294.50 20.50 MacLine -grestore -1.00 ps -294.12 13.50 294.12 20.50 MacLine -294.12 242.50 294.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 290.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -287.50 239.00 287.50 17.00 MacLine -grestore -1.00 ps -287.00 13.50 287.00 17.00 MacLine -287.00 242.50 287.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -280.38 239.00 280.38 17.00 MacLine -grestore -1.00 ps -279.88 13.50 279.88 17.00 MacLine -279.88 242.50 279.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -273.25 239.00 273.25 17.00 MacLine -grestore -1.00 ps -272.75 13.50 272.75 17.00 MacLine -272.75 242.50 272.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.12 239.00 266.12 17.00 MacLine -grestore -1.00 ps -265.62 13.50 265.62 17.00 MacLine -265.62 242.50 265.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -259.00 237.25 259.00 18.75 MacLine -grestore -1.00 ps -258.50 13.50 258.50 18.75 MacLine -258.50 242.50 258.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -251.88 239.00 251.88 17.00 MacLine -grestore -1.00 ps -251.38 13.50 251.38 17.00 MacLine -251.38 242.50 251.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -244.75 239.00 244.75 17.00 MacLine -grestore -1.00 ps -244.25 13.50 244.25 17.00 MacLine -244.25 242.50 244.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -237.62 239.00 237.62 17.00 MacLine -grestore -1.00 ps -237.12 13.50 237.12 17.00 MacLine -237.12 242.50 237.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -230.50 239.00 230.50 17.00 MacLine -grestore -1.00 ps -230.00 13.50 230.00 17.00 MacLine -230.00 242.50 230.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-2) 216.25 259.88 14.25 WS -gsave 0.125 ps [1] sd -216.25 239.00 216.25 17.00 MacLine -grestore -1.00 ps -215.75 13.50 215.75 17.00 MacLine -215.75 242.50 215.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -209.12 239.00 209.12 17.00 MacLine -grestore -1.00 ps -208.62 13.50 208.62 17.00 MacLine -208.62 242.50 208.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -202.00 239.00 202.00 17.00 MacLine -grestore -1.00 ps -201.50 13.50 201.50 17.00 MacLine -201.50 242.50 201.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -194.88 239.00 194.88 17.00 MacLine -grestore -1.00 ps -194.38 13.50 194.38 17.00 MacLine -194.38 242.50 194.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -187.75 237.25 187.75 18.75 MacLine -grestore -1.00 ps -187.25 13.50 187.25 18.75 MacLine -187.25 242.50 187.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -180.62 239.00 180.62 17.00 MacLine -grestore -1.00 ps -180.12 13.50 180.12 17.00 MacLine -180.12 242.50 180.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -173.50 239.00 173.50 17.00 MacLine -grestore -1.00 ps -173.00 13.50 173.00 17.00 MacLine -173.00 242.50 173.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -166.38 239.00 166.38 17.00 MacLine -grestore -1.00 ps -165.88 13.50 165.88 17.00 MacLine -165.88 242.50 165.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.25 239.00 159.25 17.00 MacLine -grestore -1.00 ps -158.75 13.50 158.75 17.00 MacLine -158.75 242.50 158.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -152.00 235.50 152.00 20.50 MacLine -grestore -1.00 ps -151.62 13.50 151.62 20.50 MacLine -151.62 242.50 151.62 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-4) 145.00 259.88 14.25 WS -gsave 0.125 ps [1] sd -145.00 239.00 145.00 17.00 MacLine -grestore -1.00 ps -144.50 13.50 144.50 17.00 MacLine -144.50 242.50 144.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -137.88 239.00 137.88 17.00 MacLine -grestore -1.00 ps -137.38 13.50 137.38 17.00 MacLine -137.38 242.50 137.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -130.75 239.00 130.75 17.00 MacLine -grestore -1.00 ps -130.25 13.50 130.25 17.00 MacLine -130.25 242.50 130.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -123.62 239.00 123.62 17.00 MacLine -grestore -1.00 ps -123.12 13.50 123.12 17.00 MacLine -123.12 242.50 123.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -116.50 237.25 116.50 18.75 MacLine -grestore -1.00 ps -116.00 13.50 116.00 18.75 MacLine -116.00 242.50 116.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -109.38 239.00 109.38 17.00 MacLine -grestore -1.00 ps -108.88 13.50 108.88 17.00 MacLine -108.88 242.50 108.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.25 239.00 102.25 17.00 MacLine -grestore -1.00 ps -101.75 13.50 101.75 17.00 MacLine -101.75 242.50 101.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -95.12 239.00 95.12 17.00 MacLine -grestore -1.00 ps -94.62 13.50 94.62 17.00 MacLine -94.62 242.50 94.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -88.00 239.00 88.00 17.00 MacLine -grestore -1.00 ps -87.50 13.50 87.50 17.00 MacLine -87.50 242.50 87.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -80.75 235.50 80.75 20.50 MacLine -grestore -1.00 ps -80.38 13.50 80.38 20.50 MacLine -80.38 242.50 80.38 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-6) 73.75 259.88 14.25 WS -gsave 0.125 ps [1] sd -73.75 239.00 73.75 17.00 MacLine -grestore -1.00 ps -73.25 13.50 73.25 17.00 MacLine -73.25 242.50 73.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.62 239.00 66.62 17.00 MacLine -grestore -1.00 ps -66.12 13.50 66.12 17.00 MacLine -66.12 242.50 66.12 239.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(t \(s\)) 298.62 284.38 27.75 WS -2.00 ps -newpath 63.12 190.25 M -68.12 195.38 L -73.12 200.12 L -78.12 204.62 L -83.12 208.88 L -88.25 212.75 L -93.25 216.50 L -98.38 219.88 L -103.38 223.12 L -108.38 226.00 L -113.50 228.62 L -118.50 231.12 L -123.50 233.25 L -128.50 235.25 L -133.62 236.88 L -138.62 238.38 L -143.62 239.75 L -148.75 240.75 L -153.75 241.62 L -158.88 242.25 L -163.88 242.75 L -168.88 243.00 L -173.88 243.00 L -179.00 242.88 L -184.00 242.50 L -189.00 242.00 L -194.12 241.38 L -199.12 240.50 L -204.12 239.50 L -209.25 238.25 L -214.25 236.88 L -219.25 235.38 L -224.25 233.75 L -229.38 232.00 L -234.38 230.00 L -239.50 227.88 L -244.50 225.75 L -249.50 223.38 L -254.62 221.00 L -259.62 218.38 L -264.62 215.75 L -269.62 212.88 L -274.75 210.00 L -279.75 207.00 L -284.75 203.88 L -289.88 200.62 L -294.88 197.38 L -300.00 194.00 L -305.00 190.62 L -310.00 187.12 L -315.00 183.50 L -320.00 179.88 L -325.00 176.12 L -330.12 172.38 L -335.12 168.50 L -340.25 164.62 L -345.25 160.75 L -350.25 156.75 L -355.38 152.75 L -360.38 148.75 L -365.38 144.75 L -370.38 140.62 L -375.50 136.50 L -380.50 132.50 L -385.50 128.38 L -390.62 124.25 L -395.62 120.12 L -400.75 116.00 L -405.75 112.00 L -410.75 107.88 L -415.75 103.88 L -420.88 99.75 L -425.88 95.75 L -430.88 91.75 L -436.00 87.88 L -441.00 84.00 L -446.00 80.12 L -451.12 76.25 L -456.12 72.50 L -461.12 68.88 L -466.12 65.25 L -471.25 61.62 L -476.25 58.12 L -481.38 54.75 L -486.38 51.38 L -491.38 48.12 L -496.50 45.00 L -501.50 41.88 L -506.50 38.88 L -511.50 36.12 L -516.62 33.38 L -521.62 30.62 L -526.62 28.12 L -531.75 25.75 L -536.75 23.38 L -541.88 21.25 L -546.88 19.25 L -551.88 17.38 L -556.88 15.62 L -561.88 14.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v5.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v5.gif deleted file mode 100755 index 2d015ddd9..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v5.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v6.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v6.eps deleted file mode 100755 index c5acd8211..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v6.eps +++ /dev/null @@ -1,1246 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_y6 -%%Creation Date: Sun, Sep 10, 1995 06:45 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 17.12 558.00 17.12 MacLine -grestore -1.00 ps -561.50 16.62 558.00 16.62 MacLine -62.50 16.62 66.00 16.62 MacLine -1 ps -gsave 0.125 ps [1] sd -67.75 23.25 556.25 23.25 MacLine -grestore -1.00 ps -561.50 22.75 556.25 22.75 MacLine -62.50 22.75 67.75 22.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 29.25 558.00 29.25 MacLine -grestore -1.00 ps -561.50 28.75 558.00 28.75 MacLine -62.50 28.75 66.00 28.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 35.38 558.00 35.38 MacLine -grestore -1.00 ps -561.50 34.88 558.00 34.88 MacLine -62.50 34.88 66.00 34.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 41.38 558.00 41.38 MacLine -grestore -1.00 ps -561.50 40.88 558.00 40.88 MacLine -62.50 40.88 66.00 40.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 47.50 558.00 47.50 MacLine -grestore -1.00 ps -561.50 47.00 558.00 47.00 MacLine -62.50 47.00 66.00 47.00 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 53.38 554.50 53.38 MacLine -grestore -1.00 ps -561.50 53.00 554.50 53.00 MacLine -62.50 53.00 69.50 53.00 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(1600) 23.50 57.88 35.50 WS -gsave 0.125 ps [1] sd -66.00 59.62 558.00 59.62 MacLine -grestore -1.00 ps -561.50 59.12 558.00 59.12 MacLine -62.50 59.12 66.00 59.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 65.62 558.00 65.62 MacLine -grestore -1.00 ps -561.50 65.12 558.00 65.12 MacLine -62.50 65.12 66.00 65.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 71.75 558.00 71.75 MacLine -grestore -1.00 ps -561.50 71.25 558.00 71.25 MacLine -62.50 71.25 66.00 71.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 77.88 558.00 77.88 MacLine -grestore -1.00 ps -561.50 77.38 558.00 77.38 MacLine -62.50 77.38 66.00 77.38 MacLine -1 ps -gsave 0.125 ps [1] sd -67.75 83.88 556.25 83.88 MacLine -grestore -1.00 ps -561.50 83.38 556.25 83.38 MacLine -62.50 83.38 67.75 83.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 90.00 558.00 90.00 MacLine -grestore -1.00 ps -561.50 89.50 558.00 89.50 MacLine -62.50 89.50 66.00 89.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 96.00 558.00 96.00 MacLine -grestore -1.00 ps -561.50 95.50 558.00 95.50 MacLine -62.50 95.50 66.00 95.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 102.12 558.00 102.12 MacLine -grestore -1.00 ps -561.50 101.62 558.00 101.62 MacLine -62.50 101.62 66.00 101.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 108.12 558.00 108.12 MacLine -grestore -1.00 ps -561.50 107.62 558.00 107.62 MacLine -62.50 107.62 66.00 107.62 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 114.12 554.50 114.12 MacLine -grestore -1.00 ps -561.50 113.75 554.50 113.75 MacLine -62.50 113.75 69.50 113.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1400) 23.50 118.62 35.50 WS -gsave 0.125 ps [1] sd -66.00 120.25 558.00 120.25 MacLine -grestore -1.00 ps -561.50 119.75 558.00 119.75 MacLine -62.50 119.75 66.00 119.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 126.38 558.00 126.38 MacLine -grestore -1.00 ps -561.50 125.88 558.00 125.88 MacLine -62.50 125.88 66.00 125.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 132.38 558.00 132.38 MacLine -grestore -1.00 ps -561.50 131.88 558.00 131.88 MacLine -62.50 131.88 66.00 131.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 138.50 558.00 138.50 MacLine -grestore -1.00 ps -561.50 138.00 558.00 138.00 MacLine -62.50 138.00 66.00 138.00 MacLine -1 ps -gsave 0.125 ps [1] sd -67.75 144.50 556.25 144.50 MacLine -grestore -1.00 ps -561.50 144.00 556.25 144.00 MacLine -62.50 144.00 67.75 144.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 150.62 558.00 150.62 MacLine -grestore -1.00 ps -561.50 150.12 558.00 150.12 MacLine -62.50 150.12 66.00 150.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 156.62 558.00 156.62 MacLine -grestore -1.00 ps -561.50 156.12 558.00 156.12 MacLine -62.50 156.12 66.00 156.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 162.75 558.00 162.75 MacLine -grestore -1.00 ps -561.50 162.25 558.00 162.25 MacLine -62.50 162.25 66.00 162.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 168.75 558.00 168.75 MacLine -grestore -1.00 ps -561.50 168.25 558.00 168.25 MacLine -62.50 168.25 66.00 168.25 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 174.75 554.50 174.75 MacLine -grestore -1.00 ps -561.50 174.38 554.50 174.38 MacLine -62.50 174.38 69.50 174.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1200) 23.50 179.25 35.50 WS -gsave 0.125 ps [1] sd -66.00 181.00 558.00 181.00 MacLine -grestore -1.00 ps -561.50 180.50 558.00 180.50 MacLine -62.50 180.50 66.00 180.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 187.00 558.00 187.00 MacLine -grestore -1.00 ps -561.50 186.50 558.00 186.50 MacLine -62.50 186.50 66.00 186.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 193.12 558.00 193.12 MacLine -grestore -1.00 ps -561.50 192.62 558.00 192.62 MacLine -62.50 192.62 66.00 192.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 199.12 558.00 199.12 MacLine -grestore -1.00 ps -561.50 198.62 558.00 198.62 MacLine -62.50 198.62 66.00 198.62 MacLine -1 ps -gsave 0.125 ps [1] sd -67.75 205.25 556.25 205.25 MacLine -grestore -1.00 ps -561.50 204.75 556.25 204.75 MacLine -62.50 204.75 67.75 204.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 211.25 558.00 211.25 MacLine -grestore -1.00 ps -561.50 210.75 558.00 210.75 MacLine -62.50 210.75 66.00 210.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 217.38 558.00 217.38 MacLine -grestore -1.00 ps -561.50 216.88 558.00 216.88 MacLine -62.50 216.88 66.00 216.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 223.38 558.00 223.38 MacLine -grestore -1.00 ps -561.50 222.88 558.00 222.88 MacLine -62.50 222.88 66.00 222.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 229.50 558.00 229.50 MacLine -grestore -1.00 ps -561.50 229.00 558.00 229.00 MacLine -62.50 229.00 66.00 229.00 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 235.38 554.50 235.38 MacLine -grestore -1.00 ps -561.50 235.00 554.50 235.00 MacLine -62.50 235.00 69.50 235.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1000) 23.50 239.88 35.50 WS -gsave 0.125 ps [1] sd -66.00 241.62 558.00 241.62 MacLine -grestore -1.00 ps -561.50 241.12 558.00 241.12 MacLine -62.50 241.12 66.00 241.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(y \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -558.38 239.00 558.38 17.00 MacLine -grestore -1.00 ps -557.88 13.50 557.88 17.00 MacLine -557.88 242.50 557.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -551.25 239.00 551.25 17.00 MacLine -grestore -1.00 ps -550.75 13.50 550.75 17.00 MacLine -550.75 242.50 550.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -544.12 237.25 544.12 18.75 MacLine -grestore -1.00 ps -543.62 13.50 543.62 18.75 MacLine -543.62 242.50 543.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -537.00 239.00 537.00 17.00 MacLine -grestore -1.00 ps -536.50 13.50 536.50 17.00 MacLine -536.50 242.50 536.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -529.88 239.00 529.88 17.00 MacLine -grestore -1.00 ps -529.38 13.50 529.38 17.00 MacLine -529.38 242.50 529.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.75 239.00 522.75 17.00 MacLine -grestore -1.00 ps -522.25 13.50 522.25 17.00 MacLine -522.25 242.50 522.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -515.62 239.00 515.62 17.00 MacLine -grestore -1.00 ps -515.12 13.50 515.12 17.00 MacLine -515.12 242.50 515.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -508.38 235.50 508.38 20.50 MacLine -grestore -1.00 ps -508.00 13.50 508.00 20.50 MacLine -508.00 242.50 508.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 504.12 259.88 8.88 WS -gsave 0.125 ps [1] sd -501.38 239.00 501.38 17.00 MacLine -grestore -1.00 ps -500.88 13.50 500.88 17.00 MacLine -500.88 242.50 500.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -494.25 239.00 494.25 17.00 MacLine -grestore -1.00 ps -493.75 13.50 493.75 17.00 MacLine -493.75 242.50 493.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.12 239.00 487.12 17.00 MacLine -grestore -1.00 ps -486.62 13.50 486.62 17.00 MacLine -486.62 242.50 486.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.00 239.00 480.00 17.00 MacLine -grestore -1.00 ps -479.50 13.50 479.50 17.00 MacLine -479.50 242.50 479.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.88 237.25 472.88 18.75 MacLine -grestore -1.00 ps -472.38 13.50 472.38 18.75 MacLine -472.38 242.50 472.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -465.75 239.00 465.75 17.00 MacLine -grestore -1.00 ps -465.25 13.50 465.25 17.00 MacLine -465.25 242.50 465.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -458.62 239.00 458.62 17.00 MacLine -grestore -1.00 ps -458.12 13.50 458.12 17.00 MacLine -458.12 242.50 458.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -451.50 239.00 451.50 17.00 MacLine -grestore -1.00 ps -451.00 13.50 451.00 17.00 MacLine -451.00 242.50 451.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -444.38 239.00 444.38 17.00 MacLine -grestore -1.00 ps -443.88 13.50 443.88 17.00 MacLine -443.88 242.50 443.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -437.12 235.50 437.12 20.50 MacLine -grestore -1.00 ps -436.75 13.50 436.75 20.50 MacLine -436.75 242.50 436.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 432.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -430.12 239.00 430.12 17.00 MacLine -grestore -1.00 ps -429.62 13.50 429.62 17.00 MacLine -429.62 242.50 429.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -423.00 239.00 423.00 17.00 MacLine -grestore -1.00 ps -422.50 13.50 422.50 17.00 MacLine -422.50 242.50 422.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -415.88 239.00 415.88 17.00 MacLine -grestore -1.00 ps -415.38 13.50 415.38 17.00 MacLine -415.38 242.50 415.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -408.75 239.00 408.75 17.00 MacLine -grestore -1.00 ps -408.25 13.50 408.25 17.00 MacLine -408.25 242.50 408.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -401.62 237.25 401.62 18.75 MacLine -grestore -1.00 ps -401.12 13.50 401.12 18.75 MacLine -401.12 242.50 401.12 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -394.50 239.00 394.50 17.00 MacLine -grestore -1.00 ps -394.00 13.50 394.00 17.00 MacLine -394.00 242.50 394.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -387.38 239.00 387.38 17.00 MacLine -grestore -1.00 ps -386.88 13.50 386.88 17.00 MacLine -386.88 242.50 386.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -380.25 239.00 380.25 17.00 MacLine -grestore -1.00 ps -379.75 13.50 379.75 17.00 MacLine -379.75 242.50 379.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.12 239.00 373.12 17.00 MacLine -grestore -1.00 ps -372.62 13.50 372.62 17.00 MacLine -372.62 242.50 372.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -365.88 235.50 365.88 20.50 MacLine -grestore -1.00 ps -365.50 13.50 365.50 20.50 MacLine -365.50 242.50 365.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 361.62 259.88 8.88 WS -gsave 0.125 ps [1] sd -358.88 239.00 358.88 17.00 MacLine -grestore -1.00 ps -358.38 13.50 358.38 17.00 MacLine -358.38 242.50 358.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -351.75 239.00 351.75 17.00 MacLine -grestore -1.00 ps -351.25 13.50 351.25 17.00 MacLine -351.25 242.50 351.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -344.62 239.00 344.62 17.00 MacLine -grestore -1.00 ps -344.12 13.50 344.12 17.00 MacLine -344.12 242.50 344.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -337.50 239.00 337.50 17.00 MacLine -grestore -1.00 ps -337.00 13.50 337.00 17.00 MacLine -337.00 242.50 337.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -330.38 237.25 330.38 18.75 MacLine -grestore -1.00 ps -329.88 13.50 329.88 18.75 MacLine -329.88 242.50 329.88 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 239.00 323.25 17.00 MacLine -grestore -1.00 ps -322.75 13.50 322.75 17.00 MacLine -322.75 242.50 322.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.12 239.00 316.12 17.00 MacLine -grestore -1.00 ps -315.62 13.50 315.62 17.00 MacLine -315.62 242.50 315.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -308.88 239.00 308.88 17.00 MacLine -grestore -1.00 ps -308.38 13.50 308.38 17.00 MacLine -308.38 242.50 308.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -301.75 239.00 301.75 17.00 MacLine -grestore -1.00 ps -301.25 13.50 301.25 17.00 MacLine -301.25 242.50 301.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -294.50 235.50 294.50 20.50 MacLine -grestore -1.00 ps -294.12 13.50 294.12 20.50 MacLine -294.12 242.50 294.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 290.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -287.50 239.00 287.50 17.00 MacLine -grestore -1.00 ps -287.00 13.50 287.00 17.00 MacLine -287.00 242.50 287.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -280.38 239.00 280.38 17.00 MacLine -grestore -1.00 ps -279.88 13.50 279.88 17.00 MacLine -279.88 242.50 279.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -273.25 239.00 273.25 17.00 MacLine -grestore -1.00 ps -272.75 13.50 272.75 17.00 MacLine -272.75 242.50 272.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.12 239.00 266.12 17.00 MacLine -grestore -1.00 ps -265.62 13.50 265.62 17.00 MacLine -265.62 242.50 265.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -259.00 237.25 259.00 18.75 MacLine -grestore -1.00 ps -258.50 13.50 258.50 18.75 MacLine -258.50 242.50 258.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -251.88 239.00 251.88 17.00 MacLine -grestore -1.00 ps -251.38 13.50 251.38 17.00 MacLine -251.38 242.50 251.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -244.75 239.00 244.75 17.00 MacLine -grestore -1.00 ps -244.25 13.50 244.25 17.00 MacLine -244.25 242.50 244.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -237.62 239.00 237.62 17.00 MacLine -grestore -1.00 ps -237.12 13.50 237.12 17.00 MacLine -237.12 242.50 237.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -230.50 239.00 230.50 17.00 MacLine -grestore -1.00 ps -230.00 13.50 230.00 17.00 MacLine -230.00 242.50 230.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-2) 216.25 259.88 14.25 WS -gsave 0.125 ps [1] sd -216.25 239.00 216.25 17.00 MacLine -grestore -1.00 ps -215.75 13.50 215.75 17.00 MacLine -215.75 242.50 215.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -209.12 239.00 209.12 17.00 MacLine -grestore -1.00 ps -208.62 13.50 208.62 17.00 MacLine -208.62 242.50 208.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -202.00 239.00 202.00 17.00 MacLine -grestore -1.00 ps -201.50 13.50 201.50 17.00 MacLine -201.50 242.50 201.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -194.88 239.00 194.88 17.00 MacLine -grestore -1.00 ps -194.38 13.50 194.38 17.00 MacLine -194.38 242.50 194.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -187.75 237.25 187.75 18.75 MacLine -grestore -1.00 ps -187.25 13.50 187.25 18.75 MacLine -187.25 242.50 187.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -180.62 239.00 180.62 17.00 MacLine -grestore -1.00 ps -180.12 13.50 180.12 17.00 MacLine -180.12 242.50 180.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -173.50 239.00 173.50 17.00 MacLine -grestore -1.00 ps -173.00 13.50 173.00 17.00 MacLine -173.00 242.50 173.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -166.38 239.00 166.38 17.00 MacLine -grestore -1.00 ps -165.88 13.50 165.88 17.00 MacLine -165.88 242.50 165.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.25 239.00 159.25 17.00 MacLine -grestore -1.00 ps -158.75 13.50 158.75 17.00 MacLine -158.75 242.50 158.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -152.00 235.50 152.00 20.50 MacLine -grestore -1.00 ps -151.62 13.50 151.62 20.50 MacLine -151.62 242.50 151.62 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-4) 145.00 259.88 14.25 WS -gsave 0.125 ps [1] sd -145.00 239.00 145.00 17.00 MacLine -grestore -1.00 ps -144.50 13.50 144.50 17.00 MacLine -144.50 242.50 144.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -137.88 239.00 137.88 17.00 MacLine -grestore -1.00 ps -137.38 13.50 137.38 17.00 MacLine -137.38 242.50 137.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -130.75 239.00 130.75 17.00 MacLine -grestore -1.00 ps -130.25 13.50 130.25 17.00 MacLine -130.25 242.50 130.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -123.62 239.00 123.62 17.00 MacLine -grestore -1.00 ps -123.12 13.50 123.12 17.00 MacLine -123.12 242.50 123.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -116.50 237.25 116.50 18.75 MacLine -grestore -1.00 ps -116.00 13.50 116.00 18.75 MacLine -116.00 242.50 116.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -109.38 239.00 109.38 17.00 MacLine -grestore -1.00 ps -108.88 13.50 108.88 17.00 MacLine -108.88 242.50 108.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.25 239.00 102.25 17.00 MacLine -grestore -1.00 ps -101.75 13.50 101.75 17.00 MacLine -101.75 242.50 101.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -95.12 239.00 95.12 17.00 MacLine -grestore -1.00 ps -94.62 13.50 94.62 17.00 MacLine -94.62 242.50 94.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -88.00 239.00 88.00 17.00 MacLine -grestore -1.00 ps -87.50 13.50 87.50 17.00 MacLine -87.50 242.50 87.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -80.75 235.50 80.75 20.50 MacLine -grestore -1.00 ps -80.38 13.50 80.38 20.50 MacLine -80.38 242.50 80.38 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-6) 73.75 259.88 14.25 WS -gsave 0.125 ps [1] sd -73.75 239.00 73.75 17.00 MacLine -grestore -1.00 ps -73.25 13.50 73.25 17.00 MacLine -73.25 242.50 73.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.62 239.00 66.62 17.00 MacLine -grestore -1.00 ps -66.12 13.50 66.12 17.00 MacLine -66.12 242.50 66.12 239.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(t \(s\)) 298.62 284.38 27.75 WS -2.00 ps -newpath 63.12 242.88 M -68.12 243.00 L -73.12 242.88 L -78.12 242.50 L -83.12 241.88 L -88.25 241.00 L -93.25 239.88 L -98.38 238.50 L -103.38 236.88 L -108.38 235.12 L -113.50 233.00 L -118.50 230.88 L -123.50 228.38 L -128.50 225.75 L -133.62 223.00 L -138.62 220.00 L -143.62 216.88 L -148.75 213.62 L -153.75 210.12 L -158.88 206.50 L -163.88 202.75 L -168.88 199.00 L -173.88 195.00 L -179.00 190.88 L -184.00 186.75 L -189.00 182.38 L -194.12 178.00 L -199.12 173.62 L -204.12 169.00 L -209.25 164.50 L -214.25 159.75 L -219.25 155.12 L -224.25 150.38 L -229.38 145.62 L -234.38 140.75 L -239.50 135.88 L -244.50 131.12 L -249.50 126.25 L -254.62 121.38 L -259.62 116.62 L -264.62 111.75 L -269.62 107.00 L -274.75 102.25 L -279.75 97.50 L -284.75 92.88 L -289.88 88.25 L -294.88 83.75 L -300.00 79.25 L -305.00 74.88 L -310.00 70.62 L -315.00 66.38 L -320.00 62.25 L -325.00 58.25 L -330.12 54.50 L -335.12 50.75 L -340.25 47.12 L -345.25 43.62 L -350.25 40.38 L -355.38 37.25 L -360.38 34.25 L -365.38 31.38 L -370.38 28.75 L -375.50 26.38 L -380.50 24.12 L -385.50 22.00 L -390.62 20.25 L -395.62 18.62 L -400.75 17.25 L -405.75 16.12 L -410.75 15.12 L -415.75 14.50 L -420.88 14.12 L -425.88 14.00 L -430.88 14.12 L -436.00 14.62 L -441.00 15.38 L -446.00 16.38 L -451.12 17.62 L -456.12 19.25 L -461.12 21.25 L -466.12 23.50 L -471.25 26.12 L -476.25 29.12 L -481.38 32.38 L -486.38 36.00 L -491.38 40.12 L -496.50 44.50 L -501.50 49.25 L -506.50 54.50 L -511.50 60.00 L -516.62 66.00 L -521.62 72.38 L -526.62 79.25 L -531.75 86.50 L -536.75 94.12 L -541.88 102.25 L -546.88 110.88 L -551.88 119.88 L -556.88 129.38 L -561.88 139.38 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v6.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v6.gif deleted file mode 100755 index 5c7e315ea..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v6.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v7.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v7.eps deleted file mode 100755 index 4bcbd1180..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v7.eps +++ /dev/null @@ -1,1194 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_y7 -%%Creation Date: Sun, Sep 10, 1995 06:45 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 16.12 558.00 16.12 MacLine -grestore -1.00 ps -561.50 15.62 558.00 15.62 MacLine -62.50 15.62 66.00 15.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 23.75 558.00 23.75 MacLine -grestore -1.00 ps -561.50 23.25 558.00 23.25 MacLine -62.50 23.25 66.00 23.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 31.50 558.00 31.50 MacLine -grestore -1.00 ps -561.50 31.00 558.00 31.00 MacLine -62.50 31.00 66.00 31.00 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 39.00 554.50 39.00 MacLine -grestore -1.00 ps -561.50 38.62 554.50 38.62 MacLine -62.50 38.62 69.50 38.62 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(600) 32.38 43.50 26.62 WS -gsave 0.125 ps [1] sd -66.00 46.88 558.00 46.88 MacLine -grestore -1.00 ps -561.50 46.38 558.00 46.38 MacLine -62.50 46.38 66.00 46.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 54.50 558.00 54.50 MacLine -grestore -1.00 ps -561.50 54.00 558.00 54.00 MacLine -62.50 54.00 66.00 54.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 62.12 558.00 62.12 MacLine -grestore -1.00 ps -561.50 61.62 558.00 61.62 MacLine -62.50 61.62 66.00 61.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 69.88 558.00 69.88 MacLine -grestore -1.00 ps -561.50 69.38 558.00 69.38 MacLine -62.50 69.38 66.00 69.38 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 77.38 554.50 77.38 MacLine -grestore -1.00 ps -561.50 77.00 554.50 77.00 MacLine -62.50 77.00 69.50 77.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(500) 32.38 81.88 26.62 WS -gsave 0.125 ps [1] sd -66.00 85.25 558.00 85.25 MacLine -grestore -1.00 ps -561.50 84.75 558.00 84.75 MacLine -62.50 84.75 66.00 84.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 92.88 558.00 92.88 MacLine -grestore -1.00 ps -561.50 92.38 558.00 92.38 MacLine -62.50 92.38 66.00 92.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 100.50 558.00 100.50 MacLine -grestore -1.00 ps -561.50 100.00 558.00 100.00 MacLine -62.50 100.00 66.00 100.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 108.25 558.00 108.25 MacLine -grestore -1.00 ps -561.50 107.75 558.00 107.75 MacLine -62.50 107.75 66.00 107.75 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 115.75 554.50 115.75 MacLine -grestore -1.00 ps -561.50 115.38 554.50 115.38 MacLine -62.50 115.38 69.50 115.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(400) 32.38 120.25 26.62 WS -gsave 0.125 ps [1] sd -66.00 123.50 558.00 123.50 MacLine -grestore -1.00 ps -561.50 123.00 558.00 123.00 MacLine -62.50 123.00 66.00 123.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 131.25 558.00 131.25 MacLine -grestore -1.00 ps -561.50 130.75 558.00 130.75 MacLine -62.50 130.75 66.00 130.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 138.88 558.00 138.88 MacLine -grestore -1.00 ps -561.50 138.38 558.00 138.38 MacLine -62.50 138.38 66.00 138.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 146.62 558.00 146.62 MacLine -grestore -1.00 ps -561.50 146.12 558.00 146.12 MacLine -62.50 146.12 66.00 146.12 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 154.12 554.50 154.12 MacLine -grestore -1.00 ps -561.50 153.75 554.50 153.75 MacLine -62.50 153.75 69.50 153.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(300) 32.38 158.62 26.62 WS -gsave 0.125 ps [1] sd -66.00 161.88 558.00 161.88 MacLine -grestore -1.00 ps -561.50 161.38 558.00 161.38 MacLine -62.50 161.38 66.00 161.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 169.62 558.00 169.62 MacLine -grestore -1.00 ps -561.50 169.12 558.00 169.12 MacLine -62.50 169.12 66.00 169.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 177.25 558.00 177.25 MacLine -grestore -1.00 ps -561.50 176.75 558.00 176.75 MacLine -62.50 176.75 66.00 176.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 185.00 558.00 185.00 MacLine -grestore -1.00 ps -561.50 184.50 558.00 184.50 MacLine -62.50 184.50 66.00 184.50 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 192.50 554.50 192.50 MacLine -grestore -1.00 ps -561.50 192.12 554.50 192.12 MacLine -62.50 192.12 69.50 192.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(200) 32.38 197.00 26.62 WS -gsave 0.125 ps [1] sd -66.00 200.25 558.00 200.25 MacLine -grestore -1.00 ps -561.50 199.75 558.00 199.75 MacLine -62.50 199.75 66.00 199.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 208.00 558.00 208.00 MacLine -grestore -1.00 ps -561.50 207.50 558.00 207.50 MacLine -62.50 207.50 66.00 207.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 215.62 558.00 215.62 MacLine -grestore -1.00 ps -561.50 215.12 558.00 215.12 MacLine -62.50 215.12 66.00 215.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 223.38 558.00 223.38 MacLine -grestore -1.00 ps -561.50 222.88 558.00 222.88 MacLine -62.50 222.88 66.00 222.88 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 230.88 554.50 230.88 MacLine -grestore -1.00 ps -561.50 230.50 554.50 230.50 MacLine -62.50 230.50 69.50 230.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(100) 32.38 235.38 26.62 WS -gsave 0.125 ps [1] sd -66.00 238.62 558.00 238.62 MacLine -grestore -1.00 ps -561.50 238.12 558.00 238.12 MacLine -62.50 238.12 66.00 238.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(y \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -558.38 239.00 558.38 17.00 MacLine -grestore -1.00 ps -557.88 13.50 557.88 17.00 MacLine -557.88 242.50 557.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -551.25 239.00 551.25 17.00 MacLine -grestore -1.00 ps -550.75 13.50 550.75 17.00 MacLine -550.75 242.50 550.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -544.12 237.25 544.12 18.75 MacLine -grestore -1.00 ps -543.62 13.50 543.62 18.75 MacLine -543.62 242.50 543.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -537.00 239.00 537.00 17.00 MacLine -grestore -1.00 ps -536.50 13.50 536.50 17.00 MacLine -536.50 242.50 536.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -529.88 239.00 529.88 17.00 MacLine -grestore -1.00 ps -529.38 13.50 529.38 17.00 MacLine -529.38 242.50 529.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.75 239.00 522.75 17.00 MacLine -grestore -1.00 ps -522.25 13.50 522.25 17.00 MacLine -522.25 242.50 522.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -515.62 239.00 515.62 17.00 MacLine -grestore -1.00 ps -515.12 13.50 515.12 17.00 MacLine -515.12 242.50 515.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -508.38 235.50 508.38 20.50 MacLine -grestore -1.00 ps -508.00 13.50 508.00 20.50 MacLine -508.00 242.50 508.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 504.12 259.88 8.88 WS -gsave 0.125 ps [1] sd -501.38 239.00 501.38 17.00 MacLine -grestore -1.00 ps -500.88 13.50 500.88 17.00 MacLine -500.88 242.50 500.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -494.25 239.00 494.25 17.00 MacLine -grestore -1.00 ps -493.75 13.50 493.75 17.00 MacLine -493.75 242.50 493.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.12 239.00 487.12 17.00 MacLine -grestore -1.00 ps -486.62 13.50 486.62 17.00 MacLine -486.62 242.50 486.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.00 239.00 480.00 17.00 MacLine -grestore -1.00 ps -479.50 13.50 479.50 17.00 MacLine -479.50 242.50 479.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.88 237.25 472.88 18.75 MacLine -grestore -1.00 ps -472.38 13.50 472.38 18.75 MacLine -472.38 242.50 472.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -465.75 239.00 465.75 17.00 MacLine -grestore -1.00 ps -465.25 13.50 465.25 17.00 MacLine -465.25 242.50 465.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -458.62 239.00 458.62 17.00 MacLine -grestore -1.00 ps -458.12 13.50 458.12 17.00 MacLine -458.12 242.50 458.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -451.50 239.00 451.50 17.00 MacLine -grestore -1.00 ps -451.00 13.50 451.00 17.00 MacLine -451.00 242.50 451.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -444.38 239.00 444.38 17.00 MacLine -grestore -1.00 ps -443.88 13.50 443.88 17.00 MacLine -443.88 242.50 443.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -437.12 235.50 437.12 20.50 MacLine -grestore -1.00 ps -436.75 13.50 436.75 20.50 MacLine -436.75 242.50 436.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 432.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -430.12 239.00 430.12 17.00 MacLine -grestore -1.00 ps -429.62 13.50 429.62 17.00 MacLine -429.62 242.50 429.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -423.00 239.00 423.00 17.00 MacLine -grestore -1.00 ps -422.50 13.50 422.50 17.00 MacLine -422.50 242.50 422.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -415.88 239.00 415.88 17.00 MacLine -grestore -1.00 ps -415.38 13.50 415.38 17.00 MacLine -415.38 242.50 415.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -408.75 239.00 408.75 17.00 MacLine -grestore -1.00 ps -408.25 13.50 408.25 17.00 MacLine -408.25 242.50 408.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -401.62 237.25 401.62 18.75 MacLine -grestore -1.00 ps -401.12 13.50 401.12 18.75 MacLine -401.12 242.50 401.12 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -394.50 239.00 394.50 17.00 MacLine -grestore -1.00 ps -394.00 13.50 394.00 17.00 MacLine -394.00 242.50 394.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -387.38 239.00 387.38 17.00 MacLine -grestore -1.00 ps -386.88 13.50 386.88 17.00 MacLine -386.88 242.50 386.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -380.25 239.00 380.25 17.00 MacLine -grestore -1.00 ps -379.75 13.50 379.75 17.00 MacLine -379.75 242.50 379.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.12 239.00 373.12 17.00 MacLine -grestore -1.00 ps -372.62 13.50 372.62 17.00 MacLine -372.62 242.50 372.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -365.88 235.50 365.88 20.50 MacLine -grestore -1.00 ps -365.50 13.50 365.50 20.50 MacLine -365.50 242.50 365.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 361.62 259.88 8.88 WS -gsave 0.125 ps [1] sd -358.88 239.00 358.88 17.00 MacLine -grestore -1.00 ps -358.38 13.50 358.38 17.00 MacLine -358.38 242.50 358.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -351.75 239.00 351.75 17.00 MacLine -grestore -1.00 ps -351.25 13.50 351.25 17.00 MacLine -351.25 242.50 351.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -344.62 239.00 344.62 17.00 MacLine -grestore -1.00 ps -344.12 13.50 344.12 17.00 MacLine -344.12 242.50 344.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -337.50 239.00 337.50 17.00 MacLine -grestore -1.00 ps -337.00 13.50 337.00 17.00 MacLine -337.00 242.50 337.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -330.38 237.25 330.38 18.75 MacLine -grestore -1.00 ps -329.88 13.50 329.88 18.75 MacLine -329.88 242.50 329.88 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 239.00 323.25 17.00 MacLine -grestore -1.00 ps -322.75 13.50 322.75 17.00 MacLine -322.75 242.50 322.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.12 239.00 316.12 17.00 MacLine -grestore -1.00 ps -315.62 13.50 315.62 17.00 MacLine -315.62 242.50 315.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -308.88 239.00 308.88 17.00 MacLine -grestore -1.00 ps -308.38 13.50 308.38 17.00 MacLine -308.38 242.50 308.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -301.75 239.00 301.75 17.00 MacLine -grestore -1.00 ps -301.25 13.50 301.25 17.00 MacLine -301.25 242.50 301.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -294.50 235.50 294.50 20.50 MacLine -grestore -1.00 ps -294.12 13.50 294.12 20.50 MacLine -294.12 242.50 294.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 290.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -287.50 239.00 287.50 17.00 MacLine -grestore -1.00 ps -287.00 13.50 287.00 17.00 MacLine -287.00 242.50 287.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -280.38 239.00 280.38 17.00 MacLine -grestore -1.00 ps -279.88 13.50 279.88 17.00 MacLine -279.88 242.50 279.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -273.25 239.00 273.25 17.00 MacLine -grestore -1.00 ps -272.75 13.50 272.75 17.00 MacLine -272.75 242.50 272.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.12 239.00 266.12 17.00 MacLine -grestore -1.00 ps -265.62 13.50 265.62 17.00 MacLine -265.62 242.50 265.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -259.00 237.25 259.00 18.75 MacLine -grestore -1.00 ps -258.50 13.50 258.50 18.75 MacLine -258.50 242.50 258.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -251.88 239.00 251.88 17.00 MacLine -grestore -1.00 ps -251.38 13.50 251.38 17.00 MacLine -251.38 242.50 251.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -244.75 239.00 244.75 17.00 MacLine -grestore -1.00 ps -244.25 13.50 244.25 17.00 MacLine -244.25 242.50 244.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -237.62 239.00 237.62 17.00 MacLine -grestore -1.00 ps -237.12 13.50 237.12 17.00 MacLine -237.12 242.50 237.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -230.50 239.00 230.50 17.00 MacLine -grestore -1.00 ps -230.00 13.50 230.00 17.00 MacLine -230.00 242.50 230.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-2) 216.25 259.88 14.25 WS -gsave 0.125 ps [1] sd -216.25 239.00 216.25 17.00 MacLine -grestore -1.00 ps -215.75 13.50 215.75 17.00 MacLine -215.75 242.50 215.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -209.12 239.00 209.12 17.00 MacLine -grestore -1.00 ps -208.62 13.50 208.62 17.00 MacLine -208.62 242.50 208.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -202.00 239.00 202.00 17.00 MacLine -grestore -1.00 ps -201.50 13.50 201.50 17.00 MacLine -201.50 242.50 201.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -194.88 239.00 194.88 17.00 MacLine -grestore -1.00 ps -194.38 13.50 194.38 17.00 MacLine -194.38 242.50 194.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -187.75 237.25 187.75 18.75 MacLine -grestore -1.00 ps -187.25 13.50 187.25 18.75 MacLine -187.25 242.50 187.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -180.62 239.00 180.62 17.00 MacLine -grestore -1.00 ps -180.12 13.50 180.12 17.00 MacLine -180.12 242.50 180.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -173.50 239.00 173.50 17.00 MacLine -grestore -1.00 ps -173.00 13.50 173.00 17.00 MacLine -173.00 242.50 173.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -166.38 239.00 166.38 17.00 MacLine -grestore -1.00 ps -165.88 13.50 165.88 17.00 MacLine -165.88 242.50 165.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.25 239.00 159.25 17.00 MacLine -grestore -1.00 ps -158.75 13.50 158.75 17.00 MacLine -158.75 242.50 158.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -152.00 235.50 152.00 20.50 MacLine -grestore -1.00 ps -151.62 13.50 151.62 20.50 MacLine -151.62 242.50 151.62 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-4) 145.00 259.88 14.25 WS -gsave 0.125 ps [1] sd -145.00 239.00 145.00 17.00 MacLine -grestore -1.00 ps -144.50 13.50 144.50 17.00 MacLine -144.50 242.50 144.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -137.88 239.00 137.88 17.00 MacLine -grestore -1.00 ps -137.38 13.50 137.38 17.00 MacLine -137.38 242.50 137.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -130.75 239.00 130.75 17.00 MacLine -grestore -1.00 ps -130.25 13.50 130.25 17.00 MacLine -130.25 242.50 130.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -123.62 239.00 123.62 17.00 MacLine -grestore -1.00 ps -123.12 13.50 123.12 17.00 MacLine -123.12 242.50 123.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -116.50 237.25 116.50 18.75 MacLine -grestore -1.00 ps -116.00 13.50 116.00 18.75 MacLine -116.00 242.50 116.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -109.38 239.00 109.38 17.00 MacLine -grestore -1.00 ps -108.88 13.50 108.88 17.00 MacLine -108.88 242.50 108.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.25 239.00 102.25 17.00 MacLine -grestore -1.00 ps -101.75 13.50 101.75 17.00 MacLine -101.75 242.50 101.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -95.12 239.00 95.12 17.00 MacLine -grestore -1.00 ps -94.62 13.50 94.62 17.00 MacLine -94.62 242.50 94.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -88.00 239.00 88.00 17.00 MacLine -grestore -1.00 ps -87.50 13.50 87.50 17.00 MacLine -87.50 242.50 87.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -80.75 235.50 80.75 20.50 MacLine -grestore -1.00 ps -80.38 13.50 80.38 20.50 MacLine -80.38 242.50 80.38 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-6) 73.75 259.88 14.25 WS -gsave 0.125 ps [1] sd -73.75 239.00 73.75 17.00 MacLine -grestore -1.00 ps -73.25 13.50 73.25 17.00 MacLine -73.25 242.50 73.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.62 239.00 66.62 17.00 MacLine -grestore -1.00 ps -66.12 13.50 66.12 17.00 MacLine -66.12 242.50 66.12 239.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(t \(s\)) 298.62 284.38 27.75 WS -2.00 ps -newpath 63.12 143.62 M -68.12 149.62 L -73.12 155.25 L -78.12 160.25 L -83.12 164.75 L -88.25 168.75 L -93.25 172.38 L -98.38 175.38 L -103.38 178.12 L -108.38 180.38 L -113.50 182.12 L -118.50 183.50 L -123.50 184.50 L -128.50 185.12 L -133.62 185.38 L -138.62 185.38 L -143.62 184.88 L -148.75 184.12 L -153.75 183.00 L -158.88 181.62 L -163.88 180.00 L -168.88 178.00 L -173.88 175.75 L -179.00 173.38 L -184.00 170.62 L -189.00 167.75 L -194.12 164.50 L -199.12 161.25 L -204.12 157.62 L -209.25 154.00 L -214.25 150.12 L -219.25 146.12 L -224.25 142.00 L -229.38 137.75 L -234.38 133.38 L -239.50 128.88 L -244.50 124.38 L -249.50 119.75 L -254.62 115.12 L -259.62 110.38 L -264.62 105.62 L -269.62 100.88 L -274.75 96.12 L -279.75 91.38 L -284.75 86.62 L -289.88 82.00 L -294.88 77.38 L -300.00 72.75 L -305.00 68.25 L -310.00 63.88 L -315.00 59.62 L -320.00 55.38 L -325.00 51.25 L -330.12 47.38 L -335.12 43.62 L -340.25 40.00 L -345.25 36.50 L -350.25 33.25 L -355.38 30.25 L -360.38 27.38 L -365.38 24.88 L -370.38 22.50 L -375.50 20.38 L -380.50 18.62 L -385.50 17.00 L -390.62 15.88 L -395.62 14.88 L -400.75 14.25 L -405.75 14.00 L -410.75 14.12 L -415.75 14.50 L -420.88 15.38 L -425.88 16.50 L -430.88 18.12 L -436.00 20.12 L -441.00 22.62 L -446.00 25.50 L -451.12 28.88 L -456.12 32.62 L -461.12 36.88 L -466.12 41.62 L -471.25 46.88 L -476.25 52.75 L -481.38 59.00 L -486.38 65.88 L -491.38 73.38 L -496.50 81.38 L -501.50 89.88 L -506.50 99.12 L -511.50 108.88 L -516.62 119.25 L -521.62 130.25 L -526.62 142.00 L -531.75 154.25 L -536.75 167.38 L -541.88 181.00 L -546.88 195.50 L -551.88 210.50 L -556.88 226.38 L -561.88 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v7.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v7.gif deleted file mode 100755 index 04ff32331..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v7.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v8.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v8.eps deleted file mode 100755 index f319a1bb5..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v8.eps +++ /dev/null @@ -1,1191 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_y8 -%%Creation Date: Sun, Sep 10, 1995 06:45 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 240.75 558.00 240.75 MacLine -grestore -1.00 ps -561.50 240.25 558.00 240.25 MacLine -62.50 240.25 66.00 240.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 232.88 558.00 232.88 MacLine -grestore -1.00 ps -561.50 232.38 558.00 232.38 MacLine -62.50 232.38 66.00 232.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 225.00 558.00 225.00 MacLine -grestore -1.00 ps -561.50 224.50 558.00 224.50 MacLine -62.50 224.50 66.00 224.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 217.12 558.00 217.12 MacLine -grestore -1.00 ps -561.50 216.62 558.00 216.62 MacLine -62.50 216.62 66.00 216.62 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 209.12 554.50 209.12 MacLine -grestore -1.00 ps -561.50 208.75 554.50 208.75 MacLine -62.50 208.75 69.50 208.75 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(-900) 27.00 213.62 32.00 WS -gsave 0.125 ps [1] sd -66.00 201.50 558.00 201.50 MacLine -grestore -1.00 ps -561.50 201.00 558.00 201.00 MacLine -62.50 201.00 66.00 201.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 193.62 558.00 193.62 MacLine -grestore -1.00 ps -561.50 193.12 558.00 193.12 MacLine -62.50 193.12 66.00 193.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -62.50 185.25 66.00 185.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 177.88 558.00 177.88 MacLine -grestore -1.00 ps -561.50 177.38 558.00 177.38 MacLine -62.50 177.38 66.00 177.38 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 169.88 554.50 169.88 MacLine -grestore -1.00 ps -561.50 169.50 554.50 169.50 MacLine -62.50 169.50 69.50 169.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-800) 27.00 174.38 32.00 WS -gsave 0.125 ps [1] sd -66.00 162.12 558.00 162.12 MacLine -grestore -1.00 ps -561.50 161.62 558.00 161.62 MacLine -62.50 161.62 66.00 161.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 154.38 558.00 154.38 MacLine -grestore -1.00 ps -561.50 153.88 558.00 153.88 MacLine -62.50 153.88 66.00 153.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 146.50 558.00 146.50 MacLine -grestore -1.00 ps -561.50 146.00 558.00 146.00 MacLine -62.50 146.00 66.00 146.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 138.62 558.00 138.62 MacLine -grestore -1.00 ps -561.50 138.12 558.00 138.12 MacLine -62.50 138.12 66.00 138.12 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 130.62 554.50 130.62 MacLine -grestore -1.00 ps -561.50 130.25 554.50 130.25 MacLine -62.50 130.25 69.50 130.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-700) 27.00 135.12 32.00 WS -gsave 0.125 ps [1] sd -66.00 122.88 558.00 122.88 MacLine -grestore -1.00 ps -561.50 122.38 558.00 122.38 MacLine -62.50 122.38 66.00 122.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 115.12 558.00 115.12 MacLine -grestore -1.00 ps -561.50 114.62 558.00 114.62 MacLine -62.50 114.62 66.00 114.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 107.25 558.00 107.25 MacLine -grestore -1.00 ps -561.50 106.75 558.00 106.75 MacLine -62.50 106.75 66.00 106.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 99.38 558.00 99.38 MacLine -grestore -1.00 ps -561.50 98.88 558.00 98.88 MacLine -62.50 98.88 66.00 98.88 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 91.38 554.50 91.38 MacLine -grestore -1.00 ps -561.50 91.00 554.50 91.00 MacLine -62.50 91.00 69.50 91.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-600) 27.00 95.88 32.00 WS -gsave 0.125 ps [1] sd -66.00 83.62 558.00 83.62 MacLine -grestore -1.00 ps -561.50 83.12 558.00 83.12 MacLine -62.50 83.12 66.00 83.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 75.88 558.00 75.88 MacLine -grestore -1.00 ps -561.50 75.38 558.00 75.38 MacLine -62.50 75.38 66.00 75.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 68.00 558.00 68.00 MacLine -grestore -1.00 ps -561.50 67.50 558.00 67.50 MacLine -62.50 67.50 66.00 67.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 60.12 558.00 60.12 MacLine -grestore -1.00 ps -561.50 59.62 558.00 59.62 MacLine -62.50 59.62 66.00 59.62 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 52.12 554.50 52.12 MacLine -grestore -1.00 ps -561.50 51.75 554.50 51.75 MacLine -62.50 51.75 69.50 51.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-500) 27.00 56.62 32.00 WS -gsave 0.125 ps [1] sd -66.00 44.38 558.00 44.38 MacLine -grestore -1.00 ps -561.50 43.88 558.00 43.88 MacLine -62.50 43.88 66.00 43.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 36.62 558.00 36.62 MacLine -grestore -1.00 ps -561.50 36.12 558.00 36.12 MacLine -62.50 36.12 66.00 36.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 28.75 558.00 28.75 MacLine -grestore -1.00 ps -561.50 28.25 558.00 28.25 MacLine -62.50 28.25 66.00 28.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 20.88 558.00 20.88 MacLine -grestore -1.00 ps -561.50 20.38 558.00 20.38 MacLine -62.50 20.38 66.00 20.38 MacLine -1 ps -1.00 ps -561.50 12.50 554.50 12.50 MacLine -62.50 12.50 69.50 12.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-400) 27.00 17.38 32.00 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(y \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -558.38 239.00 558.38 17.00 MacLine -grestore -1.00 ps -557.88 13.50 557.88 17.00 MacLine -557.88 242.50 557.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -551.25 239.00 551.25 17.00 MacLine -grestore -1.00 ps -550.75 13.50 550.75 17.00 MacLine -550.75 242.50 550.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -544.12 237.25 544.12 18.75 MacLine -grestore -1.00 ps -543.62 13.50 543.62 18.75 MacLine -543.62 242.50 543.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -537.00 239.00 537.00 17.00 MacLine -grestore -1.00 ps -536.50 13.50 536.50 17.00 MacLine -536.50 242.50 536.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -529.88 239.00 529.88 17.00 MacLine -grestore -1.00 ps -529.38 13.50 529.38 17.00 MacLine -529.38 242.50 529.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.75 239.00 522.75 17.00 MacLine -grestore -1.00 ps -522.25 13.50 522.25 17.00 MacLine -522.25 242.50 522.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -515.62 239.00 515.62 17.00 MacLine -grestore -1.00 ps -515.12 13.50 515.12 17.00 MacLine -515.12 242.50 515.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -508.38 235.50 508.38 20.50 MacLine -grestore -1.00 ps -508.00 13.50 508.00 20.50 MacLine -508.00 242.50 508.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 504.12 259.88 8.88 WS -gsave 0.125 ps [1] sd -501.38 239.00 501.38 17.00 MacLine -grestore -1.00 ps -500.88 13.50 500.88 17.00 MacLine -500.88 242.50 500.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -494.25 239.00 494.25 17.00 MacLine -grestore -1.00 ps -493.75 13.50 493.75 17.00 MacLine -493.75 242.50 493.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.12 239.00 487.12 17.00 MacLine -grestore -1.00 ps -486.62 13.50 486.62 17.00 MacLine -486.62 242.50 486.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.00 239.00 480.00 17.00 MacLine -grestore -1.00 ps -479.50 13.50 479.50 17.00 MacLine -479.50 242.50 479.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.88 237.25 472.88 18.75 MacLine -grestore -1.00 ps -472.38 13.50 472.38 18.75 MacLine -472.38 242.50 472.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -465.75 239.00 465.75 17.00 MacLine -grestore -1.00 ps -465.25 13.50 465.25 17.00 MacLine -465.25 242.50 465.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -458.62 239.00 458.62 17.00 MacLine -grestore -1.00 ps -458.12 13.50 458.12 17.00 MacLine -458.12 242.50 458.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -451.50 239.00 451.50 17.00 MacLine -grestore -1.00 ps -451.00 13.50 451.00 17.00 MacLine -451.00 242.50 451.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -444.38 239.00 444.38 17.00 MacLine -grestore -1.00 ps -443.88 13.50 443.88 17.00 MacLine -443.88 242.50 443.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -437.12 235.50 437.12 20.50 MacLine -grestore -1.00 ps -436.75 13.50 436.75 20.50 MacLine -436.75 242.50 436.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 432.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -430.12 239.00 430.12 17.00 MacLine -grestore -1.00 ps -429.62 13.50 429.62 17.00 MacLine -429.62 242.50 429.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -423.00 239.00 423.00 17.00 MacLine -grestore -1.00 ps -422.50 13.50 422.50 17.00 MacLine -422.50 242.50 422.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -415.88 239.00 415.88 17.00 MacLine -grestore -1.00 ps -415.38 13.50 415.38 17.00 MacLine -415.38 242.50 415.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -408.75 239.00 408.75 17.00 MacLine -grestore -1.00 ps -408.25 13.50 408.25 17.00 MacLine -408.25 242.50 408.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -401.62 237.25 401.62 18.75 MacLine -grestore -1.00 ps -401.12 13.50 401.12 18.75 MacLine -401.12 242.50 401.12 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -394.50 239.00 394.50 17.00 MacLine -grestore -1.00 ps -394.00 13.50 394.00 17.00 MacLine -394.00 242.50 394.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -387.38 239.00 387.38 17.00 MacLine -grestore -1.00 ps -386.88 13.50 386.88 17.00 MacLine -386.88 242.50 386.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -380.25 239.00 380.25 17.00 MacLine -grestore -1.00 ps -379.75 13.50 379.75 17.00 MacLine -379.75 242.50 379.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.12 239.00 373.12 17.00 MacLine -grestore -1.00 ps -372.62 13.50 372.62 17.00 MacLine -372.62 242.50 372.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -365.88 235.50 365.88 20.50 MacLine -grestore -1.00 ps -365.50 13.50 365.50 20.50 MacLine -365.50 242.50 365.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 361.62 259.88 8.88 WS -gsave 0.125 ps [1] sd -358.88 239.00 358.88 17.00 MacLine -grestore -1.00 ps -358.38 13.50 358.38 17.00 MacLine -358.38 242.50 358.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -351.75 239.00 351.75 17.00 MacLine -grestore -1.00 ps -351.25 13.50 351.25 17.00 MacLine -351.25 242.50 351.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -344.62 239.00 344.62 17.00 MacLine -grestore -1.00 ps -344.12 13.50 344.12 17.00 MacLine -344.12 242.50 344.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -337.50 239.00 337.50 17.00 MacLine -grestore -1.00 ps -337.00 13.50 337.00 17.00 MacLine -337.00 242.50 337.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -330.38 237.25 330.38 18.75 MacLine -grestore -1.00 ps -329.88 13.50 329.88 18.75 MacLine -329.88 242.50 329.88 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 239.00 323.25 17.00 MacLine -grestore -1.00 ps -322.75 13.50 322.75 17.00 MacLine -322.75 242.50 322.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.12 239.00 316.12 17.00 MacLine -grestore -1.00 ps -315.62 13.50 315.62 17.00 MacLine -315.62 242.50 315.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -308.88 239.00 308.88 17.00 MacLine -grestore -1.00 ps -308.38 13.50 308.38 17.00 MacLine -308.38 242.50 308.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -301.75 239.00 301.75 17.00 MacLine -grestore -1.00 ps -301.25 13.50 301.25 17.00 MacLine -301.25 242.50 301.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -294.50 235.50 294.50 20.50 MacLine -grestore -1.00 ps -294.12 13.50 294.12 20.50 MacLine -294.12 242.50 294.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 290.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -287.50 239.00 287.50 17.00 MacLine -grestore -1.00 ps -287.00 13.50 287.00 17.00 MacLine -287.00 242.50 287.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -280.38 239.00 280.38 17.00 MacLine -grestore -1.00 ps -279.88 13.50 279.88 17.00 MacLine -279.88 242.50 279.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -273.25 239.00 273.25 17.00 MacLine -grestore -1.00 ps -272.75 13.50 272.75 17.00 MacLine -272.75 242.50 272.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.12 239.00 266.12 17.00 MacLine -grestore -1.00 ps -265.62 13.50 265.62 17.00 MacLine -265.62 242.50 265.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -259.00 237.25 259.00 18.75 MacLine -grestore -1.00 ps -258.50 13.50 258.50 18.75 MacLine -258.50 242.50 258.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -251.88 239.00 251.88 17.00 MacLine -grestore -1.00 ps -251.38 13.50 251.38 17.00 MacLine -251.38 242.50 251.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -244.75 239.00 244.75 17.00 MacLine -grestore -1.00 ps -244.25 13.50 244.25 17.00 MacLine -244.25 242.50 244.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -237.62 239.00 237.62 17.00 MacLine -grestore -1.00 ps -237.12 13.50 237.12 17.00 MacLine -237.12 242.50 237.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -230.50 239.00 230.50 17.00 MacLine -grestore -1.00 ps -230.00 13.50 230.00 17.00 MacLine -230.00 242.50 230.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-2) 216.25 259.88 14.25 WS -gsave 0.125 ps [1] sd -216.25 239.00 216.25 17.00 MacLine -grestore -1.00 ps -215.75 13.50 215.75 17.00 MacLine -215.75 242.50 215.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -209.12 239.00 209.12 17.00 MacLine -grestore -1.00 ps -208.62 13.50 208.62 17.00 MacLine -208.62 242.50 208.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -202.00 239.00 202.00 17.00 MacLine -grestore -1.00 ps -201.50 13.50 201.50 17.00 MacLine -201.50 242.50 201.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -194.88 239.00 194.88 17.00 MacLine -grestore -1.00 ps -194.38 13.50 194.38 17.00 MacLine -194.38 242.50 194.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -187.75 237.25 187.75 18.75 MacLine -grestore -1.00 ps -187.25 13.50 187.25 18.75 MacLine -187.25 242.50 187.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -180.62 239.00 180.62 17.00 MacLine -grestore -1.00 ps -180.12 13.50 180.12 17.00 MacLine -180.12 242.50 180.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -173.50 239.00 173.50 17.00 MacLine -grestore -1.00 ps -173.00 13.50 173.00 17.00 MacLine -173.00 242.50 173.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -166.38 239.00 166.38 17.00 MacLine -grestore -1.00 ps -165.88 13.50 165.88 17.00 MacLine -165.88 242.50 165.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.25 239.00 159.25 17.00 MacLine -grestore -1.00 ps -158.75 13.50 158.75 17.00 MacLine -158.75 242.50 158.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -152.00 235.50 152.00 20.50 MacLine -grestore -1.00 ps -151.62 13.50 151.62 20.50 MacLine -151.62 242.50 151.62 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-4) 145.00 259.88 14.25 WS -gsave 0.125 ps [1] sd -145.00 239.00 145.00 17.00 MacLine -grestore -1.00 ps -144.50 13.50 144.50 17.00 MacLine -144.50 242.50 144.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -137.88 239.00 137.88 17.00 MacLine -grestore -1.00 ps -137.38 13.50 137.38 17.00 MacLine -137.38 242.50 137.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -130.75 239.00 130.75 17.00 MacLine -grestore -1.00 ps -130.25 13.50 130.25 17.00 MacLine -130.25 242.50 130.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -123.62 239.00 123.62 17.00 MacLine -grestore -1.00 ps -123.12 13.50 123.12 17.00 MacLine -123.12 242.50 123.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -116.50 237.25 116.50 18.75 MacLine -grestore -1.00 ps -116.00 13.50 116.00 18.75 MacLine -116.00 242.50 116.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -109.38 239.00 109.38 17.00 MacLine -grestore -1.00 ps -108.88 13.50 108.88 17.00 MacLine -108.88 242.50 108.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.25 239.00 102.25 17.00 MacLine -grestore -1.00 ps -101.75 13.50 101.75 17.00 MacLine -101.75 242.50 101.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -95.12 239.00 95.12 17.00 MacLine -grestore -1.00 ps -94.62 13.50 94.62 17.00 MacLine -94.62 242.50 94.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -88.00 239.00 88.00 17.00 MacLine -grestore -1.00 ps -87.50 13.50 87.50 17.00 MacLine -87.50 242.50 87.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -80.75 235.50 80.75 20.50 MacLine -grestore -1.00 ps -80.38 13.50 80.38 20.50 MacLine -80.38 242.50 80.38 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-6) 73.75 259.88 14.25 WS -gsave 0.125 ps [1] sd -73.75 239.00 73.75 17.00 MacLine -grestore -1.00 ps -73.25 13.50 73.25 17.00 MacLine -73.25 242.50 73.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.62 239.00 66.62 17.00 MacLine -grestore -1.00 ps -66.12 13.50 66.12 17.00 MacLine -66.12 242.50 66.12 239.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(t \(s\)) 298.62 284.38 27.75 WS -2.00 ps -newpath 63.12 243.00 M -68.12 240.50 L -73.12 238.00 L -78.12 235.12 L -83.12 232.25 L -88.25 229.12 L -93.25 225.88 L -98.38 222.50 L -103.38 219.00 L -108.38 215.38 L -113.50 211.62 L -118.50 207.75 L -123.50 203.75 L -128.50 199.62 L -133.62 195.50 L -138.62 191.25 L -143.62 186.88 L -148.75 182.50 L -153.75 178.00 L -158.88 173.50 L -163.88 168.88 L -168.88 164.25 L -173.88 159.50 L -179.00 154.75 L -184.00 150.00 L -189.00 145.25 L -194.12 140.50 L -199.12 135.75 L -204.12 130.88 L -209.25 126.12 L -214.25 121.38 L -219.25 116.62 L -224.25 111.88 L -229.38 107.25 L -234.38 102.50 L -239.50 98.00 L -244.50 93.38 L -249.50 88.88 L -254.62 84.50 L -259.62 80.12 L -264.62 75.75 L -269.62 71.62 L -274.75 67.50 L -279.75 63.50 L -284.75 59.62 L -289.88 55.88 L -294.88 52.12 L -300.00 48.62 L -305.00 45.25 L -310.00 42.00 L -315.00 38.88 L -320.00 35.88 L -325.00 33.00 L -330.12 30.38 L -335.12 27.88 L -340.25 25.62 L -345.25 23.50 L -350.25 21.62 L -355.38 19.88 L -360.38 18.38 L -365.38 17.12 L -370.38 16.00 L -375.50 15.12 L -380.50 14.50 L -385.50 14.12 L -390.62 14.00 L -395.62 14.12 L -400.75 14.50 L -405.75 15.12 L -410.75 16.12 L -415.75 17.25 L -420.88 18.75 L -425.88 20.50 L -430.88 22.62 L -436.00 25.00 L -441.00 27.62 L -446.00 30.62 L -451.12 34.00 L -456.12 37.62 L -461.12 41.62 L -466.12 46.00 L -471.25 50.75 L -476.25 55.75 L -481.38 61.12 L -486.38 67.00 L -491.38 73.12 L -496.50 79.75 L -501.50 86.62 L -506.50 94.00 L -511.50 101.75 L -516.62 110.00 L -521.62 118.50 L -526.62 127.62 L -531.75 137.00 L -536.75 146.88 L -541.88 157.25 L -546.88 168.00 L -551.88 179.25 L -556.88 191.00 L -561.88 203.12 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v8.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v8.gif deleted file mode 100755 index e10c23486..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v8.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v9.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v9.eps deleted file mode 100755 index ac3af3da1..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v9.eps +++ /dev/null @@ -1,1215 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_y9 -%%Creation Date: Sun, Sep 10, 1995 06:45 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 244.38 558.00 244.38 MacLine -grestore -1.00 ps -561.50 243.88 558.00 243.88 MacLine -62.50 243.88 66.00 243.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 237.25 558.00 237.25 MacLine -grestore -1.00 ps -561.50 236.75 558.00 236.75 MacLine -62.50 236.75 66.00 236.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 230.25 558.00 230.25 MacLine -grestore -1.00 ps -561.50 229.75 558.00 229.75 MacLine -62.50 229.75 66.00 229.75 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 223.12 554.50 223.12 MacLine -grestore -1.00 ps -561.50 222.75 554.50 222.75 MacLine -62.50 222.75 69.50 222.75 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(-1500) 18.12 227.62 40.88 WS -gsave 0.125 ps [1] sd -66.00 216.12 558.00 216.12 MacLine -grestore -1.00 ps -561.50 215.62 558.00 215.62 MacLine -62.50 215.62 66.00 215.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 209.12 558.00 209.12 MacLine -grestore -1.00 ps -561.50 208.62 558.00 208.62 MacLine -62.50 208.62 66.00 208.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 202.12 558.00 202.12 MacLine -grestore -1.00 ps -561.50 201.62 558.00 201.62 MacLine -62.50 201.62 66.00 201.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 195.12 558.00 195.12 MacLine -grestore -1.00 ps -561.50 194.62 558.00 194.62 MacLine -62.50 194.62 66.00 194.62 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 187.88 554.50 187.88 MacLine -grestore -1.00 ps -561.50 187.50 554.50 187.50 MacLine -62.50 187.50 69.50 187.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-1400) 18.12 192.38 40.88 WS -gsave 0.125 ps [1] sd -66.00 181.00 558.00 181.00 MacLine -grestore -1.00 ps -561.50 180.50 558.00 180.50 MacLine -62.50 180.50 66.00 180.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 174.00 558.00 174.00 MacLine -grestore -1.00 ps -561.50 173.50 558.00 173.50 MacLine -62.50 173.50 66.00 173.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 166.88 558.00 166.88 MacLine -grestore -1.00 ps -561.50 166.38 558.00 166.38 MacLine -62.50 166.38 66.00 166.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 159.88 558.00 159.88 MacLine -grestore -1.00 ps -561.50 159.38 558.00 159.38 MacLine -62.50 159.38 66.00 159.38 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 152.75 554.50 152.75 MacLine -grestore -1.00 ps -561.50 152.38 554.50 152.38 MacLine -62.50 152.38 69.50 152.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-1300) 18.12 157.25 40.88 WS -gsave 0.125 ps [1] sd -66.00 145.88 558.00 145.88 MacLine -grestore -1.00 ps -561.50 145.38 558.00 145.38 MacLine -62.50 145.38 66.00 145.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 138.75 558.00 138.75 MacLine -grestore -1.00 ps -561.50 138.25 558.00 138.25 MacLine -62.50 138.25 66.00 138.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 131.75 558.00 131.75 MacLine -grestore -1.00 ps -561.50 131.25 558.00 131.25 MacLine -62.50 131.25 66.00 131.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 124.75 558.00 124.75 MacLine -grestore -1.00 ps -561.50 124.25 558.00 124.25 MacLine -62.50 124.25 66.00 124.25 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 117.50 554.50 117.50 MacLine -grestore -1.00 ps -561.50 117.12 554.50 117.12 MacLine -62.50 117.12 69.50 117.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-1200) 18.12 122.00 40.88 WS -gsave 0.125 ps [1] sd -66.00 110.62 558.00 110.62 MacLine -grestore -1.00 ps -561.50 110.12 558.00 110.12 MacLine -62.50 110.12 66.00 110.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 103.62 558.00 103.62 MacLine -grestore -1.00 ps -561.50 103.12 558.00 103.12 MacLine -62.50 103.12 66.00 103.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 96.62 558.00 96.62 MacLine -grestore -1.00 ps -561.50 96.12 558.00 96.12 MacLine -62.50 96.12 66.00 96.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 89.50 558.00 89.50 MacLine -grestore -1.00 ps -561.50 89.00 558.00 89.00 MacLine -62.50 89.00 66.00 89.00 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 82.38 554.50 82.38 MacLine -grestore -1.00 ps -561.50 82.00 554.50 82.00 MacLine -62.50 82.00 69.50 82.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-1100) 18.12 86.88 40.88 WS -gsave 0.125 ps [1] sd -66.00 75.50 558.00 75.50 MacLine -grestore -1.00 ps -561.50 75.00 558.00 75.00 MacLine -62.50 75.00 66.00 75.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 68.38 558.00 68.38 MacLine -grestore -1.00 ps -561.50 67.88 558.00 67.88 MacLine -62.50 67.88 66.00 67.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 61.38 558.00 61.38 MacLine -grestore -1.00 ps -561.50 60.88 558.00 60.88 MacLine -62.50 60.88 66.00 60.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 54.38 558.00 54.38 MacLine -grestore -1.00 ps -561.50 53.88 558.00 53.88 MacLine -62.50 53.88 66.00 53.88 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 47.25 554.50 47.25 MacLine -grestore -1.00 ps -561.50 46.88 554.50 46.88 MacLine -62.50 46.88 69.50 46.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-1000) 18.12 51.75 40.88 WS -gsave 0.125 ps [1] sd -66.00 40.25 558.00 40.25 MacLine -grestore -1.00 ps -561.50 39.75 558.00 39.75 MacLine -62.50 39.75 66.00 39.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 33.25 558.00 33.25 MacLine -grestore -1.00 ps -561.50 32.75 558.00 32.75 MacLine -62.50 32.75 66.00 32.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 26.25 558.00 26.25 MacLine -grestore -1.00 ps -561.50 25.75 558.00 25.75 MacLine -62.50 25.75 66.00 25.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 19.25 558.00 19.25 MacLine -grestore -1.00 ps -561.50 18.75 558.00 18.75 MacLine -62.50 18.75 66.00 18.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(y \(m\)) 0.00 0.00 36.62 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -558.38 239.00 558.38 17.00 MacLine -grestore -1.00 ps -557.88 13.50 557.88 17.00 MacLine -557.88 242.50 557.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -551.25 239.00 551.25 17.00 MacLine -grestore -1.00 ps -550.75 13.50 550.75 17.00 MacLine -550.75 242.50 550.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -544.12 237.25 544.12 18.75 MacLine -grestore -1.00 ps -543.62 13.50 543.62 18.75 MacLine -543.62 242.50 543.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -537.00 239.00 537.00 17.00 MacLine -grestore -1.00 ps -536.50 13.50 536.50 17.00 MacLine -536.50 242.50 536.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -529.88 239.00 529.88 17.00 MacLine -grestore -1.00 ps -529.38 13.50 529.38 17.00 MacLine -529.38 242.50 529.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.75 239.00 522.75 17.00 MacLine -grestore -1.00 ps -522.25 13.50 522.25 17.00 MacLine -522.25 242.50 522.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -515.62 239.00 515.62 17.00 MacLine -grestore -1.00 ps -515.12 13.50 515.12 17.00 MacLine -515.12 242.50 515.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -508.38 235.50 508.38 20.50 MacLine -grestore -1.00 ps -508.00 13.50 508.00 20.50 MacLine -508.00 242.50 508.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 504.12 259.88 8.88 WS -gsave 0.125 ps [1] sd -501.38 239.00 501.38 17.00 MacLine -grestore -1.00 ps -500.88 13.50 500.88 17.00 MacLine -500.88 242.50 500.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -494.25 239.00 494.25 17.00 MacLine -grestore -1.00 ps -493.75 13.50 493.75 17.00 MacLine -493.75 242.50 493.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.12 239.00 487.12 17.00 MacLine -grestore -1.00 ps -486.62 13.50 486.62 17.00 MacLine -486.62 242.50 486.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.00 239.00 480.00 17.00 MacLine -grestore -1.00 ps -479.50 13.50 479.50 17.00 MacLine -479.50 242.50 479.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.88 237.25 472.88 18.75 MacLine -grestore -1.00 ps -472.38 13.50 472.38 18.75 MacLine -472.38 242.50 472.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -465.75 239.00 465.75 17.00 MacLine -grestore -1.00 ps -465.25 13.50 465.25 17.00 MacLine -465.25 242.50 465.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -458.62 239.00 458.62 17.00 MacLine -grestore -1.00 ps -458.12 13.50 458.12 17.00 MacLine -458.12 242.50 458.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -451.50 239.00 451.50 17.00 MacLine -grestore -1.00 ps -451.00 13.50 451.00 17.00 MacLine -451.00 242.50 451.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -444.38 239.00 444.38 17.00 MacLine -grestore -1.00 ps -443.88 13.50 443.88 17.00 MacLine -443.88 242.50 443.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -437.12 235.50 437.12 20.50 MacLine -grestore -1.00 ps -436.75 13.50 436.75 20.50 MacLine -436.75 242.50 436.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 432.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -430.12 239.00 430.12 17.00 MacLine -grestore -1.00 ps -429.62 13.50 429.62 17.00 MacLine -429.62 242.50 429.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -423.00 239.00 423.00 17.00 MacLine -grestore -1.00 ps -422.50 13.50 422.50 17.00 MacLine -422.50 242.50 422.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -415.88 239.00 415.88 17.00 MacLine -grestore -1.00 ps -415.38 13.50 415.38 17.00 MacLine -415.38 242.50 415.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -408.75 239.00 408.75 17.00 MacLine -grestore -1.00 ps -408.25 13.50 408.25 17.00 MacLine -408.25 242.50 408.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -401.62 237.25 401.62 18.75 MacLine -grestore -1.00 ps -401.12 13.50 401.12 18.75 MacLine -401.12 242.50 401.12 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -394.50 239.00 394.50 17.00 MacLine -grestore -1.00 ps -394.00 13.50 394.00 17.00 MacLine -394.00 242.50 394.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -387.38 239.00 387.38 17.00 MacLine -grestore -1.00 ps -386.88 13.50 386.88 17.00 MacLine -386.88 242.50 386.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -380.25 239.00 380.25 17.00 MacLine -grestore -1.00 ps -379.75 13.50 379.75 17.00 MacLine -379.75 242.50 379.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.12 239.00 373.12 17.00 MacLine -grestore -1.00 ps -372.62 13.50 372.62 17.00 MacLine -372.62 242.50 372.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -365.88 235.50 365.88 20.50 MacLine -grestore -1.00 ps -365.50 13.50 365.50 20.50 MacLine -365.50 242.50 365.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 361.62 259.88 8.88 WS -gsave 0.125 ps [1] sd -358.88 239.00 358.88 17.00 MacLine -grestore -1.00 ps -358.38 13.50 358.38 17.00 MacLine -358.38 242.50 358.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -351.75 239.00 351.75 17.00 MacLine -grestore -1.00 ps -351.25 13.50 351.25 17.00 MacLine -351.25 242.50 351.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -344.62 239.00 344.62 17.00 MacLine -grestore -1.00 ps -344.12 13.50 344.12 17.00 MacLine -344.12 242.50 344.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -337.50 239.00 337.50 17.00 MacLine -grestore -1.00 ps -337.00 13.50 337.00 17.00 MacLine -337.00 242.50 337.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -330.38 237.25 330.38 18.75 MacLine -grestore -1.00 ps -329.88 13.50 329.88 18.75 MacLine -329.88 242.50 329.88 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 239.00 323.25 17.00 MacLine -grestore -1.00 ps -322.75 13.50 322.75 17.00 MacLine -322.75 242.50 322.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.12 239.00 316.12 17.00 MacLine -grestore -1.00 ps -315.62 13.50 315.62 17.00 MacLine -315.62 242.50 315.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -308.88 239.00 308.88 17.00 MacLine -grestore -1.00 ps -308.38 13.50 308.38 17.00 MacLine -308.38 242.50 308.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -301.75 239.00 301.75 17.00 MacLine -grestore -1.00 ps -301.25 13.50 301.25 17.00 MacLine -301.25 242.50 301.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -294.50 235.50 294.50 20.50 MacLine -grestore -1.00 ps -294.12 13.50 294.12 20.50 MacLine -294.12 242.50 294.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 290.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -287.50 239.00 287.50 17.00 MacLine -grestore -1.00 ps -287.00 13.50 287.00 17.00 MacLine -287.00 242.50 287.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -280.38 239.00 280.38 17.00 MacLine -grestore -1.00 ps -279.88 13.50 279.88 17.00 MacLine -279.88 242.50 279.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -273.25 239.00 273.25 17.00 MacLine -grestore -1.00 ps -272.75 13.50 272.75 17.00 MacLine -272.75 242.50 272.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.12 239.00 266.12 17.00 MacLine -grestore -1.00 ps -265.62 13.50 265.62 17.00 MacLine -265.62 242.50 265.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -259.00 237.25 259.00 18.75 MacLine -grestore -1.00 ps -258.50 13.50 258.50 18.75 MacLine -258.50 242.50 258.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -251.88 239.00 251.88 17.00 MacLine -grestore -1.00 ps -251.38 13.50 251.38 17.00 MacLine -251.38 242.50 251.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -244.75 239.00 244.75 17.00 MacLine -grestore -1.00 ps -244.25 13.50 244.25 17.00 MacLine -244.25 242.50 244.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -237.62 239.00 237.62 17.00 MacLine -grestore -1.00 ps -237.12 13.50 237.12 17.00 MacLine -237.12 242.50 237.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -230.50 239.00 230.50 17.00 MacLine -grestore -1.00 ps -230.00 13.50 230.00 17.00 MacLine -230.00 242.50 230.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-2) 216.25 259.88 14.25 WS -gsave 0.125 ps [1] sd -216.25 239.00 216.25 17.00 MacLine -grestore -1.00 ps -215.75 13.50 215.75 17.00 MacLine -215.75 242.50 215.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -209.12 239.00 209.12 17.00 MacLine -grestore -1.00 ps -208.62 13.50 208.62 17.00 MacLine -208.62 242.50 208.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -202.00 239.00 202.00 17.00 MacLine -grestore -1.00 ps -201.50 13.50 201.50 17.00 MacLine -201.50 242.50 201.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -194.88 239.00 194.88 17.00 MacLine -grestore -1.00 ps -194.38 13.50 194.38 17.00 MacLine -194.38 242.50 194.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -187.75 237.25 187.75 18.75 MacLine -grestore -1.00 ps -187.25 13.50 187.25 18.75 MacLine -187.25 242.50 187.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -180.62 239.00 180.62 17.00 MacLine -grestore -1.00 ps -180.12 13.50 180.12 17.00 MacLine -180.12 242.50 180.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -173.50 239.00 173.50 17.00 MacLine -grestore -1.00 ps -173.00 13.50 173.00 17.00 MacLine -173.00 242.50 173.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -166.38 239.00 166.38 17.00 MacLine -grestore -1.00 ps -165.88 13.50 165.88 17.00 MacLine -165.88 242.50 165.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.25 239.00 159.25 17.00 MacLine -grestore -1.00 ps -158.75 13.50 158.75 17.00 MacLine -158.75 242.50 158.75 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -152.00 235.50 152.00 20.50 MacLine -grestore -1.00 ps -151.62 13.50 151.62 20.50 MacLine -151.62 242.50 151.62 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-4) 145.00 259.88 14.25 WS -gsave 0.125 ps [1] sd -145.00 239.00 145.00 17.00 MacLine -grestore -1.00 ps -144.50 13.50 144.50 17.00 MacLine -144.50 242.50 144.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -137.88 239.00 137.88 17.00 MacLine -grestore -1.00 ps -137.38 13.50 137.38 17.00 MacLine -137.38 242.50 137.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -130.75 239.00 130.75 17.00 MacLine -grestore -1.00 ps -130.25 13.50 130.25 17.00 MacLine -130.25 242.50 130.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -123.62 239.00 123.62 17.00 MacLine -grestore -1.00 ps -123.12 13.50 123.12 17.00 MacLine -123.12 242.50 123.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -116.50 237.25 116.50 18.75 MacLine -grestore -1.00 ps -116.00 13.50 116.00 18.75 MacLine -116.00 242.50 116.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -109.38 239.00 109.38 17.00 MacLine -grestore -1.00 ps -108.88 13.50 108.88 17.00 MacLine -108.88 242.50 108.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.25 239.00 102.25 17.00 MacLine -grestore -1.00 ps -101.75 13.50 101.75 17.00 MacLine -101.75 242.50 101.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -95.12 239.00 95.12 17.00 MacLine -grestore -1.00 ps -94.62 13.50 94.62 17.00 MacLine -94.62 242.50 94.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -88.00 239.00 88.00 17.00 MacLine -grestore -1.00 ps -87.50 13.50 87.50 17.00 MacLine -87.50 242.50 87.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -80.75 235.50 80.75 20.50 MacLine -grestore -1.00 ps -80.38 13.50 80.38 20.50 MacLine -80.38 242.50 80.38 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(-6) 73.75 259.88 14.25 WS -gsave 0.125 ps [1] sd -73.75 239.00 73.75 17.00 MacLine -grestore -1.00 ps -73.25 13.50 73.25 17.00 MacLine -73.25 242.50 73.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.62 239.00 66.62 17.00 MacLine -grestore -1.00 ps -66.12 13.50 66.12 17.00 MacLine -66.12 242.50 66.12 239.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(t \(s\)) 298.62 284.38 27.75 WS -2.00 ps -newpath 63.12 14.00 M -68.12 29.25 L -73.12 43.75 L -78.12 57.75 L -83.12 71.00 L -88.25 83.75 L -93.25 95.88 L -98.38 107.25 L -103.38 118.25 L -108.38 128.50 L -113.50 138.38 L -118.50 147.62 L -123.50 156.38 L -128.50 164.50 L -133.62 172.25 L -138.62 179.50 L -143.62 186.25 L -148.75 192.50 L -153.75 198.25 L -158.88 203.62 L -163.88 208.50 L -168.88 213.00 L -173.88 217.12 L -179.00 220.88 L -184.00 224.12 L -189.00 227.12 L -194.12 229.62 L -199.12 231.88 L -204.12 233.75 L -209.25 235.25 L -214.25 236.50 L -219.25 237.38 L -224.25 238.12 L -229.38 238.38 L -234.38 238.50 L -239.50 238.38 L -244.50 238.00 L -249.50 237.25 L -254.62 236.50 L -259.62 235.38 L -264.62 234.12 L -269.62 232.62 L -274.75 231.12 L -279.75 229.25 L -284.75 227.38 L -289.88 225.25 L -294.88 223.12 L -300.00 220.88 L -305.00 218.38 L -310.00 216.00 L -315.00 213.38 L -320.00 210.75 L -325.00 208.12 L -330.12 205.38 L -335.12 202.62 L -340.25 199.88 L -345.25 197.12 L -350.25 194.25 L -355.38 191.62 L -360.38 188.88 L -365.38 186.25 L -370.38 183.62 L -375.50 181.00 L -380.50 178.62 L -385.50 176.25 L -390.62 173.88 L -395.62 171.75 L -400.75 169.75 L -405.75 167.88 L -410.75 166.12 L -415.75 164.50 L -420.88 163.12 L -425.88 161.88 L -430.88 160.88 L -436.00 160.00 L -441.00 159.50 L -446.00 159.12 L -451.12 159.00 L -456.12 159.12 L -461.12 159.50 L -466.12 160.25 L -471.25 161.25 L -476.25 162.50 L -481.38 164.12 L -486.38 166.12 L -491.38 168.38 L -496.50 171.00 L -501.50 174.12 L -506.50 177.50 L -511.50 181.25 L -516.62 185.38 L -521.62 190.00 L -526.62 195.00 L -531.75 200.50 L -536.75 206.38 L -541.88 212.75 L -546.88 219.50 L -551.88 226.88 L -556.88 234.62 L -561.88 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v9.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v9.gif deleted file mode 100755 index f0f0d107e..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob19a2v9.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob25a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob25a.eps deleted file mode 100755 index 88e3cee99..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob25a.eps +++ /dev/null @@ -1,1153 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: vball.eps -%%CreationDate: 3/18/1996 -%%Pages: 0 -%%DocumentFonts: Symbol -%%+ Helvetica -%%BoundingBox:58 409 518 712 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Symbol Symbol -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Symbol/Symbol 0 Z -%%EndEncoding -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica/Helvetica 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -1817.5 4787.5 m -1973.5 5100.5 L -35 slw 0 sg str -gr -gs -1817.5 4787.5 m -1817.5 5100.5 L -35 slw 0 sg str -gr -gs -1817.5 4787.5 m -1817.5 4475.5 L -35 slw 0 sg str -gr -gs -1739 4397 1895 4553 OV -1 sg fill -gr -gs -1739.5 4397.5 1895.5 4553.5 OV -35 slw 0 sg str -gr -gs -1817.5 4631.5 m -1504.5 4319.5 L -35 slw 0 sg str -gr -gs -1817.5 4631.5 m -2129.5 4631.5 L -35 slw 0 sg str -gr -gs -1817 4006 1973 4162 OV -1 sg fill -gr -gs -1817.5 4006.5 1973.5 4162.5 OV -35 slw 0 sg str -gr -gs -4395 4162 5645 2912 5645 3850 4395 5100 4395 4162 4 P closepath -0 0 0 1 1 1 [170 68 170 17 170 68 170 17] patfill -gr -gs -4378 4145 5628 2895 5628 3833 4378 5083 4378 4145 4 P closepath -35 slw 0 sg str -gr -gs -4395.5 5725.5 m -4395.5 5100.5 L -35 slw 0 sg str -gr -gs -5645.5 4475.5 m -5645.5 3850.5 L -35 slw 0 sg str -gr -gs -1270.5 5725.5 m -7520.5 5725.5 L -35 slw 0 sg str -gr -gs -1270.5 5725.5 m -2520.5 4475.5 L -35 slw 0 sg str -gr -gs -2520.5 4475.5 m -8770.5 4475.5 L -35 slw 0 sg str -gr -gs -8770.5 4475.5 m -7520.5 5725.5 L -35 slw 0 sg str -gr -gs -1896.5 4077.5 m -1952.5 3994.5 L -35 slw 0 sg str -gr -gs -2012.5 3904.5 m -2067.5 3820.5 L -35 slw 0 sg str -gr -gs -2127.5 3730.5 m -2165.5 3674.5 L -35 slw 0 sg str -gr -gs -2165.5 3674.5 m -2186.5 3649.5 L -35 slw 0 sg str -gr -gs -2255.5 3566.5 m -2319.5 3489.5 L -35 slw 0 sg str -gr -gs -2388.5 3406.5 m -2448.5 3334.5 L -35 slw 0 sg str -gr -gs -2448.5 3334.5 m -2453.5 3329.5 L -35 slw 0 sg str -gr -gs -2531.5 3255.5 m -2604.5 3186.5 L -35 slw 0 sg str -gr -gs -2683.5 3112.5 m -2742.5 3056.5 L -35 slw 0 sg str -gr -gs -2742.5 3056.5 m -2757.5 3045.5 L -35 slw 0 sg str -gr -gs -2846.5 2983.5 m -2927.5 2925.5 L -35 slw 0 sg str -gr -gs -3016.5 2863.5 m -3048.5 2840.5 L -35 slw 0 sg str -gr -gs -3048.5 2840.5 m -3103.5 2814.5 L -35 slw 0 sg str -gr -gs -3200.5 2767.5 m -3290.5 2723.5 L -35 slw 0 sg str -gr -gs -3389.5 2680.5 m -3486.5 2653.5 L -35 slw 0 sg str -gr -gs -3590.5 2624.5 m -3686.5 2597.5 L -35 slw 0 sg str -gr -gs -3794.5 2586.5 m -3893.5 2577.5 L -35 slw 0 sg str -gr -gs -4001.5 2567.5 m -4041.5 2564.5 L -35 slw 0 sg str -gr -gs -4041.5 2564.5 m -4101.5 2570.5 L -35 slw 0 sg str -gr -gs -4209.5 2580.5 m -4308.5 2589.5 L -35 slw 0 sg str -gr -gs -4415.5 2602.5 m -4513.5 2627.5 L -35 slw 0 sg str -gr -gs -4617.5 2654.5 m -4714.5 2678.5 L -35 slw 0 sg str -gr -gs -4817.5 2713.5 m -4909.5 2751.5 L -35 slw 0 sg str -gr -gs -5009.5 2793.5 m -5102.5 2831.5 L -35 slw 0 sg str -gr -gs -5198.5 2879.5 m -5286.5 2928.5 L -35 slw 0 sg str -gr -gs -5380.5 2980.5 m -5468.5 3029.5 L -35 slw 0 sg str -gr -gs -5560.5 3085.5 m -5643.5 3142.5 L -35 slw 0 sg str -gr -gs -5731.5 3204.5 m -5814.5 3261.5 L -35 slw 0 sg str -gr -gs -5902.5 3323.5 m -5939.5 3348.5 L -35 slw 0 sg str -gr -gs -5939.5 3348.5 m -5982.5 3383.5 L -35 slw 0 sg str -gr -gs -6065.5 3452.5 m -6143.5 3516.5 L -35 slw 0 sg str -gr -gs -6226.5 3585.5 m -6303.5 3648.5 L -35 slw 0 sg str -gr -gs -6385.5 3719.5 m -6458.5 3788.5 L -35 slw 0 sg str -gr -gs -6536.5 3863.5 m -6609.5 3931.5 L -35 slw 0 sg str -gr -gs -6688.5 4006.5 m -6760.5 4075.5 L -35 slw 0 sg str -gr -gs -6836.5 4152.5 m -6905.5 4225.5 L -35 slw 0 sg str -gr -gs -6979.5 4303.5 m -7048.5 4376.5 L -35 slw 0 sg str -gr -gs -7122.5 4455.5 m -7191.5 4528.5 L -35 slw 0 sg str -gr -gs -7263.5 4608.5 m -7328.5 4684.5 L -35 slw 0 sg str -gr -gs -7398.5 4767.5 m -7463.5 4843.5 L -35 slw 0 sg str -gr -gs -7533.5 4925.5 m -7599.5 5001.5 L -35 slw 0 sg str -gr -gs -7669.5 5083.5 m -7677.5 5093.5 L -35 slw 0 sg str -gr -gs -1895.625 5100.625 m -1946.625 5100.625 L -1.25 slw 0 sg str -gr -gs -1999.625 5100.625 m -2050.625 5100.625 L -1.25 slw 0 sg str -gr -gs -2103.625 5100.625 m -2154.625 5100.625 L -1.25 slw 0 sg str -gr -gs -2207.625 5100.625 m -2259.625 5100.625 L -1.25 slw 0 sg str -gr -gs -2312.625 5100.625 m -2363.625 5100.625 L -1.25 slw 0 sg str -gr -gs -2416.625 5100.625 m -2467.625 5100.625 L -1.25 slw 0 sg str -gr -gs -2520.625 5100.625 m -2571.625 5100.625 L -1.25 slw 0 sg str -gr -gs -2624.625 5100.625 m -2675.625 5100.625 L -1.25 slw 0 sg str -gr -gs -2728.625 5100.625 m -2779.625 5100.625 L -1.25 slw 0 sg str -gr -gs -2832.625 5100.625 m -2884.625 5100.625 L -1.25 slw 0 sg str -gr -gs -2937.625 5100.625 m -2988.625 5100.625 L -1.25 slw 0 sg str -gr -gs -3041.625 5100.625 m -3092.625 5100.625 L -1.25 slw 0 sg str -gr -gs -3145.625 5100.625 m -3196.625 5100.625 L -1.25 slw 0 sg str -gr -gs -3249.625 5100.625 m -3300.625 5100.625 L -1.25 slw 0 sg str -gr -gs -3353.625 5100.625 m -3404.625 5100.625 L -1.25 slw 0 sg str -gr -gs -3457.625 5100.625 m -3508.625 5100.625 L -1.25 slw 0 sg str -gr -gs -3562.625 5100.625 m -3613.625 5100.625 L -1.25 slw 0 sg str -gr -gs -3666.625 5100.625 m -3717.625 5100.625 L -1.25 slw 0 sg str -gr -gs -3770.625 5100.625 m -3821.625 5100.625 L -1.25 slw 0 sg str -gr -gs -3874.625 5100.625 m -3925.625 5100.625 L -1.25 slw 0 sg str -gr -gs -3978.625 5100.625 m -4029.625 5100.625 L -1.25 slw 0 sg str -gr -gs -4082.625 5100.625 m -4133.625 5100.625 L -1.25 slw 0 sg str -gr -gs -4187.625 5100.625 m -4238.625 5100.625 L -1.25 slw 0 sg str -gr -gs -4291.625 5100.625 m -4342.625 5100.625 L -1.25 slw 0 sg str -gr -gs -4395.625 5100.625 m -4446.625 5100.625 L -1.25 slw 0 sg str -gr -gs -4499.625 5100.625 m -4550.625 5100.625 L -1.25 slw 0 sg str -gr -gs -4603.625 5100.625 m -4654.625 5100.625 L -1.25 slw 0 sg str -gr -gs -4707.625 5100.625 m -4758.625 5100.625 L -1.25 slw 0 sg str -gr -gs -4811.625 5100.625 m -4863.625 5100.625 L -1.25 slw 0 sg str -gr -gs -4916.625 5100.625 m -4967.625 5100.625 L -1.25 slw 0 sg str -gr -gs -5020.625 5100.625 m -5071.625 5100.625 L -1.25 slw 0 sg str -gr -gs -5124.625 5100.625 m -5175.625 5100.625 L -1.25 slw 0 sg str -gr -gs -5228.625 5100.625 m -5279.625 5100.625 L -1.25 slw 0 sg str -gr -gs -5332.625 5100.625 m -5383.625 5100.625 L -1.25 slw 0 sg str -gr -gs -5436.625 5100.625 m -5488.625 5100.625 L -1.25 slw 0 sg str -gr -gs -5541.625 5100.625 m -5592.625 5100.625 L -1.25 slw 0 sg str -gr -gs -5645.625 5100.625 m -5696.625 5100.625 L -1.25 slw 0 sg str -gr -gs -5749.625 5100.625 m -5800.625 5100.625 L -1.25 slw 0 sg str -gr -gs -5853.625 5100.625 m -5904.625 5100.625 L -1.25 slw 0 sg str -gr -gs -5957.625 5100.625 m -6008.625 5100.625 L -1.25 slw 0 sg str -gr -gs -6061.625 5100.625 m -6112.625 5100.625 L -1.25 slw 0 sg str -gr -gs -6166.625 5100.625 m -6217.625 5100.625 L -1.25 slw 0 sg str -gr -gs -6270.625 5100.625 m -6321.625 5100.625 L -1.25 slw 0 sg str -gr -gs -6374.625 5100.625 m -6425.625 5100.625 L -1.25 slw 0 sg str -gr -gs -6478.625 5100.625 m -6529.625 5100.625 L -1.25 slw 0 sg str -gr -gs -6582.625 5100.625 m -6633.625 5100.625 L -1.25 slw 0 sg str -gr -gs -6686.625 5100.625 m -6737.625 5100.625 L -1.25 slw 0 sg str -gr -gs -6791.625 5100.625 m -6842.625 5100.625 L -1.25 slw 0 sg str -gr -gs -6895.625 5100.625 m -6946.625 5100.625 L -1.25 slw 0 sg str -gr -gs -6999.625 5100.625 m -7050.625 5100.625 L -1.25 slw 0 sg str -gr -gs -7103.625 5100.625 m -7154.625 5100.625 L -1.25 slw 0 sg str -gr -gs -7207.625 5100.625 m -7258.625 5100.625 L -1.25 slw 0 sg str -gr -gs -7311.625 5100.625 m -7362.625 5100.625 L -1.25 slw 0 sg str -gr -gs -7415.625 5100.625 m -7467.625 5100.625 L -1.25 slw 0 sg str -gr -gs -7520.625 5100.625 m -7571.625 5100.625 L -1.25 slw 0 sg str -gr -gs -7624.625 5100.625 m -7675.625 5100.625 L -1.25 slw 0 sg str -gr -gs -2101 3776 2142 3808 2162 3827 2180 3847 2197 3868 2212 3891 2225 3915 2236 3939 -2246 3964 2254 3990 2260 4017 2264 4044 2266 4071 2266 4084 13 P -1.25 slw 0 sg str -gr -gs -1895.625 4084.625 m -1946.625 4084.625 L -1.25 slw 0 sg str -gr -gs -1999.625 4084.625 m -2050.625 4084.625 L -1.25 slw 0 sg str -gr -gs -2103.625 4084.625 m -2154.625 4084.625 L -1.25 slw 0 sg str -gr -gs -2207.625 4084.625 m -2259.625 4084.625 L -1.25 slw 0 sg str -gr -gs -2312.625 4084.625 m -2363.625 4084.625 L -1.25 slw 0 sg str -gr -gs -2416.625 4084.625 m -2467.625 4084.625 L -1.25 slw 0 sg str -gr -gs -2520.625 4084.625 m -2559.625 4084.625 L -1.25 slw 0 sg str -gr -/_Symbol ff [312 0 0 -312 0 0] mf sf -2258 3947 m 0 sg (q) show -gs -5645.625 4475.625 m -5609.625 4511.625 L -1.25 slw 0 sg str -gr -gs -5571.625 4549.625 m -5535.625 4585.625 L -1.25 slw 0 sg str -gr -gs -5498.625 4622.625 m -5462.625 4658.625 L -1.25 slw 0 sg str -gr -gs -5424.625 4696.625 m -5388.625 4732.625 L -1.25 slw 0 sg str -gr -gs -5350.625 4770.625 m -5314.625 4806.625 L -1.25 slw 0 sg str -gr -gs -5277.625 4843.625 m -5241.625 4879.625 L -1.25 slw 0 sg str -gr -gs -5203.625 4917.625 m -5167.625 4953.625 L -1.25 slw 0 sg str -gr -gs -5129.625 4991.625 m -5093.625 5027.625 L -1.25 slw 0 sg str -gr -gs -5056.625 5064.625 m -5020.625 5100.625 L -1.25 slw 0 sg str -gr -gs -4982.625 5138.625 m -4946.625 5174.625 L -1.25 slw 0 sg str -gr -gs -4908.625 5212.625 m -4872.625 5248.625 L -1.25 slw 0 sg str -gr -gs -4835.625 5285.625 m -4799.625 5321.625 L -1.25 slw 0 sg str -gr -gs -4761.625 5359.625 m -4725.625 5395.625 L -1.25 slw 0 sg str -gr -gs -4688.625 5432.625 m -4651.625 5469.625 L -1.25 slw 0 sg str -gr -gs -4614.625 5506.625 m -4578.625 5542.625 L -1.25 slw 0 sg str -gr -gs -4540.625 5580.625 m -4504.625 5616.625 L -1.25 slw 0 sg str -gr -gs -4467.625 5653.625 m -4430.625 5690.625 L -1.25 slw 0 sg str -gr -gs -1270 6174 1438 6129 1438 6219 2 P -0 sg fill -gr -gs -7520 6174 7352 6219 7352 6129 2 P -0 sg fill -gr -gs -1438.625 6174.625 m -7352.625 6174.625 L -1.25 slw 0 sg str -gr -gs -4328 6244 4501 6574 R -1 sg fill -gr -/_Helvetica ff [312 0 0 -312 0 0] mf sf -4328 6487 m 0 sg (L) show -gs -1270.625 5823.625 m -1270.625 5874.625 L -1.25 slw 0 sg str -gr -gs -1270.625 5927.625 m -1270.625 5978.625 L -1.25 slw 0 sg str -gr -gs -1270.625 6031.625 m -1270.625 6082.625 L -1.25 slw 0 sg str -gr -gs -1270.625 6135.625 m -1270.625 6187.625 L -1.25 slw 0 sg str -gr -gs -1270.625 6240.625 m -1270.625 6291.625 L -1.25 slw 0 sg str -gr -gs -1270.625 6344.625 m -1270.625 6389.625 L -1.25 slw 0 sg str -gr -gs -7520.625 5823.625 m -7520.625 5874.625 L -1.25 slw 0 sg str -gr -gs -7520.625 5927.625 m -7520.625 5978.625 L -1.25 slw 0 sg str -gr -gs -7520.625 6031.625 m -7520.625 6082.625 L -1.25 slw 0 sg str -gr -gs -7520.625 6135.625 m -7520.625 6187.625 L -1.25 slw 0 sg str -gr -gs -7520.625 6240.625 m -7520.625 6291.625 L -1.25 slw 0 sg str -gr -gs -7520.625 6344.625 m -7520.625 6389.625 L -1.25 slw 0 sg str -gr -gs -2559 4084 2604 4252 2514 4252 2 P -0 sg fill -gr -gs -2559 5100 2514 4932 2604 4932 2 P -0 sg fill -gr -gs -2559.625 4252.625 m -2559.625 4932.625 L -1.25 slw 0 sg str -gr -gs -2628 4525 2802 4855 R -1 sg fill -gr -2628 4768 m 3.12 slw 0 sg (h) show -gs -3790.625 4162.625 m -3841.625 4162.625 L -1.25 slw 0 sg str -gr -gs -3894.625 4162.625 m -3945.625 4162.625 L -1.25 slw 0 sg str -gr -gs -3998.625 4162.625 m -4049.625 4162.625 L -1.25 slw 0 sg str -gr -gs -4102.625 4162.625 m -4154.625 4162.625 L -1.25 slw 0 sg str -gr -gs -4207.625 4162.625 m -4258.625 4162.625 L -1.25 slw 0 sg str -gr -gs -4024 4162 4069 4330 3979 4330 2 P -0 sg fill -gr -gs -4024 5725 3979 5557 4069 5557 2 P -0 sg fill -gr -gs -4024.625 4330.625 m -4024.625 5557.625 L -1.25 slw 0 sg str -gr -gs -3781 4779 3954 5109 R -1 sg fill -gr -3781 5022 m 0 sg (d) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob25a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob25a.gif deleted file mode 100755 index 7e0502303..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob25a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob25a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob25a.pdf deleted file mode 100644 index 7f71e7ba5..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob25a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob28.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob28.eps deleted file mode 100755 index b58173e14..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob28.eps +++ /dev/null @@ -1,8 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: hw2p19f.eps -%%CreationDate: 8/31/1994 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%BoundingBox:95 466 483 645 -%%EndComments save % Basic Definitions /gs {gsave} def /gr {grestore} def /t {translate} def /sc {scale} def /sg {setgray} def /srgb {setrgbcolor} def /ff {findfont} def /mf {makefont} def /sf {setfont} def /slw {setlinewidth} def /str {stroke} def /slc {setlinecap} def % Polyline operators /pl % x y pl x y { transform 0.25 sub round 0.25 add exch 0.25 sub round 0.25 add exch itransform } def /setstrokeadjust where { pop true setstrokeadjust /c % x1 y1 x2 y2 x3 y3 c - {curveto} def /C /c load def /v % x2 y2 x3 y3 v - {currentpoint 6 2 roll curveto} def /V /v load def /y % x1 y1 x2 y2 y - {2 copy curveto} def /Y /y load def /l % x y l - {lineto} def /L /l load def /m % x y m - {moveto} def /dot {currentpoint transform exch 1 add exch itransform lineto} def } {%else /c {pl curveto} def /C /c load def /v {currentpoint 6 2 roll pl curveto} def /V /v load def /y {pl 2 copy curveto} def /Y /y load def /l {pl lineto} def /L /l load def /m {pl moveto} def /dot {currentpoint transform exch 1 add exch itransform lineto} def }ifelse % Rectangle: left top right bottom R - /rectangleDict 4 dict def /R {rectangleDict begin /bottom exch def /right exch def /top exch def /left exch def right bottom m right top L left top L left bottom L right bottom L closepath end} bind def % Oval: left top right bottom OV - /ovalDict 10 dict def /OV {ovalDict begin /bottom exch def /right exch def /top exch def /left exch def /yrad bottom top sub 2 div def /xrad right left sub 2 div def /y yrad top add def /x xrad left add def x y t xrad yrad sc newpath 0 0 1 0 360 arc closepath 1 xrad div 1 yrad div sc % Reverse scaling. end} bind def % Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - /rRectangleDict 10 dict def /RR { rRectangleDict begin 2 div /hvy exch def 2 div /hvx exch def /bottom exch def /right exch def /top exch def /left exch def /nleft hvx left add hvx div def /ntop hvy top add hvy div def /nright right hvx sub hvx div def /nbottom bottom hvy sub hvy div def hvx hvy sc newpath nright nbottom 1 90 0 arcn nright ntop 1 360 270 arcn nleft ntop 1 270 180 arcn nleft nbottom 1 180 90 arcn closepath 1 hvx div 1 hvy div sc end } bind def % Arc: left top right bottom startangle endangle A - /arcDict 12 dict def /A { arcDict begin /endangle exch def /startangle exch def /bottom exch def /right exch def /top exch def /left exch def /yrad bottom top sub 2 div def /y yrad top add def /xrad right left sub 2 div def /x xrad left add def x y t xrad yrad neg sc 0 0 1 startangle endangle arc 1 xrad div 1 yrad neg div sc % Reverse scaling. end } bind def % Polygon: xn yn ... x1 y1 n-1 P - /polyDict 1 dict def /P { polyDict begin /numOfPoints exch def m numOfPoints {L} repeat end } bind def % Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - /fillDict 11 dict def /patfill { fillDict begin gs /fa exch def % Grab pattern. srgb % Set background color. 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. flattenpath pathbbox % Get path bounding box. /ury exch def /urx exch def /lly exch def /llx exch def % Get edges. clip newpath llx lly m llx ury L urx ury L urx lly L closepath fill % Fill in background color. srgb % Set foreground color. /w urx llx sub ceiling cvi def /h ury lly sub ceiling cvi def /bytes w 8 div ceiling cvi def /patstr bytes 8 mul string def /row 0 def /patproc { 0 1 7 { /row exch def row bytes mul 1 row 1 add bytes mul 1 sub {patstr exch fa row 8 mod get put} for } for patstr } def llx lly t w h sc w h true [w 0 0 h 0 0] patproc imagemask gr end } bind def % Outline string show: string olshow - /outlinedict 1 dict def /olshow { outlinedict begin /cs 1 string def { cs 0 3 -1 roll put % Stuff the char into the string cs. gs 1 sg cs show gr % Paint the char white and move back. cs true charpath currentpoint str m % Draw char outline. } forall end } bind def % Shadow string show: string shadow-x shadow-y shshow - /shadowdict 3 dict def /shshow { shadowdict begin /shady exch def /shadx exch def /cs 1 string def { cs 0 3 -1 roll put % Stuff the char into the string cs. currentpoint shadx shady rmoveto % Draw shadow. cs show m gs 1 sg cs show gr % Paint char white. cs true charpath currentpoint str m % Draw char outline. shadx 0 rmoveto % Move to next char position. } forall end } bind def % Text Encoding Procedure /Z % array literal literal direction Z - { pop findfont begin currentdict dup length 1 add dict begin {1 index /FID ne {def} {pop pop} ifelse} forall /FontName exch def dup length 0 ne { /Encoding Encoding 256 array copy def 0 exch { dup type /nametype eq {Encoding 2 index 2 index put pop 1 add} {exch pop} ifelse } forall } if pop currentdict dup end end /FontName get exch definefont pop } def %%EndProlog %%BeginEncoding: _Times-Roman Times-Roman [ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis /Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute /egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde /oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex /udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls /registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash /infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation /product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash /questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta /guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe /endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide /lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright /fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand /Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex /Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex /Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla /hungarumlaut/ogonek/caron ] /_Times-Roman/Times-Roman 0 Z %%EndEncoding gs 0 792 t 0.058 -0.058 sc 2 slc gs 1892 4674 8142 4987 R 0.25 sg fill gr gs 1892.625 4674.625 8142.375 4987.375 R 1.25 slw 0 sg str gr gs 1892.25 4674.25 m 8142.25 4674.25 L 52.5 slw 0 sg str gr gs 2517 2799 4392 4674 OV 0 0 0 1 1 1 [136 0 34 0 136 0 34 0] patfill gr gs 2517.5 2799.5 4392.5 4674.5 OV 35 slw 0 sg str gr gs 5955 2799 7830 4674 OV 0.87 sg fill gr gs 5955.5 2799.5 7830.5 4674.5 OV 35 slw 0 sg str gr gs 3454.25 4674.25 m 3454.25 4518.25 L 52.5 slw 0 sg str gr gs 6892.25 2799.25 m 6892.25 2955.25 L 52.5 slw 0 sg str gr gs 3350 4170 3559 4396 R 1 sg fill gr /_Times-Roman ff [208 0 0 -208 0 0] mf sf 3350 4326 m 0 sg ( P ) show gs 6788 3077 6996 3303 R 1 sg fill gr 6788 3233 m 2.08 slw 0 sg ( P ) olshow gs 5642 3736 5484 3810 5484 3662 2 P 0 sg fill gr gs 4704.625 3736.625 m 5642.625 3736.625 L 1.25 slw 0 sg str gr gs 3038 5186 3871 5412 R 1 sg fill gr 3038 5342 m 2.08 slw 0 sg (At time t1) olshow gs 6475 5186 7309 5412 R 1 sg fill gr 6475 5342 m 2.08 slw 0 sg (At time t2) olshow gr %%Trailer restore \ No newline at end of file diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob28.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob28.gif deleted file mode 100755 index 1076e71ec..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob28.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob28.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob28.pdf deleted file mode 100644 index fa88ffa9e..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob28.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob37.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob37.eps deleted file mode 100755 index 17a3452b3..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob37.eps +++ /dev/null @@ -1,2062 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Title: BASKET.EPS -%%Creator: DeskScan II - Hewlett-Packard Company -%%CreationDate: Fri Feb 16 6:41:52 1996 -%%BoundingBox: 0 0 204 163 -%%EndComments -%%EndProlog -save -15 dict begin -/xpoints 204 def -/ypoints 163 def -/xpixels 847 def -/ypixels 679 def -/rasterbytes 106 def -/bitspercomponent 1 def -/xunits xpixels xpoints div def -/yunits ypixels ypoints div def -/coords [xunits 0 0 yunits neg 0 ypixels] def -/picstr rasterbytes string def -/readimage { currentfile picstr readhexstring pop } def -xpixels ypixels bitspercomponent coords /readimage load -image -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000003F07FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000001E00001FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00700000001A0000001FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD0000780000003E0000000F8FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEC000007D2F7FFFFFFBD0000F807FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000000FFFFFFFFFFFEFFEC078001FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000007FFFFFFFFFFFFFDFFF7F80001FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00077FFFFFFFFFFFFFFFFFFFFE80000FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FC01FFFBFFFFFFFFFFFFFFFFFFFFFC0000FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFE007A7FFBFFFFFFFFFFFFFFFFFFFFFFFFB0007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFFFFFFFFDFFFFFFFFFFFFBFDF00F8FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8F807FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF8001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF810FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFC000DFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF40017FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFE0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0003FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF8005FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0003FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFE01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE001F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB8003 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFE1E7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF01FBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8 -F87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFC007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFC007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FE801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF86FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87EF7FFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC5FF7FFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFE00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7EFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF47FFEFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF86FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FEFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7EFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC77FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFBFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FBFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFC03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFDFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFB00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF803FFFFFFFFFFFFFFFFFFFFFFFFFFFFC76FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFE00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFE00FFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFEFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF807FFFFFFFFFFFFFFFFFFFFFFFFFFFC3FDFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFE01FFFFFFFFFFFFFFFFFFFFFFFFFFF45FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFC03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF807FFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFE01FFFFFFFFFFFFFFFFFFFFFFFFFFC7FBEFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFD83FFFFFFFFFFFFFFFFFFFFFFFFFFC6FFBFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFD07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFC77FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF3CFFFFFFFFFFFFFFFFFFFFFFFFFC7DFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFF47FFEFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF80FFFFFFFFFFFFFFFFFFFFFFFFC3FDFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFC07FFFFFFFFFFFFFFFFFFFFFFFCDBFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFF80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE01FFFFFFFFFFFFFFFFFFFFFFF87FF7FFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFF01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF80FFFFFFFFFFFFFFFFFFFFFFFC7FFDFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFC03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFC03FFFFFFFFFFFFFFFFFFFFFFC5BFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF01FFFFFFFFFFFFFFFFFFFFFFC7F7FFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFC07FFFFFFFFFFFFFFFFFFFFFC3FFEFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF80FFFFFFFFFFFFFFFFFFFFFC7F6FFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC03FFFFFFFFFFFFFFFFFFFF877FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFFFFFFFFFFC5FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF85FFFFFFFFFFFFFFFFFFFFC7FEF7FFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFE1FFFFFFFFFFFFFFFFFFFFC6FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFF47DFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7F7BFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC5FB7FFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -1BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7BF7FFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF43F7EFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFDFF7DFFFFFFFFDF2809000000103FFFFFFC82BD0000001FE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF00000000000000000040000000007DFFFFF000000000001FE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFE00000000000000000000000000005FFFFFF77BADF97FFBFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFC3EDFEFDFFDFFFDFFFFDFFFFFFFDC7FFBFFFFFFFFFCFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFCFFFFFFFFFFFFFFF7FFFFFFFFFBFC3F7FFFFFFFFFFCFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFCBFEFBFFBFFBBBFFFFEFFDFEF5EE87FFFBFFFFFFFFCFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFC002080000000000000000000000077FBFFFFFFFFFCFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFE00000000000000000000000000003FFFFFFFFFFFF87FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFE01001700E80781E03EF0FFFFFFC7DBFFFFFFFFFF83FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFD0FF83FC3FC0EC3F83FA1FFFFFFC7FFFFFFFFFFFF87FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF8FF01FC3784F80F87FC1FFFFFFC7FFFFFFFFFFFB83FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF87711F81F9C789F87FC1FFFFFFC7DFBFFFFFFFFF83FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF83E38E81F1E318D83F83FFFFFFC2FBFFFFFFFFFE03FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFC3E38F38E3F03CF03F87FFFFFFC7FFEFFFFFFFFF01FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFC1C7E638C7F03E631F07FFFFFFC7FFFFFFFFFFFF01FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE08FE07E27F87E078E03FFFFFFC5DEFFFFFFFFFF00FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE00FE07C07FC7D078C0FFFFFFFC7FFEFFFFFFFFE00FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE21FF0FF0FF87F06C407FFFFFFC7FFFFFFFFFFFE00FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF01FF0FF1FF83F8FE00FFFFFFFC5AFFFFFFFFFFF47FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF03FF0FE1FF03F87E08FFFFFFFC3FF6FFFFFFFFFC7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF01FF0FF0FF33E07E01FFFFFFFC7EFFFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF81FE07E07E39F03F117FFFFFFC3FFFFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF81FA47E07E58E23F01FFFFFFF47F7FFFFFFFFFFD7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFC0FC63C63CFCC71E03FFFFFFFC7FFFFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFC47CE3CF38FC4F9E03FFFFFFFC2F7F7FFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFC478788B39FE0F8C43FFFFFFFC7FEFFFFFFFFFFEFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFE671F89F99FF1FC8E3FFFFFFFC77FFBFFFFFFFFA7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFE231FA1F80FF0F80E7FFFFFFFC7FFBFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFE333FC3FC3FF1FC0C7FFFFFFFC7EFFFFFFFFFFFF7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFE383FC3F83FF0FE0C7FFFFFFFC7FEFFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF287FA1FC7FE0FF1C7FFFFFFFC5F7F7FFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF187FE3FC7FE0FF1CFFFFFFFFC3FFFFFFFFFFFFCFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF187FC3FC3FE47F1CFFFFFFFFC77FFFFFFFFFFFEFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF9C7FC1FC1F8E7E097FFFFFFFC7FB7FFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE05FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF987FC1FC1FCE3C01FFFFFFFFC3FFEFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFC03FC0F89F9F3C01FFFFFFFFC5DFFFFFFFFFFFC7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFC01F98F98F9F1C41FFFFFFFFC7FFFFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFC21F9CF3CFBF1CC1FFFFFFFFC7F7FFFFFFFFFFEFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFC39F9E73CF3F98E1FFFFFFFFC3FDF7FFFFFFFFCFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFC38F3E33E71F8163FFFFFFFFC5BFFFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFC7CE3F23E67FC1F3FFFFFFFFC7FDFFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFE3CA3E07E03FC3F3FFFFFFFFC7FFFFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFE76E7F07F07FC1D3FFFFEFFFC3FFFFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFE3E27F87F07FE3E3FFFFFFFFC5FEFBFFFFFFFFEFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFE3E07F8FF8FFE3E3FFFFFFFFC7FFFFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF3F07F8FF8FFE3E7FFFFFFFFC36FDFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF3F0FF8FF8FFE3E7FFFFFFFFC3FFFFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF3F0FF87F8BFC3E7FFFFFFFFC7FDFFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF3F9FF87F87F41C7FFFFFFFFC3EFFFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF82FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF9F87F07F87FC1C7FFFFFFFFC5FEFFFFFFFFFFC7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF9F1FF03E07FC1CFFFFFFFFFC6FFBFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF9F07F23F03FC8CFFFFFFFFFC3FFFBFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF9F07F33F23F98CFFFFFFFFFC77FDFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF9F07E31F33F988FFFFFFFFFC7F7FFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF8F07E39E73F188FFFFFFFFFC3FF7FFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF8F23E79E3BF3C0FFFFFFFFFC7BFEFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFCE63EF8A71F3C0FFFFFFFFFC5FFFFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFCE73E79E7973C0FFFFFFFFFC3F7FFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC679CFCCF9E3E0FFFFFFFFFC7FFFFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCBCFFFFFFFFFFF0FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFCCF3CFC4F8A3E1FFFFFFFFFC3FEFFFFFFFFFFC7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7EFFFFFFFFFFC0FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC4F8CFC0F8E7E1FFFFFFFFFE7FEEFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3C7FFFFFFFFFC3FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC4F89FC0FCE7E1FFFFFFFFFC5DFFFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7EFFFFFFFFFF83FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC0F89FE1FC4FE1FFFFFFFFF85FFFFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFEFFFFFFFFFF07FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE0FC0FE1FC47F1FFFFFFFFFC3FFFBFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FEF4FFFFFFFE0FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE0FC3FE1FC0FF1FFFFFFFFFC3DFBFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFCE13FFFFFFC1FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC1FC0FE1FE4FF1FFFFFFFFFE2FFFFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FCCEBFFFFFF83FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE1FC3FB1FE0FF1FFFFFFFFFE3FFFFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FD9F9FFFFFF03FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE1FC3FE1FE0FF1FFFFFFFFFC5FDFFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FB9FDFFFFFF0FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE1FE3FF3FD1FF1FFFFFFFFFC3DFFFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8E39FCFFFFFE07FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF1FE3FF1FF17F3FFFFFFFFFE37FEFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8E71FCFFFFFC1FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF1FE3FC5FF1FF3FFFFFFFFFC7FDFFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1F9FCFFFFF83FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF1FE3FE1FE1FF3FFFFFFFFFE3FF7FFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBF3FDFFFFF07FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF1FA3FE1FF1FF3FFFFFFFFFC37FFFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FCFFFFE07FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF3FE3FE1FF1FF3FFFFFFFFFE3FFFFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FCFFFFC1FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF1FE3FE1FF1FF3FFFFFFFFFE3EFEFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FCFFFFC3FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF0FE3FE1FF1FF7FFFFFFFFFC37FFFFFFFFFFFE7FE1FFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1F9FFFF83FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF3FE3FE1FF3FF7FFFFFFFFFE3FEFFFFFFFFFF67FE1FFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8F9FFFF07FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFDFF7FFFFFFFFFFFFFFFFFFD3EFFFFFFFFFFFE7FF1FFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCF3FFFE0FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC5FFDFFFFFFFFFE7FF1FFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFE1FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFE7FEBFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFE5FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFEFFFFFFFFFE7FE3FFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC2F6FFFFFFFFFFE7FE3FFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBFFFFFFFFFFFFE7FE7FFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3DFFFFFFFFFFFC7FC21FE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE2FFFFFFFFFFFFE7FC00FE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFE7FC18FE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFEFFFFFFFFFE7F838FE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3BDFFFFFFFFFFE7F8F8FE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC5BFFFFFFFFFFFE7F8F8FE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FF6FFFFFFFFFE7F8F9FE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FDFFFFFFFFFFE7F1F1FE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1DFFFFFFFFFFFE7F1F2FE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFE7F3E3BE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFDFFFFFFFFFC7E3E33E -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3DFFFFFFFFFFFE7E3E27E -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE2F7FFFFFFFFFFE7E7E0FE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA3FFDFFFFFFFFFE7FFF9FE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFF7FFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE37EFFFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE001FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA3FFFFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC001FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1DFBFFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0003FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA3F7FBFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0003FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE2FDFFFFFFFFFFA7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00007FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFDFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00007FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00007FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE2FFFFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0007FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3DBB7FFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE37FFFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC001FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFBFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8001FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA1FBFFFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0081FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE37FF7FFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00E1FFFFFDFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FDFFFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03F1FFFFFCFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3BFFFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFFFFFFE3FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FEDFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFFFFFFF3FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFFFF0FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE37FFFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFC7FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFBFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFD3FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3DEFFFFFFFFFFC7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFEBFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE37FFFFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFFFFFFFFF9FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFDFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFF87FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FEFFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFFFFFFFFFCFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE37F7FFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFE3FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3EFFFFFFFFFFFE7FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFF1FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFBFFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFF9FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFEFFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFFFFF9FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC37BFFFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FFFFFFFFFFFFC7FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFFFEBFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3F76FFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFFFE3FFFFFBFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE37FFFFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFF3FFFFCBFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFFFFFFF9FFFF9DFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1BBDFFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF40FFFFFFFFFFFFFFF8FFFF1DFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFFFFFFFFFFCFFFF2CFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FEFBFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFFFFFE7FFE3CFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3BFFFFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFFE7FFE7CFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFDFFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFF3FFC7CFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC05FFFFFFFFFFFFFFFF3FFC68FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3EFFFFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFFFFFFFFFFFFBFFC00FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FBFFFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFFFFFFF8FF870FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFEFFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFFFFDFF8F9FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE2FFFFFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFFFFC7F8F1FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3DDFFFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFFFFFFFFFFD7F8F1FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FF6FFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FFFFFFFFFFFFFFFFFE7F8F3FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFF3F8F3FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0DFFFFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFFFFFFFFF3F8E3FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFF7FFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFFFFFFFFFFFFFFFF1F8E7FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3EEFDFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFFFFFFFFFFFF1F8CFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF92FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFFFFFFFFFFFF8FC1FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1BFFFFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFF8FE1FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FBFFFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FF7FFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE17FDBFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3B7FFFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFEFFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80003FFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE2DBFFFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE80000FFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFF003FFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000C03FFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFF00FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00055C0FFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3DBDFFFFFFFFF807FFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8003D6607FFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FF7FFFFFFFFF80FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800EEFAC3FFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE2FFFFFFFFFFFF80FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003B53BA0FFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFEFFFFFFFFFC0FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1027BDCC07FFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FF7BFFFFFFFF81FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8403A8DD607FFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FE7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1F7FFFFFFFFFFC1FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0815ADE4003FFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1F83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFFFFFFFE1FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0856EAB4001FFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE377BFFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE18955D80000FFFFFFFFFFFFFFFFFFE8FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80207FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3BFFFFFFFFFFFC1FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC28DF4AC0858FFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF830D55E007687FFFFFFFFFFFFFFFFFFCFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFE1F6DFFFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8C07F4003D7C7FFFFFFFFFFFFFFFFFFCFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FE3FFF7FFFFFFFFE3FFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF842A50002D563FFFFFFFFFFFFFFFFFFCFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80361FFFFFFFFFFFEE37BF7FE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1435A00003D43FFFFFFFFFFFFFFFFFFCFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBF7A8000003EFFFFF800000000000FE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1C1AD0000ADF1FFFFFFFFFFFFFFFFFFCFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFAF450442844A24488120000000000000002FEFFFF800000000008FE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF145E900402E41FFFFF1FFFFFFFFFFFFCFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFB2964A52AA94AB5494AA2292 -100000000000000000000000020188092ABAEE800001FFBFFFFFFF7FFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE2C54A804026F9FFFF80FFFFFFFFFFFFCFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF5292AA0800000045200000000000000000000000001024C -BFBBFF7EDBFFFFFFFFFFBFFFFDFF7FFFFFFFFBF003E3EFF7FFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE28D0480403651FFFC00FFFFFFFFFFFB87FFFFFFFFFFF -F93255252954AA254A94880000000400080000006A136FFEEDFFEFFFFFFFFFFFFFFFFFFFFF -EFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FE0FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC6850000502B70FF800000000000000000288A4010000 -020100000200000000016BDD75DFFBFFFFFFFF7FFFFFFFDFFBFFFFFFFFFFFFFBFFFFFDFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF17FE3FBFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC2078000101A98FF80000000000000000004035FD77FF -FD7EFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFF7FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFF3BF7BFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC30A8000101F60FFF000FFFFFFFFFFFFFFFBFFFFFFFFE -DFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC60F4000001100FFFF00FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FF7FFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC50AC000001800FFFFC1FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFDFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC71A8000000000FFFFF8FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1EFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF821F6010000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF17F7FFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC30900000001E8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFBFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC480E000800550FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FDFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7002000C00D50FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3BF7FFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1000000C00750FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2FFEFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC5800000FF0F51FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFBFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE2800001FD0371FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE28000277F9311FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3BBFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFA180003BDF82C1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF080001FFFC283FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FBFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0C0007F6DC143FFFFFFFFFFFF7FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2FEFBFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00381DBFFE087FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3DF6FFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF020006FEFF087FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF82140FF7BD20FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFBFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00202DF7F00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1DB7FFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1000BFFEF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFDFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00002FFFFC37FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF17FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD00003F7EF43FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FF7FFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80001DFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3DFEFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000FEFDA1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD1FF7FFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00017FF7E0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFBFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0001EFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1F7FFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6C007FBFEF83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFDFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6002BF7FDE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1777FFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80700007EF7D0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000A00003FDF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5FFDFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFF80000140000FFD87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFE000000000003FFC1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1EDFBFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFF80C1BB000FF82DEE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFE0786A0600FFF1DFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FF7FFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFC1E3F02F007FF0FFD87FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFE070F81BFD83FF8EF783FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0DFDDFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFF83E3D17EF7C1FF8FBDC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FBFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFE1B9FC7DFBEE0FF87FFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFC7C2B8FF81B80FFC3FFA0FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFDFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFF0E8FE2FE00F803F83DBF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFF9E2D87680900C3FE2FFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1777DFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFE387E0F41B00063FC3FBF07FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFF00683903C00023FE3FFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FDFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFE03C1901F800003FE3FDFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0DFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFE0B87A08FE00423FE2FFBC3FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFF7FFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFE060D03F6C01603FE3EFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFC187800EC005E07FC3FFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFBFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFE5100000000FA0FFE37BEE1FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0DDFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFC60000360017C1FFE3FFFD1FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE9FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFC8000074003B83FFE7DEFD1FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0F7D7FFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFC01202E8203803FFE3FFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1DFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFC07E03A0C06003FFC7EFDF0FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFC3EC0F00006003FFC3FBFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FEFBFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFCDB03C00002007FFE7FEFD8FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FBFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFF8FE0E800006007FFC6FFDF0FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFCEC0A00000400FFFE3FFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1DFDDFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFC002800040E007FFC77EFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFC060000000E087FF8FEFEE87FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0DFEDFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFC0800000017B47FF0FFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FDFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFC380000007FFE3FE1FFFF787FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFC700000005DF71FC1BFFFE87FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8DFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFE20220001FFBD1F03FBEFF87FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FDFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFE00520006F7FF0C0FFEFDE87FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFE044E800FFFFF800DFFF7F8FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFDBFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFE198D0007FBDA007FBFDFF07FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF15EFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFE308E000DBFF808EFF5FEF1FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFF00820003FFD801FFBFFBF8FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FF7FFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFF0092000FB7F803F7FFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0DFF7FFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFF00140007FDFC0FFFFDFFD1FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FBFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFF000000BFBFFC0BF77F7F83FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFF100000FDFFD83EFFDFFE83FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0DFBBFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFF120001EFFAF06F7FFFAF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFF000003FFFFC0BFFDFFFA1FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF17DFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFF000007B7BF01F7BFFFFC1FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1BFBFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFF80000DFDC007FFFFFDFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFEBFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFC00007F8001FFBDFDFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0F7FFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFE0000F0000FBFEFBFFD87FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFBFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFE000000077FFDFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FBFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFF000000EDFBFFFFDFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1EFFDFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFF0A0002FF7EFFF7FFEC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFF1C002F7FFFB77DFBB87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF17F7FFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFE14007BFFDFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0EFDFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFE0021FFDFFFFBFFEFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF17FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFC00037FEFF7BFFBFDC1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1F7DFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFC0307EFFDFDFFFF7F03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFDFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFC030FFEFFFFFF7FFF07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FBFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFF8021FEFF7DFFDFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1BFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFF80C7FFFFFFFDFFFF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FDBBFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFF01836FBBEFEFFBF607FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0DFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFE028FFFFFFDFFFEFC1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFE030EBFFFFFFFFFB03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1BFBFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFC0E1FEFB7FFFEFFC0BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FBFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFF81E2FFFFF7B7FFD01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1DFFEFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFF87C7FFDFFFFFF6C07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFEFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFE1F87FFFFBFFBFF02FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFE3F8EFEFFF7BFF80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FBFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFE7F1FFFF7FFFF603FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFF7FFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFC3F0EF77FFBFF80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0BF7FFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFC7E1FFFFDFFED07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFDFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFF1FE5FFFFDFEFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0EFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFF1FE377FFFDFF43FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF17DFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFE3FE3FFBBFFFF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8EFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFE3FE7FBFFEFDF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFEFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFC7FC7FFF7FFFE01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF97BFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFF8FFE5FFFFFFF603FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FEFBFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFF8FFC7FFFF7DFE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFF1FFE5EF7FDF7E01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0DFBFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFF1FFE2FFF7FFEE01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFF3FFE7BDFFEFFA40FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFBFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFE3FFE3FFFBFFFE41FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8F77FFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFE3FFE3FFFFF7FC41FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFE7FFE1DF7F7FD9C0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFC7FFE1FBFFFBF9C1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FB7FFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFC7FFF1FFBFFFDBC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFC7FFF0FDFFFFFF40FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FDFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFCFFFF8DFFF7FFB40FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE8BBFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFC7FFFA7FEFFFFF80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFCF7FF87DFFF7FF00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFF7FFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFF8F3FFC3FFFFEFF00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8B6FFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFCE3FFE1DEFFFBD10FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FF7FFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFCFBFFF0FFFDFFE10FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFCFDFFE83F5FFFA38FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFEFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFCFDFFFC2FFFFF478FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0DEDFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFCFDFFFC07DEF70F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FBFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFCFDFFFF0BFFFE0F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FF7FFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFF8FDFFFF81EF703F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFF8FFFFFFE03B407F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8DFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFF8FFFFFFF80800FF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFF8FFFFFFFF0007FF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8F7F7FFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFF8FFFFFFFFF5FFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FF7FFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8DBFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1BFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFE9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FF6FFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF877FFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFE2FFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FF77FFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFC2FFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFA7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE8F7FFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFC3FFFDFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFDFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFC7FFFAFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FF7FFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFC6FFFEFFFFFFFDF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8EFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFC7FFFE7FFFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFBFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFC7FFFF3FFFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FDFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFC7FFFF9FFFFFFBF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFC7FFFFCFFFFFFBF07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8DEFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFC7FFFFCFFFFFFBF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFEFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFC7FFFFC7FFFFF3F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87BFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFC7FFFFE3FFFFF3F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFF7FFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFC7FFFFF1FFFFF7F0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8BFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFC7FFFFE9FFFFF7F1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FDFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFC7FFFFF8FFFFF3F1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FBFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFC7FFFFF8FFFFE7F1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0EFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFC7FFFFF87FFFF7E1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFC7FFFFFC7FFFE7E1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFDFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFC7FFFFFE7FFFF7E3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF877FFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFC7FFFFFA3FFFC7E3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE8FFF7FFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFC7FFFFFF3FFFE3E3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8BBFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFC7FFFFFF3FFFCFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFF7FFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFC7FFFFFF3FFFE787FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FDFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFC7FFFFFF9FFFC787FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8DFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFC7FFFFFF9FFFE78FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87EFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFC7FFFFFE9FFFA38FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFDFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFC6FFFFFF8FFFC70FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8F7FFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFF02FFFFFFCFFFC71FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8BFEFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFF86FFFFFFEFFFC61FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF97FFDFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFF0FFFFBFFE7FFC43FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFF1E7FFDFFE7FFCC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFEFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFD3F7FFEFFE7FF8C3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FDFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFE3F7FFF7FE7FF887FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0AFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFE3F7FFF3FE3FF887FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFDFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFE3FBFFF9FE3FF98FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FEFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFE7FBFFFCFE3FFB8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFE3F9FFFE7E3FF10FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8E6FFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFE7F4FFFF3E1FF21FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFEFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFE7FCFFFF9F1FE21FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFE7FE7FFF861FE63FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFE7FC3BFA0000043FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8BEFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFF810000000000043FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8EFF7FFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFF80000001F400007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFF802FFF43FFC3007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FBFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFF07FEFFE1FFC3E0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FBFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFF1BFFFFF3FFC7F1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFE3FFFFFE3FFC7E1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFF7FFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFE3FFFFFF17483E1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8DEFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFE7FFFFFE0000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFC7FFC00001FC003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8F7FFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFC0C000001FFE083FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8BF7FFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFC0157BBB1FF73E3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFEFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFCFFFFFFF8FFF1E3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFDFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFF8FFFFFFFC7FF163FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8EFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFF9FFFFFFFC7FF9F1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FEFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFF8FFFFFFFE7FFCE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8EFDFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFF9FFFFFFFE3FFC71FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFF1FFFFFFFEBFFE71FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFF3FFFFFFFF1FFE78FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FBEFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFE3FFFFFFFF9FFE747FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFE3FFFFFFFF8FFE3C3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFBFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFE3FFFFFFFFCFFE7E3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FB7FFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFE3FFFFFFFFC3FE3F0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF85FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFE3FFFFFFFFF1FF1F9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFE7FFFFFFFFE8FF1F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FDDFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFE7FFFFFFFFF8FF8F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFEFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFC7FFFFFFFFFE7F8787FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF86F7FFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFE7FFFFFFFFFE3FC3CFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFE7FFFFFFFFFF3FF1C3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8BFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFE7FFFFFFFFFF1FE063FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFDFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFC3FFFFFFFFFF1FF871FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8DDFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFCFFFFFFFFFFF9FFC78FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFDBFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFE7FFFFFFFFFF8FFE3C3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFC7FFFFFFFFFF8FFE3E3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF85FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFE3FFFFFFFFFFC7FE3F3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8B7FFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFE3FFFFFFFFFFC7FF3F1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFDBFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFE3FFFFFFFFFFE1FF8F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFE3FFFFFFFFFFE03F87C7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FEFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFE3FFFFFFFFFFE01FE7C7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFDFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFF3FFFFFFFFFFC00FF2E7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8EFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFE1FFFFFFFFFFE007F9E3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE87FEFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFF9FFFFFFFFFFC001F8E3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF86FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFF8FFFFFFFFFFC061BCF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FBFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFF8FFFFFFFFFF01B03C02FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87DFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFF8FFFFFFFFFF01FC00207FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFDFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFC7FFFFFFFFF07FA0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8BFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFF87FFFFFFFFE07FF54007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFDFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFC3FFFFFFFF80EBDFD80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87DFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFC1FFFFFFFF017FFDF607FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8BFBFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFC1FFFFFFFE01FBFFFB87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FEFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFC0FFFFFFF803FFFFFF43FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFC07FFFFFF007FEFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8BFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFE63FFFFFC01DBFFF6DF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFBFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFE31FFFFF807FFFDBFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8DDFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFE70FFFFF00BFFEFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFE3CFFFFE03EFDFFFFBBC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FDFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFF3C3FFF807FEFFFFDFEE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8DFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFF1E3FFF0077FFFFEFEFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87EFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFF3F0FFF01FDFDFFBFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FF7FFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFF3F8FFC03FFFFEFFBFDFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8B7FFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFF1FC7FC01DF7FDFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87F7DFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFF1FA3F807FBFFF7FF7EFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8BFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFF1FC1F00FFFDBFFBDFFBC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF877DFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFF1C00E006EFFFFFFFF7FE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87BFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFF8000000FFEFFF7EF7FBF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87F7FFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFF80000007F7F7FEFFBFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8BFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFA0000003FFFEFFFFFBDF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFF00E0002FF7FFFFFFFF7CFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF977F7FFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFC1F0000FFEFF7FFFDFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFC2BC0005FFF7EEDFFF7E7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FEFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFC1EE0002FFFFFFF7F7FE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFE3F7AFC1F7FFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87F77FFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFE3BFEBE07EF7EFFFFFDF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF877FFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFE1FBFDD87F7FFDEEF7F79FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FDFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFE1FFFF7C17FBF77FFDFE8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFF1EEFFFA0FFFFFEFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF86FEFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFE1FFBDFF03F5FFFFFFBFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87BFBFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFF0FFFFFD80FFFFFFDFEFE7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF97FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFF8BBF77FE0FEFFEFFEFEF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87F7FFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFF8FFFFFF503FFFF6FFF7F3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF85FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFF8DFBFF7F83EF7FFF7FF78FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFF87FFF7FFC07BDF7FFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF877EFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFF87BFDFEFC07FF7FBFF7F47FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87F7FFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFC6FDFDFEC01BFFDFEFFBC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8BBFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFC7BFFFFFC00F7FFFFBFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FF7FFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFE3FFFEFBE303FFF7FFFBE7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFE3EDFFFFE3C1FDFEFF7FE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF837FFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFA3FFBFBEE1C06FFFFFFF73FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FBDFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFE17FEFFFE3F83EFFBFFBF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87BF7FFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFF1FFFFDFA3FA0FDFFF7F79FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFF1FBFFFF63FE0FFDFBFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7DFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFF0BFEFDFE3FF87FFFFDFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFF8FF7FFFE3FFC1BFEFFBFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87F7FFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFF8BFFBFFA3FFE0EF7FFF7C3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC5FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFF0EFFFBDE3FFF0F7FBFFFE5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FDFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFF87FFDFFC3FFF83F7F7FDF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC6FEFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFC7EFFDFC3FFFA1BFFF7FF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7EFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFC7FFFFFC7FFFE0FEFFBF79FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87BFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFC2FBFFFC3FFFF06FFBFDD0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FEFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFE3FFFB6C7FFFF83FFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFBFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFE3DEFFFC7FFFFC3DFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFA3FF7FFC7FFFFE1F7F5FFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7DFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFE1FFFFF47FFFFF07FFFEEE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFE3BFDFBC7FFFFF87BFF7FF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FDFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFC1FFBFF87FFFFF83F7FFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83EFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFF87D7EDFC7FFFFFC1FFFFF71FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FF7FFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFF0FFFFFFC7FFFFFE0FF7EFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFC0FFBFF7C7FFFFFE1F7DFFD3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3EFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFE17FFFFF87FFFFFE0FFF7FF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8F7FFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFF07FFFFFB8FFFFFFE1FFFFDF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFE07DBDEFF0FFFFFFC35FFF7C3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFC1FFFF7FF1FFFFFF87F7FFEE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FBFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFF82EFFFFBCBFFFFFE07FF7FFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FEFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFE07FFDFFFC3FFFFFE17FBDFEC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC77FFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFE1BFBFFFD87FFFFFC1FBFFEF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC5FFBFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFF83EFFF7BF8FFFFFF87FFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7BFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFF83FBFFDFC1FFFFFF0BBFFDBF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF47FDFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFE0FFF7FFFC1FFFFFF0FFBBFFD1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFC1BBFF7F783FFFFFE1FFFFFF61FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7BFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFF87FFFFFFE0FFFFFFC3FFFDFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7DBDFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFF0BFFFFBFC1FFFFFF83D5FFBF83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFE0FBF7BFF42FFFFFF8F7FBFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCBFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFE3FFFBFDF87FFFFFF0DFFFFDE8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7EFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFC2FF7FFF61FFFFFFF1FFFF7FE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FBFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFF07BBFFFFC3FFFFFFE0FBFFFF61FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC77FFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFF1FBFBEFFC3FFFFFFC3FF7BDFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FDFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFE1DFFFFFB0FFFFFFFC7FFFFFBC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEC7FFBFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFC2FFFF77F0FFFFFFF07BFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3F7FFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFF87FFFFFBE1FFFFFFF85EFFDFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FDFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFF07F6DFFF83FFFFFFF0FFDDFBD8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FF7FFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFF0FFFFBFE87FFFFFFF1FFF7FFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC5FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFE1DFFDFFF0FFFFFFFE0DEFDFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF47FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFC3FBDFFBF1FFFFFFFC3FFFFF761FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA6FFBFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFC7FFFFDFC3FFFFFFFC2FFFF7FE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8777FFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFF8BFDFFFF47FFFFFFFC7DDFFFBC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFF0BFFFEFB07FFFFFFFC7DFFF7F87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87BFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFE1F77FFFE1FFFFFFFFC7FFDFFE8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFE3BFFBFFE3FFFFFFFE8FDDFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF86FDFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFC1FFFEED43FFFFFFFF1FFEFBBF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FBFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFF87BBDFFF0FFFFFFFFF15FFFFFA1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFBFFFFFFFFFFFFFFFE -FFFFFFFFFFFFF0FFFFFF71FFFFFFFFF1FFF7EFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87DFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFF0FFBFF7E1FFFFFFFFE1FDFFFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC6FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFE17EFBBFC3FFFFFFFFE3FFFEFEC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC779FFFFFFFFFFFFFFFFE -FFFFFFFFFFFFE1FFBFFE87FFFFFFFFC2DEFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FF7FFFFFFFFFFFFFFFE -FFFFFFFFFFFFC3FFFFFE0FFFFFFFFFC3FFDEF70FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87DFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFF83DFDFFC1FFFFFFFFFC7FFFFFD1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFF07FFFAF47FFFFFFFFF8BBFFF7E2FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC5FFBFFFFFFFFFFFFFFFE -FFFFFFFFFFFF8FB7FFD07FFFFFFFFF8FFDB7F43FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFF1DFFFFE1DFFFFFFFFF8FFFFFDC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87EFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFC1FFBF783FFFFFFFFFF077FFBF07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC5FDFFFFFFFFFFFFFFFFE -FFFFFFFFFFFC3FFF7E87FFFFFFFFFF1FF7DFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC77FDFFFFFFFFFFFFFFFE -FFFFFFFFFFFC3F7FFE0FFFFFFFFFFF1DFBFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FEFFFFFFFFFFFFFFFFE -FFFFFFFFFFF8FFBFBC1FFFFFFFFFFE1F7FFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFE -FFFFFFFFFFE0F7FFF47FFFFFFFFFFE17FDFAC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7DFFFFFFFFFFFFFFFFFE -FFFFFFFFFFE0FDEFF07FFFFFFFFFFE1FFFFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC5FEFFFFFFFFFFFFFFFFE -FFFFFFFFFFC3BFF7C1FFFFFFFFFFFC00BFFF07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7F7FFFFFFFFFFFFFFFFE -FFFFFFFFFF81DFFFC3FFFFFFFFFFF800077F0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FEFFFFFFFFFFFFFFFFE -FFFFFFFFFF001EF607FFFFFFFFFFF80001371FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4F7FDFFFFFFFFFFFFFFFE -FFFFFFFFFF000BFD1FFFFFFFFFFFF801801C1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFE -FFFFFFFFFE10017C1FFFFFFFFFFFF001C0003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF837FFFFFFFFFFFFFFFFFE -FFFFFFFFFE01E0383FFFFFFFFFFFF00340007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FDFFFFFFFFFFFFFFFFE -FFFFFFFFF8018000FFFFFFFFFFFFF001C0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFE -FFFFFFFFF8000001FFFFFFFFFFFFF0002000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFE -FFFFFFFFF87C0803FFFFFFFFFFFFE07C0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC5FDBFFFFFFFFFFFFFFFE -FFFFFFFFF03F0407FFFFFFFFFFFFE00B8001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7BFF7FFFFFFFFFFFFFFE -FFFFFFFFF007C007FFFFFFFFFFFFE0000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD3FFFFFFFFFFFFFFFFFFE -FFFFFFFFC000E00FFFFFFFFFFFFFC0000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FDFFFFFFFFFFFFFFFFE -FFFFFFFFC000100FFFFFFFFFFFFFC01C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF43DF7FFFFFFFFFFFFFFFE -FFFFFFFFC220083FFFFFFFFFFFFFC01C001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFE -FFFFFFFF8460003FFFFFFFFFFFFF803E003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFE -FFFFFFFF80C0007FFFFFFFFFFFFF81FE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1DFFFFFFFFFFFFFFFFFE -FFFFFFFF01C000FFFFFFFFFFFFFF03FE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFF7FFFFFFFFFFFFFFFFE -FFFFFFFE11C001FFFFFFFFFFFFFF17FE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFE -FFFFFFFE11C001FFFFFFFFFFFFFF17FE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF43FBFFFFFFFFFFFFFFFFE -FFFFFFFC278001FFFFFFFFFFFFFE27FE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC5FEDFFFFFFFFFFFFFFFE -FFFFFFF00F1001FFFFFFFFFFFFFC0FFE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC77FFFFFFFFFFFFFFFFFE -FFFFFFF00F2003FFFFFFFFFFFFFC4CFE807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFE -FFFFFFC00F2003FFFFFFFFFFFFF80CFE401FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFE -FFFFFF823E2003FFFFFFFFFFFFF019FEC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC2F7FFFFFFFFFFFFFFFFE -FFFFFF007E6007FFFFFFFFFFFFE033FC8007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFE -FFFFFF007E6007FFFFFFFFFFFFE003FD8001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF877DBFFFFFFFFFFFFFFFE -FFFFFC201E8007FFFFFFFFFFFFE203FC8005FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFE -FFFFFC7004C00FFFFFFFFFFFFFC607FC80407FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFE -FFFFF8FC000007FFFFFFFFFFFFC7400000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC6EDFFFFFFFFFFFFFFFFE -FFFFF8AF000003FFFFFFFFFFFF87A00000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7BFDFFFFFFFFFFFFFFFE -FFFFF1FD400003FFFFFFFFFFFF8BE00000080FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FEFFFFFFFFFFFFFFFFE -FFFFF2FBF80001FFFFFFFFFFFF1FF80000182BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFE -FFFFE37FEDAC01FFFFFFFFFFFF176D001E1007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC77FFFFFFFFFFFFFFFFFE -FFFFE3FB77F800FFFFFFFFFFFF1EFEFD7BE001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7D7BFFFFFFFFFFFFFFFE -FFFFE37EFFFE007FFFFFFFFFFE3FFF7FDE8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFE -FFFFE3BDFBBC003FFFFFFFFFFE3F77DFFF80107FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFF7FFFFFFFFFFFFFFE -FFFFE1F76FDD003FFFFFFFFFFC67FFFEF788601FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7F7FFFFFFFFFFFFFFFFE -FFFFE3DFDDFE801FFFFFFFFFFE3DB7EFFDBEA00BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC5FFFFFFFFFFFFFFFFFFE -FFFFE17EFEFFC007FFFFFFFFFE7FFDFFFFFB8003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FDFFFFFFFFFFFFFFFFE -FFFFE0B7EFEF6001FFFFFFFFFE7FFF77BFFF0020FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC37F7FFFFFFFFFFFFFFFE -FFFFE016FDB7E0003FFFFFFFFE6FB7FDCB6F8070FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFE -FFFFE000B7FFFC001FFFFFFFFA3FFEDFFDFAD87C3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFE -FFFFE0001FDBB61A0FFFFFFFFC1BFF3586DBF0643FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC36FFFFFFFFFFFFFFFFFE -FFFFF00001F6FA3F07FFFFFFFE09A000007F68BE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC6FFDFFFFFFFFFFFFFFFE -FFFFF80010369B5A07FFFFFFFE0000000004C0901FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAD3A80007FBFFFFFFFFFFFFFFFFE -FFFFFC000080000007FFFFFFFE00012B680000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF54CCA955552A5244A48840000000000000000003FFFFFFFFFFFFFFFFFFE -FFFFEF400000000007FFFFFFFE180EFFFFC000021FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAD94A94AAAA924914AA44A22908 -000000000000000000000000004000000000000000007FDBFFFFFFFFFFFFFFFE -FFFFFFF80004000007FFFFFFFE07ED596FED32D61FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF6DEAA552A49295492144484000000000000000000000000000000 -000000000000000000000000121124C0002249113252DFFF7FFFFFFFFFFFFFFE -FFFFFF7E8001040007FFFFFFFF00000000EF97FC1FFFFFFFFFFFFFFFFFFFFFFFFFFFF5FED5 -555525292A91244824400000000001000000008000000000000000000000000002402BA4CD -FB77BBDFFF6FF7F6DFFFFFFFDB7FBF7FFFB9BD77FFBBFFFFFFFFFFFFFFFFFFFE -FFFFFFFFE000000007FFFFFFFF8000000013694007F2AD6AA6AA52494A2A28A41200000000 -0000000000000000000000000000000000001024E935BF6DEFB7FFDB77FFFFFFFDBFBFFFFF -7FFFFEFBFFF7BEFDFDFEF7FBFFFFEFFFFEFFFFFFBFFFF7FFFFFFFFFFFFFFFFFE -FFFFFFFFB80000000377562000000000000000000000000000000000000004010000000000 -0000000000D116EF9A7F65B6F7EFFBFFFFFFDDBFFFFFF7BF7FFFFDFEFEDF7FDDDFFFEFFFFF -DDB77FDDD7FFFFFFEFDFFF7FFFBFFFEDFFFFDFDFFFFFBFFFFFFFFFFFFFFFFFFE -FF800000000000000000000000000000000000000000000000000000A92382DADB6FFBBF7D -6DBFB6DFFFFEFEFDEFEFBDFFEEFB76FFFBFFFFEEFBDDFFF6F75DFFFFBFFFEDFFFEFBFFFEDF -FFFFFFFFFFEDFFB7FFFF7FFFFBF7FFFFBFFFFFFBFFFFFF7FFFFFFFFFFFFFFFFE -FF8000000000000000000000000000000000000104D79B6FF7BFFFFFEFBEFEDB77FBDDF7FF -FFF7FFFFEEFFF73FFFFFFFFEFFBFFFB77FEFFF7FFFEEFFFFFFEEFF77FFFFFFFFEFDFFDEFFF -FFFFFFFFFEFFBFFFFFEFFFF7BFFDFBFFFFFFFEFFDBF7FFF7FFFFFFFFFFFFFFFE -FF8000000000000000B5BDFB597F69BDFAEF77BFFBDF7BFDFFF7FFFFBFF7FFFFFEFDFF7DDF -EFFFFDFDFFBBFFEFBEFBEEFFFFF7DFFFF7FBFFFBDDFFBFFFF7FFEFFFEFFBFFEDFFFDDF7FFB -F7FB7FFDFFFFEDFEFDFFDBFFEFBFDFFFF7BFFFDFFFFFFFFFFFFFFFFFFFFFFFFE -FFFDDBD76DDDF6DFBFFFEFFFFFEDFFDF5F77BEFBDFFBFD7FFDFDF777FBFFFFFFFFFFFFFFFF -FDFFFFFFFFFFFFFBFFFDFFEFDFFFF7FFFF7F5FFFFF6BEF7EFFFFFFFDFBFF7BFFFDFFFFFFFE -FB7FDDFF7FFFFFF7EFF7FFBFFFFDFEFB7EFBDFFF7BBF6EFDFFFFFFFFFFFFFFFE -FFBF7FFBBDFEBDF5F6FDFF7FEDBFBBFDFFFEFFFDF6FFDFF77FFFBFFFFFDF7FDFF7FFBFDEFD -7FBAFFDF77FFBFFFFFDFFFFFFFFFFFBB7FFFFBFF7FFFF7FFDDBD77BF7EDFFFFFFFFF77FB7F -BFFFFFFFFDFFF7FFBF7FFFFBFFFFFFBFDFFDFF7DFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFD7BFDEFDF7FFFDFFFEFBFFFFFDFF7FFFFDFFFDFFFFFBF7FFDBBFEF7DB7EFFDBEDFFEF -FFFFBDF7FFFFFFFDBFFFFF6FF7FBFBFFFDDBFEDDFFFFFFDFFFFFFEFFFFFFFDFFBFDFFFDB7F -FFEFFFBFFFF77F7FFFFFFEEFFBBFBFDFFF7FEFDFFBFFFFFFFFFFFFFFFFFFFFFE -FFFDDFFF6F7FEFDFFB7FBFF7FFEFFDFEDF7FF77FFFFF7F7FFFDFF7FFBFFFFFFFFEFFFDF7FF -DEEFEFFFFDDDEDFFF76DFDF6DFBDFFEFFFBFDDFFDEF77FEEF7EF7FEFBFDF6F7FF7FFFFFFF7 -FFFF6DFDB6FFFFFDFFFBEFFDDFFFEFFFFFFFFFFFFFDBDFFFFFFFFFFFFFFFFFFE -FFDFFFFFFFF6FF7F7FEFFDFDFDFBEFDFFFB6FFFBBBEFF7FFEFFDB7DFDF6EFFF7EFFDFEFEFF -EFFFFDFB6FFFFFDDFFFFAFFFFDFEFDFEF7FDFEFFFFFFE5FFFF7FF7FFFFFFFFF6FFF77BFFFF -FBFFFFBFFFBF7FFFF7FDFFFFFFEFFFFFFFFBFFFFFBFFFFBFFFFFFFFFFFFFFFFE -FFEFFDEFFF7FFBB7EFFAF7FFBFFFBFFFFFFFFBBFEF7DFFF7FFF7FFFFFFFFDB7EFFBFDFFFF7 -FFF77FFFFEDFFFBFBFFFFFFBFFFFDFFFFDFFFFEFFEFDFFFBFFFFFFFBEFFFFFFFDEFFFEFF7F -EDBFFFFFFFF7EFDF7FEFBFFFFFFBF7D7DFFFEFBF7FFFF6FBFFFFFFFFFFFFFFFE -FFFDBFB6B7BBDFF77F6F7DF7FEDBFBBB77FF6FDEFFFFDDBF6EBFFDEBFFFFFFDFBFEEEEFBFE -EEFFFEFFFFFF7DFFFF7BFFBFBFFF7DFFFFBFBFBFDFFFFF7FFFF6FFFD7FDEEFFFFFFFBFFFFD -7FF6FDFFFFFFFDFFDEFFF7DEFBFFFFFFEF7F7FF7FEFFFFFFFFFFFFFFFFFFFFFE -FFFFFEFFFFF6FBFBFDFFBFFDBFFFF6F7DDEFFFFFBBBFFEFEFFFFFEFFF77FFDFBFDFFFFFEF7 -FBFFDFBEFFFBEFFBFEFF76FFFB7FFFBEDFFFFFFAFFBFAFFFFBFFEEFFF7F7FF7EFFFBFFFFBF -FFFFF7F6FFBF7FFBFFFFFFFFDEFFFFFFFFFBEFFFFFBDFFBFFFFFFFFFFFFFFFFE -FFEEEFF7FFFFDF7FEFB7FF7DDFF7FFFFFEFDFB7FFDFFFFDFFBFBDFFB7FEEDFFFFFBFFF5FFF -FFDDFFEFBFBFFFFF6FBFFFBBFFFFDFDFFFBBFEFFF7F7FFFB7EEF77FFFFFEF7DFFB7FEDDBFF -FF7FFF7FBFFFDFBFEEFBFBFFFFF7BFFDFFFFFFB7EFFFFFFFFFFFFFFFFFFFFFFE -FFFFDFBEF7DFFFFDBFFFEDBFFEDEFFFFFFFF7FF7BFB7EFFFFEFFFFFFFFDFFFDFB7F6DFFFFD -FEFFFDFFEFFF7DFFFFFFFFFFFFFFFBFFF7FF9FFFFFFFFBBFEFBBFFBFDDFFFFFFEFEFFFFFEF -FBF6FFFFEDFFFBFFFFFFBF6EFFFDFF7FF77FFFFFFFEFBFFFFFFFFFFFFFFFFFFE -FFFFF7F7BF77FFBFEFFFFFFFFFFF7EFFFFDFFFFFFFFDBFF7DFFBEFFFFBFFFDFFFFFFF7F6DF -FF7FDFFFF7EFFFF6FFBF6FFFFFBFDFF77FFDFF7EFBFBFFFFFFFFFFFDFFFFFFFFFFFFFFFFFF -FFFFFFBFFFDFFFFFF7FFFFFFFEFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFBEFFFFFBFEFBEFFDBFFFFFDFFFF7DFDFFFB7FDFFBFFEFF7FBF7FFF7F7FBEFFFFFFFFFFFF -7FFFFFF7FFBDFF7FDFFFFFDF7FEFFFFFFFFFFFFFFFFFFFFEFFFFBFFFFEFFBFDFFF7DFDBF7F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFEFFFFFFFFFEFFDBFF6FFF7FDFFFFFBFBF7FDDFBFFFDFFFEFFFFB6FFFF7FFFBB6FEDBFFFF -FFBDFDFDBFFFDBFFFFDBFFEFFDF7FDFFBFBFFFDF7FFFFFDFFF7FFDFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFF57FFFFDFFFFFFFFB7FEFFDF7EFFFFFFFF7FEFFFFBF7FFFBEFFBFFFBEFDFFFFFFFF7EF -FFFFFFFFFFFFFFFEFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFEDFFB776FBFFFF77DFF7FBFF7FFFB7EFDBFFFFFFFFFBFFF7FFFFFEFFFFFFFFFBFFEFFFB -7FDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFDBFFDFFFFFF77FBFFFDFBBFFFFFFEFDFB7FFFBF7EFDFFFF7FFFFFFFBFFBFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFF6EFFFFEFFFBBFFFFFFFFDFFFEFFFF7FFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFBFFFDBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -end -restore -%%Trailer diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob37.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob37.gif deleted file mode 100755 index 0e0cd920d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob37.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob37.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob37.pdf deleted file mode 100644 index 45066ff72..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob37.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob38.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob38.eps deleted file mode 100755 index e9562e0f3..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob38.eps +++ /dev/null @@ -1,826 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Sun Sep 3 19:11:41 1995 -%%For: kashy -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 464 278 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def /dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def /crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /rpath { - newpath moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} bind def /rfpath { - /rad3 exch def /hh3 exch def /ww3 exch def /yy1 exch def /xx1 exch def /xx2 xx1 ww3 add def /yy2 yy1 hh3 add def newpath xx1 yy1 rad3 hh3 0 gt { - add - } { - sub - } ifelse moveto xx1 yy1 xx2 yy1 rad3 arcto 4 { - pop - } repeat xx2 yy1 xx2 yy2 rad3 arcto 4 { - pop - } repeat xx2 yy2 xx1 yy2 rad3 arcto 4 { - pop - } repeat xx1 yy2 xx1 yy1 rad3 arcto 4 { - pop - } repeat closepath -} bind def /rfill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - 4 2 roll rpath crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - rectfill pop - } ifelse grestore -} bind def /rstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse 4 2 roll rpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /rffill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse rfpath filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /rfstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse rfpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /mkrpath { - dodrawctm rpath unpagectm -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /arwlen 6 def /arw 4 def /arow { - gsave newpath moveto lineto unpagectm concat { - - } { - - } { - - } { - - } pathforall newpath 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath crlinalph setalpha strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - crstrpat findfont exch strwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /arwpath { - sc7mt currentmatrix pop gsave newpath moveto lineto unpagectm dup concat { - - } { - - } { - - } { - - } pathforall grestore unpagectm 5 -1 roll concat 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath sc7mt setmatrix -} bind def end -TopDrawDict begin /estroke { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /efill { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath unpagectm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /apstroke { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc pie chord or { - closepath - } if crlinalph setalpha pie not chord not and { - crfrtarw { - 2 copy crlinw exch gsave newpath angle1 1 add cos radius mul radius add angle1 1 add sin radius mul radius add moveto angle1 cos radius mul radius add angle1 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if crendarw { - 2 copy crlinw exch gsave newpath angle2 1 sub cos radius mul radius add angle2 1 sub sin radius mul radius add moveto angle2 cos radius mul radius add angle2 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if - } if crlincp setlinecap crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /apfill { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup 5 -2 roll arc pie chord or { - closepath - } if 1 xscale div 1 yscale div scale crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /mkepath { - dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def /closed exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc closed pie or chord or { - closepath - } if unpagectm -} bind def end -TopDrawDict begin /closedspl false def /nspans 0 def /sstrt { - gsave dodrawctm /closedspl exch def /nspans 0 def newpath -} bind def /sstrtpath { - dodrawctm /closedspl exch def /nspans 0 def newpath -} bind def /sadd { - nspans 0 eq { - moveto - } { - pop pop - } ifelse curveto /nspans nspans 1 add def -} bind def /splstroke { - nspans 0 gt { - unpagectm concat closedspl { - closepath - } if crlincp setlinecap crlinjn setlinejoin crlinalph setalpha crlinw setlinewidth crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - flattenpath crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse - } { - pop pop - } ifelse grestore -} bind def /splfill { - nspans 0 gt { - closedspl { - closepath - } if crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - flattenpath crfilpat findfont exch crfilstyl 0 eq { - filwittrans { - trpateofil - } { - oppateofil - } ifelse - } { - filwittrans { - trpatfil - } { - oppatfil - } ifelse - } ifelse - } { - crfilstyl 0 eq { - eofill - } { - fill - } ifelse pop - } ifelse - } if grestore -} bind def /mksplpath { - nspans 0 gt { - closedspl { - closepath - } if - } if -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 464 277.149994 rectclip --85 -318.850006 translate -85 318.850006 464 277.149994 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 1 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 8] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -/usedash true def -/strdsh [4 4] def /dshpatoff 0 def -false 1 0 0 1 0 0 sc5mt astore sstrt -systemdict -begin -99 350 497 651 setbbox -161.5 493 moveto -161.5 493 162.5 494 162.5 494 curveto -162.5 494 161.5 494 161.5 494 curveto -161.5 494 162 494.5 162 494.5 curveto -162 494.5 162.5 494.5 162.5 494.5 curveto -162.5 494.5 163 495 163 495 curveto -163 495 183 525 183 525 curveto -183 525 206 552 206 552 curveto -206 552 226.5 569.5 226.5 569.5 curveto -226.5 569.5 248 583.5 248 583.5 curveto -248 583.5 270 591 270 591 curveto -270 591 291 594.5 291 594.5 curveto -291 594.5 315 591 315 591 curveto -315 591 334 584 334 584 curveto -334 584 357 570 357 570 curveto -357 570 379 551 379 551 curveto -379 551 399 527 399 527 curveto -399 527 421 496 421 496 curveto -421 496 442 461 442 461 curveto -442 461 464 421 464 421 curveto -464 421 470 408 470 408 curveto -470 408 474 400 474 400 curveto -474 400 485 377 485 377 curveto -485 377 496 350 496 350 curveto -end -/nspans 23 def 1 0 0 1 0 0 sc5mt astore 1 0 0 1 0 0 sc6mt astore splstroke -/usedash false def -0.39 0 0 0.39 141.826462 244.305008 sc4mt astore 0.39 0 0 0.39 449.986389 244.305008 sc6mt astore 9.89949 1 -1 108 487 0.292537 0 0 0.315168 123.928741 338.168335 sc5mt astore estroke -0.39 0 0 0.39 141.826462 244.305008 sc4mt astore 0.39 0 0 0.39 449.986389 244.305008 sc5mt astore -99 70 326 275 0.340702 0 0 0.39 76.820541 350.475006 sc6mt astore ssl -/esave save def 0.39 0 0 0.39 141.826462 244.305008 sc4mt astore 0.39 0 0 0.39 449.986389 244.305008 sc6mt astore 54.851326 216.647827 252 412 1.217391 -1 11.5 false false 0.340702 0 0 0.39 67.621582 332.14502 sc5mt astore apstroke esave restore -/esave save def 0.39 0 0 0.39 141.826462 244.305008 sc4mt astore 0.39 0 0 0.39 449.986389 244.305008 sc6mt astore 54.851326 216.647827 252 412 1.217391 -1 11.5 false false 0.340702 0 0 0.39 66.940178 331.365021 sc5mt astore apstroke esave restore -0.39 0 0 0.39 141.826462 244.305008 sc4mt astore 0.39 0 0 0.39 449.986389 244.305008 sc5mt astore -82 68 308 276 0.340702 0 0 0.39 76.820541 350.475006 sc6mt astore ssl -0.39 0 0 0.39 141.826462 244.305008 sc4mt astore 0.39 0 0 0.39 449.986389 244.305008 sc5mt astore 1 -41 227 408 0.340702 0 0 0.39 105.098824 298.605011 sc6mt astore ssl -0.39 0 0 0.39 141.826462 244.305008 sc4mt astore 0.39 0 0 0.39 449.986389 244.305008 sc5mt astore 15 -43 243 409 0.340702 0 0 0.39 105.098824 298.605011 sc6mt astore ssl -0.39 0 0 0.39 141.826462 244.305008 sc4mt astore 0.39 0 0 0.39 449.986389 244.305008 sc6mt astore 5.408325 1 -1 125 441 0.535465 0 0 0.3245 115.505104 315.400635 sc5mt astore estroke -/crlinw 1.9 def -false 1 0 0 1 0 0 sc5mt astore sstrt -systemdict -begin -78 335 256 462.376099 setbbox -87 455 moveto -87 455 97.887077 461.956085 98 462 curveto -98.967079 462.376099 109.966095 454.885132 111 455 curveto -111.046097 455.005127 121.928711 453.007141 122 453 curveto -122.228714 452.977142 128.770081 456.020905 129 456 curveto -129.100082 455.990906 135.891754 452.019684 136 452 curveto -136.221756 451.959686 144.792664 453.057587 145 453 curveto -145.332672 452.907593 152.674057 447.054321 153 447 curveto -153.754059 446.874329 172.238846 447.105713 173 447 curveto -173.318848 446.955719 182.675842 441.073669 183 441 curveto -183.335831 440.923676 194.768204 442.158051 195 442 curveto -195.428207 441.708038 204.602631 426.377502 205 426 curveto -205.202621 425.807495 224.849716 412.201599 225 412 curveto -226.079712 410.551605 245.199005 371.623627 246 370 curveto -246.309006 369.373627 255 346 255 346 curveto -end -/nspans 14 def 1 0 0 1 0 0 sc5mt astore 1 0 0 1 0 0 sc6mt astore splstroke -/crlinw 1 def -false 1 0 0 0.2 12 288.982727 sc5mt astore sstrt -systemdict -begin -240 254.906296 378 323.063629 setbbox -240 293 moveto -240 293 253.336487 297.453552 254 298 curveto -254.356476 298.293579 271.535004 303.943634 272 304 curveto -272.525024 304.063629 284.520447 303.202881 285 303 curveto -285.300446 302.872894 300.858551 296.314331 301 296 curveto -301.39856 295.114349 311.641479 289.90686 312 289 curveto -312.151459 288.616852 321.719421 285.292267 322 285 curveto -322.439423 284.542267 336.445496 281.310516 337 281 curveto -337.195496 280.890503 355.826996 282.906311 356 283 curveto -356.546997 283.296295 365.636597 285.495941 366 286 curveto -366.56662 286.78595 378 293 378 293 curveto -end -/nspans 10 def 1 0 0 0.2 0 233.982712 sc5mt astore 1 0 0 0.2 0 233.982712 sc6mt astore splstroke -false 1 0 0 0.2 150 288.982727 sc5mt astore sstrt -systemdict -begin -240 254.906296 378 323.063629 setbbox -240 293 moveto -240 293 253.336487 297.453552 254 298 curveto -254.356476 298.293579 271.535004 303.943634 272 304 curveto -272.525024 304.063629 284.520447 303.202881 285 303 curveto -285.300446 302.872894 300.858551 296.314331 301 296 curveto -301.39856 295.114349 311.641479 289.90686 312 289 curveto -312.151459 288.616852 321.719421 285.292267 322 285 curveto -322.439423 284.542267 336.445496 281.310516 337 281 curveto -337.195496 280.890503 355.826996 282.906311 356 283 curveto -356.546997 283.296295 365.636597 285.495941 366 286 curveto -366.56662 286.78595 378 293 378 293 curveto -end -/nspans 10 def 1 0 0 0.2 0 233.982712 sc5mt astore 1 0 0 0.2 0 233.982712 sc6mt astore splstroke -0.45 0 0 0.45 257.12677 326.700012 sc4mt astore 0.45 0 0 0.45 257.12677 326.700012 sc5mt astore 66 1 367 273 0.45 0 0 0.45 342.026764 223.300018 sc6mt astore ssl -false 0.45 0 0 0.45 342.476776 225.550018 sc5mt astore sstrt -systemdict -begin -431 268 463 284 setbbox -431 268 moveto -431 268 445.626434 272.740112 446 273 curveto -446.316437 273.220123 459 277 459 277 curveto -end -/nspans 2 def 0.45 0 0 0.45 257.12677 326.700012 sc5mt astore 0.45 0 0 0.45 257.12677 326.700012 sc6mt astore splstroke -0.45 0 0 0.45 257.12677 326.700012 sc4mt astore 0.45 0 0 0.45 257.12677 326.700012 sc5mt astore 107 -1 352 284 0.45 0 0 0.45 342.026764 223.300018 sc6mt astore ssl -0.45 0 0 0.45 257.12677 326.700012 sc4mt astore 0.45 0 0 0.45 257.12677 326.700012 sc5mt astore 381 285 2 43 0.45 0 0 0.45 342.026764 223.300018 sc6mt astore rstroke -0.45 0 0 0.45 257.12677 326.700012 sc4mt astore 0.45 0 0 0.45 257.12677 326.700012 sc5mt astore 426 286 -2 94 0.45 0 0 0.45 342.026764 223.300018 sc6mt astore rstroke -0.45 0 0 0.45 257.12677 326.700012 sc4mt astore 0.45 0 0 0.45 257.12677 326.700012 sc5mt astore -34 -81 423 374 0.45 0 0 0.45 342.026764 223.300018 sc6mt astore ssl -0.45 0 0 0.45 257.12677 326.700012 sc4mt astore 0.45 0 0 0.45 257.12677 326.700012 sc5mt astore 38 1 386 292 0.45 0 0 0.45 342.026764 223.300018 sc6mt astore ssl -0.45 0 0 0.45 257.12677 326.700012 sc4mt astore 0.45 0 0 0.45 257.12677 326.700012 sc5mt astore -29 -37 382 326 0.45 0 0 0.45 342.026764 223.300018 sc6mt astore ssl -0.45 0 0 0.45 257.12677 326.700012 sc4mt astore 0.45 0 0 0.45 257.12677 326.700012 sc5mt astore 26 3 355 289 0.45 0 0 0.45 342.026764 223.300018 sc6mt astore ssl -0.45 0 0 0.45 257.12677 326.700012 sc4mt astore 0.45 0 0 0.45 257.12677 326.700012 sc5mt astore 105 -1 351 281 0.45 0 0 0.45 342.026764 223.300018 sc6mt astore ssl -/esave save def 0.45 0 0 0.45 257.12677 326.700012 sc4mt astore 0.45 0 0 0.45 257.12677 326.700012 sc6mt astore 90 164.232819 296 324 1.92 -1 12.5 false false 0.311729 0 0 0.45 408.323486 211.600021 sc5mt astore apstroke esave restore -0.45 0 0 0.45 257.12677 326.700012 sc4mt astore 0.45 0 0 0.45 257.12677 326.700012 sc5mt astore 26 -57 428 338 0.45 0 0 0.45 342.026764 223.300018 sc6mt astore ssl -/crfrtarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 204.000061 -0.971436 173.999939 327.971436 1 0 0 1 -9 0 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(D ) [10.108002 0 0 0] 393 316 /Helvetica [ 14 1 mul 0 0 14 0 0 ] [1 0 0 1 -5 7] dotx -/crendarw true def -/crfrtarw false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 82.000397 0.931824 407 327 1 0 0 1 0 0 sc6mt astore ssl -/crendarw false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 1.802765 1.000006 -1 51 643 1 0 0 1 105.75 -152.75 sc5mt astore estroke -/esave save def 1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 90 145.941315 120 707 1.04 -1 12.5 false false 1 0 0 1.363669 15 -474.022034 sc5mt astore apstroke esave restore -/esave save def 1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 90 145.941315 120 707 1.04 -1 12.5 false false 1 0 0 1.363669 17 -469.022034 sc5mt astore apstroke esave restore -/esave save def 1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 90 145.941315 120 707 1.04 -1 12.5 false false 1 0 0 1.363669 23 -455.022034 sc5mt astore apstroke esave restore -/crlinw 0 def -/crendarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 1.316711 -2.633423 457 435 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0.251831 -0.314819 390 538 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 2 0 290 594 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 1.75737 1.757385 214 558 1 0 0 1 0 0 sc6mt astore ssl -/crendarw false def -/crfilred 0.836695 def /crfilgrn 0.836695 def /crfilblu 0.836695 def /filinclr true def -true 1 0 0 1 1 7 sc5mt astore sstrt -systemdict -begin -83 329 254 455 setbbox -85.5 438 moveto -85.5 438 86 448 86 448 curveto -86 448 97 454.5 97 454.5 curveto -97 454.5 109.5 447.5 109.5 447.5 curveto -109.5 447.5 120.5 445 120.5 445 curveto -120.5 445 128 448.5 128 448.5 curveto -128 448.5 135.5 444 135.5 444 curveto -135.5 444 144 446 144 446 curveto -144 446 152 439.5 152 439.5 curveto -152 439.5 172.5 439 172.5 439 curveto -172.5 439 182.5 433 182.5 433 curveto -182.5 433 194 435 194 435 curveto -194 435 204 419 204 419 curveto -204 419 223.5 405 223.5 405 curveto -223.5 405 244 363.5 244 363.5 curveto -244 363.5 250.5 339.5 250.5 339.5 curveto -250.5 339.5 171 338 171 338 curveto -171 338 123 338 123 338 curveto -123 338 102 340.5 102 340.5 curveto -102 340.5 85.5 338.5 85.5 338.5 curveto -85.5 338.5 84 376 84 376 curveto -84 376 85 402 85 402 curveto -85 402 86 427 86 427 curveto -86 427 85.5 438 85.5 438 curveto -end -/nspans 23 def 1 0 0 1 0 0 sc5mt astore splfill -true 1 0 0 1 1 7 sc5mt astore sstrt -systemdict -begin -83 329 254 455 setbbox -85.5 438 moveto -85.5 438 86 448 86 448 curveto -86 448 97 454.5 97 454.5 curveto -97 454.5 109.5 447.5 109.5 447.5 curveto -109.5 447.5 120.5 445 120.5 445 curveto -120.5 445 128 448.5 128 448.5 curveto -128 448.5 135.5 444 135.5 444 curveto -135.5 444 144 446 144 446 curveto -144 446 152 439.5 152 439.5 curveto -152 439.5 172.5 439 172.5 439 curveto -172.5 439 182.5 433 182.5 433 curveto -182.5 433 194 435 194 435 curveto -194 435 204 419 204 419 curveto -204 419 223.5 405 223.5 405 curveto -223.5 405 244 363.5 244 363.5 curveto -244 363.5 250.5 339.5 250.5 339.5 curveto -250.5 339.5 171 338 171 338 curveto -171 338 123 338 123 338 curveto -123 338 102 340.5 102 340.5 curveto -102 340.5 85.5 338.5 85.5 338.5 curveto -85.5 338.5 84 376 84 376 curveto -84 376 85 402 85 402 curveto -85 402 86 427 86 427 curveto -86 427 85.5 438 85.5 438 curveto -end -/nspans 23 def 1 0 0 1 0 0 sc5mt astore 1 0 0 1 0 0 sc6mt astore splstroke -/crlinw 1 def -/crfrtarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -59.75 123.25 483.25 1 0 0 1 -4.5 -1 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(H ) [10.108002 0 0 0] 61 416 /Helvetica [ 14 1 mul 0 0 14 0 0 ] [1 0 0 1 52 -10.75] dotx -/crendarw true def -/crfrtarw false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -43 123 395.25 1 0 0 1 -4 0 sc6mt astore ssl -/crlinw 0 def -/usedash true def -/strdsh [2 8] def /dshpatoff 0 def -/crendarw false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 1 -145 157 465 1 0 0 1 0 0 sc6mt astore ssl -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica -%%BoundingBox: 0.000000 0.000000 464.000000 277.149994 diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob38.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob38.gif deleted file mode 100755 index 3c28dfec4..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob38.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob38.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob38.pdf deleted file mode 100644 index 64cd39a3f..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob38.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob40.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob40.eps deleted file mode 100755 index 1b4d92784..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob40.eps +++ /dev/null @@ -1,521 +0,0 @@ -%!PS-Adobe-3.0 EPSF-3.0 -%%Creator: GraphicConverter -%%Title: prob40.eps -%%BoundingBox: 0 0 496 288 -%%DocumentData: Clean7Bit -%%EndComments -%%BeginProlog -%%EndProlog -%%Page: 1 1 -%ImageData: 496 288 8 1 0 496 2 "} exec" -/languagelevel where {pop languagelevel 2 lt} {true} ifelse { - (JPEG picture requires Postscript level 2 -) dup print flush - /Helvetica findfont 20 scalefont setfont 100 100 moveto show showpage stop -} if -save -/RawData currentfile /ASCIIHexDecode filter def -/Data RawData << >> /DCTDecode filter def -496.00 288.00 scale -/DeviceGray setcolorspace -{ << /ImageType 1 - /Width 496 - /Height 288 - /ImageMatrix [ 496 0 0 -288 0 288 ] - /DataSource Data - /BitsPerComponent 8 - /Decode [0 1] - >> image - Data closefile - RawData flushfile - showpage - restore -} exec -FFD8FFE000104A46494600010101004800480000FFFE000C4170706C654D61 -726B0DFFDB00430007050506050507060606080707080A110B0A09090A140F -0F0C1118151919171517171A1D25201A1C231C1717212C212327282A2A2A19 -1F2E312D293125292A28FFC400D20000010501010101010100000000000000 -000102030405060708090A0B100002010303020403050504040000017D0102 -0300041105122131410613516107227114328191A1082342B1C11552D1F024 -33627282090A161718191A25262728292A3435363738393A43444546474849 -4A535455565758595A636465666768696A737475767778797A838485868788 -898A92939495969798999AA2A3A4A5A6A7A8A9AAB2B3B4B5B6B7B8B9BAC2C3 -C4C5C6C7C8C9CAD2D3D4D5D6D7D8D9DAE1E2E3E4E5E6E7E8E9EAF1F2F3F4F5 -F6F7F8F9FAFFC0000B08012001F001011100FFDA0008010100003F00FA468A -28A28A28A28A28A28A28A28A28A28A28A28A28A28A28A28A28A28A28A28A28 -A28A28AF3DF1E5B4FAAF8DBC23A3FF006AEAD6169756FA84932E997D25B348 -C820D9B8A119C6E3D7D4D4EDF0CADF1F2F893C659C8FF99827F5FF007E99F0 -F21B8D3FC47E32D1DF52D4AFEDAC2EED56DCEA578F712461ED91D86E6278DC -C4D77D4579FF008FEDEE353F16783F475D4F54B0B5BC37A671A6DEBDB3C9B2 -2565CB2919C1F5A953E195BED5DDE24F196EC73FF1504FFF00C5D45F0FE09F -4DF15F8BF493AA6A97F69686C9ADFF00B4AF5EE5E3DF133360B138C9FE95E8 -14579C788B4D9BC43F1362D264D635AB2B28F41FB4F95A66A325B0693ED057 -736D600F071F955D1F0CED58647893C65D71FF002304FF00FC5D3FE1649727 -46D5EDEE6FAF2FBEC7AEDF5AC52DEDC34D2F971CC550176249C015DBD14514 -51451451451451451451451451451451451451451451451451597657BAB4BA -D6A56779A52C1A7C2236B3BE4B80E2E011F3294E0AB2907D88239AD4A28A28 -A28A28A2B85F139C7C4DF04704FF00A26A5D067FE7DABB73320EA1BFEF83FE -15C5F83CEEF1E7C41233FF001FB65D463FE5CE2AEDE8AE23C5442FC45F0213 -9FF9887419FF00960B5DA09908040620F4F90FF85711E11FF9283E38E08C2E -9C30463FE581AEEA8AE21982FC63E73FF22CF604FF00CBD57651C8029C87FB -C7F80FAFD2B8DF85E7363E233FF5336A7FFA50D5DBD1451451451451451451 -451451451451451451451451451451451457377925878EB4FB8B5D1FC43716 -93585F849A7D3E40B243344FF346E1860838E410411CF22BA4A28A28A28A28 -A28AE1FC48C13E27F8249CE3EC7A98E067B5BD7672480A8C07FBC3F80FA8F6 -AE37C1E7778F3E20919FF8FDB2EA31FF002E71576F45711E2A217E22F8109C -FF00CC43A0CFFCB05AECA290089010E0851FC07FC2B8CF0A307F889E3B65CE -0FF67E3231FF002C1ABB8A2B88660BF18F9CFF00C8B3D813FF002F55DA0990 -F4DDFF007C1FF0AE2FE179CD8F88CFFD4CDA9FFE943576F451451451451451 -4514514514514514514514514514514514514565EAD79AC5ADE698BA6E9915 -F5ACD71E5DF3B5C08DEDE3C71228230F83D4673D31EDA115BC3034AF1431C6 -D33EF90A2805DB0064E3A9C00327D05494514514514514515C2F8A0E3E26F8 -23827FD1352E833FF3ED5DB999475DC3FE007FC2B8BF079DDE3CF882467FE3 -F6CBA8C7FCB9C55DBD15C478A885F88BE04273FF00310E833FF2C16BB41329 -191B883FEC1FF0AE23C2073F103C71C11F2E9DD463FE581AEEA8AE21982FC6 -3E73FF0022CF604FFCBD57651C8029C87FBCDFC07D4FB571BF0BCE6C7C467F -EA66D4FF00F4A1ABB7A28A28A28A28A28A28A28A28A28A28A28A28A28A28A2 -8A28A28ACD9F5ED2A2D661D026BE48F53BAB769E1B7248678D4E18A9E991E9 -9CF04F4149E1ED19BC3FA543A69D46F7521096D9717D20925DA49214B60670 -303279E2B4E8A28A28A28A28A28AE23C48CA9F13FC1259828FB16A9C93ED6F -5D94B347B47EF17EF2FF0010F515C6F83C86F1E7C4120823EDB65C8FFAF38A -BB7A2B88F15305F88BE042C401FF00130E4FFD705AECA29A3F293F78BF747F -10AE37C2ACAFF117C76548607FB3F907FE983576F45710CCABF18F2CC17FE2 -99EE7FE9EABB4F3A2FF9E89FF7D0AE2FE17906C7C4641C83E26D4FFF004A1A -BB7A28A28A28A28A28A28A28A28A28A28A28A28A28A28A28A28A2AAEA6F7D1 -E9D74FA6450CD7EB0B1B78E772B1B498F94311C819C5334EF3EEECECAF352B -08ED351F2419220E24303301BD0381C8C8C6475C55DA28A28A28A28A28A28A -E17C50C17E26F820B1007D9352EBFF006ED5DBF9D17FCF44FF00BE85794DAF -879F5CF1FF008F278BC4FAC68E22B9B41B34D9E24593FD0E2E5B7C6D93DB8C -5741FF000AFA7FFA28BE2DFF00C0CB6FFE314D7F005C2A330F889E2DC8048F -F4CB6FFE3158937879B40F891E0B797C4DABEB22517E31A9CF1388B100E576 -22E339E739E82BD4FCE8BFE7A27FDF42BCA6CFC3CDAFFC43F183C7E26D5F46 -112580C6993C4825CC0796DE8D9C638C63A9AE83FE15F4FF00F4517C5BFF00 -8196DFFC629A9E00B86193F113C5BD48FF008FCB6F5FFAE1597E1ED1CE83F1 -665865D7B51D63CCF0EEE136A5346EE9FE9206D05114638CF4EE6BD2A29A3D -A7F789F79BF887A9AE37E17906C7C4641C83E26D4FFF004A1ABB7A28A28A28 -A28A28A28A28A28A28A28A28A28A28A28A28A28ACED775FD37C33A73EA7ABD -D0B5B38DD11E6652429660A3381C0C9193D05476BA1C706BD77AE47A85EBFD -B608E36B469F75B295E8E887EEB118070707D33CD6AD145145145145145145 -15C078C351B2D2FE24782AE6FEF20B38059EA6A65B895634C916F819240AE8 -64F1AF858A8FF8A9747FBCBFF2FF0017A8FF006AB9EF036A3657FE34F1F5D5 -A5E41736F25ED9EC9A1955D1B167103820E0E0823F0AEEA69A3F29FF00789F -74FF0010F4A779D17FCF44FF00BE85705E34D4AC74FF001F781AE6F2F6DED6 -043A80696695511730A81924E3AD745178D7C2C22407C4BA3FDD1FF2FF0017 -FF00155CEF82F52B1D43C7DE39B9B3BDB7BA81CD805961955D1B10B03820E3 -AD7770CD1F949FBC4FBA3F887A53BCE8BFE7A27FDF42BCF6EB58D334BF8B82 -6D4351B4B389FC3ACAAF713AC6A4FDAC9C02C4738AEABFE135F0B7FD0CBA3F -FE07C5FF00C55607C299E2B9D2F5F9E09526865F126A4F1C91B0657533B104 -11C10477AEEA8A28A28A28A28A28A28A28A28A28A28A28A28A28A28A28A2B2 -74C7D62EA7D56DF5AB0B38ED16E0AD93C32993ED1011D5D48F95BB1EDF964E -B514514514514514514514552D4744D2B58F2FFB4F4CB3BFF2B3E5FDAA0497 -66719C6E0719C0FC8579FF00C4FF000A7876D3C3B6925B683A640E757B042D -159C6A4AB5CC618640E841208EF5DA5CD9E9FE18D1353B9D2B4CB4B4115BC9 -398EDE15895D950919DA07A57935C7C64F1ADBF8687889F43D04D99B54BAF2 -C5D4FE66C600818D98CF3EB5EE137FAA7FF74FF2AABA8E8DA66B0B1AEA5A75 -A5F08C9282E60590267AE37038E82A87FC215E16FF00A16B47FF00C008BFF8 -9AB9A4E8FA66910634DD3AD2C44A14C82DA058F79038CED033D4D5FE94D8BE -E9FF0079BF99AA3A8787F46D5A459751D26C6F6445DAAF736C92328CE700B0 -3C64D701E16F0A787A6F1EF8DE09741D3248606B2F2A36B38CAC798989DA31 -8193D715E8F63A75969700B6B0B382CE004B08ADE258D327A9C000558A28A2 -8A28A28A28A28A28A28A28A28A28A28A28A28A28A2B998DF46F88367A7EA9A -6EA97AB169FA879A8F6CEF0132464ABC5223004A9C90411D0F1D6BA6A28A28 -A28A28A28A28A28A28AE23E2C0CF866CC1FF00A0CE9DFF00A551D745E23862 -FF00847B55FDDA7FC794DFC23FB86BE76D53FE48F27FD8160FFD012BE9BF26 -23FF002CD3FEF91479317FCF34FF00BE45362863F293F76BF747F08A779310 -FF009669FF007C8A6C50C7E527EED7EE8FE114EF262FF9E69FF7C8A6C50C7B -4FEED7EF37F08F535C6F855557E22F8EC280A3FE25FC01FF004C1ABB7A28A2 -8A28A28A28A28A28A28A28A28A28A28A28A28A28A2B2EF25D723D6B4E4B3B6 -B39748916417B2492B2CF13632850630C320823AF20F639D34448C108A1412 -588031927926968A28A28A28A28A28A28A28A2B88F8B033E19B307FE833A77 -FE95475D078A228C786759211411613E081FF4CDABE78D53FE48F27FD8160F -FD012BE999628C44E446BF74F614EF262FF9E69FF7C8A043101811A7FDF229 -B1451989098D7EE8EC29C21880C08D3FEF914D8E28CA9FDDAFDE6EC3D4D3BC -988748D3FEF915C4784401F10FC7800006EB0E9FF5C5ABBAA28A28A28A28A2 -8A28A28A28A28A28A28A28A28A28A28AC5B9D6348D4F55BDF08CD34A2F5EC0 -CD24403C65A17250B24831C82719539048EFD2EE8DA5C7A269569A64571737 -31DAC423596EA5324AE077663D4D5DA28A28A28A28A28A28A28A28A2B88F8B -033E19B307FE833A77FE95475D4EABA72EA1A5DED9A2C6AF716F244A58700B -291CFE75E2B75F08BC7937857FE11E7BFF000E8B64B45B6F307DA37ED55001 -E98CF15EEA6088820C6983FEC8A3C98BFE79A7FDF22BC9E2F8CF34D6925E5B -781EF6E2D226917ED02F2DD43796C558ED2C0F553DABD23C3FA85B6BDA0E99 -ABC36C218B50B38AE923600940E81803EE3357A28A3312131A92547F08A708 -221D234FFBE453638A32A731AFDE3FC23D6B8CF0A22A7C45F1D8550A3FE25F -C0FF00AE0D5DC5145145145145145145145145145145145145145145159DAF -B6B09A3DD3E80968FAA2A836E97BBBCA7208CAB15208C8C807D7157A1F31A2 -8DE64449B60DEA8DB829EE01C0C8CFB0A7D145145145145145145145145145 -711F1639F0CD98FF00A8CE9DFF00A551D7652C6046E4170429FE33FE34E30A -10412C41FF006CFF008D3658C08DC82E0853FC67FC69DE52FABFFDF67FC6BE -76D0805F055EA8E824D400FF00BFF357B2FC398D4FC3DF0A1CB7FC81ACFF00 -8CFF00CF14AE904280000B003A7CE7FC69B1C60A9C97FBC7F8CFAFD69C2141 -D0B7FDF67FC6B88F08F1F10FC79C93F3587539FF00962D5DD5145145145145 -14514514514514514514514514514565EBDE23D3FC370DACFA934C90DCDCA5 -AABC703C815DF85DDB41DA09C0C9E3240EF4699E1DB3D2753D5352B692E7CD -D51D249E3927678C3A8C6E45270B918CE3D07A56A514514514514514514514 -514514515C47C58E7C33663FEA33A77FE95475DA18518104BE08C7DF3FE34D -9230B1B905F21491F39FF1A718518104BE08C7DF3FE34794BEAFFF007D9FF1 -AF9D3C3C4B781EEC9E497BFCFF00DFF9ABD9FE1CC6A7E1EF850E5BFE40D67F -C67FE78A57451C61A3424BE4A827E73FE34E10A28C02FD73F7CFF8D3638C32 -924BFDE23EF9F5FAD719E14409F117C7606719D3CF273FF2C1ABB8A28A28A2 -8A28A28A28A28A28A28A28A28A28A28A28ACBD00EBDF67B95F100B033ADCC8 -207B12FB5E0CE50B06E55B0704648E3AF35A94514551B8D6F4AB390C573A9D -9C122F5496E1148FC09AA1FF0009CF84BCCF2FFE128D1B7E376DFED08738F5 -C6EAD0B7D6B4BBC94456DA95A4F21E42453AB37E40D5DA28A28A28A28A28A2 -8A2B88F8B1FF0022CD9F6FF89CE9DFFA551D76522BAC6EC257C8524703FC29 -CD11652A657C1183D3FC29B22BAC6EC257C8524703FC29DB1BFE7ABFE43FC2 -BC12D7C19E3DD3748BAD1E2F0A47708D25CECB8FED38572B248EC0ED3ECE3F -2AF61F0669975A4F83FC3FA75DB18EE6CF4CB6826452AC15D225560081CF20 -D6D2C45542895F006074FF000AE0AFBE2E685A7EA57DA6B5BEBB753D8DC35B -CCF69A63CD1AB8E71B9463A11F9D74FE18D7ACBC57A25BEB3A64B71F64B969 -0209A308E0AC8C8C0A91C7CCA6B9FF000964FC44F1E6E62C77580C9FFAE2D5 -DCD14514514514514514514514514514514514514532794410C93157711A96 -2B1A9663819C003927D8573B630E89E394D07C5900BB56B4F324B462CF030D -C0A3A489C6464720F751D475E96A8EAFAE697A05A35E6AFA85B585B0FF0096 -B7328404FA0CF53EC2B901F11B51D7CEDF05F85AF75684F4D4AF8FD8ACF1FD -E52E37C83FDD5FC69DFF0008EFC41D639D57C6369A3C6DC35B6876009C7FD7 -69B71CFB8514E3F09B44BBFF0090CEA9AFEBBFECEA1AB4C53FEF88CA2FE18C -55FB6F85DE04B488451F83F44651DE5B18E46FFBE9813FAD681F06785CA796 -7C37A414CE76FD862C67E9B6B3EEBE16F812F22314BE0FD1554F786C6389BF -EFA400FEB547FE153E8F6A73A36AFE21D0C673B2C3569B67FDF12175FC318A -61D03E2268E37697E2EB1D6E35E16DB5BB111B63FEBB43839F72869A7E245E -E83F2F8D3C317DA3463AEA3679BDB203D59D06E4FF008128FAD761A4EB5A66 -BD6697BA4DFDB5FDB3F496DE50EBF4C8E87DBAD5DA28A28A28A28A2B88F8B1 -FF0022CD9F6FF89CE9DFFA551D768D11652A657C118EDFE14D915D636612B6 -4027A0FF000A7344594A995F0463B7F851B1BFE7ABFE43FC29B1ABB46AC656 -C900F41FE14E588AA8512BE00C76FF000A6C6AED1AB195B2403D07F85787E9 -EBB3C45E321927FE27D29C9FFAE51576DF05949F871A691230FF0049BDE063 -FE7EE6F6A9FC289B3E2278F0649E74F393FF005C5ABB8A28A28A28A28A28A2 -8A28A28A28A28A28A28A282428249C01C926B2D975E1E2246492C5B416B521 -E32AC2E5270DC1073B4A953C8382303D6A5D6B5DD2FC3B6126A1AC5FC16169 -1FDE96770A33E83D4FB0E4D719FF0009178B3C747CBF0B5A3787F466EBAE6A -707EFE61EB6F6EDCE3B87930307A569E91F0C3C3BA6DDAEA37914FAEEAABFF -00310D62537328FF007777CA9FF0102BAFA28A28A28A28AE3F56F861E1FBFB -B6D4B4E5B8F0FEAAC3FE3FF4797ECEEDFEFA8F91FDF729ACDFF849FC53E063 -E578BEC8EB5A429C0D7F4B80EF8D7D6E2DC64AF7CB4791D3815DAE91AD699A -FD8C7A86937D05F5A49F7668240EB9F4E3A1F63C8ABB45145145145711F163 -FE459B3EDFF139D3BFF4AA3AECE456546612B64027A0FF000A1A22CA54CAF8 -231D07F85122B2A33095B2013D07F852EC6FF9EAFF0090FF000A4588AA8512 -BE00C741FE1446ACC8AC656C900F41FE142C45542895F0063A0FF0AF0DD389 -3E21F1964E48D7E619FA451576FF0005949F871A691230FF0049BDE063FE7E -E6F6A9BC2449F889E3CC9C9CD80CFF00DB16AEE68A28A28A28A28A28A28A28 -A28A28A28A28A28AE76F2E348F174DAE7846FEC6ED9218916E44D0BC71CD1C -8321A3907079047041054FA5636A3E3516532784FC176875FD6AD63585FCC9 -99ADEC40180D7331C9CF1F7725DB07A1A9F42F8736D0DEA6B9E27B93E22F10 -03B85D5CAFEE6D4FF76DE2FBB181EBF78F5CF35DA514514514514514514571 -3AD7C39845F49AE784AEBFE11CD798EE79205FF46BCFF66787EEB03CFCC30C -09CE4D3FC3DE3FF3B514F0F78A6CC683E223C470BB66DEF7FDBB793A383FDD -3F30E98E0D7674514514515C47C58FF9166CF1FF00419D3BFF004AA3AECD92 -4652A5D7918FBA7FC68732AA33064E013F74FF008D0C9232952EBC8C7DD3FE -34B897FBE9FF007C9FF1A4432B22B164E403F74FF8D0A922A850EBC0C7DD3F -E3421959158B27201FBA7FC6BC2678B59D17C4BE280FE17D76F23BBD5E4B98 -67B4B12F1BA3246320E7D54D7A17C21B0D434EF87FA6DB5F5B4B637026BA76 -B7B988AC881AE6561919E3820FE34784D4A7C44F1E024139D3CE40C7585ABB -8A28A28A28A28A28A28A28A28A28A28A28A28AC4F155C6A7068B25DE8FA8E9 -D632DB4AB2CD36A20983CA56FDE2B303F2F00F3DB1DBA8E445FEBDF14895D2 -66B8D03C20490DA8AFC979A9AE71FB9CF31447FBE7E62318039AEE342F0FE9 -5E18D362D3346B18ACAD221F2C718EA7B963D589EE4E49AD1A28A28A28A28A -28A28A28ACCD7FC39A4F8A74E7D3B59B18AF2D9CE76B8E51BB32B0E5587A82 -0D714353D73E1732C3AECF71AE784B2163D5986FBBD3813802E00FF591FF00 -D341C8EE3A57A25BDC4377045736D2A4D04C81E392360CAEA4641047504549 -4514515C47C58FF9166CF1FF00419D3BFF004AA3AECDCCA88CDB93804FDD3F -E343A48EACBBD7918FB87FC68732A2336E4E013F74FF008D2E25FEFA7FDF27 -FC6911244555DEBC0C7DC3FE342195D15B727201FBA7FC68449115577AF031 -F70FF8D0865619DC9D48FBA7B1FAD0A9228C6F5EA4FDC3DCFD6B8AF09166F8 -89E3C2D8CE6C07031D216AEE68A28A28A28A28A28A28A28A28A28A28A28AE7 -7C5FE37D27C0D6F6B77AD2DD4767712988DD4303491C2D8C8DFB7919E8300F -35C3F873C05FF096DEDD6B1ABE9B2E91E1CBBBC6BF83C3D23B66EA63FF002D -EE94F0B9C06110E33C9F7F5A550AA1540000C003A0A28A28A28A28A28A28A2 -8A28A291D125468E450E8C0AB2B0C820F504579BDC691A97C2DB89351F0EDB -4DA8F852472F7BA245F34B6249CB4B6A3BAF3968BF15F6EF748D62C35FD36D -B54D2EEA3BBB2B940F14D19C861FD08E841E411835728A28AE23E2C7FC8B36 -78FF00A0CE9DFF00A551D766E92BA32EF4E463EE1FF1A1CCA88CDB90E067EE -9FF1A1D257465DE9C8C7DC3FE34B897FBE9FF7C9FF001A4432BA2B6E41919F -BA7FC68449511577A7031F70FF008D08657456DC83233F74FF008D0A92A8C6 -F4EA4FDC3DCFD68532B0CEE41C91F74F638F5AE2BC26A53E2278F03104E6C0 -E40C7585ABB9A28A28A28A28A28A28A28A28A28A28A28AC9F1278974CF0B69 -771A8EA77690470A642E37BB9270A15072C4B10001EBDAB88F06F85BC43E28 -3A7F893E2249E75C5AE1F4ED2BCAF2A3808CE279A3C906720F4E89DB9E9E9B -4514514514514514514514514514515E79ABF87B51F02EA73F89BC2168F776 -370E64D5F4088F137ACF6E0F0B28EEA301C7BE2BB2D035FD3BC4FA4DBEADA5 -5C0B8B4B85CAB018208E0AB0EA181C820F422B468A2B88F8B1FF0022CD9E3F -E833A77FE95475D9BBC888CDB10E067EF9FF000A1C4AE8CBB506411F78FF00 -850EF222336C43819FBE7FC29732FF00713FEFA3FE1488254455DA87000FBC -7FC284791D15B620C8CFDF3FE14209511576A1C003EF1FF0A15E4619D89D48 -FBE7B1FA50825518DA9D49FBC7B9FA5717E1362FF113C784800E6C0601CF48 -5857714514514514514514514514514514514565789FC4565E13D06FB5BD41 -8FD9ECE232155203487B22E480589C0033C935C4F863C332F8DB5EB7F883E2 -AD345B4B126CD174C9A31BAD21CE56597D6539C81D133C73C8F4BA28A28A28 -A28A28A28A28A28A28A28A28AF3BD7F47D43C07A95D78BBC316CF736170DE6 -EB7A2443FD77ADCC03B4A072CBD1C0F5E6BB7D1F58B0F106996DAAE9972975 -677481E2950E411FD08E847504115768AE23E2C7FC8B3678FF00A0CE9DFF00 -A551D766E2564650A9C823EF1FF0A19E4552C517819FBC7FC28712B232854E -411F78FF00852E65FEE27FDF47FC2915E4650C117919FBC7FC28412AA2A954 -E001F78FF850AF2328608BC8CFDE3FE142095460AA7527EF1EE7E942BC8C33 -B17A91F78F63F4AE2BC24197E2278F03601CD81E0E7FE58B57734514514514 -51451451451451451451505F5FDA699692DEDF5CC56B6B0AEE92699C2220F5 -24F02BCDF40B1D47E24F8893C57AB6E5F09DA3F99A0E9B32ED699C0502EE45 -EE3218A06E8181C0EFE9F45557D574F8EF058BDF5B2DD9C62DCCCA2439E47C -B9CD5AA28A28A28A28A28A28A28A28A28A28A2BCDB56B79BE16EAF3F8874F8 -DE4F09EA12EFD5ECA31936129FF97A8C7F709C6F51D3EF0F41E8B6F710DDC1 -15CDB4A934132078E48D832BA9190411D411525711F163FE459B3C7FD0674E -FF00D2A8EBB3679154B145C019FBC7FC28904AC8CA1132411F7CFF00850CF2 -2A9628B8033F78FF0085717E24F1FEA9A3F898787B4CF0C9D5E716097CF20B -F4802AB48E807CCBCF29FAD524F1F78BD1157FE15F138007FC8661FF00E269 -61F897ADC5AAE9363AAF835B4F8B53BC5B38EE3FB4E3942B956619555CF443 -5E8118955154A264003EF9FF000A15E461908BD48FBC7B7E142095410513A9 -3F7CFAFD2B8BF09B16F889E3C2460E74F1D73D216AEE28A28A28A28A28A28A -28A28A28A28A2BCA6E987C67D6AE74892DDE3F06E8B76CB76FBFFE42B70848 -544653C44BF78907249038ED8BF113C45F103E13EAB6F77A315D77C337D288 -60B3B984C925ACA7A441D70E41FE0C96F4C7033EA7E0BF13278BFC3565AD28 -B656B84CBC76D31956261D5092AA430EE08183EBD6ADF893543A1F87756D58 -00C6C2CA6B9C1E876216FE95E3DA06A9E1FBCF81B790EA7AF69F26B1A8D8DC -DEDCB4B7718B87BA259D188CE77A9098FF007462BD2BE19EBD71E26F00E83A -BDDB6FB9B8B451339EAEEA4A337E2549FC6BA9A28A28A28A28A28A28A28A28 -A28A28A4744951A39143A302ACAC32083D4115E6FA648FF0B75D8742B9763E -11D567234A9DCE469D3B73F6563FF3CD8E4A13D0E54FAD7A4D711F163FE459 -B3EFFF00139D3BFF004AA3AECA46768D9444D9208EA3FC695A52AA58C4F803 -3DBFC69246768D9444D9208EA3FC6BCE35424FC5DB9CA95FF8A6EDF838FF00 -9F99EB72B9AF159C6B1E0B38CFFC5451703FEB84F5EA2B29650C227C119EDF -E3488CEAA4189BA93D47AFD695652C32227EA476FF001AE2BC2408F889E3CC -820E6C0E0FFD716AEE68A28A28A28A28A28A28A28A28A28AF35F196B17BE33 -D5ECFC1DE10D60C21B32EB7A85AED74B7B52ACBE587E712B9FBA07236E4F15 -DF691A458E83A65AE97A6DBADB59DA46238A241C281FCC9EA4F7273562E2DA -0BB8FCAB885268F72B6C91430CA90CA707B82011EE0571FE29865F0AEA03C6 -76F7D7116976903AEADA6C71B4A934792C258D010164566259BBA96CF4E777 -5CB38BC51E15D46CAD66478B55D3E5862954E559658C80C08ED86CD796F87A -EF4FB0F80576B796D045A8E9FA7DD69D341220F356E86F458CF7DCC4AE07FB -4315E85F0DB419FC31E03D0748BA4D9736F68BE727F7646F9987E0588AE9E8 -A28A28A28A28A28A28A28A28A28A28AA1AE68961E23D26EB48D4E017167771 -94910FE841EC41C107B100D727E0BD6EFF0047D4DFC0DE259CCDA8DB4664D3 -6FDF8FED2B51D0FF00D754E8E3FE05CF5A93E2C7FC8B367DFF00E273A77FE9 -5475DA34A554B189F0064F4FF1A6C8CED1BA889F25481C8FF1A734A554B189 -F0064F4FF1AF36D5093F176E72A57FE29BB7E0E3FE7E67ADCAE6BC5671AC78 -2CE33FF15145C0FF00AE13D7A846CEB1A2989F21403C8FF1A7094B0C889FA9 -1DBFC69B1B3AA90627FBC4F51EBF5AE33C28DBFE22F8F0E08E74F183FF005C -1ABB8A28A28A28A28A28A28A28A28A28AE2FC7FE39BCF0B49A7E97A66913EA -1ABEB424874E2A57CA130DBFEB06776D0096240C617AF3C5EF017826CBC09A -047A6DB0492E646335EDCAA05371337DE6C0E83B0038000AE9A8A82FD5DEC6 -E522B78AEA468982C133ED494E3EEB1C1C03D09C1FA1AF1CF827F1035CD77C -45AC785755B0874B834580ADBD8A4615E05594A846200076A955C80338CF7A -F5E7D1F4C92F9751934EB47BE4185B96814CA3E8D8CFEB5728A28A28A28A28 -A28A28A28A28A28A28A28AE73C6DE125F15E96896F3FD8757B293ED3A65FAF -DEB69C743EEA7A32F420FD2B87F1078B0F8A7C0B6E6EEDFEC7AC586BDA7DAE -A7639E609D6EA3CE3D55BEF29EE0F5E0D7AB48CED1B8113E4A91D47F8D38CA -5412637C0193D3FC69B233B46E044F92A4751FE35E71AA127E2EDCE54AFF00 -C5376FC1C7FCFCCF5B95CD78ACE358F059C67FE2A28B81FF005C27AF521296 -0088DF046474FF001A6C6CEAA4189FEF13D47AFD69C252C32237EB8EDFE35C -4F84B3FF000B0FC79952A77581C1FF00AE2D5DCD1456736B9649AFC5A0167F -B74B66F7AA36FCBE5ABAA1E7D72EBC568D14514514514514514565789BC4BA -6784744BAD6B57B8105A5B2E58F5663D02A8EE49E00AF22D1BE34EB89291E3 -4D35BC3BA56BC1CE8FAAA2061659E1166078F460CC075E46DFBBA9637173E0 -BD5AD7C41E3C9AE7C43AEEA4AD61A53E8F62D34690200C4AAA8E249465CE3B -02070A6BA8FF0085A369FF0042B78C3FF09FB8FF00E26AB597C61D1F524924 -B1D07C51769148D0C8D06893B84753865240E181EA3A8AB3FF000B46D3FE85 -6F187FE13F71FF00C4D1FF000B46D3FE856F187FE13F71FF00C4D72BA678C3 -C2F77E2E93C6FA3E83E289A5B9B27B0BA6B5D0A678E765742AC59463726C65 -3EC40FE1AEABFE168DA7FD0ADE30FF00C27EE3FF0089A3FE168DA7FD0ADE30 -FF00C27EE3FF0089AAD6BF18747BE92E23B4D07C5170F6D27953AC3A24EE62 -7FEEB003E53EC79AB3FF000B46D3FE856F187FE13F71FF00C4D1FF000B46D3 -FE856F187FE13F71FF00C4D5693E30E8F0DE41612E83E288EF2E159E1B76D1 -27124AABF78AAE3240C8CE3A559FF85A369FF42B78C3FF0009FB8FFE268FF8 -5A369FF42B78C3FF0009FB8FFE26AB37C61D1D2F934F6D07C50B7B246654B6 -3A24E2564070582E32467BF4AB3FF0B46D3FE856F187FE13F71FFC4D1FF0B4 -6D3FE856F187FE13F71FFC4D568BE30E8F35E4F631683E2892F2DD55A6B74D -12732441BEE965C6403DB3D6ACFF00C2D1B4FF00A15BC61FF84FDC7FF1347F -C2D1B4FF00A15BC61FF84FDC7FF1355A0F8C3A3DD5CDCDA41A0F8A26B9B52A -2E218F449D9E12C32BBD40CAE47233D6ACFF00C2D1B4FF00A15BC61FF84FDC -7FF1347FC2D1B4FF00A15BC61FF84FDC7FF135587C61D1CDF9D38683E2837C -22F38DAFF624FE688F38DFB319DB9E338C66ACFF00C2D1B4FF00A15BC61FF8 -4FDC7FF1347FC2D1B4FF00A15BC61FF84FDC7FF1355AF3E30E8FA724725EE8 -3E28B549645891A7D12740EEDF754123927B0EA6ACFF00C2D1B4FF00A15BC6 -1FF84FDC7FF1347FC2D1B4FF00A15BC61FF84FDC7FF1355AEFE30E8F606017 -9A0F8A2D8DC4A21844DA24E9E6C87A22E472C70781CF1567FE168DA7FD0ADE -30FF00C27EE3FF0089A3FE168DA7FD0ADE30FF00C27EE3FF0089AF2DF1E6B5 -65E28F10DAEA5E19D1FC4C352B4BCB48F5CB35D1A7FDEC31C8B2A191403B64 -5C6572012AC46718AF52FF0085A167FF0042B78BFF00F09FB8FF00E269B27C -4FB468D94785BC5F9208FF00917EE3FF0089A86DBE30E8F7B25C456BA0F8A2 -E24B693CA9D22D1276313F5DAC00F94FB1AE4EFF00C5335C7C409B5D8FC29E -2BFB13E8D0D982742B8DDE62CD2B9E36F4C3AF35A7FF0009B8FF00A157C5BF -F821B8FF00E26B9DD67C6B16ABAF68105A787FC4725CE8FAAC57D796E3479B -CD8A1F2A550C5319E4B8C7AD7A0C7F13ED163553E16F17E4003FE45FB8FF00 -E269DFF0B42CFF00E856F17FFE13F71FFC4D549FE3068FA71812F342F145B3 -DCCC628166D127432B9C90AB91F33601381CF14EF015CCFAAF8B7C61AC3695 -A9E9F6B786C841FDA36525B3C9B22656C07033835DFD56B9D4ACACA7B6B7B9 -BB8209AEDCA5BC724815A660324283D4E3D2AC9381935E61A278B743F16FC5 -F8E5D0F518AF92CF40BBB79CC79F95C5D41EA3907B11C1EC6BD3E8A28A28A2 -8A28A28AAF7FA85A695653DFDF5C476D6B6E86496691B0A8A3A926BC3AD05D -7C69F10C7E23D560787C1FA6CA7FB274F9063ED9203833C83B8ED8E9DBFBDB -B67E28F8834CD2FC3EDA55CE9C9AC5FEADFE8F63A595DC6790F00E07202920 -E460E71820F355341F086A7E08B0F86DA46AFA849797635A9246466DC96D9B -49BF7487FBABF9649C7157BE377C4BB9D02DE1F08F864BCFE27D631122C1CB -DBA31C647A3B745F4E4F1815D17C24F86F07C37F0D0B47612EA97844D7F329 -C867C708BFECAE481EB927BD7775E33F1B7E235EDB3C1E00F096FB8F11EAF8 -8A5301F9ADE36EC0FF000B30EFFC2B93C641AED3E17FC3EB6F871E1787498E -4F3AEE56F3EF6719C4929001DBFEC80001F4CF535D957997C67F8A1FF08269 -09A6E95FBFF126A83CBB385177B4409C79857B9CF0A3BB7A8069DF05FE1A49 -E02D126BCD51DA6F106AC44D7CECFBBCBEA4479EE464963DC93D4015E97591 -E2AF13E9BE0ED0AEF5BD566F2ED6D93381F7A46FE1451DC93C0FF0AF15F857 -E1CD57E2778BA4F8A7E2B464B68A4C68F6993B46D24291FECA1CE3FBCF93F5 -FA06B07C69E30D37C0BE1EBAD73547C4508C47103F34F21FBB1AFB9FD0024F -00D791FC1EF0A6ADE36F124BF15BC5BBBCD99986936C721513950E07650095 -51DF963D89F7AAE2BE297C47B3F86FE1B92FE40936A33E63B1B563FEB24C75 -3DF6AF04FE03A915C8FC0EF879A869DF69F1DF8A24966F116B6A58094FCD0C -4C43723B336071FC200031C8AF63AE03E2E7C4DB7F871E1E3245B26D66F418 -EC2D8F3F3779187F75723EA703BE462FC10F86D77E18B3B9F147889A497C4B -AD0324FE693BA18D886DADFED9382DE9C0EC73EB35CC7C40F1D69DF0F7C377 -1ACDF90EE3E4B6B7070D71291F2A0FCB24F600D79AFC13F04EA7AC6A93FC51 -F16B33EA9A96E6B089B2045130C6FC76057E551D979E7231EE351DCDCC1656 -F2DD5CCA90C10A192491CE15140C924F60057CE205EFED19E3EDC7CD83C0DA -149C0E57ED2DFCF73E3FE029E84F3F48471A451AC71A854401554740074150 -DFDFDAE9765717F7D3A5BDADB46D2CD2B9C2A281924D7CEFA45ADF7ED0FE3E -3ADDFC72C1E0BD0E5D96D036479ED9076FFBCDC3363A2ED5EE0D7D20005000 -1803800579E7C60F89D0FC3AF0FF00FA36D9B5BBF063B083AE0F79187A2E47 -1DCE07AE337E08FC35B9F09585C788B5F6925F12EB43CCB932925A1463BB61 -F5627E663EB81DB9F55AF33F8CDF140780B474B0D33F7FE23D4C797650A0DC -D18271E695FAF0A3BB7AE0D1F05BE19C9E04D165D43566697C43AB626BD766 -DC631D4479EE464963DC93D4006BD32B8CF8A1F116C7E1BF86E4D466DB2DF4 -F98AC6D49E65931D4FFB2BC163F41D48AE37E07FC3ED46DA4B9F881E2A7925 -F106B40BC692F06189B07247666C0E3F85401C7207B2D56D4B51B4D22C2E75 -1BF9D2DED2D63696695CE02281926BE79F0FD95FFED07E3E6F11EA91CB0783 -B4497659DB31C79CC08214FB9E19C8E836AFB8FA3EA96B3AC58F87F4BBAD5B -53B85B6B2B48CC934ADD80FE64F4007249005780F82B4BD47E39F8EDBC75AE -C525BF86F4997669966C789194E40F7C1C339EE70A3201C741F1B3E20DFCD7 -507C37F086E9F5ED5488AE9E23CC11B0CECCF62CB924FF000A64F7C89FE1E7 -C3FB1F873E3DD2B48B6225B97F0CDCCB79738E6694DCDBE4FB28E807A0F524 -D7B251451451451451452332A296660AAA324938005784EB7AA5C7C6DF1036 -9761249178174A9BFD2EE118AFF6A4CA73B1483F70707F5EA571D778A3C4BA -4F807C3AD7B70AB1C10208AD6D621832B63091A0FC3F0033DAAA7C30F026A3 -26A1278FBC629BBC437CB8B4B561C69B011C2007A390483DC027B96ADDF1E6 -7FE124F01ED201FED993048C8FF8F59AB0BE1D7C22BAF0EF8A756F1778A751 -8B5AD76E677FB35CAA902343C17C1FBAC47CB81C2A8C0241AF54A64EB23C32 -2C3208E52A423B2EE0AD8E091919C1ED915E61F0B7E11CFE10D5754F12788E -FA3D5FC457B349B6E864848C9E48C8E19BBFA0C01DF3EA5457957863E10DDC -1F11755F1B78AB528B58B933674C0A855615C70C54F00A8F95402718273923 -1EAB457987C4EF85BA9FC47F11685F69D5D62F0CD992F7762A0AC8CFCFCCA4 -70C587CB938DA3246726BD2AD2D2DEC2D61B4B48520B782358E28A31854503 -0001D8002A5AF2DF881F09F50F885E35D1AF353D551BC2F6285A4D3D41572F -C719E877F009E080303AE6BD3E1862B78638218D628A350888830AAA060003 -B0029F5E557BF086EFC43F151BC59E25D4A2D4B47B3446D3AC3611B181E15D -7A1553F3673F313C80062BD568AF2AB7F84377A87C53BCF1A78A3528755B48 -0AB6936A108F2719DA194F036751827731DC7078AF55A2BCAFC5DF08EF7C71 -F11AC35AD77538AEBC31630831699B4AB0718CA9ECCAC792D9C9002E3001AF -54550AA1540000C003A0A2B84F8B7E0CD7BC77E1A4D1744D5A2D3964B84376 -B2A9C4D16795DC3918FBD8C7CD80323BF43E11F0A699E0AD02D343D2A2D96F -6EBCB9FBF2B9FBCEC7BB13FD00E00ADAAF3EF8BDE03D77E2169163A4697AC4 -5A7D97DA95EFE2910E668F230411D76F2769E09C1C8DA2BAEF0E78774EF0A6 -8969A2E950086CED13622F763D4B13DC93924FA9AD3AF2AB0F8457977F14AF -BC6BE29D4A1D5618483A4DB842043D768653C0D9DB19CB1DC706BD568AF2AF -0D7C21BC87E236A9E36F156A50EB171E6E74B5552042BD98A9E14A8F954027 -BB6735EAB457956A7F086EFC4DF14878A7C49A943A8689671A9B0D3F611B1C -7F0329C82A0FCC4E7E62704002BD568AF3CF8BBE00D6FE22699A7693A76B11 -E9FA78BA0FA844E873326460823A95E4853804E0E4605765E1FD034EF0BE8D -69A36950082CED23D91A773EA49EE49C927B935A35E6FF0016BE1C6B3F11FF -00B1AC2DB5A8ECB4686E77EA16C54879076652339206405381939CF15DE68F -A458E81A5DAE95A6DBADBD9DA46238A25E8A07F327A93DC926B8AF017C23D3 -BC0FAE6B1AEBDFCFABEA7A8CCC52EAE94799146C725723AB13D5B8CE07039C -DA9883F18EC7073FF14CDC8E3FEBEA0AEDE8A28A28A28A28AF26F1DFC75B3D -065BDD3BC31A6C9E22D4AC519EEE48B3F66B403AEF71D48E781E84641E2B0A -DB44F883F163C39F68BFF887A569BA5EA76BE69B2D2ECF7E10F557662AE076 -61B8F4239A7E99F0D7C7FE11D2ECADBC39E3CD1EF6D901586C6F2C56289CE4 -9C2BAEE6624F7E3249CFAD73BA16B115C7C5A8D7E2C18F4ED42C11068F6608 -6B1590F590BEE3F312011BBBF520AA8AFA56B89F1D7FC8CBE02FFB0D3FFE92 -CD5BBE2CF14E99E0CD06EF5CD5A5F2EDAD972147DF95BF85147762781F99E0 -1351F833C576BE36F0E596BD676F716D0DD29223B84DACA41C1C7661907047 -06B768A28A28A28A28A28A28A28A28A28A28A28A28A28A28A28A28A28A28A2 -8A28AF3CF8C1F13E1F875A062D4A4BAE5F831D8C046EC1E86461E8B9E9DCE0 -7AE385F837E0FD67C29E3AB597C41797136A9AB681757B710CCE5BC866B983 -839FE33D5BDCE3B64FBED145145145145798FC59F11EAB7377A67C3EF0C4DE -4EB5E20DDE7DC8EB676833BE4F6240600F5F94E3922B4BC35E11D27C2DE118 -F48B2F0CBBC4B3E258A56064B86C60CAE71CE7A63A761C5721E02B78BE1D78 -F35DF00DCDB192CAFA27BED09DCFFAC888CC96E09EB8C1FF00BE18F715DA78 -A7C49A67833C316FAE6A5A3B4705996658BCCC344F9F95467A9638FE67A570 -5E0DF877FF00094687E22F11F8DF417BBD5BC4389522FBAD6F0B728B112328 -C3839E4F001EE0EEFC27D7B57D1755BDF871E2896496FF004E856E74CBA93A -DCDA1C6013DD909C77EE3F872777E20CF15AEBDE07B89E548A18B5795E491D -80545169392493D0015E4F23DE7ED19E3F11466683C0DA149966E57ED0DEBF -EF3E38FEEA7A1383F46DADAC1656D0DADAC2905BC08238A28D70A8A060003B -002A5A28A28A28A28A28A28A28A28A28A28A28A28A28A28A28A28A28A28A28 -A28A2BC5BC1DF0BFC41ABFC44D4BC6FF00109217B9B49F66996B13F990A81C -A3AFFB2A0FCA0807765880473D9CFF00F258EC7FEC59B9FF00D2A82BB6A28A -28A28A28AF0FF09EB9A3CDF197C69AE6B1AE5AD84D6B2AE996905C4CA81A34 -5C3E0B1C01B941FAE6BB7FF84BBC2FFD9853FE13CB4CFDA73E7FDA937FFBB8 -CE71EFD3F0E2B89F8C13689AD5A9D7B42F17D81F106818BCB0892F23C6063C -C453BB04B019DA392401DEB9AD33C5FA5FC5AF12E8E75DD621D3FC33A108E7 -16FA84CAAF7F787048604E36272B93D87FB671EC0FE2FF000BF97AA7FC5716 -437B0C117699839E89CF23B715C07C41F106876DE37F879E21D2B5FB4BEBA8 -2F52C2E7C99D5D9A097E52EDB4FBB707B9AEC3E2969165AF6A3E0DD2B52804 -F6777AACB14D19246E536B3771C8FA8AEABC27E13D2BC15A1DBE89A34062B5 -87272E72F231EAEE7BB1FF0000300015B34514514514514514514514514514 -5145145145145145145145145145145145145795693E32D27C47F1D27B1D36 -469CE97A15C5ACD32AE63693CF8588047A60824E06462BD568A28A28A28AE4 -BE22F8FECFC01A28BA78CDE6A574FE4E9F6099DF7329E000073819193F41D4 -815E2FF09BC1F6DE21F16F8AAC3C71A0E9F7DAB2DC2DF5D3CA3E6433A97210 -020637119EC335E93FF0A87C31F62DFF00F08468DF6BF3B1B32DB7CBF5CEEE -BFE7DABCFF00E28F837C3F0EAF69E07F0A784F4A5D6F580AD15C203BED211C -BCADCE0746038E8091CE2A8681F0DF4AF05FC43B4F0AF88F43B1D4AC75D856 -4B0B9BBC968DD0112C7B810371EB8E7AA81D6BD4DBE10784F65F15F05691BD -187D947CDF38CFF17CDE9F4AE17E22780BC3FA5788FC03A568FE1FB0D3EEF5 -1D5A19267B70C5F64641957AFDD0181FC2BD33C75FF232F80BFEC34FFF00A4 -B356C78D3C61A6F817C3D75AE6A8F88A1188E207E69E43F7635F73FA0049E0 -1A3C13E2A4F1AF862C35F8EC6E2C12F10B082E07CC3070483DD491C1E32307 -02B7A8A28A28A28A28A28A28A28A28A28A28A28A28A28A28A28A28A28A28A2 -8A28AF22F8DDF12EEB41820F0878677CFE27D63112080E5EDD18E011E8EDD1 -7D396E38CE67C2CF87517C38F1DE9D60F279DA8DD786EE27BE941CA990DCDB -8DABFECA8E33DF93DF15EE1451451451457CEFA6DD4D1FC5DBE9BE23A7D9B5 -D71B3420C77592C393FEA5CF563EA40392DD18E29BE39F14D8F81BE2B68DE2 -1B1592EEE63B468F5BB5B742C52D4901646C70186EC8CFF75738C8AF41D67C -5FE14D27E1ECBE2359AEEE74BF3FCC80A3FCF3CA47CAA0FA13C7A8E73C8ACB -F85DA04EB3EB1E2AF152DCB789F5AB6334EA1085B5B5600A429DC1C05E3B60 -0EAA6A7F897E19B7F12782F4D1A3FDB63D5ECA4375A3498CB8990E70DFEF63 -031DF07A0AB5E0EF19687E29F025F788AE8DC5B06453AA0DC008655FBE149E -833CF3D88CF1593F0EA297E21F8DE7F8832C3245A1E9901D33408E61F34806 -44939F739619FF006B1FC35D37C45BBB7B0D6FC13777532416F06AD2C92CB2 -1C2A2ADA4E4927B00057955AC779FB45F8F8DDCCB341E06D0A4C221CAFDA1B -D3FDE7E09FEEAE0704827E8E8618ADE18E086358A28D422220C2AA818000EC -00A7D145145145145145145145145145145145145145145145145145145145 -14515C9597C34F0ED878DEF3C6B1C12BEAD751EC26590BA46D8C33A03C862B -85EB8006001934C9ACAE8FC57B2BE16D31B35F0EDC42D71E59F2C486E61210 -B74DC40271D700D7614514514D9258E142F2C8B1A0EACC702A0FED2B1FF9FC -B7FF00BFABFE347F6958FF00CFE5BFFDFD5FF1AE6FC71A27847C67A33697AF -DD5988DB26098CE8B240F8FBE8C4F047E47B83581E01F07F83FC15A75FC575 -AF586B5A86A6585FDF5E4F1B34E878084163F2E3A824E4E7D80F38F177C325 -D0AF6D350F066B9A7EABA3595E7DB97C357BA8A84497D632CDB587B373DBE6 -CE2BA2B6FDA47498EF6E61D76CF50D124F2711C125B89951FF00BC1D4E5973 -9E703350DEFED2BA2451D8C3A61BCD5AF04844CA96CB124A33C7CCF8DA31DF -6FBF15CC7873C23178A758D5350F15789749F0EF87355BDFB7CFE1DB4D6626 -69A4CE40720E00EE71C9F452011EED6FE38F0169504563078A3C3B690DBA08 -E38175181046A07000DDC0C5721E39D5BC23E39D6FC1DA343AAE93AE432EA9 -20B8B5B7BB8E63B3ECB30C908C4819C73D8E2BD0FC37E1AD2FC25A3DBE8DA3 -5A8B6B3B7076AE72492725989E4927B9AD4A28A28A28A28A28A28A28A28A28 -A28A28A28A28A28A28A28A28A28A28A28A28A2BC5BF687F17D9DAE9367E14B -28A6BCF116A1323DA456D3488F067281C88D81627710AA7209E48E05687813 -E05689A5F86EDA2F145BB6A7AC49FBDB890DD4A163240FDDAED60085C75EE7 -27A62BA3FF008539E04FFA017FE4DCFF00FC5D789F88B4AD17C4DF12EC3C1D -F0FF0046B7686C252FAB5DCF2CD340E01C3A302FCA28383820B3100118C9F6 -CFF8535F0F3FE853D3FF00EF93FE347FC29AF879FF00429E9FFF007C9FF1AF -15934BF0FF008BBE2C58F87FC07E18D20E91A4B96D52EE6B7F3619D7387CE4 -F41D1718258E73819AF73FF8553E02FF00A14347FF00C044FF000A3FE154F8 -0BFE850D1FFF000113FC2BC63E20A6853F8DB4DF02FC3BF09E82FAB2CE1EFE -E64D3A2963882F2633B948000E5CF5E8A39C8AF6E8FE1BF82C46A24F077879 -9F03715D2A0009EF81B4E29DFF000AE3C11FF426F87FFF0005707FF135C27C -57D43C0FF0C3C3ACF67E15D04EB17D98EC6D974E8796EF2300BF75723EA703 -BE46BFC32F0516F06D849E32F0FE8B26AD22EF38D3214748CE362C985C17C7 -5C01E879049EB7FE10AF0B7FD0B5A3FF00E0045FFC4D79E7C60F13F877E1CE -84965A4E87A63EBDA8831D8DBC76519F2F3C194AEDE707A0EEDEB835D6FC3A -D06FACBC2FA54DE24B0D3C6BCB16E96482D12374CF40C40FBF8E091819CFD4 -F6345145145145145145145145145145145145145145145145145145145145 -14514557D41EEE2B0B992C218E7BC5898C114AFB11DF1F282DD8138E6BC7FE -11FC34D6175CBFF1F78F232FE23BA99C4104A437D9C7DD2FC1207036A81C05 -E9D78F68AF30F8E1E2DD7F40D06D749F0D69F773EA5AE4DF648EEA18C95833 -C6037691B385FA31EC2B4FE137C34B5F86FE1C5B66D936AD77892FEE473B9F -B229FEEAE703D4E4F7C0EF2BC9FE3AF89BC4565A758785BC31A7DDC97FE219 -0DB7DB2343B235EE81BA07619E7B2863EE3A6F861F0EEC7E1BF86A3D360DB2 -DF4D896FAE80E66931D07FB2BD00FA9EA4D7655C07C63F196ADE0CF08BCFA1 -D85C5D6A37B20B58268A22EB6CCFC076C77ECA3BB11F434FE0C7C301E02D19 -EFF53FDFF88B541E65ECCE7734609C88C37D7963DDBD4015E9755753BD3A6E -9D757A2DA7BA36F0B4A20B74DD24BB413B547727A015E11F0BFC29AAFC4CF1 -6CDF137C6501582294AE95612025576120100FF0A1CE38E5F27B73F40D67EB -DAAB689A2DF6A6965717ED69034AB6B6CBBA49481F7547BD78A7C20F06EA7E -36F104BF14FC669E65C4EFBB4AB571F2460701C29E8ABD13F16EB835EF7451 -45145145145145145145145145145145145145145145145145145145145145 -15FFD9> -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob40.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob40.gif deleted file mode 100755 index 96a19df4d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob40.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob40.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob40.pdf deleted file mode 100644 index 861596b86..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob40.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob58.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob58.eps deleted file mode 100755 index b960b80c2..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob58.eps +++ /dev/null @@ -1,1430 +0,0 @@ -%!PS-Adobe-3.0 EPSF-3.0 -%%BoundingBox: 30 574 216 762 -%%Title: (pssc7cq4.4.cw \(DR\)) -%%Creator: (ClarisWorks 3.0: LaserWriter 8 8.2) -%%CreationDate: (19:26 Tuesday, January 28, 1997) -%%For: (Alberding) -%%Pages: 1 -%%DocumentFonts: Palatino-Bold -%%DocumentNeededFonts: Palatino-Bold -%%DocumentSuppliedFonts: -%%DocumentData: Clean7Bit -%%PageOrder: Ascend -%%Orientation: Portrait -%%DocumentMedia: Default 612 792 0 () () -%ADO_ImageableArea: 15 6 597 773 -%%EndComments -userdict begin/dscInfo 5 dict dup begin -/Title(pssc7cq4.4.cw \(DR\))def -/Creator(ClarisWorks 3.0: LaserWriter 8 8.2)def -/CreationDate(19:26 Tuesday, January 28, 1997)def -/For(Alberding)def -/Pages 1 def -end def end -/md 167 dict def md begin/currentpacking where {pop /sc_oldpacking currentpacking def true setpacking}if -%%BeginFile: adobe_psp_basic -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/bd{bind def}bind def -/xdf{exch def}bd -/xs{exch store}bd -/ld{load def}bd -/Z{0 def}bd -/T/true -/F/false -/:L/lineto -/lw/setlinewidth -/:M/moveto -/rl/rlineto -/rm/rmoveto -/:C/curveto -/:T/translate -/:K/closepath -/:mf/makefont -/gS/gsave -/gR/grestore -/np/newpath -14{ld}repeat -/$m matrix def -/av 81 def -/por true def -/normland false def -/psb-nosave{}bd -/pse-nosave{}bd -/us Z -/psb{/us save store}bd -/pse{us restore}bd -/level2 -/languagelevel where -{ -pop languagelevel 2 ge -}{ -false -}ifelse -def -/featurecleanup -{ -stopped -cleartomark -countdictstack exch sub dup 0 gt -{ -{end}repeat -}{ -pop -}ifelse -}bd -/noload Z -/startnoload -{ -{/noload save store}if -}bd -/endnoload -{ -{noload restore}if -}bd -level2 startnoload -/setjob -{ -statusdict/jobname 3 -1 roll put -}bd -/setcopies -{ -userdict/#copies 3 -1 roll put -}bd -level2 endnoload level2 not startnoload -/setjob -{ -1 dict begin/JobName xdf currentdict end setuserparams -}bd -/setcopies -{ -1 dict begin/NumCopies xdf currentdict end setpagedevice -}bd -level2 not endnoload -/pm Z -/mT Z -/sD Z -/realshowpage Z -/initializepage -{ -/pm save store mT concat -}bd -/endp -{ -pm restore showpage -}def -/$c/DeviceRGB def -/rectclip where -{ -pop/rC/rectclip ld -}{ -/rC -{ -np 4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -clip np -}bd -}ifelse -/rectfill where -{ -pop/rF/rectfill ld -}{ -/rF -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -fill -gR -}bd -}ifelse -/rectstroke where -{ -pop/rS/rectstroke ld -}{ -/rS -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -stroke -gR -}bd -}ifelse -%%EndFile -%%BeginFile: adobe_psp_colorspace_level1 -%%Copyright: Copyright 1991-1993 Adobe Systems Incorporated. All Rights Reserved. -/G/setgray ld -/:F/setrgbcolor ld -%%EndFile -%%BeginFile: adobe_psp_uniform_graphics -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/@a -{ -np :M 0 rl :L 0 exch rl 0 rl :L fill -}bd -/@b -{ -np :M 0 rl 0 exch rl :L 0 rl 0 exch rl fill -}bd -/arct where -{ -pop -}{ -/arct -{ -arcto pop pop pop pop -}bd -}ifelse -/x1 Z -/x2 Z -/y1 Z -/y2 Z -/rad Z -/@q -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -fill -}bd -/@s -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -:K -stroke -}bd -/@i -{ -np 0 360 arc fill -}bd -/@j -{ -gS -np -:T -scale -0 0 .5 0 360 arc -fill -gR -}bd -/@e -{ -np -0 360 arc -:K -stroke -}bd -/@f -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 0 360 arc -:K -$m setmatrix -stroke -}bd -/@k -{ -gS -np -:T -0 0 :M -0 0 5 2 roll -arc fill -gR -}bd -/@l -{ -gS -np -:T -0 0 :M -scale -0 0 .5 5 -2 roll arc -fill -gR -}bd -/@m -{ -np -arc -stroke -}bd -/@n -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 5 -2 roll arc -$m setmatrix -stroke -}bd -%%EndFile -%%BeginFile: adobe_psp_NON-uniform_graphics -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/@d -{ -gS -np -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -scale -1 lw -stroke -gR -}bd -/oh Z -/ow Z -/y2 Z -/y1 Z -/x2 Z -/x1 Z -/rad Z -/ph Z -/pw Z -/arct where -{ -pop -}{ -/arct -{ -arcto pop pop pop pop -}bd -}ifelse -/@r -{ -/oh xs -/ow xs -oh div -/y2 xs -ow div -/x2 xs -oh div -/y1 xs -ow div -/x1 xs -gS -np -ow oh scale -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 .5 arct -x2 y2 x1 y2 .5 arct -x1 y2 x1 y1 .5 arct -x1 y1 x2 y1 .5 arct -fill -gR -}bd -/@t -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -gS -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -:K -scale -1 lw -stroke -gR -}bd -/@u -{ -/oh xs -/ow xs -/ph xs -/pw xs -oh div -/y2 xs -ow div -/x2 xs -oh div -/y1 xs -ow div -/x1 xs -gS -np -$m currentmatrix -ow oh scale -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 .5 arct -x2 y2 x1 y2 .5 arct -x1 y2 x1 y1 .5 arct -x1 y1 x2 y1 .5 arct -:K -setmatrix -pw ph scale -1 lw -stroke -gR -}bd -/@g -{ -gS -np -0 360 arc -:K -scale -1 lw -stroke -gR -}bd -/@h -{ -gS -np -$m currentmatrix -pop -:T -scale -0 0 .5 0 360 arc -$m setmatrix -scale -1 lw -:K -stroke -gR -}bd -/@o -{ -gS -np -arc -scale -1 lw -stroke -gR -}bd -/@p -{ -gS -np -$m currentmatrix -pop -:T -scale -0 0 .5 5 -2 roll arc -$m setmatrix -scale -1 lw -stroke -gR -}bd -%%EndFile -%%BeginFile: adobe_psp_customps -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/$t Z -/$p Z -/$s Z -/$o 1. def -/2state? false def -/ps Z -level2 startnoload -/pushcolor/currentrgbcolor ld -/popcolor/setrgbcolor ld -/setcmykcolor where -{ -pop/currentcmykcolor where -{ -pop/pushcolor/currentcmykcolor ld -/popcolor/setcmykcolor ld -}if -}if -level2 endnoload level2 not startnoload -/pushcolor -{ -currentcolorspace $c eq -{ -currentcolor currentcolorspace true -}{ -currentcmykcolor false -}ifelse -}bd -/popcolor -{ -{ -setcolorspace setcolor -}{ -setcmykcolor -}ifelse -}bd -level2 not endnoload -/pushstatic -{ -ps -2state? -$o -$t -$p -$s -}bd -/popstatic -{ -/$s xs -/$p xs -/$t xs -/$o xs -/2state? xs -/ps xs -}bd -/pushgstate -{ -save errordict/nocurrentpoint{pop 0 0}put -currentpoint -3 -1 roll restore -pushcolor -currentlinewidth -currentlinecap -currentlinejoin -currentdash exch aload length -np clippath pathbbox -$m currentmatrix aload pop -}bd -/popgstate -{ -$m astore setmatrix -2 index sub exch -3 index sub exch -rC -array astore exch setdash -setlinejoin -setlinecap -lw -popcolor -np :M -}bd -/bu -{ -pushgstate -gR -pushgstate -2state? -{ -gR -pushgstate -}if -pushstatic -pm restore -mT concat -}bd -/bn -{ -/pm save store -popstatic -popgstate -gS -popgstate -2state? -{ -gS -popgstate -}if -}bd -/cpat{pop 64 div G 8{pop}repeat}bd -%%EndFile -%%BeginFile: adobe_psp_basic_text -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/S/show ld -/A{ -0.0 exch ashow -}bd -/R{ -0.0 exch 32 exch widthshow -}bd -/W{ -0.0 3 1 roll widthshow -}bd -/J{ -0.0 32 4 2 roll 0.0 exch awidthshow -}bd -/V{ -0.0 4 1 roll 0.0 exch awidthshow -}bd -/fcflg true def -/fc{ -fcflg{ -vmstatus exch sub 50000 lt{ -(%%[ Warning: Running out of memory ]%%\r)print flush/fcflg false store -}if pop -}if -}bd -/$f[1 0 0 -1 0 0]def -/:ff{$f :mf}bd -/MacEncoding StandardEncoding 256 array copy def -MacEncoding 39/quotesingle put -MacEncoding 96/grave put -/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis/Udieresis/aacute -/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute/egrave -/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde/oacute -/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex/udieresis -/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/notequal/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdiff/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta/guillemotleft -/guillemotright/ellipsis/space/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide/lozenge -/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright/fi/fl -/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex/Idieresis/Igrave -/Oacute/Ocircumflex/apple/Ograve/Uacute/Ucircumflex/Ugrave/dotlessi/circumflex/tilde -/macron/breve/dotaccent/ring/cedilla/hungarumlaut/ogonek/caron -MacEncoding 128 128 getinterval astore pop -level2 startnoload -/copyfontdict -{ -findfont dup length dict -begin -{ -1 index/FID ne{def}{pop pop}ifelse -}forall -}bd -level2 endnoload level2 not startnoload -/copyfontdict -{ -findfont dup length dict -copy -begin -}bd -level2 not endnoload -md/fontname known not{ -/fontname/customfont def -}if -/Encoding Z -/:mre -{ -copyfontdict -/Encoding MacEncoding def -fontname currentdict -end -definefont :ff def -}bd -/:bsr -{ -copyfontdict -/Encoding Encoding 256 array copy def -Encoding dup -}bd -/pd{put dup}bd -/:esr -{ -pop pop -fontname currentdict -end -definefont :ff def -}bd -/scf -{ -scalefont def -}bd -/scf-non -{ -$m scale :mf setfont -}bd -/ps Z -/fz{/ps xs}bd -/sf/setfont ld -/cF/currentfont ld -/mbf -{ -/makeblendedfont where -{ -pop -makeblendedfont -/ABlend exch definefont -}{ -pop -}ifelse -def -}def -%%EndFile -/currentpacking where {pop sc_oldpacking setpacking}if end -%%EndProlog -%%BeginSetup -md begin -/mT[1 0 0 -1 15 773]def -/sD 16 dict def -%%IncludeFont: Palatino-Bold -/f0_1/Palatino-Bold -:mre -/f0_10 f0_1 10 scf -/f0_7 f0_1 7 scf -/Courier findfont[10 0 0 -10 0 0]:mf setfont -%PostScript Hack by Mike Brors 12/7/90 -/DisableNextSetRGBColor - { - userdict begin - /setrgbcolor - { - pop - pop - pop - userdict begin - /setrgbcolor systemdict /setrgbcolor get def - end - } def - end -} bind def -/bcarray where { - pop - bcarray 2 { - /da 4 ps div def - df setfont gsave cs wi - 1 index 0 ne{exch da add exch}if grestore setcharwidth - cs 0 0 smc da 0 smc da da smc 0 da smc c - gray - { gl} - {1 setgray}ifelse - da 2. div dup moveto show - }bind put -} if -% -% Used to snap to device pixels, 1/4th of the pixel in. -/stp { % x y pl x y % Snap To Pixel, pixel (auto stroke adjust) - transform - 0.25 sub round 0.25 add exch - 0.25 sub round 0.25 add exch - itransform -} bind def -/snapmoveto { % x y m - % moveto, auto stroke adjust - stp moveto -} bind def -/snaplineto { % x y l - % lineto, auto stroke adjust - stp lineto -} bind def -%%EndSetup -%%Page: 1 1 -%%BeginPageSetup -initializepage -%%EndPageSetup -gS 0 0 582 767 rC -.016 lw -109.5 107.5 86 -90 0 @m --.016 -.016 109.016 107.016 .016 .016 109 21 @b -109 107.016 -.016 .016 196.016 107 .016 109 107 @a -109.5 107.5 86 -90 -15 @m --.016 -.016 109.016 107.016 .016 .016 109 21 @b --.016 -.016 109.016 107.016 .016 .016 193 85 @b -109.5 107.5 86 -90 -30 @m --.016 -.016 109.016 107.016 .016 .016 109 21 @b --.016 -.016 109.016 107.016 .016 .016 184 64 @b -109.5 107.5 86 -90 -45 @m --.016 -.016 109.016 107.016 .016 .016 109 21 @b --.016 -.016 109.016 107.016 .016 .016 170 46 @b -109.5 107.5 86 -90 -60 @m --.016 -.016 109.016 107.016 .016 .016 109 21 @b --.016 -.016 109.016 107.016 .016 .016 152 32 @b -109.5 107.5 86 -90 -75 @m --.016 -.016 109.016 107.016 .016 .016 109 21 @b --.016 -.016 109.016 107.016 .016 .016 131 23 @b -109.5 107.5 86 180 270 @m -23 107.016 -.016 .016 109.016 107 .016 23 107 @a --.016 -.016 109.016 107.016 .016 .016 109 21 @b -109.5 107.5 86 195 270 @m -25 85.016 -.016 .016 109.016 107 .016 25 85 @a --.016 -.016 109.016 107.016 .016 .016 109 21 @b -109.5 107.5 86 210 270 @m -34 64.016 -.016 .016 109.016 107 .016 34 64 @a --.016 -.016 109.016 107.016 .016 .016 109 21 @b -109.5 107.5 86 225 270 @m -48 46.016 -.016 .016 109.016 107 .016 48 46 @a --.016 -.016 109.016 107.016 .016 .016 109 21 @b -109.5 107.5 86 240 270 @m -66 32.016 -.016 .016 109.016 107 .016 66 32 @a --.016 -.016 109.016 107.016 .016 .016 109 21 @b -109.5 107.5 86 255 270 @m -87 23.016 -.016 .016 109.016 107 .016 87 23 @a --.016 -.016 109.016 107.016 .016 .016 109 21 @b -109.5 107.5 86 0 90 @m -109 107.016 -.016 .016 196.016 107 .016 109 107 @a --.016 -.016 109.016 194.016 .016 .016 109 107 @b -15 90 172 173 109.5 107 @n -109 107.016 -.016 .016 193.016 129 .016 109 107 @a --.016 -.016 109.016 194.016 .016 .016 109 107 @b -30 90 172 173 109.5 107 @n -109 107.016 -.016 .016 184.016 150 .016 109 107 @a --.016 -.016 109.016 194.016 .016 .016 109 107 @b -45 90 172 173 109.5 107 @n -109 107.016 -.016 .016 170.016 168 .016 109 107 @a --.016 -.016 109.016 194.016 .016 .016 109 107 @b -60 90 172 173 109.5 107 @n -109 107.016 -.016 .016 152.016 182 .016 109 107 @a --.016 -.016 109.016 194.016 .016 .016 109 107 @b -75 90 172 173 109.5 107 @n -109 107.016 -.016 .016 131.016 191 .016 109 107 @a --.016 -.016 109.016 194.016 .016 .016 109 107 @b -109.5 107.5 86 90 180 @m --.016 -.016 109.016 194.016 .016 .016 109 107 @b -23 107.016 -.016 .016 109.016 107 .016 23 107 @a -90 165 172 173 109.5 107 @n --.016 -.016 109.016 194.016 .016 .016 109 107 @b --.016 -.016 25.016 129.016 .016 .016 109 107 @b -90 150 172 173 109.5 107 @n --.016 -.016 109.016 194.016 .016 .016 109 107 @b --.016 -.016 34.016 150.016 .016 .016 109 107 @b -90 135 172 173 109.5 107 @n --.016 -.016 109.016 194.016 .016 .016 109 107 @b --.016 -.016 48.016 168.016 .016 .016 109 107 @b -90 120 172 173 109.5 107 @n --.016 -.016 109.016 194.016 .016 .016 109 107 @b --.016 -.016 66.016 182.016 .016 .016 109 107 @b -90 105 172 173 109.5 107 @n --.016 -.016 109.016 194.016 .016 .016 109 107 @b --.016 -.016 87.016 191.016 .016 .016 109 107 @b -0 0 :M - gsave newpath -matrix currentmatrix 84 21 translate 8 8 div 1 scale 4 4 4 270 630 arc -4 4 lineto -setmatrix closepath eoclip -4 lw -88 25 2 @e -.2 G -2 3 88 24.5 @f -.4 G -1 2 88.5 24 @f -.6 G -.8 G -1 G -1 2 89.5 23 @j -1 lw -0 0 :M - grestore -0 G -.016 lw -88 25 3.5 @e -0 0 :M - gsave newpath -matrix currentmatrix 63 29 translate 8 8 div 1 scale 4 4 4 270 630 arc -4 4 lineto -setmatrix closepath eoclip -4 lw -67 33 2 @e -.2 G -2 3 67 32.5 @f -.4 G -1 2 67.5 32 @f -.6 G -.8 G -1 G -1 2 68.5 31 @j -1 lw -0 0 :M - grestore -0 G -.016 lw -67 33 3.5 @e -0 0 :M - gsave newpath -matrix currentmatrix 45 43 translate 8 8 div 1 scale 4 4 4 270 630 arc -4 4 lineto -setmatrix closepath eoclip -4 lw -49 47 2 @e -.2 G -2 3 49 46.5 @f -.4 G -1 2 49.5 46 @f -.6 G -.8 G -1 G -1 2 50.5 45 @j -1 lw -0 0 :M - grestore -0 G -.016 lw -49 47 3.5 @e -0 0 :M - gsave newpath -matrix currentmatrix 32 61 translate 8 8 div 1 scale 4 4 4 270 630 arc -4 4 lineto -setmatrix closepath eoclip -4 lw -36 65 2 @e -.2 G -2 3 36 64.5 @f -.4 G -1 2 36.5 64 @f -.6 G -.8 G -1 G -1 2 37.5 63 @j -1 lw -0 0 :M - grestore -0 G -.016 lw -36 65 3.5 @e -0 0 :M - gsave newpath -matrix currentmatrix 22 82 translate 8 8 div 1 scale 4 4 4 270 630 arc -4 4 lineto -setmatrix closepath eoclip -4 lw -26 86 2 @e -.2 G -2 3 26 85.5 @f -.4 G -1 2 26.5 85 @f -.6 G -.8 G -1 G -1 2 27.5 84 @j -1 lw -0 0 :M - grestore -0 G -.016 lw -26 86 3.5 @e -0 0 :M - gsave newpath -matrix currentmatrix 20 104 translate 8 8 div 1 scale 4 4 4 270 630 arc -4 4 lineto -setmatrix closepath eoclip -4 lw -24 108 2 @e -.2 G -2 3 24 107.5 @f -.4 G -1 2 24.5 107 @f -.6 G -.8 G -1 G -1 2 25.5 106 @j -1 lw -0 0 :M - grestore -0 G -.016 lw -24 108 3.5 @e -0 0 :M - gsave newpath -matrix currentmatrix 23 127 translate 8 8 div 1 scale 4 4 4 270 630 arc -4 4 lineto -setmatrix closepath eoclip -4 lw -27 131 2 @e -.2 G -2 3 27 130.5 @f -.4 G -1 2 27.5 130 @f -.6 G -.8 G -1 G -1 2 28.5 129 @j -1 lw -0 0 :M - grestore -0 G -.016 lw -27 131 3.5 @e -0 0 :M - gsave newpath -matrix currentmatrix 31 147 translate 8 8 div 1 scale 4 4 4 270 630 arc -4 4 lineto -setmatrix closepath eoclip -4 lw -35 151 2 @e -.2 G -2 3 35 150.5 @f -.4 G -1 2 35.5 150 @f -.6 G -.8 G -1 G -1 2 36.5 149 @j -1 lw -0 0 :M - grestore -0 G -.016 lw -35 151 3.5 @e -0 0 :M - gsave newpath -matrix currentmatrix 44 164 translate 8 8 div 1 scale 4 4 4 270 630 arc -4 4 lineto -setmatrix closepath eoclip -4 lw -48 168 2 @e -.2 G -2 3 48 167.5 @f -.4 G -1 2 48.5 167 @f -.6 G -.8 G -1 G -1 2 49.5 166 @j -1 lw -0 0 :M - grestore -0 G -.016 lw -48 168 3.5 @e -0 0 :M - gsave newpath -matrix currentmatrix 63 179 translate 8 8 div 1 scale 4 4 4 270 630 arc -4 4 lineto -setmatrix closepath eoclip -4 lw -67 183 2 @e -.2 G -2 3 67 182.5 @f -.4 G -1 2 67.5 182 @f -.6 G -.8 G -1 G -1 2 68.5 181 @j -1 lw -0 0 :M - grestore -0 G -.016 lw -67 183 3.5 @e -0 0 :M - gsave newpath -matrix currentmatrix 84 188 translate 8 8 div 1 scale 4 4 4 270 630 arc -4 4 lineto -setmatrix closepath eoclip -4 lw -88 192 2 @e -.2 G -2 3 88 191.5 @f -.4 G -1 2 88.5 191 @f -.6 G -.8 G -1 G -1 2 89.5 190 @j -1 lw -0 0 :M - grestore -0 G -.016 lw -88 192 3.5 @e -0 0 :M - gsave newpath -matrix currentmatrix 106 191 translate 8 8 div 1 scale 4 4 4 270 630 arc -4 4 lineto -setmatrix closepath eoclip -4 lw -110 195 2 @e -.2 G -2 3 110 194.5 @f -.4 G -1 2 110.5 194 @f -.6 G -.8 G -1 G -1 2 111.5 193 @j -1 lw -0 0 :M - grestore -0 G -.016 lw -110 195 3.5 @e -0 0 :M - gsave newpath -matrix currentmatrix 129 187 translate 8 8 div 1 scale 4 4 4 270 630 arc -4 4 lineto -setmatrix closepath eoclip -4 lw -133 191 2 @e -.2 G -2 3 133 190.5 @f -.4 G -1 2 133.5 190 @f -.6 G -.8 G -1 G -1 2 134.5 189 @j -1 lw -0 0 :M - grestore -0 G -.016 lw -133 191 3.5 @e -0 0 :M - gsave newpath -matrix currentmatrix 149 178 translate 8 8 div 1 scale 4 4 4 270 630 arc -4 4 lineto -setmatrix closepath eoclip -4 lw -153 182 2 @e -.2 G -2 3 153 181.5 @f -.4 G -1 2 153.5 181 @f -.6 G -.8 G -1 G -1 2 154.5 180 @j -1 lw -0 0 :M - grestore -0 G -.016 lw -153 182 3.5 @e -0 0 :M - gsave newpath -matrix currentmatrix 168 166 translate 8 8 div 1 scale 4 4 4 270 630 arc -4 4 lineto -setmatrix closepath eoclip -4 lw -172 170 2 @e -.2 G -2 3 172 169.5 @f -.4 G -1 2 172.5 169 @f -.6 G -.8 G -1 G -1 2 173.5 168 @j -1 lw -0 0 :M - grestore -0 G -.016 lw -172 170 3.5 @e -0 0 :M - gsave newpath -matrix currentmatrix 181 148 translate 8 8 div 1 scale 4 4 4 270 630 arc -4 4 lineto -setmatrix closepath eoclip -4 lw -185 152 2 @e -.2 G -2 3 185 151.5 @f -.4 G -1 2 185.5 151 @f -.6 G -.8 G -1 G -1 2 186.5 150 @j -1 lw -0 0 :M - grestore -0 G -.016 lw -185 152 3.5 @e -0 0 :M - gsave newpath -matrix currentmatrix 190 127 translate 8 8 div 1 scale 4 4 4 270 630 arc -4 4 lineto -setmatrix closepath eoclip -4 lw -194 131 2 @e -.2 G -2 3 194 130.5 @f -.4 G -1 2 194.5 130 @f -.6 G -.8 G -1 G -1 2 195.5 129 @j -1 lw -0 0 :M - grestore -0 G -.016 lw -194 131 3.5 @e -0 0 :M - gsave newpath -matrix currentmatrix 193 104 translate 8 8 div 1 scale 4 4 4 270 630 arc -4 4 lineto -setmatrix closepath eoclip -4 lw -197 108 2 @e -.2 G -2 3 197 107.5 @f -.4 G -1 2 197.5 107 @f -.6 G -.8 G -1 G -1 2 198.5 106 @j -1 lw -0 0 :M - grestore -0 G -.016 lw -197 108 3.5 @e -0 0 :M - gsave newpath -matrix currentmatrix 190 83 translate 8 8 div 1 scale 4 4 4 270 630 arc -4 4 lineto -setmatrix closepath eoclip -4 lw -194 87 2 @e -.2 G -2 3 194 86.5 @f -.4 G -1 2 194.5 86 @f -.6 G -.8 G -1 G -1 2 195.5 85 @j -1 lw -0 0 :M - grestore -0 G -.016 lw -194 87 3.5 @e -0 0 :M - gsave newpath -matrix currentmatrix 182 62 translate 8 8 div 1 scale 4 4 4 270 630 arc -4 4 lineto -setmatrix closepath eoclip -4 lw -186 66 2 @e -.2 G -2 3 186 65.5 @f -.4 G -1 2 186.5 65 @f -.6 G -.8 G -1 G -1 2 187.5 64 @j -1 lw -0 0 :M - grestore -0 G -.016 lw -186 66 3.5 @e -0 0 :M - gsave newpath -matrix currentmatrix 168 44 translate 8 8 div 1 scale 4 4 4 270 630 arc -4 4 lineto -setmatrix closepath eoclip -4 lw -172 48 2 @e -.2 G -2 3 172 47.5 @f -.4 G -1 2 172.5 47 @f -.6 G -.8 G -1 G -1 2 173.5 46 @j -1 lw -0 0 :M - grestore -0 G -.016 lw -172 48 3.5 @e -0 0 :M - gsave newpath -matrix currentmatrix 151 30 translate 8 8 div 1 scale 4 4 4 270 630 arc -4 4 lineto -setmatrix closepath eoclip -4 lw -155 34 2 @e -.2 G -2 3 155 33.5 @f -.4 G -1 2 155.5 33 @f -.6 G -.8 G -1 G -1 2 156.5 32 @j -1 lw -0 0 :M - grestore -0 G -.016 lw -155 34 3.5 @e -0 0 :M - gsave newpath -matrix currentmatrix 129 21 translate 8 8 div 1 scale 4 4 4 270 630 arc -4 4 lineto -setmatrix closepath eoclip -4 lw -133 25 2 @e -.2 G -2 3 133 24.5 @f -.4 G -1 2 133.5 24 @f -.6 G -.8 G -1 G -1 2 134.5 23 @j -1 lw -0 0 :M - grestore -0 G -.016 lw -133 25 3.5 @e -np 47 36 :M -56 29 :L -58 37 :L -47 36 :L -eofill --1 -1 49 36 1 1 87 24 @b -48 35 :M - gsave newpath -matrix currentmatrix 106 17 translate 8 8 div 1 scale 4 4 4 270 630 arc -4 4 lineto -setmatrix closepath eoclip -4 lw -110 21 2 @e -.2 G -2 3 110 20.5 @f -.4 G -1 2 110.5 20 @f -.6 G -.8 G -1 G -1 2 111.5 19 @j -1 lw -48 35 :M - grestore -0 G -.016 lw -110 21 3.5 @e -116 23 20 14 rC -gR -gS 111 0 30 37 rC -116 31 :M -f0_10 sf -.638(v)A -f0_7 sf -0 1 rm -.803A -0 -1 rm -gR -gS 78 27 11 13 rC -gR -gS 73 0 21 40 rC -78 35 :M -f0_10 sf -.577(v)A -f0_7 sf -0 1 rm -(1)S -0 -1 rm -gR -gS 0 0 582 767 rC -np 67 21 :M -78 17 :L -78 25 :L -67 21 :L -eofill -69 22 -1 1 111 21 1 69 21 @a -np 23 151 :M -19 140 :L -27 140 :L -23 151 :L -eofill --1 -1 24 149 1 1 23 107 @b -np 16 126 :M -15 115 :L -23 117 :L -16 126 :L -eofill --1 -1 17 125 1 1 26 85 @b -26 90 12 13 rC -gR -gS 21 54 22 49 rC -26 98 :M -f0_10 sf -.577(v)A -f0_7 sf -0 1 rm -(5)S -0 -1 rm -gR -gS 30 132 12 13 rC -gR -gS 25 96 22 49 rC -30 140 :M -f0_10 sf -.577(v)A -f0_7 sf -0 1 rm -(7)S -0 -1 rm -gR -gS 0 0 582 767 rC -np 93 12 :M -104 11 :L -102 19 :L -93 12 :L -eofill -94 13 -1 1 134 24 1 94 12 @a -np 37 171 :M -30 162 :L -38 160 :L -37 171 :L -eofill -26 131 -1 1 37 169 1 26 130 @a -97 21 12 13 rC -gR -gS 92 0 22 34 rC -97 29 :M -f0_10 sf -.577(v)A -f0_7 sf -0 1 rm -(0)S -0 -1 rm -gR -gS 25 111 12 13 rC -gR -gS 20 75 22 49 rC -25 119 :M -f0_10 sf -.577(v)A -f0_7 sf -0 1 rm -(6)S -0 -1 rm -gR -endp -%%Trailer -end -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob58.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob58.gif deleted file mode 100755 index b6b12b082..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob58.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob58.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob58.pdf deleted file mode 100644 index b2ddec43a..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob58.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v0.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v0.eps deleted file mode 100755 index 03e2b7468..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v0.eps +++ /dev/null @@ -1,510 +0,0 @@ -%!PS-Adobe-3.0 EPSF-3.0 -%%BoundingBox: 15 688 166 764 -%%Title: (pssc7cq4.7.v0cw \(DR\)) -%%Creator: (ClarisWorks 3.0: LaserWriter 8 8.2) -%%CreationDate: (17:47 Friday, January 3, 1997) -%%For: (Alberding) -%%Pages: 1 -%%DocumentFonts: Palatino-Bold -%%DocumentNeededFonts: Palatino-Bold -%%DocumentSuppliedFonts: -%%DocumentData: Clean7Bit -%%PageOrder: Ascend -%%Orientation: Portrait -%%DocumentMedia: Default 612 792 0 () () -%ADO_ImageableArea: 15 6 597 773 -%%EndComments -userdict begin/dscInfo 5 dict dup begin -/Title(pssc7cq4.7.v0cw \(DR\))def -/Creator(ClarisWorks 3.0: LaserWriter 8 8.2)def -/CreationDate(17:47 Friday, January 3, 1997)def -/For(Alberding)def -/Pages 1 def -end def end -/md 135 dict def md begin/currentpacking where {pop /sc_oldpacking currentpacking def true setpacking}if -%%BeginFile: adobe_psp_basic -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/bd{bind def}bind def -/xdf{exch def}bd -/xs{exch store}bd -/ld{load def}bd -/Z{0 def}bd -/T/true -/F/false -/:L/lineto -/lw/setlinewidth -/:M/moveto -/rl/rlineto -/rm/rmoveto -/:C/curveto -/:T/translate -/:K/closepath -/:mf/makefont -/gS/gsave -/gR/grestore -/np/newpath -14{ld}repeat -/$m matrix def -/av 81 def -/por true def -/normland false def -/psb-nosave{}bd -/pse-nosave{}bd -/us Z -/psb{/us save store}bd -/pse{us restore}bd -/level2 -/languagelevel where -{ -pop languagelevel 2 ge -}{ -false -}ifelse -def -/featurecleanup -{ -stopped -cleartomark -countdictstack exch sub dup 0 gt -{ -{end}repeat -}{ -pop -}ifelse -}bd -/noload Z -/startnoload -{ -{/noload save store}if -}bd -/endnoload -{ -{noload restore}if -}bd -level2 startnoload -/setjob -{ -statusdict/jobname 3 -1 roll put -}bd -/setcopies -{ -userdict/#copies 3 -1 roll put -}bd -level2 endnoload level2 not startnoload -/setjob -{ -1 dict begin/JobName xdf currentdict end setuserparams -}bd -/setcopies -{ -1 dict begin/NumCopies xdf currentdict end setpagedevice -}bd -level2 not endnoload -/pm Z -/mT Z -/sD Z -/realshowpage Z -/initializepage -{ -/pm save store mT concat -}bd -/endp -{ -pm restore showpage -}def -/$c/DeviceRGB def -/rectclip where -{ -pop/rC/rectclip ld -}{ -/rC -{ -np 4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -clip np -}bd -}ifelse -/rectfill where -{ -pop/rF/rectfill ld -}{ -/rF -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -fill -gR -}bd -}ifelse -/rectstroke where -{ -pop/rS/rectstroke ld -}{ -/rS -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -stroke -gR -}bd -}ifelse -%%EndFile -%%BeginFile: adobe_psp_colorspace_level1 -%%Copyright: Copyright 1991-1993 Adobe Systems Incorporated. All Rights Reserved. -/G/setgray ld -/:F/setrgbcolor ld -%%EndFile -%%BeginFile: adobe_psp_uniform_graphics -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/@a -{ -np :M 0 rl :L 0 exch rl 0 rl :L fill -}bd -/@b -{ -np :M 0 rl 0 exch rl :L 0 rl 0 exch rl fill -}bd -/arct where -{ -pop -}{ -/arct -{ -arcto pop pop pop pop -}bd -}ifelse -/x1 Z -/x2 Z -/y1 Z -/y2 Z -/rad Z -/@q -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -fill -}bd -/@s -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -:K -stroke -}bd -/@i -{ -np 0 360 arc fill -}bd -/@j -{ -gS -np -:T -scale -0 0 .5 0 360 arc -fill -gR -}bd -/@e -{ -np -0 360 arc -:K -stroke -}bd -/@f -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 0 360 arc -:K -$m setmatrix -stroke -}bd -/@k -{ -gS -np -:T -0 0 :M -0 0 5 2 roll -arc fill -gR -}bd -/@l -{ -gS -np -:T -0 0 :M -scale -0 0 .5 5 -2 roll arc -fill -gR -}bd -/@m -{ -np -arc -stroke -}bd -/@n -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 5 -2 roll arc -$m setmatrix -stroke -}bd -%%EndFile -%%BeginFile: adobe_psp_basic_text -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/S/show ld -/A{ -0.0 exch ashow -}bd -/R{ -0.0 exch 32 exch widthshow -}bd -/W{ -0.0 3 1 roll widthshow -}bd -/J{ -0.0 32 4 2 roll 0.0 exch awidthshow -}bd -/V{ -0.0 4 1 roll 0.0 exch awidthshow -}bd -/fcflg true def -/fc{ -fcflg{ -vmstatus exch sub 50000 lt{ -(%%[ Warning: Running out of memory ]%%\r)print flush/fcflg false store -}if pop -}if -}bd -/$f[1 0 0 -1 0 0]def -/:ff{$f :mf}bd -/MacEncoding StandardEncoding 256 array copy def -MacEncoding 39/quotesingle put -MacEncoding 96/grave put -/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis/Udieresis/aacute -/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute/egrave -/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde/oacute -/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex/udieresis -/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/notequal/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdiff/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta/guillemotleft -/guillemotright/ellipsis/space/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide/lozenge -/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright/fi/fl -/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex/Idieresis/Igrave -/Oacute/Ocircumflex/apple/Ograve/Uacute/Ucircumflex/Ugrave/dotlessi/circumflex/tilde -/macron/breve/dotaccent/ring/cedilla/hungarumlaut/ogonek/caron -MacEncoding 128 128 getinterval astore pop -level2 startnoload -/copyfontdict -{ -findfont dup length dict -begin -{ -1 index/FID ne{def}{pop pop}ifelse -}forall -}bd -level2 endnoload level2 not startnoload -/copyfontdict -{ -findfont dup length dict -copy -begin -}bd -level2 not endnoload -md/fontname known not{ -/fontname/customfont def -}if -/Encoding Z -/:mre -{ -copyfontdict -/Encoding MacEncoding def -fontname currentdict -end -definefont :ff def -}bd -/:bsr -{ -copyfontdict -/Encoding Encoding 256 array copy def -Encoding dup -}bd -/pd{put dup}bd -/:esr -{ -pop pop -fontname currentdict -end -definefont :ff def -}bd -/scf -{ -scalefont def -}bd -/scf-non -{ -$m scale :mf setfont -}bd -/ps Z -/fz{/ps xs}bd -/sf/setfont ld -/cF/currentfont ld -/mbf -{ -/makeblendedfont where -{ -pop -makeblendedfont -/ABlend exch definefont -}{ -pop -}ifelse -def -}def -%%EndFile -/currentpacking where {pop sc_oldpacking setpacking}if end -%%EndProlog -%%BeginSetup -md begin -/mT[1 0 0 -1 15 773]def -/sD 16 dict def -%%IncludeFont: Palatino-Bold -/f0_1/Palatino-Bold -:mre -/f0_10 f0_1 10 scf -/f0_7 f0_1 7 scf -/Courier findfont[10 0 0 -10 0 0]:mf setfont -%PostScript Hack by Mike Brors 12/7/90 -/DisableNextSetRGBColor - { - userdict begin - /setrgbcolor - { - pop - pop - pop - userdict begin - /setrgbcolor systemdict /setrgbcolor get def - end - } def - end -} bind def -/bcarray where { - pop - bcarray 2 { - /da 4 ps div def - df setfont gsave cs wi - 1 index 0 ne{exch da add exch}if grestore setcharwidth - cs 0 0 smc da 0 smc da da smc 0 da smc c - gray - { gl} - {1 setgray}ifelse - da 2. div dup moveto show - }bind put -} if -% -% Used to snap to device pixels, 1/4th of the pixel in. -/stp { % x y pl x y % Snap To Pixel, pixel (auto stroke adjust) - transform - 0.25 sub round 0.25 add exch - 0.25 sub round 0.25 add exch - itransform -} bind def -/snapmoveto { % x y m - % moveto, auto stroke adjust - stp moveto -} bind def -/snaplineto { % x y l - % lineto, auto stroke adjust - stp lineto -} bind def -%%EndSetup -%%Page: 1 1 -%%BeginPageSetup -initializepage -%%EndPageSetup -gS 0 0 582 767 rC -np 144 80 :M -133 84 :L -133 76 :L -144 80 :L -eofill --1 81 -1 1 142 80 1 -1 80 @a -.267 G -np 144 9 :M -149 21 :L -139 21 :L -144 9 :L -eofill --2 -2 145 55 2 2 143 12 @b -0 G -126 18 9 11 rC -gR -gS 121 0 19 29 rC -126 26 :M -f0_10 sf -(a)S -gR -gS 108 63 18 13 rC -gR -gS 103 27 28 49 rC -108 71 :M -f0_10 sf -.577(v)A -f0_7 sf -0 1 rm -(0)S -0 -1 rm -gR -endp -%%Trailer -end -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v0.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v0.gif deleted file mode 100755 index 335d7cc8a..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v0.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v0.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v0.pdf deleted file mode 100644 index 18dd2e17d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v0.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v1.eps deleted file mode 100755 index cf2f483f2..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v1.eps +++ /dev/null @@ -1,363 +0,0 @@ -%!PS-Adobe-3.0 EPSF-3.0 -%%BoundingBox: 15 755 160 764 -%%Title: (pssc7cq4.7.v2cw \(DR\)) -%%Creator: (ClarisWorks 3.0: LaserWriter 8 8.2) -%%CreationDate: (17:55 Friday, January 3, 1997) -%%For: (Alberding) -%%Pages: 1 -%%DocumentFonts: -%%DocumentNeededFonts: -%%DocumentSuppliedFonts: -%%DocumentData: Clean7Bit -%%PageOrder: Ascend -%%Orientation: Portrait -%%DocumentMedia: Default 612 792 0 () () -%ADO_ImageableArea: 15 6 597 773 -%%EndComments -userdict begin/dscInfo 5 dict dup begin -/Title(pssc7cq4.7.v2cw \(DR\))def -/Creator(ClarisWorks 3.0: LaserWriter 8 8.2)def -/CreationDate(17:55 Friday, January 3, 1997)def -/For(Alberding)def -/Pages 1 def -end def end -/md 108 dict def md begin/currentpacking where {pop /sc_oldpacking currentpacking def true setpacking}if -%%BeginFile: adobe_psp_basic -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/bd{bind def}bind def -/xdf{exch def}bd -/xs{exch store}bd -/ld{load def}bd -/Z{0 def}bd -/T/true -/F/false -/:L/lineto -/lw/setlinewidth -/:M/moveto -/rl/rlineto -/rm/rmoveto -/:C/curveto -/:T/translate -/:K/closepath -/:mf/makefont -/gS/gsave -/gR/grestore -/np/newpath -14{ld}repeat -/$m matrix def -/av 81 def -/por true def -/normland false def -/psb-nosave{}bd -/pse-nosave{}bd -/us Z -/psb{/us save store}bd -/pse{us restore}bd -/level2 -/languagelevel where -{ -pop languagelevel 2 ge -}{ -false -}ifelse -def -/featurecleanup -{ -stopped -cleartomark -countdictstack exch sub dup 0 gt -{ -{end}repeat -}{ -pop -}ifelse -}bd -/noload Z -/startnoload -{ -{/noload save store}if -}bd -/endnoload -{ -{noload restore}if -}bd -level2 startnoload -/setjob -{ -statusdict/jobname 3 -1 roll put -}bd -/setcopies -{ -userdict/#copies 3 -1 roll put -}bd -level2 endnoload level2 not startnoload -/setjob -{ -1 dict begin/JobName xdf currentdict end setuserparams -}bd -/setcopies -{ -1 dict begin/NumCopies xdf currentdict end setpagedevice -}bd -level2 not endnoload -/pm Z -/mT Z -/sD Z -/realshowpage Z -/initializepage -{ -/pm save store mT concat -}bd -/endp -{ -pm restore showpage -}def -/$c/DeviceRGB def -/rectclip where -{ -pop/rC/rectclip ld -}{ -/rC -{ -np 4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -clip np -}bd -}ifelse -/rectfill where -{ -pop/rF/rectfill ld -}{ -/rF -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -fill -gR -}bd -}ifelse -/rectstroke where -{ -pop/rS/rectstroke ld -}{ -/rS -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -stroke -gR -}bd -}ifelse -%%EndFile -%%BeginFile: adobe_psp_colorspace_level1 -%%Copyright: Copyright 1991-1993 Adobe Systems Incorporated. All Rights Reserved. -/G/setgray ld -/:F/setrgbcolor ld -%%EndFile -%%BeginFile: adobe_psp_uniform_graphics -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/@a -{ -np :M 0 rl :L 0 exch rl 0 rl :L fill -}bd -/@b -{ -np :M 0 rl 0 exch rl :L 0 rl 0 exch rl fill -}bd -/arct where -{ -pop -}{ -/arct -{ -arcto pop pop pop pop -}bd -}ifelse -/x1 Z -/x2 Z -/y1 Z -/y2 Z -/rad Z -/@q -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -fill -}bd -/@s -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -:K -stroke -}bd -/@i -{ -np 0 360 arc fill -}bd -/@j -{ -gS -np -:T -scale -0 0 .5 0 360 arc -fill -gR -}bd -/@e -{ -np -0 360 arc -:K -stroke -}bd -/@f -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 0 360 arc -:K -$m setmatrix -stroke -}bd -/@k -{ -gS -np -:T -0 0 :M -0 0 5 2 roll -arc fill -gR -}bd -/@l -{ -gS -np -:T -0 0 :M -scale -0 0 .5 5 -2 roll arc -fill -gR -}bd -/@m -{ -np -arc -stroke -}bd -/@n -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 5 -2 roll arc -$m setmatrix -stroke -}bd -%%EndFile -/currentpacking where {pop sc_oldpacking setpacking}if end -%%EndProlog -%%BeginSetup -md begin -/mT[1 0 0 -1 15 773]def -/sD 16 dict def -/Courier findfont[10 0 0 -10 0 0]:mf setfont -%PostScript Hack by Mike Brors 12/7/90 -/DisableNextSetRGBColor - { - userdict begin - /setrgbcolor - { - pop - pop - pop - userdict begin - /setrgbcolor systemdict /setrgbcolor get def - end - } def - end -} bind def -/bcarray where { - pop - bcarray 2 { - /da 4 ps div def - df setfont gsave cs wi - 1 index 0 ne{exch da add exch}if grestore setcharwidth - cs 0 0 smc da 0 smc da da smc 0 da smc c - gray - { gl} - {1 setgray}ifelse - da 2. div dup moveto show - }bind put -} if -% -% Used to snap to device pixels, 1/4th of the pixel in. -/stp { % x y pl x y % Snap To Pixel, pixel (auto stroke adjust) - transform - 0.25 sub round 0.25 add exch - 0.25 sub round 0.25 add exch - itransform -} bind def -/snapmoveto { % x y m - % moveto, auto stroke adjust - stp moveto -} bind def -/snaplineto { % x y l - % lineto, auto stroke adjust - stp lineto -} bind def -%%EndSetup -%%Page: 1 1 -%%BeginPageSetup -initializepage -%%EndPageSetup -gS 0 0 582 767 rC -np 144 13 :M -133 17 :L -133 9 :L -144 13 :L -eofill --1 14 -1 1 142 13 1 -1 13 @a -endp -%%Trailer -end -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v1.gif deleted file mode 100755 index 6ce52cd8f..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v1.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v1.pdf deleted file mode 100644 index 2c46b3392..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v1.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v2.eps deleted file mode 100755 index f499fc9f0..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v2.eps +++ /dev/null @@ -1,363 +0,0 @@ -%!PS-Adobe-3.0 EPSF-3.0 -%%BoundingBox: 15 723 160 770 -%%Title: (pssc7cq4.7.v2cw \(DR\)) -%%Creator: (ClarisWorks 3.0: LaserWriter 8 8.2) -%%CreationDate: (17:53 Friday, January 3, 1997) -%%For: (Alberding) -%%Pages: 1 -%%DocumentFonts: -%%DocumentNeededFonts: -%%DocumentSuppliedFonts: -%%DocumentData: Clean7Bit -%%PageOrder: Ascend -%%Orientation: Portrait -%%DocumentMedia: Default 612 792 0 () () -%ADO_ImageableArea: 15 6 597 773 -%%EndComments -userdict begin/dscInfo 5 dict dup begin -/Title(pssc7cq4.7.v2cw \(DR\))def -/Creator(ClarisWorks 3.0: LaserWriter 8 8.2)def -/CreationDate(17:53 Friday, January 3, 1997)def -/For(Alberding)def -/Pages 1 def -end def end -/md 108 dict def md begin/currentpacking where {pop /sc_oldpacking currentpacking def true setpacking}if -%%BeginFile: adobe_psp_basic -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/bd{bind def}bind def -/xdf{exch def}bd -/xs{exch store}bd -/ld{load def}bd -/Z{0 def}bd -/T/true -/F/false -/:L/lineto -/lw/setlinewidth -/:M/moveto -/rl/rlineto -/rm/rmoveto -/:C/curveto -/:T/translate -/:K/closepath -/:mf/makefont -/gS/gsave -/gR/grestore -/np/newpath -14{ld}repeat -/$m matrix def -/av 81 def -/por true def -/normland false def -/psb-nosave{}bd -/pse-nosave{}bd -/us Z -/psb{/us save store}bd -/pse{us restore}bd -/level2 -/languagelevel where -{ -pop languagelevel 2 ge -}{ -false -}ifelse -def -/featurecleanup -{ -stopped -cleartomark -countdictstack exch sub dup 0 gt -{ -{end}repeat -}{ -pop -}ifelse -}bd -/noload Z -/startnoload -{ -{/noload save store}if -}bd -/endnoload -{ -{noload restore}if -}bd -level2 startnoload -/setjob -{ -statusdict/jobname 3 -1 roll put -}bd -/setcopies -{ -userdict/#copies 3 -1 roll put -}bd -level2 endnoload level2 not startnoload -/setjob -{ -1 dict begin/JobName xdf currentdict end setuserparams -}bd -/setcopies -{ -1 dict begin/NumCopies xdf currentdict end setpagedevice -}bd -level2 not endnoload -/pm Z -/mT Z -/sD Z -/realshowpage Z -/initializepage -{ -/pm save store mT concat -}bd -/endp -{ -pm restore showpage -}def -/$c/DeviceRGB def -/rectclip where -{ -pop/rC/rectclip ld -}{ -/rC -{ -np 4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -clip np -}bd -}ifelse -/rectfill where -{ -pop/rF/rectfill ld -}{ -/rF -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -fill -gR -}bd -}ifelse -/rectstroke where -{ -pop/rS/rectstroke ld -}{ -/rS -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -stroke -gR -}bd -}ifelse -%%EndFile -%%BeginFile: adobe_psp_colorspace_level1 -%%Copyright: Copyright 1991-1993 Adobe Systems Incorporated. All Rights Reserved. -/G/setgray ld -/:F/setrgbcolor ld -%%EndFile -%%BeginFile: adobe_psp_uniform_graphics -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/@a -{ -np :M 0 rl :L 0 exch rl 0 rl :L fill -}bd -/@b -{ -np :M 0 rl 0 exch rl :L 0 rl 0 exch rl fill -}bd -/arct where -{ -pop -}{ -/arct -{ -arcto pop pop pop pop -}bd -}ifelse -/x1 Z -/x2 Z -/y1 Z -/y2 Z -/rad Z -/@q -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -fill -}bd -/@s -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -:K -stroke -}bd -/@i -{ -np 0 360 arc fill -}bd -/@j -{ -gS -np -:T -scale -0 0 .5 0 360 arc -fill -gR -}bd -/@e -{ -np -0 360 arc -:K -stroke -}bd -/@f -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 0 360 arc -:K -$m setmatrix -stroke -}bd -/@k -{ -gS -np -:T -0 0 :M -0 0 5 2 roll -arc fill -gR -}bd -/@l -{ -gS -np -:T -0 0 :M -scale -0 0 .5 5 -2 roll arc -fill -gR -}bd -/@m -{ -np -arc -stroke -}bd -/@n -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 5 -2 roll arc -$m setmatrix -stroke -}bd -%%EndFile -/currentpacking where {pop sc_oldpacking setpacking}if end -%%EndProlog -%%BeginSetup -md begin -/mT[1 0 0 -1 15 773]def -/sD 16 dict def -/Courier findfont[10 0 0 -10 0 0]:mf setfont -%PostScript Hack by Mike Brors 12/7/90 -/DisableNextSetRGBColor - { - userdict begin - /setrgbcolor - { - pop - pop - pop - userdict begin - /setrgbcolor systemdict /setrgbcolor get def - end - } def - end -} bind def -/bcarray where { - pop - bcarray 2 { - /da 4 ps div def - df setfont gsave cs wi - 1 index 0 ne{exch da add exch}if grestore setcharwidth - cs 0 0 smc da 0 smc da da smc 0 da smc c - gray - { gl} - {1 setgray}ifelse - da 2. div dup moveto show - }bind put -} if -% -% Used to snap to device pixels, 1/4th of the pixel in. -/stp { % x y pl x y % Snap To Pixel, pixel (auto stroke adjust) - transform - 0.25 sub round 0.25 add exch - 0.25 sub round 0.25 add exch - itransform -} bind def -/snapmoveto { % x y m - % moveto, auto stroke adjust - stp moveto -} bind def -/snaplineto { % x y l - % lineto, auto stroke adjust - stp lineto -} bind def -%%EndSetup -%%Page: 1 1 -%%BeginPageSetup -initializepage -%%EndPageSetup -gS 0 0 582 767 rC -np 144 4 :M -135 11 :L -133 3 :L -144 4 :L -eofill --1 -1 0 50 1 1 142 4 @b -endp -%%Trailer -end -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v2.gif deleted file mode 100755 index ebc197a3e..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v2.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v2.pdf deleted file mode 100644 index f882103c0..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v2.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v3.eps deleted file mode 100755 index 002fffe58..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v3.eps +++ /dev/null @@ -1,363 +0,0 @@ -%!PS-Adobe-3.0 EPSF-3.0 -%%BoundingBox: 15 633 160 760 -%%Title: (pssc7cq4.7.v2cw \(DR\)) -%%Creator: (ClarisWorks 3.0: LaserWriter 8 8.2) -%%CreationDate: (17:58 Friday, January 3, 1997) -%%For: (Alberding) -%%Pages: 1 -%%DocumentFonts: -%%DocumentNeededFonts: -%%DocumentSuppliedFonts: -%%DocumentData: Clean7Bit -%%PageOrder: Ascend -%%Orientation: Portrait -%%DocumentMedia: Default 612 792 0 () () -%ADO_ImageableArea: 15 6 597 773 -%%EndComments -userdict begin/dscInfo 5 dict dup begin -/Title(pssc7cq4.7.v2cw \(DR\))def -/Creator(ClarisWorks 3.0: LaserWriter 8 8.2)def -/CreationDate(17:58 Friday, January 3, 1997)def -/For(Alberding)def -/Pages 1 def -end def end -/md 108 dict def md begin/currentpacking where {pop /sc_oldpacking currentpacking def true setpacking}if -%%BeginFile: adobe_psp_basic -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/bd{bind def}bind def -/xdf{exch def}bd -/xs{exch store}bd -/ld{load def}bd -/Z{0 def}bd -/T/true -/F/false -/:L/lineto -/lw/setlinewidth -/:M/moveto -/rl/rlineto -/rm/rmoveto -/:C/curveto -/:T/translate -/:K/closepath -/:mf/makefont -/gS/gsave -/gR/grestore -/np/newpath -14{ld}repeat -/$m matrix def -/av 81 def -/por true def -/normland false def -/psb-nosave{}bd -/pse-nosave{}bd -/us Z -/psb{/us save store}bd -/pse{us restore}bd -/level2 -/languagelevel where -{ -pop languagelevel 2 ge -}{ -false -}ifelse -def -/featurecleanup -{ -stopped -cleartomark -countdictstack exch sub dup 0 gt -{ -{end}repeat -}{ -pop -}ifelse -}bd -/noload Z -/startnoload -{ -{/noload save store}if -}bd -/endnoload -{ -{noload restore}if -}bd -level2 startnoload -/setjob -{ -statusdict/jobname 3 -1 roll put -}bd -/setcopies -{ -userdict/#copies 3 -1 roll put -}bd -level2 endnoload level2 not startnoload -/setjob -{ -1 dict begin/JobName xdf currentdict end setuserparams -}bd -/setcopies -{ -1 dict begin/NumCopies xdf currentdict end setpagedevice -}bd -level2 not endnoload -/pm Z -/mT Z -/sD Z -/realshowpage Z -/initializepage -{ -/pm save store mT concat -}bd -/endp -{ -pm restore showpage -}def -/$c/DeviceRGB def -/rectclip where -{ -pop/rC/rectclip ld -}{ -/rC -{ -np 4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -clip np -}bd -}ifelse -/rectfill where -{ -pop/rF/rectfill ld -}{ -/rF -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -fill -gR -}bd -}ifelse -/rectstroke where -{ -pop/rS/rectstroke ld -}{ -/rS -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -stroke -gR -}bd -}ifelse -%%EndFile -%%BeginFile: adobe_psp_colorspace_level1 -%%Copyright: Copyright 1991-1993 Adobe Systems Incorporated. All Rights Reserved. -/G/setgray ld -/:F/setrgbcolor ld -%%EndFile -%%BeginFile: adobe_psp_uniform_graphics -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/@a -{ -np :M 0 rl :L 0 exch rl 0 rl :L fill -}bd -/@b -{ -np :M 0 rl 0 exch rl :L 0 rl 0 exch rl fill -}bd -/arct where -{ -pop -}{ -/arct -{ -arcto pop pop pop pop -}bd -}ifelse -/x1 Z -/x2 Z -/y1 Z -/y2 Z -/rad Z -/@q -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -fill -}bd -/@s -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -:K -stroke -}bd -/@i -{ -np 0 360 arc fill -}bd -/@j -{ -gS -np -:T -scale -0 0 .5 0 360 arc -fill -gR -}bd -/@e -{ -np -0 360 arc -:K -stroke -}bd -/@f -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 0 360 arc -:K -$m setmatrix -stroke -}bd -/@k -{ -gS -np -:T -0 0 :M -0 0 5 2 roll -arc fill -gR -}bd -/@l -{ -gS -np -:T -0 0 :M -scale -0 0 .5 5 -2 roll arc -fill -gR -}bd -/@m -{ -np -arc -stroke -}bd -/@n -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 5 -2 roll arc -$m setmatrix -stroke -}bd -%%EndFile -/currentpacking where {pop sc_oldpacking setpacking}if end -%%EndProlog -%%BeginSetup -md begin -/mT[1 0 0 -1 15 773]def -/sD 16 dict def -/Courier findfont[10 0 0 -10 0 0]:mf setfont -%PostScript Hack by Mike Brors 12/7/90 -/DisableNextSetRGBColor - { - userdict begin - /setrgbcolor - { - pop - pop - pop - userdict begin - /setrgbcolor systemdict /setrgbcolor get def - end - } def - end -} bind def -/bcarray where { - pop - bcarray 2 { - /da 4 ps div def - df setfont gsave cs wi - 1 index 0 ne{exch da add exch}if grestore setcharwidth - cs 0 0 smc da 0 smc da da smc 0 da smc c - gray - { gl} - {1 setgray}ifelse - da 2. div dup moveto show - }bind put -} if -% -% Used to snap to device pixels, 1/4th of the pixel in. -/stp { % x y pl x y % Snap To Pixel, pixel (auto stroke adjust) - transform - 0.25 sub round 0.25 add exch - 0.25 sub round 0.25 add exch - itransform -} bind def -/snapmoveto { % x y m - % moveto, auto stroke adjust - stp moveto -} bind def -/snaplineto { % x y l - % lineto, auto stroke adjust - stp lineto -} bind def -%%EndSetup -%%Page: 1 1 -%%BeginPageSetup -initializepage -%%EndPageSetup -gS 0 0 582 767 rC -np 144 13 :M -139 23 :L -133 16 :L -144 13 :L -eofill --1 -1 0 140 1 1 142 14 @b -endp -%%Trailer -end -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v3.gif deleted file mode 100755 index 4bd62629b..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v3.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v3.pdf deleted file mode 100644 index 3ca942ea0..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v3.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v4.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v4.eps deleted file mode 100755 index 7569cf3e0..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v4.eps +++ /dev/null @@ -1,363 +0,0 @@ -%!PS-Adobe-3.0 EPSF-3.0 -%%BoundingBox: 15 750 160 763 -%%Title: (pssc7cq4.7.v2cw \(DR\)) -%%Creator: (ClarisWorks 3.0: LaserWriter 8 8.2) -%%CreationDate: (17:58 Friday, January 3, 1997) -%%For: (Alberding) -%%Pages: 1 -%%DocumentFonts: -%%DocumentNeededFonts: -%%DocumentSuppliedFonts: -%%DocumentData: Clean7Bit -%%PageOrder: Ascend -%%Orientation: Portrait -%%DocumentMedia: Default 612 792 0 () () -%ADO_ImageableArea: 15 6 597 773 -%%EndComments -userdict begin/dscInfo 5 dict dup begin -/Title(pssc7cq4.7.v2cw \(DR\))def -/Creator(ClarisWorks 3.0: LaserWriter 8 8.2)def -/CreationDate(17:58 Friday, January 3, 1997)def -/For(Alberding)def -/Pages 1 def -end def end -/md 108 dict def md begin/currentpacking where {pop /sc_oldpacking currentpacking def true setpacking}if -%%BeginFile: adobe_psp_basic -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/bd{bind def}bind def -/xdf{exch def}bd -/xs{exch store}bd -/ld{load def}bd -/Z{0 def}bd -/T/true -/F/false -/:L/lineto -/lw/setlinewidth -/:M/moveto -/rl/rlineto -/rm/rmoveto -/:C/curveto -/:T/translate -/:K/closepath -/:mf/makefont -/gS/gsave -/gR/grestore -/np/newpath -14{ld}repeat -/$m matrix def -/av 81 def -/por true def -/normland false def -/psb-nosave{}bd -/pse-nosave{}bd -/us Z -/psb{/us save store}bd -/pse{us restore}bd -/level2 -/languagelevel where -{ -pop languagelevel 2 ge -}{ -false -}ifelse -def -/featurecleanup -{ -stopped -cleartomark -countdictstack exch sub dup 0 gt -{ -{end}repeat -}{ -pop -}ifelse -}bd -/noload Z -/startnoload -{ -{/noload save store}if -}bd -/endnoload -{ -{noload restore}if -}bd -level2 startnoload -/setjob -{ -statusdict/jobname 3 -1 roll put -}bd -/setcopies -{ -userdict/#copies 3 -1 roll put -}bd -level2 endnoload level2 not startnoload -/setjob -{ -1 dict begin/JobName xdf currentdict end setuserparams -}bd -/setcopies -{ -1 dict begin/NumCopies xdf currentdict end setpagedevice -}bd -level2 not endnoload -/pm Z -/mT Z -/sD Z -/realshowpage Z -/initializepage -{ -/pm save store mT concat -}bd -/endp -{ -pm restore showpage -}def -/$c/DeviceRGB def -/rectclip where -{ -pop/rC/rectclip ld -}{ -/rC -{ -np 4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -clip np -}bd -}ifelse -/rectfill where -{ -pop/rF/rectfill ld -}{ -/rF -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -fill -gR -}bd -}ifelse -/rectstroke where -{ -pop/rS/rectstroke ld -}{ -/rS -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -stroke -gR -}bd -}ifelse -%%EndFile -%%BeginFile: adobe_psp_colorspace_level1 -%%Copyright: Copyright 1991-1993 Adobe Systems Incorporated. All Rights Reserved. -/G/setgray ld -/:F/setrgbcolor ld -%%EndFile -%%BeginFile: adobe_psp_uniform_graphics -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/@a -{ -np :M 0 rl :L 0 exch rl 0 rl :L fill -}bd -/@b -{ -np :M 0 rl 0 exch rl :L 0 rl 0 exch rl fill -}bd -/arct where -{ -pop -}{ -/arct -{ -arcto pop pop pop pop -}bd -}ifelse -/x1 Z -/x2 Z -/y1 Z -/y2 Z -/rad Z -/@q -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -fill -}bd -/@s -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -:K -stroke -}bd -/@i -{ -np 0 360 arc fill -}bd -/@j -{ -gS -np -:T -scale -0 0 .5 0 360 arc -fill -gR -}bd -/@e -{ -np -0 360 arc -:K -stroke -}bd -/@f -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 0 360 arc -:K -$m setmatrix -stroke -}bd -/@k -{ -gS -np -:T -0 0 :M -0 0 5 2 roll -arc fill -gR -}bd -/@l -{ -gS -np -:T -0 0 :M -scale -0 0 .5 5 -2 roll arc -fill -gR -}bd -/@m -{ -np -arc -stroke -}bd -/@n -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 5 -2 roll arc -$m setmatrix -stroke -}bd -%%EndFile -/currentpacking where {pop sc_oldpacking setpacking}if end -%%EndProlog -%%BeginSetup -md begin -/mT[1 0 0 -1 15 773]def -/sD 16 dict def -/Courier findfont[10 0 0 -10 0 0]:mf setfont -%PostScript Hack by Mike Brors 12/7/90 -/DisableNextSetRGBColor - { - userdict begin - /setrgbcolor - { - pop - pop - pop - userdict begin - /setrgbcolor systemdict /setrgbcolor get def - end - } def - end -} bind def -/bcarray where { - pop - bcarray 2 { - /da 4 ps div def - df setfont gsave cs wi - 1 index 0 ne{exch da add exch}if grestore setcharwidth - cs 0 0 smc da 0 smc da da smc 0 da smc c - gray - { gl} - {1 setgray}ifelse - da 2. div dup moveto show - }bind put -} if -% -% Used to snap to device pixels, 1/4th of the pixel in. -/stp { % x y pl x y % Snap To Pixel, pixel (auto stroke adjust) - transform - 0.25 sub round 0.25 add exch - 0.25 sub round 0.25 add exch - itransform -} bind def -/snapmoveto { % x y m - % moveto, auto stroke adjust - stp moveto -} bind def -/snaplineto { % x y l - % lineto, auto stroke adjust - stp lineto -} bind def -%%EndSetup -%%Page: 1 1 -%%BeginPageSetup -initializepage -%%EndPageSetup -gS 0 0 582 767 rC -np 144 13 :M -134 18 :L -133 10 :L -144 13 :L -eofill --1 -1 0 23 1 1 142 13 @b -endp -%%Trailer -end -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v4.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v4.gif deleted file mode 100755 index 739a29582..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v4.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v5.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v5.eps deleted file mode 100755 index ff6c9f91f..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v5.eps +++ /dev/null @@ -1,363 +0,0 @@ -%!PS-Adobe-3.0 EPSF-3.0 -%%BoundingBox: 19 615 28 769 -%%Title: (pssc7cq4.7.v2cw \(DR\)) -%%Creator: (ClarisWorks 3.0: LaserWriter 8 8.2) -%%CreationDate: (18:00 Friday, January 3, 1997) -%%For: (Alberding) -%%Pages: 1 -%%DocumentFonts: -%%DocumentNeededFonts: -%%DocumentSuppliedFonts: -%%DocumentData: Clean7Bit -%%PageOrder: Ascend -%%Orientation: Portrait -%%DocumentMedia: Default 612 792 0 () () -%ADO_ImageableArea: 15 6 597 773 -%%EndComments -userdict begin/dscInfo 5 dict dup begin -/Title(pssc7cq4.7.v2cw \(DR\))def -/Creator(ClarisWorks 3.0: LaserWriter 8 8.2)def -/CreationDate(18:00 Friday, January 3, 1997)def -/For(Alberding)def -/Pages 1 def -end def end -/md 108 dict def md begin/currentpacking where {pop /sc_oldpacking currentpacking def true setpacking}if -%%BeginFile: adobe_psp_basic -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/bd{bind def}bind def -/xdf{exch def}bd -/xs{exch store}bd -/ld{load def}bd -/Z{0 def}bd -/T/true -/F/false -/:L/lineto -/lw/setlinewidth -/:M/moveto -/rl/rlineto -/rm/rmoveto -/:C/curveto -/:T/translate -/:K/closepath -/:mf/makefont -/gS/gsave -/gR/grestore -/np/newpath -14{ld}repeat -/$m matrix def -/av 81 def -/por true def -/normland false def -/psb-nosave{}bd -/pse-nosave{}bd -/us Z -/psb{/us save store}bd -/pse{us restore}bd -/level2 -/languagelevel where -{ -pop languagelevel 2 ge -}{ -false -}ifelse -def -/featurecleanup -{ -stopped -cleartomark -countdictstack exch sub dup 0 gt -{ -{end}repeat -}{ -pop -}ifelse -}bd -/noload Z -/startnoload -{ -{/noload save store}if -}bd -/endnoload -{ -{noload restore}if -}bd -level2 startnoload -/setjob -{ -statusdict/jobname 3 -1 roll put -}bd -/setcopies -{ -userdict/#copies 3 -1 roll put -}bd -level2 endnoload level2 not startnoload -/setjob -{ -1 dict begin/JobName xdf currentdict end setuserparams -}bd -/setcopies -{ -1 dict begin/NumCopies xdf currentdict end setpagedevice -}bd -level2 not endnoload -/pm Z -/mT Z -/sD Z -/realshowpage Z -/initializepage -{ -/pm save store mT concat -}bd -/endp -{ -pm restore showpage -}def -/$c/DeviceRGB def -/rectclip where -{ -pop/rC/rectclip ld -}{ -/rC -{ -np 4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -clip np -}bd -}ifelse -/rectfill where -{ -pop/rF/rectfill ld -}{ -/rF -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -fill -gR -}bd -}ifelse -/rectstroke where -{ -pop/rS/rectstroke ld -}{ -/rS -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -stroke -gR -}bd -}ifelse -%%EndFile -%%BeginFile: adobe_psp_colorspace_level1 -%%Copyright: Copyright 1991-1993 Adobe Systems Incorporated. All Rights Reserved. -/G/setgray ld -/:F/setrgbcolor ld -%%EndFile -%%BeginFile: adobe_psp_uniform_graphics -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/@a -{ -np :M 0 rl :L 0 exch rl 0 rl :L fill -}bd -/@b -{ -np :M 0 rl 0 exch rl :L 0 rl 0 exch rl fill -}bd -/arct where -{ -pop -}{ -/arct -{ -arcto pop pop pop pop -}bd -}ifelse -/x1 Z -/x2 Z -/y1 Z -/y2 Z -/rad Z -/@q -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -fill -}bd -/@s -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -:K -stroke -}bd -/@i -{ -np 0 360 arc fill -}bd -/@j -{ -gS -np -:T -scale -0 0 .5 0 360 arc -fill -gR -}bd -/@e -{ -np -0 360 arc -:K -stroke -}bd -/@f -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 0 360 arc -:K -$m setmatrix -stroke -}bd -/@k -{ -gS -np -:T -0 0 :M -0 0 5 2 roll -arc fill -gR -}bd -/@l -{ -gS -np -:T -0 0 :M -scale -0 0 .5 5 -2 roll arc -fill -gR -}bd -/@m -{ -np -arc -stroke -}bd -/@n -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 5 -2 roll arc -$m setmatrix -stroke -}bd -%%EndFile -/currentpacking where {pop sc_oldpacking setpacking}if end -%%EndProlog -%%BeginSetup -md begin -/mT[1 0 0 -1 15 773]def -/sD 16 dict def -/Courier findfont[10 0 0 -10 0 0]:mf setfont -%PostScript Hack by Mike Brors 12/7/90 -/DisableNextSetRGBColor - { - userdict begin - /setrgbcolor - { - pop - pop - pop - userdict begin - /setrgbcolor systemdict /setrgbcolor get def - end - } def - end -} bind def -/bcarray where { - pop - bcarray 2 { - /da 4 ps div def - df setfont gsave cs wi - 1 index 0 ne{exch da add exch}if grestore setcharwidth - cs 0 0 smc da 0 smc da da smc 0 da smc c - gray - { gl} - {1 setgray}ifelse - da 2. div dup moveto show - }bind put -} if -% -% Used to snap to device pixels, 1/4th of the pixel in. -/stp { % x y pl x y % Snap To Pixel, pixel (auto stroke adjust) - transform - 0.25 sub round 0.25 add exch - 0.25 sub round 0.25 add exch - itransform -} bind def -/snapmoveto { % x y m - % moveto, auto stroke adjust - stp moveto -} bind def -/snaplineto { % x y l - % lineto, auto stroke adjust - stp lineto -} bind def -%%EndSetup -%%Page: 1 1 -%%BeginPageSetup -initializepage -%%EndPageSetup -gS 0 0 582 767 rC -np 8 4 :M -12 15 :L -4 15 :L -8 4 :L -eofill --1 -1 9 158 1 1 8 6 @b -endp -%%Trailer -end -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v5.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v5.gif deleted file mode 100755 index 98283f609..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v5.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v5.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v5.pdf deleted file mode 100644 index 285d45301..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob61v5.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob64a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob64a.eps deleted file mode 100755 index 51a69f3ae..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob64a.eps +++ /dev/null @@ -1,479 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: pssc7cq7.9.create -%%Creator: Create -%%CreationDate: Fri Nov 1 11:50:34 1996 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 151 246 450 559 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(^O]KN#$Q5k?:\QnoCP#m+'Sd -% 6KU9/ne.;:700kMt4ec#tLjX]VGl9OFVnZZY@[U%BrF,m(.:!jk]7?0]Ks)#Q(Q]48)pbKG_ -% N'b-a3F!0mPSmKHu0LDL&I*#QVOK8(M>Jjo>aS<*fMkad`>:Y+m\2"8s*+<[EZ+TZ)mT^;ki -% WL -% V$=735kj%]slQkEe0Vo4)mK+8Z -% Y$AB7)W*pu.S/.#^LB,]:"!l<+@Tb,9jrB;l`>Bh>37`=aEB-WMLd$:/0Z5*hA:VIf`..hS& -% ;+dc$kl$h(E?jS-4(WToG-kkO\n^nf-sX'fjIqnDHYqP)/^k?Bk7K(5lbPp);D4!fet'YE4Y -% fmE50eWVk#fEV;n.r$p'2+$n+H@Tnk2@BR#R:(+FTo2JFV)VJ&S5Vc\PN-'tEV)8g0O80n]F -% &"raRF!o*kCTY;+3p2IfSTQ;tH"Jf;+TP4*-Qm.tnY[c'4Fq/OYR&XTOgdLnY?@)N8ZfB$S0 -% EZb=c1pEWKk8<=sd,J!e:=[\1/;rD9`Ig]5lc./%rUTl)UB["JET'2#%WtT6L)$%hOA$OTPZ -% Ei[UJ88iAd`VU]Q6#K>D#gatr(1bf/"@AIlI)K]6F7N"Zm<'V+#F3P@GQ&'CJ,>t4`'u"CN[ -% AEpMYIg9^iW[3<-L\N[S8@e_.$or`"iA>_J`+_QOlH1(FF.[=mGED-"@0bOmN1L$@@-Od#m; -% -+;Fq.,V[WV4!OP#\aDe1A,Kb/dSTgWPWt&>6JFb%2!2L^^XPuf,^8/-;85Au!^0U/&k0S*3 -% dfE/OObOicYT\/iA:osMHqGeq3k>q4HX\qj.\EbRMDk03QB#^YJHQUs-bai4Q*MULj9 -% QE;3Ta.MGY08-a@$(B&-rGE`IQ]i>KQN'S%82=EA>lN-bMa#+4Q$r1l@jId%V`g&0MMi\-`B -% @&3i\h?k=!Q+LDsi4Q5Bt35so"V@6l=rgY;b;lRo>ZGI\%!WW3#x -% EndEmbeddedGraphics N 1017 3f9 E 4c S 1badc R 371403c7 -gsave --34 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -151 246 299 313 rectclip -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 158 254] concat -0 0 1 1 10 SU -[1 0 0 -0.956522 10 274] concat -N -1 nxsetgray -gsave -264 276 0 0 oval fill -grestore -1 L -0 nxsetgray -gsave -264 276 0 0 oval 0.003623 0.003623 S s -grestore -0 0 T -grestore -0 0 2 1 10 SU -[1 0 0 -1 106 178] concat -N -0.606891 nxsetgray -gsave -72 72 0 0 oval fill -grestore -2 L -0 nxsetgray -gsave -72 72 0 0 oval 0.013889 0.013889 S s -grestore -0 0 T -grestore -0 0 1 1 10 SU -142 142 T -N -0.606891 nxsetgray -36 0 0 0 line -0 36 0 arrow -1 L -0 nxsetgray -36 0 0 0 line -0 36 0 arrow -0 0 T -grestore -0 0 1 1 10 SU -142 142 T -N -0.606891 nxsetgray -0 132 0 0 line -90 0 132 arrow -1 L -0 nxsetgray -0 132 0 0 line -90 0 132 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -gsave -/Times-Bold findfont 18 scalefont [1 0 0 -1 0 0] makefont -164 -exch -defineuserobject -164 execuserobject setfont -153 128 T -11 flipV -5 5.5 T --4 4 T -N 0 0 m -1 nxsetgray -0 0 m -(r) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -164 execuserobject setfont -146 210 T -15 flipV -7.5 7.5 T --6.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(R) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -164 execuserobject setfont -135 275 T -15 flipV -6.5 7.5 T --5.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(S) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -164 execuserobject setfont -177 135 T -15 flipV -6.5 7.5 T --5.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(S) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -/Times-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -1201 -exch -defineuserobject -1201 execuserobject setfont -147 270 T -12 flipV -4.5 6 T --3.5 5 T -N 0 0 m -0 nxsetgray -0 0 m -(1) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -1201 execuserobject setfont -188 130 T -12 flipV -4.5 6 T --3.5 5 T -N 0 0 m -0 nxsetgray -0 0 m -(2) show -0 0 T -grestore -grestore -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Times-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob64a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob64a.gif deleted file mode 100755 index 3c52fe324..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob64a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob64a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob64a.pdf deleted file mode 100644 index 930fca8f6..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype08/prob64a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av1.eps deleted file mode 100755 index ef24a836c..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av1.eps +++ /dev/null @@ -1,609 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F1 -%%Creation Date: Sat, Sep 16, 1995 13:53 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 59.75 M -117.50 59.75 L -117.50 151.38 L -244.50 151.38 L -244.50 105.62 L -308.00 105.62 L -308.00 243.00 L -435.00 243.00 L -435.00 197.25 L -498.50 197.25 L -498.50 105.62 L -562.00 105.62 L -562.00 105.62 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av1.gif deleted file mode 100755 index c51d79b7a..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av10.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av10.eps deleted file mode 100755 index 441ceea62..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av10.eps +++ /dev/null @@ -1,609 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F10 -%%Creation Date: Sat, Sep 16, 1995 13:54 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 151.38 M -117.50 151.38 L -117.50 243.00 L -244.50 243.00 L -244.50 105.62 L -308.00 105.62 L -308.00 151.38 L -435.00 151.38 L -435.00 59.75 L -498.50 59.75 L -498.50 197.25 L -562.00 197.25 L -562.00 197.25 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av10.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av10.gif deleted file mode 100755 index fd82580e3..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av10.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av2.eps deleted file mode 100755 index 26c4ee176..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av2.eps +++ /dev/null @@ -1,609 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F2 -%%Creation Date: Sat, Sep 16, 1995 13:53 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 197.25 M -117.50 197.25 L -117.50 59.75 L -244.50 59.75 L -244.50 151.38 L -308.00 151.38 L -308.00 243.00 L -435.00 243.00 L -435.00 59.75 L -498.50 59.75 L -498.50 105.62 L -562.00 105.62 L -562.00 105.62 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av2.gif deleted file mode 100755 index bfdb43925..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av3.eps deleted file mode 100755 index b93ce9f6a..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av3.eps +++ /dev/null @@ -1,609 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F3 -%%Creation Date: Sat, Sep 16, 1995 13:53 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 197.25 M -117.50 197.25 L -117.50 197.25 L -244.50 197.25 L -244.50 105.62 L -308.00 105.62 L -308.00 151.38 L -435.00 151.38 L -435.00 59.75 L -498.50 59.75 L -498.50 243.00 L -562.00 243.00 L -562.00 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av3.gif deleted file mode 100755 index 8b362ef13..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av4.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av4.eps deleted file mode 100755 index db9ee8710..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av4.eps +++ /dev/null @@ -1,609 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F4 -%%Creation Date: Sat, Sep 16, 1995 13:53 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 105.62 M -117.50 105.62 L -117.50 197.12 L -244.50 197.12 L -244.50 151.38 L -308.00 151.38 L -308.00 59.75 L -435.00 59.75 L -435.00 197.12 L -498.50 197.12 L -498.50 151.38 L -562.00 151.38 L -562.00 151.38 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av4.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av4.gif deleted file mode 100755 index f4c7e85b9..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av4.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av5.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av5.eps deleted file mode 100755 index fc8f5aadd..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av5.eps +++ /dev/null @@ -1,609 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F5 -%%Creation Date: Sat, Sep 16, 1995 13:53 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 243.00 M -117.50 243.00 L -117.50 59.75 L -244.50 59.75 L -244.50 151.38 L -308.00 151.38 L -308.00 105.62 L -435.00 105.62 L -435.00 197.25 L -498.50 197.25 L -498.50 151.38 L -562.00 151.38 L -562.00 151.38 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av5.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av5.gif deleted file mode 100755 index c645da41e..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av5.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av6.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av6.eps deleted file mode 100755 index bcc25210d..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av6.eps +++ /dev/null @@ -1,609 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F6 -%%Creation Date: Sat, Sep 16, 1995 13:54 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 105.62 M -117.50 105.62 L -117.50 59.88 L -244.50 59.88 L -244.50 105.62 L -308.00 105.62 L -308.00 151.38 L -435.00 151.38 L -435.00 105.62 L -498.50 105.62 L -498.50 59.88 L -562.00 59.88 L -562.00 59.88 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av6.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av6.gif deleted file mode 100755 index 89ba54b31..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av6.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av7.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av7.eps deleted file mode 100755 index f1f736998..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av7.eps +++ /dev/null @@ -1,609 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F7 -%%Creation Date: Sat, Sep 16, 1995 13:54 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 151.38 M -117.50 151.38 L -117.50 59.75 L -244.50 59.75 L -244.50 151.38 L -308.00 151.38 L -308.00 197.12 L -435.00 197.12 L -435.00 151.38 L -498.50 151.38 L -498.50 59.75 L -562.00 59.75 L -562.00 59.75 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av7.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av7.gif deleted file mode 100755 index 2e1332ddb..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av7.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av8.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av8.eps deleted file mode 100755 index 0c64d91bc..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av8.eps +++ /dev/null @@ -1,609 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F8 -%%Creation Date: Sat, Sep 16, 1995 13:54 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 151.38 M -117.50 151.38 L -117.50 197.25 L -244.50 197.25 L -244.50 151.38 L -308.00 151.38 L -308.00 243.00 L -435.00 243.00 L -435.00 59.75 L -498.50 59.75 L -498.50 105.62 L -562.00 105.62 L -562.00 105.62 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av8.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av8.gif deleted file mode 100755 index 921ed34fe..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av8.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av9.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av9.eps deleted file mode 100755 index 36a7724c4..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av9.eps +++ /dev/null @@ -1,609 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F9 -%%Creation Date: Sat, Sep 16, 1995 13:54 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 197.12 M -117.50 197.12 L -117.50 105.62 L -244.50 105.62 L -244.50 197.12 L -308.00 197.12 L -308.00 151.38 L -435.00 151.38 L -435.00 197.12 L -498.50 197.12 L -498.50 59.75 L -562.00 59.75 L -562.00 59.75 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av9.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av9.gif deleted file mode 100755 index 8db70601d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob01av9.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob02a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob02a.eps deleted file mode 100755 index 8f63bbe47..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob02a.eps +++ /dev/null @@ -1,382 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 - -%%Creator: MiniCad+ 4.0 - -%%Title: HW4P2.eps - -%%CreationDate: 9/9/1994 - -%%Pages: 0 - -%%DocumentFonts: Helvetica - -%%BoundingBox:69 522 468 630 - -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica/Helvetica 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -1449 4131 7699 4444 R -0.87 sg fill -gr -gs -1449.625 4131.625 7699.375 4444.375 R -1.25 slw 0 sg str -gr -gs -1761 3506 2699 4131 R -0.5 sg fill -gr -gs -1761.625 3506.625 2699.375 4131.375 R -1.25 slw 0 sg str -gr -gs -3636 3506 4574 4131 R -0.5 sg fill -gr -gs -3636.625 3506.625 4574.375 4131.375 R -1.25 slw 0 sg str -gr -gs -5512 3506 6449 4131 R -0.5 sg fill -gr -gs -5512.625 3506.625 6449.375 4131.375 R -1.25 slw 0 sg str -gr -gs -2699.5 3818.5 m -3636.5 3818.5 L -35 slw 0 sg str -gr -gs -4574.5 3818.5 m -5512.5 3818.5 L -35 slw 0 sg str -gr -gs -7387 3818 7229 3892 7229 3744 2 P -0 sg fill -gr -gs -6449.5 3818.5 m -7387.5 3818.5 L -35 slw 0 sg str -gr -gs -2065 3055 2395 3332 R -1 sg fill -gr -/_Helvetica ff [208 0 0 -208 0 0] mf sf -2065 3263 m 0 sg (m1) show -gs -3940 3055 4270 3332 R -1 sg fill -gr -3940 3263 m 0 sg (m2) show -gs -5815 3055 6145 3332 R -1 sg fill -gr -5815 3263 m 0 sg (m3) show -gs -3029 3385 3307 3662 R -1 sg fill -gr -3029 3593 m 0 sg (T1) show -gs -4904 3385 5182 3662 R -1 sg fill -gr -4904 3593 m 0 sg (T2) show -gs -7612 3680 7890 3957 R -1 sg fill -gr -7612 3888 m 0 sg (T3) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob02a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob02a.gif deleted file mode 100755 index 5cb0121ea..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob02a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob03a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob03a.eps deleted file mode 100755 index d9a63019e..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob03a.eps +++ /dev/null @@ -1,349 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 - -%%Creator: MiniCad+ 4.0 - -%%Title: hw4p5f.eps - -%%CreationDate: 9/9/1994 - -%%Pages: 0 - -%%DocumentFonts: Times-Roman - -%%BoundingBox:176 470 420 604 - -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -3298 5034 7048 5346 R -0.93 sg fill -gr -gs -3298.625 5034.625 7048.375 5346.375 R -1.25 slw 0 sg str -gr -gs -4235 3784 5486 5034 R -0.25 sg fill -gr -gs -4235.625 3784.625 5486.375 5034.375 R -1.25 slw 0 sg str -gr -gs -5486 4096 6423 5034 R -0.75 sg fill -gr -gs -5486.625 4096.625 6423.375 5034.375 R -1.25 slw 0 sg str -gr -gs -4722 3515 4999 3741 R -1 sg fill -gr -/_Times-Roman ff [208 0 0 -208 0 0] mf sf -4722 3671 m 0 sg (M2) show -gs -5815 3827 6093 4053 R -1 sg fill -gr -5815 3983 m 2.08 slw 0 sg (M1) olshow -gs -4235 4409 4077 4483 4077 4335 2 P -0 sg fill -gr -gs -3298.5 4409.5 m -4235.5 4409.5 L -35 slw 0 sg str -gr -gs -3558 4140 3662 4366 R -1 sg fill -gr -3558 4296 m 2.08 slw 0 sg (F) olshow -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob03a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob03a.gif deleted file mode 100755 index 099fdfd78..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob03a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob04a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob04a.eps deleted file mode 100755 index 3495074f0..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob04a.eps +++ /dev/null @@ -1,1069 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Title: HELI.EPS -%%Creator: DeskScan II - Hewlett-Packard Company -%%CreationDate: Sun Jan 28 5:32:35 1996 -%%BoundingBox: 0 0 139 126 -%%EndComments -%%EndProlog -save -15 dict begin -/xpoints 139 def -/ypoints 126 def -/xpixels 192 def -/ypixels 174 def -/rasterbytes 192 def -/bitspercomponent 8 def -/xunits xpixels xpoints div def -/yunits ypixels ypoints div def -/coords [xunits 0 0 yunits neg 0 ypixels] def -/picstr rasterbytes string def -/readimage { currentfile picstr readhexstring pop } def -xpixels ypixels bitspercomponent coords /readimage load -image -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFDFDFBFBFEFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCF8F5F4FEFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7F4F2F8F5F9FFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCF8EEDFDFEBEFFAFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEF5F4EFF3F6FDFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBF3E1DCDDDDEAF4FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBF4EEF1F5F3FCFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8EBE0CED7DFE8F6FEFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDF4EEEBECF1F8FEFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFEF2DED0CBCCD7E8F4FEFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFCF1E7E8ECF2FBFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFBE4CDC1BFCBD9EAF5F9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBF2E9E5E0ECF9F9FFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFCEFD6BEA1B7C4DAECF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDF5EDE1D7E4F2F6FFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFEFAE4C7A29BA7C7DDEBF6FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9ECE1D4D7E4F3FDFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF1DBBD928DAAC6DDF0F8FEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCF3E5C9C2DCEAF9FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFEF2D0B3838390BDD7ECFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCEACDBDCADBF3FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD -ECCBA2837F90B9CFE7F4FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAE6C4AECEE7F7FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFCB -9E82828DB0CBE3F4FEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEDD3A6AED6F2FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7C79E83 -8392B3CBE5F7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5E4A989BEE1F5FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBDEC18B7E7E90 -BED2E9FBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEDC67F89CBEEFEFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D2A6887C7F8EB8D7 -EDFAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7D78D77AED9F7FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE9C2977C827F92BDD9F2FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE5A57179BFECFEFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9DDB78579767C94BFDBF1FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4C5746D89D2F3FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4D09E7C7676828BC0D9F3FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD982686CA9E6FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEC78E7C7674778BAED9F5FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAB6C6176CAF0FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7C689797772748DABD1F2FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCD079686794D9F9FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFEE6B9887C767276889CCCECFEFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE8976A6174C2F1FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF5D2A7827C747471859CD0F0FDFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9B86D636385E1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFE9CB8E7E767472748598C9F0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD67E686768B9F6FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE7BB857777727172839FD5F5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF59E7268637CD5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFEFCD9E8279747271747FA1D9F6FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF9E0D59B71B8FAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFE9C5887C7676716D6D7FAED6F9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0B98D74D7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FBDDAB90857774726D7482AEDFF6FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFE1A9E4FFFFFFF6E4A16A6374D5FFFFF8FEFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFECE3FFEFD7 -9FA1C1E1EBCE9B797EB3DDFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFDFCFFFBF7FAF6F6F6F4F7F5F4F3F0F1F0EBECEFEEF2EDEFEEEEEFEE -EBECEFEDECEAEAE9E7E7EAECEBECECEBEDECECE9E6E3E2E1E1DEE0DFE1E2E2E4E2E5E2E0DD -E6E4E2E1DCDDDBBD768BC1C7BD857C7168636379CAE7ABC7E8FCFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6A28DAA8B85 -BFF0FFFFFFFFF9E4E4F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBE4CBC8 -C0BEB8AFB3B0A5A19C989894948E8E8989898E898989888588837F82827F82827F7E82857E -7E7E827E827C837E797E7F797E7C7E7C7F7E7C7C7977797C79777779747779767776779095 -95928885828276766D717C7779746C685E5E5C68727977767E94A7C5D1E2EBF2F9FFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7DBE0FFFFFFFFFFFFFFFFF3F6BD827C7985B7 -ECFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3C9C0 -BFB3BFBEBABEBFB9BABEBBB9BAB8B5B9B5B2ABA19F9FA29E979E9798A59B979B97979C928B -85948883897F83887F7E8582827C7C79777E767677767674727472717171716D747271B3F1 -F2F2F4EADAE9C9856C85C5C7BDBDA9765E616C7C897F6D6D9497AAAA9CAEC3C0D1E4F2FDFF -FFFFFFFFFFFFFF -FEFFFFFEFFFFFEFFFFF1E9E7E4E5E9E7E2E5E09FA1BDF8FEE4CFD6BE9F85927F7C7E8898E6 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFDFFFFFDFFFFFFFEFFFEFDFFFFFEFFFEFDFEFCF8F9FAF5F4F8F4F8FBF6F5FAF6F1F3F2 -EBF0F1EBE5ECE6DFE2E2DBD9DBD7D1D2D3D2CBCBC8C0C2C6BFB8BABDA7B0B89FAAAA9B9FEE -FFFFFFFFFFFFFFE6AFD5DDC99289886C5E5E7797B2D0AB7EDDFAF8FCFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFBE8D7C4B29B988E8D857E7C7F778B9E907E7977747472728392D5F8FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFEFBFAFCF5F7 -FFFFFFFFFFF8DCC4856D68605B5B5B5B5B595B5C606CC1ECFEFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF9E5E5D6BA77838E9C9B83777C766D716D6D9FEEFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFF -FFFFFFEDCF956D605E5C5E605E5C5C5B5B5C605C5E6A83F5FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6AFBFEFF3ECD29F9079766C67729CC2E9FEFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFF -FFF3CB85726C6A6160686361606160605C606168677183E5FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAF2F3EAA585746A686363636872979CA6CF -F9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFC -D990766C6A6863636061676061616060615C61636C6D8ED6FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBE7C8A78B7E6C68686A686767686A7979898D95 -A2DBF3FDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE8B0 -7772686763605E61635E5E615E5E605E5C605C60676A7EC4FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD9AB887F767974716D6D716A6A686A6C6C72798288 -8892A2B8C7D6DEE8F1F4F8FCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8C98272 -6C68615E5E63676060675E606063605C60605E5E676377AAFBFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFE9B28B7E7674767272716D68716D6C6D6D686A6C727174 -7C777E85858B909B9FB3C0BDC6C9E5F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC2766D68 -63615E636368615E6063605E635E5C5E605C605E676172A1F2FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF9CB90797972716D6D686D686A6C6C6D687468686D6C68746D -6C72727976767979828389989098A9B9D5FBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB3726761 -60606A6767636060616060615C5C5E5C60615E6067636A90DEFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFDA9E837976746C71716C6A71716A6C6C6A6D676C6D6C726D6A71 -676A6D6A6D7474717277747C7F7C7F8D92B9F4FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBD716767 -68686A61615E605E60615E5E605C5E5E5C635E5C675E6C85D7FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFE5BD857774726D6C6C676A6A686D6A686C6A6C6A6A6A6A6A6A716868 -71676C67686C6A6C7168726D71767174888DC6FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD1746872 -71676D6A5C5E605E60635B5E615E5C605C605E5E6767687CBFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFAA827E71746D6C6868636A68676D676A716A6868686C686A6C6A6C68 -6C68686C6C6A72686C6D67716D68746C7C839CE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD97F7468 -6A6867636063636167676168636061606761606160676876A9F8FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFA77E726D716C686A686A676C6A6A71636C6C6C6C686A6C6C6C6A6A71 -6368746A6A7267686A6A68716A6872717C7E8BB5EBF7FEFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEE48B7E76 -767E777479716D6C687479797972727174767472767676859FF1FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFEA579726A6A6C676C636767686867686C676A6C6A716C6D6D6A6D6A6A -6C636D6D6A71686A6C686D686A6C6A72B7828597CAE1ECF7FEFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4E6FFFFFFFFF9EDE4D7C7BB92828B -9783948D777C716360607E7C837E777E7C797FBFC3C7CDCBC9E8FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFA576716D6C686A6A63686A6C676C6A6A72636D68686D6C686C676D67 -636A6D6D687172676D716C716D6C6A7697797E8DB0E9F8FEFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEE5C7AAC8D0C8BDA9A19C9089827E7F77 -8283828B7971766A686D6D74717676767C7690CAC7CDD0D0DCEDFCFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFAB7C717776686C6A676767686A6C6A686D6D6A716A67716A6C6A6A6D -68716A6A6D6D6A6A6D6C7476726C72716D7674829FE7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFECF1FFFFFFFFFFFFFCF2F3DEDED2C6B9BEA194978E838D85858D8374716D72 -71747C79776D6D686A676A6C67686D6C74767E8E8E899494B3C8FEFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFA97674686D68636D6A676C68686A676D676C6D6C6D686D6D68716C6C -6C6C716D6A716D6D6D72747CC49B72746A6D79778DC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF5C29B9EDDE7E5D7CBC2BDAEA7A1A1A797929092857F9083797F7E7676726C686C -6D6A6768636060676C746C6C6A5B5C67717682A5BFB8D595B8CEE7FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFDA5766D6C6A6D6C6A636A67686761636867686C6D6A6D6C6A6C6C676C -6A686D716C6D6D686C74777FCAA28879766C72827F9FEFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FCF8F1E0C4A2A7A5A1A99EA19B92978E928D8BA1897E85837F7E74766C6D776A68615E5B5C -5C5B5B5B5B5B595E637272716C5959637672B2DED9D5F3C7A1DBDBE6FEFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFAB7C6C716D686872686D6A72686871636A6C6D72726D6D6C6D6A6C68 -6A6D6C6C72726D767F85897F98828B7E777F72778389CDFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCF7ECE2D6CAC1 -BEAEA9A5989B948E928B888B8D837F8B7E79888E7F71767E72777671716D6D6A67615B5B59 -595958595B5B595E6C76727E6C635E6A7277C4E5C27785BD8BCAE5E5E6FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFAA7471686D717171686C6D6C716D68686C6C6D716D6A716C6D726161 -676A746D778B726D8B83857485747479747E8379778998EDFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCF8F3F1DDD2CAC2BBB0A99B979B90 -9092958E8B827F7E83727976717E766D777274887C7171726C676A68676A676A6767595B59 -5B5B59595959595968747C71747167746C74C7E4CA77776C71A6F3F5E1F4FFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFAB766D6C676C726C6C6A68686D6A6A6C6C6D726A6A6D6A6C6C6C6176 -7674797E72777E717C77726D777160686C6A729E797E94CBFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAF4E9E4DAD0C2BFAAA59C9B979792928590887F85 -7F77797F7E74797671726D6D6D6C716868716A82726A716A6A67636761636A63676A595958 -5758595858585859676D6C71726D6A6D6D6CA2E2D1A674717685D9F2EEE9FFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFB3796D6C6C6A6D716D6C686D6D726C6A716A717E77748585837E7F82 -7C837174766A6C716A716A606C636168605E676A7E798995ECFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFEF2ECE3DBD0C2BDAAA29B9898908D92887F8D82838B7C777E727172 -6D6A6D726A7472746C686A67716C686D68676D746D68796D676C676168676761675E595958 -5759585B5959595B6767636D6C686C636A7772B9D5AA7288A98290C2C1D2F5FFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFB579766D686A716D6D6C6C686D726D72717195D2D6CBCBDCDAAB7777 -726D6D686A6A61616163635E61636161605E6067717C7E92CAFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFBF3EAE3D2CFC6B3A5AFA198949288828583838B7C7F7C767476727272726C716A61 -686D6A6D686A6A686C636C6A636D67636A636868676768726A63676361686161675E585959 -585958585960796361636A636868676C676A6D747F7C7492A79E92D4EEE3DBDBE5EFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFAF79746C6A6C766C716C6D6D686D71767276B5DED2C5C5D0E59F726A -686C6068635C61675E60605E60615E5C605E606D777C7C899EEFFFFFFFFFFFFFFFFDF7EBE4 -DCCCC8BAAEA2979E8E83928588897F7F7C76797272766C74716D6D71726A6D77676C6C6A6C -6A74676C6C636C6A686C726A676C7774686A67636861686A636067635E61675E6368595859 -58595959596C9576616360636167676A68606A717CAAB7C4EDE5B3B7FEFEE3D5D0CDC7E1FF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFB77C716D6C6C726C716D716C6C6C7271766A9ECDA9A69892BF796363 -60606060605C5E615E5C5E5B5C5E5C5E5E5C61607C888994A5D6FAF5F4ECDDDBCEBDB2AB97 -90948B898883837F7F797979726D726A72766C686C67686C6C6A6D6C61686D6A6168616372 -6867716761716A6A636874676C797E897E776A6363606C715C61605C636363606163595858 -57585958585C605B5C6163636061635E6163606874A7ABB2C4CABE88CFD1C9C3C4C6CEC3C4 -FDFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFBD7E7472716C6D6C686D716D716D716D6D6C7CA99B766C72716C6363 -5E605C5E61605E605C5B5E5C5B605E5C5B5E5E617C8D94A6B5BFC7BFAFABA99E9798898985 -7C827E76767172746D726D6C6C716C676C6D6A6A6A6371686A6C6868616863676361636160 -6867636A61676A6768686168729C9B8E8B8971616063636A6761616061616161635E5E5958 -5759585C5E5B595B5B60675E61635E636160616063829B9F9BA9AE857CABA994A5B7A6C0C5 -B9FAFFFFFFFFFF -FFFFFFFFFFFFFFFFFFB979746D6A71716A7268726C6A6C6C76726C716D7167606367615E5E -5E5C5B5C5C5C5C5E5C5C5C595C5C5E5C5C5E606877928D92989BAA959490858B8377827272 -6C6C716D6A6A67677167676A6A6C676A68636C6163686768636A606C726868686167636761 -606A67636C6368676363636877AEAA8D8B97746363606168605E68636060616167675B5B58 -57595EA1836059595961605C60605B5E6061635E616A94A2A7B79E88799FBE97929C94AFBD -C1D5FFFFFFFFFF -FFFFFFFFFFFFFFFFFFB77972746D6C766C6D6C6A6D6C6A72746D6D6D67635C5E636A605E5C -5C5C5B5C5E5C5C5C5C5B5E5B5C5C5B605E636C71727E947F828D8B8383827E72796D677168 -676A63676A67676A6A616367676863616163635E6763616D61617176748374686163616367 -68616763616A61616368676371AEBEA1959E6C6767606363606768616A676C6868635E5959 -585967D6905E5C5B59605C6063605E605B605E5E606788A2BDA98D83776D9B9094977F8E98 -BEC7F1FFFFFFFF -FFFFFFFFFFFFFFFFFFBD797472726D7171636C716C6D777777777C766C68686C776C5C5E5E -5C605E5E605C5B605E5E5E5C5C5E5E5E636A6C687C7C838574727E7C767276726C72636168 -676761606761635C5E6863636763615C6063676163676760676A769092949279685E616160 -63615E636063635E68635E636A83AA9F8E716A7168726C676C686C6A6D716A777768605959 -5B5C68BA85635C605E5E61605E605C5E5E605C5E605E6892927C7F7C6A6772686A7E6A6A77 -7FC1EEFFF7FFFF -FFFFFFFFFFFFFFFFFFC277726D6C716C6D747172767785858982839283827F716A675E6063 -61686061635C6067606161616367676D6A6A6D7277837782776D72716A6A6D6C6A686D6C67 -6861616768716A6767616363636363615E616161605E616D616D90A7BBB79C946767616160 -606A6360636163636860676360686A6A6D6D6A6877767C7F79767471717C766871675B6160 -5E63686A6060605C5E5E605E5C635C60605E60605C6060616761635E61635E606167776368 -6D8BE7FFFFFFFF -FFFFFFFFFFFFFFFFFFC97972766A727774778277778B92949E9FA9B8AF9F7E6D6167636368 -676767676C6C6A6A67686C6A6C686D6C7168686D717182746C7476716D686A6D6C676C8D67 -5E63636C797C716D615C68636061635C5C636061675E5E6A61639FC6C4C3BA856367686360 -6360676160616D6C6A6D716C79797982727E7C74907F79837F887E7C7F7471685E605C6060 -5C5E676A636060616060605E605B5C5E5B5C5E605E605E5C60615E60605E606061686A6A6A -7482CAFFFFFFFF -FFFFFFFFFFFFFFFFFFC77E76717274797F7C7F8D829CAEBBBFC7C1BAB8B797896D6C6A6D6D -6D6D6A717C777782776D7C6D6A6A6A676A6D6868717172886A6D837F71686772676A676061 -61616A7F95959282676361616360676360635C61605E6061636774C8CECCB76D6360616363 -676A686A6772766D7477727F8589858D94A794838D9E988585837779796D6761605C616160 -605E606363605B605E5E5C5C595E5B595C605B5E5B5B5C5C5B5C5C5E5B5C5E5B6768606871 -7683CEFFFFFFFF -FFFFFFFFFFFFFFFFFFC97772716D7F7E7E8D85828390A9C4C9BFB3C3C1BBBFA2776D71716C -6D7476828885857C7F797777686A72686A6A716C6C6C6C7674687474636A6D616363636161 -63617797A9BBB9956D6A636163605E616063615C63606167606768769E976A6D6C6868726D -727C6D7776727E7C8289887F7F838285A5A57F8B8D829B887E76766C676C6A60675C5C6360 -606060615C605E5C615C5E5B59605B5B5C5B5E605B5B5B5B5B5B5B5B5C5B5B595C636A6D74 -6D9FF4FFFFFFFF -FFFFFFFFFFFFFFFFFFC87E79747679777974727C8BB2BEC8A77989B3ABAA9C8D79746D7277 -72798588837C7C7474826D71726A6C6A6C6D7482716C727C6C726D6C686A63686861616361 -616174B0C3C4C6BA796763615E635E5C68615E676861616768636D7972837C7E77827F767F -888383858289858D8885887F857E7F7E7C797E767E76747C766A6A67616867615C5B5B5C61 -5C5C5E595B5C5C60605C595E5C5B595C595C5B5C5B5B5B595B59595B5B5B5C5B5C6D6D6C6A -90E2FFFFFFFFFF -FFFFFFFFFFFFFFFFFFC8837479746C717F798B979EC3BFAE796A6D8583776D727271767274 -777C7F7E7979747C7272726C6871686C718388828B776A716A6C7172716163616163636D63 -636A6CA6CACEC9AA6A6D616767636A67686C6768766D6C726C727E827F8D907F8B897E8285 -89898D88828B7E76887E7F7F827C7C8882717471636C776D6C686867636760675E585C5C5C -5C605C5C5E5B5B5E5B595C5B595B5B595B5959585959595B595B5B5B5B5E5C5E5E6867729E -EAFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFCE7C726D6C7682829B908E8B887C7E77726A71726D6A6C6C6A767671 -7E857C7E76727274776D6D746871717189A79C8EA17F6C6C686C76726A6C6A67636A63776A -60606A72A1BDA1716C7268686D6D6877747279746A797C7C7C8385838D8E8B8B8988897F7C -8388747E766D77746C727472767476727274676C676A76716A6860636163686359595B5B5B -595C595C59595B595B595C5B5958595B5B595C585B58585B59595B5B5B5C5C5C61617CCEFA -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFD07F7274746D6C717E7676797472746D7272716A6A727167726D7279 -7F76777676717C6D71746D6C6A6D6C72A9C0A79BAA946D636A6A719471716A6A6863676161 -6C6863716C71796D7777747474797E7E837C7F7F838B7F838E7F8E837E8B82857E7F887474 -7676777472746D766C6872686C6C6D6C686C67636868676A636161615C63605C5B5858595B -5B5C5C5B595958585958595B5959595B5B5B5959595958595B5B5B595C605E6772A1E9FFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFD5896D716C676A6C747679727471717172746A6D716D766A6C747272 -7471717272747271716A6D6C67716D729BCEBD9EB2956D68676A6A6C716A7474676D6D6D72 -717774797F7C83827C7C7F887F82857F7E857C7785797E8D857E8877768276717C7C6C7976 -6C6A716863726D61676C63676768676C67616A635E63636361615C5B5C615B5B58575B5959 -5B5B585B5958585758585859595959595B595959595959595B5E5C5E6D5C6794E3FEFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFB576716C686871717174766D71726D767471726D6D6D6D71726D766D -6C79717671716A716D6D6A67686C6D6874BBB79C957C6D71686C746D687272727976767C83 -7C76898B8585857C7C897F7E8D82778383797777727779767979717476716D716C6D6C6D68 -636A636867616763616060606361616060606063605E5C5C5E5C5C59595B5B5B5959595958 -59595858595858585858585B5959585B595C5B5B5B5C5B5E5E60686D83AACCEFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFD07E71676868686A6D6D6A6C6C6A6D71716C71726D72776C76747172 -726D71766D6C716A6A716A6A6C6C6D6C72777C8D797C7C77727C767F766D76797E858B8B89 -897C7489767785727679777F79797E767777797C747E7674766A726C7174676D6A6A6A636A -6763686361686067675B5E5C605E5C5E5C5C595C5C595B5B5B5B5C59595959595859595859 -595958585B5858585959595C595B5B5B585959595C5C5E68728BC2DEBDECFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFCC89716A686863616868686A68686A676D6C6C716D74726D747172 -716D72716A6D686A6D6C71727474777C72767F82898E8B8D858D827F907E828E838D8B9082 -777C76727674747471727774726C6D6D74766A74746C6C71686A716D676C6C61686761676A -636360605E5E635B615C5B5C605B595959595B5B5B595B595B5B5B58585858595858595959 -5959585B59595B595B59595C5B615C5C5C5C5E606C83A7CDE7F9FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFEDD0B2896D6A61636763686A68686A6771716D6D71716C6A716A -72717274727172767472797C76907F7785927E82857F889288859582837F7C7F828D8D7682 -827177796D76726C6C77766C726A63726A686C6D6D68716A636A686A686163635E61616167 -5C5C5C5B5B5C5B5B5B5B595959595959585858595958595B5B5B595B595B595958595B5859 -5B5B595B595B5B5959595B5B5B5C6063777FB0CAE3F5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0D1837167676761636361686A6D6C6872746A72747279 -7672797E7C797F79797F7988887F8B888294747C7E7E8B85827C858383797F777988857E7C -76726C6A6A6C6A61676A616A6C6860676D67716867726D636A616867636760615E5B5E5C5C -5E5E5C595B5B595C5B585B59595B5C5B5B5B59585959595B595C5B59595959585B5B595B5B -5959595B5B5B5E5B5C5C5C617698BAD5E5F9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFECC07E71676363616767636C6A6C777C777777767E -7C727C7E777E797C7F7F837E7F827C987C8879727C8592947E8288778377767C727C79746D -72766C686A676A6363636A6360635E6067635E67636060615E605C5C5B5E615C5B595B5B5C -5B5B5C5B5B595B5B595859595B5B5B5959585B595B595B5B595C59595B59595B595B5B5B5B -5959595B5C5E60779C987EABE4FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3A6716A6A67676867777C8588838277827979 -8279777F7E7E83828277887F76827F837E837772777979777771797177766A6C717676726C -6D6A6A6C6868686760676A67606063605C60605C5C5B5C5E5B5C595B5C5C5B5B5B5B5E5B5B -5E5B5B5C595B5B5B595B5C59595B595C5B59595B59595B59595B58595C595B5C5959605B5E -605E5E5C5B6771D6F8F9F2FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAD58B7267676068767E837F7F7688837C89 -8282797F827C7F827E7F777E79717F7971776D6D7472726D6C6D6C72766D6D676C716A7167 -6861636163675E5C5C5E61635B5B5B5B5E5B5C5B5B595B5E5B5C5B605C5B5B5B595C5C5B5B -5B5B5B59595C595C5C637C5C595B5C5B595B585B5B5859595B5959585B5B585B5C5E686A68 -6761605C5E6783CAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEA986C67636167676A717C767C777477 -77767E797E88857C7276797176716D7F6D6A726D6D6C6D6D636C6C6D766C6C686767616760 -60605E5E5E5C5B5E5B5B5B5B5B5C58595B5B5B5B5C5B595B595B5B5C5C5C5E5C5C5E5C5C5C -595B5B595959595B5C6385605B595B5B595B5B5C5E5B5C5C5C5C5E5C6068676D88A9DAE3AF -90907F77779EE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE47F746C67676160676767686C686C -7C77767776747171726C746C6A726C776C6A686D6D67636A6D676761675E61615E60605C61 -5C5C605C5C5C5E61595C585C595B59595C5B5B5E5C5C5B59595C5B5C5C5B5C59605E5E5B5E -5B595C5B595C5B5B5C6068635E595C5B595C5E5C605E636C748292B3B9D0D6E4F5FFFFFFFF -FCFDE8F4F6FCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF68D727477776C6C68676160676167 -676D6C6D726A6C6D6D6D71716C6C6C6D6A68676D6C67616160615E5E5E5E5E5C615E617167 -606363635E5E5C595B5B5B5B5959595C5B595B5C5C5C5B5B5B5E5C5C5C5B595C5C5E5C6368 -5E5C5C5B5B5C5C5B5C605E6063635E60717C8292B0C5CBE5EAF3FBFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD37F71726C7177766D6867676167 -61636A6A686C676A687171676C71636C6C63676A6163636160605E605E60616360636D7968 -5E5E5C5E5E5C5C5C595B5B5B595C595B5C5E5B60605E5E5B5E5E5B5C5C5E5E5E5E5E606161 -605E615E5E6167616C605E63616C76D2DDEAF5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD18D6D716D686A677172776C61 -63615E6363605E6161676A676363606168616161606163636A6367605E635C5C5C6063636A -5C5C5C5C5C5C5B5E5C5B5B5B595B5C5B5E5C5E61635E5C5B5C5E5C5B5C5C5E6060605E6163 -63686D747C8B776763606163616895FBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEC9772746D6C6C6761636A63 -61606061635E5E5E5E606060606360606A676763606160615E5C5E5C5B5E5E5C5E61605E60 -5B5B5B5C5C5E5C5E5E5B5B5B595B5B5B605C5C5C5C5B5E5C5E615E5E635E616D6A717F89A7 -BED0D0E3EFEBA56A61616061676A8EF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7D6A1A27E6D6C68686863 -635E6061616160615E615E60606060605E606D5E5E5E5C5C605C5B5E5C5C605E5E615C5E60 -5C5B5C5C5E5B5C5E5C5C5E5B5C5E5C5B5E5E5C61615E6060676D72798D9BBDCADFE4EEF9FF -FFFFFFFFFFFFCE796D68636A636774DBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCF8E1BF8B72686C67 -615E5E60616160635E605B5E5E5C6061605E5E5C605C5E5C605E5C60605E5C5C5B5E5C5E60 -5C5C5C5B5E59605E5E5C6161606161616A686A7F82828E7171AEE9F7FCFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF9C0796D6768636371ABFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4DAB0886D -6A67616763615E605E605E5E606060606160605E5E5C5E605B5C615E5C5C5E5C5C615E615E -60605C60605C5C5E5E5E61676A859F9EC4D7E7E2F2FBD99585CBFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFBDB796361616168729BF2FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3D2 -A6776C716A6A6160616161616160606060615E61605E605E5E5E60605E61605E5E605C5E5E -5E61606167686C728892A2C7CBE8FEFFFFFFFFFFFFFFF8B2D5FEFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFE5B3776361616A7695FAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FCE79474676768676367676163606368636367605E60616060615C5E6060615E5E61606863 -6D748EAFC1D1DCE3F1FCFFFFFFFBFFFFFFFFFFFFFFFFFFCEB9FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFC5686767686D7CD6FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFDA797168616C716C726A6763686363676761675C60616168636167686C7F7F8E7F6C6C76 -C6F3F6FFFFFFFFFFFFFFFFFFFEECF5FFFFFFFFFFFFFFFFEBB8FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFC56A6761676C74BEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC3796C716A6A72A1E5D2906767686A717E746C747C7477839EB3C1DAD7EAF9FDDB85B0C4 -EBFFFFFFFFFFFFFFFFFFFFFFFEE8DEF8FFFFFFFFFFFFFFEFBDFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFE2726861636A6DA2FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFBB7C726A6D7471B5FFFFCB727C8BC2DCF0E7E8DAECEFE9F3FEFFFFFFFFFFFFFFFFE9F1FF -FFFFFFFFFFFFFFFFFFFFFFFFFFF5DBEFFFFFFFFFFFFFFFE5CDFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFCA76C68636371C6FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC77C7C7C767774CAFFFFC989E4F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFEFDBECFFFFFFFFFFFFFFEEE9FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF3A9766D72B3F5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF5907476727295EEF3BF907FDAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF8E5F4FFFFFFFFFFFFFFFAD7FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFCE0D4E4FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFEEA98895B3E8F9A574777974C4FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFEFF9FFFFFFFFFFFFFFFDB9FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF5F4FFFFD67679767C7685F0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFBBBFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFBB74716A71797CDAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFE2A5F6FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFC9796C6D766D7EDAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC4B9D7FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF1856C6D6C7294F5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEC3F5CEFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFDC8B727795DAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCBECFFDAEBFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF4CED4F4FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDD9FFFFF7BFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD6FFFFFFFFC8EDFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFECE2FFFFFFFFE4DFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDBFFFFFFFFFFFBD5FBFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBF8FFFFFFFFFFFFDBE5FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2FFFFFFFFFFFFFFECEDFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFF9E2ECFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFE1F2FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2FFFFFFFFFFFFFFFFFFFFECFBEDFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFF8EAF6FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFDDFFECFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFECFCFFFFFFFFFFFFFFFFFFFFFFFFF4FDF6FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE8FFFFFFFFFFFFFFFFFFFFFFFFFFFFF5FFFBFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFEAFAFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDFFF8FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF9EBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5FFFFF1FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFDAFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFECFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF0E3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFEDFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFD7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4FFFFECFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF3E9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFF9FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFBDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE5FFFFEFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFDEF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFEFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF2DBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2FFFFEF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFCFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2FFFFFF -F9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFEEEBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFF -E9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFF -FBFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFDAF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFF -FFE7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF0E5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF5FDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFDAFAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFE4FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE0E4FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF9CAFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFE5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFDDDDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFE8FBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF2C1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFE5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFD6E5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFEBFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFE8C2FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFEE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF7B7E5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFDBC5FEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F4B2F3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFE2FCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -CFC9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFBFFFFFFFFF6DDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1 -B7F9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFDCFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCA -DBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF3FFFFFFFFF6E7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE8BD -FBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFEEFFFFFFFFFFDEFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1E4 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCF2FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF7F2FFFFFFFFF1E2FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDCCAFF -FFFFFFFFFFFFFFFFFFFFF9DEDAE9ECDDE8EEDAD5D6D5C4B3F8FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFECFFFFFFFFFFD6FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8C4F4FF -FFFFFFFFFFFFFFF5EAE4AB8282B3C690BDC7CE8983837FA6D9FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFE5FFFFFFFFFFECE8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFE2FFFF -FFFFFFFFFFFFE592949077777C9EC797B37EC4A2767E7FBDCAF3FFFFFFFFFFFFFFFFFFFFFF -FFFFFFEFEEFFFFFFFFFFD7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEAFDFFFF -FFF8FEFFE0CA9B7977796C71768DC4839E82AFA16D6D74C2E9D2FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFDDFFFFFFFFFFEBF2FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAC8DBEFFF -FFFFFFEE8D777274766D6A6A6D7FC58EB7C1D1AE676C6DC1F7C4F6FFFFFFFFFFFFFFFFFFFF -FFFFFFFECEF0FAFAF6F8EBC6F4F3F2F3F1ECE9ECDFEBEDF1EFF3EFEBE8ECD0ABC1FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4D49E8BB8F3 -FFE8BFF19477776D6A6A616A6A7EC692BF94B2B0686C6A92C5979FC8CACCC9C7CBCBC2B8B3 -B7AB9C958588978D85838D7C92837E7F827E8282797C8D987C7E7E7C7C7E7C83C1FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD9858982A1DF -E9BA9BDD926A7174686863636C77BF8DCA89B39567676A6A6776747774797F827F79747679 -897E77766D747C727C6D6D6D727676767774747974777277797688797C7E7483C1FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE6AF7C82889088 -7C7172767E716A6C676763636C72B077B5C7B26D63616863607477769297899795958B6C7E -726C6867636868686863606763616763636363636763676A7671839476716A76C9FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAC1836D7468686A -6867686061616D6C675E686A686874636A7E6C676161616360636D719B9B83927E7774676D -615B5C5B5C5B595C595C595B5C595B5C5B595B5B5C5C5C59616A687472686C7CD7FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4C37E6A63616163 -6063615E605E606868676167676A6868716D63685E5B67605B60676D6C6763636360606161 -5B5B5B5C595B5B59595B595C5B5B5B5B5B595B595B5B5B595B5E605E60636894EFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBBF6D6A67635E5E -605E5E5B5B5B5C5C616D6C615C5E606361615C5C5E595B5B5B5C5B5B5B5E5C5C5C5B5C5B5B -595B5B5B59595B57595859595B5B5C5C595B5B5B595B5B5B5C5B5E605E63B3F0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4DFDDBF976C68615E6060 -5E5C5E5C5C5E5C5C5E676C635C5B5C5C5C5E5C5E5E5C595C5B5B595E5C5B5B5E5B5C5C595B -5959585B5B59595B5C5858585B5B595C5C5C5C5B5B5C5B5B5C5C5B60606AD6FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD7B9887F777168635E605C5C -5E5E60605C5C5C5B5C63635C5C5C5C5E61605B5E5E5B5C5B5B5959595959595959595B5959 -5B5B5C5C595C5C5E595959595B59595B5C595B59595B5B5B5B5E5E60606DCBFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6B0A185726C6D676161605E63 -5C5C605C5C635E5C5C5C605E595C5B5C5C5E5B60605B5B595B5B5B595B5B5B5B60595B5B59 -595E5B5B5B5B5B5B5E59585859585B5B5B5C615C5B5C605B5E5C616176ABEAFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEA988726A6A6361605E5E6761 -5C60615E5C60635E5E5E5E5E60636060675E60605E5C5B595C5C5B585B5C5E60605C605B5C -5C5C5B61686A615C5B6059595958585C5C5C675E5E5E5B6195BACACCD9FAFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBF796D71716D727E615E5C5E -6C77717E6C5C63615E5C5B5C5E5B5E5C5E605E5E5C5C5B5B5B5959595B5B97D4D59B5E5B5B -5C59616D728883615C5E5B5B5B5B585C5C5C605E60685C61BDF9FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5E2DBDBD2BFCBAA6A635C68 -8B978DB77E675C635C5E5C5C5C5B5E5C5E6060615E5E605E5E595B5B5B5E9EF6EB7C5C5B59 -5B5C6A6874637671635B59595E5B595C5B5C595C5E6361639EFCFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAD2D5726360606D -7C746C8B8E7C615E5C5C60605C606361616067636360676A675C5C5B5B6067B2A55E5E5C5B -5B606C6A675C636D6A5C5C5C5B5B5B5E5C5E5B5C5E636367AAFEFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBF6A635E6379 -7F6361728B855E5E636C7C9B9EA7CDD6DAD29FC6D3BDC6D092606C9EA1AEBFD78D5E5E5B59 -5B5E676161676867675C5B5B605C5B5C5C5C5C5B676A676CB3FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9B6860606174 -717172776A6D606376CEEDFBFFFFFFFFFFFFE5B2B8B3B7A79B9BD4F9FBFFFFFEB0635C5E5C -5B5E63636160606D67605B5B5B595B605E61606061686771D6FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC946A6360606C -74726D7971676163A5FFFFFFFFFFFFFFFFFFFFFAF3F2F8FBFCFBFFFFFFFFFFFDC76361605C -5C5B5E67676C716A615C5C5C5B5C5B5C5C636360636367B0FEFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9E6A68616367 -6A7274746A676177D1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE26C605E5B -615B5B5C616867605C6C5E5C5C6A63615C5C5E616171BAEFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBD6C68676160 -6867686363676CB2F9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAF675E60 -615E5C5B5C5C60679BDF986060606163605E6888A9DCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDF746763615E -61616167616AA5EDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEE9C6861 -606060606C889CCCF1FFE79F685E61616171A9E6FBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC971676361 -6163636C97CEF6FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0BB7F -676A6C77C3EFFCFFFFFFFFF7D09E8889A6D3F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAC4746767 -67687CC4F6FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -DBD3E0F4FFFFFFFFFFFFFFFFFFF9F9FAFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE4C4A5 -A1C1E2FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF -end -restore -%%Trailer diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob04a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob04a.gif deleted file mode 100755 index 99824c60a..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob04a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob05b.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob05b.eps deleted file mode 100755 index 5ef096cc4..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob05b.eps +++ /dev/null @@ -1,487 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 - -%%Creator: MiniCad+ 4.0 - -%%Title: hw4p19f.eps - -%%CreationDate: 9/11/1994 - -%%Pages: 0 - -%%DocumentFonts: Symbol - -%%BoundingBox:168 464 417 677 - -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Symbol Symbol -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Symbol/Symbol 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -7001.625 5442.625 m -6880.625 5442.625 L -1.25 slw 0 sg str -gr -gs -6827.625 5442.625 m -6707.625 5442.625 L -1.25 slw 0 sg str -gr -gs -6654.625 5442.625 m -6533.625 5442.625 L -1.25 slw 0 sg str -gr -gs -6480.625 5442.625 m -6360.625 5442.625 L -1.25 slw 0 sg str -gr -gs -6307.625 5442.625 m -6186.625 5442.625 L -1.25 slw 0 sg str -gr -gs -6133.625 5442.625 m -6012.625 5442.625 L -1.25 slw 0 sg str -gr -gs -5959.625 5442.625 m -5839.625 5442.625 L -1.25 slw 0 sg str -gr -gs -5786.625 5442.625 m -5665.625 5442.625 L -1.25 slw 0 sg str -gr -gs -5612.625 5442.625 m -5492.625 5442.625 L -1.25 slw 0 sg str -gr -gs -5439.625 5442.625 m -5318.625 5442.625 L -1.25 slw 0 sg str -gr -gs -5265.625 5442.625 m -5144.625 5442.625 L -1.25 slw 0 sg str -gr -gs -5091.625 5442.625 m -4971.625 5442.625 L -1.25 slw 0 sg str -gr -gs -4918.625 5442.625 m -4797.625 5442.625 L -1.25 slw 0 sg str -gr -gs -4744.625 5442.625 m -4624.625 5442.625 L -1.25 slw 0 sg str -gr -gs -4571.625 5442.625 m -4450.625 5442.625 L -1.25 slw 0 sg str -gr -gs -4397.625 5442.625 m -4276.625 5442.625 L -1.25 slw 0 sg str -gr -gs -4223.625 5442.625 m -4187.625 5442.625 L -1.25 slw 0 sg str -gr -gs -5993 5435 5994 5392 5997 5348 6002 5305 6009 5262 6018 5220 6029 5178 6042 5136 -6056 5096 6073 5056 6091 5016 6112 4978 6134 4941 6157 4904 6183 4869 6192 4857 -15 P -1.25 slw 0 sg str -gr -gs -6175 5059 6280 5354 R -1 sg fill -gr -/_Symbol ff [208 0 0 -208 0 0] mf sf -6175 5284 m 0 sg (q) show -gs -5310 2596 6267 3399 5738 3058 5310 2596 3 P closepath -0.5 sg fill -gr -gs -5310 2596 6267 3399 5738 3058 5310 2596 3 P closepath -1.25 slw 0.5 sg str -gr -gs -3170 2229 7001 5442 4985 3955 3170 2229 3 P closepath -0 sg fill -gr -gs -3170 2229 7001 5442 4985 3955 3170 2229 3 P closepath -1.25 slw 0 sg str -gr -gs -4866 3854 5889 2878 5105 4055 4866 3854 3 P closepath -0 sg fill -gr -gs -4866 3854 5889 2878 5105 4055 4866 3854 3 P closepath -1.25 slw 0 sg str -gr -gs -4873 3404 5498 4029 OV -1 sg fill -gr -gs -4873.625 3404.625 5498.375 4029.375 OV -1.25 slw 0 sg str -gr -gs -5398 3875 5632 4110 OV -1 sg fill -gr -gs -5398.625 3875.625 5632.375 4110.375 OV -1.25 slw 0 sg str -gr -gs -5437 3914 5593 4070 OV -0 sg fill -gr -gs -5437.625 3914.625 5593.375 4070.375 OV -1.25 slw 0 sg str -gr -gs -4740 3322 4974 3557 OV -1 sg fill -gr -gs -4740.625 3322.625 4974.375 3557.375 OV -1.25 slw 0 sg str -gr -gs -4779 3362 4935 3518 OV -0 sg fill -gr -gs -4779.625 3362.625 4935.375 3518.375 OV -1.25 slw 0 sg str -gr -gs -5286.25 3596.25 m -5186.25 3716.25 L -52.5 slw 0 sg str -gr -gs -5008 3757 5164 3913 OV -0 sg fill -gr -gs -5008.625 3757.625 5164.375 3913.375 OV -1.25 slw 0 sg str -gr -gs -5107 3445 5466 3747 5395 3892 4976 3540 5107 3445 4 P closepath -0.87 sg fill -gr -gs -5107 3445 5466 3747 5395 3892 4976 3540 5107 3445 4 P closepath -1.25 slw 0 sg str -gr -gs -5286.625 3596.625 m -5186.625 3716.625 L -1.25 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob05b.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob05b.gif deleted file mode 100755 index 340ada531..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob05b.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob06.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob06.eps deleted file mode 100755 index 645f64dcd..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob06.eps +++ /dev/null @@ -1,1951 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Title: CARRIER.EPS -%%Creator: DeskScan II - Hewlett-Packard Company -%%CreationDate: Sun Jan 28 5:34:20 1996 -%%BoundingBox: 0 0 236 155 -%%EndComments -%%EndProlog -save -15 dict begin -/xpoints 236 def -/ypoints 155 def -/xpixels 327 def -/ypixels 214 def -/rasterbytes 327 def -/bitspercomponent 8 def -/xunits xpixels xpoints div def -/yunits ypixels ypoints div def -/coords [xunits 0 0 yunits neg 0 ypixels] def -/picstr rasterbytes string def -/readimage { currentfile picstr readhexstring pop } def -xpixels ypixels bitspercomponent coords /readimage load -image -F5F4FCF9FFFEF5F2FAFAFCFCFEFAF4F8FAFAFCFAFEF5F4F9F9F9FAF4F8FFF8FDF7FAFFF6F5 -FCFAF7F0F9F5F0F4FAF4EFF6F7F0EAE7E9F8F5F4F6F6E5E1DDDADDECF1E7ECEDF1F9FBFEFB -F8F9F7EEEEEBECEDE5E7EBEAEBE7E1E2E1DAE5E8E9E4E7E9EBE9E0E1E7EAEEEFF1EFEDEEE9 -E5E4EEE9E9E5E6E8EEF5EFEFECE9F0F2EDE8EBEBF0F0F1F1EDEFE9DDF2F0E6EEECEBE8E9E1 -DEE2E5E5E6EBE7EEEBE2E3EAE8EEEEE8E6EEE8DEE5E4E2DEECE4E2E8E7D5DEEBE9E7DCE3E2 -DFDCCDD1E9DFE3E7E9E2E8EBE4E0DDDEE2E0D0D6D6D9DADCE1E4E7DBD6DBDCD6DBDAD6DADB -CDCCD7D2D0D2D2DAE7E1D5D0D9CED6DCE4DBDDDDD9D9D9D6D4D5D5D2D6D2CBC9C7CCCED5D7 -D1CEC9CBCBCECED4CFD4C9C6CAC5C5C8C7BDBAC6C5C7C6B9C5C8C9C4D0C9C2CDC8BBC3C6C2 -D5CBBFC7D1C2CCD0C3C9CBC2C2C8B3C5C5BAC3C3C0C4BDC0BFAFBDB3BFA6B3 -F1FDFEFFFFFFFDFFFAFBFFFFFEEFFAF9FDFFFFFDFFFFFBF8FBFEFBF8F5F0F8F8F7F9FCFFF9 -F3FCFFF9F6F5FEFDF6F8FAF8F8EEF0EFECEDF5F6FBF0F3F7F6F5F7FBF7FAF4F4F7FBFAFCFB -F5F6FDF3ECF4F5E7ECF8F3ECF2E6E1E9F1E9EEF7F1EEF0E9EEE2E4E5E4F1F8F4F0F5E4EFEF -E4E1E3E7E6E4EEF5F2EEF0EEE9EAE3E0E4EBE8E2E4E9E9E8EFEBE9F5E8D4D9E8E5DEE5EFE9 -E2EEE6E7EEF1E9EAECE4E9E5E2E5E3E4EBE0D6DBD9DEE4DDD5E0EBEDE7E6E1E5EEF2E5DEE2 -DEE1EBDEDAE0E7E8E2E0DFE2E5E4DDDAE4DAD6E8E2DBE4E1DED4D1D6D6DDE7D9D6DADAD1CE -D2C8C2CFD4CACDD0D1D2D6D1CEC5CFD5D6CECBC6CBC9C2AEB5BABFC6C9BFC2D5D6D0DADBCE -CEDED3D3D0CBD2D4CBC8CACFCDC6CACED5D2C7C4C5D2CFD3CACFC5C5CAD3CACAC9C7C9CDCD -CEC4BDBEBFC3C8CACCC4C4CBD0C9C2CAC9CCC5CAC7C4CAC6BFC5BEBFB2C1BB -FFFFFFFFFDFEFCF8F5FBFBFBFCFDFAFEFFFAFCFCF9FBFFFFF9FCFAFAF8F6F7F7F9FEF1F4F5 -F5F7FBFAF6F8FEF4E9F4F0F1F4F6EFF3FAF0EBEDF5F6E9EBEBF2F3E8E6F0F4F7F3EBE8ECEC -F8F8F6F4EDE9F3F8F6F4F6F7F8F2E9E5E9F3EEEFF4F0EBEBE4E3E8EEF3EBEEEEECE5EAEFEA -ECEBE7EAE5EBE9E7E8DFE5E8EBE4E8EAE6EEEEEAE4EBF3E6EBEBEBE7E2E2D9D9E4DDE4EBE8 -E7E8E6E3E2E7EBE7E5E1E7E1E1EAE4E2E9E0DDE3E9DBEFE7E1E7E1EFECE9F3E5E4E4E2E8ED -E7E9E2E1DADFD9E1E6EBDBE0DADCE1DFE1EEF3E9E4EFE4E5EBE5DFE4E5DDD4D5D2D9E5DDDA -DBDED6DADFDED5D6D7D0D9C9BFC5C9CAD1C2CBD7CECCCDCDD0DBDCD3D2D1D9DADBD5D1D4CA -C6C9CCCEC4D0DAD0C9D6D6C7C2CAC7C5C4CDC2BEC5CAD4CDC2BFD1C5C4CECDC7C6CAC5BFBD -BFC1C2C5C1C5C7C1CBC6CECCC0BDBDC2C0BFBFC4C5B9B2B8C3BBBBB0BFBDBF -F9F3F7FFFAFBFFFDF8FAF4F4F9FCFCF7F9F8F4F4F3F5FFFFFFFCFBFFFFFCFFEEF1FBF4F6F5 -F8F7F2FCFBF7FAF8FBF7F8F5F3F1F3F8F5FAF9F4F0F8EEECF5F8F7F9F5F2EBF4F8ECF5F5F2 -F2F2E8E9E5E8F1E7E7E8F2F6F1E8E2E8EBEFEAE5E2DADEDEE5E7E5DEDDEAE8E6E7DFE6F3EE -EBECF0ECEDF6EDEDF4EFEAEAF5EBE6EBEBE4E8F1ECE2DCE1E8E1E1E3DEE1E7E4E7EAE7E1E2 -DEE4E9E4E6DDE8E2E6E8EEE1E1EBEBEDEBEDE7E0E2E9DFE3EDE9DCECF3E7E2E4DCD4DEE3DA -D5E1DBDCE7E4DBE2E8E1E4E3DFD6DAE1CFDCDEE6DCDEDAD9DAD9D7D4D7DACFC7CCDDD5D0DE -E2DEDDD9D6CCCAD0CBCEC8BFCFDAD0C7C7CECBD6DDD6D1D7CDD0DDD0D0D0D2CAC8D4D2CCD0 -CED5D5D2C7C9C4C7D0C2C0C0C1C2C7C4C1C1C4C2BFC7C8CAC2C9CBC8CBC7C4C7C4C2C2C1BE -BFC4C4C3C5D2CBC7C5C0BFC1BDBDBDB5C1B8B2BDC3BEB9BEBBB7BEBAB5BFBF -F6F4F8FDFEFFFCFFF9FAF7FBFCF9F2EFEFF2F8F6F5FCFEFFFCFBF8FAFDFAE8EBF1EFF1FCF9 -FAF9F8F4F6F9FAF4F5F6F8F5F1EFF3F5F3F3FBFCEEF6EFEEEDE9EEECF1F1E9EDF3F3F2F9FC -F4F4F8F1EDF0EDDEEBF5F1EBECE9E9E3E4DEE8E5DEE0E6E5DCDCE3E0E0E9EBEEF0E9DEE6DE -E4E2E5E8E9E7E1E9DBE1E9EEEDE4E7E4E9F1EFE6DFE5DEE3E4D9D7DEE9E2E4F1ECEEF0F0E1 -DFDFE5E5E2E6E1DEDCDEDBE2DCDCE1E3DCDFE7D5C8D0D0DADEE9E7DFE1D9D6D0D9D5DADAD4 -CCC7D3CED4D0D1D4CED2DAD3D2E0D2D2D4DBD3D2D1CED2D3D2D0D9DACECEC4BDC3CCCECCD6 -D3D6D7D2CDCCD1CFD4CBD2D6D6D0CED3D4DAD1CBC8CACAD1D7D5D9CFD0C8D3D3D2D5D2CBC9 -CAD5D4CAC4C4C0BFBBCCBACBDDD0D5D3D0D4D6D0D6D4CCD1C7CECCCACBC6C4C6C4CCCDCECE -CBC8C0C4CEC5CABFBDC0BFBEC3B9AFCBC4CECAC2C6CAC6BDB7BEB2C2B5C5B2 -F4FFFAFBFCF3F5F9FAFEF9FCF9FBFCF4F9FEFFFEFEFAF9FFF8F8F9F2F1F2F4F6F4FBFAEFF4 -F4F3FAF8F5EEF3F0F0F4EFF1F1EBE4E3EBE8E6E9EEE6EAEAE9EBECF3EFEEEAF3EAECEEEFEB -F2F5EDF0F4F0EFEDEEECE7E5E9E8EBE9E4F1E9E5EBE3E2E1E7F2EEECF5E7EEECE4E6E9E8E9 -EBF0EBE4EBE9E6EBE7DCDAE9EEE8EBEDECE1E4EBE6E5E8EBDBE8EBE3EAE6E9ECECEEEFF3F4 -E5DAE3E5EEEFF1E4DEE4E8ECE8E9E8D7DEE4E3E7E4E4D9DEE2DEDEDEDBDAE8E3DCD9D6D7DB -D4DBDED7D9D2D2D0D7D3D3DCE5DEE2E1D7E5E4E1D6E1DBD9DDD2CFE4DFD7DED5D6E0E2DCD5 -DBDDE3DFDADDD5D7E4D1D7DBD2CCD0CBCBCAD0D5D6D4C7CBD2CFD5CECED0DAD4D5D3D0D0D0 -DED4CACECFC8CACECBCFD7D6C9CCD0C5CBCAC7CCD0C7CAC6C4C7C7C2C9C7BBAABFC2BEBDC4 -BFAFA2AAAAB7B5BDBAB9BAB0B3B7AAAFBDBDB7C2C1BFBEB3BFB8B5B9BBBDB2 -FBF3ECF8F2EAF4F5F2F4FAFCFFFCFFFAFFFFFAF6F6F5FAFAF8EEF6FEF6F6F6F8FBF9F9FAF4 -F8F2F3F2F4F5EEEBF1F2ECF5EDEEF6EDF2EFF0FBF8F9F4E8EEF8F3EFE5E6ECEAEBE9EEECEB -E9F3E9E4EBE8E5EAE8EAE9F0ECECEBE7F2E494A7CBD1C2CAC8E5EDEBEBF2ECE7E2EEEBE9EE -E9E7ECE6E4F2EEEBEBDADEE3E0E1E2E1E5EFF1E9E7E2D9E0E2E4E9EAE2E4E1D6D5D7D4D7DB -DAD6D9E1E4E4E8E0E0DED9DBDEE0E8E3DBDBE4DDD6DCCCCAD7D5D5D6E1E2DDDDD7D0D4DDD9 -E4DAE4E2D9DEE2DBD2DFE1D5D7D7D3D6D0D4D0D2D0CFCCCDCED0D0D1D5D4D1D3CCD2CDCECA -D3D2D5DAD5CAD0CBCCCFD7D0C5CCCDBFC7CBC7CDD5C7BDD0CDC8D6CACED6D7D5D2CFC7C7CE -CABEC0C5C1C5C0C2C4B5BDB2B5B9B8BEC9C7CACEBFBEC4CBC8CBC9C2C0CAC7C0BEC4C0BFC1 -BDCBCBC2BDC3C1C8C9B9BFBFC0BBBDBBC4C1C3BEC1B9BAB8B7B3B5B7B297A2 -FFFFECE8F3F5F7FCFFFFFFFFF8F6F5FFFAF6FAFAF3F4FFFCF9FFFBF9F6FFF8F5FBFEEEF6F8 -F9F6F8F6F9FAEFF1F6F3F6F4F8FDF6F6FAF4F4EFF8F2EBF7F5EEF9F8F4F2F5F1EAEEECF1F2 -EAE7EEE8E0DFE5E5EDEDF1EEECEBE4E5F9C194A5A19092ABAFC8EAE9EBE4E4E4E7E3E2DDE8 -E4E4EAE7E8E9E8EEE7E3ECE7EBE6E9ECE6E4E6E2E7E8E5E1E9E9E1DDE2E1DCE3D9DDE6E5E1 -E8ECEBE1E7E1DEE2D6D0DBD7DCE5EBE7E8E4DDE3E5DADBE6E2E2EFE9E3E4EAE5E3E5DEDBD9 -D6DDDFDBE7DEE2E8E5ECE7D5CFDDE7E1D9D4CCD7DDDAD6DADDDAD4D5D0D7DFDDCDD2CFCBCB -C6C4D2D4CED1D0D0D3DDCCD3CEBFC0D5CFD6DBDBD0DEDBD2D5E3E1D4DEDBCBC7C2C1C2CACA -CBCBC5CBCAC9CAC7C8C7D2D2D7D9CBC4C1C2D0D5CDD2DBCCCCD2C9CECFC7C2C7BDCBCBC5D1 -D1C8D3D9CABFC7C5C0C2C7C1C8C3C4CBC4BFCBC4B9C2B8BBBDBFB9BFC4B8BA -FFFDF4FAF3F7F4FCF6F9FFF5F1F2F2F1F8FBF5EEF0E9F1F4F1F3F2F0ECDEE7E1E0F4EFE5E6 -E4DBEEF5EEE9EDE8EEEFEFF7EBF5F3F1ECEDECEBF0EEE9EFEDEFF0F2F1E7F4F1EFEDEBF3EE -EFF7F3EEF1E6E9ECF3F3EFECEDD7DDF4E0BAA1A6988297A790CBDAE1E5DFE2E6DDE1E7E4E3 -E7E8E6EAE9DDEEEDDFE1E0E0E1E0E9E4E6E4E2E9EDE4EAE6D5DAEAF1E7EBEDE4E4E3E8EBE9 -E9E7E5E5ECE6E3DEDBDCE4EEE4E2F1ECE5EEE2DEE5EFE7E2E7E3E5DEDBD7DDDBE4E1DBDDD7 -DADFD4D5D9DFE7DAE8E8D2CFDACFDFDED0D2DAE0D9DFDAD5D7DBD6D2D9D6DDDADDE0E2E4DB -D9DAD7D6D0D4DCCFCACFCBCACEC8CBD2D7CFD2D6D7D7D6D6D5CFD4D2D7D2C9C9C9C6CED2CB -D2D2CCD7DCD0C5C8BFCCD9DBD2CFCDC4CED0C4CCCCD4CFD2CAC5C4C8C4B7B9C4CCC2C1C7CC -C7C7D0C2B7C4C7C0C4B9B3C4BEC2CAC2C4C5BBC7BEBBBDB7BDBFC5C5BEB2BA -FFFFF5FFFFFEF7F8FAFAF9F9F7F3FAFBFAF3F4F1EDEDF5EFF7FEF4EFEBEEEFEEF4F2F2F5F2 -EFF6F9F2EEEBF6F3F1FBF2F7EFF3F5F8FBF2E9F2EBEFF4F1EEF5F9F5F7F7F0F2F2EDF3F1EA -E8EDE8EAE6EBEBD6E4E2ECE4D298DBE4C19E8B9889898D8DB7DBECEDE8EBE8E4EAE9E5E3E7 -DED9DEDFDCEAEFE9E2EAE1E6E4E4F2E7E6E9E1E5E8DADBD0D5E9EBE4E3E5EBEEEAE3D3EEE6 -E6E5EEE4E7EADBCDD2C4C7D9DACED4E4E4DEDDDDDBD3D5D9CFDEDCD6D9DDDCDBE2DEDEE6DA -D5D5DADDDDE3DAD3DBD5D2CED0CECED0DDDED6DED6D7DDD2CFC0C7C2C8D6D2D5E3DDDFE3DE -D5D7DAD9D5D5D5DBD9D1D9D0C7C6CAD6D6D2CBD4D4CECECFC4BDCEC5CCD2CFD5D7CDC7CED1 -C7AFB5BBBFB9C4CCCBC1C1CBCDCDBFBFC1C1BFC2C1C2C4BFBBBFB9A2B5C1CCCACEBEBBC1C3 -C2CBC7AEB5C5BBAFBAB5BFBDBDBABFC2C1C6BFC1C4BFBBB7B2B8B8BFC2C1BE -FAFEFCFCFBF8F9F9FDFAF5F6EEEEEFF3F9F3FCF7F6F3F8FFFCFAFCEDE7ECEFF3F6F9F8F5F5 -FAF9EAE5EBEAEFF4F9F9FCF7E8F6F6F9FCF4ECEFF1EEF5FCF4E8F0F3F1F8F4F1E9F3EBDDE9 -EAE9EEECE9EEECECF2E7EFEFBE7CCEC48D8D85727E9494A2E2EAE7E1DDDEE0E2E1DEE2E0E5 -E4ECEBE8E9E7DAE7EBE2D7DFDEE1E7E7DDDFE4E1DDDBDDE2DDE1D7DFE0E1D7DDDDD5CEDBDE -DCDADEDDDDE0DFDCD6E4E4DEDAE0E1E1E0E4ECE2EDE8E5ECE6E2DADBD7DEE1ECDAE7E3CEDC -DCCECED5DBD2D6E6DAD6E5D9D6D7DCDADADDE1D7D6D0D6DED5DBDEDDE4D2D1D6DBDADADFE4 -D9D9DECACAD7D3DAD6D5CCC1D1D4DCDFDCDED9CED4DED9DDCACACFC7CED1CCC3BBBDC2C6C4 -C2C5C5C8D5D9DACBC6C3C6CDCBCCC4CECBC4CEC7CBD3D2C2CDC1C5D9D4C5C5CBB8B0B7BAB3 -B2BBC0C3C8C5BDC5CBC8C5CACBBDB5C0BFBEC2BEBAC2BDC3C4B7A7BDBEC0B2 -E9F1FAF2F3F6FAFEFAF6FFF7F6F9F6F6F9FFFFFFFFF9FDF7EFECEBF0ECDBE9F2F9EEE9EAFA -FFF1F2EBECEDE9ECEEF1EEF1F5F3F1F2E8E8E6EBE6EEF1EEEEE9EEF1EFECEEEDE7E6EBDAE5 -EEF1F4ECE7F3E9E9F2DED6EEBF79908E8B887C747F9489C7E4E3D7DDE9E1EDF1EBE4E7E1E8 -E7E9EEEFE8E0E9E9DDE6E1DDECE8E4E7E8DDDADBDAD3D3DBCDCDD6D6D2D3CECDD2D5CFC7CB -CBCFD5E7F1EEE9E2DBE4E2EBE8E5DED7DEE1D7DCDEE0E1DEE4E2E1DBE5DFE5E3E5E7DEEBDF -D7E6E3D6DBDDDFD7E2E4E1E6EAE2D9E4DAE1DFDED6D2DEDEDCE5E5D5D0DBD9D7D4D4D7DDDE -D0CBD0D4D5D0D0CEDBD7CDC9D2CED0D2D5D7CFCCDACFCDCFD5D3C4C4C3BFBAABA7AAC0C4C8 -D7CDC4C2CDC5BFC2B8BDC4C4C8CCCBD0C6C7CDC9C5C7CFCACBC6C2C6CCC6BDC2BDB9BABDBB -AEB7A6AFBBB9B9B3BAB2B2C5CBBFCBCBCBC7C4C2C7C2C3BFC5B3AABFB8C0B8 -F5FDF6F7F2F2F4FCF6F4F5EEF9FAF7F9F8FFFEF9F4F4EEE8E8F0FAF8F9F8FBF8F5F5F2F9FE -F8F9F5F1F2F6F4F6F9FBFAF9F9F9F3EFEEE8E8ECE9E8E5E8E6E8EBE5EAEEF0ECEEECD99BA1 -E1E5E9E2DAD5D7E1E0E9E3ECB78283887F76727C8282B2B0E0E6EBE9E9E0DCE2E4E7E9E7EE -ECC9D0ECEBDEE1E9E9E9EDE5E7EFEBE6E7E6E2E1E8E5ECE4DBDADAE3DDDAE5E1E0D9D9D9E0 -E1E4E2DDE1E4EBE4DAE5DEDBDED6D9DAD6DCDEE9DAD2D2D1CDD3DFD6DAE2E3DDE7ECE4E2E8 -E5E2E1DBD9D3E7D7D2DAE4DEE6E2DDDAD3D7DBDDE7E7E1DBDEDED5DEDEE0E2D7CBDAD3C7C6 -D2CBC2DBDDD5D7D7CBC7D0D9DBE2DDDBD5D3DAD7CDC8C2C7CABFB2C7CAC3C4C8CAD3DDD1D0 -CAD7D5CCD0CCC6C2C8C8C2C9CAC3BDC7C6CACACECEC3CDC9CBC7C5C2BFC5CAC6D2D3CAD0CF -BDCCC1C1D1D0CFC4D5BAB9CAC4C8CFC4BFC6CAC8CCCBC8C9C4BDBDC0C1BFBE -FCFCFFFAF1F6FFF9FCFBF4F3F8F1EAF6FFFFEDF5FAF9FFFFFDFDFAF9FFFFFFFCF9F2F4F8F2 -F1EFEAECE8EBF8F9EEF5FAFEF5F4EFF0EBE8DDE5E8EAEBE6E7E8E4E8E9EAF1EFE5E7D79785 -92CEE8E8E9EDF1F1F3EFD2EBCA7C88767172798B9077B5CEEAE9EEE2DADCCADDE7EAE7DABF -C5C8DBEAEFEBE8E8F2E7D6DDE5DADEE9E9E8E3E1E0E4E8EAE4E4ECDECED2CBC8D0CDD2D7E1 -D6D2D5DBD5D6E3DEE1EFECE1E8EAE6D7E1ECE4E2E2DFD1DAE1D5D0D0E1E8E9E5D9DEEAE7E3 -EEE1DDDDE1EAEFEBEBDEDAD2E1EAE5D3E1ECE3DCD5D4CED1C3C4D5D2D0D4CECFDEDACCD6DC -DCE5EAD7CCD7CECFDBD0D4D9D2D3D3D5D3CAD5CDD2D2CCD0CED0D1CAC2D5CBC7D3CAC5CACA -C6C5D2C1BEC9CDD3D0C2C7C5C4C7C4D2CBC4C4C7CCC9C7C5CBC8C2C6C2B5BBBFB8BAAEABB8 -A1ABC3C9C8C8CBD3C8B8B5BBC3CAC6CAD0C7BFB2B7BDBDB5B7C1BFB0C1C2C2 -FCF4F3FAF9EBE4ECF1F5FEF6F3EEEFF9F6F1E8E1E9E7E7ECEBE8E5EBEAE4E4ECF2F6F3FAF8 -FAFFFAF3F3F4F1F5EDF3F2F8F6F2F8F2F1EDEDEEDEDBD7E6ECE3E6E6E8EEF0E8EBEEECCE90 -898DC3DFE0E8E5DEEAEBCAE59576767F7C8E958E92A7C7D6D7E7E8E6E8F2EBF2EFE5D9C39C -CDE4E9DFD7D3E1D4D0D3DAD9D5DFDDD5D6DBDDDAE4DBD7DEE0DCDEE1DDD3DAE1D2DDE7DADB -DBDAD7DDE6E4DADCDAD6D7CDE2E4DDD3D9E1E1D0DADDD6DBCEDBDBDBDDE3DCDAE0E3E4E6E2 -E1D4D6C5CCD7DEDCDDD4CED5E2DCDBE5E4DDD9D0DBE1D9DCD0E4E9D4D1D9DBDEE2E2D9DAD2 -CCD7D4CFCBCECEDBD1D0CECDD7CBCEDDD0D4E2D9DAD6D2CED6D0C3CBD0CED0D2CDD1CEC6CA -CEC9C7C0C7CCC5BFC6C0C4CAB8BFAFB8B3B3BFC1C4C7C1BFBFC6ABB3BFB0BDC5C2C0C5C5C7 -C4CDC3BDBFB7B8ABA9B7BFC7C7BEC3C3B9AFA1A1A29EA79CAEC3BBBFB7BFBA -EFF5F6F6F5FCF6F7F8F2F3F5F5F6F5F9F0EEF1F4EEF1F4F3EFF4F9EAECF5F9F1FAF8F1ECF4 -FCF8F4EFEFF1F4F0F1F8E9E2EBE8DDDDDDE1E3E3F1E7E7E5E9E3E4EFF6F2F4F0F1F8ECE7B5 -838E859ED6E4E2DBDAEDF5B37C7971838B83909FA6A1BDD4DCE3D5DCD0C1B2AA988D9CD0D7 -D9DEDBDEEAE3D7D6D5E3E3EBE5E0DCDBE3E7E3E7EEE8EEE9E7EBE7EBE1E1DED9E2E5E7EBEB -E0E4E5DCD7E2E4DCD4E0DAD7E0E5E2DDE0E4D9D9DDD6DDD7DFE4DAD2D7DCDDDDDAD6D4D0CE -CBCECBCBD2D3E4DBD5D2CED5D2E4ECDED3D2D5D0D7DAD6D4E0E5D7E0DED6D7DDDEE3E4E1DB -DED9D9DADCDBDBDEE1E4DFD5D2DDDCD9D9DAD6D1CBC0CBD2D9D2C8D5D7CED2D5D9D9D1D7D2 -D2CFCFCCD1CEC8B8C1C8CBBFC2C4C1CACDCEC9D5DED6DAD4D2CEC8C1C4CADAD5CCCBCAC2BD -B7C5C2BDBFBFC3CBC8D0CFCEC8BFBDC4C7C3BFC1C2C4CDCAC5C3C2C7C0B9BE -F4F6FCFFFCFBFBF8F5FFFBFDFAF6F5F8ECE4D6E0E7E1EAF3F1EEEAEDECE9EDE7E9E4D9E2E9 -EFEDDAE2E9D7D7E1DBD5D3E2E2E7ECEBEAF3EFF1F8F2EBECF2DDD9E2EDEAE8F3F2F1E8EDDC -9489898295CCEBF4FEFFDA8B83726D6771827F83887C898D8E8E82857F8B8588B2CEDDF1E0 -DEDCE8E2DCD7E2D7DCD7DEE6E3DDD6DBDDDDE2E3EFE8E4E2E2D6DBE2D6DBD6D2E3E6DEDBE8 -E4E6EBE9ECE3DFE5E8EFF0EFEDE8E8E8DEE9E4E1EAF3E2D6E6E5DAE9E8DCE2F8ECE3EBF1E4 -DDE5DCE4EBE5DBDBE2DEEAE9EEE9DEDBDDDAE3DEDAD0D4D0D9E7D9D3D3DCD6DADDDACBC7C2 -BFC2CACAC5C6C5CBCED2D1D2CAC7C9C5C2C4BFBDCBD5DAD2CECCD2D0C7D2D7CED5D6CCD2D5 -CAC9D1D5C9CAC2AEA9A7A2B8C8BFCBC7BFCBCBCABEC2C4C4CBCCC1C5D2C1C7C4BFC3C5BDC0 -BFC2BFB5A9B3B2C1BEC0C4C2C4C4BFBFB3B2BDB8BFC4C0C0B0B7BDBBB9BDAF -F9FFFFFFF9F6F1FAFAF6FEFFF4F4F4F1F5F5F4ECF3F5FAF4F6F5F2ECF2F5EFF0F3F5FAFBF9 -F3F1F8EFECF0E9E8E7E0DCE5F2EDE9E6E7E9F1F7E9E1D9E5EEDEE2E4E8F5F0EFF1E9E2E1E5 -CB7E88827F8BD2F9FAF1949FBB6C6768606C76747C837E7E88887F888982A9CEDCE7DFD3CE -D9D9DCDAD3DAE7E8E5E2E1D5BDC0C9C9D2D6DBDBDBE1D9DEECDEE1E2DACEDDECE5DFE7D9D7 -E9EFE7E1ECE0D3DBE2DEE3E2DEDEDDE4DDDBE2EAE1E2F1EDDAD3E4E2DBE9E9EEEDE7DDE4EB -E3D9E2E4DEDBE2E2D7DADEDAE1E6DDE2E1E2D9DBE3DED2DADCD6DDD9E2DECEC7C4C0C4C9CB -C9CDD0C4C4CACCD6CABBB2CBD6D2CBCECACAD2CBD0D7CDC4CAD7CED4DACED1D6CAC9C7CCC6 -BDBAC0BEBDBBBBBDB5BDBFBAC8C1BEBDC4C4CCC9BFC4C7CBC7CBCDC7C6BAB9BABEAEB3C2C7 -C9B7CBCFCAC2C2BEC2CBC4C7D0C7C7C7BFC4C4C0C1BFBDB8B5BFB0BEBFBD9E -F4F4FBF6F2F8F9F8FAFFFFFCF9FBFBFEFFF9FFFFF2F3FEFEFAFEFCFBFBFFFFFCFEF8F2EAF6 -FAF3F6EADFDEDCEDF0F0F2E8E9EFE7EBF1F4F5F2ECEBEAEBE6EDE9EDF6F0F4ECECECEBE0DE -E8C17E85837F8EC8C6ABAFDABF74776C686D76747E7C827F888E7F7F89AAD9E8DEE1E2DDDD -E0D5D3DBE2E2E5E1E0D7E0DBE2E5E3E8F1DFE5D9DDDBDDF3EAE3EAE2E3E9E2DDE4E8DDE6F6 -EDEFEAE7E5E6E4E7E6DCDEE5E1E3E4DFDADBDBE4DBE4DEE1CEDAF0E6D7DBE7E1E5E2DADEDD -D5D4D5D5D2D0DAEBDDD6D5D2D9D1D9DECDCFD5D1D5D7D7D4E4E2E2EEE9E1E0DFDEDBDDE2DC -DAE4DCDAD9DDE1D0DADED4DADACEC0D1D1CEC1C2CECCC5CBD3D7D5D6DDD2D0CECED7C8C4CE -D1CED0D6D1C7DBD7CECBCDCBD0C9C8C7DCD2CAD9D5D5DFE2D9D2CFCAD2C9CECCBDBBC5C1B9 -B2C6C7BDC1BFC1C3C7BFC7D1CDC5C4CAC7C4BFBDB9A1A298AEA19F8E928D92 -FFFBF9FCF5FCFFFDF9FFFFFFFFFFFFFFFFFFF8F3F5FBF5F2E8EBE2E1D7E6E5E5E1DEDBDADB -E2E5EEE8EAE8E9EBEFF4ECF6F2EBE6EEEBEFEFE3F2F8F8F3F3EBECFAF9F2F1F5F3F4F3F9F6 -F7E38D7C7F6D90A29E98B9B38579796C6D6C6A6A6D767268676A718DAFDBDED2DDE9DFE7EB -E3E7E5E5E1D2E1D9DCEBDDE3E8DCD7D7E2DBD6DAE4DEDBE2E5D2DBE9E6E1EEEBF1F4F2F3E9 -E9E7EDE7EEEFE2E7EBDCDEDCD9E9ECDACEDADCD7D0E3E5DDDDE0D9DAD6D5DED7D4DEDDD4D0 -C3C1C0C5CBC7D5D9DBDFDADEDAD9D9E0DED3DEE5D9BFC9CCCED7DBD7D7D7D0DEE1DAD2D9D5 -CFD3D2DED9D7E2D7D9D9DED6D7D0CBD4DEC9C2CACDD1D0D3D3CDD5DACED2D3CBCAC4BDCCCA -D0DDD7DAD2CECDD5DBC8C9D3CDBFCDD0D0D5CEC8CBD0CBCDCBCBCED2D1D4D3D0C1BDD2CEC7 -C7D0C9C0CDCCB2B8BBBBC7CEBBC0BDB8B9B2AFB2B7B0A9888D88897C8E8E88 -FBFAF5F6FBF8F6FAF4EEF1F4F6F1F3F8ECECE8DED6DADFDEEBECE4E1DBE1E5DBE8ECECF4F3 -F7F5EEDDF2E9E3DEDDE9EBE2DFE5E8E5EBEAE1E4E9E4E8F2ECE1DDE1E8E5E9EEF2F6F4E4D5 -BDA9976D6A85928E9BBAA5897E76716D6763638D76766160639E9EC5D2D3D4D7E6E8EBE1E5 -E4E1D9D9D9DBE1E4EBE1DEE4D0D5E2DFDEE1E3E6E4ECDFD1E4E8E2E3E1E4E9F6F9F5ECF0E2 -E5E6E5ECE4E4E9E8EBF1DEE2DDD2D9DADEE0E8ECDFE6E4CEC8BFC5CDC5B5C7CBD0CCCFCBD1 -CBCECDE1D6D0CFCED2D9CDD0D4E2D3CEDBDBD5D5D2D5D1D1D7D1D5D4D3C9CACABEB2B9C7C7 -CBD7D9D0DAD2CFD7DFD1D7E4DBDEE1DDD6DBE5D6D6E1D7D7D2CED7D9D9D6D2D7DACBE0DECE -CAD6D7C9D0CDBFB0C0C4C2CAC5BBC8C9CBCBC9C0BBC2B7BFB8BBC9CAC7C2C4BBBFCFCAB2B7 -B9C0BDC4BEC1C5B9A9BDB3BDBBB8C1C8BFBDB3AEC2A9959898A5A29E979E9B -EDEEEEE7E5E9ECF3E9E4E8EAE9EEEEE1DDDFD1D5CFC6D0DAE7E8F4EEDEEEE9E5E7F2F7F4EC -ECE7E8EEE1EBEEF3E9E9E8DEE9EEEFEBEDEEE2E7E9EEDEE8EFDAC7E4EEEBDDCECDC39F8D7F -8D897690AEA68B88A289827E7E767974636067B8C5BA7983C9E8DBE1E2DDE0E1E0DFE9E2E5 -E5E7E4EBE4DCC1D1DAE1EEE8E2EBE4EBE4EDF4F0ECF2EFE8EDF5EEE0D9E2EBE8E3E3E2E5E1 -ECEDE2E2DCE1EBE0D5E2E2D6C7CDC7BACAD3DBE5E3DDD6E6D6D0DBDAE1D7D9D2CBCBCDD5D9 -CED2DCCAD7DCDADADED9CFDDE0E4E9DED9D9DDD1D5D6D2DBE0E1E5E4ECE4D6D5D7D1D9E1D6 -D6DCCDBDCAD0D3D9D7DBE1CED6D6D2DADACECDCACAC7C3CCCCCCDEDCD1D6DBE1DDE0DCD0D0 -D6CBCBCFD2CDCED0CCCCCBCBC8CDCECFCEC7C3C3C5C8CECEC7B5AEBEC3C6B9C4C2C1C5C2BE -C4BFBECAC6C5C8C7C7CBD3D2CBD2CBCCD5C6BFC4BFC8CBC3C2BDB2C1C4C2BE -FEFEFFF5F6F8F5F5F8F1F7FAF4F8F9F1F1F5F8F1F1F1F1E4F1EBE4EBF1EEEEF1EEF3F4EFF1 -EFEEE7E5EEF9F8F2F5F3F3EFF1E1DDEBEBDDDCDCDFE8D09B97BAC1BFB39283857F88898D8B -89857EE8D28B71AB8B747268636C61616167A685C5CDDCDCE6E5E8DFD6DFDBD5E3DDD9DEE4 -DFE6E1DCDAD1D6DDDEE8E5E8E7F1EBE7EEF9E7E0DAD9DDE8E4E2EEF2E5E2DFEDE9E7EBE0DA -DDE6E4DDE9F1E8E5E1EDEFE6DED5D4E1DBECF4DBE3E5E0E0E4E0D7D9D4D5DAE2E0DBDEE2E5 -DAE1E1DED3D9E2E0DBD7D2D9E2DCD9D9DEE1E4E1E7E5E9E7E7E8E1DFE5DEDADADBD6DFDAD6 -DBD9D5DDDED6DDD9D9D9D5D2D9D9DBD5D6D1C6D6C7C5D0D4D6CCC3BFBEC1D6DADADEDFE4D5 -CAD6D7CED7D0CFD4D1D2C2CCC1BFD5D9D5DCDBDCD2D3CFCDCDCFCCC8D5D5CBCCCCC1C1CDCD -C3D1CDCBCED4C6D4C8C9CCCBBDC1BFBDB8AEB3A59795A5AFA5A2AFA9AAB2A9 -EBF3EFEDF1F1EDEEF0F1F1F4FCEDECF8F1F1F1ECEFF2F4E7E9F1F2EBE9F6FFF9F3F7F8FDF6 -F7F1E1EFF2F9F4F5EFEEEDE8EDF7F3F7FBF1E8F0F2FBE5C18B777E7E7F8B7E838B7E859783 -97ABBEE78E686A8D716C6868606D92C3C2BFDF9BBBBFD7E6DACBC8D6E2E2E6DDDCD1DEDCE2 -E1E7DDD5E0DEE4E1DEDBE2ECE1E6ECECECE1EEDDDDE9E4D7D9DEDEDBE6DDE4EBE5E0E5E7E2 -E4E6E0E1C7D3E1E3DFE2DDD0D7D0C7C4BAC0BFBBD0D0D9D6E2D7D9D3CEDAE5E2DDE5E9E8E4 -DFDAD9D9C0CDD7D7DADFE8D9CAC8C4C6D2DAD6DBDADBE1ECECE2DDDEDEDFCED6E3E1E4E7E5 -E1EBE9ECEADDD7E1ECD1D2D7CCC6C5BEC3CCD6CBC4C3CAC3C1BFBEC0C4CCC6C4C5C4BFBEC5 -C2C9D0BFC3D5C9CBCDC5BDC9CAC4C7D0D9C9D3CAC1D0C8CBCDC4C4D2CCCED5D1CDD3D1C7D5 -D2C5C5CBBFB9C0AAB2BEA9AFB2AEA6AA97959E9B9E9F929B98AABBA59FA7B0 -F9EEEFECEBE8E5EBECEFF5ECE9EFEFE5EBEBEFF7F2E7E9E0E1E4F0F3F5FEFBEBF3F4F3EFF2 -F8F8F2F6F7F4E8F4F6EFF2EAF1F1F3F5F0F2ECEAF1F8E1E4E0D9DADCD9DADBDEDADACFC0A9 -A997AF838E885E5E8389616A9ECBE1E4E7D7DDCF9B6A9ED4DDE0E9E5E7EBCFC8D2D9DBDEDF -E4E3ECE5DDE7E5E0E9F1F3E3DCE1E2E2EEE1DAEBE8E1DCD9DAD9DDCECCC8CDD7D0D4D6CED5 -D4CBC8D4DBDDDBE3CFDBE6DAD2E1D6DDDED6D4DAD5E2DDE7ECDEDCD2DCECE3E0DDDFDED9D6 -D0CDDAD5D3D5CBD7DDD4D2DADDD5E0E5E1DBE2D2CAD5D0D0DCDAC7C2C0C3C2CEC8BFC4C5BE -A7B7C4CAC4B7B5B2BDB3AAB3BACBC0C2B7B8B0ABB3B29FB2C2C7C9D2D1CBD5CBC2C3C0BDC0 -BDC1C1C3C3C6C9D3CECEC3C0C4B9B5B7C7D1CAC3CACDCED0CECBC1BEBBB2AFBBA2B5BFBAA7 -B2B9AEA7A9A6A2A29FA2A6A5AEB8ABB0A99B97AFA5A5B2B0B0A7959E9BA29E -FAF9F2F3FDFFF8F7F9F7F3EFF5F2FAF7EBECF9F0E7ECE3EAEAEAF3F5F7FBF9F0F4FAF8F5F0 -F2EDF1E5E2DCDEE2E1DED6D0D7D4D9D2D5D4E4DEE2DBD2E1F1E7EBE5DCDBDDD7CCBAB3C8DA -DFE9CB6A72856161617190CEE8E7E5E8E6E5E9E9C56D8EE9F1F6E9E2E8F3EDF2F3F3F1E5EF -F0EFF2EBECE9EEF5F3E8ECE8E5E8F0E9EEF1E9DDEADDD2DCE0D9D2D6E1E2E7E7E9E4DAE9E1 -DDE9E2DBE5E7D5D7DEE7E7EDE9DAE5EBE5E4E5E1DDE0E5DCD7E5E4D7E4E9E5DFE6D9D4C6D5 -D7DFDED9D9D7D7DBD4DAD0D5D4CCD2D2D2CCCFC7CECAC9D4D2D7CFD3D0CEE4DBCBCBD4C2C4 -C8C3BDC7C8BFBBBFCACAD0CAC8D0C8CED2D9D3D4D6D1D9D5D5D4D6D9D6D5CECAC1C3D0CEC7 -CAD6D2C2BFC7BEB2B7C1C1C7C1BEC2BABDC6C0C6C3B3B5BDB5AFB7B3B8B59C90A7B5AEAE9B -A1B0A2A7B5A598A6A6A2A5A59EA197929B959E9F89838382928BA19FA997AA -F4F3FEFCFDFFFAFDFFFFF9F8FCF8F7FCEFEAECE7DFE0EAE8E6E2D6E0E2E5E8E7F1E9E6F1E8 -E5E5DEEADEDBE7E4CCCED6CED1D5DDDAD9E3DAD3D3CFD1DEDEE1DED5D1C4D4D7D9DDE4EBF0 -F1F2E18368779BBD7E74ABE6EEEBEFEFF0F3EEE7E6AEBDE5E6E6EFF1F1F3F2F2F6F1F2EFE7 -EAEBE7DBE4E9EEE4DADED7DBEAE8EDF1E8E4E0D9E8E7E4DAE0EBE6EFEBE8EBDED9D7CECFD2 -D2CBC8DEE1D7DEDFE4E4E4E7DDDFEBE7E7E4E3E6E2DDDDE8E2D6D1D5CCDBEDE2D9E4E1E9E9 -F1ECD9D6DFCECED5D6DEDEE3E5DEE8EEE9E7E1E1DEE5DEE8E6E1DADDE1E9E1C7D6D3D9DCDC -C5C2C1BFBDCAD7D0DBDCDBD6D9D7D7DAD3CBBFC9CDC8D4D2BACAD0D6CAD5CEC7C8CBD0D6D0 -CACBD4CAC4CBC3BABFBEB3BDAEB8AAA9A9A9A2A5ABAB9EAEBBB7AAB5AFABBEC1BDBDBFB2AB -B59B9FA59BA6BBB8B3B3B7C2C0BDC0AAAFB3A595AA9C98B09EAFBAB0B9B8AA -FEFFFBFFFFFCFDFCFAF5FAF7F8FAFBF6F4F2EFF5F8FAF2F1F3F6EEF3EFF0F8F9F1F8FBFFEF -EEF2EBEEEBEBE2E4E5E6F3F1EDECECE6E8ECE4E5EDF1F3EBEEF2E2E8ECEAE9E7EFECE7EEEA -E8ECEBD1CBE5E6EB7F6AC5E6EBE8EFECE9F1EFECE9E4E4E8E8E1E3E9E7E8DFD7D0CDD4CED0 -D6CED4E9F1EEF4E4E9E1DDD2E4E7E7F2E8E5E4D9E8E8DDDBE7DCE2E7E4E5E5E9E5DEE1E1DD -DBCCD2DED0C7C9CFCECFDEE5D9D9E6E8F1ECECE7DDD5CDC2BDC4BAB5BDC5C5CBD7C9D0DDD7 -CDCBCCC4C5D0D3DBE1D2C4D2D7D5DCDDCED3D7E4D7CECABFBDCED2D0D2D9C3BDCFD5CED1DA -CED7CEC3D9D6D5D0D7DDDCDACFCAD5D5CBCFD1C7CBD2D1D6DBD0CFD9D4D3D7D0D4D5D0CBD4 -DDC7CAC0B8CDCAD2CCC6C4C6C6C0C7C9C2C1CCD2D2D7D4CBCBBFC5C8C4BBBABABBB7C1B2A6 -ABA6B2BAABAAA9A19C958D8B8E88717C828D97979E9595949B94A1AA9E9598 -FFFFFFFEFAFEF9F7F6F6FEFEFFFFFFFFFCFFFFFFFFFFFDFFFFFCFBFBF9FBF4FAFAF6FBFFFC -FCF8F6EDF6FBF6F9F9E9F2F2EEEBEDEFF9F0F1F7F3EEEEEBF4F3F4F9F5F8ECE9EEEBE9E7EB -E9E6E8EBEFE9EBE89C74D7E4E5ECE8DAE4E4DBDBE2EFEEF3F3F4EFECEEF0E8E4DDDDDFD9DB -D9DBE3EDE4DDE3DBDCDBDFE1DFE2E9E4DBE5E6E9EAE5E5E1E1E4DBD1E1E4E3E9E5DDD9E2DE -D6DDE2DBD0CDD7DEE9E8F4E8DDD9D3D6D4CDC7C9CCC9C7D0D9D7D7D0D2DFDBCBC7BFC4C5D2 -D6D5D3DDD6D2D2DDD9D7D0D2CCCCD3D0CCD7D9DBE3E2D6DFE4DBDCDDD2D5D0D0D5E2DAD9DA -D9D0CBC7D0C8BFC2C5D9DBCBD7DED9E2D2DBE2DBDBE5EBD7DCDBD6CACBC7C5C9CACEC7D0CA -CBCEDBDED5DBD2D5DDE0D6CAD2D9C9CFCDBAC4CEC7BFC6C2C2C2C2ABA5B9C2B2BDBFAEA7A1 -94A19F9CA29C8D8E887F908B8892908B908E959C89777777828E8B767E828D -F9F2FFFBF1FCF9EEF5FDF8F8FFFCFFFFFBFBFEFAFBF5F5FCFFF9F6FAEDF1F9FBF6F8FDFBFA -FAF5F5F9F8F2F3F0E8EDF4ECE0DBE9EEE5DEE2E4DEECEEECF1EFF3F0E7EBF1ECEAEAEEE9E9 -EEEDE9E7E9E2E2E7CFC2DCD0D4DBDFE6DDE2DBD7D9DFECEDE0EEE5D2E4E7E7E4DED9D0D9D6 -D5D9DAD3E5E7E6F0EFEAEAEFF3F1F6EBE1E9F2F6F0F1F5EEE9E7E7E5E1EBEFE8E5ECEBECFA -F1EFF1F3E3E2E1E9E1E9EFE7E5DDE1DFDFE2E1E5EFE7DFDEE7E8DBE1E4D9D6DAD5E1DEE6E7 -E2D7E7E9DBCAD5E4E7DEDADAD0CDD9DADADEDEE9E2D5D9C4D2D2BDAFB8C1C7C5CBCBCAD1D7 -CACCCBCBD6C7B3C9D6D6C8C3CDCBCDDADAD6CED3CAD2E2D7D9E2E4DADCDEDDD7DADFDADDC8 -BDD2CCCAD0CECACAC8CAD2D0CEC4B7B0A6BDB9A19EAEA7ABAF8E9292898B9F90949E9B9295 -9EA9A7909295949BA5989C979B979FA7A69C9897989095B2B5B2B8B3B5B59F -FAF4F1F8F3F4F4FEF9F9FBF9EAF4F9F8F5F4F4F2FFFCFCF6F9F8F9F0F9FBF6FFF9F9FFFFED -E7F3F6F9F9F7FBF6FAFBF8F3F1F0EFE7F2F5F0F1E7F3F1E6EBF6F5EAE1EAEBEEF4F0E7ECEA -E5ECE6DEE3E8E9E4E4E3DAE2E4DEDBDAD7E2DDE1E4D5D9DED5E0E2E2DAE3E4E9E9E4E4E3EC -EEEBE7EFF8F3F1F2EBE6E0DDDAE5E3D9D2E2E9EAF2F1EDF5FDFBF9FFEAF4FBF4EEECEDF2E9 -E5E7EFEEE7E9EEF0E6F1EDEAF4EBEEF1EDF5ECEEE7E2F2EEE8E5E6DDE1E8D5E5E8E2E2EFE7 -D7DCDDD5DAD5D7C7C2D4D9CCD5D1C3DCE2D7D3D0BAB0C7CBCACAC6B7C7CABEA7B5A7A6B7B2 -AEBECBC7D0C7C4CACFC0CEDDD1D5D9C4C3C2BFBFC5C8C9CEDAC1CED3D0D3D7CECACBCAC8C2 -C1C4C8D5D4D6CFBFC9C1BECAC1BABDC2C4B9B5A9B2B3AB9B9FA5ABA7ABB3BBB5B7BDC5C3C5 -C2B8B7C5BEC7B8B5C0C0BAC5C9C1BFC2C0CAC1B8BDAEBBB5C2B8A7B3AE98A9 -F8EAEFFCFEFBFEF1F9FBF3F2F8F1F0F7FAF1F1F6F7EFEDECF6FFF5D5E1F9FBF4EEF2F5FAF4 -F0F4F8F2F3F3F6F4FAFAECF2F2E9EBECF3F7F3F6F6F5F4F3F4F3ECEEE9F0F2F3F2F0EAE4E3 -E8E2E5EBEAEDEFF6F5D9CEDDE9E7E1DBE1DDDDE4E4E4E0E8EEE4DDE9E4E5EDE4EAEBE8ECF1 -F2EAECEFE7EAF2F2E8E9DEE1E7E5EBF1EAE4EAEEE8DFE2E9F8F6F1E9F3F6EAF0EFE8E2D7CE -CED9DBE1DEE2E3E1DBE4EBE8E8ECE9D5DDDDDFE5E8E5D6E2E7D9E6EAE2E8E4DFD7D5DCDFE2 -E1DBDFE1E6E1DBDFD9D6D0DAD1BFCCD9CFCACAC7CEDDD1D5CBC8C7C0B2B2B3BEB9C0D0C9CE -CEC9C5C7D2D4CAC8C2AAAFAEB0B99FAFABB5B8CACBD5CFB8B0AFB2BDBABAC4CDC7D7D6CDCD -CDC4D3CECFE4DAD2D6D5CECDD5CBBFC2C4B0BBC4C3A5B3A9B7B5C0C0BFC9C4C0BAC6C2C2C4 -CEC5BFBDC3BEB2B9BAC4C7BBB8C0AEA9A9989CA19B9C9F8D909089798B8B98 -F2EFF3EEE8EFF3F4F5FAFBF3F8F9F5F4FBFFF8F6FDFFFCFCFFFBF8FBFBF9FBFEF5FBFBF5F9 -EFE9EAF4FAFAF7F5F5F3F2E7EAF0F8FBEDECEBEBEDF5F1F2F9F2ECF2F8F5F5F8F2F1EEE6E5 -E9E9EBEBF3F5F8F6F3ECEAF1F3F1ECF6F6EAE5E4EEE9E8EDE9EEDEE8F3F2E8F3E8DEDBDBDC -D6E1E1D2DCE7E7E8E0E1DFDBE4D2CEDADDD9D6DCE1E5E4E5EEEEEEE9EBE8E8DFDADBD5DBDB -D4D5E1EBEFE9EAF5EBDCDEE0DAC9DDE6D1E1EDDAEEE8D1DAE0DDDCECDFDEE4E7E1EFEAE7E1 -DDD7DEE9E2DEDAE0EBE9E6E5E2D7E3EFDED0DBD2CBC9CDD7D5DBDED2CBD0D6CDC4CBC8C4D2 -D2CBCED6CACCCAC1B5C0CBC0D0D2BFCBCDBFA2AAAABDBFC6C6CCCEBFC2BBC3BABFB2B2C6BD -C6CBC5C0C2BEC2C5BDAFBABDC2BDBDBDAEA9A9A6AEAFB3B3B3AFA7A2A9B0B9A98E98B2B9A1 -BEC3C3BEB7AAB3B9A6A5A5A19CA69B8885898885888290909094898B7F898B -E9FAF3FCF6F3F3F6F2ECFFFCF5F1ECEAF4F8FFFFF9F8FBF7ECEFFAEFF0F9F7F3F8FAF8F2F1 -EFF9F7F8FBF5F9F4EDF1ECECEEE9EEECF0EBE5ECE9E9F3F1EEF2EEECF3F4F2EEEEEDE5E8E3 -DBE7EAE8F2F9F9F6F4F2F3F7F4F6F2EFE8EDECF2F4EBEEF6E9EBE9EDE0E1E8E7E4DDE1E1EE -E9ECE8E7ECE8E8F1EBE0E5E5D7D0E3E9E6EDEAE1EEECE5E2E4DCDDE5D9D0D9DEE8EAE8EEDE -D0D7DDE5ECE1D5D6CAC6AEBBC6C9D0D5D6D1CED5E5E4ECD5CAC4BFCBD2DBDDD1D4DAD7DADA -D5D2D4E6D4D2DDE2E9EBE2E4EEEBE1E3E6DAD2D9D6D7E3ECDCD5DAD2D7D1D4D5DEE0DFDDE5 -E5DCCBCED0D0D0C4C0C6D7D9CBC1C5C2B9C7CBC6C5C9CCC7D1CFC9D6DAD9CCB9BA98AEBFBF -BDC7D7C7C3C2BEC2C5C3C4C7BBAFB7C1C6CED4D0C9CAC1AEBDB0B7C2BDC9C9BDB9C8C2BDC2 -CBCBC7C9BBCBBFAEBAA99BA297929B9C9489948598A1A7A2959794949EB2A5 -DBEAE1DEE1EDFAFBF2F8F4EEF4F3F5EEFAF1F1F5F4E5F7F9E8E1D7D5E1F3E9DDE8F1E9EFF5 -E4EEF8F4F7E8EDEEECF7EBE9E9E9F3F1F4F3E8E9E9E9E5EAEBE5E4E8E4E5E1E1DDDFDCDCDA -D7DBDBDEE1D6DCDDDDD4D5DBD6E1E2E4E5F2E2CACFD7DAF1EEEFEDEFF0F7FBF8FBF3F0E6EE -F5FBFAF5ECE5F0EDDFD9DEDBE1DBDEDDDADDE2ECE2DCE1D9D0D9E2D9E1E8E6E1EEE1DDDCE6 -E7E4E1EAE1DADADDE1E0E1DAE1EFEEF0E9E4E1E1E3DBD5D6C8CBC2C2E3E4D4DCDCD4E5E2E1 -E6DEE2D9D6D5DEEEF2DCD4D5D9DDE8ECE0DBE4DFECF1E4E0DBDDDDDCDEE3E1DEDDDCE0D0CD -D5DAD7D3D3CAC8C7CACCBFAFAEC2C7CAC7CDCCDBD4CED4CED7C2D6D3C9C2C7CCC6CBD3CBC8 -CEC6CBC2BBC0C7C2C8CCC2B3BFB9B5B7C6BBC2C0C0C0C4BDA9B0BA9F98A2B0BFC5D0D5BEC4 -C6BFCABBC2CCCECDBFBAC4C2B7BDC0B9AB9EB5B89CAFAEA2BEAFAEA9A7A1A6 -F6F2E1DBD0E7F3EEEEE4E8EBE9EEFAEDE9F1F6F7F2EEF0E5D6D6E3E9E9E9EBE8E9F2F6EFEA -E5EAF3EEE9EBE9E7F0E9DFE1D7D7E9E9E4E3E5E3DEE8E0DDE4DBD3D6D7D0D6D9D4D5D7D6D5 -D2CDCED5C6B7CBD2C4C1C1C2CED6DDE6D1D5ECDEE1E5EEF1E9E7E9EBEFF2E6EAE7E3DAD4E4 -E5E6E6DFD6D0C9CECBE2DED2D6E2E2E2E5E5E2E9E3E7E6E7F1F1E7E7F1F0E7E0ECE9ECECE7 -E4E1E0D9DCE5DCEFF4DBE5EBE6DFDEECE3E3E7DEDDD2D2D3D5CDCAB3C7C7C5BFCBCAD5E1EC -DED0D3D5D6DAE4DEDEE8DDE7DED9D5D5D0D4DAD7E4E5DFDDD2C6BEC6D2DCE0DFE2DEDDDAE6 -E1D1DBD4D0D5CEC7CBC7C0B3A5ABA6BDCACBC8D0CED5CEC5C2CAD6C2C8C7CBD0D2CED6D2C9 -C3C4BDA9A69B8894A1B3B8ABA7B5A7AEAEB2B09B8B8298A592A9A2979BA19C9B9EB3B0A997 -AAAA9B97AA95A6B2A2A2A7908B8B8D89898E98A79C9FAE9F92A6A9A29C888D -FAF4F6F2F5F2E7F2F5E4E7EEDCE5F0F3F6FCF8E4E2E7ECE4ECE5ECE4E2DECDDECAD7E6E6E9 -E9ECE8DEE4DBD9DFE3E8DDE1E7E2D7D9DED9D5E1DAD4D6DBCED5DAD5D7DBD7DDDBDAD6D0CE -CBD0D3CEB9A7B3C6CDCEDACCD1DDD6D2CCB8C3D9E1D0D5CDB0B3B5C8CBDBDEDAC1CCCBCCD5 -D6DEDACAD4D6CDD0D6D0D5D2CBCEDED4DBE4DED5DFE1D4D2DADDDDE1E4DDDDD2CAD0DAE2E4 -DBE5DBD1D2DBD6D7DDE2E1DBDADED1D0CED0D6E3E0CED3CFBBBDC4C7CCD3D1D2D2D7D3D0D0 -CDC7CDD7DDDDE1ECE8E8E1CED6E2D6CDDDCECDCECBD6D2D3D0CAC1C4DEDBC7C3C3CFD3DDD7 -E1DDD6D3D9D2CAE2DCCFC9BEBDBECBDAD9D0CDD0DCD9D9DADADEC9C9D0C7C6C4C2B7BDBDA2 -A197898B9598AAB3AFB2AFA79F9CA69B98B0A6A5B0B2A7B2B0B3B7A5A798A1A6B2A9A5AABB -9F929B9B9498979795827E837C727C88837C7E7C7F797C88797E7F7E858385 -F8F2F3FFFEF4F4F5F3F9F8F8F8F5FAFFFAFAF3F1FBF7FAF2EDEEF0E2E8E9ECF1ECF8F8EAE7 -E7EFF4F7F6EBECF1E5E8EEE0EDECE4DFDDDED9D7DDD7D6DADBE1E0E4E9DEE5E4DDD7D5D0CF -DCE1D7D7DFD1CBE8E5DED2D7DBD3DBD5D5DBD6DBD0BFBECDC9CBBDC1C4C7D9DACDD1D0C8D6 -D5DDD6D0CCD4DBD7D9E5DBD9E2D9D6D9D9DEDFE1DBDDE7E0E2E1E2E2D9E8E9E5E4E8E4E6E4 -E2D6D9E5D2D1E0C9C5D6D1CCD2CECAD0DBD9D3E0DDD6DCDDD0D0DBDEDCDEDFDBDBD6E1DCD0 -D3DED7D9DBD4CBCACDCDC7D7D6DAD2CEC6C2C6BFC1C7B3A2A9A7A79BC1C3BAC4C9D1CED5D1 -D5DBDBCECACEDEDCE1DBE0DDE0D1D9DDDEDAD0E0E6D9DBDFDDC9C4D3C4C3DAD7CCD2C3BDC3 -C6B5BFC2C0C0BFBAB8B8BAB7B8BEB8B5AAB0BFC6BDB7A9ABA59E8D98989F9CA5A5B0A99C98 -8B88778272858B7C897E7F8592889489897E797F888B8882948EA6A197A99F -FFFFF4F5FDF6FEFAF8F6F9FCF8EFF0E5EFEAF4F5F8F4FDFAFEF6EAF2F9FEFAFEFEFFFDFCF2 -EFF8FAF2F5E4D7DFDDD1D7E8E4E4EFEEEDEFE9E6E6EBE6E4E8EFECEDECE9E8E2E4E2E2E0E2 -EBE9EBE8E6E6E4DFEEEFE7ECE8E5DEE5E1D3DEDECDCED3CED5DED6DACED9E5E7E9E5E2DAE8 -F0E8E8E8E7E7ECE0E8E8DAD2DFF5EEECEFE5DBDEE2E5E4DDD1D5DBD0D1D9D7D7DDCECED5CB -C5CDD2CAD0CBCDCBD5CFD7E9E5E5DDDDDEE6EAEBE5E4E9EEE7E6D5DDDCD5CDD4CED2C7BFCA -CACEC9B3B5CAC7C2D0CCC7D2C9C8C9D0C1D2CBB8C5C7C1BEC6C1C9CCC6C2BEC7C2C5C2BDC7 -CCC7CED0C2C9D5BEC1BFBDBBCABBBDC7C7DAD9D0D9C6C7E1D3C7B3C1C6D1CACBBFB8B9B5B3 -A6A1A1B9B8BBBEB8A7AFB7AEBDB3A9989FA6ABAAA29FA6929CAEA29B9F90828E887E827F77 -838D7C7F8582828B827F898E908B7E908E888B8D8B988E92929E9F9292929F -EEF2E5DBDCEEE8E2F5F4EEE2E7E8ECE6DBCFDBE0EDEFF4EFEBEBF6EFF2F0F5F4EFEEF4F3E7 -E8E3E1E8DCCED2D7CDC6CED2E5EFEFF5F6EEE5EBECECECF5F7F4F3EFEEF1F1ECEFEEEBE4E8 -F0EAECF4F4E8E5EAE7E9F1EBE8E9E6E8E7D9D6D6E9E8E0E5E8D9E2E9E9EBE5E6F1E9E3E8EE -E9E9EAE8E9E3E4EBE8DDE7EDE8ECEDE3DCDEE8E8E2E5F1EDE9EEE8EDE7EBECF5F2F1EAEDF0 -E5EFF3F1F2F3F3EFE3E4E2D7E5E4E5E4D9CFE1DAD4E1E5EBE7DAD7DED5D0E2E5D6DDD9C9D2 -DDCBC2C7D0D7DDDAD1D0D4CDCECCD6D0C4B7B3B7BFB0C7C4A7B8ABB3AAA2A7BBBEC7C2BFD0 -D5DDD4CAD7D9D6CDCEC4C7C6C6D3D5D2C1CCDEE0DADDE0D5C5BD98A2AABBAEAFAE949B9F8D -95A29897A79882929E9EA7ABAFB89E9EABB2ABB9BABDB7BBBDB7B8BDB9ABB9C0C3AEAEAEB3 -9C9C9F989E988E90948B828589857F7F79898983897988959BA9A7A5AFB0A5 -F2E9E9F5E8E8EAF0EBEAF5E9E7E5E4E1E3ECEBEDECE7E8E9E9E9F1EDE5EAFCFFFFFEFFF6F5 -F4F1F5FAF4F0F4F9EEE2EAEAEAEBEFF5F4EDE4E2E5E7E7F2F8F4F2EEF4F0ECEEE9EBEDEFE4 -E2F2E7E6EBF2EFF2EBE8ECEAECEEF4F0E5EEF2F3F2F8F2F4EFECF3EBE8EBEBECF1E0DBD9DB -D7E1E9E7DAD9E5E1E1F4E7E2ECEAE9DFE3EDDEE4E7E3E5E8E7DFDBDAD5E2EEF4E3E4D7CEDA -D7D2D5E1DDD2E4E9E9E6E2E5E9E7F3EEE9EDE6E9ECE9F1EDE4E8E8E2E9D6CBD6E5E3D9DFE8 -E0DED7DBEBE9D7E7E7D5D2D7D5CFCEC3B7C3C2C7BBBEC4BEC8CED1D2D2DEDADBD4D1D1CEBB -A9C1BAC8D5DBE1CDD0BDAEC4C8D0DBCCAECACCC8CAC2BFC2C3BECEC9C0C4C3BDB9C7BFB2BD -C7C2C1BDC3C2BFC6C2BFC1C9BFC4CEC8C8C8C7CADAD3C3B2B0AEB0B394AAC0B3B3A292898B -82828D827983887E827E7E7E797685949498959895A2A2AFB8AFB0ABAAB09E -F6FAF2E5E7EBE6E9D3CBD0DDDFDAE7E1EDE8DEE2D9DCDDE2ECF2EEEEF2F5F8FBFAF4F2FBF1 -E8F3FAF3F3F7ECEEEFEBE2EFE9DEE9E9EDF0E8E6DEE2E8E7EBF3EFF0ECEAEBE3E6EFF0EFEB -E8E3E6E8E9E7F2E5EBF1E5ECF7F7F0ECE5ECF0F2F5E7E3ECE5E1E9E8DEE1E6E7E5ECEBECE9 -E5E8EEF1E1F4E8D9DDD9D6E4D3D4D5D4DEE1D9E2E2CECDC2BFCAC4C2BFBFC6CFD1CDC9D6D6 -CCCECAC9CED7E5E6DEDDE5F0E8DFD6E3E2DDE5F2E4DCDEDFE5EBE9E6DFDAE6DCD7D1E4E2E0 -ECF3EFEBDEE8E7D9CEC8C5D9D2C7D2DAD7D7D9E1E1E1DAE1E9DCD9D9D2D5D6C7B9CBCCBEB8 -C6C9BDBABFC6C6C4C1B3AEBFC1BFBEBBBFB7BFB3BBB0B5B3B8B5BEBFB8B7AEBDC2C3A79CA1 -B0908DA18B8BB89FA6B8A2A9B0AB98ABABB5B8C0B0A69E97989C909898A2959897838E8E79 -858B8583837F8890979098928B898890959EAEABA2ABA1AFA6AAAFB3B79FA1 -EAF8F1EDF1F3E7EBF1E9ECF1F5EBF1F8F2EFF6EAE5ECEFEDECE7E9F5F4EFFBEFE4F3F6EDE8 -E8EDE5F2EAEBECEEF0E9E8E8E8E9E1E4EBE8E5EAECEEE5E7EFEAEBF1E9EAEDE7EEF5FAF3F4 -F8F2E3E8F6F4F5EEF2F1EBF0EFF4F2EFF3F4F1F2EFE8EBE3E5ECDADFEFE9D5CFE9DEEBE4DE -DDDBD6DFE9E7EDEEF1E2E7E5DDE4E7DDE4D9E9E5E3E4E9E1DBD7DBDDE1EBE0D5DBD4E1DEE4 -E9E7E8E3E9DED2D5DBE4EDE9E5EBE3E1E1DDD9D6D6D3CCDADDDEDEDCE0DDE5DFE0DBDAD9DA -DDD4D2E3E3E3DBD9DAE5E6E2DEDDE6EBDBDBD0D1CBC6BFB2BBCECBC7D2CAC2C7D0D7D5CBC2 -C2B3B2BDBFBFC0C2C5C5C2D4CBC5B9C0C6C9CEC8BBC2BBB09FAAABA7AF9F97ABA6A1A1AB9B -9EB0AAA1B2A29B97978E8D9F98989B9CA995A19595A19BA69C9CA5B59EA7A59F989494898B -948B8B8EAFA69FAB9F9E9FA597A19EA9B3BBC4BFAEA5AAB5A5B0A6A9A9A9B0 -EDE7EBFCFCF8F1ECEFF7FCF4F1F4F7E9E8F1EFE7E4EBEAE6EBD6D6E2E8EEEBF1E9E7F5EAE4 -EBE7E8F5F3EFE6E9ECECEEEEEFEAE6E4E0E5E8EBECEFEDEDEBEEEDEBEFECE4ECEDEFF9F7F4 -F4F2EEDFF5F0EBE7E9E4E4DCE0E7F1F5F6ECE8E7EDF8FCFAF8F8FBF6F7ECE1E7ECDBD5CBD2 -C7BDC0C4CBE2EBE4E0F0EEE7EDF0E8E5E0E6ECE7EAEBE4E5E2E3E7E9E4E1EBE9E0EBEDDAE0 -E6DBD7DADDE3E1DEEAECDFD3D0D5D3DBDCDCDDDEDFE3E5E1ECF1E7E5EDE6D9E4E6E2E5E9EB -ECE6DDD6D4DED6D5E3ECE1E0E0D5CDCFCBC3C7D0C4C2D5D7D6D7CABFC8C7BFCACAA1BAB7AA -9BB2A9B0BFB9C5CAC2B7B5B8B0AF9EA29EA2949CAAA79FA79B8E8E9B9E98AFAAA9A1ABBFB2 -ABB7AEAEB9B5A6BAB7ABA5A998A1A7A1979EA2A19B90929CA29FA19B929EAF9C9CABAAAFC1 -A99FA6AA9E979092A6A29B9E89989290A1A5929B887E959B838583897F959F -F9F7F6F9FAFAFDFAF8F7D6D4E5DAD4E4E4EAEDF3F2F7F4F0EFF1E8E2F3F8F4F4EFF3EFEEEE -E5E5E5E3E8ECE1E4EAE9EAEBEFE7E9ECEFEEEBE8EAE9ECEEE8E8E9E8E8EFF3F0EBE9E8EAEB -E1D5DAE8E9EDECE8EEE8E8E9ECF2F2EAF2E8E8F3F3F5F3F7F4E8ECF2EFE8ECEFEFF1EEE3EF -EEEDE9DBE7EBEFECEDE0D6E8F6EBDFD7E2E8EEF1EEF9F6E9DBE4CED7DDD4D5DEDEDAD0CED3 -DAE4E6E4E7EBDAD0D3DFDAD3DDE0DAE1E5E5E2ECE3E1EAE5DEDCDBE7DFDAD9D6DAD2E1E7E8 -DDD9D1D3D1D2DDEDDDD5E5D7D3D6CFC4D6D9D2D6D0C9D6D9D6CBCAD9D5CACEC5B9A7A68EA1 -9F9FAECAC6C7C4C0A58E889C9795A6ABA1A59B959C9C929897858EA29FA7B3A1AAB5B3B8BD -BEB2B3AEA7BBBEAAA6BBA7AABABBAAAEB3B2B8BDAEA7AEA7A5A7A6928E949CA29FB0A19474 -747E7F8D8E889290899C9495898B7F8D908B94958B8B88778B82828989959B -F4F8FEF5F6FEFCFDF5EBDBE6E9F5F4FAFAFFF5FAFBF4EFF6F9F7EFFAF0F5F8EFF6FFF7F7F6 -F7F4F1F1ECE8EBECE9ECEBE8E8E2E7E1E4E9DADAE5E6E1E8EAE5EAF4ECEEF3EBE8E8E6DEDE -E0E5ECE7CCD0DEE7E2DCE2EBE7E3DEDEDED2D2D6D1E6E8E4E7E5E4E4EEF8EFEEF5EAEEEEE8 -EDE2E0E2E4E9E6DDE2E2E0E3EBEBE5E1EAE7EAF8E6E5F0E4E7EDE4E9E6E8E9EEE7D9D0D2DA -E0E4E0D3D7DBDDE5DAE9E8E8ECE6DBE3EEEEDCD5D4CDE1ECDFDAE6ECEBEBE7E1D9D3E9E1CF -CBCACFE5E8DFDCE7E1DAE1DED9DECDD2DBD1CED0BAC5D6D3D2DBD9D0BEB5A5A5AB9C98A6AF -A1B0D4C4B0908E94AABAAEB8BFC2BDBFBDAEB9B3A6B2B9B3A7AEB8B7BAB39BB7BAAFC4BDC0 -BFBDB7BFBEBEB7AAABA7B0B0A5B5B5AAB8BBB0B0A1B2BAB0A7AFAAA6B7B3B0B3A29090908B -95928D9E949483927F8889727E8890A9A798A69894949588858B90A9A7A6A7 -FEF6F2F1EDEAF9FFFAF2FEFFFFF9FFF6F8FFFFFFFFFEF8F7FEF1E9F6F6F4F8F4F1EEF4F2F2 -F3EBE7EEEBF1F5EBE7E5E0DEE2E0D6D9E1D9E1E8DFE8E5DEE2E7E7E7E7E9DDE2E3DDDDD9D2 -D7DBD5BFB9D0DADAD9D9D2D9DAE3CEC2D0CBC5C4B0BECBC7C2CAD0C7CBD4E3E8EBDEE5ECE6 -DBD5E4E9E4E1EBE2DDE5D9CECBE2D6CAC6CFD7D9DCD3C4C3D7CECDD5D2BED9D9D0D9D4D5DE -DCDDDBD0E3D5D9D1D9D9DDE7E7D7DEE9D6D9E1D7CDD5E5DED4E2EBDFDEDBCCD6E6E2DBE5E9 -D2D2E9E1E3EBE3DBDCE2DADCE5DBDDEBE3DDE1DDD6D7E0D5E4E1E5D5C3BABFD0CCCCD1CFD7 -CBBFCBCCC7C7C4CCC4C4C2C8B8B0AFA9A9BEB7B3C0A792A7AEBFB5ABC2BAAEB0A2B2B5B5A6 -B5B8AEABB2B0A9BDA99BB3A58E9298949C9FA9A6C2BAB7BBA195A2927685778388979C9098 -908D949083948E98A29B929B989CA59889928B94A7A1ABAB9FAEABB8A9B5AE -FEFEFFEFF3F4F3F3E7EDF3F6F5EFEEF4FBF1E6E8DCEEFCF4F4F6F8F2F2F2F1F2F2EFEBE8E6 -DFE1E5E5E4E4E1E3E5E6E4E1E8EBE7E5EBEBEBECE9E8E7E9E1DCE0E4D9D6D9D3D4CFD0CAC2 -BDB7C0CCD3CBCBCFCBCAC9C9C1C2BDC0CBD4D2C4CACED1DED9D5E2DFDEDEE7EFE9E8E6E4DB -E4E1D5DDD6D1D9D6CAD2D0C5C1BEC8D0DCE5E2D7DAD9DBDBDAE1DBDDCB90D5DADCDEE6ECE4 -D7DADDDADAE3D5C8D6D9D1D2DFCED6DED4CED5E2DADFE5E2E1D3D0C9C8DCE4DFE2D1C4D3D3 -D2D7D2D0D6D6CEE0D7D9E2E0DBD6E2C9E2EBD3CEDBD9C1C2D2D6D9D2D7DFD7D6DAD0D1CECC -C0C7C0C3B9ABBFA7B8A9ABB29C9CAA9C979F9CA29F989FAEA99E9B9F9798B5A59BB2AFAAC2 -9FB2B8BEB8B5AA909B949798AE9FA1A9B0B2C1BBA594928E909B9295949563605E7E838D89 -7F898D9094908E8382828D8E89838E8D929294837E92929285779FAAB9AEA7 -E5D9D5E1E1E4E8EBE9E5DDE2E2E4E8F0F3F1E8E1F2F2F7FFFFFEF2E9F1F2F4F1ECF7EFF1EE -EBEEEBE7E8E9F0F6F6EEEBF0EEF1F6EAEBF0E9E8EEEBE8EBECE8E2E8E0E2E3DAD5D7E0DCD0 -D2D7DDE2DFEBEBE2E1E0D9D7E0D5D0DBD9D5DFE6D9DEEDD9E1F2DED9E0E9EBF1EEECE4E9E9 -E6E4DBDEE0E0DADEDEE4D6D0D4E2E4E2E7E2D7E4EDEBF0ECEFE4E9EADD7F97D5E4E1E5E8DE -D7DDD5E1E8E4E5ECE7E5E9E6D9E7EBDDD6CCD4D9DCDBDAD7D2C2C3C9CCCDDAE5E1D6D5E2E4 -E2E6DFD9E7E1DDDDD9E2DFE4DFD6D7D7D7D6D6D6C9C8CACDD0C7BDB3B0B7C2C2C3C8C2BBC4 -BDAAA1AB9E9BA592A7B9BAB3AFAFA9BEAAA19BABA5A9BAABA6B0B0BFBDB3BFBABDC2BFBEA9 -ABB2AFBDBFBECACCCECBCCBFC0C4BDA2B7989EA99B929B90908D8E7CBD9E798571829F907F -82837974777188887E85827C828885949BA9AA9B98A29E9F94828B90AA98A1 -DFDBDDE4F0F8F2F0F8EEF5F9F8F9FFFAF3FBFFF4FAFFF6F1FAEEE5DBD6D6E4E9E8EFF1E8EC -F3EDEEF1EFF2F6EEECE5E5E6EBF0EFF1F5F0F2F5EEF3F2F2F6F3EFECEBF6F2F8F8F2EEF2F4 -ECDDEEE8F0F6F8FAF7F3EBF1F1F1ECE6ECE9E8E8EAF2F5F1F4EFF1F2E7E8EBF3EFF5F9F0ED -F1E5ECF6EEE5ECF2F0EEF4F2DFEFF6F1F6E1DFE8EEE8E7E1F2E8EBE9BD7171CAD6D0CEE4DF -D3D0D5CBD0DADFD5DBDECBCDDDD2D2D7C4CFC9CED0D9DDE3D2D5E0D7C8D2DDD0D1D3C5CED3 -D9CED9D9C9D2DED4D0D1C9D5E8DAD2D9DDD5CFD2C7C5CDCBCDCBC9CDD0C9CEDACBC5C7AFB7 -B8AFAEBFBBB5AFBDC8C4BFB8B2A9AFAFA9AEBDC0CACEC2BFC4BEBEB3BFBFBFCBC7B5C5C2AF -BDC2B7B9C5AF9FB3C2CCC2A1A2A69EA69FAB988E9483978E8B8877AFB38279798283889092 -8889887F748D82828D9097A5979E9E90959E94A5ABAEB2B2B8BEA7A69CAEB7 -EAECF6F8F8F9F5F2FAFAF1F2EEEFE4EEF2FAF8F3DFDDE4E4E0E7EAE3E0E5EEE8E2EBF2EEF5 -F8ECF1F2EBE7E4DDE3E8E8E4E3E9E9ECF6EEEBF1F3F7F0F6F3EBE7E7E7ECF0F6F3ECEBEAE9 -E7DAE2F2EBE9EAF3F0E9EEEBEDEEECE5E0E5E5EBF4F3EAE4ECE8F5F5F6F5F4F8F2E9ECEFF4 -E6EEF0F1E8DEDDE7E9E5CECDDEE5EBDBC7CBCCD5D5D4D9D9DADAD6DAB76A82C7CBD0C1C2D5 -CAC7DDDBCED6D0D5D5DEE4DED9D1B5C2CDCACDD0D9D5DAD5DBDBCCBECED5D7DEDFE4E7E2DF -E3E1D6CBD0D7E1C9C6DBD6D5D4C8CCD0CCD2D5C9CAC7C7D3D6D5CDC5CAC7D6D6CABFBDB89B -A9BFB8C4C9B9B0B9B0B3AAAB9F90B29FAE9E9EBDB5A59EA1897C838B94B78E7C7C7CA29574 -686C71686D88836D7777636D7C6C777474797674726C67616D7267D3B77E837E95988E8E92 -888D929297908EA19C948EA1AEAEAEA7A7A7AFB7B9BABEAFC7C4CBC5BFC4BD -FBFDFEFFFBF3F4FFF8EEFFFDFAFBEDF6F9F9F5E2DEE4EEF1F2EBF0F8F4E2DDDBD4DEEFE7E1 -EFF3EFE7EDDED6E4E8E1E1E2DDE5EDE4E1E9ECEFF2ECECEEE9E4E2E5E5E1E4E6EEE7E7E6EE -E7DDE7E9E6F1EDE0E5EEE9EEECE2E4E8E4D9E5E5DCDEE3ECEBE8ECE2DCD7DDE8EBE4DDD7E1 -E7E2E2C8AFA6C7D2D3DFD5CBDBD7AA7C7CCED9D4CBCFD9D2E4E1E1EBAB678BD4D9D2D6E0D5 -C9DBDBDBE5E9DEDEE7E2E3E8DDCEDFDCDBCCD1DBE9EEE9DFDCD6CAD7E2D4C7D0D4D9D2E1DF -D1C9C5B9B9C2B9B7B7A2A6A7ABB5A2ABA1B2B3A7A9A6B29C9C9F90907F839E7E7F9079797C -71746D686872716C6C6860716A6A726D6D6A747F727E7E76826D67728EB77E798277A68D7F -686C7E7F7E8E907783726882828988898D858E8D747E6363716D68DCB06D5C6868677E7F7C -7F7C747E7C6889A59E8E9B97BAB5A9AFC0A6AAA2A6B3BAB8B0B8C0C2B9B7A9 -DEE1E0E5FBF1E9EFFAF0F0FFF7E8EAE9DDE8F1EEF2F6F7F9EDE7EEEBEADFD7D5DBE2E1DDDD -DFE7EDEBE5E5E7E3EAEBE0E6F1EEEEEBE5E4EDF4E8E4E7E6E2E7E8E7E2E2EBE8E7DBD1D7E7 -E4E9EBEBE1E5E9E7ECEFE4E7D7DAEBEAE4E0E0C8C2D4E0EAE8E7EFF6E8E8E2DCE2E1E6E1DB -D5E1DDE7E1D3DFEEEEF0E8E9E3D6BF8377D0E1D0DFE5E1E6F0E2E2F38961B2E9E1EADFE9E9 -DAE2DAD6D3CBB9A6C2BFC7C6C5CDC1BDD3BEC2C5C1C8C4AB947E8BA689949882A19E92A295 -747C89838588827F83827E777785898B8982838279767C7174726C717E7E777E8277827472 -7C776A6C777C76767476797779837C7E676D897C7C858372776C6077B285747E7692A58971 -6879857F83887C8983676C8D798582797F7C8283796A606C746176D76D605C61685E5C5E67 -6D949879859F9CA2AA95897F85928D8E8E9895A294728998AEBFBFB7A68390 -E6DDECF1F3F8F7F4F4E9EFEFEBEEECEDF8F0E8EDF3EFE3E0D6CCCED2D2D7E4E3EBECE5E4DF -E4E1DFE5E6E7EDECEFECE8EAE8E9E6DEDFE0E4E6E7EFEADDDFE9E9E9E7E9E7ECD9CEDADADF -E9EEF6ECDBDBD9DDE2E2E2E1E5E3D5D9E0D2D0CAC4D2C2CCD0CECBD6D2E4E4E2EBE7DDDEDA -E6ECE4DAE1E8E4ECEDEFE4DDE5EDE5CBA79E8EABC4C3C4C7BAB0C3B7686082BAA197949F9C -A68D887E777E7F7E858D8E88897E747F7E7F888E83857C797490928E927C88897F7E7C798B -909B8898908B8B8985857C7C898590827F71797974767C7C8376728998908989858583857F -89746D6C7F8889897E7F898D797E76686A797E748582767C766C76B39C90909E97B39C958B -797C77839083777E716179827C797E767989716C796A68726C6AA7CB6C6060595C60609461 -AA836076AAAA9FB2B2948E9288899290979882959590857C858B958B979F9F -E8E0E9EEF8F6EBE8EBECFEFAF6F5E5CED7DDE5E7EDEBEEECF0F1E1E6EBECEFF7F0E9EFF3EF -EBE9E4E9F5F3EDEFEBEDEEEFE9E4E7E9E5E9F1F1F4F6E6DEE8EDE8E6EAF1E8E0E5E4E2F5F4 -F6F2E7DBD6D9D0D0D5D4CED9E7CABDBFC2BFC4C3BBC0C3D5E0DCE7DCDBE2DAD2D9E0D9DAE6 -DED9DDE3D6E4EBE5EEE6D2C3CBE2C9B797826D717F8290928D948D977E6A61828B90979089 -8B837788888B9B908E8B8E8D858588908E8B928D7C7C7E899294928D90888277797E888D88 -948E928B8E837F857977888889887979768585899C89858E74829BAE928B8E83838D7E8382 -797272777E747E82828D76747279766367767688898B8B88888DB8CACBDADAD6D6B8C6AA95 -8879839B897E76796A68747F7C776C7C7C747C6A6C6C6D72716CBBA76A5B5B59585B6D8B5C -927C675E6C7E908E90898D888B7C767E777C90989FA6A1A9B39BAAA29E9C9F -FEFFF6F3FFFBFEFCFCFFFFFAF9FAF3E9E5EAE2E3ECEEF5F6F8EEEFEFF3F5F2E8E7ECE9F1EE -E7E8F3F2F2F3F5F2F3FEF7F6F2F1F7FAF6F9F6F5F2E6DDE0D9D5DFE6EBF3F7EAE6EFE9E8E4 -DEDBDDDBD4D3D7DACAC8C4C9CAC2D7DBE5F0E6E8EEF0F2EFF3F4EBDEEBDDE2EFE6DBDDE4DA -E1E9E7ECEAE8E8EAEBDEDDCFB89B7F6A6A748382858B8E9592979285886A67889089858885 -77858282908B82837F797E89888E9283888B6D7785887E88828594857679797E85987F7F88 -949597898589897E9295948982838388857E898B928B7E8394A5908B7C7C797F82827F7C72 -7174857F747C797F7F8377768E7763686C797F838982887F7FA7D1C7CBE4E5BBC8C0C7887E -857F8D9285836A6C677282827F858279827E777E7C6C76747268D7A25C5C585859585B5868 -A55B676379778888A59C9CAAB2B7AAB5BAB5B0ABB2B7BAB9BDC0C4C1C6B2C2 -F2EBF2EEECFCFFFAFBFFF9FAF8F6F7E8F5F4EAEFF7F3F2F3F3EEF2F9F2EFF6ECEAF4F4F4F2 -F4F7F8F9EBEDF9F5F6F9F3F5F3F2F5F9FAFBFBF8F3F4EAE4E5EBE4E7EFEAEEF6EFEDF5F3F1 -ECE7EBEFF1EFEFEEF0E7E4E4E2DFE2E4E7E0E8F6EDEEEBE5ECF3F5F1F1F3E9EBF7F2ECEDDD -E9E9E1E8ECEEEDE1D5AB9F7E74727E88898D7F838D858382857E88827960636877797492A6 -BBB9BDC7BDC2C594838B95958D887E7E79798D8E888E8D888D8E827F85768590888D8B8B90 -7C7C838D89888D8D8DA68D8E907F85928B89857F797F858D978D7C7F897C858D8377897767 -767E7C83857E829779778882746D63637E77839C7F7E7E7F7FD2D4C1D0EDD2CFC4C9A28283 -777FA7827F726A71637E8D88898B897E8B927F8D7F6371766C74D271726A5C595B5B595C74 -AF5C7463A9C2B2B0C5B0B7BBAB9CA694A6B7BEC8C2B8B9AEC4C8C6BFAEB7B8 -FFFFFFFFFFFAF2F1FFFFF8FAF2EFF2F2EEDEDEE4F3FFF9E9EFFBFCFEF5F6EEF8F8FAFEFCFC -F8F6F1EEEFF4F4EDEDF2EEF2F4F6F7F5F2F4F6F6F4FBF1E5DDDCE4E1E8EAECEFF4EBE7F6F6 -F8E7EBE4E4E7DDD4CFC0C0C9D0D2D2DADEDBD5EEFAF5EFEFEBE9ECDEE1E4D2C0CBD6CBCED4 -DDDCE6E3D1BFA17F89776A74828390A28D8B8B8D9C908B76D1E8E1CAA2CDC4E2DEC9E2F5FE -FAFBF4E0D1BD948889899085827E7F85888E8E8B88908D7F8282858590837F8B857C8B9085 -83827E7C948585A1958B927F7F888389948D7C7C8B888D9B83828382828B887E83796A6A6C -7483837F82797E7E7689827C6C6C6D728277928B7C777977A9E8E3E5D4D3E4DCCBB3827F82 -7F949583796A6C677185838E8888828B7F7F8E8B767776726889BF5E615858585B59595B88 -9F887E67908B9BB2988D9E8D94908D94A5A9BEBDBFB794839C8D98979E9798 -F7F2F3EEF5F6F7F6F7F7FAF8F5EFEAE3DDDDE2E6F3F3F7F2E1E9F3F3EAE5E8EEEFF9F5F5F9 -F6EEEAECF1F5F7F5E9F5FFFBFBFEFBF8F7F9EFEBF6F5F9F9F1EFF6F4EFF5F2F1ECEFE2DBE7 -E1CBD7D9D5D4CDC7D3D5DDE3E1E1D3CDD3E5F2F5F9F7E9E4E9EED9DADED0C4BFC4CECFD5D5 -DDDDBFA1979B74727F8D8D929E8B898E838E90829BB5B7CBFBFFFFFFFFFFFFFFFFFFFFFFFF -FEE5AF7F7F777E7C6D747271747C82747E907F97897C797F838385928282858283857E8585 -897E8B8E838E929492888D948E8B8582797C828398908885827E898B797F7E79796D6A6A79 -7F82838288837471858877716A5E6C85748BA1888B90829EE8EFF1DABFE2ECD6D1988B8D85 -9095798B836A72858B95856D7F888E8B858B8888827E796A63C5BE5C595858585958585995 -88685E60606A747C83899B8B9C947794A7979C9CA1A5B5B7B8BDAA98B0AEBB -FAF6F7F3F4F5FEFAEEF8FFFFFFF5F5ECF1FCF0F4F5ECE3ECEEE1E2F0EBEBF8F6F6FBF6F9F6 -F5F4F3F3F6F7F7EFE7F1F6FCF8F8FCFFFAF5EBECE8F1F8EEEEEEE5E7E9EEE8E7EAEDE0DDDA -E2E8E7DBD6DCEAF1EAE2E2E1E5E4E5E5E1E2ECF5F3E7EBF0F4F9F2ECF0DFC0C0DADAD5DAC3 -A7A2987E797794959090959489929B89928B83AED6E7E1F7FFFFFFFFFFFFFFFFFFFFFEF3D4 -A789858D858D8379797C828E97888E9294978E8879837F8B8989888B837F9082898B7C7E82 -767C88838D958D8990988E909288837C7E8989858285857F85887F82827F7E7F716A7E887F -827F7C7C827E6D7282797E746174746D799583837F7F7CD2EFECE9C9E0EBE4E2C48E979483 -A692769E82676D94888B8968748E88838B958D827E7274716CCF8E775C595B57595B5959A2 -61605C5B5E8B959092858B988E979E898D8D8E9FA78EA1A7A79E8876858894 -EAEFEAF2F9FDFFFAFFFFFFFFFDF6FAFFFEF6FCFFF3F6F3F2F1F4F2F1EFF6F6FAF9F4F3FAF3 -F3F6F8F6F5F9F9F5F8FBFBF5F7FBF9F9FCF1EFF6F1F6F4F2F1DFDFE2E4E9E1D9E9E9EBF2EF -F3E8D7D7DAE5EFF3ECE4EEF3F2F2F2ECEFF3FBFFFFFDFCFFFFFFFFF8DA988DB5D7C29E8276 -837E7C8994A194928B948B9590839C9E9E9B90BFDDF6FFFFFFFFFFFFFFFFFFF9F4DDB0A19E -978E9290827E887E8992908990888D948E8382837C8D88827F7E7C7F8282747E7C76887C8D -988E9492928B839588888889837C7182857E858B897F827F777972797F857E6C6C7C7C8382 -798D7C7C90716A7E7682836C6A7F7E689F927E908583BBECE5F0D6D2E9F3DDDAAB94948B95 -A577857967777F7E85886D747F89858B8382977F797F767488E26D5E595B57585859595E9C -615B5B61949497AEAA9EA99F929789B8BAB8B9B2A1A7A6AFA9A2A59C957F8B -FFFFFBFBFFFFFAFCFFFFFBECF5F8F1EFE5DAE1F3F6F5F5EEEBEDF6F2F2F4F0F3F8EFF6F8F4 -F6F6F1ECF0F3FBFEFEFFFFFCF6FBF5F1F3EEE8F5F9EDE0ECF2EFEAE5D9DDE2E8EAE9E1EBEA -F3F5F1F5F5F1E4F1F5F3F7F8F2F6F3F8F9FFFFFFFFFFFFFFFFFFF3F6D3BDCEA27F9282797E -858D928B857F777F89948B7F898598B7AB989BC4F3FFFFFFFFFFFFFFFFF4E4BF9E90928E8D -928D7C89887689948892908E8894958282827F85897E828276767F7F7F7F797F77727E8289 -89948D90898D8E9089838E8D6D768B888592888285837E82797C82897F726D748D8B83778B -77839477726D797C7C79686C79727295A68D8583779CE4E9EDE4BADAEBCCD9BB8B887C71B0 -927F7F72747983827F796872827C83888D88927C77887C67C2D0605C59585858575B7160A7 -C1B777678E988D957F8D7F6D7F7F72A1AAA2AEA9B5AFA2A9AEABB0AAB0AAA9 -E8E0DEEEF9FCF4FEFAF7FDFAF8F1F3F5F6F8F1ECEEEBECF3F6F4F3F5F6F0F3F8FBFBF9F2F7 -EFF3F0DFECFDFFFFFFFFFEFFFFF7F1EEE4E8E9E4E2E8E7EBECEFF2F1EEE9EBF1ECF1E6E1C9 -C4DCEBDEE5E9EBEAEBF2F1FAFEF7F5F4F6FEFDFFFFFFFBF8FFFFF1F1D7AEAEC89FA2A69889 -94928D947C6C887F7C7E8E8D94A1AA9B948E8EDDFFFFFFFFFFFFFFFCDBBE9C9E9295928988 -857F857C7C89838D8E887E887E7E797E7E7E77778272747F7C777F7C7F7C7E767E897F8B89 -888D8E82838B7F7C857E727F7E7C858B8B8B8B82727F7E7C7F7F7F90827277888588837E76 -82838B7F7683887E827663777C767C9E83909E8D8ED3E9E8F6CBCCCCE2D6D7A19090959FBF -898B7F747C79827474716A727E7F838B88887E7474767C63C19F636A5C595959595B595B63 -BECA7779CAA7A9B0947F9CC2C3AA9BBFC7C4B8C2C4B8C7C4CBC4AEC2C4BBCA -F4F2F8F6F6FFFFFFFFFCFFFFFEF7F9FFFFFCF8F7F4F5FFFBFAF9F3EEF2F6F6EFEAF4F0F8FB -F5F7FBF9FFFFFFFFFFFFFFFFFFF6E8DAD7D5DAE4E3DEE2E1DEDDCFCBD9DDD7D9DDE2E7E2C7 -CADFD2E4EAE8FAF9E9DBE4F8F2EEEFEEF2F4FCFFFFFFFFFFFFF9E3E0B8BDB7E3D0AB989B94 -8282897C7FB3E1CD9EA19298A2909B95B7C7E0FFFFFFFFFFFFF4D1AB8EA19F888D92828597 -89798388888D888383837E83827E79797779827976797E7E857E857E7F76718D8589948B88 -8B858B978E8B88796D747E85837F85837C797C7E7E83797E7E88837F777182897F83887E82 -838377777C7F857F72677283798592858D92889BC3E8ECF7E1D2E7E4D9E8AE8D9B9079D6B0 -88897E6D798277797E636D79888B7C8B83837F747971686DD2745C5B5858585658585B5C5B -5C685C74CFBAD2C9947E89C2CEAEBED2D6C2C4D2D0CEC3BDAFB9C7CACBC4CB -E5E0EEFBF3FEFFFCFCFEFEF3EEEBEFF8FFFFFDFCFAECE7EDF9EEEEEEF1F2F1F1EFF2F8F2E5 -E9E5E7F2FFFFFFFFFFFFFFFFFCFFF6DCE0E7DBD0D7C4C6DDD1D2DADAD6D5D2D7DADBEDE9E5 -EEF5F2E9EAE7ECE3E0E1E8FFEFE5EDE1DCE7FFFFFFFFFFFFFFF1D6D6E5DDDEEFD9A590AEC4 -BDA28D7F77C4FFFBF2F2DEC1A2A6CAE3F3F4F3F9FFFFF9D4B7A292959F898E887F89907E7E -858E82898D89947F79827F827E83747777797C7777837E7E7E777C726C7485908382898B7E -858889909085827174858882838883828D887F837C7C77887C837F717490858D8B7F797C85 -82767168838389776771827983A1AE838E907EB7E8E9FAF6CBF4FFE5DFD29488888895C485 -89836D7182837F746D6C71827F777985897F8B7779836782DE68895E595858585858585859 -595B5C82CE859B9FA7A6729EA589B5C0BFBEBFC2C4C2BFBAA5B9B8BFC4D2CF -E6E8EEE7F9FCF4FFFFFFFFFFFBFFFCFCFFFFFFF7F6F6E9E9ECECEEF2EFF2F2F1F5F6F1F4E9 -DFE4E8EAFBFFFFFFFFFFFFFFFFFFFFF8F8FCEEE5E2DEEDEFD9E6E5EEF8F6F7F4F5F4ECDDD9 -E2DDECECECF2F8F2F9FFFFFFFFE8C4BACBE5FFFFFFFFFFF6EDE5E3F6F9EAFFFCE5BF89BDEF -F9DBA5A6BFE8FFFFFFFFFFF8E9F2FEFBEFE8E9EEDAC7A797A69B959289838288898385827F -858889908D85777F82898D83838E907F777F837E8B747E858D7774748D8985838E8D828589 -85828B7C7C77767E89858888767C857C797F7F77777C7C7C85826D797C83857C8382797E7F -7C6D74837F898B71748383748DA68595888EA9DCF3F7FBDCF3FEF6E8EAB79C9C9583CE9C82 -8D766D7C8D8385776C6A7F7C7F7E7F8589837476766D60A7B36163595B5B5E59595B585959 -595B60A6C36A67726D826A83A9859F9C9CAAA19B728E9279888E909CA7A9AA -FAFDFFFFFFFEFFFFF5FDF3F1F5F5F2FEFFFDFCFBFCF2EDF2F3F3F3F6F9F9FAF8FAF8F7FBFF -F9F2F4FDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9F8F4F8F7F3F9F3F6F1EBDBE9EEEDE2DCE0 -D7DDDBF1EFEFF9FAFFFFFFFFFBE6DCD6C6DDFFFFFFFFFFF5FAF6FCFFFFFFFFFEFFDDA7E2FC -FFFFEFF5FBFFFFFFFFFFFFFFFFFFEEE5E8E5BD988B8D9B9790888D8B8D8E8877828B7F8590 -8B8990857483888D8D8D88888E838B858285857F7E857F777679888D88827C837E82828282 -827F7F74767E82797C887C767E7C838582897E7C7F8285777E72717E88767982778283837C -6D687292828D837C8D897776AA9588859097D7F9EFFCF9DAF6FEF4ECCB9790887F9CC79B85 -83716A7782837E6D686C837C837F7C85857F7E74767163CD83748368605959585958585859 -58595C8DB97C749C9EA17C8288779298B09C90A794B3BFC0B7959595907E82 -FCFBFBFFFFFFFFFAF7F8F4F4F9FBFFFFFFFFFFF8F6F4EBE7EFEFECF8F8F3F5F4F8F6FEFFFE -FFFBF3F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6E9E9EDF5FDFCFCF1F1EBE4EAEAECEAD5DC -D9DFEEE6D5E3E0E0D5E6FFFFFFE7D0B5C7EEFFFFFFFFFFFBFEFEFFFFFFFFFFFFFFD4D5FCFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFAEBDBB79C948E9F9C857F8285838B857482897E888E8888 -9089888B8B8E957F8D8B8383888289888D887788888D7F72899088908B85858379797F8383 -8D857474797979827974777677837F83857C7C79888277776D778E897E8E77858B7E838874 -72767E7C7E776C8289837C9C9B85908D8BCEF2F3F9FFDCF2F8EEEAE5B28D8E8882C5978288 -7C6A767477837F686D767682837E7C88836C7974716D79CB637FA6B7AB9B7F5C5958575857 -58585B8BA260608572635E7C7179636C88A2BFB37EA7AEC4AABFC4B9B9C7BD -FFFFFFFBF9FBF6FFFFFEFBFFFFFFFFFFFFFFFFFCFFFFFFFCFBF9F9F6F1E7E4E2E5E5E7F1FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFAF8ECDFE1DFDDEBF7EBE2EE -E4D1DACA9E9298C0C6DDF7FFF7BD97A6DBFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFBFEFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF9B88D948E989288887E838E88777F858B90928B7F8E8582 -8288888B9582859485839485838E8D8E83837E8D856D7E9C828B9090828888777E887E8590 -777774777C777972767E767F777E897C7C8385888D7E76727C827F7E7C8279798B837F766A -748283837F71777E7F71889E83839489A7E4F9F3FFEAE0E8FAE8E9C492858B8B9CB8857C7F -6C677E828579766A67777782827679857C776C77746A83C261A9C5C2C2C7C6BDA590825C58 -5B5B59BF9E5C5B5B5B5C5C5B6C7E686D747992977E90AFA59FA58585768385 -F4FBFEECE2ECF5FAFAFFFFFDFEFDF5F5EFEEFBFAFFFFFFFEFEF8F8F3EFEEEEE7E5E7DBEFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8F5FBEFE8EEF5F9F1DEDE -E1D697889EBFC4AFAAD6F2FFF1CCA9A6E7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFEAC49C828B7C778E8985837F797C7F8E898E8D888B8E858289 -88888E89858B8B888885828D8983887C79797671717E747C79747C837F797F7E827F7F797E -767C8B837C746C797C7F777E837782887785987F837C76837E79727C7E797985827C7C6D77 -8E827C88727282887777AA898B959083DEFAF1FCFAD4ECF2EBE7D69C89887976B29B887E74 -716C747C7E7C6C6A68727C7176887E797C716C716C609EAA619BC7CDCECBC3C3C8C4D06C5E -5C5B5BBD8D7E5C5C5C5C5C5C60687F9BAB90858D8389959B8D978D82949CB3 -E3E5E4DBD3DAE9F0F0FBFFFFFFFFFFFFFFFFFFFFFFFFFEF8FEFCEEECEEE8E7E7E6E5ECFAFC -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFAF6E9E3E0E4DDD3B9AA -B0C2BEC5AEAB959E97CAE8EDDFBFA5BDF2FCFAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFADBD3CBB39E9085777E88767974727C828D8B928B9092838B8B778589 -8D89858E85857F7E8B82747974747679777476897F7E7E717E837E7F89828B8885837F7776 -7F7C7E7C767276857C838D7F7C887F8B8E79837E747E797E777F8279797F79887E88746C8B -888B8D7474778983769C98948E9485A9F4F2EFFCD4DFF6F2D9E6B57F7E837E88A27C6D7C6C -636A7977827F6A63777F798D72717672726D6D726161C279637C8BB3D7E2DAD0CEC4C4615B -595B5B835C5C59595B595B5B67688D98948E856363676D7F838D948D887E8E -E7DED9DFE0EBE4EDF5FAFFFFFFFFFFFFFFFEFAF9F8F7F8F2F1F7F4EBEEF8F1E8F2F5FAFCFF -FDFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCE8EADCBF8D888DA7C4 -DBE1C89285928390BFC4C4CBC9B3B9C3BDE7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFE3CEBF8D88857F7E768D94887F7C7E8B83828D90888D8D837C88828389838B -89827E7F8276838E7E85796C77767277747C85928879857C7E7E83797F8990858272777C74 -77837C7677747F7E828B8D8D8B898388897E72838B838B7F8583827E7782827E88746D7F88 -7983796D6C927979978D7F8B837C9BD2F4E8F4DFD0F0F8E1E1C694898889858B777E74776C -6877797E857667727C6D6D76777979716A726D7167A1BE5C605C607297BED7DCDADDC9605E -615E63B0635C595859595E7E9C6A8BAFA9AAA7A9A2A2AEAAA5A1A6A7989C8D -F0F1F3F4E4E4E4F2F8FDFFFFFFFFFEFEFFFEFEF8F5F6F5FBF6FBFCF5F0EFECE8F2F6F3F6FE -FBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAE7AF89909EC2DDCCCA -E1D3B59E9F9CB3D4F5F3C09BB8C3AFA6B7E2FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE5BF9B838382798592897C8588798D8E838B8D90898E8D7F837F7F898B8D8888 -8E8883827E89888D8279797C7C7F7E7983857F7C7F8885887E7E887C7C928574798585828B -888989768D89827F8B8D8997907E8D837279837C908E8D7E897E7C828277888279747E827E -797C7274797E778DA2898D989092BDE1E6F1EAC2EEE9E8D9DDA2838583828E987279857163 -71747682796A6777767E82717C8272727774777E72BFAB6871615C5E60616D95BDC9BD5C61 -676D60A98561585C687E8D9FAA6C7E92BEB3B0AEB8C6CABDB9AEBEC7C0C4C3 -F5FFFFF6E9F3EBE6F1F1F6FCFBF6F9FAF8F8FFF4F5F5F3E5E3EBE7F1F8F3F3F5F6F5EEF2FA -F5F8FCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDAD5E7BFC1CDCEE8 -E4E8DADFC4C4DBF2FFFBCE95C7DCD9C7C0DEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFE9EADCCBBB9B8B979292948B838585858E8989928588909590858D83838D8288948D928E -7C7F838885837E74797E777E716D837E7E7F7F7E7F8E8B7C8D7F838D7E74798290888B8385 -8B797E83828585858D8D8985888B796D797E7E7F7F858882797E727E8376897F6C7E8E797F -726D6A7E7F7476AE888889827FAAE7E8EDF6CFDAE9F4E3DFBF8E8B7E777E987C8276777268 -71827E766D6C6C828B79727F77827C717779837C6AC1B05E60595B5C5C605E5E606A6C5B5C -717F74CF635B6783A6B5B9C4BD6DB3BBCAC8C1C2C8B3C1C3B7BDC4C2C2C3BF -E8E8E2DBDEECE5E4F1ECE9F3F7FFFCFBFFFEF8FCFFF8FDF8F5F6FCFFFFFEFDFBFAF6F3F3F3 -F2FAFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8C5A2AAD2E1 -DDEFEFEDD3DFF0FBFFFCDDC2CFE2FFF6DBEDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3E2 -CAB2AB98888E7F89908D7C7C767F8288827F8D897E8888828B887E858E7F828B888988767C -7F7E827C898982897E8282727C8990A79879898B85838B9C90898D7F76748E8D888985857E -85837F7F897E8E958D89827C727774798988838985838B82797F7F827F907F717F7F7E7977 -6C6D727F797E9889827F858285BDE2DBEADEC3E6F0D6CDD5A5838D79838E907C76766C6A72 -747E82776D6A6D77887E827F7F7C7F76717777688DD276595958575B5B595E5E5E5B5C595E -827F82D3638EC2A290AFC4A5A968B5C3C6C0BDA6B2B39895AFA7BAB3988E9B -DED9DDEBEBE4ECFCFFFAFFF1F1FFFFFFFFFFFAFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7BABBDEEA -DCEBE7F1ECFAFFFFFFFFEEEDFCFFFFF6D4DEFEFFFFFFFFFFFFFFFFFFFFFFFFFFF1D9C8AF95 -9783777C7E72767167767774888E8288948D8B8E8883827E7F7C8990828E8E8E8883857F83 -85898288898D83827C777E908D907776887C898985837F837C837E6D829082898B8B7C8597 -8E839082908E888D85777476717283898289858B8D898982827F777F837276727F897F766D -6D74828277959E8289908288A2E0E7ECF0CEDFE7F2D7DABE958E888E89A28E7E7E7E6A6774 -83797E7663617C7F777F827485826C7676716C6AB5CD6A5B5B5856575758585958595C5C5B -6A718DCD5C687E858383979889639F887F8D94AA9C8D9C8B978E9BA99B8E85 -E4F8FFFDFEF2F2FFFFF8F8FFFFFFFEFFFFF8F3F8FDF8FAFFFFFFFFFFFFFFFFFFFEFFFAF5E8 -D4E7FAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4D6E2F1 -F6FBF8FFFFFFFFFFFFFFFFFFFFFFFFFBDBEFFFFFFFFFFFFFFFFFFFFFFFFEE4C7C3B7A59B97 -907F837E77776C7979777E79797C7E837E7F83888E828D7F838583928895958992897F9083 -79898E7E8388796D797F7E8D8B7C858B888B929E92978D8D907471948D8D949289858D897E -8982838883858B837E7777747E8E8989887C858283857F8882777E8982686D827685836D72 -6D7F7E7983A285858389858DD6E7E2EEDDCCE8F3DBD9D4928B88897C908977718879677174 -777F836D636A76727C8285837777797476776C7FC8CB675B58585757575759575759585B5B -5C72B3B35B6868727685886D6A607277857F9295909EB898957E797C95899B -EDF8FEFBF6F1F4F4F1F6FAF6EFEDE2DDDFD9D2E5EEF5F4F9FFFFFBFFFFFFFEFCFBF8F7EFEA -F0E9ECFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFC -FFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEAD7D5C5A994957F7F837C -77747277727677768588838E8E858989827F89827F837F8285838B9C989292898288857788 -89858D8583777F888288837F857F7C8BAFA7A69E8EA5A69B928B7C8D8879857C8294898989 -958E8D92907F90827774717E889B8B7F8D7C838E7E778B7F7983857F76727F838B76746768 -7C7E767C97958988887F95C3ECDCEAE4B2DAECE4CDD5B094888D897EA1837977796C6C7179 -7276776368726C7977727C7F8271767174797182C6BF5B5958575757575759575757595B68 -7C60B0A58D9B989EAF9B7E89956188A7A7A1909094898B9C9289A99497989E -F4F0E7F5EADDE4E2DEDEE9DCCAD7D9D9DFDBD7E1E8EAEEEFF7FCFDFEFEFFFFFFFFFFFFFEEC -EEF6FDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAEBD6BBBFBEAF9E95838E888282 -7C727483827C7F7E7285897C827E7C7E887F77838389798288858D94797E837E797785887F -88837E7F767E92898B8992888D908989948389837E77717C898B958385897E767F7F7F888B -7F82857E837F7F7F74718B898289838E858282837F837F7979827C76727E897C7977716874 -837E72949E9582858383AEE1E7EBECC8D2E5F1CCD5C78D88948885958D76777C6D6C727679 -72686A67636A6D7471797672767463726C6874A1D3925E5857585757575757565757585E76 -8B76A292605E5C5E6A9FA7B2B06890A79EA18D8D8D9B9B8D8E778595899090 -E5E2E8E7E9F2EEEEFAF5F2E5E7EAE8EBECF2F8FEFDF1FEFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAE0C7BEB7AFA698959B908E8288837C79 -797C7776837C7C88767F887C8283827C7C857E92988E8888768B88827F85857C958E838989 -85796D7789908B888D828885888889908E858B8D7283828D948D8E95857E85858E8D909482 -82857E777C7E6D6C7C7F8B8B798382837F7C8576838B767E8D83726D7E7C827772716A7185 -827185A98D8B8D8B7CA5C7E1D7EDD7C4E2E4E1D2D7948B7F8889898E8E767C6C686D727F7E -836D6A6C616D777977727E7E798277767F7676B2D66D60595758575656565659575759616C -776AB87F60899E715C959476715C606A636A7E7C7F92AF98908BA28D9E9494 -FAFEFCFCFDFDF6F9FAF0F2F8FBFCF9F8FBFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8DECCAA98A99E9C9C9C9085978D8890897F8B83 -88897F837C77747C7E7E7F82857F7F8588928E7E85907E89907E8D978B889090858282797E -76768B8D85858E9289887F7F897E8D88838D7C72829E8E8E978E8B8D8982908D859C908585 -7F7F85857E6C7C7E898B8388888D8383897E898B8282897E7C76717294897F727E6A717F7E -76779C908B94858B88C4E9C9E6E9B5E5E5E8CFD9C28D90897F839B8D887F776C6C6A767972 -777167617279716D767474837C747E7E747F79A6D06A6A6C957C58575857585858595B5B63 -7E6DB368679883675C5C5E5E5C5B5E61676063616D61688D857E8B767F766D -F6FEF5F9F5F1F7FEFAFAFDFFFBFDFBF4D5E5E2DFEFF6F5FCF9FEFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFAFFFFFFFFFFF7D6AB958E928E8B97978E888D8B7F9283898D828288 -8B837E857F7E7E7C85838290857F83898E90908E7E9088838B8B8E9F8992958E888285797C -8992898B888B929285858E83858E7C8990727F8B8B8E8B958B8990838B9892948588898982 -7F837F6D6C6A7F887F898585858B857776837F7F8376857F85746C7E897C747474727F8D82 -79A2928389988888B8D9DED6EEDDDAE2E8DAD7D69794858B8E7E9B887683746772777C7783 -7968676776776D7676777476767272797F7985B5B9605E5E776757595956575758585961BA -AA67605B72AB637263605E61635E5C605C606D5E677289A59E95888B9C9FA5 -E5EAF0EFF6FFFFFEF7F1EEE9D7D2CFC7BDCCE4F2F2EEF6FFFBFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF9FFFEECD5BEB8A9A5A790888B76777F71717979767E898289928D8D -978D8989887C898572858976838B8E8B89857C89857F8E83798B8B79828D837F8371717E88 -7F8383898B8890888B888B8D858E8B777689858D908B8B828382888E898D837E8582837E7F -767472687185797F8E79888288898582777C797685837785856C8295837E7C726D83857474 -90978B898D908E9CD2EED5E9E8CBEAEBECC7DBB78E7E8D897F929B7F7F7C726C727F7E7C79 -6D63607177777E71767C7E797782727E8E7195C7955B585B59575856565656575857595B5B -5B5B585890987E7460617761685E5C6A7477858990BEC2B3C4C1B2BBB2B9BD -FFFFFFFFFFFFFFFFF0E1E4F1E5D7E2D7CCDAE5E3FEFFFCEBF3FCFFFFFFFFFFFFFFFFFFFFFF -FFFFFDF0FCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFAE9CDB3928E8E8D9288828E7F85857C7C7F7E82828D89828985888590 -8B8B8D85858988887E7E838E908E92958590927F85887C948D7F8B7E8888837771778B8283 -7F7F8B7F958583929292888E92837E83899E958388857F748882898E927E7F79828D83827E -7F726D8889898D7F7F8D8882837C767E82827C887C8892777477857F7E8871717288837489 -A68B7E8B9E90A6BFE4D2DEDFBEDAD7EED7D7D5977F828D837CAB88777F7C6C71767C767F72 -616A6A6C827C77767C74767F7E797776767988D57C61595758585857565658585B5B5B5B59 -5B5C615B77A9B9B594A9A279986D89C2CBD7A1C2CBBFBFBDB7B5C7C2BDAEAF -F7F1EDF0F5EFECF1EFF3F7F8F7E1F7EFE1ECF7F4E2F8FAE7DDEEFFFEF8FFFAF2F3F7FBFFFF -FAFBE8DFF5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFCF5D9BF9895AF9B949B897E857C7488827E828290838B8579897F8B97888994 -8D948282827C837C8D857F9E928B9C8982928D85888D8D8D9283839B927977888285928992 -988D8994958D929485929585858282A19788888983888D898D8D897F7974747E7F7E797976 -747683898D7E8E83798D88797F797F7F82887E85828383767783887C8377676D7E74748EB0 -888983838888BAE6EBD6E7D1C8E5ECE8D6DBB389858B8977929F88857F71687179837F7971 -61616D747E77727677768283767E6D716D7798B7605B595858595858565657585B5E685B5B -5C5B72615E7C9BB0AF9C8E909068719EAEC898B3B8B7C1C2B39EA2929CB295 -E2E9EBF1F5FBFFFFF9F1E5E5ECECF1F7FEF6FFFBEEEAE6F8FAF4FDECDAFEF8F8FFFFFEFAF1 -DBF2E9E3F2FEF9FFFFF1FEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFCFAEBD0A69EA18E909782857F7C76777E7C767C79778B8B8B94898D858B9290988D89 -9F8B899483829C90839892859B9C89888D978D908D8D9C8B85858B7E7F7F89958D7F859088 -898D8992958989828D8577797F92958D948E858D82858D8D857F7C857983887C7F797C7476 -7E88897F888D79888D777F7F767C838383858579897C6C77857C85897C6A72798282799B98 -88888D8E90AFD0EED5E7E7BDDBDFE9CADECB8E90897E8388A2897C826C677271778389826A -6A6167776A6D7172747E796A71777172766DB57F635C5C5857595B595759575B6063685E5C -5B5C8B635C6172958585908D6A607EC1BDA789C3C3C8C4C2CAC7BFC3BFCABD -EEFDFFFFFFFFFFFFFFF9D6F5FFF6F9FEF3E8FFF5FEF6E1F2E9D9DDD9EEFCFBF7E8F0EBDDC5 -CFE5E5CDDDF1F5FFFAD6F2FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFC -F8E8CAAF9BA7B3958982767277777172727274777C77898B8B9094838388838B8E7F888985 -898B8583838D8E92928B8E977C89898D9E9C9C889092888B8B85888594958D9490958D8E92 -7C92927F948D8392887682908E89858D85888977797F7F7E857F8282857F88827976797C82 -887F88897E82897E7C88828285838D858D85837F7E7274838E7C7E826C71797F83769CA288 -8982908D95C3F2E2E4EDCCD2E5ECD7D0DCB28B978D8982979B88887C6C717176827C7C7C6A -60677463747971727C77797279747F6D6A88C4725958585757565757575757585C59605B5B -5B58725B6861595C92828589685E63B0BEB98BB5BDA9C2C0B5C8BBB3CCC4BD -EAF4F5F1FFFFFFFFFFF6D5E9EFECDCE4E9F2FFFCE4BEBFCAD3D3D7E1E2EDF0E8D6D5CDD6DC -DBDCD7CBE3EEF6FEE4C0DFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCF8F9D9 -C0A29288988E7C7E726A6367616768686779797C8D8B88928D8E908B8D8388928D88829290 -8594888D988B8B908B8D858D837C8D8E8E928D8B9294838583798898979298928995958B89 -927F8D958D929C8377929083828D827E767F9297838389827F82827F857C7E7E6A747F8E85 -7F83907F83827F827F88837F858B858888777C8274718288887F7E71747C797E837CAB9F95 -90A69294BBD7E9E1F4E2BDE6E4ECD4E2C28589928B8B8290828983716D766D7C7C79747167 -67777972797672767F7672797976726D71A7C6675958585657575757565657565957585771 -59585B5959596067725E5860615B5C6DA29F82AEC5C9BFC9B9C0C297A2ABB9 -FFFCF9FEFFFFFFFFFFFFF5FFFFFFF2E8D9CED6F3EFD6E1EEE4C8BDC4BDD4DEE2D5CFDAEEE4 -DDF1E8D0EEF9F6FFE2C1E7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEE4CEBF9B -9E9B9483777C6D6C726A636C61686A716D7E7F798388797F89888E928D8585857C8D927C8D -8D8D8E92838D8E8E828E827E8E89909594928E928E8B887F8E9282908B8B958E9B928B9590 -9097889285777E7F898E858E8B8B7C7985888D908B898982837F8E7F7F7E716D85798B8D7F -8B8D898E857C76858379858D8D7F888579838B76777789887E838272777E827C76AF958992 -8E9E90A9D6EEDDF1F1CBE8E1ECE1D9D09E8B8D8B8D83978B838874716A6A7E7C767C766C6D -68727682827F82768989747C7C7971727CBDCB5C796859575757585B585B5957575759595B -597F8E585868617676745C5B58595C61B2C279C1CEBAB7B2B79E8892979CA2 -FFFFFEFAFFFFFFFFFFFFFFFFFFFFE1B09BB5E8FFFFFEF8EFEEC29EA9BBCAD1CBD3CFF1FFF5 -F1FFF8F2FFFFF2EFECDDF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDFC0ABA79FA2 -97897C7C6D7272686363616A6D726C6A6A68677471717985858E90898E898289827F858888 -95898B948989898D92888B8B7F90909C978B949292828D94909E978597958594928D8B8D8E -839B92797C7E7F909489898D7E79827E8589838585858583897C7E7F796879838E908D8883 -85838285827F858285898889858D8D7C85837C717F8B82888D7776797682838395A7908B8B -8D7E9FC5E1D6E4F3DED5E0ECE8D6DBBA8B8B8D888994A2897F837661747E7E888583767168 -637976717774727977727472796D71679BC7AE5B5C57575757595C605C5C61595757585958 -58928E5967675E61676A6D5C595B5B5E7C6C618E97BDBEBDB2A9A79FA29895 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFEBC4D7E3FAFFFFF2DDE7ECDABEC7C3C2C2B5BBD0FBFFFF -FFFBFFFFFFFFFBF6F1E6E9EBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEE8D2B0B7A9A99E8D82 -7774776C716D606868636A6876766D7171776C717468717168767677837683857F858B988E -8290898D9488898E90928E8E8B8B928E8D97978B959B94979C8BA29E9298909294908E8B90 -8B858B838B908D888E8D897F8D9882887E898B83908E8B8D827E7F766D718389828D8E7E8D -8D85887E7C838B7C7C85747685897683887974777E7E827C7E72727C85837C85AF83959C89 -8D97AFD9E8DDF4ECC9F2E5F2DAD5CA9F9F8B8B907E9C9B8582857C6871797785897C6C6763 -717E7C74767772767672777676717668B2DC7E595B59565959585858585859565656575857 -579889585B585B5C5E5E605857575959585E5B6C94B5A7A295B9A19BA6A795 -FFFFFFFFF9FFFFFFFFFFFFFFFFFFFFEFDCCEF2FFFFF5F4EFE5E0CCCEC7B5BDC2C4CBF1FFFF -FFFFFFFFFFFFFCF5FDF5F6FEFFFFFFFFFFFFFFFFFFFFFFFFFFE7C8BDA7A7A6AEA68B89927E -7677746D716D6C76766D6C71686D6D68676D716D79776D7676636D6C6D74797F7C928B8292 -8E85889289859297959E90979B9F959095977E979598959892978D948989908985888B8B89 -7F827F90888B8D858B8E8892978D7C838585888E7F828B797C7C776D76837F83887E8E8879 -83887E7F7F7E8285777976747F857C7F7C7276828E827E8572747C79837C7EA99892959F9B -9FA7C5EFE1ECF6DCDEE9F9E8D9E8CBA6A5A195888BAE83838B7E77796D77907E7E7767676A -747C857F718279748379717179716C6DBBD067595957585958575958585857575857585758 -58A2795B6A595E8B795E59595957595B595C605B5B63636867616163636A68 -F3FFFFFFFFFFFFFFFFFFFFFFFFFFFFEFF3FFFFFFFFFFFFFFFFEFDED2E4F4EEDDE2DCECFFFF -FFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDE4CA9F8288978E9CA9857E8E8B827F -827772797E7F83776D7C797C767C7C747F7F7F85827F8D8B8D898D8982859594908D8E8985 -92908D95838D97858B92979292929295948292948E9E9C9790A29B838E957F8B90858E8E83 -7C908E8B89948E8E908E958B7E88897F888B7F85837F8B837C77747779797C837E82859288 -7E837C7E828379777C7C7277767F88726C77777E898D7F77726A777E7774B7A6898B888B90 -9CB2E4E1E3EAE2CCEBEDF6DBDED5A59C958D977E959085838282746A7C8D838B8371636374 -7C777C8377747E7F727C687477746D89CFBA5E59585757575758585B595857575757595857 -59A760595C5C595B63795C5B59575857585859688DA69F97A6A9AEB7C1A9AA -F1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5E7EBFFFFFFFFFFFFFCFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFED5B38E8D9BB3A69B907F777C7774746772 -7472797C7C716A7277837F838385798985898E8B8D838D7F8592858D929B908D958E92958E -8B95988E929C959B97949EA19C98908D9097958D8E908B94959597958B9B8D898D95898282 -9888948E92948B9CA17F8B89928988887F8B887E85897E7E76717F8285827F89858B7C7C8D -887C8985837E77777276797C7F7F7774747982897C797E6D77777F82839EAA908D839F9498 -B7DCEAD9EBEDC4DBE8FAE2D5E1C1959B97898E89AF928D888372726D88827C7E82686A6874 -827F7F837C76717C766A7779716D6D94CE7F5C595B58575859565859595957575757575858 -5B725858595963685B615B585C58585958595976959088858D9B9F9EABC8C2 -FBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFF8E9D2BEBFC8BDAAA28E88887E7977796A676C74 -6D72766D6C7672767E797C7F6C71797982797C798B837E7F887E899288838992909F97909C -958D959C9E97A5A192A6929C8E8D92958DA6898E9798948E95988E8E8D838E948D8289949B -9088898D8D8D90898992888585887F7C827E89947E827F797F827C7E8D827F8B827E857F88 -88837F7F7E7E79766D7E857F888D777474828983777274777C77827985AA95988D8392949E -D3ECD4E0EBD6D1E4E5E7DAEDD097A2908DA2799E9F838E8B88686C747F85888376676A7185 -7E7F897E7C85767476727279767672A7BD5E5C5858585758585658595C5C57575757595858 -76955958595B6163636C59595B5B585859616D95A1ABAFAEA19EA1ABB2C4BD -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFAFBFDFCF2D6B9B9A6B7C0B5A69897929792887783796D7F827E85 -7C7C767C7679827677777F7F7E8282777772727E767274717771727772747E7F827983858B -97A1A19E909EA197908B8988A59F899F9C889CA79795A59E9CAE978E8E94858D8282949C94 -888B898E94838389928589888283888B859B898383767E7E7C858B7F857E8B858989898583 -889083828385766D82797E8876797F6C828E7E7C826D6C779282837FB3AA948B9095899EBD -E3DFD7E8ECC8EEE9F6E5E3E1A9A19892909592B88D8888897C72767E92858288746D6C6A7E -7779777F827E827472716C6C8D777FC0C7686359585757575856576174615B61575659585C -9C855759595B605B5B6D63575C61607E94A7B8BAB7B9B2B8AFA1988D7C7789 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFCFFF6D7C1A9A6A9B3B8B3909B8D9592898E85897777838883909083 -837E7E838890948B98929288898B827C7F777E7F74747777727E74727C7971717672748282 -83899285899895958E7F95A1979BA18D949898A19C95A5A2A69592977F857E909B92A2A29C -95949588908D798B8B79898D8390898D85927F7682827F7E838285837E79827E829083827F -82777C827F767179828E837F7C716D888D838883776D777F7E8D779EB38E929E9C97A1BED2 -E1D0E6E8C8E5F0F5EBE4EDCDAEA1949E988EB0A2888989856C767685907F7C83746A727679 -7E7F767479797477726C747474779CCBB35B5C5759575758585758686858585C5857585757 -63635B565759585E595C5B6174A6CFC2D4D5CDC2B89FABA9A28E8394837277 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF9FEFAE7CAA5A1A5B3B8AB9B979788909B897C8985838885888B988E89897E -7C8E887C827F6D7C82728B897F8989858D8D88899C9B8B978B89948E948B857F797F7C8290 -8D8B95909C988B908E95979E9798988E949B98A198A2A59C94898D8B7C7C97959094958EA1 -948E9B978D979085908D7F888E837C88907C767E8890857C85887F778885888D8B888B7C83 -8277827F777179837E838B8276768289897E827C7477898B887E94B5928D8D9B948BB8C7DE -DDDEDDDEE0F1F4F8DDDDDBB89C949795889FAE959485857E68747E897E858972746C677E7E -797F887C7C7F7E777674767C6D7785D19F5B5B5B5B5B585858566074675958595757675B71 -975B63575658585759595E98978DBDA67F92A58B9E9EA2A1959795979F9892 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFCFEFCE9D2BEA1AEAEBBB3AA8E8E9B9485887E7F858382839792899C8E859B909090 -958D83858D837E857F889088888288857F888D929897928B909488988E8E948E9594889092 -908290947E89898590A19B859BA18D989B8597A1959BB09C909889858E97958D8D98949C97 -8D9294858E92888988898B85857F857F7C7C7C8583777E7C79828577838589889083888B8B -858D767474748585827F7F776A798B7782887974797F8E94837CC7AE9EA59F9C8BB9C7DEE0 -D9E7E5CDF5F6FFE5E4DFC1A5A295978888BAA98E858E7F7C747C89897F7F7F776D6D6A7E89 -8379858579767977727F717F7E7683DD8B5C5B5B5C63635E575959687E7757585657675985 -7E595E5B575858585C5B6061605E6371716A767174826A6063767E8E929E9C -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFAEEDBBB9F9EB9A7B0B0928D887C7E8389837E897E889088838E8974898388948E8D90 -8E8B949298908E8B88897F7F887E778988898EA1989798948D949098A19C9B90989285908B -90928582898994A2948EA1948E929297979892959290978B8E8883928E9B959BA59B9B9488 -8B9290839292838E8D768E9282898374778585837F797E7F837E797E8882857E7E89797C85 -8385767179838885828E83768889828D887E76747E8B8D8B79ABB298949FA1899BC4D4E5E0 -E1D9CEE2F2F9F9DEE6D5B2AAA59B988E97B09E9485928B7C76898D89928D776D746D748885 -9483837F79797779766D7F7E6D74A9CC686C905B5858575857595C5E6767585958575B63A5 -5C585857585B685B58595982678B8E908B8EA1A5978E928B7F9B9290908D89 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFEFF -F5DAC09F95A1A7A1959F9794929489858E838990828D92908E90888985908395958D838D7E -8382898D928D8B8D8B7E958B7F85948E94838292888B8E9594909C9C989B95A99B9C959490 -8D83837E989290A795949C98979B9B948E908E8292948882898592988D899895858B858B95 -928B978E859597859E94828B8D837C7C88858E83838882898E7C797E7C88827F83837E7983 -8274717E7F888288837C7979838382888372777C7E909077839E8B8B958B8D97B9C4F1E4DC -E0E3D0F4FBFFE8E9E8C4ABA2A1A5A28BAFB7898E8D7F79797C9290898D907171716D79837F -8B8B7977797E79767671797C6C89C7C0606371585958575857575B5E5E5C5B585759586DAF -63595C595B6A8B6D6A5959725C677F88A2B2A69C9E949488979F8E908B979E -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFEFDE0C2 -95929098B0A18E958B7E8B908E9288909289828383898D898989838E8E8290898892888D89 -89978E888E857F8889888895958E9F9B898D8D85909089949089928B7F929C948D9C958992 -7C839B958398A295929E9897A994898D898594908D888289979095979E9FA295888B859097 -958B9788929492958D92928D857C7C8988797F83837F8E858283797C7E7F7C897F837C8E7C -7C7974898E7F88978577748B828583827E79768385767489A59897959E9C98AEBADFE9DDDE -E1C7E2EEF7ECDEF0D7BABBB9B0AE9794BA9E9290A185747F838E8B7F827277686A797F7F92 -8B82887F7F7F82777476797974AAD28D5C5C575857585B585858585E636D5E585B5C59A6E7 -C35E59745E5C5B677961605B59587683AFB7AFAAA7988DA19B9EA7B2ABBDC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FCFCE5D0AE958E -9F9FA6A59E95948B8D8383947E888D8D8B92898B8E9C898B9E8B89958E8E9289949F8D8DA7 -9C8B94908B929590949B95989C8B898E948D8B9E959CA697989B94979E949B8D92988B8588 -8398929C97899B97958E90948B8B8B928D898D95857F949598979094A69E889E9F8394A588 -9297948B92958895958D887C747F8E82888B887F857F8889898B8983828989887E8983857C -7783958B888E89827E79838B8B888B7474797E8B927F82AAA79497A19094A5A5D6F1D9DDDD -CED5EFF3EFDAE4D5BEA1AAA5A79B8BB9A2929C97908579728994857E7C6A6C747282898E82 -8885828283887982777F886D8BBFDE6A5C58575858575858585B5B5B615C5E60595C5BC0F0 -CE5C606D5B677C776A6C6359595958595B5E636A7188839097BEB9B9BDB2C7 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFBF6FAF1DBC195978E959E -988885897F8282887C89837E899792949E8E9295858D95889595A1A29298909094929B9588 -9B8D838D89828B89888B8E8883908D95988894959795A59F9B9E98A2A697979E988D909795 -898D92959C9B909BA7888D94889B978B8D90837C8595959BA1AA9494909F9F8B8D907F9295 -928D90978E8E908388837C88828E8B838D8882827F828382857F88857C8E8883838D887E77 -7C7E888D888E7F767F838283838274747C7285857976ABB097A28E8BA192BAD5F3DDDFECEB -D5F8F6FEEFE5E7D1AAA29C9CA2929BC59F929598907F7F798B8E8989796C727479858E9085 -8E8E8D8B897F857C7C7C7C7289CADA60615857575758575859595C63616C635B5B5B5C85DB -C95B5B5758676A6C635B5958585C797C8890746C726D6360637C7F89838D97 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFCE4D0A18DABA79F9F897C -827E7674827979827679858D838B89908E898B909C9E9E92979C9292928E94A19C9790908D -8B948B908E8889948E8B8E8E83959B94949C9C90A79B9C9E989098A29BB0AA8B8E9792959F -9492A198979C988B978D9B9794928E958E838B9BA194959E9590958E94979090858D8E8D95 -908D9B928990928377898E9092857E8E9089889088888D7C898E82888B827E828E85797C79 -8E8D8885897C7E7E89929089837976767C797F827192C9A1A1989B9489B5BBDFEED7E4EBD0 -E9EEF6FAE4F0ECD1B7A1A2A6948EBFAF949F90898D7C79888888948D746A766C798E857F8E -888D8B89827E83747F7E717297D1AE615C5857585757585758585E616168635E5B595E5CC4 -BD5B5C5C5E616D7167595C595971B5BAC1B2B8A59CA27E859B8D927C5E6367 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAFEFDE4CFB29BA2A59FA1A98B7C897E -797C7C7E8E837472858B8D95888D9085899C948998909E9F8E8E9F95909F98979EA98B839C -948D9C958D8E98928D949290909B989F9E9B9797989597A2A9A59EAFA1948E8D899F9B8E94 -929492929F8D9C9792958D8594909289898B95A68B97A28E8E908B949F94899B9B8597988B -8B9C8D94978B7E887F89928B8989897E898882828D898B948B8389888B8B857F7E7E778890 -8E7E7E747F7E7F7F909488857E7277767E8876747ED0BAA2ABA1AAABA9C6E2F0DFE8EEE7CE -F4EFFEE8EDFAECC2BFB0A5A79BABCA9B94949C8D7E7F898594908B8977766D779088909297 -8D8389887E827F7F7E827774C2E2885C5E5C575B575759575758575E615C5C5C575B5E5ED2 -945B6068615B6D676D675E687F8B8EAFB0A5AEA79FB2B2AA9C979C9F94909B -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8F6FCEDD3A7838395A69CA5A7978D92837C85 -7E797C7C77828E94959E8E9E92898D859C94929295A29E90979090978E9CA197989E979C9B -A58E889B8B959792909E92A59F9E979CA58DA29B95A5A698A5A7978D978E92A29F9B9E9E94 -979C95979892949590888E948D858E8B9E979EB0AB9F9B97958D95978B8E9B92929E8B9895 -8E90909290898383978892947E888E8992858B8995928D8B907C888B7E858D7E77767F898D -827C838371837F8D898D8297927E79858B7E7C77C9CBA99CBABAABA7C8D5F6EAE3EBF7D5E9 -F2FFF9E6F9F6CDB7C0B7B7BAA5CBBA95979090888B8294988E90837C7E7476949089948E8E -8B888394958389837F777689C1DD76676158575758575858585758575861605857575C60D7 -725B58585B617963686172A7ABB7ABA59B7985A1A59598949BA2A9A994988D -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFBF7DEC49F8385928D8D9089797E857C71888885 -8385888394989BA19E95948E89929B9F95A1AEA69E9B9F97929E9F979F9B97979E949B9E90 -8E9890948D9297948E8B97979098958E979590959C989BA1A19892908E9B9C8B9E9C9C9797 -8D8D9297979E989892949798828B9B9EA6AAA998A7958E9895889294949294928E9795858B -908E9490828E95898D9285909F85828B8B888E928388927E8B9082838B827E7774858B908E -8D898B79747E889C8D8B979F7F7C8289887F7FB3C49E9BB0B9AB94AFC7E1F0DDDDE0C6D0E6 -EFF5DBE2ECCD94B8A1AABA97BFD09C929EA1897C8B839EAA8D8E907977747E888E94839098 -858D97858E797C7E7F766D94BFCA615E5C59575758575958585757575B685E5858595976D4 -5E5C675B5C686A6D6D5B7EA69C8E8E949B889097677E9E8D7F76979F9EA7B0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE5C49C898E94A5A19B9B897F7E7F76777972727C6D -838E9090A19B8988897C9498959C949094948D949F949CA29292A59E929E95929597909097 -9788959B97929897949F9E9497909C9B979890949E9E9E9C978B979E9E929C95929C98959F -95909B958E909B949092838B90959BB39F959B95949FA685909C92949C97989C9B8E929B89 -89857F828D949892928B9298948B8582888388889590898B887F7E7C827F74777C89838582 -888974717F828E9E83858B74717983797F7783BF8B9894908990A2C2D9F3DDDADDDABFE8DF -EFE5CEDBD3A59C9B9BA19EAAD2AB989B908B828276899C8B97857E7C71768D8B9094857E8E -857F92858289777E77777194D7A95B595757575756565757585857585B6D6A5C585B598BCE -5E5B59595B746A607167A1A788797C7F798998AB8DA9B5A6B5A69795A7ABB7 -FFFFFFFFFFFFFFFFFFFFFFFFFFF6E3C39B9C949BB89F949594838B92888388897F82797989 -9B8D94978B7C8989949B92A19892A797988B899898A59E98A79F97A69C98948E9495959590 -98989C9C908E9894929C8E9095948E9F9B90A69B95A2959095A197959F929C989F98949892 -90989E94A19592978B858395A2ABA59C949B929CA194978D8D95949494979F92908B979B90 -8D88778B9485909792888D8D858E8D829492948B8D8E8B8B88767F8D777677748990857E8D -88797C79829B978D9082797783887E897C7FCAA18D9F9B9B9FA5BDC5F2E7D7E1F0BDDFE4E8 -F2DCE8E5C1A29F8B9EA69BBBCA979C9B8E8883828394958392887F747982928E888B959497 -888D837E8D827E83796C767CD28B5C5858555756565757585657575758726D58595C5C85CE -605B59615B8B7C6D615CAF88A6BDA6A59295A1906DBACDCEC7B9AFB2BDC2C2 -FFFFFFFFFFFFFFFFFFFFF8E1C49C8D9092A29B8B8E8E90828985828388828385829095989E -9F98988883958D8D9B959594A7A294989490A19E9CA7A29F95978E8E97988598A7979BA18E -94A1979897909B94958D979497A1958D9FA2949B94929EA2A2989B9C95A294949B958D8B8B -958E92949F9592908B8DA19C97AE9F9C9FA99895A597979EA2A2AAAE9E9F979090908B858B -827E858D8990978E8B908589988289948889948E8385887E82858288747482828E85898988 -7C71767F97928B8D92838B8E9B92948977C4BD95929C94959FC0C0DEEED6D4DBD2BEE6D7F5 -EAD9E5D5A7A29EA1A192A7C7A5B09C98927E7C7F8E9E898E89857C778398928998958D8885 -7F898882897E8983797694A7D2615E5858565656565758575857565859685C5B7471607ECB -60595E5958595C6A7461A7BE95B0C3C4C2A6BDB7A7BDBFBBBBC7BDC1C5C4B7 -FFFFFFFFFFFFFFFFE8CD9B8D8B8592959C8E858E887E827C798385839492828D989BA7A198 -9585929CA79B929E9095A28D909E958E979E888D9F9B979E98899E958B9497959C9F959498 -9E9E9B9C979B98948E90988D949097A192A1977F8D979B9F9B8D98989295928B8895888B97 -8E8B958D90928B89A1AE9298A59797A5958E98A1949FA5A29BAEAB9BA198959797908E8985 -8B8D858585898B8E8B898E889092888890888E85888883897C90836D74767F89838289887F -767C7C82907777887479777685827F749FCC888D9B8E9292AEBFD2F1E2D2DADEB3EBE2ECEC -D9DEDBA997A29E979F97B7C2A7979F9C8B8579829C9F929C988B83778BA28E85888D7C7C8D -828292837E858279746D89BFBF5B5C56585656575756575757565757585761797E7E6C79D0 -63585958595B5B6D6374898DC7D7C1BFC4CDCED095C3A57F9497A59B7C9489 -FFFFFCFCFFF2DCBB928B909497989E83778277748576747F857C838D9B9E9294959898978E -9492A59E9897A297979F929F98959E9C929E959095948D959592979E98979792959F9BA79C -9B9E9F9795A9AA95949B909BA59C98A598888B90828B958E94A1978D9E8B8E9B9892888E8B -8B97907F827C94A694949795928E8D9890988B92959598A1A2A69097959092979F85778B83 -8B907F888E828B8D948B8B8D7F8B857F898D83898B857E83827C777679888379858582827E -79728B857C8D7F797E79767C8982718ED29EA29C979BA5A6B7BBE7E7D0DDE6C6D4EFE1F0DE -DBE5CEA7ABABAEA7A9B8CBB79F8EA69E7F7C85899598958B897E76747C889490838589927E -89927E88887C7F77776788C79C63635858565757575657565756565657565867887F776A8E -6059595959586C6A7268AFBEB5B3BDC2C7C4BFC19C9890A7AA9CA7ABA6A6B2 -FFFFFCE7C49F888B989E9CA2A1958E8B82838D7C828582898B95A29B9E98929897979E9E95 -9F909B9C95AB9F9497989297A294929797949B97949B9F90909E9B95929E9794A994909492 -9F9E8E9FA592A6988B8E949F929F9783838588958E8E929E9E988E9495A1929C9C89909288 -9085828395A19FA19288948E8992988E92978E8995948E9B97949C9892979C8D7C7F82898D -88889E888994978E8E9885888D8288908B898E89888D897F797671837F7F838288857E7672 -79898589897F83797C7E7C88827977C9BD959E98979892ABB5D3E5D2D0D0D7BAE2D7F1DDC5 -E5DA9C9B9E92959C8DB5C79B929E95887F7F7C88979094907C7C79717F859290958B8B8D8B -83888583857E777F717FBACA747967636357575758585757575656575758586D9C887C68A5 -615B5958585B6D68616898B7908397A1BFC4C7B08E909EB7B7B7C3C2BAC1B8 -FCD7B594909098928E9F8D7C7F7C77717674768883889795979E94929EA192959292A79785 -A99494A7A6989095928B9C908B9894929E9897979790949E9E959B979EA5A19C949EA59C98 -9C989897A2989B9E978E9EA59C947F7E7E928D8D9795979B9488888B89908D8895987E929B -7C8295A6979F9C9290958D8D9F9289978E949E948D8B909294949F8B889488858583928582 -8B8B898D8D958D858B8B8E8B858E88928E898E7F888D8B8271747C8590828590827E777979 -7E89828383747777767E89827977AABD8D94898B8D909EBACFE9DED3DDE5B3DBDCE1EFD1D0 -DCCBA19C9C98948990C3B2959C9B958589837F94948E909B8E79857785988D7E8B8588838B -887E927C7C8576776A9FC4955B5B5C5858575756575657575758575758585B727F7F6D88CD -635B58595858795C5C63718388828DB0B0B5C4AEBEAE9B9FA69CA197A9B395 -A7A6A19C9F9E94959785858377777E76766D677183897F948D89909B978D929594979C9EA2 -A6A69FA29C989B979598929C958D9C8B8B92978B928E8EAB979CA99E9FA29890979F9497A1 -97959F9F8B9B9785949B928B827F8397929E92A1909594948B928E8B98948E948B948B8585 -88989E9E98929CA794909285928D88908D94898D9582858990988B988D82828E958D8D8E82 -948D768B948989978D8B9288858E89898E8D7E7E88897777767C837F828D837E82766C7F7C -7C7982797F776D6D797C827F828BAA898B8D888B8E8DB3C8E7E2D7DEDECCCAE4DCF6DDD0E7 -D0AFB39C90959788A7B5979490948E8988829294959895927F77768590859B908289838979 -89857E837E7E7E777EAABF825C5B585858585855575856585858575657585968767F6CABB3 -5B585C6158836C5C5C6063679C9089ABAAA5BD85B3B2A9AEBECACBC4BFB9AA -908E8B7972747176797982827C82837E7E928B8D978983978983887E768E95949EA69C95A1 -9C929F9C909F9C90929F9794988D909B9B9297928D95A69C9B9F98989E989F9B9CA6A7A59B -9EA69EA99F949E9F92928E989C959B948D908E8D8D8B89838E8B8594949589959283898882 -95A1979795888E958D888E8382858B8D898979798D82839285909B8E82828D9089948E8E8D -7E83828383928E8E8D9E8D898E888885898E7E887F8D827C827783857E8288767E766D7F89 -7C827C7F7C77837C7E8D7E7C8D9590898D979E9B8DB2BFD1F0D3CBCFDC9EDED6E2E8D1D9D6 -C69F9FA6A19E9E97C8A78E8E92957E88898390908E898382777C7488947F8389898D8E8889 -8E7E7E837F797F72889ECE76715E59575858595B5957565858576A9B63595960777267C19F -595857595867575B61618390BBB7A5B7CAC1C7A1C4C0B8BEC1CDCEBDA6989C -9E8883797474746D6D797E76887F7E95A1958E9894949B8E8E898D8D90948992928DA5978B -9F90929E9B95959E9594959E928E95928B9E9FA598A29F9E9497A7AFBFAB9FA6A5A9A9A19B -A2949C92949298988D90AABFB29895928E8E888D8E8D9CB29F928E9095958B7F8E8E929890 -8D9B9F978E94928395948D85838B8D8590858E908B8B909798978D85858989898D94979488 -888D8E94898E8D89899C9B9092858392837F888385837F8B858E898D8B79837C6D71768889 -887E7C7F7C747C7F7F88827695947F899E9B9E9C98C1CAECD1CBD0D6BDD5DFDEF1D5C9D9D6 -B2A198979C9E9BA6B8929894888D8588909590A28B8B8283827488928998988992927F8E94 -8383887E88887C7795AEA9676C5E575757575858565758575758586A635859687C7471C49E -5B586A5B5957595C606092889E9CAAA7A2929E858D837C897F949276798E94 -958E88888D82777E837C77777C8894948E909795958B88888E9F9892A29B9094A29C9C9EA2 -A79C9C9E9EA59497958D8E95858D9498AAA19B9CA295949F97B7CBAF959B908B9EA197AAA9 -97929E958B9F9895A5B3A58B95928B9C928D928B899889928D8E9089978E888279979F9295 -958E8D7E88887F888390888295838890858B948B89949289928E7688978897988D8E8D9283 -909485908B8D8D898D8D9B8B858D8882838983897E888E897783908E79837E727C777E857E -837E7F747976797E857C7C8B9B85908B9292908BB9A9DBE2CBDAE1D0B3EADAE8DBD0D6D2C5 -9E9E98989F9CA1B8A6949897908B8E8E90A19E8E8B97857C797982989E949892949588928D -8B7E898D777F7F829FD5BD767E595856575756565758585857565659575759797F8276B28D -5B59765C5C6D795E5C5C7E6C82839C94979E898BA6B5BABABFB3B0B3B2C0C2 -90908E7E8283858B887692A1909495888D9C8E8B9E898D9C9095A59F97A19F95A1AF989CA9 -9C9BAAA698A5A797979589889C95A1A6A1A19F9B988E92A9C6BD9B9E9B979F9F94A69C9E9C -9F929EA5898E9EAF9E8E88908E8D92948E9092948E948E8D98A590979789899F9F889B978D -9490828B978B8B887F7F7E888B9B8E8B92958B92978B8994858E9B9B959F92838389829094 -8D94858E908B8989838D948D8E95907C889277888B83898D908B8582778577727779828982 -827C827671767E7C7F828DA59490A2A59B97A1B3B2C2E9CBD3CDDCB0E2D5DDEECDD2DDCAA1 -A5A7A9B29CA6B5B59F908E85928B8B98979C929894977C827C7F898D92929898958B8B8B82 -83828B8B8E927E88AADEB77E6C595857585656565757565857565957585B5C7F8D8E716079 -7474596A77827963605E777294B2AFB3C3A572BDC4CBCEC8B8A5A9A198AAB2 -857E838B7E7C8D8290A69B98A29E988E928D838E929294959C9B97A2A1949897949FB0A298 -9BA19EAE9E95949F9F8E92A2A2A7AE9FA1A2A6A194ABC2B9B09E9E9B9FA29FA29F8DA1A697 -9BA2A685A5B0B097928E98908B95978E929B829C9E828B89949E9B928E9CA1989B9489948D -8E8D92908D90908D8D8D979C959C978B9B9789958E8D88888D8D8E8D858588798E8B898E8B -8D8B8D8E858B8E8E8E898B8E90888E8E82767F7F858E888E908882828D7772827C85957E83 -8379727E837E79766D7797949B8E97908D9295B0C7E6DEC9D0D7CBC1E2D7F3D7C7CACCB997 -9C98949C928DC2A5898E9C897E95887CB290859598857482777E978B92958D8D958B88838B -8889857E9890749ECBD66C7E5B5957575756575757575657565658575859575861796388AB -5E71606D768D7F71675E826CA6C0C7C2BFAA68B9A79CA5B9C6CCC2C9CBBFAF -79827F838D94949FA29E9797979F8E8B8E8B8E9F9C9CA79F8EA29B90A5948D979297989294 -97A69B94959092958D979FAE929F9C97A69890AFC1BEB0A19498AE9B9FABA59CA99E97979E -9894ABBDB3A195959B9F9C9089978E8D949B979794908D9798979094929590958B8B8E8D92 -907F928885928D899B9F8592A285989F8D9B9C8D88898585929883898D858E97948D988D83 -8D858B8D8D908B92958B92928E959B8D887C838D7F888588897E888377777476888588857F -7F76747683827E7C7F92A690909590948D8BA9BDE5E6D0E4DCDEB0E5DFE5EDCAC9D0C3A29E -9C9E9B9497AEA9908E90909C95828B95958D9094857C797976928E90958D979497928D9797 -88837C88A28B72ABDBB35C605E5C5959575857595857575C585657575859585959615BA7B7 -5E585E635B5B606D795E605C8282839CA26D678DB9C0BDC2C1B5AEAAAE8D98 -7F85888EA29E90948383958D85988E8DA69F9EA5B09BAAAA92909E978D95A19E94A99E98A9 -97909B988E90899C94A79C92A695959C94B0C1C2B89C9CA1A6A99FA7AA97A1A79CA18E92AB -9BABBD9B94949590A2928B989088908B9295A1948B97928B97977F989C978B9F928B928988 -837E8585908583949490989095989F929F928382888E8D928B98928E908E90949090908382 -8892828D978897947988898B8D8E8E7782927F94908882897F827F79837F7F85928B7E827F -77767F797E837F7F929E838B8E8DA59588AEB3C4E2D6DADDE4BDDBDEDCF2DAC8E4D2B29B9B -9897A59098BB97958E988B79858282958D8D8B8E8282777479908E9590909F989097929285 -9083838589778ECCDA8E5E7E5E595C5B5B59597C595972925958595860595C585B5B5B89A9 -6A5B685B5E76795E7461585C5B5E5B5B5B5E5E609CA5A29B8282827C797C6D -858E9C9B908D95909B97888B898B8E9B9FA1A6A19CABA6979B92959C9292959C9FAAAA9B97 -9EA6988E838D949B98A197A6A79C97AAC3BEB5AA989B9B909BA295959E8E8B989F95979BAE -B99E8E8E979294959B94928D95949795929488959885909C798583898E9B94949098888B8B -898892928B8E948D959595959294978892887E8992978D898B858E8D898D888288888D8D92 -8588909092928D8D8B828289977F7983837F8E8382837E8B898588857C798B838B8D79827C -767F7F77827E7774949783948B839C8B97B5BEDFD7CDCED2CEC4E2D5E9E2CCD9D5C19B9898 -A7A18EA5AA95A5978B8D8E7F7E828B8BA588838E7E7779727788A6958D9C978E8B8E888D8B -90988B8D88799CC4D46A616A59585859585E82605B5B5E595767595B5E5959585B5B599BD3 -615968586077826D6759575B595B5B5C5B605C5C5B5C5B5E5E615E5E615C61 -9EA19E9F949C9B9B98928E94988E8BA29B9EA6AA979CAA9B9FA69C959592959EA19EA6A28D -9B9294989797A1A1949CA59F92A9BABDC1A68EA5978D9C9C98A2A695929C9097A29EA9BEAE -90829498949C8B979E8997928B92909792948D8D97908583898595959495948E8D92898D92 -8D90959092979489979C8D9B9B8B9E9B838D9290909B9090958B8592949295989494908D92 -908B8E948B90888E8D8588897F76797F8988838B898E7F828B8377746C726C71726D897E6D -7979797E7F7C7798897F8D8B8E9B948BB8BBDCE2D3CED4D69EE8E4E4F1D6C7DAC49F8E9B98 -98A79497AF9E98909F8D7F7E7F838D95858D8E7C77747C777F949B8B8895908598958B9498 -858D8B88777EB2C5C8605E775C58585957596058595B607F58565B5C57565857595B5BAFCC -60595B5B71687E76615959565958595B575B5B59726D6161686A7F7C907974 -979297A7AB9F9B9F9094A59497A5AA9CAEB79C989F959CA29C8E97A1979E9F8E92A598959C -9B9FABA6A2A69EA69C9B9CA5BEC4AE98979F9294979295A29FA99E959BA798AAAEBA9C8D89 -889594928B9794929F88829492928B9C8E8D9B8D898B89888B9092949F928D948589948992 -8E928E89948E8E90959492908D887C8B8B9097949097928D8D8D9089988989928B97928E89 -8D908390907E85957C82897476898D89928B79838E8985897E76726871A2C2C8BB9C837479 -8582828D79778DA590898595928E9BA6AFCAECD6D6E2E5C7CFE8E1EBDBCBD0C8BD9B9094A6 -9E9C92A7A19F8B8B95897979828390928990957C797F7483857C888B8B8B8E8582929B8E8B -928E89887E7CBDD49E5E616A5956565757585C58595B6C7459585C5E5B57595C59595BD0AE -5B5959716A747F77715C585759575958585B597EC6B9B5BDBBBAB0BDAFAAB8 -92A2A7A19F9498A1A19F97A29FA2A9A1A2A19F9BAB9F9797959E9C9595A295949F9B8B909C -9CA5AA9E9E9E9B909CABA5BFCEB2AEAFA29EA6A99EB0ABA5A7AA9CA5A59C92959095858B95 -8E8D8E8E958D90948B8E94829790899498A295838883948B97A69C9B95909EA198989E9589 -8E948B8D8B8B94908B8E9B9B838382828E958B8D908E90887C838585888883888E8B8B8992 -89858D85899482898E797C7C887C898B828B897F898B858976796C9BDEF4F3E9E4DFC79B7E -79858B7E7F89A98E94988B9FA295AEAEB2DEDBD0D7DACEA6E7D0E1EECFCEDDCAA1A1B8AAA2 -B0A1A1B2988B9489888377747E88838E90898B7E7F897E897F79887F8E8B888B8D8D928888 -8E9889887490BED9796760595857585857585B58586A6D615759585857585759585C67D688 -5B59956D605E5C677F71585758575857595B5B799B9F9FBDAB9FAA959C8888 -9C94A19C9CA5A29C9FABA198AE9C979F9F9EA5A9A1A5AA9BA1A58E95A2949E94959B909B8E -98A598A1A2A2AA9B97A19B908E9890949B9092AE9890929092989788899595899297989494 -9B929894989B92949B839597989B9E959F8B7989888894989E9095929098898890958894A1 -95989C858E98858D9E978B90888288888588858885948E7F83827E857F82857F8B8B858D88 -8D898E858583897F837977908E7F83838D8B89888B838B76776CB0F5FADFCEC7BECBD7D795 -898B8B837FA5A19490898D908D889BB2DEE8CCCBCAD5A9D6CCCEF3D5CDDECEAB9F949C989E -9C95B3A298958B90837E827C7C9083839488747485857C8277838E858D8E7E7C958B909588 -898B887F72B3D7CB615C595C595858585657585859725E585E5E57585C74718B9089887C59 -5B595C58616C71616A71595859585963717F9EA5A7A789A9A19C8E9C857788 -9B8E9B9B928EA7A99FA7A19E9CA5A69FA6AA97A1A5A198A5AB9F9E9B929C9C9292A19FA1A5 -A7B2ABA5B39C959E9E9C9E9B98988B838E9B979B8E909E9B928B8B8E929090929F9C959790 -909C908594AA9290A29C8E9C9E8B8E8B89838B89859590898B8E9492928E8D908E8E908D98 -9B8E8E8985838388797C7F837F8B82897E828B7977827C8D888D7E8894838B907C89927F83 -8D8E858390828B82777F8D88888B838892888383827E7F7C6D9CF5F6DEC3A294A2AFC4EECB -8E887F7C97A57F8B928B888B85AFC2DEF4DAD6E7E6CEBAE1BFE1E7CAD3D7C0A1AF9BA2A2A9 -9FA6C29C9F9C9BA1987C7F7C8D85858E857F72778D828E8B8889858B958D8D948995978E92 -8B898E857CBFE4A25C5E585958565757575758585B5C5B5C605E635C6D71605E5B5B595859 -58575858585E74605C5E59617289A2B0AFA797A5A294A69EABB9A1959092A5 -979E9295A197A2A7ABA6A5A9A2A5A195A1979C9EA29B9BA69EA2A1909F9F908D9FA592A9B2 -9FA6BEAA97A294909E9E9BA5AE9B8E9B908D959E979E94927F9494929588929C959C9B989B -9290948E8D92989494909795957F898D9088898B8E959085928B7F9B8E8895988B8B8E8B90 -9B958388887E8D8D7277837E85887F7C7C7C777C7F7C7C857E838B83889283897F898D8589 -8382837F858B797C8888888B8B858D8B838983838983797672EBFAE5C0B59F92A9B78EE2CD -7F7F8388A2959097958E858588BFD7F2E8DDE5E3E1A1D7CFD5F3D5D5DAC5BAA295A5A69EA7 -9CB59EAA8D92A2958B858385A2928894837779949292A99B88928985958B959292A29C8E8D -98948D7988B3BF745C615B586D58595857575758585B5CA6765C5B595B5C60595C5C585858 -5759595859595B59595B898EA6BFB8A9A27E5E63636C798890887C909B9C8B -9294A5A197A6A6949CA79C97AA9F9BAB9EA1AEA6A29B9FA29C9F959C989EA9AAAEB5A6A2A6 -A5A2A5AB97979C98929B948B88929798928D95958E8E887E92958B9E98979CA5989EAA9E90 -9EA28D949795A29B908E92827F8B9F928B8885929794929E8594978D949489898E958E9298 -7E89837F958B82857E88837E82828576827F798389888D828889838585838D857E90888B83 -7E858E887F8376829085888B7F83827C85858B85887C746ACBFAEFDDB090959494779BD090 -927E83A1948B989798989082ABBAEAF1D2D4CFDEAEC9D5C4EBE2CBD6CAC2A59E97AA989B9B -A7B8AA9B8E97B7948B8D7F8D989B897E8E7988B79F88898E889789838B9B9797A5A1979089 -9B928D77A2BEC8795C606A585C5C585C5B585758585961C2775E5E5B5C5E5C5B5B5E5C5757 -565858565B59585B5B6D85727C68606361606368768288928D90A2989C8B85 -949094949CA1A9ABA2A2A79CA198A59EA2A6A59FA29E979C9E9B8E9B9FA2A5AFB7B0AAA69C -9CA59E8E9C95989F90907FA25E5C748D9595839088829E9592979C97A1A59C9BAA9C949E95 -95A29794989B949B9885838E94928D8E948B959488958590958994928895908D988B888B92 -887E8B8D82887F8B987976828B8590857E7F857E8392908B8B887F89887E95887F888D8583 -8D858588907C8B8888898D8585837F7C8B897783827E729BF5FAEEDDAB9294827763BAA27C -85B0ABAB8D89948B828B8B9FBBD4E8DBD0CACBD2B8E2D2E1E5D6D0D0C8B597A1A797929592 -B5AFB0949EA69C94887988988D8B928E897F7C748B928B858983828289909B9F9B97959595 -948E8E7EABCBD5685C5B585657595759585758575B5971C5715C5B615C5B605C5B605B5B58 -57575C5857585959606D858B8582858972899B8D857E7E7E777483989B929C -95958B9F9EA1A2A6AEA6A7979BA2989EA79F95A2A2989B9F949CAF9CA1B2A59BAF9E92A1A2 -9C949C95959B8B8395947C8D5C5B688D8E8D8D7C839F9598979B9C98A19F979F959B9C929E -9C9B948EA5A69C8D85837F92957F828B888992827E8B83828E9282928B8994908D89888882 -8588858877767C7C74797F797F90827E887F897F7E8B908D8585948B838888889289888B8D -898D88798585888E898983858B857C83827C746D7E7268D0FFF9EEC7948D89766A678B7771 -6C98A9ABAF907E8B897F8BAFC3E0E3D1C2D2DE9BDDE1D1F1E1CED1D2BD9EA1AB9FA28E8DA5 -BBA9A29B9F9F958D897C8E9E958E948E857982779590949594887F888B82948E9097958D95 -90828289B5DECE6C5958585758595B5759585658585879C05C5E5C5C5C5C5B5B5C5B585858 -585961565858585B68637C7F85827C88978E89898398947C7C8D7E8D8DAABA -9E97A69F959CABAA9C9F9888979790989FA29897A2959894A29E94AAA2AAA69498AB61719E -A1929E9C9B94898E978D8589765B5B768D8B83909FAAA2989FA1959EA29C9498948D9B9B94 -9CA194A5A994908B7E7F888B8E8B90908E8389908D8389987F8D94898B8D838D929089888E -8890977E7F828D82717C7E797E83837E89888389898597928E89888E887E8B859292778994 -8388777E7F837E8B898B889085888D887F7C7C747471B2F6FFF6C79B797CBE82716D987F82 -829F9BA5A1A5A99C8E98A6A7CCE2D1C6CBDBC5C9E3D2E7E7D4D9DACDB0A7AEA9A9B0AFABBE -AE9C9F98A1A79089828E9C8D8E8D908B897E72888B7F98857E88838E8B8D8B8E9F9092908B -8D8B7C90B7DB7F5E5C59585857605759575857595958AFC65E5C5C5B5B5B5B5E5C5958575B -585657565959575B676095AEA9AAA69C9FA59FABA2988274675E6160606063 -9E9B9EA2AAA5ABA697979B9FA19B9FA7A29E9C8E909EA6A5ABA5A7B2BDB9BDB9C26A5B5C8E -B0B9AE9F9F9C9C948B8B89AE726D5B6C798E9BAE9F90A798959B988B9C9C9498A797928E88 -959FAAA1898B89858885858D8E8D9489928E9090858D898B9489908E838D928D9C897F8592 -94827972909C928979777777827785947F88947C8D9790858E898885898B9092898D888988 -857F777E837F88827C88828288838E7F7E776D7683D4F5FCFAEED6CABFBDA9716D74989FAB -9EA795928B8EA5AA889F9FAFE5DDBEC2CCDAA2E1CECBF5D5C8DAD0AA9E9F9FABAFA7A7B3BA -9BA28D8BA294838888929495909097837F887F858B92889095988B8D9F9594979C89889289 -858B77A6C2D6685B5C585857575755565758585758589CA66A5C585B595B5B5B595E595759 -595B59565658585B59596C829789888E8276888E9795959E948E7F8983796C -AEA5A5AAA69CA5A69C9FA29CA1A59BA6AF94A1B0B5AEB3B9A9A9C5C2B8C2AF98CD8B5C77A5 -9F9B9C9E8B9497908D829279595C576D79A9A5949894959E9E94A1958D9490989FA19E9E95 -A6A28D89838985898B8E92949482949C88959589898E8B8D95927F8E8D88979B8D9090898B -85687C7E899488889C7776767C857E828D858B90828D928994888D8B8E8D8D8D7F888D887F -8B857F898B85898D7C8D927E8E8E77797C6CBAB5E7FBF5F5F4F3F1E8E1D58B68727990949B -8D948976949489A598A5C4E8DECACCC3D3B5D0D7D1EAE3CCCDD3BD98A2989CA6AAA5A2BFAE -A18E9597959282839BA69594949592888583827F8D9B979795929495958D9F8D8B948B8392 -948283A6CDC75C5C61585B57585858585857575757585982887F7C5C5C5B5B59595B585757 -575B5C585758596A635E837989B29894A592826C716D72779094909C8E8E7C -B5A6AFA298A5A2A9A6A7959B9C92959C97A5AFAAA5A5A7AEAF9C9EA290A198CCE179608E8B -A1A1A99C9F9C8D8D90899E6D908B615B7482A99C9BA99C979CAA9C97979292B0979BA59C90 -9C88828E8D85858D858998898D94889089838E8E92828B9B8B928D899094948B8E98978E7E -71B7B361828292B07F76797C7C83898289897E8D898388889597928B8B898B838B83888588 -8B85828988897E7C8D8389959285857E7482E2D9F1F7F5F8F8F7F2E6D7C16D686D85888995 -898B88C2DCD2AE8DB0BAD9E9CBC6CCDAD2BEE4D2D7EDD0C9D0D2B5A5A2989FA2A5A6AFA7AB -A7898E9F8E82908E8D9F9B899EA7A17E92827F98908E9B899B9B92909C97928E9B92928583 -837F959CD9A2605E5B575957585856575858597F74797C6A596761595C5E585B595C5B5756 -575B5C575758585E7663798E8388776A7C8D7F97A598978872726D7C928890 -B9B3A59098AFA6A5AEA69598988E9BB0A5AEA19E9BABAEA1A79783AAA9A58DE5A179677E97 -959E9497A58D95A1888E9B8DC56759596A8395A297929B9E8E9C9897989F979EA6A19B8B83 -8383959B8588948E928B8E8B8B8B898595958B928E8D929283858B88949C988B9097888374 -768D5C586894859B927977777976898D8B90928389888583898B908E9290988B89927F898D -858B7F898B8989887F8D838D8D8389776DC4F5FBF8F7FAFDF7F5ECDFBFA2766C68908B7F90 -97746D9CC4D2D59595CBE4D7C7CED3EECEE6DCD7F1DDCCDDD5C59C9FA69FA9B3B5A7BBB0A2 -95929594949494979E9E9B95A5AB978D927F9497929B9E8D98979788979288909E8D829583 -7C82A692D574686C6858575757575757585767C361595B5859585968635E5E5B59595B5957 -587261585658595B6C6895A5A597978B8B7C8D9B97959CA1A6A9AF9EA79CAB -A598899F9F9FA99C90979F9098A6A9AEB8AE9EA69F9E9EAE9C85BF9E766CB2E08B77636D92 -9094979E94929F9B83A5AB796757575967928E9C989C8B7F8B92A29B8D9CA1A1A69C898989 -79948E8292908B8994897E898E8298958898948B85908D82948B85929595908D948E887F79 -A1775B596A8583898B8976797E7E88898D928E8E8D92898992858B9789838B8B7F89948D83 -948985928588898E83898D83888E776CAFF3FCF9F3F3F5F3EFE2D5B9BD9E776C687F7C857C -766D6C686A88C188B7DCE7D5C0BFE4D7E1E5DEEBEBDBDDE1D5CDC1B7B0B99FA9BDB3BAB0AE -949CA1948D9885909F9E9EA2A19C9B9B948B8D8E9E988B9B9B92928E8D92A294928E948D85 -827488ABC961636C5E5B585758585758595876B86D9F7458595C5B67605B5C5B5859585858 -57595B5857585B5B616A63636867717783778985767C6D7788888D7C858E76 -9090928D959790979B9F9B9EA1A7B2A2AEB9A9A5A7A6A6A6A290B5725C61CFECA6745E7788 -8B949E979098888390C082675B5859727990B88B82826A726888948E9595959B90838B7E8D -8E7F929E8B8D89948D8D907F8E988D9B8E88927E82888B838D9082839B8B98909292797197 -82635B5B5E74898D7FAE89727783838B908D8B8989838E8E8D828B8B8B83858389828E8E88 -8E9790908D8E85889792888B83827797EEF8F8F5F2ECF3EDE1D2BA7EA6726D6D727F797776 -7268726D7197B38BD5E8D7C2CAD0D5BFF1E2E2F8E8DAE1EEDDCECECEC4C3D0C2B8C3BAA9B2 -A59E9F988B858E8D8B9E9495A2988E9C8B8B9595959790828E8998909097989B89858B8585 -7E748DCABD5E685E58565857575758575E597F94B8C47759595E615B5E5C57575656565657 -575859575963685E5B5C8B8E77797988957C8B8D949CA7B3C5AEB2B3B7B3BD -89959C8590A2909097959BB5B3AFBBBAB0A1B7A2A2AFA29CA69CB5745E72D6E192745C6A98 -928B8D927774778E88BD7E67895B5B677660676C6A7E9C9F97909FA6A79E95928B82909785 -928E8B9B908895958B89858B90908989908D8B8E948B8E97827E88858D95857F897E8EAA8D -6A5C59585976898B8D83897E777E7F838B8D958E90888B8D88898582857E797F8897888B92 -898D8B839085898B88887F89887677DAFDFBF7F7F4DADAE0D5AF89AAAF716D686D7C77726D -746C71776D8DAAB7E5E0CEC9D2E8C3E6EDE4F1EFDBDAE8DCCED0C9C4C7C4C7BABAC2B3B0AB -A5AA9C8B8D8D8D8B8D928E8D90898385948588A195898D90889F988B908B88899089838588 -778592D6A9605B5E57565958565758575C5BAB95D28E635758585B5C5B5758585757585859 -57595857565758585B5BA5BEA2A2BDC6C5BEBBAEB2BEB5BFAFB5B5BDB5B2BD -9C8882928E959EA59BABB298A9AE9CA7A7A794A1A5A7979F92AB905B5C6CC6CF94685B6789 -8D8E857F74CA676A98857CB2955C5E5B5E6882979792979B95B3A99597908D887F90949597 -899E887E958D889092858B92957E8B95898995989290888595899297898B8D8D9071CAD2A1 -8559575859678B8B907FBF7C76717F838992948E8E9888899082908B827E778D8B898D8595 -947F8B9283838B8B85899079826DB8F6FDF5DEEFE6E0D3C0A29483A77168716A7479726A63 -63686D76779090CBE1D5C2CBDECDC2F2E9E8FAF1D9E7E2CBB7C7C2BDC1CABBABBFAFAEB39B -9FB897908D887E8997859795888B90828594949B9E898E988E8E959B8B8E8888838B888583 -85859EE18E5C5C6056575859575758585E60BB74B3715858597198BD975958575758585758 -57575958575858595C5B9EC1BBB8C0C4C2C0BEAFB99E9FB7BEB8A5C5AABBB0 -9898899EA5A1A2A29C94979598989C9BA2A990C6675C6D9589BD7E605888827468635C6C8B -8E92837F90C45B5B838E88C9675C635C596CA2908DA1989B9B9497978B8279838E898E8897 -978E92887F8E898B8989858E958E89908D90978B8983888B9490908E897E90988B6CC5F0DD -98595758585C72928D90926D6D74767C8B8E8B9B98898E828D8588857E89898897838B988B -858D888D8D83838892858B858376EAFFFEF1D6EFE5D2CBAB928E92836C6C686D726D726363 -68726D687F95B0EAD3BFC0CCD5A5E8EBE5F6EEDEE9E2CCC8C8C4CDD9C2C4C3B9B5A5B79FB0 -AEA19F8D8D89928B8D9094978D8598A292979897929895979C8E8B9288928D89898D838283 -8BA1B7CB6A5B6A5B575858575957575C5B68C290C86D605C59687785AA6357575757595957 -585767585657585B5B74767182898BAAB7B5C4BBAFA1B2AFBBC0C0BBBDB794 -929BAA9E9CB8AB88B0ABA2A9A99FAAB39B94908E59595C6771BA957668926C6359595C6068 -768E9F8E977F58597F90949C595B5B5C5C63959594A79C9FA5948D90887C8990898B89888E -948B888D7F8D8D8B83858E858990928B908D908D7E8E95958B8E8E7E8B9F89928368E4EDA9 -60595857575959798E8E959263686A7C858D88899C88899783898B7C88948E898B85888582 -7F8879829783898D88857E8272B3FBFFFEF7D9D9DCC495888E72716D60676C6D7177636067 -6C7177717C94CAD7C3C4B0CBAACDE5DDE7EFE2DDE8DCCBC1BFB9C1BBBDB3A1ABAAB8B3BBB9 -A6A5928D8E8588828B97978D959E95A79F97989F909BA697839CA5959B9589858E89889582 -82AECDC45E5C7C5857585757575657575990A9B2A5605C5B589F95605C5757575857585859 -60778390685C586388C3BBBEBEB7BDB3C0C0C8C3BECED2D2DAD1CAC0BEA790 -9898ABB3A19E9FA9AAA2A69CA1ABAB9F979489AA5B58595C59595C5E6D5B585B5959585758 -6183898BAF97585C7194AF7E5859585859618EA5A598A2A59E989079928B7E958D9292908B -82928D88959589858E908892958D8D7F8D8B89898B859F95888E7F928E8D90797E8BEC9B60 -617C5C58575E6A8D928B8E94676A88777F8D887F929B8B94927C85928D9089838388857E88 -8E82838B898E948B83827477BBEFFFFFFCF4CA9598948D8279686A6A63676D727271636368 -6C7471798594B8C4BDCBC6C8C7EDE2E9F4DADAEBE5D7D0C2B9C1BDB2B3A6A2ABB3B3A2BAB7 -AAAE908D908E898E8D909BA795AFA2A1A6ABA698A29B9B9B988D909C908E8B7F8985838377 -90B2D0A15E605958595859575758585858AA9B775C58595B5B6D5E5759595B5995A2AB7E59 -76A7A6A7A98D5B7FA6A2A5A7899792A5B2B3B0C2C7C7C3BDB2B2BFBFAFBDAB -AFBBAEAAAEA5A9A797A29C9FA1A69F859E89A7905857585B609B5C5C6C6159595957575758 -5C596C7FCD925857595C8267585758585B5E97B5AAB2AF9F95858992888E83859595888885 -8889928988927E89949088888D89958B7E95927F908D8589898B8B9795888B897E7483616D -A1745B636D7F94898B928D8B837CB9BD8E7C7C8885839C8B7E82828B858988858B82888589 -8E8B888D8D94908E7E7283D6F1F8FFFFF3E1CEBD88828589746D6C67636A6C726D6067676A -747E72889892A5BAC4C4D9AFE1E9E2EBECDFDCE6E9DAC4BFBFB7B7BFB0AAB5B9B3AEA2B9B8 -AAAA95928D9F97909797A1A1989BAAA6A9AFA29F949C9597A98E9898929B907E8E89887977 -8298D57C5C605B5857575856575958585BB87C595858595B595857575859595BAF9B88675B -6AA2AFBA926360988D8883949CA698948B8D828295A69FA7C1C4C8BFBFBECA -A7B7BAAFABBDAFA2B7B0A7AAA78D97A6978BAA5C57575858619F615B895C58595858575759 -58585867B25B57575858615E58565859595BA6BDBAA68E8B8285889E8379888D9897928285 -858E8E90888589908B828D83828D888E94838D97899788797F8B9285898383947C82685E6D -A26C58798B9C979888949489908982D2C78882888982949479958D7F838D7C89898D949283 -888D828B9B95897C71A5EBEEDEFAFFFAE9E2C29883837F8B72676768636A726D635C606768 -6C76778B958E9BAFC2D0BBC4E8E2EAFCECE0F5E9DDC6BDBDB9A7AFB7AFB9B8B9BBB8B2B7BB -A7A6A7A29BA19B9498A79B90AE9E9BB0B3A2A79F90A2A2979F9E928E9B9492828E8E828279 -90AECE6A61635C5859585756565859585CC47659585957595959617659596088885E76715B -596389676A7194B5A7BECDB9A2A59CB8B8AF98A6B0A9B9B2B9BDA5A5BEC1C7 -B3AFAFAFB3BAA1B5BA9BA7AF9F8EAA6C5B7294585757575860685C76765657575C58585658 -59595963765757565758615B57575758585976A2A19488827E92927E908E88949C94888B8B -89857F7F7F859497888B82837F828B858D8D88988B778282899892797F858D7F74A26C6367 -6C82775B59767983858E94A189887FBFDAB5857E898D889294898B8E82898B858B8E94988E -9B8B8E8D9895827CC4F2F0D4E1FFFEEFE0CB988B8D8D827F6A6D6A636163746D5E61717985 -8979749892829FAABDD09FDCE7E6F9FBF1E9EBE7D0CED2C89FB0A9ABB9BFAEBABFB2B3B8B5 -AFB7A6A19E9E949F989FA1949F9792A9A5A2A6A79F9E979495958B8895908B888D83888579 -8BD3C3676C63595757585758575958586CC06159585757595968A58E5B5EAACED0A5827459 -59608988B2BDBDBAB3BE9E828876716C7E90A6AA9F82AFC1B8B5A7979FB9AF -B9AAAAB9A59EA1AEA9A5959FA1A1A968676A855957586068686059905C5857565757575758 -5858585C59585656565758565757585857585C85897E8B8E8D85907E95978E888989858D8E -83948B7E8E92828E7F777985898E909089A795857C7C8D9C94928D8B8E8E9B7EBF8D767E71 -6A5C5C5C595C606C6163676D76767789DEDB8D82888888899890888B8B8B90929290908B89 -948E8B90929B8D97D9D6CEBBF3FFF6E2D0948D8E7C8D887267686760716C796D636C6A6D71 -7174717C957F97BAC7A6CDE9E1F5FFF1F0F6F1E8DCE5E3CDBBC0BFB2BABFB0C2B9AAB0B0AA -AAC0A79BAFA6959BA1988BA78B95A9A7A2ABA6A7ABA1979B978590898D958D7C83908B7FA1 -B2D4A9606060595859595757575859598EBD5B595957595989BAB05C5C7FC2B8B37F957460 -79A9B8C5C8C4BAA7B7C0ABB5A59E959888A1A2889485929E9088989EAFC7C2 -B0A9AAAFA1A6A2A79F8B898D74C7D5979289715857575B60685959885B575657575857575C -5858587257575756565656565656575756575968838B89889289898B8E8B92928D9290838D -8D8988928588857E837F8B9594948B9497797F857F948E858D8D949592928979A26860727C -7E777677717667636060686161615E68B9E9B88582858985889B8D889090888E9892989289 -929B8E8D9589746D7C9FAEC7FFFFEFDEBA9288858D8874686A676A686A6C766163606C746D -6C6D71828E8B98BEC7B5EAE7DDF9EBEAF9F5F9E7DBDCD7DAD9D2CAC3C2C9C5BBBFC7B2AAAA -9CB5A5A1A6A6A7A1A1989BA29E949BAEA2ABAEA1A9AAA19E9790989594838885828D8D7F9E -BBD57660616158585958585857585959A2B0595857585958B2BD67596D94888272798D8EA6 -D0D0AEBBA97C7E959EA7BB9092B7AF9260689F92949BB2A6A99C95B0B7988E -A9A9AE9FA6AF9EABAA778B8B61A7C06A6768595858605E5C5B636C855B5758585858585874 -5958595E565657575657565557565657575871607F90958E9295858988899B9C8E8E888E88 -85839892888888837F90888E90929490887E798E95948E8D838E8E8894908B8B8B827F6D6D -72726C6D6A6A676D68636868616A72676CDCD79B8985838D8D949F8B9B958B8E978D928B98 -92908E79AE886C778B9474D5FFF9E3CA9492888990887267676A676868636A63717468686D -777279908D8EA6B89CE3E7D9E8F2DDE9F9F5F3E4DED0D4E5E4D5D4D9D9CDCDC4C4C2BFA6A5 -A6A5A6A2A2A5A1A19F90A2A6979E9FA99EA7AEA69BA2AA9494A2958E928E83858B82838298 -C2CE7E615B5C5B595857575959585C5BB39C675B59585B588277606A9092A9ABBAB9A69C88 -76725E6060716A686D606367637785605E71C8B7BDBDB7AB97A2A19F948979 -A9A5A1A6AAA6A78B7E6D9E6C59606167605E77775E5E6A6A5B7661615C5756575758605861 -5757575657565657575857565858565657598D825E7E8D94979C9B8E8E92958D8D8B8B8B89 -94948E799592768588829C9C8E94907F7F898E97A797898B8D88888E978D9794899492838B -83858388887C8D88888D82898B888E7172BBE4C48D8885898988928379898E88949F97929F -9B7F83CCEACECFCFC588A6F6FEEED2B08D858B8B7F85746C616867676C67727271767E828E -8E85888890949285C9EAD7DFF6DCD6EBE1E2E4E8DDD6E0E2E5E2DADEE4D2CECBCDC1BAC1A6 -A6AF9FA1A6989CAEA19590928B9CA69CA2B2A2A19C9E9B9C959F9E8B979B887F85897E8B94 -CBBE7667827E6A605857565859575858AF7C5C5958575959765B6A7FAEBDBAAA9E987F9289 -7179797E7C908292908D839594827C6C5E6067617171686D6C636760676D74 -9B9094B7A68D798897976858595CAEB860585E5E5857585B575E6761585856575758595858 -5858575657575756565756575658575657596168687E79727E797E908B9498898E8E838E8E -92888E9483898E7F929797989589797F898D8E928E9489929289909C98959E988B94958998 -9285978B889492897F928D88948E77857C8EDBDDA27E8D898983828D8272727C767C899C92 -7798DCF6E2CDD5CC8885E7FFF8D9AA898D888B8877796C67676D6A67686A6D767E76829B90 -8994928D8B7F7495E5CECBEFEED6E2E4E0DCD6DAD5D2D6D5D6D2D9DBD0D2CBC8CBC7B7BAB3 -B9A7AAB0A2A9A9A7A59592838D8E9C9598989E9EA69B8D95989890978D88927F7E83768EAE -D9926A6D605B59585859595958575959595859575657585B595976749B9E88837E9FB2BAB0 -B8B29C9E90898B9794A1A6897EA5B2B8856D97988388928392899490A79FAB -8BD1EBC5B59C7E85886D5959595B71985C58585859616871675B595958565757585957575B -5858585759585755575856565657565656589085837271686768676D6A6D888883898D8B89 -8D858B978D8997978B8E9290907F7F8E97858D9B8B909890929CA19C9C9F92959B9095A282 -8D9B888895927F858E89948D828D7F79897EC0E8C183858E838389899898828D7F7E7E797C -C1EEFEF0E2E1DFD7D9E9FFFCE6C59885888D897F85726A686A63676D6D68838888988D898E -978D9FA695837CCDDFD5E8F6EFE4E6E7DFD2D2CBC8C9C4C9CBCACFD1CCC6C4D0C8BFBBB2B7 -B2B3B2AAA5A9A9A7AB9F858E978B929B9095A69F98A5A69C9BA79B8D92888D8D85837EAABD -CB776C5E595858575758585957575959605C585959575C5C5B5B776DBAB0A9AF88717994AA -B2AFA7A6A28B8885837C989BAEB7B390746D889282828D89A590A6A9927F89 -ABF7F6A5A2AA906CC05E59585859585B59615E5E606A686C74685959575856575857585757 -565856576C595656575657575858575657585E72747E8B9C8D836D6068615C60636A888585 -8B909C858D8D89979F979F9782909B9C9B94989B978E98948D9B9C9597929595909592908E -959B8E8D988B7F959497988D8E7C8B8B8D929CDBE4AE88828B83838E8B959583838289B3E5 -FFFFFFFFFFFCFAF9FEFFFFF6CFA992908E89827F8B766C6861636A6D71728D988E908E858D -9597A9A9A788BDE8DEE2F8E8EFEFF1F6DED3D7C8B9BFC3B9BDC7C9B9C8B8BEC7C0B7B3BAAF -AFB9B0A9B7A6A9AA948E858D9297988B989B97949EA19CA99C9E9C8D908E8E827E8382A9C1 -C668635B5E5C58575958585858585961B7675B585958585B5C8382618BAAC0C7BEC7BFBABF -A9A6AAAFBBBFBFC9C5AAC5C5C9B5C2C29C79A5A7ABA29C92928D7F717C8990 -D7FBEEA7638D956171595857585B5B595C7768829C88956C5C6C5857575759565755575957 -585756577474565756565756585656575760615C5E5C6067767676898D83837F7F72676C63 -67747F7F8388979F9C94838588949292949E9482959C83989283A195928E958D8B90948B97 -9E8E98988D8E959E95978883897C8B95929089C2E9CB9283828D83838B88889FBDCCE8FCFF -FFFFFFFFFEFFFCFBFFFFFFE5B5908E928B79839485676A605C6163686D7288929483909294 -9FA99F9BA2A6C0CED0E6F7EFF1FBF6ECE3DECBC4C4B5ABC0B5B7BBABAFB0C1BEB8BAB0AFBD -B9BDB0AFB8A6A19F9E8985978D8E909B989F9490A695979F9F9590958B8B8983898889B2CE -AA6060725E5E5958595B58595857587FBF5C595858585B5974BFA6608BC1CDC7D7DECDC1BD -CEC4CABDC0C0BABAA6A29BA6AAB2B9CAC27EBFB3B2C4C0C6C7C4C7C3BAC5C3 -E1C8C2856067A16A5B5958585857595B5E636C7E8E897F5C57585857585757565757565956 -565757586A6156565656585757575656565B6A7F8877767E715E5960728295908E8E79797C -766C74686C716D686A747E92928E928B94898E9795949E8B9B97888E9B958E8D978D909F9C -9E9E97958E95988E8D978E888290909090838994D9E6B8838B88827C82828BE7FCFFFFFFFF -FFFFFFFFFFFEFCFFFFFFFACB92898B8B8E908285766767676063686A716C8D908B89839095 -9F9EA2A6B3BBB9C3C6D0CCD9D9E1E5E2DDD6CBBEB8B2A2A9AFAFA6AEA7B0B7A5ABAAABAFB5 -B7BBBDAFA7AAA7959C8E90929E8E97978D979B95959C9F959C9E92858D8B898D8E7E9EC1DA -8D6760775C5959595758575959585882B25B585958585B5874AF9867A7B8B5B5C0AA8D687E -C0B0A2AFA9B2BAA79BA998A6BFA79BAE9B76C2BDB89FB2C6C8C6BDAABDCAC6 -C17F715E595C74635B58585857575C5E63858E8B8E886D5C5857585757565656575956575B -5C5756565B5E575655565756575657575757585B5E6C7C8B7F887E6C6A6161686C768D9798 -97979B949285857C68616C676C727E858E909BA1988D9595949E948B9B928D9C9590979895 -9797988E9897898E857C797C777C857698A5ABB5E2ECD08E898385887E7E76BBFCFFFFFFFF -FFFFFFFFFFFAFAFFFFFFE0A1899090828383857F6C6C636767636D686D748E83828D929897 -9895A9A2ABBDBAB7C1C2BDC7CAC2C7D5C4BAC0B9A9AAA295A6AA888EA9A5ABAFA798AEAEB0 -BDC2BDBAA9AFA7989488929C959E9E97988B90959F9F9BA6A19B9F8E8D8B858D837CAFCDE9 -88636871595B5758595958585958588DAA58585759595B5C9BC2945E747776717F74926A68 -61615E6C83AEA9B0B89BA1AB9B8E7C7463606A98A5A7BDC3BBBEAAC2BDB3A9 -6160605C58596159595757585758605C6D859289827C7460585C5856565656575E77747668 -605C5B5861595656565656575757575657575858595858595C67717F827F898982838B959E -9B9E9F9F9F9B898E8D8E8D827476746768727E7E8D94949B9E9E9C9B8D989B9594A298929B -908D9585887C7682777997A9CBD1D7DEEAF6FCFBFFF1E9BD838B858B85797E7EE2FFFFFFFF -FFFFFFF7F4F6F6FFFFF8B5929797827C7F778B89616A6D61686A61686D748D898589979894 -94929BA6A9A7A6AAAEB2BABDB2BBBDBABFC2BFC4C4BFBEC4C3BFC2C3BEB2AFA6A59BA6AFB7 -C0C3C0C1BAAF9EA79C94A198978EA59B98A19895A99F9EA5949F97908D8D897E8382ABD1E4 -7F71766A5B5C5958585859585958598BA56159585859595E8579605C89929282777982607E -AEA1906C606377726D6C958576767167605C5E676D6D6D8DA5ABA9AA9EBDA7 -61605E5B5872586A5958585758575658596D7E7C837760595C615857565557565971747E7C -776D6D60725856595B595B5B5B57575656565657595B59595B5B5C5C5E636D6C6A82839298 -9497979C948E8E9897958D9B888E8E928985838276717772889B94959B95979B9C9C929088 -8D888E8E90BBCDD9DCECF6FEFFFFFFFFFFFFFFFFFFFAF3D0958D83887F7F88859BDFECEDF7 -FCFBF4F1ECE6F9FFFFE09C8E8582827F8DA2A17C6C6D716A6168676A676C76717E90959892 -8B8E8D9B9E9C9BA7A1A5A9B0A9B2B8AAB5C0B5B8BBBDC9D5DFE8EEEEEEE8DCD0CACAC0BFBD -B8BDBFB3AAB8A2A2AAA9A6A9AE9C9FA5979E9B988E92989B9790898B838583897794BFD5D2 -8271825E585C58595758595758585B587CA779595858595C6D5B5B5B688985898D7E715B5B -7772675E605B605B5C595959595B59607661676C606A61605E636863677FA7 -5B58616C5C5858605758595957575757586C77728261595E7667575756565655615E5B5963 -676371745B57565E7F7C7471725B575856575658595E6368767682837C7C7479777E8B908E -8B949C9597909B9890908E899B988E97978E9F988D8883746D6D726D76827E8995899CB3C4 -CEE2E9F3F6FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0EAC488887C7994857C779CC2C3BE -BDC3D5E5E9EDFFFFF4AF98887E85888B8E97976C6C6A686A61636763676D686068777F8597 -85859B958E95958E98AA9FB2B2A5A5B8AEB2B7BDC9DAE2E2E8ECEAEAEFF4ECECEFE4D9E3E8 -E6D4CDC7C2B0A1A2AEA9AEAFAAABA7A5A1A9A29C9C9C929295978D8D90838B8E7EA6D3E4BF -716D725E7F67595B5958595857585B585995B57F5857595C9461595B5C67889B7967605758 -585859575B5C5C5B595859595858585C5E68676160615E5E5E6367675E6167 -5B5E83766A6C726C796A7974585657595B67766C605B607271635757575756565E6060595B -585B5E7C585B56608283888385777672726C60615C595C595C60676A77857F8D9892928E8D -8E8E857F8998929E907C958E889B948D8B8E898D92928889798E978B92A5BFD4E2EAF8FCFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFF5ECD997827F7F83826C779E989FA7 -959CAEBAC1D3F3E1C7A282898D7F8E9FA7C7B06D6C67676167716A716A685B6063686C6C72 -7E858594979092979B9BA6A2A19B9FA2A1B0C6D5E8E6E2DFE3E4E5E8E8E2E2EDE4E1EEECEF -F3F2F3F4F4E8E5E6CEB0BFAB9FA7A29C9897949EAA8B9E978D95948E8E908B8590AECADE8E -7183A1BA76585C5C5B585958585859595B596ABA95605B59895C575E5C5959595859585758 -5857595859615C5858585757585858607160676167686161686A72776A6367 -5B6397A2A69FA19B9B8B8579585756585C616D5B5B6C7685745B5756565757576D72716C72 -6871615E576159585C5E686C717279767F888576837767605B5B5C5B5B5E63616C767E797F -8595989CAE8E988B94957F85898588887E7E7F8295A1BDC4D0E7DDDEF6FAFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFBFBFFFFFFFFFFF9FFFFFDFCF6F0F1DFE0E7C07F828579727174909B9C88 -949F958E8B90C1A1898988858282A2BFD5E07E6C716A6761636D6774615C595B6067686C67 -6C7468767C747C828382949489909C97A7BAC2D4D9D7DEDDDEE1E4DDDEE2E0DCE7E7DFF1EE -ECF1F3F4F7FEF1ECD0D9E9E6E1DAD7CDBFBDAFA6A18E8B838582899089838B8B95AFCBD2CD -8DD7A9775B5B5959595957585858585959595B8ECEC1775B5C5958585B5859595958595857 -5758575858575858575657565857565E585759575958595857595858585959 -727994A2AEA2A1AEA7827C7458575757575E595763726D7E725E5757565758565758585E74 -7E7F857C7161595957585858585859616A7282747483797772675E605C5E5C5B5E5C5E6D9F -C2CAC6A79885857E7E857F8398A7B2B5C7CFDCE4E8F3F9FBF4E7F2FEFFFFFFFFFFFFFFFFFC -FEFFFFFEFFFFFFFEF9F4E9E9E2D5DACCC7BFBDB5A7B5AAC6EAE3A7797172686C7F94979F92 -979B8985909FB392907C8B9B9CCAE1E2D7B96C6867636161686A6871605C595C5E6767616D -676874746871727174746C797F7783899B98A1AF9FAFC0C6D1D7D7E0D9DDDBDADDDDE1E5E7 -EEEBF1F5F4E9F1DED0E8E8ECEEF0F0ECF3F4F2E6E3DBD0C3B89B958B7F797E89A9C3D5F6C2 -D9DD7E675E5959595B595958595B575858595C5E92D5CDA263595857585859585759585758 -57575858575756575756575658575757565859585958585856575758575859 -9E8B90A99FA2A1A2AA907C6059575759575758607471746D715B5757575857575859575858 -575B5E63635E5B5B606A5E5C5957595758585B59596074767C9082857F76678D6C68A1C9D0 -CAD1A56C6C7292A2C0C2D2DEEEF5F8FAFCFEFEFBF4F2F4EEE2F3F8FEFFF9F8FBF8FAF6F5F7 -F1E9DFE0D6D4C5C3BEA5B3B8B3B2B3A9ABA69E949B988B94D6E7C97C7263716D859B94959C -7E88888889AFA6859288889BA9C4D0CECC8B6A675E635E5B686A6871615B595B5B5B5B5B5C -5E5E7E97A18D858B90827F7E7F7E7C7F7C79837E7E89828283958D9BAFB3B2C3C4C9DBD5D7 -E7EBEEEDE0D5DED2DAD6E6E9E2E1E7EFF3EFF3F7FAF9F8F8F3EEE6DBCDCABDB5C5B8CBD9C0 -F3BFB577615B5B5B59595B595960595757575B5C5CA2D6D9B97E6371898568585857575758 -57575656575756585656575856575657575657595858585858585758585B63 -7161899F9F98A69FAA92835C57575758585760766C77746C57565756565856575756565857 -565856575757575959616A7267605C59585959595B595B5C839BA99F83717290BDCDD1796D -85CACFCCD7E4EFFBFEFEFFFFFFFFFCFAF5F7EFE2D7E3E1D9DBDAE9E3DDD6C8C1C6C6BAC2C6 -B9AEB7A5A6A9AB9CA1A692949B927C82797F898B8B959885BAE7D79E676371889498A6978D -7F85898D8D9B888589888E9FABA2B3BBBA716A686360605C606A6A6A6059595C5B61606163 -636A636C7E6A7488827988746D796D6C76726885B09885A288958E8B7E8E888883838592B5 -B2BAB3C2BDC2C6C0C6D2D9CDD0E1E8E2E8ECEEF2F0EDF4F6EEF5F4F4F6F3F6ECE2B0AEAEDA -E5D28B60615B595958585858595858585758595C5C609FCCD7D59868676772675857575756 -5757575757575857565656565758585B595B60615C5E5E6168686D67616368 -5E5E859EAAA29FAAAF88795B5757575857595E6A7463595858565857565857565657575756 -57575857575856575857575757595B615C5C5E5B5B595B596183AAAEA6885B88CEDEBDA9C8 -E8FAFCFCFBF8F5F0F3F4ECECEADDDBCEBDAA9F947E898B858B9E989BA19C989E898D928B8E -89907C8D92829095959797949595949492988B89838D8E7E89D2DDC6747482989E9CA1A588 -8B8E858B958D7985858997B7AAB9B3AF906A686061615B6C726C7972675E5B5B5C5E5E5B5C -5B5E635C60606167616A636C71727976797772747F797688929892978E978976798379829E -9BA6A7A5AAA2A2A2A69E9EAEA7A2AAA9AEAFC1BFB5BFCBCAD1D2D3DADAE2E9EDE2DBBDAFC1 -BF7960605B5C595B58585B58595B57595C5B585B595E609CD0CB6D776D5E838E745E585758 -5757575657585757565757565657635C59575856585858585E6867615C5C6D -795C76897C797C8B8B6C60585B58575957575B5B5B59565756565756565756565656565756 -56595757575757565657575857575958585859615E636A6763617992B07E5B6C797CABD0D4 -E0D6C4C2BDA6A6A79FA9A590959783857F7E7E766D6D726A71798E88888D8D8B85858B8585 -8B8B8382857F767C77747E77777E7E77727C777E857C8889729CE4D68E7183929B9F8E8E94 -89858B90928D83858994B5B5B0B2AEB09C827E7668605C687E7776796C605B59605C605B5B -5B5E60636163676367686A6A686D6C74767176727276766D777F72727C6D7785777F8D8583 -94909295947F899897949498949E9C929B988D9C8E8D9B90888D97958E9CA19BBFF194747C -74635E5E5B59595958595959585957575857575858595B60A1BE68CBC49E7F767F7E675658 -575657575758565756555758575C605E686761615C60616160618594989483 -60617E7F5C63767F61595B5B6358585E585658575758595758585757575656575756565756 -58585756565757585656565757585859595B595859595863766A61596D5E5E595C67686363 -6A7179727F8376857F8983887E777F7E7E7C6860616A74726D727C7F72797C767C7C767976 -7E7F8379767C7C767C797F777F797788837783837F8B7F7974C5F0DBB28E839CA19C958392 -978D8D948E888E858EB5B3A2B3A29FAE9F8B8372636C72687777746C6859595B595B5C5B59 -605E59636360636361676D716A727276727674747476747E796C7677717772797F7C7C8285 -887E888E7F857E9492929B979597988E908E83838E7F898B857C7C7983898979BEC4716C71 -957E615C5B5B5859575B5959585857575857585857595C5B618D9FF1F3E7CEA97660715C57 -575657575657575656565657576C5C5B5B5E635E5B5C595C5B5B6D92858B7F -776D6D6C7171746D606A6A6058575859575857565857575757575857565556565756585858 -58585756575856565856565756575958585958595859595B58585B595C585758616D676D76 -7C7C898383838D7F8B907F82907E827F746C74615E636D676C7C7C7482747274797976797E -7E77778283717C727E887C7F7F77797F857C838382898B6DAEFCFBEED5BDB2B8A795949489 -9490858E8D7E8890A7C1B3AEAAAFA29492766A616D716D77716D7C68635B5C595B5C5B5B5B -595E605E67606063616768676A6A7671777C747274777C7E74797677777F7F767C7E747E7F -83858D8989928B908D8E8889989595978E8B8D837C90857C857F777F82828377B8AFA77C61 -95946C5B5959595B59585B5958585657575657575657595B5E6085DEEAF2E2AE8B74616157 -58585757575656575656575657585657575758575758565856585858585859 -988E74888B8D928D9292715B58575757585756575657575857575656575657575658585858 -57575858575757565857575857565757585859585759585958897E595E5957585C63717172 -7E77727F7E747E7774797C777C7E77766C6D6C6063726D687479776D74767E7C79777C7F79 -7E7C767E797C83837C7C7E7E7C887C7C83897F888D7F7C94F3FFFBEAD4D0CECCC8B0979795 -8D8E858D828285AEC7B9B9B5A9A9A99482726874797F766D6D6D6A6D615C5B5B5C595C5C5C -5B5B6060616863636768616A6C6C6871746A766D6D7776727C797679746D777F72827E7E82 -838D8B9083838E94898D958E9095978E92948D8389928D7E7F7C7C7C837C7E85AE88827274 -718E8D5B5C5B5B5B5B5B5E5E5E5B5856575756575656585B5B5E6079DAF0CF675C5E747258 -58585858575757595757585957575657585757575757575758575759595B58 -6861605B5C585C595E6758575C595657585758585659585758585656575756565657595759 -585759585659585B5B58575758575958595C585759585B5963BE605761675B59596A6D6C63 -6A72686C726D6D6D6A6C7672677176686C7161676A686D676C6C7E7C727C79727C82767779 -79797F7C767F79777F827F7F7C838283827E8B888B8B77DDFFFCF1E8DED7D6D7C9AA989797 -94888D897E83A6C1C7BFB0B2B09F8E8B74767671797976717677677161595E59595B5B5E5B -5C5E5C636061676363676C6A686D6D68746D617772767E7982777472727C726C7C77777C85 -82898D8B898992958B909C88899E97979C978E8D8D838589718388777C83718BB5A1676C82 -6363835E6167685B5B5B5C5C615C57565756575856575758585C5E5C7CCDCE6A5C59576063 -57575756565756575756575857585757585758575756565756575960635C58 -74827471675857585958585656575857585758575557595758575757585658565758585958 -57585858575756585857575B58575958585B575957585859595C57575760605C616C6A6A71 -6D6D71727272776C7276746D776C7274636A72676C726867747C767C76777C82777E777777 -797E7E828382827E7F7C79837F76828885858D8D857FBAFEFFFFF6E5DBD2C7C3B597908289 -908885797688BFCAB3A9A19B95957F747272777C827776766D68746A5E5B5959595C5E595B -5B5E5E5E635E5C615C686D636A6C6A6D6C7471797974778272777F7979797176827F717985 -779097858B958E8D948D908E95909C9E95979E8B8B8E8D77897F797E767172AACC82636A6D -60595C5C5E6863595C5C616368635C57575757565656565757585B5C5C6AB3675959595659 -60595757575757565657585657575657575757575858575758565859585857 -59595959595957585857575757575958595B57585756585656565657585657575657575758 -57575757575759575958595859575758585959585C6061636A5E5857565861676060686771 -716876766C72726D6C71717476716A6C716A746D6D746872746D6C676D726C727974777C72 -7F7C797979767C83747F8379828383828388888E9072E5FFFFFFEDD5C4BDAB8B9B89828D79 -7C89746DB3D6D6C79F9B8B766C7E79747279767E837274716D717768595C5B595B5B5B5959 -5B5B5C605C635E5E6763616368686A7168717E676C7C747C7E7E7F79716D6771676D6A7272 -6C8992858D88908D908D908E949295949297948E8992857977716C74717EB0C0BF68636D72 -5C5E58595E60725E6063676760726D58585756575757575656565958595B60595857595757 -565B68585657565756565756565757565857585756575757575B5B59585958 -58595957595857575859575657585759585857585757595758575657575756585857575757 -57585858585957585957595858575B5B58585B6074777F8D7F928D5657575858575B5E5C60 -61615E67716D7976686C6D6C636D6C6D6D716A6C716A6A5E5E615E63615E616376797C7776 -797C7E7E74777C79827E7E7E7E83828888828D8D8289FCFFFFFFF1E3D6CAA78582897C7C85 -727468C7FAFFF3D3C4A7897C7F7674776D79837774776A63717168715E5B5C5B595E595C5B -5C5E5C6060606163616363676761676A6D6A6A6C746D7274767C7C7E726361676A6D68676D -728B8990897C8B97858B94888D98928E928E8B907C7974766D6A6D687194A9BDB863677260 -5B59595E61687E6060726C67605E6058585756575758575756575757595858595757575757 -56575660615856575756565756565857575757575758575B57585857585758 -59595957575856575757575957575757585656585757595658575757585757595757595857 -575757595958575957575858585B5958595C61718B898B90829C63575857585856586C716A -5E5C615C595E6D79838D928D8379777E79797268716A71635E605C5E5E5B5E606D766C7682 -71767E79837E7C74827E727E837C7F8B7F85958574BDFFFFFFFFF4DCC7A1747774747F7772 -7E7177F3FFF9DDC29C746D6867767171747279716D68636A77716C635B58585E5C605E5E5E -5E5E5E5E675E606360686C6368636363726D6A6C68677174727C8274726A6168686863716C -6D909798A6A79FA1A19798A19C9895908D8E8E8882776C777671766C6CA2AEBF95676A5E5B -5958595B5B5E5B595B5E68605E5C5E59575856565756565756565756595757575757575657 -57575758575B6D74676D7C6C72675E59575757565758575858575857575759 -57585757585856585856585657575756595859585756575656585656585758595857575759 -58595C5B57585C585959585B595759595C727C85898D899089A15B585757575757576C9494 -8D827671717E6D6063726D6A76828B958E8B948B888B8D8582858B858D8285837C7C7F7C76 -77767172716D727C6C798374797C837F88908E8B77CBFFFFFFFED0AA8E77676768676D726C -6863B3FFFCE0B7927C6A61686368686C7777747472676371726C726A5B5759595E5C5B5C5E -5E5C61605E6761686A61636763636861686768676A676A777F8B908E949297A5A1A2A5A2A7 -9E9FAEB5B3B0B0A9988E8B8D94908D88898E8579777671727C6D6C6D72A5BDCA76606C685C -5C595758595B5C5B595968675E615C58585656575756565656575757565656585756575657 -585657585757575758585758616D8588825E57565756575757575758585758 -59575856575756585757575656565657585757585757575757585857575857585858575759 -58585B5B5C5E585859595B5C5B585B5E606D8590898D9785908B585756575758585858838B -8B8B7E8E8D83908E898376726768636885908E858889897995989E9F979C909C8E909C8376 -888D8583838988929292897E9C6760596367676C6AD5FFFFFFF1D094887F7F6360636A6363 -6161CEFCE4D098927C635E5B5C6067726D686D67615E686A6D6C61635957595B5C5B585B59 -5E615C5C5C595B595C5B57585858595B5E6C766A686372A7ABB3B5C1AEA6BDC2BFBBC2A79E -A79B98AFAA9CA29C8D8E8B858D89858288857976726D727C74746D6182A6B2C36A686C635C -59585857585858575858605E6A606058575655565857595756565856565856575856565756 -58575656575756575856575757585757585758575961595758585857575757 -8D5B59575757565656575857565856585957585957575858585856575957575B5659585757 -5B5858585958595959595B5B585B5E72798289989289897E8B685858575757565760586189 -8B8D8D89908D838B9B94908E768E885E5E615C5B5B59595C5E5C605E5C5C5C5C5E5C59595B -59595C5C5B5C5B5E60605C6171585C5B585B595C60D5FFFFFFE4BE8B7E6C68616C616D615B -617EECF7D2AB857F675E5C5C5C60675C5958585857585857595B5B595857595B5759585857 -58565659565759575758585759575857585B5B6363637E8E9EB2BDABA1B0A7B5BFBDA9A6A6 -9E9EA5A2A198979B95989290898E827F83887F77716C6D7C726A6D6795B8BDB06863766359 -58585857585B5B6059575C5B5C5B605B5757575657575756575656565757575758575B6172 -7974575757575957585756575757595859585B76ABC9A27658585B58575757 -6A83895C595957585757575658595758575757585757575957575758595759595758585858 -58595B5858585B585B595B5C595C6D7692959B98948D857EAB5E746D575757565659715874 -898D92898B9F9094908883838D827C6A5E5B5B5B5B5B5C595B5B595B605C59595959595759 -58585958585858585858565758585959595C5B5C5EAEFFFFFDCF76796D61606367685B5B5B -5ED0FEF1BA79776A615C5E67675E5B57585756585756575757575756575858585757565757 -565657575758575757565858575858575859595B607272837E7F9C8998A6AEB3BFB5A7B2B7 -ABABB0A7A5A69B97908D88928B7C85897E7E85766872726D79766A7CBAB8CAA660616A6C60 -5C59585857586A605B585B5E5C67605B585656565657585756565656575756575863BD745B -58575658585957575858565957575857585B60B0C8D6DBBA67595857585759 -6383796871675C585B585756575757565858585857585858595B5858585B585B595B5B585C -5B5C5C58575B595C595B5B5C5B595B5E68779292949B958B985B9094635757575757746C5E -9F9F89928E8B8B89858D948B858B8E928B8B8B827F8D8B88887E77897C726D67616168685C -5B5B59585858585858595758575858575959585B5E97FDE4CC7C5C5E5B5C5C6C676158595B -76E8D1BA685C5B5C5958605E5E575657575757585757585656585857575658585757565658 -59585858585B5E606A5B57595B596160605C5B5E89AF928B94837C7C887E98AFAEABABAAA5 -A9AEAEB7A99F9C8D898E8B88857F798385857C72716D7E7C71796D8BA7C0BF71677982978B -675C59585C585C5956596A6171716D5E5B5957575857575856565757575756575B6AC85C57 -58575656575655565656565756575656585C5974C5DDC46A5B585757585759 -5E5959717E7F907F837E7774685958575757585957575858595857595C5C5B5C5C5C5E5E5B -615B57585859595C5B595B5B5E61636A746D7990949C9BA5687992A285585657575877985B -7E89928E8E88858B828B898B888D887F8E887E8D978E98988598A598959E8D8597988B9C97 -8D928E8388837C7783727177635859585958585B59B7E982685E5C5958585B635C5957585B -A1C7615E5C5B5857585C5C5758565655575756565657575657575858585857585758585760 -7E7F7E8E8379857F8B6D57575B595B5E5B605C7EA99CA2A7988E7E8D959CABAAA29C94958E -9798A6B3A59C9E8D859495908289837E8D837C7E7777746D71716C8EA5BEA1606772766163 -605B5B5C595B59595857606160595C5C5859585657565758585857565558565957679F5757 -5858585658585756575756565758575657585C5C8BD2B75C59585857585958 -835959596A83909883838D9090907F79686059585858595B5859585958595C595958595C58 -595959585B58595E5C595E67606A746874777E95947E95947298A5AB715758575759598D76 -79899C8B859790898D827E8B8982838D827E978E8890858E928E8E898D7C82948990958992 -888890928DA292959C8D89A9A26158575757595858838360615C5958565757575756565859 -6D5E5C5C5B57585858585858575756565759565858575958585B5C6767855C585858585761 -857F856C726C6C7F767E6757575959595B5E7F8B8B7E90B2A1A99F8B8B94979EA79FA6A99F -A1ABB9B8BAAE949598908D9089859490838889777F7E746D726D6AA1AABD956874886C5C5B -615C5B5B59595E575858585B5B595B58585856555656565857575757565656575858595657 -57575757575656565757555557565656565758595B796D765E5B5857585859 -6C5858585B6085828583898D908E898D97858382796A605E60595B5B5E635E5E5B5C5B5C59 -5959585C5E63605C6A71716D7E7E888D859498959B9479607476766A585757595959596182 -8989979090948E8D9B8D89928982897F7F8B948990978B888D907F83828894988E929B9088 -8B8B88898E88889088929B8592825E5758595B6A76595C5E59585857565757565657565758 -585959575756575858575856565756565857575857575B5B588297677C896759595B585958 -727C5C5758575976887F7F685B585B606A777F8B7C7F8E9EAAA9ABB3B0A1A2928888928E98 -A9AEB0AA8D8D95948E97858D8E908E908D85887E837F77746D6C77A9A9BD7E687C97766361 -6060595E5B5C675C5758585858585958575757575756565856575656565656565857575757 -57575656565657565656555655575756585757585B5B5B6A595B5757585858 -5858617C63595E7E8B929297907E8D8E888389929098909295837F858D827C7F74858B8885 -887263678592828885898D8D949B9B9F958E958D90988D8B8576745B57585B725859585E7F -8E928883978382979592988E928B777C94907E929C7F909794928283929B98948B9C959592 -8B898E9083898D8B9795898B7E89838389888B9771595B5958565756565757565657565557 -58585856575756575858565756565656565656575658595C85CB928279BA775B595859585C -767458575858576C71796D68826C7C77797C797C7C74949C9E9EA6B7A9B9BAA2A28B827E7C -979BA1A29798A1988D8B85889494858292858288767C83766C6C8EA6ABB3676D988960605E -6160615E5E675C5B5858585657565757575756575755555655555656565555555757565856 -57595657585655565658565555565656565656585859598E5C585857585758 -59585B5C58615B618B908E929094928E9E8D95948B8997928595888D8E8585929794949894 -9E9C74746D6A83908B9092949EA18D859F8E83948E8992928B8D9060585974886D58586392 -978B908B8D9885909C908E927983827C8B8390887F8B898E897C8B9895898E888E8E94A594 -8B98A2838E9089948D85838E82777C857E8D8E8B6057585857575657575757565558555656 -565758565856565756565757585857555857585857617474C2B3717698BB5B6C5B5B5C5959 -67635758575759617C79796D6A7467727E7274746A798895899CA59E9CAF959EA2908E9483 -747C8E909CA798959277828D89838988828882797F777E7C72719FAAB5A671829B90888D63 -6068766C636867585957565657565757565656575756565956565656565554555656565758 -5B67575B595756565756565757565658565656565659586057575758575658 -58595959597F5C5B7F909485899E8B8BAA97959F9792949588909B827C888E8B909E8E9295 -8E929B797F8B8B95989B97928D8E8E94898E9E8B98A190899B89955B5863959C956C575977 -908D858E85948B929B92898889828E83838B92948B908E8885898E8E898D94929490978E8E -959090948285908879859C837E85727E9089858E6158585757575759575757565857575758 -5757575757585657575757565657575758585859638E6DA1B7747C83CF7F776C6CBF7C5959 -585757565757586085797189716774777774766C677E7785928B9897949595888398908B95 -8379837677838B9088797E7C837F8988797F7C7F897C7C7F747CA7B5B295798B958B746D63 -638289889768635959585757575656565656565757575757565657575658565657585B6367 -5E60595959575656575755565656575857575B5C59575E5658575758575759 -59585959576759618E907F9785899C959497A1A19E9479768D7F778E909292A19789898E9E -948882828D948D989F9489899292959C94989F97909488889585AE5C5B838E958B885B5960 -9090908E9597908D8B928D798D8B7E899B90898E89827E7E798E8E8D8D8E9C94948B909489 -83928B928B838D8E8B90888285857F828E907F8E5E58575756575758575757565757575859 -5757585657575557595657585656575757596A799B6868C17F676CB3BE898B6A607C765C5C -58565758565759607277746D776A717E72766A6A6D7979837F858990928D8B7C838B8B8894 -90948D8B7C7677727476827E8D907E7985797F897F798874769BB7AAC2947192A5746A6C61 -677F7697B989615C5859575858565656575755575656565756565655565655565757565758 -585759585B5B595857575756575657575657565857575C5758565857595858 -59585859585B586D8D978E9BA59790978D979C9083898E89889B95908E83978E8B92909E9C -8B7E7F988D889095898D8D8E98AA9792A79B97A595948D979488B25B59858B97A19C715B5B -7F95979C92928D8B8D85898E8392988D9492898E8274727E7F908D8D8E8D89858388888E88 -83929C88949882949583777C7F798D94838B8D7E6C59595757585758565758585758575868 -5857565657585657575658575759585B5C7C978B926AB3B96C6372B7768B6C77776D7E6A5E -5857565757575C6168747971797271746D6871616D6D7779797F857F908E7C748982798D8D -889FA5959B827474777F828582797E79777C777F82888982779BBBBDC28574777C68687463 -6885828D946A5E595B59575958585756565757565757565756555556555656565557565658 -58575858595E767F7E7E747F71746A68595C58585758585757575B58595B58 -5B585959585B599589959E909BA2929B9C8B89988E82989E9092948995A69C929F9B9F978E -899492888E8D828E8E8989958E8289A6959E98909B8E8D949595A25E5B7490959E9E90675B -5C8E9595899488858B888992988D909C9490908E79797F7789927F888385828B8D8D8E8389 -97898B9F8390908883797E7688948B8B89837972775E59585758565B575758565658607698 -6A5859575757565857565857585E6798889F90A27298B96C6D6AB9A17E725C5B6D77768971 -5E56585857575968766C6C8879717F6C7C71676C7471747E7E74837C8989797C7E7C7E888D -8E8E978D8E907C7C79777F8277777777747C777C838D858282B0BDC9BF7F8577726D766D71 -716D7276726A725E595E5E5B59585758565658575757575657575656565757565858565757 -59575656565757585859595C606C767774837C886058635959585758585B58 -5959595959688D8E98928B949494A58E8D90908D8394839495949FA19BA598989897949598 -8E898D959098888B9B979097948B90AB9B949E8D90A1979898949F6A6082959C9898A28967 -5B5E768885888582838D8E9597988E958E8E9490798590888B8982858383979290908E958D -958E8895897F857979778B8B8B908E8D827C74797C6D59575758585E5E5656586377595B59 -57585858575957575757585B7EBEB2A1959B8E949EB37C797C8BBD7C6D5C5B5B5B5B687F92 -895E575757575C676C6A7C7C6772746C6A686074777C7F858982798285837E777283828282 -7677778E888E8374798385777E7672797C7172827788887E85BDB3B5B97F97927C7C7C7479 -72676872776D68605B5B5C5B5C585858685C58575857585857565757565857575756565957 -585858565756575757565757585858595959596168595B5B58585758585B58 -5959595B5963978D9898828EA294899F958990858B9B98948B9C989E9B989E9790898B948B -8E8E9BAA8E8390948595988B8B9C9097A690949C989B9B9895A6795B71898D89928D8E9885 -895974908D8388828E8E8E959594928B8D97957E8882828D828B8E777C898B9497948D9598 -838D957E908B7E7C7788898588888B89797F7479778272685958585B59575958716158575C -60675B5956595757585B5B5CCFBD8B7E9B8BA195BD9B6A8283BD897C605B5959585B5B5C6D -9072575658575B616A6D7F6A6D7F676D6860717E7E767E82828E857E8576827777766C796A -6771746D767C777E7C7E82727274777C79766D777776897E8DB2ABBBAB909E8D857F717768 -6867676C71685C726A595B595959585CA5A679767660595859595957565757585658575757 -5858595758585857575757585959585857585858595B5B5757575757575859 -5E595859585E9795838D9F97A19C949B9E8E889B958B8D929F94959095988B8B8585909B8E -929F978B9595909B979090929897979294978D9494909E929B9C90746A766A686771748598 -94596374797F8590978E859B949498928D8E8874768D88899283898979898997928B97928D -8D88828E8B8276767C85798B8E8D858B82837274828374887C6A5B585756585C7276605B71 -898B8B7C6D7774775E5C59A2D19C74959595AAA99B639085A9B992765B5B58585B5858595B -6367575659585963746C796D6D74676874686C767777767F7F79827C767974747F747E7C6C -6C71716D747C687C7C747F8276777E726C7171717C827979A2AFA1BB958DA7988D9795856A -6A6D6868615C5E77676059585857585B957C5B595B677476605B5859575959575759575957 -585757565758575856575759585B59585858575958596A6A59585757575959 -595B5959586D988B9EA594A19B949C98978D979090979EA1948BA192909E82859BA19C9C9B -94AA9C94979F9E909F9E98A29E94949889899E9794AB908E978E9592897C948B6D6A615B61 -5E636D726860767C899083898E908D8D837F7C7E8B8B8D8B888D858B8B8B908E92928E8985 -8D94858E89727779777C7E8590907F828877798B77777E797C85775857585758606168717C -6C76827C7F8B88795E5B6DCBA1907261677E6A6D636C6D77BE8B8360595859585859585959 -595C5B585958595E606360636C71716C6868777172747C7279747285716D7E71798385726C -726C6D746D776D6D747776767676726A716874796C79768295B3B9B8887F949B958B858268 -6768615E6060615B5C605B575958595E9C6C5E595958575859675E59595758595858565758 -595C58575957575957595757575956585659595C67979F685958595857595B -5B59595959719B929BA28D949B9890A69098A29C97A59B98ABA18E9C8E7E979494A29C9798 -9B92909C979B989C909B9C958E9E9B90978E9E9C9B979092928B908D7E837C76858882685E -5B617183888E7E686167777E858D8B83827E8B8889838B8879888E7E8D9083898E90838E8D -828E8B838B7C79797283888E8D7F8579777E8377797E8371777F716D5B5858585858595958 -595B595C616D6D5C5C5BAAA99B685E5B5C67676C60746A9EAE7F6A5B58585857595859585B -5958595B5959585858595B59595B595E6A677471686C76716D7674766D716C747C83776C68 -636A6D6A716D68717972776C6D6D766A6D6C6C7976797682A1B59292A19C79727E74777260 -61615C5C61605E5B61615B585858575E7F6863585959585959585859595C605E5959585758 -5E5C5B595B575759565757565858595B596C82959789615857585957575C5C -5B606A595967949E94A79E95929F97AAA19FA2857FA29B9895989083909C8B97A190959B94 -8B959797A7AE949E979B9F9592948B8D9C8E8E9B928892928D8B897F6C8989798B82748890 -77776D63637C7C6C71635C5C60636D72798B8B888997857E92888E957E858383928B858988 -82897C7C777C7971828B928B8288898274858872797E6C6D7C71797167685E59585759575B -59595B5958585B595982AF827661595B676D72675C6189C882826159595858585B57585B58 -585858585757585858585759585858595958585E5C68686A727674746A6D6771796A67605C -6163685E67716C68726A71766A71766C636D776A76746A94B3AE8D7E7F85A5A67977766C5E -63605B61615B605B5B675C5E5B5B59679E715C5C585958595958595B58595C595B5C596A6C -635C5C5B585958585E675E6A6368716C6861616163615E585B595758575959 -5B7F885959608D888E7471909292979B9F9E9BA58E8E9488908E9C959BA18B909E948D928B -94989C959C988B89988E89909592949E928D9083949E8588837F889089888B887782827C7F -7E8D9592897E685E5C5E595C615C5E60687276747677727E8289948E95828D8B8B8B8B8D89 -8379687F7C7E7E79828388837E85767C85717485766872687C71716D6A687472685E5B5859 -585857595859585B60BB8B79635B595C677C6A606D60B29B77615958585959585857585959 -5859585758575857585858585859585857575B5B5958575B605C5E60636771716D61616160 -63616767636C6C676A686A68686D6871716C747476726D9CAEA28E6C747F7C92A59B765E5E -605C605C5B5B5C5E5B5E6D605C5C596161595B5E59585B5B595C595B5B585959595B585B59 -5C605B5E6067676D60676A5B63635E676163686A61615E5B5C595958585858 -6790A55C595B5E5B5C5B5B83A29EA1A18D9F9FAAA5988E8D98888D9C9095ABA18E9EA29494 -9F959C95929095949889949895959F9B9494959594958E83908B83898E9085837779767979 -8D8B7F838E989279727985605C5E5B5B5C5B5B5E5B5C60605C63676C828379857F7E858882 -8B9B7671797F767F7E85827F838877797482777E82747C7C7E716879746A766C7174726C61 -60595858575958598989856759585C6159636D7C7494B5776C585957575857565858585B58 -58585858575757585759585757595759575758585959585B595C5C59595B5B5C5B5E5C5C5E -6063636063676C68636A616767686767686A6C79716C766C82A18B6C7F89796C727FA59568 -5B5E5E5C5B5C595B5C5868685C5B596C5B5E5B5C595E5C5C5C5B5B5B5C5B5B5C5B5C595B5E -59595B595B5E5B605B60615C606A616763636C686A685E5958585857585857 -88989B6A5B595C605B5C5B68989B9E9E979FAFB29F988D858B94958B959E9BAA98A5A28E90 -8D98909092959F988E9298959B979E959C948B9592929794838E8E89908B767C83797F8985 -8D827E827C837C8389827E7C7776887F7167605B5B605C5B5C595B595C6774747E7C888589 -8879726C7479778E887F7C7F82827172777E7C7F797E7C77716772726A717677717672747C -8B716C6A605C5C6DAA94765B5959635E5E5C83776CAF7F725C585858585857585857595958 -585957585857575757585757575757575755585957595958585858595B5958595B595E5B5C -5C5C605B616A63606360636761636363606C746C766D6A6A616A7771776A6A6A6D6D677998 -95745C5B5C59595E5B595E59595963A7775C5B5B5B5B595B5B59595C5B605E595E5E585C60 -5B595C5B5C5E5C5E5E60616A68686C6C687168676C675E5858595758575958 -859B97978879929494A1605E8B9F9595A7929BB29C9097888EA1978E97979C95A5A2949895 -8E97929B97A595949B8B949C94909E9490949C8E929E7F928B838D92888B827C767C838D83 -7F9082727C82888B82746A7E7E828D837F89827C8267605C5C58585B59595C606D77777E8B -7E77747C76748D83838879796A72766D7676888B6D74797167747267686C6D7771686D6876 -856D6D616A6C67AF826C5B58595E5E5E5B5C6C63A6956D6058595857585958595857575B59 -57585958595758585856575856565657565557585758585957575659585959595B5B5B5C58 -585C5B5E5B63605C615C5E676168615E67676A6A716C636D6A636C686A6D6A7685836D6A76 -7C9B92745E595B5E57595E595C59688571595959595B5B59595B575859595B5E5B5B5C5C5C -595C595B5C5C60606067616A6A6A67686A68716C686C615858595859585B58 -779FA5979EAE9CA2A9A989619095989C899E958D929594909C9798AB9F98A59EA7A5A29894 -948B959B979F92929E8E94A69F8D92948B929898949892839B908B89858376767E82897F7C -88777E89857C827C747C82798589777F7E778383828583797F725E595B5B585E585B5B6168 -6A727E68727479837C777F7E767177747288886D767472716C7468687174776D6D6863676A -6C776A6C7163AE9072595858585E5C6058616D63AE74685B5B585858565858585858585757 -57575857585758585957595857585757585857575757575B5658575859585859575C595959 -595E5B615E5B5C5C5B615E60605E5E6061636368676A6C67676767675E605E6179797C7F76 -676D74908E7F5B5959575C595959596A7E746A5B5B5E5B5B59595B5B5959595B5B595B5B5C -5C5B5C5C605C5C635E616760686C60676D67716867635E595958595C5E5959 -7C97989CA5B0959C9E9E9C909E9F9BA59792958989A195989EA9A5A1B09FA5A79498888EA9 -929B9CA58E899E9B8E95978E988E959B988D88898989948D8B8E8B7E88827E778282908E7C -7E8D7F828579827274887C8885858E7F7E85777E827E767E857F8B7E6A74635B615E595B58 -58596367747F77837C6A797C72797C72777F747179746D6C6C6C686D7268717168676A6D71 -76746C766376A16A5B5959595C615C595B68618E926C5C5959585859585958575858585757 -5857585858575959585858585758575758565857575957575758575759595758585E5C5E59 -5C5B5E5B5B5B5C5C5B5C5C60615E5E5E5C616761635E5E6A636363605E5E5C6161676C7F6D -6376716C7E94928860585B5C58615B5860839790775B5E68675B5B5959595C5B5E5E5C5C5E -615C5C606160615E606067636D6D6C6C686C6A676A675E5C5C5C595E5E5959 -839B94AA9B98A19C9EB0B0A9A6A59795978B92A1A99FA9AA9FA2A5AAA69F95989B9094A5A6 -929C9595949E90979B859795889B988D83978E8E908E838E8E7C827F7477837F838B85827F -7C8985798979797C71777F79857C827F79897E768579777C837E7F837E7C8E897F8385615C -5B5958585B5E7677717C776D77777977766C6D746760767671636C686A766361595B67686A -7C686C716ABD7F5C5E675B575E5B5E585E5C6DA676605B595B595858595958595958575857 -58575658565856585957575856575757565757575757575757585658585B595B5B5C5B5C57 -5858595C59595B595E5960615E5E5C5C5C5E615E60605C6367606360605E6067635E5C5E68 -605B61616168798DA29261585958585B5C595C749E95836C74746874685C5B595B5C595B5E -5C5B5B5C5C6083746A72636A7168686A6A686A6C6A636059585959595C5B58 -79A69E94A6AA9FA7AAA7A9A19C94A2858895947F989F9E9FA9A597A59E9C9EAA9B9EA7A68E -92A19495928D948E979494988E92908B889898908B948589928E8B7F7983898B837983797F -89768583747C7E76767C827F837F79827E828B838982827C767F7E7E8B8283857C8D796A72 -685B585758585B676C7471727C7C767F746C6A71726372716D6A5E5C5B5B58595958595B5E -687472639F92605B636363635B5B5C5E6C609B6A6D5E5B5959575759575858575757585757 -585858575757575658585958585858595658575858565858585B5857585958585758595758 -5857585C59595C595B5C5C5B605B5C605B5C5E635E5E5E606160605E5E615E605E615E6060 -605C5C606A6D6D6C63748898745958595C595B5958678383836C6A6A7C7F74685C5B5B5C59 -5C5C5B5C5B606774A579827E7171606A7168716C676761635C5B5B5E5C585C -68A1AF98A5AAA5A2AB9C959C8E929590958B8BC9A67190959097A9A2A5A2AAA69CA2A790A1 -9B9B98958E89908D9BA2897989958E9497958990929092858D907F7E8B8D7F7F83828B897E -7F83727C83827E8283897F7C828283838583777E7F83797C7E797F828592767C8B766C7168 -767276635E59585B5C5C6A7177767E747279716D6D71687C746771717667595B5858595859 -5B5C5E8B95635E6872796A6C635B5E635B77795C595B585857575858585859585757585857 -575858585758585758575658585756575758575857565656575858595B5B58595B59595957 -595959585B5C58595C5C635E5C5B595E5E5E5E5C605B61685E61606367636161615B5C6363 -5C605C5B6A716A72685C5C7E9594725C5759595B5B5B595C829792796D7272857163635C5C -5B595C5C5B605B7679908B9874726D6A71716A716C6160615C60605B5B5B5E -5E8385A69E98A29B9C92959597888B92A18DAEE8975C618995ABA79EA1A1989FA192979B90 -989BA2948E827C9B988583928D9C958B9292948E908292958285837C8E827F85838B88837F -747983899B90838B897E7C82898285887E887E7C827F7E7C8277798B7E778D857C7668726C -717E77896D7274726D676D79797F7771777676676A716A6D766C6C746867635C5758585858 -585B619E615E60767E726A5961635E61607E59595B5B58575858575858575B585958565857 -57595859585958575956565656565657575856575755575757575658585B585B5E59575B56 -5958585B59595B5B5B595B5E585C5C5B5E5E5C6063605B63605E5C636063605E6067605E60 -595C5B5958605E605E635C59596C85A67E6858585B5B5B5B585B6C9C9E7777636C745E5C5C -595B5C5C5C5E5C7260798D7F766D6C6C6C716A686C7F765C5C5B59595B5959 -7E7C6A606C6D768E958E8D908289989B8E83B8C2715C6189A2AEA69F9FA5989BA6959FA295 -8E9790948874828892928E9B8D899C8D8E95888E8E8E958D928285857C88958888888B777C -83778D928D8B837F7F7F8D797F7C6D83838E897983827E7C79827E85837F908E74727C7274 -7276767674777C716D71747C797F796A6D79726D6D687976746D71716C6C615B5857585859 -585B88835E5C61676768605B606C61746D5B58585858585858585858565958585758575657 -57565655585856565857565857585858575856575957575857565757585857575758585858 -5958595C595B60595B60585B5C595C5B595B5E5C60635E5C615C5E636068675E6D675E6160 -5B5B5B5B59605E5C67776A68616863728895836D5B58595C585C5B5C6783948D7761745E59 -595B5C5C60605C5E595C5E637F77676D726C766A887163595C5C5B5E5B5B5E -7E799083777C6A676C6D72888997978E7CA2AB6C5C5B63989C909EA19E959B9B949C988B9F -95837F8277799798838B888D89909489978D888B8289837C857F7C8B8B8889898B88797E83 -7F8588908E7C838283908E82777F83828B7C8283838285797783827E89927E747267727674 -797C7E727472687271747C7C747174766A7F726A776D6D74796C74717274675B5859585758 -595B715B59616A7E766A5B5E6A637268635C58585657575659575757585759585759575758 -57575758585857565657565756575556565756575857575757595957585C57595958595959 -5758585B5959585C5B5B5B585C57585B595B5C5B5E5E5E635C5C605C5E5B635E605C5C5E60 -5B5B595B5B595959585C63746C68716C67636792A78B5C5958585B5958595C7C6A7C8E6A5C -676863605C5E635C607C7F6A6A68716C716D726A6D5E5C5B5C5C5C5C5C5B60 -94798B97978E8E8B74746861718B747ED5EB90675E5B5E76798B8D909E98989E8E8BA19890 -836C6D74798E859292888E948B7F8B908E8B8E8B89748E897F838B83988E83898D888B8D82 -8285857F88838890928579828B82857777827E7E857479767C76748D7E7E7E7272766A747F -797E74778277746D74727788827F79726D6D79777C7C726C746A716D6D7768595857585859 -5959585B595E615C5C5959595B585859595859585858585859585857585859585658585857 -57585858575857585857575956565857565756575657585858585757595857595B595B5B57 -5959595C605B595C5B595B5B595C5C595B605C5B605C5C60615B5E5E5B605E615B5E605C60 -5C5B5C585B5C59595B595C5C676D5E615C5E5C5E6A83958E6A5B59585B5959595B5B595959 -616074766D71685B678D6C63726A6D716C7668636A6A716A686761605B5C5B -88908D89928389857E9289908E6A76E0F1A5615C605E605C5C63676A88989B959495989782 -6D6D6C828988857F8B8B90908D8E90858B949085798D898994828D9E8B8E8E7E7F8B958283 -7E7983837F858282897F8389837279828289897982827F88837774827F7E6D7971777C7788 -7E79777C777977717788777F7F72746A71717177726C7E717274716A727C5E595958595857 -5B5858585859595859595959585759585958595959595C5B59595858585858575858565656 -57575757565756585B59575857585756565757575859575857575858585858595958595958 -5858595B59595C5E5B5C5C5C5B5B5C5B5B5C595B5E5B5B595E5C5E5B575C605C606067605E -605B5E60595C5C5B5B5B605B5B605B595E6C76635C5B607E9FA5855C5B59585B595B595B57 -5959585B595C5C5CBD726361676163748272616363716C71746D6A6A675E5E -94898D8290887C8D928D95A18579DFFBB0635B5E71636A7C77636361606774747F858E8889 -797482908B7F857C8D8E7E8D8B8E8B82839888838582928E85908D8B8D88838E888D7F8283 -8283828D8382837E8E888383897E74838D76888979838D8282837C85857771777F748B8985 -777983777776727C7E74858E8D7E766A727772718274676D6D636363716A60585858595958 -575957595957595859585B5958585858585858595959585859585858585759575758585758 -58575B585758585758585758585756565655555758585758585B595B5B5B58595857585859 -5B595859595B595B595C5B595C5B5B5C5C5B5C5B59595C5C5C605C5E5B5B5E5B5C5E5E5E60 -5C5E5C5C5C5C605C5C605E605C5C5E5B606D79776C5E68605E6C88908568585B5B595B5B59 -5959595B595C5B7CC582676C67686C71947F686367676C7272727276726360 -9885929089898D979C8D958877D6FFD9746C606C6D766063635E615C5C5E5E5C595C616C67 -6C727C90837C7C828389888D9B947E9C9C7E858D85929B907F8D8D7C8588898D82837F7F83 -7F897E8383827F8379888588887785837F837E828D7C7E827C7F8282716C7976838288837F -7C7F72746C7476767E74717767717C687274686A74726C6C6A687472727168585758575858 -565858575958595857595859595957595857575957585B5757575758585758585757575859 -595757595758575758585658585758575757575857585857595959595958585B5957585957 -5C595B5C5B585C5B595B5C5B595B5E595C5C5C5B5C5B595B5B5C635E6060605C5B6060605E -5C595E5C5C5C5B5B595B5E5B5B5B5C5B5B5C607285745E6A605C5C5E74A99F71595859595B -59595959595C5BA9A190826D6A636A67636C6D6C6C6A727172767979777271 -9094828394899898889E8B79B8FFE589686D636A6D79636D7C85746A67605C5C5B5C5C5E5C -5C5B5B5C616D777F8E90A598888DA1A18D8585898594898E988E8E8279898B838B8B7E8589 -89898D7E7E8B79857F7E8B858589897E797F827C797E7E7982837979727C7F7E7C88837F82 -77716D7472747C76727F746A77717172726C6C746C68727274726D7E7C796D5B5758585958 -575857585757585757585859575957575857575B57595B5657585858585658585758575758 -57585757585857565757575957565757575856585756565857595858585959585758585958 -585959595B59595B595E5B59585B5E59595E5B605C5B595B595B5C5E5B5C605E6060605C5C -60595E5E5B5E5C5B5C5E5C5B5B5C595C5B5C5C5B5C635B5C5B68685C5E6072988D7C725C5B -59595B595B5B63C782836D68726D6A686867636160687C7E887C7979797671 -958D858D94958B90928B957CD4F8A76C726D5C5B7674615C7F9E9B9C95857C67595959595E -5E5B5C5C5E5C636D7E7F71798297977F7E858E898B8B94928E8E7E888D85958B838D888E83 -948D838B7C8898828B897C7F8E8B838D8D85899583827F747E7E77747F897F8382888E7E72 -796A767C797F767E7C71767277766D746D6C6D675E5B5B5859595B5B5B5C5C595859565857 -5859585859585758585959585859585857595859575759585858575958575B595758575658 -5757585B575957575B57575B5E585857575758575856565758585B58595858585758585859 -5858595C59595959585C5B595B595B5858595C5B595B5E5E5B5C595B5E595B5B595C5B5C5E -5B5C5B595B5C605B5E5E5C615C5B5E5B5B5B5C5B595B5E5C606D7674636061686D8EB79879 -61595C5E5C5CBFC67968606D63747279776768686A6D716A6D7798927F7972 -end -restore -%%Trailer diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob06.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob06.gif deleted file mode 100755 index a04aaa009..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob06.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob07.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob07.eps deleted file mode 100755 index 1f240b442..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob07.eps +++ /dev/null @@ -1,1086 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Two_Springs.eps -%%CreationDate: 12/16/1995 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%BoundingBox:44 440 527 720 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -0 slc -newpath -1596.5 4921.5 m -1479 4453 1714 5390 0 180 A -1 sg fill -gr -gs -0 slc -newpath -1479.25 4453.25 1714.75 5390.75 0 180 A -52.5 slw 0 sg str -gr -gs -0 slc -newpath -1831 4921.5 m -1714 4453 1948 5390 180 360 A -1 sg fill -gr -gs -0 slc -newpath -1714.25 4453.25 1948.75 5390.75 180 360 A -52.5 slw 0 sg str -gr -gs -0 slc -newpath -2065.5 4921.5 m -1948 4453 2183 5390 0 180 A -1 sg fill -gr -gs -0 slc -newpath -1948.25 4453.25 2183.75 5390.75 0 180 A -52.5 slw 0 sg str -gr -gs -0 slc -newpath -2300 4921.5 m -2183 4453 2417 5390 180 360 A -1 sg fill -gr -gs -0 slc -newpath -2183.25 4453.25 2417.75 5390.75 180 360 A -52.5 slw 0 sg str -gr -gs -0 slc -newpath -2534 4921.5 m -2417 4453 2651 5390 0 180 A -1 sg fill -gr -gs -0 slc -newpath -2417.25 4453.25 2651.75 5390.75 0 180 A -52.5 slw 0 sg str -gr -gs -0 slc -newpath -2768.5 4921.5 m -2651 4453 2886 5390 180 360 A -1 sg fill -gr -gs -0 slc -newpath -2651.25 4453.25 2886.75 5390.75 180 360 A -52.5 slw 0 sg str -gr -gs -0 slc -newpath -3003 4921.5 m -2886 4453 3120 5390 0 180 A -1 sg fill -gr -gs -0 slc -newpath -2886.25 4453.25 3120.75 5390.75 0 180 A -52.5 slw 0 sg str -gr -gs -0 slc -newpath -3237 4921.5 m -3120 4453 3354 5390 180 360 A -1 sg fill -gr -gs -0 slc -newpath -3120.25 4453.25 3354.75 5390.75 180 360 A -52.5 slw 0 sg str -gr -gs -0 slc -newpath -3471.5 4921.5 m -3354 4453 3589 5390 0 180 A -1 sg fill -gr -gs -0 slc -newpath -3354.25 4453.25 3589.75 5390.75 0 180 A -52.5 slw 0 sg str -gr -gs -0 slc -newpath -3706 4921.5 m -3589 4453 3823 5390 180 360 A -1 sg fill -gr -gs -0 slc -newpath -3589.25 4453.25 3823.75 5390.75 180 360 A -52.5 slw 0 sg str -gr -gs -1011 3984 1167 5859 R -0 0 0 1 1 1 [0 127 127 127 0 247 247 247] patfill -gr -gs -1011.625 3984.625 1167.375 5859.375 R -1.25 slw 0 sg str -gr -gs -1011 1484 1167 3359 R -0 0 0 1 1 1 [0 127 127 127 0 247 247 247] patfill -gr -gs -1011.625 1484.625 1167.375 3359.375 R -1.25 slw 0 sg str -gr -gs -0 slc -newpath -1557.5 2421.5 m -1479 1953 1636 2890 0 180 A -1 sg fill -gr -gs -0 slc -newpath -1479.25 1953.25 1636.75 2890.75 0 180 A -52.5 slw 0 sg str -gr -gs -0 slc -newpath -1714 2421.5 m -1636 1953 1792 2890 180 360 A -1 sg fill -gr -gs -0 slc -newpath -1636.25 1953.25 1792.75 2890.75 180 360 A -52.5 slw 0 sg str -gr -gs -0 slc -newpath -1870 2421.5 m -1792 1953 1948 2890 0 180 A -1 sg fill -gr -gs -0 slc -newpath -1792.25 1953.25 1948.75 2890.75 0 180 A -52.5 slw 0 sg str -gr -gs -0 slc -newpath -2026 2421.5 m -1948 1953 2104 2890 180 360 A -1 sg fill -gr -gs -0 slc -newpath -1948.25 1953.25 2104.75 2890.75 180 360 A -52.5 slw 0 sg str -gr -gs -0 slc -newpath -2182.5 2421.5 m -2104 1953 2261 2890 0 180 A -1 sg fill -gr -gs -0 slc -newpath -2104.25 1953.25 2261.75 2890.75 0 180 A -52.5 slw 0 sg str -gr -gs -0 slc -newpath -2339 2421.5 m -2261 1953 2417 2890 180 360 A -1 sg fill -gr -gs -0 slc -newpath -2261.25 1953.25 2417.75 2890.75 180 360 A -52.5 slw 0 sg str -gr -gs -0 slc -newpath -2495 2421.5 m -2417 1953 2573 2890 0 180 A -1 sg fill -gr -gs -0 slc -newpath -2417.25 1953.25 2573.75 2890.75 0 180 A -52.5 slw 0 sg str -gr -gs -0 slc -newpath -2651 2421.5 m -2573 1953 2729 2890 180 360 A -1 sg fill -gr -gs -0 slc -newpath -2573.25 1953.25 2729.75 2890.75 180 360 A -52.5 slw 0 sg str -gr -gs -0 slc -newpath -2807.5 2421.5 m -2729 1953 2886 2890 0 180 A -1 sg fill -gr -gs -0 slc -newpath -2729.25 1953.25 2886.75 2890.75 0 180 A -52.5 slw 0 sg str -gr -gs -0 slc -newpath -2964 2421.5 m -2886 1953 3042 2890 180 360 A -1 sg fill -gr -gs -0 slc -newpath -2886.25 1953.25 3042.75 2890.75 180 360 A -52.5 slw 0 sg str -gr -gs -0 slc -newpath -3432.5 2421.5 m -3354 1953 3511 2890 0 180 A -1 sg fill -gr -gs -0 slc -newpath -3354.625 1953.625 3511.375 2890.375 0 180 A -1.25 slw 0 sg str -gr -gs -0 slc -newpath -3589 2421.5 m -3511 1953 3667 2890 180 360 A -1 sg fill -gr -gs -0 slc -newpath -3511.625 1953.625 3667.375 2890.375 180 360 A -1.25 slw 0 sg str -gr -gs -0 slc -newpath -3745 2421.5 m -3667 1953 3823 2890 0 180 A -1 sg fill -gr -gs -0 slc -newpath -3667.625 1953.625 3823.375 2890.375 0 180 A -1.25 slw 0 sg str -gr -gs -0 slc -newpath -3901 2421.5 m -3823 1953 3979 2890 180 360 A -1 sg fill -gr -gs -0 slc -newpath -3823.625 1953.625 3979.375 2890.375 180 360 A -1.25 slw 0 sg str -gr -gs -0 slc -newpath -4057.5 2421.5 m -3979 1953 4136 2890 0 180 A -1 sg fill -gr -gs -0 slc -newpath -3979.625 1953.625 4136.375 2890.375 0 180 A -1.25 slw 0 sg str -gr -gs -0 slc -newpath -4214 2421.5 m -4136 1953 4292 2890 180 360 A -1 sg fill -gr -gs -0 slc -newpath -4136.625 1953.625 4292.375 2890.375 180 360 A -1.25 slw 0 sg str -gr -gs -0 slc -newpath -4370 2421.5 m -4292 1953 4448 2890 0 180 A -1 sg fill -gr -gs -0 slc -newpath -4292.625 1953.625 4448.375 2890.375 0 180 A -1.25 slw 0 sg str -gr -gs -0 slc -newpath -4526 2421.5 m -4448 1953 4604 2890 180 360 A -1 sg fill -gr -gs -0 slc -newpath -4448.625 1953.625 4604.375 2890.375 180 360 A -1.25 slw 0 sg str -gr -gs -0 slc -newpath -4682.5 2421.5 m -4604 1953 4761 2890 0 180 A -1 sg fill -gr -gs -0 slc -newpath -4604.625 1953.625 4761.375 2890.375 0 180 A -1.25 slw 0 sg str -gr -gs -0 slc -newpath -4839 2421.5 m -4761 1953 4917 2890 180 360 A -1 sg fill -gr -gs -0 slc -newpath -4761.625 1953.625 4917.375 2890.375 180 360 A -1.25 slw 0 sg str -gr -gs -0 slc -newpath -4995 2421.5 m -4917 1953 5073 2890 0 180 A -1 sg fill -gr -gs -0 slc -newpath -4917.625 1953.625 5073.375 2890.375 0 180 A -1.25 slw 0 sg str -gr -gs -0 slc -newpath -5151.5 2421.5 m -5073 1953 5230 2890 180 360 A -1 sg fill -gr -gs -0 slc -newpath -5073.625 1953.625 5230.375 2890.375 180 360 A -1.25 slw 0 sg str -gr -gs -0 slc -newpath -5308 2421.5 m -5230 1953 5386 2890 0 180 A -1 sg fill -gr -gs -0 slc -newpath -5230.625 1953.625 5386.375 2890.375 0 180 A -1.25 slw 0 sg str -gr -gs -0 slc -newpath -5464 2421.5 m -5386 1953 5542 2890 180 360 A -1 sg fill -gr -gs -0 slc -newpath -5386.625 1953.625 5542.375 2890.375 180 360 A -1.25 slw 0 sg str -gr -gs -1167.25 2421.25 m -1479.25 2421.25 L -52.5 slw 0 sg str -gr -gs -3042.25 2421.25 m -3198.25 2421.25 L -52.5 slw 0 sg str -gr -gs -3198.625 2421.625 m -3354.625 2421.625 L -1.25 slw 0 sg str -gr -gs -5542.625 2421.625 m -5698.625 2421.625 L -1.25 slw 0 sg str -gr -gs -5620 2382 5698 2461 OV -0 sg fill -gr -gs -5620.625 2382.625 5698.375 2461.375 OV -1.25 slw 0 sg str -gr -gs -3198 2382 3276 2461 OV -0 sg fill -gr -gs -3198.625 2382.625 3276.375 2461.375 OV -1.25 slw 0 sg str -gr -gs -1167.25 4922.25 m -1479.25 4922.25 L -52.5 slw 0 sg str -gr -gs -3823.25 4922.25 m -3979.25 4922.25 L -52.5 slw 0 sg str -gr -gs -3979.625 4922.625 m -4136.625 4922.625 L -1.25 slw 0 sg str -gr -gs -3979 4882 4058 4961 OV -0 sg fill -gr -gs -3979.625 4882.625 4058.375 4961.375 OV -1.25 slw 0 sg str -gr -gs -0 slc -newpath -4253 4921.5 m -4136 4453 4370 5390 0 180 A -1 sg fill -gr -gs -0 slc -newpath -4136.625 4453.625 4370.375 5390.375 0 180 A -1.25 slw 0 sg str -gr -gs -0 slc -newpath -4487 4921.5 m -4370 4453 4604 5390 180 360 A -1 sg fill -gr -gs -0 slc -newpath -4370.625 4453.625 4604.375 5390.375 180 360 A -1.25 slw 0 sg str -gr -gs -0 slc -newpath -4721.5 4921.5 m -4604 4453 4839 5390 0 180 A -1 sg fill -gr -gs -0 slc -newpath -4604.625 4453.625 4839.375 5390.375 0 180 A -1.25 slw 0 sg str -gr -gs -0 slc -newpath -4956 4921.5 m -4839 4453 5073 5390 180 360 A -1 sg fill -gr -gs -0 slc -newpath -4839.625 4453.625 5073.375 5390.375 180 360 A -1.25 slw 0 sg str -gr -gs -0 slc -newpath -5190.5 4921.5 m -5073 4453 5308 5390 0 180 A -1 sg fill -gr -gs -0 slc -newpath -5073.625 4453.625 5308.375 5390.375 0 180 A -1.25 slw 0 sg str -gr -gs -0 slc -newpath -5425 4921.5 m -5308 4453 5542 5390 180 360 A -1 sg fill -gr -gs -0 slc -newpath -5308.625 4453.625 5542.375 5390.375 180 360 A -1.25 slw 0 sg str -gr -gs -0 slc -newpath -5659 4921.5 m -5542 4453 5776 5390 0 180 A -1 sg fill -gr -gs -0 slc -newpath -5542.625 4453.625 5776.375 5390.375 0 180 A -1.25 slw 0 sg str -gr -gs -0 slc -newpath -5893.5 4921.5 m -5776 4453 6011 5390 180 360 A -1 sg fill -gr -gs -0 slc -newpath -5776.625 4453.625 6011.375 5390.375 180 360 A -1.25 slw 0 sg str -gr -gs -0 slc -newpath -6128 4921.5 m -6011 4453 6245 5390 0 180 A -1 sg fill -gr -gs -0 slc -newpath -6011.625 4453.625 6245.375 5390.375 0 180 A -1.25 slw 0 sg str -gr -gs -0 slc -newpath -6362.5 4921.5 m -6245 4453 6480 5390 180 360 A -1 sg fill -gr -gs -0 slc -newpath -6245.625 4453.625 6480.375 5390.375 180 360 A -1.25 slw 0 sg str -gr -gs -0 slc -newpath -6597 4921.5 m -6480 4453 6714 5390 0 180 A -1 sg fill -gr -gs -0 slc -newpath -6480.625 4453.625 6714.375 5390.375 0 180 A -1.25 slw 0 sg str -gr -gs -0 slc -newpath -6831 4921.5 m -6714 4453 6948 5390 180 360 A -1 sg fill -gr -gs -0 slc -newpath -6714.625 4453.625 6948.375 5390.375 180 360 A -1.25 slw 0 sg str -gr -gs -0 slc -newpath -7065.5 4921.5 m -6948 4453 7183 5390 0 180 A -1 sg fill -gr -gs -0 slc -newpath -6948.625 4453.625 7183.375 5390.375 0 180 A -1.25 slw 0 sg str -gr -gs -0 slc -newpath -7300 4921.5 m -7183 4453 7417 5390 180 360 A -1 sg fill -gr -gs -0 slc -newpath -7183.625 4453.625 7417.375 5390.375 180 360 A -1.25 slw 0 sg str -gr -gs -7417.625 4922.625 m -7573.625 4922.625 L -1.25 slw 0 sg str -gr -gs -7495 4882 7573 4961 OV -0 sg fill -gr -gs -7495.625 4882.625 7573.375 4961.375 OV -1.25 slw 0 sg str -gr -gs -5659.625 2421.625 m -5659.625 3984.625 L -1.25 slw 0 sg str -gr -gs -5659 3828 5879 3725 5879 3931 2 P -0 sg fill -gr -gs -7534 3828 7314 3931 7314 3725 2 P -0 sg fill -gr -gs -5659.625 3828.625 m -7534.625 3828.625 L -1.25 slw 0 sg str -gr -gs -8667 4922 8509 4996 8509 4848 2 P -0 sg fill -gr -gs -7534.5 4922.5 m -8667.5 4922.5 L -35 slw 0 sg str -gr -gs -7534.625 4922.625 m -7534.625 3671.625 L -1.25 slw 0 sg str -gr -gs -4019.625 4922.625 m -4019.625 3671.625 L -1.25 slw 0 sg str -gr -gs -3237.625 2421.625 m -3237.625 3984.625 L -1.25 slw 0 sg str -gr -gs -3237 3828 3457 3725 3457 3931 2 P -0 sg fill -gr -gs -4019 3828 3799 3931 3799 3725 2 P -0 sg fill -gr -gs -3237.625 3828.625 m -4019.625 3828.625 L -1.25 slw 0 sg str -gr -gs -1948 1601 2104 1914 R -1 sg fill -gr -/_Times-Roman ff [312 0 0 -312 0 0] mf sf -1948 1844 m 0 sg (1) show -gs -4292 1601 4448 1914 R -1 sg fill -gr -4292 1844 m 3.12 slw 0 sg (2) show -gs -3550 3428 3706 3741 R -1 sg fill -gr -3550 3671 m 3.12 slw 0 sg (y) show -gs -6440 3671 6753 3984 R -1 sg fill -gr -6440 3914 m 3.12 slw 0 sg ( d ) show -gs -8737 4765 8910 5078 R -1 sg fill -gr -8737 5008 m 3.12 slw 0 sg (F) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob07.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob07.gif deleted file mode 100755 index b563579e0..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob07.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob08a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob08a.eps deleted file mode 100755 index b53540fba..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob08a.eps +++ /dev/null @@ -1,344 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Rocket.eps -%%CreationDate: 1/27/1996 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%BoundingBox:180 462 398 649 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -3810 4824 5577 3056 5798 3277 4030 5045 3810 4824 4 P closepath -0 0 0 1 1 1 [8 66 0 144 4 64 16 1] patfill -gr -gs -3810 4824 5577 3056 5798 3277 4030 5045 3810 4824 4 P closepath -1.25 slw 0 sg str -gr -gs -5577 3056 6130 2725 5798 3277 5577 3056 3 P closepath -0 sg fill -gr -gs -5577 3056 6130 2725 5798 3277 5577 3056 3 P closepath -1.25 slw 0 sg str -gr -gs 4804 4050 t 315 rotate -4804 -4050 t -/_Times-Roman ff [104 0 0 -104 0 0] mf sf -3706 4080 m 0 sg (Wolfs Airways - Next Hour Delivery for only $ 3.00) show -gr -gs -4030 5045 4030 5487 4472 5045 4472 4603 4030 5045 4 P closepath -0.5 sg fill -gr -gs -4030 5045 4030 5487 4472 5045 4472 4603 4030 5045 4 P closepath -1.25 slw 0 sg str -gr -gs -3810 4824 3367 4824 3809 4382 4251 4382 3810 4824 4 P closepath -0.5 sg fill -gr -gs -3810 4824 3367 4824 3809 4382 4251 4382 3810 4824 4 P closepath -1.25 slw 0 sg str -gr -gs -5227 4096 5510 3964 5510 4228 2 P -0 sg fill -gr -gs -5227.625 4096.625 m -6633.625 4096.625 L -1.25 slw 0 sg str -gr -gs -5973 3793 6668 4088 R -1 sg fill -gr -/_Times-Roman ff [278 0 0 -278 0 0] mf sf -5973 4001 m 0 sg (Fwind) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob08a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob08a.gif deleted file mode 100755 index 9208746ed..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob08a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob11a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob11a.eps deleted file mode 100755 index 6e8fdab5e..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob11a.eps +++ /dev/null @@ -1,2153 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Title: JET.EPS -%%Creator: DeskScan II - Hewlett-Packard Company -%%CreationDate: Sun Feb 4 5:7:54 1996 -%%BoundingBox: 0 0 422 96 -%%EndComments -%%EndProlog -save -15 dict begin -/xpoints 422 def -/ypoints 96 def -/xpixels 586 def -/ypixels 133 def -/rasterbytes 586 def -/bitspercomponent 8 def -/xunits xpixels xpoints div def -/yunits ypixels ypoints div def -/coords [xunits 0 0 yunits neg 0 ypixels] def -/picstr rasterbytes string def -/readimage { currentfile picstr readhexstring pop } def -xpixels ypixels bitspercomponent coords /readimage load -image -4648494F414649404445484849454C484B514F54544B514D4C5045534B5050554F53505854 -585A5A5C605A5B535B575A605A6165605B635C5B5A5C556065605B605C6F655C6365676163 -636D6A6C656C5B60616A636760606C6567676C676C676A6A796777615C6A6A6763676C6761 -67606C615C6755606C5B6365606C59616065635B6561606F635C5C5860615C5B5B61615B58 -595B63595B585961555C5C57615C5B595C6A576A6167676A6A676C6A726D6D7277767E7283 -767A82798279897C8582827C797A7A857A828390828377827E859183887C8E83828D887285 -76858E7C838383858986888989857E868295869597959AA39BA99BA1A29CA1A1A99BA6A9A3 -9FA1979B9F8E9B95989792929F8E9B918D91839582918888898E858D8991908D8E8D8D899A -919B9B979798A6A1A3A2A1A3B3AAABA9AEAEA9AEA1ABABAAA5B7B2B7B7B0BCB5B7B3B9BBC1 -B7C0BFC1C4C2C4BFC0BFC3C0C5BFC5BCC1C3BFC4C0C0C0C0C3C7BDC2C1C4C1C1C2BBC0BCBD -BFC5B9BDB9BDC1BBC0BBBDB9C0BCC2BBBCBDB3C0B7C4C2C1C4C7C1C9C8C8CBC5C9C0C1BFC3 -C0C2C3C4C9C7CAC5CBC9C9C5CBC9CECACCCEC8D3D0D5D1D1D4D3D1D4D1D0D4D1DBD4DAD9D7 -D9D9D8DADBD6DDD8DCDBDBDCDBE1E2E2DFE2DEE3DEE2E2E3E2E3E5E5E3E2E6E3E5E6E7E7E9 -E6E5E7EAE9E9ECE6EAE9E7E9E7EAEBEAE8E8E9EBEAE7E7E6E5E2DFDCDCD9DEDEE1DBD9DBD9 -DBD9CEC0BCB2BFBBBAC3BBC5C1C1C3C5C4C9C4C9C7C7CDCAD1D0D0D4D5D4D2D0D2CCC7CDC4 -CAC8CDD0D0CBD0D4D9D7D8DBD5D2C9CED1CCC2C8C8D0D7D5DAD1D5D0CCC0BF -46414448464B49454C4540494445494B4C4D4D4B4B5349504B4C4C4D505453544F585A5354 -555C5A595C5A58605761585A5B5B675B5C60605C5C5C5B61655B6160716A6A65636365616A -63636C61635B635865636358635C63615C676A676F677171656F65656A5C6360636763675B -59605A656360615C576C6060655C676167635C606A606358655C59635B60675A5A5B576755 -635B5A5C58585B555B58545C57585A63575B5C5A5C63605B6A616F6C6C6D6F726F776D7977 -7A77777C798583837C7E6C836F7176797E7A79797E767A72857A8379767C727A83827C7C71 -897A82898385837C8282858E7A897C7E8877918586909895978EA190A19C97A198A59BA99C -A59BA29C9C9F9591959592978D98838E828986898686867E978390858D8688868585838882 -958D979591959FA1A5A1A1B09CB3AAAAABAEA9A3A3ADAEA1AE9CB4AAB3B3B2AEB7A9B2B2B0 -BCB7BFBCC0BCBCBABDBFBDBFBDBDB4C4BFC1C4C1C2C5BFC1C4C0C1B0C0BDC0C0B4B4BBBABB -BFB7BDB9BAB9BDB7BAB9B5B9AEBBB3BABBBAB5B0BDBCC0BDC4C0C4C2C9C3BFC5C5C2BFC4C0 -C5BFC2C0C5C7C4C9C4C4C5C5C4CBC5C9CDCCCECBCECCCDD0D5CED4D2CFD1CED5D5D8D7D7D5 -D9D4D8D6DAD9D7DBD7DBD9DBDBE0DDDEE1DDE0DCE3E3E3E0E2E2E4E2E2E3E2E5E2E7E9E7E8 -E9E4E7E8E5EBE7E8E9E9E9E9E8E9E7E9E9E8E9E9EAE4E6E5E5E3DFDDDBDED6E2DBDBD5D5D8 -D8D5C8C0B7BFB7C1BABDC4C0C5C2BDC0C7BDC7C0C5C9CACCCDCFCDD1D2D5D0D6CBC7C4BFC7 -CACACFD4CFD0C7D5D7D4D0D3D6C9C9CBCDC7C8C2CFD0D5D9D1CDCFCEC8C3BD -464B4D424B454C464D484B4646494C4B4D4C49514D504F4D494D4F4F5053575B5555595155 -575A5A5C5B5757605C5C635A635560635C636560605958655965545C6C61676A5A605C655C -65616165605A6A55656A59635B67655C635C636D636D6F6A5960636A676361586761655A61 -5A5B6561616C656060616560655C6C5C6765615C616560675C5C5C635A5B635C6159575758 -576058614F575A58585559615C5A5B5B6561635C5C6A617167636A6D6572636C6D67767271 -7779727E7A837C8879767C72777A777C826A7C6A72777679777C777E797E76887C837E718E -837E7E837E8E7C8582858685897C8979857C8D86898E919891989AA597A695A19C9F9B9FA5 -9B9C9B9A929F89988D8E928E898D89829085887E8686838E85898E858D907691857E86858E -91909295929F98B0989FA2A5ABA6AEABAAA2AB9BA5A2AEA6ABAAADB7B2B4AEADA6B4AAB9BC -B9BCBDBDBABFB5C0B7C2BABFC0BDBFBFC0BFC5BCC2BFBFBAC0BFBFBFB9C2BDBFB5BDBAB5BB -B9B9BBBBBBBFB0BDB7BABCB9B9AEB9B5BDB5BDB7C1B0C0C3C2C8C3BFC5CAC0C9C2C4BDBDC3 -BFBDBFC7C4C9C5CBC3CAC5C0C9C2C9C8CBC9CDC9CDC8CDD3CFD0D0D4D0D0D0D4D4D5D8D4DA -D4D7D4D7D9DAD8D9D7DDDDDAE2DCDEDDE0DFDEDEE1DFDEE2DEE3E1E2E2E0E2E2E5E6E7E4EA -E6E6E6E9E8E7E7E7E7E9E8E7EBE6E9E7E7E7E6E7E6E6E5E6E3E5DCDCDBD7DDDBDBD7D7D4D8 -D3D3C4BDBDB2BAB4B9C1C3C3C4B0BDC0C1C0C0C8C4CAC9CDC5CECBC9D1D0D5D0CDC4C4C1C7 -C2CBCECDCEC9C9CBD4D1D1D0D1C8CBD0CBD1CBC8CDD2D6D9D0D1D2CACBBFC4 -494D48444B46444D444D46484F48444B494B4C4F515059494C54514D4D535B585559515757 -5359585B595359545B5A535A585A6561606563635960595C61575961606A5C6365606C606F -655C6363616561635C60615A5B6561636061676A656067656A60656165656360606560655C -60586A5B63635C6060585A616167606559655C61636159655A5B635859595B5861595B505A -55575853585A5554585B54585B58585C596159636160606D656D65656F616D716C77776771 -6A7C767A827E8E7A827A76778377777E7A777272717C6A7E7C7C7C7E8882857A837E827685 -79828279867C7C7E88779182838288897A8D8386929190A392A1929AA292A197A398979FA5 -90A198989B888E889190897E8E8990898D827C897E88888E888E82908D8D89838683888592 -8D9A919C9898AD9AAAA3A3A3ADA2B4A5AB9CA1A6A5B0A1B2ABB2B4B9B7B0B0ADB7B2B7B7BC -B9C0B7BFC0C0BFBDBDBCBFBDBDB3BFB7C0C0C0C1BDC0BFBDBCC2BABDBABDBDBABAB7BABAB7 -B9BFAEBFB7B9BDB2B9B2B4BABBB4B7B3BDB5B7BDBAC0BDC0C1C9BFC3C4C4C5C1C0BFC0BBC0 -BDC0BFC4C8C4C7C3C4C4C4C4C7C5C9C9CBCCC7CBC8D1CCD1CED0CBD1CECFD5D1D5D1D7D5D6 -D4D7D5D9DCD7DBD6DADBD9DCDBDDDBDCDBE1DAE2DCDFE0E2E0DEE2E3E3E2E3E1E6E5E7E6E7 -E7E7E7E8E8E7E7E2E7E7E6E6E8E9E7EAE5E5E3E8E6E7E5E3E3DDDBD8DBDCDED8DBD4D7D6D4 -D7CBC5BDBDB5BDB5B4BDBDC7BFB7BDC4BFC1C0C4C7C3C9C1CBC8CAC9CDCDD2D0CFC8C5CCC5 -CBC7CDCBCEC8CBCACFD9CFD5CFCDCDD1D1D0CBCFD1D1D7D4D7D4D6D0C9C1C7 -44454149454648444D493E4542424146484B494B514C4F514F4B594C4C514C515154534F59 -595B5B57595A535A575A5A5A5A6C656A61655C5B5C5C5A615C60675C676C63636D5B67606A -636365616A6165655C5A675967605C5C5A675A61636163765C676161605C5B6C5A5C586363 -58655C5B635959635A635C5C615B5C615C5C60606560675961605961605363595A5B586057 -5B545B5C555A5A575B5A535C585C5B6560605A5C6161656176676F6F6A6C676F77796C796C -79727977827A89838386717A71777C7976777772797E7E7683777C7A7C8279778982798371 -7E7E7A7C8279837E7E887C8576827C7C857E85887683958EA1919B9291989B9BA295989A95 -A390A2979191928D988888898591828986867A7C85858D858E7C908588868E828885858883 -9590979798989F9AA5A19CAE9CB3ABB0A5AD9FADA6A6AAA9B2AABFB3B7BBB5B7B9ABB4BDB2 -C0BDC0B9C3C0BDBDBFB9C2BCBFC0B9BFBFC0C2C3BCC0BCBDC0BCC0BCBFBCBBB9BCBCB9B4BB -BFB2C2B4B7BFBBBDBDB3BCBCB5BFB3C0B4B7BBBDBDBDC2C2C1C0C1C0C4BFC4C0C1BFBFC2C0 -C5BFC4C2C9C5C4C7C5C8C9C9C1C9C4CDCACBCDCCCDD0CBCBD1CDD4D0D4D0CFD5D7D6D6D5D6 -DAD5D8D7D9DCD7D9D9DBDCDDDAE0DBE1DEDAE0DBDEDCDFE0E1E0E3E2E3E6E3E5E3E7E4E6E4 -E8E7E7E7E6EAE5E7E6E8E7E7E7E9E6E5E7E4E9E7EAE6E6E6E3DBDBDCDADCDBDDD8DBD7D9D8 -D4C4BFBFB9C0B9BAB5BFC3C0BDBFBDC0C5C0C7C2C9C5C5C5C4CDCECDCDCDCFD3C4CBCBCBCD -CAC7D0D0CDCCC3CBCCD6D4D3D4D1D0D1CBC8D0C5D0CDD4D7D6D4D1D0C7C8C9 -454C4841464945493C4648484F484C46484D4B4F4C4C53514B544D51505054544F50575357 -605A5B5A535B5857595C6A60636767605B5B606360616561636161675A65636D63635A6C60 -6763656F6A615A5B5C65576061635C615A60606A596761616A60606760615A61615A636059 -635A615C5A5C5A5B635A655A655B635B5C5C63595B65595B5B5A595B595A5A5C59605A5861 -5A5A575A585B53595859585A5A60605B675C636A676A6065606D716F637263767976796C72 -6F76727C79837E8D7E7983717C7C727E796F8376717C7682778382837E7E82867688866782 -798382838285797C6F71615B5B544F4C514D51505A5761636160636A606A65716D776C7A7A -777C7A7A777E727A7E727C7C79777A7785717C797A7C858D8686887C85867C8D7C89868290 -88958E979B9A92A38E9C9C9CADA6A5A9A5A2ADA2A19CADA3A3BAB0BCBCB5B5B9ABB7AEBABF -BBC3BFC0BFBFBBC0BDC4BCC4C5BCC1BAC0C0BDC0C5BDC0BDBDBFBFC2BBBCB4BCBCBFBFBBBB -B7C0BDBBBDBFB2BDB2BCBCB7B7B3BBB7BAB7BDB9BFBBC2C0C1C7C3C3C0C4BFC4C0C0BDC0C0 -C0C7BDC5C5C7C7C9C5CBC9C7C9C5C8C7CACBCDCCCCCAD0CDCDD0CDD4D1D4D2D4D5D7D5D5D9 -D5DCD7D9DBDBD9D8D9DBDDDCDEDADEDCDFDEE1E2E0E0E0E3DEE5E0E5E1E3E5E5E3E5E6E6EA -E6E8E4E8E5E6E7E6E9E9EBE9E9E6E7E5E9E8E6E5E7E6E7E6E2DED9DCDBD9DED9DED9D7D4D5 -CCC5BBBBBBBAC0B4BABDB9BFBFB9C4C5C4C5C1C4C5C7C2C5C3C7C7D0CDCBD0CBCEC8C9CBC9 -C8C9C8C9CCC7CAC7D3D4D7D4D4D2D1CFC9C9C5C9C5CCD3D5D3D1CECAC8C4D0 -4B42454544454646494148444546494B464B4F494F494D4D4D4F4F4D5050515153555A5A58 -635B6157595B5B575B60616A58605B605C6A616563615C60655C615B6C6163636160656363 -58636A5B605C575C5963655A6354605B5967615C675963655B5C5C6363656061606760675B -5B5A5959585B5B5A5B615A605B6061655C5A605C605C65575A595C59655A5A5B5B5A586158 -5B57595A595A5955595A585B5C615A6359636365546A6D616A6D65656D6C716577776F7A6D -7C6C7A777A83856F82796F7A76797E79777A76776F7C7982837689828383837E85797C7C72 -7A6F67615750516D6D4C342F2C31312F312F272C272C2C2F2C3131293A323237322C373A2F -3E37343C3A34413B3E42403E3E40424841424440424445454B4B4F4B4C515050555857595C -63616A6D65797767836F7A7C7E868589898583898297899B9591A19CA2A6A2A9AB9FABA5B0 -B3B3B7B4B3B2B7B5B5B4BDB4BDBDB5BDBBBABDC0BFC1BCC0BCBBBDBABCB9BAB5BDAEBDB5B5 -BBBABABBBDB9BDB2BBB4BDB7BABAB3BDB2AEB7BFB5C0BDC3C0C0C7BFC5BDC0C2C3BFC0BDC1 -C0C0C8BFCBC7C7C7C9C3C9C5C5CBC5CAC7CBCDCFCDD0D0CFCDD0D5CDD3D0D1D3D3D4D8D4D6 -D7D2DAD6DBD8DBDBDBDADDDCDCDED7DDDCE0DFDCDEE0E0DEE1E1E3E2E4E1E3E5E2E4E3E3E5 -E5E3E7E6E7EAE5E9E7E9EFEFEDEDE6E6E6E6E9E3E8E6E5E3E1DCDFDCDCD9D7DCD9D9D6D6D3 -CBBBC0B2BABAAEBFB9B9BAB0BABBB5C5C7C2C4C0C4C5C4BDC4C4C5C5CBD1CDD1C9CCC8CCC9 -CBC7C5C0C9CDC4CED0D7D5D4D3D3CCCCC7C5CAC8CCCBD3D4D5D0D0CBC9C7C8 -4446454245464941484249494C444C494F4D4B514D4F4B504553504D5050545457545B5961 -5A63595C5B5C615A605A5A5B5C5A67556363606760605C63656360615B5B595B5C5B5B615B -635C656A5C59606060595A6565605B60635C67596067616360615B5A65606C635C60675A65 -5B635C60585B595B6158635A5A585C635C5A605C636158595C605A59595959595B57545455 -5158505A546054585A53585C606060635C60605B636A6065636D6A6C6F766D7A7177717179 -717A6F727A8277827282776F837C79797A77776D79727C7A828E7E827A797A7C7285675C5C -4D4532342C2C45A1A188392727292C2C322C292227292E29272E2C2F24312F2E29292F292F -2F272F2E2F272931262E2E273229312E312E262F2C2C2C2C2E2E2F2E3231312E2E32323234 -343237313E373A3B3B3B3B423B3C3E453E453E4246444D404449484B4C4D51515455515951 -5C576365616A5C6A606D6A76837C7E8982888D859A8D9589909A989A8E909088889A8E9B95 -8D9B97AEA5AEA9ABB3AAA3B3ABAEB2AEB5B2B9BDBFB7C0BFBFC3C0C2C0C0C0C5C1C4BFC3BA -C0C4C0C7C7C7C5C7C4C7C3C9C5C9CAC5C9C9CDCFCFCAD0CFD3D2CDD3CED1CDD3D1D4D3D7D5 -D7D6D4DCD5D7D6D9D9DBD9DEDDDEDED7DEDDDFDEDEDEE3E2E0E2DFE5E2E4E3E3E4E3E2E2E6 -E5E7E3E7E5E7E5E5E6E9EEEEEDE6E9E5E7E5E3E6E6E3E3E3DDDED7DDD9D8D8DADBD8D7D4D1 -C1C0BBC0B3B7BAB3BBBBBBBBBBB2BFC0C9C7C7C8C4C7C4C4C2C1BFC8CAD0CDCBC9C4C9C9CD -CBCBC3C3C8C7C9C5CDD3D4D0D4C9CDC7C4C7C4CAC8CDD0D4D2D1D3D2C9CBCB -4245414C46494B4648464C4B4F4B424B4D454B4B4F4D504F4B4D4F4950514F544F55555054 -545155535557505357595A585C575B595B61636065655A5C576765655B57655A555B606363 -59636361635A605A615B59605A5B6159595A605B6A5C6C61656563615B65616160615A6058 -635B5C585A585759615C5C6360675B5C616D5A6560585C5A5B59616060595B585C58595C57 -595959585B585C5B5A585759545C5B60655B5A6A596D656365656F6767676D6D6763675967 -6F5C656058726F5A6A61605B5C5B615B59605B5B59605960636161636160604F4641392629 -2222221D221D3B91886326181A18181C1F272422222C2F2929262F272E2E2C2F2E2C2F2E29 -312E293C292C2E2E312F2C2F2C34322F2F29392931312F312732312F322E2F31312F373239 -3139323A3732392E343232393B2C3437343731343239313A37393B3A3A343B323B393A393C -373A3A3740393E39403A3C3B3B424241463A444242454645463E46413E413E3E3B3C414044 -42494F5B585A57606D616D636A6F6C7A7E7C8E88919F97A59FA6ADADB3AEB9BBB9B5C0BABD -BBBFC4C0C4C2C3C3C7C0C9C0C9C5C7C8C7CBCACCCBCFCDD4CBD0D3CDD1D0D4D4D5D4D8D4DB -D7D4D9D5DBD7D8D7DCD5DBDADDDED9DDDCE0DEDFDDE0E0E4DFDFE0E0E5E2E3E3E5E2E6E3E7 -E8E5E8E5E9E7E8E8E8EAECEBE9E6E6EAE5E6E5E6E7E6E6E0DADCDDD9DED7DDDCD9DBD5D2C7 -BFBABCB4BAADB5B5B7BBBBBCB2BBBAC9C7CAC5C3C1C1C5C5C5BFC7C3CBCDCFD0CBCBC8C9CB -CAC5C5BDCACBCCCBC9D5D5D0D1CEC8CECCCDCBCAC9C7CFD4D1D0D2CED0C9CD -464948454F464D4841464F4C5040464B4F4D4B504D48535045484F4D544F50505953505A55 -545C50555A5958575C55575A535757586D606160616160605C5A635B635A5C606155655A5C -655A5C5B6753575A58606060606067615B615C63616C6161606A5C675C6A63656A59606761 -60615A605563575C635A605A6060585C6155675B60595859585A60595C5A535B5963585A5A -51515B555C57575B585C545955605763555A59535A54554D514B48494B3E3E3C3C3A343437 -3B32372C313B39392F3A2E39292F322F2E2F3231372E312C26272E29292E2427222222241C -24221F221D1D2448392E1F1618181C2224241D1D291F272724292729272732263127273129 -2C2F2E292C262E2C2E342C2C2C2E2C2C27312C312C312E2C392F312F312C37312F3429392F -32393A3937343239373737403240343A373239324134393B374032393E32413E393B39373B -39393B403A3B37393A323A3B3B3A3C3A3A403B3C39393C3C3C3A313432323A2F2C262E2C2F -32314145464450404F48454D3C413B44464C4C504F545155595A5B5C6C6A727A7E88869588 -989BA6A2B2A6B5BCB9BFBAC1BFC5C4C8C3C9C8CCCBC9D1C9D1CDD0CDCED2D6D4D1D7D1D5D1 -D7D7D7D9D9D7D9D7D8DBD7DCDADBDBDADEE0DEDBDEDCE0DCE2E1DDE3E1E2E1E2E2E2E3E7E2 -E7EAE5E6E6E7E5E7E6EAE7EBE7E6E7E6E5E4E7E6E6E5E5DBDBDCD8DCD9D8DADCDBDAD3CEC0 -BCBBB0BDB9B9B3BBB3C0B5BDB7B7C2C0CBCAC7C7C5C0C7C5C5C7C9D0C8D0CDCDCDCBC7CBCD -CDCBC3C8C4CECFC5C7D4D2D2CFC8CFCFD1CACBCACAC3CFD3D1CDCBCFC4CDC8 -46484449494848444942444B414844484F494D4F4B4D4B454B4D544F504D4C575050595457 -545553555557595B585B5A5960575B60605B6A61675C5A6A605B5B585C6058615B5B5C5A5B -6359605C5A59585C55635A5A5C5B606C5A606359656067616161615C635567655C615B5863 -5863655A60576357615753595757615C5B5C5B65655B5B5757605B6A59605B57605C556055 -515754635155515054494948454541393A2E32292E2C272E262C2C2C2C312E37322E37323C -3944323C34373B393A403C3B372C2E2C2F2C2C3A2729221D1F222222221F1C1D1D241F241F -22242422261C22221D1D1A271F222422271C2726222727262C242C29222C292C272C262729 -272E2C2F273127312C2E2E26292E2E292E27272E2F2C312C2E2F2C2E2C2C242E2C31343131 -312F323A2E2C312F2E342E3732323A2F343431393A34393939313A3139373E3C39403B3237 -3B343A3E3C3B393C3A3B3B373B39373B4141443A483C414644373A3B2E3A3B3C393A3A4134 -39393440444B4850484B4B414B4046424942454648454B454C4F49514B5153585351555854 -5A5C616D677A7A7979767A838997959CA6A9BFBBC4C5C5C9C8CBCCCFCDD4D1D5D4D2D1D2D5 -D4D6D7DBD7DCD5D8DBD6DED9DDDCDCDBDEDBDEDADADEDCE1DEE1E0E0E0E2DEE2DFE1E6E2E2 -DEE5E4E6E6E7E6E6EAE7EAE6E8E5E5E6E6E5E9E6E6E6E0E0D7DADBDCDDD9D7DADBD6D7BFC3 -BFB5B5B4B4B5B0AEBDB9BFB4BBB9BDC5C7CBC9C4BBC5C3CBC4C7CBC7C9D0D0D1D0C8CBC2CB -CACDCCC7CBCDCEC9C5CDD4CDCCC5CED1CBC9C7C7C7D0CDD5D0CECAC9C9CAC9 -4446444C4B4B484B464545444946464F4D4D4F544D51554D544C504B534C4F545751545550 -5A515855585A5A585859545C605757675467656067655A635A635B5C5A596060615B585959 -535C5B5B5A55555759605C5858586C57656761635B60615967616D6C65676061675A586A59 -5C5B615A5C5B5859605B5B635B6A5A605C605A6560615C5B5A5A605C615960575C57545351 -4F4945424131392F2E292E2C2C2E222C2F2E2C312939393237373E3B3E3B4240403E4B4141 -4F4C48453A42404046404C483C403B423A4139321F1D1A1D1D241F26221D221F2922262626 -26242F262C261D1C1C1624292E2424221F291F24262727291F2722222622271F2C242C2926 -2E27262C26292E1F3429292F1F2C262F2C26311D2926262E29292E242F27272E29322E3127 -2E2927312C2C2E2E272E3427342F292E2E2F37292F2F2E312F312F342E343139343A31313A -3137312F3B3A373939343A34343E3E3B3C323C4537403E41373C3B344034403E3B3C48393E -2E2E3A3B42444946484B4D4D4F4D4D584F4B514C5351505B454F494C51504F584D504D4959 -51575853575A55585C5850585B4D5C5761716A82868E8898A2B7BBC0C7C4CDCCD1D1D4D3D6 -D1D4D5D4DBD5D9D5D9DAD9D8DEDCDBDED9DEDCDFDCDCDFDEDCE0E0DEE2DCE2E2E2E3E3E3E2 -E0E4E6E5E8E4E8E7E6E6E7E6E7E6E5E7E3E8E7E7E7E3E0DBD9DADBD9DCD6D9D8D7D9CDC1BD -B7B4B5A9BAB0A6ADADBBB5B7B5BDBCC5C7CFC5C2C0BFC8C1C7C2C7C8CCC9D2CDCCC9C2C8C2 -C5C8CBC5C9C9CFD1C2CDCDC7C0C5C7CABDC4C4CBD0CACFCECECECBC8CCC7CD -44484C4649424149424848484C46484B4B534C4F5150504D504C4B515051505154544F5351 -545755555457595355585560555A5A50655C595960635B57615561575B60545A6154635359 -5958605B57575B545A5B6059635B5C63635B5B61606760635C6C61615B5B5C6A655B606360 -5A655B595C63595A5C5B61655B6061606A5B635C6060575A5B595757544942463A3B372E2F -262227272627272F292E313739323739343B3A42393E3E423C42483E44484444454646444B -464948424B3C4844414B4B50455050514D3B241F1D181D1A221D2424272422262927242F24 -2927292727221D1A161C1F242C26242427242622292927262927242F24272C242726272427 -242626272624222724272627262727272731262C222729222E272C2929272F26292F292C27 -2727312C2F292E2E2E2E312F292F2E342F372C323231322E2E2F2F2E342F3232343432322F -323134313234312E3439312F3B313C372F3C3434393237343B392C312F37372F3C2E403A31 -373432393239403C424445535046494B4B5144534F57504F544D5854535050504B46454941 -4F4B494954514B4957534C59535B515C5A5B5C60655B6A6579727A7C9298A5ABB2C0C0C7C7 -D0D1D2D5D4D8D9D8D9DCD7DDD7DBDDD8DCD9DDDEDCD9DFDDDFDCE1E3DFE3E1E4E1E4E3E6E2 -DEE2E3E7E6E5E5E7E4E6E6E8E5E7E7E5E8E7E7E7E9E3E0DADCD9DBDDD8D9D4D8D6D6CDC0B3 -BBB4ADB3ABB2A9AEB0B5B2B9BCB9C0C4D0C9C9BDC0C3C7C5CCC7C5CBC4D0CACBCBC7C7C2C7 -C7C8CACFC9CCD0D6C5CBD0C9C5BFC4BDBFC3D0D4CDCDCDCCCBC7C8CBC5CBC8 -444248454546464B4F444B4D464B424C534F5054504F494F5351504B51514F59504F584C53 -504C59505457535350595A5761575C6059605A60675C585A5C5B5A5C595A605A585B595B5C -5858605C555A575C5C5C59605B595A5A5B5C635C5A5C5C5A675C5C5A6157615B5C635C6059 -595B5A5B5C585755616065656059675C61615758554C42453E3B3E2C292229242427242E24 -2C2F273732343C2F3B3C3C40344640444640494441463C46424245494D514649454444494B -4949444C424839454845544D4842483B271C1D1C1C1D1D1D1F1F1F291F1D26262222221F29 -222929262722291D261D242924242622292626292231262C27242C272931272E2C2C242927 -2927262C272C292727292727242C29272E29272629262E31292E292E2E31272E272C2E2C2F -2C292C2F2F342F2F292F2C29372731292F31313229322E2E322C322C29372F32342E322E2F -2E2F34313432342F3432393431372F3A3A393C3A373937343B313231344132313239373229 -292E373E3A3B39423C45454444444448484548444B4549534F554C544C53515549494B4444 -414145393B41343B40373C3C45403C414C4545464B4F5153585859606A7261656C7685859A -A2B5B9BDBFC7C8CFD4D1D7D5DBD7DBD9DEDCDDDDDDDFDCE0DCE0DFE3E4E3E0E2E2E3E6E3E7 -DEE1E4E2E4E2E4E6E7E5E6E3E8E4E4E8E7E5E6E7E7E2DCDCD5D9D9D6D8D4D7D6D6D4CBB9BD -BAB9B5B0B0AEB2B2B7AABCB4BDC0BDCBC7C9C4C0C1C5C0C8C5C8C9C0C8C5CBCBC8C4C7C0C8 -C5C7CBC7CDC5D1D7CDCDD4C5CBC1C0C7C5CDCDD2CFCECDD2C9CCCDC9D1C7CC -48494448494C484C4B48464449404B464B4B4953584F4C4F4D4D4D51484C4F4C4F554F544D -57535457575A51505A5457544F5B5860595C585B5B5757605C5A595B59595C57615B605B55 -575559575C58636061585B60605B5A5861636563605B5A63595C6061595C5A5C5C575B5C5B -6559555C555B54635959615A54544949443A32312C272926242626292E29372F2F323A3B3B -3B34413B403C3B403A4241454645424B4148414C424D4B4D49454548504B51504F51494F4F -504653464C4D4441484F4B50494B34261C1F221D241F24241D242C1F29262426262E2C3226 -3137323732292F31272629262C2924291F2929272E2429271F27242726272C24312229271F -26242227272729222C2727242924262726272427222C222627222C24292226262C2E272C2F -272C2F27312F2C2F2C3131312C322F32312E3131372937292C392C312F2F3B3131342E312F -2F322C393132323234373739323A34343A34393A343E3B3939322C293229272422262E2731 -373942403E3A45414440323E3B3B3B444144403E41464144423E444648464C4C4F53545954 -5151504B4C484B3E3C3E373E3C31312F373437343737393B3C44444B4D4F555760595B6A67 -6D796A777E7C9190AAB4A9BABDC7C5CBD0D5D4DCDBDDDDD9DFDCE0E1E2E0E2DEE3E3E3E6E2 -E4E1E5E2E2E5E6E5E6E6E6E8E2E4E5E3E3E2E9E5E4E0DED7DBD8D7DAD7D4D5D9D9D2C4BFAA -B5B7B7B9B3B9ADAEB0BBB3B7B3C0BFC3C5BDC4C4C7C2C9C3CBC5C9C4C4C7C4C5C7CBC7CBC1 -C7C3C4C9C7CBCCD2D1D1CDCBC9CDC9CBCDCDCDCCCBC9CDCBD2C4C9CBCBCAC2 -4942424C48444144444450444646464F45514D54574F50504C534D50505050544F4F4F4F51 -5450514D535750575355545059585A575C59676063555C615A60555C57595C635060555858 -5359595A5B545B5C595C5760605B586A5A65595B615C6061655B60605C59675C5A575A6161 -5B575A585150514C414137392F2229272729293127312E2C3A313432373A32372F3C3B3B40 -34413E3E3B443B44454241444546514041444C4B4F484549484644514D584954555351534B -49515051494F55504D504B4C5044312F34313C3E3C454140463E4249464D373741464B4641 -4C4B4B48454C484B3742393B3A3A3B3B423C403B3A3B413B3C34423C3937373B323C2F3A37 -2E34312E2E342C372C2F2E2F262F2E2627292E2C29262C262E2C242F242E222929272C2C27 -2F292C27262F262E27272E2E2F2E292C27272C2E26272C2E27272C29322C2C2C2927312E2E -2F26312F322C372E313B3234343B2E3B39373A2F3B323931312E342F2C37312C31322F3932 -403C403B34413A393A393C3C3239393C403C403B3C413B41423C4245414846444C4F4B4C49 -4C4D545150574C5A4D505546494F414D46463B3A3E3E3E3A37373932373739403E46424D55 -535A5B606767656D72725A6A596D7282989CAEBCC7C9D0D9D9DEDEDFE0E3E0E1E2E4E5E4E3 -E0E2E3E5E4E5E3E5E6E7E8E6E6E2E7E4E4E4E8E5E3DED9DAD7DCD8DAD5D6D4DBD4CEC8B5BF -B2C0B4B0AEB5B4B9B4B5B9ADBDB2BFC5C0BFC0BFC7C9C4C9C3C5C9C9C7C8C7C5C5C8CAC4C7 -C1C5C4C2C8CBCAD0CECCCEC9CDC7CECBCBCBC8CAC9CCC5C2BCC4C4C5C9C8C5 -4141424F49414245454D494F484C4C504D5351575854504C4F4F545350504D4F4C534C4F4D -5355555353555353575454585458575C586755615559555B5961555C51555A535953545458 -5053545850575A5861595B59555C5C5A61606D5A615A595B605861585C675B635554534F54 -4B4641342F292924271F2429272E29343439322F34323137323B403A483C453A4441464442 -42412F3437272E34392C34343A3A3B3A3A414941393B3A373E3E413A483A3C453C4D4F4D55 -4C5051504F4B504F50534F554B4C4F6061676D6D6D63636C58584D5154444841494F4B4949 -49534B4F54505148504858514B46494B50504853504D4D5148594C4D4D464C4449464F4948 -4546494248444844404944404441413E3E42403E3A3E3C49403A3439403E423E37413B393C -3A453A3A3B323B37373C3737343739313C2C393734323432312E2F3729312E2F2C2F2E312F -2E312C2F3229292E2E2C3129342F342C2E2924312C2C2E2C3131292931322C2F2F2C2F2E31 -2C31372C312C2E262C322C312F2F3237373137343939342F3C3932393A3C3A3C3A42424142 -4445454F484D504954514D4C544F57505757515754595C6053534C4845483A3A3B2E373137 -393C4144494D535B5C5C575155575A6A5B716D71676777ABB9C4CBD1D8DADCDCE3E0E4E6E5 -E7E2E1E1E3E2E6E6E6E6E6E5E6E6E5E6E5E5E7E7E2DEDCDADBD5D9D9D2D3D7D6D7C9C0BDB2 -BBC0BDB3AEABB9B3B5ADB2BDB3BDC1C4BCBFB7C2BFC9C8C5C8CACDC9CAC4C9C4C9C7C9C5C4 -CBC0C5C3C5BFC7CBD3D2CECDC8CECDD0CBCDCACECDCDC2B9C0C1C7C5C9C4C9 -3C46464640454248484249464B494B464D4C535857544C4C4B534F514F585054534D514B4F -4D5353534F544D5957555A51585C57605B5B6055615859615A59505053535958585854575A -595453555451595A5B606059615959606063605C5B616A605A575763545750494534322F22 -24272627242E27312C323227322C3234413A3C393C3B403C42443E46454546444944424040 -44442E322F32313432312C3B34323234323B4B44322E372E2E2F29322E322F2E2E444F5049 -5754535045514F4B504F5154607C656D61615B58554D4B443E292F2F3A404B4F4D4B515148 -554D5057504F4C544F55495750504F5457515857575A63545C515A5A57545A60555C535A55 -60505557555B55545B545753505A544F5350545050515354514C4B50535053494F484D554C -514C554F504B4D534F464F4D4949484F46483B4D463E46424141443B45413C463E413E3E39 -413E403C3B343E343B392E40313E343432313B2E31342E3A313B3B3A373A373731313A3131 -292727272724241F26242626271F242724262726222C222C27262726242626222F27292934 -322F322C3B373A37393C3B3E40453E4448464950494F575458545C5B6560555B50504B4942 -3E3E3431313A343B3B403A44424D4D57655561575046466C7E828998A5B5B4C9CBD6DBDFE5 -E3E5E6E1E5E5E1E7E4E7E6E5E4E4E4E5E2E2E6E5E5DBDBD9DAD9D8D8DAD6D4DBD1CABFC0BD -BFC0BAB9AEB9AAB7A6B5B7BDBDB9C2C1BCBDBFBDC4C4CACBC7CAC8C7C5C7C9C9C4C5C2C2C4 -C4C5C7C3C2C8C7D4D2D4D0CCC9CAD0D2CAC9CDC8D0C4B4B7B5BFC7C4C5C4C2 -44444B4449424449484D484C4B4C484F4D4C4F555850574B4F5354534B4853534C494C4D4D -505453555057575053604F5958545B595C555B61576054585754555B545B545854575C5558 -5853595A5759575C61595B605860575B5B605C6161595450584F453E3A2C2C2C262E292F2C -312C322E313437323A32373A37373439403E3C4041453E42453C45444644444448404F4151 -443E2F2937342F342E3234272F3450464C3739372E34342F3B37373B32372C3A2C51515051 -575850554D5150514D50534F544C4F4D4F40484440423E3B3129273B3B464D514B4F544258 -4F5855584B554F515051534F5845585350594F4D555458554F5854514F51535953574F5150 -4C50534F575455514D6051585753595051554C5757505A4F5B595358505A5067575C555A58 -5B615C6A575C575B575B59585C6358615B575958585459544650445451534B4B494B494946 -4850504F4F4D444B454B49444B4548453A484542424148404B464548463E424640423A3E39 -2F27221F24261D24241F26221F271C1D221D261F261F22221D221D2726221D241D24272622 -24242629242C2729292931272C2C2E31313731323B323C41444C4C5154515A595961606363 -5B5A504D484544323B3C29372E3134343E3E44404539405A717176836F7E7182899BA6BFC9 -CBD6D9E0E0E3E5E6E6E5E7E5E6E2E5E1E5E2E2E3DFDCDADBD9D9D5D8D7D6D7D4D1C0BFB9C2 -BABAB4ABABAAAAA6B5B2BCBABFB5C0BCBFC3B9C4BFC4C5CACBCBC9C9C4C4CAC5CEC7C5C4C0 -BFC5BDC4CACCD0CBD1CDCDC4BFC5CFCBCDC8C0CBC1B7B2B9B5BDBFC4C0C0C0 -3A42454B4146453E4B4448424148494F4B4B504C544F484C49464F5349454B4F505353555C -59589AB35851535854575C5A57585561575B5A5A615B5959515A5855585759515A5558505C -575859505958595B6157675B615A635B58555153464032322C31272C2F322E2F37373A3A37 -313E343B3A373E3C393E423B3A3B3A40453E424D48484D494B51424946404D3E4249504C44 -4D50413E404248404F424842424B53514B3C3C4141403B3B403C3A3E3C2E423A444954504D -574B594D5954584B4C4B464B484B4F424049414242413A392F2E3939464F5B60656D5C6F5B -656F4C544D4D574F5A54495A535B5953584B5B574D5B4F57544F5354595B5751585455535B -515455605951585459505B535A585157515B535B4C5955595558535855585C5459595B575A -545960585B4F59555555575A4F5155505759545A4F5A554B57484F51504653544D444D5050 -4F504B514C59494F574F514F4B494D48554F4D504D49464D4D50464D4D4C4449453A3B2932 -272622241F1F24221F271F22261F22221D261F2422241D1D241A221D1C221D221D1D262426 -272C2C2E272729292729262C2926292627242E292F312F313431393B3B404146514257555A -605960535A605C575B59543B3E3937342F393134292C2F41575C65636A6F79767C7E898891 -9CA3B9BDCDD1D9DFE2E4E5E3E5E5E2E5E3E3E3E0DBD8D9D9D7D4D8D1D3D4D5D3CEC0BAB5B9 -BFA3B2A9ABB0AEB9B4B2B4B7B4C0BBBFBDC4C0C2C4C4C4CBD3CDD0C7CAC3C4CDC9C5C4C0BA -BBB3BCC3CCD6D4D1D0CCC4BCB9C7C7D3CACBCAC5C4BAB7BBBDB5C2BBC4BFC0 -404140454241424442484B414B494D4F4B4F4C514D484F45484F4C4F4C4D4D415551586767 -636D9ABF55535357515A57546155595B605C5A555B555C55575554595A5559585458545A53 -545355605C57635A605C585B584F464437322F2C29292E2E32323434323C393437373C4140 -3C3C3E42414940484241484548413E44484B4B505558514D584D514D3E574F53485050504F -54452C314C514F53495951544848584F58515448584F464D503C3C3B374D48494D5854574F -555353574B554D594C464F444B493E494641444145413B3A2F31374151658290889A9C9297 -988961505458515A545A4F4F595A5358545453515451585360535951575151584D58505958 -50535A595C59545553575455515A5059544F54536154505A545555505A584F54555A5A5554 -5A545B58585754585553574F5453505C55584D5855574C494D5057535B4C5151544F53514F -4F53514D594C554F4C5345574C504B494C55574D504F504B53485046463E3E322E32242927 -24242622241C1C22261F1D1F1D241D221C1D221D221F1A221C241F221C1D1C1D1F1D1C2226 -1F2C27262E222627262726272729262C2626272E2629272C292C3229342E2E372E37394442 -42444C5051555859576354514845494C544B53414029222C373B3C4645515365677C827A7C -6C85868D837E88AAB9D4DCE0E3E5E5E3E4E5E7E0E0D7DCD8D6D7D4D7D4D7D5D2C5C2BAB5BB -B5B3A6B2B0B7B2B9ADB9B4B3BDB4C2BCBABDC0C4C5C2C1C4C7CDC7CCC5C8C4C5C7C8BFC0B3 -B2B5B3C1CDD6D5D5CECDC7C0BFC0D0D0D0CBCBC7C5BBBFBAB5C0BFC5C4C8C5 -444548454441424241454548484C494B49495053494D51454B4950464B4F4D4F51494C5350 -4D515058504D54515951585A55545A5A5B5A585353605055575458595357515758555A4D57 -595A5A5B535953534F41403C3232372F2E313734373E3B443E3E413C4C444848454B494649 -454D46404B4553484F4F494F4842484851554D554D5A5154514C50322F2F4151504B515059 -50411C24423E4B57585057483C44424B4D575057493427312C241F1D2F4C54342E544D5157 -535751544D50584C4649494B4940503B4D423B423E443E3C3A3C444546514F595359586059 -5877505451585451584F53495544494954575451595554584D5A50584D534F535A50615758 -5158515758515A57535758545C5457535858505B4F515153595953585159545B555759515C -5A59596053535753595C5957595551505C505C58585457505451515C57595558504F4B5453 -535A4C4F515A4D534D4F534D4F51574D574F51534C50544C4D4C414031292E24261F272622 -261D2E57261C1C1F1F1D1C221C241F1F1F1F24261F1A221F1F1F1F1F1F1D1F241C221C1F1D -2724242624292727292624262727292C242726242E26272C262E24292C26262431292C2C2C -322F323A3A3E41424F4946444840454650504F51423A3C534F48493B373C32394646505C63 -766C76836A5346484F5C79AECDD7DEE2E4E3E3E0DBDDD6D7D7D3D7D6D4D4D5C9C5BCC0B2B7 -ADA6B0ADAEBCBCB3BDAEBCB5B7BDBFBABBBCBFC7C0C4B5BFC4C5C9C2C5C5C4C5C7C0C5BCBB -B2B4BBBACDD5D8D9D5CBCAC4C1C9CED2D1CDCCCEC7C5BCBFC0C0C2C1C7C7C7 -444D464D4840454648454549504B4C49484F4F504C48464D4B4C4B4946484D464C504B4B4F -4F534D4D504F51585153575955555360555B575A5B576D5151574F5354585A575C53515857 -53574550423C3A2E2F2C3132313C3A41403A453B4541424B464C424F46464F4B4C4B48514F -4F534D4F4851514B46574B4F4B464D4F534842454C4B494F515542241A1A2653494C575755 -5C3B1D323448504F5144372F243234424B4B4D42321C161F2E3A40404C4C371C3753585451 -5853574F4B5350494D4D4D48494F465040413E413E413A3B393B444451484C4B54494B5A4D -575053515354585A504D4F5449413A5451575851575A5558655158535753545B4F58575363 -59545A515857535557535C505A585359535854514D554D545053534C5350605360545A5459 -54596055595558575A5458545C5459535863546C53504D505354595454505750514B575751 -5451554F5A50544F4C5051505357504C4D484D494B443B442F2F272429241F291D26242229 -26292642221D241C22271F1F1F1F1D1F1F22262426241F1D221D26221D221F22261A221A1D -221D291D2924262624272C2227292226292C262C292727222C2226292C2E2227292722272C -1F2626242F2C293131393B373A343B44464249483B34373B5565715A5C545044443E3E3941 -44465B58615546404840413C4F67A1C5D4DEE1E1DED6DBD5D9D9D5D4D6D2D1C3B9BFB2B7AA -ADAAADADABB0B4BAB2B4B0BCAABDBCBDB9BDC4BBBFB9BFC1C3C8C7C5C5C3C5C5C0C5BDC0BF -B5B3B9C0CECED2D5CBCEC4C0C1C7CED0CDD2CEC7CCC4C1C2C0C0C1C0BFC2C9 -4641494B4646454844404546484846494D4F4550494D4B484B4B4B4B4D494D4F4C6F986F57 -574B50534F5853515558585554605359554F57545159776053574F544B53534F5051544C3E -3C34342F2F34323A393A3B444245464B4449464B4C4F4C4C504F554D53534D514D53534F55 -554C5548454B45494C50534C5051495B51585149454B5157515B4F1F1C1A294D5151505059 -5032373C484245442F261A2C45454846413C291D241C24224C44494F45421C1C3E5A53554D -5555514F5151484C404D454645444646483B4B3E45423C3937484049495063765B5B6F9167 -55584F5448575855544B5050534959515359575B5A5159555A5B515A54585A535A5B59595B -6055555857504B595A5B545C51595851575553545A54584D55515B54585B5558535C4F595A -655C5C595C595755596355605857545A5B545B4F584B50505160575755575B4D4C5351554B -515A48534C4B504B514C4D544D4F4846484841423A312E242924272F26262C1F1F241F271F -2724262226241C1F1F1F221D1D261D22261A2422241D221F24222224261D1D2222271C2422 -1D2722241F1D241D261F27262226261F2626262924242426262C2722262424222722272622 -2922262427272622242926342C2E2C292F3439403C2E2E374D5A6D6560795C6C6365635A55 -44413A39393A3B343C484C4C463234395A82B5C9D1D5D5D9DBD9D1DAD1D5CDBFBBAEB9B7AD -AAB0A5B3B0BDBCB3B4B2BABCB9BBC2BFC0B5C2BFBABFBDC4C7C5C4CCBFC3C3C1C7C2C3C1C3 -BFC0BCC7C7CFCBD1D0C5C7C4C3C7CBCDD1CECEC8C7C7C4C9C1C1BFC0B5C7C4 -414049514548453E3E424B444C484848496D8D779190897E7C7A777A614F60896360859B8E -4D4B5046534F4D4B4C494D4B48464D464B4B3E463E54855B454444413E44413E3B343C3942 -344240444648494146484B4F504D5451514F4F54584D50544D5751574F534F4D5057555748 -4B4D46494C4F5765595550545460514F5C5957544555535B6058583B2F3A4855514F55555B -5937374C5350504C4C221C344F53484949483A32374C45484245444237181A1C454C544953 -594F544F4F4B49485045514649484B4640454242403E3A3A4541514649556586896FA2B06F -54494B3C322F2F484B4254545342464B584D5B574955505B555C595957554F54555B55505C -5A6058575A5A5A545B5863576053585758545A57535B51545459555857545A535A585B5165 -54535B58595A57585B5A615C5A5955575558595150514D595150544F58554F594B4D514657 -514F4D4B4B4C4B544C51534B4945453C3E31292E2E262C24222C1D29222722262222261D22 -221D22271F241C1C1D1D261A221D22261D22271F261D1F221F241F1F2422221D221D1F1D1F -1F1C221F242424261F241F22241C221F1C24242226221F242626292624291F221F24242626 -1F261D2722242626262426222424222624242424261D2224344F4F545B54615A656161657C -7A636C544F402F27222F3C4551543E37292C32445A79A9C7D4D9D7D5D9CBC9BBB2B3ADABB0 -A29AAB9BB2A6B2B0AAA9B4B7B7BABCC2BDC3C1C5C3BBBDBDBFC4C2C2C7BFC9C7CBC4C4C3C8 -C8C4C1C0D0CDD0CEC9C5C2C5C7C3C9CFCACFCACBC5C5C4C4C2BFC0BDBFBFC7 -41424D4C464241444144424244484D44454F717177887E7A82717782674F63B5BCB4BF8D61 -5157545A5B675B6167656C6F6D6A6A6C796C71616D76867272716D7967655C574D484C4C49 -51494C514B554F504B555557545A545954556053545A53585B595957585559544F554C4650 -545B5A575554575A5359585151545353595C57515C48545B585C5554556059505354555951 -54271F2F29312C2C2918161F2F32323737342C2F40343A4042393B3B221816224257495154 -4B514C494945494B4548454D484542484144483B3B3E4048404642424C4653514D535C7C5A -4F44221C1C1A1A1C3448465C4637394D5554515758535B4D595157595B585C595757546151 -61585A535A575453515850554F51585351595455534C584F574D5350555450585858555758 -5A61636060575C5C5B5B595C585858575C59515B4F574C514D5157535554534D5445575749 -58515551515054464C4B463E3B2F272E2429242724272722262224222222271F1F221F2422 -22271D1C261C1D271C241C1F1F1F241D1C1C26271C1D1D1F1F1F221F1F221C1F1F1C221C22 -1C1F1F2222222222241C24221F1F221D1F261D261C1D221D1F26242226221F221F1F1F1F22 -2224271F262224271F27222224222922261F1C1F1C1A18131C1F272E313A3E484C554D5A5C -6A6D6F7C796D5141372622222E374440463C2F2424293B4585C3C9C9BFC09F928E7E7C7C6C -77605C6058676D6D7788889897ADA9B3C4C1C9C3C0BCB3B3BBBBBDC0C7C9C8D0C9C5C1C7CC -D1CAC7C7C7D1CBCAC8C4C2CAC7C7C7CBC9C5CBC3C7C4C1C2C0BFC0C3BFC3C4 -463C4F4D4841404245404242444B4B4C454844464642444445444D4B4B4D4D4F57729B925C -544B544B504C53545557555457544D5A55585454595A555A555C556A6058634F484D4B4D55 -464D53514F4C5557675B57605B54605A585A54605A605A585C585A5B5557514D5B54655B59 -61595C586358595B59585840424C534B5863576D63635B6060655C554D5A5742534F555158 -554D424644393B343E2F3C2F39392F342F2E292F292C26272629262C262426224C5155514C -5053534F454B444444494849484145444044453E443B443E444B464C464C44505055575058 -412422292F3A2C2418374B4B554C574558535B55575559605B655C63576C5A5A655B675C5A -5B5A5C60585A58585B5561535461575354555C515457594F554F554D515754515058585455 -63545855585B545C57585A505450544F504B554D544F4D5457545C55585853544D58555851 -4C4C4C51495448464031322E2227241D261F2422242422261F262422221D24221D1D1F1D24 -261F22221D1F1D1D2222261D1C241C241D241D1F1F1D1F1C1D1F1C1D261D1C1F1F24221F1F -1D1C1F1F1D2429221D24222C1D24221F2422261F26261F29221D241D26261F241D221F1D26 -1D261F2422242924262222262422222C1D1D1D1F2224161313131A161A1C1F1F272729343B -44465153655C494532392C1D1C1F1C243131453A31312926325161615955514F494C494149 -3E403E3E423C423E42484D4B504D5B61768685979BA6A9BBB3BFB7C0CBCCCFCECAC1C7C7CD -CFCFCBC5C7D0CBCBCBC4CDC4CCC5C5CCC4CBC3C4C5C2C1C5BFC0BDBFC4C2C5 -414246484545464949464048484849454D454F4D4F4B494B4B464B50424B46484949494C4C -53514D4D4F53534C5053555B5057574B54504C4C4F504B4B50485445484D4C4B4542444149 -454D504B4B4F5955555A5B5A615A5A61615B5B616061596A605554595158636A656C6A6363 -6A655A6A63655960584C4F463C312E324951635867615B60615C55555059544D5059585558 -594D575355595459515B4D595153586555515053575350504546504C544950494F554D5157 -49545048463E4C424B484D4B4446494445453E3A373E4448484B4B485049534C5351545B53 -2F3B6D221D22374D2722424658544F514F5C51585B535B5458585858675157515A5B575858 -505860555B556155535C535458535A53555A59615557574B55555351555555515858595857 -505855515157615363545C585C555C59585851544D514C584D5859515A51584F594D544F4C -504C4D4845312E2E26272627241F27221F261C292724221D262622221C221C24221D1F2222 -241F1D241A22221F1D261D1F1F1F2227221F1F1D22241C1F22241F221C161F181C1A1F241D -1F1D22222422262726242627241D22271D241D1F241A262424261D24221F221D24221F2422 -22221F1D1D1F1F261F1F1F221D1F1D27261D22221C1A1313111813161313161A1A1A1D1C26 -24292E3C3C424129242739371C181318161A1D272E323C392F3B4244423C424544443A443C -3E3B3C403A3C37423B403C3C393E3E4246484D4B535777A3BDBBBFBCC7CDC9CBC7C2C0C9C8 -D1CECFCACAC9CBCDCFCDC7CEC9C9C8C9C5C4C4C7BFC3C4BDBFB2BFC5C2C3C5 -443E424644484646484040484249444B4446494F48454D49464850444F4649534C48504B4B -5550504C4D53515454584F51555454555354555158505A5557514F53505354584D544F5046 -4945414C4D535357585559605B5C586358615B60615B5B6159585B5B615A76546565615A5C -656A6D5C635C5A5A5845484F49403945495B57585C615B5A59655C5C534D5955515951584C -57594C5A585A4F4C514F57594C554B55514F514D4F4D574D4D4C515450584D5051534C534F -554D4C484542414B3C464C4B3E484B46463A453A41444C454B49424C4F5A5A574D4F545C4D -162E451C13162453391D3E4D49544D4C5C555B5A555851576159635959585B53615B575A5A -605157555C5C595963595559535B545A51575C575A545C535B575A54575A515A5A58586051 -555458545A59585B5763545955595855594D58534D4C48515949585354504F5A4C4D4F4B45 -40392C2F272729262622222224291D1F221F221D1F2E1F262422241F2422261F2422221F22 -1D1C261822221D221D1D1A221C221C1C24241D261D1C1F181C1A241F181D1A1F1A1C1D1F1F -241F2222221F1F26262426221F22271F261D261F1F1F1F241D24221D221D2226221F271F24 -271F22221F241F1C1F1F22271F221D1D1C22221C18131313181313161318161613131A1618 -181A1D242427292C1F272C3C423929181311161613181C24293446484548323C4041413C3C -3E393A3C393B3A3737393A323A3A3241393B40404240495B7AA5B9BFC5CECBCBBDBCBFC4D0 -CBD1D0D0CDD0C7CFCCCBCBC9C9C9C9C5C5C1C8C1C7BDC0BFAEBFBAC4BFC7C4 -3E444244443E424644494042504C4B4C4646444B49484648494942464B4D484B5349515467 -7E606D9B60514D4C575A544F5451555355514F545754515853545555545454535755505455 -4B4844484B4D4C50545954505B515C4F5A5A58585C6A5B635C5565605365585A6058616C61 -7961605C5A61596F6A59635758635C6D585954605A5B5B63615C63596157575B514D5A4B59 -5055534F5551555051505449504D54555854545A495950534F514F51514F49514D4B544551 -4D4F48444645444145424F454141484639423E3B4141485144495151515055505051575145 -1C1F1F1A1616161F161C4248464B4F464C60555359555C5C57615860575A595C5C6A59595B -555C54615A5860575B545A505A5A5857595560585A61555B5367555C5B5B5C5359595B5761 -555B5C5C5B54555A5759615761555759535458505349535150595851504D5750454B41342F -262224221D26222624221D241F26221F221F1F1C1F1C22221C221F1D22241A261C221C241F -1D261C1C1A1F1F1F1A1D1C1D221F1F241C1F1D1F261D1C24161C1A18181A241C22181C1D1A -221D22222226221D1C241F2424221D2222221F1C241F2422221F22261F241D241F261C221F -1C271C1F241F22242622222622222224221D221C1A1C161C1618161316161C131616131311 -1116131C1D161C1A1A1C1C26293E423C2F221316110F1311161D2632372C2E2E27322F343B -37393C3C3C3B3E3B313B393934373B323B3A343E3B4140454B6077A9BFC3C9C4C1BCBFC2C7 -CCCECDCDCDC8CBC9C9C4C7C9CDC7C9C5C7C7C4C9C2C5C0BFB7BDBCC2C1BFC4 -444546494546464444424949464C4D534D42494845454C4C49464B48484B4848464D515C63 -826A8ECE98544F58505153554F5451595453585555515755534D5851534D4F585753505354 -59555B545554484B4450534F5551515854544B59585A5A5B5B55585A5C60616C59655B6A71 -6067605A61635B5A5A6A5B5A4B515457595A585A635A6761635961605B605B5C575B4D554C -5855545C54585355535C4C5553575859555754535C50594F594B54515951504C4D53485053 -4F5349424D424B453E464448424242373C2E3749414C4D4C4D44504D505055515755555A4B -1F1C2E412F161813111334493B4B4653515C57555A635C5C63575C5C6554615761595A5A58 -605965595A555C53605A59595459615C5460585B5A585B5467595B5A595A5A555A575A5C59 -5159585C555A5A5457575959545A5A585A535561535848514F51534D484B413C34272E2427 -1F261F1D261D221D22221F1D221D1F261F2422261F2222221D1F1F1D1D1C1D1F1F1C1D1D1C -1D1C1D1C1A241F221A2422221C1C1D1C261D1C1F1F1D1C1C1F1C1D18161F1D1C1C1818161C -1C1D1F1C1D261D24221F272226241F2626241D221D1F262426261D1F1F1D2724261D22261D -2622292224262224241F1F1D24242626262622222624291F1D241F1D181A181A1313181116 -1313131611131616181818181C1F2E39403C39261A180F110F111316161618181D22262926 -342F2F3432393E373B3A3A37323A343A393E3C324137423C41454B587EAABDC1BDC2BDC3C8 -CFCDD0C8CAC5C0C7C1C0BFC4C5CCC5C7C5C2C7C7C4C4BFBBBDB4C3BFC4C1C2 -4648484842414942484146454D494C4F4B4B4245493E4D4B484C4B4B4F494D4B4C494D4848 -4C4F578D6A5055554F505550544F50554F545155505557584F504B544F5455505754545950 -5555555851575A54514D4F4F4D584D51515755595B5A5A5B58585A5A6359605A6759636161 -6359605A575A59596350635B5A505A5A5B6550575457576558595157535A545765595C5960 -5B5A59615767545960556551515B5557584959575758545954575A585A5350544D5153514F -4B454646484D4546414449453C3C312C242F46464F454B4B534F4B51515455594C5B55575A -341C243739321C181D343C504D454F445A4B5A4F5A53575C5C5758575759535C5854575757 -545B53595C6353585553595A5857595A5B57585360585758536560555A515A5A585B585C59 -5B5A585461555859535B54575154555B575753515A51534D544B48413B2F24291C27222622 -1F22221F1F241F24222424221C221F241F1D221F1D1F1C1D1A241D1C24181F221D221D1C1C -181D1C1A1A1D1F1A1F1A1C1F1C261F1D1F1D1A221D1D1F1D1F1F1F1A1C161818181C1F1C1D -271A241D271F1F2622271D241D1F241F241D2224242422272422221F1F241C241D241F1D24 -1F272726271F241F26222222261D1F221D262224222626262224241F1F241F1C1D18181611 -13111313181613131318181D1A181A1D1F27313E3A312616130F0F0F0D110F181A1D262631 -2F2F2F2F322F3737323C3A39402F3C32393A373A373C34373B3B3A3E49586A95B4BDBDC0CA -CBD3CAC9C4C2BDBFBCBBBBC2C8C7CDC7C9C5C5C9C7C1C1BDB9BDB2C2C2C7C7 -463C4646484442494445414246484D464B4D494542454D4549494B4D4B4949454B49494545 -484D51544C544F544C4F55514F535155534F515151514F554C50584F585354555153575559 -55595A535953585A555B59515B4953535155535557575A5855575160555C57655461635B5C -615A585B5860575A535A59555763585B63615A5A67535C555557555058555A53575B575A58 -6358595354535357545A5755594C59595761555C5A51574F50535860535A5B585454534F4F -4542484B41414D484641453C2E22241A27484D4D495342514C4C4D4C51515A575B4C596057 -4D321C1C1F181C2746535750514D4B4944584C585055574F5455505B5851554D605457594F -59535458555A54515453554F50545954545058535060575550555859495C5454535758555C -4F5954545455544C59545A585758594C5A4B5453504C3C4431372729261D261F241A27221D -24241D221C1D241D221D22221F221D24221D1D22221D1F1D22221D1F1F241A1C241D221C1A -1C1A1A221C1C1D1D1F242222241C22221D1D221C22221A1D1C1C1F2218161C1F1A1D1D221D -1C241A24221A241D241D22261D1F1C221C221F241D1F2222262224222422241F221D1C241C -2224262222261F221F1D242424261D1F272424242926261F222724222624221F2226221C1C -181A16161616110F110F11161616181A1A18181C1A263B3937242213160F0F0F1316161C1F -262E2E2E322F322F2F2F313A323B3B323B3939373B393A323B3A403C404142506D86B0B7C4 -D0CACEC7C4BFB7B9BABAC0C2C8CBC5CBC2C1C3C5C4C7BFBBBBB7BABDC7C5C7 -44414F48484444404646414442464C4C4B46504B424845464649494B4F44484C4D504D4C4D -4F4B4C494C5454544F504C5454545757595057514D4F555155504D4F545757585457585C59 -58555C5855585A586065575B59595755534D4F5354545853584F4F4C53545C575A63655B54 -6057575C575858535857594B4D585B58615C5A5C5A67585C5A555C585863605C575359535B -575159555B615358595755555165505C585760575A554F585A54584D555050554C53495548 -46484544424B4544343426261F1C1A1F40424D414C4C534D4D504F514B58535C5457585759 -594F4C342F3A3C57535955504C5051454C5854505A5555555553595161514C53555553545A -585958575151534D5153515351545555535C5353575058515353584F5A5155515955555B4D -5B535A58514950544D5850555157505449464641373227292627261F22241F261F1D261F24 -1F27241F272222261D241C1C221C1D1D1F1F1C1F1D241F1D1F221D221C1D1F1C1F1A1D1C1C -1D1C1D18241D1F1D221D26241D221F261F241F26241D241A22222422241D1C1F1A1D1F1F1F -221D221D241C1D261C22261F241D221D221F1C1F221D241F1D222224271F1F1F1D1F261D1D -26242422241F241F2424222724222227242726262922242624262224292224242C27242722 -271C22241A18131311111111111113181316131316111318181F2E3A342E1C161311161318 -1A181C2227272E292C29292F312F313937373A3437343237393C39394039463E45585C9BBD -C5D0CDC8C3BDB5BDBCBFBFC5C7C9CBC4C4C4BFC4C8C1C5B7C0C0BDC0C0C5C7 -42423E484541424044444244464545424B454C48424942454F40464C49494B454C50494946 -4C4C504D4D53534C5353514D505550535854545151534C50515453554C53555755545A5559 -55595A595863575957655B6160596A5C61595B50534D54544B4D545751554D585359605961 -58575758595151595051504953585955585C5763615958605B635458575B6357615C656060 -5A575B615A5857575C605A546050545A5558505858595357575B505A5353535355514F404F -4849454B453E3B29241A1D1F1D1A223A3E4941484D494850484C515453495A4B5758545955 -545A50574D585450575057514B585951595851515750615554585467515B4D59555A545754 -555A4D595460545954575B55555359595C505B50545A5554586051635459605C5757575558 -5860555B5453544958514B5C444B463A3A2F272C222422262429272722222726221F1D221F -241F1D1D1D1F1F222222261F1C221D1D22241D1C1F1A1D1F1F1F241C22221C261C24221D1C -1F22181F1A1C221D1D221C26221C2418241F1C221F261D221D1C221F1F241F1C1F1D1F1F1D -1F1F1F1F221C241A22221D241C221F1D1F1F1F1F1F22221F241A22241F241C221F1F1F2726 -242424242726262722272427292227222727222E1F2C242726242427272C242427242E2926 -27262222291D241C1A18161616130F16131313131113130F130F161C24272924241A11160F -130F0F1318181A1A1C1C1D1F1D222924272C312F34373B373C34393B31454242453B48576F -9ABCC7C4BFB7BABCC5BCC9BFC5C5C4C4BFC0C0C3C7C5BDC1BBC2BAC0C0C4C5 -42424542454241483E424046494844414C48464544484D49484C424D4D4C46484B4F4F504C -4C4B505157504F54484C4B4B4D4F505755535054534B555054555750514F55585455585454 -54575B585C555A54575B5865605C63595C5C5960555A4F46504C4D584F57514B4F50575554 -5B5A595853575554545A584C545359545553585C595B5C586A545B595A60575B5B615B5B59 -5B59605A58575A58555957614D58505A5859535157575854574C574D5358555353494B4442 -4945454039291F1D181C1D1A181F31464149484D49534F4B4D4F4D4D4B4B4C5457515A5559 -5857574C594D54575A58554B5051556054574D59576759605B61605A67575A515853545855 -545159505754554658465558545B575C53585A545863596C605B6A586360605A5C57555C5A -53575A50575751574645493A3E2E292627271F24241D22261F261F2624261F26261C24221F -1C1D1D26221F22221F1F261D1D221D221F1F1F221F221F22261D1F1D221F1D1D1D1F1C1C1A -1F1C1C1C181A1C1D1F1C241F1F22181F1A1D1F1C241D1C1F1D1C1C1F1C241F1D22241D221F -1D261D1F1D1D1D1F1D1F22221D1D241D241F2422221F1F271C22261F261F261F261F242229 -272424262422271F2622262724272426262924262F2627271F2C2C242C2427291F29262626 -272226271F24241D2422181C1A1116111316111311111316110F0F0F0F0F11131818110F16 -11131111131116111618161A1824272C2C3A4148484F4949493C4144443A44453A40404542 -4F67A5B3BDBAC1C1C1C4C3C2BFC5BFC3BBC5BFC4C5C5C2BBC1BDBDBDC4C3C7 -444644424244464449454544494945444945484942464446424B4C4B4C4D454B464B49494F -535350514D4B514B4D4F53504D4C4C4F555053544F5049514F4D50514F575358595158575C -5B585A5B5865545C61635C63616A5C6A5A5C585558605C5C5854574D534F4D534C4C4C4C53 -555A545454535C505850634F534F50505557575158595461585858605A5753505A5860505C -585B5857585A546158585A545A515A54545851535850515759595951545458584D51484C44 -34403226221A1F18181A181D182F40444B41464C504B4D4D5355554B504F5557535453574D -5757575750534F53535C545A55505350595555535951585755575757555B54595B57555954 -59515954554F5051505851585151655060545557545A5B586061595C5A5B5A595B5A585C55 -5A59585B5550584F341F22261F291F2926241F241F1F261D241D2224221D261F1D1F1F1C1C -1D1C291C1F1F1D2418261D1D1D1F241D241D1C221C1D1F1D221D22221D221A1D1D1C1F1C1C -1F1C1C181A1F1F1C1D1A1F1F1D22221D1F1F1A241D1F24241D1C22181F1F1D1F1F1F1D1F1D -241C1F1D1D1D24221D262224241F22261D221D1D261D2426261F1F2622271F222722272922 -2622292C2727261F24262922291D2424222722222629222626242427242729262424262C24 -26262424271D262427241F2622241A1F16161311130F111111110F110F110D0D11110D1113 -1111131A111813181C1F2C1C29272F313734393B4144404542463B4F41454B3E423B494440 -414D577686B2BFC5C0BFC2C1BDBCBFB2C2BAC7C5C4C9C5C1C0C0BDBDBFC5C1 -4645464142494449444546484548454648424B4249454644454645484C4C454949484C484F -4B4C4B46505551514D4F5453515350555459504F534F535751574C534F4B58515454545859 -535A595A61615C606361616067605C61675B5A5C605A5C5C585B5959535A4C504C4B4F504B -504F5350535A4D5A535755514F50494D4B4B4C504F4F54505A5458585A5A57585458555854 -5C5454585059635558575A585557585C57545751535959575950515A535750574F45463A34 -311C1A1A1C18131A1C181C1C314046454449464D515748515150575855555450604F595758 -535A5A55534F5350554F535853555153574F514B4D544B5159535055544F50555455595859 -5951555B57615157535059545755575A6354654F58615A5C5B635C605B6055585055575A5C -575B535A54585154441C1C1F2224241C26222222221D1C221C221D1C1D1F24222222261C1C -1D1F1F1D1C1C221A221A1D1D1A1F1F221F1D1F181D1F1A1F1C1D1F1C1F1A1A1D1C1A1A1D18 -261F1A1C1C1A1F1D181D1A24221C1C1D1C1C261F22241D22221C1F1A1D1F1C241C221C1D1F -1D1D1A1D221F22221D1F1C22271F2222221D1F221F241D262624271F261D22241D221D2627 -1F26221F241F2227242726242222242424272927242627222626222726261F29222427262C -2722272927272629222724222E26272424261F1F16181813110F0F11130D0D0F0D1316111C -131A2F3449443B314446423E3437393A2F39312934272927292F34313434373E3B3B484145 -4545534F576D92B5C0C1C4BABDB3BBC0BCC1C5C9C4C4C4C8C2C7BBBFC5BDC5 -4148454649454046464442454140484648483E4C44454946454B4449464F454550454C4846 -4D4D494D4C514F4D4F5551505359504F574D4950504D514F54545854515A555855555A5A54 -5A5A5B5B5B595C5A6761636560635B6558605C60575C5B635C5C5855585A585B514950484B -504C494C455354555C51584D59504B4D4F515851595153574F4B55515554535C504D53545C -5C605B535A535757505C50555757595A575B585957555951574D605354494544424129261C -1F1F1A181D1C1818181A1F313B412E2E2C3437424848514D514C5050554D54574D57505453 -53535557575853534B595457594F59514F584D5458555A5A5C5853575353595155574F4C51 -53585C58655363535754545C5857595B5A60575A575C535A5A5A6D55615159555C53555A54 -5B545959584F544C4031161A26241C261D241D1F2218241A1F1C1C261C1C1D1D221D1F261D -221D1C1D1C1C1D22181C1D1C1C1A1F1D1D1F221F1A1F1A1A1D1F1C1F1A1A1F1A1C1A1C1A1C -1D1C1C1A1D1A1D1C1D1A222218261F261C1D1C1F1D1D221C18241D1F261D1F1C221F1C221A -1F1D1F1F1A1D1C1D1C222627261D221F221C221F221D2726222C26261F2224242222262226 -221F2627221F261F26242429272227241F242424272C272C2927291F2924292C2927222926 -2C2C272E262C31242C26242C2727262E292C32292F27261F181813110F0F0C0F0F0D0F1318 -1A2C375592A19F9C9BA3929B9B7C7A7C7A6D6360575B484948414842443E45444948424645 -46514C5957556C76A3BFC0C3B5BFBDC0C2C3C1C3C0C1C4C3C7C0C7C4C5C5C3 -4240424541413C3E454942464948424B464546414145414844455044444B484F454D504950 -464B51505150534D50575853594C534C4F514F534F50505750545455585B585A595A59575C -5A5C5A5C59595765616763616A655C615A65585863555A60585A585B5A5B5A59555C51584B -484F424B49444D494F504F5154534F464C5154575453555351594C504D4D5553575153585A -5A6355615A6057575858615358575753585457595A57574C4959534F3C292E372F221F1A27 -22241D261F222C1F272C34493C39392C312C2E34313E3B4145444B464C484D4B4D4F49504D -4C4F494F4B4F4F49514F4C584D515150574B585157555A5753595A5A545A4F4F5153535346 -4D53575A555B5360545A505354555B5A67545B5A5859655A6A60605A5559515B54595B5857 -504D504F443B372E2C241A1A1D241F1F241C1F1D161D1C1D1F1A1D22241D1C1A1C1F1D1C1D -1F1C241A1F221C1D1D1F1D1F1A1C1A1C1A1D161A1C181D1D1D1A1F1D1D261D1D1D1F22221C -241C22221D22221F1D242224241F241F241F1C1F1D241F221D1D222422221A1F2224262229 -221D1F1F261F1F291D1D1D241F2222261D1F22221F242222261F26241D262622222224241C -2422292726271D271F22242626262E24242924242724292226262229222C24272E1F292429 -24262E24291D2626272231272729272926262727262E272E2924241F1C13130F0F0F0D1322 -3B517195AABBADAEAAA6BAB5B7ADAAAAA9A9ADA9ADA1A19C899A959A989FADBAC2ABA59C9A -889F90A69CA597B0AABBC2BDC2BFC1C2C4BFBFBCC1C4C4C5C1C1C0C4C7C5C0 -404541414845454145443E464649464842454846484246464B4646494C4D45484B4F484C4C -4B494C4C51534D54535753554F5150504D554C505349545157535453545057555B54596057 -5A5A595C5B596761635A6A61616C5C5B655B5C60555A5C5A5A5A5C5A575B5B6558595B5957 -5C5759534D51484C42464C4B484C49504C55545353535B535C4F4B3B404853544D4C57544C -615357575B5A5A5860585461545C55634F4F545457575458504C543B3A3240403C3A394141 -4541423C3E42464641454C4C494D484C49504D494842443E414B413E443B443941403E4245 -3C3C3A3B3C414644423E463E444541454B454C4C464D4F4F46554C504F505348534D574D51 -495157505551584957505753575358614F635A605B5C5963595B5A5B615858595A5C495142 -3E3E322E2224242626221D1D1F1A1F1F1F2222181A1D1F221C221F1D1C2218221F1C1F221F -1D1D18221D1C1C1A1C1A1A18221C1C1D1A181F1C1F261D261A241F1D291A261F1D241C1C1D -1C261F1D241C291F1F261F241F2424222222241D1F1F2422241F1D222222241F1F241D2426 -1C1F222222241F26261F242624272922261F22261D22261F24242624241F22261F24241C1F -2224241D261C222224222627222427222427222627242726271F2922262626261F24242424 -292626262226222922262627241F2C2422242424262624272426272E272924241D16182F6A -9A9FA1ABB7B0BAAEABB5BABAB2B7B0B2ADB7B0BCAAB3B3A1AAA2A5A6B4ABC4C3CDCBC4C7C1 -C4C1C4C3C4BFC3B2BBB5C0C5C3C5C4C7BFC0B5BDBFC8C7C5C3C4C0C4C7C4C9 -3B404242454145464140404441404B48444644484846454544444444484F4C464B4C4F4C4C -4D53535051585153575354505753534C4F4F544D4F4D4F4F545553575953555A5758585961 -535860596A5C58675B67606565595B605560555B5A5B605C605C5B5A5A575957595B5C595B -5959575C575555464C49484246454B40504D53514F534C5953553E241F2E484F53574D5454 -485A504F54555B58635858575B58635353504F60575A585557534C50464C464B4C48444B49 -574F4D4B4F494F4B484B494F4B514C4C4D4D504D505354505550594D5053545B46493C443B -443A3E39373B3937323A2F3739323B37343731323E323E3A41373B443B413E37483A40423C -423E3C404444464248464646484850515151515758545A545C535B5558534F4F4D4241342C -2622241F272422221D241F1D1C1D1C221F1F1C1F1A26221F221D1A1D1C1D1F1A1C1F1C221F -261C1F1D1A1D18181A1C1A181A1F1D1A1C1D1D221F1C221D221D1D221F221F221D1C221C22 -1C1D1F1F22221D1D1D1C221D241D221D1F241D271F1D22221C2224222722241F261C261F1C -241C24241F1D221C241D1F1F1F271F272226271F271F262224272424221D1F221F1C1C221F -221F24261F262422261D2422222624222424241F2227272922222424222224222424262422 -2222221D261F241D242227241D1F1D24241F261F242224242222242227222726292C263C4C -617297A3ADB4B3BCADBBBBBCB5B7B5B3B4ADBAB4B4ABB9A5ABA6A9ABB0BABBC9C7CAC3C0C8 -C5C5C9C1BCC1B7BCB4BDC7CCC9CBC4C5BDBCBDB3C5C2C7C9C4C1C5C0C7C5C5 -3E4146424641424B48453C4940444249424B4948484444444546444849454845444D485149 -484F4F4C53505353515353534B4D4B4C514C50534F4F515A55554F505453585B635A585459 -5A5B605B5A67616361605B5B60596363636161586763605B5C5B63615A605A575B5A586158 -615A58585A5B5B5A55544849445144494C4C50534F545051544D4B2726274555504F545459 -5151504C5753545453585857615B585B5A595C586159545553494F585C4653574C5554534D -4F4C484F414F484948485146514650484D504F494D514853495150555057514C5553594D53 -4C535153544F46443C39413237393431372E322F2C32312E2C2C2C27372C323129322F323C -2F312F2F322C2E392E312E32323B413B3B3B4548444249424C4B494D4B403B3A2731222222 -222624271D271D241F222222221F1F1C1F1C1D1C1F1D1F1D1D1F1F1D1D1F1A1D1C22241C24 -1F1F1C161F161A181A1C1D1D1A1F1C1C1D2422241F1D1F22241D1F1C261F1F221F1F1C261C -1C261F1D241D24221C1F1D1F221D1D241F1D261F241D1F1C271F1F261D271D1D1F1F1F1D22 -1D1F1F1F2424222722242422241C1F241C221C222424271F27272729272426242C2722261F -1F24221D22242222262224242226221F241D1D22262222271F241C2224241D221F1F1F241D -1F1F272422271F262222261C261D262722271F26262426221D241C242222261F261F2E242E -314150658297AEADBABCBDBCBDB5BFB9B4BDB2BDB5B4B4B2A9B5B0BBB7BCC5C7CAC5C3C5C9 -C9CBC5C7BFB4BFB5C1C5C7C8CBC4C5C0C5BFBBC0BFC9C9C2C4C9BFC7C4C4C9 -4041444542493B4049404141444B444440454249454646454646454B4B46454846484B4D49 -4D494F4D505151535353535554574F535350514D544C53544F58514D545560585C5A615B5A -6A58615A6561656161615B5C60635865596160605861585A5B5C55605C575C5B5A5859595C -57605858595A6059585A55575A4C51514B4C484B4F4B535450534C504241534D504D4C5451 -585154534F5457555A585458535B6060546D595A585A5C515B4C544F4C504D555858545549 -5753594C54484F49494D4848424B45504D4F4D4C4F544F4D534D494D5350544D51534B504D -5553515753505753594F53535050534D423C413C3C373B2F313227312E2E312C2E2C34292C -2F2934322F313432392C3126292934342C343237343E323C373439312F272C1D2422242722 -1D241D26221C241F221C1F221D241F1D1D1D221C1A221C1D221D1D1D1D1D221C1C1C181D1A -1D1A1818131A161D1C1A1F1A1C1F1D1F1C1C1F1D1D22241D1D221D221D1D22221F1D1F1D26 -1D1F221D1D1C1F1C1F1A1D1F1A22221D241F1F271C241A221F1C261A241D2222261F262622 -241F1F241F241F1D221D1D261A221F1F1F1F261D241D22291D2426272427242E26272C2627 -2424242724261D22221F1F24241F1F2226241F241F1F1D24261C241D242222241C22221D22 -2422241D291D262622261A1C1C22222424222224242424271F1D2626222924271F24261F22 -22292E313B485A7E98B0BAB7B4C0B3C1B7B4BDB5B2B2B0B0B5B0BAB5BCBAC5CDCCC9CCC8CB -CDC8CDC4C4C0C0C2C5C9C8C9C7C3BFC7C1C2BDBCC3C4C9C8C4C3C5C0CAC7C7 -4042404248404B4242484040454546444048454B42464940454B4948424548454C49494F48 -4D4F4C534F505551534F4D4D504D54535151504D4F5753585158545854605B5B5A5A5A595C -585959655863606061635A616065615B6A616158585B5C585C5C5A5A586354555C585B5A54 -5C585C59595C5C5C5851615757575858574B4C504D4C464C4C4D4F494F584F58454F544D51 -414B494F50515055585A595B59585A556351575A555759675B5B53544B544B545759595058 -5A58535B505957534C4D53484C414B4B46484C444B4B484C4546504C4C4C4C5046494B4B4C -494C5044534B51534D5B585B5A55555C555555505C515757494848403E413B403734313C2C -2F34312F2F2C2E32273132342C2F2C2F342C392932313A312F2F2627262424262422241F22 -221F241F1F1F1D261D1F221D261A22221C1F1D1F1A1D1D1C1C1F1D1D1C1A1D1C1F1A1A161C -1C181F18181C1D1D1D1C1D1F1C241A1F1C1D1C1C221C261F221C1C1A24241F241F221F221C -241D221F22241C261D1A1F1C1D1A22221A22221C241A221C1C241D241F1F1F1D272622242C -22241F1F1F22261C1D221D1D221C1C221A221F2222221D24261F1F27262424221F29222727 -24261F24242422221C22241F1C1D1F1F1F1D221C261F24241D291D1F2222261D1F241F2622 -2224262422242222221D241F1F221F2226221C272222262226242624241C27221F271D2227 -1F2229222929323744586A91A2ABBFBDBDBCBDBBBDBAB9AEB2BAB2BCAEBDC0CCCED0C9CBCB -C7CBC8C9C5C7C9C9C5CBC8C7C5C3C5C2C5C2C0C3C5C3C9C5C5C2C2C8C4C9C5 -403C403C4542413C40424445424245424548444448423C4445424F494949444D45484D504B -5551545350545151555351534C504D5353545151555358514D585758585450515A55595A5C -6154635A5B5B5B67615C60555C5B595A6159595A5B605A5A5965585B5C5C585B5855585954 -5B605A6559585B59595A5A575859555A5555584D55545854494F554C534F514C42514D4C46 -48454546514650535051504F4F53545C4D5B555A5455545465595753554D5851585858605C -555859545A5A5A4F50514F514F4F51495949464D4D4C444D4C49484946484C49504C554F50 -544C4D595150534D534F58515855545359534F5857575559515B4C5455574D505845463B42 -373E3E3A39343B2739322734342731293731313C2C342C262C22261D26241F2222221D221D -24221F241D22241F1F241F1F181D221F221A261D1D1A22221D1A1F1F1C221C1D1D221D1D1D -1A1F1A1A1C1A1D1D181D1D1A1D1C221A1F1A1D1F1A1D1A1A1D1C1C1D1C241F1F1D1D241C1F -1C1C261F221C221D1F1D1D221D1C1D1C1F1A1D1D1D241C1C221D261F24221C1F1D221D2424 -1D1F1D1C1C2422261F22241C221F221F1D1F1F2422221C1F22241D292226222629222C2627 -2922272424262226221F1F1F221F1F221C221F24261F221D291F261A221F1F242222222222 -261F24221C291F2426261F24221C1C1F2222221F291F2222242222261D24221F2726242422 -2224221F242622272C2C393C50677EA2AEB3B9BBB5BCB2B9AAB7AEABB9AEC3C9CDD1CECACD -CAC7C8C7C9C7CFC9CBC9CBC8C8C8C5C7C5C4C4C5C3C9C4C7C5C3C7C7CAC7C5 -40443E483E45414241414D4546464B4B4945444242444545404D42454B50494D45424F4450 -4F554B534F5150514F534F4D585050504F534F5455585750555A535B50545A585C5B536157 -5A5855595B5B63596055596555595C59535C58675A6359586059595B57595A575C555C555A -5A5C5A5C5A5A615B63585B5860595B5457535A58595C545C59534D4C424F4C4F514D4B4F4D -4D55484F494B404444444C454650514F585858555B575955605A5B595B5C55596159635757 -5B5A6A5963545965535C5C5155514F5B4D53464F5040423A37393B3B372F32343441464B50 -5344554F534B514C4F574B594D5551575053545159595859584C574B57544F554D50444939 -41393C3C313C3732392C39373E3931312931322E2F2724241F221D24221D261D22221F1F22 -2224221F26221F1F1D221F1A1D1F1F1F1D1F24241A221F1F1F1F1D1C241D1D1D1C1C1C1A1A -1A1A1C1D1A1F1F1A1F1D1F1C1A261D221A161A1C1D1A1C1A1C1F1A1C261C1F261D1D1F1D1D -181C1C1F1C1F1C1D1D1A1A1C1D1A1F1A1F221D1D24221A241D1F1D1C1D1D1D1C1F1D1F1F24 -241F1D261F1C26222222221F1F241F241F22221F22261D241F27271F241D22241F291F2626 -22272424241F1F2222241F1F241A1D1F1D1F261F2726292727292C2927272627292724222E -292726222E2C2C292726292929262C2C292E262C242E27222C262F2626271F29262924241F -1D24222229262229242C242F272F3A495477909CB9A9B4AAB7B3AAB2B7BBC9CDCBD7CDCDCA -CBC7C9C9CDCACDCDCBCEC7CCCBC7C7C9C7C9C9C7C7C1CCC7CAC9C9C5C9C3CB -3C454242444045413A45424446464241444444484448483C49454B4C4444414D494F4D454D -504C53535458534F5349514F454D4B51514F54575351505B58555755585958605A5960555A -545B5C61596057605A5C615C585B615B5C55606563615C5B5B59595A54585B6057575B5C5C -605B5C595B5C585A57595453585C55605960575A5955585A585A5953534B4F50465349454D -4D4F4B4C585053545054494F49425846494D4F55545455555C5B5C615C6359636065615C60 -5763596C5C5A5C5C5A655A5C605557555951594C554C42463E39343C32423E414040414C4B -4C58494D4C4D494F4D4D514C544B544B5357575851515B4C4C4D4F555150514F534D41413A -3C413B34342E27272427222E2C3231313C373C3B2F2C2F222F26262226242426222626221F -261D2227222622241F221D1D1F1A22181A1F1D1F261F271D1C1C1A241C241C1D1F1F1D1D1C -1F1C221C1F241D1C1D221D1D1D1F221D221F1C1D1A1D1C1C1C1C241C1D221D1F1F1A1F1F1A -1F1D22241F1C1F221C1F1D1D1C1D1C22221F1D1F241F261F1F1F1A1D1C1D221C1D1F1F1F1D -1F1F1F241C221F24221D271D1F1F1C1D1F1D241F221F1F1D22221F242227241F261F242427 -271F271F221D1D1D1C1D1F1F1C1C1F1C1C1C242939343A2E2F3229312E2929272C31262F24 -312F2C342C342F2F372C2F2E2E2C2E2C312F342E2E2F2C312C3B2E2F2E31312C29262C2629 -262624242424241D221F1F29242227292937405063888DA6AEABB0B4AABFC0C5CECECFCCCB -C9CBCBCDCDCDC9CDCEC9CCC9C9C8C9C7CBC3CCC8C5C5C5C9C7C9C9C8C7C9C3 -393C414141444248454144404442444040424442444140454148453E454C4648484B4C4F49 -4B484B4D504B4D4B4C4C51504C4D504951555757504F5155585758575B535C5A605B5B5A61 -5A59636060586557635A5C545960605C595B5A6159635B5A55604F5754555C595B555B5559 -585C575C57606058575C575B545558575B555754596057545C555A5957585C5C5B5A534C40 -464B4D4F535353515C53575B57675559555A515153504F544D4951535B505757655767635B -5B60675B6160655B65606A5C5760596D5C5858585559504C4F494D4446484B58504F504B48 -4F504C4D4B554B454D484C494C514C504D48584F5558515A4953535355535158484F483E40 -373E31372E2C241F292226292C262F27272E2C3131372E2C2C312C2E27271D1D291F261F26 -1D24221C261C241C1D1F1D1C1D1D1F1F221D1C1C1C241C24221C221C1A1D1A1F1A221C1D1F -1A1D1822221D22221C221F1D1C1D1F1D241C241F1F221F1F24291D271F241F1F221F221D26 -1C2224221F261F221F221D241F1D262222261F2624271D1F261D271C242722221C22261D26 -1F22291F261C22221F24241F1F1D1F1F22262224261D221F22261F2224221C272224222627 -262422241F221F1F1F1D241D1F1D1F1D1A242F414142404142423B3A39322F2C322932292E -322C3429372C2C3429312C263727322E27312F2F312E342F2F272E2F313B2C2C2F322C2E27 -292C2929292E262C1F22261C1F242427221D24272E34405467919CA5B9B0C4C1C9CDCAC9CC -C9CDCCC7CFC9D1CDD1CCCBCBC9C4C7C9C7CEC7C8C5C4C5C9C7CAC5C5C7C5CB -444144414142404442423E41414240404642423E3E4141454145424B454D4C484B4B4D4C50 -5155505448514C4C4C485046534D4C4F5554545551575453555A555B555A5A5B5B59576060 -5A595A6157635A59605C57615967575B5A5B61595C5957675A535A535A6054555955575957 -595758585958595C5A575B545B5A5B59555B57585857575B5461575B5B5C5C595B5B656061 -58584F5053574D5B555957575A5761586A5C60596C615A5B5960595A554F4B544D55545154 -5358575B59585A5B575C5C5B675C60635757545460515B58534F4D555550534D4B4F494F48 -5451494B50534F4D4D534D4F4C4F534D42494D504D54514B55484C4F4F504F505050484640 -423A3A2C2F26242726272729292C2227292724242F27322C293A27343731392C272E293A26 -2E291D2E2224221D1F1F241F1D241F1D222222261F24221F1D261D221F1F221F221C1D181D -221C241D2222291F291F1F261D1F1F2422221D1F24241F271F1C241C2722262422261F241C -1D221D262222241D22241C2422221F222424241D29242424222622241F26241D271C242424 -27291D2F27262E22242424222424242224262229222422262927272729222C26262C29272E -242F24272C2227262C24242C1F1F261F27222C24292C2932323139373137313129342E312F -26322E31322F31312E2E322F322E312F2F292F31312F312E2F322F2C312F322E312E313132 -2F292F292E2E392F2E29292E2627272222241C241F2724263437485783A3B5C4C5C9C9CAC8 -CBCBCBCBCBCFCBD0CDCDCBCDC4C7C4C9CCC9C9C9CBC5CBC5CBC9C9C8C7CAC3 -444145424C424044414242424144443E404540484044464448424B4948494949494D4C4C4B -5351504C4C4B4B4C4F4D514B5151515550515353555150545157555055585A555559575959 -545B6058635A5C5A605A595C5C5C63575A5C605A5A5A585A575857605B5A58575A575A5C59 -5A5957575A5A5B595963585A595C57515C5A5B5857575A5B555559605C5B615C6360636363 -6F61615B5A4F594C55574F504F545B586065616A6065595B65615C6C5C655C5A6A5C584F4B -504F4F4D4F4D51574F51555A596D5C595C575A5857635A6060545C5953584B5B4D4D50484F -4D53495351554D4D4F50584F4B5059495449544D494D4C5049575954484B444D48424B3A3E -3B2E3A3B262C2626241F2922241F242924262627262C272E2F2C2E2C2E322E32312F3E3A31 -34262C272629242922271F1F221F262C2727221F26222426261D221D1D271F2722241F2424 -1F2624261F241F1F22222422241F221F2626262624272424271F22261F29261F2622272224 -26262C1D271F1F2427242426261F1F271F2724272226261C2C272427292627262229222626 -221F262224261F262727242624242222272622222E2429261F2F2229262C29242726272627 -2C27262C262927262E1F2424241D243126262427242222221F2927242E24292C292E2F2E2E -2E2E2E31313234312E372F31342F2F312E31322E3A313434323434323734312E2E37323131 -2E322F312F31342F2F29322F31292C2927292E272E2924271D24292C40639ABCC0C4CAC7CF -C7CDCBCACCCBCDCDCCCDD0C7C7C3C4C7C9CAC4C8C9C9C7C8C4CBC9CBCCC8C8 -3C3C41414145403E41424444424442404541414640424644454B4946454B484D49494C5049 -4F5549554B4B4F4C4C504B4849464D51544F55554D5754555451595557595758585A63595A -58556163575C58575C50616059595759595C605858615A61535857605C5B5B575458605861 -555C595B58595A595B5B615B5A585B595C5A605958595B5B545459605A61596C5A615A606C -61617161726C5C5C464139292F3B3E41424D515760555B61606D6D5C6A5C6767656D5A4D4B -54585B585450585351484F4D51584D58595A5059585860545757584B5C58554F5451544C4C -5549534D504C4D514F5449494C534C504657504D50534B4D4F46574B4D464D49454844423C -393E3A3231272E272429272C24272C2F2E292C2629272C2E242E292F2931322E34292C2F27 -262E2E2C2E2E2F272F2732272727262C2727292E1D24242727272224262426261F24241D29 -24222C242F1F272226271F271F1F27222624222622262727272629242624242C242E222624 -242E22272226242426242627262427222C2627272726262922242C272729222226222F2624 -27272926291D272624292222242729291F2C242F24292C2629222726242927292929292F29 -2C2926222E2927292729222631242C2C27262926292C2929292724261F2C262227292F2E2E -2C2C292E32312F3132323A343734373131342E39372F342F39343737373937323A323B373A -3A37392E342E323B2F343434322F312E2C2932322F2C372C312F2C374151616A8597A1BCBA -C4C4C9CBCBCBCDCBCFCDC9C9BFC7C1C4C9CBC7CBC7C5C7C8CCC5CBC8CECDC9 -443C41444442414448494640444444454241414440404544484948464B42494C4549514D50 -514D4F4F5049484D514F4F4D50515054505354535855585B585B535A5958575A5958575C63 -585C5758585B58635C5A5B595A575B585859605A5B585B605755555558585857555B55615A -55595955615958635B635A5958595B57575B535C59595A61545A58585A605C5963595B6563 -656C616D676C7661492F261D1F1F2F2E2F2C263237393C3B495358635B6A5C6C6D63605555 -555758544557596F535A4F54595354495850544F50534F5051575759535A5351515350545C -50554F5A4D534D50574C535549515046484C4D4C4F584D4F494C504D484D4B444C424C413C -48393C2F2F2C292F2E2C2C27293227373734373439262F242C2E29262E2C2E2F2C2F2C322E -32273131272C2F3231393139292F312927292E26292727292927262624272224262422241F -22222626242E222624242C222724223227271F222C27262722272C242C2926242C27272622 -29292C26292426272424262422221D29261F2C27272C26262C2429242C2627261D2C1F2926 -292C2429272C2727272626292731272C2C222724272E2729292C262629262E29272927262E -2927272427262C272E27262C272C292927292929272C2C2729262C242C27262C2227292929 -2729272C2C272C2E2C322E372F3A3A313B2F39393437323A3C3A3432373B31372F3A393239 -373A373E39343932392F39373A2F39312F3431342E37313A34313C393B3B3C4242414B515C -6376909CB2BFC0CBC4CEC9C4C4C3C4C5CACACBC5C9C2C9C7C7C9C8CBCBCBC7 -41443A404041424241443E443C41444140423E414645414145494B46484C4D4F4B494D4F48 -4D4C4F504F4D4C4C4D485057505053505453545557555B5754535A58555959585854635B59 -5A585961655B5A555A605C59555A60585A58585B575C5A5A5555555C575B575957555A5B60 -575559605360515B58595959555A5758585559545B5B5757555961555B5C60635C635A616A -636776636D67716F715C4C3C322722262E312C292E311D1C1D222C293239454257545B5765 -67656D5858515B5A6355534D605A3C41414C4658545755585357554C59505354545B544C57 -4C535850604C4F5348504B49514153454C4F4C51504D4D5448574C534D4D504D4448483E45 -394037372624272C2C2E272F3B3137323A3A3B323A3A2F372E2F32372E3432292F29342632 -272F2E262C2E32372F392F2F3C313E312C312631312C2E292F262427262424262622222626 -22262E22272626292626222226262424272422272C2429242C26222C292927292929272429 -242E2927292F222926222726271F2727222E272C2E2631242627222427272C292C22272422 -262427242929242E29292426292E2927242E262E26222C272E2C292C2729222E2626272926 -3129262C2C2C2927292C242727272E2F272C2E2E2C2924292931292E312932293A2C313231 -3134322F26272E2C2E2E37313A3E373C34403731393734373B32373B3939372F3739323B31 -37373139393732373937373B393B313737323731343B3939323E3C423A393B393C39373A3B -3B3E404F4B556D77959FADB3BAB7C0C5CDC9C5C7BFC5C4C9C9C8CBD0CACBC9 -414044414241464042423E3E414441454445493B4244414644494C4B4F4B4D534D504F504C -4F4C49514F54504D504C4F50584F5051594F554C534C555B5458575A575B576A5A5959515A -5757605A5A5C54585360585B605A615C585B54545957595A545758555C5457585B5A5B5C59 -585B5758595A595A605855585A5A575757585859595A595A53635861585C61636A615C6765 -606D6A6D6A6D6F7A65766557453A372929262F2E3429241A1A1C1C1D261D1F26222E273755 -7A796D83606161596A6D555C5A60574240344650516063595C535359585557575A4F515C57 -5053545A5758535158494F534B4F4B514854534649484F5054454F424F4F50465046404440 -373434262C2624292429292C2631262F372F31322F2E312E3932392F3131342F2F32313431 -39312C342F2F312E34312C34343C393E3C313739393C3137292C26272C2C2C27272629242C -262226242424261D2929272422242E26262724262627292C262429272E2F27292C24272729 -2C2E2C2627292729272E243126292E292E242924272926261C222E242E271F292626262926 -262929272724272927222C242C292629262C292C262E29292E272C2F27262F2F272C2C262E -27242C242F272927262E292C2732292C29292C2F2E2E2E2C3229312E32322E424548464648 -51444645414844443E42484044454242453C3E3A343734343737393A37343439323240343A -3A2F3B3A3739343A3937393E3B3A3A403941373B3B40403B3B373C40403E3C413A393C3B41 -4032423A3A403C4246505060657E89ABBABDC7C4C9C9CAC9C8C7CFCDCDCACB -4441413C4544444442404142424541413C424048444645494946464B4F464B5048494F504C -4D4C4B464F4C4B4B4D4D4F514D4C54534D54515753555B58505A555854535A5A6055575457 -575A5359585A5C5559575B5B585C615561535160555458515A5557555B6154575B5967615A -5B58615A59595A5A575B5C5955575555555B585A57605B59595C5C5B5C5B6361675B6A6C65 -636163676F6F7263716A6C6D5C553E49413226222C291A1A1C1A181C221F221C1F1A1D2E67 -7A869588857A4D53515153535B595C594D50545C655A5A54595754605B61555B4F57535958 -485C575453594D57505A5058544D504B544954454B4D485046514B49504D42454046483A41 -372C2929262E272C2429321F27292931242F2929322F343432372C2F3229312C342C313931 -392F3C32372F3A37373B374034373A3E3941403E453C40393E32392F292F342E2E2E262E26 -2726222624292629262626262226242927242C1F2C2229292227242C2C292C2C2E2C262927 -242C2C2E272427272C262C242627272E262E292727292C272627272C29272E2724291F2C2C -26272C292927272C292E2E2F242929272F312E2727292E2C272C272C2E32312E262F272E29 -2931242C2C2C2E242C272C2C2C2F2C2929292C2E322C2932272C292C2E2C3C41424440494B -4C464449454249454651404946444B464644424042403A3C42373C3B3B393A3E3B3B3A4041 -323C343B39393B3B3A37393C3C3E3B39413B464040413B45393E403E3B3C3C3B40393A3C41 -3A3E3B403E34413B3B3A3A3E484651586377B5C5C7C7CBC5CACAC7CFCDD0CA -42423B404448464948413C454141403E464046484841494B4D4946504B4C4D4C4B4B4D4948 -48504B484449494C504B4B4C49514B51504F544F4C505B54555359515855595B515A545960 -575563575C585A585859595559545A5C595A575A595B54585C5855555B5857595C61635C61 -5A605957585A5B61595A605A5B515955555759515A595B575458575A585B5B615C655B6A63 -616A716D776F6A6F6C766A6F6C6A6153454C4640342C1F181818181F1D1C1D1A1C1D1D456D -8888928890654B42422C272C2739393E4B53595B54555859574F5858635361585953575553 -58575B50534B544C4F584C5454575154505849514C4C4B414C464D4C454D413C40423E3B31 -31292C292C2F292C262F2C2E3134342E37312E3132373132372C3137373B313734343A3937 -2E3C393B3B403B454442533B504D45494C50545B5760596A615A5149423C3A2F392F32292C -31262C2624292C24292729272427242626292426242626272C272C2C272F242C27292C2729 -2C242C292C2E262C262C272929273224262E272C2F272F2F272C262C262C262731272F2C29 -26272C312E2E2C2E2C2F2E242927272E2E2E262924292E2C2C292C2E292924292E26292724 -2F242C292C2927292627272E2F29292929272F2C2E2E272E2E2E2E312F3E4654464648484F -48494B4B454B45424B4249424C51424B414948454D50454244423E3C3E37494244373A3E39 -3A37403A3B3B3A3C3C393E3C3A42373E3B3B413B3B393B40413B3B3B4139414139413C3C3C -3E3B41403B3E3E40413C37413942494C5C9FC4C8C5C9C4CCCBCBCFCACDCEC9 -423E4248424240404645423C424142463E41414441424B46424844454F444B4B4B54504B48 -4C4F4D50504F51484951454C4F4C4D49505353504D59575351535455545A58555359545B58 -5A5A5B59575C57575158555957595B59575B59555A51595457535C5B595A5A59615C586155 -5B5A5A575B575A556059595751575757554F53594F59595A58555B5C595C5C65655B6F6161 -6367676A657167716F6C6F656A656C6A5A4C5348514D50311A18181A1C16181A161A26507A -83858D868371484F323424241C1D221F242932323B37373C4949575957635055555B535358 -505858514F5849544C4F514C46555153535455485449424D484848424B3E41393B392F322F -2E2E2E313234393B3A3E494144484B5B5C605150545159515865605C67585344577767796D -7C6776717283888E869F959F9BA29BA39BA9AD9CA6ABB7ADB0A9A29A97776A60484C3C3C3B -3A392E2F31242929262C272C2C27262C262426262424242E292E2927292629222C24262729 -292E2F262E273127272C2C292F2F272F292C2C2E292C2E292E242C27292C272C26272E2C29 -292C272E2E292C322F31292C2E29292F31292727272E292C2929292C2C272C27292927262E -272C2C222C2C292C2C27292C2C2E2E2C2C292C322E292E2E342C2C3140464650464C4F4C49 -504D4F4F4D4F454D424F464F54465149514549424D4C4648494644423C40638357534F4845 -373C3A3A32373A3A393A3A3A3E343E3B344139343B403E3E373E3A3C3B3A4034403B3B3B3C -3E44403A443E3C423C40393C423E5491BFC5C5C7CBC5CCC5CACBCDCDCDC9CE -403C41413E45464041413E42403E42424245404C4445494B45444B4C464F484B494449494D -4C44464F4B4F4D4B4F49544D54534C514F5150575454515457545754535A595A5B5555585A -585558555957585355555A55585A5A5A5C5457545059515A545555515857586154585A5960 -585A5955575B57605A5B5A545858545857595559615A575A5B5760585C59605C5963596065 -5C606A6A6F5C716C6A656C726A6D71716A6C5A4F49544C53291C1A1A1A1A1C161C264C6382 -7E95959090674F604524242424261D2C26241D2E29181A22244657595C555B575B594F5957 -535151545057575853514D504C455146504F504D4853534B4B463C3E3437292F2426312E2E -323942504C5A5C6F7C7C7E8390889CB3CAB9AB898897959F9AA39BADA2A19891A3AAADAAAE -A3A99CA9A6B9B0A9B5B9BABCB9BBBCAEBDB7B4B3B9BDBDB7B3B2B4BFB0BAB4BCAD9788826A -5B4B423A34342F372C2F2F2F292F2C2C2C242E272C292C272927262E27272C2E292C27272C -29292932262F2929292C2F242C2C2C2C312E27262E312E2C272F292C292731272C26312E27 -322E292C272E2F272F272E2F292F2C2E2E31272C272C2E322E2931292C31272927272C2726 -292E2729272C2C292C262C2E292729272924312E292F27322E2F3744494F494D4D4B4D5351 -4C50484B494D554850484D4C4953484D4849454645443E41424248454058ABB3AB92A18976 -65544F423C393B3A3239373C343E393A413C443C3C45373C483A403A40403B423A453E3A42 -3A4542444145453C46403A3C44679FC1C5C2BFC0C7C9C3C9C7CCCDD0CDCDCA -3E3E413B4244414241444842414246414442464648424C48464B4C4849504F504C534F4C53 -4D4C494C4B504C4C46504F504F48514F534C574F5951545453545055585C585A5860595A59 -575758595A54505450604F5A5C575959535958605A5859535C50585A595A5B575A5A595850 -585A5859585A5A5859555B59555A584D5959595A5A59535C595A5A635863595C61605C6A61 -676A63716D716A6F7C89656F6C727667726372615548534427221C1D1A1C1C262C496A7767 -85828D958D654C6F532F1F1F22222E263E39423B2E2416262749615A7267676A676A6C595B -585558505753555051544F53534D484C424D4F4B454940483B24271F1F1D292E4442495758 -71799885979795959F959C9B9B9C97C5CDC8BB9A919B9CA9A5A9AEA5BAB3AAAAA9A5B0ADB7 -B2A6AAA2B4B0BBB9BBBAC3B9BFC0B9BFB5BCB9BBBBBBBCBDB3B4B7B7BBB5C3BDBDBDBDB7BD -B0AE9B776D575344493A3C343729372E29322E312929272C27292E27272E272C2C272E2E29 -2C2732272E2E2C2E262927272F292C31272C262E2E2E312C312931292C2E272C27262F292C -272C26292C2C2C2929322C2C322E2C2F2C29292E242E2E2E2C2C2C2E2F2F2F262C262F2F29 -31293427272F272929292F2F2E2F2E2C26342F2931272F2E2F374650504B58574B50534C4F -534853444B4F425045464C49484449494D4D4646483B413B3A4645444B7CBCBAB4BBB2BABD -B9AAA28565545348484241393C41414237413E403C3C4041413E3E41403E45404041393E3C -493C48403E44424B4042445A8EB9C0C4C4C7BCC5C7C8C5C7C9CCCDCDD0C7CD -40413A464140404044424444414446424142494C48494445444D4B4F4C504D4D504B4B4F49 -4F4C4D4C48494F4B545050534D4F504B5151494F514F515351514F58545854546057595854 -5C5955515758515B575154515158515958595B5A5B54535A5A575759585B5A655A585A5855 -615C5A5A5C555A59575559555758585A4F5C51575A6158585858615A5C5C5B616C5C636163 -6A616A6C6F676D6D91988D6C766A726F656C766C6A5951492926221C1D18264C53616A6D7A -779286908961455339291A1A1D3B573C85B4B35B3A221D1C2250656F6A7163656C6A6D6C6C -6C67575851574C5A505050514F4C58464B42494F4C414C42292C2F3A4458678390988D9A8D -95A19AA19B9A9F9892A195A19B97A2BDD1CABDA298A1AEADB3B0ADBAB4B4B2AAADB2A5B2A9 -B4A9ABB3B5B9BABFC0BFBDC0B4C3BBB5BDBFBCBABBBDBFBABDB2BCBBB7BFBBC0C0C0BFC5B9 -C4BDBDB5B7B2A9977E6F555540403E37392C372F292F312932312929312C2E2C292F272F2C -32322C2F292C2E2934272C31292F272C2E29293129322F3132292E2C2926292C2427292C2C -2E2931292E2F2F2F312F2E3229323432342F312C292F2E2E322C312F2931272E2E2E2E2C2F -2E2F2E2C2F2C2E27272F2E322E273226322C2C312E2E2E373B4846505179867E604C4D4C50 -4F4B484D3E3B3A393C3C3C3A3B3E41423B42403C3C3B3B3448424D4C65B7B5BDBCBDBDBDB0 -AEB3B0B49FA9A3A9988955504645443E493E44403E41423C3E3E3E463B44394041443C4245 -3C44414442404444444F71B2BAC4C0C0C9C0C4C0C7C9C9C7C9C9CDCCCED0C9 -4444413E45453C444242444240464944414444494C46464C42454B4C4F4F454F464C4D514B -4B4B4F4D4B4F4C534D534D53534F4C554D555453504D51505157505A57555051555A5A5954 -5C57555A5B58545553595A575A555C59585B595855555458515B575A57615C575A5C5B595C -595C595C545C5A58535A555A5A55575454545755585957585C58575B5A67656361675A6D61 -676C6C65676C6A6A7677767C677172716F6C71766D766D58492C2C261A2624496558676777 -7A85858D956739271F2C291A183A5C314B6D603422321F242258716F7C6C6A6C7165716F76 -72716A5B544D4F4C5445504B48494B4D484948444D535359616A85959CA3A1A2A3A2A990A2 -9297A29B95A29595A195A39AA29BA5BAD0CBC0A59AABA3BCA5B3B4B2B5B7ABABAEABB3A9B7 -B0B2ABB5B9BBB9B7BDBCC0B9BFBDBFBCBFBBC1BDBCC3BBBFAEBABFC0BFC0BAC0BDBFC3BDC1 -BFBFBBBDBBBABAB2AEB2B39790826D71544D423C3E3439393931323231272C312C2931312C -31292F2C2934322E2E2E2C32322E342F3234312F2E2E2E322C29262627262C2E2C2E2C2C27 -2731292F2E2C342932272F29293426322F2C342E2F31272F2632312E29272C29342F2C312E -2F2C2E2C312E2E2C2C2F2E2C292C2C2E2F29372C2F2F3B42464C4C5786B7B36F616C4D4C5A -4655484C4945403C443E3B413E3A3732372C39393B3C374C5067576A98B7BFBABFB7BDB7B0 -9AAAB9B2B7B5C4C5C5C2BA977A7A595B484846413B3C413B4241453B443C3E413C423B3C42 -3E404534463A444B5B9FB9BCC4C2C7C5C5C7C2C7C8C9C9CBC4CDCAD1CDCDCC -3C413C42413A454445454941404541444548444542484C4B49484654484B50484C494B4B46 -4D4B484B454C4944464B49544D4F534F51495351535553535755555751585059545A585855 -59555157585854575759575A5458545A5A535B595851585758545B595C585C5A5B585A6054 -55575C575B5A58585C53595758605755585854595A5C54595559585861655A67635C61606C -636D6C636D6D6C6D6F6A6F656A716F6F71657277776F796F6A5C3A292F263B545765677276 -727C8686907C3E22264037291D1F4B3C1C1616131826241D2F556D7272766C766A6C6F7679 -7A6C776A655850514951465049444F484F6167768E7E9A97A3A3A59CAA9CA69FA6A69FA595 -9B9F9B9B9C97A19A9BA395A39FA39FB0C3C0B2B0A3A3ADAEB2B3B5B0B5B3B9A6B5ADAABDB2 -BAABB5B2BDB4BFBBBAC3C0C0C0BFBABFBCC3BBC1BFBDBFB7BDBCBDB9BDBAC0BBC1C0BDC1BD -BDB9BBB9BFB7C2B2B3B4AEB7ADAEAEB0A9A189896F5A5048463E3C34312F2F2C34272C2F2C -2E2F2E2C322E31372F27322C342F2F312E3231392C323929342C27262C27312C292E2E2C24 -26292C2F312E2E2F32312E2F2E2F3437323131372F3132272F2F272C26312F292F2E2C2929 -2C322C2C2F2E2C2C2F2C312C262C2F2E29322E2F2E374B444C49535A9BBDC1AD727958534C -5A4C534F48534650505053544F49534F464542464F3A4D4C5955587AABB5BABDB9BFB9BDA9 -B3B3BABFBDBBC3C5C9CBBFC0B5BDBBA58E6D655B4D4C4546414041483E45443B484041423B -443E41443C4563A1BFBFC0C4BFC7C2C7C7C4C4C7C4C7C8C7CBC8D2CECECBCB -413E48413A414045424440463C454149464945444948484F4C4B484C4C4B4F4C48504B494D -464D454845484D494D4B495150534F5151534D5753515153485958555457555B5B585C5758 -5351545755545555594F59515957575755555351595350595459535353595A575759575A54 -595A5558575A5C5C5558535953575354585C5559575B595359595B616159655C6759676767 -6D63766C6C6D726C7165716D6C6F777272776A7A6C79727C797A604F41414B4D615B636A77 -6F837E858576502626394032221D4148241A1818131D241D41717276727E6C6A7C637C7972 -867A7C86614F454C4D484C485060678295889F9B9CA3A6A3ABA29BAA9CAD9BABA29F9C9595 -989A9B9A8E9F97A99BA99FA1A1989C9BB29FAAA1A2AAAEB2B2B7B7BFAEBDA9B7AEAEABADB5 -BAB2B2B3B0C0BAC0BDC2C2BBBDBBBBBFC0BAC1BDC5BDBABFBDBAC2BABBC3B7C5BFC3C4C2C0 -C0BFC0BFBDBDB5C0AABBBCB4B7B5AEBAB4AEBAA6B2AAAB91907C63534B463B3E313C3A3234 -2E342E2E292F2F2C2F2F2C312F3237293926373429322E343437322631262F2E262E2C292F -292E2F312E2C2C2E3A3234322F342F342E313231312C31372C292C29272C2C2F2C2E292729 -2C2C2C272C27292C272C2C262C262E292C2E37312C3C57515453545C8DC2C9CABB9C5B4D57 -48534B4D4C4F4D4C544D58454D4D4950514C484D454B44504D4F5B9CB2BBB9BAB5BCC1BDC0 -B9C3C0BDC1C0C4CBC9C7C3BBC4C5C5C0BFB7BAB4A99F8690836D675C575A5459494F45424B -3E424546507ABAC5C2C4C4C5C4BFC7C5CBC4C8C5CDC4C8C9C7D0CBCFCECBCC -44403E3E403B3C453E42414644484B484642454846494D4D4B4B4B4F4B514C4D4B4C4B4F45 -46484C4949464B4D48584D4F5449555054514F535051514F5355545453575A58585B545955 -584C515553555551535755585059575455545A55545951585A555A5A595A57585B555A5059 -5858605C5A5C545C58575A54515457585955595855575857575B5B5B5A635B6A616361676A -656A6767676F676F656C67766C6D6A6D716A716F766F777177797E67615046595760676D72 -7A7A88838385724824323A392F1D4060271C161613182222396F776A79717C77777A77777A -837C866C5C40534D535C63727E8D979F95A198A1A1ABA5ABA5ABA5A2AB9FB29CA5A392919C -959C9B98A197A19CA5A39F9CA2A19B9B929B97A3A3A5ADB7ABBBB9B7BBABB4B2B2B2AEB9BA -B9BFB5B4C0B5C0BABCBDC0BABDB9BFB2A5ADB3C0C1C0BBBFBDBDB5C1BFBCC0BDC2C0BDBCC1 -BAC0BCBCBCB5C1B5B5B4BAB0BFB2B9B3B5BDB4B7B4BDB4BDBBBFB9B3B295856A5C504D453E -3A3A37312F2C2E2C32312E2C312F31342C313131322C342E2E373232342F2E29312E2C3129 -32372F34312F2E2F2E31323132343232322E34372F312F312C2E27312E2931292C2E292C29 -29312C2C2C2F312C31272F2C3131272F29343B4532416159534D515789BCCBC7CB904F5A50 -514D4B504F4D54494F514B50454B5049534B424C45484946485389B9C0C1C4BDC0C0C7CBC1 -BFBCBFC3BFC0D1CDCFC9C3C7C9C9C3C0BBC4BFC3B4C0BABCC4BBBCBCBDB7C0AEAE8D797785 -8D6D607AA2BBC7C3CBC4C5C7BFBDC2C7CBCBBFC8C9CBC9CBCBCCCACDCECDCF -4146443E444145463E4544454644464642414549444D484D4B4D494B4D4F514D494B4D454C -464B484D4B4B4D48504B514F544C545353495053504F4B554F585957575753595859585059 -55545350595753545455545357575857555753535A55585A595A5A575B5558555558556155 -5A57605A605559555A595A55595A54585858545B595A585A585A5755676163656A63616765 -606563676D656F6D676C6A676A636D67716D6C6F6D76826D7A826D7E777158495057606A6C -727679827A91865824313B3E2E37576A3A18181313181826457776776F7E6D79797A7A866D -767772795A6C71777783869188919597979A9F9CA3A6AB9FB2A5A6AAA1A3B2AAA5A99BA290 -A3A39FA19B9CA19A9CAAA1A592A39A9A9B8D9C9CAAABB2ADBCABBFB5B3B3B5B0ABAEB0B2AA -B7AEBDB4B3BBB9BFBDBDBDBDAEBFB5BCBDBDBFBDC0BABAB7BDBDC2BFC0B9C0BFBFBBB7C2BA -C0B5C0BCBBB9BDB7B4B3B5B9B0BCADBAB7B4BDBABBB7C0BDBFBCC7BFC0BFB7BCB3A59F836F -5B5451413C3C343B3232322F322F2C31322C2E323131323A3432392F342E3232312F322931 -322C392E31372F2F323237392F32343931342F312C2E2F292F272C272734292F292F313234 -372E312F2F322C322E2C342C2F292F2C32394957494955554F50544D6D909AA18257544D4F -4F4950514F4D4D4B54504F494F4C4B54484D4D454F4D46494C6FB3BFC7C2C1C3BDCACECDCB -BFBCBFBFBFC5CCD4C7CDC7C5C7C4BFBABDBDC4C0C2B7C1C5C5C0C4C2C4C9CAC7B2AAA1B4C5 -C7C1BCBFC4C7C4CBC3CACAC8C3C5C5CBC8C9C7C4D0C8C8CBC9CDD0CBD1CDCB -443E424448423E44404B46464144454B424948454C49514C4C48454F4B4C494D494D484B44 -484849464D49504F48494B575050534F53504D514C4B504F5551505554575A555753585751 -59555158535357516054575359555755515555515A545A5B5861575C5B5A5A5A5B58595955 -5B595961555C5857595A53575958595860545958575B55576058585955605B615C5B5A6565 -6C5B6D636560636F716771716A6C6A6F6D7176717771777E79798279857C776A5B50555A6F -7282797A8E858382513E51414D59727950341A1A1C1D375B6C7E767A7679777677797C637E -798383898E7E88898D82908698919BA59898A3A1A5AEA5ABA1ADA5AAABA1AEB2A3B3A292A6 -979F9F919C9F9B9B9FA6A19FA38DA395909890A2AAABB0B2AEBFB4BFB7B3B2B2AEB0ADAEB4 -B0BCB2BAB7B9BDC0BCC2BFB4BFAEBFB9BFBDBFBFC0BABBBFBDC3BFC4C0C4BDC0BABDBDBDBD -B4C0B3BDBDBDB7BDB4BCB0ADBFADBCB3BAB4BCBBBCBAC1C0BDC1BDC4BFC0BBBFBFC4C0BFC3 -BAB7AAA6866157464141323B3232322E2F2F342F342F31342F313232343934373237393239 -31372F393731373439373739322F372E3932312C2729262E262C292627242222272C292C2F -323231343B2C312C29322E322C31342F3B494853444D514D544D50514F585C585A58485355 -48554D54504F4D4D515150484D49584B534C5151484F444C4F95BCC5C3C2C3BDC1C8D5CDC9 -C0C1B7BCC0C4D0D1D0C5C7BBC4BCBDB4B9BDBFC5C0BDC3C4C4C5C0C9C5CACBC0ABA2ADC1CB -C7C4C0C1BBC2C4C0C9CAC9C5C9C7CBC9CECBCCCBC7CAC9CBCCCFC9D0CED2CE -4244403E4842464646444441444645464F45494D484944454D484549454C454C49484F4C4C -4B484D454649494F4C54514F5353534F4F5751505351545058585A58595551575559545353 -5755595855535151585A555751545754545555595753555858575A5357575B595354555559 -54545A535B5B5557555557545753595B545A536059555A5B5A5B5B63615C60656360616A6A -6772616C6A6F6A6C65716C6F676D7165726D71777676776F7E7A827E86827E86767658585C -776F768689899A896A77606F717677857E76584953506F7176797E7A6F6F796C72837A9082 -908989918E8688828988869583959A9A9F9F9FAAAEAAA9A6AEA3AEA5AAA3A9A9B09FA3A297 -A3979A97A398A192A2A1A1A291A69A9F909B98A69CADB2B5BDB5B5B3BFB4B0A6B7B3B5B4B4 -B7B2B7B5B9B7BDB3BFBABBBCB5BABAC0BCBDBAC1B9C4BCBCBDBDC0C0BDC2C2C4C0BAC2BBB9 -BDB5C0BFBCBCBAABC0B2B4BBBBBCB5B9B2B7BABBB5BFB5BDBDBFC0BFC0C0BCC0BFBFC5C0C4 -C4C0CAC5C4BDBAA19B856F5A554D423E373B373A37373739342F313439343A343231313A31 -3E3134373A322F3232343B312E372F32312E312E312C2E2C2C29242626272422222729272C -292C2F2F2F322E2F312C34312E3437494B4D535049544D555155574B574C585151544D554F -55515750504D5449504D4D544855464D464F50464F44494572A6C4BFBFC1C2C4C0C9D5D3CA -CABFBFB5BBC5D0D4CDC7C3C1C3C1B3C4B7C1C5C7C4C0BDC4C7C1C8C1C4BDC1B5ABAEB9BDC5 -C9C0C5B7C3C4C3C9CCC9CFC9C9CDCBCFCBCCC5CACBC9C5CBCACBCECDD0CBCE -3E404144464544464846444549484D444F5046464C4B48494448484D4B494D4B4B49484946 -49494F4C4D484F4D5150575755504F5155514D4C55545358545B585A5554585859585A5857 -5560545A535157575057575A554F554C57574F5554545A53595B595B575A57555958535A53 -585C575B55585857575951585558585A575557595C63575C6059635C61606361675C6C616C -6363656761656F676D6A726A6F6F71716A716F726F7C727C79797A8379887A82857E856C6A -6A676779829186867A82867C8276727E7C72796F767772826F7C7E7A89977A978686908988 -858989898D9285918986887E9197959F9B97A6A2B49FADA5A9B29FB2AEA6A2B3A2ABA1A6A1 -9FA19BA3959B92A19BA99C9F9598989A9595A59CADA3B5B4BBB7BBB2BAB7ADB5AEBBB0B4B9 -B3B4BCB5BDBFB5C4B9BFBFBFBCBAC0BDBBC0BFB7C4B7BFBDBCBCC0BDC1C1C0BFB4BDBDC0BB -BDBCBDBABFB4B7BDB0BBAEB4BCB9B7BAB9BABDBBBFB9C4BBC0C5C3C3C3BFC0C1B9C5C0C5C5 -C1C4CAC7C7C3BDC1BAC1BCBCB0A590726A535342403A40393432313434343139313434393A -2F32393239323937373731313231342F2F372E34372F32312F2C2F2E26272C2C27292E2F2C -27272F2E2E292C3229372F2C323442504F4D4C4D5445544F574D4F5445554F584D51534D55 -4F4D4F544C4D4F4F4D504F4954494D4C484B454B45444B4890BDBDC3BBBFC4C2C2CACFCEC8 -C1C1BBC0BAC4CFD3CBC7C5C0C0BDC0BCC0C3C4C9C5BCC7C0C4C8C3C3BDB7B4B2B0BAB4BBBF -C9C2AEC2C4C7C1C5C8CEC7CDC7C9CBC9CCC7C7C7C9C8CBC9CCCCCFCDCDD0D2 -414441424646424446464B3E424D444D4F4C4B49454C4C4B4B4F494846494B48494C4C4C48 -4F454646514F4C4D4B51505551504D5353515050505351535B555C585158545754535A5857 -57505B5150545754505454545854545B4F54545057505159585A55585A535757555459575B -595959585A605A58535A585559575C5750585B585A5B5C5B595960605B63616A60655C6F6C -656065636F67656A616D6C6F6C6D6D6F676D6C6D726F7A7E767A7C777E7A887A7E857A8883 -7A77777C917E9590899186887C797E85777E727A717E887C97919290908D9288908889908E -8E888D8E8E8890839A89898D9A9B989C9AA2A2B4A5B4AAA6A2A9A6ABAEABB5A3A5A1A59CAA -9CA99CA29B91A191A69F9A9C989198899A9F98ADA2B2B3B7BBBAB3BDB2BBAEA9BDADB4BDB7 -B5BBADBDBBBDBFBFC1BCC0BABFBCC1BCC1BDBFBFB9C0BCBFBFBFBDC5BFC4BDBFC1B2C1BDBC -BDBCB4BDBABAB2B3B3B2B4AEBCB3B7B5B9B5B5BFB4BDBDBFBFC4C1C5C1C3C0BDC3C0C9C1C5 -C3C5C5CAC4C4C1BAC7BFC3C4C5C5C4BCC4AEA3987A6D5342453A3934394032342F32393B2E -3737323C3437393B2F343932313232323431323234342E343437343732342E2F2F2F312939 -2C322E2E2F2E2F27322F2F323A454F4F464B4B57484F4D494F494F464C4D554F4B4C4F4C50 -4B48514D49504D4B544B4C4D44544D494F42484644464567B3C2C0B7B7C1BFC1C5C4CDC4C7 -C4BFC4C3C1CBD0CDCDBBC4BFC8C3B7BDBFC7C7CAC0C7C0C5C4C5C4C0B7B3B7BCC0BAC0BFC8 -C4BAB0BDC0C5C0C3CBC5C9C4C9C9CBD0CFCCCCCAC8CBC7CECDCDCECFCBD0D1 -444244454B45414044494845494B4849504B4B464946484D494B484C4D45454B454C49424D -4B4B44494C4F4C504F4F504D5751544B4C575950505157545357465851505451545550514F -545555535350515555544D51574B53555B5853595753595155555859605A58545B58595B58 -5C5A5B5860585854575457545A595858575A585C5760585A596058605A5A67606A61616563 -6D6C5C716A6A635C6C6367656A6D6A67766C796C717E767277777C827E8679898277898283 -8E7C8D88799185958E92889788958D9090908E89979592929B869A9286988D978695869588 -9791958E8E92888E98928598979F98A1979FA5A1ADA5AAA6A9A2AEA1A9ABB0AB9FA6A19C9A -A69598929A9C9A9A9B959897909C889B929FAAAAADB5B4BBB9B2BCB4BFAAA9ADB0B3B5B2B7 -B9ADBBB2BFBDC0C0C0C0C1BFBCC2BCC3B7C1BBBCC0BBBABBC1BFC0BDBDB9C0BABDBFBDBFBB -BFB9BDBABDB2B7BAB4B2BAB5B4BAB5BCB4BDB2B7BFBDC1C1C1C0C5BFC5BFC4C2C3C5C1C4C7 -C7C4C9C1CBC3C5C4C2C3C4C3C5C1C1C7C2C4C3C4C4BFB0764D4B424141393C343A32393937 -3934373C3C373439342F343137393942323A343B3C343A32323437343C343231323732372C -342E2E2F2C342C313132373E494C4C4B4D4D4C4954464D4F494D494951494F4C4D514D4D50 -494D4D514F495748484F484C49534D4C4545454B48465795C2C0C0BBB7C0C5C8C4C9C7C9CA -CFC9C4BAC4C4CFCBC3C8C0CCC3C2BDBCBAC4C7CBC3BDC5C4C5C4C7BCAEB2C4CDC9CBC7C8C0 -BFB7BDBBC2C0BFC5C5C9C4CBC9C9C9CCCACCC7CBCDC9CFCDCDCDD0D0D3CFD3 -413C4242463E4545464642484C4946494F4F494D48454D4B46464B45484C48495049484B48 -4448484D4B4B4B454C4D484D4B5455514B5157575153535854545553555450555857595558 -53534D584D5350545754534F51545751585159535B58555A5459555A515B54585153555354 -6057585A4D54555B5751545557575459575859555C5C5A5959595A5A63585B67656F6C676F -616572636F63676A6D716C6A6F656F6F67796D6D767171776F76777A837E867A8685858686 -7E8983897E8D868D8D8595829789908E919A8E91929A9897919C889292919195928D918E97 -91A1929795858D919098928E9A8E9B929AA1A1ABA5A6ADADA3B09CAEA3A5B2AAA5A99F9C98 -9CA38EA1929C9B91A29C959A9897A3919C9CAAAAB3B5BBB3BFBDB4BCAAB4A2B0B3B5B2B4AE -B5B5B4C0B9C2C2C2BDC0BDBBBCB7BDBABDBDBDB9C0B4C0BBC1BBB9C2BCC2C2C1BBBFB4C1BC -BCBDB4C0B7B3B0B4B3BCB9B2BAB7BDADBDB4BDB7BFC2C5BFC5BFC0C4BFC2BFC1C3C7C2C9C5 -C8C5C7C8C0C8C4C5C4C7C5CAC4C4C9C3C7C0C7C4C5C5C3AB5C4D5449414C4145413B3E403B -3937393934313137313737323A2F3A3437343B3B313439323A31393C313732313431322E29 -2F2C2E322C292F313234414B494B42465048494B45464F42514244504F4F464B4D504B534B -4C4D554F4D5A4B544F504F4C514D4B494D46494B494F7AB9C3C2BFBDBAC0C2C3C2C5CDCBCC -CDCEBDC3BFC9CCCACBC5C7CDC4BDBFA9BABFCDCCC1BDBFC4C3C0BCB9B3C1C9D2D1CED0C9C8 -C4C5C3C7BBC8BFC9C9C8C9CACACACFCDD1C4CDC7CBCBCBCBCCC9CECDD0D1CE -4442424444443E48414149414C4446494646464C4945454C4B4640444644464F464B4C4848 -4D4946414949494C464F4B4D4C4F534F4B5555545B4F58555C5553535757555554514F5851 -55515551574D53514F4F515554505453555757545A5955585355595853545B515755535758 -50575754585060545054585B555059545959505758596057595B5A61586363676F65656C61 -6A6C656C6A72656D636C636D6D716A6C656C717672727A717A727C797E7C83857C837E8877 -8E85867E85858E8D8E90839186918991918D8898889B98909A909A90928E928D8E8E929192 -9A8EA198919791889589979892A69B9BA1A59FA5ABB3A3B4A6A2B29BB0ABA3A5B29CA997A1 -989AA39AA29A9A9B9B989F929BA19C9A98A2A6B3AEBDAEC0B9B9BFB3B3AAB0AEAEAAB9AEBF -B2BCBFBCBFC0BDBFBFBBC4BABFBFBCBFBFBDBCBABCC0B7BFBFBDBCBBC4BDC0BFBCBDC0B4BD -BBB5BAB4BCB7B2AEB9B7B9AEBCB4B7BBBAC0BDC1C2C1C0C7C0C5C7C1C4C0C2C5C4C0C9C4CA -C4C8C7C5CAC3C9C4C7C5C7C2C8C7C7C8C4C4C4C4C2C7BFBD83555A50504D55494F484D4845 -453B3C3C3B3B393B37323A343C3B2F3437373B37343237313440633C342C32312C312E312E -2F322E2F292E32373C41464C464448454D4D464B4550454C4D4B4F495448504C4C4B49484C -4B4F4B4F5946504654484C4F464D454C484946484B57A6C0C2C2C0BBC7C0C8C1BFBDC9CBD3 -D6D4CDC9C8C4CBC9C2C5C8D1D0C5BCB7A9C2CACDC1C4BFC4BDBDB4BFCAC8D2CDD0CDCCCACD -C9C7C7C7CAC0C5C9CBC8CAC5CCCBD0CBCCD0C9CBCAC9CBCFCAD0C9CECFCDD1 -3E41443E44454B44444544494542454F4C424C4D494D48494D494C46464B444B5144494848 -454D48494C4D494F4F4D4D4D5351574F54555959575753575558545C55574C50554F545454 -49534F53514D4D5053504D544D54514D554F4D535951595854545A53595A555B5457575457 -5855555355575854545553585757555A5C5754575B5C5B5B5A605A60635A676367616D676D -6C6D656767606D6A716A6C656D6A6D6F6D7177716D79657E7182767C837E77827A82867E89 -827C86867E858292889189859A8891908E89918DA18D95978E9C9798928D8885869A909A95 -8D959095908D8E91869C8E91A19BA19AA3A5A6A9B3A5B0A5AEABABA9ABA6A3AB9CA997A995 -9B989FA29F9B9CA59AA1909C929C9AA3A1A3ABABB5ADBCBABAB9BBB3B9ADA9AAA5B2AABAB3 -B9B9BDBFBDC0C1C0BDC1BDBFBABDBFBFBBC4BCBFBFBBC2B9BFBAC0BCBBB9C0BBBBBAB7BFB7 -BFBBB9BAB3AEBCB2AEBBB0B9AEBDB0BAB9B9BFBDBCBFC4C0C5C3C7C4C5C2C0C4C4C7C0C9C5 -C8C5C7C5CAC3C4C1C3C5C0CBC4C9C5C5C7C4C4C7C9C0C7B9AA6353504451534B50494C4F4C -494645423B4039323732393A3E373732313C34393434373A323B4B39342E312731292C372F -3431323934372F323E464B48464F44534C464B45514F4D4B4D4D464F49504F48494C485045 -504D424D484D494B4B4B4D444C484D484B494B484983BBBAC5C2C0C0BDC3BFC0BDBFC7D0CB -D1D0D3D5CFCDC5C7C4C7C4CFCBCBC3BFBDBDCBCDC5BFC0BFC2B4BFC5CBCDC9CDCDC8BFC7C5 -CEC4C7CBC2C1C4C9C7CBCAD0C9D0CBCDCDCBCAC9C9CDD1CAD1CBCFCBCED1D2 -45414142443E464B4542484B4C464D4C4B4642484B4842444B484446484545494B483E4C46 -454B4C4B4B484D51504B4D4C4D5749544D535557545B535751575551535058595451514D53 -4F544F4D534D504F4D534F4F55535751505754595454575859575758545355555459545B54 -585A5458505A55555A57515A595858595B5A5B545C595A5C5B585C656160616767675B6D63 -6165656A6A6767676C71656C61636D6A67776A7A6F7277717A72827E7A7A837E887C85887E -8D887E868582917E88868D86888E868E928D929C8E9B9897929B928E918989868D839A9297 -929095988D928D8997909B95A292A997A1ABABB5ADAEA6AEADADA9A69FA5A9A1AB98A6959F -97959C9B97A59C9BA18E959798989C9CABA2B2B0B2BBA9BFBDBDBFB7B0BBA2B2B9AEB5B4BD -BBBDBFC0BDC4BDC1BDB7BFB2BFBDBBB9BCB3C2BCBDBBBBBDB3BAB4BDB9BDBABDB4BDBDB4BF -B5BDBBBAABBAB0B4B0B3BBB4BAB3BBB7BCB3C1BFBCC1C0C4C1C5C4C9C1C7BFC4C8C7C9C5C7 -C4CBC5C7C3C8BAC5C4C4CAC4C5C0C5C5C7C1C9C2C9C4C1C2B4885B4C4D514D594B4F4B4B51 -4B554F4F4D4C424C37413B3B443C3A39372F3A373A393A313432373937393239323434313A -3737392E2E313A40414549444F4951484F46484D484D46494C494C49514D484D4D504F464F -45424F44505046484B4B424B4C4C4651424F4C4567AABCC4C0C7BFBBC3BDBDC0BDC0CBCBCF -CCD2CDD2D4CCC4C5C2C7CFCCD4C7C7C9C5C3CBCAC7C1C0C7BDC0BFC8CCD0CBC8C2C2C0C0CE -C5C9C7CAC4C5C4C9C9C9CDC9CFCCCECDCDC9C7C4CDC9CED1CBD1CCD0D2D1D5 -4644444C42414042424C4C4449464C494B4941494B4C4646444846494149494C484D494948 -444949514549494B4C504B514F51554F53505158555A575554534F594C53504F5750505351 -574C504D51514C54514955575758555453585755555757555A54555551505959574F575151 -54545853535354515C57544F5A57585155595858555A545C585C585557615C616C606A6363 -6561606A6C726C6F6D6A72676C6D656F6165726A777272727777717A837E858D798D828286 -86888986898E8692858E829590898E918892959192929A9097959789908E89959098909792 -9A929F919B958E92909A9095979B98A197AEABA6AAA3B0B0AAA9B29CAEA2A9A6A1A19A9B97 -959C9C9AAA92A39B899B95929B9B989CA1B3ABB5AEB4BCBDB9BFB3B3BAA6B9B4B7B4B5B7BB -BBB7BDB7C2B7C2BDC3BFBCBDB9B7BCBDB5BDB2C1BFBFBFBDBBBDBFBDBDB9C2BABCBDBDBAC0 -B9B9BBB3BDA6BAA9B0ABB5BBB7AEBDB7B2C0B4C3BABFC3BFC1C5C5C3C7C1C5C2C9CBC9C9C7 -C4C9C4C8C9C0C4C1C5C4C5C2C4C5C4C5C5CAC2CBC0C7C3BFC0AD6357504F5453544C484D4C -4F4D575050465346504B4C4F3C423E3C3A3C3A3A3A3C393734343731322F342F2F34323932 -31372C2F2F3B48424645444844454941454146494B404B48454D4954464B444D4B4648464B -464F4B4D4D464F444646424848484B4B4549485883BAC3BDC5C0C4C3C2BBC3C1C5C0C7CED1 -D4D0CFD0CBC5C3C3C5CBD2D2CDCCC7CCC2C8C8CBC2C0C2C1C7C0C5C7D0CFCBBDC0BFBFC4C7 -C7C5CBC5C7C5CAC8CDC7C9CAC8D1D0CCCDCDC5CBC7CCCCD1D0CDCFCDD2D3DA -403E4542444144454546464B4248464B45484844464C444948424B45444945484B484B4648 -494B50454B4941514F4B504D57574F4F545453545157575451535457534F4D5453514D5459 -50504D544F54545554505457595557505451585458535855545B54515755515B5054575755 -5053544F50535754515C5354545554545157514F585958585959595A58586C5C676A5C6163 -616160656C636F67766C6F6D67636C6D656C67796A726D776F79717C7685857C8D7C828689 -829083978D928E88918E928991889186909791919291929792A18D988D9892909590919592 -989F889C9097918D9792979B9B98A39AB29FA6AEAAABADABB2ABA9B39CA9A2A99897A3AA92 -A39AA1A68DA39B9A9B9A959A929898A3B0AABCAEAEB5BABDBDB4B5B0B0B5AABAB0B5B0BDB7 -BCBBBDC2BCC3BBC0C0C1BFC0B3BBBAB4BDAEBBBAC0BDBDBBBDB9C0BCB9C0BCBFBFBDBDBCBA -C2B9B9BAB9BAABB9AAAEB9BDB0BCB4BBBFBAC1C0BFC3C8C4C8C4C5C2C7C7C5C9C5CBCCC5C9 -C8C4C7C5C3C7C0C5C4C4C4C4C4C5C2C7C5C4CBC2C3C0C4C0BFB38D554C535353515851544B -514B57544F5B50634D515955584C4C4F4C454846424645423C3E444032402F393A3140393B -373737393C41454644414B41494C4149424246424D46454D494D50464B484D4F4B53464D46 -4B444D4C4C54494C4B484C4B5049484C4D4D5165ABBAC0C0C0C4C8C2C4C8BFCACACED0D1D5 -D4D1CBCBC4C9C2CBC7D0D3D1D0CBCBCAC4C1C9C2C7C0C2C7C9C8C8C4C9CDC5C5BFC8C3C5C0 -C0C0C4C0C5CAC8CCC4CCC5C3CACBCFD1CBCACBC7CBCCCDD0CFCDCDCDD4D5DB -3B423C3E3E4442454244484C493E454448464942464546484245444446454B484C45414F44 -484D484F46464C4F50514F4C4C574F5054545455515058535553585A5753595554514F4F51 -5046514F5050534F554F535559575A574D51515454545A5854505153514F544F5550515550 -54514F554F54554D534D53555053595359515858545A5A5B59595C5C5B655A656367606563 -6D6A6061676D6576676A726C676C656F676D6C6F6C6F766C796F7A7182828283867C898883 -888591838989898E8989928E919286958E989192929B979B9A9A9C8D928D8D8E97959B8997 -9295A28D989590919A979F92A298A2A69CABA2ABB3A2A3ADA3ADA5A9A69CA59AA2989F9A9B -9AA1A19AA19F9F97A1959B909C97A19FA2B3ABB4B3BABCBFB4BDB4B4B3ADADB0B2AEB5B4BF -B9C0BDBDC0BFC0BFBDBFC5B9BDBABCBDBABAB7BAB9BDB7BFB7BDB9BFBFBABDB9B9BCC0BBC0 -B3BBBCBABBB5B9B4B9B5BAB9BDABBFBABFBFBDC0C3C4C7C7C0C9BFC7C4C5C7C2C5C5C8C5CC -C5C7C0C9C3C1C5C4C8C4C5BFC7C2C7C4C7C8C5C7C4C0C3C4BCC2A56A554D4D505A534F4D4F -5153534963719590868D867E8D828571635B6D796D6061595A5C5553554842444648424442 -41464148414B464548444B454D4453444C4D404F484B44464C4F494C49494849494557404D -4853514D514949484F48494C5146484C48544D98B3BDC3C4C3C8C2C1C8C9C8C7D2D1D5D4D4 -D2D5CDCDCBC5CFCBCACDD0D1D2C8C9C8C7C5C5C9C4C0C4C8C8CFC7CDCACDCFC5CBC9CBC8C2 -C1C1C0CAC3CACEC7CBC8CBC8CBCFD3CACFC7CBCCC7CFCDCFCCD1CBD4D1D9D9 -3B3B42443E454041454040454442414449444640444444464849494B4244454C4546464549 -494C4C4D48494C4D4B51514D535555505553575455545558545154575059555A5055544D51 -494B4D4B505146545051505454544F5455545751575558555157574F584F4F544F50535350 -54575353554F585353535957595457575559555957575A58585B575A605C636067676C606C -636A636D6C6C6D6C6C6A6C676C676D716D7276716F7172766F7A7283798383827A8E828586 -8389868389908E90858D829298899A858D8890979C979B909598959289928E898D918DA390 -9A97928E9598979295989CAA9BA2A197A5A1AAADABA9B3A6B4A1ADAAAAAAA5A9989F9AA397 -9C9A9FA3A39BA5989A9F929A95A29F9CA9A9AEB5ADBDBFB3C0ADB7B2B2AAB3B2B5B2B4BDBD -C4BCC1BFBCC0C1BDC2C3C3C1B3BFB4BDBDB7B9B5BABFB7B5C0B4C1BDC0BDBDB7BDBABDB9B5 -BDB7BFB7BBADB5B3B5B3B2B2AEBCB5BFBCBCBDC3C0C4C5C3C7C2C9C3C9C4C5C4CAC5C5C7C4 -C5C4CAC1C5C1C5C2C7C5C7C4C2CAC5C7C4C5C7C5C0C4BDBCC4BFBC8854554D505850504C48 -4C46505463C0D4D4D5D4D3D0CED2D0CB888DC9D0CACBC7C7C9C1C4BCB759444845454D484C -4C4944404D4549464645464F5782675548454F454B515751554C4B4951494846424B484946 -594F454F484F45504B4B4C494C4B4C4B4C4972A1ABBFC4C4CBC2C8C4C8CFCCC9D1D4D2D1D1 -D3D1D7CDCCCDCCCFCACDD1D2D0D1C5C7C5C5C9C5C5C4C5C7C7C9CBC5CECFCFCDCBCDCBC3BA -C4C3CBC7C9C8C9CBCBCBCDCBCBD1CDD0CBC9C5C9C7CCCCCCCDD0D4D1D7D7DC -40453E44454244414242444940404946454542454545484541464842494546464948464B49 -49494F505349514F4F53515453554F504F5950595557535353585355574D50515151544F4F -4F4B4D4F4B4C51464C504B5555515755595557595057595A57555055534F54515151514F53 -544F505854574F554F5857595854535359585C5557545C585B5A5B5B5A5C5C5B6363606D61 -6D636A65676F6F677165616A606D656F656D6C716A7C7172796C76717A8382838E82897E85 -8886978D92897C8890869285929785908D868E8E929F8E988DA19195928989929086959195 -9191979A989A959192919A959C9BA39BA5A3B2A9A9ADABB0A5AAA2A9A5A99FA19C9F9C959A -979CA1A99BA39A9F9C989A929C979C9CA9B2B7AAB3B2B7C1B2B5B5B3B5ADABB0B0BFADBDBF -BBC3BFBFC0C2BAC3B9BFC0BFC0BFBDB7B9B2B9B0BDB5C0BDBAC4BFBFBFBDB3BDB7B9AEBDB7 -B4BDB0B5B4B3ABB9B5B7B2B7AEB4BBBAC0BFC8C3C9BFC9C7C0C9C0C4C4C4C4C7C0CBC7C5C5 -C2CAC4C4C4C8C3C5C0CAC9C4C9C0CBC4C9C9C5C0C8BDBDC0BCC0BFAA6A59504C4D50465149 -494C4C5161AED3D8D5DBD9D8D9D9DDD6A379CCD7DBDBDBD8D8DCDCDBCF7A4848424C48464C -414848454C4C3E4648424B4DBCCDCF7E41494648486FBFBFA95B45514C4249464B4C4D4B50 -4544464B4D494D4B494B4C4948484F494D5790A3AABAC9C8C5C9C4CCC9D0CDCED7D7D2D0D3 -D2D7CFD1C9C7CBCCC9CDCFD4D1CBC8BDC7C3C8C3C1C3C5C5C7C9C1C4C9D1D0CEC5CAC7C7C1 -C0C9C5C9C5C5C5C7C5D0CCCDCDCCD0CACBC7C9CCCBCDD0CBD0D0D1D5D4D8DD -4144414241484542424644443B41444446444542454246424449464148464848464B494D42 -4F4D484D4F544D4D4D504C544D4F4F55515354515359555754545A5554554D514C53504B4F -4B4C4C4F4F4F4C4B5051545557545960575B5555545A575B545851575A535450544C544F57 -55545B535351515754555C5357545855515A555555555860505A595C61635C6A6A6C61636D -656A6565716C6C6D606D61616F63656F656A6D6D6D777E6D6F776F6F7C82857C7C897E8D82 -97889089889088868D908D919292909188988E8E97979A909A959A929189978E9198919B92 -98959F979B929B97959B92A3979AA1A5A2B3A2B5AAABB5A5ABA1ABA2A59FA997A598959C8E -9AA39BA3AA97A39C9F92929B989FA1A3A6B0ABBDADBDBAB4BCBBB7BBB4AEB2ADBDB7BFBDC0 -C1BFBFBCB7C0C0BBBFBBBFC0BFB9BFBAB9B4B4BCB9BFB7BBBABDBCBCBCBABDB5C0B4BBBAB0 -B4B9B3ADB3B3B9A6B9ADBAB5B2AEBFBDBFC1C0CAC1C7C0C5C0C4C5C7C0C7C9C1C9C2C9C5C9 -C7C7C4C3C2C2C5C0C9C4CBC4C8C7C4C7CCC7C4C5BFC5C0C4C0C1C2BF865B4D555554574C59 -4F484B4C5883ABABBAB3BBBFD0DBDBD7A36FABC3C1CDC7CCCDD5DDDDD27E4B464545484649 -48424646444849404C464559B7E1E0BD514246454579D6E2D86A554C484C414B494251464B -4C464950494B4C534C5054494D4B4D494982A2A9AEC2C7C7C3C3C9C8D1CFCED0D7D5D8D5DB -D7D4CFCDCDC9C9C9CFCACFD4D4D4C3C5C4C5C7C4C4CAC5CFC9C5C5C0CCD1D3CEC9C4C8C5C9 -C4C0C7C5CBC9C9C8CAC9D0CBCBCDCDCDC8C9C7CDCBCFCBCECCC8D0D6DBDCDE -3E3C443E4240403C4142403E453E4142444B46424646444646414641424545484845464B4C -4C4F464B4F4F4B4B4D4F4C4C5150545155584D5757545155505554574D534F505050534F49 -50514F4F4C515157505454535553555357535455574F595155575359595858544F4D515550 -5554545351545551555A535A51555857585954595759555461585A5C5C5C655A6C656D6165 -6A6A6D676F6C6A636F656F6D67636A6A6F6F6F67657165777171777979887C7E7A8588838D -868989958D8D8E929189919190959A8E9B8895929A9F9295979892919097858E899792928E -9090919A919B90A19C929C95929B989FAB9BAEA6B0AEB0ADA3A2AAA3ABAB97AB98989F9192 -9B929A9AA2A298A6959C8E929CA1A1ABA6B0BDB0B7BBBFB7B7AEB7B3B0ABAAB4ADBDBAC0BF -BFBBC4BDBFC1C0C1BDBFBFC2BFBDBBBCBBB4BBB7BFBBB9BCBBB3C3BBC0BDBCBDB3BDB4BFB9 -B2B4B4A3B9ABB2B3ADB3B4B2B4BDB7BCBCC3C5C4C0BFC4C4C8C8C2C3C9C5C7CBC4C8C4C5C5 -C4C1C9C0C7C2C4C9C7CBC2C8C9C7C7CAC7CCC4C4C4BDC7BFC3BFC4BDB06C57514F5850594F -554C4C504F585C656A72769BCAD8DBD07658725C6F727686A1D0E2DBC75C4D4C494F444848 -444D42454D454649464B454FADE0E5D05A4C44444567CEE3E0914D444C4B504F4F4D444C48 -494B48494F424C4F494D495349574D5060ABB3B2BFBFCDC5C8C4C7D0D5D0CDD4D5D8D1D9DA -D5D1CBC7C8C7C8D0C9D1CFD4D4CDCAC5C2C4C5BFC8C5CDCBCDCAC8C7CDCBCBC9C8C9C0CBC3 -C5C3C3C7CAC9C9CAC5D0CBC9CCCCC9CDC7C9C8CDC8CBCEC9CECBD2D7DCDBDC -3A4540423B3C413E3E3E3C454042443E464148454445454248454846444542494B444B4C4B -4C4B4D5354504B51514C4D4D51584F55535954544D505557545054535354534F4D4F544C4C -554B4F4B484F544D544D535553555855544D575555594D54545358534F57534C5153584B57 -4F53515351554D555554555157575955545557545B545B5C5A585A54585A5A606C67606C63 -6A67656F6F6D6A6C676D6F6F657263766D6D6C6F796A77717176837A887E7C7C7E82828D8D -86838D8997869A978E98908697908E9A869588909191929595A6929290829892989C919895 -8D9598989B8DA5959F97979B9B92ABA2A1A9A1A3A2B0A6AAA1A6A2ABA3A2A398A69898989A -8DA59AA99B9CA59B9C909790A298A9A5ADADB9B9BAB9C2BDADBAA6BBB2B4B4AEBBBCBCBDBD -BBC1BCC1BABFC0BFBDBDBDBDBFBBBFB5C1B4BCC1BFBFC0BDBCBDB5C2B5C0BCBDBBBBB2BCBB -B7BCA9BCA1B7B7ABBBAEADBBB7B7BDBAC3BDC7C5C4C4C5C7C5CAC0C8C1C8C3C7C9C8C5C7C5 -C5C9C1C8BDC4C5C7C7C2C4C4C5C4C9C0CBC8C8C1BFBDC1C1C0C5C0C7B4976353595353504D -50494851544C57515C678DC7D9DCD8AD6554595950605B76C5DCDFD9A2534F4945484B484C -494C4B484146404F4C454C4C86D9E6D7834B4548485BC4E5E5BC4D4941504D4B5149504550 -494C4D53444C4D4C494B4C4D58454F537A9BB3BAB2C5C7C7C8C8C9D1D5D5CED3D9D6D7D7D7 -D2D2CCCBC4C0C5C9CCCBD2D4D5CBC5C0C5C0C7C7C2CAC5CCC9CDC9CECACDC9C9C2C5CAC5CB -C5C8C7C5C7CBBFC7CCCFCDCACACBCDC9C7C5CBC5CECBCCCDCACED4DCDBDCD7 -3E3C404042443C3E42423E41413B414641454545463C4544424641484545464D464D4B4B46 -4F4D4D514D514C4F535450534D54545554555550594F545454545151545451504D4F51504F -4C514F464B4D4C544953544D4F5154545558545457535453545851535155545150504D5957 -555555514F4F57545B51595754535B5B555754575159595C555C57635A615A5B636067615B -636D656F656C676A616C726C67716F6A776C767E7972716F7C7971857C857C7E7C82828586 -908890987E959597909585959291928D978D9188989A95979B8EA19089988E989297979B89 -9B899B919A92919B9598989B9AA298A2A3ABA6A2A6ADB5A2A19FADA6AAA6A29A9C97989A8D -9C9AA29BA29F989898979F9B97ABA2ADA5ABB5B9B9BCBBBBBCADB9ABBDABAEB0B3B9BFB9C0 -C0BDC7BFBDBFC1B9BFBABFBCBDBFB7BDB4BABCB7BFC2BAC0BAB7BFB5BCBDC2B9BDB7BCB9B5 -B4B2B7ADBDB2BABAB9ABB9B4BCB2B3C0BBC0BFC5C4C7C5C7C5C7C4C3CAC5C8C7CAC5C8C2C7 -C5C0C5C0C9C4C5C5CBC2C9C4C7C9C2C9C3C9C3C2BFBDC2C4BFC4C4BFC4A5615C4C55504C4C -4B4B49494B485054618ECDD5DBD8BD725861545450618DCBDBE1DCC16C4D4F4C4D464C454D -4B4C4C40483C4B4B444942536FD1E5E09146414D4855B0E2E7C86C404B4C464F4B504B4948 -4B504F464C4F484B484D48484B494C6792ABADBDC0C4C9C4C5C9CAD1D9D5D5D6D8DCDBD5D4 -CFCECDC9CBC0C7C8CDCFD0D4D0CBC7C9C2CBC4C7C7C5CDD1CACBC5C7CBC5C9BDC4C4C5CAC9 -C9CBC9C5C9C9CAC8CCCFCFC8C7CBCCCCC3C9C7CCCDCFCBCDCBD1D4D7DED9DD -4041413E3B494040404040404540414242454645424445444448454842424D464C484B494D -4D514F4F4F4F5049514850555454555153534D574D545453555451574F515053504953484F -57464649494D5046514C545357555551534F5A53545451545754545750534C535353575450 -544D54535155545A505551585557575555555953585859575A515A595A655C5A6061656C67 -67656F656C6A716C6C61726D6D716A7967766D6F726F6A7E7282826F7A7A797E7A7A827C89 -83958E8E928695978D959588988E97888E8E8E918E90959F929F92959197979F98989F9298 -929B909897979192959A9B9BA39AA39FAAA3ADA3AEA9A6A69CAE9FA1A19C989F889A9A909B -98A598A1A1A39C9A979F9198A3A1B0A5A9B7B5B5BDB2BDB9BAB4B3B7B3B4B0B4B4BBB2BFBF -BFC4C0C0BDC0C3BFB3C0BDC1ADBBB5B0B7B4BABCC0BDBFB5BCB2BCBCBFBBBFBFB7BDB7BFB3 -B4B4B0B2BAB2B7BDB3B4AAB4B4BBBCBAC0C1C4C4C5C0C9C0C9C5C4CAC4C7C9C8C5CBC4C9C5 -C4C5C3C8C1C4C5C4C3C8C3C8C2C7C9C4C7C3C3C0C4BFC9C3C5C3C1C5C0BD885C5B544D5850 -54544946534F5761A3CDD7DBD2C16F5C61516051659BCED9DFDBC77C574F4D505867586D60 -5C65545445464D5346494B4867C8E5E0BF4B4549484FA1DBE7D5584944484C44484D4C4549 -4B464849464D48424F424B4D484F5085B5B4BCBDC4C0C3C0C4C4CAD1D9D9D5D6DBD9D9D6CD -CBCAC7C4C4CDC4C8CBCDCDD1D0C8C7C5C7C4C7C2C5C4CED0D1C9C4CBC5C9C3C8C7C7C7CDC8 -CCC9C8C9C5C9C3C5CBCBCBCDC7CDCBC9C7C4CBCACCCED0CBD1D1DCDCDCDAD8 -3C4040414140414142443C3C424141464541424449454641444645484B45444C4549494B4D -4C4C4F4D48515050504D4F50534D4C4F484F4C485357535751575554514F4C514B4F4B4550 -4B4F4C4C4C4B4F4D545354544F505554515354575355535757574D55514D5350554F555755 -515753545457555358545553555159505459555955585959575A5A5C5C615959615B5C6C61 -6C726167656A6D676165636F606F6A6C726D71766F6F6D6F827A79727979767977797A8985 -9588888E888E9B90979595929598909A8D908E98929595959C919C989A919A8E9892919A8D -9791A197958E9188A2979A9C989C9F9FA5AAA3AD9FAD9BA5A99FAEA29BA99C97A391979892 -9A9A9C9FA3A59F9A9F86A598A9A3A5ABB2B2B5BFB4BAB4BCB5B5AEB4B7B3AEB4B3B4BDB7C1 -BFC0C5C3BDBFBDB4BBB2BDB4BFBAB4B4BBB7BFC0C0C4BDC0B9BFBBBCBCBFBBBDBAB7BDB3B9 -B2B0B2ADB0B7AEB3B5A6BAB3BBB9BDBFC0BFC5C1C3C7BCC7C4C4C5C4C8CBC7C9C8C9CEC7CD -C4C9C7C4C2C4C7C5C4C0CAC1C9C4C5C7C5C3C3C2C2C5C1C9C1C7BFC5C7BFB37A6059574F55 -535850504D585488CED9DED4C07961595751555B86CDD9DDD6C4795B57574B5190C9CDC7CA -C7C4C9BB854D4F86898E8D9195C9E3E4C96346424D4C77DAE5DE89484557454D464C4D4B4C -494D4D4C4F4F454D48485444514171AAB9BBBFC1C0C4BDBFBFC8C9D0DBD9D9D7D9DBDCD1CD -C0C0B3B9BFC4C7C9CBCDD1CACFC7C9C5C2C1C5C7C5C8CBD4CCCDC7CACBC4CAD0CBCBCACAD2 -CBCDC8C7C7C7C1C2CBCDCCC5CEC8CAC5C5C7C7CCCDCCCCD1CED6D9DBDCDCDC -413E4441404141443C443E3E423E403E444644414544413E4245414B48464B484F4F49544F -4D4D48514F4C4D53584F5751535A514F5457555857514C57534F4B504B574C4C494D4B4D4C -504C49514C514D514F5457535353555354515455585359535454535351575053544F515750 -554B4F534C545153545455535058505754575854515B515151606058615B6065605A67606F -67636A65616561656C6C766A6D67766F6F76796F72766F7A7779717C727A79797A7E837E90 -83908D9089958D978897959098959892909295899792979C95989A98929F98A28E97979292 -8D9C989A988D90A292A1989AA1A3A9A6AAAAAAA9B0A1B39FA1A39CA2ADA1A19C88988E9A97 -9F959B9BA298A29C979C97A3A5A1A3ADA6B7B2B9B9B2BCB0BDB9B4B0B9B0B4B4BABFB9BFBD -C2C3C8BCC2C0C0BDBDC1B2B9BABAB7BDAEBDB4BBC1BDBFBABFBCBCB7BFB7BFB5BBB9ADBBB3 -B3B4B0A9BBA6B4ADB0B3B9BDB4BBBFBDBDC2C0C8C4C4C4C3CBCBC4C4C8C5CAC4C5C8C5C7C3 -C7C5C7C2C5C0C9C3C4C5C1C5C4C5C7C4BFC5BFC2C2C0C7BFC5C2C5BFC1C0C48E5C5A505A54 -534F5751545360ADD8DDDBC06D635C5353535461B5D9DED7C57154534D49494C90D5E2E2E0 -E0DFE2E1C74F6AC7DCDEDCE1DBE2E7EAD772454D4654AADCE8E0C0634B4C4B4C4F484D4D4B -4F4853464F46494949534C53495C97BBB9BDBDBFC1BBBFBAC4C3C9D5D8D7D9D3D9DBD7D4C9 -C4B7B0B7BFC5BDC4CBCDCDD1C7CDC7C5C1C2BFC5C3C8CECCD0C5CBC7C9C9C9CBCFC5C9CEC9 -D2C9C5C5C7C4C9C5CACDC9C9C8CFC7C9C5C9CBD1C7CFCDD1D4D8DCDBDEDCDC -3E404545444141423940423B3C484242464945414946464F464B42444C4C4549494C4D4C50 -4F53504D514D4D505151514B57545353545855585558504F535451504C514B4F4F4C54494B -4D4D504D554F554F4F5358535851555750555550585A505553554F555350534F5153575150 -4F515750505051515459544B5150545153505153555557515C5B5A5A5A5A5A575C63616C6A -67676A676C6D6A676A6F6771677977797679727E79777676797976767A717E7A7A7E778383 -868D858D9289988D979B979A989590919892919789959A9FA19C97978E929B979B959C9A95 -98909AA395979B8E9B919FA19C9BAEA6AAA2A9AAA2AAA5A2A59B9BA19FA39C9A98979A919C -98A19FA3A1A19B9B9F9A9C9FA1A3A9A3B3ABB9B9B4B9B0B0B5B9B0BAAEBDABBABABFBCBABF -C0C3BDC0BCC0BBBFC0BABDB5BDBDBDBABBA5C0B9BFC0BDBCB9BABDBBBDBDB4BDB5BDBDB3BB -B3ADB3B3B0BAB2B5B4ADB3BABAB4BFBFBDC0C8C4C5C7C5C5C7CAC8C5C5C8C4CAC2C9C4C0C4 -C4C4C4C7C1C7C0C7C4C4C3C5C5CACAC4C4BDC3BDC5C4C5C1C2C4C4BFC0C9C0B57953595053 -53545053545358BBD9DFD67A616751605B595A60C8DBDFD17E59544C544F454859BBD0CED3 -CFD4D5D7C55954BFDADEDDDEE0E4E7E9E18D4F444D5CC1E3E6E3D7C055504B534C4C4D4F4B -4D504453455349494F4651494F76B4B7C0BCC0BBC2C1C1C5C2CDC9D3DBD9D5D5D4D9D8CDCD -C1BAAEBDC0CBC7CDC7CBCECDD2C9C5C9C4C0C5C0C3C9CFD2CBCBC5CDCCC8C4CBC7CDC8CACD -CCCCC8C9C8CBC5CBC9CDC8CBCDCBCAC7C8C9CCCDCEC8CDD0D1DBD9DBDBDCDB -3B41393E3E3E3E3C424240404045423C4541414448494446454B4C484846494F4C504D5053 -515450534F4F504F5358515753545757515557505550544D514D4C534B4B4D49484D4B534C -4D4D4D4F534B534C4B5553554F585154505453544D5453505351555055555051534C59534D -504D545454505550585555535451515551555855555A545B55615B655C605C60635A6A656C -676C67776072676A6D6D716C6D6F71797A727E767C7A796F727A77777976727E6F7C82798D -907A8D7C869589988E918EA29295899F88919C899F91989F9A959B9198989C91979A919F95 -90919B919A95959B98979FA3A1AEA1A69BB0A2AAAAA5AAA6A3AAAB9FA592A19B979A929F92 -9B9CAB9AA99BA29F9B98A59CA3ADA3ADAEB4B3BABABBBBB9B3B9B0ABBCA9B7B7BCBABBBDC4 -C0C3BFBFC0BAC2B7BFBDBDB7BCBBBBBDB5C0B9BBB4BDBABFBDBFB5BDBAB4BFB2B9B5BBB2B4 -B0B5B2B2B3B3B5ABBDA1BAB3B5BABFBFC0C5C2C4C2C5C5CCC3C9C5C9C9C3CCC4C9C5C5C3C4 -C2C3BDC1C5C0C7C0C5C2C5C5CAC5C7C5C1C3BCC7C0C4C2C0C2C5C0C4C3C4C9C08E60575357 -5455505951515CB0DBDED17A5C5A6391BCBB776AC2E0DDC75A5A4B5A77887C4953586C6F6A -6D6C6F7976464C67A1A5ABB0B9C5DBE9E3B94B504876D2E6E4DFE5DB95504C464D4F4D4D48 -4D4949454D454F494150454B619FBCBABCBFBCC4C0C7C4C4CBCBC5D3DBD7D8D1D7D7D4CECD -C7BFBAC0C0C7CAC7CDCACBCFCECBC9C5C7C4BDC0BFCBCDCDCBC7C7C9C7C8CCC5C9C4C5C9CB -C9CBCACDC9C5C9C4CDC9C9CCC9C5C9C8C8CBC9D2CBCDCCD0D5DBD9DCDCDCD9 -3B40403B39403C414042443B4241424142484041454040424646424846494C4C534C4D4F51 -5154534C4C504C50544D4F4F50535351555455515354515949504D5050514F504F51514951 -4C4F4F4C4D4F51534D55574F585155575051545558515A5555585153585453595153574F53 -5554574F53575157545C505754544F58505559595855545C5C585A58605A65606063636A6D -636F766A6F6C6F6A726F6A6A726F7C7A717A676F766F7677777E718372727E717A7E827E89 -868E7E9192918E91919297909B92958DA1979A9098989C9B9C9F91A392A2989B9A919A9F98 -97958D97919C989F989F9CA3A9A3B3A2B2AAA9AAAD9BAA9FA2A198A69B9B959B89978E9A98 -9F97A2AB9AA3A398A29F98AAA5AAABA3B5ABBAB5B9BFBBBABDABB9B3ADB7ABBBB9BCB7C0C0 -C4BFBDBFBDC1BBBCBBBDBCBDB3BFB4BBBFBFB9B5B9BDC0BDC5B4BFBFBDBAB5B5B2B5B7BAB0 -BCA9B3ADB2B3AEB9B4B0B0BBB7C3B9BDC2C4CBC7C4C4CAC7CBC0C7C5C7C8C8CBC9C5CAC7C5 -C9BFC3C0C4C9C4C2C5C3C3CDC5C9C3CAC4C1C4C4C7C9C3C2C4BDC8BCC7C9C3C5BA715A5351 -544C574C5348579AD4E1D59758605AB7D7D7B963BDDCDEC55C515559BDD7D49046544D594D -515450534C4542514F55535C536AC4E6E3C3574B51A1E0E4D8B0DBE3D06A494B494C514850 -45465345484F444546424B4C7EBBBBBAB7B9C3BDC5BFBFC0C3C9D0D1DBDAD3D4D5D7D1D1CB -C9C3C7C5C4C8C5CEC9CDCBCBCDCDC4C5C4C1C1BBC9C7D0CDCDC8C7C1CAC9C5C9C4C5C4C8C8 -C5C5CCC8CACAC5C9C9CBC9C7C7CCC7D1C9CACDCCCDC9D1D5DBDBDBDBDDD9D4 -403B41403E3C3E424142403E3E40443B41413E4642444646454246494B494C4F4C534B5153 -4F504F50544D555053534C534D51554F54514953504B4C4D554F4D50494F4F494F464C4945 -4D484D4C4C57545058515157575059515454515350554D545354545351544F545154574F55 -5155534F58585551585551555751555055535B58595758575A595960616C60616561656A60 -6D676A6C616A6F776A6D77766F7C6F7E8277797779796A7171767A717E777C7C77827E8385 -89838888918E9A9092918D97959A899F909C989A9095979F9B98A1979A9797979F92989895 -9C959B8E95979298A198AA9FA2A9AAA9A1ABAAA5A5AB9CB092A6A99898929B95989A959798 -85A3A19FA6A29C98A3A3AA9CB0ADB3A5AAB0B3BCB9BDB9BFADBCB2B4B9B5B5BBB9BDBFBDC2 -BDC3BBC2BBB5B7B9BABFC0BCBCB4BDB3BCB9C0BBBDBFBAC2BBBFBDBFBDB7B2BAADBAB5AABD -B2B9A9B0B5B5B3BAB3B4B4B2BFB9C0C0C1C5C7BFC7C5C9CCC4C7C4CDC7C5C9C9C5C7C5C7C9 -C0C5C0C4C5C5C1C4C0C5C9C8C8C1CBC0C9C4C1C4C5C2C4C5C0C9C3C4C5C7C7C7C1955A5854 -51554C594F5A5371C2DCDBBF836079C5DCDABD6397D9E1D28D674F6FC5DFDEA34B4C4F464B -4D4D4B50464446464C494C4F4D54B7E2E7D2554858C0E5E6CC72B0E1E0BF5B49494C455146 -4B4C454B49514D494944485BA2BDBFB4BFBABBC2BCC3C0C0C4CAC4CFD9DBDAD7D9D6D5D0D4 -CDCEC5CBCBC7CACBCBC9CBC9D1CACEC3C7C4C1C1C0C5D0CBCACBC2C3C5C9C5C1C3C0C2C7CA -C3C9C4CFC9CBC9C4C9C9C7CBCDC9CDC9CBC7CDCECDCBD3D5DADEDBDDD9D8D4 -453C3E463A3C413B403E443B414244404B424845404941464C484644494B4B4F4B4F514C55 -494C534F4D534F4D51514F504D545454514B544F534D4C53504D53514F504C514B4F4B504B -574F514F55545050514C51554C5A55555355554F535354555454594D584C53515551545151 -554F574F535153534D505A5154504F53555959585858576159635B615C596763605B656A6C -6367656C656A766A796F72767E717A7782797E727A71797C7A82727A767C7C827685777C85 -858888868897959B919788919C959B9590919297A691A3959A9F929C92979895979A88A28E -979797909292959C98A29AAAA2A6AAA6ABA2A5ADAAA5B295A9A6A39B9B97A29292959BA289 -9CA1A3A39CA3A998A2A1A1A6ABB4A6B0A6BAB3BBB9BABBB9BDB5B7B3B3B2B9B0BBB9C0C3BC -C7C3C2C0B9BBBFB5BABDBDBFB4BCBCBCB9BFBDC0B5C0BABBC0B9BDBAB7BCBDADB9AEB7B9B3 -BAB2B2AEB3AEB7B0B4A3B5B7B4BFBFC4C7C4C7CAC1C9C9CBCCC9C8C7C9C4CBC7CCC5C7C4C3 -C5C2C7C0C4C0C4C1CAC4C8C7C5CAC4C4C4C5C0C7BFC7C0C4C7C4C5C4C9C4C7C3C7B7835757 -57595550584F5354A2D0DBD8C9BCC7DAE2DFBC6071C4DDE0D09B9AABDBE2DDA35142494646 -494B45484845415A635C6A585965A6DEE7D76D4F6AD4E5E3BF5B77CDE3DBA14C5145544C4D -4F454D464D46494B464B4F88A3C0BDC0BCBAB4BDBFC7C4C8C9C4C8C9D9D4D9D8D6D5D3D0D1 -D3CDCDC9CECDCCCED1CBCBCDCCD1C7CBC2C4C1C0BFC5CCCFC9C7CBC4CBCDCBC7C8C2C7C5CA -C9C5CCC8CBC9CBC5CBC9CEC5CDCBC9CFC9C8C9D1CED0D1D9D7DADCDCDAD5D8 -3C404241423E423E40443E404244444141443E4541444846484649464948514D51514F5055 -4C51515153574F4B5150544F5451554F4F504D5450504D534B505053544F4F504C4D504B53 -4F514B54534F4D50535553535950575553554D555053535157504B585053544C5050535553 -5150535B504D5051535351585554515858505758555759595B575C61615C605B6565636F65 -6A636C6A6771716C7771767C72777C7C778279857179767A7C768672797C76727A767C7C82 -827E8888908D98959B889789909791919595979B9AA3979B9C9BA29C97978D9A9F909C919B -97959798959B929A9A9BA392ADA6AAADADA2B3A6ABA9A2A6A1A39CA3989B989F929A98909B -959CA1A59CABA5A3A1AAA2A2AEAAB7ADB2B0BBB4BBBABCBDBBB5B9B5B9BFABBDB4C0C0C0C0 -C0C0C0BABDBDB9C2B0BFBDBBBDBCB9BABFBCBDB7BBBBC4C0BDBFB4AEBDBBB9BDADB2B0B5B0 -AEADAEAEADB4B4B3ADB5AEB7BFBDC3C8C4C5C9C5CBC5CBC4C9CBC9C7C7C7C1CBC1C9C5C8C5 -C4C1C5C1C1C2BFCBC4C8C7C5C8C3C4C5C0C2C4BCC5BFC5C4C3C2C4C4CAC7C5CDC4C5976A5A -575C5051534C505165ADD0DBDDDBDDDEDFD79255587ACDDBDEDCD9DBE2E3D892484C4F4644 -4949494C4B4655BCCDD3CBCCC9C9D4E6E7DE9C5095DBE4DF92515C9BD9E3D28846504D504F -4D50454B494C494F464B5A9FADB5C3C0BFC0BFB5C7C3C7C5CACAC2CDD6D8D8D8D3D5CED7D3 -CDCECBCCCACFD0D4CFD5CED2D1D0CDC7C2C2C3C0C1C4D0CACAC9C5CBC9CBCAC9C5C9C0CACB -CBC4C9CCC7CDC9CBC7CCC7CECCCFCCCCC7CACACFD3CFD7D7DBDEDEDED5D5D7 -48403C40413C413B42483A3E413B413C424542454149494646444942484D4B4C4F504F504D -534B504F534D4B4F485350554C514D50544F4F5450514D4D514C4D505150534D49484C484D -4B494D5457544D53534D4D4F5557465154515054505451554C4D54515354545154535B5455 -5453515054545455545A534F585155505557555855585563575C5A5960656065656D6A656D -636F636A636D6F7267727671766F768379727C76776F7779767972768672777A72827A7A83 -8885888695899F8E9295859595889297899F9597A198A398A29AA99B9B95A2929A989BA195 -9A9B9A8DA398A39B9BA29FA2A1B0A3AEA5B0A1B0A5AAA5A29CA6A39FA28E9C909B90989B9B -9AA6A1A1A69AA598A6A5A5A2ABB3B4ABADB4AEBDAEBFBCB5B3B9B5BCBBB5BBB7BFBBC1BDBC -BDC0BABFBBBDC1B7BFBCBFBDBBB7BCB5BFB9BABBB4C0BABFBDBFB7BCB5BDB9B7B9ABB7B0BB -ADBBADBCB3B3B0A5B7AAB3B2BABDC5C1C5C5C8CBC7C9C5C9C9CAC7CAC8CAC5C7C9C3C8C7C7 -C2C7C0C4C0C0C1BDC9C3C8C5C8C4C7C2C1C0C2C4BFC4C0C5C4C2C0C9C7C9C5C9C9C0BC7657 -575055594C5450514D5C9CC2D2D8DCD5D0B4634F5B6079C0D5DBDCE2DFDAC35B49484B4844 -48494B4D444C54BBE0E3E3E0E1E2E2E6E8E2B955B2E3E3D6634B4D63BDE0E1BC61424C4F4B -5349504C48464B484B4B8DA3B0BDC0BFC1BFC1C3C3CBC5CBCCC8C0CAD3D7D5D6D7D0D5D1D1 -CCCACDCBC7CED1D1D5CED6D4D4D0CFC9C4C5C5C5C4CACBD1C9CBC8C9C5CDC9CACBC7C8C7CF -CAC7C9CCC9C9C9CACBCBCECACECBCBC8CBCBCDD1D2D5D7DBDBDBDCDDD9DAD7 -42403A414042454141423E3C44414648454444404144464C424B4649454B504D4B4B4C4F4C -4B4F5050534D4C534B4C4C4D4C4F55494C514F514B494D504B51484F4F4C4D534F4C4D504F -494B4C514F4C534C4D535055504D5058555051514D4F534F48504D4F515055575554505750 -534B5355534D4F51595855545153535851575355585A5B595C595A595C5A6C586C656A6563 -676C6A6C676C7265726D76767172827A828279857682727C7977727A6C7E77797E76838283 -8386868D85988D929789918D98918E8D9A909A919B91A2A29C9F9A98979B979B979C9CA197 -9F9B9A9A95A1919FA1A2A2A5A5AAA5A6B2A3AEA5B0A5AE9CA5A1A29F9A978D95909591A19A -A69FA6A9A3AEA2A5A6AEADA5A6B0AAB7ABB0B9B9BDBBB7B5B7ABBBADB5B3B5BFC0C0BDBFBF -C1C0C4BCC4C0BABFBDB4B5BABABFB2BBB3BFBCB3BDBABFBFBDB7BDB5BDB4B9AEB7B3B9BAAE -B7ABBAB4B9B3B2B3AEB3B9B7BBC5C0C5C3C9C4CACBC5C7C7C5C9CBC5CDC4C5C8C4C7C7C1C2 -C2BFC3BCC7BFC3C2C5C5C7C7C5C5C0C8BAC3C5C1C8C0C5C7C4C5C7C1CBC5CAC9CBC5C2A160 -57535A4C5B4D574C5055586C89A5A9A5826C53595451606C91B0C5C5C9A96F4F454B454244 -4848604445454898CBD4D0D4D1D6DADEDBDDC363C4D7DFC5554B495085CEE3DCA655464F4B -464B4D4646494444456C98B2B5B9BFC5BDC2C1C0CAC4CACACBC5C7CDD7D4D6D7D5D5CBD3CD -C9CDCEC9D0CFD4D4D5D5D1D6D2D1CFC5C3C5C2C5CAC9CECBCBCBCAC5CBC5C9C7C9C8C5CDC7 -C7C7CBC7CDC7C8C5C5CDC9CBCDCBCBCCC5CCC9D4D2D4D9D9DBDCDCDBDDD7DF -4444413E41404142413E413C41404640404842463C45444249454C48454D4D504F4B534C49 -555151575555515050504F50504F4F514D4D4D544F5351514C4F505148484C50504D4D4954 -514C57534D5054515054544C5551505553514F5753514D504F544D544B5754505754535358 -51555359515A505558575951555454555950585555595A585759605C5B635B6C606C636765 -5A676D606F656379656F6F71717776856F7E7A7779798279727A77717E76797A7A7A827C86 -837A898597979A90908E928D989291978D928E9B8E9B9BA69A9A9F979F959F9B9A979C90A1 -979F9A9298929F97989B9C9CAB9BADA9A1B2ABA6A1A39A9F9BAE91A19A989C889B9C95A29F -98A9A2A2AAA6A2A1A3B0A6A5A9A6B3A5B7ABB0BBBBBCBBBABDBDB2B9AEBFB9BDBDC0BDBDC1 -BDBFBFBFBFBFBDBBB3B5ADB5BAB5C0BAC0BDBBBDBCB9BDBABABAB7BAAEBBB3B0AEBDB4B3AD -B3B29FB9A5B0B3AEAEBCB3BFBFBDC5C1CAC4C7C9CCC9C9C7C9CBC5C9C4C8C5C5C5C7BFC4BF -C0C3BFC4BDC1BFC4C7C4C4C9C4C4C7BFC5BFC5C2C4C4C9C5C7C5C2C9C7CDC5CAC5C5C4BC7A -5A5B535853575854545851594F5A6D59575559515351545457616776635A57464B48484844 -484C424C414254536F6F6D7A7A8295A1978D825990A3B47E5042494953A2D0D2C55C494D4B -4D4D484F4B42454B5189A5B7B7BCC1C2C9BBC0BDC3C4C9C7C9C5C7D5D1D2D4D9D5D5CDCFCE -CBCECED0C7D4D0CFD3D4D4D5D6D1CFC7CBC2C7C7CBCDCECCCCCDCBCDC4CAC4C9C5C4C9C8CA -CECCCBCCC2CCC5C9C3C8C9CDCBCECCC5C7C7D0D1D5D5D9D9DBD9D9D9DBDCE0 -41444241424241413C3E3E40404245444142464042494045484548484D504F544D504C4B51 -4C4D4D4850484B514F5350514F504B4D49504B505450504D4D4B514D504F514F49504D4651 -504D53514F4C4D4D4B4F5059535555594F51515350504D554F51544B544B4B4D5351544D4C -4F58515A585057555755515055545450535551605757575757615A5B60605A5C656A636367 -5B6C6A6D6167717277716C7A7A727972827682777E7C7A72767A797C7282777E72867A8883 -838388928D9A92959598919B888E9790978D90979AA1A29AA697A29B929F9A97989A90A298 -A2928D909297929BA1A1A1A998ABA2A5A9ABAEA1A1A39B989B95A6899795909797979B9A97 -A69CAA9FA69FA69CABA9AAA5A9BAA9ADAAB7BBBFBBC0BDBBBCB7BDB4BBBBC1B7C0B3C1BFBD -C0BCC1BFBDB5C0B7BDB4BDB3BABCBBBFBBBABBBDB5C0B3BDB9B2BFB9B4B3AEAAB9B5BFB3BA -B7B7B2ABBAB9B2B0B5AEBCB7C0C3BFC4C7C9CCC9CCCBC5CDC7CAC9C4CAC4C5C5C5C2C2BFC7 -BDC0C0C3C4BCC3C2C5C0C7C0C5C0C0BFC4C7C1C4C1C8C3CBC4C5C7C5CAC9C9CBC9C7CABF9A -6C535A54545455575353504D57534C5549544C4C55484D4F4F50504D4C4B49454B46404448 -3C464B4444464446454C534C544B4D5553504C464C5357544650404B53587A716D544D484B -45464442424248496A9AAAAEBCBBC0C5C4C4B5BAC0C9C5C5C4C4CDD2DBD0D4D5D7D5D1D1D6 -D0D0CECED2D1D1CBD3D4D6D5D9D4CFC9C0C4BDC4CAC7CAD0C8CBCCCCC9C3C4C2C4C2C9C9CF -CAD0CEC8C8C7C7C7C4C7CDC7D0C9CDC7C7CDCCD3D2D6D9DCDADAD8D9DDDEE5 -4042453E40443940453C40453E454240414846484B4F494D4B46454D49494D50494C535053 -545854514C515350534C514D4D504C4B53514D514D4B4D534C514B4B49464F4D4C4C4F4851 -4D5148574B5054505051514C4F5455535950554F4D534F4B53504F50515955544D5357574B -58515754515A5755585555555559515A555559575C5A5360605B635B635963606567636A63 -6C65675C6D6C766C726576727776727A777A77837983727C76717A7A7E7A7A7C7A79837C86 -79858E8997908995978D988695929A9892959790979A9A9F9FA99A9FA5989A9B8E989B9197 -92A189979B9895A295A6A6A3AB97AAA6A5A3AA9CAE9FA29BA2A1A19C979B9092919F91A19B -9F9C9FA9A1A6A3B2A2A9A9A5A9B5ADAEB2B5B7B7C1BBBDB9B9BAB3B7B2BABBBAB7C1BCC3C0 -C0BFBCBFBFB9B9BCB5BFB2BDBBBBB9BBBBBDB5BFC0B7C0B4BDBAB9B7B7B2BBAEB0B2B0BAAA -B3ADABB4B4AEB3B0B0BCB4BFBDC0C1C5C4C7C8C8CEC5CAC4CBC7C7C8C9C1C8C5C5C5C0C5BF -C3C0C3C1C1BDC1C5C5C9C4C8C1C0BFC0C0C3C0C5C5C0C9C1C5C1C9C8C9C7C8C3C8CDC7C9B3 -715A55575B505C554D514B504F4F4D454F4B454F464D5449544B53514F484C4648454B4D41 -494248484D45454B4D504B4D484B4C4C504F4949464C574C5049464B4B4849534B544B4C4F -494D4646424444548DAAA3BFB9BFC5C4C5C0BCB3C3C5C5BDC1C0CBD7D9D2D3D1D3D4D1D4CD -D5D0CDD1D0D1D3D1D3D8D6DCD5D6CBC1C3C0BDC5C8C4CBC8D0CBCEC9C4C3C5C4C4C7C8CDC9 -CEC9CAC8C8C7C7C7C7CACBCFCBD0C9C9C9C9D0D1D4D7DAD8DAD8D9D9E0E2E3 -4445453E423E3B42414541414544454542494442484B4C4F4D4B4B4C4D494B4F4F484C4D4B -544C514B504F5555514F4F4F4D4F49534F50534F4F514D4F5348514B4C484D4C4949514D54 -4C4C544954534F5050514F54515051574D54504F4D50534D4D534850514F54505753545054 -504F4F5555545157575155575A5057505855535158555A5A5B5B595C61635B63606A616D65 -606360606D676F7161716F7A727276777E79727E776C796F7C7C797A7E7A7E83767A798272 -7E7C869197909C8D98908E9A8E9A92908E9C919B9CA3A198A998A59C9BA19C919A899A959A -95909A919595A192A197A3A29B9CA2A3A9A99BAB9CA29B9F9FA1A29C959195929C8E98A3A2 -9CA29FA6A9A3ADA1B2A1ADA3AAB3B7ADBCB2B2BFBCC0BCC0BBB7B4B5B2BDBCBABDB9C0BFC0 -BFBDBDC4BCBFB5B5BAB4BAB0B7BAB7B4BDBBBFBAB7BDB9BBBCBAB3BAA6BCAAB4B3B2B3A5B0 -A6B5B4B7ADBDB5BAAEB3BBBDC4C0C8C7CBC4C8C4C9C7C8CBC9C8C8C8C3C9C0C4C4C3C5C0C4 -BDC2C0C4C0C0BDC1C2C3C9C3C4C2C1BFC5C0C4C4C8C7C4C8C5C8C8C4C9CDC5CBC7C9C7C4C7 -9C575A575053545551534D504F4D4F54534F534C53504C514D544D4F42494946464B454B4B -45494150404B46424F414C4548454446494848414C514951404542444848494B4B49454B4B -4846493E454145729AA2BBB4BDBCBDC0C1B5B2B4C2C9C4C2BCC9C9D5D6D5D0D3D0D1D1CAD1 -CED0D2CFCBCFD0D0D4D4D5D4DBD1CBC1C2C4C4C0C4BFC4CCC9CFCACDC4C7C5C8C4C5C5CACE -C9C9C5C5C7CCC3C7C7C9CCCACFCAC5C9CDCDD2D1D8D7DADCD8D9D9DCE0E3E4 -42424144413E4145444640464C44494448484542464645464946494B4F4C4C4F4D534D534C -4F514B574C4F5051504F4D53504D4B4B50544F4B544F544C534F4C4C4C504B4C5151535050 -554D5153544D4B51534F4D4F4D54514F514D4F515151504D53504D5051505753555153544D -55504D5557535951545353515358504F545459585360545A605B5A5B6561635B635B6A6A67 -6A616A6A67716A6C716C7771776F717283768376797E6F85777A7A777E857A887982827A88 -7986888D98A392A2899591978D9595979F919F9AA39FA2A1A3A19F9A9FA18EA1899A919C95 -9595929597A1919F959BA3A39AA6A2A5A6A2ABA1AEA1A6A39A9FA2919C8D95A2919F92A3A1 -9C98A59FAAA9AAA59FB2A5AAB7B2B2B9A6BCB7BDC2BCC0B9B5B3B4B9BDBBBFB5B9BFBBC3C0 -C4C0C3BBC4B2B9B7BAB7B9B9B3B5B2B5BAC0B7BBB9B7B3BBB2B5BCB0B9ADBAADB7B4B9B2AB -A9AAAEADB3AAB5B2B3B0BCBFC3C4C4C7C4C9C5CBC8C8CDC8C5CDC7C8CAC0C5BFC0C2C1C4BF -BFC0C0BFC1B9C5BFC3C4C1C5C1BFC4C3C0C7C0C7C0C5C4C3C5C9C5C7C9C4CDC4CCC9CBC8C7 -B776574F59575C535553554F51494B5345554C53514F504F50504645454446414B44414945 -4C46464148453C4642424546494445454646404645444844444C3E4D4B4B4C49494F454C45 -494D444645465488AAAEABBFBBBFBDBBBBBCB5C3C0C7C7C0C4C0C9D4D7D4D4CED2CDCFCCCB -D0CCD1CCCDCBD4CDCFD4D1D5D5D0C3C2C3C9C2C7C1C1C4C9CECDCFCCC7C7CDC8CBC1C5CCCE -D1CAC9CBCDCACBC4CBC7CCCECECFC8C9CDCDCDD4D1D9DAD9D7D3DADFE0E2E3 -4544454544444041424044494649494241494444494B4C534D4B4D494C4D4C51504B554D53 -534D5353534949544D4B544C4B504B5049505051504F4B514B514F4F4D4B4D494B5055504D -53554F514D514F5151504F50504C54545449504954544F514C504B544F5453554F54514F51 -5750545053554D555453534D57545755555859575C575C5B585A6060635C63636C6A5C6D63 -656C6C677165716F6C776F726D776F7776796A7976777C7C827C7677897E8E79837A837A7C -838688899091A19A9B919C989C95989C90988D9BA1A5A398A3AA979B9B8DA291A19A979895 -959B8E9F959B9F8E9F9F9AA2A69CAB95A5A9A5A59FA9A5A19C9F98A283908E929F979CA3A3 -9FA39BAA9FAEA2A1AAA5ADAEABB4B7A6B4B0BFBBC0B4BFBABBBAB4B9B5C1B5BDBBBFC1C3BF -C2BDBABDB9BBB5BCBDB9B9BBB9BCBDB4BFBCBFBABFBABDB4BFB7B4B9B3B9AAB7BAB0B5AEAB -B9AEADBAA5BCB3B4BABDC0C0C0C4C0C4C9C5C9C8CBC7C9C8CCC7C7C5C4C9C0C4C4C7C2C0BC -C4BFC1BFBCC4BFC7C7C7C5C2BFC4C2C8C5C0C5C4C9C4C7C4C8C4C5C7C7CDC7C9C5C9C7C8C9 -C7975C585958595855585355494D534D534B544F464C464845494549444C3C49484049424F -4940484541494445424148484946414B45484644444C454D4B454D42464D4850464C4B4446 -4D4555424B4B71ABA6B0B3B7B2BAB3B2B9B2C0B7C4C7C7C8C7C7C7D0D7D4D1D7D2CFD1D1CF -D0CED0D0CDCFCED4D1D4D2D2D1CBC2C4C4BFC9C3CBC4C5C7CDCDCDC9CBC9CBCECACCC5CACD -CDC5CDCBCCC9C3C9C5CBCBD0D1CDC5C9C9CBCFD3DBD8D9DBD9D7DDE0E3E2E0 -454444444B45574842484242464448404446484448454D4B4B4B484F514B484D53514B4D4B -534F4F50534D51484C4D51504F554F505058504D4D4F544D5449464D4C4C5553514F4F5051 -4D54534F505151504D4C4D534D4B554D49534C4D51514F4D4B4C4F51514F51505350555455 -575351545351555359515353575753545551575A5A5C5B5B5A6160675C61606A6A606A6163 -6A6D6C6F636C67726D7A77726D76767179717A7676797C6F82777E828288888D778682827E -8D858D908D989B9FA19A899B929A92979291978DA2A39C98A59BAB929A9B97929190919797 -988998899B9595A59C9BA1A19FAAA3A6A2ADABAAA5A2A5A5979FA2929C929B98A28E9C98A5 -A1A1AAA3ADA1AEA9ADAAB0B0B7ABB5AEB4BBB9C0BCBFBDC1B9BCBCB3BDB9BABFBDBBC2BBC4 -BABAB5B5BDBABDB5BBB4B9AEBFB7BABDB5BFBBBABCC0B9BDB0C0BAB7B0A9B7B2B5B2B0ABBB -9FB4AEAAADB0B4B9B7B4C0BDC2BDC7C4C4CAC7C7C9C5C8CBC4CAC5C8C5C7C5C5C5C4C4BDC0 -B9C3BFC0BFC0C5C2C7C5C4BCC7C0C4C0C4C4C4C9C8C7C5C9C4CBC3C9C7C9CDC9C9C5C7C5CB -C5C079575354574F535559504B484D5046514C464C494B4B46494446404046454148454B49 -4449464B46444645464946494445443E4F4046484553454B444C454F4B4B4D49464B464546 -414F46464859A3ABADB2BCB9B7AAAEB3B3BAB3BBBDC7C8C9C2C9C4D4D9D1D5CDD1D0CECFCF -CED1CBCCC8C7CECFD6D4D6D4D0C4C5C1BFC4C3C7C9C9C7C9C7CEC8CEC9C7CDC9CFC8C4CCD0 -CFCDC5CBC9C8C8C5CBCAC9CECECACAC7CDCBCED5D9DAD8DAD9DBDBE0E0E3E0 -4545414444494F4948484942464C4C494648464C4C4D4C4C484B504F4C544D505050504C53 -53554F4C50514D534F514F4D4B4F514D575151484F4B53574C4F4D4B4D4944505053554C4F -544D51514C504F5151504C4D504D4F55504F5351504F4D4F45494F4F4F5348584B55535057 -4F4F555457505551555A5355575757545357595A575A605C5C5A61605B5B63616A656A6C71 -676D6C6A7276776F797177767771797C767C77767C77717C798579827E77888283827A7C85 -7C90869198959FA19C9B91959C929C8D9197919CA39AA6989FAA9FA99A9F9C9A979C9A9898 -9BA38D9F919A9CA19FA597A19FA3AAA2AA9FABA6A99FA5A29C979A9C909C979A9898899C9F -A3ABAAA9A2A5ABABA9B9A5BDADAEB2ADB7B3BABFC0BCBFB4C3BABCBDBDBDC0BFBDC0BDC7BD -C0BDC0BCBABCBDBDBFBAB3BCABBDB0B7BDBFBABFBDBCBDB3BAB3BFBCBBB5BCB3B7B0BDBDAD -B0AAADAAAAADB5B5BBBAC1C7BDC4C5C9C5C7C7C4C4C7C5C7CBC0C9C5C7C5C4C4BFC1BFBDBC -C0BFC4C0C2BFC4C2C8C5C5C8BDC7BFC2C2C3C3C8C3C5C3C4C7C3CDC9C5C9C9C8CDC9CBCCC7 -CCC2A15C595B5857574F58534B4B4C4B494B4B504F4D4948414944484641484249414C4646 -4B40494545444B44494949484B49454D454941494B454B484F48454B4651494B4644484940 -4D4145444D86A9ABADADB0BBA6AEA6B7B7B0BAB5C0C5C5C4C9C1CBD1DCD4D4D1D1CFCDCCD0 -D0C9CEC7C9C3C5D0D5D4D4D4C8C4BDC4C0C4C5C7CAC5C8C7C7C7D0CBCBC3C7C9C9CAC9CBCC -CFC7CCC7C9C4C7C4C8CACACFC9C9C4CDCBCDCCD7DBDEDBD9D6D9DFDEE2E0E0 -4544424B494149444442454B454146464D4B4B4B454C4C4D4D4D4B4C544D4F4D5050505153 -4C5351514F4B51484C505150544D51574F4D4D4C4F51515350544D4D4F49514650514F5053 -49515055514F4F484C494D4C534F534D514D4B4C4B4B4C4D4F4C4F4F4B4F50515555535551 -54535454535751505554585454545855545760555C546060615B5A63676163676765606F63 -6C6A676C6C72727E7271727772726D797E77777E6F79797788777E7E7E837A82827A867E82 -91828D928E9CA397A5989C929AA295A68E989C9AA1A19CA19F9FA59FA198A19C9C9B9A8E97 -8D989B979A989F9FA99BAB97A5A3A9B0A5A6A1A9A3B3A1A9929B9298979C91929F989F95AB -A2B2AA9FA6B2A5ADA3A5B4ADB7B0B5B3B7B4BFC3C0BAB7BFB4C0BABDBFBDB9C3BDBFC2C0C4 -BFBFBBBDB9BDB9BFB0B9B3ADBFB0B3BBBFBDBDB3BFB5BBBDBABCB7C0B7B7B4BAADB5AEB0AA -AAB0ADADA6B5ADBBB5BAC0C0C5C1C9C4C5C7C7BFC9C5C8C9C5C7C1C5C7C7C3C5C0C5BDB7C0 -BCC1BFC0C1C4BFC8C2C7C5C5C5C2C4C0C4C2C5C1C7C2C9C7C5CBC8CAC7C9C8CBC5CDCBD0CD -CBCBBD7154545157545A4D5B574D4F4F4B50504950494D494C4B4649464C4048444C494649 -44504C554C444548484846464D424C4542484B454C4D494B42494C4548484849454645484C -414C46446A97A2ADAAADB0AEAEAABDB9BDBDBCBDC5C1C9C4C2C8C0D4D5D0CDCFCFCFC9CFD0 -C9CEC7CBBCBCC8D0D0D6D3D1CABDC3C0C3BFC5C3C7C4CAC9C7CBC8CDC9CAC8CBCACFC8CCD0 -CDCCC4C9C4C7C8C7C4CDCAD0CDCACCCAD0CDD3DADCD9DED7D7DEE0E2E4E1DE -4C4B4841484448494B4B465049484B464848454C484F4B48504F515148504B534F4C4B5350 -514F544949554F514C4B4F504F544D50514D534C51534C57504F534F4C504C514F53534C54 -5353544D50514F4F4F49515451504D5150514D504F555154514B515450514F54545355514F -4F53574F545054515353585054554F5554575A5A595B55616163635A63605C63636C6A5C6D -6567676A6A6D6F726F767161796A7776767C766F77767E867C7E7E8979857C887C85798688 -8590919795A29A9F929F8E989898A59592989895A198A59CA3A6A6A2A69B98A395A298A192 -979C98929C9798A69FA598A39AA39FA5A5A99A9FA1A3B29B9B9F9797958E989297979BA19A -AAAEADA6AEA6B3A1A5B0B0B3B4B0B7B9AEB9B9C0B9BFBDB7BCB4BABCBABDC2BDC0B5C0C3C1 -BFBBBFB5BCB4BBB4BDB7B3BAB5B3B7B4B4BCB3BDB5C0BCB9B3B5B0B7B3B2B9B0B5B4BAB4AD -ABAEAAADB4ABBAAEC1BBC0BFC0C5CBC7CBC9C5CBC3C7C5C7C7C7C4C1C1C3C4C1C4BCBFBBBF -BFBFBFC2C0BBC0BFC7C3C5C3C2C4C3C2C5C2C3C7C4CDC9C9CAC7CBC9C3CBCDC9CBC7CDCBD0 -CDCBC7A95B585953634F5A545350464F4B5053464B4B424F4950494D48414F454D46424946 -4D5577976D4F44404B40484B454942464644454545484B414C4649454B4D444D4B46494849 -4F484C4C88A1A99FADA5B3B5BBBFBCBFBFC4C3C5C7CBC3C5C9C1C4CED2CBCDC9D3CECDC9CC -CBC9CBC3C0C0CACDD4D1D7D1C8C0BBBFC0C4C2C5C4C9C2C7C9C4C7C7C7CBCAC8CEC5CBC8CC -CEC8C8C5C5C8C5C9C9C5CFCDCBCDC7CBCED2D5DADBD9D6D7D9DEE3E2E3E0DE -484948494248494B4D4849494D4B4B4D454949494D4D49514D514D4D4F5051514B514F5453 -46534F4C4D4851555453504F554F4D4B50514B4F4F4C4F504F514C4B4C504D535151514F51 -50544D5051554D515151494C4D5351504F4C514C4C50514D505351535049534F505A4C5354 -53545354515351515755515851545957595855595754635A61606A675A5C61616D6A6C6765 -6A6A6D6D676F7267777172716A7771727A797183717A777C7E827A77827E827C887A858386 -89908D92919B9C929C959A98A29CA198A3A397A29AAB91A29F9F9AA3A19F91A1A19BAB9898 -A19A92A697ADA398A9A1A3A1AAADA5A5AA9BAB9AA2AAA3A19897A5958E9A899A919A9CA2A2 -A1ABAEAEA9B2A1B4A9A6B3B0B0B2B4ADB7B7C0BBBFBCBBBCB5B4BBBDBFC2BDC3B5C1BFC7BF -C2BABFB7B3BFB4C1BCB5B5B9B5BBB7BBB3B2BDB7BDB7BFBDBAB4B2A9B7B4A9BDA9B2B3B0AD -B4ADBAB3B7B5B2BABBC1C1C2C3C7C4CBC5C7C8C5C9C5C5C9CAC4C5C3C9C3C4C4BFC4B9BDBD -C0BDC2BFC4BFBFC9C4C5C0C5C0C7C0C5C4C5C3C0C5C4CBC7CBC5C9C4CAC9CBCBC5CCC9CDCD -CCCCCFBD7A6154615858595750505353494B4B464C484D48464C4946494B454C424649445B -7795AB9BB3885A4845414541484244464246444848464C50494B424D4B45514B5046444944 -48454B76A5A5A1A3A3BCBDC1C0C3BFBFC0C4CAC8CCC7C8BFC5BFC5CCD0CAC8CCCCD4CBCCC9 -C7CACEC8CDC7CBD0CBD6D2D1C4BFBCC0BBC3C0C4CAC7CBC7C7C5C2C5C7C4C9C7C3CDCACCCB -CDCACBC7C9C7CCC9C7D0C5CBC7C8C9CDCDD6D4DBDCD8D7D4DBE0E3E3E2DFE2 -463E45454544484545484C4F4B4B4D4D544F4C53484F53494F4B4F505351504D53514D4F4D -4D4B4C4F4C4D5750544F5450505354544B4D54544F4C4C4F4C4D50534C5055485151584D4D -504C55534C53544B5550514B4B504C4D4F4F4C4F4B514B4B4F50504C4D574C535753534F53 -5555585455545153534F5B53505855545853585959575B63635B5C5C6167656F6C6F716D65 -6F6D6D766F7A6F776D7671726C766D797A7A7A717C767C76867E7E7C7A7C7E888289888988 -908D98959F97979C9CA5979B9FA295A295A39A979CA297989B979F98ADA3A69C95A69A9C9F -9BA9A59CAE9CA3A9A29FA2A1A3A2AEA99FAA9AA59FA2A3A290A19797989295919C92A5A1A5 -A5A6B4ABAEABB3A5A9A6B9AEBAB0B9B4BCBFBAC1BBBABABDABBBAEBDBFC0BFBBBFBFC4BFC0 -BABFB9BDB7B9C0BBBDBDBAB3BDB2C0B7BBBDBABDB7B9BCBABBBCB0BDB0BABBADB0B2B0B0AD -AAB4B0BDB5BDBBBABFBFC3C7C8C4CBC3CBCAC8C7C4C7C9C5C4C7C0C4C0C4C0C0C0B9BBBCBD -BDBFB5C4C0C1BFC4C4C3C4BFC3BFC9C2C9C4C4C7C5C4C7C7C9CDC4CEC7CDCBCBCBC9CECECD -CED0C8CE975C674D595453574C4F494C48464D48454F46454B49494B45494444464544639F -9A8E6C5765979B6F494542464645494451444D49484D45544C4C4D50454F454D4C46444453 -415557A19CA2A2A9B4BDC4C7C8C5C1BDC5C7C7CACACBC5C5C1C3C2D0CDD1CDCFD4D0D0C9C9 -C9CBCFD0CBCBC9CBD1D0D1CDC9C4C4BFC1C0C4C5C8CBC7CAC9C5C3C8C3CBC5C9C9C9D0CDCD -CAC9CACAC4CDC7CAC9CCCDCBC9C7CBCCD2D5DADADAD7D7DBDDE2E3E6E0E2E0 -454645424548464B484948484D4C4B4F4F4D4F4F59534C4B50534B50504F4D4F4F53505157 -5151534F504C4F544D534F59514D534D4F5451504F4B4C4D514B504F545554534F514C5051 -5048504C544F4D504F58495051504D4B484C4B4D4F4D50494B534F50514C514C4F5451534F -5153535557535353575555585A5A5A555554575B595C5C615B616365676565656C6A726F6A -676F71767771716D766F766D6F6F796D717676767177777C7A7E7685797C827C8D86838E89 -909C8EA19BA2A19BA5989C9F919A9B90A5959BA1979A9B97A3A3A2A6A1AA989F979BA2A29A -AAA19FA9A3AAA2A29FA5A5AA9CA9ABA9A3A1A6A2A3A6AA979F909C929195919A889A9AA99F -B4A1B0A9ADB5B0AEAAB2AEBAABBBB2BABBB4BFBFB9BDBCB4BBADBDB7BDBDBBB9BDBFBFBDBD -BFB4C1BAB9B9B4B4BDB3BABFB7B7B0B7B9BBB7BDB7BBB3BDBBBBBDB0BBB2B3B3B0ABB4ABB3 -B0A6B7ADB5B0BCB7BCC0C7C4C5C8C7C8C8CAC5C7C5C7C4CBC7C2C7C0C7C0C0BDBFB7C1BCBF -C0BDC1C0C0C1C3C4C5C1C5BFC2C4C2C5C0C5C4C7C4C7C5CCC9C7CBC7CDC8CCCBCECACDC8CE -CECBCFC9BF7A585C5554534F514C4B4D484C4B46484B454D444F44444842484C49495591A5 -654B4544444B639572464B4C44463B48494F4C4D4D46504B4C4D4D444C4D4D4F4645494D48 -4D4982A1ADA6A9AEB3C3C7C9C9C3BFC5C3CBC5C4C8C9C4C3C1BDC0C5CDCBD0D1CFCFC9C2C5 -C4CDD4C8CDC7C5C5CBCECFC7CAC0BFBFBDC7BFC5C7C7CBCBC9CBC7C4CBC8CDC9CACCCCCBCB -CBC7CBC4C9C7C5C7CACBD0CAC8C7C7D0D0DCD7DBD8D5D6DBDEE4E5E3DFDEE2 -4B4F424642444B4B514B48494B4C4D46505051514D4D49535053514D4D4D5351554D4F5355 -50544B4C4D4F514F534F545354514F50515053534D534F4C4F4F4C4F4853544F53504C4F55 -534F504F4B4D504C53494950504F494B4C49534C4F51484F51464D504D4F4C504D514F5150 -4F535454535B535A58555358575354535A55575A585B6061635A6A676A6A616F6C6D71766C -6F67766C6D716C726C6C766D6D7C6A7A716F7676777E7E857A7E837685777C837E8290868E -89899891A297A59BA2A3A59BA2959AA1909C9F9B95988EA397A5A2A3A398A18E9B9BA2A1A6 -98A19FA9A69FA1A2A29BA6A3ADA1AAA5A9A6A9A19CA3A1AE98A3929590959A918E9B9B9AA6 -A9B5AEAEAEB0AAB5AEB2B3B0BAB2BCBDBBB9C0BDC0BBBFBAB3C1B7BDBCBDBDBFBABFBAC1BD -BBC0BBBFB3B4B7BCB4C0B2BFB7B7B5B4BBB0B5BCBFB4BDB5B5B9B0B2AEB2B2BBB5B9AABCB2 -B0B0B3BAB5B9B7C0BFC5C0C2C9C7C4C5C5C5C7C4CBC3C9C5C7C7C5C7C3C4C0C0BDBFAEC3BC -BBBBBCC0BDC4C4C4C3C4BFC5C1C3C7C0C7C8C5C7C7C4CFC5CDCBCACDCBCDCDCFCDD0CAD0CB -D1D1CFCFC9A165535358555451504D4D48504D49464449444C424648454B444D484B6ABA9F -5550515851514C8DA35442454B374D454B4B484948485045484C454D48504B4B493C424945 -42609AABA6B0B0B9BDC7C8CDC7C7C4BFC7BDBFBDC2BFC4BCC0BDC0CBCBD0CDD5D0CBCACDC9 -CACCCDD0C4CAC4C9CFCECAC8C0C1C5BFC0BDC4C0C5C7CAC7CEC8C5C4C5CCCBC9C9CBC5C9CD -CBC5C5CAC4C7C5CACBCFCBD0C7CBC9CBD4D8D9D9DBD5D8D9E0E2E6E3DCE0DF -504849454C494C5050514D4C4D54535353504D4F4F4F5150534C4F4D514C5155514F505358 -514C54454F544D51514D5353535151584F504B50554D4F4F4D4D504C514855504D50454F51 -4D534C4F50514D50464C504B534F5051464C494C4F4C494D4F534D4950514D51514F534D50 -53515551555454555353574F57505B5B59555361575963615C655A6567636567676F6A6F6F -6C726A6F6F6F6D7271796D767C727C777A717A727972796F8577797E7C7C837C888E859285 -978990979CA297A29F9B9A9C979F9597989F929B9F8E9C97A297A9A69C9C9B9B9FA29BA69B -9F959F9CA6A2A9A3A5A3A1A99FA5AAA5ABA59FAD9FADA59FA395A292989795919790A19FA2 -B4ADB7B3ABABAEA5AEADB4ADB3B5B9BDBDBDBFBDB7C1BAB5B5B5BDBDBBC0BDBABFBCC4BDC0 -BBBCB9BABAB4BDB7BDB5BFB4BDB9B5BAB7B5BABFB7BABDBBB3B2B2B4B0B5B0AEB9ABB5AEB9 -ADB4B7B3B5BDB5BFC4BAC8C3C7C9C7C2C9C7C9C9C9C8C5CCC5C5C5C3C5C5BDC0C0BABDBCC0 -BCBCBBC0BDC1BFC3C3BDC5BDC2C1C5C3C7C5CBC3C5C7C5CBC5CBCAC9C9CEC9CDD0CBD2CBD0 -D1D0CFCECDC07E59585B5954574D494B544B4F4F444D404B444549424D444849444B67AD91 -6C6D717172716D85B24F4945444946484944494B4849454848424B48494C444944464B4248 -4986AEB4AEB2ABB3BBC5CDC7CBC1C0C7BFBFBCBABCC0BFC0BCC5C5CBCECFCFD0D1CCCDC9CD -C7CDCDCBC5C2C0C7CFCCC7BDC0C0C4C4BFC0C4C0C7C8C4CFC7C7C2C0C5CDCECBCBCBCBC4CB -C1C5C4C5CAC8C9CCC7C9CEC4CBC5CAD1D8DAD8DAD9D7D7DBDFE5E3E0DEDDDC -4D4C4D484B494D4F4F574B50514B5451515353514F4F5751544F4F54505353505051535750 -54545355514C4D4F555154534D4B50535151514D515055514D5055514F5550504F504D5451 -515349504F4D50504F53514F48484C4F4D504D50514C5046514F50504C504C5351554D534B -59505854515755545B58575B515A585454575A57595C5A61615A61636565616D6F676C6D6F -6C6C6F6A76766F76726C7C7276727676767979797A7A767C7982827C837E838688868D8390 -859591979F9B9F9C9F9CA197A29C9F9CA29A9A9C9F9897A39CA9A3A1A6A197AA9B9CA39CA9 -9BA5A2A3A2A5A3AA9FA3A19AAD9FABADA5A2AD9CB7B2A1A29C9A989B979791918E9F97A2B2 -AEB2ADB0ADB2A9B0A1B0AAB9AAB0BDB9BFBFC1BFC1B9BFB4BFB5BBBAC0BFC0BFADC0BCC2BD -BCB7B5B3BDB4B7BCAEBAB4BCB9B9B9BAB7BDB2B9BFB3C0B2BAB7B7ABB9AAAAADAEB0ADB7AE -B2B2B4B2BAB4BFC2BFC9C3C7C7C8C7C7C5CDC8CAC7C4C5BFC7C4C3C2C8BFC4BCB7BABABCBF -BFBDBFBBC1BFC9C4BFC7BFC2BDC4C0C3C0C9C1C9C7C5CDCBCDC9CCC9D0C9CFC9CCCDCAD0CD -CFD0D2CED3C797655453595850534C4C464C504949414B4644504449454148444546579858 -3C5361596549496A9F4C4444444249454C4B484B4548464549465146484649454449484C40 -6F95B0AEB2A9ADB2B4C5C7CAC5C4BFC4BFC3BCBFBDBDC5BFC9CCD2D0D2CFCDCCD0CDCAD1CD -CBCDCECBC8C5C4C5CDD0C1C4BDC4C4C3C2C2BFC9C9C8C7C5C9C3C3C4C9CBCEC5C4CACDC9C0 -CAC5C8C7CBCACCC5C9C7C8CCC8CDCDD5D9DCD8DBD7D9DBDCE0E0E5E0E0DBD9 -494C4C49514D4F50504F534450515054515354535550545853515353574F4D554D5551514F -4F515151504D50535451575358534F574F535054495350505354534F515755545551514F4F -4B514F4F4B4D50545450534C514D4F504C5050494C4D484F4B514D4F4D494D5353584F5151 -4F5955574F54555B57585A57575557585859585C6159655B6061636F6A636C6C656D676F67 -6F6F67726A6F6F7171767679727E7279717982777E7A86797A7E7E7E887786858586858D88 -918E8E90988EA39B9AA197A99C979FA295A297A398929895A6A5A59C9AA1AA9BA99A9FA9A1 -9FA19CA3A39BAA98A598A3A99AAAAAA3AAA6A2AD9FAAA3A19797979791928D8E97909F9AA2 -A5B0A9B4A9ABAEA3AEA9BAADB2B4BDB3BDBBC0BFB9BDBBBBB9C0BABFBFC2C2BDBDBAC0BBBC -C0BCB3C0B7BAB5B9BDABB9BCBCB7BBB5BFAABABBBABCB5B5B9B9B7BDADBAABAEABB0B3ABB0 -B3B2B3B7ADBFBAC3C3C5C9C7C4C5C7C8CCC8CDC1C7C5C0C2C0C5C4C4C0C3BFC4B9BCBDC0C0 -BDBFC0C3BCC5C2C8C3C5C2C4C2C5C5C1C8C1C9C4C5C7C9C9CBCBC9CBC9CFC4CECBCFD0CDCD -D1D2D1D1CDD1C07E5A58584D53544C4D504B4D454549424246484F484646444546464C5844 -3A5C503B594B2E6A5749443E424C4544464848454B464D4B504D4D5549544B4B49494B4651 -8EA9B0B7ADB2AEB9BCC2C8C0C3C4C0C3C4BDC1B9BFC4C3C0C2D1D2CECCCCC5CECBCBCFCAD0 -CDCBCDCDCDCEC1C8CDCCC3BFC4C1C2C2C0BDC7C3CCC7C5CBC8C7C4C0C4CCC7C8C4CECBCBCB -C8CBC9C7C7C9C8CAC5C9C9C9C7CCD1D4D8D9D9D5DBD8DBDEDEE3E3E0DEDED7 -4C4C4548514C4D5054534C4C5150554F4C5151535853514F5750534D504F505053504F5451 -5554585354545353504F5154505153514C5A4D555450554F534D4F5050545049504C505349 -4D4F544F4F4D5353504F4D5048534D4F49504F4D4D5048484D4F464D4F4F5750574F505551 -4C4D545553544D5057515957555955575A5B555A5B615A5C65615C6C656D6C67766D776A77 -6D7672726D72766F7A6F71777A777979766A7C7772837A857E7C7E7C7A897C9590888E8686 -8D90899090A197A19B9AA39B929B919898989C9B9C91A1A29BA5ABA3A3A298A99FA59FA1A1 -A69CAA9C9FA19FAB9BA9A2A6A5A5A3AEA2A2A5A9A99FA697A1929890918E90928E9A9FA3A2 -B2A9B5AAAEAAA6ADA9B3B2AEB5C7B7C0BAC0BDB9BBBBBBBCBDBBC1BBC3BDC5BCBBC2C1BFBF -BABCBDB2BDB5BBB2BCB9B9B7BDBCBDB9A9C0B5BFBCB9BDBCB3BFB5B5ADABAEA6B3ADB0AEB2 -ADB3BBB3BAB9C4BFC3C5C7C4CBC7CACBC3CDC7C7C4C5C1C3BFC4C5C1C5BDC0C0BFBBBDB7C4 -B9BFC2BDC3BDC5C1C2C1C3BFC9C2C7C7C3CBC4C9C3C7C7C7C9D0CACFCDCBD1CBCFD0D1CDD1 -CFD4D0D1D4CECB9A6057555353515348544844514D464648444B4845484F454F4C494C554B -3A6C3C2C4C4B3C5855464946454B44464F494B4B414C484D48454C4450464C444D4F4C4F7A -AEAAAEB3AEA2B4B2BFC0BFBFBCBABFC3C5C5BBC2C0C4C3C0C7D4D2D0CBC7CDC7D1CECDCCCF -CECDCDCDD0CDCDC9CDC7C4C4C3C3C1BCBBBDBDC8C5C4C1C4C7CAC2C0C4C4C8C7CBC2CACBC7 -CCCBC4C7C9C7CAC4CBC7CAC9CAC9D3D7DBDCD7DBD9D8DEE1E3E5E4E0DEE1DF -4B4C514C4F55515455544F51514D55545450535455574D53535154514F534F53544F535950 -4F535455515854535451574D5455514D574D5051505050575351494F514F49514B50534C50 -494C4C484D53454949484D4F5148504C444C4D4B4C4F53504B4B4F4F53514F504F50505154 -4F50505054535155555859575155575A5A5B5C575B5B5B6561636D636C6C6563656A6F726F -676F796C7C71797A767972767A7A797A727A768579798389828D7E8388778D888D8D888991 -8D9789959A92A5979F9FA1A29C929AA2A99FA1A39CA997A69AA2A2AE9CA19A989FA2A6A2AA -9BAA9BA39C9BA39B989C9F9CA99CABA5ABA3A6A6A69FA5A198A1989F89979A899C9C9CABAE -ABB5A5B29FAEABABAEB0B0B5ADBFBDB3C3BCC0BFC0B5C0B9BDBDBFBFBDC4BCBFBFC3C0C3B0 -BFBBB2B9B9BFBABBB4BAB9BFB3BFBAB7BBB5C1B9BDBDBCB2BBB7B5B0AEB3ABB0AAAEAEB2A9 -B7B0B9B5B2BDC1C4C3C7C0CBC5C9C7C7CAC8C9C7C5C5C9C2C5C0C5C3BDC2BDBDC0BFBFBDB7 -C2BDC2BFBDC3BFC2C4C0BFC7C2C8C1C5C5C7C8C4C7C7C7BFCBC9D0C9CACECBCDCCCFCECDCD -D0CAD1D1D0D3CDC07755545554574C554B4D4B484C444D4646454B484C4544484B4D49602C -3E421F1F2E492E5051494640444942494C454F45494949464B46464D414C48464D464C5598 -B5ADB3A3B0A9A2B0BAC1BFC0B0C0BBC3C5C0C7C0C7C4C4C1C7D3D6D0CECBC9D1CDD1CECDCF -D2CBD0CBCCCDC7CBC7CBC3C5C4C5BCBBBBB9C4C9C7C3C4C0CBC5C8C3C4C9C5CBC2BDC0C7C9 -CDC4CBC7C9C9C2CBC7C8C5C8CACDCFD9D6DAD7D8DAD7DCE3E3E5E3DEDFE5E1 -4B4D4F4B515055515354534F4D5751555355575755554F535055514F5348555153534F4F51 -4F50534F504B555358574F5850515851514D4F534F4F4F4D53504D4F4F4B544C4C4D53534C -4949484F494C4F4D534D5150504D4C4B4D4D4F4F51514F514F4F504F4F53535358514D5353 -4C585353534F54535558585959585C5A5A595B5C595B6360636C5A6A636D6A656C6D6D716C -726D6C796C726F717A7C7A7A6F7C76798279857777837E7E897C8282857E858E8891889789 -9895989598989B9CA3A29CA3959C91A19CA29A9AA2A1A3A6AE9FABA9A69FA3A3A3A3A3A9A3 -AA9FAE9C9BA39C9F9C98A9A59FAD9CB29CA1A1AAA5A5A2A1989CA189988E97919A95ADA6B3 -B2AEB5A5B0ABB0B2B4AEBDA6B2ADB3BDBCC0BDBABDBFB7BFADBFBDBFC0B9BBBFC2BFC2BABF -B4BDB0B3B7BFB9BDBBB4BFB2BBBDBDBDB9B7BFB4BABAB7BBB4B5A9B5B0AEA9B0AEAEB2ABB7 -ABB0B5B5B7BDBCC5C1C0C7C5CBC4C9C5C7C5C9C7C5C2C4C9C0C5BFC3C0BFBFC0BDBDBCBAC0 -BAC3BBC1C2C3C0C4C0C4C3C1C7C0C5C4C8C8C7C2CBC7CACBC7CEC8CECACCCCCDCBD3CDCFD4 -CDD4CFD3D3D3CFCDA5655A54534C584D534B504B4550454C494F4C46494C494D484F4C553A -292C24262C29294F5049454B48454B444C50464644454B454C4F444C4F4C4F48494B548EB0 -B3BDA6ABABABB2B4B3C0BFBDBDADBCBFC3C4C7C5C5C4C2C0BFCFD0D0CAC9CED0CDD0D0D0D2 -CED1CBCBCACDCAC3C7C7C7C5C9BCBFBCBDBFC2C5C7C4C0BDC3CAC7C9C4C9CBC5BDBBBBC4CC -C7CDC7CAC5C7C8C7C7C9C9C9CBCDD6D5D7D7D4D9DBDBDFE2E4E5E0E0E2E7E5 -51464B4C4D5050504F4D515350544F4D5751585957515051574B554F5057504F514D535454 -585054535853505354584D5353504B514D51534F5551544F5553505054534F4B515051534B -4D4C504B4D4D4F544C4B515050544D544B4B4D53504F504C544D58514F4F50555351575051 -504C53545155545A5A575357595C575B55575559605C5863616A636567606F6572716D6C77 -6D7172767A726D7282777C7982727C79777A777E82827A86838D7C888D8D889790908E8D95 -88909090959B92A6989B9A989F90978D9BA69A91A29AA6A69CAE9FA3AAA5A6A598A3A2ABAD -A3A9A6A29A9F9AA598AD9BA3A5A3B0ADAAA9AA9FA5A1AA959B9B97988D8D98959AA29CB2AA -B9ABB3ADADABADB9B3B7AEB5A3B3B7BDB4BBBABDBFB2C0BCBFBCC0C0BFB5BBBDC0C2BCBDB4 -BAB4BBB9BBBABDB5BBBDB2BCB7BDBDBABBBFB2BCB3B4BDB9BAB4B0AEB4B0AEAAB7A3B0B5A6 -B4B3B0B0BDBDC4BDC4C4C5C7C9C7C7C5C7C7C4C7BDC4C4BFC8C0C0C0BFBFBFB0BAB4C1BDBC -C1BDC0BDC1C1C2BFC4C0C5C4C2C5C4C4C0C7C0C8C4C8CBCAC9C9CBCCCDCAD1CBD2CDCFCECF -D1D2D4D0D4D2D6D0C97254594B53554D544D48464C484545444646454C4842494B46464B4B -4649464640404F50484845464142494D494B4948464C424B4D494B4648494F4950486CA9B7 -B9ABBBABB4B3BDBAB9B9BFBDBDBDB5C1C2C9C7C9C4C4C3C1C8CAD1CBCFD1D2D0D2CDCDCECF -D0CCCFC8CACEC9C4CCC4C5C4C0C5BDC2BDBBC4CCC1C4BFC2C5C9CDC8C9C9C8C7C3BFC4BBC4 -CBC8CDC8C9C9C7C3C9C7CBC8CCD2D3D9D4D5D5DCD8DDDCE2E2E1E0DEE5EAE6 -48555451515451534F53515359555454585853555754575A504C5154534F484B514D515354 -54584C5759544F535350545758505049504C51515455535354514D4D5153544F49504B494D -45484D4F4B4D514B49514C4F4F4854514C4F4D4F534D494C4C4B4F5554514D494C55505953 -4F4D4B545353515150515554535C5A575B5A5C5C5A5860656D676C676A6D656A6F6C6C716D -79717772797177797A7E7185717A767A838376888388857E8D8286828D858E8D9189909086 -91829092959BA291A69F97A39897929A9B9F9A9C9CADA2AAA59FA5A69CA2A6A1AA9CAEA1B2 -ABA2A3A2A2A2979FA591AB9AA5A5ADA5ABA2ABA29FA59AA69797958E8D95989C9FA1A3A9B4 -ABB3A6ADAEB2ADB2B7B4BDADB5B4BFB9BDB5C0BDC1BDBCC0B9BDBFBDBFC0B7C3BABDBFBABC -B4BBBDBBB2BDB3B7B3BFBDB7BDBAB5BBB7B4BDB0BFBBBDB9B3B4B4AEB4AEADAEA2B4B4B9BB -B3B7BDB9B9BFBFC5BFC7C3C4C5C5C7C7CAC7C7C1C7C0C4C2C1C0C4BDC0BFB9C0B7BBBCBFBD -BFBDC0BDC0C0BFC4BFC5C2C1C4C8C4C9C8C3C5BBCAC3CAC9C9CACCCAD0D0CBD0C9D1CFD2D0 -D0D2D1D0D2D2CFD5C9AD674D5548504F465049464C495149464B46464C454B444B4545544D -4D57555553535344484949464248484C404F4F4B4C414B494F4D4F544C4D4F4C495183B0B9 -B5ADB0B7B7BCB9C0AEBDB9BCBDBDC0C0C3C9CBC4CABDC7C5C8D1D0CED2D5D5D5CED3CDD0D0 -CCD0CCD2CECECDCCC7CBC4C5C4C1C4C3BCC3C9C8C7C0C4C0C4CBCACAC9C9C7C8C2C8C4C7C9 -CBCDCDC8C9CAC4C7C7CAC5CBCFD6D7D9D6D7D9DBDEDCE0E2E5E1DEE0E6E8E5 -4C48484D4F4F53555451555551575158585557555755585351555A53554F504F514F514F50 -514C4F5353505550585853554D50535850534C504F515153584C50515154504C534D494948 -4B46494D4C494B4C484654494849464C4C4D4C49484D49504C4F5048554F4D54545054534C -4D4D4F5053584D53535058535754595B57535C59585C5B60606D5C6A6A67676D6F72727277 -6F796F7972827A777179797286797A7C7C7A8371837C7E838388838283888D8E8695828390 -8D979792989A92A29298989F978E929B97A19192A69CA99FA1A6A2A5A1979F9A9CAA9FA9A2 -A39BA3A1A39AA19B98A39CA2A1A69CB3A2A9A6A6A69C9C9C9886918D978D9B979FA19FA9A5 -ADB0B4A9B5AAB5AAB5BBB0B5BAB7BBBDBCC0B4C0BDBFBFBABFBCBBC0C0B7C1BCBDBFBDBFBC -B2BBBBBBB4B7BDB2BFB7BDBFBFB2C2B9BCC0AEB9BDBDB4BAABB9ABB0ABADB4A9B3A9B5B3B3 -B0BBB5BFBBC0C4C0C5C0C5C2C9C4C7C5C9C7C1C4BFC4C0C0BFC5C0C0BCB4BFBAC0B5BFBDBA -BCBFB9C1BDBCC0BFC4BFC2BFC2C1C5C0C7C4C1C4C3C7C7CBC8CBCACECBCDCFCBD1CDD0D2D3 -D0D4D0D5D0D2D1D1D3C279575151554C514C4948484C484649494C4C4655484D494453494B -464B46444646454849484B46514451454B534853444B484C50484D4C504948494D61ADB3B7 -ADADABBFB9BCBFB5BFBFC1BFBDBDBDBCC0C5C9C7BCC3BFC8CDD4D1CFD1D4D1D4D2CBD4CDD3 -CDD0CFD3D1D1CFC7CBBFC7C7C5C1C2BFC0BFC7C7BFC3BFC8C4CACAC7C7C8CAC7CAC4C8C4C9 -C7CCC9CBC5C5C7C5C9C5CBCDD0D5D5D7D7D4DBDCDBDDDEE5E0DFDFE7E7E3E0 -4F4C50535158515557545754535354575458514F544C53514F515A50465051504D4F494F51 -4F4C4C4F53534D535054514D5154505351534D4D515154504B4D4C51534C54534B4F494B46 -4C4B4B4C494B54504B4B46484C39444C4D4D494950464C4C504F49514F50514D4B4F4F544B -544C544F50555758515A575A5458596057605B575C5B616060656D6D6A6C716C71726A7972 -6A766F7679727A727A76717C777C8279857E728D7E827C82827C828582858585927A8E8685 -8E8D8E9A91979A9A9A9297929C9091929C979C9F9CA69AA198A69CA69CA19FA3A1A1A59CA5 -A1A39FA19FA19C9F9B9F9CA9A99CA39BA6A1A39CA19B9A9A9B889090839A9192919CA2A9AB -B3B3B5B0AAB5A9B5B4B3B3B3B5BDB9B9BFBBC0BABDB9BDBFBFB9C0BDC0BFBBC2B9B9BFB4BA -BAB5BCBABDB9B2BDB2B7BABDB7BBB7BDB4BABABAB9B3B5B2B2A6ABA2B2ABABB0AAADAEB2AE -BBADBDB4BFC0BFC5C2C3C4C5C7C9C0C9C4C5C5C1C0C1C2C3C2C0C7BABDB5BBBBB5BBBDBBC0 -BDBBC4BAC0BDBAC0C0BFC0C0C0C5C1C5C0C7C4C4CAC8C9CBC9C9CDC7D1CBCFCDCED0CFD1D1 -D3CFD5D2D5D4D5D5D1D19F6557545053515450534F48464C41484D46534B4D4C44504B4948 -4F46464B4D504C464648484B504D464F504B50444D484C4F494D464948464F494F9CB3B4B5 -ABAAB4ADBCB4B7BBBAC2C0C1C0C0BBC4BCC7C8C5C7C1C5CDD0D5D1CFD6D2D4CDCFCFCDD2D1 -D1CED0CFD2CFD1CDC3C2C7C7C4C1BFC8BFC4BFBFBFC2C9C9C9C7CBC7CBC4CBC9C9CAC5C7C5 -CBCBCCC9CBC5C8CBC5CAC8CDD1D7D9D9D1D9D9D7DEE0E0E0DCDCE1E8E7E0DC -48504F4F53515350545455514D5158545758505A5153544F5350544B4D4C4D46574C545153 -59544F514D5554505555574D4B51514C515050534D5A50545454504C484D494F494F514D4F -4C4B4849484D4F4D4F4D4B4D4D4B534C48514C4D4D514F504B5053514F514D515850555451 -4F554C5154574D5555545B595A5957555854595359656060606A71636C7163726D716F6F72 -727777767676767C6F7972777A7E7A8277797E72797C797C8279867E86829090868E868E88 -8E89988D9C979A97929B959B97989198919C9A9C9BA29AA6A19CA3959F98A59BA1AAA1A3A5 -A19CA290A598A39F9C9CA2A1A39CA3A39AAA9CA6A39B9B9F89918D88978E9A929F9CAAAAAA -A2B2A1AAB0AAB2AAB4B4B3AEBAB0BABABDB7BBBFB7BDBABDB9C3BDC1BDC1C0C0C0BFBDB9BB -B0BCB4BCBDB5B9B7B7B7B9B9BAB3BDB3BCB4B7B4B9B7B7B4ABB3A6B9AAABA6A6A5B2AAB4B2 -ADBDB3BDB7C2C0C3C1C7C4C7C4C2C8C3C8C3C1C4C5BCC1C4C4C5BFC0BAC0B7BDBCBBBABBBB -BBC0B5C2B5BFBDBFC0C2C1C5C0C0C7C0C7C4C5C4C5C9CAC8CBCACBCAC9D1CDD0D0D1CFD0D0 -D0D4D1D6D0D5D3D4D4D5C576614F5753514C4D504F4B4C424F50404B424F4F465046454B46 -4945464B484641444542484F4B4649484D4B4B514B464C484B45494C4642484C7AA6B3B3AB -ABB0A6B3A3B4B0BDBFC0BFC2BFC0BFBCC5C2C7C5C2C3C7CDCFD4CED4CFD7D2D1D0D0CED3D1 -D0CECDD2CBD1D2CCC3C5C9CBC5BFC3BFC5BCC0C0C0C9CACCCCC7C5C9C7CCC9CACAC9CBCBCB -CCCBCBCBC4C9C7CAC7C4C9CED1DAD7D4D1D5DAD8DCDFDEE0E0DFE5EAE7E2D9 -504B535351545557555453535B5451585759554F55574F54504D544F554F514B4C54505955 -53574C514F535551505553555957544F5151504D544F54504C4F5350554F4D504C4D4C4D4C -4F4C4F4D4C484C4C494C4D4F4C514B4F4B504B4B50514C464C4D4F4F514C51515050505053 -4B50534F57535157505854575A53595B5759595B585B5C60636C656C6A676F67716D6A7779 -777E717C797C7C77827976727A7782767E79827C7E857C83798D7C8D7C888D899088888D8D -828E8692889C9B92899595989A929C899A9B9FA5A69CAAA9A5A19BA29BA69BA2A29FA1A59F -AA989FA19AA29C9B9F9B97A69FAD9C9CA297A3AAAAA59B959289908D8D8E919B9B9FA1ADA6 -ADA2B3A5B4B2AEAEB7AAA9B3AEBBAEBCBCBDBCBCBABABABDBABAC0B5BFBFC1BDC1B9BDBCB7 -BFB4BAB7B7AEB4B2BCB7BABDB5BCB3B9B5BDB7B7B4B5B0B2A69CA5A3B5AEA6A6AEA6B3AAB3 -B4BABDB9BBBFC0C3C3C1C9C1C4C0BFC7C4C2C4C4C0C2BCC5BFC3BFBDC0B5B5B5BDB4BFBBBD -BBBDC0BCBFBFBDBCC4BDC5C0C4C2C2C2BFC7C5C4C3C9C5CCC9CBCBCAD0CCCDCDCFCED1D0D4 -CED1D4D4D5D1D3D3D4D0D5A954534D4D4F4B4F504B4B4449494449444D4D404C4648484445 -4646453E4646414844494C484C444F4C464D4B4D484B4F554948454944464F5B9CADAEABB3 -A5ABA6A9B4B0B5B9BCB5C2B9C1C2C0BFC3C2C7C7C0C2C3CDCBD0D1CACDCDCDCCCCCDD1D1D5 -CDCFD1CDD6CCCFC9C7C7C5C2C5BFC0C2BFC3C3C7C5C8C9CDC9CDC5BFC5C7CCCACACDCBC7C7 -C9CACDC7CBC4C9C4C5C9CCD0D9D9D9D5D0D8D8DBDEE0DEDFDEE2E5EAE7DFDB -484F4F55535151554D5553545555574D57545457575754544D4C515353544C4B4D4F515350 -5951535455515455545B585754575753575550574F4B534D534F49514D5048534C4D494649 -4D49494F48534C494D4D494C4C4248494D4F4F4B4B4D4D494C4C4F4B4C504C5151504F4D50 -554C545355575059555457555057515A5558595B5C5A6061636771676D72717A7A7172797A -796D7A767A777A7E7E8282777E83727E82857C89838E7E8382888E83888888858E83978290 -8D8D959197979A9791929886A592989A8E9CA197A1ABA1B29FA39C9A9F95A39A989BA39FA1 -98A2A19A9B9B9B9B979C9C979F98A59B9FA6A3AAAAA5A2989198888989908E9B97A2A5A3AD -A5AEAAAAAEB7ABB9B0B7B3AEBCB0BCBBBFB9BBB7C0B5BFBFBAC0BCBFC0C1C0C3B7BDB4BDBB -BABCB3BABAB4B5BDB7BFB3BDBAB9B9B7B7BCB9B3BAAEB7A2B5ADA1B0ADABB0ADAAB9A6B5B7 -BDBBBDBBBDC0C0C2C0C4BFC7C3C4C4C4C2C7C3BFC1BBC4BCC2BFBFBDBCB3B5B5B5BFAEBDB7 -BFBAC1BDBFBDBFC1C1C3BDC5C5C5C3C4C3C9C3C4C7C2CDC7CDCAC9CBCDD0CFCDCED0CDD4CF -D3D1D2D4D5D4D5D4D3D6D1C76F54544D504C504C424B48494B4B4849464C49445148464946 -4C4848484D4546464645454D454F494B4F49504C4C494B4F4B4B4D4C50494F7AB0BCADB7A6 -ADA3A6B0B9BDB7BFBFC2BDC1BDBDC1BDC4C4C4C7C4C0CCC7CDCDCDC9C3CDCECDCDCDCDD0D0 -D0C9CAD3D0CFCFC9C5C4BDC5C4C4BFC0C4C0C7CBCAC9CDC7CBC3C7BFBDC8CBCCCECDC5CBC5 -CDC7CAC7C7C9C7C9C7CBCCD4D5D7D5D4D5D7D9DBDCD9DADBE0E3E7E9E6DADA -4C53504D5451555A5B575755545A555454585755505051515050534D5150534C5151555055 -5851545057555551575157595353575851544F534B514C554C4F504D504D4F4D4B4B4B4D53 -4D4F4D4C504B4F504D48494F4F44484C4C4B4C4F4D4F4C534B464D51535153504B51504F51 -4F535050544F545357585557585358555B5759585B606167636A6A726A71717A717A717677 -777C777C7A7979776D857277837A7A7E827E7E7C887E8D8385887E858283908E89907E9286 -918E899097959F91909786988D9B9B8E9AA290A3A3A2A5A2A99FA29B9898989AA2A3A2A29C -AA9FA59A9B92A1989A9F9BA192A29BA1A2A59FAB9C9C9B8E9090898397909F91A29BA1A1A3 -AEABA9AEB3A5B7A6BCB2B9B2ADB7B5BCBDBCB9BFB5C0B5BFBDBABCBDBBBDC1BDB9B3BFB5B3 -B7B7B5BBB4BDB9B5C1B9BFB9B5B7BDB0B4B0BCB0BBBFADB9AEAAA9A5A6B0A6ABABB0B2B0BA -B4BBB9BFB9C1C3C4C5C0C4C1C3C1C0C1C8BFC7BFBFC0BFBDBCC0BCBABAB7AEB5B7B3BFB2BF -BCBFBFC0BAC3BDC1C2BFC2BAC4C1C4C7CAC5C9C0C5C8C5CCC8CACACCCAD0C7D1D0CED2D0D3 -CED1D3D2D0D7D4D5D0D0D5D0A2594D50504F4F4B50464C4C484F494D454B4C50504F464949 -4545494C414C4B46424650485349544B4D4D4B514D4C4B4C494D494C44445AA9B3B3BBA9A9 -A3A6B3BAB7BCB3BCBDBFC3B9BFC0C1C2C1C0C4C2C1C4C7CBC9D1CFCCC4C9CBD0D1CFD0CCD4 -CDD1CDCED0D2C8CAC0C3C2BFC5BCC4C0C0C0C5C5C8C8C7CAC3C8C4BFBCC9CCCCCCCBCEC7CD -C8CAC9C8C4C9C7CAC9CBD4D3D7D7D6D4D9D9DCDADDD9D8DCE0E6E7E8E2DAD7 -5151535755535354585C585951554D545459514D554C50515851505753515150514F4F5450 -51545050545554575750535C55535550555353584C4F554F514D4D534D514D4D5044484D45 -4C484F4C4D504F494F484850464B4B454845504F4C504F46504D4F54534D515051574C5050 -5751545050515751575854575959575A5559585C586561656D6771766A77776A826F7E7A79 -77777A7A7982797279717C777E85837C837E797C7A867C8D8388868388887E8E898385858D -89888992889795959095978E9C959195979A9B98A6A1A5A69F9C929C979F919897A2A39CA9 -9FA29FA19AA192A59C979CA19F9C9FA6A29CAB9AA59A97978E8D89868D92909B95AD9BA1AB -A6A9B3ADB5B3A9BAAAB4B2B4B5BBBDC0B5BDBDB7C0B9C3BDBBBDC1BAC0BABFBFBABBB9BCAE -BCB3BBB5BABABFB7BABABAB7B2BAB0B7ABB7B5BABCB2B3ADB0A6ADA3B0A1AEA6ABB0ADB0B7 -BABBBFBDC4BCC4C4C4C4C4BFC5C0BFC7C1C5C0C2C0C0C2C0C1BFBFBBBDADBAB3BBBDBCBDBF -B9BFC0BFC2BFC1BBC3C2C2C3C7C3C4C9C1C9C3C9C8C7C9C8C7C9CBC9CDC8D1CDCFCED1D0D0 -D4D4D5D2D5D1D7D5D5D5D4D6C77951504C4D49514F4F46504F454F485049484B4C46494444 -46454B4151444B464257444F49484F4F494B4C484B4B4C444C444548464C92B4BBB7ADB0AB -A6AAB3B5B5AEB9B3BFBABBBFC0C0C0BDC3C4BFC2BDC2C9C4CBCECCC7C7C4CBCBD1CFCDD1CF -D1CED0CBD1CDCAC2C3C2BDC5C0C4BFC4C1C4C0C9C3C5C8C5C7C5C7BABFC4D0C9CFC9CACDC9 -C8CBCCC9C7C5CBC4C9CDD2D5D7D6D0D6DADCD7DCDADBDBE0E7EAEAE6E1DBDA -515554555159515759586057575554555955585551574F544F5150515155494F5349584F50 -4B4C515450545358554F51515555545755504D51574F504D5153544F494D484F4D4B494B4D -4B4C4F4F4D4F4D4C4C504D494945514C4C4C4C4C50514F4B4F4D4F504D574C514F544F4D54 -4C4C4C4C51535057515557585A595958555A5457605A6F65676C676C767A77797782777E76 -777A7A8283767E7976837977837A8288798D7C867E7C8682908377868885887C8985858989 -8D83978E9C889B989B9B97979197989A95A598A298A298A1A6A29C9B9B959B97A5A1A1A5A5 -9AA19B98A39C9F95A5A5A1A19C95A99BA19FA1AD9AA29A90898D8591919890909A9FAAA3AA -A6B2A1B5B2B2B4B0B3AAB3B4B5B7C0B7C0B9BDC0BBC0C1BFBDBCB9C0BABFB7C1B7B5BBB5B7 -B5BAB0BCB4BAB7BAB3BAB5B5BAB0BFB2BCADB3B2B0ADADAEB5AEA6B2A5AAAAAEAEB4B4B4B2 -C0BBBFC0BAC3C1C1C5C2C4C5C4C4C4C4C5BFC4BFC0C0BFC1C2BCBCB9B3BDB0BBB7BCBDBDBF -BDBBBFC1BDC2B5C2C0C5C2C1C4C8C1C5C7C1C8C4C7C7CBC7C9C5CCC9C9D0CCD3CBD1D1D1D0 -D7D1D5D5D3D5D3D5D4D6D4D4D0AE574B554558494C48484646494554464B4D48484B464549 -46444946444845484C424D46424946464B464D4B484C454C48444B454663A3C0B4B2B2ABA3 -ABA9B0ABA9B3AABCA9B2B9BDC0C0C2C7C9BFC0C0C4C0CAC5CACDCCC7C7CBC4CDCCCFD0CED0 -D2CDCFD0C7CFC5C8C1BCBFC5C4C3C3C2C2BFC9C3C4C5C7C7C0C0C1BDBFC5C9D0CDCFCCCDCD -CACACCC7C5CBC4CCC5D0D4D4D5D4D1D4D9D9D9D6DEDADDE3E8E7E7E4DBD5D9 -535550535153595355575155555553555457545451585351555350514C4B4D4F4F4D535451 -514D4B545857554F585451585458545754554F5751514D534F49504C5450484D4C484F494D -454C51504F484F4B4F4D464246494C4C4D5046504D53504D4D4F4D51534D5050505150504D -4B515050515455515050545557595758605759585B655C656C636C7665766D7679797E777A -77797E8277837A77767A797C827C867A857E90838D867E837C83838D8392888886887A8E89 -92929092959789989598989892A297959C9598919B9C9C9A989A98929AA18EA2989C9A9C98 -A6989B919B9F9A9F97A29CA19F9F9AA59798A99F9C9A91908E858D7E988D989C9AA6A9A5A9 -ADAEAEA6B5ADB5B0B3B9B4B9B4BBB5BDB3B9B4BDBCC1BBBFBCBDBCBBC3B3BDB7B5BABCB4B9 -B5AAB5B0BAB2BAB7B9B0BBB2BCBDBDBAB0B9B3B3BAB2A5B4A3ABA5A5B0A1B0AAB3B5B7ADB7 -B4BDBCBCC0BFC7C3C5C0C5C2C5C0C7C7C2C7C0C0C0BFBDC2BDC3B7BBBCB5BBBABBB9BBB3C0 -B9BDB9BDBAB7BFBDC1C0C0BAC5BFC8C3C5C8C5CAC5C8C8CBC7CDCACCCBCDCCCFCFD1D1CFD5 -D0D5D3D4D4D2D8D5D5D5D6D3D6C0825048574C4B49424B46494B45444549464D454845494B -4C4B4241454242494B49464B49414949484850464B484D49484C44514F89BBBDB9ADAEA9B0 -A9B0ABADB2A9B0A9ADB0B9B9C2C0C9C7C8C7B9C0BFC0C4C8CBD1C9C5CBC7C9CACDCDD0CDD1 -D0D0D0D0D0D0CFC3C5C2C3BDBFBDC7C4C0C2C4C8C5C7C7C3BFC1BDBFBDC0C7CBCFCBCCCBC9 -C8CBC9C9C2C4CBC5CCCDD4D4D5D1D6D4D8DBD9DADBD9DDE6E6E8E9E3D9D7D9 -595557505555515555555A595559575758575453535054584F514D4D4D5350535450515154 -555351545557575757515754545451555553574F4C5155514B504F514D4C4D4F4B4C4D4C4C -4F4B555748504B4C4D504B49494B484D494F534953504C51504B544C545051514954495051 -4F534F515451505050535359575558595B60595C6563616D6A6D6F6C76717C727E7A797C7A -827E837985767E797671797788837E8882887A868989858377837C83857C88838983828690 -898E90919290929792989A8E9F8D9A9A959B909F9C9F9B9C9FA18EA29A98A29A9FA2989C9C -9BAD9297979F9B9B9A98979FA598A2959C92A6A59F9C979290978592869A91959BA3A2ABA3 -A9AAA9B3AAB3B2BAABB5ADB5B3B7BDBABDBABABCBFB9C0BBC0BBBDBDB9BFBCBBBBB9B2BBA5 -B7ABABBDB7B3B9B5B2B9B3BFB9BDB5BBBDB2AEAEAAB0B2A5B5A3AAA6ADAAB0A5AEADB4BAAB -BCB2BFBDBFC0C3C3C5C3BFC4BDC7C4C4C0C2BFBFBFBDC3BFC3BCBBB0BAB7BABBBAB5BCBBB9 -C1B7BFBDB5BFC3C0C0BFBDC2BDC8C4C5C7CAC5C9C4C9CBCBCFC9CFC9CBCFCECDD0CFD2D0CD -D5D0D4D3D4D5D6D5D5D4D2D6D0D298554F464D46414B464D494446464C484545494645424C -424549404C484C484849494B4B4D484B4B4D4B4D414C4C484C4449467CB2BFBABAB2ABB0AA -AEA9B5ABA6A9AEAEB3A9B2C1BFC4BFC7C7C5C2C0C2C7C5C9CECBD2C5CBCBC8CDCCCBD1D1D0 -D4CBD2D1D1D1CBC9C4C4C2C0C2C7BDC8C0BFC3C5C5C5C5C2C4BDC0B9C1C0CAD0CCCBCBCCCB -CBC5CBC5C5C4C7C7CDCFD1D6D4D5D5D9D9D7DADAD7DAE0E7E7E7E6DFD9D9D6 -5351535A57515457575157515855534D53534C5154555155504F48514F4C45515051514D4D -5055535351575957575C545559545950545751544F504F4F4954504D494D544951534D514C -4B504B4C4C4D4D494C494C4B4B4C504F514D4F514B4D51544F504F50505050504F51545154 -54554F5750574C545357545557575A595B59595A60606A616C6C6C716A797679727C7C8377 -7E7A777E777E827A798272837A837C7E867C868982868679857283867E88857A88867A8591 -9891978E959185959C95959B899B979A9A9A989B9CA39BA39F95A3989F9F9C959B9BA3A197 -9F9FA2929F9BA99C9F989B9C989F97A29FA1A3A99FA195958E868E89989C959BA19AB4A3AE -A3A3ABABB2ADB4B4B5ADB4AABAB7B7BFBCBDBFBFBFC1BCC5BDC0BDBFBDBBBFBDB5B5BDB9BF -B0B2B2B0B2B7B4BDB4B7B7B5BFB2BAB9BAB0B2ABB7B0AEB0A5AAA5ADABAEABAEA6AEB0B3B9 -AEBAB7BDBDC0BFC4C0C0C5BFC7C3C8C0C4C0C4B9C1C0C2C3BDC1B7B2B4B4B5BDB3B7BBBAC1 -BABFB9BBBDBDBAC4B9C0BDBCC4C0C4C3C4C2C9C4C7C4CCC9C9CDCACACCCDCDD1CCD2D1D1D7 -D2D4D2D4D5D5D1D8D4D7D7D5D7D1C571514846464B45444C494842494B444644494F454C46 -3E45444C404D4649494848464845444B4D48454249414450424B4257AEBDBDBAB2B0A9AAA9 -A6B5A9B2AAA9B5BDB4BDBABFC5BFC5C1C5C4C5C0C2C3C8C9C9CDCACBC9C9CBCACBCDCFCED0 -CBD2D1D3D0D0C9C9C5C5C4C5C5C0C7C3C0BDBFC5C9C4C5C5C4C7BDC3BFC5CDCFCDCBC9CBCB -C8CDC7CAC4C5C5C7CBCFD1D5D4CED7D9D8D9D7D6DBD9E0E7E9E7E2DCDAD9D5 -58595A53594F5457555753585960515155545355504F5054554D505150514F4F51514F534C -515153515357535957575A554C5A5358575757504C5051534C4B4F4B51484C534C4D514850 -534F4F464F4D4C46454B4C4B4B4F4C504C504D4D49534D514C50504F514F51515150534F57 -505055555454544F555354545459575A555B605760675A6A606C71727672797E7C85868382 -717E7C7E837C7A867A777E7C837A887E82838685857C868577857C8686837E82828D828691 -929A8691919192918D92929A9A95A1989F989F9A9A9B9B9B9CA398979CA39AA59BA59AA99C -9AA3959F9B9C9BA195A2909F9A9C9C98A1A3A297A1959C9097928E90909BA39B95A5A1B4A5 -ABABADADABADB4ABB3B0AAB7B0BABCBCBBC1BDC8BFBDBFBFBFBCBFBFBFBABBB3BDB3B9BBB2 -B4B3B5B9B4B2BDB5BAB9B3B9B7BBABB7B4B2AEB3A9B3ADAEAAABAEA3A5AAB4A6B9AAB4B9B4 -B7BBB5BFC0BDC8BDC4C3BFC4C0C4C3C0BCC1C0C0B5C4BDB9BDBAB9B2AEAEBAB5BDB5C0B7BB -BBB9BFBAB9BFC0B5C4BDBFC2C0C4C4C3C4C4C7CCC7CDC5CACACBCDCCCDD0D0CFD2CCD5D1D1 -D1D5D5D5D5D2D2D4D9D4D9D5D4D6D0AB4D483C443E4241413E3B3C3E3C3C4040453E45423A -423A41404442424141484241444141464444414B41424041493C4C86BFBDBDB9B3ADAEABB0 -ADA9B2B2AAB4B9B9C2B0BDBFC1C1BDBFBFC0C2C0BBC7C4CBCAC9CDC9CBCBCBCBD1CDD0CDCE -D0CFD1CDCDCACFC9C4C3C0C4C2C2C3C3BDB3BCC8C3CBC4C5C5BDC0C2C4C8CDCECFC7CDC7CA -CDC5C7C5C7C5C5C9D0D0D7D5D3D5D9DBD7D6D5D9D8DCE5E6E9E6E0D9DAD7D7 -57585A5553555459515554555554575450575555584C54554F4D4F54504D4C4C4C51515453 -54574F544F535850545C5555585454575854514F484B504C4B514F4C4D4F4D4F50554F4F46 -50494C534C4F4B4D504D4C494C4B4F4F4B4D4D48504F4F5451514F555050534F4F534F544F -4F515358555455575858555855585C585A5B5761635C6D6A6F6D716F6D777A7A827A798272 -83797C7A77797E7A837E7E7C7C828286858D88857A858279797E7C82887E857A8983888891 -989295918E919A899C9197928E92979F9797989F91A195A2A99195A19C9F9F98A697A29B9B -A2A1A19C9CA59A95A1919F97989F9A95A297A6A19FA292A38D958E908EA3929B989BAD9FA9 -ABABAAA9A6B4ADB4B2B3B2ABBCBBB9B4BCB5C1BCC1BFBDBDBAC2BABDBDB7B3BFB4BBB5BCB4 -B5B3B3B9ADBFB3BAB3B7B9B5B5BCB7B7B4AAB5A5AEAAAEA9A9A9A6A6A9B0A6B0A5B5B0BDBD -BDB7C1BFC0C2C0C3BCC4BDC0C3C2C0C0BDC1C1BDC1BABFBFBDBBBFB0B4B5B7BBB0B9B5BAB5 -B5B9BCB7BFBCBDC3BBC2C0C0C0C1C1C5C0C5C4C1CCC7C9CACCCFCFCCCDD0CDD0CED2CED2D1 -D3D5D7D3D6D4D3D9D4D9D4D7D7D7D5CF6A413C3B3B373A3939343439393234373237323739 -3432323A37393A393A3B373B34393A3734393B3C3E393B3C3A3B57ABC0BBB7BFAEB0A3ADA9 -ABB0B3B4B5B2B7C1BBBFBBC4C3C4BDBFBFC0C4BBC1C3CBC5C7C9C7C7CDC9CBCDCDD0CCD0CE -D0CECED0D1CECCCDC3CBBFC3C4C3C5C3BCBDBFC0C7C1CBC5C7C1BDC5C5C4CDCDC5CBC4C9CB -C9C9C7C4C5C5C7CCCCD5D3D5D1D3D7D5D6D6D9DADADDE5E7E7E5DEDAD9D7D5 -555758595857585457555957545955585754515555595154554D5151505050505353575453 -5351584F505457585354554D57585751515550544D5551554F50554F4D51515054534F4951 -484C50504D5046494F46534C4C4C484C4D4B4D4F4C5048514C50514D48494D57484D545051 -4F5150535158575758585A575955585A5B5B605A616560636D7671726F77718279857C767A -797C82797A8579868288857E8379827E8382897A837E88777C7C8682868E7E867E90858E92 -9B92959095988DA29597959791928E979B9C9897A197A3A3A39A9F92A6A19AA39A9A9AA69B -9F9F9A9FA298A99C9BA191A19B9A959898AB9AA395979F8D978991889295A597A9A6ADAAA9 -ADAAABABB3A9B9AEB5B4AEB7BBB7B9B9BCC0BCC4BDC3BCBFBDC0BABCBCBCBDB4BBBAB7B0BA -ADBFB3B3B2B5B7ADB9B7B9B4B9B0B7AAB3B5ABABABB0A3A6A9A6A6B4A1ADAAADB3ADB5BCBC -BBC0BAC3BFC1C3BFBFBFC4C1C4C0C3BCC3BFBFC2B2BDBABAB7B4AEB5B0BAB4B9B5B0B9B7BC -B5BDB7C0BCBBBDBBC0C1C2BFC1BFC7C1C5C4C4C7C4C9C9CACDCECCD1C9D1C9CED0D0D2D1CF -D2D4D2D5D4D8D5D6D7D6D7D7D9D9D9D0BB4644423C3E3B3E3B3A393E3A3C3A3A3B3A3C3B3A -393A3B403B3E3E3C413B3C3E3B393A393C3A393A3A393A37343C83BDB9BDB2BAB0A2ABA3AA -ABB5B3BDB3BAB7B7C0BAC0BDC1BDBFB7BDB9BDC1C1C9C9C9C7CCC8CDC7CBCBCCD0C8D0CBCB -CFCED0D1CBD0CBC8C8C1C4C0C0C3C0BAC0BDC0C4C1C7C5CBC5C4C0C5C7CAC7C9CBC8CDC7CB -C9C5C4C3C0C9C9CCD1D0D5CFD3D5D7D6D7D4D7D5DBE3E4E5E4E0DCD7D7D5D3 -585959535A5554554D5553595857555759585058574D4F534F4C50534F4C514F5553505551 -4B55545153544D5B50555758545855505554515057534F4D4F4F504F544D495049504D4C4C -4D4F50504D504F4F4B504B4B4C444B4C4D4F574F4D4B504D504D50534D4C534B4D5551504F -555154555855545159555459575758585C595863616C606A6A766C6D7177867C85797E867E -7A7A827E7A76857E85728582837E897E83857C88827E857976827988828D867A907E899190 -979A869C8E9895959B9098918E9191959F919A9F90A69B989CA19A9F9B9F9A9C9C9C9C9C9B -919A98A195AA9FA19C92A6A29C9B9797A39AA9979B9B97979B8E989A989B97ABA3ADA9ADA6 -AAABAEB0ABB5B3B4B2B5ABBDAEBDB9B9BDB5C0C0BFC2C0BDC0B9BDB4BBBDB9BCB9BBBABDB4 -BDB9BBB4B4BAB2B5BAB7B9B9B5BAAEB7B0AAB3B0B0AEA5A1A29CA6A2AB9BAEB2A6B0B4B7BA -BDBDC2BBC4BDC2C0C1BFC2C1BCC0BCC4BFC4C0C0BDBDB9BCBAB5BDB2BDB2BCBDB7BCBBBABA -BDB4C0BBBDBCC0C0BFBDC0C0C4C5C4C7BFC9C4C4C7C9C9CCCBCDCFC9D1CCD0CFD0D0D2CFD1 -D2D2D8D2D9D2D5D5D4D5D7D7D7DAD6D7CD7745454441414441403E3A4040403C3E3E3E3E3E -403E4140403B41413E403E403C403B403C423C3E3C3E3C3B404BB0B5C0BBBDBFB0B3A6A1AB -B4BABDB2BDAEBDBDBDC0BDBCBDC0BFBFB9BDB9BDC4C7CCCAC7CBCDC5CECACCCBCDCECCCCCB -CDCCCDCCD0CBCCC4C1C1C0BDC2BFBDC2BBC0BFC7C7C7C8C4C7C7C4C5CBCBCDC5C7CAC5CAC8 -C9C3C7C0C7C2CDD0D0D2CECDCFD4D5D9D4D6D4D5DEE4E2E2E1E0D7D9D8D3D3 -5A59575A4F555053555A5558585559555A595458555553534F50515953534C535450545451 -53544F54535553555557585759545354544D4F535157514F514950514C4F4C4D4B4D515051 -504B51504B534D514D464C4C49444B49504D4D464B4C51535050515050534D4C50504C5450 -54535157545A535A57595557575B555A605C606165656767716C7276727A7982828282837C -837A857A7E7E7A867A7E7C7C82887A8D8385897A7C8582827C77837E8D8389898995898891 -90959A8D9B989297959590919595919B98A18D9AA39CA29F95A29C97A3929F959B9B9C9C9C -98989795A5929A98A2A3A3989B989B9F9B9A9C9F9B988D98869291909B979FA1A5A2ADABB3 -A9B5ABAAB7AEB5B3B3ADB0B4BCB4BFBCC0BCBDC0BFBFC0BFBAC0B4BFB9BBB9BAB5BDB7B9B9 -ABB7B4BDB9B3B2B7B5B9AEB9BBB0B7AEB3B2AEA9B2A6ADA1A9A6A3AEAAAEAAAAADB2B5BFBB -C0C0BDC2C0BFBFC5C0C7BFC4C3BFC5C1C2C1C0BDBFBAC0BBB3BAAEBAB4BCBBBCB9BCB3BDB5 -BBBAB3BDB9BDBDBFBCC0BFC4BFC3C7C1C5C1C7C5C8C7CECBCDCFCBD1CBD1CFD0D1D3D0D1CF -D3D4D5D7D5D5D7D7D3D9D5D9D5D7D8D6D7C492857E767E76717160655C655B5C595C55574C -505450534F4F4C4C494D4C494649494648424442413E423E448DBBBAB2BAB0BBAEAEA6ADB0 -BDBAB3BAAEB4BABAB9BFB9BCBBBFC1BDC4B9BFBDC0C8CEC3C5C7CDCBC5CCC9CBCED0CDCFCC -CED0D0D0CBCFC7C4C4BFBBC0BFBFBAB9BFB5C1C1C7C7C4C4C5C5C9CAC5CBC7C9C5CAC5C9C9 -C8C4BFC5C0C5CCD1D5D3D0D1CDD6D5D5D6D4D8D7E0E2DEE2E2DCD9D8D7D6D1 -end -restore -%%Trailer diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob11a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob11a.gif deleted file mode 100755 index 548672292..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob11a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob12.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob12.eps deleted file mode 100755 index d881a484c..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob12.eps +++ /dev/null @@ -1,486 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Tue Apr 12 13:52:54 1994 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 371 245 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def /dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def /crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /arwlen 6 def /arw 4 def /arow { - gsave newpath moveto lineto unpagectm concat { - - } { - - } { - - } { - - } pathforall newpath 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath crlinalph setalpha strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - crstrpat findfont exch strwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /arwpath { - sc7mt currentmatrix pop gsave newpath moveto lineto unpagectm dup concat { - - } { - - } { - - } { - - } pathforall grestore unpagectm 5 -1 roll concat 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath sc7mt setmatrix -} bind def end -TopDrawDict begin /estroke { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /efill { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath unpagectm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /apstroke { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc pie chord or { - closepath - } if crlinalph setalpha pie not chord not and { - crfrtarw { - 2 copy crlinw exch gsave newpath angle1 1 add cos radius mul radius add angle1 1 add sin radius mul radius add moveto angle1 cos radius mul radius add angle1 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if crendarw { - 2 copy crlinw exch gsave newpath angle2 1 sub cos radius mul radius add angle2 1 sub sin radius mul radius add moveto angle2 cos radius mul radius add angle2 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if - } if crlincp setlinecap crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /apfill { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup 5 -2 roll arc pie chord or { - closepath - } if 1 xscale div 1 yscale div scale crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /mkepath { - dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def /closed exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc closed pie or chord or { - closepath - } if unpagectm -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 372 246 rectclip --137.976654 -198.930176 translate -137.976654 198.930176 370.893036 244.737701 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 0.5 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [4 4] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -/txtdraw true def -/txlndraw true def -(q ) [9.378006 0 0 0] 142 621.799988 /Symbol [ 18 1 mul 0 0 18 0 0 ] [1.5 0 0 1.5 125.540009 -612.299988] dotx -/crlinw 1.9 def -/usedash true def -/strdsh [6 6] def /dshpatoff 0 def -/esave save def 1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 35.0364 144.963593 108 649 1 -1.002315 216 false false 1 0 0 1 0 0 sc5mt astore apstroke esave restore -/usedash false def -0.5 0.866025 -0.866025 0.5 555.888367 9.173225 sc4mt astore -0.5 0.866025 0.866025 0.5 -30.28833 9.173225 sc5mt astore 216 0 162 486 -0.5 0.866025 0.866025 0.5 92.711731 -139.357666 sc6mt astore ssl -/crfilalph 0.919996 def -/crfilred 0.666662 def /crfilgrn 0.666662 def /crfilblu 0.666662 def /filinclr true def -1 0 0 1 0 0 sc6mt astore 9 1 1 270 630 1 0 0 1 153 -394 sc5mt astore efill -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 9 1 1 270 630 1 0 0 1 153 -394 sc5mt astore estroke -/usedash true def -/strdsh [3 3] def /dshpatoff 0 def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 9 1 -1 108 594 1 0 0 1 382 -278 sc5mt astore estroke -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 9 1 1 90 540 1 0 0 1 49 -241 sc5mt astore estroke -/usedash false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 54 0 252 504 1 0 0 0.555556 43 153 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -18 -18 270 522 1 0 0 0.555556 43 153 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -18 -18 288 522 1 0 0 0.555556 43 153 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -18 -18 306 522 1 0 0 0.555556 43 153 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -18 -18 324 522 1 0 0 0.555556 43 153 sc6mt astore ssl -/usedash true def -/strdsh [4 4] def /dshpatoff 0 def --0.819152 0.573577 -0.573577 -0.819152 647.779663 491.19989 sc4mt astore -0.819152 0.573577 -0.573577 -0.819152 647.779663 491.19989 sc5mt astore 216 0 162 486 -0.819152 0.573577 -0.573577 -0.819152 912.397644 613.295959 sc6mt astore ssl -0.819152 0.573576 -0.573576 0.819152 489.804413 143.59668 sc4mt astore 0.819152 0.573576 -0.573576 0.819152 489.804413 143.59668 sc5mt astore 216 0 162 486 0.819152 0.573576 -0.573576 0.819152 292.842316 -182.975189 sc6mt astore ssl -/crlinw 1.8 def -/strdsh [8 8] def /dshpatoff 0 def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -233 324 432 1 0 0 1 0 0 sc6mt astore ssl -/strdsh [2 2] def /dshpatoff 0 def -/crendarw true def -/esave save def 1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 90 144.90065 468 541 -1 -1.009259 54 false false 1 0 0 1 -87 -71 sc5mt astore apstroke esave restore -(q ) [9.378006 0 0 0] 142 621.799988 /Symbol [ 18 1 mul 0 0 18 0 0 ] [1.5 0 0 1.5 114.540009 -559.079956] dotx -(o ) [9.881989 0 0 0] 326 641.799988 /Symbol [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 15 -271] dotx -/esave save def 1 0 0 1 0 0 sc4mt astore -1 1.748456e-07 1.748456e-07 1 600.479919 -5.249563e-05 sc6mt astore 90 130.436951 129 516 1.049505 -1 50.5 false false -1.353256 2.366108e-07 2.497206e-07 1.428235 571.772522 -283.717651 sc5mt astore apstroke esave restore -end -grestore -grestore -%%Trailer -%%DocumentFonts: Symbol diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob12.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob12.gif deleted file mode 100755 index 9baa3ee43..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob12.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob13a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob13a.eps deleted file mode 100755 index 8acb61ecd..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob13a.eps +++ /dev/null @@ -1,444 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Easy_F.eps -%%CreationDate: 5/17/1996 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%+ Symbol -%%BoundingBox:229 502 435 632 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -%%BeginEncoding: _Symbol Symbol -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Symbol/Symbol 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -4040 4731 7478 4965 R -0 0 0 1 1 1 [76 210 83 45 150 89 70 179] patfill -gr -gs -4040.625 4731.625 7478.375 4965.375 R -1.25 slw 0 sg str -gr -gs -4392 3950 5330 4731 R -1 sg fill -gr -gs -4392.625 3950.625 5330.375 4731.375 R -1.25 slw 0 sg str -gr -gs -7048 3012 6941 3149 6887 3077 2 P -0 sg fill -gr -gs -5330.625 4340.625 m -6914.625 3113.625 L -1.25 slw 0 sg str -gr -gs -4783 4227 4956 4488 R -1 sg fill -gr -/_Times-Roman ff [243 0 0 -243 0 0] mf sf -4783 4417 m 0 sg (m) show -gs -6050 3168 6171 3429 R -1 sg fill -gr -6050 3358 m 2.43 slw 0 sg (F) show -gs -5950 4015 6072 4275 R -1 sg fill -gr -/_Symbol ff [243 0 0 -243 0 0] mf sf -5950 4223 m 0 sg (q) show -gs -5330.625 4340.625 m -5381.625 4340.625 L -1.25 slw 0 sg str -gr -gs -5434.625 4340.625 m -5485.625 4340.625 L -1.25 slw 0 sg str -gr -gs -5538.625 4340.625 m -5589.625 4340.625 L -1.25 slw 0 sg str -gr -gs -5642.625 4340.625 m -5694.625 4340.625 L -1.25 slw 0 sg str -gr -gs -5747.625 4340.625 m -5798.625 4340.625 L -1.25 slw 0 sg str -gr -gs -5851.625 4340.625 m -5902.625 4340.625 L -1.25 slw 0 sg str -gr -gs -5955.625 4340.625 m -6006.625 4340.625 L -1.25 slw 0 sg str -gr -gs -6059.625 4340.625 m -6110.625 4340.625 L -1.25 slw 0 sg str -gr -gs -6163.625 4340.625 m -6214.625 4340.625 L -1.25 slw 0 sg str -gr -gs -6267.625 4340.625 m -6319.625 4340.625 L -1.25 slw 0 sg str -gr -gs -6372.625 4340.625 m -6423.625 4340.625 L -1.25 slw 0 sg str -gr -gs -6476.625 4340.625 m -6527.625 4340.625 L -1.25 slw 0 sg str -gr -gs -6580.625 4340.625 m -6631.625 4340.625 L -1.25 slw 0 sg str -gr -gs -6684.625 4340.625 m -6735.625 4340.625 L -1.25 slw 0 sg str -gr -gs -6788.625 4340.625 m -6839.625 4340.625 L -1.25 slw 0 sg str -gr -gs -6892.625 4340.625 m -6943.625 4340.625 L -1.25 slw 0 sg str -gr -gs -6997.625 4340.625 m -7009.625 4340.625 L -1.25 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob13a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob13a.gif deleted file mode 100755 index a45e4b3fe..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob13a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob15a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob15a.eps deleted file mode 100755 index 5504fcf8c..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob15a.eps +++ /dev/null @@ -1,600 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: M_Two_Up.eps -%%CreationDate: 6/1/1996 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%BoundingBox:264 492 317 637 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -4962 2907 5036 3065 4888 3065 2 P -0 sg fill -gr -gs -4962.625 3571.625 m -4962.625 2907.625 L -1.25 slw 0 sg str -gr -gs -4943.625 3978.625 m -4943.625 3985.625 L -1.25 slw 0 sg str -gr -gs -4946.625 4015.625 m -4956.625 4046.625 L -1.25 slw 0 sg str -gr -gs -4943 3978 4943 3967 4944 3958 4946 3950 4946 3948 4 P -1.25 slw 0 sg str -gr -gs -4946 4015 4943 4001 4943 3992 4943 3985 3 P -1.25 slw 0 sg str -gr -gs -4969.625 4003.625 m -4978.625 4033.625 L -1.25 slw 0 sg str -gr -gs -4982.625 4063.625 m -4982.625 4071.625 L -1.25 slw 0 sg str -gr -gs -4978.625 4101.625 m -4946.625 4204.625 L -1.25 slw 0 sg str -gr -gs -4943.625 4234.625 m -4943.625 4242.625 L -1.25 slw 0 sg str -gr -gs -4946.625 4272.625 m -4956.625 4302.625 L -1.25 slw 0 sg str -gr -gs -4978 4033 4980 4043 4981 4052 4982 4061 4982 4063 4 P -1.25 slw 0 sg str -gr -gs -0 slc -newpath -4956.625 4028.625 4982.375 4113.375 315 360 A -1.25 slw 0 sg str -gr -gs -4943 4234 4943 4223 4944 4214 4946 4207 4946 4204 4 P -1.25 slw 0 sg str -gr -gs -4946 4272 4943 4257 4943 4248 4943 4242 3 P -1.25 slw 0 sg str -gr -gs -4978.625 3972.625 m -4946.625 4076.625 L -1.25 slw 0 sg str -gr -gs -4943.625 4106.625 m -4943.625 4113.625 L -1.25 slw 0 sg str -gr -gs -4946.625 4144.625 m -4956.625 4174.625 L -1.25 slw 0 sg str -gr -gs -0 slc -newpath -4956.625 3899.625 4982.375 3985.375 315 360 A -1.25 slw 0 sg str -gr -gs -4943 4106 4943 4094 4944 4086 4946 4078 4946 4076 4 P -1.25 slw 0 sg str -gr -gs -4946 4144 4943 4129 4943 4120 4943 4113 3 P -1.25 slw 0 sg str -gr -gs -4969.625 4131.625 m -4978.625 4161.625 L -1.25 slw 0 sg str -gr -gs -4982.625 4192.625 m -4982.625 4199.625 L -1.25 slw 0 sg str -gr -gs -4978.625 4229.625 m -4946.625 4332.625 L -1.25 slw 0 sg str -gr -gs -4943.625 4362.625 m -4943.625 4370.625 L -1.25 slw 0 sg str -gr -gs -4946.625 4400.625 m -4956.625 4430.625 L -1.25 slw 0 sg str -gr -gs -4978 4161 4980 4171 4981 4180 4982 4189 4982 4191 4 P -1.25 slw 0 sg str -gr -gs -0 slc -newpath -4956.625 4156.625 4982.375 4242.375 315 360 A -1.25 slw 0 sg str -gr -gs -4943 4363 4943 4351 4944 4342 4946 4335 4946 4332 4 P -1.25 slw 0 sg str -gr -gs -4946 4400 4943 4386 4943 4377 4943 4370 3 P -1.25 slw 0 sg str -gr -gs -4969.625 4388.625 m -4978.625 4418.625 L -1.25 slw 0 sg str -gr -gs -4982.625 4448.625 m -4982.625 4455.625 L -1.25 slw 0 sg str -gr -gs -4978.625 4486.625 m -4946.625 4589.625 L -1.25 slw 0 sg str -gr -gs -4978 4418 4980 4428 4981 4437 4982 4446 4982 4448 4 P -1.25 slw 0 sg str -gr -gs -0 slc -newpath -4956.625 4413.625 4982.375 4498.375 315 360 A -1.25 slw 0 sg str -gr -gs -4943 4619 4943 4608 4944 4599 4946 4592 4946 4589 4 P -1.25 slw 0 sg str -gr -gs -4969.625 4256.625 m -4978.625 4286.625 L -1.25 slw 0 sg str -gr -gs -4982.625 4316.625 m -4982.625 4323.625 L -1.25 slw 0 sg str -gr -gs -4978.625 4354.625 m -4946.625 4457.625 L -1.25 slw 0 sg str -gr -gs -4943.625 4487.625 m -4943.625 4494.625 L -1.25 slw 0 sg str -gr -gs -4946.625 4525.625 m -4956.625 4555.625 L -1.25 slw 0 sg str -gr -gs -4978 4286 4980 4296 4981 4305 4982 4314 4982 4316 4 P -1.25 slw 0 sg str -gr -gs -0 slc -newpath -4956.625 4281.625 4982.375 4366.375 315 360 A -1.25 slw 0 sg str -gr -gs -4943 4487 4943 4476 4944 4467 4946 4460 4946 4457 4 P -1.25 slw 0 sg str -gr -gs -4946 4525 4943 4511 4943 4502 4943 4495 3 P -1.25 slw 0 sg str -gr -gs -4969.625 4516.625 m -4978.625 4547.625 L -1.25 slw 0 sg str -gr -gs -4982.625 4577.625 m -4982.625 4584.625 L -1.25 slw 0 sg str -gr -gs -4978 4546 4980 4556 4981 4565 4982 4574 4982 4577 4 P -1.25 slw 0 sg str -gr -gs -0 slc -newpath -4956.625 4541.625 4982.375 4627.375 315 360 A -1.25 slw 0 sg str -gr -gs -4639 4606 5264 5112 R -0.75 sg fill -gr -gs -4639.625 4606.625 5264.375 5112.375 R -1.25 slw 0 sg str -gr -gs -4815 4724 5127 4978 R -1 sg fill -gr -gs -4815.625 4724.625 5127.375 4978.375 R -1.25 slw 1 sg str -gr -gs -4639 3532 5264 3942 R -0.75 sg fill -gr -gs -4639.625 3532.625 5264.375 3942.375 R -1.25 slw 0 sg str -gr -gs -4798 3610 5108 3884 R -1 sg fill -gr -gs -4798.625 3610.625 5108.375 3884.375 R -1.25 slw 1 sg str -gr -gs -5043 3161 5147 3387 R -1 sg fill -gr -/_Times-Roman ff [208 0 0 -208 0 0] mf sf -5043 3317 m 0 sg (F) show -gs -4854 3634 5010 3860 R -1 sg fill -gr -4854 3790 m 2.08 slw 0 sg (m) show -gs -5012 3728 5082 3884 R -1 sg fill -gr -/_Times-Roman ff [156 0 0 -156 0 0] mf sf -5012 3849 m 0 sg (1) show -gs -4874 4728 5030 4954 R -1 sg fill -gr -/_Times-Roman ff [208 0 0 -208 0 0] mf sf -4874 4884 m 0 sg (m) show -gs -5032 4821 5102 4978 R -1 sg fill -gr -/_Times-Roman ff [156 0 0 -156 0 0] mf sf -5032 4942 m 0 sg (2) show -gs -5040 4181 5254 4407 R -1 sg fill -gr -/_Times-Roman ff [208 0 0 -208 0 0] mf sf -5040 4337 m 0 sg (m) show -gs -5196 4229 5248 4437 R -1 sg fill -gr -/_Times-Roman ff [174 0 0 -174 0 0] mf sf -5196 4385 m 0 sg (r) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob15a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob15a.gif deleted file mode 100755 index 141af87b2..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob15a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob16.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob16.eps deleted file mode 100755 index 0628afe4f..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob16.eps +++ /dev/null @@ -1,503 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: M_Two_Inc.eps -%%CreationDate: 5/17/1996 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%+ Symbol -%%BoundingBox:186 510 436 637 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -%%BeginEncoding: _Symbol Symbol -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Symbol/Symbol 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -6027 4399 6051 4433 6066 4459 6080 4485 6091 4513 6101 4541 6109 4570 6115 4599 -6119 4628 6121 4658 6121 4673 5676 4673 11 P -1 sg fill -gr -gs -6027 4399 6051 4433 6066 4459 6080 4485 6091 4513 6101 4541 6109 4570 6115 4599 -6119 4628 6121 4658 6121 4673 10 P -1.25 slw 0 sg str -gr -gs -3781 3872 4563 4497 R -1 sg fill -gr -gs -3781.625 3872.625 4563.375 4497.375 R -1.25 slw 0 sg str -gr -gs -5900 3622 6442 3175 6741 3536 6198 3984 5900 3622 4 P closepath -1 sg fill -gr -gs -5900 3622 6442 3175 6741 3536 6198 3984 5900 3622 4 P closepath -1.25 slw 0 sg str -gr -gs -5559.625 4145.625 m -6027.625 3755.625 L -1.25 slw 0 sg str -gr -gs -7026 2911 6952 3069 6858 2956 2 P -0 sg fill -gr -gs -6553.625 3310.625 m -7026.625 2911.625 L -1.25 slw 0 sg str -gr -gs -5305 3931 5578 4204 OV -0.75 sg fill -gr -gs -5305.625 3931.625 5578.375 4204.375 OV -1.25 slw 0 sg str -gr -gs -5334 3960 5540 4175 OV -0.5 sg fill -gr -gs -5334.625 3960.625 5540.375 4175.375 OV -1.25 slw 0 sg str -gr -gs -5305 4497 5405 4081 5407 4074 5409 4069 5412 4065 5415 4062 5419 4059 5423 4056 -5428 4054 5433 4053 5437 4052 5442 4051 5447 4052 5452 4053 5457 4054 5461 4056 -5465 4059 5469 4062 5472 4065 5734 4360 5559 4497 5305 4497 21 P closepath -0.75 sg fill -gr -gs -5305 4497 5405 4081 5407 4074 5409 4069 5412 4065 5415 4062 5419 4059 5423 4056 -5428 4054 5433 4053 5437 4052 5442 4051 5447 4052 5452 4053 5457 4054 5461 4056 -5465 4059 5469 4062 5472 4065 5734 4360 5559 4497 5305 4497 21 P closepath -1.25 slw 0 sg str -gr -gs -5422 4067 5461 4106 OV -0 sg fill -gr -gs -5422.625 4067.625 5461.375 4106.375 OV -1.25 slw 0 sg str -gr -gs -4042 4072 4302 4297 R -1 sg fill -gr -/_Times-Roman ff [208 0 0 -208 0 0] mf sf -4042 4228 m 0 sg (m1) show -gs -6190 3466 6451 3692 R -1 sg fill -gr -6190 3622 m 2.08 slw 0 sg (m2) show -gs -6592 2785 6696 3011 R -1 sg fill -gr -6592 2941 m 2.08 slw 0 sg (F) show -gs -5383.625 4185.625 m -4563.625 4185.625 L -1.25 slw 0 sg str -gr -gs -3293 4497 5559 4497 7336 3032 7492 3198 5676 4673 3293 4673 3293 4497 6 P closepath -0 0 0 1 1 1 [76 210 83 45 150 89 70 179] patfill -gr -gs -3293 4497 5559 4497 7336 3032 7492 3198 5676 4673 3293 4673 3293 4497 6 P closepath -1.25 slw 0 sg str -gr -gs -5676.625 4673.625 m -5727.625 4673.625 L -1.25 slw 0 sg str -gr -gs -5780.625 4673.625 m -5831.625 4673.625 L -1.25 slw 0 sg str -gr -gs -5884.625 4673.625 m -5935.625 4673.625 L -1.25 slw 0 sg str -gr -gs -5988.625 4673.625 m -6040.625 4673.625 L -1.25 slw 0 sg str -gr -gs -6093.625 4673.625 m -6144.625 4673.625 L -1.25 slw 0 sg str -gr -gs -6197.625 4673.625 m -6248.625 4673.625 L -1.25 slw 0 sg str -gr -gs -6301.625 4673.625 m -6352.625 4673.625 L -1.25 slw 0 sg str -gr -gs -6405.625 4673.625 m -6456.625 4673.625 L -1.25 slw 0 sg str -gr -gs -6509.625 4673.625 m -6560.625 4673.625 L -1.25 slw 0 sg str -gr -gs -6613.625 4673.625 m -6665.625 4673.625 L -1.25 slw 0 sg str -gr -gs -6718.625 4673.625 m -6769.625 4673.625 L -1.25 slw 0 sg str -gr -gs -6822.625 4673.625 m -6873.625 4673.625 L -1.25 slw 0 sg str -gr -gs -6926.625 4673.625 m -6977.625 4673.625 L -1.25 slw 0 sg str -gr -gs -7030.625 4673.625 m -7081.625 4673.625 L -1.25 slw 0 sg str -gr -gs -7134.625 4673.625 m -7185.625 4673.625 L -1.25 slw 0 sg str -gr -gs -6160 4347 6281 4608 R -1 sg fill -gr -/_Symbol ff [243 0 0 -243 0 0] mf sf -6160 4555 m 0 sg (q) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob16.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob16.gif deleted file mode 100755 index f27e609d0..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob16.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob18a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob18a.eps deleted file mode 100755 index e498aa129..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob18a.eps +++ /dev/null @@ -1,443 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: chain.eps -%%CreationDate: 9/17/1995 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%BoundingBox:257 502 326 818 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -0 slc -newpath -4705.25 730.25 5330.75 1355.75 0 180 A -52.5 slw 0 sg str -gr -gs -4705.25 1042.25 m -4705.25 1355.25 L -52.5 slw 0 sg str -gr -gs -5330.25 1042.25 m -5330.25 1355.25 L -52.5 slw 0 sg str -gr -gs -0 slc -newpath -4705.25 1042.25 5330.75 1667.75 180 360 A -52.5 slw 0 sg str -gr -gs -0 slc -newpath -4705.5 1511.5 5330.5 2136.5 0 180 A -35 slw 0 sg str -gr -gs -4705.5 1824.5 m -4705.5 2136.5 L -35 slw 0 sg str -gr -gs -5330.5 1824.5 m -5330.5 2136.5 L -35 slw 0 sg str -gr -gs -0 slc -newpath -4705.5 1824.5 5330.5 2449.5 180 360 A -35 slw 0 sg str -gr -gs -0 slc -newpath -4705.25 2292.25 5330.75 2917.75 0 180 A -52.5 slw 0 sg str -gr -gs -4705.25 2605.25 m -4705.25 2917.25 L -52.5 slw 0 sg str -gr -gs -5330.25 2605.25 m -5330.25 2917.25 L -52.5 slw 0 sg str -gr -gs -0 slc -newpath -4705.25 2605.25 5330.75 3230.75 180 360 A -52.5 slw 0 sg str -gr -gs -0 slc -newpath -4705.5 3074.5 5330.5 3699.5 0 180 A -35 slw 0 sg str -gr -gs -4705.5 3386.5 m -4705.5 3699.5 L -35 slw 0 sg str -gr -gs -5330.5 3386.5 m -5330.5 3699.5 L -35 slw 0 sg str -gr -gs -0 slc -newpath -4705.5 3386.5 5330.5 4011.5 180 360 A -35 slw 0 sg str -gr -gs -0 slc -newpath -4705.25 3855.25 5330.75 4480.75 0 180 A -52.5 slw 0 sg str -gr -gs -4705.25 4168.25 m -4705.25 4480.25 L -52.5 slw 0 sg str -gr -gs -5330.25 4168.25 m -5330.25 4480.25 L -52.5 slw 0 sg str -gr -gs -0 slc -newpath -4705.25 4168.25 5330.75 4793.75 180 360 A -52.5 slw 0 sg str -gr -gs -4939 1042 5096 1355 R -1 sg fill -gr -/_Times-Roman ff [312 0 0 -312 0 0] mf sf -4939 1285 m 0 sg (5) show -gs -4939 1824 5096 2136 R -1 sg fill -gr -4939 2067 m 3.12 slw 0 sg (4) olshow -gs -4939 2605 5096 2917 R -1 sg fill -gr -4939 2848 m 3.12 slw 0 sg (3) olshow -gs -4939 3386 5096 3699 R -1 sg fill -gr -4939 3629 m 3.12 slw 0 sg (2) olshow -gs -4939 4168 5096 4480 R -1 sg fill -gr -4939 4411 m 3.12 slw 0 sg (1) olshow -gs -5017 -208 5091 -50 4943 -50 2 P -0 sg fill -gr -gs -5017.5 730.5 m -5017.5 -207.5 L -35 slw 0 sg str -gr -gs -5243 105 5417 417 R -1 sg fill -gr -5243 348 m 3.12 slw 0 sg (F) olshow -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob18a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob18a.gif deleted file mode 100755 index c6b0eb70c..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob18a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob19.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob19.eps deleted file mode 100755 index 4fdf69005..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob19.eps +++ /dev/null @@ -1,416 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: boattodock.eps -%%CreationDate: 9/17/1995 -%%Pages: 0 -%%DocumentFonts: Symbol -%%BoundingBox:-2 411 278 799 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Symbol Symbol -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Symbol/Symbol 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -1145 433 208 2621 208 6059 2083 6059 2083 2621 1145 433 5 P closepath -0.93 sg fill -gr -gs -1128 416 191 2604 191 6042 2066 6042 2066 2604 1128 416 5 P closepath -35 slw 0 sg str -gr -gs -3958 121 4583 6371 R -0 0 0 1 1 1 [8 66 0 144 4 64 16 1] patfill -gr -gs -3958.625 121.625 4583.375 6371.375 R -1.25 slw 0 sg str -gr -gs -1614 2543 1770 2699 OV -0 sg fill -gr -gs -1614.625 2543.625 1770.375 2699.375 OV -1.25 slw 0 sg str -gr -gs -1614 3480 1770 3637 OV -0 sg fill -gr -gs -1614.625 3480.625 1770.375 3637.375 OV -1.25 slw 0 sg str -gr -gs -1614 4418 1770 4574 OV -0 sg fill -gr -gs -1614.625 4418.625 1770.375 4574.375 OV -1.25 slw 0 sg str -gr -gs -1614 5355 1770 5512 OV -0 sg fill -gr -gs -1614.625 5355.625 1770.375 5512.375 OV -1.25 slw 0 sg str -gr -gs -4114 2465 4427 2777 OV -0 sg fill -gr -gs -4114.625 2465.625 4427.375 2777.375 OV -1.25 slw 0 sg str -gr -gs -4114 5277 4427 5590 OV -0 sg fill -gr -gs -4114.625 5277.625 4427.375 5590.375 OV -1.25 slw 0 sg str -gr -gs -4114 1840 4427 2152 OV -0 sg fill -gr -gs -4114.625 1840.625 4427.375 2152.375 OV -1.25 slw 0 sg str -gr -gs -4114 5902 4427 6215 OV -0 sg fill -gr -gs -4114.625 5902.625 4427.375 6215.375 OV -1.25 slw 0 sg str -gr -gs -4271.5 2621.5 m -1692.5 2621.5 L -35 slw 0 sg str -gr -gs -4271.5 5434.5 m -1692.5 5434.5 L -35 slw 0 sg str -gr -gs -4271.5 6059.5 m -1692.5 3559.5 L -35 slw 0 sg str -gr -gs -4271.5 1996.5 m -1692.5 4496.5 L -35 slw 0 sg str -gr -gs -0 slc -newpath -3177.625 4965.625 4739.375 6527.375 90 135 A -1.25 slw 0 sg str -gr -gs -0 slc -newpath -3177.625 1527.625 4739.375 3090.375 225 270 A -1.25 slw 0 sg str -gr -gs -3594 3099 3698 3394 R -1 sg fill -gr -/_Symbol ff [208 0 0 -208 0 0] mf sf -3594 3324 m 0 sg (q) show -gs -3594 4661 3698 4956 R -1 sg fill -gr -3594 4886 m 0 sg (q) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob19.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob19.gif deleted file mode 100755 index 6093766c5..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob19.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av1.eps deleted file mode 100755 index ef24a836c..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av1.eps +++ /dev/null @@ -1,609 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F1 -%%Creation Date: Sat, Sep 16, 1995 13:53 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 59.75 M -117.50 59.75 L -117.50 151.38 L -244.50 151.38 L -244.50 105.62 L -308.00 105.62 L -308.00 243.00 L -435.00 243.00 L -435.00 197.25 L -498.50 197.25 L -498.50 105.62 L -562.00 105.62 L -562.00 105.62 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av1.gif deleted file mode 100755 index c51d79b7a..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av10.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av10.eps deleted file mode 100755 index 441ceea62..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av10.eps +++ /dev/null @@ -1,609 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F10 -%%Creation Date: Sat, Sep 16, 1995 13:54 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 151.38 M -117.50 151.38 L -117.50 243.00 L -244.50 243.00 L -244.50 105.62 L -308.00 105.62 L -308.00 151.38 L -435.00 151.38 L -435.00 59.75 L -498.50 59.75 L -498.50 197.25 L -562.00 197.25 L -562.00 197.25 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av10.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av10.gif deleted file mode 100755 index fd82580e3..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av10.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av2.eps deleted file mode 100755 index 26c4ee176..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av2.eps +++ /dev/null @@ -1,609 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F2 -%%Creation Date: Sat, Sep 16, 1995 13:53 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 197.25 M -117.50 197.25 L -117.50 59.75 L -244.50 59.75 L -244.50 151.38 L -308.00 151.38 L -308.00 243.00 L -435.00 243.00 L -435.00 59.75 L -498.50 59.75 L -498.50 105.62 L -562.00 105.62 L -562.00 105.62 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av2.gif deleted file mode 100755 index bfdb43925..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av3.eps deleted file mode 100755 index b93ce9f6a..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av3.eps +++ /dev/null @@ -1,609 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F3 -%%Creation Date: Sat, Sep 16, 1995 13:53 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 197.25 M -117.50 197.25 L -117.50 197.25 L -244.50 197.25 L -244.50 105.62 L -308.00 105.62 L -308.00 151.38 L -435.00 151.38 L -435.00 59.75 L -498.50 59.75 L -498.50 243.00 L -562.00 243.00 L -562.00 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av3.gif deleted file mode 100755 index 8b362ef13..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av4.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av4.eps deleted file mode 100755 index db9ee8710..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av4.eps +++ /dev/null @@ -1,609 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F4 -%%Creation Date: Sat, Sep 16, 1995 13:53 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 105.62 M -117.50 105.62 L -117.50 197.12 L -244.50 197.12 L -244.50 151.38 L -308.00 151.38 L -308.00 59.75 L -435.00 59.75 L -435.00 197.12 L -498.50 197.12 L -498.50 151.38 L -562.00 151.38 L -562.00 151.38 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av4.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av4.gif deleted file mode 100755 index f4c7e85b9..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av4.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av5.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av5.eps deleted file mode 100755 index fc8f5aadd..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av5.eps +++ /dev/null @@ -1,609 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F5 -%%Creation Date: Sat, Sep 16, 1995 13:53 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 243.00 M -117.50 243.00 L -117.50 59.75 L -244.50 59.75 L -244.50 151.38 L -308.00 151.38 L -308.00 105.62 L -435.00 105.62 L -435.00 197.25 L -498.50 197.25 L -498.50 151.38 L -562.00 151.38 L -562.00 151.38 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av5.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av5.gif deleted file mode 100755 index c645da41e..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av5.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av6.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av6.eps deleted file mode 100755 index bcc25210d..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av6.eps +++ /dev/null @@ -1,609 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F6 -%%Creation Date: Sat, Sep 16, 1995 13:54 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 105.62 M -117.50 105.62 L -117.50 59.88 L -244.50 59.88 L -244.50 105.62 L -308.00 105.62 L -308.00 151.38 L -435.00 151.38 L -435.00 105.62 L -498.50 105.62 L -498.50 59.88 L -562.00 59.88 L -562.00 59.88 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av6.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av6.gif deleted file mode 100755 index 89ba54b31..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av6.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av7.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av7.eps deleted file mode 100755 index f1f736998..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av7.eps +++ /dev/null @@ -1,609 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F7 -%%Creation Date: Sat, Sep 16, 1995 13:54 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 151.38 M -117.50 151.38 L -117.50 59.75 L -244.50 59.75 L -244.50 151.38 L -308.00 151.38 L -308.00 197.12 L -435.00 197.12 L -435.00 151.38 L -498.50 151.38 L -498.50 59.75 L -562.00 59.75 L -562.00 59.75 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av7.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av7.gif deleted file mode 100755 index 2e1332ddb..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av7.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av8.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av8.eps deleted file mode 100755 index 0c64d91bc..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av8.eps +++ /dev/null @@ -1,609 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F8 -%%Creation Date: Sat, Sep 16, 1995 13:54 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 151.38 M -117.50 151.38 L -117.50 197.25 L -244.50 197.25 L -244.50 151.38 L -308.00 151.38 L -308.00 243.00 L -435.00 243.00 L -435.00 59.75 L -498.50 59.75 L -498.50 105.62 L -562.00 105.62 L -562.00 105.62 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av8.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av8.gif deleted file mode 100755 index 921ed34fe..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av8.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av9.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av9.eps deleted file mode 100755 index 36a7724c4..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av9.eps +++ /dev/null @@ -1,609 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F9 -%%Creation Date: Sat, Sep 16, 1995 13:54 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(10) 32.25 18.38 17.75 WS -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 41.12 64.12 8.88 WS -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 41.12 110.00 8.88 WS -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 41.12 155.75 8.88 WS -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 41.12 201.62 8.88 WS -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(16) 553.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -498.38 235.50 498.38 20.50 MacLine -grestore -1.00 ps -498.00 13.50 498.00 20.50 MacLine -498.00 242.50 498.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(14) 489.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 426.12 259.88 17.75 WS -gsave 0.25 ps [1] sd -371.38 235.50 371.38 20.50 MacLine -grestore -1.00 ps -371.00 13.50 371.00 20.50 MacLine -371.00 242.50 371.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 362.62 259.88 17.75 WS -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 303.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -244.38 235.50 244.38 20.50 MacLine -grestore -1.00 ps -244.00 13.50 244.00 20.50 MacLine -244.00 242.50 244.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 240.12 259.88 8.88 WS -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 176.62 259.88 8.88 WS -gsave 0.25 ps [1] sd -117.38 235.50 117.38 20.50 MacLine -grestore -1.00 ps -117.00 13.50 117.00 20.50 MacLine -117.00 242.50 117.00 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 113.12 259.88 8.88 WS -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 278.62 284.38 58.75 WS -2.00 ps -newpath 54.00 197.12 M -117.50 197.12 L -117.50 105.62 L -244.50 105.62 L -244.50 197.12 L -308.00 197.12 L -308.00 151.38 L -435.00 151.38 L -435.00 197.12 L -498.50 197.12 L -498.50 59.75 L -562.00 59.75 L -562.00 59.75 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av9.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av9.gif deleted file mode 100755 index 8db70601d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob21av9.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob23.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob23.eps deleted file mode 100755 index f17cbbc61..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob23.eps +++ /dev/null @@ -1,945 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Title: TABLEROT.EPS -%%Creator: DeskScan II - Hewlett-Packard Company -%%CreationDate: Sat Jun 1 16:36:12 1996 -%%BoundingBox: 0 0 101 111 -%%EndComments -%%EndProlog -save -15 dict begin -/xpoints 101 def -/ypoints 111 def -/xpixels 417 def -/ypixels 460 def -/rasterbytes 53 def -/bitspercomponent 1 def -/xunits xpixels xpoints div def -/yunits ypixels ypoints div def -/coords [xunits 0 0 yunits neg 0 ypixels] def -/picstr rasterbytes string def -/readimage { currentfile picstr readhexstring pop } def -xpixels ypixels bitspercomponent coords /readimage load -image -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FF8100001FFFFFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000000000C00 -00000000003FFFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000000000000000003800000000100000001F05 -FFFFFFFFFC07FFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFFFFE000000000000000000000000000000F3C0B8F7FFFFFFFFFFFFFFF -FFFFFFFFFF83FFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFFF00000000000000B1FFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFF -FFFFFFFFFFF0FFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFF807FFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFC3FFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF1FFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFF -FFFFFFFFFFFF8FFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFBFFFF -FFFFFFFFFFFFF7FFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFC7FFFFFFFFFFFDFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFEFFFF -FFFFFFFFFFFFE7FFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF9FFFFFFFFFDFBFFFFFFFFFFFFFFFFFFFFFEFF7FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF3FFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF1FFFFFFFEBFFFFFFFFFFFF7FFFFFFFF8FC00007E050FFFFFFFFFFFFFFF -BFFFFFFFFDFFF1FFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFE3FFFFFFDFFFFFFFFFFFFFF7FFFFFF8143C06017E8040FFFFFFFF3FFFFF -FFFFFFFFBFFFF9FFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFE7FFFFFBFFFFFFFFFFFFFF83F3FFF02007C700E7E20103F0FFFFFFFFFFF -FFFFFFDFFFFFF8FFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFCFFFFDFFFFFFFFFFFFFFFF00F5AFC40BD7FFFEFDFE1C0BE50FFFFFFFFFF -FFFFFFFFFFFFECFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF8FFFBFFFFFFFFFFFFDFFDF03D10FC1FFFFFFFFFFFFFFFBE0407FFFFFFFF -FFFFFFFF7FFFFCFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF9FFFFFFFFFFFFFDFFFFBF000040FFFFFFFFFFFFFFFFFFFFF0007FFFFFFF -DFBFF7FFFEFFFE7FFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF9FFFFFFFFFFDEFFFFFFFE000057FFFFFFFFFFFFFFFFFFFFFFDA1FFFFFFF -FFFFFFFFFFFFFE7FFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFF804023FFFFFFFFFFFFFFFFFFFFFFFFEBF5FFFFF -FFFFFFFFFFFFFF7FFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF3FFFFFFF1FFFFFFFFFFF00007FFFFFFFFFFFFFFFFFFFFFFFFFFFF07AFFF -FFFFFFFFFFFFFF3FFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFF0281FFFDFFFFFFFFFFFFFFFFFFFFFFFFFD02BFF -FFFFFFFFFFFFFF3FFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFF800007EFFFF9FFBF7FFFFFFFFFFFFFFFFFF40BDF -FFFFFFFFFFFFFF3FFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFE7FFFF7FFFFFFFFFFFE280401FFFFFFFFFFFFFFFFFFF7FFFFFFFFFFD40FF -FEFDFFDFBFFFFF9FFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFC7FFAFFFFFFFFFFEFC7205028FFFFFFFFFFFFFFFFFFFFFEFFFFFFFFF781F -DFFFFBFFFFFFFF9FFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFC7F7FFFFFFFFEFDFFF03A3F7FFFFFFFFFFFFFFFFFFFFFFFFDFBFFFFFFCBF -FFFFFFFFFFFFFF9FFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFCEFFFFFFFFFFFFFFF817FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -3FFFFFFFFFFFFFDFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFCFFFFFFFFEFFFFFFFA3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -87FFFFFFFFFFFFCFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFCFFFFFFF7FFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -05FFFFFFFFFFFFCFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFF8FFFFFEFFFFFFFFDFFFFFFBFFFE7FEFDFFBF7FFFFFFFFFFFFFFFFFFFBFFF -C07FFFFFFFFFFFC7FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFF9FFFFFFFFFFFFFE2FFEBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5 -E01EFFFFEFFFFFE7FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFF9FFEFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFF -EF07FFFFFFFFFFE7FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFBFFFFFFFFFFFEF07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC0FFFFFFFFFFE7FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFF7FFFFFFFFFFBE057FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFDFFFFFFFFFFF -FFE17FFFFFFFFFE7FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFF0FFFFFFFFEFFF83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF87FFFFFFFFFE3FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFF3FFFFFFF3FFF83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFF7FFFFFFFFFF3FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFE3FFFFFFFFFFF4BFFFFFFFFDFFBF7FE7DFFDFFFFFFFFFFFFFFFFEFFFFFFFF -FFFFFFFFFFFFFFE3FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFE7FFFFFFFFFFE0FFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFF -FFFFFF7FFFFFFFE3FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFE7FFFFFEFFFFE7FFF7FFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFBFFF -FFFFFD7FFFFEFFF9FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFE7FFFFFFFFFFEDFAFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFF7 -FFFFFC1FFF7FFFF9FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFE7FFEFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFE07EFFFFFF9FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFC7FFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFF -FFFDFAD5FFFFFFF8FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFCFFFFFFFF8E1FFFFFFFFFFFFFFFFFBFFFF7FFFFFFFFFFFFFFDFFFFFFFFFFF -FFFFFFE1FFFFFFFCFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFCFFFFFFF7F87FFFFFFFFFFFDFF9FFFF7EFFFFFFFFFFFFFFFFFF3FFFFFFFFF -FFFFFFF87FFFFFFCFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFCFFFFFFFFFAFFFFFFFFF5FFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFD1FFFFFFCFFFFFFFFFFFFFF80 -FFFFFFFFFFFFF9FFFFFFFFC3FFFFFF7FFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFEFFFFFFFF -FFFFFFFF57FFFFFE7FFFFFFFFFFFFF80 -FFFFFFFFFFFFF9FFFFFFFFD7FFFFAFFFFFFFFFFFFFFFFFFFFFFFFFEBFFFFFFFFFFFFDFFFFF -FFFFFFFF07FFFFFE7FFFFFFFFFFFFF80 -FFFFFFFFFFFFF9FFFFFFFF07FBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFF -FFFFFFFFE3FFFFFE7FFFFFFFFFFFFF80 -FFFFFFFFFFFFF1FFFFFFF81CFEFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFBFFF -FFFFFFFFE7FFFFFF7FFFFFFFFFFFFF80 -FFFFFFFFFFFFF3FFFFFFFA1FFFFFFFFFFFFCFFFFBFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFEFF -FFFFFFFFE3FFFDFE3FFFFFFFFFFFFF80 -FFFFFFFFFFFFF3EFFFFFF0FFFFFFFEFFDFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -EFFFFFFFFF7FFFFF3FFFFFFFFFFFFF80 -FFFFFFFFFFFFF1FFFFFFF5FFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFDFBFFFFFFFFF -FFBF7FFFFFFFFFFF1FFFFFFFFFFFFF80 -FFFFFFFFFFFFF3FFFFFFC7FFFFFEFFFFFFFFFFFFFFFFFFFDFAFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF1FFFFFFFFFFFFF80 -FFFFFFFFFFFFE3FFFFFBF7FFFFFFFFFFFFFBF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF8FFFFF9FFFFFFFFFFFFF80 -FFFFFFFFFFFFE3FFFF7FFFFFE7FFFFFFFC7FFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE3FFFF1FFFFFFFFFFFFF80 -FFFFFFFFFFFFE7FFEFFFFFF9FFFFFFFFBFFFFFFFFDFBFFFFFFFFDFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFEBFFFF9FFFFFFFFFFFFF80 -FFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF1FFFF8FFFFFFFFFFFFF80 -FFFFFFFFFFFFCFFFFFF7FAFFFFFFFFFFFFFFFFFFFFFFFF7EFFFFFFFFFFFFFFFFFFFFFFBFFF -FFFFFFFFFFF8FFFF8FFFFFFFFFFFFF80 -FFFFFFFFFFFFC7FFFFF1FEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF0FFFF8FFFFFFFFFFFFF80 -FFFFFFFFFFFFCFFFFFE3FFFFFFFDFFFFFFFFFFFFFFFFFFFFFBFFFFFFEBFFFFFFFFFFFFFFFF -FFFFFFFFFFFC3FFF8FFFFFFFFFFFFF80 -FFFFFFFFFFFF87FFFFE3FFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFDFFFFFFFFFFFFFB -FFFFFFFFFFBF03FFE7FFFFFFFFFFFF80 -FFFFFFFFFFFF8FFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5FFFFFFFFFFFFFF -DFBFFFF7FFFD1FFFE7FFFFFFFFFFFF80 -FFFFFFFFFFFF8FFFF5C3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFF -FFFFFFFFFFFF8FFFE7FFFFFFFFFFFF80 -FFFFFFFFFFFF9FFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFC7FFF3FFFFFFFFFFFF80 -FFFFFFFFFFFF9FFFBF1FFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFC7FFF3FFFFFFFFFFFF80 -FFFFFFFFFFFF1FFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFBE7FEFDFFFFFFFFF -FFFFFFFFFFFFE1FFF3FFFFFFFFFFFF80 -FFFFFFFFFFFF3FBFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFEFDF -FFFFFFFFFFFFE17FF3FFFFFFFFFFFF80 -FFFFFFFFFFFF1FFFF8FFFEFDFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFF -FBFFFF7FFFD7A1FFF1FFFFFFFFFFFF80 -FFFFFFFFFFFF1FFFFCFFFFFFF7FF7EFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF9FFFFFFFFFFFF80 -FFFFFFFFFFFE1FFFF1FFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF9FFFFFFFFFFFF80 -FFFFFFFFFFFE7FFBF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF9FFFFFFFFFFFF80 -FFFFFFFFFFFE3FEF81FFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF8FFFFFFFFFFFF80 -FFFFFFFFFFFC7FFFE37EFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFCFFFFFFFFFFFF80 -FFFFFFFFFFFC7FFFEFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFBF3FFFEFFFFBFFF -FFFFFFFFFFFFFFFFFCFFFFFFFFFFFF80 -FFFFFFFFFFFC7FFFFFFFFFFFBF7FFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF7FFE7FFFFFFFFFFF80 -FFFFFFFFFFFCFFFFFFFFFFFFFFFDFFFFFFFFBF7FFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFF -FFDFBFFFFFFFFC3FFF7FFFFFFFFFFF80 -FFFFFFFFFFFCFFFFFFFFFFFFFFFFFFBFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFEFFFFDFFF1FBE7FFFFFFFFFFF80 -FFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFA5FFE7FFFFFFFFFFF80 -FFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF1FFE3FFFFFFFFFFF80 -FFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFFF7EFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFBFFE3FFFFFFFFFFF80 -FFFFFFFFFFF8FFFF1FFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF1FFF3FFFFFFFFFFF80 -FFFFFFFFFFF1BFFFAFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FF -FFFFFFFFFFFFFF8FFF3FFFFFFFFFFF80 -FFFFFFFFFFF1FEFC3FFFFFFFFFFFFFFFFD7FFFFFFFFFFFFFFFF81DFFFFFFFFFFFFFF7EFFFF -BF7FFFFFFFFFFF2FFF9FFFFFFFFFFF80 -FFFFFFFFFFF3FFFF3FFFF9FFFF7FFFFFFFFFFFFFFFFFFFFFFF00000FFFFFFE7FFFFFFFFFFF -FDFEFFDFFFFFFF0FF59FFFFFFFFFFF80 -FFFFFFFFFFF3FFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000002FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFBFF1EFF9FFFFFFFFFFF80 -FFFFFFFFFFE3FFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000001FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF0FFF8FFFFFFFFFFF80 -FFFFFFFFFFE3FFFE7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000000FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFDFFFCFFFFFFFFFFF80 -FFFFFFFFFFE7FFFE3FFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFC0000001FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF8FFFCFFFFFFFFFFF80 -FFFFFFFFFFE7FFFEBFFFFFFFFFFFFFFFFFEFFEFFFFFFFFFFC0000001FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF87FFCFFFFFFFFFFF80 -FFFFFFFFFFC7FFFE3FFFFFFFFFFFFFFE7FFFDFFFFFFFFFFFE0000001FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF8FFFC7FFFFFFFFFF80 -FFFFFFFFFFC7FFDEAFFBFDFEFF7FFFFFFFFFFFFFFFFFFFBFF0000003FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF8FFFE7FFFFFFFFFF80 -FFFFFFFFFFC4FBFE3F7FEFDFBFFFFFFFFFFFFFFFFFFFF7FFF000000FFFFFFFFFFFFFFFFDFF -FFFFFFFFFFFFFFAFFFE7FFFFFFFFFF80 -FFFFFFFFFFCFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFE00007FFFFFFFFFFFEFDFFFF3 -FFFFFFFFFFFFFFDFFFF7FFFFFFFFFF80 -FFFFFFFFFFCFFFFC3FFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFF810FDFFFFFFFFFFF7FFFFFFFF -FFFFFFDFBFFFFFFEFDF3FFFFFFFFFF80 -FFFFFFFFFF9FFFFE3FFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFF071FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF7FFFDFBFF3FFFFFFFFFF80 -FFFFFFFFFF8FFFFF7FFFFFFFFFFFFFFFFFFDFFFFFFFFFFFF81F1FFFFFDFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF3FFFFFFFFFF80 -FFFFFFFFFF9FFFFE3FFFFFFFFFFFFFFFFFBFFFFFFFFFFFFD03F1FFDFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF1FFFFFFFFFF80 -FFFFFFFFFF1FBFFFBFFFFFFFFFFF7FEFFFFFFFFFFFFFFFFC0FF1FFFFFFFFFFFFFFFFFFFFFF -DFFDFFFFFFBFFFFFFFF1FFFFFFFFFF80 -FFFFFFFFFF1FBF7EFFDFBF7FC7FFFFFFFFFFFFFFFFFFFFF03FF1FFFFFFFFFFFFFFF7FFFDFF -FFBFF7FFFFFDFEBFFFFDFFFFFFFFFF80 -FFFFFFFFFF1FBFFFEFFFFDFFFFFFFFFFFFFFFFFFFFFFFFE07FF1FFFFFFFFFFFF7EFFFFFFFF -FFFFFFFFFFFFFF0FDFF9FFFFFFFFFF80 -FFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83DFF1FFFFFFFFFFBFFFFFFFFFFF -FFFFFFFFFFFFFF3FFFF9FFFFFFFFFF80 -FFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07BFF9FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFE3FFFF8FFFFFFFFFF80 -FFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFC78FFFFFFF01FFFF9FFFFFDFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFC7FFFFCFFFFFFFFFF80 -FFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFFFD207FFFFFE07FFFF9FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFC7FFFFCFFFFFFFFFF80 -FFFFFFFFFE3FFFFFC7FFFFFFFFFFFFFFFFF10EFFFFFF81FFFFF1EFFFFFFFFFFFFFFFFFFFFF -FBFFFFFFFFFFF9FFFFFE7FFFFFFFFF80 -FFFFFFFFFE7FFFFFD7FFFFFFFFFFFFFFFFF70FFFFFFF07FFFFF8FFFFFFFFFFFFFFFFF9FFBF -FFFFFFFFFFFFF8FFFFFE7FFFFFFFFF80 -FFFFFFFFFC7FFFFFC7FFFFFFFFFFFFFFDFE71FFFFFFC1FFFFEF9FFFFFFFFFFFFFFDFFFFFFF -FFFFFFFFFFFFFBFFFFFE7FFFFFFFFF80 -FFFFFFFFFCFFFFFFE7FFFF7FFFEFFDFBFFFF1FFFFFF07FFFFFF9FFFFFFFF7FFFFFFFFFFFFF -FFFFFFFFFFFFF1FFFFFE3FFFFFFFFF80 -FFFFFFFFFCFFBF7FE3C7FDFBFFFFFFFFFFFF1FFFFFE0FFFFFFF9FFFFE7FFFFFFFFFFFFFFFF -FFFFFFFFFFFF15FFFFFF3FFFFFFFFF80 -FFFFFFFFF8F7FFFFE3FFFFFFFFFFFFFFFFFE3FFFFF02FFFFFFF9FEFBFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFC1FFFFFF3FFFFFFFFF80 -FFFFFFFFF8FFFFFFEBFFFFFFFFFFFFFFFFFE3FFFEE0EFDFFFFFFBFFFFFFFFFFFFFFF7FFFFF -FFFFFFFFFFFFF7FFFFFF3FFFFFFFFF80 -FFFFFFFFF9FFFFFFF0FFFFFFFFFFFFFFFFFE7FFFE81FFFFFFFCFFFFFFFFFFFFFF7EFFFFBF7 -FFFFFFFFFFFFC7FFFFFFBFFFFFFFFF80 -FFFFFFFFF9FFFFFFF8FFFFFFFFFFFFFFFFFC7FFFE07FFFFFFBFFFFFFFFFF9FFFFFFFFFFFFF -BFFFFFFFFFFFEFFFFFDF9FFFFFFFFF80 -FFFFFFFFF9FFFFFFF8FFFFFFFFFFFFFFFFFC7FFFC0FFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFF -FFFDFFFFFFFF8FFFFFFF9FFFFFFFFF80 -FFFFFFFFF1FFFFFFFC7FFFFFDFFFFFFFFFFC7FFF07FFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF9FFFFFFFFF80 -FFFFFFFFF1FFFFFFFD3FFDEBFFFFFFFFFFFCFFFC1FFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF9FFFFFFFDFFFFFFFFF80 -FFFFFFFFF7FFFFFFF55EFFFFFFFFFFFFFFFEFFF07FFFFFFFFFF1FFFFFFFFFFFFFFFFFBFFFF -FFFFFFFFFFFFFFFFFFFFCFFFFFFFFF80 -FFFFFFFFF3FFBF7FEF0FFFFFFFFFFFFFFFFFFFC0FFFBFFFFFEF9FFFFFFBFFFFFFFFFFFFFFF -FFFFFFFFFCFFFFFFFFFFCFFFFFFFFF80 -FFFFFFFFE3FFFFFFFFD7FFFFFFFFFFFFFFFFFF83FFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFEFFFFFFFFFC7FFFFFFFF80 -FFFFFFFFE7FFFFFFFFCFFFFFFFFFFFFFFFFFFE0FFFFFFFFFBFF8FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF3FFFFFFFFC7FFFFFFFF80 -FFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFF9FFFBFFFFFFFFFFFFFFFFFF -FBF7FFFFFFE3FF7FFFFFE7FFFFFFFF80 -FFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFDE03FFFFFFFD7FFF9FF7FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFC3FFFCFFFFE7FFFFFFFF80 -FFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF17FFFDEBDFE7FFFFFFFF80 -FFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF87FFFDFFFFE3FFFFFFFF80 -FFFFFFFFCFFFFFFFFFFE3FFFFFFBFDFF7FBC1FFFFFFFFFFFFFF93FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFA3F7FFFFFFFE3FFFFFFFF80 -FFFFFFFFCFFFFFFFFFFE3DFFFF7FFFFFFFE87FFFFFFF7FFFFFF1FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF43FFFFFFFFFF3FFFFFFFF80 -FFFFFFFF8FFFFFFFFFDE0DFFFFFFFFFFFFE0FFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFF7F -FFFFDFFBF0FFFFFFFFFFFBFFFFFFFF80 -FFFFFFFF8FFFFFFFEFDF83FFFFFFFFFFFF03FFFFFFFEFF7FFFE0FFFFFFFFFFFFFFFFFFEFFF -FFFFFFFFF4FFFFFFFFFFF9FFFFFFFF80 -FFFFFFFF8FF7FEFFFFFF83FFFFFFFFFFFC0FFFFFFFFFFFFFFFF8FCFFFFFFFFFFFFFFFFFFFF -FFFFFFFFE1FFFFFFFFFFF9FFFFFFFF80 -FFFFFFFF9FFFFFFFFFFFE1FFFFFFFFFFF81FFFFFFFFFFFFEFFF8FFF3FFFFFFFFFFFEFFFFFF -FBFFFFFFA7FFFFFFFFFFF8FFFFFFFF80 -FFFFFFFF1FFFFFFFFFFFF0FFFFFF3FFFE0FFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFBFFFFFF -7FFFFFFF0FFFFFFFFFFFFCFFFFFFFF80 -FFFFFFFF3FFFFFFFFFFFF0BFF000003F01FFFFFFFFFFFFFFFFF0BFFFEFFFFFFFFFFFFFFFBF -FFFFFFFE3FFFFFFFFFFFFCFFFFFFFF80 -FFFFFFFF3FFFFFFFFFFFFC3F002FC00201E3FFFDFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF3FDFFFFFFFFFFCFFFFFFFF80 -FFFFFFFE3FFFFFFFFF7EF70403FFFFE01FFFDFFFFFEFFFFFFFF97EFFFFFFFFFFFFFFFFFFFF -FFFFFFFDFFFFFFFFFFFFFEFFFFFFFF80 -FFFFFFFE3FFFFFE7FFFFFD007FFFFFFE3FFFFFFFFFFFDFBFFFF9FFFDFFFFFEFFFF9FFFFFFF -FFFFDE7FFFFFFFFFFFFFFE7FFFFFFF80 -FFFFFFFE6FFCFFFFFFFFFFC3FFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFE -FFFFFFBFFFFFFFFFFFFF7E7FFFFFFF80 -FFFFFFFE7FFFFFFFFFFFFFC7FFFFFFFF9FFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFC7FFFFFFFFFFFEFFE7FFFFFFF80 -FFFFFFFE4FFFFFFCF8F1FFDFFFFFFFFFCFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFF -FFFFFD1FFFFFFFFFFFFFFE3FFFFFFF80 -FFFFFFFC7FFFFFF860C1FFDFFFFFFFFFCFFFFFFFFFFFFFFFFFDFBFFFFFFFFFFFFFFFFFAFFF -FFFFE07FFFFFFF7FFFFFFF3FFFFFFF80 -FFFFFFFC7FFFFFF44819FF9FFFFFFFFFCFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF7FFFF -FFFFE8FFFFF7EFFFFFFFFF3FFFFFFF80 -FFFFFFFCFFFFFFEC1C39FFDFFFFFFFFFCFBFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFF7FFFFFFF -FFFF03FFFFFFFFFFFFFFFF1FFFFFFF80 -FFFFFFFCFFFFDFEC3871FFDFFFFFFFFFCFFFFFFF7EFFFFFFFFF9FFFFFFFCFFFFBFFFFFFFFF -FFFC1FFF7FFFFFFFFFFFFF1FFFFFFF80 -FFFFFFF9FFFFFFFC3871FF87FFFFFFFF8FFFFFFFFFFFDFFFFFF9FFFFFFFFFFFFFFFFFFFFFF -7EB91FFFFFFFFFFFFFFFFF9FFFFFFF80 -FFFFFFF8FDFFFFFC38E1FFC0FFFFFFFC0FFFFFFFFFFFFFBFFFF9FFFFFFFFFFFFFFFFFFFFEF -FFE0FFFFFFFFFFFFFFFFFF9FFFFFFF80 -FFFFFFF9FFFFFFF878E1FFCB7FFFFFF20FFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFF -FF8BFFFFFFFFFFFFFFFFFF9FFFFFFF80 -FFFFFFF1FFFFFFF871C3FFC1FFF9FFFD0FFFFFFFFFFFFFFEFFF8FFFFFFFFFFFFFFFF7EFFFF -FFC7FFFFFFFFFFFFFFFFFF8FFFFFFF80 -FFFFFFF3FFFFFFF8F1E3FFC4FF2483FC0FFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFF7FFFFF -FFFFFFFFFFFFFFFFFFFFFF8FFFFFFF80 -FFFFFFF3FFFFFFF8E3C37FC17E9005F20F7FFFFFFFFFFFFFFFF8BF5FFFFFFFFBF7FEFFFFFF -8FFFFFFFFFFFFFFFBFFFFFCFFFFFFF80 -FFFFFFF3FFFFDFF1E3C47FC1FF8003FC8FFDFBFFFFFFFFFFFFF9FFFFFBFFBF7FFFFFFFFFF7 -0FFFFFFFFFFFFFFFFFFFFFCFFFFFFF80 -FFFFFFF3FFEFFFF0E3C4FFC4DB0493FC0FFFFFFFBFFFFFFFFFF9FFFFFFFFFFFFFFFFF01804 -0FFFFFFFFFF7FFFFFFFFFFC7FFFFFF80 -FFFFFFE2FFFFFFF1C3E1FFC17C8005F21FFFFFFFFEFDFFFFFFF9FFFFFFFFFFFFFFFF800001 -7FFFFFFF7EFFFFFFFFFFFFE7FFFFFF80 -FFFFFFE7FFFFFFF3E7E2FFE17E8007F83FFFFFFFFFFFF7FFFFF8FFFFFFFFFFFFFFFFC00028 -7FFFFFEFFFFFFFFFFFFFFFE7FFFFFF80 -FFFFFFE7FFFFFFFFFFFFFFF81B2013609FFFFFFFFFFFFFBFFFF8FFFFFFFFFFFFFFFF80000F -DFFFFFFFFFFFFFFFFFFFFFE7FFFFFF80 -FFFFFFE7FFFFFFFFFFFFFFFE0000000781FFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFC0007B -FFFFFFFFFFFFFFFFFFFFFFE7FFFFFF80 -FFFFFFE7FFFFFFFFFFFFFFF7E000003E207FFFFFFFFFFFFFFDF8FFFFFFFFFFFFFFFFC0005F -FFFFFFFFFFFFFFFFFFFFFFE3FFFFFF80 -FFFFFFEFFFFFFFFFFFFFFFFFFFD03FFFE051EFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFF0003FF -FFFFFFFFFFFFFFFFFFFFFFE3FFFFFF80 -FFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFF1FBFFFFFFFFFF8FFFFFFFFFFFFF7F8100FFF -FFFFFFFFFFFFFFFFFFFFFFF3FFFFFF80 -FFFFFFCF7FFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFBFFFFFFFFF8EFDFFFFFFFFFFF02000FFF -FFFFFFFFFFFFFFFFFFFFFFF3FFFFFF80 -FFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03F7FEFFFFFFFF8FFFFFFFFBF7FE140E07FFF -FFFFFFFFFFFFFFFFFF7FBFE3FFFFFF80 -FFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC081FFFFFFFFFFFDFFFFFFFFFE7FE81FE17FFF -FFFFFFFFFFFFFFFFEFFFFFF3FFFFFF80 -FFFFFFCFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFC207FFFDFBFFFFFFFFFFFFFFE1FC3FFF1FFFF -FFFFFFFFFFFFFFFFFFFFFFF3FFFFFF80 -FFFFFFCFFFFFFF7FFFFFFFFBF7FFFCFBFFBFFFC047EBFFFFFFFFFFFFFFFFC0A7FFFFFFFFFF -FFFFFFF9FFFF7FFFFFFFFFF3FFFFFF80 -FFFFFFCFFFFFEFFFFFFFFFFFFFFFFFFFFFFEFFFEFF881F3FFFFFFFFFFFE8102FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFE3FFFFFF80 -FFFFFFCFFFF7FFFFFFFFFFFFFFFFFFFFFFFEFFFFFFC2816FF1FAFDBE1F8B07EFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFE3FFFFFF80 -FFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8201FC50281009FEAFFFFFFFFFFFFFF -F9FFFFFFFFFFFFFFFFFFFFE3FFFFFF80 -FFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAFDFE9C7E05020003FFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFE3FFFFFF80 -FFFFFFCFFFFFFFFFFFBFFFE7FFFFFFFFFFFFFFFFFFFFFFFFFE580F53FFFFFFFFFFFFFFFF9F -FFFFFFFFFFFFFFFFFFFFFFE3FFFFFF80 -FFFFFFCFFFFFFFEBFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFF8FFF7FFFFFFFFFFFFF1FFFF -FFFFFFFFFFFFFFFFFFFFFF43FFFFFF80 -FFFFFFCFFFFE7FFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFBFFFFF8FFFFEFFFFFFFFF7FFFFFFF -FFFFFFFFFFFFFFFFFFFFBFC3FFFFFF80 -FFFFFFCFFFDFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFF8FFFFFFFF7FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFBFFFF83FFFFFF80 -FFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFBFFFFFFF83FFFFFF80 -FFFFFFC7FFFFFFDFBFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFBFF8FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFF03FFFFFF80 -FFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFDF8FFFFFFFFFFFFFFFFFFFFFF -FFFFFFCFFFFFFFFFFFFFFE03FFFFFF80 -FFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFF -FFF9FFFFFFFFFFFFFFFFFC63FFFFFF80 -FFFFFFC3FFFFF3FFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFF -FE7FFFFFFFFFFFFFFFFFF843FFFFFF80 -FFFFFFC1FFFDFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFF8AFFFFFFFFFFFFFFFFFFFFF -9FFFFFFFFFFFFFFFFFFFE063FFFFFF80 -FFFFFFC0FFBFFFFFFFFFFFFFFFFFFFBFFFFFFFFC7FFFFFFFFFF8FFFFFFFFFFFFFFFFFFFBF7 -FFFFFFFFFFFFFFFFFFFC0343FFFFFF80 -FFFFFFC07FFFFFFFFFFFFFFFFFFFFFFF7FFFFFBF7FFFFFFFFFF8FFDFFFFFFFFFFFFEFCFEBF -5FBFFFF7EBE4F000000003C3FFFFFF80 -FFFFFFCC0FFFFFFFFFFFFFFFFFFFFFFFFFFFF3EF78FFFFFFFFF8FFFDF1F5FA7C020C000000 -000000000000000000001AF3FFFFFF80 -FFFFFFC607FFFFFFFFFFFFFFFFFFF1FBFDF8FFBE5C0717C200000000000000000000000000 -000000000000000000045EB3FFFFFF80 -FFFFFFC400FFFFFFEFD7FFD2E0500000000000000000000000000000000100000080000000 -0000042A1D2E1F03C3E3F0E3FFFFFF80 -FFFFFFCF000000000000000000000000000000000000000004000000100307A9D3A850F078 -FD7E9F4FD7EBF5FAF58E3C23FFFFFF80 -FFFFFFC57800000400000000000000000000200061707C7EBD081FCFF7CAF1E3D43E7FBFD7 -EFD7FDFAFDFEBD7F87CFF5E3FFFFFF80 -FFFFFFCF5F800004000D0A1D0E170F8781F1E07C3E5FBF5FAFC025FAFD7EBF4F97EBF7EBF5 -F9FCBE5EAFC7ADFBFD7EFD67FFFFFF80 -FFFFFFCFF7E970B87E3E1F87D3F1FA851A354A8F0BC7EBF5FF783F5FAF5FFFCBF5FAFD7EBF -6FD7AA74EBF7FD7EBF5FA7C7FFFFFF80 -FFFFFFCE7F3F97EBD5E87DBF5EB95F8FCFE5F3F578F51EFDFFD7AAF7F9FCFF5FBFDFEFFFF5 -F8F17E7F3F9FEFD7EBF5F8C7FFFFFF80 -FFFFFFC3F7FAB57AFD3E7F2F87A9F5F97EBF5EBF5F8FC3E5FAFD7E752FDFEFD7EBF1F9FC3C -1EAF5FAFFBFDFAFDFE3D2B8FFFFFFF80 -FFFFFFC2FD7E1F4F87EBF5EAF5FAFD3E1EAFD7EBF4FD7EBC7EBF5F85C3F5FAF53E5FAFD78B -57EBF2F97EBF5FAFCB956A8FFFFFFF80 -FFFFFFE7A7C7FDF2FD7EBD5E9F0FE1C39478F5FEFFBFD7EFD1E9FEFD5EBD5FBF4FF5E8F57A -7F3F5FAFD7AF76F972BD7E8FFFFFFF80 -FFFFFFE0F0FCBE5DAFD7A1D6ED78B15A3F1E878BF5FBF5FA7DAE57AFD781F0F97E3C5A874F -D7EBF5E8FCFE7C2B57AFF71FFFFFFF80 -FFFFFFE14F97EAF5EBD47874AE1FAF53A1D2F55ABD7ABF7F97C3D5FA7C3C5CA9062FD7E7F2 -FD7EBD5E878E9563F5FAFC1FFFFFFF80 -FFFFFFF1FAF57AFD3E0FCFD7AA75AB54385E2F5FA1C3FDFAFD781D7FBFEFD5E1F4FA7EBF5F -AFD7AD78E1FABD7E9F4FF43FFFFFFF80 -FFFFFFF35F8703E5C2E5F2F17E7F0F1FE3C7E8F4F870BF5FBFD8A573FDFEBD7EBFEFD7EFF5 -E9F4AC1EAF5FAFDFFDEAF07FFFFFFF80 -FFFFFFF0D1EBF2F97CBF1EAFD7A1C2F5FAFD1E3F2FC78BF5FBF8FF72BF5FAFCFE5FAF57EBD -3AC7ABD7EBF5F9FCBF5F80FFFFFFFF80 -FFFFFFF87F3FDFABD5EA50EFF0AD7EBF5FA7FAF17AFD4A3DFFD02FD5E3F4FE7EBF5FAF4F85 -63E5F8FC3E1F0FD7EBD403FFFFFFFF80 -FFFFFFFC37FBF5FAFDFE3F2F15AFD7EBFFFD7EB8038F0785E3F07AFD6A1D2F178BC1E07038 -180C000000000000000007FFFFFFFF80 -FFFFFFFE3D7EBC7F87CAB5EA35FAFC7E1F2F57AB03E970A050B80E07020000000000000000 -000000000000000000001FFFFFFFFF80 -FFFFFFFF0FD78FF3E142BD3E1D0F8742804040000000000000000000000000000000000000 -0000000000000000000DFFFFFFFFFF80 -FFFFFFFF80F0387C0000000000000000000000000000000000000000000000800000000000 -00000040000010080FFFFFFFFFFFFF80 -FFFFFFFFE00000000000000000000000000000000000000000000000000810000406020100 -80402002010205038FFFFFFFFFFFFF80 -FFFFFFFFF80000000000000000000000000000000100814080000000150201004068102814 -881401428170B47A0FFFFFFFFFFFFF80 -FFFFFFFFFF8000000000000000300804020120902010281C0C000142A152B548140A150A01 -8050A8140152A5439FFFFFFFFFFFFF80 -FFFFFFFFFFFFFF805028140D02810281C28068340A050340A8502050385A0D028140203810 -28140A040301A1F01FFFFFFFFFFFFF80 -FFFFFFFFFFFFFF8A54AA540170A0583D0E8502810204001028100B0001C0A840A000000207 -0281E06000140A151FFFFFFFFFFFFF80 -FFFFFFFFFFFFFF82D0E8540E10035081408040B0180C00810000603038101C040201A05020 -10285285028502C11FFFFFFFFFFFFF80 -FFFFFFFFFFFFFF8A140A0403018010381C0E0603028140804020120502814280200428140A -140340A040A41A941FFFFFFFFFFFFF80 -FFFFFFFFFFFFFF828140E01020020542010280601028140B00A040A152B158040A05028100 -10080000000900811FFFFFFFFFFFFF80 -FFFFFFFFFFFFFF9C281688100142A150A008140285005102D0A050080601408140A0403000 -040801C0C06834281FFFFFFFFFFFFF80 -FFFFFFFFFFFFFF850B01E01028502810010001408010300A0400010200885008140E060141 -81C0E052002A150B1FFFFFFFFFFFFF80 -FFFFFFFFFFFFFF842A14081402070000A04000040302A14080402060300A0502C0A8542850 -285C2F068142F17A1FFFFFFFFFFFFF80 -FFFFFFFFFFFFFF8F0A8540206034181C0A05020420D0A8542C160742A1408140B42A170B05 -81C0E0500058AC5A9FFFFFFFFFFFFF80 -FFFFFFFFFFFFFF81D0A850005281028540C1601428150B54AB50A150B8500C0A0102010214 -28140A04030181D09FFFFFFFFFFFFF80 -FFFFFFFFFFFFFF8954AE540150A0500C0A050205028100D02814030383C080002040381005 -028040C000342A141FFFFFFFFFFFFF80 -FFFFFFFFFFFFFF83C1E85028102002050080407070380C0502850280683038140E0781D0A1 -402050AD028702C19FFFFFFFFFFFFF80 -FFFFFFFFFFFFFF8ABC0A040A01028008200A0420040B00A1C0E0780D0A8542852AD1687028 -160D42A140A17ABD1FFFFFFFFFFFFF80 -FFFFFFFFFFFFFF87A1C0E0183458B50A050A8560D028142816A856A142A178340A050A0100 -C0A05020402F07831FFFFFFFFFFFFF80 -FFFFFFFFFFFFFF84A854A8160F02A140B078150A970A0400C1E07028100D020140A0002058 -1C0A070281E8F4681FFFFFFFFFFFFF80 -FFFFFFFFFFFFFF870B85E050A870B8182C1E07028100101804080702810180005020160142 -8140A060807A1D0A1FFFFFFFFFFFFF80 -FFFFFFFFFFFFFF856AD528140A050201A0D028502900800081402170340A050A00AA542050 -A85E0C068142817A1FFFFFFFFFFFFF80 -FFFFFFFFFFFFFF8C1E07000140B0081C0A040A1703C18050AC18250281428142F068140A10 -81C0A04020503C1C1FFFFFFFFFFFFF80 -FFFFFFFFFFFFFF81D0E0502152BD0A0542C160F02A1408540B102140A0780C0E0402050200 -00802804000583C19FFFFFFFFFFFFF80 -FFFFFFFFFFFFFF885C2E140342A1401842850A01028100C0E0102000020000000040A0180C -0A854285409568141FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFC3C1E0D0201028100800810020703C18050E00038500F068140E068341A1 -40E150B400150B851FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFC2B0580406050381C040201428502B0083C0E0703C1A950A850AC1E07038 -1C09068100A142A11FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFC78740E062843AB40A150A85A25028142814A0060102C140B00A050A8100 -800040E0402817871FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFC4A850A85E0F028142A160F528140A070B80E040281008002C028140A050 -0418050B81A3D5EA1FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFC40E178050A970A00018140706010281000400040A0503802070A85C2900 -81008142E0783C3A1FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFC1C2E160103A150A018050E0702050210687000160B43A14080402140040 -A85C2C0A0142854A1FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFC81E0F000542A14A9568542A140B40A1D0A8502542AD0285C2E060742814 -08160810A070381C1FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFC354A9402170BC1A0D0A8540302A10285C2E0003438150A00A0402070201 -80C0007420170B559FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFC0542E140702A14081408108350A0103C1E0402800081400008050A0501C -0A850A85009568F41FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFC284EBC0285020100C140703814020522D0A040A0583D060542814210609 -00A140F040150A851FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFC2E170301A05038102D0E85028143C0681428040B55A3C0A050200804020 -00000084008703C11FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFC68F42A042A542B4583C0A050345A0002040000000000000000000000000 -0000000000281C0F1FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFC5A3D0E0582C020400000000000000000000000000000000000000000000 -00000000012B55A31FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFC43E160800000000000000000000000000000000000000000090F9FFFFFF -FFFFFFFFF960F43A1FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFC14AC1400000000000000000000078BFFFFFFC7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF94A854A1FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFC05A3D00035BFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF8C0E0781FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFC156AF40FFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF8142A541FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFC0D4A854FFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF885EBD41FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFC2170A14FFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF8B53A951FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFC3E1E0F0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF88703811FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFC6AD5EACFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF8F85C2B1FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFC7A3C0E0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF82A178B1FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFC43A1C28FFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF8E2D52A1FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFC70A8540FFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF87ABD0A1FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFC178BD58FFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF8C1E1D01FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFC15EAF00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF850285C1FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFC1D0E850FFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF895ABD11FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFC01C0E14FFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF8F5781C1FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFC681C0F0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF82F06831FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFE2AD5EACFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF8A854291FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFE78B42E0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF83A1F0F1FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFE1EA7428FFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF823D5EA3FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFE50E8700FFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF8783C1E1FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFE1F0F558FFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC43A1C03FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFE05E2F08FFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFCD1E85C3FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFE1D0E850FFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC178BD53FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFE2F47E18FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFCA5EAF43FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFE28742F0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC3D1E8F3FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFE2A170B8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC2BD7A13FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFE60F06A0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC7A5E2F3FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFE1E2D0F0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC0B97823FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFE01E0D08FFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC70BC1A3FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFE1C2A560FFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC57AB523FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFE15C3D58FFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC55E8FC3FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFE3D6A950FFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC170BD43FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFE0F07A78FFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC05C2F03FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFE2854A80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC3C5E3D3FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF2A170B0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC2B57A13FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF00F0680FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC787C3E3FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF183C1E1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC0A950B3FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF15A1D09FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC50B01A3FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF14E85C1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC56AD5E3FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF1D0BD59FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC45A1D03FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF0162E10FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC1428143FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF2E1E871FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC07C3C03FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF2A55E91FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC3D5AAC3FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF2A1E0F1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC2F17A13FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF0385CA1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC2854283FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF10A85A1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC381D0E3FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF16AB569FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC42A1483FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF11E8541FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC50AD1E3FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF1D0E071FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC0783D03FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF0142E01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC3438143FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF0C5E8F1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE0F03803FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF0B57A31FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE2952A03FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF085C2E1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE3E16A43FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF0E854A1FFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE23C5E83FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF00E0781FFFFFFFFFFFFFFFFFFFFFFFFFFF8000007FFFFFFFFFFFFFFFFFF -FFFFFFFFFE781C1E3FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF16AF569FFFFFFFFFFFFFFFFFFFFFFFFFE036C1B6C1FFFFFFFFFFFFFFFFF -FFFFFFFFFE43A16A3FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF01E0F01FFFFFFFFFFFFFFFFFFFFFFFFE3DBE41BFFE1FFFFFFFFFFFFFFFF -FFFFFFFFFE70B85C3FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF1D2E1D1FFFFFFFFFFFFFFFFFFFFFFFF1FFFF02DB7FC7FFFFFFFFFFFFFFF -FFFFFFFFFE17ABD07FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF0743E51FFFFFFFFFFFFFFFFFFFFFFFDFFFFFC1FFFFFDFFFFFFFFFFFFFFF -FFFFFFFFFE15A8F47FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF0C5EAF1FFFFFFFFFFFFFFFFFFFFFFF3FFFF6C1FFFFFE7FFFFFFFFFFFFFF -FFFFFFFFFE1D0E847FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF8F57AB1FFFFFFFFFFFFFFFFFFFFFFEFFFFFFA2DBFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE2F42E07FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF88742A1FFFFFFFFFFFFFFFFFFFFFFDFFFFFFE3FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE3C1E0C7FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF8E0F0A1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFDFFFFFFFFFFFFFF -FFFFFFFFFE0BD5E07FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF80E1781FFFFFFFFFFFFFFFFFFFFFFBFFFFFFF7FFFFFFDFFFFFFFFFFFFFF -FFFFFFFFFE38FC3A7FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF9EAF5E1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFDFFFFFFFFFFFFFF -FFFFFFFFFE1BADCA7FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF87E1D01FFFFFFFFFFFFFFFFFFFFFFBFFFFFFC9BFFFFFDFFFFFFFFFFFFFF -FFFFFFFFFE10F9787FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF857AFD1FFFFFFFFFFFFFFFFFFFFFFBFFFFFFE2DFFFFF9FFFFFFFFFFFFFF -FFFFFFFFFE142F567FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF8F4FA71FFFFFFFFFFFFFFFFFFFFFFBFFFFFFA2DFFFFF9FFFFFFFFFFFFFF -FFFFFFFFFF05C2F07FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF8956BD1FFFFFFFFFFFFFFFFFFFFFF9FFFDB64937FFFE9FFFFFFFFFFFFFF -FFFFFFFFFF3D1E847FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF8E1E2F1FFFFFFFFFFFFFFFFFFFFFF9FFFFFFE07FFFFF1FFFFFFFFFFFFFF -FFFFFFFFFF0FC7E07FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF80D4E81FFFFFFFFFFFFFFFFFFFFFFA6FFFFDB64FFFF91FFFFFFFFFFFFFF -FFFFFFFFFF385EAC7FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF8A3D1E1FFFFFFFFFFFFFFFFFFFFFF89FFFFFC9BFFFF41FFFFFFFFFFFFFF -FFFFFFFFFF0F17A07FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF82A1521FFFFFFFFFFFFFFFFFFFFFF893FFFFFFFFFFF11FFFFFFFFFFFFFF -FFFFFFFFFF02F47A7FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF80B85E1FFFFFFFFFFFFFFFFFFFFFF86DFFFFFFC9FFD91FFFFFFFFFFFFFF -FFFFFFFFFF1AAD0E7FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF878B541FFFFFFFFFFFFFFFFFFFFFF80FFFE241A6FFF49FFFFFFFFFFFFFF -FFFFFFFFFF03E1D07FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF85E0F41FFFFFFFFFFFFFFFFFFFFFF893FDB24806FFFC1FFFFFFFFFFFFFF -FFFFFFFFFF143C5C7FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF8F0E871FFFFFFFFFFFFFFFFFFFFFF80DFFC10241BFD91FFFFFFFFFFFFFF -FFFFFFFFFF07C3C07FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF8B52E11FFFFFFFFFFFFFFFFFFFFFF80FFFC00007FFF41FFFFFFFFFFFFFF -FFFFFFFFFF3D5ABC7FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF8E1E0F1FFFFFFFFFFFFFFFFFFFFFF8937DB04926FFF01FFFFFFFFFFFFFF -FFFFFFFFFF1F4FA47FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF8BD46A1FFFFFFFFFFFFFFFFFFFFFF80FFFC80049BFD91FFFFFFFFFFFFFF -FFFFFFFFFF0854B87FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF8ABC1A1FFFFFFFFFFFFFFFFFFFFFF86DFFC00001FFF01FFFFFFFFFFFFFF -FFFFFFFFFF1E17087FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF8EA5421FFFFFFFFFFFFFFFFFFFFFF8937D8241A6FFF01FFFFFFFFFFFFFF -FFFFFFFFFF03E5E87FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF80F8781FFFFFFFFFFFFFFFFFFFFFF80FFFC002093FD91FFFFFFFFFFFFFF -FFFFFFFFFF1ABD5E7FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF8E0F171FFFFFFFFFFFFFFFFFFFFFF86DFFC00001FFF01FFFFFFFFFFFFFF -FFFFFFFFFF03A1C07FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF85E2F01FFFFFFFFFFFFFFFFFFFFFF8137D924936FFB41FFFFFFFFFFFFFF -FFFFFFFFFF14B85C7FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF8D1EA51FFFFFFFFFFFFFFFFFFFFFF807FFC00001BFD81FFFFFFFFFFFFFF -FFFFFFFFFF15CBD47FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF8F42E11FFFFFFFFFFFFFFFFFFF9FF94DFF400041BFE01FFFFFFFFFFFFFF -FFFFFFFFFF05EAF47FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFF8874281FFFFFFFFFFFFFFF3FFF0FF817FF904936FFB41FFFFFFFFFFFFFF -FFFFFFFFFF1D5EAC7FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFCE970B1FFFFFFFFFFFFFFF3FFF1FF803FF800001FFE91FFFFFFFFFFFFFF -FFFFFFFFFF0BC5E07FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFC0F47A1FFFFFFFFFFFFFFF1FFF1FF86DFF4800093FC91FFFFFFFFFFFFFF -FFFFFFFFFF1A1C2C7FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFC6AF5E1FFFFFFFFFFFFFFF9FFF3FF803FF804022FFB41FFFFFFFFFFFFFF -FFFFFFFFFF0395E87FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFC0E1701FFFFFFFFFFFFFFF8FFF3FF8037F800001FFF81FFFFFFFFFFFFFF -FFFFFFFFFF90BC7C7FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFC40F561FFFFFFFFFFFFFFF8FFE3FF82DFF400249BFC91FFFFFFFFFFFFFF -FFFFFFFFFF83A1D07FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFC542F11FFFFFFFFFFFFFFD8FFE3FF807FF800006FFE01FFFFFFFFFFFFFF -FFFFFFFFFF81E8F47FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFC55EB51FFFFFFFFFFFFFFDCFFE3FF8937F900016FFF01FFFFFFFFFFFFFF -FFFFFFFFFF8D0BD47FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFCF47E11FFFFFFFFFFFFFFFC7FE3FF805FF600249BFC91FFFFFFFFFFFFFF -FFFFFFFFFF85CAF47FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFC0703A3FFFFFFFFFFFFFFBC7FE3FF80FFF400003FFF01FFFFFFFFFFFFFF -FFFFFFFFFF8D5EAC7FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFCE170B1FFFFFFFFFFFFFFFC7DE3FF8937F824023FFF01FFFFFFFFFFFFFF -FFFFFFFFFF89C1A87FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFC2F57A1FFFFFFFFFFFFFFFC7BE7FF82FFF400209BFC91FFFFFFFFFFFFFF -FFFFFFFFFF883C3C7FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFC2BD1E3FFFFFFFFFFFFFFFE7FC7FF86DFF600001FFF01FFFFFFFFFFFFFF -FFFFFFFFFF8A95087FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFC2E1F03FFFFFFFFFFFFFF7E3FC7FF8937F924892FFB41FFFFFFFFFFFFFF -FFFFFFFFFF82BC7C7FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFC42A543FFFFFFFFFFFFFFFE3FC7FF807FFC00041BFD91FFFFFFFFFFFFFF -FFFFFFFFFF9EAF547FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFC70BC53FFFFFFFFFFFFFFFE2FC7FF92DFF400001FFF01FFFFFFFFFFFFFF -FFFFFFFFFF81E1F07FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFC57AB53FFFFFFFFFFFFFEFE1FC7FF8137F920C12FFB21FFFFFFFFFFFFFF -FFFFFFFFFF8D0A947FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFC70F873FFFFFFFFFFFFFEFE1FC7FF803FFC00001FFE91FFFFFFFFFFFFFF -FFFFFFFFFF85C3E07FFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFC054E83FFFFFFFFFFFFFCFE3F87FF96DFF601209BFE81FFFFFFFFFFFFFF -FFFFFFFFFF8D7EBCFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFE2170F3FFFFFFFFFFFFFCFF7F87FF89BFF924092FFB01FFFFFFFFFFFFFF -FFFFFFFFFF8F17A0FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFE2F57A3FFFFFFFFFFFFF8FF7F03FF88B7F800001FFE91FFFFFFFFFFFFFF -FFFFFFFFFF88F428FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFE0BD5E3FFFFFFFFFFFFFFFFFFFFFF82DFF601009BFE91FFFFFFFFFFFFFF -FFFFFFFFFF8ABD08FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFE7A1D03FFFFFFFFFFFFFFFFFFFFFFC03FF804092FFB24FFFFFFFFFFFFFF -FFFFFFFFFF82F178FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFE178743FFFFFFFFFFFFFFFFFFFFFF893FFD00003FFFC0FFFFFFFFFFFFFF -FFFFFFFFFF8E2E1CFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFE70F873FFFFFFFFFFFFFFFFFFFFFF825FF608041BFC80FFFFFFFFFFFFFF -FFFFFFFFFF85E3F0FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFE16AF03FFFFFFFFFFFFFFFFFFFFFFC0FFFC00003FFB20FFFFFFFFFFFFFF -FFFFFFFFFF856AFCFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFE70E873FFFFFFFFFFFFFFFFFFFFFFC937F926C03FFF00FFFFFFFFFFFFFF -FFFFFFFFFF87CBE0FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFE3D5EA3FFFFFFFFFFFFFFFFFFFFFFC0FFF601209BFE91FFFFFFFFFFFFFF -FFFFFFFFFF8952BCFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFE27C2F3FFFFFFFFFFFFFFFFFFFFFFC2FFFE00001FFB00FFFFFFFFFFFFFF -FFFFFFFFFF8E1788FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFE2F56A3FFFFFFFFFFFFFFFFFFFFFFC837F924093FFB01FFFFFFFFFFFFFF -FFFFFFFFFF8AF5E8FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFE0F87A3FFFFFFFFFFFFFFFFFFFFFFC0FFFE00209BFE91FFFFFFFFFFFFFF -FFFFFFFFFF8A3D18FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFE7AF563FFFFFFFFFFFFFFFFFFFFFFC27FF600005FFF00FFFFFFFFFFFFFF -FFFFFFFFFF83E1F8FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFE1E9F43FFFFFFFFFFFFFFFFFFFFFFC137F920C12FFB20FFFFFFFFFFFFFF -FFFFFFFFFFC0BC1CFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFE50F863FFFFFFFFFFFFFFFFFFFFFFC13FFE00001FFE80FFFFFFFFFFFFFF -FFFFFFFFFF87ABD0FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFE1C2F03FFFFFFFFFFFFFFFFFFFFFFD07FF608001FFE00FFFFFFFFFFFFFF -FFFFFFFFFFC5EAF4FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFE05E2F3FFFFFFFFFFFFFFFFFFFFFFC1B7F926413FFB04FFFFFFFFFFFFFF -FFFFFFFFFFCF0F84FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFE217AB3FFFFFFFFFFFFFFFFFFFFFFC8BFFC00001FFE90FFFFFFFFFFFFFF -FFFFFFFFFFC1C0E0FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFE2742A3FFFFFFFFFFFFFFFFFFFFFFC24FF641205FFE80FFFFFFFFFFFFFF -FFFFFFFFFFCE1F08FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFE2970A3FFFFFFFFFFFFFFFFFFFFFFC03FFC060927FB04FFFFFFFFFFFFFF -FFFFFFFFFFC2D5E8FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFE0F0783FFFFFFFFFFFFFFFFFFFFFFC137FD00001FFF00FFFFFFFFFFFFFF -FFFFFFFFFFC0BC38FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFE2AF563FFFFFFFFFFFFFFFFFFFFFFC27FF648001FFE81FFFFFFFFFFFFFF -FFFFFFFFFFC3A1E0FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFE1EAF43FFFFFFFFFFFFFFFFFFFFFFC0FFFD20403FFB21FFFFFFFFFFFFFF -FFFFFFFFFFC1F878FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFE16AB43FFFFFFFFFFFFFFFFFFFFFFC1BFFD20412FFF01FFFFFFFFFFFFFF -FFFFFFFFFFC58FD0FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFE103E03FFFFFFFFFFFFFFFFFFFFFFC06FF608001FFE91FFFFFFFFFFFFFF -FFFFFFFFFFC5EAF0FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFE078383FFFFFFFFFFFFFFFFFFFFFFE0EFFC00003FFB03FFFFFFFFFFFFFF -FFFFFFFFFFC50E80FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF2170A7FFFFFFFFFFFFFFFFFFFFFFE0B7FD26093FFF03FFFFFFFFFFFFFF -FFFFFFFFFFC3C3E0FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF0743A3FFFFFFFFFFFFFFFFFFFFFFF0FFF240005BFEC7FFFFFFFFFFFFFF -FFFFFFFFFFCA1E28FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF2170E3FFFFFFFFFFFFFFFFFFFFFFF27FFE00001FFF07FFFFFFFFFFFFFF -FFFFFFFFFFC3D5E8FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF0A1507FFFFFFFFFFFFFFFFFFFFFFF8BFFD324937FB0FFFFFFFFFFFFFFF -FFFFFFFFFFC2F478FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF0A8563FFFFFFFFFFFFFFFFFFFFFFFC7FF600005BFE9FFFFFFFFFFFFFFF -FFFFFFFFFFC6AF50FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF183507FFFFFFFFFFFFFFFFFFFFFFFE7FF608001FFE3FFFFFFFFFFFFFFF -FFFFFFFFFFC1E870FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF16AB47FFFFFFFFFFFFFFFFFFFFFFFF3FFDA04137F87FFFFFFFFFFFFFFF -FFFFFFFFFFC52A50FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF102807FFFFFFFFFFFFFFFFFFFFFFFFCFFE00001FF1FFFFFFFFFFFFFFFF -FFFFFFFFFFE5E2F0FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF050387FFFFFFFFFFFFFFFFFFFFFFFFE1F240001FE7FFFFFFFFFFFFFFFF -FFFFFFFFFFE51E80FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF0162A7FFFFFFFFFFFFFFFFFFFFFFFFF8FD0609368FFFFFFFFFFFFFFFFF -FFFFFFFFFFE747A0FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF0F42A7FFFFFFFFFFFFFFFFFFFFFFFFFF080000007FFFFFFFFFFFFFFFFF -FFFFFFFFFFE054A8FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF0B41E7FFFFFFFFFFFFFFFFFFFFFFFFFFE0000007FFFFFFFFFFFFFFFFFF -FFFFFFFFFFE297A8FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF1A1527FFFFFFFFFFFFFFFFFFFFFFFFFFFE0001FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE2F178FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF0E8547FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE6AF58FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF18BD47FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE1E1F0FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF1E0F07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE1AA50FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF10E847FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE7C3D0FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF0D2A87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE17A98FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF0542E7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE30F80FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF055A87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE054A8FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF070387FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE21F08FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF0A7407FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE2F5E8FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF0E8707FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE2AD58FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF10B547FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE3E1D0FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF1E2F07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE1E8F0FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF95E847FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE3CBC0FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF957A07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE17AB8FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF874287FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE31E88FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF8178A7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE3D5E0FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF8F0787FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE25E08FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF8AF5C7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE3B5C9FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF9E9707FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF0BD79FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF92A547FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF3AFD1FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF9C3E07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF1E8F1FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF87EBC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF10F81FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF857A07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF1C2E1FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF874287FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF05EA9FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF817007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF3D5E1FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF8F0787FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF07C29FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF8AD5C7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF08F49FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF8A9D07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF0E979FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF83A547FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF0AF51FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF80B807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF1E1F1FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFF87AB87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF10E81FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFC57A47FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF1C3E1FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFC55A87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF05EA1FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFC1F087FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF157A9FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFCA5F87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF0F579FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFCB8587FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF0BF09FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFCAB507FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF0E179FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFC78787FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF0AF51FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFC0F84FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF1E3D1FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFC7AB07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF17E91FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFC5FACFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF14FA1FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFC57A8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF15CA1FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFC7D28FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF01781FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFCA540FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF0F061FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFCF878FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF00001FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFC2B50FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF80001FFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFC6870FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF8000FFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFC0200FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFC0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFE0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -end -restore -%%Trailer diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob23.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob23.gif deleted file mode 100755 index 9f35f3e7c..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob23.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob24a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob24a.eps deleted file mode 100755 index 805f97d60..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob24a.eps +++ /dev/null @@ -1,656 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: van.eps -%%CreationDate: 3/18/1996 -%%Pages: 0 -%%DocumentFonts: Helvetica -%%+ Symbol -%%BoundingBox:32 458 523 648 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica/Helvetica 0 Z -%%EndEncoding -%%BeginEncoding: _Symbol Symbol -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Symbol/Symbol 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -1705 3035 5631 3035 6477 3916 6939 4076 6939 4637 1705 4637 1705 3035 6 P closepath -0.75 sg fill -gr -gs -2056 2996 4673 4090 R -1 sg fill -gr -gs -2056.625 2996.625 4673.375 4090.375 R -1.25 slw 0 sg str -gr -gs -3423 2957 4166 3309 R -1 sg fill -gr -gs -5611 3543 5689 3660 R -1 sg fill -gr -gs -5611.625 3543.625 5689.375 3660.375 R -1.25 slw 0 sg str -gr -gs -7725 3951 7950 4385 R -1 sg fill -gr -/_Helvetica ff [417 0 0 -417 0 0] mf sf -7725 4298 m 0 sg (a) show -gs -3892 3231 3862 3230 3831 3227 3801 3222 3771 3215 3741 3206 3713 3195 3685 3182 -3668 3173 3892 2762 9 P -1 sg fill -gr -gs -3892 3231 3862 3230 3831 3227 3801 3222 3771 3215 3741 3206 3713 3195 3685 3182 -3668 3173 8 P -1.25 slw 0 sg str -gr -gs -5611 4481 6549 5418 OV -0.25 sg fill -gr -gs -5611.25 4481.25 6549.75 5418.75 OV -52.5 slw 0 sg str -gr -gs -5767 4637 6392 5262 OV -1 sg fill -gr -gs -5767.625 4637.625 6392.375 5262.375 OV -1.25 slw 0 sg str -gr -gs -2173 4481 3110 5418 OV -0.25 sg fill -gr -gs -2173.25 4481.25 3110.75 5418.75 OV -52.5 slw 0 sg str -gr -gs -2329 4637 2955 5262 OV -1 sg fill -gr -gs -2329.625 4637.625 2955.375 5262.375 OV -1.25 slw 0 sg str -gr -gs -3892.625 2762.625 m -3892.625 2813.625 L -1.25 slw 0 sg str -gr -gs -3892.625 2866.625 m -3892.625 2917.625 L -1.25 slw 0 sg str -gr -gs -3892.625 2970.625 m -3892.625 3021.625 L -1.25 slw 0 sg str -gr -gs -3892.625 3074.625 m -3892.625 3126.625 L -1.25 slw 0 sg str -gr -gs -3892.625 3179.625 m -3892.625 3230.625 L -1.25 slw 0 sg str -gr -gs -3892.625 3283.625 m -3892.625 3334.625 L -1.25 slw 0 sg str -gr -gs -3892.625 3387.625 m -3892.625 3438.625 L -1.25 slw 0 sg str -gr -gs -3892.625 3491.625 m -3892.625 3542.625 L -1.25 slw 0 sg str -gr -gs -3892.625 3595.625 m -3892.625 3646.625 L -1.25 slw 0 sg str -gr -gs -3892.625 3699.625 m -3892.625 3751.625 L -1.25 slw 0 sg str -gr -gs -3892.625 3804.625 m -3892.625 3855.625 L -1.25 slw 0 sg str -gr -gs -3892.625 2762.625 m -3267.625 3856.625 L -1.25 slw 0 sg str -gr -gs -3111 3699 3423 4012 OV -0.25 sg fill -gr -gs -3111.625 3699.625 3423.375 4012.375 OV -1.25 slw 0 sg str -gr -/_Symbol ff [417 0 0 -417 0 0] mf sf -3593 3595 m 0 sg (q) show -gs -5259 2996 5638 2996 5652 2997 5666 2998 5679 2999 5693 3001 5707 3004 5720 3007 -5733 3011 5746 3016 5759 3021 5772 3027 5784 3033 5796 3039 5808 3047 5819 3054 -5830 3063 5841 3071 5851 3081 5859 3088 6340 3569 6352 3581 6361 3592 6369 3603 -6377 3614 6385 3626 6392 3637 6398 3650 6404 3662 6409 3675 6414 3688 6418 3701 -6422 3714 6425 3728 6428 3742 6429 3755 6431 3769 6431 3783 6431 3790 6431 3856 -5259 3856 5259 2996 41 P closepath -1 sg fill -gr -gs -5259 2996 5638 2996 5652 2997 5666 2998 5679 2999 5693 3001 5707 3004 5720 3007 -5733 3011 5746 3016 5759 3021 5772 3027 5784 3033 5796 3039 5808 3047 5819 3054 -5830 3063 5841 3071 5851 3081 5859 3088 6340 3569 6352 3581 6361 3592 6369 3603 -6377 3614 6385 3626 6392 3637 6398 3650 6404 3662 6409 3675 6414 3688 6418 3701 -6422 3714 6425 3728 6428 3742 6429 3755 6431 3769 6431 3783 6431 3790 6431 3856 -5259 3856 5259 2996 41 P closepath -1.25 slw 0 sg str -gr -gs -8345 3856 7942 3964 7942 3748 2 P -0 sg fill -gr -gs -7408.5 3856.5 m -7942.5 3856.5 L -35 slw 0 sg str -gr -gs -5611.5 4949.5 m -4361.5 4949.5 L -35 slw 0 sg str -gr -gs -3110.5 4949.5 m -4361.5 4949.5 L -35 slw 0 sg str -gr -gs -2173.5 4949.5 m -2017.5 4949.5 L -35 slw 0 sg str -gr -gs -1705.5 4637.5 m -1705.5 3074.5 L -35 slw 0 sg str -gr -gs -2017.5 2762.5 m -5767.5 2762.5 L -35 slw 0 sg str -gr -gs -5767.5 2762.5 m -6705.5 3699.5 L -35 slw 0 sg str -gr -gs -6705.5 3699.5 m -7157.5 3926.5 L -35 slw 0 sg str -gr -gs -7330.5 4205.5 m -7330.5 4637.5 L -35 slw 0 sg str -gr -gs -7017.5 4949.5 m -6549.5 4949.5 L -35 slw 0 sg str -gr -gs -1688 3057 1691 3014 1695 2990 1701 2966 1710 2942 1720 2919 1732 2898 1745 2877 -1760 2857 1777 2839 1795 2822 1815 2806 1835 2792 1857 2780 1879 2769 1903 2761 -1926 2754 1951 2749 1976 2746 2000 2745 19 P -35 slw 0 sg str -gr -gs -2000 4932 1963 4930 1939 4926 1914 4921 1891 4913 1868 4903 1846 4892 1825 4878 -1805 4864 1786 4847 1769 4830 1753 4811 1738 4790 1726 4769 1715 4747 1705 4724 -1698 4700 1693 4675 1689 4651 1688 4626 1688 4620 20 P -35 slw 0 sg str -gr -gs -0 slc -newpath -6705.5 4324.5 7330.5 4949.5 270 360 A -35 slw 0 sg str -gr -gs -7140 3909 7165 3923 7186 3937 7205 3952 7223 3969 7240 3988 7255 4007 7269 4028 -7281 4050 7291 4073 7299 4096 7305 4120 7310 4145 7312 4169 7313 4188 14 P -35 slw 0 sg str -gr -gs -5436 3251 5786 3601 OV -1 sg fill -gr -gs -5436.625 3251.625 5786.375 3601.375 OV -1.25 slw 0 sg str -gr -gs -5650 3348 5728 3426 OV -1 sg fill -gr -gs -5650.625 3348.625 5728.375 3426.375 OV -1.25 slw 0 sg str -gr -gs -5728 3543 5718 3545 5708 3546 5698 3547 5689 3548 5679 3547 5669 3546 5659 3545 -5650 3543 5640 3540 5630 3537 5620 3533 5611 3528 5601 3523 5591 3517 5581 3511 -5572 3504 16 P -1 sg fill -gr -gs -5728 3543 5718 3545 5708 3546 5698 3547 5689 3548 5679 3547 5669 3546 5659 3545 -5650 3543 5640 3540 5630 3537 5620 3533 5611 3528 5601 3523 5591 3517 5581 3511 -5572 3504 16 P -1.25 slw 0 sg str -gr -gs -5924 3465 6041 3778 OV -1 sg fill -gr -gs -5924.625 3465.625 6041.375 3778.375 OV -1.25 slw 0 sg str -gr -gs -5377 3660 5806 3856 R -1 sg fill -gr -gs -5377.625 3660.625 5806.375 3856.375 R -1.25 slw 0 sg str -gr -gs -5533 3699 6041 3778 OV -1 sg fill -gr -gs -5533.625 3699.625 6041.375 3778.375 OV -1.25 slw 0 sg str -gr -gs -5455.625 3348.625 m -5924.625 3309.625 L -1.25 slw 0 sg str -gr -gs -5455 3348 5445 3333 5438 3319 5432 3306 5429 3293 5427 3282 5428 3271 5431 3260 -5436 3251 5443 3242 5451 3234 5462 3227 5475 3220 5490 3215 5507 3209 5526 3205 -5548 3202 5569 3199 5589 3196 5609 3194 5627 3193 5644 3192 5660 3191 5675 3191 -5688 3191 5701 3192 5712 3193 5722 3195 5731 3197 5739 3199 5746 3202 5752 3206 -5757 3210 5760 3214 5764 3218 5768 3223 5772 3228 5775 3234 5778 3239 5782 3245 -5785 3251 5788 3258 5791 3264 5793 3271 5796 3278 5799 3285 5801 3293 5803 3300 -5806 3309 48 P -1 sg fill -gr -gs -5455 3348 5445 3333 5438 3319 5432 3306 5429 3293 5427 3282 5428 3271 5431 3260 -5436 3251 5443 3242 5451 3234 5462 3227 5475 3220 5490 3215 5507 3209 5526 3205 -5548 3202 5569 3199 5589 3196 5609 3194 5627 3193 5644 3192 5660 3191 5675 3191 -5688 3191 5701 3192 5712 3193 5722 3195 5731 3197 5739 3199 5746 3202 5752 3206 -5757 3210 5760 3214 5764 3218 5768 3223 5772 3228 5775 3234 5778 3239 5782 3245 -5785 3251 5788 3258 5791 3264 5793 3271 5796 3278 5799 3285 5801 3293 5803 3300 -5806 3309 48 P -1.25 slw 0 sg str -gr -gs -963 5418 9009 5731 R -0 0 0 1 1 1 [247 189 255 111 251 191 239 254] patfill -gr -gs -963.625 5418.625 9009.375 5731.375 R -1.25 slw 0 sg str -gr -gs -1705.25 4363.25 m -5259.25 4363.25 L -52.5 slw 0 sg str -gr -gs -7134.625 4125.625 7291.375 4523.375 OV -1.25 slw 0 sg str -gr -gs -1431.625 4520.625 1705.375 4637.375 R -1.25 slw 0 sg str -gr -gs -1314 4520 650 4246 650 4949 1314 4637 1314 4520 4 P closepath -0.93 sg fill -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob24a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob24a.gif deleted file mode 100755 index 949224199..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob24a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob25a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob25a.eps deleted file mode 100755 index f5b4590e2..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob25a.eps +++ /dev/null @@ -1,723 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: conical pendulum.eps -%%CreationDate: 3/18/1996 -%%Pages: 0 -%%DocumentFonts: Symbol -%%+ Helvetica -%%BoundingBox:164 409 407 680 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Symbol Symbol -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Symbol/Symbol 0 Z -%%EndEncoding -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica/Helvetica 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -3767.625 4666.625 6267.375 5603.375 OV -1.25 slw 0 sg str -gr -gs -3103 2009 6814 2322 R -0 0 0 1 1 1 [255 128 128 128 255 8 8 8] patfill -gr -gs -4626 3511 4783 3945 R -1 sg fill -gr -/_Symbol ff [312 0 0 -312 0 0] mf sf -4626 3823 m 0 sg (q) show -gs -5017 3572 4942 3570 4892 3566 4842 3560 4793 3552 4744 3542 4695 3530 4647 3516 -4600 3500 4553 3483 4525 3471 5017 2322 11 P -1 sg fill -gr -gs -5017 3572 4942 3570 4892 3566 4842 3560 4793 3552 4744 3542 4695 3530 4647 3516 -4600 3500 4553 3483 4525 3471 10 P -1.25 slw 0 sg str -gr -gs -5017.5 2322.5 m -3767.5 5134.5 L -35 slw 0 sg str -gr -gs -5017.625 2322.625 m -5038.625 2369.625 L -1.25 slw 0 sg str -gr -gs -5059.625 2417.625 m -5080.625 2464.625 L -1.25 slw 0 sg str -gr -gs -5102.625 2512.625 m -5122.625 2559.625 L -1.25 slw 0 sg str -gr -gs -5144.625 2608.625 m -5165.625 2654.625 L -1.25 slw 0 sg str -gr -gs -5186.625 2703.625 m -5207.625 2749.625 L -1.25 slw 0 sg str -gr -gs -5229.625 2798.625 m -5249.625 2845.625 L -1.25 slw 0 sg str -gr -gs -5271.625 2893.625 m -5292.625 2940.625 L -1.25 slw 0 sg str -gr -gs -5313.625 2988.625 m -5334.625 3035.625 L -1.25 slw 0 sg str -gr -gs -5355.625 3083.625 m -5376.625 3130.625 L -1.25 slw 0 sg str -gr -gs -5398.625 3179.625 m -5419.625 3225.625 L -1.25 slw 0 sg str -gr -gs -5440.625 3274.625 m -5461.625 3320.625 L -1.25 slw 0 sg str -gr -gs -5482.625 3369.625 m -5503.625 3416.625 L -1.25 slw 0 sg str -gr -gs -5525.625 3464.625 m -5545.625 3511.625 L -1.25 slw 0 sg str -gr -gs -5567.625 3559.625 m -5588.625 3606.625 L -1.25 slw 0 sg str -gr -gs -5609.625 3655.625 m -5630.625 3701.625 L -1.25 slw 0 sg str -gr -gs -5652.625 3750.625 m -5672.625 3796.625 L -1.25 slw 0 sg str -gr -gs -5694.625 3845.625 m -5715.625 3892.625 L -1.25 slw 0 sg str -gr -gs -5736.625 3940.625 m -5757.625 3987.625 L -1.25 slw 0 sg str -gr -gs -5779.625 4035.625 m -5799.625 4082.625 L -1.25 slw 0 sg str -gr -gs -5821.625 4130.625 m -5842.625 4177.625 L -1.25 slw 0 sg str -gr -gs -5863.625 4226.625 m -5884.625 4272.625 L -1.25 slw 0 sg str -gr -gs -5906.625 4321.625 m -5926.625 4367.625 L -1.25 slw 0 sg str -gr -gs -5948.625 4416.625 m -5969.625 4463.625 L -1.25 slw 0 sg str -gr -gs -5990.625 4511.625 m -6011.625 4558.625 L -1.25 slw 0 sg str -gr -gs -6032.625 4606.625 m -6053.625 4653.625 L -1.25 slw 0 sg str -gr -gs -6075.625 4702.625 m -6095.625 4748.625 L -1.25 slw 0 sg str -gr -gs -6117.625 4797.625 m -6138.625 4843.625 L -1.25 slw 0 sg str -gr -gs -6159.625 4892.625 m -6180.625 4939.625 L -1.25 slw 0 sg str -gr -gs -6202.625 4987.625 m -6222.625 5034.625 L -1.25 slw 0 sg str -gr -gs -6244.625 5082.625 m -6265.625 5129.625 L -1.25 slw 0 sg str -gr -gs -3454 5427 3697 5757 R -1 sg fill -gr -/_Helvetica ff [312 0 0 -312 0 0] mf sf -3454 5670 m 0 sg (m) show -gs -5017.625 2322.625 m -5017.625 2373.625 L -1.25 slw 0 sg str -gr -gs -5017.625 2426.625 m -5017.625 2477.625 L -1.25 slw 0 sg str -gr -gs -5017.625 2530.625 m -5017.625 2581.625 L -1.25 slw 0 sg str -gr -gs -5017.625 2634.625 m -5017.625 2686.625 L -1.25 slw 0 sg str -gr -gs -5017.625 2739.625 m -5017.625 2790.625 L -1.25 slw 0 sg str -gr -gs -5017.625 2843.625 m -5017.625 2894.625 L -1.25 slw 0 sg str -gr -gs -5017.625 2947.625 m -5017.625 2998.625 L -1.25 slw 0 sg str -gr -gs -5017.625 3051.625 m -5017.625 3102.625 L -1.25 slw 0 sg str -gr -gs -5017.625 3155.625 m -5017.625 3206.625 L -1.25 slw 0 sg str -gr -gs -5017.625 3259.625 m -5017.625 3311.625 L -1.25 slw 0 sg str -gr -gs -5017.625 3364.625 m -5017.625 3415.625 L -1.25 slw 0 sg str -gr -gs -5017.625 3468.625 m -5017.625 3519.625 L -1.25 slw 0 sg str -gr -gs -5017.625 3572.625 m -5017.625 3623.625 L -1.25 slw 0 sg str -gr -gs -5017.625 3676.625 m -5017.625 3727.625 L -1.25 slw 0 sg str -gr -gs -5017.625 3780.625 m -5017.625 3831.625 L -1.25 slw 0 sg str -gr -gs -5017.625 3884.625 m -5017.625 3935.625 L -1.25 slw 0 sg str -gr -gs -5017.625 3989.625 m -5017.625 4040.625 L -1.25 slw 0 sg str -gr -gs -5017.625 4093.625 m -5017.625 4144.625 L -1.25 slw 0 sg str -gr -gs -5017.625 4197.625 m -5017.625 4248.625 L -1.25 slw 0 sg str -gr -gs -5017.625 4301.625 m -5017.625 4352.625 L -1.25 slw 0 sg str -gr -gs -5017.625 4405.625 m -5017.625 4456.625 L -1.25 slw 0 sg str -gr -gs -5017.625 4509.625 m -5017.625 4560.625 L -1.25 slw 0 sg str -gr -gs -5017.625 4614.625 m -5017.625 4665.625 L -1.25 slw 0 sg str -gr -gs -5017.625 4718.625 m -5017.625 4769.625 L -1.25 slw 0 sg str -gr -gs -5017.625 4822.625 m -5017.625 4873.625 L -1.25 slw 0 sg str -gr -gs -5017.625 4926.625 m -5017.625 4977.625 L -1.25 slw 0 sg str -gr -gs -5017.625 5030.625 m -5017.625 5081.625 L -1.25 slw 0 sg str -gr -gs -5017.625 5134.625 m -5017.625 5185.625 L -1.25 slw 0 sg str -gr -gs -5017.625 5238.625 m -5017.625 5290.625 L -1.25 slw 0 sg str -gr -gs -5017.625 5343.625 m -5017.625 5394.625 L -1.25 slw 0 sg str -gr -gs -5017.625 5447.625 m -5017.625 5498.625 L -1.25 slw 0 sg str -gr -gs -5017.625 5662.625 m -5017.625 5713.625 L -1.25 slw 0 sg str -gr -gs -5017.625 5766.625 m -5017.625 5817.625 L -1.25 slw 0 sg str -gr -gs -5017.625 5870.625 m -5017.625 5921.625 L -1.25 slw 0 sg str -gr -gs -5017.625 5974.625 m -5017.625 6026.625 L -1.25 slw 0 sg str -gr -gs -5017.625 6079.625 m -5017.625 6130.625 L -1.25 slw 0 sg str -gr -gs -5017.625 6183.625 m -5017.625 6234.625 L -1.25 slw 0 sg str -gr -gs -5017.625 6287.625 m -5017.625 6338.625 L -1.25 slw 0 sg str -gr -gs -4432 4718 4439 4757 4586 4691 4425 4680 4432 4718 4 P closepath -0 sg fill -gr -gs -4432 4718 4439 4757 4586 4691 4425 4680 4432 4718 4 P closepath -1.25 slw 0 sg str -gr -gs -3103.25 2322.25 m -6814.25 2322.25 L -52.5 slw 0 sg str -gr -gs -3767.625 5134.625 m -5017.625 2322.625 L -1.25 slw 0 sg str -gr -gs -3934 3602 4108 3932 R -1 sg fill -gr -3934 3845 m 3.12 slw 0 sg (L) show -gs -3611 4978 3923 5291 OV -0.25 sg fill -gr -gs -3611.625 4978.625 3923.375 5291.375 OV -1.25 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob25a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob25a.gif deleted file mode 100755 index d403371f5..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob25a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob26a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob26a.eps deleted file mode 100755 index b644d75f4..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob26a.eps +++ /dev/null @@ -1,458 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Fastened incline.eps -%%CreationDate: 3/19/1996 -%%Pages: 0 -%%DocumentFonts: Helvetica-Bold -%%+ Symbol -%%BoundingBox:57 428 404 674 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Helvetica-Bold Helvetica-Bold -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica-Bold/Helvetica-Bold 0 Z -%%EndEncoding -%%BeginEncoding: _Symbol Symbol -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Symbol/Symbol 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -1879 4331 2295 4661 R -1 sg fill -gr -/_Helvetica-Bold ff [312 0 0 -312 0 0] mf sf -1879 4574 m 0 sg (M1) show -gs -3598 3354 4014 3684 R -1 sg fill -gr -3598 3597 m 0 sg (M2) show -gs -3250 5551 3424 5915 R -1 sg fill -gr -/_Symbol ff [347 0 0 -347 0 0] mf sf -3250 5794 m 0 sg (q) show -gs -3063 5413 3102 5491 3122 5539 3140 5587 3157 5637 3171 5686 3184 5737 3195 5787 -3204 5839 3211 5890 3216 5941 3219 5993 3220 6045 1866 6045 13 P -1 sg fill -gr -gs -3029 5379 3068 5457 3088 5505 3106 5553 3123 5603 3137 5652 3150 5703 3161 5753 -3170 5805 3177 5856 3182 5907 3185 5959 3186 6011 12 P -35 slw 0 sg str -gr -gs -1241 6045 6148 3212 6148 3573 1866 6045 1241 6045 4 P closepath -0.25 sg fill -gr -gs -1241 6045 6148 3212 6148 3573 1866 6045 1241 6045 4 P closepath -1.25 slw 0 sg str -gr -gs -6148 6045 6148 2309 6736 2309 6736 6045 6148 6045 4 P closepath -0 0 0 1 1 1 [255 128 128 128 255 8 8 8] patfill -gr -gs -1241.625 6045.625 m -6148.625 3212.625 L -1.25 slw 0 sg str -gr -gs -1912 4936 2588 4545 2900 5087 2224 5478 1912 4936 4 P closepath -0 0 0 1 1 1 [8 66 0 144 4 64 16 1] patfill -gr -gs -1912 4936 2588 4545 2900 5087 2224 5478 1912 4936 4 P closepath -1.25 slw 0 sg str -gr -gs -3671 3920 4347 3530 4660 4071 3983 4462 3671 3920 4 P closepath -0 0 0 1 1 1 [8 66 0 144 4 64 16 1] patfill -gr -gs -3671 3920 4347 3530 4660 4071 3983 4462 3671 3920 4 P closepath -1.25 slw 0 sg str -gr -gs -2745.625 4816.625 m -3827.625 4191.625 L -1.25 slw 0 sg str -gr -gs -4504.625 3800.625 m -6148.625 2851.625 L -1.25 slw 0 sg str -gr -gs -6148.625 3212.625 m -6148.625 3573.625 L -1.25 slw 0 sg str -gr -gs -6148.625 3573.625 m -6148.625 6045.625 L -1.25 slw 0 sg str -gr -gs -6148.625 6045.625 m -6148.625 3573.625 L -1.25 slw 0 sg str -gr -gs -6148.625 3573.625 m -6148.625 2309.625 L -1.25 slw 0 sg str -gr -gs -1241.625 6045.625 m -6148.625 3212.625 L -1.25 slw 0 sg str -gr -gs -1866.625 6045.625 m -6148.625 3573.625 L -1.25 slw 0 sg str -gr -gs -1241.25 6045.25 m -1866.25 6045.25 L -122.5 slw 0 sg str -gr -gs -6148.25 6045.25 m -6736.25 6045.25 L -122.5 slw 0 sg str -gr -gs -5173.625 4136.625 m -5173.625 6045.625 L -1.25 slw 0 sg str -gr -gs -4861.625 4316.625 m -4861.625 6045.625 L -1.25 slw 0 sg str -gr -gs -4861 4027 5173 6045 R -0.5 sg fill -gr -gs -4861.625 4027.625 5173.375 6045.375 R -1.25 slw 0 sg str -gr -gs -4962 4050 5072 4161 OV -1 sg fill -gr -gs -4962.625 4050.625 5072.375 4161.375 OV -1.25 slw 0 sg str -gr -gs -1866.25 6045.25 m -6148.25 6045.25 L -122.5 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob26a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob26a.gif deleted file mode 100755 index 60e53ac6f..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob26a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob27a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob27a.eps deleted file mode 100755 index 860d1b23b..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob27a.eps +++ /dev/null @@ -1,418 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Pulley system.eps -%%CreationDate: 3/19/1996 -%%Pages: 0 -%%DocumentFonts: Helvetica -%%BoundingBox:226 440 377 652 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica/Helvetica 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -4776 2921 5475 3619 OV -0.5 sg fill -gr -gs -4776.625 2921.625 5475.375 3619.375 OV -1.25 slw 0 sg str -gr -gs -4813 2684 5125 3465 5438 2684 4813 2684 3 P closepath -0 0 0 1 1 1 [8 66 0 144 4 64 16 1] patfill -gr -gs -4813 2684 5125 3465 5438 2684 4813 2684 3 P closepath -1.25 slw 0 sg str -gr -gs -5086 3231 5165 3309 OV -0 sg fill -gr -gs -5086.625 3231.625 5165.375 3309.375 OV -1.25 slw 0 sg str -gr -gs -4776.625 3270.625 m -4776.625 4364.625 L -1.25 slw 0 sg str -gr -gs -4618 4364 4930 4676 R -0.25 sg fill -gr -gs -4618.625 4364.625 4930.375 4676.375 R -1.25 slw 0 sg str -gr -gs -5259 4148 5691 4580 OV -0.5 sg fill -gr -gs -5259.625 4148.625 5691.375 4580.375 OV -1.25 slw 0 sg str -gr -gs -5475.625 3270.625 m -5475.625 4325.625 L -1.25 slw 0 sg str -gr -gs -5436 4325 5514 4403 OV -0 sg fill -gr -gs -5436.625 4325.625 5514.375 4403.375 OV -1.25 slw 0 sg str -gr -gs -5259.625 4364.625 m -5259.625 5848.625 L -1.25 slw 0 sg str -gr -gs -5691.625 4364.625 m -5691.625 4950.625 L -1.25 slw 0 sg str -gr -gs -5555 4950 5829 5262 R -0.25 sg fill -gr -gs -5555.625 4950.625 5829.375 5262.375 R -1.25 slw 0 sg str -gr -gs -4140 4403 4470 4646 R -1 sg fill -gr -/_Helvetica ff [243 0 0 -243 0 0] mf sf -4140 4593 m 0 sg (M1) show -gs -6015 4984 6345 5227 R -1 sg fill -gr -6015 5174 m 2.43 slw 0 sg (M2) show -gs -4188.25 2684.25 m -6063.25 2684.25 L -122.5 slw 0 sg str -gr -gs -4188.25 5848.25 m -6063.25 5848.25 L -122.5 slw 0 sg str -gr -gs -6124 3459 6245 3702 R -1 sg fill -gr -6124 3649 m 2.43 slw 0 sg (x) show -gs -5829 2957 5874 3125 5784 3125 2 P -0 sg fill -gr -gs -5829.625 3125.625 m -5829.625 3426.625 L -1.25 slw 0 sg str -gr -gs -6297 3426 6129 3471 6129 3381 2 P -0 sg fill -gr -gs -5829.625 3426.625 m -6129.625 3426.625 L -1.25 slw 0 sg str -gr -gs -5624 2928 5745 3170 R -1 sg fill -gr -5624 3118 m 2.43 slw 0 sg (y) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob27a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob27a.gif deleted file mode 100755 index 4beb46103..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob27a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob29.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob29.eps deleted file mode 100755 index 303e3ba42..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob29.eps +++ /dev/null @@ -1,586 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Tue Jun 14 07:05:30 1994 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 413 239 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /rpath { - newpath moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} bind def /rfpath { - /rad3 exch def /hh3 exch def /ww3 exch def /yy1 exch def /xx1 exch def /xx2 xx1 ww3 add def /yy2 yy1 hh3 add def newpath xx1 yy1 rad3 hh3 0 gt { - add - } { - sub - } ifelse moveto xx1 yy1 xx2 yy1 rad3 arcto 4 { - pop - } repeat xx2 yy1 xx2 yy2 rad3 arcto 4 { - pop - } repeat xx2 yy2 xx1 yy2 rad3 arcto 4 { - pop - } repeat xx1 yy2 xx1 yy1 rad3 arcto 4 { - pop - } repeat closepath -} bind def /rfill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - 4 2 roll rpath crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - rectfill pop - } ifelse grestore -} bind def /rstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse 4 2 roll rpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /rffill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse rfpath filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /rfstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse rfpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /mkrpath { - dodrawctm rpath unpagectm -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /arwlen 6 def /arw 4 def /arow { - gsave newpath moveto lineto unpagectm concat { - - } { - - } { - - } { - - } pathforall newpath 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath crlinalph setalpha strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - crstrpat findfont exch strwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /arwpath { - sc7mt currentmatrix pop gsave newpath moveto lineto unpagectm dup concat { - - } { - - } { - - } { - - } pathforall grestore unpagectm 5 -1 roll concat 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath sc7mt setmatrix -} bind def end -TopDrawDict begin /estroke { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /efill { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath unpagectm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /apstroke { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc pie chord or { - closepath - } if crlinalph setalpha pie not chord not and { - crfrtarw { - 2 copy crlinw exch gsave newpath angle1 1 add cos radius mul radius add angle1 1 add sin radius mul radius add moveto angle1 cos radius mul radius add angle1 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if crendarw { - 2 copy crlinw exch gsave newpath angle2 1 sub cos radius mul radius add angle2 1 sub sin radius mul radius add moveto angle2 cos radius mul radius add angle2 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if - } if crlincp setlinecap crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /apfill { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup 5 -2 roll arc pie chord or { - closepath - } if 1 xscale div 1 yscale div scale crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /mkepath { - dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def /closed exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc closed pie or chord or { - closepath - } if unpagectm -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 412.937988 239 rectclip --30 -412 translate -30 412 412.937988 239 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 0 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 249 531 115 -119 18 1 0 0 1 0 0 sc6mt astore rfstroke -/txtdraw true def -/txlndraw true def -(DON'T PANIC ) [23.826004 0 25.673996 0 23.826004 0 7.326004 0 20.162994 0 -100.815002 -38.14801 18.051003 0 22.010994 0 23.826004 0 9.173996 0 23.826004 0 0 0] 96 502 /Helvetica [ 33 1 mul 0 0 33 0 0 ] [1 0 0 1 160 -24] dotx -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 258 -116 46 647 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 81 116 304 531 1 0 0 1 0 0 sc6mt astore ssl -/crendarw true def -/crfrtarw true def -/esave save def 1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 124.239594 180 98.5 664.75 -1 -1.392157 12.75 false false 1 0 0 1 15.5 -7 sc5mt astore apstroke esave restore -/esave save def 1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 115.319687 180 353 668.5 1 -1.419355 15.5 false false 1 0 0 1 -3.5 -7 sc5mt astore apstroke esave restore -/txtdraw true def -/txlndraw true def -(q) [0 0] 340 627.5 /Symbol [ 19 1 mul 0 0 19 0 0 ] [1 0 0 1 -10.5 -7.25] dotx -/txtdraw true def -/txlndraw true def -(1 ) [9.5 0 0 0] 349.898987 619.900024 /Symbol [ 19 1 mul 0 0 19 0 0 ] [1 0 0 1 -10.5 -7.25] dotx -/txtdraw true def -/txlndraw true def -( ) [0 0] 105.5 629.900024 /Symbol [ 14 1 mul 0 0 14 0 0 ] [1 0 0 1 0 0] dotx -/txtdraw true def -/txlndraw true def -( ) [0 0] 110.5 635 /Symbol [ 14 1 mul 0 0 14 0 0 ] [1 0 0 1 0 0] dotx -/txtdraw true def -/txlndraw true def -(q) [0 0] 119 630 /Symbol [ 19 1 mul 0 0 19 0 0 ] [1 0 0 1 -1 -1.5] dotx -/txtdraw true def -/txlndraw true def -(2 ) [9.5 0 0 0] 128.899002 622.400024 /Symbol [ 19 1 mul 0 0 19 0 0 ] [1 0 0 1 -1 -1.5] dotx -/txtdraw true def -/txlndraw true def -(string 1 ) [13.5 0 7.506012 0 9.395996 0 5.993988 0 15.011993 0 15.011993 0 7.506012 0 15.011993 0 0 0] 352 576 /Helvetica [ 27 1 mul 0 0 27 0 0 ] [1 0 0 1 0 0] dotx -(string 2 ) [13.5 0 7.505997 0 9.396004 0 5.994003 0 15.012001 0 15.011993 0 7.505997 0 15.011993 0 0 0] 80 571 /Helvetica [ 27 1 mul 0 0 27 0 0 ] [1 0 0 1 0 0] dotx -/crlinw 5.4 def -/crendarw false def -/crfrtarw false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 409.5 -0.25 31 649 1 0 0 1 0 0 sc6mt astore ssl -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica -%%+ Symbol -%%BoundingBox: 0.000000 0.000000 412.937988 239.000000 diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob29.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob29.gif deleted file mode 100755 index 4be61d0c8..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob29.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob31a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob31a.eps deleted file mode 100755 index 0d36c712d..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob31a.eps +++ /dev/null @@ -1,632 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Thu Sep 22 10:03:43 1994 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 271 256 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /arwlen 6 def /arw 4 def /arow { - gsave newpath moveto lineto unpagectm concat { - - } { - - } { - - } { - - } pathforall newpath 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath crlinalph setalpha strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - crstrpat findfont exch strwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /arwpath { - sc7mt currentmatrix pop gsave newpath moveto lineto unpagectm dup concat { - - } { - - } { - - } { - - } pathforall grestore unpagectm 5 -1 roll concat 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath sc7mt setmatrix -} bind def end -TopDrawDict begin /estroke { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /efill { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath unpagectm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /apstroke { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc pie chord or { - closepath - } if crlinalph setalpha pie not chord not and { - crfrtarw { - 2 copy crlinw exch gsave newpath angle1 1 add cos radius mul radius add angle1 1 add sin radius mul radius add moveto angle1 cos radius mul radius add angle1 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if crendarw { - 2 copy crlinw exch gsave newpath angle2 1 sub cos radius mul radius add angle2 1 sub sin radius mul radius add moveto angle2 cos radius mul radius add angle2 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if - } if crlincp setlinecap crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /apfill { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup 5 -2 roll arc pie chord or { - closepath - } if 1 xscale div 1 yscale div scale crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /mkepath { - dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def /closed exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc closed pie or chord or { - closepath - } if unpagectm -} bind def end -TopDrawDict begin /defpat { - 7 dict begin /FontDict 9 dict def FontDict begin /cache exch def /key exch def /proc exch cvx def /mtx exch matrix invertmatrix def /height exch def /width exch def /ctm matrix currentmatrix def /ptm matrix identmatrix def /str -(12345678901234567890123456789012) def end /FontBBox [ 0 0 FontDict /width get FontDict /height get ] def /FontMatrix FontDict /mtx get def /Encoding StandardEncoding def /FontType 3 def /BuildChar { - pop begin FontDict begin width 0 cache { - 0 0 width height setcachedevice - } { - setcharwidth - } ifelse 0 0 moveto width 0 lineto width height lineto 0 height lineto closepath clip newpath gsave proc grestore end end - } def FontDict /key get currentdict definefont end -} bind def /patpath { - dup type /dicttype eq { - begin unpagectm - } { - exch begin unpagectm concat - } ifelse currentdict setfont FontDict begin FontMatrix concat width 0 dtransform round width div exch round dup 0 eq { - pop 1 - } if width div exch 0 height dtransform round dup 0 eq { - pop 1 - } if height div exch round height div exch 0 0 transform round exch round exch ptm astore setmatrix pathbbox height div ceiling height mul 4 1 roll width div ceiling width mul 4 1 roll height div floor height mul 4 1 roll width div floor width mul 4 -1 -roll 2 index sub height div ceiling cvi exch 3 index sub width div ceiling cvi exch 4 2 roll moveto FontMatrix ptm invertmatrix pop { - gsave ptm concat dup str length idiv { - str show - } repeat dup str length mod str exch 0 exch getinterval show grestore 0 height rmoveto - } repeat pop end end -} bind def /patfil { - gsave clip patpath grestore newpath -} bind def /trpatfil { - patfil -} bind def /oppatfil { - gsave 1 setgray 1 setalpha fill grestore patfil -} bind def /trpateofil { - pateofil -} bind def /oppateofil { - gsave 1 setgray 1 setalpha fill grestore pateofil -} bind def /pateofil { - gsave eoclip patpath grestore newpath -} bind def /patstrk { - gsave strokepath clip patpath grestore newpath -} bind def /trpatstrk { - patstrk -} bind def /oppatstrk { - gsave 1 setgray 1 setalpha stroke grestore patstrk -} bind def /patashow { - (0) exch { - 2 copy 0 exch put pop dup false charpath currentpoint 5 index type /dicttype eq { - 5 index patfil - } { - 6 index 6 index patfil - } ifelse moveto 3 copy pop rmoveto - } forall pop pop pop dup type /dicttype ne { - pop - } if pop -} bind def /patshow { - 0 exch 0 exch patashow -} bind def /rpatfil { - gsave setalpha pop setrgbcolor rpath tpatstr cvs cvn invpats { - piddict exch get - } { - ipiddict exch get - } ifelse findfont oppatfil grestore -} bind def /tpatstr 10 string def /getpat { - tpatstr cvs cvn invpats { - piddict exch get - } { - ipiddict exch get - } ifelse -} bind def end -TopDrawDict begin 8 8 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 8 2 rectfill -} bind /hline1 true defpat pop 16 16 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 16 8 rectfill -} bind /hline2 true defpat pop 32 32 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 32 16 rectfill -} bind /hline3 true defpat pop 8 8 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 2 8 rectfill -} bind /vline1 true defpat pop 16 16 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 8 16 rectfill -} bind /vline2 true defpat pop 32 32 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 16 32 rectfill -} bind /vline3 true defpat pop 15 15 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 1 setlinewidth stroke -} bind /rdline1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 2 scale 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 3 setlinewidth stroke -} bind /rdline2 true defpat pop 60 60 [ 300 72 div 0 0 300 72 div 0 0 ] { - 4 4 scale 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 4 setlinewidth stroke -} bind /rdline3 true defpat pop 15 15 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 1 setlinewidth stroke -} bind /ldline1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 2 scale 2 setlinecap 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 3 setlinewidth stroke -} bind /ldline2 true defpat pop 60 60 [ 300 72 div 0 0 300 72 div 0 0 ] { - 4 4 scale 2 setlinecap 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 4 setlinewidth stroke -} bind /ldline3 true defpat pop 7 7 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 4 0 moveto 4 7 lineto 0 4 moveto 7 4 lineto 0.5 setlinewidth stroke -} bind /gray1 true defpat pop 11 11 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 6 0 moveto 6 11 lineto 0 6 moveto 11 6 lineto 0.5 setlinewidth stroke -} bind /gray2 true defpat pop 15 15 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 8 0 moveto 8 15 lineto 0 8 moveto 15 8 lineto 0.5 setlinewidth stroke -} bind /gray3 true defpat pop 19 19 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 10 0 moveto 10 19 lineto 0 10 moveto 19 10 lineto 0.5 setlinewidth stroke -} bind /gray4 true defpat pop 23 23 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 12 0 moveto 12 23 lineto 0 12 moveto 23 12 lineto 0.5 setlinewidth stroke -} bind /gray5 true defpat pop 31 31 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 16 0 moveto 16 31 lineto 0 16 moveto 31 16 lineto 0.5 setlinewidth stroke -} bind /gray6 true defpat pop 20 20 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 10 0 moveto 20 10 lineto 0 10 moveto 10 20 lineto 10 0 moveto 0 10 lineto 20 10 moveto 10 20 lineto 0.25 setlinewidth stroke -} bind /xhatch1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 2 scale 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 0.5 setlinewidth stroke -} bind /xhatch2 true defpat pop 60 60 [ 300 72 div 0 0 300 72 div 0 0 ] { - 4 4 scale 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 2 setlinewidth stroke -} bind /xhatch3 true defpat pop 20 20 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 10 10 4 0 360 arc closepath fill -} bind /dots1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 15 15 8 0 360 arc closepath fill -} bind /dots2 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 25 25 20 0 360 arc closepath fill -} bind /dots3 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 0 26 moveto 50 0 rlineto 0 1 moveto 50 0 rlineto 26 50 moveto 0 -25 rlineto 1 25 moveto 0 -25 rlineto 1 setlinewidth stroke -} bind /bricks true defpat pop 25 25 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0.5 0.5 scale 0 0 25 25 rectfill 25 25 25 25 rectfill -} bind /check1 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 25 25 rectfill 25 25 25 25 rectfill -} bind /check2 true defpat pop 80 80 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 40 40 rectfill 40 40 40 40 rectfill -} bind /check3 true defpat pop 20 20 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 10 0 moveto 20 10 lineto 10 20 lineto 0 10 lineto closepath fill -} bind /diamond1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 15 0 moveto 30 15 lineto 15 30 lineto 0 15 lineto closepath fill -} bind /diamond2 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 25 0 moveto 50 25 lineto 25 50 lineto 0 25 lineto closepath fill -} bind /diamond3 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 10 10 30 30 rectfill 0 0 moveto 50 50 lineto 0 50 moveto 50 0 lineto 1 setlinewidth stroke -} bind /weave true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 25 25 22 0 360 arc closepath 1 setlinewidth stroke -} bind /donut true defpat pop 100 100 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap -20 0 moveto 25 25 rlineto -25 25 rlineto 25 25 rlineto -25 25 rlineto 5 0 moveto 25 25 rlineto -25 25 rlineto 25 25 rlineto -25 25 rlineto 30 0 moveto 25 25 rlineto -25 25 rlineto 25 25 rlineto -25 25 rlineto 55 0 moveto 25 25 rlineto --25 25 rlineto 25 25 rlineto -25 25 rlineto 80 0 moveto 25 25 rlineto -25 25 rlineto 25 25 rlineto -25 25 rlineto 1 setlinewidth stroke -} bind /ziggy true defpat pop 100 100 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 0 -20 moveto 25 25 rlineto 25 -25 rlineto 25 25 rlineto 25 -25 rlineto 0 5 moveto 25 25 rlineto 25 -25 rlineto 25 25 rlineto 25 -25 rlineto 0 30 moveto 25 25 rlineto 25 -25 rlineto 25 25 rlineto 25 -25 rlineto 0 55 moveto 25 25 rlineto -25 --25 rlineto 25 25 rlineto 25 -25 rlineto 0 80 moveto 25 25 rlineto 25 -25 rlineto 25 25 rlineto 25 -25 rlineto 1 setlinewidth stroke -} bind /zaggy true defpat pop 80 80 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 0 0 moveto 0 40 lineto 40 40 lineto 40 80 lineto 80 80 lineto 0 60 moveto 20 60 lineto 20 80 lineto 20 0 moveto 20 20 lineto 60 20 lineto 60 60 lineto 80 60 lineto 1 setlinewidth stroke -} bind /zaggyd true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 0 12.5 moveto 6.25 0 rlineto 0 37.5 moveto 31.25 0 rlineto 50 12.5 moveto -31.25 0 rlineto 50 37.5 moveto -6.25 0 rlineto 12.5 0 moveto 0 6.25 rlineto 37.5 0 moveto 0 31.25 rlineto 12.5 50 moveto 0 -31.25 rlineto 37.5 50 moveto 0 -6.25 -rlineto 1 setlinewidth stroke -} bind /plusses true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 0 10 moveto 10 0 rlineto 0 -10 rlineto 0 40 moveto 10 0 rlineto 0 10 rlineto 50 10 moveto -10 0 rlineto 0 -10 rlineto 50 40 moveto -10 0 rlineto 0 10 rlineto 7 7 moveto 36 0 rlineto 0 36 rlineto -36 0 rlineto closepath 1 setlinewidth -stroke -} bind /boxes true defpat pop 100 100 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 50 50 40 0 360 arc closepath 40 60 moveto 0 8 rlineto 60 60 moveto 0 8 rlineto 50 45 moveto 0 8 rlineto 35 35 moveto 35 21 65 21 65 35 curveto 1 setlinewidth stroke -} bind /smiley true defpat pop /piddict 256 dict def piddict begin /1 /gray3 def /2 /gray2 def /3 /gray1 def /4 /gray6 def /5 /gray5 def /6 /gray4 def /7 /hline3 def /8 /hline2 def /9 /hline1 def /10 /vline3 def /11 /vline2 def /12 /vline1 def /13 -/rdline3 def /14 /rdline2 def /15 /rdline1 def /16 /ldline3 def /17 /ldline2 def /18 /ldline1 def /19 /check3 def /20 /check2 def /21 /check1 def /22 /xhatch3 def /23 /xhatch2 def /24 /xhatch1 def /25 /dots3 def /26 /dots2 def /27 /dots1 def /28 /zaggyd -def /29 /zaggy def /30 /ziggy def /31 /diamond3 def /32 /diamond2 def /33 /diamond1 def /34 /donut def /35 /weave def /36 /bricks def /37 /plusses def /38 /boxes def /39 /smiley def end /invpats true def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 271 257 rectclip --31.769722 -430.738342 translate -31.769722 430.738342 270.11911 255.450684 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 0 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 18 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [4 4] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -/crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /filinclr true def -/filwpat true def -1 0 0 1 0 0 sc6mt astore 1.736069 1 -1.576023 156.763931 561.236084 1 0 0 1 0 0 sc5mt astore efill -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 1.736069 1 -1.576023 156.763931 561.236084 1 0 0 1 0 0 sc5mt astore estroke -/crlinw 2.1 def -/usedash true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 125.694305 1 -1.007956 32.805695 685.194336 1 0 0 1 0 0 sc5mt astore estroke -/crlinw 1.9 def -/usedash false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 114 59 158 559 1 0 0 1 0 0 sc6mt astore ssl -/crlinw 0 def -1 0 0 1 0 0 sc6mt astore 9.604675 1.000002 -1 327 605 1 0 0 1 -68 22 sc5mt astore efill -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 9.604675 1.000002 -1 327 605 1 0 0 1 -68 22 sc5mt astore estroke -/crlinw 3.5 def -/crendarw true def -/esave save def 0.640698 0.767793 -0.767793 0.640698 593.431946 -3.513885 sc4mt astore -0.640698 -0.767793 -0.767793 0.640698 976.313354 455.319031 sc6mt astore 115.938972 180 277 721 1 -1.344444 45 false false -0.640698 -0.767793 -0.767793 0.640698 -957.981201 444.276733 sc5mt astore apstroke esave restore -/txtdraw false def -/txlndraw true def -(r) [0 0] 187 602 /Helvetica [ 14 1 mul 0 0 14 0 0 ] [2.633577 0 0 2.631083 -293.317963 -1028.359253] dotx -/txtdraw true def -/txlndraw true def -(R ) [10.108002 0 0 0] 191.662003 602 /Helvetica [ 14 1 mul 0 0 14 0 0 ] [2.633577 0 0 2.631083 -293.317963 -1028.359253] dotx -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob31a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob31a.gif deleted file mode 100755 index b1ffd2d4f..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob31a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob33.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob33.eps deleted file mode 100755 index f5b4590e2..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob33.eps +++ /dev/null @@ -1,723 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: conical pendulum.eps -%%CreationDate: 3/18/1996 -%%Pages: 0 -%%DocumentFonts: Symbol -%%+ Helvetica -%%BoundingBox:164 409 407 680 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Symbol Symbol -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Symbol/Symbol 0 Z -%%EndEncoding -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica/Helvetica 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -3767.625 4666.625 6267.375 5603.375 OV -1.25 slw 0 sg str -gr -gs -3103 2009 6814 2322 R -0 0 0 1 1 1 [255 128 128 128 255 8 8 8] patfill -gr -gs -4626 3511 4783 3945 R -1 sg fill -gr -/_Symbol ff [312 0 0 -312 0 0] mf sf -4626 3823 m 0 sg (q) show -gs -5017 3572 4942 3570 4892 3566 4842 3560 4793 3552 4744 3542 4695 3530 4647 3516 -4600 3500 4553 3483 4525 3471 5017 2322 11 P -1 sg fill -gr -gs -5017 3572 4942 3570 4892 3566 4842 3560 4793 3552 4744 3542 4695 3530 4647 3516 -4600 3500 4553 3483 4525 3471 10 P -1.25 slw 0 sg str -gr -gs -5017.5 2322.5 m -3767.5 5134.5 L -35 slw 0 sg str -gr -gs -5017.625 2322.625 m -5038.625 2369.625 L -1.25 slw 0 sg str -gr -gs -5059.625 2417.625 m -5080.625 2464.625 L -1.25 slw 0 sg str -gr -gs -5102.625 2512.625 m -5122.625 2559.625 L -1.25 slw 0 sg str -gr -gs -5144.625 2608.625 m -5165.625 2654.625 L -1.25 slw 0 sg str -gr -gs -5186.625 2703.625 m -5207.625 2749.625 L -1.25 slw 0 sg str -gr -gs -5229.625 2798.625 m -5249.625 2845.625 L -1.25 slw 0 sg str -gr -gs -5271.625 2893.625 m -5292.625 2940.625 L -1.25 slw 0 sg str -gr -gs -5313.625 2988.625 m -5334.625 3035.625 L -1.25 slw 0 sg str -gr -gs -5355.625 3083.625 m -5376.625 3130.625 L -1.25 slw 0 sg str -gr -gs -5398.625 3179.625 m -5419.625 3225.625 L -1.25 slw 0 sg str -gr -gs -5440.625 3274.625 m -5461.625 3320.625 L -1.25 slw 0 sg str -gr -gs -5482.625 3369.625 m -5503.625 3416.625 L -1.25 slw 0 sg str -gr -gs -5525.625 3464.625 m -5545.625 3511.625 L -1.25 slw 0 sg str -gr -gs -5567.625 3559.625 m -5588.625 3606.625 L -1.25 slw 0 sg str -gr -gs -5609.625 3655.625 m -5630.625 3701.625 L -1.25 slw 0 sg str -gr -gs -5652.625 3750.625 m -5672.625 3796.625 L -1.25 slw 0 sg str -gr -gs -5694.625 3845.625 m -5715.625 3892.625 L -1.25 slw 0 sg str -gr -gs -5736.625 3940.625 m -5757.625 3987.625 L -1.25 slw 0 sg str -gr -gs -5779.625 4035.625 m -5799.625 4082.625 L -1.25 slw 0 sg str -gr -gs -5821.625 4130.625 m -5842.625 4177.625 L -1.25 slw 0 sg str -gr -gs -5863.625 4226.625 m -5884.625 4272.625 L -1.25 slw 0 sg str -gr -gs -5906.625 4321.625 m -5926.625 4367.625 L -1.25 slw 0 sg str -gr -gs -5948.625 4416.625 m -5969.625 4463.625 L -1.25 slw 0 sg str -gr -gs -5990.625 4511.625 m -6011.625 4558.625 L -1.25 slw 0 sg str -gr -gs -6032.625 4606.625 m -6053.625 4653.625 L -1.25 slw 0 sg str -gr -gs -6075.625 4702.625 m -6095.625 4748.625 L -1.25 slw 0 sg str -gr -gs -6117.625 4797.625 m -6138.625 4843.625 L -1.25 slw 0 sg str -gr -gs -6159.625 4892.625 m -6180.625 4939.625 L -1.25 slw 0 sg str -gr -gs -6202.625 4987.625 m -6222.625 5034.625 L -1.25 slw 0 sg str -gr -gs -6244.625 5082.625 m -6265.625 5129.625 L -1.25 slw 0 sg str -gr -gs -3454 5427 3697 5757 R -1 sg fill -gr -/_Helvetica ff [312 0 0 -312 0 0] mf sf -3454 5670 m 0 sg (m) show -gs -5017.625 2322.625 m -5017.625 2373.625 L -1.25 slw 0 sg str -gr -gs -5017.625 2426.625 m -5017.625 2477.625 L -1.25 slw 0 sg str -gr -gs -5017.625 2530.625 m -5017.625 2581.625 L -1.25 slw 0 sg str -gr -gs -5017.625 2634.625 m -5017.625 2686.625 L -1.25 slw 0 sg str -gr -gs -5017.625 2739.625 m -5017.625 2790.625 L -1.25 slw 0 sg str -gr -gs -5017.625 2843.625 m -5017.625 2894.625 L -1.25 slw 0 sg str -gr -gs -5017.625 2947.625 m -5017.625 2998.625 L -1.25 slw 0 sg str -gr -gs -5017.625 3051.625 m -5017.625 3102.625 L -1.25 slw 0 sg str -gr -gs -5017.625 3155.625 m -5017.625 3206.625 L -1.25 slw 0 sg str -gr -gs -5017.625 3259.625 m -5017.625 3311.625 L -1.25 slw 0 sg str -gr -gs -5017.625 3364.625 m -5017.625 3415.625 L -1.25 slw 0 sg str -gr -gs -5017.625 3468.625 m -5017.625 3519.625 L -1.25 slw 0 sg str -gr -gs -5017.625 3572.625 m -5017.625 3623.625 L -1.25 slw 0 sg str -gr -gs -5017.625 3676.625 m -5017.625 3727.625 L -1.25 slw 0 sg str -gr -gs -5017.625 3780.625 m -5017.625 3831.625 L -1.25 slw 0 sg str -gr -gs -5017.625 3884.625 m -5017.625 3935.625 L -1.25 slw 0 sg str -gr -gs -5017.625 3989.625 m -5017.625 4040.625 L -1.25 slw 0 sg str -gr -gs -5017.625 4093.625 m -5017.625 4144.625 L -1.25 slw 0 sg str -gr -gs -5017.625 4197.625 m -5017.625 4248.625 L -1.25 slw 0 sg str -gr -gs -5017.625 4301.625 m -5017.625 4352.625 L -1.25 slw 0 sg str -gr -gs -5017.625 4405.625 m -5017.625 4456.625 L -1.25 slw 0 sg str -gr -gs -5017.625 4509.625 m -5017.625 4560.625 L -1.25 slw 0 sg str -gr -gs -5017.625 4614.625 m -5017.625 4665.625 L -1.25 slw 0 sg str -gr -gs -5017.625 4718.625 m -5017.625 4769.625 L -1.25 slw 0 sg str -gr -gs -5017.625 4822.625 m -5017.625 4873.625 L -1.25 slw 0 sg str -gr -gs -5017.625 4926.625 m -5017.625 4977.625 L -1.25 slw 0 sg str -gr -gs -5017.625 5030.625 m -5017.625 5081.625 L -1.25 slw 0 sg str -gr -gs -5017.625 5134.625 m -5017.625 5185.625 L -1.25 slw 0 sg str -gr -gs -5017.625 5238.625 m -5017.625 5290.625 L -1.25 slw 0 sg str -gr -gs -5017.625 5343.625 m -5017.625 5394.625 L -1.25 slw 0 sg str -gr -gs -5017.625 5447.625 m -5017.625 5498.625 L -1.25 slw 0 sg str -gr -gs -5017.625 5662.625 m -5017.625 5713.625 L -1.25 slw 0 sg str -gr -gs -5017.625 5766.625 m -5017.625 5817.625 L -1.25 slw 0 sg str -gr -gs -5017.625 5870.625 m -5017.625 5921.625 L -1.25 slw 0 sg str -gr -gs -5017.625 5974.625 m -5017.625 6026.625 L -1.25 slw 0 sg str -gr -gs -5017.625 6079.625 m -5017.625 6130.625 L -1.25 slw 0 sg str -gr -gs -5017.625 6183.625 m -5017.625 6234.625 L -1.25 slw 0 sg str -gr -gs -5017.625 6287.625 m -5017.625 6338.625 L -1.25 slw 0 sg str -gr -gs -4432 4718 4439 4757 4586 4691 4425 4680 4432 4718 4 P closepath -0 sg fill -gr -gs -4432 4718 4439 4757 4586 4691 4425 4680 4432 4718 4 P closepath -1.25 slw 0 sg str -gr -gs -3103.25 2322.25 m -6814.25 2322.25 L -52.5 slw 0 sg str -gr -gs -3767.625 5134.625 m -5017.625 2322.625 L -1.25 slw 0 sg str -gr -gs -3934 3602 4108 3932 R -1 sg fill -gr -3934 3845 m 3.12 slw 0 sg (L) show -gs -3611 4978 3923 5291 OV -0.25 sg fill -gr -gs -3611.625 4978.625 3923.375 5291.375 OV -1.25 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob33.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob33.gif deleted file mode 100755 index d403371f5..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob33.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob34a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob34a.eps deleted file mode 100755 index 753df4beb..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob34a.eps +++ /dev/null @@ -1,8 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: hw4p8f.eps -%%CreationDate: 9/12/1994 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%BoundingBox:131 497 448 610 -%%EndComments save % Basic Definitions /gs {gsave} def /gr {grestore} def /t {translate} def /sc {scale} def /sg {setgray} def /srgb {setrgbcolor} def /ff {findfont} def /mf {makefont} def /sf {setfont} def /slw {setlinewidth} def /str {stroke} def /slc {setlinecap} def % Polyline operators /pl % x y pl x y { transform 0.25 sub round 0.25 add exch 0.25 sub round 0.25 add exch itransform } def /setstrokeadjust where { pop true setstrokeadjust /c % x1 y1 x2 y2 x3 y3 c - {curveto} def /C /c load def /v % x2 y2 x3 y3 v - {currentpoint 6 2 roll curveto} def /V /v load def /y % x1 y1 x2 y2 y - {2 copy curveto} def /Y /y load def /l % x y l - {lineto} def /L /l load def /m % x y m - {moveto} def /dot {currentpoint transform exch 1 add exch itransform lineto} def } {%else /c {pl curveto} def /C /c load def /v {currentpoint 6 2 roll pl curveto} def /V /v load def /y {pl 2 copy curveto} def /Y /y load def /l {pl lineto} def /L /l load def /m {pl moveto} def /dot {currentpoint transform exch 1 add exch itransform lineto} def }ifelse % Rectangle: left top right bottom R - /rectangleDict 4 dict def /R {rectangleDict begin /bottom exch def /right exch def /top exch def /left exch def right bottom m right top L left top L left bottom L right bottom L closepath end} bind def % Oval: left top right bottom OV - /ovalDict 10 dict def /OV {ovalDict begin /bottom exch def /right exch def /top exch def /left exch def /yrad bottom top sub 2 div def /xrad right left sub 2 div def /y yrad top add def /x xrad left add def x y t xrad yrad sc newpath 0 0 1 0 360 arc closepath 1 xrad div 1 yrad div sc % Reverse scaling. end} bind def % Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - /rRectangleDict 10 dict def /RR { rRectangleDict begin 2 div /hvy exch def 2 div /hvx exch def /bottom exch def /right exch def /top exch def /left exch def /nleft hvx left add hvx div def /ntop hvy top add hvy div def /nright right hvx sub hvx div def /nbottom bottom hvy sub hvy div def hvx hvy sc newpath nright nbottom 1 90 0 arcn nright ntop 1 360 270 arcn nleft ntop 1 270 180 arcn nleft nbottom 1 180 90 arcn closepath 1 hvx div 1 hvy div sc end } bind def % Arc: left top right bottom startangle endangle A - /arcDict 12 dict def /A { arcDict begin /endangle exch def /startangle exch def /bottom exch def /right exch def /top exch def /left exch def /yrad bottom top sub 2 div def /y yrad top add def /xrad right left sub 2 div def /x xrad left add def x y t xrad yrad neg sc 0 0 1 startangle endangle arc 1 xrad div 1 yrad neg div sc % Reverse scaling. end } bind def % Polygon: xn yn ... x1 y1 n-1 P - /polyDict 1 dict def /P { polyDict begin /numOfPoints exch def m numOfPoints {L} repeat end } bind def % Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - /fillDict 11 dict def /patfill { fillDict begin gs /fa exch def % Grab pattern. srgb % Set background color. 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. flattenpath pathbbox % Get path bounding box. /ury exch def /urx exch def /lly exch def /llx exch def % Get edges. clip newpath llx lly m llx ury L urx ury L urx lly L closepath fill % Fill in background color. srgb % Set foreground color. /w urx llx sub ceiling cvi def /h ury lly sub ceiling cvi def /bytes w 8 div ceiling cvi def /patstr bytes 8 mul string def /row 0 def /patproc { 0 1 7 { /row exch def row bytes mul 1 row 1 add bytes mul 1 sub {patstr exch fa row 8 mod get put} for } for patstr } def llx lly t w h sc w h true [w 0 0 h 0 0] patproc imagemask gr end } bind def % Outline string show: string olshow - /outlinedict 1 dict def /olshow { outlinedict begin /cs 1 string def { cs 0 3 -1 roll put % Stuff the char into the string cs. gs 1 sg cs show gr % Paint the char white and move back. cs true charpath currentpoint str m % Draw char outline. } forall end } bind def % Shadow string show: string shadow-x shadow-y shshow - /shadowdict 3 dict def /shshow { shadowdict begin /shady exch def /shadx exch def /cs 1 string def { cs 0 3 -1 roll put % Stuff the char into the string cs. currentpoint shadx shady rmoveto % Draw shadow. cs show m gs 1 sg cs show gr % Paint char white. cs true charpath currentpoint str m % Draw char outline. shadx 0 rmoveto % Move to next char position. } forall end } bind def % Text Encoding Procedure /Z % array literal literal direction Z - { pop findfont begin currentdict dup length 1 add dict begin {1 index /FID ne {def} {pop pop} ifelse} forall /FontName exch def dup length 0 ne { /Encoding Encoding 256 array copy def 0 exch { dup type /nametype eq {Encoding 2 index 2 index put pop 1 add} {exch pop} ifelse } forall } if pop currentdict dup end end /FontName get exch definefont pop } def %%EndProlog %%BeginEncoding: _Times-Roman Times-Roman [ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis /Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute /egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde /oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex /udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls /registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash /infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation /product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash /questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta /guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe /endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide /lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright /fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand /Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex /Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex /Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla /hungarumlaut/ogonek/caron ] /_Times-Roman/Times-Roman 0 Z %%EndEncoding gs 0 792 t 0.058 -0.058 sc 2 slc gs 5208 3811 5364 4037 R 1 sg fill gr /_Times-Roman ff [208 0 0 -208 0 0] mf sf 5208 3967 m 0 sg (m) show gs 3715 3412 3888 3638 R 1 sg fill gr 3715 3568 m 0 sg (M) show gs 2517 4557 7534 4887 R 0 0 0 1 1 1 [8 66 0 144 4 64 16 1] patfill gr gs 2516.75 4556.75 7534.25 4887.25 R 17.5 slw 0 sg str gr gs 3142 3620 4409 4575 R 0.5 sg fill gr gs 3141.75 3619.75 4409.25 4575.25 R 17.5 slw 0 sg str gr gs 4392.5 4089.5 m 5955.5 4089.5 L 105 slw 0 sg str gr gs 5954.75 4088.75 m 6735.75 4088.75 L 17.5 slw 0 sg str gr gs 6892 4089 6736 4141 6736 4089 6736 4037 6892 4089 4 P closepath 0 sg fill gr gs 6883 4080 6727 4132 6727 4080 6727 4028 6883 4080 4 P closepath 17.5 slw 0 sg str gr gs 6996 4037 7118 4263 R 1 sg fill gr 6996 4193 m 0 sg (F) show gr %%Trailer restore \ No newline at end of file diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob34a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob34a.gif deleted file mode 100755 index 3b6bf330d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob34a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob35.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob35.eps deleted file mode 100755 index 629a81fe0..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob35.eps +++ /dev/null @@ -1,1221 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Title: BALOON.EPS -%%Creator: DeskScan II - Hewlett-Packard Company -%%CreationDate: Fri Feb 16 6:31:37 1996 -%%BoundingBox: 0 0 88 144 -%%EndComments -%%EndProlog -save -15 dict begin -/xpoints 88 def -/ypoints 144 def -/xpixels 363 def -/ypixels 598 def -/rasterbytes 46 def -/bitspercomponent 1 def -/xunits xpixels xpoints div def -/yunits ypixels ypoints div def -/coords [xunits 0 0 yunits neg 0 ypixels] def -/picstr rasterbytes string def -/readimage { currentfile picstr readhexstring pop } def -xpixels ypixels bitspercomponent coords /readimage load -image -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFF7FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000010000007FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEC000000010000000003FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC100000001F9E0200000005FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000903F9F81D00000001FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000000B61F79FE86E008000003FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000002A05C80FE9FE85FC278000007FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000280701FF07FF97EA16F01E8100007FFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFF80003807C0FDC0FFF1FFA03FD07F0000003FFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFC0003E07A00EF31FFF9F7D01FE43FC0500007FFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFC0001E837E07FD02FFF8FFF015F80BF81E8000FFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFE0001F80DD80B7A43BFF4FFDA0EFF037F00B80007FFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFE0001FA02F603FEA07FFF1BFF201FEE1FFC0AF0001FFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFF8000BDC1FE00EDD21FFFF9EEF8005F083BF80BC0083FFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFF80107DF0FEA807EB817FFF9FFF709FFE81FFD00FC0E03FFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFE05C17FC1F5E07FFD02FF7F9FFFC4277EC0FFF82B70180FFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFF83807DF077E00B7ED83FFFF8FFBF02B7EE05FFE0BFC0FC3FFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFC1801FF417ED007EFA0FDFFE9F7F7205FFC82EFF81BF80F07FFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFF05E07F783FB506FF7A07FFFF07FFC203FFF80FFFE0FFA01E1FFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFC1D03FDE0FFEA03FFD00DFFFF9FFFE904BF7E0BFFF027D00D87FFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFE0A10BDF02FEA817FF581FFFFF8BFFED02EFFA83BFB82AFF07D0FFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFF81E83FFD0FBD50176FE01FFFEF8FF7F8057FFC01FFFE0FFB82F43FF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFF0D807FEE17F5C0B7FE9037FFFB9DFFEE054F7FA0B7FF807FE0370FF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFF83D01DF783FEE003FB7A03F7FFF97FDF4A06FFF717FFF81AFD82FC3F -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFE0AD0FFFF0FFE3C1DBFFA0BFFFFE9FFFF6811FEF801FFFE06BFC0D70F -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFC7EA1FFBA1FDF8047EFD0877FFFF17BFF6A0F7BBF037FFF02AFF03FC7 -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFF2F283FFF86EF5403FFF4C0FFBFFF9BFDF7201FFF541DFFFE0BEEC8771 -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFC1B40F77687FFB0037BED11DFFFFF0FFF7DC06DFFE407F7FE14BFB0BF8 -7FFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFF8F943FFF61FFEDC0DDFEE40FFFFFF8AFFFF502D7FB507FFFF87BFE00BE -3FFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFE36A07FFBA1FEBD00AFFF9517FFFEE1DFFF7800FFFFF43BFFFC037FC0EF -8FFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFF87CA1AFFF8F7FC105F7EE603DFFFFF93FFFAF052FFFA51FFFFC10FFF03F -E3FFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFF1D622FDBA17EFBE047EFDA83FFFFFF8FEFFE800FBFFD40FFFFF0B7FF82F -D1FFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFC6F007FFFE1FEDC005DFEDC01FFFFFF97FEF6F80AFFFE105FFFF8557FC02 -FC7FFFFFFFFFFFFFE0 -FFFFFFFFFFFFFF8F651FFEEC5F7B742A7FBF1077FBFF69DFFFF2817AFDFA07F7FFC15FFF03 -7F3FFFFFFFFFFFFFE0 -FFFFFFFFFFFFFE17603FDFF077FD980B77E6C07FBFFFE8FFFF7A207EFF7606FFFFE1D3EF00 -F71FFFFFFFFFFFFFE0 -FFFFFFFFFFFFFC7F883FFB51FFFB404AFFFF505FFFFFF877FFB68087BFFA83BFFFF03DFFC0 -3DC7FFFFFFFFFFFFE0 -FFFFFFFFFFFFF8FCA0FFEFE1FFFCA04FFFFB047BFFFFF1FFFFFA2037FFDA01FFFFF825FFE1 -EBF3FFFFFFFFFFFFE0 -FFFFFFFFFFFFE16901EFFDC6FF570053F7F6A1FFFFFFE83EF7FF429BFFF5A0FEFFFC3CDFF8 -37F8FFFFFFFFFFFFE0 -FFFFFFFFFFFFE7E907FFF7C7FDDC201AFEFA016FFFFF79EFFFD9502FF7FD005FFFFE05FFFC -0B7C7FFFFFFFFFFFE0 -FFFFFFFFFFFF8DF80FFEFD07FFEB0217FFD4A1BDFF7FF07FFFFD400DEFF7E07FFFFF08DDFC -16EF3FFFFFFFFFFFE0 -FFFFFFFFFFFF1FC217FFBD07BF7940DF6FFD21FFFFFF78FF7FEF806AFFFF7037FFFF8A7FEE -06BF9FFFFFFFFFFFE0 -FFFFFFFFFFFC7F683FF7FE3FFFA900AFFF6341FFFFFFF17FFFDEA00F7EFF803FFFFFC2EDFF -815F47FFFFFFFFFFE0 -FFFFFFFFFFF85B007DFEDC3BF7AB007B7FB903DFFFFFF95FFFFB8043FFFAF03DFFFF612F7F -405FE3FFFFFFFFFFE0 -FFFFFFFFFFF9FEC0BFFFF07FFF58057FFFAD037FFFFFF1F7F7FEE012DFFF141FFFFFC2C5FF -E16FF1FFFFFFFFFFE0 -FFFFFFFFFFE3FA01FFFF58FFBBD0015BDDEA03FFFFFDF03F7FBD0012FFDFD40EEFFFF03FFF -D057FCFFFFFFFFFFE0 -FFFFFFFFFFC7DA83FFBDF07DFC6C017FFF5E03EDEFFFF1DFFFF57805EFFEAC07BFFFF84FEF -F016FC7FFFFFFFFFE0 -FFFFFFFFFFCAEA83F7DFC3FFFF440BDFEFD086FFFFFFB97FFFFD500EFFF7E807FF7FFC5ABF -F811FE3FFFFFFFFFE0 -FFFFFFFFFF1FD507FFFEC1FFFA5008F7FDD405FFFFFFF0DBF7FF300177FF7203F7FFF81BF7 -FE077F9FFFFFFFFFE0 -FFFFFFFFFE3FE00FFFDFC7BF6EA0173BFED007DFFFFFF97FFFFEE80E5DFFDA07FFFFFE05BF -FB01DFCFFFFFFFFFE0 -FFFFFFFFFC3E943FFF7A87F7D78042FF7BA407F7FEFF685FFFB71402BFFFF0A3FFFFFE1D7F -7F09DFC7FFFFFFFFE0 -FFFFFFFFF8DEA03FEFFE97BFF6A815BFBFA50BFFFFFFE9FFFFFFD002BEFFD300FFFFFF05FB -FFC0F7F3FFFFFFFFE0 -FFFFFFFFF1FAA87EFFFE1FFFC58087FFFDE00AFFFFFFF85EFFDD8502DFFFF4C17FFFFF853F -FF821FF9FFFFFFFFE0 -FFFFFFFFF3FFA0DFFF6E3FFEEC10B5FFFE280FFBFFFFE1F7FFFEE800EFDEF601FDFFFFC1D5 -FFC01FF9FFFFFFFFE0 -FFFFFFFFE7F560FFFFBE2DFFAB400777FDD20BBFEFF7F03FBFFF5206E5FFFD807FFFFFC23F -FFF02FFEFFFFFFFFE0 -FFFFFFFFCFBE01FFF7F83FBDE84025FFDE5A0FFFFFFEF1AFFFED5A017BFBFC507FF7FDE09E -EFF0ABFE7FFFFFFFE0 -FFFFFFFF87E943FFEED46FFFFA002FFFEF500F7DFFFFD1FFFFFF78051FFF6F00AFFFFFA2B7 -FFF059F73FFFFFFFE0 -FFFFFFFF3FB603FBFFF87FFED0005BBFFBD017FFFFFFF86F77FBA2016FFFF4D077FFFFF09F -B7DC017F9FFFFFFFE0 -FFFFFFFE3DCA0FDF7F60FFFBF4007EF7DE841FEFFFFFF0FBFEFCF0085FBFFEA23DFFFFF161 -FFFC12FDCFFFFFFFE0 -FFFFFFFE3D790FFFF772DFBFD58117BFDBE016FFFFFFB87FFFFF830155FFF6E01FFFFFF856 -FFF617BFCFFFFFFFE0 -FFFFFFFCFFC01FFFFFE1FDFEB0006EFFFE851FFFFFFFE9DFFFFFFC00DFDFDF001DFFFFF84A -FFFE01FFE7FFFFFFE0 -FFFFFFF9FB701FFFF7A7FFEE860097FFF760377FFFFFE877FFDF87002DFFFBC01EFFFFFC6A -BDFF0D2FF3FFFFFFE0 -FFFFFFF1FF843FFFFDC2F7F7A802B7FDFD283BFFFFEFF0BF7FFEE100EBFFFD321FFFFFFC1E -EFFF815FF3FFFFFFE0 -FFFFFFF3BAE05FFF5F8FFFF78A04AFEFB5003DFFFFFFF0EFFFF774052EFDFF901F6FFF7E04 -FFFF806FFCFFFFFFE0 -FFFFFFE3F6287FFBFA86FFFDA8056BFFF8D03FF7FFFB78BFFFFFDA81ABFFFEF407FFFFFE1F -2FFFE257FCFFFFFFE0 -FFFFFFEFDD00FFFFFF87FFF468012FBFFE401FFFDFFFF0CFFBFCD800B7FFDF950FF7FFFF05 -FBFFC079FE7FFFFFE0 -FFFFFFCEF500F7FFBF0FBBEF80017BF7DAD0777FFFFFD85BFFEFA5005AEFF6F005FFFFEF09 -2FBFE0AF7F7FFFFFE0 -FFFFFF8FFD01FFBFB22BFEFA60287FFFDE007FFFFFFFF1FDFDFEE5004F7FFFAC07FFFFFD81 -B5FFF0A1FB3FFFFFE0 -FFFFFF1FF113FFF7EF1EFFDF14015FFFD3803BFFFEFEF85FFFFFA54217F7F6D147FFFFFF82 -FFFFE02F7F9FFFFFE0 -FFFFFF1EC9437FFFFC5FFFEB5002FF7EFC087FFFFFDFD1F7FFFFE460B57FFFF806FDFFFF80 -BEF7F443FF9FFFFFE0 -FFFFFF77EA87FFBDEE3FFEFA80048FFBD7003F7FFFFFF07FFF7BB1002F7FBF4683BFFFFFC0 -E7FFF81ABDCFFFFFE0 -FFFFFE7F7A07BFEFFC1FDFFF08037BFEFC486DFFFFFEF02F7FFDCE80E9FFFF7209FFFFFDE4 -3F7FFC03BFEFFFFFE0 -FFFFFCBFC08DFFFEF0F7FF512816AFFFEF003FFBFFFFD0AFFFFF72010F77FFDA83FFFFFFE1 -69EFFE14EFE7FFFFE0 -FFFFF8FD3C0FEFFBB83FDFF520057FBFF140DF7FFFFEF01FF7FF5B8143FFFFD4017BFFFFB1 -0FFDFA17BFF3FFFFE0 -FFFFF8FFC117FFFF78FFFBE44025BFFDE850BFFFFFFFF1EBFFFBF0001BFFFEF403EFFFFFF1 -56B7FE017FF3FFFFE0 -FFFFF9ED701FFFBFA877FFB70025EFBF6AC0DFBFFFFFD86EFFFFDE0003B7FEF5417DFFFFD0 -1FFFFF095FB9FFFFE0 -FFFFF3FFA81FFFFFF1FFFDEA40A97FFFFA00F7FFFFBFF8BFFFFF654055FFBFD851FFFFFFF0 -17BFFF81EFF9FFFFE0 -FFFFF3F5A03FFFDBA0FDFF7A100B7FFF9C805FF7FFFFD0F7FF7FF540173FDFEB00FFFFFFD0 -D1FFFF08FBFDFFFFE0 -FFFFE6FEA83FBFEFF1FFFFB80003FBDFF420F6FFFFFEE8DF7FFF6F40B1FFFDF8D0BFEFFFF8 -3D7F7F81B7FCFFFFE0 -FFFFE7AF807FF7FDC3FFFAD4801ABFFF5E007FFFFFFFF0F3FBFBF0201D3FFECE00B7FFFFF8 -C1F7FF80BDFE7FFFE0 -FFFFCFFC40BFFEFEE0DDFFC70007EFFDE942FFFF7FF7F01FFFDF5A8123FFFFF680FDFFFFFC -0FBBFFC5AFFE7FFFE0 -FFFFCFF700FFFFF7A2FF7EF4601D7FDF6C00BDFFFFFFB1EFFFFFFA200ADFFFB680DFFFFFDC -22FFFFE02EFE7FFFE0 -FFFFDFFA50FFFFBF46FFDF550207EFFFE940FFFFFFFED02FFFFF5F8107EFFFF5807FBFFFFC -4EB7BEE037BF3FFFE0 -FFFF9DDC017FFFFF41FFF7E400357BFF6801AF7FFFFFF03EFFFDE48053EDFFFC08BFFFFFFC -16FFFFF11FFFBFFFE0 -FFFF1FE2E0FFF7DF86FFFF1A00AFFFDFCA817FFFFFEFF0DFDFEFBB2007BFF7F5406DFFFFFE -05BDFFB06FFF9FFFE0 -FFFF3FFA21FDFFFAC7FEFB4880A3FEFBF001FBDFFFFDF857FFFFE34010FFFFD9107FFFFFFE -1D5FFFE0137F9FFFE0 -FFFF37D581FFFFDF437FF5EA011AFFFE1401BFFFEFFFE1F7FF7EFC303D6FFDF7402FFFFFF6 -25FBBFF0F5DFCFFFE0 -FFFC7EDC01FFFEF70DEFBFAA014BF7FEF400FFFFFFFF701DF7FFAF8082FFFFF8B03FFFFFFE -2D2FFFB803FFCFFFE0 -FFFE7FAD03DFBFFB87FFFAF00036FFBAB403BBFFFFFFF1EBFFFBF060293B7FDE8037EFFFFF -017EFFF0A57FCFFFE0 -FFFE7EE847FFEFDF1EFFFB51021FBFFFA100DF7FFFFFF02FFFFF5E000BDFFFFE803FFFFFFF -00F7FFFC1BFBEFFFE0 -FFFEEFBE07FFFFF917F7FEE4006BFBFFF803BFF7FEFB71EFFFFFFAA028FFFFF7281B7FFFFF -0ABBFFFC2BFFE7FFE0 -FFF8F7C207FFFEDF1FFFBB95023D7FBDC203FFFFFFFFD02EFFFBFAB00ED7EFDE821FFFFFEF -82DDDBFC0ABFF7FFE0 -FFFCFFF003FFEFFE17FFF74400A7DFFFAA01EFFFFFFFF03FDFFFD70047FDFF7D582FFFFFFD -8AAFFFF60EDFF7FFE0 -FFF9FED08FFBFBEE1F7FFD32003FFFDF4283BFFFFFFF70F3FDFEF560153FFFEF402FF7FFFF -817AFFF8147FF3FFE0 -FFF9FBB00FFFFF7E3FFBBF0A050BFFFBD002F77FFFFFD85EFFFFAA8006DFFFF9D03D7FFFFF -849FFFFE0BBFD3FFE0 -FFF97F850F7FFFF62BFFEDD8016AFFFE7403FFFFFFFFF1B7FF7FFA70315FBFEE541FFFFFFD -C26FBFFE01EFF9FFE0 -FFF1FEF00FFEFDEE1FFFFD04040BBDFBD0017FFFFFDFE81FFFFFEF00037BFFFFC01FFFFFFF -853FFFFE05FBF9FFE0 -FFF3F6AC1FFFFF723FF7F3D0005BEFDEBC03FBFFFFEEB0E7FFF7EAA029FFFFF6A8177FFFFF -C095DBFB02FFF9FFE0 -FFF3FF481FFFDFBA5FFFAEA40A5FFFFFA001BFDFFFFFE1CB7FFEFD9406DFFF5B200FFFFFFE -C2E9FFFE095FFBFFE0 -FFF3ED701FFFEFFC5DFFF6E102DDFFF55003DFFFFFFFF02FFFFEDA8402EDF7FF2817EFFFFF -C4AD7FFF02D7F8FFE0 -FFE77BC03FFFFFDA76FBFBA80037BFFF8A02FFFFDFFEF0ABFFFFFC2414BFFFFF0A1DFDFFFF -E265FDFF0ABFFCFFE0 -FFE7ED401FEFFBF83FFF7E0401BFFBDF4283F7FFFFFFD09FF7FFD78007AFFFF4D00EFFFFFF -C40FDFFD022FFEFFE0 -FFE7FF543FFFFEFCBFFFD5A802DAFFFF5402DFFFFFEF7877FEFFF970103DFFFF140FFFFFFF -E16AFFFF80FDFCFFE0 -FFC7FB403DFDFF6CAF7EFF0E044FFFEF9083FBF7FFFFE95B7FFF6F4007AF7FDBE00FDFFFFF -E13EDFFF853FFEFFE0 -FFCDFE943FFFDFF0BFFFF9D001AFFDFCF406FFBFFFFFD0D7FF7FEB10207FF7FAD40EFFFFFF -E14FF7FEC1EFFE7FE0 -FFCFFA803FFFFF787FEFDE440A5F7FEF9003FFFFFFFEE0DBFFDBDD40035FBFFFC10FFFFFFF -F036FFEF803DFE7FE0 -FFCFDCA83FFF7BE86FFEEE900097FFFCE005EFFFFFFFF03FFFFF7E8003F7FFFEE006F7FFFF -B20FBFFF0357FF7FE0 -FFCFF7007FFFFFE87FFFEAD40877BFFFA806BFFFFFEFF0AF7FFBF61408D7FEF72907FFFFFF -F0F5FBFFC0AEFF7FE0 -FFCF7CA87FFBFAF0EF7FCB84023BFBF76003FFFFFFFDB01BFFFFDB8402F7FFFDA80DFDFFFF -F097DFFF4297FB3FE0 -FF9FFF407FFF7F717FF77A6000DDDFFF4A03DFFFFFFFD1EBEFFF78F0143FFFFD2A07FFFFFF -E4C0FDFF80FF7F3FE0 -FF97E4C05FDFEEF8BBFFDD0204EFFEDD508577FFFFFFE03FFFFFEF00038BF77FD00DDFFFFF -703FFFFFC03FFF3FE0 -FF9F7F006FFFFFE1FFFBF538047AFFFF1607FBFEFBBEF095FFFBFC70347FFFEF5007FFFFFF -E096FFFFC0AFFF3FE0 -FF9FEAC07FFF7F70BFFEFD420517FFEFC905FEFFFFF7F8DEFFFFAD50055BBFFBC00D7FFFFF -F15ABEFF806FBEBFE0 -FFBFFA00FFFFF750BFFEED1001DFEFFA6006FFFFFFFFB057FFFFAF40017DFFFBF00DFEFFFF -F05EAFDFC04BFFBFE0 -FFBDEE80F7FFFFE0EEFFDAA0287FFDFDB003EF7FFFFFE0BEFDFFEA98095FFFFFA50FDFFFFF -E051FFFFE077FF9FE0 -FF3FFC20FFFBFDF17FFF5E840A97FFF6E0037FFFFFFEB02BDFFFFF0403F5FF7CA007FFFFFF -789D7FF78313EE9FE0 -FF9FFA087FFFDFA17FFFEA60217DBFBF080FFFFFFFFBF09FFFBBBAA800BF7FFF0805FFFFFF -E847DFFFE0B7BF9FE0 -FF3F7140FFFDEEF07FBF6D8402F7FFFDE0856FFFFFFFE84FFFFFDF8003AFFFFDEA06F77FFF -F11D6FFEE29BFFDFE0 -FF3FBD01FFFFFFD1F7FFD260017DFEEE5803FFFFFFFFF0DBFFFFF468147FFFBD5803FFFFFF -F8A7F7FFA02DFF9FE0 -FE3FCF41FBFFEFD2BFFFF900049FFFFF0207BEFFFFFFE277BFFBF150051FF7FF4002FFFFFF -F0AAFBFFC12F7F9FE0 -FF3F7A117FFFFF73FFEEF52801EFBFEE7003EFFBFFFD78DDFFFFAD5000FB7FFBF007BFFFFF -F856BFFFE0ABFFDFE0 -FF3FFB01FFFEF5C1FBFFB920067BFDFF1405FFFFFFFFE155EEFFFD50045FBFFF8507FFFFFF -D8D2DFFFE03AFF9FE0 -FE3FD881FFFFFFB0BF7BDD08091FEFF3D007FBFFFFFFE02FFFFFCF4001DBFF7BD0057FFFFF -F83BB7FFE14FDFDFE0 -FF3FF6A0FFFEDFE0FFFFEAE0085DFFFE2006DEFFFFFEF0AFFFFBECB0087FFFFD4907DBFFFF -D8557FFF603AFFDFE0 -FE5BD421FBDFFDB17FFF5E8402F7FFD7A007FFFFFFFFB02FFFDF778402D7FBF7A8077FBFFF -F089EBFFE017FFDFE0 -FE7EF901FFFFF7D1FDFBF0A0427DDDFDE885BFFFFDFBD166FFFFFC2802F77EFD5207FFFFFF -F8CF7EFFA297DFDFE0 -FE3FC481FFFFFDE0BFFFBE8012AFFFB78203FFBFFFFFF02FBFFBF70403ADFFFF6883FDFFFF -F823FFFFE01DFFCFE0 -FE7FED41FFFBBEF3FF7EFA0001EBFFFD7006FFFFFFFDB01FF7FFB58010AFFFFD5003BFFFFF -F80D577FE0A7FBCFE0 -FE7FEA00FFFFEF93BFFBED58143FFFFF0A0FB7FFFFFFE1D6FFFFF950053F7FFFD405FFFFFF -F0AAFFFFF03DFFCFE0 -FE7F6A01FFFFFEF1BFFFBD0805EBBBF8D003BFFFFFFFB0D7FEFFAF4021D7FFFAD003FFFFFF -F84E3FFF60AAFFCFE0 -FE3F7A01FFFFBF83FFFDE140096FFF7E1407FBFFFFFFF0D6FFFEF970087FBFDF8405F7FFFF -F852B7F7E05ABECFE0 -FE7BF0A1FFF7FFE0DFDF7C000C5FBFFB8105FFEFFF7BE07FFFFFDE800356FEFFE247BFFFFE -F424BF7FF05FBFCFE0 -FE7F5C00FFFFD7D1FBFFAAD0027FEFDEA007BFFFFFFF70ABFFFFF60402B7DFF6A805FDFDFF -F887FBFFE013FFCFE0 -FE7FF121FFFFFB617FFDDE800AABFFD72006FF7FFFFFB10FBFFDF6A8029FFFFF8A07BFFFFF -F8A4FBFFF017FFCFE0 -FE5FED01FBFDFDC1FEFF522002FFFBFDE003BFFFFFFFF03F7FFF77A403EDFBFD7205FFFFFF -782F6FFFA285FFCFE0 -FE7FE500FFDFFFF37FFFDC8092BBFFB71007FFFFFFFBD0D7FBFFBCB01537FF7DD207EFFFFF -E8E3BFFDE03F7FCFE0 -FE6EF811FFFFDDB2BFFFBB0802EF7FFDC20FD7FFFFFFF01DFFDFEF4001AFFFFB7002FFFFFF -F80D5FFFE02FDFCFE0 -FE7FB601FFFBFEC7DFFDF1601533F7FE5002FFFFFEFF61D7FFFFED5014BBFFFF9403FBFFFF -F84CFDFFE0B2FBCFE0 -FE3FD881FFFEFF60FDEFFD08074FFDDB5007FFFDFFFFD05DFDFFA740015EFFEEE003FEFFFF -F01E9FFFE10F7FCFE0 -FE7F7C00FFFFBFA3FFFFC880217BFFF65007EF7FFFFFF0E7FFFEFD70205EFFFEA402FFFFFF -F844FFFFA053FF4FE0 -FE6FD281FFFFFFE0FFFF7680081FFFDBA1057FDFFFDFF07BDFFF6C000BDBEFFF11077FFFFF -F8A0EF7FF05BBFCFE0 -FE7DFC09DFFFD6E3BEFDEAA000DDFEFDA807FFFFFFFDD12FFFFFF68400FDFF7F4807EFFFFF -78A76FFFE093FFCFE0 -FE7FD501FFFFFFA0FFDF5E800A7F7FDE8005BFFFFFFFE12B7FDFFCB4062FFFF78A07FFDFFF -E8C1FBFFC02FFFDFE0 -FE7FE940F7FFEEF2FFFFD60001AFEFFF4107FFFFFFFFF02FFFFF5F0003AFFBFD6006F7FFFF -F82F5FEFE007DFCFE0 -FE3FAD01FFDFFFD1DFFDF4E010BDFFBB0805FDFFFFFDF0F7FBFFF470143FFFBF1C03BDFFFF -E861FFFEE0B9FFDFE0 -FE3FAB40FFFEF670FFDEDE0807C7F7EFC007DFFFFFFEB03BBFEFAF4007CBFFEDE005FFFFFF -F81E7BFFC00EFFDFE0 -FE3F7A01FEFFFFD2BFFFF548017B7FFC7085F7FFFFFFF0D5FFFFEB50207DDFFAD407FFFFFF -B85ABF7FE0ABFDDFE0 -FF3BF881FFFFF7D2F7FEB7000D4FFFEFC806FFFFFF7FA85FFFF7AE40035FFFFFC1057DFFFF -E81ADFFFE24FFF9FE0 -FF2FB928FFFF7FE1BFFFCAD008BBFDFA7007DF7FFFF7F08FFFFFF70001D6FFFEA80FFFFFFF -F81F77FFC1B2FFDFE0 -FF3FDD80FFDFDD60FBDFFAC02A7FEFBD2805FFDFFFFFE167FFFDF290127FFFB5A507BEFFFF -F0A1FFEFE096FF9FE0 -FF3DF420DFFFFFE1FEFB4A8402DEFFF7C003FFFFFFFEF02FEFFF5F2002D7FBFEC805FFF7FF -F08E7FFF4297FF9FE0 -FF3FEB00FFFFDFB17FFFFAE0106DFFAF0806F7FFFFFFF0EAFFEFF8B802BDFFFF1207EFFFFF -F0EBF6FFE096FB9FE0 -FF37AD407FFDFB70FFFFAE0003AFDFF6C085BFFEFFFF613BFFFFDF00078FDFFB600DFFFFFF -D017EFFFC02FDF9FE0 -FFBFEF00FFFFFFD0BFFBF94801BBFFFB0A07FFFFFFDFF05FFFFFE970107FFDFB510FF7FFFF -F04AFFFFC0F7FFBFE0 -FFBFAAC0FFFFFFF0BFFEFD1A054FFFFED405DFFFFFFF70D7BFFFB700044FFFEFD0077FBFFF -E11A7FF7C03DFFBFE0 -FFBBFA04FF7FB771B7FEE948016BF5FA5407EFFFFFFF7055EFFFCB4001F6FFB8D00BFFFFFD -F05EBFFD80B7FE3FE0 -FF9FFE807FFFFFD8BEFFBE48085FFFF78105FBFFFFF7E0DDFEFDFD500A5FFFFFA10F7FFFFF -F0ADF7FFC15EFF3FE0 -FF9BF4A87FFDFBE87FFFEE800357FFFAE007FFFFFFFFF03FFFEFDF0403D7FFFCA00BFFFFFF -F01F3EFF034FFF3FE0 -FF8FDD087FFFBF61FFEFF2C000BD7FFEA805FDFFFFFF71E77FFFEA28027B7F5F000DF7FFFF -F1A3FBFFC057FF3FE0 -FFDEFC605FFFFFF87FFF5E2400B7FEB7A006FFFFFFFDF01BFFFF7BA003FFFBFD6C077FFFFE -D08DFFFF4097EF7FE0 -FF8FED427EFFDDB0AEFFDAC010DDFFFC0803BF7FFFFFB1ABFFFBF428102FFFFD500FFFFFFF -E2AB7FFF00FEFC7FE0 -FFCFEF407FFFFFF8BFFBEF0404AEFFEF4282EFFFFFBFD03EEF7FDF20072FDFED901FDFFFFF -E0A7FFFF049BFE7FE0 -FFC7FA103FDFDFF0BBFFF96801FBDEFF5007DFFFF7F7F0CFBFFF7240117DFFFE5007FFFFFF -605EDBFF807FFE7FE0 -FFCFDF803FF7FDBC9FFEFD52052FFFFF9403FFF7FFFFD075FFFFDB40045FFFEBC417FB7FFF -E172FFFE807FFE7FE0 -FFCF7A303FFFFF783FFFBF1A0556F7F954037FFFFFFDF0DDFFFFAD00817FEFBAA00DDFFFFF -A05EBF778557FEFFE0 -FFE3FF881FFF7F68DFBFD2C00057FFFEB403F6FFFFFFE057FBFBFA700B6FFFFEA11FFFFFFF -C1D5DFFE007DFCFFE0 -FFE7F9A03FFFF7F87DF7FD810A57BFB7C045FFFFFFFFD03FFFEF578003D7FFF7A015FFFFFF -C22F7FFF0F5FBCFFE0 -FFE7FCA83FFFDFA857FFD6C00035FDFAA8077FFFFFFDF1AEFFFFF82040FAFB7C281FFFF7DF -44ABFEFF00A7FCFFE0 -FFF5F9601FFFFFF45FFF7EA502BBFFBFA243DFFFFFFF7037FFFFFF28077FFFFD801DFFFFFF -C4AFF7F50E9FF9FFE0 -FFD7FF141FFFFBFC5FFFDAE000F9DFED7203EFFFFFFFF11F7FEF762011EFFFEC7016EFFFFF -442FBFFD01FFF9FFE0 -FFF2BFC09DFFFEDC37DBF520001FFFFE9401FEFFFFF7D0EFFFFDF5201D3FF7FF901FFFFFFF -C153FFFE14BEF9FFE0 -FFF1FFB40FF7BFDE1FFFF7DA0163FDFED402DFFFFFFFF0D5EFFF5540017BFDFAA01FFFFFFF -005FBFFC04D7E9FFE0 -FFF9DD850FFFEFFE2DFFF968013EFFEE5603F7FFFFFDE3B7FFFFEB70253FBFEF802FFDFFFF -81F5FF7A21FFF3FFE0 -FFF9FEB00FFFFFDA2FFFBF5A098BFF7BD003FFBFFFFFF0BBFFFFAD0003DBFFB7603DFFFFFF -8837FFFE0F7FF3FFE0 -FFF9FFAC07FFFFAE17FEF960027FBFFEB803BFFFFFFFB1EEFBFFDA3028FFFFFE802FDFFFFD -81DAFFFC0AF7F3FFE0 -FFF9F7E007FFFBFA1EFFFEAD080BDFEEC140F7FFEFFDD03FFF7DDA8007AFFFF7203DFFFFFE -866BFFF80F7FF7FFE0 -FFFCBD7807FFFFEF1FBFBFA10074FEFFB803FFEFFFFFF16FFFFEF60050FFFEB4887FFFFFFF -12BFDFEC03DFE7FFE0 -FFFCFFF087DFFFFD17F7DEA5012F77F6C282FFFFFEFFF037FFFFDEA00FAFFFBE401FFFFFFF -14EDFFF05EFF67FFE0 -FFF4FF5C27FDDEFF1FFFF7A400ABFFFF5803F7FFFFEED05FBFFFF38014FBFFF15077FFFFFF -0E3F7BF806FFCFFFE0 -FFFE7FC707FFFFF787FFFDB0002DFFFF5601BFFFFFFFF1DBFFFDF8302D7FEFFE107DF7FFFB -01D7FFF075FFCFFFE0 -FFFE77F401FFEFFA8BDFFF5A01037FFBD403DFFFFFFED0EFFF7F8F40857FFFEAC07FFFFFBC -2E7FFFD087DFCFFFE0 -FFFE7EB503FFFFDF0FFEF5D8005FFB7E7801FDFFFFFFE177FFFDF950215DFF7A8037FFFFFE -21D7FFF0A3FF9FFFE0 -FFFF3FA901FFFFFE8BFFFF54001BBFDFD401FFFFFFFFF09DFFFF6E000FFFFFDE807EFFFFFC -2AFF7FF02DFF9FFFE0 -FFFF3FBC01FFFDF7CBFEFBD44054FFFEEA016FDFFFFFF1EFEFFF7A004AFDBFEE08FFFFFFFE -06FBFFD0A7F7BFFFE0 -FFFF1FEA81FFFFDF86FFEFA5002F7FEFA340FFFFFFF6B07BFFFFD4A007BFFF5B00BFFFFFFE -1377FFE07FFFBFFFE0 -FFFF1FF811FFFFFDC7BFFDA540257FFDA801BBFFFFFFF16FFFFFD68055BFFBF940DDFFFFFC -1F3FDFA056FF3FFFE0 -FFFF8BDBA07EFFEF85FFFFB9402DDF7FCA00FFFFFFFFE17EFFFEF8200BBFFFEC00BFEFFFEC -45EFFBE07BFF3FFFE0 -FFFFDFFC80FFFDFCC5FEFEEC01ABFFFFA081F7FFFFFF701FFFFF4F0087DFFFE9D0FFFFFFF8 -1D3FFF831DFE7FFFE0 -FFFFCFBE80FFFFFFE3FFFFBA60237DFF7E01DFBFFFFFD1F7BDFFF4603D7FFFBA01EFFFFFFC -A7FBFFC1F7BA7FFFE0 -FFFFEBF5405F7FFF636FFF5A000BEFFFA400F7FFFFFF705DFEF78F00A1F7DBE280FBFFFFE8 -25DFFF44B7FE7FFFE0 -FFFFC7BF007FFFDBA1FEFBF0A05B7FECF409DFFFFFFFF1A7FFFFEB406B7F7FFC01FFFFFFF1 -ABFFFF036FFCFFFFE0 -FFFFE7FBA47FFF7FA27FFEDC0017BFFEB500FFFFFFFFE0FFFFFB74000BDFFDD7017BFFFFF1 -4AF7FF843FFDFFFFE0 -FFFFE5FC503FBFFDF0EFFFF240556F7FA851EFFFFFBFF09BFFFFEF214AFFFF7403BFFFFFF0 -2DDFFF05D7F5FFFFE0 -FFFFF7FF941FFFDFF0FFEFED60297FFFAA00FDDFFFF7B0DFFFFF70000EFFFFBD03FFFFFFF1 -D6FF7A817FF1FFFFE0 -FFFFF3FAD03FFFFEF0BFDEAB4025BFEFEA80FFFFFFFEF13FFFFBD7A057FBFFF142FFFFFFA0 -5FDFFE0B5FF9FFFFE0 -FFFFF2FF201FDFFF79FDFF7020297FFFBE803FFFFFFFD1FAEFFFF0202DBFFBAC03EF7FFFE1 -93FFFE09FFE3FFFFE0 -FFFFF9DDC01FFFFF787FFFDE0006FEFFC280F7FFFFFFF03FFDFF8F0097FFFFE283FFFFFFA0 -7DFFFC26FBF3FFFFE0 -FFFFF8FFEA0FF7F7F8AFFFF4A003F7FBFC20DFFFFFFEF2DFFFFDEA00A9FFFDB20377FFFFE5 -2F7FFE13FFE7FFFFE0 -FFFFFCFFA28FFFFFB47FF7FE800A9FFFD500FF7DFFFFF0DEFFDFA740AF7EFFC287FFFFFFC5 -EBFF7C0EFFE7FFFFE0 -FFFFFC7F5807FF7FB43DFFB2200AFFFAFC407BFFFFFFE0AFFFFEDA40EBFFFEF003FFFFFFC0 -ADB7FC17BFCFFFFFE0 -FFFFFE7FD687FFF7DC7FFDECD0052FBFB5007FFFFFFFF1DBFEFFE8052BFFFF4C06FBFFFFC1 -F3FFF031EFCFFFFFE0 -FFFFFE7DFC07FFFFF41EFFEF4001FBFFF850EFFFFFFF705FFFFEF7004ADFEFB007FFFFFF4E -3FFFD82DFFDFFFFFE0 -FFFFFF3F6903FFFFFA3FEFF560307FFFD6003FFFFFF7E1BBFFFFF4003FFFFEAC0FBFFFF78A -DFFFF0ABFF9FFFFFE0 -FFFFFF37E903FFFDFE1FFFBF000B5DDFE2C07DFFFFFF707F7FBFC3021FEFF7A00DFFFFFF0A -B7BFF03F7F9FFFFFE0 -FFFFFF9FFA03FFFFBF0F7FF5E0017FFFDE005FDFFFFFF16FFFFB7000B77FFDA807FFEFFF82 -FDFFD14BFE3FFFFFE0 -FFFFFF97EAC1FFFFB71FFFFE2C0ADFEEDF805DFFFFFFD0BFFFDFEB029DFFFF8A1FFFFFFD03 -DFFFE05BFF7FFFFFE0 -FFFFFF9FFA81FFEFFB0FFEFC8403EDFFF4207FFFFFFFF2D7FFFDAF00ABFDFDE28DEFFFFF15 -7DFFA14FFE7FFFFFE0 -FFFFFFCDEA80FFFFBF17FFBEA40CAFFFBD026FFFFFFDE2FFFFFEEA04AFFFDF820EFFFFFE05 -AFEFE07FFE7FFFFFE0 -FFFFFFEF7E20DFFFFD8FEFFF28036FFFF5407BFFFFFFF036FFFF0B01CFFFFB541FFBFFFE19 -DFFF805FB8FFFFFFE0 -FFFFFFE7FB80FFEFED8BFFE9E0103BDBFC107FFFFFFFE1E7FFFFF8015AFBFED01BFFFFFE01 -FFFFC2AFF8FFFFFFE0 -FFFFFFE3FC287FFFFF0F7FFF4A054FFFEBC05EFFFFFEF03FFFFFD50157FFFAD03EFFFFF43A -5FFF013BFDFFFFFFE0 -FFFFFFF2FF085FFFEFCBFFFAE0017EFEFE903FFFFFFFB1FFF7FB54007EFFDE781FFFFFF42B -F7FF05FFF9FFFFFFE0 -FFFFFFF3FB707FFDFE87F7DF52085FEFD5802FF7FFFFF05FFFBFD00817FFF7803FFFFFFC4A -FEF705BFFBFFFFFFE0 -FFFFFFF9FF483BFFF761FFFF540077FF7CA03DFFFFFFD16FFFFF6200FDFFFD6817FFFFF857 -7FFF07EFE3FFFFFFE0 -FFFFFFF9FFF01FF7BFC2FDFDF9029EFFFF003F7FFFFFF1FFFFFBF802AF7BFF023FFFFFF80B -EFFC05FFE7FFFFFFE0 -FFFFFFFC7FA81FFFFFA3FFFE8A02A7FFF5A82FFFFFFF70BBFFFF8B02AFDFEDC07B7FFFD82E -FFFC0A3FE7FFFFFFE0 -FFFFFFFC7FC50FFFFBD0FFFFE4003FFBDD021FFFFFF7E5D7FFFDF8057BFFFF106FFFFFE997 -FFFC29FFCFFFFFFFE0 -FFFFFFFE7EF00FFFFFD17FFEAE01ABFFFDD03BFFFFFFB03FBFBF05054FFFD9507FFFFFF05B -5BBC0EFF9FFFFFFFE0 -FFFFFFFE3FAA0FFFFDE1FDFFF2802EFFFA101FFFFFFFE1FBFDFFD2017BFDFE00F7FFFFE1BF -FFF813FD9FFFFFFFE0 -FFFFFFFF3FBA07FFDEF95FFFDA810FDDFBD01EFFFFFFF13FDFDED2075FEFF5A0FBFFFEE16B -FFF85DBF3FFFFFFFE0 -FFFFFFFFBFFA05FDFFE8FF6EF20076FF7AC81BFDFFFFF05FFFFFF408DFFFFA80BFFFFFE07E -FFE807FF1FFFFFFFE0 -FFFFFFFE8EF283FFFFF46FFF78801EFFBF851FFFFFFFD1DFFFEEB00AFFFFDF40FEFFFF8363 -FEF0B7FE7FFFFFFFE0 -FFFFFFFFCFDC23FFEEF8FFFFA500D5FFFCA00F7FFFFDF0EFFFFB8203FDFFF421FFFFFFC07F -7FF02DFE7FFFFFFFE0 -FFFFFFFFCFF581FFFF5C3BFEFE6097FFFF881FBFFFFFD377FFFFE8005F7EFB01BFFFFFC39F -EFC0AFFE7FFFFFFFE0 -FFFFFFFFC3F921FFFFF63FFFAD004BFFF6E21FFFFFFFF0BFFFFF2A06EFFFBE41DFDFFF08F7 -FFC07FFCFFFFFFFFE0 -FFFFFFFFE7EEC0FFFFFA9FFFF4502FDF7F1A0BFFFFFFE3F7FBFDA8157FFFEA01FFFFFF8B9F -FFC176F9FFFFFFFFE0 -FFFFFFFFF7FB407FFFFE1FEFBE800DFFFBC09EFFFFFFD07EFFF7420F7FF7FA03F7FFFF02EF -FF417FF9FFFFFFFFE0 -FFFFFFFFF2FF107FFBFE1DFFF2804AFFFF700FFFFFFFF0BFFFFED0295FBFF8A1FFFFFF2D6F -FF075FD3FFFFFFFFE0 -FFFFFFFFF9FEF43EFFFF0FFFDEA01FB7DED0077BFFFFF17BFEFFB4076FFF9A877FFFFB13FF -FF82FFF3FFFFFFFFE0 -FFFFFFFFE8FE943FFEBB1FEDF68042FFF7A40FFFFFFDF05FFFFF840BFFFFD883FFFFFA11EE -FF0B9FE7FFFFFFFFE0 -FFFFFFFFFCFFC83FFFDF87FFFAB05F7FFF810FFFFFFF71EFFFEBE048FFF7E407BFFFFE06F7 -FE0AF7EFFFFFFFFFE0 -FFFFFFFFFE5F7C1FFFFA8BFFBE8085BDFDEC077FFFFFF2FDFFFB2003DFFDF447FFFFFC36FF -FE0AFF4FFFFFFFFFE0 -FFFFFFFFFE7FE21FBFF7CBFFFD6821FEFF2A0FFFDFFFE1DFFF7DA825FFFEBC0FFFFFFC2BFF -F617FF9FFFFFFFFFE0 -FFFFFFFFFF3FB20FFFFF85FFEF000FFFFFAA8BBFFFFFF0BFFFFF282DDFFFAA0DDFFFFC3B7F -FA357F9FFFFFFFFFE0 -FFFFFFFFFF2FD48BFFFEE3FFFAE0097FFD7A07F7FFFFF1EFFFFDC014FBFEE807FFFFF85FBF -F887FF3FFFFFFFFFE0 -FFFFFFFFFF1FF487FFF7A2FDFEF0075FFF9486FFFFFF70FFFFFD702F7FFFDA1FFFFFD8A7EE -F8ADFE7FFFFFFFFFE0 -FFFFFFFFFF9FDC07FDFEF3FFFEA40BDFBFE00BFFFFFFE15FBFEFC00DFFEFE01FFFFFF0F5FF -F837FC7FFFFFFFFFE0 -FFFFFFFFFFCBF783FFFFD0BFF7B41AAFDFF607FFFFFFF17FFFFC706E7FFF941DFFFFE1B7FF -E0BBEE7FFFFFFFFFE0 -FFFFFFFFFFC7FE41FFFF71FEFEC202FFFBE145FFFFFF707FFF6F800BF6FBC0AFEFFFF0F6FF -F07FFCFFFFFFFFFFE0 -FFFFFFFFFFE3F701FFBFF1FFEFF804FFFDB907FFFFFFF1D7FFF56052FFFED43EFFFFE39BFF -E11FF9FFFFFFFFFFE0 -FFFFFFFFFFF37E517FFFB87FFE8B016BFFAA05EFFFFFE2BFFFFF082FFFFEA03FFFFFA47FFF -C07F73FFFFFFFFFFE0 -FFFFFFFFFFF9FD80FFEFF8BEFFF2817FFFFA05FFFFFEF2FFFFFDA085FFFAA01FFFFFC07FBF -43CFE3FFFFFFFFFFE0 -FFFFFFFFFFF9FF70FFFEEC7FFECA0DDFFFED03FFFFFFF0B7FFFA4037FEFDA87FFFFFC5DBFF -82FFE7FFFFFFFFFFE0 -FFFFFFFFFFFCDDA07FFFF85FEFB400DBFB7C03DFFFFFE1FF7F7EC09DBFFCC06FFFFFC47FFF -0777E7FFFFFFFFFFE0 -FFFFFFFFFFFCFFA01FF7B63FFEF90A5F7FDF01FFFFFFF1BFFFEAF02F7FDF107FFFFF07DFF7 -15FFCFFFFFFFFFFFE0 -FFFFFFFFFFFE7FA83FFFFE3FFFFD02DFFFF0037FFFFFF17FDFFE802FFFEFC0FFFFFB1AEFFE -17BF9FFFFFFFFFFFE0 -FFFFFFFFFFFD2FE21FFFFB0FFFDC003BFFD701EFFFFFD0EFFFBAE07BDFFE50BFFFFF07FFFC -15FF9FFFFFFFFFFFE0 -FFFFFFFFFFFF3F781FFDFE2FDEE681AFBFD541FBFFFEF03FFFEF010FFFFF00FFFFFC32FDFE -2DFE3FFFFFFFFFFFE0 -FFFFFFFFFFFF8FDE0FFFFB9DFFEA00BFF7FD41BFFFFFF3FFFFDAA0F3FFEAA1EFFFFE1FBFFC -2FFF3FFFFFFFFFFFE0 -FFFFFFFFFFFF8FF407FFBF8FFFDF806FFFEB41FFFFFFF0FFFFFE021DFDFF00FFFFFC35FEF8 -6BFE7FFFFFFFFFFFE0 -FFFFFFFFFFFFCFDF07FFFD47FF76A153FFFC81FFFFFFE3BFFFF70257FFF083DFFFFCDD7FF0 -37FCFFFFFFFFFFFFE0 -FFFFFFFFFFFFE3F947FFEFC5FFFA805EFFDE81F7FFFFF1EFFFFC409FFFDC02FFFFFC2FBFE8 -5FFCFFFFFFFFFFFFE0 -FFFFFFFFFFFFE7FE41FFFDC7DFF74057FEFEA0FFFFFEF17FF7EF00B7DFE583FBFFF875FFF1 -5EF1FFFFFFFFFFFFE0 -FFFFFFFFFFFFF1FBC3FFFFE1FFFD5017FFFE017FFFFFD1FFFFF2C0FFFFF547FFFFF91FFEE1 -5F73FFFFFFFFFFFFE0 -FFFFFFFFFFFFF1FE40FFFFA3FFBE400FB7E5E0FFFFFFF15EFFFE443FFFEE03DFFFF177FFC2 -FFF3FFFFFFFFFFFFE0 -FFFFFFFFFFFFFDDFE0FFEFF0EFFD7025FFFD08DBBFFFF1FFFFB281FDFDFA0EFFFFD35FEFC1 -FFC7FFFFFFFFFFFFE0 -FFFFFFFFFFFFFCFEA0BFFBD0FFFFC02FDFF740FFFFFFF17FFFFE835BFFDE07FFFFE1BEFF82 -FFCFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFC5FA47FFFF8FFF7502AFFFD40FFFFFFD0BFFFD502DFBDF00FFFFFE0F7FF05 -7FDFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFE77F87FFFD8DFDFB00BFFFFC07FFFFFF3FFF7FD085FFFDC07FFFFC2BFFF07 -FF9FFFFFFFFFFFFFE0 -FFFFFFFFFFFFFF3F5E3FFBF87FFFC852FBFE50BFFFFFF0AFFDF603DFFFE10DFFFF82FFFE15 -DE3FFFFFFFFFFFFFE0 -FFFFFFFFFFFFFF9FF21BFFFC7BF7F807FF7E88FFFFFFA3FFFFF902FFFFF81FFFFF8BBFFE2F -FF3FFFFFFFFFFFFFE0 -FFFFFFFFFFFFFF8FDC1FFDDE5FFFCA03FBFEE06FFFFFF07FFFAA05BFFDE517FFF785F7FC1E -FC7FFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFC7F70FFFFA3DFD6814FFFBA85FFFFFF1DFFFEA81EEFFB81FFFFF0F7FE86F -FCFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFE7F50FFFFF1FFF7A077FFDA07FFFFFF17FFFEC04FFFFCA3EFFFF277FF86F -FCFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFF3FF43FFF71FFFEC015F7F685FBFFFF1FBFFF2017FFD705FFFFE1DFFF05E -F1FFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFF1FDC3FFFB8FDFF50B5FBF806FFF7FF1BFFEF80BFFFF587FFFFE0FF7E157 -F3FFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFF9BB437FFE87FDE400FFEFE03BFFFF72FFFFFF0EDFFFC03FFFF86BBEE2FF -F7FFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFF8FFB1FFFFC7FF7502BFFDD43FFFFFD3FFFFF00AFFFFB077FFFC5FFFC37F -CFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFCDEA0FF7F06FFEE82EFFFA43FFFFFF0BFFEED0F7FBDC0FFFFF8B2FFC0FF -C7FFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFE7FA0FFFFE3FFFA02FFFEBC1FFFFFE0FFDFE805EFFEA0BFFFF0BFFFC3BF -9FFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFE3FEC7FFDE3DFDF81AFFFE03FFFFFF177FF6C137FDF00FFFFF8DFFE84FE -BFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFF1FE83FFF71FFF8816DFFD817FFFFF17FFFEA07FFFFE1DFFFE0FFFF17FE -3FFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFF97B83FFFE1FFFE005FDFE21FFFFFF1FFFFE235FFFD23FFFFE23FFE0BFE -7FFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFCFFE1FFFF877FDC07FFBF80FFFFFD1FFFF5C03F7EC41FFFFE1FFEE1FFC -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFC7E08FFFF87FFD401FFFD29BFFFFF37FFFF02BFFFE137FFFC56FF82FF9 -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFE3FD0DFFBC77EF60EDFF700FFFFF72BFFEB40FFFEBC3FFFF87FFFC7EF9 -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFF3FF47FFF47FFDE83FFFF50F7FFFD3EFFFD42BFFFA05FFFF8B7FF83FB3 -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFF8FB07FFFE3FFEC08F7FD50BFFFFF0FFFFD85EFFFB07FFFF8BDFF0EFE3 -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFF8DFC1FF7C3DFF706FFFFD07FFFFF1FFEF6817FFFE0FFFFE16FDE0FFE7 -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFCFE51FFFF1FFF9407FDE90FFFFFF17FFFC835FF7D07FFFF1FFFC2FFCF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFE7FD0FFFE9FFFD45BFFFA0FFFFFF1FEFF8887EFE50FFFFA5EFF42FF9F -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFE3FD0FFEF8F7F740FBFFA8DFFFFD37FFFC0B77FF81B7FFE5FBFC7FF1F -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFF1FEA7FFFCFFFEA16FFFA87FFFFF0FFFED00FFFE91FFFFC57FF84FF3F -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFF97E87FFF47F7B82FFFDE07FFFFF3BFFFF07FFFF81FFFF8DFFD1FFA7F -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFCFF83FFFC3FFEA07FFF186FFFFF2FFFED03BFFC83FFFF0AFFE07FCFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFE7EA1FFFE3FFFA057FFF07FFFFF3FFFFE0DFDFEC3FFFF0DFFC3FF9FF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFC3FE1FFEE37FFD0BDDFF47FFFFB1FFEF507FFF725FFFF2EFFC0EFBFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFF3F78FFFB1FFD509FFFD42FFFFF17FFF407FFFD47FFFE1FFF87FE3FF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFF9FE07FFF97FFF07FFFE87FFFFB1FFFFC0EDFF747FFFC2FFF85FF3FF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFC7F07FFE8F7EF82FF7A53BFFFF1BEFF403FFFA1FFFFC2F7F0FFCFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFC7F42FFFC7FFA02BDFE83FFFFE3FFFFC1BFFBF0EFFF8F7F607F8FFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFE3F41FFFE7FFFC2BFFFE3FFFFF0FFFE013FFF81FFFF87FFE1FE9FFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFF2FD0FFFE3FFA817FFF01FFFFF3BFFBE1BFFFE0FFFE9FFFC2FF3FFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFF9FF0FFEE3FFEA1BFF7C1FFFFF3FFFEA17EFD43FFFE17FF87FE7FFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFABF43FFF0FFFC07FBF41FFFFF3FFFF61DFBF82FFFE1DFF17BCFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFC7F87FFF9FFEA05FFFC17FFFE1FFFF41FFFD03FFFE1FFF0FF8FFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFE7EF1FFF16FFC0FFFF71FFFFF17FFD03FFFF07FFFC6FFC37F9FFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFF1FD1FEDCFFFE83FFF417FFFF1FFEF42FFFEC6FFFC7FFE3FF3FFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFF9FE0FFFD7BFC0AFFFF0FFFFF1FFFF05BFFC87FFF1FBFC7FC7FFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFF8FF8FFFC7FEF83FEFD97FFFB2FFFE87FFF78FFFF17FF87FC7FFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFC7E87FFE3FFD42FFEE0FFFFF3BDFA85EFFE07FFF3FFD1DFCFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFE77A3FFE1FFF43BFFE8DFFFF1FFFE857FF41FFFE17FE0FF9FFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFF3FC1FFF1FBFC17FFC87FFFE3FFFA81FFF91FFFC2FFE3FD3FFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFF1FE1FFF8FFD81FFFF0FFFFF3FFFE1FFDFE5FFFC3F7C2FE7FFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFCFF0FFFC7FFE1FBF5E7FFFF37FFF03FFB83F7F8FBFC7ECFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFC7FC7FD83FEA07FFF43FFFD1FFBD1BFFFC3FFF87FF17FCFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFE3F03DFE3FFA07FFF43FFFF1FFFF0FFFF07FFF1BFF1FF9FFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFF3FE3FFF3FFF93FFD81FFFF3FFFC1EFFD8BFFF1FFE17E3FFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFF8FD1FFF1FFB0BFBFC3FFFF1FFFE17EFD07FFE1FFC3F67FFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFCFF0FFF8FFF87FFE23FFFF3FFFA1FFED1FFFC3FDCBFCFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFC7F4FFF0BFDC1FFF83FFFD3BFFC37FFA1FFF8AFF0BF9FFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFE7F47FFCFFE42FFFE3FFFE3FFF23FFFE1FFF87FF1FF1FFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFF1BC3FFA7FFA37FFA1FFFF1FFFE1FFF83FFF9FFF1FF3FFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFF9FE1FFE3BFE0FFFE1FFFF3FFFC4EEFE1FFF9F7E1FC7FFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFF8F79FFF3FEF1FFFD1FFFF1F7747BFD63FFE3FF85DCFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFE7F0FFD1FFD07EFE1FFFF3FFF81FFFC7FFC37F87F9FFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFE3F85FF1FFE9DFF70FFFF3FFF87FFF4BFFC5FF0FF3FFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFF3FC7FF8FFE8FFFE1FFFF1FFDC7FFF0FFFC7FD1FE3FFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFF8FE1FFC5FF41FFF97FFD3FFF07FFE8FFF9FFE3FC7FFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFF65F1FFE7F787FFBDFFFF6FFFCBFFE0FFF17FC3FDFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFD7F8FFE3FFC37FE8FFFF3FFF0EFFB1FFF1FF8FF9FFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFF3F87FB0FEC3FFF8FFFF1FFF17BFC1FFE3FF1FB3FFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFF97E7FF9FF41FFF07FFF3FFB8FF7B3FFE7FF0FE7FFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFF8FD3FF0FFD1FFF87FFD1FFF1FFF87FEC7BC3FCFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFC5F1FFC7FE0B7DC7FFF3FBE97FEC3FF8FFE7F8FFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFE7F8FF67FF1FFF47FFF3FFE1FFF8FFF87D8FF1FFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFF2F47FE3FE87FFE7FFF3FFF0BFF8FFF1FF87F3FFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFF1F87FF1FF8FFFC3FFF3FFC3FFE8FFF3FD1F4FFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFCBF3FF1FF83FFC3FFF6FBF1FDF1FFC7FF1FCFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFC7F1FF9FFA6FFE3FFF3FFC3FFD1FFC7FC7F8FFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFF3E8FF8FFE3FFE3FFF3FFE1FFF3FF8BF87E3FFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFF1F8FFE7FE3FFF1FFF3FF27DFE3FF9FF8F67FFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFF9FE7FC3FF0FDEBFFF1FFE7FEE7FF3FF8FC7FFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFC7E3FF1FD17FD9FFD3FF87FF87FF3FE3F9FFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFE3B1FF1FF8FFF9FFF5FFCBFFC7FC5FA7F3FFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF1D8FF9FFCEFF0FFF7FFCFFD0FFC7F87F3FFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF9F47FCFDC7FF9FFF7BF87FF1FFCFF9EEFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFCF67FC7FC7FF8FFE7EFC7FF1FF0FF1F8FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7D3FE3F63FEC7FF3FF0FFE3FF3FF2F8FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3F1FF3FE1FF4FFF3FF8FEE3FF3FC7F3FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFD9F8FE9FEBDF8FFF3FF9EFE3FE7FC7E7FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FCFF9FE3FFCFFF7FF9FFE7FC779F8FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3C3FCFF8FFE7FF3FF0FDC7F8FE1F9FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3D3FCFF8FFE7FF7FF1FFCFF9FE3F1FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2F1FA5F4FFC7FF7EF3FF9FF1FC7E7FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9F8FF3FE3FE7FE7FF3BF9FE3F8FCFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7C7F1FC7FF3FF3FF7FE1FE7F1F9FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE6E3F9FE7FF3FF7EE5FF1FC7F3D1FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3F3FCFF3FF3FF3FC3FE7FCFE3E7FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8F8FAFF1FF1FF3FE7F67F9FC7C7FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFCFE3F9BF9FF7FD7FC7E3B8F8FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE367F3F8FF9FF3FC7F4FE3F1F1FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3E3F1FCFF9FF7FCFF9FC7E3E7FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9F1F9F6FF8FF7F8779FC7E7C7FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCD8FCFE7FCFF5FCFFAF9F8F8FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7C7C3E3B454208BD3F1F8BBFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3E7E5400000000003F3F1E3FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9F3C000005AB4000001C787FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4F000003D363F7D8000078FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE20021385FBEFDEE560031FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0048D5EADFFFBFBB14803FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801E2E6FEFF7FFCBC5A0FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80509156FDFBF57ED528FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8A142E5FAFDFBFDAB580FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80855371BBFDFB7CB450FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF802158AD7EDFFBDEAA04FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF860343ABEFFFFBF5D870FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF900A74F8FEFF7FBE4A0CFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF941A0F2F77AFDEE7C2A0FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8042E572F9FFFFBB1420FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80543D5FBFFB7FEFC380FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF82112B55AB7FFDBCB128FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00945A7F3FDFFF7FAD02FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80854195EFF7DFD0A840FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF82215AFDDEFDFFFD2A14FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF940B46AF5B9FFDE7A8B0FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8502D1E8D4EE76BD7A14FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801804000000000704A0FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80800000000000000028FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000000000000FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000000000000FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000000000000FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000000000000FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80010000400200000010FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000000000082810003FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE400010000200020000FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7C0000000001000008FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7CE200000000000E7DFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7CF7FF8000020FFE79FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7CF7FD8FFE7F9FFE79FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7CF3FFDFFF7F9FFF7DFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7CF7FFDFFE7F9FFE39FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7EF7FF8FFF7F9FFE79FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7AF7FFDFFF7F9FFE79FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7E77FFDFFE7F9FFE7BFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7EF3FFCFFE7F9FFE7BFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7E73FFDFFF7F9FFE7BFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7E73FFFFFE7F9FFE7BFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7E73FFFFFF3F9FFFFBFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7E73FFFFFF7F9FFFFBFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3E73FFFFFEBF9FFFFBFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7E7BFFFFFF7F9FFFFBFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3E73FFFFFF7F9FFFFBFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3E7BFFFFFF7F9FFFF3FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3E73FFFFFF7F9FFFFBFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBF7BFFFFFE7F9FFFFBFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3E79FFFFFF7FBFFFF3FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3F79FFFFFE7FBFFFF3FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3F39FFFFFF7F9FFFF3FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3F79FFFFFE7F981FF7FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBF79FFFFFFFF100FF3FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3F3FFFFFFFFF8007F3FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9F7FFFFFFFFF8003F7FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBF3FFFFFFFFF0003F7FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFF00003E7FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFC00003F7FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFC00003E7FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FF5FFFFFFFFF000E03E7FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00FF9FFFFFFFFF000A07E7FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8007F9FFFFFFFFE040F07E7FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0003F9FFFFFFFFC014F07E7FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0001F9FFFFFFFF0090607EFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0001F5FFFFFFFF00A0007E7FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000001FFFFFFFE00B0087FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE022070FFFFFFFC0181403FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03E1F47FFFFFFC000030FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FF1BF1FFFFFF80122B07FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7F3F79FFFFFF00102A17FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3F3FFC7FFFFE00042007FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF961FDD3FFFFC00100007FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FFF380000000801E00BFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07BBF0000000038000001FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07E9FC00500000000C0C0FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07F1F0020100028000000FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03F1F8002000210080000FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07F3A0012850014004409FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF26F7C0000000004000001FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF17C5C0000000000004001FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0F6680040201010008001FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FC60000102050800C051FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FC600080409000012003FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC170000002000001000023FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81F8000028804087080093FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81F3002000200007800003FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07A200000A050283080023FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07E4000040301823800403FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07C6000004020200080003FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE009F00000020240000000FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0001F00002150B308040287FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00C3F0000010420140400C7FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80E7F000000008000000207FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0E7F80000A060280800087FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC14FF8080083452122A1027FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FF80000685028080000FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FF80000000101808180FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE17FF8000042A160305018FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000040B00810084FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000140000805029FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000020281028140DFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0001000400028041FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFE0000215028140411FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFE080008448B40A153FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFF000060B028341041FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FFFF0000000100001001FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FFFF00000001008000A3FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF85BFFFF80005C2850881A23FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFFF0400050200415003FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFFF8000402810081823FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFC0000014030281C3FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FFFFC00020D028100843FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FFFFC004020000140117FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF187FFFFC000000000000007FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1C7FFFFE000000000000007FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE167FFFFE00000000000000FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC663FFFFE00000000000001FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC573FFFFE00000000000003FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF8AC3FFFFF00000000000005FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF92BBFFFFF00000000000007FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF03A3FFFFF0000000000000FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFE07A9FFFFF8000000000003FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFE0171FFFFF8000000000007FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFC0799FFFFF8000000000007FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFC8D79FFFFF800000000001FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFC8559FFFFFFFF7DBFBDEFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFF83869FFFFFFDFFFFFFFBDFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFF91F79FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFF83693FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFF01A33FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFF05603FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFF0B8B3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFF3AE53FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFF2F873FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFF32E03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFE1A827FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFF17627FFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFF35E27FFFFFFFFFFFFFFFFE5FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFF15287FFFFFFFFFFFFFFFE01FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFF8DC8FFFFFFFFFFFFFFFFE0DFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFC781FFFFFFFFFFFFFFFFEC1FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFC081FFFFFFFFFFFFFFFFE01FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FFFFFFFFFFFFFFFFE01FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFDC1FFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE9FFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFC3BFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFCC9FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFF831FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFF9D5FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFF37CFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFF1F4FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFE3487FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE530FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFE58B7FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFC6387FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFC5E93FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBFFFFFFFFFFFFFFFFC7B03FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFC9581FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFCBD49FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFC2FC1FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFC6441FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFCC3A1FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFC4AA5FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFF842E2FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFC43D9FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFC8C69FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFC8349FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFF6B580D59FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFE020008769FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFF8FBFFC48D9FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFF1FFFFE4B73FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFF7FFFFE0283FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFCFFFFFF0A8FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFF9FFFFFF801FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFF3FFFFFFA03FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFE001FFFFFE0F07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFF0F87FFFFF8FC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFF8FC3FFFFF8FC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFF87E3FFFFF8FC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFF8FC3FFFFF8FC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFF8FE3FFFFF8FC3FFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFF8FC3FFFFF8FCFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFF47E3FC0FF8FC3F83FF0BD1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFF0F87F1E3F8FC7E78FE73C07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFF801FE3F1F8FC7C7C7CF9E3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFF8007E3F1F8FC7CFC7C7BE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFF8FC3FFF1F8FC7FFC7C7FE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFF8FE0FFE1F8FC7FFC7C1FE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFF0FF0FFC1F8FC3FF07E07E3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFF8FF07E31F8FC7FC47E03E3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFF87F87CE1F87C7F1C7F41E3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFF8FF071F1F8FC7E3C7F61E3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFF0FF061F1F8FC787C7FF0E3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFF87F0E1F1F8FC787C7DF0E3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFF07E0E1E1F8FC38783DF9E3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFE0183E18030783C200CF1E1DFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFD0017F078A0301C0F0E07F83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0 -end -restore -%%Trailer diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob35.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob35.gif deleted file mode 100755 index 80716c074..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob35.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob43.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob43.eps deleted file mode 100755 index f78e309cb..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob43.eps +++ /dev/null @@ -1,1467 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Title: CABLE.EPS -%%Creator: DeskScan II - Hewlett-Packard Company -%%CreationDate: Fri Feb 16 6:28:28 1996 -%%BoundingBox: 0 0 125 174 -%%EndComments -%%EndProlog -save -15 dict begin -/xpoints 125 def -/ypoints 174 def -/xpixels 520 def -/ypixels 721 def -/rasterbytes 65 def -/bitspercomponent 1 def -/xunits xpixels xpoints div def -/yunits ypixels ypoints div def -/coords [xunits 0 0 yunits neg 0 ypixels] def -/picstr rasterbytes string def -/readimage { currentfile picstr readhexstring pop } def -xpixels ypixels bitspercomponent coords /readimage load -image -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF1FFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF845FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFC1FFF83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3F0FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFE1FFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3F9FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF1FFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FCFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF1FFFC1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FDFFFFFFFFFFFFFFFFFFFFFF -FF7FFFFFFFFFFF1FFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC2FFFFFFFFFFFFFFFFFFFFFFFF -FE7FFFFFFFFFFF1FFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFF -FC7FFFFFFFFFFF1FFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FE0F83E181FC303FF80FF1C -3817FFF83F80FF101FE3FE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FF0FC3C038FC0E0FE2E3E02 -080FFFC30F343F030FE3FCE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007F0FE3F07C7A078FE7E3F05 -9C3FFFC78E3E3F07C7E3F9F1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801F8FC3F0FC3E1F87C7F1F87 -FC7FFF8FDE7E3F0FC3E3E1F0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00F8FE3E1FE1E1FC387F8F8F -FC7FFF0FFF7E371FE1E1E1F8FFF00001FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0F8FE3F1FE1E1FC30FF078F -FC7FFF0FFFFC3F1FE1E3E000FFDFFFF9FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF078FE3F1FE1E3FC107F878F -FC3FFE1FFFF83F1FE1E3C3FFFFFFEFDCFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE870FE3F1FE1E3FC30FF878F -FC7FFE1FFFC23F1FE1C3C3FFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFF878FE3F1FE1E3FC30FF878F -FC7FFE1FFF8E3F0FE1E343FFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFF878FC3E1FE1E1FC387F878F -FC7FFE1FFF1E1F1FE1E3C3FFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFF878FC3F0FE1E1FC387F0F0F -FC3FFF0FFE3E3F1FE3E3C1FFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7F8E87C3F1FE3E1FC7C7F1F8F -FC3FFF0FFC3E2F1FE3E3E1FFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCBF8F8F83F0FC3E1F85C3F1F8F -FC3FFF87EC1C1F0FC3E3E0FDFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1C3F8220F020FE040FE3E3F03 -FE13FFC39C0007070FC1F871FFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FE163E181BE103FF80FE03 -FE07FF603F0707300F80FC03FFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1DFFE1FFFFF7FFFF -FFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FDFE3FFFFFFFFFF -FFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFE3FFFFFFFFFF -FFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFE3FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFE1FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFC1FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFE1FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFC1FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFC07FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC40FFFFFFF87C3FFFFFFFFFFE1 -FFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000FFFFFF0783FFFFFFFFFFC1 -FFF83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0F87FFFFFC7E3FFFFFFFFFFE1 -FFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FC3FFFFF47E3FFFFFFFFFFF1 -FFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FC1FFFFFC7E1FFFFFFFFFFE1 -FFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FE1FFFFFC7E3FFFFFFFFFFF1 -FFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FE1FFFFFC7E3FFFFFFFFFFF1 -FFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07E1FFFFFC3E3FFFFFFFFFFF1 -FFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FC387E0FC7E3FFFF03F80FF1 -03FC3FC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FC3C3F0FC7E3FFFC70E3C7D0 -30FC3F8E3FFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0F87C3F8FC7E1FFF8F9C7C3F0 -F87C3F1F1FFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FC3F8FC7E3FFF0FDC7E3E1 -FC3C3E3F1FFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF02FFC3F4FC7E3FFF1FFFFE3F1 -FE3C3E1A0FFE001FFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFC3F8FC7E3FFE1FFFFC3F1 -FE3C3C000FFFFFDFFFFFFFFFFFFFFFFFFFFFFD7FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFC3F8FC761FFE1FFFF03F1 -FE1C3C3FFFFFFBCFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFC3F8FC7E3FFE1FFFC43F1 -FE1C3C3FFFFFFFCFFFFFFFFFFFFFFFFFFFFFFEBFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFC3F0F87E3FFE1FFF0E3F1 -FE1C3C3FFFFFFFEFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFC3F8FC7E3FFE1FFE9E3E1 -FA3C1C3FFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFC3F0FC3E3FFE1FFC3E2F1 -FE1C3C3FFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB0FFFC3F0FC7E1FFF0FEC3C3F1 -FC3C3E1FFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFE3C07C7E1FFF0FEC3C3E1 -F87C3E1FDFFFFFE7FFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE05FFE158383C1FFF831C00070 -70F83F073FFFFFF7FFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801FFF038D0100FFFC03F070F7 -01F80FC07FFFFFF3FFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFBFFFFFFFFFFFFFFFFBF7 -FFFFFFFBFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFF -BFFFFFBFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFF -FFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFF -FFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFF -FFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFBFFFFFFF -FFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFF -FFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFBFF7FFFF -FFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFF8 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFDFFFFFFFF -FFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFF -FFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFDBFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFF80 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFE03 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEFBFFFFFFFBF -FFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFC0F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFF -FFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFF80F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFE07F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFC0FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBBFFBEFFFFFFFFF -FFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFF81FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFE03FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFF -FFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFC0FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFF81FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7EFDDFFFFFDFFFF -FFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFE07FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBF -FFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFC0FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFE7FFF03FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFF -FFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFE07FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBDFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFF7FF80FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFDFDFFFFFFFF -FFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFF3FF03FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7 -FFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFF9FC0FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFF9F80FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFDDFFFEFFFFFFFFF -FFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFCF03FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFBFFFFFFD -FFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFCC0FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEFFFFFFF7FFFF -FFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFF -FFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7EFFFFEDFFFEFFFFFF -FFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDF7FDFFFFFFFFF -FFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFEFFFFFFDFFFFFFFF -FFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFC03FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFF81F7FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDEFFFFFFFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7DFDFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFF0F81FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFDFFFFFFFFFDFF -FFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFF80303FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFDFFFFFFFFFEFFFF -FFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFF0000FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFEFF7FBFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFE1F01FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFC7FC3FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7EFFBFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFC7FE3FFFFFFFFFFFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFF -FFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFF8FFE3FFFFFFFFFFF8 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFDFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFF8FFF3FFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7DFFFFFFFFFFFFF7FF -FFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFF8FFF1FFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFF7FFF7FEEFFFFDFFFFFF -FFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFF8FFF3FFFFFFFFFF81 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF7FFFFFFFD3FFFFFFFFFFFFFFFFFF8FFF3FFFFFFFFFE07 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7BFDFFEFFFFFFFFEFFFF -FFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFF87F43FFFFFFFFFC07 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7DFFFFEFFFFFFFBF -FFFFFFFFFFFEFFFFFFFF7FFFFFFFFFFFFFFFFFF07FC7FFFFFFFFF03F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFD -FFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFC03F87FFFFFFFFE03F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFDFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFF800E07FFFFFFFF81FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFDDFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFF02000FFFFFFFFF02FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFDFFDFEFFFFBFFFFFFF -FFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFC06000FFFFFFFFC07FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFEFFFFFFDFFFFFFFFFFF -FFFFFFFFFFFBFFFFFFFFDFFFFFFFFFFFFFFFF81A0007FFFFFFF80FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFDFFFFFFDFFFFFF -FFFFFFFFFBFFFFFFFFFFDFFFFFFFFFFFFFFFF03E000FFFFFFFF03FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFBFFFFFFFFFF -FFFFFFFFFF7EFFFFFFFFDFFFFFFFFFFFFFFFC0FC2007FFFFFFC07FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7BFFDFFFF7FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFF817E60C7FFFFFF81FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDFFFF7FFFFFFFFFFF -FFFFFFFFFFFFEFFFFFFFEFFFFFFFFFFFFFFE07FC60C7FFFFFF03FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFF7FFFFFBFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFC0FFC60C7FFFFFC07FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEF7FFFFBFFFFFFFFFFFF -FFFFFFFFFEFFFFFFFFFFE7FFFFFFFFFFFFF03FFC6047FFFFF01FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFF7FFFBFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFE07FFC4007FFFFF03FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFEFFFFFFFFFFF -FFFFFFFF7FEFFFFFFFFFE7FFFFFFFFFFFF80EFFC0007FFFFC0FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFF03FFFC0007FFFF01FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FBBFFFFFFFFFFFFF -FFFFFFFFFFFDFFFFFFFFF3FFFFFFFFFFFC07FFFC0107FFFE07FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFEDFBFFFEF7FFFEFFFFFF -FFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFF80FFFFC3187FFF80FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEFFBFFFFFFFFFFFFFFFBF -FFFFFFFFFF7FFFFFFFFFFBFFFFFFFFFFF03FFFFC3187FFF03FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFF7FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFC3187FFE07FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFDFFFFDFBFFFFFFF -FFFFFFFFFFFFBFFFFFFFFBFFFFFFFFFF81FFFFFC1187FF81FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDEFFFFDFFFFFFDFFF -FFFFFFFFFEFFFFFFFFFFF3FFFFFFFFFE03FFFFFC5187FF037FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFBFFFFFFFEFFFFFFDFFFFF -FFFFFFFFFFDFFFFFFFFFF9FFFFFFFFFC0FFFFFFC1107FC07FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFDFFFFFFFFFFFFFFFF -FFFFFFFFEFFFFFFFFFFFFDFFFFFFFFF80FFFFFFC0107F81FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFEF7FFFFFFFFFFFFFFFFF -FFFFFFFFFFF7FFFFFFFFFCFFFFFFFFE07FFFFFF80007F03FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7F7FFFF7DFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFDFFFFFFFFC0FFFFFFFC0007C0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEFFFBFFFFFFFFFFF -FFFFFDFFFFFFFFFFFFFFFCFFFFFFFF03FFFFFFFC0007017FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEF7FFFFFFFFF -FFFFFFFFF7FFFFFFFFFFFCFFFFFFFE03FFFFFFF8406607FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFF -FFFFFFFFFF7BDFFFFFFFFEFFFFFFFC0FFFFFFFFC40600FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFDF -FFFFFFBFFFFFFFFFFFFFFE7FFFFFF03FFFFFFFF8C0001FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFDFFFFFFFBFFFFFFFFFFF7FFFFFE07FFFFFFFF8E0003FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFF7FFFFFFFFFBDFDEFFFFFFFFFFFFF -FFFFFFFFFFFFFFBFFFFFFFFFFFFF81FFFFFFFFF8E01C7FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFF7FFFF7FFDEEFFFFFFDFFF -FFFFFFFFFFFFFFFFFFFFFF7FFFFF03FFFFFFFFF8E07F3FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFD7FFFFC0FFFFFFFFFF8F07F1FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFDFFFFFFFFFFF77FDFF7FFFFFFFFFFFFB -FFFFFFFFEFFBFFFEFFFFFF3FFFF81FFFFFFFFFF8F07F9FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFDFFFFFFFFFFFFFDEFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFF3FFFE43FFFFFFFFFF860FF9FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFF -FFFFFFFF7FBFFFFFFFFFFFBFFFE0FFFFFFFFFFF8C0FF9FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFDFFFFFFFFFFFFFFFFF -FFFFFFFFFDFFFFFFFFFFFF9FFF81FFFFFFFFFFF8007E9FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBF7FFFFFFFFFFFFFFFFBFFBFFFFFFFFFFFF -FFEFFFF7FFFFFFEFFFFFFF9FFE03FFFFFFFFFFF8007F3FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFDFFFFFFFF9FFC0FFFFFFFFFFFF8002E3FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFF7FFFDFFFFFF -FFFFFBFFFFEFFFFFFFFFFFDFF01FFFFFFFFFFFF80000FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFEFFFFFFFFFFFFFFFFFFFDFD7FFFFFFFFFFF -FFFFFFFFBEFBFFFFDFFFFFDFE07FFFFFFFFFFFA00000FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFF -EFFF7FFFFFFFFFFFFFFFFFCFC0FFFFFFFFFFFFC00033FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFF7FFF -FFFFFFFFFFFFFFFFFFFFFFCF03FFFFFFFFFFFF000013FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFBFFFFFFFEFFFFFFFF7FFFFFFFFFFFFFFF -FFFFFFFFEFFFFFFFFFFFFFEC07FFFFFFFFFFFE000113FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBDFFFFFFFFFFFBFFFFFFFEFFFFFFFFFFFFFF -FFFFFFFFFEF7FFFFFFFFFFE017FFFFFFFFFFF8001101FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFBFFFFFFFFFFFF -FFFFFFFFFFFF7FFFFFFFFFE03FFFFFFFFFFFF0383183FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFC0583181FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFEFFFFF81FFFFFFFFFFFF80F83181FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEF7FFDFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFF -FFFFFFFFDFDFFFFFFFFFFE03FFFFFFFFFFFE03D071C1FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFDFFBFFFFFFFFFFFFF -FFFFFFFFFEFFFFFBFFFFFC03FFFFFFFFFFFC07F071C1FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFDFFFFFFFFFFFFBFFFFFFFFFFFFFF -FFFFFFFFFFFBFFFFFFFFF013FFFFFFFFFFF81FF0E1C1FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFEFFFFFFFE033FFFFFFFFFFE03FF071E1FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFF7FFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF80F3FFFFFFFFFFC0FFF0F0E1FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFBEFFFFFFF7FFFFFF -FFFFFFFFFFFFFFFFFFFF03F9FFFFFFFFFF01FFF0F1E1FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFDFFFF -FFFFFFFFFFFFFFFFF7FC07F9FFFFFFFFFE07FFD07181FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFBFFFDFFFFFFFEFFFF -FFFFFFFFFFDFFFFFFFF80FF9FFFFFFFFFC0BFFF07181FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFBFFFFFFFFFFFFBFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFB03FFDFFFFFFFFF01FFFF01181FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7EFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFDFFFFFFFFFFFC07FFDFFFFFFFFE07FFFF11101FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFF -FFFFFFFFFFF7FFDFFF81FFFCFFFFFFFF80FFFFF31011FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFE03FFFCFFFFFFFF03FFFFF38031FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFEF7FFFFFFFFFFFFFF7DFFFFFFFFFFFFEF -FFFFFFFFFFFFFFFFFC077FFCFFFFFFFE07FFFFF38031FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF01FF7FEFFFFFFF81FFFFFE34071FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF -FFFFFFFFF7FFFFFBE07FFFFE7FFFFFF03FFFFFE3E079FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFDFDFBFFEFFFFFFFFFFFFFFFF7FFFFFFFFFFFFF -FFDFFFFFFFFFFFFF40DFFFFE7FFFFFC0FFFFFFE3E0F1FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7DFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFEFFDFFF01FFFFFC7FFFFF81FFFFFFE361F1FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFF -FFFFFFFFFFFFFFFE06FFFFFF3FFFFE03FFFFFFE3F1F9FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -DFFFFFFFFFEFFFF807FFFFFF3FFFFC0FFFFFFFE3E0F1FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFDFFFF -FFFEFFFFFFFFFFF01FFFFFFF3FFFF81EFFFFFFE3C0F8FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFBFFFEFFFFFFFFFFF7FFFFFFFFFFFFF -FFFFFFFFFFFFFFC07FFFFFFFBFFFC07FFFFFFFE3C079FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFBDEFEFF7FFFEFFFFFFFBFFFFFFFFFFEFFFFFFFFFFFFFFF -FFFFFFFFFFFFFB80FFFEFFFFBFFFC0BFFFFFFFC38070FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFBFFFFFBFFFFFFFFDFFFFFFFFFFFFF -FFFFFFFFFFFFFF03FFBFDFFF3FFF01FFFFFFFFE38038FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFF7EFFFFFFDFFFFFFFFFFBFEFFFFFFFFFFFFFFFFFF -FFFFFFFFFDFF7E07FFFFFFFF9FFE07FFFFFFFFE30038FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFBFFEFFFFFFFF -FFFFF7F7FFFFF817FFFFFFFF9FF80FFFFFFFFFE31118FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFDDFFBFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFF -FFFFFFFFFFFFE03FFFFFFFFF9FF01FFFFFFFFFE23108FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF7FFFC07FFFFFF7FFCFC07FFFFFFFFFE05188FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF7FBFBFFFFFFFFFFFFFFFFFFFFFFFFFF6FFFFFFFFFFFFFF -FFFFFFFFEFFF01FFFFFFFFFFCF81FFFFFFFFFFC07180FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFF7FFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FEFFFFFFFFDE03F7FFFFFFFFCF03FFFFFFFFFFE0D1C0FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFF -FFFFFFFFFFFC0FFEDFF7FFFFC80BFFFFFFFFFFC0F1E0FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFEFEFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFF -FFFFFFFFFFF01FFFFF7FFFFFE01FFFFFFFFFFFC1D1D0FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFDDFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFF -FFEFFFFFFFE07FFFFFFFFFFFE03FFFFFFFFFFFE1F1F0FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFDFFFEFFFFFFBFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFF -FFFFFFFFFF80FFFFFFFFFFFFC0FFFFFFFFFFFFC3F1F0FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFBFFF7FFFFDF6FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFF -FFFFFFFFFF037FDFFFFEFFFF81FFFFFFFFFFFFC3F1F8FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFDFFFEFFFFFFFFBFFEFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC03FFFFFFFFFFFE03FFFFFFFFFFFFC7F1F8FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDEFFFFEFFFFDFFFFFFFFFEFFFFFFF7FFFFF -FFFFFFFFD80FFFFFFFFFFFF40FFFFFFFFFFFFFC7F1FCFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFEFFFE03FDFFFFFFFFFF01FFEFFFFFFFFFFC3E1F8FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFF7FBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFDC05FFFFFFFFFEFC07FFFFFFFFFFFFFC7F3FCFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFDFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF01FFFFFFFFFFFF81FFFFFFFFFFFFFFC7F1FCFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFDF77FFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF03FFFFFFFFFFFB03FFDFFFFFFFFFFFC7F1FCFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFF7BFFFFEFFFFFFFFFFFFFFFFFFFFFFBFFFFFFF7 -FFFFFDFC03FFFFFEEFFFFC06FFFFFFFFFFFFFFC7F3F8FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFEFFFF7FF7FFFFFFEFFFFFFBFFFFFFFFFFFFFFFF7FFFFFFDFF -FFFFFFF81FFFFFFFFFFBF817DFFFFBFFFFFFFFC7F1FCFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FF7FFFA03FFFBFFFFFFFE03FF7FFFFFFFFFFFFC7F1FCFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFC0FFFFFFFFFFFFC05FFFFF7FFFFFFFFFC7F3FCFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFEFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFF -FFFFFF01FFFFFFFFFDFF01FFFFFFFFFFFFFFFFC7F1FCFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFE07FFFFFF7FFFFE03FFFFFFFFFFFFFFFF47D1FC7FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFBEFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF80BFFFFFFFFFFF807FFFFEFFFFFFFFB5702C1703FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF03FFFFFFFFFFFF01FFFFFFFFFFFFE0000000000000000FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF7FF7FFFFFFFFEFF7FF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFF603FFFFFFFFFFFE07FFFFFFFFFFFF800000000000000003FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFF80FF7FFFDFFFFF80FFF7FFFBFFFFE000000000000000000FFFFF -FFFFFFBFFFFFFFFFFFFFFFFFFFFDFBFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFF03FFEFFFFFFFF7017FFFFFFFBFFF8005038562844284A007FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFC07F7FFFFFFFFFE07FFFFEFBFF7FF406F7CF5BAD97C5BDE03FFFF -FFFFDFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFBFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF81FFFFFFFFFFFF40FFFFFFBFFFFFF05AB4F2DCEEF2F6EF781FFFF -FFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFDFFF7FFFFBFFFFFFFFFFFFFFFFFFFFFFFFF -FFE03FFFFFFFFFFFF03FFFFFFFFFBFEE07FAF1AAD56874BF3C00FFFF -FFBFFFFEFFFFFFFFFFFFFFFFFFFFFDFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC07FFFFFFFFFFF605FFFFFFFFFFFF83B7A04020102000005807FFF -FFFFFFF7FFFFFFFFFFFFFFFFFFFEFFFFFFFFFF7FFF7FFFF7FFFFBFFFFFFFFFFFFFFFFFFFFF -FF01FFFFFFFFFFFF81FFFEFFFFDFFEF82EC080080000000000087FFF -FFFBFFFFFFFFFFFFFFFFFFFFFEDFFFFFF7FFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFBFFFFFFFF -EE03FFFFFDFFFEFF03FFEFFBFFF7EFF89B4020000002000000003FFF -FFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFDFBFFF7FFFFFFFFFF7FFFEFFFFFFFFFFFFFFFFFF -FC0FFFFFFFFFFFEC07FEFFFFDFFDFFF06F8000000000004000003FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFEFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFDFF -F01FF7FFFFFFFFF01FFFFFFFFBFFFFF1680000000010000000001FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFEFFFFFFFFFFDFFFFDFFFFFFFFFFFFFFFFFBFFFFFB -E07FFFFFFFFFFFE83FEFFFFFFFFF7DF0DE0402000000000000001FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFEFFFFFFFFFFFFFFFBFFEFFFFFFFFFFFFFFFFF -80FFFFFFFFFFFFC0EFFFFEFFFF7FF7E1D02000200000000000001FFF -FFDFEFFEFFFFFFFFFFFFFFFFFFFBFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -02FFFFFFFFDFFF01FFFFFFEF7DFFFFE0F40014000000000000010FFF -FFFBFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFDFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC -07FFFFFFFFFFFA05FFFFFFFFFFFFBFE0A00000000000002000000FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF7BFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8 -0FFFFFFFFFFFFC0FFFF7BFFFFFFEFEE0804000040000000000000FFF -FFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7DFFBFFFFFFFFFFFFF7FFFFFFFFFFFFF0 -1FFFFFDFFFFFF00FFFFFDFEFFFBFFFA0000000000000000000000FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFEFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFC0 -7FFDFFFFFFFFC03FFDFFFEFEFFF7FFE0000000102800000000000FFF -FFFFFEFFFFFFFFFFFFFFFFFFEFFFFFFFFFFEFFFFFFEFBFDFFFFEFBFFFFFFFFFFFFFFFFFF01 -FFFFFFFFFFFD80FF7FFFFFFF7DFFF7E0080400000200000000000FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFEF7FDFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFE83 -FFFFFFFFFFFF01FFFFFFFFFFFFFFFFE0008000000010080200000FFF -FFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFEFFFFFFFBFDFFFFFFFFFFFFFFFFEFFF40F -FFFFFFFFFFFC07FFFFFFFFFFFFFF7760000000000000000002000FFF -FFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFBFFEFFFFDFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFF81F -FFFFF7FDFFF80FFFFFDFFBFFFFBFFFC0000000000000000000000FFF -FFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFDFFFFFFFFFFFFFFFFFFFFDFE03F -BFFFFFBFFFE03FFFFFF7DFFEFDFFFFE0000000000000000000000FFF -FFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFBFDFFFFF7FFFFFFFFFFFFFFE02C0DF -FDFFFFFFFFC07FFFFFFFBDBFBFFEFDC0F7FFFE0AFFFFE0FFFFFC0FFF -FFFFEFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFEFFFFFFDDFFFFFFFFFFEFFFFFFF7FFC0001FF -FFFFFFFFFF01FFFFFFFFFFFFFFEFFFE0DDFFFE0FF7FEE1EDFFE80FFF -FFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFEFF7FFFFFFFFFFFEFDBFDFFFFFFFFFFFFF07007FF -FFFFFFFFFE03FFEFDFFBFFFFFFFFDFE0FFF7FE1FBFFFA17F7DFE0FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFEFF7FFFFFFFFFFFFFFFFFFFFFFFFFFE1FE0FFF -FFFFFFFFF40FBFFFFFFFFFEF77FFFFE06FFDFA0EFFFFE0FFBF780FFF -FFFFFF7FEFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFF7FFFF7FFFFFEFFFFFFFFFFFE3FE1FFF -FFFFFFFFF01FFBFFFFDFF7BFFEFFFAC07EFFFE17FF6F21DFEFD60FFF -FFFFFBFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFEFFFFFBFFFFFFFFFFFFFFFFFFFE3FE0FFF -FFFFFFFFA07FFFFFFFFDFFFFFFFDFFE06FB7BE13F7FDE07DFFFA0FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFEFFFFDFFFFFFFFFFFFBFFFFFFFFBFFFFC7FF1FFD -FFFFFFDFC07FFFFFFEFFFBFEFFFBFFA0FFFFFE0EFFFF41FBF7FE0FFF -FFFFFFBFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFEFFFFFFFFFFBFFFEFFFFFFFFFFFFFC7FF1F7F -FFFFFFFF03FFFFFFEFFFFFFFBFBFFFE0FFBFFE0FFFFBE1DEFF7A0FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFBFBBDFFFBFFFFFFFFEFFFFFFCFFF9FFF -FFFDFEFE03DFFFFFFFFEFFFFFFFFBFE0FDFBFE1FDDEFC1BFFDFE0FFF -FFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFDFFFFFFFFFFFF7EFFFFFFFFFFFFFFFC7FF9FFF -FEFFFFF01FFFFFFFFFDFFFBFEFFFFFA0BFBFEE1EFFEEE0F7DFFC0FFF -FFFFFFEFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFDFBFFFFFFFFFFFFDFFFFFFFFFFFC7FF1FFF -FFFFFFF01FFFFFFFFFFFBFFFFFFFEFE0EFFFFE0FFFFB61FF7FBE0FFF -FFFFFFFF7FFFFFFFFFFFFFFFFFFFFFF7FFFFFF7FFFF7FFFBFFFFEDFFFFFFFFFFFF83FF1FFF -FFFFFFC07FEFFFFFF7EFF7F7FBFBFFC0FEFFFE0FFF7F61BFDBEC0FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFBFFFFFFFF81FE2FFF -FFFFFF81FFFFFFFFFFFFFFFFFFBF7FE06FFDEA15FFF7E0EFFFFC0FFF -FFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FEFFBFFFFFFFFFFFFFE01FC3FFE -FFFFFD01FFFF7FFFFFFFFDFF7FFFFFE07F7FFE17BEFFE1DDEBFE0FFF -FFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFEFFFFFFFFF800003FFF -FFFFFC07FFFFF7BFF7FFFFBFFFFFEFE06DEFFE1DF7B5A07EFFFC0FFF -FFFFFFFFFBFFFFFFFFFFFFFFFFFFDFFFFFFFEFFFFFFFFFFFFBFDFFFFFFFFFFFFF010003FFF -FFFFF01F7FFFFFFFFFFBFFF7FFFFFFE0FFFFFE1FFFBFE1DFBFFC0FFF -FFFFF7FFFF7FF7EFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFDFFFFFBFFFFFFFDFBA070003FFF -FFFFE07FFFFFFFFBFFEFEFFFBBBEFBC0EFFEFE0FF6F7C1BFFFFC0FFF -FFFFFFBEFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFF7EFFEFFFFBFFFFFFFFF80D0003FFF -FFFDC0FFFFFFFFFDFFFF7FFFFFFFFFE0EFFFFE1F7FBFE1FAFEFE0FFF -FFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFDFFEFFDFFFFFF03E0003FFF -FFFF017FFFFFFFFFBFFFFFFFFFFFFFE07FFEFE1FDFEFE0EFFFBC0FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FDFFFFFFFFBEFFFFBFFFFFFE07F1063FFF -FFFE07FFFFFFFFFFFBFFFFBFDFBFFFA0FBEFDE0FF5FF60FEFFFE0FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81EF1063FFF -FFFC0FFFFFFFFFFFFEFFFFFBF7FFFFE06FFFFE1FDF7BA177FFFC0FFF -FFFEFF7F7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFBFFFFFFFFFEFFFFFFFF01FF1862FFF -FFE02FFFFFFFFFFFFFFDEFFF7FEFBFA0FFEFFA16FFFDE0FFF7FC0FFF -FFFFFFFFFFEFFBFFFFDFFFFFFFFFFFFFFFFFFF7FFFFBFDFEFFFFF7FFFFFFFFC0FFE3023FFF -FDE05FFFFFFF7FDFDFEFFBFFFFFDFFE03FFFEE1FEBEFC1D7FDFC0FFF -FFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFDFFFF7FFFBFF7FFF00FFB0023FFF -FFC0FFFFFFFFFFFFFEFFFF7FFFFFFFE0FFFFFE0B7FFDE17EFFFC0FFF -FFFFBFFFF7FBDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFBF7FFFFFFFFE03FFE0003FFF -FF01FFFFEFFFFFFFFFFFFFFFFFBFEFA0FDFFFE1FF6FFE0FFFFBE0FFF -FFFFFFFFFEFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFC0FFFE0003BFF -FE07FEFBFF7FDFF7FFFFFFFDFBFFFFE0BF77FE17BF6FE17FB7F80FFF -FFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFF7FFFFEFFEFFFFF81FFFE0003FFF -F01FFFFFFFFFFFFF7FFDBFFFEFFBBFC0FFFFFE1B77FBE1FAFFFC0FFF -FFFFFFBFFFFFF7BFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFDFA01FFFE0083FFF -F03FFFFFFFFFFFFFF7DFEFDFFFFFFFE0FBFFFE1FBF5FA17FFFEC0FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFBFF7FFFFFDFFFFFC0FFFFE18C3FBF -C0BFFFFFFFFFFFFFFEFFFFBF7DDFFFE0FF77FE0BFBFFE0FF7FFC0FFF -FFF7BDF7FFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFE1863FFF -00FFFFFFFFFFFFFF7FFFFFFFFFFFF7C0FFF7FE2F7FEFE1DFBFF40FFF -FFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFF7F5FFFFDE05FFFFE18C3FFE -07FFFFFFFFFFFFFFFFEFF7FFFFFDFFE0FFFDDE15FEFFE17DFFFC0FFF -FFFFFFFFFBFFFBFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFBFFFEFFF00FF7FFE18C1FF4 -0FFFDFFFFFFFFFFFFFFFFFFFFBFFFFE0B77FFE1FDBFFE1F7FFB40FFF -FFFFFFFFFFFF7FFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFEFF01FFFFF60883FF0 -1FFFFFFFFFFFFFFFDEF6FFFF7F7FBFE0FBDF7A0FEEDFE1BFDFFC0FFF -FFFFFFFFFFDFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFDFFEFFFFFFFFFFFFC03FFFFFE0083FE0 -7FFFFFFFFFFFFFFFFFFFFFBFBFDFFFC0DDFBFE0DFFFDA0EFFFBC0FFF -FFFFEF7FFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFDFFFFFFFF7FF00FFFEFFE0801F40 -DFDFFFFFFFFFFFBFFFFFFBF7FFFDFFE0FF6FFE1EB7FFC1FBF7FC0FFF -FFFFFFFFFFFFFFDFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFB01FFFFFFE0001F01 -FBFFFFFFFFFEFFFFFEFF7FFFF7FFF7C0BFFFFC17FDFFE0FBFDFC0FFF -FFFEFFFFFBF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFBFBC07FFFFFFE0001C07 -FFFFFFFFFFFFFFFFFFFFEFFFFFFFFFC0EFB7FE1EBFEF81FFFFBC0FFF -FFFFFFFBFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFF6001180F -FFFFFFFBEFFFFFFFFFEFFFFFFFBFFFE0BAFFF61EFBFFE0DBDFFC0FFF -FFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE02FDFFFFFE400102F -FFFFFFFFFDFFFFFF7FFFFFBBFFFF7FC07FF7FA07B77F617FF6FC1FFF -FFDFFFFFFFFFFFFFDDDFDFFFFFFFFFBEFFFFFFFFFFEFFFFFFFFFBFFFC0FFF7FFFFE603007F -FFFFFFFFFFFFFFFFEFFEF7FF77EFFFE15FBFBE1FFFF7E1DFEFEC0FFF -FFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFF817FFFFFFFE60200FF -FFFFFFFFFFFFFFFFFFFFFDFFFFFFDFC0F7FFD603FBFD60FB7FFC0FFF -FFFFBDFFFFFFBFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFEFFFFFFFFE03FFFFFFFF630001FF -FFFFFFFFFFFFFEFFFEFFFFFFFFF7FDE07F7BFE1F5FFFA17FEFEC1FFF -FFFFFFEFFDFBFBBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFF80FFFFFDFFFC701F3FF -FFF7FBFFFFFEFFFEEFDFFFDFF77FFFC0EFFFF61BF7EBE1EF7FFC0FFF -FFF7FFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFE781F9FF -FFFDFFFFFFFFFFDFFFF7EFFFFFFDFFE0BD7EBE1DBFBFC17BFFEC0FFF -FFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FF7FFFFFFC787FCF7 -FFFFFFFFFFFFFFFFFFFFFFFF7FFFDFE0F7FDFC1BFFFFE1FFFFFC0FFF -FFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFFF7FFFFC787FCFF -FFFFFFFFFEFFFFFF7DFEFDFBFDFFFFA0BFFFFE1EFFF7E17FFFFC1FFF -FFFDDFFF7FBFFFFFEEFFFBFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FEFFFFFFFFC507F8FF -FFFFFF7FFFFFFFFFFFFFFFBFDFBFFFC07FEFFE1FDD7EC1ABFBF40FFF -FFFFFFFFFFFDFFFFFF7FFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFC06FFFFFFFFFFC607FC7F -FFFFFFFFFFFFFFFFEFFFFFFFFFFBFFE05BFDFE15FBEFE0FFDAFC1FFF -FFFFF7FFF7EFDFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFC003F8FB -F7FFDFFFFFFF7FF7FEF7FFFEFFEFFBC0FFFF7E0F7BBF61B7EFFC0FFF -FFFFFBFFFFFFFFFFFFF7FFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFD01FFFFFFFFFFF8001F9FF -FFFFFFFFFFFFFFFEFFFFFDBFFFFF7FE077EFDE0FFBF7E0FF7F7C1FFF -FFFFFFFEFFFFFFFFFFFF7FFFFFFFFFFFFFFFDFFFFFFFFFF7FFFFC07FFFFFFFFFFFC001F3FF -FFFFFFFFFFFFFFFFEFBDFFFFFBFFFFE0DFBFFE1FDDFFC1BFF7FC0FFF -FFFFFFDFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFF800003FF -FFFFFFFBFFFFFFFFFEFFBFF7FFFFBFC177FFFE1BFF7BE1EEFDFC1FFF -FFFFFFFFFBFDFFFFEFFFFFFFFFFFFFFFF7FFFFFFBFFFFFFFFFFE03FFFFFFFFDFF700000EFF -FFFFFFFFFFFFFFFFBFFFEFDEFEFBFF80FDDDEC1EDFDFE17BBFFC0FFF -FFFBF7FFFFFFEFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF40BFFFFFFFFFEFC00011FFF -FFFFFFFFFFBFFFF7FFFFFFFFFFFFFFC0D7FF7E1F7FEFC1FFFFFC1FFF -FFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFBFFFFFFFFFFFFFDFF80FFFFFFFFFFFF80C001FFF -FFFFFFFFFFFFFFFFFFDFFBFFB7EFFFE0FDF7FE0DF57FE17EFFEC0FFF -FFFFFFFF7FFFFFBFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEE03FFFFFFFDFFFE008889FFF -FFFFFFFFFFFEEFFFF7F7FFFFFFFFEFE07EFF7E1F5FBFA1D7ADF40FFF -FFFDFFFFFFBFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFBFFFFFFFFD000880FFF -FDFFFFFFFDFFFFFBDDFFDFF7FEFFFFC0BFFDFC1BFBFEE0BF7FFC0FFF -FFFFFDDFFFFBFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFEFFFFFFF01FFFFFFFFFFFF81818C1FFF -FFFFFDFDFFFFFFFFFFF7FDFFFFFDFFE0FDBFEE0F7FBFC1FFEFF40FFF -FEFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFE0281840FFB -FFFFFFFFFFFFFFFDFFFDFFBF7FFFEFC0BFEFB60FDDEB61FBDFFC1FFF -FFFFEFFFEFFEFFFFFF7FFDFFFFFFFFFFFFFFFFFFFFFFFFFFF80DFFFFFFFFFFFC07018C1FFF -FFFFFFFF7FFFFFFFFFFFFFF7FFDFFFC0ADFFFC1EDFFF816EFFBC1FFF -FFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFF01F818E07BF -FFFFFFFFFFFFFF7F7BFFBFFFFFFF7FC031309805150D014B37400FFF -FF7FFFBDFBFFFDFDFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFC07F838E0FFF -FFFFFFFFFFFFFFFFFF7FFFFFEFFBFFC0000000000000800000001FFF -FFF7FFFFFFFFBFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFEF81BFFFFFFF7FFFC0BF878E0FFF -FFDFFFFFFFFFDFFFFFFFFFFFF6FFFFA0000000000000000000000FFF -FFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFD03FFF7FFDFFFFE01FF85870FFF -FFFFFFFFFFFFFFDF7FFBDEFDFFBFDFC0000000800010000000101FFF -FFFFFFFFFEFFFFFFFFBFFEFFFFFF7FFFFFFFFFFFFFFFFFFC07FFFFFFFFFFFE07FF878F0FFF -FFFFFFFFFFBFFFFFDFFFFDFF7FFFFFE0000000000000000002000FFF -FFFFFF7FFFDFFFFFFFFFEFDFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFF80FFF828E0FFF -FFFDFFFFFFFFFFFFEFFFFFFFFFFEFBC0000000010080000000000FFF -FFFFFFFDFFFFFB7EFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBE03FFFFFFFFFFFF03FFE838E0FFF -FFFFFFFFFFFFEF7FFFBFFFF7FFFBDFE0400010001000000400000FFF -FFFFFFFFFFDFFFFFFFEFFFEFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFA07FFF81880FFF -FFFFFDFFFFFFFFFFFDFEDFFFFFBFFFC0000000020000000000000FFF -FFF7FFFFEFFBFFDFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFF81BFFF818C0FFB -FFFFFFFFFFFFFFF7FFFFFDBFEFFFFFC0814000000000000000001FFF -FFFFFFFFFFFF7FFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FDFFFFFFFFFF03FFFF80884FFF -FFFFFFFFFFFFF7FFFFF7FFFFFFFFFDC0000000000002010000000FFF -FFBFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFF80DFFFFFFFFFFFC07FDFF9C0087FF -FFFFFFFF7FF77FFEFEFFFFFDFFFFBFE0000000400040000020001FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFE81FFFFF8801CFFF -FFFFFFFFFF7FFEFFEFFEFFFFFFF7FFE0000000000000000000001FFF -FFFFFFFFFFFFDFFFFFEFEFFF7FFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFE07FFFFE9C01CFFF -BFFFFFFFFFFFFFBFFFFFDF7FDFFFFFE0020100000800000000001FFF -FFFFFFFFFFEFFFFDFFFFFFFBFFFFFFFFFFFFFFFFFFFF80FFFFFFFFFFFFC0FFFFFF1E03C7FF -FDFEFFFFFFFFBFEFF7FFFFFDFFFFFFF0000000004000080400003FFF -FFFFFF7FFFFFFEFFFBFFFFFFFFFFFFFFFFFFFFFFFFFE03BFFFFFFFFFFD00FFFFFF8E07CFFB -FFFFFFFFFFFFFFFF7FFFFFEFFFFFFFE0100000000000000000001FFF -FFFFFFFFBBFFFFFFBFFFFFBFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFFFFE07FFFFFF9F0747FF -FFFFFFFFFFFFFFFFFF5FF7FFEFFFBFF8800000000020002000007FFF -FFFFFFFFFFFFFF7FFFFBFFFFEFFFFFFFFFFFFFFFFFF41FFFFFFFFFFFF80FEFFFFF1F87C3FF -FFFFFEFFFFFFEFFFFBF7FFFFFFFFFEF0000000000000000000007FFF -FFFFFFFFFFFDFFFFFFFFEFFFFFFFFFFFFFFFFFFFFDF03FFFFFFFFFFFF01FFFFFFF1F8FC7FF -FFFFBFFFFFFFFFDDFFFFBFFFFBFFFFF800000000000000000000FFFF -FFFFFFFBFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFFFFC077FFFFFD1F07C7FF -FFFFFFFFFFFFFBFFFFFFFF7FFFFFFFFE00000000000040000000FFFF -FFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFF80FFFFFFFF1E07C7FF -FFFFFFFDFFFBFFFFFFFBFFFFFFEFDFFE02000000000000000000DFFF -FFFFFFFFF7FFF7FDFFFFFFFFFFFFFFFFFFFFFFF7FF03FFFFFFFEFFFF03FFFFFFFF1A0187FF -FFFFFFFFDFFFFFEFDFFFFFFFFFFFFFFB00000000000000000043FFFF -FFFFFFFFFFFF7EFFFFFDFBFDF7FFFFFFF7FFFFFFFC0FFFFFFFFFFFFC07FFFFFEFF1C01C7FF -FBFFFFFFFFFFBEFFFBFFBFDFFFFFFFFEC0000200000000000007FFFF -FFFFFFFFFFEFFFFFFFFF7FFFFFFFFFFFFFFFFFFFF01FFFFEFFFFFFD80FFFFFEFFF1C00C3FF -FFDFFFFFFFFFFFFEFFBFFDFFFFFFFFFFA000000000000000001FFEFF -FFFFFFFFFEFFFFFFFFBFFFFFFFFFFFFFFF7FFFFFE05FFFFFFFFFFFE03FFFFFFFFE1088C7FF -FFFFFFFFFFFFFEFFFFFBF7FFFFFFFFFFF000000000000000003FFFFF -FFFFFFFFFFFFFFEFFFFFFF7FFFBFFFFFFFFFFFFF80FFFFFFFFFFFFC0FFFFFFFFFF1108C7FF -FFFFFFFFFFFFFFFFFFFFBFEFFFBFFFFFFC00000000000000017FFFFF -FFFFFFFDFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFF02FEFFFFFFFFEF80FFFFFFFFFF118C47FF -FFFFFFFFFFBFBFEEEFFFFFFFF7FFFEFFFFFAB66F979F5DD6F7FFFFFF -FFFFFFFFFFFEFFFFFFFFFFFDF7FFFFFFFFFFFFFE07FFFFFFFFFFFE03FFFEFFFFFF018606FF -FFEFEFFFFBF7FFFFFFFFFFFFFFFFFFFFFFFFFFBF7DEFFFFFFFFFFFFF -FFFFFFFFFFFFF7FFFFFFBFFFFFDFFFFFFFFFFFF00FFFFFFFFFFFFC0FDFBFFFFFFF038E07FF -FFFFFFFFFFFFDFFFFEFFFFFEFFFFFFFFFFDFFFFBFFEFFEFF7FFFFFFF -FFFFFFFFFFFFFEFFFFFFFF7FFFFFFFFFFFFFFFF03FFFFFFFFBFFF01FFFFFFFFFFF078F03FF -FFFFFDFDFFFFFEFF7FBBBFFFFFFFBFFEFFFBFFFFFFFFDFFFFFEFFFFF -FFFFFFFFDEFFFFFBFFFFEFFFFFFFFBFFFFFFFFC07FFFFFFFFFFFE07FFFFFFFFFFF078707FF -FFFFFFFFFFFFFFFFEFFFFFFFFFF7FFBFFFFF7FFFFFFFFFFFF7FDFFFF -FFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFF81FFFFFFFFFFFFC0BFFFFFFFFFFF0F0F07FF -FFFFFFFFFFFDF7F7FFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFE03FFFFFFFFFFFF03FFFFDFFFFFFB0F8FC3FF -7FFFFFFFFFDFFF7FFFFFFF7F7FFFFFFF7FFFF7FFFFFBFFBFFFFFFFFF -FFFFFFFFFFFBFFFFFFFFFFFFFDFFFFFFFFFFFC0FFFFFFFFFFFFA07FFFFFFFFFFFF1F8BA6F7 -FFFFFF7FFFFFFFFFEFBFEFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFF -FFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFF00FFFFFFFFFFFF80FFDFFFFFFFBFF1F8FC7FF -FEF7FFFFFFFFFFFFFFFEFFFFF7FFFFFFFFFFFFFBBFFFF7FDFFFFFFFF -FFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFF03FFFFFFFFFFFFE3F8FE3FF -FFFFFFFF7FFEFFEF7BF7FFFFFFFFBFBFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF7FFFDFFFFFFFFFFFFFFFFFFFFFC0F7FFFFFFFFFFC07FFFFFFFFFFFFF3F8FE7FF -FFFFFFFFFFEF77FFFEFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFDFFFFF017FFFFFFFFFFFFE2F8FE3FF -FFFFFFFFFFBFFEFFFFFFFFFFFFFFFFFFF7FDFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFF03FFFFFFFFFFFFFE3F8EE3FF -7FF7DFFFDFFFFFEFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFC07FDFF7FFEFFFFFE3F8FC3FF -FFFFFFFFFFEFFFFF7DFFFFFFFFFFFFFEFFBFFFFFFFFFFFFFFFFDFDFF -FFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFF02FFFFFFFFFFFF01FFFFFFFFFF7FFFE3F8FE3FF -FFFFFFFFFFFFFFFFDFFFFFDFEFFF7FFFFFFFFFFFFDFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFFFFE03FFFFFFFFFFFFFFE3F8FE3FF -FFFFF7FFFFFF7FFBFEFFFFFFFFFFFFFFFFFFFFFFBFEFBFFFFFFFFFFF -FFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFF40FFFFFFFFFFFFFFFE3B8FE3FF -FFFFFFFFFDFBFBFFFFF7FFF7FFFFFBFFFFFFFFFFFFFFFFFDFFFFFFFF -FFFFFFFFFFFFBFFFBFFFFFFFFFFFFFFFFE03FFFFFFFFFFFF81FFFFFFFFFFFFFFFE3F0FC3FF -FFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFF606FFFFFFFFFFFFFFFE3F87E3FF -BFFFFFDFFFFFFEFFFFFFFFFFFFFFFDFFFFFFEFF7FFFFFFFFFFFEFFFF -FFFFFFFFFFFFFFBFF7FFFFFFFFFFFFFFF81FFFFFFFFFFFFC0FFFFFFFFFFFFFFBFE7F8FE1DF -FFBFFFFFFFDFBFDFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFDFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFF01FFFFFFFFFFFFF7DF43E8DA3FD -EFFFFFFFFDFFFFFBFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFE07FFFFFFFFFFFE8020000000000 -000DFFFFBFEFEFFFEFFFFFFFFBFFFFFFFFFFFDFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFF80DFFFFFFFFFFF80FFF7FFFFFFFFE0000000000000 -0002FFFFFFFFFFFFFFEFDFFF7FFFFFEFFFDFFFFFFFFFFFFFFFFFFBFF -FFFFFFFFFFFFFFFEFFBFFFFFFFFFFFFE03FFFFFFFFFFFF02FFFFFFFFFDFF00000000000000 -0000FFDFFFFFFFFFFFFFFFFFFFEFFFFFFFFF7FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF40FFFFFFFFFFFFC07FFFFFFFFFFFF00000000140004 -00003FFFFDF6FFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFF -FFFFFFFFFFFFFFFFFDFFFFFFFFFFFFF81FFFFFFFFFFFF817FFFFFFFFFFFC0F5EA55BA5DB31 -6BA00FFFFFFFF7FFFFFFFFDFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFBFFFFFFFFFFFFFC07FFFFFFFFFFFD03FFFFFFFFFFFF82AF7FF7AF5769D -6E9C0FFFFFFF7FFFDFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFC0FFFFFFFFFDFFD07E5F2D97AEDBAF -97E107FFFFFFFFFFFFFFBDFFFFFFFFFFFFFFFFFDFFF7FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF037FFFFFFFFFFF80FFFFFFFFFFFFF0FBF5CAF0E27078 -501802FFFDFFFFFFFFFFFFFFEFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFFFFFFFFFFE07FFFFFFFFFFFFE17EB00004020000 -040201FFFFFFF7FFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFDFFFFFFFFF40FFFFFFFFFFFF80FFFFFFFFFFFFFC397804000008000 -200005DEFFDFFFBFEFFFFFFFFFFFFFFFFF7FFFFFFFFFDFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFEFFFFFF03FFFFFFFFFFFF01FFFFFFFFFFFFF43F0201020000000 -000001FFFFFF7FFFFFFFFFFFFFDFFFFFFFFFFEFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFEFFFFFFFFFFC07FFFFFFFFFFFE07FFFFFFFFFFFFFC39D020000000000 -004000FF7DFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFF80FFFFFFFFFFFFFF85E0402020000804 -0804007FFFFFFFFFFFFFFFEFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFDFFFFFFFFFFE01FFFFFFFFFFFF03FFFFFFFFFFFFFE8568040100000201 -0100007FFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFFFFC07FFFFFFFFFFFFFF07A0000010204000 -0000007FFFFF7FEFFFFFFFFFFFFDFF7FFFFFFFFFFFFFFFDFFFFFFFFF -FFFFFFFFFFFFFFFFFFF7FFFFFFE81FFFFFFFFFFFF80FFFFFF7FFFFFFFF0570040004000000 -0001007EFB7FFFFFFEFEFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFF03FFFFFFFFFFFFFFF03C2800001000020 -1000107FFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFEFFFFFFC0FFFFFFFFFFFFC07FFFFFFFFFFFFFFF0010221000000000 -0102007FFFFFFFFFFFFFFFFFF7FFFFFBFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFDFFFFF01FFFFFFFFFFFF81FFDFFFFFFFFFFFFF0A02800000008040 -8040007FBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFA07FFFFFFFFFFFE03F7FFFFFFFFFFFFFF0000000000000800 -2010007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFF7FF7FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFC0FFFFFFFFF7FFFFFFF0A04000402000201 -0000203FFFEFFFFF7FFFF7FFFFFFEFFFFBFFFFFFF7FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFF80FFFFFFFFFFFFFFFFF0080412040200010 -0000007FDDFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFE06FFFFFFFFFFFE03FFFFFFFFFFFFFFFFB0000000000000000 -0804007FFFFDFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFF0000000000000000 -0000003DFEFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFF01FFFFFFFFFFFFFFFFFF007BDFF84DAFDD0F -4EB5C07FFFFFF7FFF7FFFFBFEFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF60FFFFFFFFFFFFA07FFFFFFFFFFFFFFFFFF07FFFEB83BFFFF0B -FFFFD07FFFFFBFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF81BFFFFFFFFFFFC07FFFFFFFFFFFFFEFFFF05DDFFF07F7FFF07 -7F7FF06EFFFFFFFFFFEFFFFFFFBFFDFFFFF7FFFDFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFF03FFFFFFFFFFFDFFFFFFF06FFFFF83BFFFF07 -FFFFA07FEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFF07DFFFF87FFDFF07 -F7FDF07FFDFFFFBFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFF00FFFFFFFFFFFF80FFFFFFFFFFFFFFFFFFFF03FFFFF87FFFF70B -FFEFB03FFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFBFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFF03FFFFFFFFFFFFFFFFFFFF07FF5FF85FF7FA0F -BBFDF07F7FFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFEC0FFFFFFFFFFFFC07FFFFFFFFFFFFFFFFFFFF05FBFFD85DFFDF0F -BFEFF077FFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFE803FFFFFF7FFFFFFFFFFFFE05FFFFF87FFFFA0F -7F7FE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFE033FFFFFFFFFFFFFFFFFFFF07FADFF87DFFFF0F -DFDDF07FFFFFFFFFEFFFFFFF7FFFFFFFFFFFDFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF40FFFFFFFFFFFFC079FFFFFFFFFFFFFFFFFFFF07DFFFF87FFB6E07 -FFF7E03FBF7FFFFFFFFBFEFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFF01EDFFFFFFFFFFFFFFFFFF7F07FFFBF03FFFFF06 -FDFFF07FFFFFFFFFFBFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC07FFFFFFFFFFFE07F8FFFFFDFFFFFFDBFFFFFF06FFFFD877FFBF0F -EFFFF07BFFFFFFFFFFFFFFFFFFFFFFFDF7FFFDFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFC07FC7FFFC03DC3CFF03FFFFF03DFFFF87FFDEF0B -FD7FF07FFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFF81FFE7FFF8E0FC00FE73FFFFF06FBFFF85FFFBF07 -EFDDF05FFFEFFFFFFFFFFFFFDFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF607FFFFFFFFFFFC07FFE7FFF9F0FC01FCF9FFFFD07FFFFF87F7EFB0E -FFFFB07FFFFFFFFFFFFFFFFFFFFF7EFFFFFFFFFFFFFFFFFF7FFDFFFF -FFFFFFFFFFFFFFFFFF81EFFFFFFFFFFF80FFFF3FFF1F0FC03FCF5FFFFF076FFFE87FEFFF0F -77FFF03F7FFEFF7FFFFF7FFFFFF7FFFFFFF7FFFFFFFFBFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF01FFFFFFFFFFFF03FFFF3FFF1F8FDFFFC7DFFFFF03FFFEF85FB7BD0F -FFFFF03FFDFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFF -FFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFC07FFFF9FFF0B8BCEFBEF1BFFFF07FFFFF87FFFFE0A -FBFFF07FFFFFFFFFFFF7FFFFFFFFFFFFFBFFFFFEFF7FFFFFFFFFFFFF -FFFFFFFFFF7FFFFFF01FFFFFFFFFFFF80FFFFF9FFF830FDFFFE33FFFFF05FFDFF86FDFFF0F -7FFF607FFFFFFFFBEEFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF7FE07FFFFFFFFFFFE03FFFFFCFFFCE1FDFBFF83FFFFD07FFFFF07AFBFF07 -FFFFF07FFFFFDFFFFFFFFFFBFFFFFF7F7FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFC07FFFFFFFFFFFE07FFFFFCFFFFE3FD81FFFFFFFFF02FFEFF87FDEEF0F -67FFF03FFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFBFFFFFFFF03FFFFFFFFFFFF81FFFFFFE7FF7C7FC00FFFFFFFFF07FFFFF8FEFFFB06 -FFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFEFFFFFFFFFC03FFFFFFFFFFFE03DFFFFFA7FFE00FC7C3FFFFFFFF07FFFFD837FFFF0F -7FBFF07FFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF80FC0FFFFFFFFFFFFC0FFFFFFFF3FFE787CF83FFFFFFFF05EFFFF87FDEFD0F -FFFFF077FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF00303FFFFFFFFFFFF01FFFFFFFF7FFEB879FE1FFFFFFFF07FBFFF8B7EFBF0E -FDBFF07FBFFFFFFFFFFF7FFFFBFFFFFFFFF7BFFFFF7FFFFFFFFFFFFF -FFFFFFFFFFFE00005FFFFFFFFFFFE07FFFFFFFF3FFDFC7CFE1FFFFFFFB07FFFFF87FFFEF0F -FFFFE07FF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFC7F00FFFFFFFFFFFFC07FFFFFFFF1FFFEC3FFE1FFFFFFFF07FFFFF076F5FF0B -EDEFF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF8BF83FFFFFFFFFFFF03FFFFFFFFF9FFFFC3FFE2FFFFFFFF07FFEFF83FFFBF07 -FFFF607FFFFFFFF7FFFFFFFFFFFFFFFF7FFFFFFEFFFFFFFFFFFFFFFF -FFFFFFFFFFB8FFC7FFFFFFFFFFFA07FFFFFFFFF9FFFF87FFE3FFFFFFFB07FBFFD87BBFFF17 -FDFFD07FFFFFBFFFFF7FDFFFFFFFFEFFFFFFFFFFFFFFFFFEFFFFFFFF -FFFFFFFFFFF9FFC7FFFFFFFFFFFC0BFFFFFFFFF9FFFFC7FFC3DFFFFFFE037FF7F06EFDFF07 -77FDE07FFFFFFDFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE1FFC7FFFFFFFFF7F01FFFFFFFFFFCFF3F831FC3FFFFFFFF07FEFFF87FEFDE0B -DFFFF07FFFFFFFFFFFFFFFFFFBFFFFFFFDFFFFFFFFFFFFFFFFDFFFFF -FFFFFFFFFFF1FFE3FFFFFFFFFFE07FFFFFFFFFF8FE1F8F1F87FFFFFFFF077FDFF87BFF7F0F -7FFEE07FFFDFFFFFBFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFF -FFFFFFFFFFF1FFE7FFFFFFFFFF80FFFFFFFFFFFCFB1F9F0F8FFFFFFFFE07FEFFF85DEBFF0F -EFEFF06FFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF1FFC7FFEFFFFFFE03FFFFFFFFFFFEFF047F823FFFFFDFFF03F7FFF8FFFBFB0B -7FFF707FFFFFFFFFFFFFFBFFFF7FFFFFBFFFEFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF8FFC7EFFFFFFFFC0FFFFFFFFFFFFEFFE2FFC1DFFFFFFFFF05FFFFE85FBFFF0F -DFEFD07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF0FF8FFFFFFFFFF817FFFFFFFFFFFEFFFFFFFFFFFFFFFFFF079DDFF075FDFF07 -7DFFF07EFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE07F0FFFFFFFFFE01FFFFFFFFFFFFE7FFFFFFFFFFFFFFFFF05FFFDF07FDFFD17 -FF7FF05FEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFC0140FFFFFFFFFC0FFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFF07DF7FD07FF7FE07 -FFDFE07FFFFFFFFFFFFDFFFFFFFFEFFFFFEFFFFFFFFEFFFFFFFFFFFF -FFFFFFFFFF00000FFFFFFFFF01FFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFF03FFFFF03AFFEF06 -FDFFF07FFFDF7FFFEF7FFFFFFFFFFFFFFFFFFFFFFBEFDFFFFFFFFFFF -FFFFFFFFFE00000FFFFFFFFE03FFFFFFFFFFFFFE7FFFF7FFFFFFFFFFFF07FFFFF87FBFFF0F -BFEFE07FFFFFFFDFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF80C000FFFFFFFFC0FFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFB02EFFF70B7FFEE0B -DFFFF07FFFFFF7FFFFFFF7FFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF03C000FFFFFFFF11FFFFFFFFFFFFFFF5FFFFFFFFFFFFFFFFE05FBFFB87DFFFB0E -F7FF605FFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFE078008FFFFFFFE07FFFFFFFFFFFFFFE7FFFFFFFFFFF7FFFFF077FFFF8FFFEFF0F -FFFFF07FFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFBFFEFFFFFFFFFFF -FFFFFFFF81EC418FFFFFFDC0FFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFF07EFEBE83F7FBF07 -B777E07FBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF77FFFFFFFFFFFF -FFFFFFFE01FC608BFFFFFF01FFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFF0777FEF06FF7EF05 -FFFFF07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFC07F8C18FFFFFFE07FFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFF07FFFDF87BFFFE17 -FBFEE07FFFFFFFFFBFDFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFF -FFFFFFF81FFC408FFFFFF81FFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFF02FEFFF06FFBFF06 -FFFBF03FFFFFFF7FFFFFFFFFBFFFFFFFFFFFFF7BFFFEFFFFFFFFFFFF -FFFFFFE03FF8000FFFFFD03FFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFF07DFFFF07BD5FF0D -BFDFF07FFFFFFFFFFFFFFDFFFFFFFFFFFFFBFFFFDFEFFFFFFFFFFFFF -FFFFFFC07FF8000FFFFFC05FFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFF077EDFF87F7EDF0F -DF7FE077F7FBFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF81FFF8000FFFFD807A9D6DDDFFBEEFDDB61DFEEEDBDFFFFFFFFF05FFFFF87FFBFF0E -FFDFF07FFFFFFFFFFFFF7FFFF7FFFFFFFFFFFFFFFFFFFEFFFFFFFFFF -FFFFFE07FFF8220FFFFE0000040000000200000000000003FFFFFFFFEE05FEFF515FDFF707 -F7B7D07FFDFFFFEFFFFFFFFFFFFFFFF7FFFFFFFFFEFFFFFFFFFFFFFF -FFFFF80BFFF8620FFFFD025EB5BB5ED5CB6DD7D6E6ABB8F5FFFFFFFFFF07EFDFF8BEFDFF0B -FFFFF07FFFFFFFFFFBF7FFEFFFFFFBFFFFFFFFFBFBFFFFFFFFFFFFFF -FFFFF81FFFF8238FFFF81FFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFF07F7FBF06FDF7F0E -F6FFE07DFFFDFFFFFFFFFFFFFFFFFFFFFFFF7FBFFFFF7F7FFFFFFFFF -FFFFE05FFFF8630DFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFF037FFFF87B7DBF0F -EFDFE06FFFFFFFFFDFFFFFFFFFDFFFFFFFFFFDFFDFFFFFFFFFFFFFFF -FFFF80FFFFF8630FFEC07FFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFF07FDEFF07BF7FD03 -FB7FF07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFF7EFBFFFFFFFFF -FFFF01FFFFF8430FFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF02FFFDE87F5FFF0F -AFFDE07FFFFFFFFFFF7FFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFF -FFFE07FFFFF82207FE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDF07BFEFE0ABFDFB05 -FBFF607FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF80FFFFFF8220FF807FFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA077EFF707FF7BF0F -7DEFC07FFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFF -FFF03FFFF7F80007F03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03DEFFF877DFFD0F -DEFFF07FFEFFFFFFFFFFF7FFDFFBFFFFFFFF7FFFFFFBFFFFFFFFFFFF -FF807FFFFFF0000FE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07F3BDA0DDFBF50A -FFFFA07FFFFFFF6FFFFEFFFDFFFFFFFFFFFFF7FF7BFFDFDFF7FFFFFF -FF81FFFFFFF8004780FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0070B4204C141C0E -17CE8077FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFF -FE03FFFFFFF9000703FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000 -0000007FFFFFFFFFDFFFFFFFFFFFEFFFBFFFFFFFFEFFFFFFFFFFFFFF -FA07FFFFFFF980C407FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FDF7FFFFF0000000000000000 -0000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFDFFFFFFFFFF -F81FFFFFFFF980C01BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFF0004000100000000 -0000007FFFFFFFFFFFFFFFFFFFFFFFFFFFBFFDFFFFFBFFFFFFFFFFFF -E07FFFFFFFE981803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0020120000000800 -0004003EFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F0FFFFFFFFF1C0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0008000000800080 -0080407FFF7EFFFFFFFFF7FFFFFFFFFFF7FFDFFFFFFFEFFFFFFFFFFF -F1FFFFFFFFF9E0287FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000000000204020 -000000BFEFFFFFFFFFFFFFFFF7FFFFFFFF7DFDFF7FFF7EDFFFFFFFFF -FFFFFFFFFFF1E03E3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000A04020000 -0002007FFFFFFFFFFFFFFFFFFFFFFFFFFFEFEFDFFBFFFFFFFFFFFFFF -FFFFFFFFFFF1E0FE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0140800000002000 -1000007FFFFFFFFFFFFFFFFFFFDFFF7FFFFFFFFFFEFFFFFFBFFFFFFF -FFFFFFFFFFF1C0FB1FDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000201000000000 -0000007FFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFF -FFFFFFFFFFF0C0FF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000 -2010007FFF7FFEEFDFFFFFFFFFFFFFFFFFFFFEFFFF7FFFBFDFFFFFFF -FFFFFFFFFFF180FF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFB0000000028000844 -0000007FFFFFFFFFFFFFFFFFFFFFBFFFF7F7FFFFBFEFFFEFFFFFFFFF -FFFFFFFFFFD100FE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0008000000000200 -000000DFEFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF0007E3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000000040200000 -000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FDFFFFFFFFFFFFFFFFF -FFFFFFFFFFF000183FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFF8008140000000000 -000000FFFFEFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE00000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFC000000000004020 -000001FEFFFFBFFFEFFFFFFFFFFFFFFAFDF7FBFFFFFBF7FFFFFFFFFF -FFFFFFFFFFE00000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC200000004000000 -040003FFFFFFFFFFFFFFFFFBFFFFFFFFDFFFBFEFBFFDFFEFFBFFFFFF -FFFFFFFFFF800007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFBE000000000000000 -000003FFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFDFDFFFFFFFFFFFFFF -FFFFFFFFFF002207FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000000000000000 -0000077FFFFFFFFFFBFFFFFFFFFFFEFFFFFFFFFFFFFFFFFEFFFFFFFF -FFFFFFFFFC022227FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFF800000000000000 -00000FFFFBFFFFFFFFFFFFFFFFDFDFBFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFE8002307FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFC00000000000000 -00001FFFFFDFFF7FFFFFEFFFFFFFFFFDF7FFBFFFBFFF7FFFF7FFFFFF -FFFFFFFFF0206103FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA00000000000000 -00003FBFFFFFFFFFFF7FFFFFFFFFFFFFFFFFF7FFFF7FFBFFFFFFFFFF -FFFFFFFFC0606387FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000000000 -00007FFFFFFFFFFFFFFFFFFFF7FFFFFFFEFFFDFFFFFFFFFFFFFFFFFF -FFFFFFFF81E06303FFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFDFFC0000000000000 -0003FFFBFFFBFFFFFFFFFFFEFFFBF7BF7FEFFFBFF7FFFFFFFFFFFFFF -FFFFFFFA07E0E383FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000 -0007DFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFBFFFFDFFFFFFFF -FFFFFFFC0BE0E3C7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFBFFEFB7ED56FBBDF -DDFFF7FFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFBFFFDFFFFFFFFFFFF -FFFFFFF01FE1E3C3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFF77FFEFFFB -EF7FFFFFFFFEFFFFFFFFFDFFFFFF7FEFFFEFFFFFFFFFEEFFFFFFFFFF -FFFFFFE07FE1D3C3FFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFDFFFFFFFF7FFFFFFFFFFFDFF -FFFEFFFFFFFFFFFFFFFFFFFFFFBFFFFFFEFFBFFFFFFFFFFFEFFFFFFF -FFFFFF807FC0C3C3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFEFFFFFF -FFFFFFFFFFFFF7FFFFFFFFFFFFFFFBFFBFFBFFFFFFFFFFFFFFFFFFFF -FFFFFF03FFE0E283FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFEFFF -FFFFFEFF7FFFFFFFFFDFFFFFF7FF7FFFFFFFFF7FBFFFFFEFFFFFFFFF -FFFFFC07FFE0E383FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFEFFFFFFFFFF -FFFFFFFFBFFFFEFDFFFFFFFFFDDFFF7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFD80FFFE06301FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFEFFFFFFFFD -FF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFBEFFFEDFBFFBEFFFFFFFFFFFF -FFFFF03FFFE02213FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDEFFDF -FFFFDF7FF7FFFFFFBFFFFDFF7FFFFFFFFFFFFFFFFBFFF7FFFFFFFFFF -FFFFC07FFFC22023FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFEFFFFFFF -FFEFFFFFFDFFFFFFFBF7FFFFFFEF7EFFFFFDFFBFFFFFFEFFFFFFFFFF -FFFE81FFFFE30033FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFF7FF -FFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFE03FFFEE70071FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFF7FFFDFFFFFFFFFF -EFFFFFFFFFFFFFFFFFFEFF7FFFFFDFF77BDFFFFDFFFFFFF7FFFFFFFF -FF7C0FFFFFC580F3FFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFEFFFFFFFFFFFFF7FFFFFFFF -FFFFFFFFFFFDFFFFFFFFFFFFFDFFFFFFFFFF7FFFFBFEFFFFFFFFFFFF -FFF01FFFFFE38173FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF7EFDFFFDFFFFBFFDFFFFFFFFFFFFFFFFF -FFE03FFFFFE7C1F1FFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFBFFEFBFFFFFFBF -FFFFFFFFFFFFFBFFFFFFFF7FFFFEFDFFFFFFFDFFBF7FFFFFFFFFFFFF -FFC0FFFFFFC7C1F3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFF7FFFFFFFFFFFFFFFFFF -FFFFFF7FFFFFFFFF7FBFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFF -FF01FFFFFFC3E3F1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFEFFFFFFFFFFFFFFFFFFFBDFFF -FFDFFFFFFF7FFFFFFFFFFFFDFFFFDFFF7FFFDFFFFFFFFFFFFFFFFFFF -FE07FFFFFFC7C1F1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFEF7FFFFF -FFFF77FFFFFF7F7FFFFFDFFFFDF7FFFFF6FFFFFDFFBFFFFFFFFFFFFF -FC0FFFFFFFC6C1F0FFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFF -7FFFFFFFFFFFFFFFFFFBFFFFFF7FFFEFFFFBEFFFFFFFFFFFFFFFFFFF -F03FFFFFFFC780F1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFF -FFFFFFBFFFFFFFFFFFFFFEFFDFFFFBFFFFFF7FBFFFFFFFFFFFFFFFFF -E07FFFFFFFC70071FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFBFFFFFFFFFF -FFFFFFFBDFFFFFFFFFFFFFFEFFFFFFFF7EFFFFFFEFEFFFFFFFFFFFFF -E1FFF7FFFFC70031FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFF -FFFFFFFFFFFFFFEF7FFF7FFFFFFBFFFFFFFFFFFFFFFEFDFFFFFFFFFF -F1FFFFFFFFC700B0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFEFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFEFFFF7FFDDDFEFFFFFFFFFFFFFFFFFFFFFFF -FFFF7FF7FFC62231FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFEFFFFFFFFFFFF7FFFFFFFF -FFFFFFFFFFBFFFFFF77FFFAFFDFFFFFFFFFFFDFFFFFFFFFFFFFFFFFF -FFFFFFFFFFC02211FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFEFF -BFFFFFFFFFFFFFFFFFF7F7FFFF7FFFFFFFEFFFFEFFFFFFFFFFFFFFFF -FFFFFFFFFFC46311FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDF -EFFFFFFFFBFFFFFFFFFFFFFFFFFBFFFFFDFDFFEFFFFFFFFFFFFFFFFF -FFFFFFFFFFC0E380FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFDEFFFFFFEEBFFFF7DFFEFFFBFFFFFFFFFFF -FFFFFFFFFFC0C3C1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFEFFFFFF -FFBFFFFFFFFDFFFFF7FDFFFDFFEFFFFFFFFFFFFFFDFFFFFFFFFFFFFF -FFFFFFFFFFC1E341FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFEFFF7FFFFFFFFFFFFEFFFFFFFFFFFFFF -FFFFFFFFFF83E3C1F7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFEFFDFFF7FFF -FFFFDFFFFFFFFFFF7F7FBFFFFFFFDFFEFFFFFFFEFFFFFFFFFFFFFFFF -FFFFFFFFFFC3E3E0FFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFEFFFFFFFFF7FDFFFFFFFFFFFFFF -FFFFFEFFFFFFBEF7FFFFFFEFFBFFFFFFEFBFBF7FFFFFFFFFFFFFFFFF -FFFFFFFFFFC7E3F1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFDFFFFFFFF -EFFFFFFFFFFFFFFFFDFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFCBE3D9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFEFFFBFFFFFFFFFFFFFFBF -FFF7FFF7FFBFFFFFFFFFEFFDFFF7FFFFF7F7FFFFFFEFFFFFFFFFFFFF -FFFFFFFFFFCFE3F1FFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFB -FFFFFFFFFFFFFFFF7FFFFFFFFDFFBFFFFFFFFDFF7FFFFFFFFFFFFFFF -FFFFFFFFFECFE3F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFF -FFFFFFFFFFFFFFEFFFFBFDFF7FFDFFEFFFFFDFFFFBFFFFFFFFFFFFFF -FFFFFFFFFF8DE3F9FFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFBFFFFFFFFFFFFFFFFFFFF7F7FF -FDFFFFFFFFFFFFFFFFFFFFEFFFFFEFFDFEFFFFDFFFFFFFDFFFFFFFFF -FFFFFFFFFF8FE3F8FFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFBFFFFFFFFFFFFF7FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFBF7FFEFFFFFDFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF8FE3F0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFEFFFFFFFFFFF -FFFFDEFDFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFEFBFFFFFFFFFFFF -FFFFFFFFFF8F63F8FFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFEFFFFFFFFFFFFFFFFFFFFDFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF8FE3F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7EFFFFFFFFFFFFFF -FFF7FFFFBFFFFFFFFFFFFFFFF7FFFFFFFF7FDFFBFFFFFFFFFFFFFFFF -FFFFFFFFFF9FE3F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFBFFFFFFFFFFFDFFFDFFEFFBFFFFEFF7FFFFFFFFFFFFFFF -FFFFFFFFFF1FE3F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFDF -FFFFFFFFFFF7DFFFEFFFEFF7BF7DFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF9FE1F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFBFFFFFFFF -FFFFFFFFFFFFFDFFFEFFFFFFFFEFFFBFFFFFFFFFDFFFFFFFFFFFFFFF -FFFFFFFFFF8F63F8EFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDDFFFFFE -FFFFFFFFFFFFFFEFFFFFFDFFFFFFEFFFF7AFFFFFFDFFFFFFFFFFFFFF -FFFFFFBFFF9FE3D8FFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFF7EFFF7FDFFFFFFF7FF -FFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFDA34032190292ADFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFF -FFFFFFEFDFFFFFFFFFF7FFFFFFFBFFFF7FFEFFBFFFFFFFFFFFFFFFFF -FFFFF80000000000040000FEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFF -FFFFE000000000000000001FFFFFFFFFFFFFFFFFFFFFFFF7FFFBFFFFFFBEFF7FFFFFFFFFFF -FFFF7BFFFFFFFFFBFFFFEFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF7C000000200008000000FFFFFFEFFFFFFFFFFFFFFFBFFFEFF7FFFFFFFFFFEFFFFFFFFFF -7EFFFFFFFFFFFFFFFFFEFFFFF7FEF7FFBFFFFBEFBFFFFFFFFFFFFFFF -FFFF00D16974EA542D6E1C17FDFF7FFFFFFFFFFFDFFFFFFF7FFFFFFFFFFFFFFFEFFFFDFEFF -FFDFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFF -FFFF0E3FFDDDBBD7E7F3ED03FFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFDFFFFFFFFFFFFF7FEFFFFFFFFFFFFFFFFFFFFFFF -FFFE17DFD7F37B7F7DFEFB01FFFFFFFFFFFFFFFBFFFFFFFFFFFFFFDFFFFFFFFFFFF7FFF7FF -DFFFFFFFFFFFFFFFFFBFDBF7DDFFFBDFFFFFFFFFB7FFFFFFFFFFFFFF -FFFC3FED7C9D5D972E976BC0FFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFF7FFFFFFDFFFFFFFF -FFFFFFFFFBFFFFFFFFFFFFFFFFEFFFFFFFFBFFFFFFFFFFFFFFFFFFFF -FFF87F7A050140E051208810BFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFF7FEFFFFFFFFFBFFFFF -FFFFFFFFFFF7FFFFFBFFFFFFFFBFBFF7FEFFEFF7FFFFFFFFFFFFFFFF -FFF0F5E810241028040C00807FFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFEFFFFFFFFFFFEFF -FFFFFDFFFFFFDFFFFFEDFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF0BF0205020100402000807FFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFBFFFFFFFFFFFF -FFFFDFBFFFFFFDFFFFFFEFF6FFFBFFFFDFFFFFFFFFFFFFFFFFFFFFFF -FFF1BB5020000009040004003FFFFFFFFBFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFBFFFEFFFFFFBFF7FFFFFFFFFFFFFFFFF -FFE1BC0000000100210880001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFBFFFFFFFDFEFDFF7FFBFFFFEFFFFFFDFFFFFFFFFFFFFFFFFF -FFE1CA8180402000000000481FFFFFFF7FFFEFFFFFFFFFFBFFFFFFFFFFFFFFEFFFFFF7FFDF -FFEFFFFFFFFFFFFFDFFFEFFFFFFEFEFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC1781008040A04010081001FFFFFFFFFFFFFFFFFFFFFFFFF7DFFFEFFFFFFFFFFFFFFFFFF -FDFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC1F60102810000004020101FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -BFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFEDFFFFFFFFFFFFFFFFFFFFFFF -FFC1D820000010000A0400000F7FFBFFFFFFFFEFFFFFFFFFFFFFFFFFFFFDFBFFF7FDFFDFFF -FFFFFFFFFFFBFFFFFF7FFBFF7F77DFFBFEFEFFBFFFFFFFFFFFFFFFFF -FFC4C40806014081400040801FFFFFFFFFFFFFFFFFFFFFFFFFFF7DFFFFFFFFFEFF7FFFFFFF -FFFFFFFFFFFFFEFFFFFBFF7FEFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFF -FFC2804050000028100802050FFFFFFFFFFFFFFFFFFFFEFFEFFFFFDFDFFFFFFFFFFFFFFDFF -FFFFFFFFFFFF7FBDDFDFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFF -FF40040000020100000000201FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDF -FFFFFFFFFDFFFFFFFFFFFF7FFFFFFF7FEFDFFFFFFFFFFFFFFFFFFFFF -FFC0014280401000000810081FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFD -FBFFFEFFFFFFFFEFFFFFBFDBFBFFBFFFFF7FFFFFFFFFFFFFFFFFFFFF -FFC0001028100802010081000FFFFFFFFFFFFFFDFFDFFFFFFFFFFFFFFDFF7FFFFFFFF7FFFF -FFEFDFDFFFFFFFFFDFFDFFFFFFF7FFFBFFFFFDDFFFFFFFFFFFFFFFFF -FFC40A0400008100000020221FFFFFFFFFFFFFFFFBFEFFFFFFDFF7FFFFFFF7FFFFFBFFFFFF -FFFFFFFDFFFFEFFDFDFFFFFFFFFFFFFFFFF7EFFFFFFFFFFFFFFFFFFF -FF40000000000000008000001F7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFF -FFFFFFFFFFFFFDFFFFDFFFFEFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFF -FFC0028B40004000000000000FFFEFFFFF7FFFFFFFFFFFDBF7FFFFFFFFFFFFFFFFFFFF7FFF -FFFFFFFFFFFF7FFFEFFFFDFFFBBBEFFFFFFFFFFFEFFDFFFFFFFFFFFF -FFC1FFFF7E0F7FFFE17FEFF41FFFFFFEFFFFFFFFFFFFFBFFFFFDFFEFFFFFFFBDFBFFFFF7FF -FFFFFFFFFDFFFFBFFFFFBFFFFFFFFF7BFFFF7FFFFFFFFFFFFFFFFFFF -FFC1FFFFFE1DFFFF43DFFFF81FFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF7FFFFFFFFFFFFFDEFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC1EBF7EE1FFFFFC0FEFEFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFBFF7FDFF7FFFFFFFFFFFE -F7FFFFFFFFEFFFDFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC0FF7FFC1FFFFFC3DFFFA81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFBBFBFFFFFDDFFFFFBFFFDFFFFFFFFFFFFFFFFFFFFFFF -FF416FF7FE1EFFFFC1FF7EFC0FEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFBF -FFFFFFFBFFFFFFFFFFFFFFFFEFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC1FFFFFE1FFFDF41FFFFDC1FFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFBFFFFFFFFF -FFFFFFFFFFBBFFFFEDFFBFFFFFFBFEF7FEFFFFFFFFFFFFFFFFFFFFFF -FFC17FFFFE17EFFF43FBF7FC1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFF -FFFFFFFFFFFFBFFFFFFBFFFFF7FFFFFFFFEFFFFFFFFFFFFFFFFFFFFF -FF81FEEFFE0FFFFFE1FFFEFC1FFFFFFFFFFFFFFFFFDFFFFFF7FFFFFFFFFFFFFFFBBFEFFBFF -FFFFFFFFFFFFFFBBFFFFFFF7FFFFF7FEFFFF7FFFFFFFFFFFFFFFFFFF -FFC1FFFFFE3FFFEF43B7DBEC0BFFFFFFFFFFFEFFBFFEFF7FFFEFFFFFFFFFFFF7FFFFFFFFFE -FEEFFFFFF7FFFFFFFFFFFF7EFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFF -FFC1FEFFFA1BFFFDE1FFFFFC1FFFF7FFFFFFFFFFFBFFFFFFFFFFFFFFFFDFFFFFFFFFFF7FFF -FFFF7FFFFFDFEFFF7DEEDFFFFF7F7FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC0FFFFFE1FFFFF437BF7FC1FFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFBFFFBFFFFFFFFFFFF -FFFFFFF7BFFFFBF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC1BFFFFC1EFFEFC1DFFDFC0FFFFFFEFFFFFFFFFFFFFFFFFFFDFFEFFFFEFFFFFFFFFFFFFF -FFFFFFFFFDFDFFFFFFFFFFFFFFFFFEFFFBFFFFFFFFFFFFFFFFFFFFFF -FFC1EF7FFE1FFEFFC1FEDFFC1FFFFDFFF7FFFFFFFFFFDFDFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFEFF7BFFFFFFFFEFEFFDFFF7FFFFFFFFFFFFFFFFFFFF -FFC1FFFFFC0FFFFBC1FFFFFC1BFFFFFFFFF7FFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFF7F -F7FFEFFFFFBFFFFFFEFFFF7FEFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFF -FFC177FFFE1FF7BFE5F7FFDC1FEFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFF7FF -FFFFFBFDFBFFFFDFFFDEF7F77FF7FFFF7FFFFFFFFFFFFFFFBFFFFFFF -FFC1FFFFFE1BFFDFC3BF7FF81FFFFFFFFFFFFFFFFFFFFBFFFFBFBFFFFFFFFFFFFFFFFFFFFF -7FFFFFEFDFFF7FFBFFFFFFDFFBFFFFBFFFFFFFFEFFFFFFFFFFFFFFFF -FFC1DFFFBE1FFBFFC2F7FFFC1FFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFBEF7EF7BFBFFFFFFF -FFFFFFFFFFFFFFFFBFFFFFFFFFFFF7FFFFFDFFFFFFFFFFFFFFFFFFFF -FFC0FFFFFE0FFFFFE3FFFFFC0FFFFFFFFFFFFFDFFFFFFFFFBFFFFFFBFFFFFFFFFFFFFFFFEF -FFFFFFFFFFFBFDFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC1FFFFFE1FFDFFC37FFFFC2FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFF -FDFDFFFFFFBFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFEFFFFFFFFFFF -FFC1DFFDFE1FBFBEC3F7FFFC1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFBFFFFFEFFFFBFFBFBFEFFFFFFFFFBFF7FFFFFFFFFFFFFFFFFFF -FF41FDFFEE1EFFFFC2FBFFFC1FFFFFFFFFFFF7FFFFFFFFFFFFFFF7FFFFFFFFFFFFFFF7FFFF -FFFFFFFDFFFFFFFFFF7FFFFFFDFBFFBFFFDFFFFFFFFFFFFFFFFFFFFF -FFC0FFFFFE1FBFF7C17FBFF80FFFFFFFFFFFFFFFFBFFFBFFFFDFBFFFFFFFBFFFFFFFFFFFFF -FFFFFF7F7DFFDFFFFFFFFFFFFFFF6FFFDFFFFFFFFFFFFFFFFFFFFFFF -FFC1FFFFFC1FDFBFC3FFFFFC2DEFFDFF7FFBFFFFFFBFFFEFFFFFFFFFFFFFFFFFFFFFFF7BFF -FFFFFBEFFFEFFFF7EFFEFFBFDFDFFFFFFFFFEFFFFFFFFFFFFFFFFFFF -FFC17FFFFE17FFFDC1FDF7FC1FFFFFFFFFFFFFFDFFFFFFFFFFFFFFFBFBFFFFFF7FBFFFFFFF -FFFFFFFFEFFFFEFFFFBFDFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC1FEBFFE1FDFBFA3DFBFBC1FFEFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFF7F -FFFEFFFEFFFFDFFFF7FFFFFFFFFFFFDFFFDFFFFFFFFFFFFFFFFFFFFF -FFC1FFFFFE177BFFC17FFFF81FFFFFFFFFFFFFFFFFF7FFFF7FDFFFFFBFFFFFFFFFFFFFFFFB -FFFFBFFFFFFBFFFF7FFFFFFFFDFFDFFDFFFFFFFFFBFFFFFFFFFFFFFF -FFC1FFFFFE1BFFFFE3FFEFFC0FFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFDFFF7FFFFDFFFFFF -DF7FFFDFFFFFFF77FFFFFFFFDFF7FFFFF7FEFFFFFFFFFFFFFFFFFFFF -FF81FFFFFC1FDFF7C3FDFFFC1FFFFFEFEFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFF -FFFFEDFFDBDFF7FFFFDFFDFFFFFFF7FFFFFFFFFFFFFFFFFFFFFDFFFF -FFC1FFFFFE1FFBBFE1FFFFF80FFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFF7FFFFFFFFFF -FFFFFFF7FFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC0FBEFFE1FFFFFC1DEFF6C1FFFF7FFFFFFFFFFFFFFDFFFFFFFFFFFFFFBFFFFEFFFFFFFFF -FFEFFFFFFFFFDFFF7DFDEFFFFEFFFFFFFBFFFFFFFFFFFFFFFFFFFFFF -FFC3BFFFFE1BDD7FC1FFFF7C0FFFFFFFFFFFDFFFFFFFFDFFF7FBFF7FFFFFFFFFFFFFFFFDFF -FF7FFEFEFDFEFFBFFFFFFFEFFFFBFF7FFFFFFFFFFFFFFFFFFFFFFFFF -FFC1FF7BFE1FFFDFC3EFFFFC1EFDFFFFFF7DFFFFDFFFFFFFFFFFFFFFF7FFFFFFFFFFBFFFFF -FFFFFFFFFFFFFFFBFFFFFFFFFFFFF7FFFFDFFFFFFFFFFFFFFFFFFFFF -FFC1DFFFFE16FBF7C0F77FF41FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFF7FFF -FFFBFFFFFDFFFFFFFFFFFFFEDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC17FEFF61FDFFFC3FFEF7C0FFFFFFFFFFFFFEFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFB -B77FBFFBEFDFFFFFDFBFFDFFFFFFFFFBFFFF7FFFFFFFFFFFFFFFFFFF -FF81F77DFA1DFBFBC2EFFBFC1FFFFFFFFFFFFBFFFFFFFFFFFFFF7FFFFDFFFFFFFFFFFFFF7F -FFFFFFFFFFEFF7FFFFFFFFFFFFBEFFFEFDEFDFFFFFFFFFFFFFFFFFFF -FFC1FFFFFE1BFFFFC3DDFF7C1FDFFFDFFFFFFFFFFFFFFFFFFF7FFFF7FFFEFFFFFFFFFFFFFF -FFFEFDDFFFFFFFFFFFFEFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC1DFFFFA1FFFFFC1FFFFFC1BFFFFFFFFFFFFFFDFFFFFFFFFFFEFFFFFFFFFFFFFFFFFF7FF -FFDFFFFFFFFDFFBBFFFFFFFDFBFF7FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC1F7FFFC1DB7FFC1FFDFFC1FFFFFFFFFFFFFFFFDFFFBFEFFFFFFFFFFFFFEEFFBFFBFFFFF -F7FFFEFDFFFF7EFFDFDFFFDFEFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC1FF7FFC1EFBFFC3BFFBF80FFFFFFFDFFFFFFFFFBFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFF -FFDFDFFFFBFFFFFDFFFFFBFFFFFFFFBF7FFFFBFFFFFFFFFFFFFFFFFF -FF80DFFFF81FFFFF41FEFFFC1FFFBFFFFFDFFDFFFFFEFFFFFFFFFFFDFFFFBFFEFFDFFDFFEF -7FFFFFFEFEBFFFFFFBFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFF -FFC1FFFFFE1FFEEDC2EFFF7C1FFFFFFBFFFFFFFFFFFFFFFFFFBFFFFFFF7FFFFFFEFFFFFBFF -FFFEFFFFFFFFDFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC1FBFFEE177FFFC3F7BFFC0FFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFD -FBFFFFEFFFFFFFFFFFFF7FFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFF -FFC0FF7F7C17FFEF437FEFEC1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFF -FFFFFEFFFFF7EFFEFFFFFFFFFFFFDFFFFFFFFFBFFFFFFFFFFFFFFFFF -FFC1EFFFDE1FEFFFC2F7FFF41BFFFFFFFFFBFFFFFFFFFFBFFFFBFFFFFFDFF7FFFFFFFFFF5F -FFDFBFFFDFFFFEFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFF -FFC17FFBFE0D7FF7C3BDFEFC1F7FFFFFFFFFFFBFFFFFFFFFFFFFFBFBFFFFFFFFFFFFFFFFFF -BEFFFF7DFFFFFFFFBEFFBBFDFFDFFF7FFFEF7FFFFFFFFFFFFFFFFFFF -FFC1BDFFFE1FFF7FC3FFFFBC0FFFFFFFFFFFFFFDFFFFFBFFFFBFFEFFDFFDFFFFFFFFFFFFFF -FFFFF7FFFFFDFBFFFFFFFFFFFBFFF7FEFFFFFBFFFFFFFFFFFFFFFFFF -FFC1EFF7FC2FFFFFC0FDFBFC1FFBF7FFFFFFFFFFFEFFFFFBFFFFFFFFFFFFFBFBFFFEFEFFFD -FFFBFFFFFEFFFFFFFFFFFFDFDFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFF -FEC1BFFDFE1BEFBFC3EFDFF41FFFFFFFFFFFFFFFFFFBFFFFDFFFFFFFFFFFFFFFFFEFFFFFFF -EFEFFFEFFFFFFFF7FFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC1FFBFFE1F7DF7C2FFFFFC1FFFFFFEFBFFFFFFFFFFFFFFFFFFFFFFFBFFFFFF7FFFFF6BFF -FFFFFFFBDEFFFFFFFFBFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC1FFFFFC1DFFFF43B7FF7C17FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFDFFFBF -FFFFFDFFFFBDFFFFFFFF7FFFF7FFFFFFFFFBFEFEFFFFFFFFFFFFFFFF -FF81DFFFDE2FFFFFC3FF6BFC1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFDFB -EFFEFFFFFFFFFDFFFFFFFFFFFF7FFBFEFFBFFFFFFFFFFFFFFFFFFFFF -FFC0FFBF7E1FDAFBC2FFFFFC1FFFFFFFFF7EFFFFFFFFFFFFFFFFBFFBFFFFFFFFFFFFFFFFFF -FDFFFFFFFFFFFFFF7FEFFFFBFFFFFFBBFEFFFFFFFFFFFFFFFFFFFFFF -FFC1F5FFFE1FDFEFC36FBFFC1FFDFFFFFFFFBFFFFFF7FF77FFFFFFFFFBF7FFFFFFFF7FFFFF -FFFFEFDFBFBDFFFFFDFFFFFEFFBEFFFFDFFFDFFFFFFFFFFFFFFFFFFF -FFC1EFFBFE1FFBFFC3FBFEFC1FDFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFF7FFFE -FEFDFFFBFFFFBF6FDFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFF -FFC0FFFFF41DBF7F82FDDFF417FFFFFFFFFFFFFFFFFF7FFFF7BFFFFFFEFFFFFFFFFFFFEFBF -FFBFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC1BF7BFC1BFFEFC1FFBFF81FFFFDFFFFFFFFBBEFFFFFFDFFFFEFBFFFFDFBFFFFF7FFFEFF -FFFFF7FFFFBFF7FFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FF81FBDFFC1DFBBF835DFEF81FFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFF -FFFFFFFFF7FFFFFBFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFF -FFC1FFFFF41EFEFFC1FEEFF81FFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFDFFFFEFFF -7FFFFFFDFFFBFFFFFDF7FFDFEFFFFFFFFFBFFFFDFFFFFFFFFFFFFFFF -FFC1DFFFDE1FBFFDC3EFFFFC0BFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFBFFFFFFDFFBF -FBDDFBFFFFFFFFFFDFFFFDFFFFFF7DFFFFFEFF7FFFFFFFFFFFFFFFFF -FFC0FDB6FE17EEFF42BFFF581FFFDFFDFEFFFFFFFFFFBFFFFFFFFFFFFFFEFFFFFFFFFFFFF7 -FFFFFFDFFFFFBDFFFFFFFFFEFF7FFFFF7FFFFFFFFFFFFFFFFFFFFFFF -FFC297AB8002E34140B858F81FEFFFFFFFFFFFFFFFFFFFFF7FFFFFFEFFFFFFFFFFFFFFEBFF -FFFFFFFFFBFFFFFFFF7FFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFF -FF40000000000000000000001FFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFF7FBF -DFFFBFFFFFFFFFFDFFFFFFFFFFDFFFFFFDFEFFFFDFFFFFFFFFFFFFFF -FF80000000000000000000000FFFFFFFFFFFFFFFFF7FFFF7FFFFDFFFFFBFFFFF7FFEFFFFFF -FFFFFDFBFF7FFFFFFFFFFFFFFFFFBFDFFFBFFFFFFFFFFFFFFFFFFFFF -FFC0204000000008040214001FF7FFFFFFFFFFFFDFFFFFFFFBFBFDFFFFFFFFFFFFFFFFFFFB -FBBBFFFFFFFFFFFFFFFF7FFFEFFFFFFFFFFFFFBFFFFFFF7FFFFFFFFF -FFC0020140000940800020001FFFBFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFDFEFFFFF -FFFFEFFFBFFFDEFFEFF7FFBFFFFFFEFFFFFFDFFFFFFFFFFFFFFFFFFF -FFC0000020502000000008001BFFFFFFFFFFDFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFDFF -FFFFFFDDFFFFFFBFFFFFFFFFFFFBFFF7FFFFFFFBFFFFFFFFFDFFFFFF -FFC0080500040004000000401FFFFFFFFFF7FFFFFFFFFFFFF7FFFFFFFFFFEFFFFFFFFFFFFF -FFBFFBFFFEF7FFF7FBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC0400000004010080000001FFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFF7FF7FEFFFFFDFFF -7FFDFFFFFFFFFFFFFFFFEFEFFBFFFFFFFFEEFFFFFFFFFFFFFFFFFFFF -FF40002804000000040102001BFFFFFFFFFFFFFFFBFFFFFDFDFFFFF7FFFFFFFFFFFFF7FFBF -FFFFFFFFFFFDFFFDFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC20000000000A0400000001FFFFFFFFFFFEFBFFFDFFF7FFFFFFFFFBFFFFFFFFFFFFEFFFB -EFFEFF7FFFFFFFFFFFFFFFFEFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC0200010088000000000001EFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFDF -FFFFFFFF7DFFFFFFFFFFFFFFFEFFFFFEFFFFEF7FFFFFFFFFFFFFFFFF -FFC0800000000000002000001FFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFF7FFFFFFFFFFFFDFF -FDFFFFFFFFFFEFFFFFEFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF -FFE0040020400000000000023FFFBFFFFFFFFFF7FFFFFFFFFFFBFFFFFFFFFFFFFFEFDFFFFF -FFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFDFFFFFFFFFFFFFFFF -FFE0090000000000810004003FFDF7FFFEFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFBFEFFFE -FFFFDFFFFFBF7FFF7EFDFEFFFFFDFEFFFFFFFFFFFFFFFFFFFFFFFFFF -FF70000000002010081100005F7FFFFFDFFFFFFFFFFFFFFFF7FFFFFFFFFFFEFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFBFFFEFFFFFF7FFFFFFFFFFFFFFFFFFFFFF -FFF0080400000004000080007FFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFEFF77FF7DFBF -DDDFFEFFFFFFFF7FFFFFFFFFFFFFFFFFFFBFF7FFFFFFFFFFFFFFFFFF -FFF8400000800000000000007FFFFFFFFFFFFFFFFFF7FFFFFFFBDFFFFFFFFFFFFFFBFFFFF7 -FFFDEFF6FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF8000000000000000000007FFFFFFFFFFFFFFFFBFFFFFFFFFFFFFBEFBFFFFDFFFFFF7FFF -FFFFFFFFBFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFEC00000000000000000001FFFFFFFFFFF7FFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFF -FFDFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFE00000000000000000003FFFFFF7FFFFFFFFFFFFFFEFFFEFFFFFFFFFFFFFFFFFFEFFDFF -FFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFF -FFFF00000000000000000003FFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFEFFFF7FFEFFDFBF -EFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFB8040904020000000000FF7FFFFFFFFFFF7FFFFFFFFFFFFFFDFFFFFFFEFFFFDFFFBFFFB -FFFDDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC000000000000000001FFFDFBFF7FFFEFFFFFFFFFFEFFFFFFFFFFFFFFEFFFFFFFFFFFE -FBFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF000000000000000005FBFFFFFFFFFFFFFFFFBFFFFFFFFFDFFDFBFFFFFFFF7FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFC0000000000000003FFFFFFFFFF7FFFFFBFBFFFFFFFFF7FF7FFFDBFFFFFFF7FBF7FFF -FEDFEFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF6D777EF6B76B76DFDFFFFFFFFFEFFFFFFFFFFFFFDFFFFFFFFFFF7FF7BFFFDFFFBFF -FFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFBFFFFF7FFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFBFFBFFFFFFFFFFFFFFFFFEFF -FFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFEBDFFEFFFF7FFFFFDFBF -FFF7FBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFBFF7BFFFFFFFFFFBFFFFFFFFFFFFFFDFFFFFFFEFDFFFDFFFFFFFFDFEFFFFB -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFBFFFFFBFFFFFFFEFFFBFFFFFFFFEFFFFDFFFFFFFDFFFDFFFFFFFFFEFFFBDFFFFFFFFFF -FFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFEEFEFFFF7F77FFFBFFF7FFFF -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFDFFFFFFFFBFFFFFBFFBFFFF7FFFFFFFFFFDFF7DFFFFFFFFFFFFFFDFFFFFFFFF -EFFBFFB7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFEF7FFFFFEFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFDFFFFFFFFFFBFFFEFFF -FEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFEFFFFFFFFFDFFFFFFFFFFFFFFFFEFFFFF7FFFFFDFF7FFFFFDFFFFEDFFFF77 -FFFFFFFFBDFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFB7BFBFFFFFFFFBFFFFFFFFFFFFFFF7BFFFFFFFF7FFFFFFFFFBFFFFFFFFFFFEFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFEFFFFFFFFFFFFFFEFFFEFF7EFFBEFFDFFFFFF7FFFF -FFFEF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFBFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFDEFFFBEFFFFFFFFFFFFFFBFFFFFFFFF -FFBFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF7F7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFF7FFBFFFFFFFFFFBFFFFFF -F7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF7FFFFFFFFFFFFFFFFFFFF7FFEFFFFF7FFFBFF7FFFFFFFFFFFFFFFEEF7FFFFFF7FF7FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF7FFFFFDFFDFFFFFFFFFFFFFBFFDFFFDBFFFFF7FFFFFFFFFFFFBFFFFFFFF -FFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFF7FFFFFF7FFFFDFFFF7FFBFFFFFFBFFFFFFBFD -FFDFBDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFF7FFFDFFFFFFFFFFFFFFFFDFFFFFFFFFFFF -FFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEFFFFFFFFFFFFFFFFFFFFFFFFFBFDFFEFFFBFFFF -FFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFBFFFFFFFFFFFFBFFFFFFFFEFFFFFDFFFDFFFFEFFDFF7F7FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFEFFFFFFFFFFEF7FFFFFFFF7FFFFEFFFBEFFFFFFFFFFFFFFEFFFFF77FFFFFFFEFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFBFFFFEFFFFFFFFFBFFFFFFFFFFFFFFFEFFBFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF7FFFF7FF7DFDFFFFFFFFFFFFFFFFFFFBF7F7FFFFF7FEFDFFDFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFBFFFFFFFFFFFFF7FFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFB7FBFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFBFEFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFBFFEEFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFEFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFEFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFDFFFFFFFFF7FFFFFFFFFFFFFFFBFFFFFFFFFFBFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFDFFFFFFF7DFFFFFFFFFF7FF7FFFFEFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFBFFEEFFFFFFFFFFFFBFFF7FDFDFFDFFFFFFFFFFFFFEFFDFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF7FBFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFBFFFFFFFFFFF7FFFF7FFFFFFFFFFFFFFFFFFEFFFFFEFFFF6FFEFFFFFFFFFFFFF -FFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFEFFFFFFBFFFFFFFFFFFFFFF -FFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFF7FFFFEFFFFFFFFFFFFFFFBFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFF -FBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFEFFFFFFFFFFEFFFFFFFBDFFFEFFF7FFFFFFFFF7FFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FBDFFFFFFFFFFFFEFFFEFFFFFFFFFFFFFFFDFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFF -FFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFDFFFFFFFBFFFFFFFFFDFDFEFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF7FFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FDFFFFFFFFEFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF7FFFFFFFFFFFFFBFFFFFFFFBFFFFFFBF7FFFFFFFFFFFDFFFFFFFFFFFFFFFFF7FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF7BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFEFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFEFFFF7FEFFDFFFFFFFFFFFFFFFFEFFF7BFFFFFDFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF7EFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFDFFFFFFF7FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFDEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFEFFFFFFFFFBFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFBFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF7FFFFDFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFF7EFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFF7DFFFFFFF7F7FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFEFFDFDFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -end -restore -%%Trailer diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob43.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob43.gif deleted file mode 100755 index c033666db..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob43.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob44.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob44.eps deleted file mode 100755 index 3bd57af31..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob44.eps +++ /dev/null @@ -1,1655 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Title: MONKEY.EPS -%%Creator: DeskScan II - Hewlett-Packard Company -%%CreationDate: Fri Feb 16 6:23:23 1996 -%%BoundingBox: 0 0 124 196 -%%EndComments -%%EndProlog -save -15 dict begin -/xpoints 124 def -/ypoints 196 def -/xpixels 516 def -/ypixels 815 def -/rasterbytes 65 def -/bitspercomponent 1 def -/xunits xpixels xpoints div def -/yunits ypixels ypoints div def -/coords [xunits 0 0 yunits neg 0 ypixels] def -/picstr rasterbytes string def -/readimage { currentfile picstr readhexstring pop } def -xpixels ypixels bitspercomponent coords /readimage load -image -01008042806810241409157EDFDFFFFFFF8000904810241229040C04814290608000502812 -0886010289024160D12090C8B87FFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -3C0A040A0403048240A06527ADBEDDEDFF84024203418140A06824481410060A0401008301 -8020B4680801240C140D46270F1FFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -A028502004290C8B04A503C9D5F7F7FFFE804834810C054814038282C0A85020400850044A -060205034280402042D148489297FFFFFFFFFFFFFFFFFFFFFFFFFFF0 -088240200024824100042E7EFD7F7DFEFFCB81400502C100002200A050040A0202010A0501 -40A040A010944204220122268B47FFFFFFFFFFFFFFFFFFFFFFFFFFF0 -52513090021808100A152B95D6DBBFFFBFFF902A1088142D0681024102910090001C040220 -12050601421100C1285028182C1BFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -050482010A41609068442AD7BFFDFFDFDF6F010B00685080703840141A090241804100C0A1 -50B462388A0800072916A347615FFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -4830480409048904210293AEF6EFF7FFF7FB148A0482048402804210C8649820000E850832 -090289846150824090A0990A845FFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -8201004101402049052A08B55FB7BDEDFFFD02A1006492243210205A0340848A0502448000 -8040A05024080002060A44C240FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -A8542C0A840205028121D5AED7EFF77FFFFE0A450A0103C380D020028078282A010012A305 -4281615124506058181B172407FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -8110842001200824110451775BBDFFFFDF7E48140810080022128902410240000020582826 -0502080281429048D10090203EFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -0502858AC08050A150A06CBE9FAF5DEFFBFC23C081006120F45A34281C1A16000223028500 -C0605008349800070A214281FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -340A24080402049140A42DC2D6F7F7FAFFDC080C0201050A068A804120C8200041300C0500 -922D16C980C0009128C86817FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -008140804001020400051B5FFB6EDFFFFFFAA042012020285402108448014A0100450001A0 -4022081042300A010B242241FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -6AA4503808000806012481D36B7BFDFFBFF82C2A0580132502A180E1225120142004080424 -06098180E0D00050A850281CBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -00414280200020102012AB6EADDEFFBFFDF051200000080D0201000104008100001220504A -320422140810240121928542FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -0004081601408000014022AFA7F7EEFFDFF904054000480400080810A150A9040902800A12 -0180A0D0C80A0122882A950A3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -80502440A070300A000018B57EFD7FEFFFF140A100300004281000060402104200A0702044 -08502C06040204C14682C1A03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FC4916430480000A08A044BF1B9FEFBFFFE50204800090400040005094490402068104A260 -8060B0402000141C0A8B04A18FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -D832091A04180005028159ABD76BBFF77EF008190000210001008082602050000028480D00 -25000101410040205420122D5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -F80241205020002000040C7B7DBFEFFFFBE2A040218800102402040A482605008321420480 -0030140411241A0F0794C99447FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -F9291489048806004080416F77FBFDBBEFF0000C42008100100010E1309934910085040220 -0288020140B0209032402A172FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -F8814000A201000000020959BEDFEFFFFFF0260A04A8000014000685120502418810A010A0 -1820080100030A028290A152ABFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -E8141A040A248B4080408197EDF5BFDEFFFA5F0B2142008100806034483058100A0C020200 -0280000060541850B15A1A4E07FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -F0C1204022002048240206D1B37DFAFFFF7DFB0010281A0402000201068180402042220804 -0200001100418243104A00007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -F8100A250342A022200280BD6FF7FFFFBBF7FE258021088100902054A04028020F02040301 -08400050245054088D024307FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -F8902A2091501008100014D776DD7EF7FFFFFE10280C042200860D04912080002060402014 -01008000050240A2A0A04037FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FD08054300A854A21080142D9EAF57BDFFFEF6408010E13000582402040814030321408000 -A000201604080509150213FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -F800040A100A050342A001EED7E77BFDFFFFBE02008304808040A4911048167B08A844800A -000AA42100A0108C52A83FFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -EF8240A0842002201A00083EFD7E7FDFFBFFFE500050402A0C1A042250240FBF4231286020 -40200810568A28048A449FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FE1A4601528B618140C0016B5FDE9BFFBFBFFF0C1D8244A8C0A130A848251FFF0A0D0A0081 -40A0C2C150690A142A541FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FBFD20A022010A14281002D6ED78BF7EFDFFFF08540010051600028302808FFF2810210028 -0A0D048422052290A15207FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFC0A16034401408040A25BF7DA1FFFFFFFFE82F4B000A0409048282A148FFF0906014085 -2880481028108842290E07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFDC6051181688140D0284E6E9FCAFF7FFFBDF055C004A1306852190A1210BFF3248143414 -0516A350854411509071B3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFC240200C23012012A843D7FD53BFFDFFDFBD7F8000240B050244884240FFF0480008004 -224020102400040A170903FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFE1800942801084480D12B4DA8FD7FFF7FFFEFFE0689020102854241215BFF10221C2D02 -05020102C1A0C0A05024D3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFD0400D0A810085028162D6EBD0FBF7FFFFFFDBA168000AC04150A15074FBF92A150A502 -20202C220EA0520D83A551FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFE4061048006A1008069EEDFE5DFFBFFFFBEFFFC7F210030080424002857FF0D0B868100 -C10090003040249428492BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FBFF81E028141004122C0B3AF6BB97DFEFFBEFEFFFBB84008E0B148201074FFFA83F086008 -6C0C0A850A0429020144C8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFF0BC442840A61A8500256BBDE9EFF77FFFFFBDEFD4000500068B418110FEF8A3F8341B8 -40B9401848180A180912897FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFDD7FF4221402140C0685D1FDFA97DFFF7FFFFFDEEFC02102010241820027FFA1FFA41834 -123C034CA27E2840384801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFC302C0A160A172115E8E6DBFF7FFFFFEFFF73BE0212014483C0BDD9FFFE6FFC1C07E -28FD283C1C6E153A7DDA9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFBE48A149000830281A5EBF1F7FFFF7DDFFB7F3FA02003056952A7EEFFFFFFFFD249FF -017E213A417ED1E97FFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFE2A048240A142144B777BD5EDDDFFFFFFFFD6DD9702C14168D47FFFFFFFFFFE023FF -83EF843F01FF1408FFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFAA1020162242A143ABDBE1DBFFFFFFFFFFBF1FAD103F12A4C253FFFFFFFFFFEA0BFB -E5FFE4FFC3F760B1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFE0C028180C1214113D3FF55BFFEFFFFEFFEFFBE7646F094123A7FFFFFFFFFFF82FFF -FFFEF1FFFFFE4323FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFF100A100A14054283756DBCEEEFFDFFFFBFEFDBD3A7E0810A895FFFFFFFFFFFBBFFF -FFFFFFFFFFFF1C16FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFF02204401122150B30F9717FBFFDFFDFFFFF3FF6D73E23022143FFFFFFFFFFFE7FFF -FFFFFFFFFFFF8353FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFEFFF9A2440000184411169F7F9FEFFFFBFFBFF7BAFAB97E904A1415FFFFFFFFFFFFFFFE -FFFFFFFFFFFF8D07F7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFF7FFEA100012040001D3FDDAAFFFDFFFFFFF7EAF5E2DF641A7902BFFBFFFFFFFFFFFFF -FFFFFFFFFFFFE057FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFEFFE05020291028149EAE75AFF7FFFFDFFFEFFBFC7E3E4C1FC58BFFFFFFFFFFFFFFFF -FFFFFFFFFFFFD61FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFF8500100880040003ABDAABFFF7FFFFFFFFBFEF2DFE10B7F083FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -DFFFFFFFC16452081420142F5EF7BAFDFFEFFFF7F6DFB77A7F0C1FFE83FFFFFFFFFFFFFFFF -FFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFEFC40904810080008ADFD5CF77BF7FF77EFFDBAD4FBF48FF7B37BFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFD8341C04504110ABD3F3FDFFFFFDFFFFFE9EEF26BF037FFDDFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFBC00542200804047E7F6F57FFFFFFFFFEFBFBDB7B77E1FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFEDFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFEA04040028060083F579BDBDFFFEFFEFFF9FDDAF7F63FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE17C007FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FDFFFFFFDE10C8002002815CBD7B8FEFFFFFF7FFBDFEFE7D7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFCFBD0321FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFE06414001420097B7DBFFFBBBFFFFFFFFAFF72F9FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFE7A9C27213FFFFFFFFFFFFFFFFFFFFFFEFFFFF0 -FFFFFEFFFE08341A0408444AFDBD3DBFFFFFFFFDFEEBFD5AFFFFEFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFBF5F04D10E2FFFFFFFFFFFFFFFFDFAFDBFFFFF0 -FFFFFFFFFD40810200C0512B4EE3CFFDFF7FFFFFDEFEF76E1FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFB9DC0E407FFB65FBFFFFFFBF5EBF5FAFDFFFFF0 -FFFFFFFFF02A10280222049DB3B5FAFFFFFFFF7FFF9FEF5BBFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFEEFE8E24CB75EB7BEDDAF97AFF5FDFEB5FFFFFF0 -FFFFFFFFF88880A1203120AB5FB74FFFDFDBEFFFFFDF7E7ABFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFBBEF0C0D7DDFFFDEFEF7AFDF6DF56DBFFFFFFFF0 -FFFFFFFFFE0B0E0742850ACBDBE3DF76FBFFFFFF7E97AB8FBFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFE6EFC283FDFB7AF77B7DBEDF2FB7EFF7FBFFFFFF0 -FFFFFFFFF23012A11844130CDEBEDDFFFFFFFFFFFFFDFEEFBFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFB7FDC61EBFDFEFBFAF77DF7BFBFFFEFDDEBFFFFF0 -FFFFFFFFF9054B42A69288C375D3EFFFFFFF7FBFFBEF7FB7FFEFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFABD78E37EFFFFFFEFDDFD7FFFF7BD7DFFFFFFFFF0 -FFFFFFF7F8912028145A452ABD775FBBFFFFDFDFAF6F5EBC7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF9BEDF847FFFEFBFEEFFFDFFDDF7FF7EFFF7FFFFFF0 -FFFFFFFFFEC089409140A165EBD3AFFFBFFFFFFFFFEDF6AF3FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF7FFF728DEF7FFFDFFFFEFFFFFFDEFFFF77FFFFFFF0 -FFFFFFFFFFF8142A0D0A113DBAF5FDDFFDFFFFFFFF8FF739FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFDBEFC71FFFDFFFFF7DD7F6FF7FFFFFFFFFFFFFFFF0 -FFFFFFFFFFF81089508060AECFA7AFFFFFEFFBF7FF77BD7E7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFBBFFBE63FFFFBFBFBFFFFFFDFEEFFDFFFFFFDFFFFF0 -F7FFFFFFFFF84A0640202AADEEF5EAFDFFFFFFFFDFCDEF51FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFDCFD7FA65EFFFFBF6FF7FFFFFBFFFFFFFFFF7FFFFFF0 -FFEFFFFFFFD8108120B010165EC75FBFFFFFFFFEFBBFB57EFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFD7FFBFCCFFFFFFFFFFBFFEFFFFFFFFFFDFFFFFFFFFF0 -FDFFFFFFFFFD068320902887F7E3DFDF7EFEFFFFFFEDFF9DFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFDDFFFC8FFFFFFFFF7FFBFFDFFFFDFFFFFFFFFFFFFF0 -FFBFFFFFFFF962140C130A12EEF7DBFFF7FFFFFFFFFEBDBF7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFEDF7DFB83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -5EBFFFFFEFFE80028643A17ABB6ACFFDFFFFFEFF7FEF7D977FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFEEBFFFF33FF7FFFFFFFF7FFFF7F7FFFDFFFFFFFFFFFF0 -A2FFFFFFFFF8344A0F018431EDDFF5DFFFFF7FDFFDE7DEADFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFEFFEFBF3BBFFFFFFFFFFFFF7FFFEFFFFFFFFFFFFFFFF0 -AB7FFFFFFFFAA1C28F4794F77D7DAFFFFFFFFFFFAFBFFF367FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF7FBFFFF23FFFFFFEFFFFFFFFFCFFFFFFFFFFFFFFFFFF0 -4D3FFFFFFFFC116A1FEEC1E5BBD6FEDEFFFFFFFFFFCB6D7B7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFEAFEFFFE27FFFFFFFFFFFFFFFF75FFFFFFFFFFFFFFFFF0 -A5FF7FFFFFFE07E35FDFCDF72FC7CFDFEEFFFFFBFEEFF5387FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFBF5FFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFF0 -74FFFFFFFFFF0FF11FFFE3F5F6E3EBFFBFFFDFFFFFDDBF57FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFBBFFEFDEC7FFFFFFFEFFFFFFFBFFFFFFFFFDFFFFFFFFF0 -55FFFFFFFFFF77FC6FFFFFF737ADCDDFFFEFFFFFF7F7FD7CFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE9FFEFFF6CFFFFFFFFFFFFEFFFFFBFFBFFFFFFFFFFFFFF0 -1BFFFFFFFFFDBFFC7FFEFFFBDDE6FFF7FFFFF7FFDEEEB7177FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFDEFFFFFFCCFFF7FFFFFFEFFFF6FFFFFFFFFFFFFFFFFFFF0 -53FFFFFFFFFFFFFF7FFFFFFADDE7B6FDFFFFFFFDFFB7FF9DFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFDFFFFFCDFFFFFF7FFFFFFFFFFFEDFFBFFFFBFFFFFFFF0 -0FFFFFFFFFFFFF7FFFDFFFFB77EFDFFFFDFBFFFFFBEB7B9FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFEDFFB7FFF99FFFFEFF2FFFFFDFFFFFBFFFFBFFFFFBFFFFF0 -AFFFFFFFFFFFFFFFFFFFFFE3FCDAF7FFFFFFFDFFDEEBDEADFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFEEEFFFFFF81FBFFFFFBDFFFFFFDFFEFFFEFFFFFE3FFFFFF0 -06DFFEFFFFFFFFFFFFFFFBFABF6FAFBDFFFFFFEFFFFBF73EFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFBFBFFFFFFC1FFFDFFBFFFFFFFFEFFFF7FFFFFDF5AFFFFFF0 -087FFFFFFFFFFFFFFFFFFFFDABF5BDFFFFFFFF7FFFAEF78BFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFBEFFFFFF11FEFFF8FFFBFFFFFE7FFFBBF7FD6BBFFFFFFF0 -057FFFFFFFFFFFFFFFFFFFF77B77EFAFBFFEFFFFBFD3F972FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF5FFBFFFFF9BBFBEDFBFFFFFFFFFFBB7FEFAE8FEFFFFFFFF0 -167FFFFFFFFFFFDFFFFFFFFFDBC3ADFFFFFFFFFFDDFFBF9BFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFDD7FFFFF7F9BFFFFCDFF7FFFFFDADFFFEF5EAFDFDFFFFFFF0 -457FFFFFFFFFFFFFDFFFFFF97FBDEFFDDFBFFFF7FFE76DF4FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFBFF7FFFFFF33FFDA3EF7FEEFEBFFE1F1ABEDBBFDFD5FFFFF0 -0DFFFFFFFFFFFFFFFFFFFFEEDDA7CF7FFBFFF7FFFEFB7E9CFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFBFFFF7FFF21FFEBD7CFBFFEFFFFFEEDFBAFFF7FDFFFFFFF0 -32FFFFFFFFFFFFFFFFFFFFFA7EEF77DFFFFFFFFFF7F5EF95FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFDF7FBFFFFD33FDBEF53BFF7BFFBDFBBEDDFFEFEDFAFFFFFF0 -09FFFFFFFFFFFFFFFFFFFFF6AF4DBFEFFFFFFFFBFFF57EBDFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFCFBF7FFFFFF135D5BBD83EDFBBDEF6FFEFEED7BBF4AAFFFFF0 -69FFFFFFFFFFFFFFFFFFFFFFF3EFEDFBFFFBFEFF7DFBDB0FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF5FFFFFFFDF03E9F77570BAFEFFFFDAB7DEBF5EE343FFFFFF0 -A2FFFFFFFFFFFFFFFFFFFFFCDF7DAFDF7FBF7FFFFFF9DD3BFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFEBFFFFFFFFFE27E8DDDFF7AF57DDDB7FFFF7FAF43F5DBFFFFF0 -056FFFFFFFFFFFFFFFFFFFFD6BD7EFFFFFFFFFFFBEF7FFAFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFEFDFFFFFFDFFE3CEB5F9FD5BF177BEEF5EAB069B5BF6EFFFFF0 -44BFFFFDFFFFFFFFFFFFFFFD5AF5BBFFEFFFFFFFFFBBEB6BFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFBBFFFFFFFFDE622EAF5EB56F8F09F7FD96C1D2E97A955FFFFF0 -152FFFFFFFFFFFFFFFFFFFFFDFAF6EFFFFFFEFFFFFF6FF5AFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF7DF7FFFFEFFE235BA5A1DD7D77C2D96A490F61AF4EAD0FFFFF0 -50E7FFFFFFFFFFFFFFFFFFF9DDCFFFEF7FFFFFDFBDBFEBA7FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFDEFFFFFEFFDA72ECEFBEF55EAB5EAF49B541A4CBB2D7FFFFFF0 -0E87FFFFFFFFFFFFFFFFFFFE6F078FBDFEFFFBFDFBF55EB9FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF7FFFFFFFE3E50BFFFFFFFA7B1B763F0D9FBDBEDFF5ADFFFFF0 -2A48FFFFFFFFFFFFFFFFFFFEFDEBEBFFFFFFFFFFDFFBFF8DFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFDBFFBFF7FFF8326BBFFFFFFFFC8B52E5EFFF6DF77A5EAFFFFFF0 -8157BFFFFFFFFFFFFFFDFFFE9F2FDFEFDFFFFFFFFFB9DABDFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFB7FFFFFFAF4D806FFFFFFFFFFCFFFBBFFDFD8E4F85A3A2FFFFF0 -295A3FFFFFFFFFFFFFFFFFFD77DB67FFFFFFFFFFFFBDFEAFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFEDFF7FFFFF77630BFFFFFFFFFFDDBFFFF7FFCF178341895FFFFF0 -8068FFFFFFFFFFFFFFFFFFFDDB77EDFFFFEFFFDFFDEAF739FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFF7B7FFFFFFDBF867FFFFFFFFFF89FFFFFFFFC248AD1A0E4FFFFF0 -171DFFFFFFFFFFFFFFFFFFF7CDD7EFEFFFFFFFFFBFFBDDABFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFBDFFFFFFFFAFDE27FFFFFFFFFFC1FFFFFFFF8542A188E57FFFFF0 -40A3FFFFFFFFFFFFF7FFFBFDEAF9EEFDDFFF7FFFEFBEF773FFFFFFFFFFFFFDFFFFFFFFFFFF -FFFBF7FFFFFB7E3776FFFFFFFFFFFC1FFFFFFFF1A428D0A932FFFFF0 -5687BFFFFFFFFBFFFFFFFFFF5F8EABFFFFF7F7FFFFF8FF3FFFFFFFFFFF1FF5FFFFFFFFFFFF -FFFABFFFFFFFF3D7F67FFFFFFFFFFC1FFFFFFFF856A340A609FFFFF0 -102FFFFFFFFFFFFFFFFFFFFEFAEFFEFDFBFFFFF7FFDFAF93FFFFFFFFFEBFF8FFFFFFFFFFFF -FFF1FFFFFFEFF93FF67FFFFFFFFFFCDFFFFFFFE1AAB0D0517AFFFFF0 -44BFFFFFFFFFFFFFFFFFFFFE6FAFCFDFFFFFFFFFFAFCFABDFFFFFFFFFC87E9FFFFFFFFFFFF -FFFEFDFFDF7FA7DFF77FFFFFFFFFFD5FFFFFFFE502C522C1A3FFFFF0 -28FFFFFFFFFFFFFFFFFFFFFEDDE6F7EFFFFFFFFFFFFF7797FFFFFFFFFD53FCFFFFFFFFFFFF -FFE7FFFFFFFBEDFFD2FFFFFFFFFFFDDFFFFFFFF568D8611E19FFFFF0 -A27FFFFFFFFFFFFFFFFFFFFEFD1EDFFF7FFFFFFFFFED7A99FFFFFFFFFD6BC4FFFFFFFFFFFF -FFFDBFFFFFDFA7FFFA7FFFFFFFFFFC5FFFFFFFC7834B25C3E5FFFFF0 -253FFFFFFFFFFFFFFFFFFFFD4FCFE7FFFFFFEFEFBFF7FF3FFFFFFFFFFAA84D3FFFFFFFFFFF -FF9FDFDFFFFB6FFFF6FFFFFFFFFFFDDFFFFFFFC2312E130896FFFFF0 -413FFFFFFFFFFFFFFFFFFFFDE9F6EF7FFBFFFFFFEEDF75ABFFFFFFFFFCA442BFFFFFFFFFFF -FFADFFFFFFFFBFFFEEFFFFFFFFFFFCDFFFFFFFC2E0C9806970FFFFF0 -951FFFFFFFFFFFFFFFFFFFFF6F57EDEFFFFFFFFFFDFAFD79FFFFFFFFFE1A1E7FBFFFFFFFFF -FFBFFFFFFDBB7FFFF67FFFFFFFFFFCDFFFFFFFB8042F47865FFFFFF0 -34BFFFFFFFFFFFFFFFFFFFFFE3F576FEFFDFFFFFFFDFCF53FFFFFFFFF8D4683F7FFFFFFFFF -FFDFFFFFFFFDFFFFFBFFFFFFFFFFFE1FFFFFFFA840A912621CFFFFF0 -43BFFFFFFFFFFFFFFFFFFFFF0F4FAFF7FFFDFBFDFFFE7D7FFFFFFFFFFD060B1CAFFFFFFFFF -FD7F7FFFFECFBFFFE6FFFFFFFFFFFC9FFFFFFFFFA28501B126FFFFF0 -089FFFFFFFFFFFFFFFFFFFFCF5BBF7FFFFFFFFFFFEDDEF9BFFFFFFFFFC60A85C3FFFFFFFFF -FFF7FFFF7FF7FFFFF67FFFFFFFFFFC9FFFFFFFEFE0D068182BFFFFF0 -02FFFFFFFFFFFFFFFFFFFFFE376FDF7FF7FFFFEFFFF77B75FFFFFFFFFD42A1F2E7FFFFFFFF -FBFBFFFFDBCFFFFFF2FFFFFFFFFFFDFFFFFFFFFFC36582B0E3FFFFF0 -3FFFFFFFFFFFFFFFFFFFFFFED77BE7EF7FFFFFFDFFFF7EBFFFFFFFFFF41A8C021FFFFFFFFF -FADFFFFFFEFFFFFFF0FFFFFFFFFFFDDFFFFFFFFF9934828012FFFFF0 -BFFFFFFFFFFFFFFFFFFFFFFEE55F7BFBFFFFFFFFB7EB5FCDFFFFFFFCDD68942153FFFFFFFF -FBFFFFFDFE7FFFFFF27FFFFFFFFFFCDFFFFFFFFFA59AA500D5FFFFF0 -3FFFFFFFFFFFFFFFFFFFFFFE075DEEFFFFFFFFFFFEBE776BFFFFFFFE142E0B07C7FFFFFFFF -FDFFFFFFFF7FFFFFF4FFFFFFFFFFFCDFFFFFFFFF950E850095FFFFF0 -5FFFFFFFFFFFFFFFFFFFFFFFEBDFFFFFFFFFEFFFFFFBF4F5FFFFFFF9408048816BFFFFFFFF -DFBFFFFFEBFFFFFFEEFFFFFFFFFFFC1FFFFFFFFE6860502852FFFFF0 -BFFFFFFFFFFFFFFFFFFFFFFF6F5DAB7FF7FDFFFFFFDAF577FFFFFFFC52250384A3FFE3FFFF -7FFF7FFFFFFFFFFFF67FFFFFFFFFFC1FFFFFFFFE0B870084C9FFFFF0 -7FFFFFFFFFFFFFFFFFFFFFFFC3E6FBDEFFFFFFFFBEBEBF2BFFFFFFF9582D584CB5FDF7FFFF -F7FFFFEDE7FFFFFFE67FFFFFFFFFF8DFFFFFFFFE2C2958307EFFFFF0 -7FFFFFFFFFFFFFFFFFFFFFFE5DBFEBFFFF7FFFFDFFFF6CF7FFFFFFFE48A64850A142C8FE7E -BFFFFF7FBFFFFFFFF7FFFFFFFFFFFCDFFFFFFFFD8BE582C123FFFFF0 -7FFFFFFFFFFFFFFFFFFFFFFED6DFF37FFFFFFFFFF6BB375BFFFFFFF8B1542D4E940187F9FF -EEFFFFD6EFFFFFFFE67FFFFFFFFFFD5FFFFFFFFC68382C140F7FFFF0 -7FFFFFFFFFFFFFFFFFFFFFFEDDFEF5EEFFFFFFFFFFBF7A75FFFFFFFEC161E070D478187436 -FFFFFF5E7FFFFFFFF07FFFFFFFFFFCDFFFFFFFFBA9E0E810E9FFFFF0 -7FFFFFFFFFFFFFF8AD5FFFFC5F5BEDFFFFFFFFDFFFFB3EBFFFFFFFFC0D12250E25A050A217 -BFFFFB7FFFFFFFFFF2FFFFFFFFFFFC5FFFFFFFF4A214060825FFFFF0 -FFFFFFFFFFFFFBDEEF67FFFCD96EBC7FEFFBFFFFDF2DDEE5FFFFFFFEF4C0D0613098360E8F -FFF7DBECFFFFFFFFF47FFFFFFFFFFE1FFFFFFFF361D0642170FFFFF0 -FFFFFFFFFFFFFAEDBAF92FFFBFDFEF6FFFFF77FFFBBB747BFFFFFFFC472C36858A6008013D -DFBD2FFDFFFFFFFFF67FFFFFFFFFFC5FFFFFFFF09D0A011040FFFFF0 -FFFFFFFFFFFF5FA7FB7DADF94BB5F53BF7FFFFF7FF3F376BFFFFFFFC70B10A312C944F14AF -FBBFB7E7FFFFFFFFD7FFFFFFFFFFFDDFFFFFFFEA5408100416FFFFF0 -FFFFFFFFFFE9D6FDFAED7E7D2EDFFFFFFFFFFFFEFFDFF9FBFFFFFFFB0A850194E2E02260FB -7CFFFEBFFFFFFFFFE67FFFFFFFFFFCDFFFFFFFEB4D4542A509FFFFF0 -FFFFFFFEFC6EFBB75FAEDBADD3AEB9BDFEFFFFFFFD771F5DFFFFFFFC1A040014964CA381BF -FFBFFFE7FFFFFFFFE67FFFFFFFFFFCDFFFFFFFE8541C0A350DFFFFF0 -DFEFBF0FA7DFFFFFF7F3FDBC36BBF6FFFFFFFFFFDEFF2BEAFFFFFF94295021B2B93A9C26FB -F7FFFFFFFFFFFFFFF7FFFFFFFFFFFDFFFFFFFFE5C1FD4E54B6FFFFF0 -E3D5EDDEBAFEBD577B7BBDD8D78FFFFDFFFFFFFDFE7B3EDFFFFFFC50955C2C1A860EC1AF7F -E7FBF6DFFFFFFFFFE7FFFFFFFFFFFC1FFFFFFFFE0BFC0E1787FFFFF0 -79F576F7BF4FF7FFBFCFD5F2BDFBF4FFFFFFFFFFFFDFBBC7FFFFF940694090481042140BBF -EFFFFFFFFFFFFFFFF67FFFFFFFFFFE9FFFFFFFE127FC7E3A6FFFFFF0 -8ED7FB77D7F5FDDDBF7FBD5E349EF77EFEFFFFFFFB7DDAFBFFFFFD0F002C002B45A2F07DFD -BFFFDE7FFFFFFFFFF2FFFFFFFFFFFC9FFFFFFFF4FFFEFF0B55FFFFF0 -EBFD5EBD7FDF5FEFFDFBE7F3F1FF7DDFFFFBBFFFFEEFD7EDFFFFE0E1E4B8741D5AAB0A9FFF -FFFEF7FFFFFFFFFFECFFFFFFFFFFFDDFFFFFFFFB7FFFFC68AAFFFFF0 -7EAFD7FFDBFFFDEDEFFDBFBA8DB7BBFFDFFFFFFFFFFBDCFDFFFFFB2EC6A41281B0F132F7FF -3FFFFFFFFFFFFFFFE67FFFFFFFFFFCDFFFFFFFF7FFFFFDA0D1FFFFF0 -DDFFFDEFFEFF77FFF7FF7ED7EAEDF9FFFFFFFFFBBFFFD3BFFFFFFCA9311812050E1B0ADEFD -FFDFDBFFFFFFFFFFE2FFFFFFFFFFFCDFFFFFFFFFFFFFFE2F22FFFFF0 -FFB6FFFDFBBBFFEEFEADFAFDEB9FEFBFFF7FEEFFFFBB75F8FFFFFEA6AA914940E8B48BF7FE -FDFEFFFFFFFFFFFFEEFFFFFFFFFFFDDFFFFFFFFFFFFFFEA1A1FFFFF0 -DF7FAFBFFFFFFD7FBFFF7F9F4AB7F3F7FFFFFFFFFEFEDFFEFFFFFC75190CA54483492EFFBF -FFFFDFFFFFFFFFFFF6FFFFFFFFFFFCDFFFFFFFFFFFFFFE960AFFFFF0 -F5FFFFEFBDFFBFFFF7EFDDFF75BFF1FBFFFFFFFBDFDFCB46FFFFFF46A94071502C2816FFFB -FFDB77FFFFFFFFFFF67FFFFFFFFFFC9FFFFFFFFFFFFFFA5D03FFFFF0 -EFD5FBFFFFF7FFFA9F7FFF7BDE8B73FEFFFFFFFFFEFFFFFBFFFFFF9A0C022D068580FBFFFF -FFFFBFFFFFFFFFFFEFFFFFFFFFFFFDBFFFFFFFFFFFFFFE4A83FFFFF0 -FFFDFEFDDF7FFEEF8FFFD7DAF5FFF6FFFFFFFFFFFFEFBBC7FFFFFFC2E020342A0E2E7FBBF7 -FFF7BFFFFFFFFFFFF6FFFFFFFFFFFEDFFFFFFFFFFFFFFE2AFAFFFFF0 -BFDF7FFFFFFBEFF2FFFBFFFF7F1FAFFFFFFFFFFFFFFFFEFDFFFFFFE0816215CAD2E3DBFFF7 -FFFFBFFFFFFFFFFFF67FFFFFFFFFFDDFFFFFFFFFFFFFFF42E5FFFFF0 -FDFFFBFFFBFFFEEFEBBDFDD7E8FBFBFEEEFFFFFFBFFDD76DFFFFFFD8612844395A0ABFDFEF -FFFDFFFFFFFFFFFFE0FFFFFFFFFFFDFFFFFFFFFFFFFFFE2BF6FFFFF0 -FFFFFFBFFFFFFFF7FBFFFBFDFBDEFF77FFFEFFFFFFF7F7FA7FFFFFB002A1E2D4A89F6FFFEF -FDFFFFFFFFFFFFFFE0FFFFFFFFFFFC5FFFFFFFFFFFFFFFAFF0FFFFF0 -DFBEFFF7FF7EFFBFFBFF5FEFCFC7FBFFFFFFFFFDFF7EFDDEFFFFF210122C0A04A05DFEFFFF -BF77FFFFFFFFFFFFE67FFFFFFFFFF55FFFFFFFFFFFFFF7BFFDFFFFF0 -FFFFFDFFFFFFFFFF7EFFFFFDFBFDDF7FFFDFFBFFDFDFF7EBFFFFF085209158B060BFEFEFDF -FFF9FFFFFFFFFFFFE7FFFFFFFFFFFCBFFFFFFFFFFFFFFFFFFAFFFFF0 -FFFFFFFF7FFFFFBFEEFFFFFF7D27FFFFBFFFFEFFFFFFFF7CFFFFEE1528154A9720DDFFFFFF -FFFFFFFFFFFFFFFFEEFFFFFFFFFFFD1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFEFFFFFFFFFFFEFFBFBF77FDFA17FFFFFFFFFFFFEF77FD7FFFFF152A058AC5A1FEEFFFFFF -BFF7FFFFFFFFFFFFF6FFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -EFFFFFFFFFFFFFEFFF3FFFFF7FAF9BBBFFFFFFEFDFFDEEFDFFFFFD0A2402254287EFBFFE7F -F77FFFFFFFFFFFFFEFFFFFFFFFFFFD7FFFFFFFFFFFFFFFFFFFFFFFF0 -FBFEFFFFFFFFFFFFFF7FFDFFEFE9E7FFFFFFFFFFFEFFFB977FFFF85A1C1A4F181D7BEFFE7F -EF9FFFFFFFFFFFFFE67FFFFFFFFFFDDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFBFFFEFFEFFB76FFFFFFFFFFFFEFFEDEFDFFFFFF0AC423B260B7FFFFFFFB -FBDFFFFFFFFFFFFFE2FFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFF7BEFD6FFDFEFFFFFFDBFDFB7FFFFFFFFFFFFAF7FFFFA4934894A857FBFFDFEFF -FFBFFFFFFFFFFFFFE0FFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFAFFFA7FFFFFFFDFBFCFF7FFFFFFFFFFFEFF7EAFFFFFFA1B0804A157EFFFFFFFF -77FFFFFFFFFFFFFFE6FFFFFFFFFFFD1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFDF5FDFB7FFBFFFFBFFFD6AFDFFFFFFFFFFF7BDDFE7FFFFF890A850AA5F3FDFFFDFE -FCFFFFFFFFFFFFFFE6FFFFFFFFFFFC5FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFBFEFFFF7FFFFFFDFFAF97BFFFFFFFFDFBFFFEDDBFFFFFFC92A51603FBFFFFFFFBF -F5FFFFFFFFFFFFFFEFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFDDFDEFBD5FB7FDFFFFFBFFF9FFBFFFFFFFFEFFEF7FAFFFFFFE52582A1EFFEFFFFF7FF -FDFFFFFFFFFFFFFFF6FFFFFFFFFFFCBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFEFFFEFFFF9EEFFFFFFFBFDFFFDFDFFFFFFF7FBFDFFFFFFFF0B86A916FBFFFFFFFEF -B7FFFFFFFFFFFFFFF6FFFFFFFFFFFEDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFBBDFD5EBFAFFFFE7EFFFFDFFFBD7BFFFFFFFF7DBFBFAEDFFFFFF8083A287BADFFFFFEBFF -EFFFFFFFFFFFFFFFFE7FFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFEDFFFFF3FFFFFFFFFFFFFFDD7FFFFFBFFFFFFBFFFBF7FFFFA020C1A3DFFFFFFFFFF77 -7FFFFFFFFFFFFFFFEBFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFEBD7FFF3FFFFFF7FFFFFFDFFDFBFFFFDFFFDFFFDFFB7FFFF92891A82EDFFFFFFFEFFF -EFFFFFFFFFFFFFFFE2FFFFFFFFFFFC9FFFFFFFFFFFFFFFFFFFFFFFF0 -BFFFF3FFFFBF7FFFFEDFFFFFEFFEAFDFF7FFFFFFFFFDFDBB7FFFF12A4CA1EBFDFEFFFFDFFB -5FFFFFFFFFFFFFFFA4FFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFBF7FFFBFF5DF77FB7FFFFFFFFFBFFFFFFFFFFDFBFF7EFFFFFF0B160015FFFFFFFFFDFEF -DFFFFFFFFFFFFFFFEEFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF0 -FBFF97EBDDEFFFBFEFFFFFFFFFFFAFFFFFFFFFFFEDEEECFC7FFFFC950B87FBBFFFFFEFDFFB -FFFFFFFFFFFFFFFFE6FFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFDDBFFFFBFFFFFFEFFFFFFFFF79FDFFFFFFFEFFFFFFDFBFFFFE72383A7FEFFFFFFFBDFF -FFFFFFFFFFFFFFFFF27FFFFFFFFFFC9FFFFFFFFFFFFFFFFFFFFFFFF0 -BF7EFFDDFF7FAFFFFFFBBF7FFFEFDFFFFFFFFFEFFFF77DF7FFFFFF41012FBBFFFFFFFFEFEC -FFFFFFFFFFFFFFFFA7FFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFDFFDDFAFF7FFFFFFFFFFFFFCFBF7FFFFFFFFFBFEF7DBFFFFF9A3177FFFF7FFFFEFF7F -FFFFFFFFFFFFFFFFF7FFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFF0 -FBFFFFFEAF5FEFDFFFFFFFFFFFFFFDFFF7FFFFFFFFFDFFD5FFFFFFD0D137BEFFFFFFFFFFFD -FFFFFFFFFFFFFFFFFCFFFFFFFFFFFE9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFEDEFD7FFF7FBFDFF7FFFFFFFFF9FFFFFFDFFFFFBFFBABF7FFFFFFA02FFFBFFFFFFFCB7F7 -FFFFFFFFFFFFFFFFEEFFFFFFFFFFFDDFFFFFFFFFFFFFFFFFFFFFFFF0 -DFBF7EFF5BFFFFFFBFFFFFFFFFFFDF7FFFFFDFFF7FFDFFEEFFFFFFFD42FBFFFFFFFFF7FF77 -FFFFFFFFFFFFFFFFCEFFFFFFFFFFF9DFFFFFFFFFFFFFFFFFFFFFFFF0 -FFEFD7FDFEF6FBFFFBFFFFFFFFFDBFDFFFFFFFFFDEFBDDBE7FFFFFFF1FAFBFF7FFFDFDF6FF -FFFFFFFFFFFFFFFFE6FFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFF7DBBDEBF5FBFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFDFBBFFFFFFFDF7DFFFFFFFFFFFF4F -FFFFFFFFFFFFFFFFE6FFFFFFFFFFFC5FFFFFFFFFFFFFFFFFFFFFFFF0 -EDFFDFCF45BBEFF7FFFDFFDFFFFF7FFDFFFFFFDFFFFEF7EAFFFFFFFE7FEFFFFFFFFFB3DFFF -FFFFFFFFFFFFFFFFE4FFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFF7EDF2F57A7FBF7FBFDFFFFFFF7FFFFFFFFFFFFF7FBF7EBFFFFF73E77FFFFFFFFFFDFF3F -FFFFFFFFFFFFFFFFF6FFFFFFFFFFFC9FFFFFFFFFFFFFFFFFFFFFFFF0 -FEFABF1BFB4FF7F7DFF6FFFFDFFFFEFF7DFFDFFFFFFFEFD7BFFFFF82FDFEFFFFFFFFDF6F7F -FFFFFFFFFFFFFFFFF6FFFFFFFFFFFC9FFFFFFFFFFFFFFFFFFFFFFFF0 -EF77F5DF7FD27D7BFFFEFFFFFFFFFFFFFFBFF7FDFBDFFEFBBFFFFC0BAFEFEFFFFBBBADFA7F -FFFFFFFFFFFFFFFFE6FFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF0 -FBDCEE77FFFD97DF7DFFFFFFFFFDFFFFFFFFFFFFFFFF7BD7FFFFE156F7FFFFFFFFFFDFEFFF -FFFFFFFFFFFFFFFFFCFFFFFFFFFFFE9FFFFFFFFFFFFFFFFFFFFFFFF0 -DFF7B2FFFFEFFAFDEFFFBFFFFFFFFEFFFFFFFFFFFFFBFEFD7FFFFC1FBFFFFFFFFFFDEEF9FF -FFFFFFFFFFFFFFFFEEFFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -F77DD3FFFFFFCFFFFF7F5FFFFFF7FFFFFFFFFFFF7DEFBFAFDFFFFAF7DFFFFFFFFFBEFFF7FF -FFFFFFFFFFFFFFFFEEFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF0 -7B9ECFFFFFFBE2F4FBFF7FFFFFFEFF7FFFFFFFFFFFFBF5FE7FFFFABBFDBFFFFFFFF3EEF3FF -FFFFFFFFFFFFFFFFE6FFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFF0 -FFEF5FFFFFFFF7BF6BFFDFBFFFD7FFEFFFFFFFFFFFFFBF7B1FFFF7FF7FFFFFFFFFFDFB5FFF -FFFFFFFFFFFFFFFFE2FFFFFFFFFFFC5FFFFFFFFFFFFFFFFFFFFFFFF0 -FDFF7FFFFFFDFFAFEBDF7FFFFEFFFF7EFFFFFFFFFDFBF7DBFFFFF5FBFFFFFFFEF7AF7F5FFF -FFFFFFFFFFFFFFFFE0FFFFFFFFFFF5FFFFFFFFFFFFFFFFFFFFFFFFF0 -AF52FFFFFFFFFC7F7D7FCFFFDFFFFFFFFFFFFEFF7FFEFF7FBFFF9FDFDFFFFFFFFFEFD8FFFF -FFFFFFFFFFFFFFFFEEFFFFFFFFFFFC9FFFFFFFFFFFFFFFFFFFFFFFF0 -F9D7FFFFFFFF7F2FDDEB7FFFFEFFFFFFFFFFFFFFFFFFDFD5FFFEFDFBFFFBFFFFF73BD7BFFF -FFFFE7FFFFFFFFFFFCFFFFFFFFFFFEDFFFFFFFFFFFFFFFFFFFFFFFF0 -AFDFFFFFFFFFFFFEFF5FF7DFFFFFFFFFFFFFFFFFFEFFFFDFBFFEBF5FF7FFFFDFFDEEE4FFFF -FFFFE7FFFFFFFFFFEEFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFF0 -F27FFFFFFFFFFFCB97C7E7FFFFFEEFFBFFFFFFFFFFFFD6F5BFF2EDFFFFFFFFFEFE7637FFFF -FFFFE7FFFFFFFFFFEEFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF0 -7DFFFFFFFFFFFFB7FEF37EFFFFFFFF7F7FFFFFFFF7DEFBFEFFFDFF7BFFFFFEFFFB5DA7FFFF -FFFFC7FFFFFFFFFFF6FFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFF0 -47FFFFFFFFFFFFF5DEFFEFFFFFFFF7FFFFFFFFFFFFFFFFB7DFEFDFFFFFFFFFFFF9F7DFFFFF -FFFFC3FFFFFFFFFF6EFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFD7B5D73DFBFFFFF7FFFFFFFFDFDEFF7FABEAFF7BFFFFFFFFEEE96BFFFFF -FFFFC3FFFFFFFFFFC4FFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFD7EFE7FFFFF7FFFDFEFFFFDFFFFF5DD7EBE3D7FFFFFFFFFEFEBD4FFFFFF -FFFFC3FFFFFFFFFFE2FFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFDC7EFF7FBFFFFFFFFFFFFFFFFBFFFF7D5DDEFFFFBFFFEFFFB4FAFFFFFFF -FFFF81FFFFFFFFFFE6FFFFFFFFFFFD5FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFBDFE5DFFFFF7FFFFFFFFFFFFFFFDFFFDBB7DAFFFFFFFFFFFF5EBFFFFFF -FFFF81FFFFFFFFFFEFFFFFFFFFFFF91FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFF9BA7D97FDFFFFFFFFFFFFFFFFFFFBECF2AFFFEFFFFFFFEFE9CAFFFFFFF -FFFF81FFFFFFFFFFFEFFFFFFFFFFFC9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFDDDFEDFFFFFBAFBBFFFFFFFFFF7FEFF53BDDEFFFFFFFF7DEBDCFFFFFFF -FFFF81FFFFFFFFFFECFFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFEF4B5BDFFFFFFBFFF7FFFFFFFEFF7B3B57F7FFFFFFFFFF78EB7FFFFFFF -FFFF00FFFFFFFFFFCEFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF0 -BFFFFFFFFFFFFFFFF9D17DFDFF7EFFFFFFFFFEFFBFFFFFA1FBFFFEFFFFFF7FFDAE7FFFFFFF -FFFF00FFFFFFFFFFE6FFFFFFFFFFFDDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFAEC2F7FFFFFFFFFFFFFFFFFF7F3F6BB5FFFFFFFFFDFFFE7E9FFFFFFFF -FFFF00FFFFFFFFFFEEFFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFF77FBF7FBFFBF7DFFFFFFFFFFDF77EBDFF7FFFFFFFFDEBE6FFFFFFFFF -FFFE00FFFFFFFFFFE8FFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFEC3EBFDFFEFFFFFFFFFFFFFFFFF57EFB7FF7FFFBFF772787FFFFFFFF -FFFE007FFFFFFFFFE4FFFFFFFFFFFC9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFA7FEBDFFEFFBFFFFFFFFFFFFFFFDDBFFFBFFFFFFFFFCBA97FFFFFFFF -FFFE007FFFFFFFFFAEFFFFFFFFFFFC9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFBFFBFFF7FEFFFDFFFFFFFFBEEBBFFDFFFFFFFFFF7F7FEBFFFFFFFFF -FFFE007FFFFFFFFFE5FFFFFFFFFFFCBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFBAEBFBFFFF7FBFFFFFFF7FDFEFFDBF77FFFFFFF7FB5DABFFFFFFFFF -FFFC007FFFFFFFFFCEFFFFFFFFFFFBDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFE9F5EEF76FBEFFFFEFFFFFFFF7AFF7FFFFFFFFFFFEF76BFFFFFFFFFF -FFFC003FFFFFFFFFFCFFFFFFFFFFFDBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFEBF5FBFFFF7FFFBFFFFFFFFFF7CBBFFFFFFFFFFF7B1A7FFFFFFFFFF -FFFC003FFFFFFFFFCEFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFABC7FFF6FFFFFFFFFFFFFEEFD7FFFFFFFFFDFFDD7ADFFFFFFFFFFF -FFFC003FFFFFFFFFECFFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFF7FDFFEFFBFFFFFFFFFFFFFF9FEFF7FFFFFFFFFFF8AEBFFFFFFFFFF -FFFC003FFFFFFFFFC2FFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFF63E7EBF7FFDFFFFFFFFFDFEF5FF7DFFFFFFFFEEA7E9FFFFFFFFFFF -FFF8001FFFFFFFFFE9FFFFFFFFFFFD3FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFB4F77FFBFEFFFFFFFFFDFFBFF7BFFFFFFFFEFFBF5FBFFFFFFFFFFF -FFFB81BFFFFFFFFFE9FFFFFFFFFFFD3FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFDBAFEFFF6FFFFFFFFFFFFF7FFFF7FFEFFFFFF75AFCFFFFFFFFFFFF -FFFFC3FFFFFFFFFFEEFFFFFFFFFFFC9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFD4EBFF7F7FFDFFFFFFFFFBF77FF7DFFFFFFEF57BEDFFFFFFFFFFFF -FFFFC3FFFFFFFFFFECFFFFFFFFFFFDDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFCBF5F8BDFFFFFFFFFFFFEFDEFFFFFFFFFDFEBD3B7FFFFFFFFFFFF -FFFFC3FFFFFFFFFFC5FFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFE5E3FDFFEFFFFFFFFFFFFDDFFFFFFFFFFFFFB7FAFFFFFFFFFFFFFF -FFFFC3FFFFFFFFFFFEFFFFFFFFFFEC5FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFEA3D777F9FFFFFFFDFFFFEFD7DFFFFFFFFFF2F87CFFFFFFFFFFFFF -FFFFC3FFFFFFFFFFCCFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFEF97BBBBFBEEFFFFFFFFFFEFFFFFFFFFEFF9FBFD7FFFFFFFFFFFFF -FFFFC3FFFFFFFFFFCDFFFFFFFFFFF93FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFBD7EFEEBF7FFFFFFFFFF7FFEFFFFFFFFFFD7EAE7FFFFFFFFFFFFF -FFFFC3FFFFFFFFFFE0FFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFB85EFF3FFFFFFFFFDFFFB7BFFFFFFFFF7CFFC7DFFFFFFFFFFFFFF -FFFFC3FFFFFFFFFFEBFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFAEEFAFDFFFFFFFFFFFFBFDFFFEBFFFFFEF7F4EDFFFFFFFFFFFFFF -FFFFC3FFFFFFFFFFCDFFFFFFFFFFFDDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFCAFDFAFF7FEFFFFFFF7FEFFFFFFFFFFFE7EF76FFFFFFFFFFFFFFF -FFFFC3FFFFFFFFFFEEFFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFC7B7DF3FFFFFFFFFFFFEFF7FEFFBFFFF7BFB5F7FFFFFFFFFFFFFF -FFFFC3FFFFFFFFFFFCFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFC7E4F2FBEFFFFFFFFFFFBFF7FFFFBFFBFFFA79FFFFFFFFFFFFFFF -FFFFC3FFFFFFFFFFC4FFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFDDBBDCBF7FFFFFFFFFFEEFFFFFEFFB6EFDFEFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFFFCEFFFFFFFFFFFC9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFD6EF77FBFEFFEFFFFFFF7FBFFFFDFF77BFB3EFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFFFCEFFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFEC3ED3FFFFF7FFFFFFBFFFFFFFFFFBFFFFE5BFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFFFC5FFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFEB569FEFEFFFFFFFFFFDFFFFFFFFDFFFDBA7AFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFFFE4FFFFFFFFFFF8BFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFECD8DAFFFF7FFFFFFFFBFBFFFFFFFFFBFEF57FFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFFFFEFFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFA777FB7FFFFFFFFFFFEDFFFFFFFFFFFFF1F7FFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFFFE5FFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFEAF3FBFF7FFFFFFFFFFFFFFFFFFFFFFBF5BDFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFFFCDFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFDE5F7EFFEFFFFFFFFFFEFFFFFFFFFDFEBD6DFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFFFFCFFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFF7EBF77DFFFBFFFFFFDDFFFFFFFFFFFBF4F3FFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFFFCCFFFFFFFFFFFEDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFF57EFFDFFFFFFFFFFFFDFFFFFFFFFDFFFDEFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFFFCEFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFF0F77EF7EFFFFFFFFF9BFFFFFFFFFBFA35FFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFFFE1FFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFF57E7DFFF7FEFFFFFFEFFFFFFFFFFDFDEB7FFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFFFC0FFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFF73B9FEFFFFFFFFFBFF9FDFFFFFFFFFFBFDFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFFFCDFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFF3ED76FFFEFFFFFFFFFBFFFFFFDF7FBAFAFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFFFEFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFB9F9F7BDFF7FFFFFFFBFFFFFFFBFFEF5DFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFFFECFFFFFFFFFFFC9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFBD5EEFFFFFFFDFFFFFBFDFFFFFFDFEEF7FFFFFFFFFFFFFFFFFFF -FFFFCBFFFFFFFFFFE5FFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFAFFFFDFFFFFFFFFFFDFFFFFFFFFF5FAF7FFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFFFCCFFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFB8BD6FFFFFFFFFFFFFBF67FFBFF7EDBAFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFFFFEFFFFFFFFFFFC9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFF5EDF7FB7EFFBFEFFFFFFFFFFFF7FFF2DFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFFFCCFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFE2ED3AFF7FFFFFFFFF5FEBFFFFFFEDF3FFFFFFFFFFFFFFFFFFFF -FFFFC7FFFFFFFFFF00FFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFDCFF5FEFFDFFFFFDFFFF7FFDFDDDBD5FFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFFF003FFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFB76BF7FFBFFFFFFFFF9F3FFFFFFFEBCFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFFF003FFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFF9F5F5F7FFFBFFFFFFFFEF6FFFFF57CBFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFFE001FFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFBB57ABFFFFFFFFFFFFBF77FFDFAFCEBFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFFE003FFFFFFFFFFC9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFBE7FDFFBFFFFFFFFFEFEF7FEF7E3D4FFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFFE041FFFFFFFFFFC9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFAD1FAFBFFFFFFFFFBFDE7FFFF73D5EFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFFC003FFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFF3FBEEFFFFFFFFFFFF7FFF7FFFA3D7FFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFFC001FFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFDAAF77BFB7FFFFFFEFEFFFFFFA74FFFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFF8001FFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFD1F6FBFFFFF7FFFFFFBF6BF6FFD6CFFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFF0001FFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFDD9FDFF7FFFFFFFFFFF7FBFFB8F6BFFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFF0001FFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFCDEF77FFFFFFFFFFFFBF7FFFFBDF3FFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFF0001FFFFFFFFFFDDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFED77DD7DFFFFFFFFFFBD75EFC3FDFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFF0001FFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFD5FE7FFFDFFFFFFFFFE7FFDDD7BFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFF0001FFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFCF57BFDF7FFFFFFFFFBE7DEFD7EBFFFFFFFFFFFFFFFFFFFFFFFF -FFFFCBFFFFFFFFF0001FFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFEC5EEBFFFFFFFFFFFFFEFDFE7DAFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFF0001FFFFFFFFFF9DFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFEB77BBF7FFFBFFFFFFDEBF7FAF9FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFF0001FFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFF4CF72FFEFFFFFFFFFDFF3D8BE7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFF0001FFFFFFFFFFDDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFF7E7FBFFFFFFDFFFFFDFDC57BF7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFD0001FFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFF4BBDDBF7FFFFFFFFFFBEFC5EAFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFF0001FFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFF7AFF7FBFFFFFFFFFF7DFEBF6A7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFE0003FFFFFFFFFFCBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFEA72FDFFDFFFFFFFFFCBEFCFD3BFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFE0007FFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFF5FAFFBFDFFFFFFFFFAFB2F5DFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFE000FFFFFFFFFFF43FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFF277EB7FFFBFFFFFFFFBFFAAD7BFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFE0007FFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFF65DBBFFDFFFFFFFFFFFFDF6DD7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFCBFFFFFFFFC006FFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFB7773BBFFFFFFFFFFFEFF7ABF7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFF8006FFFFFFFFFFFD7FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFF0F9FAFFFFFFFFFFFFFFBFEFF3FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFFC006FFFFFFFFFFFDDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFF7A9DBFFDFFFFDFBFFFFFF7DBA7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFF8006FFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFF5B9FDBFFFFFFFFF7FFFF7F7EBFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFF8006FFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFE4FFFFBFFFFFFFFFEEFFFDEF2FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFF8000FFFFFFFFFFFC9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFB76FBFBFFFFFFFFFFFFBF7F93FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFF0800FFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFD7EAFBEFF7FFFFFFFFFF7EBF7FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFF0000FFFFFFFFFFFDBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFF36EBFFFFFFFFFFFFFFFF7F95BFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC7FFFFFFFF0004FFFFFFFFFFFC9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFAFDDEFFF7EFFFFFFFFDFFFFE7FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFF0006FFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFB7F3FFFFFDFFFFFFFFFFF6FD7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFF0004FFFFFFFFFFF5FFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFF9BD7ADEDFFFFFFFFFBFEDF7EAFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFE0006FFFFFFFFFFFDDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFDAF5BEFFFFFFFFFEFFEFFFEBE7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFE0102FFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFDF2F5FFFFFFFFFFFFFFEEEBE7FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFC0000FFFFFFFFFFFD7FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFD5EBDFDFFFFFFFFFFDFFEFEF6FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFC0000FFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFD6FF6FEEEFFFFFFFFFF7FBFD7FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFFC28067FFFFFFFFFFEDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFF771F7FFFFFFFFFFFFFF5EFD6FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFF8000AFFFFFFFFFFFDBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFE1F37FFFFFFFFFFFFFBFCFF6B7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFF80006FFFFFFFFFFFDDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFEF5F2EFFFFFFFFFFFFFF7B7AF7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFF00002FFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFEAF1FBFFFFFFFFFFFFF7BFCED7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFF90000FFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFEF7DBFF7EFFFFFFFF7FE6F7AFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFF01020FFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFBF6DF7FFDFF7FFFFF7DFFDFA7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFE00020FFFFFFFFFFFADFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFEFD4FBEFFFFFFFFFFFD6FFCEFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFFFFE00026FFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFF77BDBFFFFFFFFFFFFFDFB6D7BFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC7FFFFFFE00006FFFFFFFFFFFD3FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFB57CBFFFFFFFFFFFFFEFFBFD3FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFC02004FFFFFFFFFFFADFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFF3DFDFEFDFFFFF7FFFFBFEF8FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFC00002FFFFFFFFFFFEDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFF3ECDF7FFFFFFFFFFFEFD7EED7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFC00000FFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFDEA7FFFFDFFFFFFDFBFF7EFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFC00020FFFFFFFFFFF8DFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFAF37BEFFFFFFFFFFFDEFFBEA7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF80004EFFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFEFD4FFFFDFFEFFFBFFFFBFEFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF8A0066FFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFB6F4FFDFFFFFFFFFFDFFFD7AFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFE00006AFFFFFFFFFFFC5FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFF4FD5EFFFFFFFFFFFFDF7B7DEFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF000026FFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFE5FDFDFFFFFFFFEFDFEF67FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF000060FFFFFFFFFFFDBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFF97A77FFFFFFFFFFEF9FFBFD6BFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF000044FFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFF6E9FFFFFFFFFFFFFFFBE7D7FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFE000076FFFFFFFFFFFEDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFDFB6DDFF7FFFFFFFF9FFFAD7FFFFFFFFFFFFFFFFFFFFFFFFFF -FFBFFFFFFFFE00006CFFFFFFFFFFFDBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFF7FFAFFFFFFFFFFFFFFBF5FEEFFFFFFFFFFFFFFFFFFFFFFFFFF -FE1FFFFFFFFC0800CEFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFB7ABFBFFFFFFFFFF7FBF565FFFFFFFFFFFFFFFFFFFFFFFFFF -FC0FFFFFFFFC0800EEFFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFAF5BFFFFFFFFFFFFF7FFF5EE7FFFFFFFFFFFFFFFFFFFFFFFFF -F8007FFFFFFC0200E6FFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFBFCFDFFFFFFFFFFFFDFC7FBFFFFFFFFFFFFFFFFFFFFFFF1FF -F0007FFFFFFC000060FFFFFFFFFFFD3FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFCFE77FFFEFFFFFFDF9FDFF5EFFFFFFFFFFFFFFFFFFFFFFE03F -E0003FFFFFFE0001A4FFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFDBFDEFBFFFFFFFFFFFDFCFD3FFFFFFFFFFFFFFFFFFFFFFE01F -C0008FFFFFFC0000CCFFFFFFFFFFFDDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFDDA7BFF7FFFFFFFFF3FFEFFF7FFFFFFFFFFFFFFFFFFFFFE010 -000007FFFFFC0000CCFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFF7BFEFFFFFFFFFFFBFF7EC7FFFFFFFFFFFFFFFFFFFFFF8004 -010041FFFFFC0000CEFFFFFFFFFFFDDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFDF5EEFFFFFFFFFFFFBFDF7A77FFFFFFFFFFFFFFFFFFFFE0000 -000001FFFFFC0000EEFFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFE7FDFFFBFFFFFFFFFDEFFB4DFFFFFFFFFFFFFFFFFFFFFE0000 -400003FFFFFC0001CCFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFDFCFF7FF7FFFFFEFF7F67E6FFFFFFFFFFFFFFFFFFFFFA0000 -500040FFFFF80801E0FFFFFFFFFFFCBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFEBDEFFFFFFFFFFFFF7FBFBFF7FFFFFFFFFFFFFFFFFFFFC0000 -100800FFFFF80201ECFFFFFFFFFFFC5FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFEAE8EF7FFFFFFFFFFBFFE5FBFFFFFFFFFFFFFFFFFFFFFC0000 -800000FFFFF80001CCFFFFFFFFFFFD3FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFDFFF7BFBFFFFFFFFFEFF7FAEFFFFFFFFFFFFFFFFFFFFF80000 -200000FFFFE00001E5FFFFFFFFFFFD9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFF76FFFFF7FFFFFFFFFDFDFB7FFFFFFFFFFFFFFFFFFFFF80000 -010001FFFFC00001FEFFFFFFFFFFFEDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFEFBF6FFFFFEFFFFFFF7BF9FDBFFFFFFFFFFFFFFFFFFFF02000 -200000FFFF800003CCFFFFFFFFFFFDBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFF7B7777FFFFFFFFF7FFF57AF7FFFFFFFFFFFFFFFFFFFE00004 -000000FFFF000003C4FFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFD6F7FFFFDFFFFFFF5FFFBF5FFFFFFFFFFFFFFFFFFFFF00000 -000000FFFC000002E8FFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFEBF7BFDFFFFFFFFFFEFBDABF7FFFFFFFFFFFFFFFFFFFA00020 -000800FFF0040003C4FFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFE9FEFDFFDFFFFFFFFFDFF5EFFFFFFFFFFFFFFFFFFFFFC20000 -000000FFE0200207E4FFFFFFFFFFFD5FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFEFF72FDBFFFFBFFFFFFFDD7CFFFFFFFFFFFFFFFFFFFF400000 -000801FF80000007CDFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFF2FDFEFFFFFFFFFFFF6DFBEBFFFFFFFFFFFFFFFFFFFF800000 -000001FF0020100FE4FFFFFFFFFFFDDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFBF7FFFFFFFEFFFFB7FDD7FFFFFFFFFFFFFFFFFFFFF800000 -000001FE0000001FC4FFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFF7EBFFFFFFFFFFFFFEFFFDD7FFFFFFFFFFFFFFFFFFFF800000 -000001F80100001FC0FFFFFFFFFFFDDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFB7EDFFEFFFFFFFBFF7DF7FEFFFFFFFFFFFFFFFFFFFF800000 -000101E00000007FF0FFFFFFFFFFFDDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFEFDF0FEFFFFFFFFFFFFF7CD77FFFFFFFFFFFFFFFFFFFC02000 -000001C00000007FC4FFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFDFFBF7FFFFFFFFFFF3FDFFDFFFFFFFFFFFFFFFFFFFF000000 -00000000200000FFCFFFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFEF77AFFFF7FFFFFF7FEFFD7B7FFFFFFFFFFFFFFFFFFFC00020 -50040004000503FFECFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFEF7FBFF7FFFFFFFFFF77F7EFFFFFFFFFFFFFFFFFFFFF000000 -00000000000003FFCC7FFFFFFFFFFCBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFDF5FF7EFFFFFFFFF7BF7DFAFFFFFFFFFFFFFFFFFFFFC00000 -00000000000003FFC89FFFFFFFFFFD1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFF7B757FFFFFFFFFFFFCFBF57FFFFFFFFFFFFFFFFFFFFC00000 -0000000000000FFFC03FFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFDBEFF5FFFFFFFFFFFFFFFFFFFFC00000 -0100000000001FFF801FFFFFFFFFFD9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFF6FD5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000 -0000000000003FFC007FFFFFFFFFF9DFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFF3BFBFFF7FFD6FFFFF67FBA5FFFFFFFFFFFFFFFFFFFF602000 -0000000000007FFE001FFFFFFFFFFEDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFBFE9F77DFEFFFFFFFFDDEFF7FFFFFFFFFFFFFFFFFFFF00000 -000000040000FFFC201FFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFDDFFFFFFFEFFFFFDDEFFDEF7FFFFFFFFFFFFFFFFFFFE80000 -000000000010FFF8081FFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFEF72FDFFFEFFFFFFFEAFF7DFFFFFFFFFFFFFFFFFFFFE80000 -000000000003FFFC005FFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFBFFBBFFF7DFDFFFFF7FEFFF7FFFFFFFFFFFFFFFFFFFF00000 -000000000005FFF8001FFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFDFF7FFFFF7F7BBFFFFFFFFFFFFFFFFFFFFFC0000 -00000000000FFFF0001FFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFBF5DFFFFFFFFEFFFF7B7FEFFFFFFFFFFFFFFFFFFFFFFC0000 -00000002010FFFF8003FFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFF6BFFEDFFFBFFFF7FFFFEFB7FFFFFFFFFFFFFFFFFFFFFC0000 -00400000003FFFF8101FFFFFFFFFFC5FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFF5BFDFF7FF3FFFFEDBDDDFFFFFFFFFFFFFFFFFFFFFE8010 -00000000047FFFF0000FFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFDDBFFFEFFBFFFFFEFF5FFF7FFFFFFFFFFFFFFFFFFFFFE8000 -00000000007FFFF0100FFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFE7F9FFFFF7FFFFFFEFDEEEF7FFFFFFFFFFFFFFFFFFFFFC000 -00000000003FFFF0000FFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFDFFFFFFFFFFFFFFF7EEBF7FFFFFFFFEFFFBFFFD7FFFFFFFFFFFFFFFFFFFFFE000 -00000000007FFFE0001FFFFFFFFFFCBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFB7D3FFFFFBFFFFFFFFEFBFFFFFFFFFFFFFFFFFFFFFFFFB800 -00000000003FFFC0001FFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFBD79FDFEFFFFBFFFFF6FD7E7FFFFFFFFFFFFFFFFFFFFFFAF0 -00000000003FFF80001FFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFF9FDFFFFFFFFFDFFF7FFDFEFFFFFFFFFFFFFFFFFFFFFFFFBD7 -00000000003FFE00001FFFFFFFFFFCBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFEFF7FFFDFFFBFFFEFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -80000000003FFC00008FFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFEFEFDFFFEFFFDFFFFFF6FD7FFFFFFFFFFFFFFFFFFFFFFFFFF -81008000003FF808041FFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFF7EF5FDFFEFFFFFFFFFDBBDAFFFFFFFFFFFFFFFFFFFFFFFFFF -80000000001FC000001FFFFFFFFFFDDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFCFFBFFDFFFF7FFFFFEF5EFFFFFFFFFFFFFFFFFFFFFFFFFFFE -00000000001F8000003FFFFFFFFFF9DFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFF976BF7FFFFFFFFFDFFFFFEF7FFFFFFFFFFFFFFFFFFFFFFFFF -00000000001F0000003FFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFF7FBFF7FF7FFFFFFFFE7F7D7FFFFFFFFFFFFFFFFFFFFFFFFF -10000000001C020000FFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFF9FCBF7FFFFFFFFFEFEFB7EBFFFFFFFFFFFFFFFFFFFFFFFFFF -0080000000180800007FFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFF5F1FFFFEFFFFFFFDFF5FFE7FFFFFFFFFFFFFFFFFFFFFFFFE -0000000000000000027FFFFFFFFFFE9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFF3F57BFDFEFFF7FFFFF7BAFBFFFFFFFFFFFFFFFFFFFFFFFFFE -0000000000000000057FFFFFFFFFFCBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFBF7FFFFEFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFE -0000000000000001767FFFFFFFFFFD9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFDAF6F7DFEFFFFFFFFFF2FEFFFFFFFFFFFFFFFFFFFFFFFFFFC -0100000000000001F27FFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFF77DFFFFFFFFFFFFFFFEFBFFFFFFFFFFFFFFFFFFFFFFFFFE -000000080000000BF07FFFFFFFFFFDDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFD7BFFEFFF7FDFFFFDFF5FBF7FFFFFFFFFFFFFFFFFFFFFFFFF -000000000000000FE0FFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFF97EBFFB77FFF7FFDFEFD7DBFFFFFFFFFFFFFFFFFFFFFFFFFD -004000802010201FF67FFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFF37ADFFFFFFFFFFFF7BDEFB7FFFFFFFFFFFFFFFFFFFFFFFFF -100000000000020FF37FFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFF9FC7FFFFEFFFFFFFFEFE7EDFFFFFFFFFFFFFFFFFFFFFFFFFF -000000000000003FF77FFFFFFFFFFDBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFEB77F7FFF7FFFFFFFFFEAFEFFFFFFFFFFFFFFFFFFFFFFFFFF -000000000000003FF37FFFFFFFFFFEDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFD7FFEFBFFFFFFFFFEEFDFFFFFFFFFFFFFFFFFFFFFFFFFFF -00000000000000FFE07FFFFFFFFFFD9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFED75BB7FEEFFFFFFBF7EFEDFFFFFFFFFFFFFFFFFFFFFFFFFF -00400008040001FFF0FFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFAF7FFFFFFFFFF7FF7F7EFBFFFFFFFFFFFFFFFFFFFFFFFFFF -00000000000202FFF07FFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFCFB7DFF7EFFFFFFFFFFE77EFFFFFFFFFFFFFFFFFFFFFFFFFF -C0000000000003FFF67FFFFFFFFFFC5FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFF5FDFEFFFFBFFFFFFFFFABF7FFFFFFFFFFFFFFFFFFFFFFFFF -C0040000000003FFF7FFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFDFADF7FFF7FFFFFFFEDF7EDFFFFFFFFFFFFFFFFFFFFFFFFFF -C001000000100FFFE67FFFFFFFFFF5FFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFF5EBDF7EFFFFDFEFFBFF5BF7FFFFFFFFFFFFFFFFFFFFFFFFF -E000000000000FFFF27FFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFD74FFFFFF7FFFFFBFFFF7FDFFFFFFFFFFFFFFFFFFFFFFFFFF -6000000000003FFFF4FFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFEFD3FFFFDFFFFFFFFFEF7EBFFFFFFFFFFFFFFFFFFFFFFFFFF -C000000000003FFFF07FFFFFFFFFFCBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFADDAFDFF7FFFFFFBFF77FFFFFFFFFFFFFFFFFFFFFFFFFFFF -E000000000007FFFF27FFFFFFFFFFCBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFEFF7FBF7FBFFFFFFFFBEB75FFFFFFFFFFFFFFFFFFFFFFFFFF -E10000000000FFFFE6FFFFFFFFFFFD1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFEADEFDFFFB77FFFFBDFF9BD7FFFFFFFFFFFFFFFFFFFFFFFFF -F80000000001FFFFF7FFFFFFFFFFFC9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFB67FFFFFBFFFFFFEFF77DFFFFFFFFFFFFFFFFFFFFFFFFFFF -F00000000000FFFFF27FFFFFFFFFF9DFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFF5EABF7FFFFFFFFFFFFFAFF7FFFFFFFFFFFFFFFFFFFFFFFFF -F00400000000FFFFF0FFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFDFAFFBFDDFFFFFF7FEFF6BF7FFFFFFFFFFFFFFFFFFFFFFFFF -F80000000000FFFFE07FFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFDE3FFBFFDFFFFFFFF7F3F9FFFFFFFFFFFFFFFFFFFFFFFFFF -F400000000007FFFF07FFFFFFFFFFC5FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFEF7EDFFFFFFFFFFFFFFBF6FFFFFFFFFFFFFFFFFFFFFFFFFFF -FE00000000007FFFF77FFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFEF9FEFDFDDFFDFFFFFFDFF7FFFFFFFFFFFFFFFFFFFFFFFFFF -FA00000000003FFFF7FFFFFFFFFFFD5FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFEAF7FBFBFF7FFFFFBFFFFDEFFFFFFFFFFFFFFFFFFFFFFFFFF -FC00000000001FFFF47FFFFFFFFFFA9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFEED76FDFFDFFFFFFFF7F7F7FFFFFFFFFFFFFFFFFFFFFFFFFF -FC00800000003FFFF67FFFFFFFFFFDDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFBBDFF7FFFF7FFDFF7DBCED7FFFFFFFFFFFFFFFFFFFFFFFFF -FC00000000001FFFF0FFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFF7EBFFFFDEFFF7FFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC00000000001FFFD07FFFFFFFFFFCBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFF5AB7DFFFFBFFFF77FFDEBF7FFFFFFFFFFFFFFFFFFFFFFFFF -FC04000000000FFFF27FFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFF7CDFFBBFFBFFFFFFFFFBFD7FFFFFFFFFFFFFFFFFFFFFFFFF -F800000000000FFFE7FFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFE5CFFFFEFFFFFFFFFDBF7BBFFFFFFFFFFFFFFFFFFFFFFFFFF -F800000000001FFFF77FFFFFFFFFFD9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFE77BFFFFFBFFFFFFFFFEFDFFFFFFFFFFFFFFFFFFFFFFFFFF -F000000000001FFFE67FFFFFFFFFFCBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFEBDBCFF7FEFFFFFEFFF6FDFFFFFFFFFFFFFFFFFFFFFFFFFFF -E000000000001FFFF5FFFFFFFFFFF9DFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFADEFFFFFFDFBFFFEEF7FDFFFFFFFFFFFFFFFFFFFFFFFFFFF -F000200000001FFFF6FFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFF5FEEFFFFFFFFFFFFFDBF3FFFFFFFFFFFFFFFFFFFFFFFFFF -F100800000001FFFF67FFFFFFFFFFC5FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFF3D7FEFF7FBFFF7F7FBFDFD7FFFFFFFFFFFFFFFFFFFFFFFFF -F800000000000FFFEEFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFF7BEFFBFFFEFFFFFFFF7EDF7FFFFFFFFFFFFFFFFFFFFFFFFF -F0000000000007FFF77FFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFF5EBF7FFBFEFFFFFBEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F000000000000BFFF67FFFFFFFFFFE9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFF1DBFDFFFFEFFFFFFFFBDDE7FFFFFFFFFFFFFFFFFFFFFFFFF -F0000200000403FFE7FFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFECFDFBBFFEFFFFFF77D6DBFFFFFFFFFFFFFFFFFFFFFFFFFF -F0000000000003FFF3FFFFFFFFFFF9BFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFEF6FBFFFBFFFBFFFFFFFFF6FFFFFFFFFFFFFFFFFFFFFFFFFF -E0000000000000FFF27FFFFFFFFFFEDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFF5DFFFFFFFFFFBFFFDEFDFFFFFFFFFFFFFFFFFFFFFFFFFFF -E1000000000000FFF4FFFFFFFFFFFC9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFF9F7BBDFFFF7FFFFBF7FED6FFFFFFFFFFFFFFFFFFFFFFFFFF -E0000000040000FFF6FFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFEEDFFFFFFFF3FFF7FFFEFF7FFFFFFFFFFFFFFFFFFFFFFFFFF -E0000000000000FFF67FFFFFFFFFF8DFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFF3ADFDFFFFF7FFFFF7F7DC5FFFFFFFFFFFFFFFFFFFFFFFFFF -C0000000000000FFE67FFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFF5EF7EF7DFFFFFFFFFBFF7F7FFFFFFFFFFFFFFFFFFFFFFFFF -C0000000000000FFF7FFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFF7CBD7FFFFFBFFFFFEFF6EBFFFFFFFFFFFFFFFFFFFFFFFFFF -C08000000000087FF27FFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFF5BFFFFEFFFFFFF7BFBAD3E7FFFFFFFFFFFFFFFFFFFFFFFFF -C00800000000007FF07FFFFFFFFFFC5FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFF4F7FFFFFFBFBFFFFFFFCBFFFFFFFFFFFFFFFFFFFFFFFFFF -80000000000000FFF4FFFFFFFFFFFD3FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFBDBFB7FFFFFFFFFFFFFB7EFFFFFFFFFFFFFFFFFFFFFFFFFF -C0000400040000FFF67FFFFFFFFFFC9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFEDFBFEFEFFFFFFFF7EEFD7FFFFFFFFFFFFFFFFFFFFFFFFFF -80000000000000FFF03FFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFEAADFFFFEFED7FFFFFF7F77FFFFFFFFFFFFFFFFFFFFFFFFFF -80000000000000FFE03FFFFFFFFFF9BFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFAFF6FFFEFFDFFFBEFFFF9F7FFFFFFFFFFFFFFFFFFFFFFFFF -C00000000000007FC03FFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFF7AFFF7BB7FDFFFD7EFF77BFFFFFFFFFFFFFFFFFFFFFFFFFF -C00000400010007F801FFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFF6FAFDFFDFFFFFFFFBF7A9D7FFFFFFFFFFFFFFFFFFFFFFFFF -800000000000007F8047FFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFF70FD7FFFFFFFEFFFEBDFDBFFFFFFFFFFFFFFFFFFFFFFFFFF -80010080200008FE0017FFFFFFFFFD3FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFE7AFFFFEDFFEFFFFFFFFCBEFFFFFFFFFFFFFFFFFFFFFFFFFF -000000000000007E0007FFFFFFFFFE9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFB5B7BDFF7EEFFFFFFFEEF5FFFFFFFFFFFFFFFFFFFFFFFFFF -80000000000000FC000FFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFEEF7FFFFFFFEFFFF7DDFFDEFFFFFFFFFFFFFFFFFFFFFFFFFF -80000000000000F80007FFFFFFFFFD9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFABF5DFFBFFEFFFFBFFB75AFFFFFFFFFFFFFFFFFFFFFFFFFF -C0000000010000F00007FFFFFFFFFADFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFCF9FFFF7F7FFBFFFFFEFBD7FFFFFFFFFFFFFFFFFFFFFFFFFF -81000000000000F0000FFFFFFFFFFDDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFC6DDFFFF7FFFFEFEFF7E9FFFFFFFFFFFFFFFFFFFFFFFFFFF -C0000000000001C0000FFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFD7AFFDFFFBFFFFEFFBFFFABFFFFFFFFFFFFFFFFFFFFFFFFFF -C0000000000001C00017FFFFFFFFFC5FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFF5BBFEFFFFFF7DEFFF7FDAEFFFFFFFFFFFFFFFFFFFFFFFFFF -C000000000000180007FFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFDF2EF7BFFFFDFFABFFFB7CDFFFFFFFFFFFFFFFFFFFFFFFFFF -C001000000000300007FFFFFFFFFFDBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFD7BFDFFFFFFFFF917F7FDEAFFFFFFFFFFFFFFFFFFFFFFFFFF -C000000000000000027FFFFFFFFFFD5FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFE5F7FFFFFFF7FDDF7DEFF6FFFFFFFFFFFFFFFFFFFFFFFFFF -E000000000000000003FFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFB7FFEFFBF3FFFFEBFFFEFD5FFFFFFFFFFFFFFFFFFFFFFFFFF -E04020000000000000FFFFFFFFFFFDBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFA6FFFDF7FFF7F8D7FF7FDFFFFFFFFFFFFFFFFFFFFFFFFFFF -F00000000400000014FFFFFFFFFFFC9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFDDBDFBFFFBFFFF2CB6FFEA5FFFFFFFFFFFFFFFFFFFFFFFFFF -F100000000000000167FFFFFFFFFFCBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFF77BFEFFF7FF7FE77FDDEFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E80000000000000066FFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFF9F3FFFFFFBFFFE3D3FFFFABFFFFFFFFFFFFFFFFFFFFFFFFFF -E000000000000000E7FFFFFFFFFFF9DFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFD5ED7FFFFFBFFEF75EEF5EFFFFFFFFFFFFFFFFFFFFFFFFFFF -C000000000040000727FFFFFFFFFFD5FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFB73FFDEFFFFFFE1D0FFFFADFFFFFFFFFFFFFFFFFFFFFFFFFF -8000000000000001E0FFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFBD4FEFFFF9FFFCF5E77D6E2FFFFFFFFFFFFFFFFFFFFFFFFFF -8000000000000001E4FFFFFFFFFFFCBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFDE3DFFFFFDFEFE16A7FFFDEFFFFFFFFFFFFFFFFFFFFFFFFFE -0000000000000003F47FFFFFFFFFFE9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFF7F77BFDFF9FFFCDADFFEFD3FFFFFFFFFFFFFFFFFFFFFFFFFE -000000000000001FF6FFFFFFFFFFF89FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFF6A7DFBFDF7FFFDCAE1DEF6DFFFFFFFFFFFFFFFFFFFFFFFFF8 -000000080000000FE6FFFFFFFFFFFDBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFF7EFFFFFFFBFFFD6FDDF7BD7FFFFFFFFFFFFFFFFFFFFFFFFF0 -000000000000000FF27FFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFEE7BFFBFF7FFFF9E3717FEF5FFFFFFFFFFFFFFFFFFFFFFFFD0 -000000000000001FE0FFFFFFFFFFFADFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFEDD76FFBFFFFFFA9ADCB7EBFFFFFFFFFFFFFFFFFFFFFFFFFE0 -000002000000021FE0FFFFFFFFFFFDBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFE7DBFFFFFFFFFFAED2AFB7ABFFFFFFFFFFFFFFFFFFFFFFFF80 -008000000000007FF07FFFFFFFFFF8DFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFCF67EBDFFFBFFF29AAF7FAF7FFFFFFFFFFFFFFFFFFFFFFFF40 -0800001E000000FFE6FFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFF9F6FEFFFFDFFF4FEB57EFF3FFFFFFFFFFFFFFFFFFFFFFFF00 -801000BC000010FFF7FFFFFFFFFFF93FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFDFE3FFFFFFFEFB38B475BF93FFFFFFFFFFFFFFFFFFFFFFFC00 -802E007F800000FFF67FFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFDFA7FFFBFFFFFF66E753EFD7FFFFFFFFFFFFFFFFFFFFFFF802 -00FAB5FF800003FFF2FFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFCEAF7EFFFFFFFF5CBE5BFBE5FFFFFFFFFFFFFFFFFFFFFFE000 -01FF5FFFC00007FFE0FFFFFFFFFFFD9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFDFE7D7FFBFFFFF76B56B7F77FFFFFFFFFFFFFFFFFFFFFFE000 -01FEFFFFC00007FFE07FFFFFFFFFF8DFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFBD7EFFFFFFFFFE3B8F53DFD1FFFFFFFFFFFFFFFFFFFFFFC080 -47FFFFFFE00007FFF47FFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFAF53BFBBFFFFFEBAB579F57FFFFFFFFFFFFFFFFFFFFFFFC020 -0FFFFFFFA00007FFE7FFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFB7FFFFFF7FFFEAD42D1FFABFFFFFFFFFFFFFFFFFFFFFF0000 -1FFFFFFFE0000FFFE6FFFFFFFFFFFD9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFF8FA5EFDFFFFEFEED4ABCFDEFFFFFFFFFFFFFFFFFFFFFFE0000 -3FFFFFFFE0000FFFF67FFFFFFFFFFE9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFEDE77EFFFFFFFEB5CB55AFF7FFFFFFFFFFFFFFFFFFFFFE0020 -3FFFFFFFE0001FFFE6FFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFBFE7FFFF7FFFFED42955FF77FFFFFFFFFFFFFFFFFFFFFE0000 -FFFFFFFFE0001FFFE4FFFFFFFFFFF99FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFD7A7F7FDFF7FFF6AA6F0AF95FFFFFFFFFFFFFFFFFFFFFC0000 -FFFFFFFFC0003FFFF67FFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFF7FFBFFFFFFFF7D568B97F7E7FFFFFFFFFFFFFFFFFFFFFC0001 -FFFFFFFFE0003FFFE6FFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFDEFFBFBFFFFFFC7A4CA8FAB5FFFFFFFFFFFFFFFFFFFFF80003 -FFFFFFFFC0003FFFE7FFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFF56EEFFFFFFBFF2B03A3DFEDFFFFFFFFFFFFFFFFFFFFF90087 -FFFFFFFFE000FFFFF67FFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFBF7DBFDFF7F3FD3B4EB9FFBFFFFFFFFFFFFFFFFFFFFFF8500F -FFFFFFFFC000FFFFE6FFFFFFFFFFFD9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFEF7FFFFFEFFF57DADC163F5EBFFFFFFFFFFFFFFFFFFFFF0005F -FFFFFFFFC001FFFFE7FFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFF3BFFEFFFFFFABCB52EBBBDBEFFFFFFFFFFFFFFFFFFFFF0003F -FFFFFFFFC001FFFFF27FFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFF9F67FBDFFFEF7DD0E2F7BFDDFFFFFFFFFFFFFFFFFFFFF0083F -FFFFFFFF8003FFFFEAFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFF6FBDEEFF7FD6BA9D8D57FDE6FFFFFFFFFFFFFFFFFFFFC0007F -FFFFFFFF8003FFFFF6FFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFE5FEFFFFFFFE3BCD46555BFDBFFFFFFFFFFFFFFFFFFFFC0207F -FFFFFFFF8003FFFFF67FFFFFFFFFF89FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFB5FEFFFFFEDC8DDA8FC7FEE7FFFFFFFFFFFFFFFFFFFF8200BF -FFFFFFFF0107FFFFF6FFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFF7FF76FFFCAD45E944DEF6BFFFFFFFFFFFFFFFFFFFFE000FF -FFFFFFFF0007FFFFEEFFFFFFFFFFFAFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFEFDFB7FFFFF9785CBC76FFBB77FFFFFFFFFFFFFFFFFFFC241FF -FFFFFFFF2010FFFFF2FFFFFFFFFFFDDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFAFFBF7FBFFBFF9C742C528BFDFAFFFFFFFFFFFFFFFFFFFFC101FF -FFFFFFFF0004FFFFE0FFFFFFFFFFFDDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFDAFDFDFFF7FFFAB902D895DFFFF7FFFFFFFFFFFFFFFFFFFC001FF -FFFFFFFF00007FFFE6FFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFDA1EEFF7BFFBFAD72150B9FFDDBFFFFFFFFFFFFFFFFFFFFC001FF -FFFFFFFF80001FFFF4FFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFEAEFFD7FFFDFFB2D8F4F45F5F5EFFFFFFFFFFFFFFFFFFFFD021FF -FFFFFFFF01021FFFF67FFFFFFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFABDBBFDDFFFFE174A170BDDEFE7FFFFFFFFFFFFFFFFFFFF8003FF -FFFFFFFFA00007FFE6FFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFCB87AFFDF7FFD5A8189C7F7FB7BFFFFFFFFFFFFFFFFFFF8003FF -FFFFFFFFC10201FFE6FFFFFFFFFFFC9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFC7EBBDDFFFFBE55A44AA4BFFDEFFFFFFFFFFFFFFFFFFFFF8003FF -FFFFFFFFF00000FFF0FFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFC3E4FFDFFFFF6AFB16157FDFF57FFFFFFFFFFFFFFFFFFF0003FF -FFFFFFFFF810007FE0FFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFC7ABB7F7DFFFD6B551241FBF7AFFFFFFFFFFFFFFFFFFFFFC103FF -FFFFFFFFFC040811E6FFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFEB2F47ADF5FFC6C4EBB07EFF5EBFFFFFFFFFFFFFFFFFFFF8103FF -FFFFFFFFF700000476FFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFF5D578FFFFFBEB3729DBDFBFF6EFFFFFFFFFFFFFFFFFFFF8007FF -FFFFFFFFFFC0000106FFFFFFFFFFFDBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFCBA7667BFFFFC2E0A9FEFFFAFF3BFFFFFFFFFFFFFFFFFFF8003FF -FFFFFFFFFF70100046FFFFFFFFFFF91FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFECB5BA3F7EFFCF5DADFFFFFFBDEFFFFFFFFFFFFFFFFFFFFC023FF -FFFFFFFFFFE8000006FFFFFFFFFFFCBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFF3D16B5FDFFDF1501ADFEFFFF4BFFFFFFFFFFFFFFFFFFFF0003FF -FFFFFFFFFFF8100002FFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFF95E2D4BFFFF9D4206FFFEDFBEDFFFFFFFFFFFFFFFFFFFD4003FF -FFFFFFFFFFFF000000FFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFF4E9F5EF7F5F9A081CFFEFF5F3F7FFFFFFFFFFFFFFFFFFF9003FF -FFFFFFFFFFFF000000FFFFFFFFFFF9DFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFF63E954BF7FFCA23627FFEFFDEBFFFFFFFFFFFFFFFFFFFFC043FF -FFFFFFFFFFFF400000FFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFB5B66EBFFFF902F54DF7FFFFBF5FFFFFFFFFFFFFFFFFFFC103FF -FFFFFFFFFFFFE00022FFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFAA59363FBFDC9B0547FFFFFDCDFFFFFFFFFFFFFFFFFFFFC203FF -FFFFFFFFFFFFF80002FFFFFFFFFFFDBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFAD576A9BF7F0BD62E6FFEEF77EBFFFFFFFFFFFFFFFFFFFC001FF -FFFFFFFFFFFFFA0001FFFFFFFFFFFC5FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFB55B3B5BFFF29503A7FFFFBF97FFFFFFFFFFFFFFFFFFFFC201FF -FFFFFFFFFFFFFD2004FFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFADC8C55FFFCAD7AAB7FFDFFFCEFFFFFFFFFFFFFFFFFFFFC021FF -FFFFFFFFFFFFFFC006FFFFFFFFFFFD1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFF9D2B77BDFF2B59A2D7FEFFBFDFFFFFFFFFFFFFFFFFFFFFC001FF -FFFFFFFFFFFFFF6000FFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFC6E0D5DF772D368D57BFFFEBE5FFFFFFFFFFFFFFFFFFFFE001FF -FFFFFFFFFFFFFFF400FFFFFFFFFFF9DFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFD7AA56AFFAA5D0C557F7EFFE3E5FFFFFFFFFFFFFFFFFFFE040FF -FFFFFFFFFFFFFFFEE0FFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFE2BC6A2FBCB5AE87AFFFFBFFBFDFFFFFFFFFFFFFFFFFFFE000FF -FFFFFFFFFFFFFFFFB67FFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFED652BC7F3B4FA50AFFFFEFDBF7FFFFFFFFFFFFFFFFFFFE020FF -FFFFFFFFFFFFFFFFE6FFFFFFFFFFFDBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFEA350E1BCAC726468EFDFBEFD7DFFFFFFFFFFFFFFFFFFFE0007F -FFFFFFFFFFFFFFFFE7FFFFFFFFFFFDBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFF3B4B366E978B70A9FFEFFFDFAFFFFFFFFFFFFFFFFFFFFF0007F -FFFFFFFFFFFFFFFFF6FFFFFFFFFFFCBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFC5E0F47C50F8585D7BFDFBFD7BFFFFFFFFFFFFFFFFFFFF0003F -FFFFFFFFFFFFFFFFE6FFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFD1D2C166BD7616965FFFF5EF57FFFFFFFFFFFFFFFFFFFFF0207F -FFFFFFFFFFFFFFFFE2FFFFFFFFFFF99FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFF72F45E58689D2A19FFFF3DB9DFFFFFFFFFFFFFFFFFFFFF8003F -FFFFFFFFFFFFFFFFE2FFFFFFFFFFF9DFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFF9E154363ABD1A9D3FFFC9FFED7FFFFFFFFFFFFFFFFFFFF800BF -FFFFFFFFFFFFFFFFE2FFFFFFFFFFFDDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFDAEC3A049D572343FFEAB7E3F5FFFFFFFFFFFFFFFFFFFF8403F -FFFFFFFFFFFFFFFFECFFFFFFFFFFF9DFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFEB548904E458B073FDF29FDAF5FFFFFFFFFFFFFFFFFFFF4009F -FFFFFFFFFFFFFFFFE6FFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFEE9636029F0F4343FFAB5F6BB7FFFFFFFFFFFFFFFFFFFFC400F -FFFFFFFFFFFFFFFFF6FFFFFFFFFFFD9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFAAF29A0AB069612FEF8B8BE3F5FFFFFFFFFFFFFFFFFFFF4000F -FFFFFFFFFFFFFFFFCEFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFF3598706D46282E5FEAB5FFDAFFFFFFFFFFFFFFFFFFFFFC000F -FFFFFFFFFFFFFFFFF6FFFFFFFFFFFA1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFF168582A513AA22FFEA5DAF5FBFFFFFFFFFFFFFFFFFFFFC080F -FFFFFFFFFFFFFFFFE2FFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFEAD5585B0E850AFF87C5FBF7FFFFFFFFFFFFFFFFFFFFFE0007 -FFFFFFFFFFFFFFFFE0FFFFFFFFFFF9DFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFF8B546159A37031F79A76FEDFBFFFFFFFFFFFFFFFFFFFFE0007 -FFFFFFFFFFFFFFFFE0FFFFFFFFFFF9DFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFBFFFE55804560D1986FEA5A97FB5DFFFFFFFFFFFFFFFFFFFFF0081 -FFFFFFFFFFFFFFFFF6FFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFF9FFFE9D0E55A3568B7FC9D2BEEFF5FFFFFFFFFFFFFFFFFFFFD0001 -FFFFFFFFFFFFFFFFCEFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFF2FFFF05A01A445A847FD73D4FEBDDFFFFFFFFFFFFFFFFFFFFF0001 -FFFFFFFFFFFFFFFFE6FFFFFFFFFFFD3FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFE2FFE04810B0BA301FF54A98EBEEFFFFFFFFFFFFFFFFFFFFFF0000 -FFFFFFFFFFFFFFFFFEFFFFFFFFFFFE9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFF371FF80001E142E04FF1587D7E7EBFFFFFFFFFFFFFFFFFFFFF8000 -7FFFFFFFFFFFFFFFEEFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFBAEFF2003ABC7A254FE7E7C5EF77FFFFFFFFFFFFFFFFFFFFFE8100 -3FFFFFFFFFFFFFFFE6FFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFF1689FB85E0D15AD26FF0B875BF5ABFFFFFFFFFFFFFFFFFFFFFE010 -3FFFFFFFFFFFFFFFF0FFFFFFFFFFFD9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFE7C72D50A150B8B0356AF55EFD7FFFFFFFFFFFFFFFFFFFFFFC000 -3FFFFFFFFFFFFFFFE0FFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFF37C71F09F1C12441AB8AAD4EFB7FBFFFFFFFFFFFFFFFFFFFFFE000 -1FFFFFFFFFFFFFFFE4FFFFFFFFFFF9DFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFB73D972C88438742D1AAA5617F378FFFFFFFFFFFFFFFFFFFFFE000 -3FFFFFFFFFFFFFFFA6FFFFFFFFFFFDDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFA9D2E1587522A80C2C0F15ADDDBBFFFFFFFFFFFFFFFFFFFFFFF020 -1FFFFFFFFFFFFFFFFEFFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFAD4BAC2F80A0E582D021F0B0FFBF5FFFFFFFFFFFFFFFFFFFFFD020 -9FFFFFFFFFFFFFFFE6FFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFD5F8D450B4AA4A0F4E0F4F59E6DBFFFFFFFFFFFFFFFFFFFFFFF800 -07FFFFFFFFFFFFFFF6FFFFFFFFFFFE5FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFD5A75646D0A1201430E86CDD77FEBFFFFFFFFFFFFFFFFFFFFFF800 -17FFFFFFFFFFFFFFF6FFFFFFFFFFFD3FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFD43A5A2F150F0207C265A2F1FDD3FFFFFFFFFFFFFFFFFFFFFFFC00 -07FFFFFFFFFFFFFFC4FFFFFFFFFFF99FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFD58B4B01D0602090583C2E0DFF7BFFFFFFFFFFFFFFFFFFFFFFFC00 -07FFFFFFFFFFFFFFE0FFFFFFFFFFF9BFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFEE350A950E040116A0D08978FFDC9FFFFFFFFFFFFFFFFFFFFFEC00 -0FFFFFFFFFFFFFFFE6FFFFFFFFFFFDDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFEBD5EAD0B8004716B44A8D876FBFDFFFFFFFFFFFFFFFFFFFFFFC00 -07FFFFFFFFFFFFFFE6FFFFFFFFFFF9BFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFEE1695470601A542D03442F9FEAFCFFFFFFFFFFFFFFFFFFFFFFE00 -03FFFFFFFFFFFFFFEEFFFFFFFFFFFDDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFE5F2D5581D42A76A9DA715C1BBEFDFFFFFFFFFFFFFFFFFFFFFFF81 -43FFFFFFFFFFFFFFF6FFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFE6AD754313A4D33854390ABCFEFD1FFFFFFFFFFFFFFFFFFFFFFE00 -03FFFFFFFFFFFFFFEDFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFF1B85C191D87570F44C702D1BF7DFFFFFFFFFFFFFFFFFFFFFFFF80 -03FFFFFFFFFFFFFFEEFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFF5A6476140A8782C58A92A15F7EFBFFFFFFFFFFFFFFFFFFFFFFF00 -03FFFFFFFFFFFFFFE4FFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFF4AD168476970AA5C064A973DFEFFFFFFFFFFFFFFFFFFFFFFFFF00 -03FFFFFFFFFFFFFFE0FFFFFFFFFFF9DFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFAB509E030582816285E3F19FBF5FFFFFFFFFFFFFFFFFFFFFFFF80 -03FFFFFFFFFFFFFFE0FFFFFFFFFFFD5FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFA958754AA45A0C1E870316B7EFF6FFFFFFFFFFFFFFFFFFFFFFF80 -03FFFFFFFFFFFFFFECFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFBD568A82836281A3C0A8549FBFFCFFFFFFFFFFFFFFFFFFFFFFFC0 -01FFFFFFFFFFFFFFE6FFFFFFFFFFFDDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFB558340A183A0E8A47A3579FEBB5FFFFFFFFFFFFFFFFFFFFFFF80 -15FFFFFFFFFFFFFFEEFFFFFFFFFFF9BFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFD5A2478154AD16754A4D6A3BFEF5FFFFFFFFFFFFFFFFFFFFFFF81 -00FFFFFFFFFFFFFFE6FFFFFFFFFFFC9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFDC9F488B0A950B8121C5AABEF7BFFFFFFFFFFFFFFFFFFFFFFFF80 -00FFFFFFFFFFFFFFBEFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFCBA0326478C508F48A4A2E7FBBFBFFFFFFFFFFFFFFFFFFFFFFFC0 -00FFFFFFFFFFFFFFE5FFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFEEDF0D020B4782D0E943B15EFFDFFFFFFFFFFFFFFFFFFFFFFFFC0 -01FFFFFFFFFFFFFFE4FFFFFFFFFFF99FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFEAE1AA442D548D380A8AD4F7DDFBFFFFFFFFFFFFFFFFFFFFFFFC2 -01FFFFFFFFFFFFFFE0FFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFB1E894285C584D0A142D4FEFF5FFFFFFFFFFFFFFFFFFFFFFFF80 -01FFFFFFFFFFFFFFE4FFFFFFFFFFF9BFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFF46C2C08A93607084789D17FEEF7FFFFFFFFFFFFFFFFFFFFFFFC0 -88FFFFFFFFFFFFFFEAFFFFFFFFFFF9DFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFB6B86C074D0C0B814A45BFFFFFCFFFFFFFFFFFFFFFFFFFFFFF80 -03FFFFFFFFFFFFFFEEFFFFFFFFFFF9DFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFC3D05014CAE07254189A5DDEBF1FFFFFFFFFFFFFFFFFFFFFFFC0 -01FFFFFFFFFFFFFFEEFFFFFFFFFFFDBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFF5C9D0E06AB44AA8588E87FFDBBDFFFFFFFFFFFFFFFFFFFFFFF80 -03FFFFFFFFFFFFFFEAFFFFFFFFFFFDBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFC2642051697C2D4A0414BEFFFF7FFFFFFFFFFFFFFFFFFFFFFF80 -01FFFFFFFFFFFFFFF6FFFFFFFFFFFD9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFF4B2E0C4BA322A5C9C0B0F7BEDBBFFFFFFFFFFFFFFFFFFFFFFF00 -03FFFFFFFFFFFFFFE4FFFFFFFFFFFDBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFF820563434345C14034003DFEBF7EFFFFFFFFFFFFFFFFFFFFFFD02 -83FFFFFFFFFFFFFFE0FFFFFFFFFFF99FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFB21038462A1A8D689553FFFBFDEFFFFFFFFFFFFFFFFFFFFFFE800 -07FFFFFFFFFFFFFFEEFFFFFFFFFFFC9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFC9400101A564E130D4FEFFFEFF7CFFFFFFFFFFFFFFFFFFFFF8000 -07FFFFFFFFFFFFFFE6FFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFD7C01069026468345BFDDDFEF7FFFFFFFFFFFFFFFFFFFFE00000 -07FFFFFFFFFFFFFFF6FFFFFFFFFFF99FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFF5552C071746854A059FFFFF7FBD4FFFFFFFFFFFFFFFFFFF800000 -0FFFFFFFFFFFFFFFEEFFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFDE5E54214427070161FFFFBF6FFFFFFFFFFFFFFFFFFFFFC000020 -0FFFFFFFFFFFFFFFEEFFFFFFFFFFFDDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFE54B703130BC021553F777FFFBE5FFFFFFFFFFFFFFFFFF8000000 -1FFFFFFFFFFFFFFFE6FFFFFFFFFFFDBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFE72B1281C881E22061FBFDFB7FBBFFFFFFFFFFFFFFFFFF8000000 -3FFFFFFFFFFFFFFFEEFFFFFFFFFFFD3FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFF0D56A342C008458A7FFFFFFBBEDFFFFFFFFFFFFFFFFFF0000000 -3FFFFFFFFFFFFFFFF6FFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFF2D16B94600060688FFFFFFFBD7EFFFFFFFFFFFFFFFFFF0000100 -FFFFFFFFFFFFFFFFCEFFFFFFFFFFF8BFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFB3492432808814A4FFFFFEE3FFFFFFFFFFFFFFFFFFFFF0502000 -FFFFFFFFFFFFFFFFECFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFF9D0A942A02840380FFFF7FC4D6DFFFFFFFFFFFFFFFFFF0000001 -FFFFFFFFFFFFFFFFEEFFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFF93E1E83816345227FFF7EF55FBCFFFFFFFFFFFFFFFFFF0010007 -FFFFFFFFFFFFFFFFC0FFFFFFFFFFF99FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFF9D244A014B8059A7FFFFFB54BEFFFFFFFFFFFFFFFFFFF000002F -FFFFFFFFFFFFFFFFE4FFFFFFFFFFFDDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFC2F1321030902E4FBF75EF14FDDFFFFFFFFFFFFFFFFFFE0002FF -FFFFFFFFFFFFFFFFFBFFFFFFFFFFFEDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFEA91CA81CA91F24FFFF0FA36DF1FFFFFFFFFFFFFFFFFFA8008FF -FFFFFFFFFFFFFFFFEDFFFFFFFFFFF5BFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFEA2C2B06A5062DA7FFA27CD87DFFFFFFFFFFFFFFFFFFFF078FFF -FFFFFFFFFFFFFFFFEEFFFFFFFFFFFDBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFF33FF1D32100B522B4D7FE5CFDADEEFFFFFFFFFFFFFFFFFFFFFBBFFF -FFFFFFFFFFFFFFFFFCFFFFFFFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFF955FD14850A930987AFECA8D2D67FEFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFCEFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFF6ECA8DA406AB40E5AA7FAAECB6B777FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE6FFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFF93E150B80A54A01C2A7E2F1E8FC3FAFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE2FFFFFFFFFFF9DFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFAB2D0E8703D2A0E5AB38A958BC3B5DFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFD0FFFFFFFFFFF9DFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFB1740254285A4356A972D5D95347F5FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE4FFFFFFFFFFFCBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFF8F57815001416132B54A7C044FA2B5FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFEEFFFFFFFFFFFDDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFC5438163B4E86CA8309D783F1E1FDFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFEFFFFFFFFFFFEDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFE755C580910A40AAF82C4A8E0EA9EFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFEEFFFFFFFFFFF9BFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFD5AA9004D0587A7548F69C1F2713FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE6FFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFE5CAD460343458345C250F06A993EAFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFEFFFFFFFFFFF85FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFF6AB53894E8582B160D5E8D4EE5DBEFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE8FFFFFFFFFFF99FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFF0E8586060B40A1D2B17271725C2F5FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFA4FFFFFFFFFFF9DFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFF2A72B9550512850A0D0180A9D2DF8FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFEAFFFFFFFFFFFC5FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFA34AD10094C0D52A34A650AD5E9EDFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFECFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFBD322C2A0D2852860743D171E88F5FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE6FFFFFFFFFFFDDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFE5A8B5A054B05C3C5A8E4B1E2E93FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFCFFFFFFFFFFFDBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFF9CAE4A8002A042844091E0CD2A9DFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFCCFFFFFFFFFFFD9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFE2E95AE070B03E162E162655ABD5FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE6FFFFFFFFFFF9DFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFCF150540405149506834840A2D1EBFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFEEFFFFFFFFFFFD5FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFE2D42D30220426468C96A3CBE1E7EFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFC0FFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFF5170150C144A170345A143AAC9F5FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0FFFFFFFFFFFD9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFB5A8D5C050A8102D56BC5C8BC4FDFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFEAFFFFFFFFFFF8BFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFBFF1E0E548C48EB428048D0AAD4B854FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFEEFFFFFFFFFFFC9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFD4FFC2E050A068A54A04161C275689F5FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE4FFFFFFFFFFF9BFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFA5FDB0703454AC543902860B95AE9BFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0FFFFFFFFFFFE9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFEB9FC8D848503A6724080F42884AB4EFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFDAFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFF47EF55AF40A500E050316AEC7A5B3FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE6FFFFFFFFFFF9DFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFF171A15C2950AB02840A0583406AF0FBFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFEEFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFF7CCF0EBA160556222285E215C9F4BDCFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFCEFFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFF576181A11015480892A43C1D0D1A9DFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFECFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFE5D9C96AD1602822408D148C0A2F4BF5FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE7FFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFF56E450B412156A142E4800572F1F2DDFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFDFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFF4B570A470B07D10021500268916E1E3FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFECFFFFFFFFFFF99FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFF7970205B0D145D1E1D0A836290A97FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE8FFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFF874E81258132B04812685C2C149EDEBFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFD3FFFFFFFFFFFD9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFB97A811644361F04138852AA526257FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF9DFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFAC42C080D02854A04C285C3602047FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF99FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFB75B52A0500D930162A528B02234BBFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFD522D0D8502A5AA0381A320C8344EDBFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFF9E9740A50213C9D1A8F11060A25CBF5FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFD3FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFCAA1785C0656AA528F0C8311CB63FBDFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFCF538B531352B2D2E87A80584D0B7CBFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFE150286EAC168D068743056292EDFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF99FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFE750A192A4D274A2B928180A4F0BDEFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFDBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFBCAC1D1B542B5682C28156A550F4FB3FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF9DFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFE5B0616950380AAE1ABC0A060F44E7FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFDBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFEBDD6AF108F4CAB8581D8D4729509BABFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFDE245B131692A0C040456100A054AC2FBFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF4BFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFE1F028680B5EA85CAE16824355A353C3F7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFD9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFCF962B408542B02AB0B2481A792956ABAFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFE95A2D798C60142644098629C2C172D9A7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFF6EBA54080C474183428542F0C251AE9FBFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFD9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFC7FF13E92A807215D2642A54A11E2C5AA5577FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF9BFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFF8FFF7A341A060B4583838DD090E0E46AB55DBFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFF07FF9AE42A8058447046A248875A8017D1CFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFF87FF8ED62B4225415140A168942E545D7EAF7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFF87FFEB3889181C3A140B5528171B92C19167FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFD5FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFF83FFC6CB810035A251E8B0680ACD403D5E837FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFD9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFEBFC3FFFD4A60280729928B519502B1F0DD5575FFFD7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFDBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFD3F43FFD7A151E815A0E26528951ADC30478747FFD7FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFEDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFC3FC1FFF0BF5C16078541C1C2E828A4A83A7D70FFBDFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFD9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFC1FC1FFF2D122B508B8241620244D6AA95B85A3FF6DFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF9DFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFC0FC1FFFAAD170582D222C58AD06834AC6E35793E9F7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFE0FC1FFF8B59274010C0E468C4237AA8353957178F5FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF85FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFF07E0FFFED521D3C1F21548C0782D1759AB0B2973AE7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFDBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFF0FE0FFFE5CB418041A0707040A44A2D16868B10CBBFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF4DFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFF07F07FFE43C46AC16A01A834381F8548B70B9343D57FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFF03F0FFFF3D752B458C40811004708578B51A921D55FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF99FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFF83D0FFFFA0D0185024400038140B458CC68F4261F8FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFD9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFF83F07FFFAE5D874281E081A8903854AC3B05513D4EFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFDDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFF01F03FFFF55A2402302C1688468D4A244AC5A0B27AFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF9DFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFC1F83FFFC72B93D34AA610B4202C0EB4269CC3578BFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFC0F85FFFF4AD400A96A607416095CAD4E944683A36FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFC1F81FFFF6A56091589038B8A8150554A59B8F4BD7FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF5BFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFF1FC1FFFFA94781D2B43A741525281A05C48853EB5FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFCBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFE0FC1FFFFCE5281D2D4435585F0F86C267C815E2D4FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFBDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFF07C1FFFFB52AE06AB40AAE8A518557814081BAB54FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFD9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFF07E0FFFFE5AA86E2D0EAE0A850386C9D6A150E976FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF9BFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFF87E0FFFFF42F503F16A715254B9513617050EB5DDFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFE83E0FFFFF9A163D0C2D1323C288CC94D81472B45DFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF89FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFF83E0FF8CF6B90CAF46A52987A9D1A9402D54D57A6FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFC3F0FFA12215E2E522B41E0A844CA1030542E5497FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFD9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFF81F07FB6F0268E92A150A952F078A0C856A6D42E4FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFCDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFC1F07FD0B902A168A5508E0ECC0A048146E170BBDFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFEDBFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFE3E1F07FDF274003F288AA7158B4501808DA8B14AE9FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF9DFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFF83C0F87FDA987004584E83C6255221408262E870B4BFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFF83E0F83FEED74A41A04540B03A7C04300D5A8709D7DFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF9BFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFC3E0783FEA5AAB0A9D4746C2934A01C85478713456BFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF89FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFC3F07C1FE7C3714264289558752A14A016A70683617FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF8DFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFC1F07C3FF62C9D231183156157A852785AB50A957F3FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF91FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFC0F8340FF170B4584420141C1DA106804A94C1E0A8FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF9BFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFF0783C0FF7AE572950A112E1E4D16A781E1B8D45AF7FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFD9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFE0783E0FF8D83A9458341C910A80A9D1E592C1407C7FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFD9FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFF0EC1E0FFD2D01E530D06A50F8549F052E168D47A77FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF9BFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFF0781C0FFE9A4A552C100B432343655AD45A1C4A5A7FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFDDFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFF83C0F07FAC991D4A870B942941C950884A3870BCAFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF99FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFF83C0E07FE970E4A848245A2E12AB5E2F45E068D56FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF91FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFF81E0F07FF50A07A145A150A160A872291A502C1781FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFE10FFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFC0E0783FFABC14380015029106950A05A1D0A0D465FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF00C2FFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFC1F0F87FFF8343C0802002D468583C1C0D50904605FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFE599AFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFE0F0783FFCBCA0902A0101550B51A052B0C6053836FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF8F1DF1FFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFF7FE0F0383FFEC4A0C0A950F1540D4095081F4600C5D3FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF3C183EFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFF8BFE0383C1FFF362C010682915A0562F048542C2C225CFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF38880F3FFFFFFFFFFFFFFFFFFFFF0 -FFFFFFF81FF07C3C1FFF50A400B468012A130A01A95282D0856EFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFCE389A3BFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFF81FF838341FFF021308CBCAD0A201A5F0A17E81383F3FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF9CE80F1CFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFF81FF83C1C1FFC100068342E182B158502A18301E821A9FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF19F83F8FFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFE07FC1C1C0F450981B44AA14A008A34B214AC16985EEEFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF13FC9FE67FFFFFFFFFFFFFFFFFFFF0 -FFFFFFFA0FF80E0E1836AD540E4C9D0A050A96C1C0A0546C2A59FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFE67F89FE37FFFFFFFFFFFFFFFFFFFF0 -FFFFFFFF07FC0E1E05C5A2F2D7327552140A02061AA14B85C7A4FFFFE3FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFEE3FC3FF37FFFFFFFFFFFFFFFFFFFF0 -FFFFFFFF03FE060F0676ADAC552785CA042042E1F8F07C745DFDFFFF83FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF8CFFE1FF9BFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFF83FC0F0701AB70D2508952281008028642132391A2D0FFFF03FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFDD8E97FFFFFCCFFFFFFDDFFFFFFE1A87FFFFFFFFF0 -FFFFFFFF80FE060507AB962E468581E2C66400C2B8151B9C8E5DFFF803FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF8542C1FFFFFC9FFFFFFD5FFFFFE5CAA9FFFFFFFFF0 -FFFFFFFFC1FF070380D472B558044811231008452E02ADD0F169FFF807FF7FFFFFFFFFFFFF -FFFFFFFFFFFFFF8C1609FFFFF99FFFFFFCDFFFFFE04A147FFFFFFFF0 -FFFFFFFFE1FF83830033171342C1E8414050305C9D0EAA6A032FFFC003FC137FFFFFFFFFFF -FFFFFFFFFFFFF501C2E0F8F878141A0D040F5FF782D1A45BFFFFFFF0 -FFFFFFFFC0FF030380DC1A953D0624068100D103F549D528D4ABFFC007E0023FFFFFFFFFFF -FFFFFFFFFFFFA01A5910040800080001000102810874B8103FFFFFF0 -FFFFFFFFE07F81828056AA91D0C0AC0A6030591E178545A946AFFF8007C0003FFFFFFFFFFF -FFFFFFFFFFFF001AA9480440A008042010895209069668113FFFFFF0 -FFFFFFFFF07FC1C182569B4E2D01830391029401D0684C224EB3FE000FC0003FFFFFFFFFFF -FFFFFFFFFFFF2001B4D0A50A9128040A04A004A802A1D8243FFFFFF0 -FFFFFFFFF81FC1C1C183A160F574A828540248274B8185A103B3FE000780003FFFFFFFFFFF -FFFFFFFFFFFE081CA6500D42854274A8B1A8F42806AF54273FFFFFF0 -FFFFFFFFF81FC0C1C14ADEA1168950A980895099BCB12AB32AD7FC000F80003FFFFFFFFFFF -FFFFFFFFFFFF0205A8D0E875294C98561E0545820289A0B17FFFFFF0 -FFFFFFFFF40FE0E0C1E0F0A898B452A92A064A04CAC02A9129DFFC000F00003FFFFFFFFFFF -FFFFFFFFFFFE581516010F158AC34150E870F17024161C0A3FFFFFF0 -FFFFFFFFFC1FF06060F3572403C020D47115383C6E562F462667FC000F00007FFFFFFFFFFF -FFFFFFFFFFFE540945E0E0D478B568942A568F52054D8448FFFFFFF0 -FFFFFFFFFC0FF02060F96D350234061B00058812AD402540BD6FFC000E00007FFFFFFFFFFF -FFFFFFFFFFFE4009162056320E958AD48A66695081549C4E3FFFFFF0 -FFFFFFFFFE0BF06060BD4AC5A0E8086CA056B44E16408A8052C778000E0000FFFFFFFFFFFF -FFFFFFFFFFFF1022158950E930552A2968152610064A24143FFFFFF0 -FFFFFFFFFF03F030307A169D89070B87A350E07AF57474EC5E2CF8000A0000FFFFFFFFFFFF -FFFFFFFFFFFF4100D4A015289C32A8AF07250B8103A1B0743FFFFFF0 -FFFFFFFFFF03F810707FAB70F058352AA06A180D47A9D601538178001C0000FFFFFFFFFFFF -FFFFFFFFFFFE001625408702D1C95522D0A25428064D4C143FFFFFF0 -FFFFFFFFFF81F818307FC7CE970105A1B0AA7452B4B05A094E8778001C0001FFFFFFFFFFFF -FFFFFFFFFFFF2001E1B0B13A9C789D2E06BB57A903A1E0713FFFFFF0 -FFFFFFFFFFC1FC18107EB170E90E158A412B462742E4B2807294F000180001FFFFFFFFFFFF -FFFFFFFFFFFE28143A542D4B0783A1CB5188D050042C542D3FFFFFF0 -FFFFFFFFFF81FC18303FF54A92C064E972B432946A341E01AD167000180001FFFFFFFFFFFF -FFFFFFFFFFFF0200C2D0C964E9709C5A0F0E4540012A90607FFFFFF0 -FFFFFFFFFFE0F60C183FF8B65CA0561D098788C5A6D4E340B0317000180003FFFFFFFFFFFF -FFFFFFFFFFFE501D0C2816060A85A2D0E0C2D0700415140A3FFFFFF0 -FFFFFFFFFFE0FE04183FFCA1D2E0B2D4AA19285C96560A00A0CEF00018C003FFFFFFFFFFFF -FFFFFFFFFFFE5003278141B122342A542A5A8D12055C940ABFFFFFF0 -FFFFFFFFFFF03E000C3FFF150F452D4B41C4E0722B58B460112A500030A007FFFFFFFFFFFF -FFFFFFFFFFFE40085A2056255A8549852155A2C08054AA523FFFFFF0 -FFFFFFFFFFD03F82041FFF017130B46CB1569C168D4A914001A36000104007FFFFFFFFFFFF -FFFFFFFFFFFE000A168015C150A562E1346C5608025628143FFFFFF0 -FFFFFFFF8FF83F060C1FF41089C2A542C168F05A65504C2C1D2B700030000FFFFFFFFFFFFF -FFFFFFFFFFFF4103D160A5F8D41A142B0FA55B0001A5A0303FFFFFF0 -FFFFFFFE0FFC1F810C0FA55029221D1A912A14A985A1D0A186A5600040000FFFFFFFFFFFFF -FFFFFFFFFFFF2814A450860684EA94C950A950B00695582C3FFFFFF0 -FFFFFFFF03FA2FC0061F05CB0142E52968F258AE66B802171793600020000FFFFFFFFFFFFF -FFFFFFFFFFFE0101A9502152B151150E1526568903A140917FFFFFF0 -FFFFFFFF03FC0FC10000B46C1403152B428C40A142A000D15AD8200040000FFFFFFFFFFFFF -FFFFFFFFFFFE0014B25000000010000000000040083954007FFFFFF0 -FFFFFFFF83FE0FC08203D361D020D2397031081D46500B50A3D5200040001FFFFFFFFFFFFF -FFFFFFFFFFFE00030A8000000000000000000000040A94007FFFFFF0 -FFFFFFFF80FE076182085C1E0E830205038000E1F0D0A950B854200000001FFFFFFFFFFFFF -FFFFFFFFFFFE000C9A2000000201000000000000015834003FFFFFF0 -FFFFFFFFC0FF03D0812152B570A068580A10081C8AA32782E5B20000C0003FFFFFFFFFFFFF -FFFFFFFFFFFE10064F004085008080C068502850044E0C0E3FFFFFF0 -FFFFFFFFF07F83C0001F1B930ED1A055A1402052AD52A9625D2D000080003FFFF26FFFFFFF -FFFFFFFFFFFE400844A240B04A154A142A15834001D3A84A3FFFFFF0 -FFFFFFFFE07F01F040E4EAE4E928384E2710850A4681D552E4AA000080003FFFF0027FFFFF -FFFFFFFFFFFE101616000003428A83C150A03890003C2C1C3FFFFFF0 -FFFFFFFFF87FC1F00117AB27A9B0D122C0E0B07A05A675262EA7000000007FFFE0022FFFFF -FFFFFFFFFFFF0101616080025028341D1CAD5A890585A0653FFFFFF0 -FFFFFFFFF81FE1F800722D5034480D0B4120808D82C158A952D9000000007FFFE0000FFFFF -FFFFFFFFFFFF1010A5100002814295AB4168D0B402AD48343FFFFFF0 -FFFFFFFFFC0FC0F8078BC550916800E964A8582D4E05168F4BA500000000FFFFE0001FFFFF -FFFFFFFFFFFD020321D08002A178950C1D2656A00785C0A17FFFFFF0 -FFFFFFFFFC0FF03C1D3234000408218292A142D1C0C86A0432DC00000000FFFF80001FFFFF -FFFFFFFFFFFE0014A8100000044A6543854BC15000E270707FFFFFF0 -FFFFFFFFFE07E03C02E990895008203C8E0108140507AB13A8D000000000FFFF00007FFFFF -FFFFFFFFFFFE50160A8140050200000020080140041B100A7FFFFFF0 -FFFFFFFFFF01F83C5CAD568C068140814340C8248A122C16BD5C00000001FFFE00007FFFFF -FFFFFFFFFFFE400940A0400000000200000602008158A4487FFFFFF0 -FFFFFFFFFE83F03843605AB55A403A1D0D0483130B01A352A0D200000001FFFE0000FFFFFF -FFFFFFFFFFFE500C2E0140040080000100042000004CBC1E3FFFFFF0 -FFFFFFFFFF80FC1E08962345A2C4C9060140681A941E948AB32D00000003FFFC0000FFFFFF -FFFFFFFFFFFF000291A0000010000200000000000154A8403FFFFFF0 -FFFFFFFFFFC0FC1F001229749A582D028542A68285A2D428B0A800000003FFFC0000FFFFFF -FFFFFFFFFFFE301A9508000200010080C080000008BC4C1E3FFFFFF0 -FFFFFFFFFFE07E0F000002C2E160754005283D0A1015560E551300000003FFF80003FFFFFF -FFFFFFFFFFFE0201218081008020000000000000068360153FFFFFF0 -FFFFF9FFFFF0BC500C4A013A3D28058804C342A000A9582506A900000007FFF00007FFFFFF -FFFFFFFFFFFF2010A8502100000004000180008002AD52343FFFFFF0 -FFFFF9FFFFB07E0AC543C04AB24A316024A0568C02970F12C1D400000007FFE0000BFFFFFF -FFFFFFFFFFFE0805A91020000040800001000000022950A17FFFFFF0 -FFFFE0FFFFF0302E1D2D544B078809A9422152E0E0E8281D0A4400000007FFE0000FFFFFFF -FFFFFFFFFFFF0004A0C10000000000000200010005A1A0107FFFFFF0 -FFFFE03FFFF805D3D749D08C5A2074B900810A156A550B4581500000000FFFE0001FFFFFFF -FFFFFFFFFFFE10090E4000000000800000000000004E580A3FFFFFF0 -FFFFF03BFFFC144D4A2C4E83418122A942C0A8744C5E2C148D5A00000009FFC0003FFFFFFF -FFFFFFFFFFFF0009D0A100000002000000040000055144C2BFFFFFF0 -FFFFF018FFFE56A0F0B57A242A041A5523014BD183402152906800000001FF00003FFFFFFF -FFFFFFFFFFFE50281E20000000000200400200000874BC1C3FFFFFF0 -FFFFF800FFFE06974B928B428098095EA064B15C0D6E144A072A00000001F700007FFFFFFF -FFFFFFFFFFF7000AC08000000000000000000000019720003FFFFFF0 -FFFFFC003FFF88F0E85D2D5400562A438102ACAA91407028149800000001F80000FFFFFFFF -FFFFFFFFFFFE00123C580000000000000000000002A858143FFFFFF0 -FFFFFE002FFE8396AEC5A76041322D5A90423606172D1620156800000001C00001FFFFFFFF -FFFFFFFFFFFE0012AB4008000000000001005000062F00003FFFFFF0 -FFFFFE001FFFC05A293E9156064A1561C42245A982B049080A9400000001000001FFFFFFFF -FFFFFFFFFFFF0015A010040280000408040110A002A350207FFFFFF0 -FFFFFF000FFFE34BA7C2F56A112A052C7C051C854A9142810BE000000003000003FFFFFFFF -FFFFFFFFFFFE00162B4029028142406481704840020C142D7FFFFFF0 -FFFFFF8003FFE034152B46A906A102E15222626548582A160C1000000000000007FFFFFFFF -FFFFFFFFFFFE400180E0D0503810101A0606850085C380627FFFFFF0 -FFFFFFC001FFF093D2E970AD52953A3D5A168AD4AAD0A81028D80000000000000FFFFEFFFF -FFFFFFFFFFFE100D96A042840285A39030102450045A9C063FFFFFF0 -FFFFFFE001FFF02D1286170582E008A42120B0342642214E17200100000200001FFFFC7FFF -FFFFFFFFFFFF5002D26170D1183518D48A170B528141A052BFFFFFF0 -FFFFFFF0007FF811D872581528960F47AD1280428B63817034A80D0A000000001FFFF83FFF -FFFFFFFFFFFE601054001A254A054284AB552AD001F49A1A3FFFFFF0 -FFFFFFD8001EFC056A942B54E85000729502B81EA40284AA1381B1C0400000005FFFF817FF -FFFFFFFFFFFF000A120801205080122554A015100452E8443FFFFFF0 -FFFFFFF80054FE002A5A0756AC4A170AC543652A854854E81CA30CA6000000007FFFC003FF -FFFFFFFFFFFF2000D9501518142A150546AB518002A548343FFFFFF0 -FFFFFFF800003E01A9C2A158547E0950B50A1D03C381028402A0F0F130000000FFFF8003FF -FFFFFFFFFFFE201AA64083038342D0AAB5A8D4B0062B54283FFFFFF0 -FFFFFFFE00001F00AE4A800297090560510154084010BA34168354150A000000FFFF0000FF -FFFFFFFFFFFF0A02A150A14AB14A352A850A552805A9D0A97FFFFFF0 -FFFFFFFF01000F80D568500854285A8C56824705A2014AD428946868B0000001FFFE00003F -FFFFFFFFFFFE301C0A900E06054180D2B1D0D058041E0C0C7FFFFFF0 -FFFFFFFD80000DC00589D2A3550000F038855804000127040613A94581400003FFF800003F -FFFFFFFFFFFF0002C2C0A0D56A15381C8E4E234205428442FFFFFFF0 -FFFFFFFFC0000FA050757C108E95061D0B034241E844E97028582D5235200007FFF800001F -FFFFFFFFFFFED0055CA1522119848AC46913A9008158A85E3FFFFFF0 -FFFFFFFFC04007E002954BC0C280E0542841205409070500014D8483D1A0000797E000007F -FFFFFFFFFFFE000142A140BC68B56A942C1C264202572C463FFFFFF0 -FFFFFFFFE02007F00A6C2E1C2B44A1468342E0A2A048B9581424110B248A000E01C000003F -FFFFFFFFFFFF4000446050A81A1502230B938BA481E0A8283FFFFFF0 -FFFFFF5FF81001F00B76A34089101C0A05420A028383C16804000029B0A8001F00000001FF -FFFFFFFFFFFF20121508030BC088D0C8E0A83028062DA82E3FFFFFF0 -FFFFFEBFF81801D804078B5605090503A16015A2086850AC040F44854A85003A00000002FF -FFFFFFFFFFFE8102E068B528342A1C071495478005A150F07FFFFFF0 -EFFFFE07F40C01FC0150F1502408150A8500458285C1C0A000E170B53A55003C00000007FF -FFFFFFFFFFFE20182E508D47074291CAC5E8707804394C1C3FFFFFF0 -C7FFFE01FC0600FC040E0568D100D56144A06A650A200C0C42B54AC5099080B80000000FFF -FFFFFFFFFFFF0005A15020108040040204020400038BC0207FFFFFF0 -C07FFD01FD07803E0002BC36100896B106878B8028D582D160D0745C2D4E00F80000003FFF -FFFFFFFFFFFE000C020000000000002000000000007834007FFFFFF0 -803FFF00FF01C03F0009C3A9406058A84001220446060F2180D6A902E15001F80000003FFF -FFFFFFFFFFFE000B42A0000000000000201000000D1E88007FFFFFF0 -E00FFFC03F81400F80003A15160442E52382A94028512940B85A954A860001E0000000FFFF -FFFFFFFFFFFE000952A10081020100100800084000D4AC423FFFFFF0 -F00FFFE01F00E00701806AA5E8303818000CA900AB2605809022E1E8700007C0000001FFFF -FFFFFFFFFFFF100C568102000080C05060542210001C280E3FFFFFF0 -FC07FFF01FE0F00000800A930A148AD28172A94A9C521C604C1B1543400007C0000003FFFF -FFFFFFFFFFFDC00350607030482C1D0C0C070B0102C5E0203FFFFFF0 -FF00FFFC07E03800A0000954E8560D0E400E5A8185A0E1A2922950A890000FC000000DFFFF -FFFFFFFFFFFF000E2D088502A14084E3B0A050900295183C3FFFFFF0 -FF807FFC03F03E00AE004542A86981E140F018885C904E225E0D4A8000001F8000001FFFFF -FFFFFFFFFFFD2301E150856AB474342A16AD55A80B82D0A17FFFFFF0 -FFC01FF683F80F003550013A140E068A810B868342E030A12A8570000000170000003FFFFF -FFFFFFFFFFFE2014B4C0060B850A954B45A2D06004B914287FFFFFF0 -FFF007FF00FC07009488002AD0A3502960BD1A856A110E010A85A00100003E000000FFFFFF -FFFFFFFFFFFE0002825068454170542815169528050784AA7FFFFFF0 -FFF801FFC03C07C014D0000A02AD4186A28542C972E06880AA40000100007E000001FFFFFF -FFFFFFFFFFFE10153AE052388245AA130AC2415084EA74287FFFFFF0 -FFFE01FFE03E03E082C1000000A568143A980A058D132A00A140014200007E000001FFFFFF -FFFFFFFFFFFE500C8A0142A74B0549D0E874A9500059044E3FFFFFF0 -FFFF003FF01F80C05ABC08010AB124C5A0A4A91468608C10AC8005050000F40000007FFFFF -FFFFFFFFFFFF100954A0589478B922440A17AB408194A8063FFFFFF0 -FFFFC01FB80F40F020A500142858B8068D022A968781A060A46015860001F80000007FFFFF -FFFFFFFFFFFF1016160846AB030583C1E060687008742C163FFFFFF0 -FFFFF007F803C0785B560006A090E020A170AC1A3952400A130005860001F00000001FFFFF -FFFFFFFFFFFE8108C861A064502868293AAD0E05068BE0703FFFFFF0 -FFFFF803FE03E0781A5228121C5E1C8881C2930B8AA0406854A07A860001F00000001FFFFF -FFFFFFFFFFFF200AB5188703452915A95168B0A40229081C3FFFFFF0 -FFFFFE01FF00D03C0DA7010231A8D124702A5C3B562806890B8142CE0001C00000003FFFFF -FFFFFFFFFFFE0916A140A14AB56AB52E15AD54AA038D50A17FFFFFF0 -FFFFFF807F80781E0D021C00150B06804082C48150D014A858852A0E0003C00000003FFFFF -FFFFFFFFFFFF0004A8502C4A9128B40B068957A804AAC0B87FFFFFF0 -FFFFFFC01FC0740702E0915010884000588D0E2B02800D91A201E95C000700000000FFFFFF -FFFFFFFFFFFE28120B102B5365528312B16AAC600D2F14047FFFFFF0 -FFFFFFD007F03C0F0EA01C484081028100C5E170E0702E40AE0C1D48000700000000FFFFFF -FFFFFFFFFFFF4001E0E02834144CAC8C2E2BAB8281926052FFFFFFF0 -FFFFFFF803F01607C06808B848016A3402128A05834541D0C052AC18000600000003FFFFFF -FFFFFFFFFFFE101C5E814A930A8342D1A854A57008689C163FFFFFF0 -FFFFFFFE01FC0603C2B5078500C4A994400368743052AD4AB40A8390000000000007FFFFFF -FFFFFFFFFFFF500814A052547A0D1295261B16910B9528547FFFFFF0 -FFFFFFFF007E0783A05C3855005426578405A0408141B170706A743000000000000FFFFFFF -FFFFFFFFFFFE500C14080A0101824180C060E848007428143FFFFFF0 -FFFFFFFDC0570100E0C683D1C050B930D83C28081505958A912BC1A000000000003FFFFFFF -FFFFFFFFFFFF0005958800000000000000000000069748003FFFFFF0 -FFFFFFFFA00F8040B05A1C56311A96CB5503D222D089542842A5548000000000007FFFFFFF -FFFFFFFFFFFF00126D500400000004000000000002A940007FFFFFF0 -FFFFFFFFF802C040784382D9D00AD558688C460B52055DA143A4620000000000017FFFFFFF -FFFFFFFFFFFE001B245001000102000201005020020A28207FFFFFF0 -FFFFFFFFFC01A0003C0A856F410B47E3D4480C94203D32A90A502A000000000001FFFFFFFF -FFFFFFFFFFFF0005C950A0602450180C0506058015A750E07FFFFFF0 -FFFFFFFFFB00F0000C2954B1582150BC34870E87A214C941E1A8A8000000000007FFFFFFFF -FFFFFFFFFFFE180C4A9009172141E160A152A850003A140A7FFFFFF0 -FFFFFFFFFFC03C000E0D168743C5EA715A60707478563E500D536F00000000001FFFFFFFFF -FFFFFFFFFFFF40014260EAE41A7C281C2C16A74303C2A040BFFFFFF0 -FFFFFFFFFFE0040006005A515A102E150B90F152A0538150E0202800000000003FFFFFFFFF -FFFFFFFFFFFE503D5E224C350B078BC1AAD5AB7008BA381E7FFFFFF0 -FFFFFFFFFFF40000038585A5A3F0635AAD64EB5A2156AB4205A39500000000007FFFFFFFFF -FFFFFFFFFFFE500A428152E938B4489454352B8403C588443FFFFFF0 -FFFFFFFFFFF8000003840E50B11C2D4EA7C2814BE150A9B04408480000000000FFFFFFFFFF -FFFFFFFFFFFF400A2C501A2C562B0723C1A0C8A00275682C3FFFFFF0 -FFFFFFFFFFFF00C001C0A1A0A8689912142A1E2D05ABC54346C35000000000017FFFFFFFFF -FFFFFFFFFFFE081A9B08070385A884CAB0D95428089554263FFFFFF0 -FFFFFFFFFFFF801000A0871AA12E07C201AA11B1609834B1060B080000000007FFFFFFFFFF -FFFFFFFFFFFB2002F1688932A52A142A952B55A806A950697FFFFFF0 -FFFFFFFFFFFFE010007020F8702A1D2940290E0D82A54B01828170000000000FFFFFFFFFFF -FFFFFFFFFFFE281CAA50674585C3C54AD5C8F468082E182C7FFFFFF0 -FFFFFFFFFFFFF000003002CA11ABC5A170ED128462B70E848B1788000000000FFFFFFFFFFF -FFFFFFFFFFFF0205A1D26850A870342A1A0E95220703C4A0FFFFFFF0 -FFFFFFFFFFFFDC0000180038182C46AD0A0D4B0581D42961A05030000000007FFFFFFFFFFF -FFFFFFFFFFFE10155AA84A16278BEB50A845237008782C4A7FFFFFF0 -FFFFFFFFFFFFFE00000C038381A5C0B15A25483424562B46A0578000000000FFFFFFFFFFFF -FFFFFFFFFFFE500C82A160F1B8A9225C4E552B1283472444BFFFFFF0 -FFFFFFFFFFFFFD00000C009E089502D6AB02A050A1325520B0589000000001BFFFFFFFFFFF -FFFFFFFFFFFF50134AA05A9C56954A856915AB41095088167FFFFFF0 -FFFFFFFFFFFFFFA00002025388D4E85AC9462016854A55E2904E4000000007FFFFFFFFFFFF -FFFFFFFFFFFE500D14894249543CA27162F52CB1049D28123FFFFFF0 -FFFFFFFFFFFFFFF000030056804B050565A2A46A85A8A04A442B400000000FFFFFFFFFFFFF -FFFFFFFFFFFF0100E2307CF2142E188E558A428002C1D0643FFFFFF0 -FFFFFFFFFFFFFFFC00038072A07CA416AD22102A86E0D5EB44AD400000000FFFFFFFFFFFFF -FFFFFFFFFFFF281CBA82870DC349D5E354E970F804394C3C3FFFFFF0 -FFFFFFFFFFFFFFF60000C0099023448974E8549502B96E0A0223000000003FFFFFFFFFFFFF -FFFFFFFFFFFF2312A950B5627572393F95AB972207AD90A17FFFFFF0 -FFFFFFFFFFFFFFFF00008028501D1686530E02A781A1A245E280000000007FFFFFFFFFFFFF -FFFFFFFFFFFE181CAD58BF1707C3A5A2E5AAF17814165D3C7FFFFFF0 -FFFFFFFFFFFFFFFF800040235262C1091CE842B502D41B87894000000000FFFFFFFFFFFFFF -FFFFFFFFFFFF2D0FF6D2EDDBEB73FEFDBDFEDDEC9B3DB6EFFFFFFFF0 -FFFFFFFFFFFFFFFFE000003D461B4D944F6702A52271EA44C85000000003FFFFFFFFFFFFFF -FFFFFFFFFFFFFFBFBF6F7FFFFFFFFFB7FFEFFFBEDFFFFFFEFFFFFFF0 -FFFFFFFFFFFFFFFFF08103854F64E26B3A54AA5635162B83052A0000004BFFFFFFFFFFFFFF -FFFFFFFFFFF5F4F77FB77DBD7B5F4FEED6B757D7EBDDDB6FFFFFFFF0 -F7EFFBFDFCFDDFAD5AA91A1503972A458952C970BA5AAA28952A070341094DEBF7FDFFFFFF -FFFF7FDFD7AD95ADC3D5C9F5AAE8EA745C9DBE5D355D4B4B67FFFFF0 -BEFB6EEF77AFEBFBE576E7D6DD68DDFEEFDEAF6ADFEFB5F6FAABB179BEFEBEEDFFFFFFFFFF -FFFFDFFB7FFF7EDFDEEF7F6FDBDFBBDFEB76EBB7FF7FBEFEFFFFFFF0 -FFFFFFFDFFFEFDDF7FFFFDFFFFFFEFF7F7FBF7FFF77BFFFF7FFFFFEFFFBFFFFFF7FFFFFFFF -FFFBFF7FFDEFFFFDFFFFFFFEFEEFFFFEFFFFBFDFBBD7DFEFFDFFFFF0 -FFFFFFF7FFFFFFFDFF7FFFFFFFFFFF7F7FFFFF6FFFFFFDFFFFFEFFFDFFFFFFFFFFFFFFFFFF -FDFFFFFFFFFFFFFFFFF7EFF7FFFFFFFFFFDFFFFEFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFF7FDFFFFFFFFFFFFFBDFFFFF7FFBFFFFBFFFFFFF6FDFDBFFFFFFFFFFFF -FFFFF7FFFFFF7FDFFFFFFEFFFFFDFFFEFFFFFBFFFFFFEFFEEFFFFFF0 -EFFFFFFFFFFFFFFFFFFF7F7FBFFFFFFFFFFFFFFFFFFFFF7FFDFFFF7FFFFFFFFFFEFFFFFFFF -FFFDFFFFFFFFF7FFEFFFFFFFFFFFFBF7FDFFFFFFFFFFFFFFFFFFFFF0 -FFFFEFFFFFFFFFFFFFFFBFFDFEFFFFFFFFFFFFFFEFFF7FFFEFF7FBFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFDBFEFFFFBFF7FFEF7DF7FFFFFFFFFFF0 -FFFFFFFFBFFFFFFFFFBFF7FFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFBFDFFFFFFFFFFFFFF -FFFFFFFEFDFFFFFBFFFFFFFBFFFFDF7FFFFFFFFFFFFFFFFFFFFFFFF0 -FF7FFFFFFFBFFFFFFBFFFFBFFFFFBFFFFFFFFFFFFF7FEFFFFFFFFFBFFFFFFEFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFEFFFFEFFFFFFEFFBDFFFFFFFF7FEFFFFFFF0 -FFF7FBFFFFFFFFFFFFFFFFFFFFDBFBBFBFFFBDFFFFFFFFFFFDFBFFF7FFFFFFFEFFFFFFBFFF -FFFFFF7FFFFFFEFFF7FEFFFFFFFFFFFFFFFFFFFFDFFBFF7FFFFFFFF0 -FFFFFFFFFFDFBFFFFFFFFFFFFFFFFFEFFFFBFFFFFFBFFBF7FFFFB7FFFF7FFFBFFFFFFFFFBB -EFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFBFFFFFFFFFFDFFFFFFBFFFFFFDFEFFFFFBFFFBFFFFDFFFFFFFFFFFBFFFFFF -FFFFFFFFFFDFFFFFFFBFFFFFFFFFFFFFFF7BDFBFF7FFBFFFFFFFFFF0 -DFFFFFFFEFFFFFFBFFFFFF7FFFFFFFFFF7FFFFFFFFFFFFFDFFFFFFFF7FFFFFFFFF7FDFFFFF -FEFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFBFDDFFFFFFFFFFFF0 -FFFFFFFFFFFFFFDFFFBFEFFBFFFFFFFFFFFF7FFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFF7FFFFFFDFFFFFFFFFFFFFDFFFEFFFFFFFFFFFFFFFFFFBFFFFFF0 -FFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFDFFFFFFFEFFFFFFFFFEFFFFFEFFFFFFFFFF -FFFFFF7FFFFFBFFFFFFFFFFBFFFEFFFF7FFFFFFFFFFFFFBFFFFFFFF0 -FFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFF7FFFFDDFFFFDFFFFFFFFF -FFF7FFFFFFFFFFFF7FDFFFFFFFFFFFFBFFFFFDFF7FFBFFFFFFFFFFF0 -F7FFF7FFFFF7FFFFFFFDFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFBFBFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFDFFF7FFFFDFFFFFDFFFEFFFFFFF7FFFFFFEFDFFF -FFFFFFFFFFFFFFBFFFFFFFFFFFBFDFFFFFFBFF7FFFFFBFEFFFFFFFF0 -FFFEFFBFFFFFFFFFFFDFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFDFFFEFFFFFF7FFF7FFFF7FFFFFFFFFFFFFFF0 -FFDFFFFFFDFFFFFFFFFFFFBFFFFDFFFFFFFFFFFFFF7FFFFF7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFDFFFFFFFFBF7EFFFFEFFFFFFFFFFFFFFBFFFFBFFFFFFFFFFFFF0 -FBFFFFFFBFFFFFF6FFFFFFF7FF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFF7FFFFFBF -FFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFF7FFFFFFFFEFFEFFEFFFFFFF0 -FFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFBFFFFFFFBFFFFDFFFFFF7FFFFFFFFFFFFFFFFFFFFE -FEFFFFFFFFFFEFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFF7FFFFFFFDFBFFFFFDFDFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFF -EFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFF7FFFBFF7FF7FFFFFFFFF0 -FFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFBFBFFFFFBFFFFDFFFFFFFFFFFFBFBFFEFFFEFFFFFFF -FFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFF7EFFFFFFF0 -end -restore -%%Trailer diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob44.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob44.gif deleted file mode 100755 index 2b728900b..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob44.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob45.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob45.eps deleted file mode 100755 index bda348241..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob45.eps +++ /dev/null @@ -1,396 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Two_pulleys.eps -%%CreationDate: 2/13/1996 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%BoundingBox:122 406 402 614 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -2361 4262 4861 4418 R -0 sg fill -gr -gs -2361.625 4262.625 4861.375 4418.375 R -1.25 slw 0 sg str -gr -gs -4705 4418 4861 6450 R -0 sg fill -gr -gs -4705.625 4418.625 4861.375 6450.375 R -1.25 slw 0 sg str -gr -gs -4861 3949 5174 4262 OV -1 sg fill -gr -gs -4861.5 3949.5 5174.5 4262.5 OV -35 slw 0 sg str -gr -gs -4705 4262 5017 4106 4861 4418 4861 4262 4705 4262 4 P closepath -0 0 0 1 1 1 [8 66 0 144 4 64 16 1] patfill -gr -gs -4705 4262 5017 4106 4861 4418 4861 4262 4705 4262 4 P closepath -1.25 slw 0 sg str -gr -gs -5017.625 3949.625 m -3611.625 3949.625 L -1.25 slw 0 sg str -gr -gs -2986 3637 3611 4262 R -0 0 0 1 1 1 [128 0 8 0 128 0 8 0] patfill -gr -gs -2986.625 3637.625 3611.375 4262.375 R -1.25 slw 0 sg str -gr -gs -5174.625 4106.625 m -5174.625 5043.625 L -1.25 slw 0 sg str -gr -gs -5174 4887 5486 5199 OV -1 sg fill -gr -gs -5174.5 4887.5 5486.5 5199.5 OV -35 slw 0 sg str -gr -gs -5486.625 5043.625 m -5486.625 4418.625 L -1.25 slw 0 sg str -gr -gs -5486 4262 6736 4418 R -0 sg fill -gr -gs -5486.625 4262.625 6736.375 4418.375 R -1.25 slw 0 sg str -gr -gs -5799 4418 5955 6450 R -0 sg fill -gr -gs -5799.625 4418.625 5955.375 6450.375 R -1.25 slw 0 sg str -gr -gs -5330.625 5043.625 m -5330.625 5356.625 L -1.25 slw 0 sg str -gr -gs -5017 5356 5642 5981 R -0 0 0 1 1 1 [247 189 255 111 251 191 239 254] patfill -gr -gs -5017.625 5356.625 5642.375 5981.375 R -1.25 slw 0 sg str -gr -gs -3107 3324 3490 3620 R -1 sg fill -gr -/_Times-Roman ff [278 0 0 -278 0 0] mf sf -3107 3532 m 0 sg (M1) show -gs -5139 6068 5521 6363 R -1 sg fill -gr -5139 6276 m 0 sg (M2) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob45.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob45.gif deleted file mode 100755 index 74b9488e2..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob45.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob46.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob46.eps deleted file mode 100755 index 20abc1e4a..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob46.eps +++ /dev/null @@ -1,1210 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Title: LOOP.EPS -%%Creator: DeskScan II - Hewlett-Packard Company -%%CreationDate: Wed Mar 13 7:46:2 1996 -%%BoundingBox: 0 0 112 171 -%%EndComments -%%EndProlog -save -15 dict begin -/xpoints 112 def -/ypoints 171 def -/xpixels 155 def -/ypixels 237 def -/rasterbytes 155 def -/bitspercomponent 8 def -/xunits xpixels xpoints div def -/yunits ypixels ypoints div def -/coords [xunits 0 0 yunits neg 0 ypixels] def -/picstr rasterbytes string def -/readimage { currentfile picstr readhexstring pop } def -xpixels ypixels bitspercomponent coords /readimage load -image -4F4F504D4D4D4F4C4C4F51514F504B514D504D4F5051534F4F5351535450504F504F50534F -534F514D4C4C4C4F4F514F5351544C514F4F5151514F504D54504D50534B51514C53534D51 -515057534F5051504D575354505353535553514F4D4F534F5455555150514F555153535050 -535153535451555851534F545450534F545151505450514F55504F50504F4F514C4F505353 -55534D534D504F -514F4F4F4C4D50504F4D504F4D4F514D504B4C534D4F50514C534D4D4B504C544F50505550 -4F534D4F4B504F514F534F51504D514B514F54504C5351545051545550504F505050515154 -515451505351515457535150544F545053534D4C5153505051505354505757535450505153 -5151554F55545053545051535154504F505351544F534D54515153514D4D534F5050504F55 -5150514F515150 -514C504F4B51514D4F4D4F4C4F4D4D514C4F4F504F504F4F554D4F535049514B4F51514F50 -514F5350534C4D504C51515751534F4D505151505053534F53505050534F51505051545050 -5550555155515351505151535151515353505154535154515355534F4D5154555150515053 -5751514F545454535055515450515453534F505054534D4D51505154534F4C504C4F4F514F -55555050534D4D -51514F4F4B4F4D4D4F50514C4F50514C51494C504F4D51534F4D4D4D4F547A638D5454514B -5051515354545055504F514F514F534C4F5150505150555554515153505150535351515153 -505553534F53505155515151555053535051505351515153545350574D5150555454554B51 -535350585054515053515151575054534D515051514F515351505557505053514F51505350 -4F50504C505453 -4F4D50484B4B4D50504F514F504D4C514D534F514B4D4F5053515055505860793ED4B3B2B0 -9A918863574953515150534F5053485150504F4D4F515053514F514D535151535153515150 -54534F544F4F51535051515454535054535451535153535150575451555055555551505450 -54535450535153545055575450554F5051535453554F514C4C50574F53544F4D4C464B554C -514D5050514F4F -504D4C4F494F4D504C514F5050514F4F51514C50534D5453544F5AA6C0D2DBDAC472D2D2D1 -D1D1D1D4D7CDBB926C4C4C545453514F5454544F504D54515150534F53514D504F544F504F -555351545151505150535155555150515050534F534F505153514F53515150535154505054 -53534F554D57555158534F53544D57585550514F4D534F54535350544D4F5053504F534F51 -4C4D4F50505053 -51534F4F4D4F4D53504F51515053504F515350505457BDCEDFDBD6D1CBBDAE975C4565BFBA -7150575759607185A1B5C4CFCBBD654C5453554F5451555453535153545153545053515451 -535053514D5350515354515453555154515151545351555353545051535753555455555351 -515753515155505351514F5155535350504F4F505454535453544F544D4D50534F51545053 -50514D53515053 -534D4F534D4F504D5054505154504F515053554C92DDE2DDD9CDBFA18563DACDBC42408DC3 -9CAE4C5357535755585B67A1BFC3D1C1594C51545151535453585451505451535550595854 -4D534F5051535355555455505353534D4F554F5751554D5451515151554F59515751505454 -515355535151504F515151545150514F4D544F5450515155535055515450515450504F544F -534D554F54514F -50504C51514F515054534D544F5550534F515CB9DEDCD6CFC4976A54493ADE46A5B7424C71 -D060CB714B5153504F4946D2506192BFCFC7724B545157515354515453535355545450514F -53515350505350514D58555753544F55544F53515453515155575154545550545155575151 -50534F55535455515357505554545558544D534C5553555354515053515153534F51535051 -515050554F504F -514F50504F4F5151514F514F5351534F4DA1DCE0DBD2C1AB6C575354414BCE8E45B3BC3A76 -53D444B2C065535451404D4DD1794D5C95BDCBBF4D4F4F5453555757515353515751575454 -54504951555453535553555054515450505151535553535551545557505853505155515458 -5153505557515453575353545457555453545055515453535453504F544F544F54514F5350 -514D5154555150 -4F4C514C5051505153544F534D57514BC3E0E0DCD0B965585850545765456FD54F4FB9989F -4F5AD24048B9B34B54484F586FD1544F4F597ABACB955C5457545354545154535055515151 -575054575554514F5355545555535753515053545351555155555557535351574F55545555 -515050575353555454554F5754585357535053545351555350555153535453545053505051 -54544F544F4F51 -50514D514D5050534F4F5851545551BFDEDED9CDA55B535851505142D0424BE0A6674CBFBB -65586DCB79497CBD765C4C57554DD5485357545992C5D0954B59555554545353555457544F -5053545351545457555551515550574F545353535457545353515155505851555455545357 -515554545154505157545553545054514D5351534F504D5551545350545057545454505153 -4C51514F535454 -504F504F504D5151545351545877C7E2DCD5C39C5955515154534FBFC45051D7DC5A554B91 -D34C537ACC6A534C9BC95057585A63CF4851534F517A95C4BF545555575554535454545153 -55545753534F54545750575151575357575553585150535454545454535355515355545455 -5550535155515154535751535355515351505351544D53504F54545053534F57504F515050 -55545155535350 -534F50544D514D515454545763DEDEDCD6BF6DD46050535453575AD97C51519CE14B656361 -71CE51634FCE5A90634DBA9050505989C14C58554F4FD65BA2D1884C545753555557505351 -50545353515351515453505557545353555455545453544F555154554D5751545554515059 -505853575055545055575553574F5453544F534D4D544F5757544F51514F59515354544F58 -4F5350504F5155 -535050505450514F54545850D9DEDED4C36D5359D56C50535353A3D54D4C5855D0834C4F54 -4982C949584DCD795989467CCEA54B51B9C14C544837D053C988CACD4D5758535751585153 -51575553575155585550555355545053535451545351505451545754555555515450505353 -5454575158515159515454545157544F5354515554515154504F545159575355505351544F -54505353505154 -555350535453534F54544CD3DEDAD6C5764951514BCF904B5551D0B75A5A4D5079D3505454 -594289CB92B351D4C0BD4D904B8DBF5A51B2CC7ABB42CB63A6D479B0C95A54585359575354 -54555554505A534F4F57555755555053535454505451544F53515357535153545154505151 -5355515851585054535451535750535454515750535050555554505551574F535154575055 -51534F53505158 -51515050515053515854B3DEDED4CE8554455355534BC3D0584FD683534F585854E2505995 -B94C9A97D4555558CAC35448545151BF836DA3D85144B59251C7D58895D2674B5755575451 -545551535857595457535553535754505755535454544F545051505551515851554F4F5454 -55545550555451535357585554545151515751545750555551515850575553535355535551 -55535350515054 -5150534F51515154538EDCDDD9CAA9545346535053554C60D97ED04D585159555AD6CDAD67 -504F76774FD558854BC0835050558845AAC5BBC4834C97B0534DC5C86D92CBC44C5C505055 -58575457535751515554515753555058535757535551555357585757535153555458515453 -51575455515A54575759555459505455545353515453555154535451535153585555535453 -54545057505054 -545351545051535477DCDFDCD08D5457514455515354535553D5BB866D51655C8DB3BA4255 -5C583CA55057D48672556A90AE659171505AAA9BCD6D71BF4F5A4FC7A6677EB0CB51585559 -535855515453555755535855585555545759555453534D5551545157505457535758515054 -5155575158545554575355595551545455554D5350544F5453555851555159575754575355 -514F5550545353 -5151554F54535351DCDFDCD4B957575551464D55545485715561CEB7716198BB826CDF7E77 -7A5185A6717E58D27155A57192D1D1B38EAA609F9FABA9C8A65B5B4FC5B36151AECA505455 -57595357545354515458515B58575458535553545450545357585753545151575155575551 -5555505551555955515854575854575458585854535355505053545355575157504F4D5455 -54545355535354 -55515054515553BCDEDED7CA65555553544D49635567505151D748A5D4C2C04C555BDE7C57 -555761989598ABAED9DBD08E5076BD85B2B7B46A98B2C5C9CDC79F8283A1B2B04FA5D16354 -55585155545755555753555758555953515351535753585757535353505A55535553575359 -55575355555757535553545754505858545453574F57535857515154545157515857515357 -53535453555755 -55584F545559CDDEDFD5C45355545855585742AB6360A289BA897E6C635CCD79514972DBB4 -9F4D4B9FD0DCC7CDC0986F492F3C40405A603E323739393C4657768DC0CECCCB51674486CB -886C4D5A555854545855545555545453545558545755575153575555535751585057505359 -5558545857585553535353555850595954515557555750595853555557505B545357554F54 -4F535753555755 -535457545860DCE1D9CACB9579605553504F579A55556C4DC854C04C535A5ACCCD51BBDE7A -5757CBDFDBCDA1776C4D3729264DB4B0724C495A322729493C323C44598DBDC7BB8288517A -C17EA9505A5758575853535457555057595751585457545558575957595559545557575758 -58575A54585155554D585359545A53545557575A5A535A5557555353585A58574C51515750 -54585353545053 -5758545559CEDEDED1BF779AB9CBC9CDC4AB869A594D6CA595C24D57555B865177D598D7CB -4BD0DED8D0A27C3C3A376361657744576565614C27534451887957373740547CB7BFC0AB6F -B2AAD45B54585457555551585A55545855545A545754555458575759515853585458555558 -5459535853575453555554535A515857595454545555545858555350515454515153515155 -53575055505559 -55535358CEDCE2D9C49FCB674F4B4C53608397BFC4C7CDC0B0C96A57505C7AD08667D792DE -CBDEDACBC06D32414B376C614F594F5A6167673458729A5965467A9C4F403A394C63C7CEBD -779CC19F5B5458585850555554575458585855585854515855575A58585457575A53545554 -58535854575553545453545854595453585554575753585854535853515457545053545550 -54535154545854 -58555757DCDDE0D1C47C58D4B2515854905A504D4C485A5C8598C0CDCBD4D3A389635CD0DE -E0DBCA988E3A3C374C3753987C6C3741424240328D444B58B79FB4ABAB402E32313E5A97C5 -BFC0467A6D5A5553555553585755545A555459595753585358585A5754585459555755555A -54575558555955545755575458555559575557575757575755575555515453555554555051 -51555557545854 -555759BFDCE0DBCDA2DE494FB4C79183495161674C595AAA54506C614C5872A1ABC2D4D9DE -DCB582445B513C76AB342C4083392E454946584C32C3AE8965494946606C8637272F394063 -898DCFCDB95760575855555359575757575A5757555855585455555955575557595555585A -5555595358584F535757585955555455555454575457545754535453575358555A51535851 -535358545A5855 -575554DAE0DED4A346D0C755497CBFC84B58B5A9505085C75167985AD354837A8D82D5DAD9 -C79F9176C4D53254BC655553494129424141514B444441548E6049908398422C3C6D553134 -4D98B9D5C5BF4C535559555755555758575758585554575757585857555051575758575757 -575758555757545757585554575858575A53555357585454545A5153535551575751515153 -53575057555351 -5757D6DDDED7BF6A3C89B4C15977509763D1B34C9B9F8589B95AC763C3B56A495BD9DED4BF -834539372F3E4250463B37394B393C45397C4051581F1F2641558D4845534645537C924D53 -3B2E3A4CA5CB839B5858575957545355575854595555555857595954545557585754595958 -58555559585A59575560575B535A5554585157545A55595554535157545853585151515753 -55595457535151 -585BDBE0DBD172BF41774FE34F5C4B4F9C51AAD4C7BBBAA16A65D26FA5584177D4DCD9C460 -956A2932314C82422F2626553C2F265548454859922224221F1F1F263E2C375355C04F5C6F -4D502E324297C998A24C57585855595458545953595859555858515853575859555755515C -555B5959585857575955595758545C5755545557535A55585A555751575058515357575357 -51545757555859 -55BDDAE1D4CB4DD3504979B9BF864D9C3C77514FC0C4B38EC56ACA633E426FD9DEDBD16F76 -4D2E2E3B344C373E3A6A4B312626224C42483137413227261D1F1D22441F341F3C674B4F40 -AB42413E3442A1C1C8854D5A57595357585C595551575753545958545A55585857545A5A54 -595759595959585B575B555854595555575555575A545A5157545A555857545A5154595859 -575B5359535353 -51D7E0DFD1A950C9593EA953E05C5A724F658EB346A2D4C4C75C44463C88BCDEDFDAB38D3B -42243758572EB49C40221F261F29272E222927242931262C2E342E29292F505129A1B5B398 -91B5633E26373E6AC0978D5059555855555559545557555357545555505753575555545860 -59595758555958585A575957605859595A545859535B55575958555858545B585957575157 -5555575A575B57 -9BDBE1D9C06351CC5A41B29AB4C4A94D594C606AA35363B0D1414246A965D9DEDCBC505C91 -4F291D3129292E4D221F1F22272629261F2F596A513C4F452726262F273A46295963342C3A -57534D493929313C57C155674F575357575954595759575857585A57575757575957585B58 -5C57575559585961555A555A585755575957555A5B575A57555757555A555B575757535855 -54545558595755 -D8DDE1D2895750CC534460B74CE4CAB7534CBF6C97BF886F79D082B27190DEE2D689726A4F -63711D1D24483B313426262622263750554995728339243A5C462F41421C312C2E40341F27 -508549492F26272F376765B555865A5454555B555B5959535958595A53575557585758595B -5757545A58575859595A58555B5359595A5558545A555457595A5559535759545858575555 -51585458595759 -DBE0DFD0555A53CB504F5A5182BFE146AB867AA1498ED56C3A5BCFBA48DAE0DBD45A50396A -9C2C1C1F1D4531272626272224373E1D9C4C6D857C76243A88827E223A2F29442629321F1F -1A3742372C2E4124265150C5D06C6A555B5A5A605559555854575858585A58575C5B5A5B5A -5A585A555C59575758595858555755575959575A5754545C5853585357575A575557535C51 -5453585A5A5A54 -DDE2D9A6575555CC53617992575854E077BBC29582D176588644463BD5DDDCC76D7E49C93A -221D1A24243431263A4D1F4888798D2429894F9A7C763A32656A7C5B27B059988588484627 -32271C1C496D65492C273242547985586D595A595859595A54575857585C575A595958555A -585C59575A5A58555B5A5C58595A5858575A555A595A575959555555575158545857575854 -5753595359585A -DFDFD45B595851CD50AE3C5054595ABCD989BCAD6790723E4B495C9AD9E0D58E864DCD4C26 -241A2263A1325B7A88921F2F83857C3A226350907E857C4572776D5131904C776F83403955 -2424371C1F2F3E3224275032344D986160715A5C57555954585B5B595A5757595958595A59 -5B58575A585C5A5B575C57595858595B5C58575858595C57555A57555559555A5554585957 -59595459585459 -DEDCD254555853CB4F9067515C585886DEC7AD92CCA6BA55858642D1DEDDD0716DA3712622 -1D508E60461D4C8383852C26637A6D582442655876828E4F498582884C7C59988567822232 -592934342660295C3E465750393246D1605A59585B5C5755575A5A60555C59585A5759585C -54655B5A5A585A5760595B5A58585A5A595A555A575A575B5858595558546057585A575959 -55545C58595959 -E2DBC759585757D0A545BF6C5558BFD6BFC360AEC54865BA6337C1D6DEDBA66058A32E2229 -4451311D1D2E557A82826F244C7E7E89242467503437443B3B677C864D495C547C86513248 -90602C2F2C441D27559071B783323E63D06C7A5A57545955595B605A5B5758585A575B5C55 -5A59595A5A60635B586054595B5B5B595B595A585A585A54595C5B55585A585C5454555755 -585A5859545755 -E0D59A5B575A57BAA25C7A6F95C7D8BB77E185AA58884B423CA9CDD9DECB5B49AD6A262939 -2E22222C2E3B3B9182717126346783793429541C1D31291D374932372E323B504C7C777942 -958565543C444B6F2949494045402E4B63CD4C5C5859585959575961545C55595B5958575B -585C5C59595A57595B585B5A5A595C5C5957585B57595958575B5857555559575A57595758 -5355575A595958 -DED4575C595557C2869BA589A1C5C4C59ABFD4D1463C44409777D8DBDCD360BCC22F34291C -1D242F2F343E41587282862C273C7E774D223E1A1A1F292C1D242731322F26223B49764934 -796D77263A26343B7724456F418653344153A1516F5A5A59585A5B5A5B5758575B585C5B59 -59595A596059595B5B5B5A61595A58555B58595B5B585958595859545C5A555B585A585A55 -5758575B595455 -DCCDB358585C55C5674D5A448292A6B45B59D8CB4641396CC276DADBD8C46CA96F311F1C1D -2E2F3434373A394D98837C652227576783261F413A1D1C261C3A7626531A241C1D2E2C3A39 -9B766C512F6A262F3453726091578D4B3245797160605C595B585A5A5A5B5760595B5A5A59 -5A5B5B60595958595C5B5C555C58615B5B58585A5B5757575B5A5558575957585A57595959 -595A5758575857 -C4C9B0D6AA6F55D1CC53635A63C8C76060498DE23B40B9C557CBDBDED6858E4C2C1D262C31 -32343232373B463E7A7A897C1D1F632F271A1F3C54181A1A22245A26261A34271C1C1C1F34 -9B827E3234984967373B892E415B5051493251B75551615B5B5A5859595B5C5A5C595A5A59 -5B5A615A5B5858605C605B5B5960595B59595A5C5959595757575A58605959575857545958 -57555957555858 -8D989560B7CFBBBDB95B596CBFBFC1A3375AA5C49FB4B75CB4D5DEDBCF51652E2934313734 -3434323C444C3E395372496C29271D1D1A181A1D1F1C18182C1A1F1C1C1A323A1A1A1C1F37 -5C578E5332B46D8589295422227941596134397CC77A765B5C615B575A5B5860585C58615B -5A5B5A5C58575B59595C5A5A605A615B61595C595A605858585957585558585B5957595858 -5559555A575858 -3A4FB96054518DCFC3725AD2D7CECB443CBF6D65E2C772CD63D8DED9CE6C443B3737393439 -34313741463A40372E8646271D1D261C18261C181C161A1A1D181C181A1C3E452C6D492C37 -85504D4040A9639189632C3E2C225C4F48402F3BB29A498859585B595A5C5B58605A5A5A5C -5B5C60585C5857545A595C655A5B605A5A5C5A615B5A585A5755595A5A575B545B55575B58 -5A535B535A5A59 -A940895A5A676F5A92CDD9D4D1D79C4979D54F48C7B3DEBDB7DBDFD5BFBF59533A3A3A3737 -3139393C3B3A264437421C1D1C1D3B441A1A1C18492F2418181A18161A2E29291D55272942 -4D61292458C56D8965864C293E222960343729344B8DA5456F5C615B615C595A595A5C6058 -60595B615A5C5B595561595B5A5C615C60555C58605A5C54595C555A575B545B545359585A -575A5858555854 -CA3A6D5B605CBFBF60466AC5D8D4635059927ECA5CE0BD6FCCD9DFCD656F5A5B5039343737 -393B3C372E4141271D4B6C1A1A1D975A2C181A1C464F4B181A181C1C183A24221D1A1A4B3E -2C821D2737605B71916C3A6C3E451D325759462E3C48A67C5582596158655B5B63585A5A5C -5B5C5B5A5B58595A635A5C5A605A5B5A5B6059605B5C575B58595C545A575A5859595B5A5A -59575C57605B5A -C03198575B58AAB5A3C2896571C8D0AE987CC89C63C9AE45D0DEDACD6A4961555A3439373A -3C392C4040291C1D1C26553E3A3134595B26271C22595839342C1F26311D1F292613183122 -5C95323B292E325C6588422C5A292F1D2F4F2E2C323259C260606C5A5A5C605A5B5A60595A -615B60605B5B6163595A575B595B5A5C5C5961595C5860595B5A5A585960585B54585A605A -575B5A6057575A -BD774C585C5C5CBB85C9CDB45B5955A6D0C3854D6C63E2B5D7DED2A6B44C585C593C3A3B39 -29393A504F1C1C1C1F24456A5844445B616A63394B5957605A5B3E311D1C1822221A1C1A1D -22401C1F1F4290244C822F1F533E312F1D324B4B8D393985A14F6D5A586161605A5A585B61 -575C605C615C60595C5C5B5B5A575C635B635B605A5A5A615B5C5B5A5C575C585A5859595A -595A5C5A615B60 -91D0C58957639AABADB4BFBD82605A5961B5D1C45555CDDED7DFD277C45459595A51414D3C -3E241D375B321A1C1C1D5941555C555B5959585B5360605A5A585745261818291A1A1A1A1F -22291C1C1C42AE1F1F441D345B852E46291F496A497E2E4083A954765C5B5C5C5B5A606A60 -59585A5A605B60635A655A605A5B595B5B5C5A5C5C5A615A5A605C5B605B5A5A5A58555A5B -5B61585B615B5C -7C60584588B4D5C7C4D3D2C7C25C6D8D63635B924995CED0DBDCBCA2855A60575A585A5863 -291C1A1C295457342F4F265C76595A61595B595B59605B5C63595C5C6D4024221A2F2E1C1A -1A181A1A1C244BD01F1F1D3C6F7682A3553965445B6A402F3B4DA950675A5B5A615B60635B -615C5C656163605B5C60605C5C615A615C605B61605C5C585858615A5A5B595A59595A5C5A -595A59585B5A59 -92535B3E915960A3CCBFD2AAA991BCBF5359AEE3535877D1DED9957251615758595C5A5C5B -5A1C1F425058545C5B595340C260605B615B605B5A595B60615B605B5C5B583E1A4C1C1A1D -2F1C241D1A2429D1511C1F618692675354575822405C558831425598636D5C63605C5C6360 -5C5B60635A6361615C6360595C5B63605C59615B5A605A5B635C5B5A57605A5B595B635759 -54595A5A595960 -53615A3E9C91797A61A5CEBFAE825CD2A353DED79CBFB0C3C9D1B379655B63595A5A61575C -604160595B545A58595960534F63615C5B5A5A5C5B5C5B5B5C5C5C605B605A6A4F63311A1D -1A3118162C242671B51D3A223A5582C22F65312E2E3C615139344692576F675B636059655A -5A6365606A60635C6A5A6A6361605B5A575C5A605C635B595958635A5B585C5C615B596759 -60595C57605A58 -46B05B5CADB382BCD476608ED3BC976C679BCBC99097897C92B3C9985A5B595B5A5A5B5A5C -5B595A5B5A5B5C585A5C5B5C5A605C5C5C5C60555C5A605A655B5B60606061635C5C61341D -1F831C1A272F272FCC1F6131314165C9467C223A6D295460952E3983C458585A5C6565605A -635B61655C5C5C635C605C5C635C6367605A605A5A5C595B606159605761545B595960575C -5A615A61595961 -4C71597C83B279B7D8C0D16C4C89BDCBAB92884F3A4B4B44503C9A865A5C61615B5860595B -5B5B595A5B5860595C595C5C605A5C5B6065605B5B5B5A615C59606061616060655B637926 -1C3E1C1D1F9F3E32D01F5B342E29372F2F951F2E376D277244822E40B7894D76615C5C5C63 -60656559635A5A5A616161635C605B595A655C655C605B5B595A6558605A5B5B5A5B535C5A -60606155635B5B -59486C6153468DB39AC0BA3E555A655CBDC89B4F453AC0CDDA9C4C775559595A59595B5C5C -61585C5A5A58595A5B5B60615A5B605C5C5B61635C5C6158635B595C6560616063635C6150 -324227221DC41F44711F27293C1F3E22329F4D953731415A6F495A3160C4865C7261676360 -63615B61596160615C676061606060636A5A605B5C5C5B5C616360605A615A61595A5B5A60 -6161585B5B5B5A -6A459F59C2456AA1D39FBD86C0A5864C4863ADCAAA4BCED4DBD177445B605A605C6063605C -5C615B5C5A6059615C605C5B605A635A635C615C615C5B635B635B605C656163655C5C6167 -5A50271D22774D241D22311C1D1F3E1D4B716D76883C65374144552F399CBD5792605C6061 -61676C5C655C5B61676560656065656160635B635961605B5B5A635C6057615A5A5C5B615C -615C605A60615B -60586F5A913E975B889A98C95334BB3A3B864D519FD2CED7DBC89F5A5C5A61595A5B605A5B -5B59615A6160605B605C605B5B605A605C5959605963635B635B575C656067655B5C5C615B -6065271F1D1F31241D1C1D241C1C4444536A65907689298D1D42482F2F51A1BF5782636A5C -675B6163636365635C6C5C6363606165615C605C5C5B63635C605B615C5C5B5A595A60655A -61635961586059 -616C4289716A45C9BA4D5BB73B40D141D3BA595B6782D4DBD5B0595A59635B615A5A5B5B5A -5B5B5B605C5C5860615C60575A60615C6160605C5B5C5C5A60656161616A61616363606563 -5C5C5A391C3C2F1F181C462240613A2931374B7A797A4D40271C8646273C4FB96167596163 -6065656763656061676163656167636160616360605B5C655C5C5C655B5A605C5C5A606160 -5A5C5B605B6163 -6161489B5957AACB53C4328E346FD191E25C8DB3D5D6D4E0D76C7A67675B63585C5A5C5B61 -5C586161635B635B5C5C5A5C655C635A605A5A655C605C575C5B61616761606565635C615C -636361633A634C291818411829372224222E245A8872535A63242C372E393771AE5967605C -636161616363636565616365656760615C5B6563635A615A595A655C63636160595A58655C -606060595A605C -676351B09C97C5D1A2CE3A5C9259918EDDA3CFD8C0C1D5E2B272635C5C6358605C5B5A6163 -5C5C606361605B636160605B635A67605B635C60635A605C60615B675C675C676765636163 -676A636561606148241C411C1D261A1D3A27512C5A8D37462E411D4449633E497A655A7A63 -6363606760636561636167636A5C61656C5B63605C61615C61655C655B61605A5A5B635C65 -595B5A5C5C6061 -5C6076C7A1A1AEB45576C27254776590C3DBC4A549C4D9E5D576535A6160615A5B59605C60 -635C6561675B605B5C5C5C606161606061606161616763656A615C636A65656560636C6561 -6A636C6763615029451F241F1C1A1C1D262E445B464B4B2F653B3E1D72855C3772AB555963 -6761655C65605C616361636A67656163656A6065605B655C5A61605B6360605A5A5B58655C -615C615A63605A -656C65C87239326F925B72A958CDC4D7CC85503E4FC9DBE6D48E79555C6559606360606063 -635C63605C61606360615B606063656A65606561656163616760615C6365676A636D6C6567 -65616C65656760554D2C1F1C291D181A1F4F1F2E2E1C481C832946224C41834242A9895388 -6065636C5C6D6361656565636A61656C6A60615B5B635B65636759675B60635C5B605C5B65 -5B5C5C60596567 -675C91C74C9AB232D441725AB5D4D0AE51424F4B31C7DBE5D5AA5C60606061615B5A676061 -635B6163655C60615A5B5B5C656363656A61616361616167636A6A6061656060676A656A6D -676761656A6363656D22181A1C1A1A18372F1D18442426407161224D1D8341773176B9715B -65616760675C616761636A6D656A606365655C63676163606061655B6061605B6159586760 -61616160636167 -676A60C74548BD9AD4619FBDCB835C4853656D4F32C9DDE4D3905761605C635C605C616063 -63596063606161616565606763616165636160656163605B6A5C67656767656A5C6D676A65 -6A63716A616A6163652C1A18181C1A1A242F1A1C31241F5576885C482431834242429CBB57 -9B61636561676D6C656763616A61656765656363616C63656C6567615B6061655B605B6060 -5A635B635C6163 -6567608E89C2C0BFCDB367483ACC51826D604D4540CBDBE0C0795C65636167606363615C60 -635B655B605B6160636161655C676067636061616365675C67605C6565606A636767676165 -6A636C65616767676367444D271C1D1A2F1D323C44312626588E7751322F2751763A3772CD -60726A6C67676D6A656D6365656565656C6060676C616A656C67636761635A61615A615C5C -63635B63635C63 -6C6C54AAA5C4D1B2594C5B6746B58E6F914D414455CDE2E1AE555B605B6561656760656061 -60616063606360676A6061636563675B676365616161606360676767606767676C6C6A676C -656D6765676D6C676C616A6579241D183E221D241C464B574F717C547E31485C6C5A444182 -8D72956A65636761676C676767656C6761616565616D6A6D67616760655A635C5C615C5A5B -5C60656765676A -6088A9C5D5C07165575B898D6F5755575745596A61CCE7DE98866A6A605C655C6C5C636561 -6A5C655C675A636163656061656A616A61636563616A6A636563616363636C6C6A676A6765 -676A676563656A6765636C67616C3E1D341F1A1C1C27293B3C495B58322990548E97633265 -7C5357776A63676A6367636F6A6C656A636160606A63676361606A5B6565656A5B5B5B605A -61635B61635C60 -D1D9D4C05A598E915376C550637140654B5C5B5C6DCCE8DC8E4B63655C6A63676361636A65 -6163606760605B6765616D6A676167676765656A656163616A6A6361636A6161656A67636C -67716767656A63676D6A67656157311F1D222E181C1C321C4B4026A94048462F394683893B -AA7C587163676C636A6561656C616D6C63606563616D6A656C6760605C60635C6567635A60 -5C5B605C60636C -D9C98946CEC47AAD444FC467596C674F5965676577CBE7D9907E6C6C67656A636160676567 -6C63656363656361616563656C6A6A636A61636C636567656C676A6363656761676D6D656C -636D67676A636A6767616C6360481C1C24411F1A1C1F291D22B52226892C273942504B6F32 -72CD8D6D606A6A6A636C616F676F6763676C616C6D6C6C5C5B5C676063615B656363636760 -635C5C5C636061 -956AA2729088AEBDC19BC1679795544B656163637AD0E7D97E4F586A616A6A6561615C6367 -61656563636060676763676C6563656A63656567636363616A63636A6A6A6A6D6A6D6A6367 -63676A71656C6365656A676A6376271C2242221A1D1F571D1D7A2940821D22315A48422F29 -39C0BC59976A6A6D6D6A6C6D71676C6C65676367636C6A6C6765676A5C63616565636A6163 -5A605C635B6C67 -6776ADA3C5C754B05771CE5A9751485C6563616388CDE8D98E606563656565656361635B63 -67616760656161635C6063616A60635A6365636D656C616A636567656C6563656C636A6A6A -6A6D65676C676C6A6C636A636361551D24223B1C1C1D3E1C1F2776422E53717E2E414F3260 -316FBD796C61616C65676C6A6A6C6A675C6767636C63726560606A60636563615C605C6C5B -65636A61656C65 -71559A4D554F46C28272BCA2C2486563676A676A89D0E6D9616F5C6565636367676D63676A -63606A5C63616767656C61656161676361656D6167636763675B676367656A6F636C656C65 -6C676C6C636D61676367676D676A65396522441C1F1C3A421A29323A416A6D7A48602C4B2F -374186C86A6A6C6C636767676C636D6C6F6C6A6767676A6767676765676765636761656C67 -61656367676A67 -D0CCC7AEC09A44BD5751BD61B35076616361636A8ECDD5C0615B616163656163675C6A6565 -616D636165656365636567606A6065616567636C6767676C60656D6C6A67656571676D6C6A -677163656A676D6D71616D6567636563655A4C1C1D1C603C1A1F222629517182912E493E34 -582E459B9579656A6767636A67676C6765716C6D6C6C6C6765677267676365616363606763 -636765616C6A6A -576183ABC2C2C1C98672B74DC2D5A9635C6D6A519BCCE0C7637153656161675B6365616A71 -6C60655C656361636A6A63676367636A63676C6363656A616A5C5C616C65676A6371656765 -6D6A6A6C6A676D63656A61716567677263613741272C261F221F1D29241F5388723A40452E -8631406177596F6C656C63656F676A676C656D656D656C65676C6D6A676761676161636A65 -676A6065636363 -6D7197A1715C618EB4C8D5C2C4ADAA5B583E39489BCDE3D58689595B636360676563636761 -65655B656065656565616A616A61675B656A60676367656C676C63676A67656367676A6C6C -6C6F6565656D6A6D6A67676767676A67636531467637241F1C1C1A241C1F245B8851506F22 -5431272E65557A6A6C6A6A656765716A676C656F6C6C636765636D636A6565606367656367 -5C5C635B676567 -7C65A9CBD8CB7A54604B5872A1C0C5CDB795856191CFE5D498BF6A655C5B676360606C656A -6560636361606163616C6765636A676761656767616C6A6A6D6763656A6A67656A6A6A6767 -6A676A676A676A6D6D676C6C6C6A636A6A615A633A292729181A1C371A1F22496341763127 -415BBC299FA56390656D6A6D6C6A6C6A6A6365656C636A5B6C606C676A67606A605C676C65 -67676161615A61 -D5979ACBD3C7554C8D7E7663A3914C5982AEC3D0D1CBE3D29CA661606363636A6C676D6561 -6563616D616165636767656A6C676C606A6C6C6565656A6A6A656567636C676A656D6C676D -636A6A65676D67676C6A6A6C6C6D676A6A61674F24221C1C1C1A265718181F1F265A5C8D5B -1C44413450C9726D5B6C6D6A6F67716D6D636A675B6A6A6D6D6A6A65656A65606A6C6F6065 -5A65605B636565 -86D58EB9C4C16C5ABF465467C5D0826D5A51535A88C9E6D1B0B26C6365676A61676C6D6A63 -675C6365636365676165616367676565636565656C65636A6765676F6363656A6C6A6D6765 -6A6C63616D676F6D6A656C6C6A6D636C636D607A1F1A2E371D1C241D1C1A1A1C393B425332 -2648445C3C92D0509C656D6C6A6A65676F676A6C6D636C60656C6D636A6A5C63635C65675C -61655B60606363 -547AD1BCBB885A60605C8671C88D53617AB0C5C089C9E5D4B3B25C6563676A65676A676D67 -67676A676565606A6C6C65676C67676765676C656A656C676767676D6C72676C6571676765 -6C6C676A6A6F65656A6C6D6D7167676C676A6A652C2426341F1C1A1D181A184D1D273B7227 -6F22497A3A60CD7A5C636C657267716D71676C67616D636D6A6F6A6F6A6C6C636F6A6F5C6F -616760636A6C67 -3E499191D7AB655A77559F76CBC27ABC5A393B3786C7E4D1BF915C656C656A6A636D636C72 -6C616C67656363636C67636D6767676C67676A6A67656C676D6A6A6C6D6C6A6F6C6D6C676A -6A676D6F6372676D6A6F6C6D676C6C6D6A676D676D5B40421A181A1C42451D5C242F6F9286 -246D1F4F77375BC579A96D72716D71716F6A71676D6F6C6F6C6A6C6F6C65676F67676A6567 -676A676A6C6C6F -5A40A18EAED1B2BAC4BBA5575971423E41422E9C76C7E5D4C46C5C65616A6D6A6F65676367 -676C67656561656763636C676D676A656D6C656D656C656C6A6D6A6A6C6A6A6A6C65726F6D -67716C6C6D6C72717167716A6A6C6C656D716D6C6A6C71321C1C1A542F5A243753B05C7C7C -54555827AD5A42A9D0606A6D6F716C6D656C6C6F6D6F6F6A67676C6A716A6C6C6F63676A61 -676C67636F6C6D -6551B0D47A63D4727A88C8515C3E3C495B638EB27EC4E4D4C96C606765636561606C656A6F -6C606F63676C676D676F656765636165676A6D676A6A6C676D65676D6A6F6A766D716A676C -6D67636C6A6D716C6C6C6D716D6F6A676C71716C6A636D7C264C18321F262429BDCDB95990 -5B5554264B772F67D053826D726F6C6F67676D676D6A6D676A65676D6D72676C6767656A65 -636C636765656F -716AB48E9B5483D5653BA39CB4AB55616F54B95561C4E0D9C8586361636A6A6D6C616F6367 -6167656C676C6A67676567636C656C6367636C6F6767676F6D6C6D6C676D656C6F6C6D6D6C -676F656A6D676F71726A6F6A6C726D6D6C6F6C6A6F6C65653B511D271F222234A13C828665 -277E4D5122C94C40C07C7E97716C7167676D6C6A676F67716A67676C656776656D6A6C6567 -60636A616C6D6D -5B54AD3C5551469ACB5AAE42C9BF7CC244A2884060C1E2D7B355556563656A67656A6F656F -6A616A65676A6A6A6C6F676D656A6A676761676D6C6A6D636F6D71676C6D6D6F6D6D6C6A6D -6A6F6F6F6D6D6C6A6D6A716D6C716D6C726C6A6C6A6D656526221F24242F295B5C2727394D -6150865C3788C53186D15B6D6C6D636C6D6D6A6571636F65656C676A6A716A6C616161616A -6D716567636567 -606A63AE8D5C2F65A3CCB948BAAE7E3B5CA14C6A57C0DBDBC5655167606565676D6767636A -6767616F6A636A6D6A6A6A6A6A637261676C6A676C6D6A6567676A6F676A676D6C6C6D6F6D -6D76726F6D6D6C6F6A6D6C6D716C6A6C676A6D6D716A6779261F1F31181C272E2C1F1D4C49 -4C2F452F8242AA884FC97E67796A72676C71676D6772656F6D676D6C71676D636A67605C6A -606A6361716F6F -726F6148BF85B3925397D777B342446AB765556755C0DBDDCE82506167676C6A6F676D726D -6C6563636D6A6C6565676A676D676A6A6D636A636C676A6C6D6A6A6A716A6C6D6D6C676D6D -6D6C6F6D6D676F6D6D656F6D6C6F6A6C6D71656D65676C6A491F222E1A1A1D39481D1F6326 -41538E46854650CD31B4CB5477766F65716C6D6C6C6D726767676F6D6D6C656F6161656A6A -716D60676F6A6A -9260BDD0C43E6C516C858E9AD1C454B77965636563BFD5E3D1508260676A6F6C71676C6D67 -676A656F6D6C6C676A6A6F676C6C63676D636A6C676D676C6C6D656F6D716C6A6D6D6D716A -6C6C726C6C6A71766D656C6A6A71676C6D7667726C6C6C7171442239221A1C1D2992324639 -4F292C313429416DCA44C5D8607C6D6D726D6F71716C6D6A656F777271726A716C6C6D7163 -6F76636C6D6A65 -675BCD7E6D486D7689595060B2D583AB516A65676FBAD3E0D15B7765636C6C6C6A6D656F71 -6C6A6C63636A6A6F6D6F6771676A6C636C6C6F6371656D676F6A6C6F6C7267716C796F766A -6C6D6C796A6D6A6C6F6C6D6F6D6C6F726D71726C716C6F6A6F8832274B1D1D491D454B262F -4B4C8289773C3B3ECB2FA2C77EA5766F716F6F6F6C726C6F72766F6A6C6F6D6C6D6F6C676F -6C6D6A6F6D6C6A -50779CD2C74D71A56772616760BFD67C6C6C636C6DBBD0E2D053AE6A6C636C6C6C676D6A6A -676C656D6C6A6C63656C6F656D6A67656A6D6A716D6C6C6D6F6A6A6C716C6F6D716F6F716D -71716F6D766A6F766D6C6D6C716F716F716F6D716F6D6C6D726C7E50401F1D512734292629 -3731318D922E494B3B4461B5C767636F6C6D6D76767671717171726A6F716D6D776C676567 -6D6C6C6A766D6C -4DA5C4D4C44461A36767A26C596A89D7596767656AA9D0DBD35BAA6367676D6C6A6D6A7271 -6C616F6D6A72676D6F716A6D676A6A6D6A6C7167726C6D6D716A6A716C776C766F6F6F726F -6C6F6A7671776D6F6F716776716F7171716D716D6D6C716F72716D6D4134452E2622272C2E -39583292866F3A345046397CD5579C6F766C6C716F716D6D6F76727271726A6F6F6D6F6F6C -6C6D67726A6F71 -49A9C5CDCA45676D6A6F8D7258BA619BD55B6C656CABCBDCCF61BA6176656C6C6D67766C61 -656A65726F6A6A6A6D6C6D6A766F6F6C6F6C6D726A726D716A6D6D6D72716F6C6F6C767176 -6A726F6F716F7676726C717276717271766D6F6A6F6D6F716D726F724961762C271F242753 -2C573C7A959831454698576AC59F7E7A726D6C766D7176766C6D726D6D6C716D766F6C6A6F -6D6D6A67727676 -546CBCC3C54C79AE9595835195BA4257B2CB6172799BCBD7D479B76D6C6C6D6A676C6C766D -67656D6D6C726C676F726C6D6F6D6A6F6A6A6C71716F676A716C6C716D716F7672726C6F72 -6F6F6A6D6F6F796F6D6A6D766D76727277726F6C6D6F6D6C6F76766F6D5141263E1D1C3E44 -3B482E2C88907C327E535A45A9D26D637272796C7171726C6C716D6C6D6D656F6D6D6F6C72 -6D6D65766C6C6F -71577ABFB5A397B39C91B3AE92C7576A54BCD260519BC9D5D5A1C259716D6A717A676F6A71 -6C716C716F6A6C6A6A6C716A716A6D6A6F6F6F6F726A6A6F6F6D716F71726D726D6F6D7277 -6F726D717171716C7271767676716A6F6F6D766D726F6F6F716A72716C2724221A40271D6D -A3271C1F313A50636042D07E65D1577E6C6F6C776D766D726F6C6F6C716A796772716D6F6A -6C67716A767176 -794988A9535365AB5C725C956FCD604F516A51A2D26AC9D1D8C2BC55726F71716D6C6D7971 -6A6F716F726F6C71716C6D6F6F6A766C6F7176716F6C6D6D6F6F6C716D766D7771776F7276 -6C716F6F6F796D776F6F7176726D6D716C6F766D726F6F7271716C776C853C1D833E1D1F1F -222722277245618E372990D239A1CB5B837671726A726C76766F7276716C776F796D716C6D -6F6A776D71776F -6D65B0AD63637A7C617653B4587A7C676A676F58B0D1C0CED7CD67616F676F6F776F776F71 -6F726D6D776D726F6D6F6F6C716C6D6C6C6C6C766F776F71776A6C6C776F716F717277726A -726C726D726D7972716F6F726D766C7176766D716A6C6F6D7172766D766D761D2222221D1A -1C2626224188956F5A6C2CC09867CC986C76776D776F796C6F6F767672766D7671676D6D6D -6C72716D6D6A6A -727C4B898553835A7E8E6ABD4C54636C6D6C6C6A5BBFB4CAD9A267856D716F776C716C7272 -6D6D717171726D77716F6D716F6C6F6D716F77717671766F726A6F6C6D716C726D7A727779 -6D776F766A766D6F6C777272717177726F6F7C6C7A6C7179716F76776A6C79422C1D1C2218 -1C22271F277A86794F65264FD33CC4C75B917272727C6F7672726C766F7271727171726F6F -6D6F766F716D6F -6D6D498EB7455C6C5C984FBF585C546060616365605AB9CAD7C357866F6D766F716C717171 -6A6A6A7279716F6A6C67766C7771766F6D6D71726D767176726F6A6F716D7971776F76796A -6F777672766D797A76727A727176726F727A776F7172767671777776776F6A65763E22271A -1A1C1D31493E869283323127D0329CD3638379727272726D77767777767272776F6F6C7271 -7672716D766C76 -D9D4D1D1D7CDCAD1D1D0CBCECDCFC9CBCACDC8CCCBC9B2C5D9D163C065716D716D716A7177 -6C6D7272727A6A7276716C77716F6F727179766C7971766D716F6F727277717671776F7177 -71726D7771726F727176717772716F77796F7772776D79726F717177717277716C6D461A1A -1C221C4949596D8D98347729B44C71C3D471766F71776F76777A727272766F777271726D79 -5B796F766F7672 -5A606077616A65767272716F82797E859083918E97ADAAC4D7D460BB6771726D796C716F76 -6C6C7277726D726F7171766A716D6D7172716D777272726D6F726C6F766D77727276777971 -72797676777272727771766F77797677777272767A76777A7677727676767271726C261F26 -1A1C2F6553592989895B6A50429545A2D16F7C7672796F76776F7977777677797276716F72 -7671716F77726C -866C5CC3A55AA67A606A7E8D65B2BA6A6D5C574F5546A3B4D1D07E915A716D77727A6A7676 -6D636D726F726C7671766A6C71716D726D6F7172776A6F6C76716D76717771767779767771 -71727176717272717271776F7172717679777676726D777676797171766F72725B461F1C1F -1C532282833B1F4465593A7E22C23A6FC96DB0767672766C79796C776D7C6D796C6F6C6F71 -6A7A6F776D6C71 -9A9F54B79B53AB929B65776565D0A5C15557574C4585D09FCFD07E989872716A726C727176 -6F6D6F7672717671726F6F717271776F72767777716F7172716C72766F7676716D72797C76 -717979766F7776727A767972767676726C767771776F777171726F7A71766F7186221D1C22 -9548247E50241F22464FA24027B24548ADC467836F777E72726D8372797779716F716C7676 -6D6D7267797171 -48986A65AB589165B5606A767988A242454B3C393ADBBCA9CAD1A376606F71726D76717677 -776C716D717171727172716F76726F71726D76766F72767277676A6F797677717772777772 -717176776F727972727676776F726F7277776F77726F7A6F727779727C6D6F717E2C1D1D3B -542C1F1F27223222605777635439463795D4655967717E767277727C6D79717C6A716F7276 -767C6776726F6F -6741918E5A6C895382636549914595403A4B5450CBD448A2CCD1C067A677716C6F6F6F7176 -726C6C716D7167767672726F7272766F776F766F726F6D77726A6D6F6F77726F7676767276 -6F77797A72767177777676767972726F716F76717A7676716D6D6F7A7677766F764C1A1D40 -291F1D1A1C1F22243957718D7C26656A59CB86988D79767672717777766F7A767172777677 -7671766D7A7171 -896F469244799A6AB9714B4DA254727263464071D67C457CC4D4C86AB544776F7676777677 -7A6C6C67716F776D726C76717A776F716F6C6C776C716D7771766F6C7A6F776F7772777772 -76767771777277717C767171717C6D79777772766F72777279797972767177726F902F221F -1D1D1D311A1D1C27457E6F83327EAA9A3EBCD4766C72727777797279717C727C6F76797776 -767A6D76716F72 -BD715B445A9090C2C0C4AAB7C9C36D674C5C9BDFC03E5965C4D1D76DB3766F7277776F7A7E -71716D6F6D776F72767672776F6F776F76767772766C6C7272716D77727671777677797179 -6F7A71776F7A767177727676776F79716F777E767C76717777766F79767A7E7276776D1C5B -1D1F1DA11C22273A404688862F57504B37A9CF638E76727A7772777976717E767A717A7677 -77777772767977 -D0636D4B76B34B4B609C6160C44B656D7191DED5543E674DBDD4D47C6F5A776A7771776F71 -776C6D6D776D6F6F6C72766D7A717672716F6F7C6F766F727C6F6D71776F797772797E7771 -776D797172717A837777777271796F767977767976797179767679727976797679717E489F -1F1D24922E3B40423C409785556C76543A6FC7726572716D6F76777A7A797677776C777E76 -72797771727677 -D060768285A9495467BA6576B0449AC965D7D49C466F7A50B4CED08E6D5572726F776C7676 -716F6F6F6F7A6A7972717176726A7271777A766F79726F72777172727179777A6F77717779 -717672777171717276797676777777726F727C7672726F797777727277777C727776728672 -1F1D32414540403C414276929C424B677E8DBDC0578D79717977767C717271777972727176 -6D79717771777E -D85A7765C09BB4B46FC8596F8550D7BBBFDBA1773E6D6558A9C9CFC0717A7272776F727171 -6F726D76776F7772716C767177717772717176776F7272767771717277767A777672777776 -777671766F7179797C797772797777767777777779716F777777767277767C727276767C44 -2C343E423E3C3B3C3B41348D82312C515C39A9D78EA57C7672727E7A7677766D7A6F717977 -7972776F777277 -D3A57654C27C454C6DAA796C5572BDC4D07685496F726C7A8DC5D5CA918672717972767777 -727276797971717271767A7C767179727677727A7171767971797176767A71797772777679 -767C7277727777797A72776F77767276766D79727972727A72716F7777797C6F7C727A726C -3E403C3A3B3B45373B373934896353423EDA51C9D467717671717A6F7C7979767C716F7A76 -796D766F797171 -D4C46F88A27949456A976C5B67AEAAD983AD505C6F6D767A6AC1D1CE86B96A7C777A76797C -727779797E7677726F79727771777277717271767777717676776C717779797C777E797777 -7C76767A72767776777671766F7A6F7777777676797A797A77797A7177777A79717E827683 -3E3B3C3A3B3A40373737323440793B2E59D93CB5CB76A66C7976767C797A767A72777A717C -6F7E6D79717676 -D4D07288884B59656D764F6D76C9D4B977884872766F767157BBD1D3909F6F767172767972 -72726F7977766F7172716F7272717777727C77777671767771776F796F8276767C77777E7C -71797279777677797C777C7279717972717277717A7977777772727A79777C767E72727172 -533C3B3934373739373132323497292F4FC0779FC3B95A6D727179717776797A767772767A -7776716F797772 -D7D76F5ACE9F7ECB71764D7776DED367764D6A6F6D767CAB57B3CDD3D26F72717671797979 -7977726F7172766C7272776C6F77717A7172767A7179776F767671717A797A7A7779777A71 -7A7677727C72777E77797A797A7971827C7E797A76727C727A7C7772797176797C7C857E77 -903C3B3A373734323734323234481C39427AD372AED671716F767182767A777E71767A726F -7682727279717A -D4D7635A4DCBABCC6171BA6ADCCA906F63506A777754449051A5CBD1DB77A36F7979767A71 -6D76767771776F727976716D6F6F726F7977777979717276777A76777782727A7779797E83 -6D7E71797977767A797276777E717972767782777C7672797277767972777C727E767A797A -725A3B393A37372F39313234322639726A8DC04998D45A957672777979797A727A7977727A -7677777676727E -D5D6639889B2BABF6D7271B7D7725582776577654F546A6C728EC5D2D56579557C76727771 -7A7277767676776D72717772777971797276777E6F7779767A7779767E797C79777C7A7172 -777C7C72826F7E77767C7776767A7679797C7782797A797A8582797A7C797C77827C7E7C7A -7A8E5C3E3A373434323A3434293A834F8354904C6AD09F6A65767A777C7E7C777A7A77797A -6F79776D767272 -D4D47ACA7A9FA958777265DFB971BA8E8D49545B766C726F6D7CC0CDCD8DAA766C726C7A72 -6F77777C717971797A71797272717A717C7C7A727C7271727777797A79837282767A777A7E -797C7A7E7A7C777A76777A7A7C777A7A7A7A7A72767C7E8379727E7A79827C7E7A7A7E7A77 -717E7C3B403A343432342C26457E6A39C839C5A348C3D5766572767976797779797C77767E -76767971767679 -D0D5C4D8675CCB577ECCDC7CA5C3B9ADB9BC6D6D767172766D54B3C7CECE7A606D76767A7C -7C7E767C7A7C6F777977767671727A71777972777976797679777C777682777C777E79797C -7E777A7E7C7C77777677797C797C797A7C797E7977777E8279777679767A7777797E7C7C79 -767A797A6F34394B4D60726140A5928D487986CF6595D36D8671777A717A797E7A77766F7A -797E727977777C -CCD2CFD94F91B2ABC3DEBFC471826A7957CF6A726F76716D6D5CA6C5CCD16F6D6F7679767C -797A777777727679727271767777797977797A7977797A7A7C777A79717C7779727677777C -7C7A777A7C797A7E7E7779797A7A7C79777E79777A7C767E7A7272797E7C83797E79768272 -778385769A4832A36C534F657A7192C555914DABCB65CDA56F917C797C7776767A6F727972 -79767A6F7C7C77 -CCD3D0DC5961BA92DDCC7ECD907158838DD059727276726D717190BFCBD072766A777A7679 -7E797A79797E7276727677767677767776767277777E7972827777777A7C777A77767A7979 -7A777C7E79777C79797A7282798276827E797C7A77798379777C7C797A7C7A7A79867E8276 -797C797C7A322941397172726F9167607ACA4DA3CB42C4CD679A77827779727A7C767E6D7C -767C77726F7C83 -C7CED5E3605588CCD26F679B546A5BBA86B4657276797176717E83BAC9CD76B96A72777976 -7E79767A71727672766F7A7A7A727A7C77767A7A776F717A797A7C7A7982797C79777A7C7E -767E717C7C7979797E7A7A7A7C79797779797A727E7E76827679777C7C7A83727C7976797C -797C837979482E41488E797A41A67271919CB4BD856CB4D66C95857C7E7979797C76727776 -837779727A7A79 -C5D0D4DB725A89DB854F76834D5C71CB85859B6F6F777172727767AEC5CBA3889795717683 -7C6F7E7779777971727A7A7672777679726F7779767C77767E7772717E72837E7C7E7E7C77 -7E797A7C7C76857679797783767E727E7E7A7E7A7A79827A7A797A7E767A777E7C7C7A7A77 -7C76777E727C313C72A5728E4591676A614560829A85A2D9BD6D768679797A8277777C7179 -777C7776727277 -BFCDD5D56F5BDCBD83557AA2547776A26D72CA6777767A6F6185AD92C2CDCA7E716A717A79 -7982778276827679777777777A727E767C7A7E797676777777827979798279797E7A85857E -7785767A7979727A79767C7A7E797C7A797A827982837A837977797E7A7C857A7C7277827E -797C7C7A7A98343A72837E67556D7C8665417E4C954D6DC7D56C8D827C7A7E7A83797A797A -7C7A777977767A -BCCAD3DA8DD4D2BF79D1717A61716F7A5763D15B6790B4C5D0D4C7BAB3CDCD6FA97677777C -7E7279777C777A777672767A7979727C7177727A727A7C76827A767983777979797C7E7979 -7E797A7782767C7A7777777A767E72827E797C76797A7A777C7E777783797A7E7E85858282 -7C7E7E7E7785493954465ABD6C7AA66A657CC34179B0AAADD96A957E827C7C7E79797C7E7A -7A7C7C72797272 -9BBFD2D1DEC751C083888641A69BB0CBD8D4CCC08861423B4437AD4FB7CBCBAA7E7776767A -7972827C77777C7772777771767E7782797C797C7C7C7E777E777179797A82827979777777 -7A7E7E7E857E827A7C798279797E77777A827A79827A7E797A827777827A7A7A827E7C8279 -827A827C7E7289314965C74879A3868D658D54543E9BAE61799B977A7A7E797C7E76797E7A -7C83796F7E7676 -88BDD1D1BB7C4DB06A95A2C5D3D3CCB7885B55B25855585C5461534C95C0D1CFC3B2717A7A -7979767A7682767A7C7A7C7779797C7C7A797E767C777C7983797C7C77827C7C797A7A7C7A -7A7C7A7E837A7E797A7C7A82837C7C7C7C7A827C837E837782857C837C7E837E7A7E7E7C7E -7C7C777E777E7E4B3C71C79CAD5B89987A40467177BD37454554558971798282778385797C -727C7977797C7E -6FB2CFD1B395ADCDD5D7CCB77E79614D556A46CF55585C677177929B9BAAB9B4C79B4D7E7A -837777827C797A7C7A7C7C797E7C7E7C7A7C7C7E827A7C7A8377837A7A7A7A797C777C7E7E -7A857E7983797C7E7C7C7E727C7A7C7779827A7A82827A7E7C7A797E7C7A837C867A83837E -7C7E83797A797979536F7CA92F4855465C5B5AA68995373979D1597C7C7E797E8279797E76 -7E7979767A7977 -55A3C9D1D2D5CBB57E6C54507ACD4F3E4C4F7E9F5879767A77764B5983C1B37C6D76767A7A -7A7A777A7A7A77767E7A7977767A7C7C7A7A7A79777C797985767C7C7C797C7E7E7C7E7A82 -7C7A867E7A797979797E7782797E797E7A79837A7C7C8377867E7C827E7E7C8576867E7A7C -7E7C77867A85829577B444CD314F7983506AA1BF5A59764CBBDC8D826D7A7C777C83837983 -777E777C778285 -4F97C5D1D3A25C4863A2495158CF6C82884B3A8D7C72727A797960575A49506C6F8571767A -76797982777C777C77777E7A82797E777C7A797C827A797C7C7A827A7E7C797A7E77858582 -77837A7E7E767A827E77827A867A7C797A7E778282827982797A827E837C8379827E7E827A -7C7E7E7C867C7A86508332977641423B8D98D99297B065ADAAD4C777827C7C7C8277797A79 -82797A767E7E7A -5B76BFCDD0C45440BC883B4C71BDBDC0C2926077776F727772767C676755A6CAD77285607E -82797C777A7776777C7C777A7E7C777772767A82767A7E72857977797C7E7A837A827C7C7E -7C79827C7A7A7A7C767E77857A83797E7C7A7C7C837A7C7A8282777C7E7A777E7A86828282 -7E857A887C7E838240B54D3B506F6D89976FB748D6A67E556CC9D6617A7A7E827E7C827A6F -797C7A7277767C -7663BAD1CCD16D4C724C444598A3C5617A6A92BB6176767A767A776F7A6FBFCBCF8EB57C7A -7982777E777972827A7C7E797C717C797C7E7A777971727E7E827E857A837A7E7E79858985 -7A837A827C7C82837C7E7E7E857A7E7A7C7E7E827C7E7A867A7C7E7C8282837C7C7C7A827E -82837E7C7E82828350316C48B59A716C6C6D9839C03E57BB4DBADC60A6797E7C82827C7C7C -7E777C767E7C7C -7659BBC1CAC0B97C6CABADBD7CA3C0CCCAA2BF6D657172767C6D7979ADB4BDCBC790A95C8E -7E777A7182767A797A7977797A7A7A8272797E7C7A797A7A8379777A7A7C83867A7E7E7A7C -7C7E83827E82837C83887A83798377827E7A837A7E7A7E7C7C837A7C837A797C7E7E88827E -7C838282827E7C9F34343B41BD897741A163455B6149768242B2E15CB46D797E82797E7E77 -7982797A767976 -7E77AAC9A6C5B2A55B5571729AC9C56C717AC0546C7171728EC0D1D4D1C8AECECBA5726C83 -77837677777C797C7C767C767A7683767C7A7A79797E7E857C7E83827782797E7E7E828982 -7C828282837C7E7A7E7A7E7E7C7E7E7C7C7A7A7A7E827A867E7E7C827C7E7E7C827E838382 -7E8E82827C867C83393E498DCA3B573C3A577A77395C32A24298DBA19A837E7C868386797E -7C7C7C767A8282 -61678898C2CDC9AB4B5572AA556171AA8997725185BFD1D9D5C7B2836542A9CACAC4717188 -867E7E777A7A7E777E79777E7C7A7C827C797C7C7C7C7C777E7C7C7C7E7C82857E7C83837C -82838285837A837E8585797C7C837C7E7E827E7C827C7A7E827C827A8282857E7C82868583 -8685867E7E7A7A7E89469AA3952F4F6F6A7171A1719C51858865D5D082AD8383827A7E7E6D -837E7A77837776 -406CB5986A514C45418DBFA9427279899AC7C0CFD0C7AE95605058617A4590C5CCC4768E57 -7E8382827282797C7E797C7A82837E7C7C767A797A79827A828282827E7E7C8583827C8683 -7A7E8582797E7C79827E79857E83828282798383827E7E7E85837983777E7E897C82858286 -7C8583837C897E797C49AE954640413A398334536AC5AA54B94FC9E061A6827E8585867982 -777E7C797E7E88 -57413A456F83A541413CB78291BFCBD8D4C9B2955A984C6767827E7A824079C0C8D49B9077 -85827C837A797C7E7C777E7A7C7A7A7C837A827E7A7A7E7C7E837E837C7E7A83867A858686 -83827C85857E7E7E7E7E827C7E7C837C8285837E7A83777C7A7E7E797E7C7A7E85828D887C -85828583857E7C837E63C29A34A671886D4B76596DBF9145DA6CC4DD72A283837E7E7E857C -837C7A7E837E7E -76764C63C4C4C8828692C9CDD1C0BB8D7648414242986F7A72767C77634060BAC5CFAE929A -6D82797E777E7E797C7C7C7C7782777A79797C8283777A7C86827E867E827E887C86827E82 -857A828579797C7E7A7C77857C827A82797A837C7E7A827E85797E827C857A858286857C88 -83887C867A8585858395493E5CC3415A856DA6B59C716C72CDBFB4DE5A677E828388837A88 -797A7C79838385 -71726191C0C7C7D1D1C5B3896C655A54545A83375B557C7A777A767C513B4CB0BDC99888A1 -618279827A7A7A7A7A76857A837A837E827C7E7E7E7A7A827E8885827A7C837C827C85867E -7E867E7E7A777E89867C7E797C7E7C827C837E7C7A8382857A7C83827E797E7C837E838D82 -83838583837E7E828290454D6ACD63779190835B674B614DC5D6A5E29577778285837A7C7E -7E797782857C82 -6F727A7ABFC7CBBF63575353A15563886382855B6D77C36D7C798659586A5A9ABCCACB829C -857A7C7C79827C717A827E7E7C827C7E7A7E7A7A7C7E887E887E7A7C7C837E887A837E797C -867A887E79827C857C837E827C7E7E7E797A867A7E7C887E837E838383837A827C89888389 -858883867C86858582863E5751B5A185635497C4C058794F8DD986D6BD6DA585858382837E -79827A7C837E79 -76768653AEC0CBC5D0AB4F5C573C6C7957777A89C47A50717C79508553768971A3C9CA8E7C -8376867A857C7E7C7A82827E828272827C7E7C857E827C858D7E7E838382798582857E837E -7C828982858583857C887E7C7E8682857E83858286857A858282828383888583858E868686 -8886888682858D888583519FD94F6789426CBF63A271CAC98ED449C3DA8E826C8883828582 -8582797C7C7A7A -797C765097B5C9C8AEC7CA8E72494972716F798582615891777E764C8682825491C1CDC783 -AA89838D85827E7C7E7A887C82797E7A837E8682827E7983828585827C887C7C8D82898E86 -7A85858886828386838582837E85837E7E82858683827C888683888888888D8385867E8D85 -85838288828883858683716CD192A285903CBF9C8390B05567A540C0DEC4837C8988857A85 -7E83857C858989 -727A7E6C8DADCAC8885B7CCBCD833B836D9C7E7A49545BBD7955776C7E77825576BDCBC785 -BC6A867E85857E7C7E7E82827C7E7C85797C8283827E8382827A7E857E8386888685888886 -8282868683838688888582857C83857E8683867C7C7E7C858385857E8D868D838888858D88 -85838682887E888888899A51CABFCC767E856A7271AD717C4F9259B4DFDB7E86838283827E -85867A7C83827C -7C7C718D76A3C9CABA856767A3CBCFAD6FC88689679179856D6C497E79797C7961B5CDD271 -7A8583857E837A83837E867E837E7C7C7E837C82837C8282837A828583828585857E858686 -858383888686838583888286828388838383887C8282827E85838288888586828686868685 -7C897C888388838289829F4FC1CAD26A7E7E7177BC723E60AAB4A5B2E2DE7E908D86867985 -82827E79838683 -77717A7A6592C0CBC96F8292866083C9CDAB6D6C79C5AABA85796F7A859CA54D59A9CCCCBB -898382828382857E7A7C827E837E828382837E8582797E7A83837E85828382867E82838983 -867E858586838989868585827C858683888685827E8883827E85857C868389828385888E7C -858386868D7E8285828386893C90BF8E95A96A4B3B863EB783463797DEDB6A95887E82867E -8983827A7A7A7C -7676717A5385BDC8CB9F85608D768E509AD0D0C0C2C76D7AC0538E716DA2766A6A97C7CDD1 -79B072827E8585837E83827E838283857C867E867C82857C897C86838386858E8383868883 -8883828D83887E828586838D82868386837C897A858383857E7C7E86838886867C85838288 -7C8D85888288837E88828998AECF82855B636A469A7A42BF494C726AD5E06F917C88868286 -8585837A858586 -7E797E795767B7C9C7A58D466D4D9771A95898C7C9825877D0515C596A7E7A7E8D86C4CBCD -89588386858585837E7A837E887E867C7E827E867C8383857E868682858583828685868885 -868982858686868D8D85858282898383868682867E8586888288858388858883897E838885 -827E8688838385888586889CA2DE54AB42BC4C3E3A5372D0794FAD54D1E2828E7983828882 -83867C79898382 -797C7E7E83559BC8C8CD57824D575ABA8E8646A27A59A3C5C7A1727A86837E858555B7C9CD -C785658E85858383827C867C857C827C897E857C827C828682868D86868683858885908E86 -898885888E83838E8D898D88828585858388868D888985857E888688898D89868983869085 -8888888688888885868885896CA13AD4617286957A83869A588DA34FC0DAD877828D868988 -838585828D8885 -767E8372886786C4CBC77CB2446557C8897E5B5B7E88825090CBCCA3827A8585826A9FCBCD -CC71A1828286838683867E8883857C857A7E82888383857A868588868289868D85898D8986 -858588868691868683898589868283898588888589838685888386898889838685888E897E -8D8E898E888888838885858546AA45C977C86061585AD45B4C717A49BFCCDE898986888885 -838D8286837C82 -767A827C797E77BBCACCC5605461AD7E5C796FB47A825C4B7661A1CED0987989897998C5CB -CB67C4838688868582828679868286827E86828683827E8389888585828E8D899088919191 -898D85869086868686858583858388858588888988867C8985888389888888838D85888D85 -83858D86828688868989868257496F9F546D506C98B09A446F824F48A6C5DD7CA38986838D -85828D82888985 -77767A727C855AB2C9C9D141A383BD574B7E72BF7E7C50517CC3675B95CFC57E728D83C0CE -CE896F7785887E838582828583858286838885838388897E8E82887E838682888988898D89 -89888E83898683868389838585868683828688868583888686868D8589838585898D8D8D82 -858D8D898D85888688897C8676BFB4618EA6C26F796A5B46AB9AAD6088C5DC6C9C7A858585 -898D7C857E7E7C -7E8276827A7E4CA2C5CACD3C899B887E6D837E957A72656379906A83655CB2D2CD9C63B9CB -CEC08889888D8385837C86828886838686838585838383828885857E82888889888689888D -89898389868885888389868D8585888886868983898683888685898986888386898689898E -868E888D858983828D7E83839AC0D94BC05C574946BB7286BF4D3CA96CBDDA67B282888289 -827E8383868985 -777C85797E7C5498C3C7C888448E6C67CF917C76797689766F6F77857E82636D95CEC5A3C5 -CACB8590658582857C7E858285868583868686868386868386888E8283828888867C908386 -86888D868D7E888689898D85838686888E88828D8389858688858E838E86858586868E8E83 -8D918D898985888D86898289A397E05CCB8385887965C0A3BD798E7E55BFDD85B56F85887C -86887E867E827C -7C7C7E83827C7189BFCCC9A9426FA67ACB7E7E85615479657E77AA7E778285857160AABFC3 -CDCB7E887A8986858383838683858586838585858283867C8D82898985888389868D83868D -8588898E8D8885858689858D85868682827E8D85898685888582838D868E8988868986858E -8590858D8289888691858685A651DE95D48D85887A6361839B8E5B8D4FAEDB9B9282868583 -86858683838D86 -777C7A83857A7C55AAC5C9CB833E418997429F44C479827EC479B0717C828EAAA190A5C4A5 -CBCBB29182717E82838883897E827C857E828882867E837A8D828389858D8391868D828686 -8886868885888282858D858D898D898883858D86898D82858985828886888589858E8D898D -8391888985868E8590838D858D3CCBCBC18886867CA567C542607E5540AEDBD4899F8D8885 -85868986868986 -7C82767A79827E4B9BC2CCC979773B79604689488E777E86A965498E7C7683A6B7C8CFBCA1 -C4CEC99F9B8886827E82907E8883837E83888585858582837E858885888986898D858D8D85 -868889858D8688898E838982838D888D8E89868D868D898E888E8D888D838989858D8D9191 -898990858889868D898690858342637CA272827AA1A9763B3492C0C0BFADD8DB7C92828988 -8285898D8D8D85 -797A7C7A7A7A7C5A90BDC9CB8D914C4D58C37645728E86897C576C72A5CED1C8BF905B4D9A -BCC9CE77BD7C828589888383838585867E8589838885868388838288858982898889898989 -8D8D898682888889888686888286898586868E88898D8589858D858D908888898D8D91858D -90928E9086918E8E8E8D89888640CBD471A2A97C5B5185A541AEA351315AC9DC7E9C858588 -888D8586838588 -7E7C777C77777E7C79B5CAC9B4826F4565BC6759827291B9C9CDD3D4C9A9726A657788B4D4 -ABCBCB76915583837E8389828586868386857E8382857C85868385888985827E8D898E9286 -8886858690888D85898686858889858589858E8D8D8D838D868D8D909189908589888D8D8E -898E8E888686888E89888E85884FBDDE516A45508279494B4FB93C46AE55D0DF83A9888385 -888589838D888D -7A77837A7C7C798663A2C2CCC77C8E495595588EC3D0D6D5D1BD9A76616F8885838883D6BC -ABCBCB97828D8888868583858583858682858388828588828685828885858388898D8E8988 -8989898988868986868E888D8888888989898D8D828D85898891888D908E8689898D8E8E8D -92898E8D868D8D91868D8685836C83DB4D673AC1C25B464263BD4D54C96ACCDB729F8D8886 -898D8586868385 -7E7C77797979837C509BC0CACB728845609BC3D2D2C7A28E60585B72BC8888898383CFCA50 -9AC2CDC1828D868689868885838586868386868685868586868D838E88898986868E909589 -898E8E8E8988908889888688888D91888D858D888D8E869289888891888D898D8E8D898E92 -88909089858985868D8291838E7758C7546F423E3E617292AABD4C76C486CADA6DB5728386 -86838D7A919088 -7776837E7E7A7C7A5088BACAC9AEC5CBD3CDC3A96A607C88839A6059CD86868585A2D68254 -7CBDCBCD906D8882868388828582838986828586858585888288868E868589858E8D918988 -8E868D8891868E888886888D868D8D8E8D898691888988868D9190859086898E898D929789 -95888D8889898E9089908689869544953C8D466079886D77B0975354C2B0C5DB6DA17E888E -88908585868683 -7A7C7A7A7A79827E7172AECBCAD1CDBB895C923C868E7E6D5C6C5560BD7C85897ED0C7838E -5BB2CBC0AE89888389888986828583867E7E8883898888858E868388828D898D8890888D8D -898888908D8E85868986838989838D8583898D8E909185918989868D8989898D92898E8991 -8890898E8886888D928391888E954F4440C5728379899BBCBB6D83987EB2C5DA7A82838D90 -888D888588868E -7C7A7C7A7C7A85828657A2C7CCC1606D58BCA544979250887C7AB551608E8E85AED7678692 -51A9CBCBCD8E8886838595838685888686857A8986898389868D86888885908D9186958D88 -8E858D86918988888886888D88888990908D899185908E908E918D88928990928690979589 -91898E92898D8E8E8E8D898886AA48CE7EC56FC198AE865A7C59919785BDC0DB8D83798686 -89908886888689 -777A7C7A7C7E7A82834991C4C9CB909888D36F4B8D835C777E7ED23A6D8385B0D4C5728E86 -4F9BC9CCD1798985868886898588858E898689828D8388858E858691868E86908592888890 -898D90928E907E82899089908E839082858591899195898E8E8D829089908D8588908E898D -899890928990898D8E85918E8DAA4DCDBFD39277887E6177AA4991B06CBFBDDBB0918D8D89 -888D8E86838889 -7E7E867A7C79827C836182BCCBC9B48855C77958578882BB7A86B9585A8E85D7D5578D867E -6F8DC3CCCF7A92858383917E8D7C898986868589828986898D8E8E888E88908688898D8D89 -8D8E8D8692888E8D898E8D8D898E8D898885889090908D8E918D8E888E8E908E909192918D -908E8E90918D898991908D8E8DA549BDC7CB6F67658E4961463B97858E9FBCDAB7798D9288 -88868D88898986 -7677837A83827A857A8561B7C8C9C87A5A489B713C838288837C88B241CBA6D5C0777C918D -9C77BDCBCAA68D8D8889858D8586859086888D83888589838D8390908E8D86908D8989898E -888D9090898E8885898D909091898985858D8D898D8E88908D89868E88898D8890918D8E91 -918D8D958E9092908E8D868889AD4CA5CDD4499088865C76C249AD958989B5DCC57EA1828D -8688858E888385 -857C797E7A7A85827C8851A6C9C8CB7C597CBF6F459B8D65858358C94C97D9BF58899CA69F -8955B5CAC9C5AA86838389898D85868D8E8585888389858886888D85908E8D8D8D86928D90 -8986908E9288899091898D89898D8D8D88898D888E928997888E8D8E928D9090928D8E9891 -8E8E958E8E899186978D908E89AE4B79D0D55CB37E859786604590B44141B7D6CA82C29A89 -90858E868E908D -7A7E827A85857A857E824F9FC4CBCC8291D49054B091896A6F7A89C383A5D057798667576A -724CA1C9C8D0AA898889858D8988898889898E8E868588859086888E898E88989189908E90 -8D86908D8E908D8D90908E8D88958E8E89888E89858D90908990918E918E908D8D95959590 -909190918E8991918E9288898E9A4D54D2D1A582C389C5729F5A575AA5B9ABD7D286C09188 -89928890868688 -7E7C7E82827E8283837C7C86BFC9CBA179D45C6195767E829883889189D1AE51766D7C8888 -856D91C5CDC977908D89898D8989898D88898D8E888688898E8D8986888D8D8E8E908E928D -8D89898E90908E8E8E8E8E908E8D908D89889088888D88958D8E91919591918D908D908E8E -88959190908E858692899590909F4B4883D0838354BFC5ADAE496F905060ADD6D77CBB928E -8D86928590908E -7E7E827E837E868285828859B5C9C9CC7C8E5B5A85498385458888BBD89C51868589868D88 -869260B7C5CCBF889191858E89898889868E8E8890858D838D888E9188908E90898D909191 -90958E928E97898D91888E8D958998888D8D9289919086988E8D90918D91958E978E928D91 -8E9C9189928E888695868D888E984C45DECB9A55596F8D6F795379AD5C57A3A6BDB5BB8989 -918D91888D928E -837C7A857E7C82868685834DA9C5C7CA79BD534C6A468D86538E8DD5CD5A4BA97C898D8388 -88834FABBFC7D188868891889089868D8889888D88908988898D86888D8E8E898D89919288 -92889189928D8E8E8D8E888E88918D8E8D888E8D8D8D919091959589928D8E9192929B9290 -9590919190908E919192868D8D954F48DEC74860AEA6823A4B458337344C4D5755AAA59089 -908E88888E8E88 -897A838285857C88837C825C95C4C8C983494948516D71BFBBA2CDD3975348D98591838D8D -86865398AECBD09BA686888E89888988868E918990838E8589888E928697888E8997909192 -919291908E90908E91888D8E9189918689858D91899188899188908E8E9091919290908E95 -8E958E929091898D9288888D92985B4DD9C0A23BB5B24B3B466D9F72A53A6DCED140A3908E -89898D8E908690 -83857E8582838582868D857C7ABAC7CBA5BB58A2AEBD98AEA3B4D5B35B9877D4D98988858D -89887E89B2C8CE719A8891898D88898983887C8D8D8990908D90898D908D8E8E909091908E -9A8D978E9190918E918E8D88869190958D89898D8E89918895929191929092929292979590 -919595959190928E8E9190918D9A674CC3C0323A343E5C6CAD9789AAA64983CFD748B98E88 -908E8D88919188 -7C82887E88887E86827A7E9C67B5C2CBC0B46C7A839C499586CCC57A58C997BDD97A858E90 -88889F769FC9CA9FA3898E8E88898889868D908992858E889089908E8D8E88918991899097 -8E9197918E92928E919189929190928E8E888E928D928D8E928D9090909595919092929192 -9597929090979191928E91909295924446BC6F767265866F4861957C9F9267D3D779928590 -90928D9091888E -82827E828383857E858388834DA3BCCAC5D3916A95797186ADD5767176C08D82D8A1898586 -8D8D98598DC0CBC5888395899089898D8D8E8690898E908D86918D8D868990909191979892 -918E98929A909290959588929590929091918D979098909297928D8E909292929591919292 -9290979191908E9197909090918D7E5548B9C07A61504579AD63AABC8E886DCFD786989289 -918689868E8E86 -828585827E837A887E7E82864898AEC7CBD3A24F7E50C459D3BC67515C857682C8DA858E8E -9090854C7ABFC9C5959C928E89888D908D8E8E89918890888991888E89898991918E929092 -9290978D9588928E909890909092928E91908E909191919295989191919190989092989195 -95909597919797919295898E8D46533149BD7A4B4F92B9455940B73E2E326CD1D7869F8395 -898E8890898690 -8586897E837C8283888285826D89A5C5C9D1AA509871BD89D55A6A6F897E9A8E9FD06D9188 -919089635CB5CBCACD8D8E8D888D89898E85908D90888D89908E8E9088928D918D90979197 -8D928E8E92958D9795908E899590928E8D92909191978D978E959598928E9290958E919095 -95989592928D8E8D9A8D958E9139BF49C1C29140A2794B42414DC45950585BCED5779C888E -8D889289919188 -837E868885897A8D7E7E82858E779FC1CCCB9877AAB59FD3C0455C8E898EC591719FBD8D82 -88AA989851AACBC2C267798E908D8991898D9091889192868990918E90928D958D8E979091 -988E958D929190909292898D869789908E9097908D9195909B9B8E91988E8E98909A989892 -979288989095959592958E8E8E9CC84672C43B403E4042425472AE4FD08E58CFD990A17790 -89958D9289918D -8382858586837E83857E79889B5992BAC9C8AAA388B3CFCF724553978690CC92889CDEC8C9 -BD894F6D928DC4CBC8CA988E88898D858D8895898E86888D8989959290978E92908E959195 -909890958E91928E978E9189958D97868D908E919197909A9095958E97979A90979290979A -9098929092918E8E9C8E958E92A1BA4849C93242445B4F724049AB897EA558CCD47C97898E -8D869085918D88 -868586888685858986858383884672B9C9C9AE9849A9CBAB6A3B5BA68D85AA858DC9976F6D -5B91BFD3D179C1C5C9B36C89919089918D89889285908D8E908E898D908D9090928E989290 -9289979095929791909B8E9895979092909597908E8E9591979A95929B919798929A979F90 -978D9298919798919795958D90A1B54282CB57898E838DBC9B58A18D92594DCED7909A8295 -9791908E91898D -8383888383867C8888827E858D5567ABC7CCB38544D5B74C5C7E7CC185929B8586BD83C4B2 -D0D4BF827A6AB0CBCAB498918D8E8D889192918D92868E95918D9291869789979792959791 -9092919590919090979295929792928D909895978E979298919A9595919798959597929597 -959C9595989592929C929B9198A2BD4BC0CC82C2A99091765B61AB6A6D5453CFD5859B9597 -95978E89919090 -8885887E83868583898885838D884CA3C4CECA86ABCC6F5483A66FB79FAB639A57A1D3D1C7 -A37C7291AA58B2C5C9BDCB86959188918E888D8E8D979289909092888E8995959590929790 -9A959A9795929591909895959597919591909591929097979F9F95979298959892929C9897 -9798959795929597979A9591959CB04CC5D4895949C9B77A86899290896D45CFD79B9B7790 -918D9289928E89 -8688897E86827E88827E8289899F548DC4CBC77ED49F885A924C449B835490D9D1D0B57257 -729B889153579BC5C9D0AE8E898D918D9090908991888E908D95979589908D959592919895 -959595979297979595919B9595979B9195909892959A9198989A97979898909595979B9197 -979B929A979290989595928D9AA3B94CC2D98D8988619F547C6CA1929C9050CED59BA18E97 -898E9191909197 -85828883867C8882898E888586957A82BFCACACBCB7C9F4CBD425079C9CED2B7A67AB23C57 -979090554C4B92BFCBCE79A58D8D909190889091908E898589929191909098919892979792 -9B9592959891929295979A91959195959292929B9798929B9B9B9295989A97929A92979792 -97989C979C9091959895979791A6A648BFD895908D95883E916C658E894644CDD7BC9F8890 -9A90958D9A9092 -86858986858D85858889888686859155ABC7C9C990678EBFD2CBAA89717A636A6088959C51 -5B91574B4F9F65B3C7CCC4AA86889291918E9089918D928891959097919790929597979C97 -979892979897929297979A92989295929295979B9298919895979A91959598909B91989895 -959C98959F958E909B92979891A97A5057CD9298908595B7B33E6361ADB058C9D7B2A29891 -988E9786979892 -858686888688868E83838D8985868E4997C5C9CABDD7CCC58D865A57546D95859F7E869772 -9BA3654C90924FA2BFC9D159AA6F8990918E919191929B8D90909091919195979197979298 -988E9F959B909292929B95959195979290929795918D98989C9B9A9B9795929A929FA19791 -9792909F919B9A97959A91908DA36A469CC9869CA6867149532F60B36A5940C9D6B3B29895 -979A8D90928E91 -868685888D8E898886888686888686578EC0C8C7C79C6F536A95798D86A6908E858EA17C9F -58536F9188954F97C0C7D3575185979095929289988E928D9092979B889A95909891979CA1 -929792989A9895979B9A9591989A9F8D9298959A929B929B95929B9B989595989A97959795 -929C959C9C9892959F95979A92B253457CD08E594B556DB7B73CBCB0C0C044CAD7BFBF8E97 -9591988E8E9590 -86868982888690898D8D888886898D8D7CBDC8C8A5A14D4BBF7E719097C08E8D83A997BA90 -8667549CA1956583AEC5CB61599079988E8D90989295988D928D959198929A9C9597959597 -9F959F989F929895959B9197919A979A9A919A92929597929C9C9A98989B929A959F9B9C9A -9898959C959A9A979A9A919597AD45425A9B4C92898DB9A9614560BF8E7A3AC7D6BFB99292 -95909592929790 -8589868E868D888E8685888D8690929B6FAEC3C8C09A3E49A34441958EB486918DC77CBD83 -6772595A5A455B6FA3C5CBA56F5CB09292959791979090959591979C929A929895979298A3 -959B9C9A9895929A9A989C92979AA29A9F9C959C9797959A919C9F9B9A9297989B98979A9A -9B9F9A97989A9897A2979A9897B7454D4C8E39BF86979259554F3A41312F3CC1D6C4B59A98 -9A959895959291 -8D888D8586858D8689898886898D89914FA3C0C8C4D7B47E71427EA6916F987C79A6837EA9 -6A5354717188A15197BFC9C9A6679C86908D91979290988E9A918D9592989C9B979A9C9892 -98929A9A9B989B9895A1959591989A9B9F9B9A9B9A9A959A9AA19A9BA19B959F989C989B98 -929F979F9B929A929B9C989C92B4457746A1715CBDA541424B7134607A984CC5D4BFA39B92 -9B959190928E95 -8888888E88908995868686898E918D824591B7C5CABCC8CBCB95B779857C79918D908586C5 -619BA26C8E97884C8EB5C9CB92907771959891919A908D9297989A98979B9A9B9A979A9798 -95989A9C989C989B95989A9592989B959A9A9F9A9A9C979898989A979A929B979A9F9C9A9C -979B98A19B9B98989A979A9898BA424F53543A41443B404567986A5092A36CC7D3B48D9595 -95919A9790959A -86898D8390888E898D888D89918986886588B2C5C7866589BCCBD0C4B58976958E889F7ECF -4C9B51AA7E92926577AEC5CC9A6759C49792929790918E979A979898979B9B9F9B9B9C9B9B -9C9B989A98989B9A9F9F979198989B9797989A9B9A9B979B929C9B989C9FA197959F989B9C -91979F9A989595979A9A9B9B8EB544778639413E466583BC7EAB90899C6C79C4D889919891 -9B919590989095 -88898991868E888D85898D89928991889A72A3C3C7B990795C7CB5C3CFD59C928695C46F9F -82979CCB7C9090A35CA2C4C79F979A9C6C9595979B9292959A989A9898959B9A9A979B9B9A -A1929F9C9B9F9B9B989C9B9F989F979A929597959A9B9A9B9B9C989B989B989C959FA19A9C -989B959F9B9F989597979A929ABD3EC0B09F95C1B39151636FBF95BF9F9883C2D677978D97 -959A9597929792 -888D958E8D858E898D888D8690898390A25C9CBCC8C29AA6834D5B639AC4C9D4CFA6B77A57 -C098A163C88E98AA4C95BFCBBD91455B9F9B98929A919595989B9B9898989F97A19A9F9C9C -9B9C9B9B9C9C989B9B989F9A9F9B9C9B9898989F9A9F959B979C9C9A9A9AA19B9A959C9C9B -989CA195A19590979F979A9B97BD3EA6C8926090798EBAA15AB488B5A3A363C1D5B2779897 -9C959895929592 -898990898D8D88908D8D899086898E8D92468DB5C3CA97A942915CC44D587ABAC4CDCB8E88 -C5929185776C92915883BDC7C58990A2BD619B98959898909C9A91989B959A97979B929A97 -A197A19B9BA19F9898A69A9C9A9A9C9A95919F9C9F9A97979B9B989A979F9AA29AA29F9C9F -989B979B9A9F9B97979A90919ABB4679D979856A9B6CB97C3EB295B9AE9190C2C5AB90959A -979A9792929197 -908D8E8D8D888D898D8D91908E908E89954C77A9C4C555AD40A6676D729C86635B92C0CED4 -CBA38EA972899191976DB3C9C9B9A39861C7989798919298919F959A91A19A9A9A9A9FA2A3 -98A1979B9B9AA19BA19C9F919A9AA1959A97979F97A5929B959FA59C9C9A9C9F9A9A98979C -929F9A9F9F9B98989F98989B92B56751DE54D1988951459F449F76B99B9098C4A1BD8E989A -9F989B95989795 -8E8590888D8E91898E9089909188898E897C65A1C0C49C4D718DC150829892C7916D558EBA -C7D2D4B0B08D8589A35BA9C8C8C99C9A59AD799A95979B959595959897979C9C979A9F9B98 -A99A9F9B9A9BA1989AA397989897989598959C9F97989B979F9B9C9B9FA39AA2959BA398A3 -97A197A398A19A9A9C98989598BDAB49DC9F9283A39B7C97678D72C49C9C76BFB3CB8E989C -979A95979A9597 -888D919188898890868D8E8E908E978697A94D91BDC4D046B56DB558B0AA86BBA36D5C5363 -58A2C4D0D1A676919553A5C2CCCB5C63BF6CC5A29A95989795A19FA1979F9B98A1989BA19F -97989A989895979B9C929F97959B9B989C9B9A9F989C929F9C9CA29C9B9C9C97989C9C9FA2 -9BA29FA2A29A9B9C9F989B9595B4C376D188913CA989BC98A56DC4BFBA957EA697CB859A9B -979A95979B9297 -888590888E909188908E898E91908D918EA14685BAC7CDA1538E825C539CC9A6BF60854882 -A19A5B92AEC4D1C1B25A90C2C9CB584D9C9B536D979A9A95989795AB9897A29A9CA2A1979A -A39B9B9C9CA19F9C9CA29A9F9F9C9B9B9B989A9F9A9B9F9C9F9FA2A29C9C9BA397A2A1A19F -9AA19C9FA19B9A9B9F9C9F9A92B7ADB9C4729559C3A28548BF7C6CC0C0BC86C19AD4889A98 -9C989898989292 -8988988D9189918990908E92928E909790919F54A5C3CBC5A14197885A7EBC85AD82919A9F -9A839098929A6A5C88ADC7AAC7CAC59B8D60A58D899A9C979B9F9A9B9B98A19B9F9CA1A29B -9F9F9A98A5A29F9CA1A39C9FA29FA1A39CA29BA2989F989B9C9FA39FA29F9F9C9F9C9BA29A -9B989F9F9F9A9A9CA19B9B9F95AA53D0764C6086A98D4D39B9C59BB3A2897CB4D7D5899F98 -A3959A91919290 -929291918E918E918D929091908D978D9789AB4598C3C9C895427272515C9F4B639A9591BA -9279979AA3B4BBAB7A63719BC7CAC7989B85956FC4ABA2989C9CA19B9B9C9BA19B9B9B9A9C -A29FA29FA39FA2A29FA39BA19FA1A39F989CA19F9FA19AA29C9F9B9F98A29CA19AA29FA1A5 -9AA59BAA989F9C9BA29A9B98A29F54D34242B4C2B56F3E67983BB3CABDC2A6A3D7D591929F -91989B98989895 -8E8E92899091928E8E90899197908E9292909B5489BDC9C792B0445A8DA5824695BA98989F -AAA9B097834B3B413E416D86C1C7CA7E9A65A5B3976CAA9B959FA19F9C9CA19CA5AAAEB0A3 -9A9CA19FA19FA2A5A29FA2979F9C9B9BA2A39AA397A6869C9CA19F989F98A19B9F9B9AA99B -A1A1A69CA29C9B9A9C9F9BA19ABA9CD4CB325C444B5CABBF713A616341376CBDD9D789A597 -9A9798989C9595 -9198928E899891918E899191989090919792899579BAC5C5AAAA3E48C99F6F7997C99A9767 -C04F4F9A8D866C6586C8D083BCC7CB9C9B97A1A361BD7692A19A9C9C9A9F9BA2A19FA19C9F -A698A3A19F9F9F9C9BAA9B9FA29CA19C9B9BA59BA2AE919F9B9F9BA39FA3A29A9AA6A29FA3 -97A198A39CA39F98A29C989A9FBFD0C9CD9B3CA6606F95D73A464040587C98BAD8D3929B9F -9A979A9A929A9A -71577991889286918D8E8391928D9590959891B46AADC5C7BD973E44859157B5AEAB928386 -BF6F4958887EC2D0CCB77976B4C1C9B2A3989B6DB398BBB2989CA39B98989A9BA39BA3A3A2 -A1A59C9FA59B9BA3A3A1A2989A9C9C9AA5A19AA398A5905891A3AE9CA39F9F989B9C9BA29C -9B9B9C9CA9989F989CA19BA29BB9DEC1C7922F6563764FCB394F8E7A97B072B4D5D5899F9B -A395A29B989795 -674B507E7E776C95929248979090918E929A90A64CA2C0C4C5915946499788675B6F6C8E77 -7E575395BDD4C485769155D291C0C4C59C989BA5A36091729F9B9C9CA19BA1A19FA69BA19C -A69FA29FA2A59A9C9AA19AA59CA1A29F9C9AA39C9AA26C9F9A8EA1A5A1A29BA19CA3A29FA9 -A2AE9F465AAE90A1A29B98A3B960CD7E77826C55485C3CA37950A349C09B79B2D3D4859C9B -9B989B9C9A9798 -8E535388835861615A9B598D9292978D9A8E95924192BFC4C5979F3EB75C837E54448D4D53 -45B7D4D1C590769A979CB9CE9BB5C7C9A2A29A9867B25CA1A9A2A5A39FA19A9CA59CA3A5A1 -A1A19A9FA5A19CA1A19AA297A29FA29FA3A39AA3979F9A4D508688A671A5A59F79A59F9F4F -9B5C608E53C14BAAA645915B83428E61463B6F9795B56D7185866C489C8883B0D4D191989B -9B979F979A9C9B -50855B7C65654C4F9A5B9171978E9791958D9195B076B5C1C3BA9C6188A39B4B6CB2C8D2C4 -A35C6AD36A60919A97C7D28E7197C0CAABA5ADB095765B3E72ABA2A2A19BA29CA29CA1A9A2 -A6A5A1A29FA1A19CA59CA1A19BA1A2A59B9CA1A295606172546D635761535A6C53504C904D -7C595B7C405761AD954D9A7279D1A2D0C46A3CC0C897AAA2ABA9899892717AADD3D59A97A5 -979B9F98989AA1 -486D7C8D585B3257608D826A91919198919A9A95AE5BAABCC4C2C4C14DB771C7C9D1BD8251 -5A5A82A59F3E6398B9D5C2AE5483BDC9C5775C48539882926C65A3A29B9AA39CA3A5A55572 -909B497C9F9F9AA672AEA59CA2A39C9CA29CA5A141465B72535A464F674D504F65489BB25B -904B544148444C586D55A1A186CFB0C7D06D7188BD347A8595989BBFCDB2B4AED1D39BA395 -9F9C9F9F98959B -67554955676D5B4585797A8D9190979192928D9195459ABAC4C5BD885BD3D6C8BD6A4C4B5C -545A543E49546F95CCD1919F4672B4C7D357769FA1A95B9F7658A39F9BA2A3A3A291A26F58 -9557465197A39BA96AA27298A550A99FA651603A4D3298425C5548494F464B3E4D53956583 -A1675765585450514DBF519A4889B5C9D16F9176A35BB55377AAC19B9CCCA99FD5D5AB9C9C -979CA39BA19CA2 -4C416353484B764B898E909790918991929A7C7E8E4F85A6C3C4C3CCD2C4888248604F5149 -39445B5A454291C5D2C7A250595BADC3CB989A9C97A1A5B0AD5449B09B9CA59AA651658960 -9B506788A1A19C9B7E6D53A1A1609FA1AA558D3C45486D3B495755345342542C41979B9C95 -636555BD3A3C604D4572609C9049A6BDAB8579616AAB67CB865085C07950BCAAD0D1A5A29A -9F9F9F9898989B -7C5C4B4C535A42399089909790919097905A324D909079A3C1C5CABD8D53BC53614FB9C742 -5844C55C4B6150D1CA887E77A6469BC4C7B99A9AA3A2BA7AA37E885AA29C9CA295B04F9F76 -95559AAA8E979B82674C77ABA176A19B988657512C3A3455423B55514D4234464D7E8D9C63 -5B585B6D506F313159534155D0AE7C65574454794D9BAB61A6765ABF7CC0C297D4D1B49F9B -9B9B9A9B98A19F -5441575357504D6783619191A1979772773E8D6083776398C0D3CD775050B04C985548BA63 -B0BC4F5541A3C2D3BB485598BC4C8EBAC9CA9BA1A1A5AA989CAD4CBCB09FA1A1A2764954B0 -9283B0515979504D49655488BA9750A3A37E406F394639373B61444054413E4B5A615CB35B -514F3A486A5432603B4D4441BB6158838EAAADB5463ED5A1766D65CFA5A1B097D2D3B2A39F -A39A9FA19A9AA1 -59543E514C4F72978586908E605CA24260724D855759577CBFCBCBD049ABBC6F8667ADB2B0 -7C544D6363C4D4C76F4459A3A29572B4C5C79A9CA5A2A6B97E9BAB6071A95A7C9C71536F6D -606151498E917659515A5588A69053AA9895534B4C6548574540573B44484B4698A37189B0 -3A494B423A45414450423C596A6DABCE79914432973CC5ABA3BB51A6CF859BA1D4D3B3A19C -A29B9C9A9F989B -4155512C3C3B5465908D79443B4C55464F404B7C864C825C79BCCACBD19AA1416D464D3BCD -4F5154484FD1C73B425B60988EA64CAAC0C5C59BA2AD8895A56FB3AB556D7755517682543C -615042839B794D4F493B465167B36A346A86855332632F4F41512C48503C40549079506D3E -3B37403C46344232508DA5D1503E323E445A6AAA905048897A71D1CD88836FAECDD2C34F97 -A19FA2A19F9B95 -375832402E32394F899248323C5134483C40614F494B658855ABC4CACE57794249453C4151 -3A4B4244BFCD974C54A5959292924692C0C4C99B89A560726FA2ADAB83B94D37575365986C -50405A76A65A3959494C515B596A533A423A40316D6541264440543B3440394291605C5546 -3C343A4F493E5A467297D46D5165616A5A45499C88458879903A51C1C7B2C4ABCED4C844A3 -98A395909FA2A1 -444431312F4C484244923C343B402E44413E3949424258A16F8DC3CACAC1BD42454B453C41 -48343CB9CCC955654B6A9F9591976589BDC8CA9B5749465C7288487A8251985346483B8539 -573A86854F653B3C504B44412E3B3B322C3944594527444D34343B512927463C41606A973A -34342646494640499F4DB0728D5961374D764C5A4440585B58543E34715A3C8ECAD2D04D63 -B545445A9F9B9A -412F292E2F48343B4C55454848292E514D443E463B4C589F8361B7C7CDC7B4454448483E3E -58585AD0D08D8D487A898371959AAE6DBBC7C8CABB7C6A4D444B415C9AA5A1BA613B464B5C -505372494C3E3E314F494F39346359375B3A2F4139633B5B2C242E3A464B5C31445859BF2F -4F3954573242314065B54C4B4F3BAA374142AA3E505553A937374046443B4C76CDD4CB8971 -595C40A3A3A5A3 -37323A343946533455514C3E3E4F573B3B3A4F453E3B507A584F9CBDC5CD829F44C2554B46 -5C3EB9CFC73BB57C724C6A929A9FB45BAEC5C8C03B41374B3A4F53419B9263885345393C4B -4651974142485951513C4642413B4B2F392C32312F31292F2F2F4D51444C67543253599131 -3E3C593B27593B553AD471AA4955494D313755403C393A5A413B5592BD484872CAD3CB459C -31547E429BA1A1 -3A32415032314850574D4F4949485545413E3E4C3E3B51724B777CAAC5C9D5547A9C6D3B5C -6C50CDC792555067553E57929F5B924FA3BFC8CD6553536A9ABDBDB98DAABA4FC03B413A3B -5C454B57654C3A4C4146454C326032574C2C2E227C533A5179486D44584231513C3A544F51 -464231313E4539615C862F7163502E32534D3C3A34537A9BB77A594B90426767C9D3CB4D63 -4655928E9C9BA2 -412E46322E3737454246493C414151394832403941404C6A57AA4F90BCC9CE61BD4FCD4848 -40BFCD8D5A3E3E983C39A1959F45824B8EB5C4C7BDC0B392654CBCBF9A5B6C485B633E3B6D -413B615C464441465537403A3B262E34482E2429533E534C446D5B57503939343C4D4B4F60 -86322F5B4B503C4DD36A2F4F4D5C5C57416F429198B58E9F656A514D3C6A6D6CC5D2D15465 -3E4F6D899F9A9C -29262C2E2C3148443C3A3B3E453C44403A2F2E3A2F3746617A76407CAEC7CBB79241C94850 -48D0CB3B424641CC3439717259514D5C72B0C2C557403B343C4F97859A5455463EC12F343E -3431492E4F51403B422932372C39271C4127482E5AB3825063835448394440517E76A94483 -766C3A2F4C505746BC596F7E48465C554059A2A25A6D595C67604CA13A3C5A60C7D1CD5771 -515392909F9B9F -273237293A34495845343444413A3B3B41312C2F273E4565AB65955397C0C9CF903C595137 -B9CF9245505B51C43949604F463E536F61A6BDC5AE3B76614550BCB392405B76553BAA342F -3B2E464441464F4937495C3A32443A34262E3C34508254595A2C3B3137277A5555796D4C48 -3245423434403AC54B50655748403E3C8937639FC8823B5C465058AE452F3E65C7D2D89048 -3A4079597EA3A1 -2F5727394845494C424C293934443A3A3C242642502F465AC353C03E6FB3C9CECB464D4C91 -D0C73C492F493C796F4B4137454F4451538DBBC4CD323ED84FA2C0C5594F5B4455508E6727 -4C26342C3741542C3B4034484C413941373C403B37634049312C394234657279535041586C -55313237392F71C54D44342F2E3240595353CF858688869144484BA2603A795AC4D1D1463A -595A5372799B9F -2F3A443A42454B413B3E2C27373A40552F312C3C2F2F4157B448955C519FC7CBCA554D54C7 -CD9849453B3E2E42BF40315B3E5541495082ADC7CD414F98AA77C2CA393C32317A483AB351 -412E242C3E463E65373A3E3A322E3246393740443160504F462F2E46265A51543276655B91 -5379823B463AD64645444D555C6A3B714959C44B5388BB55514B45B7C0446D58C8D4D85042 -3B9041857AA5A3 -1D3E485C503E414F2F3B343E32343732443E29452E263C549B3C83BD4083BFCCCBCB45A3CD -C83A6A373A413B32CD3C394440443B405565A6C0C7454239C99CCAC9897A5A593B5B4D3ABD -483C1F2631484B484244262F3C24272E443C5761444B604044323B403E506C57609CA3904D -3239293426C1953E48536771604B7192CA5857838845BB95453B4FC06C294854C1D2D15541 -3A5B3B5CA19A88 -3A48443C3E2E4837343E2E4D34315129392C222E29344051903B6DB0455BADC9CBD048CACB -983CAA4D586F92AA8DC3A59883677797D0C48DBFC38E349CC8BFC4CB3C2E34403C83423E40 -8244674226422C3439312F343A2624242931394231375037484567515A554BA386A19CAB95 -4D3B414249C067636345602E393A5CCDC94F549286496D82C7B24CA35BBF4C4CC5D2D9403C -3B4D5749858E63 -3E3441343A2E2F442F2F2C41343931242627271D2741484D8D50609BB34895C5CACDBDD0C3 -4942BDA28979655B53AAB26A6597CDCAAB7177BAC2C53AC9AEC4C5AB493B57372740823A42 -8D50584626544941272E22415A3E342627453137272F3B453B44423A2E90A358829C9B8D86 -34617758C3423731415C7E905391BDD0CF5A76929549AD594C9ABC98AE764254C1D1D43749 -4567585A83544B -553C3A3B3A2E2C2F2945342F313A40343742422F2C4B324988915086C8396AB9C4CECAC28E -48456F7C91976A5A54C57AB4D1D1AB838D4571AAC3CE89C872C7C7C43246442E373E496339 -3CC0533E3944373724263A3B3E4C42273E312F29342927373B3B4F883A4C6A7C8997B75448 -48425460B245413737594F854951C8D0BF725959C77CBA49824463CB7E4D2F53C2D1D9446A -42715749416C39 -342F293939322E392F31413439261F271D222224312E394583BD3E61A28342899FC9CDCC3E -49272CC73A4465C3D1CA8D5549539F6342634492C1C1C4C4B4C9C941D4322E272E3A39345C -29417AA53B44343A263B342227221F2F31373B442C412E402F32714B4641B7989AA9A3AAB9 -6A4D92974945596150422E778386C7C59A57675859D660493E514B90394FC749C2D0D4373C -414B2C3B4B4945 -3231272726262F3B4440442C4B291C29291D1F3431423E487EBF2F5192C72F5B89BDCDCF6C -4C3C34C47CB7D5BF8D4F79444441A94057CD4C85BBC5C5BDC4C4A2486CCC3C2C343154403C -63463A597644373A1F312C442F462934343939373A2F2C6C542F485C6540443C92A5B0B28D -2EB79155404041444B3CB5C379CBCD7CCF916A606DAA6F8565494189392F8288C1D3CC4145 -3B422C61466739 -293A27272626272C3734312E2E2E221F1D1D1C31453C323C77B72C4D82C0324D61B3C9CED3 -49418DD0D5C98E5A5C41C24648493C49A9C49A6FB7C1C461C0CC544239C48D2E2F322F344D -57633A3295542940262C392E3A2C1F2C292941313E2E345A3A3A44447A4D4261A3AA823A5B -7EAA5B673E4C5941324CAD4FB095ADC7C47E53594557D0A65A425495ADBDBC9FBFD0CA7A45 -453C394D404C67 -2741271F272224262627292731271F1C241C293A2C39224177A52F466CA6583B4F9FC5CECD -BFD0D1AD98492F34324146413E453B83C4C7CB60ABC4C892C9D13732313ED6C586B4C8B392 -505551AB44B9452F271D3A2E262C1D22242C3437322C4D514053423A51534F5CA59A575141 -C33137455C494C604BCA456C57BAC7C9B76C58883257D486BBCBBFA260503C40C4D4CACD65 -4C4D393E415441 -2E2F391D1F1F1D1C1F1F243124262629273E292C2E3B2E3B719C393758A1BC2E4579C0CFCE -CCBF7139A5404D483C4B443742465951C1C7C251A2C0C5C5CBC740393C4D65DBB785543A2E -394582BF293A913E1F3226322F24262C1F2C32394850482F674532979A6A40BA8D403144AD -572E3E7E72836A46B053394857D9A171619C896F85BD85B46C4B39403C59954FC0D5CDDB45 -3A4641492E4559 -2E26413124271F1D1D1F242C2424243450483748342F393C6F9B5527519CC7343250A9C9D1 -CF51343E5149464653413451423CC43EC0C29F4C9BC0C7C7C9924C3E3B58344D6D678990A9 -C7A9C263373272853C272E27271F22291D34242E262E6060415C5442A53C3A4C3C4C2CA2AD -5C717C5A67372C95902C414F65C44D839FCAAD6C54486ADB3C3E5B5A3BA3D955C3D4CDD33B -2C424B3E454849 -373E2C2C1F1F1C1F1F26222E242E344534454C342624273B6FA188324888B33B394590BDCA -D0C3633A37A641393E2C3BB548A5C034BBC4717982BDC3C7C55348443C37548DBC9F605A49 -39A5C4537727275371241D1F312927271F1D272F39262E4C45A9614D3B3731422937BDBF79 -575551519B2FA3AB3291495A5C639C67AD4B3A58984589CA854D546C55BCD560C3D4D3CD92 -27263E40452E34 -221F451F24291D271D222C271F50373E402C2929242424326A9ABF31345CA1CB44414C9ABD -C9CB883B49B53761414542B2C4CB4053C7BCC9C558AABDC4CA3A4044324FBBC25731C1C531 -2F86CA85887A673E3C4B532E3C221A1F1D1D31314049292E315B424B7E3C3791B0B291B9BA -C7CDA6655765413A4C4140507195BFD54B6AB04D86394171CB9032AAD0BFD27EC0D4D4C8D4 -5357442C3C3463 -2C2653221F2722261D2226221F4F3E41311F2E22221F222E6798C82E32519AC7AD41457EB2 -C7CDD04F4C6A3B3A3A483C83C0C03E83C5C1C0C5599FB3C5D1372F4034A2B7C48E2937BDBB -BA92C99531489B322426513E3A1D1F1F2E1A393B3E27394446534140403A3B6CC9C0C5C89B -957750BA5541583B40452C4C79888DCD85BFB4585A5C764560D23A6DB3CCC56FBCD0D0C4D0 -453B426C467161 -2226611F502226261C24221F3146393A221D26222426342C5C98BF31374991BAD23C375392 -BFCBCDCFD2CBC4A28D5C4F46CA5C37A3B5C9BA9B5798A9C1BF3129294FBFC0C576242E3772 -BD82C9CD2C22836A3A1D27714B1C2E1D291C27463A403C266349585053487C605891A16590 -A25A4DBA542E896331313C347E5554CBC56A4B5B60A9BF495ABD535349AECB65BCD5D1B5CE -B74046576DBD7E -2224272C1D1F241D2227481F375C45292E24221C263122275C95B044314179B7C73A46467E -ADCBCCC5B5C7C8CDCCCDD4CDCDBFA29CB7C2C04F6586A3C4C458324231C098AA5B22263737 -C492C7CD27222F2C6C271F32724F1D1D1F2231312F413739494D555049D7C5456C5445A588 -48A17C2C53B38DCF272C48A15A8367A9D45BB3487A5BB0BF7C57B74F6041D042BFD2D397CB -D9503C39534D9F -end -restore -%%Trailer diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob46.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob46.gif deleted file mode 100755 index 87e942d32..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob46.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob46.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob46.pdf deleted file mode 100644 index e75b12ddf..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob46.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob48.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob48.eps deleted file mode 100755 index 4cea3b445..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob48.eps +++ /dev/null @@ -1,500 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Tue Jun 21 07:43:46 1994 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 195 371 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /arwlen 6 def /arw 4 def /arow { - gsave newpath moveto lineto unpagectm concat { - - } { - - } { - - } { - - } pathforall newpath 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath crlinalph setalpha strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - crstrpat findfont exch strwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /arwpath { - sc7mt currentmatrix pop gsave newpath moveto lineto unpagectm dup concat { - - } { - - } { - - } { - - } pathforall grestore unpagectm 5 -1 roll concat 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath sc7mt setmatrix -} bind def end -TopDrawDict begin /estroke { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /efill { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath unpagectm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /apstroke { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc pie chord or { - closepath - } if crlinalph setalpha pie not chord not and { - crfrtarw { - 2 copy crlinw exch gsave newpath angle1 1 add cos radius mul radius add angle1 1 add sin radius mul radius add moveto angle1 cos radius mul radius add angle1 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if crendarw { - 2 copy crlinw exch gsave newpath angle2 1 sub cos radius mul radius add angle2 1 sub sin radius mul radius add moveto angle2 cos radius mul radius add angle2 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if - } if crlincp setlinecap crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /apfill { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup 5 -2 roll arc pie chord or { - closepath - } if 1 xscale div 1 yscale div scale crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /mkepath { - dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def /closed exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc closed pie or chord or { - closepath - } if unpagectm -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 195 371 rectclip --163 -307.716461 translate -163 307.716461 195 370.041534 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 1 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [5 5] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -/crfilred 0.666662 def /crfilgrn 0.666662 def /crfilblu 0.666662 def /filinclr true def -1 0 0 1 0 0 sc6mt astore 25.455841 1 -1 162 414 0.646447 0 0 0.644711 186.363968 143.912872 sc5mt astore efill -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 25.455841 1 -1 162 414 0.646447 0 0 0.644711 186.363968 143.912872 sc5mt astore estroke -/crlinw 2.2 def -/crfilred 0.608402 def /crfilgrn 0.608402 def /crfilblu 0.608402 def /filinclr true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -103 203 300 410 1 0 0 1 0 0 sc6mt astore ssl -/crlinw 1.3 def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 16 8 218 624 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 21 12 331 407 1 0 0 1 0 0 sc6mt astore ssl -/crfrtarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 41.44873 -81.055298 229.55127 621.055298 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -47.427917 92.065979 335.427917 419.934021 1 0 0 1 0 0 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(L ) [20.015991 0 0 0] 274 524 /Helvetica [ 36 1 mul 0 0 36 0 0 ] [0.738973 0 0 0.806562 76.235466 98.36174] dotx -/crfrtarw false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 1 -26 308 337 1 0 0 1 0 0 sc6mt astore ssl -/usedash true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -232 197 613 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 15.572411 1 -1 110 361 1 0 0 1 71 21 sc5mt astore estroke -/usedash false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -27 197 339 1 0 0 1 0 0 sc6mt astore ssl -/crfrtarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 30.199997 0 205.800003 324 1 0 0 1 0 0 sc6mt astore ssl -(D ) [25.992004 0 0 0] 221 248 /Helvetica [ 36 1 mul 0 0 36 0 0 ] [0.566049 0 0 0.690498 120.168678 142.756439] dotx -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -28.203003 0.783417 299.203003 323.216583 1 0 0 1 0 0 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(Acceleration ) [12.006012 0 9 0 9 0 10.007996 0 3.996002 0 10.007996 0 5.813995 0 10.007996 0 5.003998 0 3.996002 0 10.007996 0 10.007996 0 0 0] 360 552 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -111 107] dotx -/crlinw 2.2 def -/crendarw true def -/crfrtarw false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -135.800003 0 358 653 1 0 0 1 0 0 sc6mt astore ssl -/crlinw 1.8 def -/crendarw false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 90 0 162 666 0.6 0 0 1 65.799995 -51 sc6mt astore ssl -/crlinw 1.2 def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 18 18 162 666 0.6 0 0 1 65.799995 -51 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 18 18 180 666 0.6 0 0 1 65.799995 -51 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 18 18 198 666 0.6 0 0 1 65.799995 -51 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 18 18 216 666 0.6 0 0 1 65.799995 -51 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 18 18 234 666 0.6 0 0 1 65.799995 -51 sc6mt astore ssl -/crlinw 1 def -/usedash true def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw true def -/crfrtarw true def -/esave save def 1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 100.422295 120.788506 293 248 -1 -1.179245 53 false false 2.620574 0 0 3.336606 -354.994202 -56.407837 sc5mt astore apstroke esave restore -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob48.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob48.gif deleted file mode 100755 index f049ed3e1..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob48.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob49.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob49.eps deleted file mode 100755 index bfd5dff3e..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob49.eps +++ /dev/null @@ -1,551 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Mon Jul 11 15:22:57 1994 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 253 102 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /rpath { - newpath moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} bind def /rfpath { - /rad3 exch def /hh3 exch def /ww3 exch def /yy1 exch def /xx1 exch def /xx2 xx1 ww3 add def /yy2 yy1 hh3 add def newpath xx1 yy1 rad3 hh3 0 gt { - add - } { - sub - } ifelse moveto xx1 yy1 xx2 yy1 rad3 arcto 4 { - pop - } repeat xx2 yy1 xx2 yy2 rad3 arcto 4 { - pop - } repeat xx2 yy2 xx1 yy2 rad3 arcto 4 { - pop - } repeat xx1 yy2 xx1 yy1 rad3 arcto 4 { - pop - } repeat closepath -} bind def /rfill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - 4 2 roll rpath crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - rectfill pop - } ifelse grestore -} bind def /rstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse 4 2 roll rpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /rffill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse rfpath filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /rfstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse rfpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /mkrpath { - dodrawctm rpath unpagectm -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /arwlen 6 def /arw 4 def /arow { - gsave newpath moveto lineto unpagectm concat { - - } { - - } { - - } { - - } pathforall newpath 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath crlinalph setalpha strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - crstrpat findfont exch strwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /arwpath { - sc7mt currentmatrix pop gsave newpath moveto lineto unpagectm dup concat { - - } { - - } { - - } { - - } pathforall grestore unpagectm 5 -1 roll concat 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath sc7mt setmatrix -} bind def end -TopDrawDict begin /estroke { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /efill { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath unpagectm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /apstroke { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc pie chord or { - closepath - } if crlinalph setalpha pie not chord not and { - crfrtarw { - 2 copy crlinw exch gsave newpath angle1 1 add cos radius mul radius add angle1 1 add sin radius mul radius add moveto angle1 cos radius mul radius add angle1 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if crendarw { - 2 copy crlinw exch gsave newpath angle2 1 sub cos radius mul radius add angle2 1 sub sin radius mul radius add moveto angle2 cos radius mul radius add angle2 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if - } if crlincp setlinecap crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /apfill { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup 5 -2 roll arc pie chord or { - closepath - } if 1 xscale div 1 yscale div scale crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /mkepath { - dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def /closed exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc closed pie or chord or { - closepath - } if unpagectm -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 253 101.394714 rectclip --126 -538.950012 translate -126 538.950012 253 101.394714 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 2.1 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 145 540 106 91 1 0 0 1 0 0 sc6mt astore rstroke -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 253 0 126 540 1 0 0 1 0 0 sc6mt astore ssl -/crendarw true def -0.906308 0.422618 -0.422618 0.906308 210.431412 -85.194763 sc4mt astore 0.906308 0.422618 -0.422618 0.906308 210.431412 -85.194763 sc5mt astore 78.399963 0 252 432 0.906308 0.422618 -0.422618 0.906308 206.431412 78.805237 sc6mt astore ssl -/crlinw 0.4 def -/crendarw false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 61 0 250 576 1 0 0 1 0 0 sc6mt astore ssl -/esave save def 0.965926 -0.258818 0.258818 0.965926 7.2173 128.73349 sc4mt astore 0.965926 -0.258818 0.258818 0.965926 7.2173 128.73349 sc6mt astore 134.300064 179.205444 360 270 -1.028571 1 17.5 false false 0.965926 -0.258818 0.258818 0.965926 --138.870514 391.890015 sc5mt astore apstroke esave restore -/txtdraw true def -/txlndraw true def -(q ) [9.377991 0 0 0] 404 545 /Symbol [ 18 1 mul 0 0 18 0 0 ] [1.097283 0 0 0.941274 -156.151672 65.34436] dotx -(M ) [16.001999 0 0 0] 185 584 /Symbol [ 18 1 mul 0 0 18 0 0 ] [1.291294 0 0 1.577843 -51.540283 -345.460327] dotx -/txtdraw true def -/txlndraw true def -( ) [0 0] 345 627 /Symbol [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 0 0] dotx -/txtdraw true def -/txlndraw true def -(F ) [7.332001 0 0 0] 162 311 /Helvetica [ 12 1 mul 0 0 12 0 0 ] [1.843728 0 0 1.696379 24.41333 90.426117] dotx -end -grestore -grestore -%%Trailer -%%DocumentFonts: Symbol -%%+ Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob49.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob49.gif deleted file mode 100755 index 0ff258479..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob49.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob55.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob55.eps deleted file mode 100755 index d24f54c90..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob55.eps +++ /dev/null @@ -1,1721 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: 1005quartcyc.eps - View 1 -- /wolfe/CAPA/phy231f4 -%%Creator: Tailor -%%CreationDate: Thu Sep 29 15:57:50 1994 -%%For: wolfe -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 469 300 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -%%BeginResource: procset (Tailor 1.0) -/TailorGroupBegin {pop} def /TailorGroupEnd {} def -/TailorBlockBegin {pop pop pop} def /TailorBlockEnd {} def -/TailorSetUniformStroke {pop} def -%%EndResource -gsave --20 -55 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -%%EndSetup -gsave -0 0 612 792 rectclip -0 0 612 792 rectclip -gsave -0 setgray -1 setlinewidth -(* Title: 1005quartcyc.eps - View 1 -- /wolfe/CAPA/phy231f4\012* Creator: Tailor\012* Created for: wolfe\012* Creation date: Thu Sep 29 15:56:58 1994\012\012* Title: 1005quartercycle.eps - View 1 -- /wolfe/CAPA/phy231f4\012* Creator: Tailor\012* -Created for: wolfe\012* Creation date: Thu Sep 29 15:55:45 1994\012\012* Creator: Mathematica\012* Creation date: Thu Sep 29 15:37:41 CDT 1994\012) TailorGroupBegin -gsave -[1 0 0 1 0 0] matrix invertmatrix concat -[1.019231 0 0 0.760802 0 -182.179993] concat -newpath -systemdict -begin -0 0 468 648 setbbox -0 0 moveto -468 0 lineto -468 648 lineto -0 648 lineto -end -clip -[1.019231 0 0 0.760802 0 -182.179993] matrix invertmatrix concat -[422.713989 0 0 422.713989 44.862 33.336975] concat -0 0 0.5 nxsetrgbcolor -0.001 setlinewidth -1 setlinecap -1 setlinejoin -gsave -newpath -systemdict -begin -0.17539 0 0.17539 0.61803 setbbox -0.17539 0 moveto -0.17539 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.32696 0 0.32696 0.61803 setbbox -0.32696 0 moveto -0.32696 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.47854 0 0.47854 0.61803 setbbox -0.47854 0 moveto -0.47854 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.63011 0 0.63011 0.61803 setbbox -0.63011 0 moveto -0.63011 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.78169 0 0.78169 0.61803 setbbox -0.78169 0 moveto -0.78169 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.93326 0 0.93326 0.61803 setbbox -0.93326 0 moveto -0.93326 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.13244 1 0.13244 setbbox -0 0.13244 moveto -1 0.13244 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.25016 1 0.25016 setbbox -0 0.25016 moveto -1 0.25016 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.36788 1 0.36788 setbbox -0 0.36788 moveto -1 0.36788 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.4856 1 0.4856 setbbox -0 0.4856 moveto -1 0.4856 lineto -end -stroke -grestore -0 nxsetgray -0.002 setlinewidth -gsave -newpath -systemdict -begin -0.02381 0 0.02381 0.00625 setbbox -0.02381 0 moveto -0.02381 0.00625 lineto -end -stroke -grestore -[422.713989 0 0 422.713989 44.862 33.336975] matrix invertmatrix concat -[1 0 0 1 0 -182.179993] concat -/Courier-Oblique findfont 1 scalefont [15 0 0 15 0 0] makefont -38 -exch -defineuserobject -38 execuserobject setfont -48.024899 201.410004 moveto -(0) show -[1 0 0 1 0 -182.179993] matrix invertmatrix concat -[422.713989 0 0 422.713989 44.862 33.336975] concat -gsave -newpath -systemdict -begin -0.17539 0 0.17539 0.00625 setbbox -0.17539 0 moveto -0.17539 0.00625 lineto -end -stroke -grestore -[422.713989 0 0 422.713989 44.862 33.336975] matrix invertmatrix concat -[1 0 0 1 0 -182.179993] concat -94.100098 201.410004 moveto -(0.025) show -[1 0 0 1 0 -182.179993] matrix invertmatrix concat -[422.713989 0 0 422.713989 44.862 33.336975] concat -gsave -newpath -systemdict -begin -0.32696 0 0.32696 0.00625 setbbox -0.32696 0 moveto -0.32696 0.00625 lineto -end -stroke -grestore -[422.713989 0 0 422.713989 44.862 33.336975] matrix invertmatrix concat -[1 0 0 1 0 -182.179993] concat -162.671005 201.410004 moveto -(0.05) show -[1 0 0 1 0 -182.179993] matrix invertmatrix concat -[422.713989 0 0 422.713989 44.862 33.336975] concat -gsave -newpath -systemdict -begin -0.47854 0 0.47854 0.00625 setbbox -0.47854 0 moveto -0.47854 0.00625 lineto -end -stroke -grestore -[422.713989 0 0 422.713989 44.862 33.336975] matrix invertmatrix concat -[1 0 0 1 0 -182.179993] concat -222.246002 201.410004 moveto -(0.075) show -[1 0 0 1 0 -182.179993] matrix invertmatrix concat -[422.713989 0 0 422.713989 44.862 33.336975] concat -gsave -newpath -systemdict -begin -0.63011 0 0.63011 0.00625 setbbox -0.63011 0 moveto -0.63011 0.00625 lineto -end -stroke -grestore -[422.713989 0 0 422.713989 44.862 33.336975] matrix invertmatrix concat -[1 0 0 1 0 -182.179993] concat -295.31601 201.410004 moveto -(0.1) show -[1 0 0 1 0 -182.179993] matrix invertmatrix concat -[422.713989 0 0 422.713989 44.862 33.336975] concat -gsave -newpath -systemdict -begin -0.78169 0 0.78169 0.00625 setbbox -0.78169 0 moveto -0.78169 0.00625 lineto -end -stroke -grestore -[422.713989 0 0 422.713989 44.862 33.336975] matrix invertmatrix concat -[1 0 0 1 0 -182.179993] concat -350.390991 201.410004 moveto -(0.125) show -[1 0 0 1 0 -182.179993] matrix invertmatrix concat -[422.713989 0 0 422.713989 44.862 33.336975] concat -gsave -newpath -systemdict -begin -0.93326 0 0.93326 0.00625 setbbox -0.93326 0 moveto -0.93326 0.00625 lineto -end -stroke -grestore -[422.713989 0 0 422.713989 44.862 33.336975] matrix invertmatrix concat -[1 0 0 1 0 -182.179993] concat -418.962006 201.410004 moveto -(0.15) show -[1 0 0 1 0 -182.179993] matrix invertmatrix concat -[422.713989 0 0 422.713989 44.862 33.336975] concat -0.001 setlinewidth -gsave -newpath -systemdict -begin -0.05412 0 0.05412 0.00375 setbbox -0.05412 0 moveto -0.05412 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.08444 0 0.08444 0.00375 setbbox -0.08444 0 moveto -0.08444 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.11475 0 0.11475 0.00375 setbbox -0.11475 0 moveto -0.11475 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.14507 0 0.14507 0.00375 setbbox -0.14507 0 moveto -0.14507 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.2057 0 0.2057 0.00375 setbbox -0.2057 0 moveto -0.2057 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.23602 0 0.23602 0.00375 setbbox -0.23602 0 moveto -0.23602 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.26633 0 0.26633 0.00375 setbbox -0.26633 0 moveto -0.26633 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.29665 0 0.29665 0.00375 setbbox -0.29665 0 moveto -0.29665 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.35728 0 0.35728 0.00375 setbbox -0.35728 0 moveto -0.35728 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.38759 0 0.38759 0.00375 setbbox -0.38759 0 moveto -0.38759 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.41791 0 0.41791 0.00375 setbbox -0.41791 0 moveto -0.41791 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.44822 0 0.44822 0.00375 setbbox -0.44822 0 moveto -0.44822 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.50885 0 0.50885 0.00375 setbbox -0.50885 0 moveto -0.50885 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.53917 0 0.53917 0.00375 setbbox -0.53917 0 moveto -0.53917 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.56948 0 0.56948 0.00375 setbbox -0.56948 0 moveto -0.56948 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.5998 0 0.5998 0.00375 setbbox -0.5998 0 moveto -0.5998 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.66043 0 0.66043 0.00375 setbbox -0.66043 0 moveto -0.66043 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.69074 0 0.69074 0.00375 setbbox -0.69074 0 moveto -0.69074 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.72106 0 0.72106 0.00375 setbbox -0.72106 0 moveto -0.72106 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.75137 0 0.75137 0.00375 setbbox -0.75137 0 moveto -0.75137 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.812 0 0.812 0.00375 setbbox -0.812 0 moveto -0.812 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.84232 0 0.84232 0.00375 setbbox -0.84232 0 moveto -0.84232 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.87263 0 0.87263 0.00375 setbbox -0.87263 0 moveto -0.87263 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.90295 0 0.90295 0.00375 setbbox -0.90295 0 moveto -0.90295 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.96358 0 0.96358 0.00375 setbbox -0.96358 0 moveto -0.96358 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99389 0 0.99389 0.00375 setbbox -0.99389 0 moveto -0.99389 0.00375 lineto -end -stroke -grestore -[422.713989 0 0 422.713989 44.862 33.336975] matrix invertmatrix concat -[1 0 0 1 0 -173.179993] concat -191.604004 176.929993 moveto -(Time \(seconds\)) show -[1 0 0 1 0 -173.179993] matrix invertmatrix concat -[422.713989 0 0 422.713989 44.862 33.336975] concat -0.002 setlinewidth -gsave -newpath -systemdict -begin -0 0 1 0 setbbox -0 0 moveto -1 0 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.01472 0.00625 0.01472 setbbox -0 0.01472 moveto -0.00625 0.01472 lineto -end -stroke -grestore -[422.713989 0 0 422.713989 44.862 33.336975] matrix invertmatrix concat -[1 0 0 1 0 -182.179993] concat -28.176201 217.186996 moveto -(0) show -[1 0 0 1 0 -182.179993] matrix invertmatrix concat -[422.713989 0 0 422.713989 44.862 33.336975] concat -gsave -newpath -systemdict -begin -0 0.13244 0.00625 0.13244 setbbox -0 0.13244 moveto -0.00625 0.13244 lineto -end -stroke -grestore -[422.713989 0 0 422.713989 44.862 33.336975] matrix invertmatrix concat -[1 0 0 1 0 -182.179993] concat -20.108 266.949005 moveto -(10) show -[1 0 0 1 0 -182.179993] matrix invertmatrix concat -[422.713989 0 0 422.713989 44.862 33.336975] concat -gsave -newpath -systemdict -begin -0 0.25016 0.00625 0.25016 setbbox -0 0.25016 moveto -0.00625 0.25016 lineto -end -stroke -grestore -[422.713989 0 0 422.713989 44.862 33.336975] matrix invertmatrix concat -[1 0 0 1 0 -182.179993] concat -20.528 316.710999 moveto -(20) show -[1 0 0 1 0 -182.179993] matrix invertmatrix concat -[422.713989 0 0 422.713989 44.862 33.336975] concat -gsave -newpath -systemdict -begin -0 0.36788 0.00625 0.36788 setbbox -0 0.36788 moveto -0.00625 0.36788 lineto -end -stroke -grestore -[422.713989 0 0 422.713989 44.862 33.336975] matrix invertmatrix concat -[1 0 0 1 0 -182.179993] concat -20.3477 366.472992 moveto -(30) show -[1 0 0 1 0 -182.179993] matrix invertmatrix concat -[422.713989 0 0 422.713989 44.862 33.336975] concat -gsave -newpath -systemdict -begin -0 0.4856 0.00625 0.4856 setbbox -0 0.4856 moveto -0.00625 0.4856 lineto -end -stroke -grestore -[422.713989 0 0 422.713989 44.862 33.336975] matrix invertmatrix concat -[1 0 0 1 0 -182.179993] concat -19.952 416.234985 moveto -(40) show -[1 0 0 1 0 -182.179993] matrix invertmatrix concat -[422.713989 0 0 422.713989 44.862 33.336975] concat -gsave -newpath -systemdict -begin -0 0.60332 0.00625 0.60332 setbbox -0 0.60332 moveto -0.00625 0.60332 lineto -end -stroke -grestore -[422.713989 0 0 422.713989 44.862 33.336975] matrix invertmatrix concat -[1 0 0 1 0 -182.179993] concat -20.0959 465.996002 moveto -(50) show -[1 0 0 1 0 -182.179993] matrix invertmatrix concat -[422.713989 0 0 422.713989 44.862 33.336975] concat -0.001 setlinewidth -gsave -newpath -systemdict -begin -0 0.03826 0.00375 0.03826 setbbox -0 0.03826 moveto -0.00375 0.03826 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.06181 0.00375 0.06181 setbbox -0 0.06181 moveto -0.00375 0.06181 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.08535 0.00375 0.08535 setbbox -0 0.08535 moveto -0.00375 0.08535 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.10889 0.00375 0.10889 setbbox -0 0.10889 moveto -0.00375 0.10889 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.15598 0.00375 0.15598 setbbox -0 0.15598 moveto -0.00375 0.15598 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.17953 0.00375 0.17953 setbbox -0 0.17953 moveto -0.00375 0.17953 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.20307 0.00375 0.20307 setbbox -0 0.20307 moveto -0.00375 0.20307 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.22661 0.00375 0.22661 setbbox -0 0.22661 moveto -0.00375 0.22661 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.2737 0.00375 0.2737 setbbox -0 0.2737 moveto -0.00375 0.2737 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.29725 0.00375 0.29725 setbbox -0 0.29725 moveto -0.00375 0.29725 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.32079 0.00375 0.32079 setbbox -0 0.32079 moveto -0.00375 0.32079 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.34433 0.00375 0.34433 setbbox -0 0.34433 moveto -0.00375 0.34433 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.39142 0.00375 0.39142 setbbox -0 0.39142 moveto -0.00375 0.39142 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.41497 0.00375 0.41497 setbbox -0 0.41497 moveto -0.00375 0.41497 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.43851 0.00375 0.43851 setbbox -0 0.43851 moveto -0.00375 0.43851 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.46205 0.00375 0.46205 setbbox -0 0.46205 moveto -0.00375 0.46205 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.50914 0.00375 0.50914 setbbox -0 0.50914 moveto -0.00375 0.50914 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.53269 0.00375 0.53269 setbbox -0 0.53269 moveto -0.00375 0.53269 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.55623 0.00375 0.55623 setbbox -0 0.55623 moveto -0.00375 0.55623 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0 0.57977 0.00375 0.57977 setbbox -0 0.57977 moveto -0.00375 0.57977 lineto -end -stroke -grestore -[422.713989 0 0 422.713989 44.862 33.336975] matrix invertmatrix concat -[0 1 -1 0 0.296501 -181.857971] concat -304.848999 -13.832 moveto -(Force \(N\)) show -[0 1 -1 0 0.296501 -181.857971] matrix invertmatrix concat -[422.713989 0 0 422.713989 44.862 33.336975] concat -0.002 setlinewidth -gsave -newpath -systemdict -begin -0 0 0 0.61803 setbbox -0 0 moveto -0 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.02381 0.61178 0.02381 0.61803 setbbox -0.02381 0.61178 moveto -0.02381 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.17539 0.61178 0.17539 0.61803 setbbox -0.17539 0.61178 moveto -0.17539 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.32696 0.61178 0.32696 0.61803 setbbox -0.32696 0.61178 moveto -0.32696 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.47854 0.61178 0.47854 0.61803 setbbox -0.47854 0.61178 moveto -0.47854 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.63011 0.61178 0.63011 0.61803 setbbox -0.63011 0.61178 moveto -0.63011 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.78169 0.61178 0.78169 0.61803 setbbox -0.78169 0.61178 moveto -0.78169 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.93326 0.61178 0.93326 0.61803 setbbox -0.93326 0.61178 moveto -0.93326 0.61803 lineto -end -stroke -grestore -0.001 setlinewidth -gsave -newpath -systemdict -begin -0.05412 0.61428 0.05412 0.61803 setbbox -0.05412 0.61428 moveto -0.05412 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.08444 0.61428 0.08444 0.61803 setbbox -0.08444 0.61428 moveto -0.08444 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.11475 0.61428 0.11475 0.61803 setbbox -0.11475 0.61428 moveto -0.11475 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.14507 0.61428 0.14507 0.61803 setbbox -0.14507 0.61428 moveto -0.14507 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.2057 0.61428 0.2057 0.61803 setbbox -0.2057 0.61428 moveto -0.2057 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.23602 0.61428 0.23602 0.61803 setbbox -0.23602 0.61428 moveto -0.23602 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.26633 0.61428 0.26633 0.61803 setbbox -0.26633 0.61428 moveto -0.26633 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.29665 0.61428 0.29665 0.61803 setbbox -0.29665 0.61428 moveto -0.29665 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.35728 0.61428 0.35728 0.61803 setbbox -0.35728 0.61428 moveto -0.35728 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.38759 0.61428 0.38759 0.61803 setbbox -0.38759 0.61428 moveto -0.38759 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.41791 0.61428 0.41791 0.61803 setbbox -0.41791 0.61428 moveto -0.41791 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.44822 0.61428 0.44822 0.61803 setbbox -0.44822 0.61428 moveto -0.44822 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.50885 0.61428 0.50885 0.61803 setbbox -0.50885 0.61428 moveto -0.50885 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.53917 0.61428 0.53917 0.61803 setbbox -0.53917 0.61428 moveto -0.53917 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.56948 0.61428 0.56948 0.61803 setbbox -0.56948 0.61428 moveto -0.56948 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.5998 0.61428 0.5998 0.61803 setbbox -0.5998 0.61428 moveto -0.5998 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.66043 0.61428 0.66043 0.61803 setbbox -0.66043 0.61428 moveto -0.66043 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.69074 0.61428 0.69074 0.61803 setbbox -0.69074 0.61428 moveto -0.69074 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.72106 0.61428 0.72106 0.61803 setbbox -0.72106 0.61428 moveto -0.72106 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.75137 0.61428 0.75137 0.61803 setbbox -0.75137 0.61428 moveto -0.75137 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.812 0.61428 0.812 0.61803 setbbox -0.812 0.61428 moveto -0.812 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.84232 0.61428 0.84232 0.61803 setbbox -0.84232 0.61428 moveto -0.84232 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.87263 0.61428 0.87263 0.61803 setbbox -0.87263 0.61428 moveto -0.87263 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.90295 0.61428 0.90295 0.61803 setbbox -0.90295 0.61428 moveto -0.90295 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.96358 0.61428 0.96358 0.61803 setbbox -0.96358 0.61428 moveto -0.96358 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99389 0.61428 0.99389 0.61803 setbbox -0.99389 0.61428 moveto -0.99389 0.61803 lineto -end -stroke -grestore -0.002 setlinewidth -gsave -newpath -systemdict -begin -0 0.61803 1 0.61803 setbbox -0 0.61803 moveto -1 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.01472 1 0.01472 setbbox -0.99375 0.01472 moveto -1 0.01472 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.13244 1 0.13244 setbbox -0.99375 0.13244 moveto -1 0.13244 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.25016 1 0.25016 setbbox -0.99375 0.25016 moveto -1 0.25016 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.36788 1 0.36788 setbbox -0.99375 0.36788 moveto -1 0.36788 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.4856 1 0.4856 setbbox -0.99375 0.4856 moveto -1 0.4856 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.60332 1 0.60332 setbbox -0.99375 0.60332 moveto -1 0.60332 lineto -end -stroke -grestore -0.001 setlinewidth -gsave -newpath -systemdict -begin -0.99625 0.03826 1 0.03826 setbbox -0.99625 0.03826 moveto -1 0.03826 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.06181 1 0.06181 setbbox -0.99625 0.06181 moveto -1 0.06181 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.08535 1 0.08535 setbbox -0.99625 0.08535 moveto -1 0.08535 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.10889 1 0.10889 setbbox -0.99625 0.10889 moveto -1 0.10889 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.15598 1 0.15598 setbbox -0.99625 0.15598 moveto -1 0.15598 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.17953 1 0.17953 setbbox -0.99625 0.17953 moveto -1 0.17953 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.20307 1 0.20307 setbbox -0.99625 0.20307 moveto -1 0.20307 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.22661 1 0.22661 setbbox -0.99625 0.22661 moveto -1 0.22661 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.2737 1 0.2737 setbbox -0.99625 0.2737 moveto -1 0.2737 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.29725 1 0.29725 setbbox -0.99625 0.29725 moveto -1 0.29725 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.32079 1 0.32079 setbbox -0.99625 0.32079 moveto -1 0.32079 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.34433 1 0.34433 setbbox -0.99625 0.34433 moveto -1 0.34433 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.39142 1 0.39142 setbbox -0.99625 0.39142 moveto -1 0.39142 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.41497 1 0.41497 setbbox -0.99625 0.41497 moveto -1 0.41497 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.43851 1 0.43851 setbbox -0.99625 0.43851 moveto -1 0.43851 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.46205 1 0.46205 setbbox -0.99625 0.46205 moveto -1 0.46205 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.50914 1 0.50914 setbbox -0.99625 0.50914 moveto -1 0.50914 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.53269 1 0.53269 setbbox -0.99625 0.53269 moveto -1 0.53269 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.55623 1 0.55623 setbbox -0.99625 0.55623 moveto -1 0.55623 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.57977 1 0.57977 setbbox -0.99625 0.57977 moveto -1 0.57977 lineto -end -stroke -grestore -0.002 setlinewidth -gsave -newpath -systemdict -begin -1 0 1 0.61803 setbbox -1 0 moveto -1 0.61803 lineto -end -stroke -grestore -0.004 setlinewidth -gsave -newpath -systemdict -begin -0.02381 0.01472 0.97619 0.60332 setbbox -0.02381 0.60332 moveto -0.02505 0.60332 lineto -0.02629 0.60331 lineto -0.02753 0.60331 lineto -0.02877 0.6033 lineto -0.03001 0.60329 lineto -0.03125 0.60327 lineto -0.03373 0.60324 lineto -0.03621 0.6032 lineto -0.03869 0.60314 lineto -0.04365 0.603 lineto -0.04861 0.60283 lineto -0.05357 0.60261 lineto -0.06349 0.60206 lineto -0.07341 0.60135 lineto -0.08333 0.60048 lineto -0.10317 0.59828 lineto -0.12302 0.59546 lineto -0.14286 0.59201 lineto -0.18254 0.58326 lineto -0.22222 0.57208 lineto -0.2619 0.55851 lineto -0.30159 0.54262 lineto -0.34127 0.52446 lineto -0.38095 0.50412 lineto -0.42063 0.48169 lineto -0.46032 0.45725 lineto -0.5 0.43092 lineto -0.53968 0.40281 lineto -0.57937 0.37303 lineto -0.61905 0.34173 lineto -0.65873 0.30902 lineto -0.69841 0.27505 lineto -0.7381 0.23996 lineto -0.77778 0.20392 lineto -0.81746 0.16706 lineto -0.85714 0.12955 lineto -0.89683 0.09154 lineto -0.93651 0.05321 lineto -0.97619 0.01472 lineto -end -stroke -grestore -grestore -TailorGroupEnd -grestore -gsave -[1 0 0 -1 0 792] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Courier-Oblique diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob55.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob55.gif deleted file mode 100755 index 53b741924..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob55.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob56a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob56a.eps deleted file mode 100755 index c3f8a9dd9..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob56a.eps +++ /dev/null @@ -1,579 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: Curzon6.5.create -%%Creator: Create -%%CreationDate: Fri Feb 14 12:12:07 1997 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 130 355 463 626 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(A1!l3nPi2fa$M:$B%mDCl'gZOb"p.h)_LYc_DV0)3C8R4pJcJD5R5"sU1[G -% +[+Ac%RkTJ)'6ccB/<7/ZQ%K'bYT5U^U/?]g%JHCq%eM].G07>c[3ecYgpE,liTR^`^pS!!E<*PS -% -YXEr[=;.fL!R5cbrp&V.Ri$6T>TcD$QCa_;;O!/]28g#fi6\k_ -% PN,^WRL)O0EnG*Hh/nb1(EV\i8ZKCdNX].CGi]B: -% +:.9fn(8&i6%/q!m4gRE%Q%/[?\!5,kQ6>q:``qeVo/#_%6(Ln4ClknM#N7apU<;?)VP1D%6 -% 38^,4mnJY[IJ?ZHeSA,_m8fkXJ;[d:RtHOrnC,8Du"\Ad4Wu,rLO,e$Df6#kA0L3U'.AqGKV -% 8pRUdn:G^*[cgmM@KD*q?4uSdZ%-V`C)B:.kg:L2Ud.=pgKF`CP4'd\tpn5gW$@`Gp+bFaU4 -% U#B;1%rMWree`\s%ruNWb^"?#\_"4fEata>bI.."@44LBo<^:;?AYq5WVH8K2n?M#dXZ2mM+ -% !#e00lu<2cD"XJ^I:OhhE>k^j_3kQWf8OSj4a4W-TT5!f)V%!$m>).)hrK;?_Bm#qMudLV60 -% b?kj^pqIMSOb*b4OV\TH7L_u4JO-lB)(150-)n/7D1&)`Xb7uRBk`6D/>7;b\46U7VKnCn*= -% QLM]uSb:5r%li%Smb -% Uk+tB[e@A'oG;u5mG$l)BJ7="KufQ'=[HL*q!Ee+GaK6g>\I5E,%(UeOsL<-j;:u;7B7&_AO -% O'6npAlY9b`.'gJWu%NI3ZI-li!"l%TWZ@u:k+fqKbWeT,50T.7\+T_tcfu -% bWh8;3ST@VEU9QjM1e4od/@id?^h=`N?K=&-N%3p9/7KlWYO%?e?_"Wm&`R?@>2/0Xj#GYkGYP_XSr>Hr"NbW(N>TZ0eQ@SQ/nI!^OO$5f'Rm -% jb0t;'u@^dn9s>Sis.q%_Tn]kKopaklPAl$7?^,0(I3cXTSHArTh#6`&-Pt3MGuJ>!%08dJP -% ZIN%KQi')$8`H"JF@SgO^2RI2oB`"uQ[b!!(#2!GFdrA#D@7=`&Z&-ft3%*W2 -% /6s'R$][d&`9EPP9Ao#jbrFC]fTE*LoKst#HLfV:uAIccs9$fAK0!kXbJP!`Z'%!qKe=bBBB -% nMb8L5JTJ^s-&=F.sMeJ3.g&cd(7NMk/sB63hh`KuOt(Z0L4Y/XkFR/h&8$d>CLk!X6c7oDk -% tc!O%Jj)\iWFW)H"I*AdH>W!7dG5Dp:VW5YnI@#JD'Rh3R,J=Fq*Lctrlg!9#P`&F/; -% 5#WE?g%L3/%D?V-FW1>M*G#3N=MQ%eJI_oL2BAMo^^i&`orV_0lYFbSc -% BDk?-4D%,Ed/(kEjB9Y\60>^AjZPT&G>[=X6M=?p>.UNhu7@jliA7+*obt0!+;Je1T*12+Ug -% (Cgq@;7?9Q:^FphqWQtDcU6.>o)kA+iQd/Fl(E$^QN@TUDIDQ_%5=Wd\K4)R8mjnY#LS9I/4&->QXod/HN`8Rq)/TncuX2'$\H.og# -% <^PAcoG!"aSH!@c0\>LFtlSH'tsM%,b`YE-CseB>SV2,q*mf`\$4PES[?lk%AAka'\3;Fs3c -% 8mcS1o(C9dIB58:hCZflQB61er$3:]ck6HE8VJ7M6#"Sb!VD&9_ci[]!$lR[t9ct?IOp5QL# -% '=erDQnCt;#j>KKj_E&#iKjE4%00dma!co&ZAC;\N;\ou3jt"*(hYj"NmW* -% .e+e9;AW:gLIBoed\6(Qfx -% EndEmbeddedGraphics N 2723 aa3 E 5d S 4a719 R 22642f40 -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -<< -/PaintType 1 /PatternType 1 /TilingType 1 -/BBox [0.000000 0.000000 36.250000 23.000000] -/XStep 24.754715 /YStep 21.655914 -/PaintProc { -begin -0 0 500 500 rectclip -0 0 36.25 23 rectclip -0 0 0.15 1 10 SU -[1 0 0 -1 -0.350367 22.077084] concat -[1.338235 0 0 1.027778 0.100367 0.077084] concat -N -0.606891 0.13596 0.096759 nxsetrgbcolor -0 0 17 9 rectfill -0.15 L -0 nxsetgray -0 0 17 9 rectstroke -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 12.649632 11.583333] concat -[1.338235 0 0 1.111111 0.100368 0.083333] concat -N -0.606891 0.13596 0.096759 nxsetrgbcolor -0 0 17 9 rectfill -0.15 L -0 nxsetgray -0 0 17 9 rectstroke -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 -11.099264 11.570728] concat -[1.323529 0 0 1.109722 0.099264 0.083229] concat -N -0.606891 0.13596 0.096759 nxsetrgbcolor -0 0 17 9 rectfill -0.15 L -0 nxsetgray -0 0 17 9 rectstroke -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 23.649632 22.058331] concat -[1.338235 0 0 1.027778 0.100368 0.077084] concat -N -0.606891 0.13596 0.096759 nxsetrgbcolor -0 0 17 9 rectfill -0.15 L -0 nxsetgray -0 0 17 9 rectstroke -0 0 T -grestore -end -} ->> -matrix makepattern /staggered_bricks exch def -<< -/PaintType 1 /PatternType 1 /TilingType 1 -/BBox [0.000000 0.000000 10.000000 9.000000] -/XStep 6.000000 /YStep 6.000000 -/PaintProc { -begin -gsave -0 0 500 500 rectclip -0 0 10 9 rectclip -0 0 0.15 1 10 SU -[1 0 0 -1 2.924999 6.229165] concat -[1 0 0 0.833333 0.075001 0.062498] concat -N -0.425275 0.17011 0.086718 nxsetrgbcolor -0 0 4 4 rectfill -0.15 L -0 nxsetgray -0 0 4 4 rectstroke -0 0 T -grestore -grestore -end -} ->> -matrix makepattern /Small_Squares exch def -%%EndSetup -gsave -130 355 333 271 rectclip -0 0 0.15 1 10 SU -240 384 T -N -0.15 L -0 nxsetgray -144 -216 0 216 line -0 0 T -grestore -0 0 0.15 1 10 SU -240 480 T -N -0.15 L -0 nxsetgray -0 120 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -336 384 T -N -2 L -0 nxsetgray -48 -72 0 72 line -123.6884 0 72 arrow -0 0 T -grestore -0 0 2 1 10 SU -403 377 T -N -2 L -0 nxsetgray -48 0 0 0 line -0 48 0 arrow -0 0 T -grestore -0 0 1 1 10 SU -[4] 0 setdash -[1 0 0 -1 143 697] concat -[1 0 0 -1 1 193] concat -N -1 L -0 nxsetgray -N -96 96 96 -90 -56.309933 arc -s -33.690067 149.251221 16.123171 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[4] 0 setdash -[1 0 0 -1 245 571] concat -gsave -/Symbol findfont 18 scalefont [1 0 0 -1 0 0] makefont -195 -exch -defineuserobject -195 execuserobject setfont -6 7.5 T --5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(q) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 378 390] concat -[1 0 0 1 1 1] concat -N -gsave N -Small_Squares setpattern -gsave -24 24 0 0 oval fill -grestore -grestore -0.15 L -0 nxsetgray -gsave -24 24 0 0 oval 0.041667 0.041667 S s -grestore -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 131 625] concat -[1 0 -1 1.016667 25 0.8] concat -N -gsave N -staggered_bricks setpattern -0 0 192 24 rectfill -grestore -0.15 L -0 nxsetgray -0 0 192 24 rectstroke -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 418 393] concat -gsave -/Times-BoldItalic findfont 14 scalefont [1 0 0 -1 0 0] makefont -320 -exch -defineuserobject -320 execuserobject setfont -6 6 T --5 5 T -N 0 0 m -0 nxsetgray -0 0 m -(F) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 346 417] concat -gsave -320 execuserobject setfont -6 6 T --4.5 5 T -N 0 0 m -0 nxsetgray -0 0 m -(T) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 368 366] concat -gsave -320 execuserobject setfont -7 4.5 T --5.5 3 T -N 0 0 m -0 nxsetgray -0 0 m -(m) show -0 0 T -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Times-BoldItalic -%%+ Symbol diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob56a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob56a.gif deleted file mode 100755 index bec5e8966..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob56a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob57a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob57a.eps deleted file mode 100755 index 2f0406309..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob57a.eps +++ /dev/null @@ -1,2880 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: Curzon6.6.create -%%Creator: Create -%%CreationDate: Fri Feb 14 12:31:45 1997 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 275 459 451 753 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(@ITs6BTUq-t -% 2>d.3ll-+;Ou+&L*;^acIYHJc]nZ`f/=r0l,nSi^/1T>QR$4.!PbKN>joX'UAb3!sIMK1M[2$8D#V]1i3)]=Ze[`? -% 6MYlhuU(dL'nik6\FkJ>4`4B/nEH[%78'nc_Y&lfo'Fa9K9.g\@>Cg`f1fm$tlhN#.KO./o9 -% %9OWt'i]m]oIOn3/nLcl*`PW@c*!K>DKFsC(ihLlcs_\D>)8l,.CmgaLBn*A>R[-GlJma`[clqMOj9oaNLngr,EIQC$)EZY&]rgj8M2 -% G^P>=Z)AsFKD.A)oBE2dJh?[`gRP%:#lX.!/!q8SnDc<67""edsCIf93]TSS45L`?g`j<0)K -% Mn2^eKK$u&6`H:#=D=K8b$_$$Rt@-4U9TSK/np?g+>:>`g5)N(48.kfF0L*?X-(FXl/Wd[8k -% C\B^M_^NZ!c-DAsm:,h!:DN3")jEEmdN2Sc\$j*1tmcb&(Ri-$Q9sM)+j/UE.>S0Vob8#bn1 -% ARY[]0TFU?3KG*]X,HghM;A%V\:m[#0.p_\"R!0p]T^X"jt"5QGh6-l;'?-1RDE -% MikL\3YiNI44$+%goZUP?XN-T_Fpp+@_P6L7*a]>%Fl!(0kp2:^.tNTE,*3AXK.k+d5l'(J6 -% Nce<0l-80M=WDOeO4))l7ta9#'e)9*8"_L]^2WDdm=ls[t14&2#>Emdfs$mLH8]jsRP*D0k] -% _'ZX%KuY2LGh'T*e5P8R:ItNtJG)WQ^XW!gjA6o5*%KFBQTrG -% ufgLbg4X;@Ec*(rR&QY_jM*0F*UT`",>R4nWqn-qb]d"3?82T:!rU9;r$o633?dA-E1DBL37 -% SOFU43,9h1/J-f*3%mhZEGVBQ_!"1al"=d4J!YC7`G*7S$VL\^MTKiO$@[%oD_L:nu^f"43_ -% I0U0&-<]d(mYF-6P*]?^>kk4/.mMB$j%8JW5T8OZ,KmWKbJV@5nHGX_[E?&J_Yl#"p#9#,l4 -% /J^bA4Vp=I(Z"gEc]0]4(hYQ.0EY^m8m$MmNV7L*[iK1dA<(L]"MJ,FhM9O+8U;DAGBNffEX -% `*jScTF)eKE>:ukT+@1=6r^PA+0;-0'sSSU%[)GQajWis`&NS72/a&,:k]h@\39;SmsB")jt -% RlY7oePGO'L$Rs83*e!>84jjM6i\9$pIM6U!!lD@_?`f5://%cRPj`9.-4#m;qa$m8R,^tpDHU=(]n,u!-"YF/I4cf+q]>jOL+il@6p_rB21dE7J^RlOi>t82-OWkHaDZBcSh_]Z:J3DV!beQg$g:np@k -% `WiaIn!E8V8-f)#sa]'dYm(//$+@#!4C#/RbmC-n<%7X^7^%'+dE2a6HA(RanPT`Mm%ol4:? -% :=0?V?.rarL:.jGp'msQq!X_2G5mWd\K.nic't_T-NY8X\V;a!\X$'S'+;Ua>SnVc@g=Etr6 -% aEhI$FIBtY#[df%M5Z\`UTpW5;B!FR?TN*(UeGoZ$!=?b\9] -% (TsXMM;SJD7*a!!^:A7M+XOo?>Icb43M;IUjR?crD(VJ-A^i`1G#Zkf-44Llkts!:oBm5RbF -% 1`q@@c$d_8:,fPeCb_-K2d0sV@iJs0MLF6-deQ)4JT+i^Sm+tPD32E\jPq[bi.F?U'#Ts\\! -% 'hZk_Iaba(WXC`o8WuZeBA@6,rK)19:@Pf1ro\\W5H_W/J&7@Cg[8O&;$38FhDT7[l]`.H__El!!M^R;3T_`W('4V=flF5Ib -% 9O[W!!8jEJ2$<5hm-!ZUBp-kDf(X^L[;QqMb5@,V5Sl/NA$?;kEHIicBrOLH3.7Xic4Pgu+G -% e\AE[Nc_*KF'P7hA`>a'lV.[I*l/oM3V_3+tL4"V<&ASfMY2SedI@_q'V^hM5G8C0>i1R55_ -% /[3_ZnIr'5:;+6.M78/"Fpi1=9S\0J98@Q*U4J0[t'b"lq06f&-YTrk?('5"uO.SAP0iXcp3 -% AE\09V,.mObq&,`Js6*$CR!!s8LJC:o0IHI-"lKS4g5IZ!-<8V(+rd\5/#!hL7k'Eh+Y#CZK -% 53CRoGp[?6n=8r0eZQnS'e9:c/(1.)A-bU*8.Z%tB[?Lo[WcdLIEPZ!W/#BOKRJ?J*K$?!)OA##8ToK0'nU!?_B@LkZqIL7$VJ8D&Jc#_J]DM0BeoUIYZ:-j?<["pqL7)k -% `'A#\W$^JEiGV#WRa%W-qQ?LclVcig$b!E1FEdJ.'.l%N?P'FEEW!?c(N+DbI8OCK_mAQb+-H'E67P\[g_Fi -% ]a2plnWX#tkg:5JV[:LkUIpQ0CYqH5VWgM2d"aI3h^E!C3%F[SK1KJVRBk#-!uZ\<(QqN_]B -% M-`@.tLm\6FPq^jYGmTBMa-DTCRT`^L4aan,bgNCo^*l9W(LYTEWK(PC!T9J4MB -% Dnp5Y!:8V,U&Wej-(55c'#S#lgQo0m\EtTN,%><>^fbEDWAFM3i6`Br)pX3B:0m#?&JX#\+b -% YAJtPgn=PP-!!T$jQU[cp> -matrix makepattern /staggered_bricks exch def -%%EndSetup -gsave -275 459 176 294 rectclip -0 0 4 1 10 SU -342 536 T -N -4 L -0.117237 nxsetgray -0 113 0 0 line -0 0 T -grestore -0 0 4 1 10 SU -399 650 T -N -gsave N -0 0 m -0 -42 0 -84 0 -126 c -clip -N -0 setlinewidth -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -N -grestore -4 L -0.117237 nxsetgray -0 0 m -0 -42 0 -84 0 -126 c -s -grestore -0 0 2 1 10 SU -[1 0 0 -1 377 524] concat -[-4.37113e-08 -1 1 -4.37113e-08 2.000001 61] concat -N -gsave N -60 44 0 0 acsRect -clip -N -0 setlinewidth -0.620685 nxsetgray -0 0 60 0.88 rectfill -0.620685 nxsetgray -0 0.88 60 0.88 rectfill -0.620685 nxsetgray -0 1.76 60 0.88 rectfill -0.620685 nxsetgray -0 2.64 60 0.88 rectfill -0.620685 nxsetgray -0 3.52 60 0.88 rectfill -0.620685 nxsetgray -0 4.4 60 0.88 rectfill -0.620685 nxsetgray -0 5.28 60 0.88 rectfill -0.620685 nxsetgray -0 6.16 60 0.88 rectfill -0.620685 nxsetgray -0 7.04 60 0.88 rectfill -0.620685 nxsetgray -0 7.920001 60 0.88 rectfill -0.620685 nxsetgray -0 8.8 60 0.88 rectfill -0.620685 nxsetgray -0 9.68 60 0.88 rectfill -0.620685 nxsetgray -0 10.56 60 0.88 rectfill -0.620685 nxsetgray -0 11.440001 60 0.88 rectfill -0.620685 nxsetgray -0 12.320001 60 0.88 rectfill -0.620685 nxsetgray -0 13.200001 60 0.88 rectfill -0.620685 nxsetgray -0 14.080001 60 0.88 rectfill -0.620685 nxsetgray -0 14.960001 60 0.88 rectfill -0.620685 nxsetgray -0 15.840001 60 0.88 rectfill -0.620685 nxsetgray -0 16.720001 60 0.88 rectfill -0.620685 nxsetgray -0 17.6 60 0.88 rectfill -0.620685 nxsetgray -0 18.48 60 0.88 rectfill -0.620685 nxsetgray -0 19.359999 60 0.88 rectfill -0.620685 nxsetgray -0 20.239998 60 0.88 rectfill -0.620685 nxsetgray -0 21.119997 60 0.88 rectfill -0.620685 nxsetgray -0 21.999996 60 0.88 rectfill -0.620685 nxsetgray -0 22.879995 60 0.88 rectfill -0.620685 nxsetgray -0 23.759995 60 0.88 rectfill -0.620685 nxsetgray -0 24.639994 60 0.88 rectfill -0.620685 nxsetgray -0 25.519993 60 0.88 rectfill -0.620685 nxsetgray -0 26.399992 60 0.88 rectfill -0.620685 nxsetgray -0 27.279991 60 0.88 rectfill -0.620685 nxsetgray -0 28.15999 60 0.88 rectfill -0.620685 nxsetgray -0 29.039989 60 0.88 rectfill -0.620685 nxsetgray -0 29.919989 60 0.88 rectfill -0.620685 nxsetgray -0 30.799988 60 0.88 rectfill -0.620685 nxsetgray -0 31.679987 60 0.88 rectfill -0.620685 nxsetgray -0 32.559986 60 0.88 rectfill -0.620685 nxsetgray -0 33.439987 60 0.88 rectfill -0.620685 nxsetgray -0 34.319988 60 0.88 rectfill -0.620685 nxsetgray -0 35.199989 60 0.88 rectfill -0.620685 nxsetgray -0 36.07999 60 0.88 rectfill -0.620685 nxsetgray -0 36.959991 60 0.88 rectfill -0.620685 nxsetgray -0 37.839993 60 0.88 rectfill -0.620685 nxsetgray -0 38.719994 60 0.88 rectfill -0.620685 nxsetgray -0 39.599995 60 0.88 rectfill -0.620685 nxsetgray -0 40.479996 60 0.88 rectfill -0.620685 nxsetgray -0 41.359997 60 0.88 rectfill -0.620685 nxsetgray -0 42.239998 60 0.88 rectfill -0.620685 nxsetgray -0 43.119999 60 0.88 rectfill -N -grestore -2 L -0.117237 nxsetgray -0 0 60 44 rectstroke -0 0 T -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 276 621] concat -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 1 84] concat -0 0 1 1 10 SU -126 9 T -N -gsave N -0 0 m 0 27 l -clip -N -0 setlinewidth -0.620685 nxsetgray -0 0 0.02 27 rectfill -0.620685 nxsetgray -0.02 0 0.02 27 rectfill -0.620685 nxsetgray -0.04 0 0.02 27 rectfill -0.620685 nxsetgray -0.06 0 0.02 27 rectfill -0.620685 nxsetgray -0.08 0 0.02 27 rectfill -0.620685 nxsetgray -0.1 0 0.02 27 rectfill -0.620685 nxsetgray -0.12 0 0.02 27 rectfill -0.620685 nxsetgray -0.14 0 0.02 27 rectfill -0.620685 nxsetgray -0.16 0 0.02 27 rectfill -0.620685 nxsetgray -0.18 0 0.02 27 rectfill -0.620685 nxsetgray -0.2 0 0.02 27 rectfill -0.620685 nxsetgray -0.22 0 0.02 27 rectfill -0.620685 nxsetgray -0.24 0 0.02 27 rectfill -0.620685 nxsetgray -0.26 0 0.02 27 rectfill -0.620685 nxsetgray -0.28 0 0.02 27 rectfill -0.620685 nxsetgray -0.3 0 0.02 27 rectfill -0.620685 nxsetgray -0.32 0 0.02 27 rectfill -0.620685 nxsetgray -0.34 0 0.02 27 rectfill -0.620685 nxsetgray -0.36 0 0.02 27 rectfill -0.620685 nxsetgray -0.38 0 0.02 27 rectfill -0.620685 nxsetgray -0.4 0 0.02 27 rectfill -0.620685 nxsetgray -0.42 0 0.02 27 rectfill -0.620685 nxsetgray -0.44 0 0.02 27 rectfill -0.620685 nxsetgray -0.46 0 0.02 27 rectfill -0.620685 nxsetgray -0.48 0 0.02 27 rectfill -0.620685 nxsetgray -0.5 0 0.02 27 rectfill -0.620685 nxsetgray -0.52 0 0.02 27 rectfill -0.620685 nxsetgray -0.54 0 0.02 27 rectfill -0.620685 nxsetgray -0.56 0 0.02 27 rectfill -0.620685 nxsetgray -0.58 0 0.02 27 rectfill -0.620685 nxsetgray -0.6 0 0.02 27 rectfill -0.620685 nxsetgray -0.62 0 0.02 27 rectfill -0.620685 nxsetgray -0.64 0 0.02 27 rectfill -0.620685 nxsetgray -0.66 0 0.02 27 rectfill -0.620685 nxsetgray -0.68 0 0.02 27 rectfill -0.620685 nxsetgray -0.7 0 0.02 27 rectfill -0.620685 nxsetgray -0.72 0 0.02 27 rectfill -0.620685 nxsetgray -0.74 0 0.02 27 rectfill -0.620685 nxsetgray -0.76 0 0.02 27 rectfill -0.620685 nxsetgray -0.78 0 0.02 27 rectfill -0.620685 nxsetgray -0.8 0 0.02 27 rectfill -0.620685 nxsetgray -0.82 0 0.02 27 rectfill -0.620685 nxsetgray -0.84 0 0.02 27 rectfill -0.620685 nxsetgray -0.86 0 0.02 27 rectfill -0.620685 nxsetgray -0.88 0 0.02 27 rectfill -0.620685 nxsetgray -0.9 0 0.02 27 rectfill -0.620685 nxsetgray -0.92 0 0.02 27 rectfill -0.620685 nxsetgray -0.94 0 0.02 27 rectfill -0.620685 nxsetgray -0.96 0 0.02 27 rectfill -0.620685 nxsetgray -0.98 0 0.02 27 rectfill -N -grestore -1 L -0 nxsetgray -0 27 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -63 9 T -N -gsave N -0 0 m 0 27 l -clip -N -0 setlinewidth -0.620685 nxsetgray -0 0 0.02 27 rectfill -0.620685 nxsetgray -0.02 0 0.02 27 rectfill -0.620685 nxsetgray -0.04 0 0.02 27 rectfill -0.620685 nxsetgray -0.06 0 0.02 27 rectfill -0.620685 nxsetgray -0.08 0 0.02 27 rectfill -0.620685 nxsetgray -0.1 0 0.02 27 rectfill -0.620685 nxsetgray -0.12 0 0.02 27 rectfill -0.620685 nxsetgray -0.14 0 0.02 27 rectfill -0.620685 nxsetgray -0.16 0 0.02 27 rectfill -0.620685 nxsetgray -0.18 0 0.02 27 rectfill -0.620685 nxsetgray -0.2 0 0.02 27 rectfill -0.620685 nxsetgray -0.22 0 0.02 27 rectfill -0.620685 nxsetgray -0.24 0 0.02 27 rectfill -0.620685 nxsetgray -0.26 0 0.02 27 rectfill -0.620685 nxsetgray -0.28 0 0.02 27 rectfill -0.620685 nxsetgray -0.3 0 0.02 27 rectfill -0.620685 nxsetgray -0.32 0 0.02 27 rectfill -0.620685 nxsetgray -0.34 0 0.02 27 rectfill -0.620685 nxsetgray -0.36 0 0.02 27 rectfill -0.620685 nxsetgray -0.38 0 0.02 27 rectfill -0.620685 nxsetgray -0.4 0 0.02 27 rectfill -0.620685 nxsetgray -0.42 0 0.02 27 rectfill -0.620685 nxsetgray -0.44 0 0.02 27 rectfill -0.620685 nxsetgray -0.46 0 0.02 27 rectfill -0.620685 nxsetgray -0.48 0 0.02 27 rectfill -0.620685 nxsetgray -0.5 0 0.02 27 rectfill -0.620685 nxsetgray -0.52 0 0.02 27 rectfill -0.620685 nxsetgray -0.54 0 0.02 27 rectfill -0.620685 nxsetgray -0.56 0 0.02 27 rectfill -0.620685 nxsetgray -0.58 0 0.02 27 rectfill -0.620685 nxsetgray -0.6 0 0.02 27 rectfill -0.620685 nxsetgray -0.62 0 0.02 27 rectfill -0.620685 nxsetgray -0.64 0 0.02 27 rectfill -0.620685 nxsetgray -0.66 0 0.02 27 rectfill -0.620685 nxsetgray -0.68 0 0.02 27 rectfill -0.620685 nxsetgray -0.7 0 0.02 27 rectfill -0.620685 nxsetgray -0.72 0 0.02 27 rectfill -0.620685 nxsetgray -0.74 0 0.02 27 rectfill -0.620685 nxsetgray -0.76 0 0.02 27 rectfill -0.620685 nxsetgray -0.78 0 0.02 27 rectfill -0.620685 nxsetgray -0.8 0 0.02 27 rectfill -0.620685 nxsetgray -0.82 0 0.02 27 rectfill -0.620685 nxsetgray -0.84 0 0.02 27 rectfill -0.620685 nxsetgray -0.86 0 0.02 27 rectfill -0.620685 nxsetgray -0.88 0 0.02 27 rectfill -0.620685 nxsetgray -0.9 0 0.02 27 rectfill -0.620685 nxsetgray -0.92 0 0.02 27 rectfill -0.620685 nxsetgray -0.94 0 0.02 27 rectfill -0.620685 nxsetgray -0.96 0 0.02 27 rectfill -0.620685 nxsetgray -0.98 0 0.02 27 rectfill -N -grestore -1 L -0 nxsetgray -0 27 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -18 9 T -N -gsave N -0 27 m 27 0 l -clip -N -0 setlinewidth -0.620685 nxsetgray -0 0 0.54 27 rectfill -0.620685 nxsetgray -0.54 0 0.54 27 rectfill -0.620685 nxsetgray -1.08 0 0.54 27 rectfill -0.620685 nxsetgray -1.62 0 0.54 27 rectfill -0.620685 nxsetgray -2.16 0 0.54 27 rectfill -0.620685 nxsetgray -2.7 0 0.54 27 rectfill -0.620685 nxsetgray -3.24 0 0.54 27 rectfill -0.620685 nxsetgray -3.78 0 0.54 27 rectfill -0.620685 nxsetgray -4.32 0 0.54 27 rectfill -0.620685 nxsetgray -4.86 0 0.54 27 rectfill -0.620685 nxsetgray -5.4 0 0.54 27 rectfill -0.620685 nxsetgray -5.94 0 0.54 27 rectfill -0.620685 nxsetgray -6.48 0 0.54 27 rectfill -0.620685 nxsetgray -7.02 0 0.54 27 rectfill -0.620685 nxsetgray -7.56 0 0.54 27 rectfill -0.620685 nxsetgray -8.1 0 0.54 27 rectfill -0.620685 nxsetgray -8.64 0 0.54 27 rectfill -0.620685 nxsetgray -9.18 0 0.54 27 rectfill -0.620685 nxsetgray -9.72 0 0.54 27 rectfill -0.620685 nxsetgray -10.26 0 0.54 27 rectfill -0.620685 nxsetgray -10.8 0 0.54 27 rectfill -0.620685 nxsetgray -11.34 0 0.54 27 rectfill -0.620685 nxsetgray -11.88 0 0.54 27 rectfill -0.620685 nxsetgray -12.42 0 0.54 27 rectfill -0.620685 nxsetgray -12.96 0 0.54 27 rectfill -0.620685 nxsetgray -13.5 0 0.54 27 rectfill -0.620685 nxsetgray -14.04 0 0.54 27 rectfill -0.620685 nxsetgray -14.58 0 0.54 27 rectfill -0.620685 nxsetgray -15.12 0 0.54 27 rectfill -0.620685 nxsetgray -15.66 0 0.54 27 rectfill -0.620685 nxsetgray -16.200001 0 0.54 27 rectfill -0.620685 nxsetgray -16.740002 0 0.54 27 rectfill -0.620685 nxsetgray -17.280003 0 0.54 27 rectfill -0.620685 nxsetgray -17.820004 0 0.54 27 rectfill -0.620685 nxsetgray -18.360004 0 0.54 27 rectfill -0.620685 nxsetgray -18.900005 0 0.54 27 rectfill -0.620685 nxsetgray -19.440006 0 0.54 27 rectfill -0.620685 nxsetgray -19.980007 0 0.54 27 rectfill -0.620685 nxsetgray -20.520008 0 0.54 27 rectfill -0.620685 nxsetgray -21.060009 0 0.54 27 rectfill -0.620685 nxsetgray -21.60001 0 0.54 27 rectfill -0.620685 nxsetgray -22.140011 0 0.54 27 rectfill -0.620685 nxsetgray -22.680012 0 0.54 27 rectfill -0.620685 nxsetgray -23.220013 0 0.54 27 rectfill -0.620685 nxsetgray -23.760014 0 0.54 27 rectfill -0.620685 nxsetgray -24.300014 0 0.54 27 rectfill -0.620685 nxsetgray -24.840015 0 0.54 27 rectfill -0.620685 nxsetgray -25.380016 0 0.54 27 rectfill -0.620685 nxsetgray -25.920017 0 0.54 27 rectfill -0.620685 nxsetgray -26.460018 0 0.54 27 rectfill -N -grestore -1 L -0 nxsetgray -27 -27 0 27 line -0 0 T -grestore -0 0 1 1 10 SU -36 9 T -N -gsave N -0 27 m 27 0 l -clip -N -0 setlinewidth -0.620685 nxsetgray -0 0 0.54 27 rectfill -0.620685 nxsetgray -0.54 0 0.54 27 rectfill -0.620685 nxsetgray -1.08 0 0.54 27 rectfill -0.620685 nxsetgray -1.62 0 0.54 27 rectfill -0.620685 nxsetgray -2.16 0 0.54 27 rectfill -0.620685 nxsetgray -2.7 0 0.54 27 rectfill -0.620685 nxsetgray -3.24 0 0.54 27 rectfill -0.620685 nxsetgray -3.78 0 0.54 27 rectfill -0.620685 nxsetgray -4.32 0 0.54 27 rectfill -0.620685 nxsetgray -4.86 0 0.54 27 rectfill -0.620685 nxsetgray -5.4 0 0.54 27 rectfill -0.620685 nxsetgray -5.94 0 0.54 27 rectfill -0.620685 nxsetgray -6.48 0 0.54 27 rectfill -0.620685 nxsetgray -7.02 0 0.54 27 rectfill -0.620685 nxsetgray -7.56 0 0.54 27 rectfill -0.620685 nxsetgray -8.1 0 0.54 27 rectfill -0.620685 nxsetgray -8.64 0 0.54 27 rectfill -0.620685 nxsetgray -9.18 0 0.54 27 rectfill -0.620685 nxsetgray -9.72 0 0.54 27 rectfill -0.620685 nxsetgray -10.26 0 0.54 27 rectfill -0.620685 nxsetgray -10.8 0 0.54 27 rectfill -0.620685 nxsetgray -11.34 0 0.54 27 rectfill -0.620685 nxsetgray -11.88 0 0.54 27 rectfill -0.620685 nxsetgray -12.42 0 0.54 27 rectfill -0.620685 nxsetgray -12.96 0 0.54 27 rectfill -0.620685 nxsetgray -13.5 0 0.54 27 rectfill -0.620685 nxsetgray -14.04 0 0.54 27 rectfill -0.620685 nxsetgray -14.58 0 0.54 27 rectfill -0.620685 nxsetgray -15.12 0 0.54 27 rectfill -0.620685 nxsetgray -15.66 0 0.54 27 rectfill -0.620685 nxsetgray -16.200001 0 0.54 27 rectfill -0.620685 nxsetgray -16.740002 0 0.54 27 rectfill -0.620685 nxsetgray -17.280003 0 0.54 27 rectfill -0.620685 nxsetgray -17.820004 0 0.54 27 rectfill -0.620685 nxsetgray -18.360004 0 0.54 27 rectfill -0.620685 nxsetgray -18.900005 0 0.54 27 rectfill -0.620685 nxsetgray -19.440006 0 0.54 27 rectfill -0.620685 nxsetgray -19.980007 0 0.54 27 rectfill -0.620685 nxsetgray -20.520008 0 0.54 27 rectfill -0.620685 nxsetgray -21.060009 0 0.54 27 rectfill -0.620685 nxsetgray -21.60001 0 0.54 27 rectfill -0.620685 nxsetgray -22.140011 0 0.54 27 rectfill -0.620685 nxsetgray -22.680012 0 0.54 27 rectfill -0.620685 nxsetgray -23.220013 0 0.54 27 rectfill -0.620685 nxsetgray -23.760014 0 0.54 27 rectfill -0.620685 nxsetgray -24.300014 0 0.54 27 rectfill -0.620685 nxsetgray -24.840015 0 0.54 27 rectfill -0.620685 nxsetgray -25.380016 0 0.54 27 rectfill -0.620685 nxsetgray -25.920017 0 0.54 27 rectfill -0.620685 nxsetgray -26.460018 0 0.54 27 rectfill -N -grestore -1 L -0 nxsetgray -27 -27 0 27 line -0 0 T -grestore -0 0 1 1 10 SU -54 9 T -N -gsave N -0 27 m 27 0 l -clip -N -0 setlinewidth -0.620685 nxsetgray -0 0 0.54 27 rectfill -0.620685 nxsetgray -0.54 0 0.54 27 rectfill -0.620685 nxsetgray -1.08 0 0.54 27 rectfill -0.620685 nxsetgray -1.62 0 0.54 27 rectfill -0.620685 nxsetgray -2.16 0 0.54 27 rectfill -0.620685 nxsetgray -2.7 0 0.54 27 rectfill -0.620685 nxsetgray -3.24 0 0.54 27 rectfill -0.620685 nxsetgray -3.78 0 0.54 27 rectfill -0.620685 nxsetgray -4.32 0 0.54 27 rectfill -0.620685 nxsetgray -4.86 0 0.54 27 rectfill -0.620685 nxsetgray -5.4 0 0.54 27 rectfill -0.620685 nxsetgray -5.94 0 0.54 27 rectfill -0.620685 nxsetgray -6.48 0 0.54 27 rectfill -0.620685 nxsetgray -7.02 0 0.54 27 rectfill -0.620685 nxsetgray -7.56 0 0.54 27 rectfill -0.620685 nxsetgray -8.1 0 0.54 27 rectfill -0.620685 nxsetgray -8.64 0 0.54 27 rectfill -0.620685 nxsetgray -9.18 0 0.54 27 rectfill -0.620685 nxsetgray -9.72 0 0.54 27 rectfill -0.620685 nxsetgray -10.26 0 0.54 27 rectfill -0.620685 nxsetgray -10.8 0 0.54 27 rectfill -0.620685 nxsetgray -11.34 0 0.54 27 rectfill -0.620685 nxsetgray -11.88 0 0.54 27 rectfill -0.620685 nxsetgray -12.42 0 0.54 27 rectfill -0.620685 nxsetgray -12.96 0 0.54 27 rectfill -0.620685 nxsetgray -13.5 0 0.54 27 rectfill -0.620685 nxsetgray -14.04 0 0.54 27 rectfill -0.620685 nxsetgray -14.58 0 0.54 27 rectfill -0.620685 nxsetgray -15.12 0 0.54 27 rectfill -0.620685 nxsetgray -15.66 0 0.54 27 rectfill -0.620685 nxsetgray -16.200001 0 0.54 27 rectfill -0.620685 nxsetgray -16.740002 0 0.54 27 rectfill -0.620685 nxsetgray -17.280003 0 0.54 27 rectfill -0.620685 nxsetgray -17.820004 0 0.54 27 rectfill -0.620685 nxsetgray -18.360004 0 0.54 27 rectfill -0.620685 nxsetgray -18.900005 0 0.54 27 rectfill -0.620685 nxsetgray -19.440006 0 0.54 27 rectfill -0.620685 nxsetgray -19.980007 0 0.54 27 rectfill -0.620685 nxsetgray -20.520008 0 0.54 27 rectfill -0.620685 nxsetgray -21.060009 0 0.54 27 rectfill -0.620685 nxsetgray -21.60001 0 0.54 27 rectfill -0.620685 nxsetgray -22.140011 0 0.54 27 rectfill -0.620685 nxsetgray -22.680012 0 0.54 27 rectfill -0.620685 nxsetgray -23.220013 0 0.54 27 rectfill -0.620685 nxsetgray -23.760014 0 0.54 27 rectfill -0.620685 nxsetgray -24.300014 0 0.54 27 rectfill -0.620685 nxsetgray -24.840015 0 0.54 27 rectfill -0.620685 nxsetgray -25.380016 0 0.54 27 rectfill -0.620685 nxsetgray -25.920017 0 0.54 27 rectfill -0.620685 nxsetgray -26.460018 0 0.54 27 rectfill -N -grestore -1 L -0 nxsetgray -27 -27 0 27 line -0 0 T -grestore -0 0 1 1 10 SU -72 9 T -N -gsave N -0 27 m 27 0 l -clip -N -0 setlinewidth -0.620685 nxsetgray -0 0 0.54 27 rectfill -0.620685 nxsetgray -0.54 0 0.54 27 rectfill -0.620685 nxsetgray -1.08 0 0.54 27 rectfill -0.620685 nxsetgray -1.62 0 0.54 27 rectfill -0.620685 nxsetgray -2.16 0 0.54 27 rectfill -0.620685 nxsetgray -2.7 0 0.54 27 rectfill -0.620685 nxsetgray -3.24 0 0.54 27 rectfill -0.620685 nxsetgray -3.78 0 0.54 27 rectfill -0.620685 nxsetgray -4.32 0 0.54 27 rectfill -0.620685 nxsetgray -4.86 0 0.54 27 rectfill -0.620685 nxsetgray -5.4 0 0.54 27 rectfill -0.620685 nxsetgray -5.94 0 0.54 27 rectfill -0.620685 nxsetgray -6.48 0 0.54 27 rectfill -0.620685 nxsetgray -7.02 0 0.54 27 rectfill -0.620685 nxsetgray -7.56 0 0.54 27 rectfill -0.620685 nxsetgray -8.1 0 0.54 27 rectfill -0.620685 nxsetgray -8.64 0 0.54 27 rectfill -0.620685 nxsetgray -9.18 0 0.54 27 rectfill -0.620685 nxsetgray -9.72 0 0.54 27 rectfill -0.620685 nxsetgray -10.26 0 0.54 27 rectfill -0.620685 nxsetgray -10.8 0 0.54 27 rectfill -0.620685 nxsetgray -11.34 0 0.54 27 rectfill -0.620685 nxsetgray -11.88 0 0.54 27 rectfill -0.620685 nxsetgray -12.42 0 0.54 27 rectfill -0.620685 nxsetgray -12.96 0 0.54 27 rectfill -0.620685 nxsetgray -13.5 0 0.54 27 rectfill -0.620685 nxsetgray -14.04 0 0.54 27 rectfill -0.620685 nxsetgray -14.58 0 0.54 27 rectfill -0.620685 nxsetgray -15.12 0 0.54 27 rectfill -0.620685 nxsetgray -15.66 0 0.54 27 rectfill -0.620685 nxsetgray -16.200001 0 0.54 27 rectfill -0.620685 nxsetgray -16.740002 0 0.54 27 rectfill -0.620685 nxsetgray -17.280003 0 0.54 27 rectfill -0.620685 nxsetgray -17.820004 0 0.54 27 rectfill -0.620685 nxsetgray -18.360004 0 0.54 27 rectfill -0.620685 nxsetgray -18.900005 0 0.54 27 rectfill -0.620685 nxsetgray -19.440006 0 0.54 27 rectfill -0.620685 nxsetgray -19.980007 0 0.54 27 rectfill -0.620685 nxsetgray -20.520008 0 0.54 27 rectfill -0.620685 nxsetgray -21.060009 0 0.54 27 rectfill -0.620685 nxsetgray -21.60001 0 0.54 27 rectfill -0.620685 nxsetgray -22.140011 0 0.54 27 rectfill -0.620685 nxsetgray -22.680012 0 0.54 27 rectfill -0.620685 nxsetgray -23.220013 0 0.54 27 rectfill -0.620685 nxsetgray -23.760014 0 0.54 27 rectfill -0.620685 nxsetgray -24.300014 0 0.54 27 rectfill -0.620685 nxsetgray -24.840015 0 0.54 27 rectfill -0.620685 nxsetgray -25.380016 0 0.54 27 rectfill -0.620685 nxsetgray -25.920017 0 0.54 27 rectfill -0.620685 nxsetgray -26.460018 0 0.54 27 rectfill -N -grestore -1 L -0 nxsetgray -27 -27 0 27 line -0 0 T -grestore -0 0 1 1 10 SU -90 9 T -N -gsave N -0 27 m 27 0 l -clip -N -0 setlinewidth -0.620685 nxsetgray -0 0 0.54 27 rectfill -0.620685 nxsetgray -0.54 0 0.54 27 rectfill -0.620685 nxsetgray -1.08 0 0.54 27 rectfill -0.620685 nxsetgray -1.62 0 0.54 27 rectfill -0.620685 nxsetgray -2.16 0 0.54 27 rectfill -0.620685 nxsetgray -2.7 0 0.54 27 rectfill -0.620685 nxsetgray -3.24 0 0.54 27 rectfill -0.620685 nxsetgray -3.78 0 0.54 27 rectfill -0.620685 nxsetgray -4.32 0 0.54 27 rectfill -0.620685 nxsetgray -4.86 0 0.54 27 rectfill -0.620685 nxsetgray -5.4 0 0.54 27 rectfill -0.620685 nxsetgray -5.94 0 0.54 27 rectfill -0.620685 nxsetgray -6.48 0 0.54 27 rectfill -0.620685 nxsetgray -7.02 0 0.54 27 rectfill -0.620685 nxsetgray -7.56 0 0.54 27 rectfill -0.620685 nxsetgray -8.1 0 0.54 27 rectfill -0.620685 nxsetgray -8.64 0 0.54 27 rectfill -0.620685 nxsetgray -9.18 0 0.54 27 rectfill -0.620685 nxsetgray -9.72 0 0.54 27 rectfill -0.620685 nxsetgray -10.26 0 0.54 27 rectfill -0.620685 nxsetgray -10.8 0 0.54 27 rectfill -0.620685 nxsetgray -11.34 0 0.54 27 rectfill -0.620685 nxsetgray -11.88 0 0.54 27 rectfill -0.620685 nxsetgray -12.42 0 0.54 27 rectfill -0.620685 nxsetgray -12.96 0 0.54 27 rectfill -0.620685 nxsetgray -13.5 0 0.54 27 rectfill -0.620685 nxsetgray -14.04 0 0.54 27 rectfill -0.620685 nxsetgray -14.58 0 0.54 27 rectfill -0.620685 nxsetgray -15.12 0 0.54 27 rectfill -0.620685 nxsetgray -15.66 0 0.54 27 rectfill -0.620685 nxsetgray -16.200001 0 0.54 27 rectfill -0.620685 nxsetgray -16.740002 0 0.54 27 rectfill -0.620685 nxsetgray -17.280003 0 0.54 27 rectfill -0.620685 nxsetgray -17.820004 0 0.54 27 rectfill -0.620685 nxsetgray -18.360004 0 0.54 27 rectfill -0.620685 nxsetgray -18.900005 0 0.54 27 rectfill -0.620685 nxsetgray -19.440006 0 0.54 27 rectfill -0.620685 nxsetgray -19.980007 0 0.54 27 rectfill -0.620685 nxsetgray -20.520008 0 0.54 27 rectfill -0.620685 nxsetgray -21.060009 0 0.54 27 rectfill -0.620685 nxsetgray -21.60001 0 0.54 27 rectfill -0.620685 nxsetgray -22.140011 0 0.54 27 rectfill -0.620685 nxsetgray -22.680012 0 0.54 27 rectfill -0.620685 nxsetgray -23.220013 0 0.54 27 rectfill -0.620685 nxsetgray -23.760014 0 0.54 27 rectfill -0.620685 nxsetgray -24.300014 0 0.54 27 rectfill -0.620685 nxsetgray -24.840015 0 0.54 27 rectfill -0.620685 nxsetgray -25.380016 0 0.54 27 rectfill -0.620685 nxsetgray -25.920017 0 0.54 27 rectfill -0.620685 nxsetgray -26.460018 0 0.54 27 rectfill -N -grestore -1 L -0 nxsetgray -27 -27 0 27 line -0 0 T -grestore -0 0 1 1 10 SU -108 9 T -N -gsave N -0 27 m 27 0 l -clip -N -0 setlinewidth -0.620685 nxsetgray -0 0 0.54 27 rectfill -0.620685 nxsetgray -0.54 0 0.54 27 rectfill -0.620685 nxsetgray -1.08 0 0.54 27 rectfill -0.620685 nxsetgray -1.62 0 0.54 27 rectfill -0.620685 nxsetgray -2.16 0 0.54 27 rectfill -0.620685 nxsetgray -2.7 0 0.54 27 rectfill -0.620685 nxsetgray -3.24 0 0.54 27 rectfill -0.620685 nxsetgray -3.78 0 0.54 27 rectfill -0.620685 nxsetgray -4.32 0 0.54 27 rectfill -0.620685 nxsetgray -4.86 0 0.54 27 rectfill -0.620685 nxsetgray -5.4 0 0.54 27 rectfill -0.620685 nxsetgray -5.94 0 0.54 27 rectfill -0.620685 nxsetgray -6.48 0 0.54 27 rectfill -0.620685 nxsetgray -7.02 0 0.54 27 rectfill -0.620685 nxsetgray -7.56 0 0.54 27 rectfill -0.620685 nxsetgray -8.1 0 0.54 27 rectfill -0.620685 nxsetgray -8.64 0 0.54 27 rectfill -0.620685 nxsetgray -9.18 0 0.54 27 rectfill -0.620685 nxsetgray -9.72 0 0.54 27 rectfill -0.620685 nxsetgray -10.26 0 0.54 27 rectfill -0.620685 nxsetgray -10.8 0 0.54 27 rectfill -0.620685 nxsetgray -11.34 0 0.54 27 rectfill -0.620685 nxsetgray -11.88 0 0.54 27 rectfill -0.620685 nxsetgray -12.42 0 0.54 27 rectfill -0.620685 nxsetgray -12.96 0 0.54 27 rectfill -0.620685 nxsetgray -13.5 0 0.54 27 rectfill -0.620685 nxsetgray -14.04 0 0.54 27 rectfill -0.620685 nxsetgray -14.58 0 0.54 27 rectfill -0.620685 nxsetgray -15.12 0 0.54 27 rectfill -0.620685 nxsetgray -15.66 0 0.54 27 rectfill -0.620685 nxsetgray -16.200001 0 0.54 27 rectfill -0.620685 nxsetgray -16.740002 0 0.54 27 rectfill -0.620685 nxsetgray -17.280003 0 0.54 27 rectfill -0.620685 nxsetgray -17.820004 0 0.54 27 rectfill -0.620685 nxsetgray -18.360004 0 0.54 27 rectfill -0.620685 nxsetgray -18.900005 0 0.54 27 rectfill -0.620685 nxsetgray -19.440006 0 0.54 27 rectfill -0.620685 nxsetgray -19.980007 0 0.54 27 rectfill -0.620685 nxsetgray -20.520008 0 0.54 27 rectfill -0.620685 nxsetgray -21.060009 0 0.54 27 rectfill -0.620685 nxsetgray -21.60001 0 0.54 27 rectfill -0.620685 nxsetgray -22.140011 0 0.54 27 rectfill -0.620685 nxsetgray -22.680012 0 0.54 27 rectfill -0.620685 nxsetgray -23.220013 0 0.54 27 rectfill -0.620685 nxsetgray -23.760014 0 0.54 27 rectfill -0.620685 nxsetgray -24.300014 0 0.54 27 rectfill -0.620685 nxsetgray -24.840015 0 0.54 27 rectfill -0.620685 nxsetgray -25.380016 0 0.54 27 rectfill -0.620685 nxsetgray -25.920017 0 0.54 27 rectfill -0.620685 nxsetgray -26.460018 0 0.54 27 rectfill -N -grestore -1 L -0 nxsetgray -27 -27 0 27 line -0 0 T -grestore -0 0 1 1 10 SU -126 18 T -N -gsave N -0 18 m 18 0 l -clip -N -0 setlinewidth -0.620685 nxsetgray -0 0 0.36 18 rectfill -0.620685 nxsetgray -0.36 0 0.36 18 rectfill -0.620685 nxsetgray -0.72 0 0.36 18 rectfill -0.620685 nxsetgray -1.08 0 0.36 18 rectfill -0.620685 nxsetgray -1.44 0 0.36 18 rectfill -0.620685 nxsetgray -1.8 0 0.36 18 rectfill -0.620685 nxsetgray -2.16 0 0.36 18 rectfill -0.620685 nxsetgray -2.52 0 0.36 18 rectfill -0.620685 nxsetgray -2.88 0 0.36 18 rectfill -0.620685 nxsetgray -3.24 0 0.36 18 rectfill -0.620685 nxsetgray -3.6 0 0.36 18 rectfill -0.620685 nxsetgray -3.960001 0 0.36 18 rectfill -0.620685 nxsetgray -4.320001 0 0.36 18 rectfill -0.620685 nxsetgray -4.680001 0 0.36 18 rectfill -0.620685 nxsetgray -5.040001 0 0.36 18 rectfill -0.620685 nxsetgray -5.400001 0 0.36 18 rectfill -0.620685 nxsetgray -5.760001 0 0.36 18 rectfill -0.620685 nxsetgray -6.120001 0 0.36 18 rectfill -0.620685 nxsetgray -6.480001 0 0.36 18 rectfill -0.620685 nxsetgray -6.840002 0 0.36 18 rectfill -0.620685 nxsetgray -7.200002 0 0.36 18 rectfill -0.620685 nxsetgray -7.560002 0 0.36 18 rectfill -0.620685 nxsetgray -7.920002 0 0.36 18 rectfill -0.620685 nxsetgray -8.280002 0 0.36 18 rectfill -0.620685 nxsetgray -8.640001 0 0.36 18 rectfill -0.620685 nxsetgray -9.000001 0 0.36 18 rectfill -0.620685 nxsetgray -9.360001 0 0.36 18 rectfill -0.620685 nxsetgray -9.72 0 0.36 18 rectfill -0.620685 nxsetgray -10.08 0 0.36 18 rectfill -0.620685 nxsetgray -10.44 0 0.36 18 rectfill -0.620685 nxsetgray -10.799999 0 0.36 18 rectfill -0.620685 nxsetgray -11.159999 0 0.36 18 rectfill -0.620685 nxsetgray -11.519999 0 0.36 18 rectfill -0.620685 nxsetgray -11.879998 0 0.36 18 rectfill -0.620685 nxsetgray -12.239998 0 0.36 18 rectfill -0.620685 nxsetgray -12.599998 0 0.36 18 rectfill -0.620685 nxsetgray -12.959997 0 0.36 18 rectfill -0.620685 nxsetgray -13.319997 0 0.36 18 rectfill -0.620685 nxsetgray -13.679996 0 0.36 18 rectfill -0.620685 nxsetgray -14.039996 0 0.36 18 rectfill -0.620685 nxsetgray -14.399996 0 0.36 18 rectfill -0.620685 nxsetgray -14.759995 0 0.36 18 rectfill -0.620685 nxsetgray -15.119995 0 0.36 18 rectfill -0.620685 nxsetgray -15.479995 0 0.36 18 rectfill -0.620685 nxsetgray -15.839994 0 0.36 18 rectfill -0.620685 nxsetgray -16.199995 0 0.36 18 rectfill -0.620685 nxsetgray -16.559996 0 0.36 18 rectfill -0.620685 nxsetgray -16.919996 0 0.36 18 rectfill -0.620685 nxsetgray -17.279997 0 0.36 18 rectfill -0.620685 nxsetgray -17.639997 0 0.36 18 rectfill -N -grestore -1 L -0 nxsetgray -18 -18 0 18 line -0 0 T -grestore -0 0 1 1 10 SU -144 27 T -N -gsave N -0 9 m 9 0 l -clip -N -0 setlinewidth -0.620685 nxsetgray -0 0 0.18 9 rectfill -0.620685 nxsetgray -0.18 0 0.18 9 rectfill -0.620685 nxsetgray -0.36 0 0.18 9 rectfill -0.620685 nxsetgray -0.54 0 0.18 9 rectfill -0.620685 nxsetgray -0.72 0 0.18 9 rectfill -0.620685 nxsetgray -0.9 0 0.18 9 rectfill -0.620685 nxsetgray -1.08 0 0.18 9 rectfill -0.620685 nxsetgray -1.26 0 0.18 9 rectfill -0.620685 nxsetgray -1.44 0 0.18 9 rectfill -0.620685 nxsetgray -1.62 0 0.18 9 rectfill -0.620685 nxsetgray -1.8 0 0.18 9 rectfill -0.620685 nxsetgray -1.98 0 0.18 9 rectfill -0.620685 nxsetgray -2.16 0 0.18 9 rectfill -0.620685 nxsetgray -2.34 0 0.18 9 rectfill -0.620685 nxsetgray -2.52 0 0.18 9 rectfill -0.620685 nxsetgray -2.700001 0 0.18 9 rectfill -0.620685 nxsetgray -2.880001 0 0.18 9 rectfill -0.620685 nxsetgray -3.060001 0 0.18 9 rectfill -0.620685 nxsetgray -3.240001 0 0.18 9 rectfill -0.620685 nxsetgray -3.420001 0 0.18 9 rectfill -0.620685 nxsetgray -3.600001 0 0.18 9 rectfill -0.620685 nxsetgray -3.780001 0 0.18 9 rectfill -0.620685 nxsetgray -3.960001 0 0.18 9 rectfill -0.620685 nxsetgray -4.140001 0 0.18 9 rectfill -0.620685 nxsetgray -4.320001 0 0.18 9 rectfill -0.620685 nxsetgray -4.5 0 0.18 9 rectfill -0.620685 nxsetgray -4.68 0 0.18 9 rectfill -0.620685 nxsetgray -4.86 0 0.18 9 rectfill -0.620685 nxsetgray -5.04 0 0.18 9 rectfill -0.620685 nxsetgray -5.22 0 0.18 9 rectfill -0.620685 nxsetgray -5.4 0 0.18 9 rectfill -0.620685 nxsetgray -5.579999 0 0.18 9 rectfill -0.620685 nxsetgray -5.759999 0 0.18 9 rectfill -0.620685 nxsetgray -5.939999 0 0.18 9 rectfill -0.620685 nxsetgray -6.119999 0 0.18 9 rectfill -0.620685 nxsetgray -6.299999 0 0.18 9 rectfill -0.620685 nxsetgray -6.479999 0 0.18 9 rectfill -0.620685 nxsetgray -6.659998 0 0.18 9 rectfill -0.620685 nxsetgray -6.839998 0 0.18 9 rectfill -0.620685 nxsetgray -7.019998 0 0.18 9 rectfill -0.620685 nxsetgray -7.199998 0 0.18 9 rectfill -0.620685 nxsetgray -7.379998 0 0.18 9 rectfill -0.620685 nxsetgray -7.559998 0 0.18 9 rectfill -0.620685 nxsetgray -7.739997 0 0.18 9 rectfill -0.620685 nxsetgray -7.919997 0 0.18 9 rectfill -0.620685 nxsetgray -8.099998 0 0.18 9 rectfill -0.620685 nxsetgray -8.279998 0 0.18 9 rectfill -0.620685 nxsetgray -8.459998 0 0.18 9 rectfill -0.620685 nxsetgray -8.639998 0 0.18 9 rectfill -0.620685 nxsetgray -8.819999 0 0.18 9 rectfill -N -grestore -1 L -0 nxsetgray -9 -9 0 9 line -0 0 T -grestore -0 0 1 1 10 SU -36 9 T -N -gsave N -0 0 m 90 0 l -clip -N -0 setlinewidth -0.620685 nxsetgray -0 0 1.8 1 rectfill -0.620685 nxsetgray -1.8 0 1.8 1 rectfill -0.620685 nxsetgray -3.6 0 1.8 1 rectfill -0.620685 nxsetgray -5.4 0 1.8 1 rectfill -0.620685 nxsetgray -7.2 0 1.8 1 rectfill -0.620685 nxsetgray -9 0 1.8 1 rectfill -0.620685 nxsetgray -10.8 0 1.8 1 rectfill -0.620685 nxsetgray -12.6 0 1.8 1 rectfill -0.620685 nxsetgray -14.400001 0 1.8 1 rectfill -0.620685 nxsetgray -16.200001 0 1.8 1 rectfill -0.620685 nxsetgray -18 0 1.8 1 rectfill -0.620685 nxsetgray -19.799999 0 1.8 1 rectfill -0.620685 nxsetgray -21.599998 0 1.8 1 rectfill -0.620685 nxsetgray -23.399998 0 1.8 1 rectfill -0.620685 nxsetgray -25.199997 0 1.8 1 rectfill -0.620685 nxsetgray -26.999996 0 1.8 1 rectfill -0.620685 nxsetgray -28.799995 0 1.8 1 rectfill -0.620685 nxsetgray -30.599995 0 1.8 1 rectfill -0.620685 nxsetgray -32.399994 0 1.8 1 rectfill -0.620685 nxsetgray -34.199993 0 1.8 1 rectfill -0.620685 nxsetgray -35.999992 0 1.8 1 rectfill -0.620685 nxsetgray -37.799992 0 1.8 1 rectfill -0.620685 nxsetgray -39.599991 0 1.8 1 rectfill -0.620685 nxsetgray -41.39999 0 1.8 1 rectfill -0.620685 nxsetgray -43.199989 0 1.8 1 rectfill -0.620685 nxsetgray -44.999989 0 1.8 1 rectfill -0.620685 nxsetgray -46.799988 0 1.8 1 rectfill -0.620685 nxsetgray -48.599987 0 1.8 1 rectfill -0.620685 nxsetgray -50.399986 0 1.8 1 rectfill -0.620685 nxsetgray -52.199986 0 1.8 1 rectfill -0.620685 nxsetgray -53.999985 0 1.8 1 rectfill -0.620685 nxsetgray -55.799984 0 1.8 1 rectfill -0.620685 nxsetgray -57.599983 0 1.8 1 rectfill -0.620685 nxsetgray -59.399982 0 1.8 1 rectfill -0.620685 nxsetgray -61.199982 0 1.8 1 rectfill -0.620685 nxsetgray -62.999981 0 1.8 1 rectfill -0.620685 nxsetgray -64.79998 0 1.8 1 rectfill -0.620685 nxsetgray -66.599983 0 1.8 1 rectfill -0.620685 nxsetgray -68.399986 0 1.8 1 rectfill -0.620685 nxsetgray -70.199989 0 1.8 1 rectfill -0.620685 nxsetgray -71.999992 0 1.8 1 rectfill -0.620685 nxsetgray -73.799995 0 1.8 1 rectfill -0.620685 nxsetgray -75.599998 0 1.8 1 rectfill -0.620685 nxsetgray -77.400002 0 1.8 1 rectfill -0.620685 nxsetgray -79.200005 0 1.8 1 rectfill -0.620685 nxsetgray -81.000008 0 1.8 1 rectfill -0.620685 nxsetgray -82.800011 0 1.8 1 rectfill -0.620685 nxsetgray -84.600014 0 1.8 1 rectfill -0.620685 nxsetgray -86.400017 0 1.8 1 rectfill -0.620685 nxsetgray -88.20002 0 1.8 1 rectfill -N -grestore -1 L -0 nxsetgray -90 0 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -126 9 T -N -gsave N -0 0 m 9 0 l -clip -N -0 setlinewidth -0.620685 nxsetgray -0 0 0.18 1 rectfill -0.620685 nxsetgray -0.18 0 0.18 1 rectfill -0.620685 nxsetgray -0.36 0 0.18 1 rectfill -0.620685 nxsetgray -0.54 0 0.18 1 rectfill -0.620685 nxsetgray -0.72 0 0.18 1 rectfill -0.620685 nxsetgray -0.9 0 0.18 1 rectfill -0.620685 nxsetgray -1.08 0 0.18 1 rectfill -0.620685 nxsetgray -1.26 0 0.18 1 rectfill -0.620685 nxsetgray -1.44 0 0.18 1 rectfill -0.620685 nxsetgray -1.62 0 0.18 1 rectfill -0.620685 nxsetgray -1.8 0 0.18 1 rectfill -0.620685 nxsetgray -1.98 0 0.18 1 rectfill -0.620685 nxsetgray -2.16 0 0.18 1 rectfill -0.620685 nxsetgray -2.34 0 0.18 1 rectfill -0.620685 nxsetgray -2.52 0 0.18 1 rectfill -0.620685 nxsetgray -2.700001 0 0.18 1 rectfill -0.620685 nxsetgray -2.880001 0 0.18 1 rectfill -0.620685 nxsetgray -3.060001 0 0.18 1 rectfill -0.620685 nxsetgray -3.240001 0 0.18 1 rectfill -0.620685 nxsetgray -3.420001 0 0.18 1 rectfill -0.620685 nxsetgray -3.600001 0 0.18 1 rectfill -0.620685 nxsetgray -3.780001 0 0.18 1 rectfill -0.620685 nxsetgray -3.960001 0 0.18 1 rectfill -0.620685 nxsetgray -4.140001 0 0.18 1 rectfill -0.620685 nxsetgray -4.320001 0 0.18 1 rectfill -0.620685 nxsetgray -4.5 0 0.18 1 rectfill -0.620685 nxsetgray -4.68 0 0.18 1 rectfill -0.620685 nxsetgray -4.86 0 0.18 1 rectfill -0.620685 nxsetgray -5.04 0 0.18 1 rectfill -0.620685 nxsetgray -5.22 0 0.18 1 rectfill -0.620685 nxsetgray -5.4 0 0.18 1 rectfill -0.620685 nxsetgray -5.579999 0 0.18 1 rectfill -0.620685 nxsetgray -5.759999 0 0.18 1 rectfill -0.620685 nxsetgray -5.939999 0 0.18 1 rectfill -0.620685 nxsetgray -6.119999 0 0.18 1 rectfill -0.620685 nxsetgray -6.299999 0 0.18 1 rectfill -0.620685 nxsetgray -6.479999 0 0.18 1 rectfill -0.620685 nxsetgray -6.659998 0 0.18 1 rectfill -0.620685 nxsetgray -6.839998 0 0.18 1 rectfill -0.620685 nxsetgray -7.019998 0 0.18 1 rectfill -0.620685 nxsetgray -7.199998 0 0.18 1 rectfill -0.620685 nxsetgray -7.379998 0 0.18 1 rectfill -0.620685 nxsetgray -7.559998 0 0.18 1 rectfill -0.620685 nxsetgray -7.739997 0 0.18 1 rectfill -0.620685 nxsetgray -7.919997 0 0.18 1 rectfill -0.620685 nxsetgray -8.099998 0 0.18 1 rectfill -0.620685 nxsetgray -8.279998 0 0.18 1 rectfill -0.620685 nxsetgray -8.459998 0 0.18 1 rectfill -0.620685 nxsetgray -8.639998 0 0.18 1 rectfill -0.620685 nxsetgray -8.819999 0 0.18 1 rectfill -N -grestore -1 L -0 nxsetgray -9 0 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -9 36 T -N -gsave N -0 0 m 144 0 l -clip -N -0 setlinewidth -0.620685 nxsetgray -0 0 2.88 1 rectfill -0.620685 nxsetgray -2.88 0 2.88 1 rectfill -0.620685 nxsetgray -5.76 0 2.88 1 rectfill -0.620685 nxsetgray -8.64 0 2.88 1 rectfill -0.620685 nxsetgray -11.52 0 2.88 1 rectfill -0.620685 nxsetgray -14.400001 0 2.88 1 rectfill -0.620685 nxsetgray -17.280001 0 2.88 1 rectfill -0.620685 nxsetgray -20.16 0 2.88 1 rectfill -0.620685 nxsetgray -23.040001 0 2.88 1 rectfill -0.620685 nxsetgray -25.920002 0 2.88 1 rectfill -0.620685 nxsetgray -28.800003 0 2.88 1 rectfill -0.620685 nxsetgray -31.680004 0 2.88 1 rectfill -0.620685 nxsetgray -34.560005 0 2.88 1 rectfill -0.620685 nxsetgray -37.440006 0 2.88 1 rectfill -0.620685 nxsetgray -40.320007 0 2.88 1 rectfill -0.620685 nxsetgray -43.200008 0 2.88 1 rectfill -0.620685 nxsetgray -46.080009 0 2.88 1 rectfill -0.620685 nxsetgray -48.960011 0 2.88 1 rectfill -0.620685 nxsetgray -51.840012 0 2.88 1 rectfill -0.620685 nxsetgray -54.720013 0 2.88 1 rectfill -0.620685 nxsetgray -57.600014 0 2.88 1 rectfill -0.620685 nxsetgray -60.480015 0 2.88 1 rectfill -0.620685 nxsetgray -63.360016 0 2.88 1 rectfill -0.620685 nxsetgray -66.240013 0 2.88 1 rectfill -0.620685 nxsetgray -69.12001 0 2.88 1 rectfill -0.620685 nxsetgray -72.000008 0 2.88 1 rectfill -0.620685 nxsetgray -74.880005 0 2.88 1 rectfill -0.620685 nxsetgray -77.760002 0 2.88 1 rectfill -0.620685 nxsetgray -80.639999 0 2.88 1 rectfill -0.620685 nxsetgray -83.519997 0 2.88 1 rectfill -0.620685 nxsetgray -86.399994 0 2.88 1 rectfill -0.620685 nxsetgray -89.279991 0 2.88 1 rectfill -0.620685 nxsetgray -92.159988 0 2.88 1 rectfill -0.620685 nxsetgray -95.039986 0 2.88 1 rectfill -0.620685 nxsetgray -97.919983 0 2.88 1 rectfill -0.620685 nxsetgray -100.79998 0 2.88 1 rectfill -0.620685 nxsetgray -103.679977 0 2.88 1 rectfill -0.620685 nxsetgray -106.559975 0 2.88 1 rectfill -0.620685 nxsetgray -109.439972 0 2.88 1 rectfill -0.620685 nxsetgray -112.319969 0 2.88 1 rectfill -0.620685 nxsetgray -115.199966 0 2.88 1 rectfill -0.620685 nxsetgray -118.079964 0 2.88 1 rectfill -0.620685 nxsetgray -120.959961 0 2.88 1 rectfill -0.620685 nxsetgray -123.839958 0 2.88 1 rectfill -0.620685 nxsetgray -126.719955 0 2.88 1 rectfill -0.620685 nxsetgray -129.59996 0 2.88 1 rectfill -0.620685 nxsetgray -132.479965 0 2.88 1 rectfill -0.620685 nxsetgray -135.35997 0 2.88 1 rectfill -0.620685 nxsetgray -138.239975 0 2.88 1 rectfill -0.620685 nxsetgray -141.11998 0 2.88 1 rectfill -N -grestore -1 L -0 nxsetgray -144 0 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -153 36 T -N -gsave N -0 0 m 9 0 l -clip -N -0 setlinewidth -0.620685 nxsetgray -0 0 0.18 1 rectfill -0.620685 nxsetgray -0.18 0 0.18 1 rectfill -0.620685 nxsetgray -0.36 0 0.18 1 rectfill -0.620685 nxsetgray -0.54 0 0.18 1 rectfill -0.620685 nxsetgray -0.72 0 0.18 1 rectfill -0.620685 nxsetgray -0.9 0 0.18 1 rectfill -0.620685 nxsetgray -1.08 0 0.18 1 rectfill -0.620685 nxsetgray -1.26 0 0.18 1 rectfill -0.620685 nxsetgray -1.44 0 0.18 1 rectfill -0.620685 nxsetgray -1.62 0 0.18 1 rectfill -0.620685 nxsetgray -1.8 0 0.18 1 rectfill -0.620685 nxsetgray -1.98 0 0.18 1 rectfill -0.620685 nxsetgray -2.16 0 0.18 1 rectfill -0.620685 nxsetgray -2.34 0 0.18 1 rectfill -0.620685 nxsetgray -2.52 0 0.18 1 rectfill -0.620685 nxsetgray -2.700001 0 0.18 1 rectfill -0.620685 nxsetgray -2.880001 0 0.18 1 rectfill -0.620685 nxsetgray -3.060001 0 0.18 1 rectfill -0.620685 nxsetgray -3.240001 0 0.18 1 rectfill -0.620685 nxsetgray -3.420001 0 0.18 1 rectfill -0.620685 nxsetgray -3.600001 0 0.18 1 rectfill -0.620685 nxsetgray -3.780001 0 0.18 1 rectfill -0.620685 nxsetgray -3.960001 0 0.18 1 rectfill -0.620685 nxsetgray -4.140001 0 0.18 1 rectfill -0.620685 nxsetgray -4.320001 0 0.18 1 rectfill -0.620685 nxsetgray -4.5 0 0.18 1 rectfill -0.620685 nxsetgray -4.68 0 0.18 1 rectfill -0.620685 nxsetgray -4.86 0 0.18 1 rectfill -0.620685 nxsetgray -5.04 0 0.18 1 rectfill -0.620685 nxsetgray -5.22 0 0.18 1 rectfill -0.620685 nxsetgray -5.4 0 0.18 1 rectfill -0.620685 nxsetgray -5.579999 0 0.18 1 rectfill -0.620685 nxsetgray -5.759999 0 0.18 1 rectfill -0.620685 nxsetgray -5.939999 0 0.18 1 rectfill -0.620685 nxsetgray -6.119999 0 0.18 1 rectfill -0.620685 nxsetgray -6.299999 0 0.18 1 rectfill -0.620685 nxsetgray -6.479999 0 0.18 1 rectfill -0.620685 nxsetgray -6.659998 0 0.18 1 rectfill -0.620685 nxsetgray -6.839998 0 0.18 1 rectfill -0.620685 nxsetgray -7.019998 0 0.18 1 rectfill -0.620685 nxsetgray -7.199998 0 0.18 1 rectfill -0.620685 nxsetgray -7.379998 0 0.18 1 rectfill -0.620685 nxsetgray -7.559998 0 0.18 1 rectfill -0.620685 nxsetgray -7.739997 0 0.18 1 rectfill -0.620685 nxsetgray -7.919997 0 0.18 1 rectfill -0.620685 nxsetgray -8.099998 0 0.18 1 rectfill -0.620685 nxsetgray -8.279998 0 0.18 1 rectfill -0.620685 nxsetgray -8.459998 0 0.18 1 rectfill -0.620685 nxsetgray -8.639998 0 0.18 1 rectfill -0.620685 nxsetgray -8.819999 0 0.18 1 rectfill -N -grestore -1 L -0 nxsetgray -9 0 0 0 line -0 0 T -grestore -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 63 65] concat -N -gsave N -63 63 0 0 ovalPath -clip -N -0 setlinewidth -0.63448 nxsetgray -0 0 63 1.26 rectfill -0.63448 nxsetgray -0 1.26 63 1.26 rectfill -0.63448 nxsetgray -0 2.52 63 1.26 rectfill -0.63448 nxsetgray -0 3.78 63 1.26 rectfill -0.63448 nxsetgray -0 5.04 63 1.26 rectfill -0.63448 nxsetgray -0 6.3 63 1.26 rectfill -0.63448 nxsetgray -0 7.56 63 1.26 rectfill -0.63448 nxsetgray -0 8.820001 63 1.26 rectfill -0.63448 nxsetgray -0 10.080001 63 1.26 rectfill -0.63448 nxsetgray -0 11.340001 63 1.26 rectfill -0.63448 nxsetgray -0 12.600001 63 1.26 rectfill -0.63448 nxsetgray -0 13.860002 63 1.26 rectfill -0.63448 nxsetgray -0 15.120002 63 1.26 rectfill -0.63448 nxsetgray -0 16.380001 63 1.26 rectfill -0.63448 nxsetgray -0 17.640001 63 1.26 rectfill -0.63448 nxsetgray -0 18.900002 63 1.26 rectfill -0.63448 nxsetgray -0 20.160002 63 1.26 rectfill -0.63448 nxsetgray -0 21.420002 63 1.26 rectfill -0.63448 nxsetgray -0 22.680002 63 1.26 rectfill -0.63448 nxsetgray -0 23.940002 63 1.26 rectfill -0.63448 nxsetgray -0 25.200003 63 1.26 rectfill -0.63448 nxsetgray -0 26.460003 63 1.26 rectfill -0.63448 nxsetgray -0 27.720003 63 1.26 rectfill -0.63448 nxsetgray -0 28.980003 63 1.26 rectfill -0.63448 nxsetgray -0 30.240004 63 1.26 rectfill -0.63448 nxsetgray -0 31.500004 63 1.26 rectfill -0.63448 nxsetgray -0 32.760002 63 1.26 rectfill -0.63448 nxsetgray -0 34.02 63 1.26 rectfill -0.63448 nxsetgray -0 35.279999 63 1.26 rectfill -0.63448 nxsetgray -0 36.539997 63 1.26 rectfill -0.63448 nxsetgray -0 37.799995 63 1.26 rectfill -0.63448 nxsetgray -0 39.059994 63 1.26 rectfill -0.63448 nxsetgray -0 40.319992 63 1.26 rectfill -0.63448 nxsetgray -0 41.57999 63 1.26 rectfill -0.63448 nxsetgray -0 42.839989 63 1.26 rectfill -0.63448 nxsetgray -0 44.099987 63 1.26 rectfill -0.63448 nxsetgray -0 45.359985 63 1.26 rectfill -0.63448 nxsetgray -0 46.619984 63 1.26 rectfill -0.63448 nxsetgray -0 47.879982 63 1.26 rectfill -0.63448 nxsetgray -0 49.13998 63 1.26 rectfill -0.63448 nxsetgray -0 50.399979 63 1.26 rectfill -0.63448 nxsetgray -0 51.659977 63 1.26 rectfill -0.63448 nxsetgray -0 52.919975 63 1.26 rectfill -0.63448 nxsetgray -0 54.179974 63 1.26 rectfill -0.63448 nxsetgray -0 55.439972 63 1.26 rectfill -0.63448 nxsetgray -0 56.69997 63 1.26 rectfill -0.63448 nxsetgray -0 57.959969 63 1.26 rectfill -0.63448 nxsetgray -0 59.219967 63 1.26 rectfill -0.63448 nxsetgray -0 60.479965 63 1.26 rectfill -0.63448 nxsetgray -0 61.739964 63 1.26 rectfill -N -grestore -0.15 L -0 nxsetgray -gsave -63 63 0 0 oval 0.015873 0.015873 S s -grestore -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 72 56] concat -N -gsave N -45 45 0 0 ovalPath -clip -N -0 setlinewidth -0.63448 nxsetgray -0 0 45 0.9 rectfill -0.63448 nxsetgray -0 0.9 45 0.9 rectfill -0.63448 nxsetgray -0 1.8 45 0.9 rectfill -0.63448 nxsetgray -0 2.7 45 0.9 rectfill -0.63448 nxsetgray -0 3.6 45 0.9 rectfill -0.63448 nxsetgray -0 4.5 45 0.9 rectfill -0.63448 nxsetgray -0 5.4 45 0.9 rectfill -0.63448 nxsetgray -0 6.3 45 0.9 rectfill -0.63448 nxsetgray -0 7.2 45 0.9 rectfill -0.63448 nxsetgray -0 8.1 45 0.9 rectfill -0.63448 nxsetgray -0 9 45 0.9 rectfill -0.63448 nxsetgray -0 9.9 45 0.9 rectfill -0.63448 nxsetgray -0 10.799999 45 0.9 rectfill -0.63448 nxsetgray -0 11.699999 45 0.9 rectfill -0.63448 nxsetgray -0 12.599998 45 0.9 rectfill -0.63448 nxsetgray -0 13.499998 45 0.9 rectfill -0.63448 nxsetgray -0 14.399998 45 0.9 rectfill -0.63448 nxsetgray -0 15.299997 45 0.9 rectfill -0.63448 nxsetgray -0 16.199997 45 0.9 rectfill -0.63448 nxsetgray -0 17.099997 45 0.9 rectfill -0.63448 nxsetgray -0 17.999996 45 0.9 rectfill -0.63448 nxsetgray -0 18.899996 45 0.9 rectfill -0.63448 nxsetgray -0 19.799995 45 0.9 rectfill -0.63448 nxsetgray -0 20.699995 45 0.9 rectfill -0.63448 nxsetgray -0 21.599995 45 0.9 rectfill -0.63448 nxsetgray -0 22.499994 45 0.9 rectfill -0.63448 nxsetgray -0 23.399994 45 0.9 rectfill -0.63448 nxsetgray -0 24.299994 45 0.9 rectfill -0.63448 nxsetgray -0 25.199993 45 0.9 rectfill -0.63448 nxsetgray -0 26.099993 45 0.9 rectfill -0.63448 nxsetgray -0 26.999992 45 0.9 rectfill -0.63448 nxsetgray -0 27.899992 45 0.9 rectfill -0.63448 nxsetgray -0 28.799992 45 0.9 rectfill -0.63448 nxsetgray -0 29.699991 45 0.9 rectfill -0.63448 nxsetgray -0 30.599991 45 0.9 rectfill -0.63448 nxsetgray -0 31.49999 45 0.9 rectfill -0.63448 nxsetgray -0 32.39999 45 0.9 rectfill -0.63448 nxsetgray -0 33.299992 45 0.9 rectfill -0.63448 nxsetgray -0 34.199993 45 0.9 rectfill -0.63448 nxsetgray -0 35.099995 45 0.9 rectfill -0.63448 nxsetgray -0 35.999996 45 0.9 rectfill -0.63448 nxsetgray -0 36.899998 45 0.9 rectfill -0.63448 nxsetgray -0 37.799999 45 0.9 rectfill -0.63448 nxsetgray -0 38.700001 45 0.9 rectfill -0.63448 nxsetgray -0 39.600002 45 0.9 rectfill -0.63448 nxsetgray -0 40.500004 45 0.9 rectfill -0.63448 nxsetgray -0 41.400005 45 0.9 rectfill -0.63448 nxsetgray -0 42.300007 45 0.9 rectfill -0.63448 nxsetgray -0 43.200008 45 0.9 rectfill -0.63448 nxsetgray -0 44.10001 45 0.9 rectfill -N -grestore -0.15 L -0 nxsetgray -gsave -45 45 0 0 oval 0.022222 0.022222 S s -grestore -0 0 T -grestore -0 0 1 1 10 SU -[1 0 0 -1 90 92] concat -N -gsave N -9 63 0 0 acsRect -clip -N -0 setlinewidth -0.620685 nxsetgray -0 0 0.18 63 rectfill -0.620685 nxsetgray -0.18 0 0.18 63 rectfill -0.620685 nxsetgray -0.36 0 0.18 63 rectfill -0.620685 nxsetgray -0.54 0 0.18 63 rectfill -0.620685 nxsetgray -0.72 0 0.18 63 rectfill -0.620685 nxsetgray -0.9 0 0.18 63 rectfill -0.620685 nxsetgray -1.08 0 0.18 63 rectfill -0.620685 nxsetgray -1.26 0 0.18 63 rectfill -0.620685 nxsetgray -1.44 0 0.18 63 rectfill -0.620685 nxsetgray -1.62 0 0.18 63 rectfill -0.620685 nxsetgray -1.8 0 0.18 63 rectfill -0.620685 nxsetgray -1.98 0 0.18 63 rectfill -0.620685 nxsetgray -2.16 0 0.18 63 rectfill -0.620685 nxsetgray -2.34 0 0.18 63 rectfill -0.620685 nxsetgray -2.52 0 0.18 63 rectfill -0.620685 nxsetgray -2.700001 0 0.18 63 rectfill -0.620685 nxsetgray -2.880001 0 0.18 63 rectfill -0.620685 nxsetgray -3.060001 0 0.18 63 rectfill -0.620685 nxsetgray -3.240001 0 0.18 63 rectfill -0.620685 nxsetgray -3.420001 0 0.18 63 rectfill -0.620685 nxsetgray -3.600001 0 0.18 63 rectfill -0.620685 nxsetgray -3.780001 0 0.18 63 rectfill -0.620685 nxsetgray -3.960001 0 0.18 63 rectfill -0.620685 nxsetgray -4.140001 0 0.18 63 rectfill -0.620685 nxsetgray -4.320001 0 0.18 63 rectfill -0.620685 nxsetgray -4.5 0 0.18 63 rectfill -0.620685 nxsetgray -4.68 0 0.18 63 rectfill -0.620685 nxsetgray -4.86 0 0.18 63 rectfill -0.620685 nxsetgray -5.04 0 0.18 63 rectfill -0.620685 nxsetgray -5.22 0 0.18 63 rectfill -0.620685 nxsetgray -5.4 0 0.18 63 rectfill -0.620685 nxsetgray -5.579999 0 0.18 63 rectfill -0.620685 nxsetgray -5.759999 0 0.18 63 rectfill -0.620685 nxsetgray -5.939999 0 0.18 63 rectfill -0.620685 nxsetgray -6.119999 0 0.18 63 rectfill -0.620685 nxsetgray -6.299999 0 0.18 63 rectfill -0.620685 nxsetgray -6.479999 0 0.18 63 rectfill -0.620685 nxsetgray -6.659998 0 0.18 63 rectfill -0.620685 nxsetgray -6.839998 0 0.18 63 rectfill -0.620685 nxsetgray -7.019998 0 0.18 63 rectfill -0.620685 nxsetgray -7.199998 0 0.18 63 rectfill -0.620685 nxsetgray -7.379998 0 0.18 63 rectfill -0.620685 nxsetgray -7.559998 0 0.18 63 rectfill -0.620685 nxsetgray -7.739997 0 0.18 63 rectfill -0.620685 nxsetgray -7.919997 0 0.18 63 rectfill -0.620685 nxsetgray -8.099998 0 0.18 63 rectfill -0.620685 nxsetgray -8.279998 0 0.18 63 rectfill -0.620685 nxsetgray -8.459998 0 0.18 63 rectfill -0.620685 nxsetgray -8.639998 0 0.18 63 rectfill -0.620685 nxsetgray -8.819999 0 0.18 63 rectfill -N -grestore -1 L -0 nxsetgray -0 0 9 63 rectstroke -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 91 37] concat -N -gsave N -9 9 0 0 ovalPath -clip -N -0 setlinewidth -0.63448 nxsetgray -0 0 9 0.18 rectfill -0.63448 nxsetgray -0 0.18 9 0.18 rectfill -0.63448 nxsetgray -0 0.36 9 0.18 rectfill -0.63448 nxsetgray -0 0.54 9 0.18 rectfill -0.63448 nxsetgray -0 0.72 9 0.18 rectfill -0.63448 nxsetgray -0 0.9 9 0.18 rectfill -0.63448 nxsetgray -0 1.08 9 0.18 rectfill -0.63448 nxsetgray -0 1.26 9 0.18 rectfill -0.63448 nxsetgray -0 1.44 9 0.18 rectfill -0.63448 nxsetgray -0 1.62 9 0.18 rectfill -0.63448 nxsetgray -0 1.8 9 0.18 rectfill -0.63448 nxsetgray -0 1.98 9 0.18 rectfill -0.63448 nxsetgray -0 2.16 9 0.18 rectfill -0.63448 nxsetgray -0 2.34 9 0.18 rectfill -0.63448 nxsetgray -0 2.52 9 0.18 rectfill -0.63448 nxsetgray -0 2.700001 9 0.18 rectfill -0.63448 nxsetgray -0 2.880001 9 0.18 rectfill -0.63448 nxsetgray -0 3.060001 9 0.18 rectfill -0.63448 nxsetgray -0 3.240001 9 0.18 rectfill -0.63448 nxsetgray -0 3.420001 9 0.18 rectfill -0.63448 nxsetgray -0 3.600001 9 0.18 rectfill -0.63448 nxsetgray -0 3.780001 9 0.18 rectfill -0.63448 nxsetgray -0 3.960001 9 0.18 rectfill -0.63448 nxsetgray -0 4.140001 9 0.18 rectfill -0.63448 nxsetgray -0 4.320001 9 0.18 rectfill -0.63448 nxsetgray -0 4.5 9 0.18 rectfill -0.63448 nxsetgray -0 4.68 9 0.18 rectfill -0.63448 nxsetgray -0 4.86 9 0.18 rectfill -0.63448 nxsetgray -0 5.04 9 0.18 rectfill -0.63448 nxsetgray -0 5.22 9 0.18 rectfill -0.63448 nxsetgray -0 5.4 9 0.18 rectfill -0.63448 nxsetgray -0 5.579999 9 0.18 rectfill -0.63448 nxsetgray -0 5.759999 9 0.18 rectfill -0.63448 nxsetgray -0 5.939999 9 0.18 rectfill -0.63448 nxsetgray -0 6.119999 9 0.18 rectfill -0.63448 nxsetgray -0 6.299999 9 0.18 rectfill -0.63448 nxsetgray -0 6.479999 9 0.18 rectfill -0.63448 nxsetgray -0 6.659998 9 0.18 rectfill -0.63448 nxsetgray -0 6.839998 9 0.18 rectfill -0.63448 nxsetgray -0 7.019998 9 0.18 rectfill -0.63448 nxsetgray -0 7.199998 9 0.18 rectfill -0.63448 nxsetgray -0 7.379998 9 0.18 rectfill -0.63448 nxsetgray -0 7.559998 9 0.18 rectfill -0.63448 nxsetgray -0 7.739997 9 0.18 rectfill -0.63448 nxsetgray -0 7.919997 9 0.18 rectfill -0.63448 nxsetgray -0 8.099998 9 0.18 rectfill -0.63448 nxsetgray -0 8.279998 9 0.18 rectfill -0.63448 nxsetgray -0 8.459998 9 0.18 rectfill -0.63448 nxsetgray -0 8.639998 9 0.18 rectfill -0.63448 nxsetgray -0 8.819999 9 0.18 rectfill -N -grestore -0.15 L -0 nxsetgray -gsave -9 9 0 0 oval 0.111111 0.111111 S s -grestore -0 0 T -grestore -grestore -grestore -0 0 2 1 10 SU -[1 0 0 -1 318 554] concat -[0.773781 0 0 0.773781 0.786574 0.976821] concat -N -gsave N -60 44 0 0 acsRect -clip -N -0 setlinewidth -0.620685 nxsetgray -0 0 60 0.88 rectfill -0.620685 nxsetgray -0 0.88 60 0.88 rectfill -0.620685 nxsetgray -0 1.76 60 0.88 rectfill -0.620685 nxsetgray -0 2.64 60 0.88 rectfill -0.620685 nxsetgray -0 3.52 60 0.88 rectfill -0.620685 nxsetgray -0 4.4 60 0.88 rectfill -0.620685 nxsetgray -0 5.28 60 0.88 rectfill -0.620685 nxsetgray -0 6.16 60 0.88 rectfill -0.620685 nxsetgray -0 7.04 60 0.88 rectfill -0.620685 nxsetgray -0 7.920001 60 0.88 rectfill -0.620685 nxsetgray -0 8.8 60 0.88 rectfill -0.620685 nxsetgray -0 9.68 60 0.88 rectfill -0.620685 nxsetgray -0 10.56 60 0.88 rectfill -0.620685 nxsetgray -0 11.440001 60 0.88 rectfill -0.620685 nxsetgray -0 12.320001 60 0.88 rectfill -0.620685 nxsetgray -0 13.200001 60 0.88 rectfill -0.620685 nxsetgray -0 14.080001 60 0.88 rectfill -0.620685 nxsetgray -0 14.960001 60 0.88 rectfill -0.620685 nxsetgray -0 15.840001 60 0.88 rectfill -0.620685 nxsetgray -0 16.720001 60 0.88 rectfill -0.620685 nxsetgray -0 17.6 60 0.88 rectfill -0.620685 nxsetgray -0 18.48 60 0.88 rectfill -0.620685 nxsetgray -0 19.359999 60 0.88 rectfill -0.620685 nxsetgray -0 20.239998 60 0.88 rectfill -0.620685 nxsetgray -0 21.119997 60 0.88 rectfill -0.620685 nxsetgray -0 21.999996 60 0.88 rectfill -0.620685 nxsetgray -0 22.879995 60 0.88 rectfill -0.620685 nxsetgray -0 23.759995 60 0.88 rectfill -0.620685 nxsetgray -0 24.639994 60 0.88 rectfill -0.620685 nxsetgray -0 25.519993 60 0.88 rectfill -0.620685 nxsetgray -0 26.399992 60 0.88 rectfill -0.620685 nxsetgray -0 27.279991 60 0.88 rectfill -0.620685 nxsetgray -0 28.15999 60 0.88 rectfill -0.620685 nxsetgray -0 29.039989 60 0.88 rectfill -0.620685 nxsetgray -0 29.919989 60 0.88 rectfill -0.620685 nxsetgray -0 30.799988 60 0.88 rectfill -0.620685 nxsetgray -0 31.679987 60 0.88 rectfill -0.620685 nxsetgray -0 32.559986 60 0.88 rectfill -0.620685 nxsetgray -0 33.439987 60 0.88 rectfill -0.620685 nxsetgray -0 34.319988 60 0.88 rectfill -0.620685 nxsetgray -0 35.199989 60 0.88 rectfill -0.620685 nxsetgray -0 36.07999 60 0.88 rectfill -0.620685 nxsetgray -0 36.959991 60 0.88 rectfill -0.620685 nxsetgray -0 37.839993 60 0.88 rectfill -0.620685 nxsetgray -0 38.719994 60 0.88 rectfill -0.620685 nxsetgray -0 39.599995 60 0.88 rectfill -0.620685 nxsetgray -0 40.479996 60 0.88 rectfill -0.620685 nxsetgray -0 41.359997 60 0.88 rectfill -0.620685 nxsetgray -0 42.239998 60 0.88 rectfill -0.620685 nxsetgray -0 43.119999 60 0.88 rectfill -N -grestore -2 L -0.117237 nxsetgray -0 0 60 44 rectstroke -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 389 497] concat -gsave -/Helvetica findfont 14 scalefont [1 0 0 -1 0 0] makefont -551 -exch -defineuserobject -551 execuserobject setfont -7 5 T --6 4 T -N 0 0 m -0 nxsetgray -0 0 m -(m) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 331 543] concat -gsave -551 execuserobject setfont -7 5 T --6 4 T -N 0 0 m -0 nxsetgray -0 0 m -(m) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 343 541] concat -gsave -/Helvetica findfont 11 scalefont [1 0 0 -1 0 0] makefont -41 -exch -defineuserobject -41 execuserobject setfont -4.5 5 T --3.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(1) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 401 494] concat -gsave -41 execuserobject setfont -4.5 5 T --3.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(2) show -0 0 T -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob57a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob57a.gif deleted file mode 100755 index ae3674ea9..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob57a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob58.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob58.eps deleted file mode 100755 index 67927229a..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob58.eps +++ /dev/null @@ -1,393 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: Untitled1.create -%%Creator: Create -%%CreationDate: Mon Feb 17 10:18:24 1997 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 102 437 487 542 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(i"/M -% r!"Th),t&NOdp^^7qG,G>2u_n\R%AdlucPU[PiBr7kt5ViHEU)/=b#XSuTB\f[G8Wp4W!WWc -% n(4b)EKHP5>bBA]oY\3"=NG)o8YT@fr_fm5i,X_aR5>RR#nh>nd -% 6KU;/ne.;:700lNV:9[ -% 3V,P_7AnmEB"=/GJS>Z\J.)Sm,/>%*R+2KC9HhJBDN2Uh7Mec11&r6u$6h`Q#pdl"%N?Th"r -% h`-<`Bojd%io?;Lmhr)eZBP`_i7*1-d0pl/9Bo"F>:CFLu[.Q>aPFB3udq:iY8u\Ci3qDJ+g -% S*E`DnQ\b\Di4snl!8-J\-j*Xc(+BSGaHRPI$:',poE@!9$,lWq==FlSAB9Fl5U@.F<_XFk- -% C#8VkUli<&ki964J59/7[f%,Q/+/4gi.uk2PiXe.B0218t+l'+J(^3_[qHV!C8]H.`$W=X0l -% rm'(XFO-@KO(=X9IE(;ORN!14rrDPtF(MBE^qA\_1sfs'ELH*ea7)f3G`;#sBrjMm3CodE'P -% 3rpQ@)Z`biBp"baE+u:ErjM'hT2mD@D5=V0S!W6.RkC+@U7!?F^bWEWS.^![S7-a?1[Kd[5b -% K]09h[iL(hoLk"s)QP)aGg:"@-iIjp$ET!:/(am^qt'lD2:M_//S+pu]"2^Ei[q!5Q5S4=r0l,nSi^/1T>QR$4.!Q=[N>joX'UAb3!sDu!1i3G'8D#V]1i3)]=Ze[`? -% 6MYlhuU(dL'nik6\FkJ>4`4B/nEH[%78'nc_Y&lfo'DK9fT7h\@>Cg`f1fm$tlhN#.KO./o9 -% %9OWt'i]m]oIOn3/nLcl*`PW@c*!K>DK_"(B:$J:iUuMXLEIol-t2qji2NV=ZH/f!O$Ypm@R127O-t%Ki%S9idbTW -% r2PB&VhV3G[t#m-F`D9586HNj`;G@E=1k*`ocRAHBk^aUY%"l3!tM5,C87V_-7Hco,HdDd\r4ipDRlQ+.`8pdep(\bXRbT8T!8oBK912CR;;B9%9T6bnt1pgJu -% JP%Z%m.IJX"d18]++jW'HWh[D6!m-t6T@%sqZ;!Y:EO-d#.4h_SK5bYEb'(udY\b!eD9Cb(> -% V-t@.Stj=A15f[!^?CP5T;Jh[2B6t_[-QW27[._=_Od'#$Yu]2$XCui%YES+HTHT)%$p18L8 -% MU6j$(7.F<_^nqH&B)/POgP=C3VcifP@*+:06BY:`670gmT#48k^6qJ[C&TEsPK?,3'03Q\B -% LD!a0YfSJ"iGjVV?8_6$p"/s1;\B'5d/?l!0-rebfU$OU&E%aS^A.%*'`dcmA -% fd=`W1+9A;E7RZA=J/"`p+,!J+n7G3R"!V[q$Z)I9"<`ruTd1(49EP;$5_0!0`$dkj7/Z1;J -% >Kc[Ku&!W+TsKR0fTaFL*4D]JG2?&=<[sc(^)Os:l?D(_MbhC$7G0_JfolDLDj^\"2?e2%0D -% '19CtM!J7/faq%%uW,TmXsOha85@0)C-+9Wo+PkCRkNY1X9#F@c-0Z%3%s7jD:TBJUkUgamf -% 1uf_m\O/=X5SZX;i[U0@59D]oMPu'%5?MpE/8d0B+!_(/R&?3!P]78[KAI_OTo(bBdjPh;40SWa*@LtpM"tqq)]]`)9NHBj7;OFFI4"^]*o96$nXVo2r, -% #Eh!<$XFLkX^Q9:QeO?!>(p`";@N6SXk/+2K9S^;V(H(WQZ_?RHR&+qNI3s`1eDI+b2+I!Ya -% S;"9:'9JK@Xa*HT#H&@D!1jCs2i(RP:D9LfaO\,^M]#_O,0g6T4d,nP;TJ6gTl([-Og07XX. -% @h(;Y_GOpJO,;*FmV8.+?q)rB+\ccX1tW>TL,C`ENGN8q*8DC^;i61CO^9`3gU-*#b$gu)SV0]bDe -% f/4`^_h,->H9(bUG'di93\f=F3K%A1LaK*gGY]EE$#_-f,XKeX!On;S9g5$$RE@8(JU)q08^ -% (:'&+Qs'TPRt:Bg@,/J4[g(j`&dCYrS!356CO167?p2NiV]^aQ68PPkV4"[fg -% X%5-$;JD6M3m&!9+[^3b%/0sA4q74.(g2sBr,4''2C0Ee8Rt6frnY5=R0[;K(e6?GVqUo;-h -% V+^;G2KMI>0(:p[X=#rXcj>6[Fr-.V0+ku_Yi^U-K;Cu5:nKmMn3QD277KeS8.<^Lt0GgnuK -% ;OC[foD]\]6E^s8un?44lp[DHpfGMM)Y=j57f%Mmlu\%i`6E&K`3k3PRiCs$(:8_5bNPn"A3An8;;dgTf7P]=+R6(J_TockJr.W`s(Q9$ -% 7j("hf'$B-NsrU$s@QXn$!-MQqS+AG;#>5JN&51FF8lLJHR5o430qrfR*opGlZb&=WouDJ:o -% W\JV.?ci+Gh`8:IdRIK5X^?m#[g&3UQn!HL\So>c3lkCUt>LAPV2LY#DG#C;BMK6\km#hW$O -% ipCKe9Zlra:F]'G2f[#d$o0&!03hM2cc,NSbS5He1F_@#k&,2OsC?Zq%j_o)$iT4PXjDi06pJNR862'H@]H)6XZ*U -% ;uf1:'M4EWK2;V@+9?(B9WFaU+W6OLfoA:>769+`%$3p)-p)?D#B6n.SPTV.OGsphNV3n`9V -% ;S].8f1t;D@=!G:AgV5X7)4dM+JRQBO!`SOA=9/!\t\??U7kBc*Y -% >+7\Wepc7lC^>oU2IR8P\B3T@s"7JM7Sc3MNT'TL;DF7XC^uqEbH*<%PUL%hK'[YSR\oSn_r -% 2n6)Nq)+=gWV39G_>"Xeql9Q&e!%m\<@p5W,(^S1_!,(R`H^^ai=:#HK$6()g)P@=W.[bKQV -% 0Rq*JKP8)^o%<;;EPepTtg[BJ,smKV#D3h-[MQpWi"fj#Xa;=XQc1Xaa/L5&kt%_BcmZE6&j -% G$!MPSVT*bQ+0W,O%:7DT8\&k0/R%ZS+Gc%JBJM7B1O8t%#:5J28N=&UG\q*5FT8OQmNVSsQ -% \s!G^NB"_56Q#k@&=L9lR8`CPbB]l1MPYT3;(/E9mAcF6KE8.]P=+uB[2?'Ja-227P6Sh*mR -% i^5M3Jf:UOU=`pM-Na>-Su\Q2K@>%L]LGM$*ngQ3Ae)hJ&;88IJ1"H>a[fF/]LhM44ieMa>m -% [/4pK\5QsHH41m?RJRAT1=:#CtNK_/;QQQ8>huMb-TlulpG^?V;RBK[p:O`_)kL9`$TF=1A# -% ]:ac-9q]d:^eHH"^+\1aC#*9J=G?GXZ4:jkBB<[KE:#KRkZT$>n@58',bL.l*M4QTi$`A)[T#7]0RjA%t>O)Jkn?l[d[UjfoBmZ7` -% 4.tGVI^pT1h4k?dYR>h_!5'GaKM)T*WrUg$"5IPp!oO%hYdBiK\b8Y+GU^$@q`U?_:*4!NVN -% ;*g9*EGb!FU6YAq7=B:]k%>4DNVrC`A\Alad+i$[Nr-I9XU8ltV#0TRXm(jYi!82T-gis)+TEI -% $C^_D-U(7J+IMSFR3WW[!rpqVmXMZb_a_;752VcSuTHBY_o4VH,IE]HfICR82*QYW%R>(hU' -% n,e.@`'R/9;Q?u2CqP/,`$O*T*WuRr&B.RA_e!#j;s6WrWl6LSQLU.F4oc=J+N>6KX#+V3Rm -% ="Sx -% EndEmbeddedGraphics N 4091 ffb E 8e S 71fea R a643373b -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -<< -/PaintType 1 /PatternType 1 /TilingType 1 -/BBox [0.000000 0.000000 38.000000 23.000000] -/XStep 38.113209 /YStep 23.655914 -/PaintProc { -begin -gsave -0 0 500 500 rectclip -0 0 38 23 rectclip -0 0 0.15 1 10 SU -[1 0 0 -1 9.277924 30.808722] concat -[1.096218 -0.76758 0.589509 0.841906 0.126431 13.169575] concat -N -0.606891 0.13596 0.096759 nxsetrgbcolor -0 0 17 9 rectfill -0.15 L -0 nxsetgray -0 0 17 9 rectstroke -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 5.059248 14.746025] concat -[1.096218 -0.76758 0.637307 0.910169 0.130015 13.174697] concat -N -0.606891 0.13596 0.096759 nxsetrgbcolor -0 0 17 9 rectfill -0.15 L -0 nxsetgray -0 0 17 9 rectstroke -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 -10.708809 17.412235] concat -[1.084172 -0.759145 0.63651 0.909031 0.129051 13.030581] concat -N -0.606891 0.13596 0.096759 nxsetrgbcolor -0 0 17 9 rectfill -0.15 L -0 nxsetgray -0 0 17 9 rectstroke -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 25.027924 27.78997] concat -[1.096218 -0.76758 0.589509 0.841906 0.126431 13.169577] concat -N -0.606891 0.13596 0.096759 nxsetrgbcolor -0 0 17 9 rectfill -0.15 L -0 nxsetgray -0 0 17 9 rectstroke -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 22.027924 12.78997] concat -[1.096218 -0.76758 0.589509 0.841906 0.126431 13.169577] concat -N -0.606891 0.13596 0.096759 nxsetrgbcolor -0 0 17 9 rectfill -0.15 L -0 nxsetgray -0 0 17 9 rectstroke -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 -6.972076 32.78997] concat -[1.096218 -0.76758 0.589509 0.841906 0.126431 13.169575] concat -N -0.606891 0.13596 0.096759 nxsetrgbcolor -0 0 17 9 rectfill -0.15 L -0 nxsetgray -0 0 17 9 rectstroke -0 0 T -grestore -grestore -end -} ->> -matrix makepattern /slanted.staggard.bricks exch def -<< -/PaintType 1 /PatternType 1 /TilingType 1 -/BBox [0.000000 0.000000 36.250000 23.000000] -/XStep 24.754715 /YStep 21.655914 -/PaintProc { -begin -0 0 500 500 rectclip -0 0 36.25 23 rectclip -0 0 0.15 1 10 SU -[1 0 0 -1 -0.350367 22.077084] concat -[1.338235 0 0 1.027778 0.100367 0.077084] concat -N -0.606891 0.13596 0.096759 nxsetrgbcolor -0 0 17 9 rectfill -0.15 L -0 nxsetgray -0 0 17 9 rectstroke -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 12.649632 11.583333] concat -[1.338235 0 0 1.111111 0.100368 0.083333] concat -N -0.606891 0.13596 0.096759 nxsetrgbcolor -0 0 17 9 rectfill -0.15 L -0 nxsetgray -0 0 17 9 rectstroke -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 -11.099264 11.570728] concat -[1.323529 0 0 1.109722 0.099264 0.083229] concat -N -0.606891 0.13596 0.096759 nxsetrgbcolor -0 0 17 9 rectfill -0.15 L -0 nxsetgray -0 0 17 9 rectstroke -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 23.649632 22.058331] concat -[1.338235 0 0 1.027778 0.100368 0.077084] concat -N -0.606891 0.13596 0.096759 nxsetrgbcolor -0 0 17 9 rectfill -0.15 L -0 nxsetgray -0 0 17 9 rectstroke -0 0 T -grestore -end -} ->> -matrix makepattern /staggered_bricks exch def -%%EndSetup -gsave -46 494 533 204 rectclip -0 0 0.15 1 10 SU -[1 0 0 -1 47 697] concat -[1 0 0 1 1 1] concat -N -gsave N -staggered_bricks setpattern -0 0 72 48 rectfill -grestore -0.15 L -0 nxsetgray -0 0 72 48 rectstroke -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 503 697] concat -[1 0 0 1 1 1] concat -N -gsave N -staggered_bricks setpattern -0 0 72 48 rectfill -grestore -0.15 L -0 nxsetgray -0 0 72 48 rectstroke -0 0 T -grestore -0 0 2 1 10 SU -240 672 T -N -2 L -0 nxsetgray -72 0 0 0 line -0 72 0 arrow -0 0 T -grestore -0 0 2 1 10 SU -312 672 T -N -2 L -0 nxsetgray -72 0 0 0 line -180 0 0 arrow -0 0 T -grestore -0 0 2 1 10 SU -312 648 T -N -2 L -0 nxsetgray -0 24 0 0 line --90 0 0 arrow -0 0 T -grestore -0 0 2 1 10 SU -[1 0 0 -1 306 645] concat -gsave -/Times-BoldItalic findfont 24 scalefont [1 0 0 -1 0 0] makefont -186 -exch -defineuserobject -186 execuserobject setfont -7 7.5 T --5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(z) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 205 678] concat -gsave -186 execuserobject setfont -8 7 T --6 5 T -N 0 0 m -0 nxsetgray -0 0 m -(a) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 403 677] concat -gsave -186 execuserobject setfont -8 7 T --6 5 T -N 0 0 m -0 nxsetgray -0 0 m -(a) show -0 0 T -grestore -grestore -0 0 4 1 10 SU -312 599 T -N -gsave N -slanted.staggard.bricks setpattern -192 72 0 0 line -grestore -4 L -0.262062 nxsetgray -192 72 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -312 599 T -N -2 L -0 nxsetgray -0 24 0 0 line -90 0 24 arrow -0 0 T -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 275 502] concat -[0.8 0 0 0.634731 0 0] concat -0 0 2 1 10 SU -[1 0 0 -1 42 156] concat -N -2 L -0 nxsetgray -gsave -9 9 0 0 oval 0.111111 0.111111 S s -grestore -0 0 T -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 7 7] concat -0 0 2 1 10 SU -[1 0 0 -1 28 139] concat -N -0.36552 nxsetgray -0 0 24 120 rectfill -2 L -0.593097 nxsetgray -0 0 24 120 rectstroke -0 0 T -grestore -0 0 2 1 10 SU -[1 0 0 -1 18 20] concat -N -0.593097 nxsetgray -0 0 45 9 rectfill -2 L -0.593097 nxsetgray -0 0 45 9 rectstroke -0 0 T -grestore -0 0 2 1 10 SU -53 30 T -N -2 L -0.593097 nxsetgray -18 0 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -53 127 T -N -2 L -0.593097 nxsetgray -18 0 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -11 109 T -N -2 L -0.593097 nxsetgray -18 0 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -52 82 T -N -2 L -0.593097 nxsetgray -18 0 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -10 55 T -N -2 L -0.593097 nxsetgray -18 0 0 0 line -0 0 T -grestore -grestore -grestore -grestore -grestore -0 0 4 1 10 SU -120 599 T -N -gsave N -slanted.staggard.bricks setpattern -192 -72 0 72 line -grestore -4 L -0.262062 nxsetgray -192 -72 0 72 line -0 0 T -grestore -0 0 2 1 10 SU -120 672 T -N -2 L -0 nxsetgray -72 0 0 0 line -180 0 0 arrow -0 0 T -grestore -0 0 2 1 10 SU -432 672 T -N -2 L -0 nxsetgray -72 0 0 0 line -0 72 0 arrow -0 0 T -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Times-BoldItalic diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob61.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob61.gif deleted file mode 100755 index 511a37a90..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob61.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob62a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob62a.eps deleted file mode 100755 index 632b1378a..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob62a.eps +++ /dev/null @@ -1,433 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: Untitled1.create -%%Creator: Create -%%CreationDate: Wed Jun 26 10:14:28 1996 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 61 354 536 528 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(T@fr\t?Bia -% 6d"+s5`2fmCi2tP#u*BIZ^E+-J/c5hjb5ThMn`_IC47)SBTUOZ",0QPICT`LqeqtP3q.mQ;\ -% %@]W8Y$s^RK*uS>1JO^/*bg7LS0u.27%3rl#!t -% 6#m38=oJ\nH^*3/fhL$o#b1isdfs0Hpr]gsDRH1uJ@dL`V.-",bljd9IU7e\QtZeWnOQ$oDc -% Z7WW&n#D*NpYh-ug1H!Ot'Ej,P`YiI:EKM2O(e%:&9tV>k:D>D-`-Gd52H3O9NM\rfEMtQZ! -% 3M)H(2[a,p0)=AiMDkO\fiC>UNFIT(B\PtV:D?I_,UdAVTf0-+J/dUBICV9`p-rb.+$JF9nd -% /ZU3.'0`ia"e5_'7H.)j]="V>'BV1\$p&$,hk0ugHuY%F4S6'<:`g.Zmfu=G/.PN3WefnMU4TJI/D5))[$@oWmf2cd,L*;j8!33iH>]]L/\ -% "12CkM+g:F+cJYH0;$UnU1YoQ`u&LHe`Rj&/.#X`X8$J+N56p8FXY;DWl/`.A*-iMClO^",n -% eOCa4s$cHN&E7-=EBO[sp<,1%2l)cUhnD4Aqk;V;oe]70/KL]8iiYF>q7YHe'G[]YW:S)lh-XONmMj -% q^9kZpN>3ts:V:d^8"s@SH$uSQ^MC>,(;?."DSg0jh"lL&ZBM9N -% o&:b(k!=N.:<,I@[]X*RaGeIjGSL3bjUY;F.P>6lKs-#\$ -% ;'X(=@5It@19InJ#!-Le07=-#[j*E!'gT5?pb9@(bW=OXa&ukijiYl]GfW<>`7ll;Ih#JgdoFEOt%$V -% pgOY&ON1B:nVF[VJ013C6luh8NDq_[((&BF8dHOQ':;$-p*`MkRB_GuCaCElXop!mnQg0-LUB!t-0U2aH66L_3-61ItHA$pGkq#nh4f! -% )WYY"T`c!?RNLA'8-#%?ngEHKgcf\"CMmH[;=ZJ$H@?LAjQjKl8EFfGM^5Idg/`:J:NR[A'5 -% 2i5[^d4!1GY"/g/q#hStV)@*bX^))EU'C^20I8N_:QrWifI1WDG*8e;CC\l=NFlV%<0$4$b@ -% 0.4GgL"=jgUT'!8-eL^#?"XOSp6f=n6F^)FWMpX5C\Qr2(4UQlLRop.6$V$1`>qGUF3`/;h. -% HXo64Zr>D7kF.%u3=+W+^6Rk\$AK*@/ -% +,_^V[M.%Mq#'-MU.Xi5oOoUSW>QH31#@3`K\d2eh1CiCbGin)n$BF?G#i0jtbuY2gY0iEiO -% ]j":+HlmC-D5ofB%LF&=*g0D@TtUFfS-F2@]5Xq,jHP6+GRt(RO4d(Ao2Pao3q\+C?HFXG1N -% &DXZZIU$)$it;@+)@JY:R0D'bk9BTE5QA?qpuWaMZe50.Q+>Y`IVYeq5<.V>ORG%ukMWp4#n -% YJsc/SMooHUUkdFpu;@f<\ai@C.TS!";2\)U1h_:fpB$EEe[`(QYm^F[1Rj*VS2bBlVG"'IC -% j*\.C(FoX)lEC.uef=W$e4J^)O6iY46S3!#oaI0:GTrl>Mol:.k#>Ql`>C?e5Kk18lW`%.V& -% GJkPX6.pcKKPipcc0s6o.qB!;&p_nj%lC=C8b$?o/Y\F0]>cG(Bg77i5?WPGC#!SY.EN3o:C -% NRS%AjS#Z9S;--aAH"?Kko=CXYPDXCJ?U\0gkj2eh0aCo4jiiIAN[V9EE4uc3dMpfl0tU -% ,kqe%3Oqtbt]`qYO9ZMhMm[G_0k3]PDo>Pi!rO-`GkVapGs41D`gKke,7=5Ni%^rsuB\ouiqq6$C2gOs@:/H8r4H_h4#iR -% /hIqXXtspgsB2X3L#UkInukO*>X@S]8mO3V9FHI84RMTU+N)B:LLQImXn7Sd2+U=fHOOZV^> -% mf-q)Z$A4H3]C_1TCn_h4T8%lY/cV'f9dudJ:] -% n^_`BY$9u$PR3Vi$jY,`2d;mDHIPU1dMHkH&)ac0X%Jr-b -% e*+k2\-TTh7=.A/7W87BG;#eh'DkCj8%gYAqk_fe%75"hS9)=TnHX\ctdJH/":1f9)N\4.PY -% $:"\7E%IM*7K@NUgm#J&\k3*7)?:n5!Oa,'(rTej?.]5qj?Nr+^jlf$E5N[DTM%)R_$tLZK, -% E7V"^a0/%X5_0*'f%-19eS):9dD.G0gHtE1m_LO96A7!!@.k;k.kNVZLs#L,Z?q%D5s.%X,r -% *):Y;`>W>):b2tM6Xp)u)b:YR0sKk1CDkNSi -% ^!c,Yc(')&CHE]i!(3E-k/Ff;&\?m"rFBB8Uotu1&Nd9^T7MVgi1Im4AuG@B]^.\3c!Zd0+ -% 6?F]r*`S!Iu-;MPdcsVdaS(/%P@Of0qGhclGSHg)5.QHPC"SC_o"l7L]J;\P&:c,.i!BV -% sf+[j;XuD@KNT9$X\=hJi?\a^I3K0YjN3.a:>iUe@i$&./=?pHn`BdKrMKO1Al5lYk,noDb! -% !u0rC"LA%=LF-20;L,\m)hjWLdF6'[I'UI'8oIZ^brdGO!t/"JesA)0j8EpAu?G',JG^A]u\ -% MK!mlN7ba4EeYci-;44i&T&&A4Y;1M"l?pYS&!NqgoA-3Br3%c\]jk]2Od>KPZbXL!c*">D1&+'DerS&rbKA=XK^\ju9$)!kW_P8B#[!qU#^3+b@'a`7+6Y_S_CZdK2?bp:;rI`huZ.F1# -% n`N-;8@2t*k#/VB;[]p&:I+^dR3.HPr1B=pqkS!%@*CMgVWgoI;[6be^DPm&_/6Q"p^mejCsfCI8jq7!rurTWJdE4`=1k>At@lXN/+.bEMgx -% EndEmbeddedGraphics N 2284 8ec E 7a S 433ec R 97b409ca -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -144 339 172 283 rectclip -0 0 4 1 10 SU -211 502 T -N -gsave N -0 0 m 0 18 l -clip -N -0 setlinewidth -0.655171 nxsetgray -0 0 1 0.36 rectfill -0.661504 nxsetgray -0 0.36 1 0.36 rectfill -0.667837 nxsetgray -0 0.72 1 0.36 rectfill -0.674169 nxsetgray -0 1.08 1 0.36 rectfill -0.680502 nxsetgray -0 1.44 1 0.36 rectfill -0.686834 nxsetgray -0 1.8 1 0.36 rectfill -0.693167 nxsetgray -0 2.16 1 0.36 rectfill -0.699499 nxsetgray -0 2.52 1 0.36 rectfill -0.705832 nxsetgray -0 2.88 1 0.36 rectfill -0.71218 nxsetgray -0 3.24 1 0.36 rectfill -0.718513 nxsetgray -0 3.6 1 0.36 rectfill -0.724845 nxsetgray -0 3.960001 1 0.36 rectfill -0.731178 nxsetgray -0 4.320001 1 0.36 rectfill -0.73751 nxsetgray -0 4.680001 1 0.36 rectfill -0.743843 nxsetgray -0 5.040001 1 0.36 rectfill -0.750175 nxsetgray -0 5.400001 1 0.36 rectfill -0.756508 nxsetgray -0 5.760001 1 0.36 rectfill -0.762841 nxsetgray -0 6.120001 1 0.36 rectfill -0.769173 nxsetgray -0 6.480001 1 0.36 rectfill -0.775506 nxsetgray -0 6.840002 1 0.36 rectfill -0.781838 nxsetgray -0 7.200002 1 0.36 rectfill -0.788171 nxsetgray -0 7.560002 1 0.36 rectfill -0.794504 nxsetgray -0 7.920002 1 0.36 rectfill -0.800836 nxsetgray -0 8.280002 1 0.36 rectfill -0.807169 nxsetgray -0 8.640001 1 0.36 rectfill -0.813517 nxsetgray -0 9.000001 1 0.36 rectfill -0.819849 nxsetgray -0 9.360001 1 0.36 rectfill -0.826182 nxsetgray -0 9.72 1 0.36 rectfill -0.832514 nxsetgray -0 10.08 1 0.36 rectfill -0.838847 nxsetgray -0 10.44 1 0.36 rectfill -0.84518 nxsetgray -0 10.799999 1 0.36 rectfill -0.851512 nxsetgray -0 11.159999 1 0.36 rectfill -0.857845 nxsetgray -0 11.519999 1 0.36 rectfill -0.864177 nxsetgray -0 11.879998 1 0.36 rectfill -0.87051 nxsetgray -0 12.239998 1 0.36 rectfill -0.876843 nxsetgray -0 12.599998 1 0.36 rectfill -0.883175 nxsetgray -0 12.959997 1 0.36 rectfill -0.889508 nxsetgray -0 13.319997 1 0.36 rectfill -0.89584 nxsetgray -0 13.679996 1 0.36 rectfill -0.902173 nxsetgray -0 14.039996 1 0.36 rectfill -0.908505 nxsetgray -0 14.399996 1 0.36 rectfill -0.914853 nxsetgray -0 14.759995 1 0.36 rectfill -0.921186 nxsetgray -0 15.119995 1 0.36 rectfill -0.927519 nxsetgray -0 15.479995 1 0.36 rectfill -0.933851 nxsetgray -0 15.839994 1 0.36 rectfill -0.940184 nxsetgray -0 16.199995 1 0.36 rectfill -0.946516 nxsetgray -0 16.559996 1 0.36 rectfill -0.952849 nxsetgray -0 16.919996 1 0.36 rectfill -0.959181 nxsetgray -0 17.279997 1 0.36 rectfill -0.965514 nxsetgray -0 17.639997 1 0.36 rectfill -N -grestore -4 L -0.117237 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 4 1 10 SU -267 513 T -N -gsave N -0 0 m 0 9 l -clip -N -0 setlinewidth -0.655171 nxsetgray -0 0 1 0.18 rectfill -0.661504 nxsetgray -0 0.18 1 0.18 rectfill -0.667837 nxsetgray -0 0.36 1 0.18 rectfill -0.674169 nxsetgray -0 0.54 1 0.18 rectfill -0.680502 nxsetgray -0 0.72 1 0.18 rectfill -0.686834 nxsetgray -0 0.9 1 0.18 rectfill -0.693167 nxsetgray -0 1.08 1 0.18 rectfill -0.699499 nxsetgray -0 1.26 1 0.18 rectfill -0.705832 nxsetgray -0 1.44 1 0.18 rectfill -0.71218 nxsetgray -0 1.62 1 0.18 rectfill -0.718513 nxsetgray -0 1.8 1 0.18 rectfill -0.724845 nxsetgray -0 1.98 1 0.18 rectfill -0.731178 nxsetgray -0 2.16 1 0.18 rectfill -0.73751 nxsetgray -0 2.34 1 0.18 rectfill -0.743843 nxsetgray -0 2.52 1 0.18 rectfill -0.750175 nxsetgray -0 2.700001 1 0.18 rectfill -0.756508 nxsetgray -0 2.880001 1 0.18 rectfill -0.762841 nxsetgray -0 3.060001 1 0.18 rectfill -0.769173 nxsetgray -0 3.240001 1 0.18 rectfill -0.775506 nxsetgray -0 3.420001 1 0.18 rectfill -0.781838 nxsetgray -0 3.600001 1 0.18 rectfill -0.788171 nxsetgray -0 3.780001 1 0.18 rectfill -0.794504 nxsetgray -0 3.960001 1 0.18 rectfill -0.800836 nxsetgray -0 4.140001 1 0.18 rectfill -0.807169 nxsetgray -0 4.320001 1 0.18 rectfill -0.813517 nxsetgray -0 4.5 1 0.18 rectfill -0.819849 nxsetgray -0 4.68 1 0.18 rectfill -0.826182 nxsetgray -0 4.86 1 0.18 rectfill -0.832514 nxsetgray -0 5.04 1 0.18 rectfill -0.838847 nxsetgray -0 5.22 1 0.18 rectfill -0.84518 nxsetgray -0 5.4 1 0.18 rectfill -0.851512 nxsetgray -0 5.579999 1 0.18 rectfill -0.857845 nxsetgray -0 5.759999 1 0.18 rectfill -0.864177 nxsetgray -0 5.939999 1 0.18 rectfill -0.87051 nxsetgray -0 6.119999 1 0.18 rectfill -0.876843 nxsetgray -0 6.299999 1 0.18 rectfill -0.883175 nxsetgray -0 6.479999 1 0.18 rectfill -0.889508 nxsetgray -0 6.659998 1 0.18 rectfill -0.89584 nxsetgray -0 6.839998 1 0.18 rectfill -0.902173 nxsetgray -0 7.019998 1 0.18 rectfill -0.908505 nxsetgray -0 7.199998 1 0.18 rectfill -0.914853 nxsetgray -0 7.379998 1 0.18 rectfill -0.921186 nxsetgray -0 7.559998 1 0.18 rectfill -0.927519 nxsetgray -0 7.739997 1 0.18 rectfill -0.933851 nxsetgray -0 7.919997 1 0.18 rectfill -0.940184 nxsetgray -0 8.099998 1 0.18 rectfill -0.946516 nxsetgray -0 8.279998 1 0.18 rectfill -0.952849 nxsetgray -0 8.459998 1 0.18 rectfill -0.959181 nxsetgray -0 8.639998 1 0.18 rectfill -0.965514 nxsetgray -0 8.819999 1 0.18 rectfill -N -grestore -4 L -0.117237 nxsetgray -0 9 0 0 line -0 0 T -grestore -0 0 4 1 10 SU -267 513 T -N -gsave N -0 0 m -0 -42 0 -84 0 -126 c -clip -N -0 setlinewidth -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -N -grestore -4 L -0.117237 nxsetgray -0 0 m -0 -42 0 -84 0 -126 c -s -grestore -0 0 4 1 10 SU -242 441 T -N -gsave N -0 0 m -0 -18 0 -36 0 -54 c -clip -N -0 setlinewidth -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -N -grestore -4 L -0.117237 nxsetgray -0 0 m -0 -18 0 -36 0 -54 c -s -grestore -0 0 4 1 10 SU -182 440 T -N -gsave N -0 0 m -0 -18 0 -36 0 -54 c -clip -N -0 setlinewidth -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -0.63448 nxsetgray -N -grestore -4 L -0.117237 nxsetgray -0 0 m -0 -18 0 -36 0 -54 c -s -grestore -0 0 4 1 10 SU -182 357 T -N -4 L -0.137928 nxsetgray -0 33 0 0 line --90 0 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 206 559] concat -[1 0 0 1 1 1] concat -N -gsave N -63 63 0 0 ovalPath -clip -N -0 setlinewidth -0.63448 nxsetgray -0 0 63 1.26 rectfill -0.63448 nxsetgray -0 1.26 63 1.26 rectfill -0.63448 nxsetgray -0 2.52 63 1.26 rectfill -0.63448 nxsetgray -0 3.78 63 1.26 rectfill -0.63448 nxsetgray -0 5.04 63 1.26 rectfill -0.63448 nxsetgray -0 6.3 63 1.26 rectfill -0.63448 nxsetgray -0 7.56 63 1.26 rectfill -0.63448 nxsetgray -0 8.820001 63 1.26 rectfill -0.63448 nxsetgray -0 10.080001 63 1.26 rectfill -0.63448 nxsetgray -0 11.340001 63 1.26 rectfill -0.63448 nxsetgray -0 12.600001 63 1.26 rectfill -0.63448 nxsetgray -0 13.860002 63 1.26 rectfill -0.63448 nxsetgray -0 15.120002 63 1.26 rectfill -0.63448 nxsetgray -0 16.380001 63 1.26 rectfill -0.63448 nxsetgray -0 17.640001 63 1.26 rectfill -0.63448 nxsetgray -0 18.900002 63 1.26 rectfill -0.63448 nxsetgray -0 20.160002 63 1.26 rectfill -0.63448 nxsetgray -0 21.420002 63 1.26 rectfill -0.63448 nxsetgray -0 22.680002 63 1.26 rectfill -0.63448 nxsetgray -0 23.940002 63 1.26 rectfill -0.63448 nxsetgray -0 25.200003 63 1.26 rectfill -0.63448 nxsetgray -0 26.460003 63 1.26 rectfill -0.63448 nxsetgray -0 27.720003 63 1.26 rectfill -0.63448 nxsetgray -0 28.980003 63 1.26 rectfill -0.63448 nxsetgray -0 30.240004 63 1.26 rectfill -0.63448 nxsetgray -0 31.500004 63 1.26 rectfill -0.63448 nxsetgray -0 32.760002 63 1.26 rectfill -0.63448 nxsetgray -0 34.02 63 1.26 rectfill -0.63448 nxsetgray -0 35.279999 63 1.26 rectfill -0.63448 nxsetgray -0 36.539997 63 1.26 rectfill -0.63448 nxsetgray -0 37.799995 63 1.26 rectfill -0.63448 nxsetgray -0 39.059994 63 1.26 rectfill -0.63448 nxsetgray -0 40.319992 63 1.26 rectfill -0.63448 nxsetgray -0 41.57999 63 1.26 rectfill -0.63448 nxsetgray -0 42.839989 63 1.26 rectfill -0.63448 nxsetgray -0 44.099987 63 1.26 rectfill -0.63448 nxsetgray -0 45.359985 63 1.26 rectfill -0.63448 nxsetgray -0 46.619984 63 1.26 rectfill -0.63448 nxsetgray -0 47.879982 63 1.26 rectfill -0.63448 nxsetgray -0 49.13998 63 1.26 rectfill -0.63448 nxsetgray -0 50.399979 63 1.26 rectfill -0.63448 nxsetgray -0 51.659977 63 1.26 rectfill -0.63448 nxsetgray -0 52.919975 63 1.26 rectfill -0.63448 nxsetgray -0 54.179974 63 1.26 rectfill -0.63448 nxsetgray -0 55.439972 63 1.26 rectfill -0.63448 nxsetgray -0 56.69997 63 1.26 rectfill -0.63448 nxsetgray -0 57.959969 63 1.26 rectfill -0.63448 nxsetgray -0 59.219967 63 1.26 rectfill -0.63448 nxsetgray -0 60.479965 63 1.26 rectfill -0.63448 nxsetgray -0 61.739964 63 1.26 rectfill -N -grestore -0.15 L -0 nxsetgray -gsave -63 63 0 0 oval 0.015873 0.015873 S s -grestore -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 215 550] concat -[1 0 0 1 1 1] concat -N -gsave N -45 45 0 0 ovalPath -clip -N -0 setlinewidth -0.63448 nxsetgray -0 0 45 0.9 rectfill -0.63448 nxsetgray -0 0.9 45 0.9 rectfill -0.63448 nxsetgray -0 1.8 45 0.9 rectfill -0.63448 nxsetgray -0 2.7 45 0.9 rectfill -0.63448 nxsetgray -0 3.6 45 0.9 rectfill -0.63448 nxsetgray -0 4.5 45 0.9 rectfill -0.63448 nxsetgray -0 5.4 45 0.9 rectfill -0.63448 nxsetgray -0 6.3 45 0.9 rectfill -0.63448 nxsetgray -0 7.2 45 0.9 rectfill -0.63448 nxsetgray -0 8.1 45 0.9 rectfill -0.63448 nxsetgray -0 9 45 0.9 rectfill -0.63448 nxsetgray -0 9.9 45 0.9 rectfill -0.63448 nxsetgray -0 10.799999 45 0.9 rectfill -0.63448 nxsetgray -0 11.699999 45 0.9 rectfill -0.63448 nxsetgray -0 12.599998 45 0.9 rectfill -0.63448 nxsetgray -0 13.499998 45 0.9 rectfill -0.63448 nxsetgray -0 14.399998 45 0.9 rectfill -0.63448 nxsetgray -0 15.299997 45 0.9 rectfill -0.63448 nxsetgray -0 16.199997 45 0.9 rectfill -0.63448 nxsetgray -0 17.099997 45 0.9 rectfill -0.63448 nxsetgray -0 17.999996 45 0.9 rectfill -0.63448 nxsetgray -0 18.899996 45 0.9 rectfill -0.63448 nxsetgray -0 19.799995 45 0.9 rectfill -0.63448 nxsetgray -0 20.699995 45 0.9 rectfill -0.63448 nxsetgray -0 21.599995 45 0.9 rectfill -0.63448 nxsetgray -0 22.499994 45 0.9 rectfill -0.63448 nxsetgray -0 23.399994 45 0.9 rectfill -0.63448 nxsetgray -0 24.299994 45 0.9 rectfill -0.63448 nxsetgray -0 25.199993 45 0.9 rectfill -0.63448 nxsetgray -0 26.099993 45 0.9 rectfill -0.63448 nxsetgray -0 26.999992 45 0.9 rectfill -0.63448 nxsetgray -0 27.899992 45 0.9 rectfill -0.63448 nxsetgray -0 28.799992 45 0.9 rectfill -0.63448 nxsetgray -0 29.699991 45 0.9 rectfill -0.63448 nxsetgray -0 30.599991 45 0.9 rectfill -0.63448 nxsetgray -0 31.49999 45 0.9 rectfill -0.63448 nxsetgray -0 32.39999 45 0.9 rectfill -0.63448 nxsetgray -0 33.299992 45 0.9 rectfill -0.63448 nxsetgray -0 34.199993 45 0.9 rectfill -0.63448 nxsetgray -0 35.099995 45 0.9 rectfill -0.63448 nxsetgray -0 35.999996 45 0.9 rectfill -0.63448 nxsetgray -0 36.899998 45 0.9 rectfill -0.63448 nxsetgray -0 37.799999 45 0.9 rectfill -0.63448 nxsetgray -0 38.700001 45 0.9 rectfill -0.63448 nxsetgray -0 39.600002 45 0.9 rectfill -0.63448 nxsetgray -0 40.500004 45 0.9 rectfill -0.63448 nxsetgray -0 41.400005 45 0.9 rectfill -0.63448 nxsetgray -0 42.300007 45 0.9 rectfill -0.63448 nxsetgray -0 43.200008 45 0.9 rectfill -0.63448 nxsetgray -0 44.10001 45 0.9 rectfill -N -grestore -0.15 L -0 nxsetgray -gsave -45 45 0 0 oval 0.022222 0.022222 S s -grestore -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 233 532] concat -[1 0 0 1 1 1] concat -N -gsave N -9 9 0 0 ovalPath -clip -N -0 setlinewidth -0.63448 nxsetgray -0 0 9 0.18 rectfill -0.63448 nxsetgray -0 0.18 9 0.18 rectfill -0.63448 nxsetgray -0 0.36 9 0.18 rectfill -0.63448 nxsetgray -0 0.54 9 0.18 rectfill -0.63448 nxsetgray -0 0.72 9 0.18 rectfill -0.63448 nxsetgray -0 0.9 9 0.18 rectfill -0.63448 nxsetgray -0 1.08 9 0.18 rectfill -0.63448 nxsetgray -0 1.26 9 0.18 rectfill -0.63448 nxsetgray -0 1.44 9 0.18 rectfill -0.63448 nxsetgray -0 1.62 9 0.18 rectfill -0.63448 nxsetgray -0 1.8 9 0.18 rectfill -0.63448 nxsetgray -0 1.98 9 0.18 rectfill -0.63448 nxsetgray -0 2.16 9 0.18 rectfill -0.63448 nxsetgray -0 2.34 9 0.18 rectfill -0.63448 nxsetgray -0 2.52 9 0.18 rectfill -0.63448 nxsetgray -0 2.700001 9 0.18 rectfill -0.63448 nxsetgray -0 2.880001 9 0.18 rectfill -0.63448 nxsetgray -0 3.060001 9 0.18 rectfill -0.63448 nxsetgray -0 3.240001 9 0.18 rectfill -0.63448 nxsetgray -0 3.420001 9 0.18 rectfill -0.63448 nxsetgray -0 3.600001 9 0.18 rectfill -0.63448 nxsetgray -0 3.780001 9 0.18 rectfill -0.63448 nxsetgray -0 3.960001 9 0.18 rectfill -0.63448 nxsetgray -0 4.140001 9 0.18 rectfill -0.63448 nxsetgray -0 4.320001 9 0.18 rectfill -0.63448 nxsetgray -0 4.5 9 0.18 rectfill -0.63448 nxsetgray -0 4.68 9 0.18 rectfill -0.63448 nxsetgray -0 4.86 9 0.18 rectfill -0.63448 nxsetgray -0 5.04 9 0.18 rectfill -0.63448 nxsetgray -0 5.22 9 0.18 rectfill -0.63448 nxsetgray -0 5.4 9 0.18 rectfill -0.63448 nxsetgray -0 5.579999 9 0.18 rectfill -0.63448 nxsetgray -0 5.759999 9 0.18 rectfill -0.63448 nxsetgray -0 5.939999 9 0.18 rectfill -0.63448 nxsetgray -0 6.119999 9 0.18 rectfill -0.63448 nxsetgray -0 6.299999 9 0.18 rectfill -0.63448 nxsetgray -0 6.479999 9 0.18 rectfill -0.63448 nxsetgray -0 6.659998 9 0.18 rectfill -0.63448 nxsetgray -0 6.839998 9 0.18 rectfill -0.63448 nxsetgray -0 7.019998 9 0.18 rectfill -0.63448 nxsetgray -0 7.199998 9 0.18 rectfill -0.63448 nxsetgray -0 7.379998 9 0.18 rectfill -0.63448 nxsetgray -0 7.559998 9 0.18 rectfill -0.63448 nxsetgray -0 7.739997 9 0.18 rectfill -0.63448 nxsetgray -0 7.919997 9 0.18 rectfill -0.63448 nxsetgray -0 8.099998 9 0.18 rectfill -0.63448 nxsetgray -0 8.279998 9 0.18 rectfill -0.63448 nxsetgray -0 8.459998 9 0.18 rectfill -0.63448 nxsetgray -0 8.639998 9 0.18 rectfill -0.63448 nxsetgray -0 8.819999 9 0.18 rectfill -N -grestore -0.15 L -0 nxsetgray -gsave -9 9 0 0 oval 0.111111 0.111111 S s -grestore -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 179 478] concat -[1 0 0 1 1 1] concat -N -gsave N -63 63 0 0 ovalPath -clip -N -0 setlinewidth -0.63448 nxsetgray -0 0 63 1.26 rectfill -0.63448 nxsetgray -0 1.26 63 1.26 rectfill -0.63448 nxsetgray -0 2.52 63 1.26 rectfill -0.63448 nxsetgray -0 3.78 63 1.26 rectfill -0.63448 nxsetgray -0 5.04 63 1.26 rectfill -0.63448 nxsetgray -0 6.3 63 1.26 rectfill -0.63448 nxsetgray -0 7.56 63 1.26 rectfill -0.63448 nxsetgray -0 8.820001 63 1.26 rectfill -0.63448 nxsetgray -0 10.080001 63 1.26 rectfill -0.63448 nxsetgray -0 11.340001 63 1.26 rectfill -0.63448 nxsetgray -0 12.600001 63 1.26 rectfill -0.63448 nxsetgray -0 13.860002 63 1.26 rectfill -0.63448 nxsetgray -0 15.120002 63 1.26 rectfill -0.63448 nxsetgray -0 16.380001 63 1.26 rectfill -0.63448 nxsetgray -0 17.640001 63 1.26 rectfill -0.63448 nxsetgray -0 18.900002 63 1.26 rectfill -0.63448 nxsetgray -0 20.160002 63 1.26 rectfill -0.63448 nxsetgray -0 21.420002 63 1.26 rectfill -0.63448 nxsetgray -0 22.680002 63 1.26 rectfill -0.63448 nxsetgray -0 23.940002 63 1.26 rectfill -0.63448 nxsetgray -0 25.200003 63 1.26 rectfill -0.63448 nxsetgray -0 26.460003 63 1.26 rectfill -0.63448 nxsetgray -0 27.720003 63 1.26 rectfill -0.63448 nxsetgray -0 28.980003 63 1.26 rectfill -0.63448 nxsetgray -0 30.240004 63 1.26 rectfill -0.63448 nxsetgray -0 31.500004 63 1.26 rectfill -0.63448 nxsetgray -0 32.760002 63 1.26 rectfill -0.63448 nxsetgray -0 34.02 63 1.26 rectfill -0.63448 nxsetgray -0 35.279999 63 1.26 rectfill -0.63448 nxsetgray -0 36.539997 63 1.26 rectfill -0.63448 nxsetgray -0 37.799995 63 1.26 rectfill -0.63448 nxsetgray -0 39.059994 63 1.26 rectfill -0.63448 nxsetgray -0 40.319992 63 1.26 rectfill -0.63448 nxsetgray -0 41.57999 63 1.26 rectfill -0.63448 nxsetgray -0 42.839989 63 1.26 rectfill -0.63448 nxsetgray -0 44.099987 63 1.26 rectfill -0.63448 nxsetgray -0 45.359985 63 1.26 rectfill -0.63448 nxsetgray -0 46.619984 63 1.26 rectfill -0.63448 nxsetgray -0 47.879982 63 1.26 rectfill -0.63448 nxsetgray -0 49.13998 63 1.26 rectfill -0.63448 nxsetgray -0 50.399979 63 1.26 rectfill -0.63448 nxsetgray -0 51.659977 63 1.26 rectfill -0.63448 nxsetgray -0 52.919975 63 1.26 rectfill -0.63448 nxsetgray -0 54.179974 63 1.26 rectfill -0.63448 nxsetgray -0 55.439972 63 1.26 rectfill -0.63448 nxsetgray -0 56.69997 63 1.26 rectfill -0.63448 nxsetgray -0 57.959969 63 1.26 rectfill -0.63448 nxsetgray -0 59.219967 63 1.26 rectfill -0.63448 nxsetgray -0 60.479965 63 1.26 rectfill -0.63448 nxsetgray -0 61.739964 63 1.26 rectfill -N -grestore -0.15 L -0 nxsetgray -gsave -63 63 0 0 oval 0.015873 0.015873 S s -grestore -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 188 469] concat -[1 0 0 1 1 1] concat -N -gsave N -45 45 0 0 ovalPath -clip -N -0 setlinewidth -0.63448 nxsetgray -0 0 45 0.9 rectfill -0.63448 nxsetgray -0 0.9 45 0.9 rectfill -0.63448 nxsetgray -0 1.8 45 0.9 rectfill -0.63448 nxsetgray -0 2.7 45 0.9 rectfill -0.63448 nxsetgray -0 3.6 45 0.9 rectfill -0.63448 nxsetgray -0 4.5 45 0.9 rectfill -0.63448 nxsetgray -0 5.4 45 0.9 rectfill -0.63448 nxsetgray -0 6.3 45 0.9 rectfill -0.63448 nxsetgray -0 7.2 45 0.9 rectfill -0.63448 nxsetgray -0 8.1 45 0.9 rectfill -0.63448 nxsetgray -0 9 45 0.9 rectfill -0.63448 nxsetgray -0 9.9 45 0.9 rectfill -0.63448 nxsetgray -0 10.799999 45 0.9 rectfill -0.63448 nxsetgray -0 11.699999 45 0.9 rectfill -0.63448 nxsetgray -0 12.599998 45 0.9 rectfill -0.63448 nxsetgray -0 13.499998 45 0.9 rectfill -0.63448 nxsetgray -0 14.399998 45 0.9 rectfill -0.63448 nxsetgray -0 15.299997 45 0.9 rectfill -0.63448 nxsetgray -0 16.199997 45 0.9 rectfill -0.63448 nxsetgray -0 17.099997 45 0.9 rectfill -0.63448 nxsetgray -0 17.999996 45 0.9 rectfill -0.63448 nxsetgray -0 18.899996 45 0.9 rectfill -0.63448 nxsetgray -0 19.799995 45 0.9 rectfill -0.63448 nxsetgray -0 20.699995 45 0.9 rectfill -0.63448 nxsetgray -0 21.599995 45 0.9 rectfill -0.63448 nxsetgray -0 22.499994 45 0.9 rectfill -0.63448 nxsetgray -0 23.399994 45 0.9 rectfill -0.63448 nxsetgray -0 24.299994 45 0.9 rectfill -0.63448 nxsetgray -0 25.199993 45 0.9 rectfill -0.63448 nxsetgray -0 26.099993 45 0.9 rectfill -0.63448 nxsetgray -0 26.999992 45 0.9 rectfill -0.63448 nxsetgray -0 27.899992 45 0.9 rectfill -0.63448 nxsetgray -0 28.799992 45 0.9 rectfill -0.63448 nxsetgray -0 29.699991 45 0.9 rectfill -0.63448 nxsetgray -0 30.599991 45 0.9 rectfill -0.63448 nxsetgray -0 31.49999 45 0.9 rectfill -0.63448 nxsetgray -0 32.39999 45 0.9 rectfill -0.63448 nxsetgray -0 33.299992 45 0.9 rectfill -0.63448 nxsetgray -0 34.199993 45 0.9 rectfill -0.63448 nxsetgray -0 35.099995 45 0.9 rectfill -0.63448 nxsetgray -0 35.999996 45 0.9 rectfill -0.63448 nxsetgray -0 36.899998 45 0.9 rectfill -0.63448 nxsetgray -0 37.799999 45 0.9 rectfill -0.63448 nxsetgray -0 38.700001 45 0.9 rectfill -0.63448 nxsetgray -0 39.600002 45 0.9 rectfill -0.63448 nxsetgray -0 40.500004 45 0.9 rectfill -0.63448 nxsetgray -0 41.400005 45 0.9 rectfill -0.63448 nxsetgray -0 42.300007 45 0.9 rectfill -0.63448 nxsetgray -0 43.200008 45 0.9 rectfill -0.63448 nxsetgray -0 44.10001 45 0.9 rectfill -N -grestore -0.15 L -0 nxsetgray -gsave -45 45 0 0 oval 0.022222 0.022222 S s -grestore -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 206 451] concat -[1 0 0 1 1 1] concat -N -gsave N -9 9 0 0 ovalPath -clip -N -0 setlinewidth -0.63448 nxsetgray -0 0 9 0.18 rectfill -0.63448 nxsetgray -0 0.18 9 0.18 rectfill -0.63448 nxsetgray -0 0.36 9 0.18 rectfill -0.63448 nxsetgray -0 0.54 9 0.18 rectfill -0.63448 nxsetgray -0 0.72 9 0.18 rectfill -0.63448 nxsetgray -0 0.9 9 0.18 rectfill -0.63448 nxsetgray -0 1.08 9 0.18 rectfill -0.63448 nxsetgray -0 1.26 9 0.18 rectfill -0.63448 nxsetgray -0 1.44 9 0.18 rectfill -0.63448 nxsetgray -0 1.62 9 0.18 rectfill -0.63448 nxsetgray -0 1.8 9 0.18 rectfill -0.63448 nxsetgray -0 1.98 9 0.18 rectfill -0.63448 nxsetgray -0 2.16 9 0.18 rectfill -0.63448 nxsetgray -0 2.34 9 0.18 rectfill -0.63448 nxsetgray -0 2.52 9 0.18 rectfill -0.63448 nxsetgray -0 2.700001 9 0.18 rectfill -0.63448 nxsetgray -0 2.880001 9 0.18 rectfill -0.63448 nxsetgray -0 3.060001 9 0.18 rectfill -0.63448 nxsetgray -0 3.240001 9 0.18 rectfill -0.63448 nxsetgray -0 3.420001 9 0.18 rectfill -0.63448 nxsetgray -0 3.600001 9 0.18 rectfill -0.63448 nxsetgray -0 3.780001 9 0.18 rectfill -0.63448 nxsetgray -0 3.960001 9 0.18 rectfill -0.63448 nxsetgray -0 4.140001 9 0.18 rectfill -0.63448 nxsetgray -0 4.320001 9 0.18 rectfill -0.63448 nxsetgray -0 4.5 9 0.18 rectfill -0.63448 nxsetgray -0 4.68 9 0.18 rectfill -0.63448 nxsetgray -0 4.86 9 0.18 rectfill -0.63448 nxsetgray -0 5.04 9 0.18 rectfill -0.63448 nxsetgray -0 5.22 9 0.18 rectfill -0.63448 nxsetgray -0 5.4 9 0.18 rectfill -0.63448 nxsetgray -0 5.579999 9 0.18 rectfill -0.63448 nxsetgray -0 5.759999 9 0.18 rectfill -0.63448 nxsetgray -0 5.939999 9 0.18 rectfill -0.63448 nxsetgray -0 6.119999 9 0.18 rectfill -0.63448 nxsetgray -0 6.299999 9 0.18 rectfill -0.63448 nxsetgray -0 6.479999 9 0.18 rectfill -0.63448 nxsetgray -0 6.659998 9 0.18 rectfill -0.63448 nxsetgray -0 6.839998 9 0.18 rectfill -0.63448 nxsetgray -0 7.019998 9 0.18 rectfill -0.63448 nxsetgray -0 7.199998 9 0.18 rectfill -0.63448 nxsetgray -0 7.379998 9 0.18 rectfill -0.63448 nxsetgray -0 7.559998 9 0.18 rectfill -0.63448 nxsetgray -0 7.739997 9 0.18 rectfill -0.63448 nxsetgray -0 7.919997 9 0.18 rectfill -0.63448 nxsetgray -0 8.099998 9 0.18 rectfill -0.63448 nxsetgray -0 8.279998 9 0.18 rectfill -0.63448 nxsetgray -0 8.459998 9 0.18 rectfill -0.63448 nxsetgray -0 8.639998 9 0.18 rectfill -0.63448 nxsetgray -0 8.819999 9 0.18 rectfill -N -grestore -0.15 L -0 nxsetgray -gsave -9 9 0 0 oval 0.111111 0.111111 S s -grestore -0 0 T -grestore -0 0 4 1 10 SU -211 513 T -N -gsave N -0 -10 m -0 -34 0 -48 0 -72 c -clip -N -0 setlinewidth -0.351726 nxsetgray -0.346934 nxsetgray -0.342158 nxsetgray -0.337367 nxsetgray -0.332591 nxsetgray -0.327799 nxsetgray -0.323008 nxsetgray -0.318232 nxsetgray -0.31344 nxsetgray -0.308649 nxsetgray -0.303873 nxsetgray -0.299081 nxsetgray -0.294305 nxsetgray -0.289514 nxsetgray -0.284722 nxsetgray -0.279946 nxsetgray -0.275155 nxsetgray -0.270379 nxsetgray -0.265587 nxsetgray -0.260796 nxsetgray -0.25602 nxsetgray -0.251228 nxsetgray -0.246452 nxsetgray -0.241661 nxsetgray -0.236869 nxsetgray -0.232093 nxsetgray -0.227302 nxsetgray -0.22251 nxsetgray -0.217734 nxsetgray -0.212943 nxsetgray -0.208167 nxsetgray -0.203375 nxsetgray -0.198584 nxsetgray -0.193808 nxsetgray -0.189016 nxsetgray -0.18424 nxsetgray -0.179449 nxsetgray -0.174657 nxsetgray -0.169881 nxsetgray -0.16509 nxsetgray -0.160314 nxsetgray -0.155522 nxsetgray -0.150731 nxsetgray -0.145955 nxsetgray -0.141163 nxsetgray -0.136372 nxsetgray -0.131596 nxsetgray -0.126804 nxsetgray -0.122028 nxsetgray -0.117237 nxsetgray -N -grestore -4 L -0.117237 nxsetgray -0 -10 m -0 -34 0 -48 0 -72 c -s -grestore -0 0 2 1 10 SU -[1 0 0 -1 224 387] concat -[1 0 0 1 1 1] concat -N -gsave N -60 44 0 0 acsRect -clip -N -0 setlinewidth -0.620685 nxsetgray -0 0 60 0.88 rectfill -0.620685 nxsetgray -0 0.88 60 0.88 rectfill -0.620685 nxsetgray -0 1.76 60 0.88 rectfill -0.620685 nxsetgray -0 2.64 60 0.88 rectfill -0.620685 nxsetgray -0 3.52 60 0.88 rectfill -0.620685 nxsetgray -0 4.4 60 0.88 rectfill -0.620685 nxsetgray -0 5.28 60 0.88 rectfill -0.620685 nxsetgray -0 6.16 60 0.88 rectfill -0.620685 nxsetgray -0 7.04 60 0.88 rectfill -0.620685 nxsetgray -0 7.920001 60 0.88 rectfill -0.620685 nxsetgray -0 8.8 60 0.88 rectfill -0.620685 nxsetgray -0 9.68 60 0.88 rectfill -0.620685 nxsetgray -0 10.56 60 0.88 rectfill -0.620685 nxsetgray -0 11.440001 60 0.88 rectfill -0.620685 nxsetgray -0 12.320001 60 0.88 rectfill -0.620685 nxsetgray -0 13.200001 60 0.88 rectfill -0.620685 nxsetgray -0 14.080001 60 0.88 rectfill -0.620685 nxsetgray -0 14.960001 60 0.88 rectfill -0.620685 nxsetgray -0 15.840001 60 0.88 rectfill -0.620685 nxsetgray -0 16.720001 60 0.88 rectfill -0.620685 nxsetgray -0 17.6 60 0.88 rectfill -0.620685 nxsetgray -0 18.48 60 0.88 rectfill -0.620685 nxsetgray -0 19.359999 60 0.88 rectfill -0.620685 nxsetgray -0 20.239998 60 0.88 rectfill -0.620685 nxsetgray -0 21.119997 60 0.88 rectfill -0.620685 nxsetgray -0 21.999996 60 0.88 rectfill -0.620685 nxsetgray -0 22.879995 60 0.88 rectfill -0.620685 nxsetgray -0 23.759995 60 0.88 rectfill -0.620685 nxsetgray -0 24.639994 60 0.88 rectfill -0.620685 nxsetgray -0 25.519993 60 0.88 rectfill -0.620685 nxsetgray -0 26.399992 60 0.88 rectfill -0.620685 nxsetgray -0 27.279991 60 0.88 rectfill -0.620685 nxsetgray -0 28.15999 60 0.88 rectfill -0.620685 nxsetgray -0 29.039989 60 0.88 rectfill -0.620685 nxsetgray -0 29.919989 60 0.88 rectfill -0.620685 nxsetgray -0 30.799988 60 0.88 rectfill -0.620685 nxsetgray -0 31.679987 60 0.88 rectfill -0.620685 nxsetgray -0 32.559986 60 0.88 rectfill -0.620685 nxsetgray -0 33.439987 60 0.88 rectfill -0.620685 nxsetgray -0 34.319988 60 0.88 rectfill -0.620685 nxsetgray -0 35.199989 60 0.88 rectfill -0.620685 nxsetgray -0 36.07999 60 0.88 rectfill -0.620685 nxsetgray -0 36.959991 60 0.88 rectfill -0.620685 nxsetgray -0 37.839993 60 0.88 rectfill -0.620685 nxsetgray -0 38.719994 60 0.88 rectfill -0.620685 nxsetgray -0 39.599995 60 0.88 rectfill -0.620685 nxsetgray -0 40.479996 60 0.88 rectfill -0.620685 nxsetgray -0 41.359997 60 0.88 rectfill -0.620685 nxsetgray -0 42.239998 60 0.88 rectfill -0.620685 nxsetgray -0 43.119999 60 0.88 rectfill -N -grestore -2 L -0.117237 nxsetgray -0 0 60 44 rectstroke -0 0 T -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -/Helvetica findfont 12 scalefont [1 0 0 -1 0 0] makefont -12 -exch -defineuserobject -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 727] concat -12 execuserobject setfont -0 nxsetgray -252 368 moveto (F) show -grestore -grestore -0 0 1 1 10 SU -[1 0 0 -1 233 586] concat -[1 0 0 1 1 1] concat -N -gsave N -9 63 0 0 acsRect -clip -N -0 setlinewidth -0.620685 nxsetgray -0 0 0.18 63 rectfill -0.620685 nxsetgray -0.18 0 0.18 63 rectfill -0.620685 nxsetgray -0.36 0 0.18 63 rectfill -0.620685 nxsetgray -0.54 0 0.18 63 rectfill -0.620685 nxsetgray -0.72 0 0.18 63 rectfill -0.620685 nxsetgray -0.9 0 0.18 63 rectfill -0.620685 nxsetgray -1.08 0 0.18 63 rectfill -0.620685 nxsetgray -1.26 0 0.18 63 rectfill -0.620685 nxsetgray -1.44 0 0.18 63 rectfill -0.620685 nxsetgray -1.62 0 0.18 63 rectfill -0.620685 nxsetgray -1.8 0 0.18 63 rectfill -0.620685 nxsetgray -1.98 0 0.18 63 rectfill -0.620685 nxsetgray -2.16 0 0.18 63 rectfill -0.620685 nxsetgray -2.34 0 0.18 63 rectfill -0.620685 nxsetgray -2.52 0 0.18 63 rectfill -0.620685 nxsetgray -2.700001 0 0.18 63 rectfill -0.620685 nxsetgray -2.880001 0 0.18 63 rectfill -0.620685 nxsetgray -3.060001 0 0.18 63 rectfill -0.620685 nxsetgray -3.240001 0 0.18 63 rectfill -0.620685 nxsetgray -3.420001 0 0.18 63 rectfill -0.620685 nxsetgray -3.600001 0 0.18 63 rectfill -0.620685 nxsetgray -3.780001 0 0.18 63 rectfill -0.620685 nxsetgray -3.960001 0 0.18 63 rectfill -0.620685 nxsetgray -4.140001 0 0.18 63 rectfill -0.620685 nxsetgray -4.320001 0 0.18 63 rectfill -0.620685 nxsetgray -4.5 0 0.18 63 rectfill -0.620685 nxsetgray -4.68 0 0.18 63 rectfill -0.620685 nxsetgray -4.86 0 0.18 63 rectfill -0.620685 nxsetgray -5.04 0 0.18 63 rectfill -0.620685 nxsetgray -5.22 0 0.18 63 rectfill -0.620685 nxsetgray -5.4 0 0.18 63 rectfill -0.620685 nxsetgray -5.579999 0 0.18 63 rectfill -0.620685 nxsetgray -5.759999 0 0.18 63 rectfill -0.620685 nxsetgray -5.939999 0 0.18 63 rectfill -0.620685 nxsetgray -6.119999 0 0.18 63 rectfill -0.620685 nxsetgray -6.299999 0 0.18 63 rectfill -0.620685 nxsetgray -6.479999 0 0.18 63 rectfill -0.620685 nxsetgray -6.659998 0 0.18 63 rectfill -0.620685 nxsetgray -6.839998 0 0.18 63 rectfill -0.620685 nxsetgray -7.019998 0 0.18 63 rectfill -0.620685 nxsetgray -7.199998 0 0.18 63 rectfill -0.620685 nxsetgray -7.379998 0 0.18 63 rectfill -0.620685 nxsetgray -7.559998 0 0.18 63 rectfill -0.620685 nxsetgray -7.739997 0 0.18 63 rectfill -0.620685 nxsetgray -7.919997 0 0.18 63 rectfill -0.620685 nxsetgray -8.099998 0 0.18 63 rectfill -0.620685 nxsetgray -8.279998 0 0.18 63 rectfill -0.620685 nxsetgray -8.459998 0 0.18 63 rectfill -0.620685 nxsetgray -8.639998 0 0.18 63 rectfill -0.620685 nxsetgray -8.819999 0 0.18 63 rectfill -N -grestore -1 L -0 nxsetgray -0 0 9 63 rectstroke -0 0 T -grestore -0 0 1 1 10 SU -270 585 T -N -gsave N -0 0 m 0 27 l -clip -N -0 setlinewidth -0.620685 nxsetgray -0 0 0.02 27 rectfill -0.620685 nxsetgray -0.02 0 0.02 27 rectfill -0.620685 nxsetgray -0.04 0 0.02 27 rectfill -0.620685 nxsetgray -0.06 0 0.02 27 rectfill -0.620685 nxsetgray -0.08 0 0.02 27 rectfill -0.620685 nxsetgray -0.1 0 0.02 27 rectfill -0.620685 nxsetgray -0.12 0 0.02 27 rectfill -0.620685 nxsetgray -0.14 0 0.02 27 rectfill -0.620685 nxsetgray -0.16 0 0.02 27 rectfill -0.620685 nxsetgray -0.18 0 0.02 27 rectfill -0.620685 nxsetgray -0.2 0 0.02 27 rectfill -0.620685 nxsetgray -0.22 0 0.02 27 rectfill -0.620685 nxsetgray -0.24 0 0.02 27 rectfill -0.620685 nxsetgray -0.26 0 0.02 27 rectfill -0.620685 nxsetgray -0.28 0 0.02 27 rectfill -0.620685 nxsetgray -0.3 0 0.02 27 rectfill -0.620685 nxsetgray -0.32 0 0.02 27 rectfill -0.620685 nxsetgray -0.34 0 0.02 27 rectfill -0.620685 nxsetgray -0.36 0 0.02 27 rectfill -0.620685 nxsetgray -0.38 0 0.02 27 rectfill -0.620685 nxsetgray -0.4 0 0.02 27 rectfill -0.620685 nxsetgray -0.42 0 0.02 27 rectfill -0.620685 nxsetgray -0.44 0 0.02 27 rectfill -0.620685 nxsetgray -0.46 0 0.02 27 rectfill -0.620685 nxsetgray -0.48 0 0.02 27 rectfill -0.620685 nxsetgray -0.5 0 0.02 27 rectfill -0.620685 nxsetgray -0.52 0 0.02 27 rectfill -0.620685 nxsetgray -0.54 0 0.02 27 rectfill -0.620685 nxsetgray -0.56 0 0.02 27 rectfill -0.620685 nxsetgray -0.58 0 0.02 27 rectfill -0.620685 nxsetgray -0.6 0 0.02 27 rectfill -0.620685 nxsetgray -0.62 0 0.02 27 rectfill -0.620685 nxsetgray -0.64 0 0.02 27 rectfill -0.620685 nxsetgray -0.66 0 0.02 27 rectfill -0.620685 nxsetgray -0.68 0 0.02 27 rectfill -0.620685 nxsetgray -0.7 0 0.02 27 rectfill -0.620685 nxsetgray -0.72 0 0.02 27 rectfill -0.620685 nxsetgray -0.74 0 0.02 27 rectfill -0.620685 nxsetgray -0.76 0 0.02 27 rectfill -0.620685 nxsetgray -0.78 0 0.02 27 rectfill -0.620685 nxsetgray -0.8 0 0.02 27 rectfill -0.620685 nxsetgray -0.82 0 0.02 27 rectfill -0.620685 nxsetgray -0.84 0 0.02 27 rectfill -0.620685 nxsetgray -0.86 0 0.02 27 rectfill -0.620685 nxsetgray -0.88 0 0.02 27 rectfill -0.620685 nxsetgray -0.9 0 0.02 27 rectfill -0.620685 nxsetgray -0.92 0 0.02 27 rectfill -0.620685 nxsetgray -0.94 0 0.02 27 rectfill -0.620685 nxsetgray -0.96 0 0.02 27 rectfill -0.620685 nxsetgray -0.98 0 0.02 27 rectfill -N -grestore -1 L -0 nxsetgray -0 27 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -207 585 T -N -gsave N -0 0 m 0 27 l -clip -N -0 setlinewidth -0.620685 nxsetgray -0 0 0.02 27 rectfill -0.620685 nxsetgray -0.02 0 0.02 27 rectfill -0.620685 nxsetgray -0.04 0 0.02 27 rectfill -0.620685 nxsetgray -0.06 0 0.02 27 rectfill -0.620685 nxsetgray -0.08 0 0.02 27 rectfill -0.620685 nxsetgray -0.1 0 0.02 27 rectfill -0.620685 nxsetgray -0.12 0 0.02 27 rectfill -0.620685 nxsetgray -0.14 0 0.02 27 rectfill -0.620685 nxsetgray -0.16 0 0.02 27 rectfill -0.620685 nxsetgray -0.18 0 0.02 27 rectfill -0.620685 nxsetgray -0.2 0 0.02 27 rectfill -0.620685 nxsetgray -0.22 0 0.02 27 rectfill -0.620685 nxsetgray -0.24 0 0.02 27 rectfill -0.620685 nxsetgray -0.26 0 0.02 27 rectfill -0.620685 nxsetgray -0.28 0 0.02 27 rectfill -0.620685 nxsetgray -0.3 0 0.02 27 rectfill -0.620685 nxsetgray -0.32 0 0.02 27 rectfill -0.620685 nxsetgray -0.34 0 0.02 27 rectfill -0.620685 nxsetgray -0.36 0 0.02 27 rectfill -0.620685 nxsetgray -0.38 0 0.02 27 rectfill -0.620685 nxsetgray -0.4 0 0.02 27 rectfill -0.620685 nxsetgray -0.42 0 0.02 27 rectfill -0.620685 nxsetgray -0.44 0 0.02 27 rectfill -0.620685 nxsetgray -0.46 0 0.02 27 rectfill -0.620685 nxsetgray -0.48 0 0.02 27 rectfill -0.620685 nxsetgray -0.5 0 0.02 27 rectfill -0.620685 nxsetgray -0.52 0 0.02 27 rectfill -0.620685 nxsetgray -0.54 0 0.02 27 rectfill -0.620685 nxsetgray -0.56 0 0.02 27 rectfill -0.620685 nxsetgray -0.58 0 0.02 27 rectfill -0.620685 nxsetgray -0.6 0 0.02 27 rectfill -0.620685 nxsetgray -0.62 0 0.02 27 rectfill -0.620685 nxsetgray -0.64 0 0.02 27 rectfill -0.620685 nxsetgray -0.66 0 0.02 27 rectfill -0.620685 nxsetgray -0.68 0 0.02 27 rectfill -0.620685 nxsetgray -0.7 0 0.02 27 rectfill -0.620685 nxsetgray -0.72 0 0.02 27 rectfill -0.620685 nxsetgray -0.74 0 0.02 27 rectfill -0.620685 nxsetgray -0.76 0 0.02 27 rectfill -0.620685 nxsetgray -0.78 0 0.02 27 rectfill -0.620685 nxsetgray -0.8 0 0.02 27 rectfill -0.620685 nxsetgray -0.82 0 0.02 27 rectfill -0.620685 nxsetgray -0.84 0 0.02 27 rectfill -0.620685 nxsetgray -0.86 0 0.02 27 rectfill -0.620685 nxsetgray -0.88 0 0.02 27 rectfill -0.620685 nxsetgray -0.9 0 0.02 27 rectfill -0.620685 nxsetgray -0.92 0 0.02 27 rectfill -0.620685 nxsetgray -0.94 0 0.02 27 rectfill -0.620685 nxsetgray -0.96 0 0.02 27 rectfill -0.620685 nxsetgray -0.98 0 0.02 27 rectfill -N -grestore -1 L -0 nxsetgray -0 27 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -162 585 T -N -gsave N -0 27 m 27 0 l -clip -N -0 setlinewidth -0.620685 nxsetgray -0 0 0.54 27 rectfill -0.620685 nxsetgray -0.54 0 0.54 27 rectfill -0.620685 nxsetgray -1.08 0 0.54 27 rectfill -0.620685 nxsetgray -1.62 0 0.54 27 rectfill -0.620685 nxsetgray -2.16 0 0.54 27 rectfill -0.620685 nxsetgray -2.7 0 0.54 27 rectfill -0.620685 nxsetgray -3.24 0 0.54 27 rectfill -0.620685 nxsetgray -3.78 0 0.54 27 rectfill -0.620685 nxsetgray -4.32 0 0.54 27 rectfill -0.620685 nxsetgray -4.86 0 0.54 27 rectfill -0.620685 nxsetgray -5.4 0 0.54 27 rectfill -0.620685 nxsetgray -5.94 0 0.54 27 rectfill -0.620685 nxsetgray -6.48 0 0.54 27 rectfill -0.620685 nxsetgray -7.02 0 0.54 27 rectfill -0.620685 nxsetgray -7.56 0 0.54 27 rectfill -0.620685 nxsetgray -8.1 0 0.54 27 rectfill -0.620685 nxsetgray -8.64 0 0.54 27 rectfill -0.620685 nxsetgray -9.18 0 0.54 27 rectfill -0.620685 nxsetgray -9.72 0 0.54 27 rectfill -0.620685 nxsetgray -10.26 0 0.54 27 rectfill -0.620685 nxsetgray -10.8 0 0.54 27 rectfill -0.620685 nxsetgray -11.34 0 0.54 27 rectfill -0.620685 nxsetgray -11.88 0 0.54 27 rectfill -0.620685 nxsetgray -12.42 0 0.54 27 rectfill -0.620685 nxsetgray -12.96 0 0.54 27 rectfill -0.620685 nxsetgray -13.5 0 0.54 27 rectfill -0.620685 nxsetgray -14.04 0 0.54 27 rectfill -0.620685 nxsetgray -14.58 0 0.54 27 rectfill -0.620685 nxsetgray -15.12 0 0.54 27 rectfill -0.620685 nxsetgray -15.66 0 0.54 27 rectfill -0.620685 nxsetgray -16.200001 0 0.54 27 rectfill -0.620685 nxsetgray -16.740002 0 0.54 27 rectfill -0.620685 nxsetgray -17.280003 0 0.54 27 rectfill -0.620685 nxsetgray -17.820004 0 0.54 27 rectfill -0.620685 nxsetgray -18.360004 0 0.54 27 rectfill -0.620685 nxsetgray -18.900005 0 0.54 27 rectfill -0.620685 nxsetgray -19.440006 0 0.54 27 rectfill -0.620685 nxsetgray -19.980007 0 0.54 27 rectfill -0.620685 nxsetgray -20.520008 0 0.54 27 rectfill -0.620685 nxsetgray -21.060009 0 0.54 27 rectfill -0.620685 nxsetgray -21.60001 0 0.54 27 rectfill -0.620685 nxsetgray -22.140011 0 0.54 27 rectfill -0.620685 nxsetgray -22.680012 0 0.54 27 rectfill -0.620685 nxsetgray -23.220013 0 0.54 27 rectfill -0.620685 nxsetgray -23.760014 0 0.54 27 rectfill -0.620685 nxsetgray -24.300014 0 0.54 27 rectfill -0.620685 nxsetgray -24.840015 0 0.54 27 rectfill -0.620685 nxsetgray -25.380016 0 0.54 27 rectfill -0.620685 nxsetgray -25.920017 0 0.54 27 rectfill -0.620685 nxsetgray -26.460018 0 0.54 27 rectfill -N -grestore -1 L -0 nxsetgray -27 -27 0 27 line -0 0 T -grestore -0 0 1 1 10 SU -180 585 T -N -gsave N -0 27 m 27 0 l -clip -N -0 setlinewidth -0.620685 nxsetgray -0 0 0.54 27 rectfill -0.620685 nxsetgray -0.54 0 0.54 27 rectfill -0.620685 nxsetgray -1.08 0 0.54 27 rectfill -0.620685 nxsetgray -1.62 0 0.54 27 rectfill -0.620685 nxsetgray -2.16 0 0.54 27 rectfill -0.620685 nxsetgray -2.7 0 0.54 27 rectfill -0.620685 nxsetgray -3.24 0 0.54 27 rectfill -0.620685 nxsetgray -3.78 0 0.54 27 rectfill -0.620685 nxsetgray -4.32 0 0.54 27 rectfill -0.620685 nxsetgray -4.86 0 0.54 27 rectfill -0.620685 nxsetgray -5.4 0 0.54 27 rectfill -0.620685 nxsetgray -5.94 0 0.54 27 rectfill -0.620685 nxsetgray -6.48 0 0.54 27 rectfill -0.620685 nxsetgray -7.02 0 0.54 27 rectfill -0.620685 nxsetgray -7.56 0 0.54 27 rectfill -0.620685 nxsetgray -8.1 0 0.54 27 rectfill -0.620685 nxsetgray -8.64 0 0.54 27 rectfill -0.620685 nxsetgray -9.18 0 0.54 27 rectfill -0.620685 nxsetgray -9.72 0 0.54 27 rectfill -0.620685 nxsetgray -10.26 0 0.54 27 rectfill -0.620685 nxsetgray -10.8 0 0.54 27 rectfill -0.620685 nxsetgray -11.34 0 0.54 27 rectfill -0.620685 nxsetgray -11.88 0 0.54 27 rectfill -0.620685 nxsetgray -12.42 0 0.54 27 rectfill -0.620685 nxsetgray -12.96 0 0.54 27 rectfill -0.620685 nxsetgray -13.5 0 0.54 27 rectfill -0.620685 nxsetgray -14.04 0 0.54 27 rectfill -0.620685 nxsetgray -14.58 0 0.54 27 rectfill -0.620685 nxsetgray -15.12 0 0.54 27 rectfill -0.620685 nxsetgray -15.66 0 0.54 27 rectfill -0.620685 nxsetgray -16.200001 0 0.54 27 rectfill -0.620685 nxsetgray -16.740002 0 0.54 27 rectfill -0.620685 nxsetgray -17.280003 0 0.54 27 rectfill -0.620685 nxsetgray -17.820004 0 0.54 27 rectfill -0.620685 nxsetgray -18.360004 0 0.54 27 rectfill -0.620685 nxsetgray -18.900005 0 0.54 27 rectfill -0.620685 nxsetgray -19.440006 0 0.54 27 rectfill -0.620685 nxsetgray -19.980007 0 0.54 27 rectfill -0.620685 nxsetgray -20.520008 0 0.54 27 rectfill -0.620685 nxsetgray -21.060009 0 0.54 27 rectfill -0.620685 nxsetgray -21.60001 0 0.54 27 rectfill -0.620685 nxsetgray -22.140011 0 0.54 27 rectfill -0.620685 nxsetgray -22.680012 0 0.54 27 rectfill -0.620685 nxsetgray -23.220013 0 0.54 27 rectfill -0.620685 nxsetgray -23.760014 0 0.54 27 rectfill -0.620685 nxsetgray -24.300014 0 0.54 27 rectfill -0.620685 nxsetgray -24.840015 0 0.54 27 rectfill -0.620685 nxsetgray -25.380016 0 0.54 27 rectfill -0.620685 nxsetgray -25.920017 0 0.54 27 rectfill -0.620685 nxsetgray -26.460018 0 0.54 27 rectfill -N -grestore -1 L -0 nxsetgray -27 -27 0 27 line -0 0 T -grestore -0 0 1 1 10 SU -198 585 T -N -gsave N -0 27 m 27 0 l -clip -N -0 setlinewidth -0.620685 nxsetgray -0 0 0.54 27 rectfill -0.620685 nxsetgray -0.54 0 0.54 27 rectfill -0.620685 nxsetgray -1.08 0 0.54 27 rectfill -0.620685 nxsetgray -1.62 0 0.54 27 rectfill -0.620685 nxsetgray -2.16 0 0.54 27 rectfill -0.620685 nxsetgray -2.7 0 0.54 27 rectfill -0.620685 nxsetgray -3.24 0 0.54 27 rectfill -0.620685 nxsetgray -3.78 0 0.54 27 rectfill -0.620685 nxsetgray -4.32 0 0.54 27 rectfill -0.620685 nxsetgray -4.86 0 0.54 27 rectfill -0.620685 nxsetgray -5.4 0 0.54 27 rectfill -0.620685 nxsetgray -5.94 0 0.54 27 rectfill -0.620685 nxsetgray -6.48 0 0.54 27 rectfill -0.620685 nxsetgray -7.02 0 0.54 27 rectfill -0.620685 nxsetgray -7.56 0 0.54 27 rectfill -0.620685 nxsetgray -8.1 0 0.54 27 rectfill -0.620685 nxsetgray -8.64 0 0.54 27 rectfill -0.620685 nxsetgray -9.18 0 0.54 27 rectfill -0.620685 nxsetgray -9.72 0 0.54 27 rectfill -0.620685 nxsetgray -10.26 0 0.54 27 rectfill -0.620685 nxsetgray -10.8 0 0.54 27 rectfill -0.620685 nxsetgray -11.34 0 0.54 27 rectfill -0.620685 nxsetgray -11.88 0 0.54 27 rectfill -0.620685 nxsetgray -12.42 0 0.54 27 rectfill -0.620685 nxsetgray -12.96 0 0.54 27 rectfill -0.620685 nxsetgray -13.5 0 0.54 27 rectfill -0.620685 nxsetgray -14.04 0 0.54 27 rectfill -0.620685 nxsetgray -14.58 0 0.54 27 rectfill -0.620685 nxsetgray -15.12 0 0.54 27 rectfill -0.620685 nxsetgray -15.66 0 0.54 27 rectfill -0.620685 nxsetgray -16.200001 0 0.54 27 rectfill -0.620685 nxsetgray -16.740002 0 0.54 27 rectfill -0.620685 nxsetgray -17.280003 0 0.54 27 rectfill -0.620685 nxsetgray -17.820004 0 0.54 27 rectfill -0.620685 nxsetgray -18.360004 0 0.54 27 rectfill -0.620685 nxsetgray -18.900005 0 0.54 27 rectfill -0.620685 nxsetgray -19.440006 0 0.54 27 rectfill -0.620685 nxsetgray -19.980007 0 0.54 27 rectfill -0.620685 nxsetgray -20.520008 0 0.54 27 rectfill -0.620685 nxsetgray -21.060009 0 0.54 27 rectfill -0.620685 nxsetgray -21.60001 0 0.54 27 rectfill -0.620685 nxsetgray -22.140011 0 0.54 27 rectfill -0.620685 nxsetgray -22.680012 0 0.54 27 rectfill -0.620685 nxsetgray -23.220013 0 0.54 27 rectfill -0.620685 nxsetgray -23.760014 0 0.54 27 rectfill -0.620685 nxsetgray -24.300014 0 0.54 27 rectfill -0.620685 nxsetgray -24.840015 0 0.54 27 rectfill -0.620685 nxsetgray -25.380016 0 0.54 27 rectfill -0.620685 nxsetgray -25.920017 0 0.54 27 rectfill -0.620685 nxsetgray -26.460018 0 0.54 27 rectfill -N -grestore -1 L -0 nxsetgray -27 -27 0 27 line -0 0 T -grestore -0 0 1 1 10 SU -216 585 T -N -gsave N -0 27 m 27 0 l -clip -N -0 setlinewidth -0.620685 nxsetgray -0 0 0.54 27 rectfill -0.620685 nxsetgray -0.54 0 0.54 27 rectfill -0.620685 nxsetgray -1.08 0 0.54 27 rectfill -0.620685 nxsetgray -1.62 0 0.54 27 rectfill -0.620685 nxsetgray -2.16 0 0.54 27 rectfill -0.620685 nxsetgray -2.7 0 0.54 27 rectfill -0.620685 nxsetgray -3.24 0 0.54 27 rectfill -0.620685 nxsetgray -3.78 0 0.54 27 rectfill -0.620685 nxsetgray -4.32 0 0.54 27 rectfill -0.620685 nxsetgray -4.86 0 0.54 27 rectfill -0.620685 nxsetgray -5.4 0 0.54 27 rectfill -0.620685 nxsetgray -5.94 0 0.54 27 rectfill -0.620685 nxsetgray -6.48 0 0.54 27 rectfill -0.620685 nxsetgray -7.02 0 0.54 27 rectfill -0.620685 nxsetgray -7.56 0 0.54 27 rectfill -0.620685 nxsetgray -8.1 0 0.54 27 rectfill -0.620685 nxsetgray -8.64 0 0.54 27 rectfill -0.620685 nxsetgray -9.18 0 0.54 27 rectfill -0.620685 nxsetgray -9.72 0 0.54 27 rectfill -0.620685 nxsetgray -10.26 0 0.54 27 rectfill -0.620685 nxsetgray -10.8 0 0.54 27 rectfill -0.620685 nxsetgray -11.34 0 0.54 27 rectfill -0.620685 nxsetgray -11.88 0 0.54 27 rectfill -0.620685 nxsetgray -12.42 0 0.54 27 rectfill -0.620685 nxsetgray -12.96 0 0.54 27 rectfill -0.620685 nxsetgray -13.5 0 0.54 27 rectfill -0.620685 nxsetgray -14.04 0 0.54 27 rectfill -0.620685 nxsetgray -14.58 0 0.54 27 rectfill -0.620685 nxsetgray -15.12 0 0.54 27 rectfill -0.620685 nxsetgray -15.66 0 0.54 27 rectfill -0.620685 nxsetgray -16.200001 0 0.54 27 rectfill -0.620685 nxsetgray -16.740002 0 0.54 27 rectfill -0.620685 nxsetgray -17.280003 0 0.54 27 rectfill -0.620685 nxsetgray -17.820004 0 0.54 27 rectfill -0.620685 nxsetgray -18.360004 0 0.54 27 rectfill -0.620685 nxsetgray -18.900005 0 0.54 27 rectfill -0.620685 nxsetgray -19.440006 0 0.54 27 rectfill -0.620685 nxsetgray -19.980007 0 0.54 27 rectfill -0.620685 nxsetgray -20.520008 0 0.54 27 rectfill -0.620685 nxsetgray -21.060009 0 0.54 27 rectfill -0.620685 nxsetgray -21.60001 0 0.54 27 rectfill -0.620685 nxsetgray -22.140011 0 0.54 27 rectfill -0.620685 nxsetgray -22.680012 0 0.54 27 rectfill -0.620685 nxsetgray -23.220013 0 0.54 27 rectfill -0.620685 nxsetgray -23.760014 0 0.54 27 rectfill -0.620685 nxsetgray -24.300014 0 0.54 27 rectfill -0.620685 nxsetgray -24.840015 0 0.54 27 rectfill -0.620685 nxsetgray -25.380016 0 0.54 27 rectfill -0.620685 nxsetgray -25.920017 0 0.54 27 rectfill -0.620685 nxsetgray -26.460018 0 0.54 27 rectfill -N -grestore -1 L -0 nxsetgray -27 -27 0 27 line -0 0 T -grestore -0 0 1 1 10 SU -234 585 T -N -gsave N -0 27 m 27 0 l -clip -N -0 setlinewidth -0.620685 nxsetgray -0 0 0.54 27 rectfill -0.620685 nxsetgray -0.54 0 0.54 27 rectfill -0.620685 nxsetgray -1.08 0 0.54 27 rectfill -0.620685 nxsetgray -1.62 0 0.54 27 rectfill -0.620685 nxsetgray -2.16 0 0.54 27 rectfill -0.620685 nxsetgray -2.7 0 0.54 27 rectfill -0.620685 nxsetgray -3.24 0 0.54 27 rectfill -0.620685 nxsetgray -3.78 0 0.54 27 rectfill -0.620685 nxsetgray -4.32 0 0.54 27 rectfill -0.620685 nxsetgray -4.86 0 0.54 27 rectfill -0.620685 nxsetgray -5.4 0 0.54 27 rectfill -0.620685 nxsetgray -5.94 0 0.54 27 rectfill -0.620685 nxsetgray -6.48 0 0.54 27 rectfill -0.620685 nxsetgray -7.02 0 0.54 27 rectfill -0.620685 nxsetgray -7.56 0 0.54 27 rectfill -0.620685 nxsetgray -8.1 0 0.54 27 rectfill -0.620685 nxsetgray -8.64 0 0.54 27 rectfill -0.620685 nxsetgray -9.18 0 0.54 27 rectfill -0.620685 nxsetgray -9.72 0 0.54 27 rectfill -0.620685 nxsetgray -10.26 0 0.54 27 rectfill -0.620685 nxsetgray -10.8 0 0.54 27 rectfill -0.620685 nxsetgray -11.34 0 0.54 27 rectfill -0.620685 nxsetgray -11.88 0 0.54 27 rectfill -0.620685 nxsetgray -12.42 0 0.54 27 rectfill -0.620685 nxsetgray -12.96 0 0.54 27 rectfill -0.620685 nxsetgray -13.5 0 0.54 27 rectfill -0.620685 nxsetgray -14.04 0 0.54 27 rectfill -0.620685 nxsetgray -14.58 0 0.54 27 rectfill -0.620685 nxsetgray -15.12 0 0.54 27 rectfill -0.620685 nxsetgray -15.66 0 0.54 27 rectfill -0.620685 nxsetgray -16.200001 0 0.54 27 rectfill -0.620685 nxsetgray -16.740002 0 0.54 27 rectfill -0.620685 nxsetgray -17.280003 0 0.54 27 rectfill -0.620685 nxsetgray -17.820004 0 0.54 27 rectfill -0.620685 nxsetgray -18.360004 0 0.54 27 rectfill -0.620685 nxsetgray -18.900005 0 0.54 27 rectfill -0.620685 nxsetgray -19.440006 0 0.54 27 rectfill -0.620685 nxsetgray -19.980007 0 0.54 27 rectfill -0.620685 nxsetgray -20.520008 0 0.54 27 rectfill -0.620685 nxsetgray -21.060009 0 0.54 27 rectfill -0.620685 nxsetgray -21.60001 0 0.54 27 rectfill -0.620685 nxsetgray -22.140011 0 0.54 27 rectfill -0.620685 nxsetgray -22.680012 0 0.54 27 rectfill -0.620685 nxsetgray -23.220013 0 0.54 27 rectfill -0.620685 nxsetgray -23.760014 0 0.54 27 rectfill -0.620685 nxsetgray -24.300014 0 0.54 27 rectfill -0.620685 nxsetgray -24.840015 0 0.54 27 rectfill -0.620685 nxsetgray -25.380016 0 0.54 27 rectfill -0.620685 nxsetgray -25.920017 0 0.54 27 rectfill -0.620685 nxsetgray -26.460018 0 0.54 27 rectfill -N -grestore -1 L -0 nxsetgray -27 -27 0 27 line -0 0 T -grestore -0 0 1 1 10 SU -252 585 T -N -gsave N -0 27 m 27 0 l -clip -N -0 setlinewidth -0.620685 nxsetgray -0 0 0.54 27 rectfill -0.620685 nxsetgray -0.54 0 0.54 27 rectfill -0.620685 nxsetgray -1.08 0 0.54 27 rectfill -0.620685 nxsetgray -1.62 0 0.54 27 rectfill -0.620685 nxsetgray -2.16 0 0.54 27 rectfill -0.620685 nxsetgray -2.7 0 0.54 27 rectfill -0.620685 nxsetgray -3.24 0 0.54 27 rectfill -0.620685 nxsetgray -3.78 0 0.54 27 rectfill -0.620685 nxsetgray -4.32 0 0.54 27 rectfill -0.620685 nxsetgray -4.86 0 0.54 27 rectfill -0.620685 nxsetgray -5.4 0 0.54 27 rectfill -0.620685 nxsetgray -5.94 0 0.54 27 rectfill -0.620685 nxsetgray -6.48 0 0.54 27 rectfill -0.620685 nxsetgray -7.02 0 0.54 27 rectfill -0.620685 nxsetgray -7.56 0 0.54 27 rectfill -0.620685 nxsetgray -8.1 0 0.54 27 rectfill -0.620685 nxsetgray -8.64 0 0.54 27 rectfill -0.620685 nxsetgray -9.18 0 0.54 27 rectfill -0.620685 nxsetgray -9.72 0 0.54 27 rectfill -0.620685 nxsetgray -10.26 0 0.54 27 rectfill -0.620685 nxsetgray -10.8 0 0.54 27 rectfill -0.620685 nxsetgray -11.34 0 0.54 27 rectfill -0.620685 nxsetgray -11.88 0 0.54 27 rectfill -0.620685 nxsetgray -12.42 0 0.54 27 rectfill -0.620685 nxsetgray -12.96 0 0.54 27 rectfill -0.620685 nxsetgray -13.5 0 0.54 27 rectfill -0.620685 nxsetgray -14.04 0 0.54 27 rectfill -0.620685 nxsetgray -14.58 0 0.54 27 rectfill -0.620685 nxsetgray -15.12 0 0.54 27 rectfill -0.620685 nxsetgray -15.66 0 0.54 27 rectfill -0.620685 nxsetgray -16.200001 0 0.54 27 rectfill -0.620685 nxsetgray -16.740002 0 0.54 27 rectfill -0.620685 nxsetgray -17.280003 0 0.54 27 rectfill -0.620685 nxsetgray -17.820004 0 0.54 27 rectfill -0.620685 nxsetgray -18.360004 0 0.54 27 rectfill -0.620685 nxsetgray -18.900005 0 0.54 27 rectfill -0.620685 nxsetgray -19.440006 0 0.54 27 rectfill -0.620685 nxsetgray -19.980007 0 0.54 27 rectfill -0.620685 nxsetgray -20.520008 0 0.54 27 rectfill -0.620685 nxsetgray -21.060009 0 0.54 27 rectfill -0.620685 nxsetgray -21.60001 0 0.54 27 rectfill -0.620685 nxsetgray -22.140011 0 0.54 27 rectfill -0.620685 nxsetgray -22.680012 0 0.54 27 rectfill -0.620685 nxsetgray -23.220013 0 0.54 27 rectfill -0.620685 nxsetgray -23.760014 0 0.54 27 rectfill -0.620685 nxsetgray -24.300014 0 0.54 27 rectfill -0.620685 nxsetgray -24.840015 0 0.54 27 rectfill -0.620685 nxsetgray -25.380016 0 0.54 27 rectfill -0.620685 nxsetgray -25.920017 0 0.54 27 rectfill -0.620685 nxsetgray -26.460018 0 0.54 27 rectfill -N -grestore -1 L -0 nxsetgray -27 -27 0 27 line -0 0 T -grestore -0 0 1 1 10 SU -270 594 T -N -gsave N -0 18 m 18 0 l -clip -N -0 setlinewidth -0.620685 nxsetgray -0 0 0.36 18 rectfill -0.620685 nxsetgray -0.36 0 0.36 18 rectfill -0.620685 nxsetgray -0.72 0 0.36 18 rectfill -0.620685 nxsetgray -1.08 0 0.36 18 rectfill -0.620685 nxsetgray -1.44 0 0.36 18 rectfill -0.620685 nxsetgray -1.8 0 0.36 18 rectfill -0.620685 nxsetgray -2.16 0 0.36 18 rectfill -0.620685 nxsetgray -2.52 0 0.36 18 rectfill -0.620685 nxsetgray -2.88 0 0.36 18 rectfill -0.620685 nxsetgray -3.24 0 0.36 18 rectfill -0.620685 nxsetgray -3.6 0 0.36 18 rectfill -0.620685 nxsetgray -3.960001 0 0.36 18 rectfill -0.620685 nxsetgray -4.320001 0 0.36 18 rectfill -0.620685 nxsetgray -4.680001 0 0.36 18 rectfill -0.620685 nxsetgray -5.040001 0 0.36 18 rectfill -0.620685 nxsetgray -5.400001 0 0.36 18 rectfill -0.620685 nxsetgray -5.760001 0 0.36 18 rectfill -0.620685 nxsetgray -6.120001 0 0.36 18 rectfill -0.620685 nxsetgray -6.480001 0 0.36 18 rectfill -0.620685 nxsetgray -6.840002 0 0.36 18 rectfill -0.620685 nxsetgray -7.200002 0 0.36 18 rectfill -0.620685 nxsetgray -7.560002 0 0.36 18 rectfill -0.620685 nxsetgray -7.920002 0 0.36 18 rectfill -0.620685 nxsetgray -8.280002 0 0.36 18 rectfill -0.620685 nxsetgray -8.640001 0 0.36 18 rectfill -0.620685 nxsetgray -9.000001 0 0.36 18 rectfill -0.620685 nxsetgray -9.360001 0 0.36 18 rectfill -0.620685 nxsetgray -9.72 0 0.36 18 rectfill -0.620685 nxsetgray -10.08 0 0.36 18 rectfill -0.620685 nxsetgray -10.44 0 0.36 18 rectfill -0.620685 nxsetgray -10.799999 0 0.36 18 rectfill -0.620685 nxsetgray -11.159999 0 0.36 18 rectfill -0.620685 nxsetgray -11.519999 0 0.36 18 rectfill -0.620685 nxsetgray -11.879998 0 0.36 18 rectfill -0.620685 nxsetgray -12.239998 0 0.36 18 rectfill -0.620685 nxsetgray -12.599998 0 0.36 18 rectfill -0.620685 nxsetgray -12.959997 0 0.36 18 rectfill -0.620685 nxsetgray -13.319997 0 0.36 18 rectfill -0.620685 nxsetgray -13.679996 0 0.36 18 rectfill -0.620685 nxsetgray -14.039996 0 0.36 18 rectfill -0.620685 nxsetgray -14.399996 0 0.36 18 rectfill -0.620685 nxsetgray -14.759995 0 0.36 18 rectfill -0.620685 nxsetgray -15.119995 0 0.36 18 rectfill -0.620685 nxsetgray -15.479995 0 0.36 18 rectfill -0.620685 nxsetgray -15.839994 0 0.36 18 rectfill -0.620685 nxsetgray -16.199995 0 0.36 18 rectfill -0.620685 nxsetgray -16.559996 0 0.36 18 rectfill -0.620685 nxsetgray -16.919996 0 0.36 18 rectfill -0.620685 nxsetgray -17.279997 0 0.36 18 rectfill -0.620685 nxsetgray -17.639997 0 0.36 18 rectfill -N -grestore -1 L -0 nxsetgray -18 -18 0 18 line -0 0 T -grestore -0 0 1 1 10 SU -288 603 T -N -gsave N -0 9 m 9 0 l -clip -N -0 setlinewidth -0.620685 nxsetgray -0 0 0.18 9 rectfill -0.620685 nxsetgray -0.18 0 0.18 9 rectfill -0.620685 nxsetgray -0.36 0 0.18 9 rectfill -0.620685 nxsetgray -0.54 0 0.18 9 rectfill -0.620685 nxsetgray -0.72 0 0.18 9 rectfill -0.620685 nxsetgray -0.9 0 0.18 9 rectfill -0.620685 nxsetgray -1.08 0 0.18 9 rectfill -0.620685 nxsetgray -1.26 0 0.18 9 rectfill -0.620685 nxsetgray -1.44 0 0.18 9 rectfill -0.620685 nxsetgray -1.62 0 0.18 9 rectfill -0.620685 nxsetgray -1.8 0 0.18 9 rectfill -0.620685 nxsetgray -1.98 0 0.18 9 rectfill -0.620685 nxsetgray -2.16 0 0.18 9 rectfill -0.620685 nxsetgray -2.34 0 0.18 9 rectfill -0.620685 nxsetgray -2.52 0 0.18 9 rectfill -0.620685 nxsetgray -2.700001 0 0.18 9 rectfill -0.620685 nxsetgray -2.880001 0 0.18 9 rectfill -0.620685 nxsetgray -3.060001 0 0.18 9 rectfill -0.620685 nxsetgray -3.240001 0 0.18 9 rectfill -0.620685 nxsetgray -3.420001 0 0.18 9 rectfill -0.620685 nxsetgray -3.600001 0 0.18 9 rectfill -0.620685 nxsetgray -3.780001 0 0.18 9 rectfill -0.620685 nxsetgray -3.960001 0 0.18 9 rectfill -0.620685 nxsetgray -4.140001 0 0.18 9 rectfill -0.620685 nxsetgray -4.320001 0 0.18 9 rectfill -0.620685 nxsetgray -4.5 0 0.18 9 rectfill -0.620685 nxsetgray -4.68 0 0.18 9 rectfill -0.620685 nxsetgray -4.86 0 0.18 9 rectfill -0.620685 nxsetgray -5.04 0 0.18 9 rectfill -0.620685 nxsetgray -5.22 0 0.18 9 rectfill -0.620685 nxsetgray -5.4 0 0.18 9 rectfill -0.620685 nxsetgray -5.579999 0 0.18 9 rectfill -0.620685 nxsetgray -5.759999 0 0.18 9 rectfill -0.620685 nxsetgray -5.939999 0 0.18 9 rectfill -0.620685 nxsetgray -6.119999 0 0.18 9 rectfill -0.620685 nxsetgray -6.299999 0 0.18 9 rectfill -0.620685 nxsetgray -6.479999 0 0.18 9 rectfill -0.620685 nxsetgray -6.659998 0 0.18 9 rectfill -0.620685 nxsetgray -6.839998 0 0.18 9 rectfill -0.620685 nxsetgray -7.019998 0 0.18 9 rectfill -0.620685 nxsetgray -7.199998 0 0.18 9 rectfill -0.620685 nxsetgray -7.379998 0 0.18 9 rectfill -0.620685 nxsetgray -7.559998 0 0.18 9 rectfill -0.620685 nxsetgray -7.739997 0 0.18 9 rectfill -0.620685 nxsetgray -7.919997 0 0.18 9 rectfill -0.620685 nxsetgray -8.099998 0 0.18 9 rectfill -0.620685 nxsetgray -8.279998 0 0.18 9 rectfill -0.620685 nxsetgray -8.459998 0 0.18 9 rectfill -0.620685 nxsetgray -8.639998 0 0.18 9 rectfill -0.620685 nxsetgray -8.819999 0 0.18 9 rectfill -N -grestore -1 L -0 nxsetgray -9 -9 0 9 line -0 0 T -grestore -0 0 1 1 10 SU -180 585 T -N -gsave N -0 0 m 90 0 l -clip -N -0 setlinewidth -0.620685 nxsetgray -0 0 1.8 1 rectfill -0.620685 nxsetgray -1.8 0 1.8 1 rectfill -0.620685 nxsetgray -3.6 0 1.8 1 rectfill -0.620685 nxsetgray -5.4 0 1.8 1 rectfill -0.620685 nxsetgray -7.2 0 1.8 1 rectfill -0.620685 nxsetgray -9 0 1.8 1 rectfill -0.620685 nxsetgray -10.8 0 1.8 1 rectfill -0.620685 nxsetgray -12.6 0 1.8 1 rectfill -0.620685 nxsetgray -14.400001 0 1.8 1 rectfill -0.620685 nxsetgray -16.200001 0 1.8 1 rectfill -0.620685 nxsetgray -18 0 1.8 1 rectfill -0.620685 nxsetgray -19.799999 0 1.8 1 rectfill -0.620685 nxsetgray -21.599998 0 1.8 1 rectfill -0.620685 nxsetgray -23.399998 0 1.8 1 rectfill -0.620685 nxsetgray -25.199997 0 1.8 1 rectfill -0.620685 nxsetgray -26.999996 0 1.8 1 rectfill -0.620685 nxsetgray -28.799995 0 1.8 1 rectfill -0.620685 nxsetgray -30.599995 0 1.8 1 rectfill -0.620685 nxsetgray -32.399994 0 1.8 1 rectfill -0.620685 nxsetgray -34.199993 0 1.8 1 rectfill -0.620685 nxsetgray -35.999992 0 1.8 1 rectfill -0.620685 nxsetgray -37.799992 0 1.8 1 rectfill -0.620685 nxsetgray -39.599991 0 1.8 1 rectfill -0.620685 nxsetgray -41.39999 0 1.8 1 rectfill -0.620685 nxsetgray -43.199989 0 1.8 1 rectfill -0.620685 nxsetgray -44.999989 0 1.8 1 rectfill -0.620685 nxsetgray -46.799988 0 1.8 1 rectfill -0.620685 nxsetgray -48.599987 0 1.8 1 rectfill -0.620685 nxsetgray -50.399986 0 1.8 1 rectfill -0.620685 nxsetgray -52.199986 0 1.8 1 rectfill -0.620685 nxsetgray -53.999985 0 1.8 1 rectfill -0.620685 nxsetgray -55.799984 0 1.8 1 rectfill -0.620685 nxsetgray -57.599983 0 1.8 1 rectfill -0.620685 nxsetgray -59.399982 0 1.8 1 rectfill -0.620685 nxsetgray -61.199982 0 1.8 1 rectfill -0.620685 nxsetgray -62.999981 0 1.8 1 rectfill -0.620685 nxsetgray -64.79998 0 1.8 1 rectfill -0.620685 nxsetgray -66.599983 0 1.8 1 rectfill -0.620685 nxsetgray -68.399986 0 1.8 1 rectfill -0.620685 nxsetgray -70.199989 0 1.8 1 rectfill -0.620685 nxsetgray -71.999992 0 1.8 1 rectfill -0.620685 nxsetgray -73.799995 0 1.8 1 rectfill -0.620685 nxsetgray -75.599998 0 1.8 1 rectfill -0.620685 nxsetgray -77.400002 0 1.8 1 rectfill -0.620685 nxsetgray -79.200005 0 1.8 1 rectfill -0.620685 nxsetgray -81.000008 0 1.8 1 rectfill -0.620685 nxsetgray -82.800011 0 1.8 1 rectfill -0.620685 nxsetgray -84.600014 0 1.8 1 rectfill -0.620685 nxsetgray -86.400017 0 1.8 1 rectfill -0.620685 nxsetgray -88.20002 0 1.8 1 rectfill -N -grestore -1 L -0 nxsetgray -90 0 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -270 585 T -N -gsave N -0 0 m 9 0 l -clip -N -0 setlinewidth -0.620685 nxsetgray -0 0 0.18 1 rectfill -0.620685 nxsetgray -0.18 0 0.18 1 rectfill -0.620685 nxsetgray -0.36 0 0.18 1 rectfill -0.620685 nxsetgray -0.54 0 0.18 1 rectfill -0.620685 nxsetgray -0.72 0 0.18 1 rectfill -0.620685 nxsetgray -0.9 0 0.18 1 rectfill -0.620685 nxsetgray -1.08 0 0.18 1 rectfill -0.620685 nxsetgray -1.26 0 0.18 1 rectfill -0.620685 nxsetgray -1.44 0 0.18 1 rectfill -0.620685 nxsetgray -1.62 0 0.18 1 rectfill -0.620685 nxsetgray -1.8 0 0.18 1 rectfill -0.620685 nxsetgray -1.98 0 0.18 1 rectfill -0.620685 nxsetgray -2.16 0 0.18 1 rectfill -0.620685 nxsetgray -2.34 0 0.18 1 rectfill -0.620685 nxsetgray -2.52 0 0.18 1 rectfill -0.620685 nxsetgray -2.700001 0 0.18 1 rectfill -0.620685 nxsetgray -2.880001 0 0.18 1 rectfill -0.620685 nxsetgray -3.060001 0 0.18 1 rectfill -0.620685 nxsetgray -3.240001 0 0.18 1 rectfill -0.620685 nxsetgray -3.420001 0 0.18 1 rectfill -0.620685 nxsetgray -3.600001 0 0.18 1 rectfill -0.620685 nxsetgray -3.780001 0 0.18 1 rectfill -0.620685 nxsetgray -3.960001 0 0.18 1 rectfill -0.620685 nxsetgray -4.140001 0 0.18 1 rectfill -0.620685 nxsetgray -4.320001 0 0.18 1 rectfill -0.620685 nxsetgray -4.5 0 0.18 1 rectfill -0.620685 nxsetgray -4.68 0 0.18 1 rectfill -0.620685 nxsetgray -4.86 0 0.18 1 rectfill -0.620685 nxsetgray -5.04 0 0.18 1 rectfill -0.620685 nxsetgray -5.22 0 0.18 1 rectfill -0.620685 nxsetgray -5.4 0 0.18 1 rectfill -0.620685 nxsetgray -5.579999 0 0.18 1 rectfill -0.620685 nxsetgray -5.759999 0 0.18 1 rectfill -0.620685 nxsetgray -5.939999 0 0.18 1 rectfill -0.620685 nxsetgray -6.119999 0 0.18 1 rectfill -0.620685 nxsetgray -6.299999 0 0.18 1 rectfill -0.620685 nxsetgray -6.479999 0 0.18 1 rectfill -0.620685 nxsetgray -6.659998 0 0.18 1 rectfill -0.620685 nxsetgray -6.839998 0 0.18 1 rectfill -0.620685 nxsetgray -7.019998 0 0.18 1 rectfill -0.620685 nxsetgray -7.199998 0 0.18 1 rectfill -0.620685 nxsetgray -7.379998 0 0.18 1 rectfill -0.620685 nxsetgray -7.559998 0 0.18 1 rectfill -0.620685 nxsetgray -7.739997 0 0.18 1 rectfill -0.620685 nxsetgray -7.919997 0 0.18 1 rectfill -0.620685 nxsetgray -8.099998 0 0.18 1 rectfill -0.620685 nxsetgray -8.279998 0 0.18 1 rectfill -0.620685 nxsetgray -8.459998 0 0.18 1 rectfill -0.620685 nxsetgray -8.639998 0 0.18 1 rectfill -0.620685 nxsetgray -8.819999 0 0.18 1 rectfill -N -grestore -1 L -0 nxsetgray -9 0 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -153 612 T -N -gsave N -0 0 m 144 0 l -clip -N -0 setlinewidth -0.620685 nxsetgray -0 0 2.88 1 rectfill -0.620685 nxsetgray -2.88 0 2.88 1 rectfill -0.620685 nxsetgray -5.76 0 2.88 1 rectfill -0.620685 nxsetgray -8.64 0 2.88 1 rectfill -0.620685 nxsetgray -11.52 0 2.88 1 rectfill -0.620685 nxsetgray -14.400001 0 2.88 1 rectfill -0.620685 nxsetgray -17.280001 0 2.88 1 rectfill -0.620685 nxsetgray -20.16 0 2.88 1 rectfill -0.620685 nxsetgray -23.040001 0 2.88 1 rectfill -0.620685 nxsetgray -25.920002 0 2.88 1 rectfill -0.620685 nxsetgray -28.800003 0 2.88 1 rectfill -0.620685 nxsetgray -31.680004 0 2.88 1 rectfill -0.620685 nxsetgray -34.560005 0 2.88 1 rectfill -0.620685 nxsetgray -37.440006 0 2.88 1 rectfill -0.620685 nxsetgray -40.320007 0 2.88 1 rectfill -0.620685 nxsetgray -43.200008 0 2.88 1 rectfill -0.620685 nxsetgray -46.080009 0 2.88 1 rectfill -0.620685 nxsetgray -48.960011 0 2.88 1 rectfill -0.620685 nxsetgray -51.840012 0 2.88 1 rectfill -0.620685 nxsetgray -54.720013 0 2.88 1 rectfill -0.620685 nxsetgray -57.600014 0 2.88 1 rectfill -0.620685 nxsetgray -60.480015 0 2.88 1 rectfill -0.620685 nxsetgray -63.360016 0 2.88 1 rectfill -0.620685 nxsetgray -66.240013 0 2.88 1 rectfill -0.620685 nxsetgray -69.12001 0 2.88 1 rectfill -0.620685 nxsetgray -72.000008 0 2.88 1 rectfill -0.620685 nxsetgray -74.880005 0 2.88 1 rectfill -0.620685 nxsetgray -77.760002 0 2.88 1 rectfill -0.620685 nxsetgray -80.639999 0 2.88 1 rectfill -0.620685 nxsetgray -83.519997 0 2.88 1 rectfill -0.620685 nxsetgray -86.399994 0 2.88 1 rectfill -0.620685 nxsetgray -89.279991 0 2.88 1 rectfill -0.620685 nxsetgray -92.159988 0 2.88 1 rectfill -0.620685 nxsetgray -95.039986 0 2.88 1 rectfill -0.620685 nxsetgray -97.919983 0 2.88 1 rectfill -0.620685 nxsetgray -100.79998 0 2.88 1 rectfill -0.620685 nxsetgray -103.679977 0 2.88 1 rectfill -0.620685 nxsetgray -106.559975 0 2.88 1 rectfill -0.620685 nxsetgray -109.439972 0 2.88 1 rectfill -0.620685 nxsetgray -112.319969 0 2.88 1 rectfill -0.620685 nxsetgray -115.199966 0 2.88 1 rectfill -0.620685 nxsetgray -118.079964 0 2.88 1 rectfill -0.620685 nxsetgray -120.959961 0 2.88 1 rectfill -0.620685 nxsetgray -123.839958 0 2.88 1 rectfill -0.620685 nxsetgray -126.719955 0 2.88 1 rectfill -0.620685 nxsetgray -129.59996 0 2.88 1 rectfill -0.620685 nxsetgray -132.479965 0 2.88 1 rectfill -0.620685 nxsetgray -135.35997 0 2.88 1 rectfill -0.620685 nxsetgray -138.239975 0 2.88 1 rectfill -0.620685 nxsetgray -141.11998 0 2.88 1 rectfill -N -grestore -1 L -0 nxsetgray -144 0 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -297 612 T -N -gsave N -0 0 m 9 0 l -clip -N -0 setlinewidth -0.620685 nxsetgray -0 0 0.18 1 rectfill -0.620685 nxsetgray -0.18 0 0.18 1 rectfill -0.620685 nxsetgray -0.36 0 0.18 1 rectfill -0.620685 nxsetgray -0.54 0 0.18 1 rectfill -0.620685 nxsetgray -0.72 0 0.18 1 rectfill -0.620685 nxsetgray -0.9 0 0.18 1 rectfill -0.620685 nxsetgray -1.08 0 0.18 1 rectfill -0.620685 nxsetgray -1.26 0 0.18 1 rectfill -0.620685 nxsetgray -1.44 0 0.18 1 rectfill -0.620685 nxsetgray -1.62 0 0.18 1 rectfill -0.620685 nxsetgray -1.8 0 0.18 1 rectfill -0.620685 nxsetgray -1.98 0 0.18 1 rectfill -0.620685 nxsetgray -2.16 0 0.18 1 rectfill -0.620685 nxsetgray -2.34 0 0.18 1 rectfill -0.620685 nxsetgray -2.52 0 0.18 1 rectfill -0.620685 nxsetgray -2.700001 0 0.18 1 rectfill -0.620685 nxsetgray -2.880001 0 0.18 1 rectfill -0.620685 nxsetgray -3.060001 0 0.18 1 rectfill -0.620685 nxsetgray -3.240001 0 0.18 1 rectfill -0.620685 nxsetgray -3.420001 0 0.18 1 rectfill -0.620685 nxsetgray -3.600001 0 0.18 1 rectfill -0.620685 nxsetgray -3.780001 0 0.18 1 rectfill -0.620685 nxsetgray -3.960001 0 0.18 1 rectfill -0.620685 nxsetgray -4.140001 0 0.18 1 rectfill -0.620685 nxsetgray -4.320001 0 0.18 1 rectfill -0.620685 nxsetgray -4.5 0 0.18 1 rectfill -0.620685 nxsetgray -4.68 0 0.18 1 rectfill -0.620685 nxsetgray -4.86 0 0.18 1 rectfill -0.620685 nxsetgray -5.04 0 0.18 1 rectfill -0.620685 nxsetgray -5.22 0 0.18 1 rectfill -0.620685 nxsetgray -5.4 0 0.18 1 rectfill -0.620685 nxsetgray -5.579999 0 0.18 1 rectfill -0.620685 nxsetgray -5.759999 0 0.18 1 rectfill -0.620685 nxsetgray -5.939999 0 0.18 1 rectfill -0.620685 nxsetgray -6.119999 0 0.18 1 rectfill -0.620685 nxsetgray -6.299999 0 0.18 1 rectfill -0.620685 nxsetgray -6.479999 0 0.18 1 rectfill -0.620685 nxsetgray -6.659998 0 0.18 1 rectfill -0.620685 nxsetgray -6.839998 0 0.18 1 rectfill -0.620685 nxsetgray -7.019998 0 0.18 1 rectfill -0.620685 nxsetgray -7.199998 0 0.18 1 rectfill -0.620685 nxsetgray -7.379998 0 0.18 1 rectfill -0.620685 nxsetgray -7.559998 0 0.18 1 rectfill -0.620685 nxsetgray -7.739997 0 0.18 1 rectfill -0.620685 nxsetgray -7.919997 0 0.18 1 rectfill -0.620685 nxsetgray -8.099998 0 0.18 1 rectfill -0.620685 nxsetgray -8.279998 0 0.18 1 rectfill -0.620685 nxsetgray -8.459998 0 0.18 1 rectfill -0.620685 nxsetgray -8.639998 0 0.18 1 rectfill -0.620685 nxsetgray -8.819999 0 0.18 1 rectfill -N -grestore -1 L -0 nxsetgray -9 0 0 0 line -0 0 T -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob70.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob70.gif deleted file mode 100755 index 8de6ef60f..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob70.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob71a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob71a.eps deleted file mode 100755 index 77345cea0..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob71a.eps +++ /dev/null @@ -1,891 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: hecht6.24.create -%%Creator: Create -%%CreationDate: Thu Jan 30 17:14:54 1997 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 111 277 332 444 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(@ITs6BTUq-t -% 2>d.3ll-+;Ou+&L*;^acIYHJc]nZ`f/klfVp'SMM[!%(r;$jbEO_ifT_d -% ;aGU%UAHhS]U#6*u1iDMR;-4#j$kR;dcE'$MTj><1d]e:LVJk9-D1r7@K*T=1(bT2eSdY\kA -% BHYY?\VuJ7c_g"g1$I*'96?9/o&bC&`X)Y(Kj:q0ob5bjgK*f6BUkO%#@%R`0<7agK2?(VR4Jdo:)QBdL\<3A?![kunjLC=^ -% "q2K:V+-(GWm)(tJMtjT_d.0<0h3)aSKYuiDm8bd*7Lb9L3Xoohu\JZGmGU,@jk_SIcu?u7" -% -iBi1^Y\*r"W)"uc6aKG.C2@>5n@kadOoE<[\2--e4cBD.lncp/D5EFaSKhR+C1m3s`#%3O/ -% F?[hnFpKrHN&P.P*O+sE.LEY_8&XONC69ajmS*-RQdP=C3>d)8@j.#Sa-$T%lm(e;XZ"rqKJ`2I^%_6m;\DD#n?0Op###:*p_I]8&H;s9nA7Nr@)a=XA< -% MKS&WHf"+Tor^E?MRN'?E.j">WR\U]:BK_a0he#Qk>#qpW;-.i^f#!/NC^])\WL`4VrM'@@d -% "oULe'KUBjKd6S']5eldUPfD0d&3p4!"fuLZdh#1=!s.kZ!mE*E6kBA!J]og#cpS6q`Y_t`: -% ^I8XW,2_=A/IYS-C#,b$I4_5JMR^`^P`L3"cUm5^G3K-ZH3M6?:rc^HOY/=+,;t!ab^7mEkn -% Whh"])Nj31703.E%Rc@ZoUFO7i4X\.#7,Q@*\;H(gIjBHj,FkC2jIc_n:CiE]8<6p67AHMa@67'!n".$n&j_oYI -% )]Brt0ba^`D`qUo_B-30#<&5F9Vnk&J"@lKCC"jShm<2%2N,C"i9,jp:TPtGR7"t^ -% bQA'X90EsE6C$31,HQ_""_L^b3EY4!N$-Qh+YXUiK`jJA@hmh/P3m6'iBLNm,SL@kmo+u1(^ -% 7W`@>*F93K]+Qa`39/ii2i?tsMF`B7`ff/_)g7^K-f\gA6!R7fGWZQNd,V`;dI;00#DSa'`t -% 45UoO3R"h(poNXBqcV6pc6/d.*@P:b?r._KP^5#mW'_FP;2X(+1)R^fC8gDp/qB/o+sgs1:' -% sWMW-#*m7EhW<3`AMRifQ,ah\ZFQJ-T=WF.!/G!JP:+.C)m\P -% ,4>rV`7dm>*gW/LRSnCBk;VCjO*dG%aq[bADpL:)CDb0X;OJ]qB5op>%`Ag[E/^hD<#8Vs!9 -% @tT:;aelC3*dJ:%AK_$^L]F&/%"LPIe_24]D'5@BgW\!]n[V+#LE/DMo0PHfg:l\'92do34q?k<:i*V -% 7i=3U//8S(OA$gj%X'n_NiVAVQ7EKIeB[I4U+s]B@a93B$#-8^^Sc^f>i>`ZiAYMAlq.!&No -% D?YSlkI#/T(b4(h;BdM%Zm!;]UOY74`WJpsRT_Z]AAg1'K,;!dejW#,g%#D2aOfK^6Y-c$*i -% n:DP5huiN4O.jhF'Q+k?h2EG3:-;DgA0XD@f_54d7c3Zb7X^pdB\,1-ncLQ!-Sl"7EIjd4Cb -% pP>n3rfK0^"3W)K\Fh`.%,54RtuJoZ%:47lK;gI.$$E!Fp/V'mS8!YB7L2.!%lV3!;*`,+W(Jl&-*"J!7.!^,q"*K,CkHu6 -% mSZj0.99E2hOseKf3%^6WAX$LOk"!#>a8DmIu5ioJUk;$]JU&O!Fhk'86Gu"]\*6-jX933.P -% 6^75.7t#H3/sR"ms>"_Ceb@?cB[W.&s/L2OMPEVKP*a%-S?@8MbDLB%=%kWW&BLXg!$6R?t. -% fS)S%L]PGBS/?s2n;3+V3ZJibB)%/t'T$QqM*C]`D?Bp-(^QAq8ErGu;2>@K3(24"K.1Jkf9 -% V;IG^tN^J.#J<"GkLb`=>5R&)[#`42EfSp@9L;"Le$53[TJ3J -% U)OWIYi*-mc+6jOqRMkL4QJC"#lqd1"/SfpM$ -% X\Xd$UYk!2Y45Fr:F:3LPDsR=Rhqq>c\;PW#1WD30WqYQ@nu -% @rSR]96OQ2!P@qCeP*ge1folY+Qi2Fjj?Pcp_?iL>#hVC#Hb#:;nAtV!!&WNPFh;IT(K"MmjXk/E1J -% u+$iink)rR@WEh(rg$3rV_#9%7\g(0ho#jt$BkVE;8=95GtIp"d[/no_8.?.a"2DkR:oDek% -% ^mhj4K>6)l_&8U=EhWX9Pj!aT)`aH1)4c?@Q[s;j)bCPR)@2C'P(A.W"s=$fH@d]i8KS;!?9 -% (7qC66dB!'HpKCrrCgkb:0GUB!!E$p^S=n=5'L!.RQN)i5%DaUK0q%AaJAk2RU'WXZIq2A)%Q_O"BMOaD:tZ@fTZ:YX#pq!R37*/)%V -% 42R"=B#)qb93aTFG##t7ZS^R@=e:^7YAVcS\P*kJ@u3f%2=Jkrb(OkP> -matrix makepattern /Fish_Scales exch def -%%EndSetup -gsave -111 277 221 167 rectclip -0 0 0.15 1 10 SU -[1 0 0 -1 153 342] concat -[1 0 0 1 1 1] concat -N -gsave N -115 17 0 0 acsRect -clip -N -0 setlinewidth -0.655171 nxsetgray -0 0 115 0.34 rectfill -0.661504 nxsetgray -0 0.34 115 0.34 rectfill -0.667837 nxsetgray -0 0.68 115 0.34 rectfill -0.674169 nxsetgray -0 1.02 115 0.34 rectfill -0.680502 nxsetgray -0 1.36 115 0.34 rectfill -0.686834 nxsetgray -0 1.7 115 0.34 rectfill -0.693167 nxsetgray -0 2.04 115 0.34 rectfill -0.699499 nxsetgray -0 2.38 115 0.34 rectfill -0.705832 nxsetgray -0 2.72 115 0.34 rectfill -0.71218 nxsetgray -0 3.06 115 0.34 rectfill -0.718513 nxsetgray -0 3.4 115 0.34 rectfill -0.724845 nxsetgray -0 3.74 115 0.34 rectfill -0.731178 nxsetgray -0 4.079999 115 0.34 rectfill -0.73751 nxsetgray -0 4.42 115 0.34 rectfill -0.743843 nxsetgray -0 4.76 115 0.34 rectfill -0.750175 nxsetgray -0 5.1 115 0.34 rectfill -0.756508 nxsetgray -0 5.44 115 0.34 rectfill -0.762841 nxsetgray -0 5.78 115 0.34 rectfill -0.769173 nxsetgray -0 6.12 115 0.34 rectfill -0.775506 nxsetgray -0 6.460001 115 0.34 rectfill -0.781838 nxsetgray -0 6.800001 115 0.34 rectfill -0.788171 nxsetgray -0 7.140001 115 0.34 rectfill -0.794504 nxsetgray -0 7.480001 115 0.34 rectfill -0.800836 nxsetgray -0 7.820001 115 0.34 rectfill -0.807169 nxsetgray -0 8.160001 115 0.34 rectfill -0.813517 nxsetgray -0 8.500001 115 0.34 rectfill -0.819849 nxsetgray -0 8.840001 115 0.34 rectfill -0.826182 nxsetgray -0 9.180001 115 0.34 rectfill -0.832514 nxsetgray -0 9.520001 115 0.34 rectfill -0.838847 nxsetgray -0 9.860002 115 0.34 rectfill -0.84518 nxsetgray -0 10.200002 115 0.34 rectfill -0.851512 nxsetgray -0 10.540002 115 0.34 rectfill -0.857845 nxsetgray -0 10.880002 115 0.34 rectfill -0.864177 nxsetgray -0 11.220002 115 0.34 rectfill -0.87051 nxsetgray -0 11.560002 115 0.34 rectfill -0.876843 nxsetgray -0 11.900002 115 0.34 rectfill -0.883175 nxsetgray -0 12.240003 115 0.34 rectfill -0.889508 nxsetgray -0 12.580003 115 0.34 rectfill -0.89584 nxsetgray -0 12.920003 115 0.34 rectfill -0.902173 nxsetgray -0 13.260003 115 0.34 rectfill -0.908505 nxsetgray -0 13.600003 115 0.34 rectfill -0.914853 nxsetgray -0 13.940003 115 0.34 rectfill -0.921186 nxsetgray -0 14.280004 115 0.34 rectfill -0.927519 nxsetgray -0 14.620004 115 0.34 rectfill -0.933851 nxsetgray -0 14.960004 115 0.34 rectfill -0.940184 nxsetgray -0 15.300004 115 0.34 rectfill -0.946516 nxsetgray -0 15.640004 115 0.34 rectfill -0.952849 nxsetgray -0 15.980004 115 0.34 rectfill -0.959181 nxsetgray -0 16.320004 115 0.34 rectfill -0.965514 nxsetgray -0 16.660004 115 0.34 rectfill -N -grestore -0.15 L -1 nxsetgray -0 0 115 17 rectstroke -0 0 T -grestore -0 0 3 1 10 SU -153 297 T -N -3 L -0 nxsetgray -0 0 m -0 15 0 30 0 45 c -s -grestore -0 0 3 1 10 SU -154 341 T -N -3 L -0 nxsetgray -0 0 m -39 0 78 0 117 0 c -s -grestore -0 0 3 1 10 SU -270 342 T -N -3 L -0 nxsetgray -0 0 m -0 -12 0 -24 0 -36 c -s -grestore -0 0 3 1 10 SU -270 306 T -N -3 L -0 nxsetgray -0 0 m -0 -3 0 -6 0 -9 c -s -grestore -0 0 3 1 10 SU -216 342 T -N -3 L -0 nxsetgray -0 0 m -0 3 -1.5 7.5 0 9 c -1.5 10.5 7.5 7.5 9 9 c -10.5 10.5 7.5 16.5 9 18 c -10.5 19.5 16.5 19.5 18 18 c -19.5 16.5 16.5 10.5 18 9 c -19.5 7.5 25.5 10.5 27 9 c -28.5 7.5 27 3 27 0 c -s -grestore -0 0 3 1 10 SU -162 342 T -N -3 L -0 nxsetgray -0 0 m -0 6 -1.5 15 0 18 c -1.5 21 7.5 21 9 18 c -10.5 15 9 6 9 0 c -s -grestore -0 0 3 1 10 SU -270 387 T -N -3 L -0 nxsetgray -0 0 m -0 0 0 0 0 0 c -s -grestore -0 0 3 1 10 SU -243 360 T -N -3 L -0 nxsetgray -0 0 m -0 0 0 0 0 0 c -s -grestore -0 0 3 1 10 SU -234 351 T -N -3 L -0 nxsetgray -72 81 0 0 line -0 0 T -grestore -0 0 3 1 10 SU -171 351 T -N -3 L -0.310343 nxsetgray -135 81 0 0 line -0 0 T -grestore -0 0 3 1 10 SU -306 351 T -N -3 L -0.310343 nxsetgray -0 81 0 0 line -0 0 T -grestore -0 0 3 1 10 SU -162 351 T -N -3 L -0.310343 nxsetgray -9 0 0 0 line -0 0 T -grestore -0 0 3 1 10 SU -162 297 T -N -3 L -0 nxsetgray -0 -27 0 27 line -0 0 T -grestore -0 0 3 1 10 SU -162 324 T -N -3 L -0 nxsetgray -99 0 0 0 line -0 0 T -grestore -0 0 3 1 10 SU -261 297 T -N -3 L -0 nxsetgray -0 -27 0 27 line -0 0 T -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -/Helvetica findfont 10 scalefont [1 0 0 -1 0 0] makefont -412 -exch -defineuserobject -412 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 703] concat -/Symbol findfont 12 scalefont [1 0 0 -1 0 0] makefont -411 -exch -defineuserobject -411 execuserobject setfont -0 nxsetgray -186 356 moveto (q) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -411 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 707] concat -411 execuserobject setfont -0 nxsetgray -249 358 moveto (q) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -411 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 743] concat -/Helvetica findfont 12 scalefont [1 0 0 -1 0 0] makefont -12 -exch -defineuserobject -12 execuserobject setfont -0 nxsetgray -171 376 moveto (D) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 871] concat -12 execuserobject setfont -0 nxsetgray -289 440 moveto (B) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 741] concat -12 execuserobject setfont -0 nxsetgray -232 375 moveto (C) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 725] concat -12 execuserobject setfont -0 nxsetgray -312 367 moveto (A) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 699] concat -412 execuserobject setfont -0 nxsetgray -193 353 moveto (1) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -412 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 701] concat -412 execuserobject setfont -0 nxsetgray -257 354 moveto (2) show -grestore -grestore -0 0 1 1 10 SU -[1 0 0 -1 138 300] concat -[1 0 0 -1 1 7] concat -N -gsave N -Fish_Scales setpattern -0 0 190 6 rectfill -grestore -1 L -1 nxsetgray -0 0 190 6 rectstroke -0 0 T -grestore -0 0 3 1 10 SU -[1 0 0 -1 286 353] concat -[1 0 0 1 2 2] concat -N -gsave N -36 26 0 0 acsRect -clip -N -0 setlinewidth -0.655171 nxsetgray -0 0 36 0.52 rectfill -0.655171 nxsetgray -0 0.52 36 0.52 rectfill -0.655171 nxsetgray -0 1.04 36 0.52 rectfill -0.655171 nxsetgray -0 1.56 36 0.52 rectfill -0.655171 nxsetgray -0 2.08 36 0.52 rectfill -0.655171 nxsetgray -0 2.6 36 0.52 rectfill -0.655171 nxsetgray -0 3.12 36 0.52 rectfill -0.655171 nxsetgray -0 3.64 36 0.52 rectfill -0.655171 nxsetgray -0 4.16 36 0.52 rectfill -0.655171 nxsetgray -0 4.68 36 0.52 rectfill -0.655171 nxsetgray -0 5.2 36 0.52 rectfill -0.655171 nxsetgray -0 5.72 36 0.52 rectfill -0.655171 nxsetgray -0 6.24 36 0.52 rectfill -0.655171 nxsetgray -0 6.76 36 0.52 rectfill -0.655171 nxsetgray -0 7.28 36 0.52 rectfill -0.655171 nxsetgray -0 7.8 36 0.52 rectfill -0.655171 nxsetgray -0 8.32 36 0.52 rectfill -0.655171 nxsetgray -0 8.84 36 0.52 rectfill -0.655171 nxsetgray -0 9.360001 36 0.52 rectfill -0.655171 nxsetgray -0 9.880001 36 0.52 rectfill -0.655171 nxsetgray -0 10.400002 36 0.52 rectfill -0.655171 nxsetgray -0 10.920002 36 0.52 rectfill -0.655171 nxsetgray -0 11.440002 36 0.52 rectfill -0.655171 nxsetgray -0 11.960003 36 0.52 rectfill -0.655171 nxsetgray -0 12.480003 36 0.52 rectfill -0.655171 nxsetgray -0 13.000004 36 0.52 rectfill -0.655171 nxsetgray -0 13.520004 36 0.52 rectfill -0.655171 nxsetgray -0 14.040005 36 0.52 rectfill -0.655171 nxsetgray -0 14.560005 36 0.52 rectfill -0.655171 nxsetgray -0 15.080006 36 0.52 rectfill -0.655171 nxsetgray -0 15.600006 36 0.52 rectfill -0.655171 nxsetgray -0 16.120007 36 0.52 rectfill -0.655171 nxsetgray -0 16.640007 36 0.52 rectfill -0.655171 nxsetgray -0 17.160007 36 0.52 rectfill -0.655171 nxsetgray -0 17.680008 36 0.52 rectfill -0.655171 nxsetgray -0 18.200008 36 0.52 rectfill -0.655171 nxsetgray -0 18.720009 36 0.52 rectfill -0.655171 nxsetgray -0 19.240009 36 0.52 rectfill -0.655171 nxsetgray -0 19.76001 36 0.52 rectfill -0.655171 nxsetgray -0 20.28001 36 0.52 rectfill -0.655171 nxsetgray -0 20.800011 36 0.52 rectfill -0.655171 nxsetgray -0 21.320011 36 0.52 rectfill -0.655171 nxsetgray -0 21.840012 36 0.52 rectfill -0.655171 nxsetgray -0 22.360012 36 0.52 rectfill -0.655171 nxsetgray -0 22.880013 36 0.52 rectfill -0.655171 nxsetgray -0 23.400013 36 0.52 rectfill -0.655171 nxsetgray -0 23.920013 36 0.52 rectfill -0.655171 nxsetgray -0 24.440014 36 0.52 rectfill -0.655171 nxsetgray -0 24.960014 36 0.52 rectfill -0.655171 nxsetgray -0 25.480015 36 0.52 rectfill -N -grestore -3 L -0 nxsetgray -0 0 36 26 rectstroke -0 0 T -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Symbol -%%+ Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob71a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob71a.gif deleted file mode 100755 index 3f3d59fcd..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob71a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob75.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob75.eps deleted file mode 100755 index 085c44d09..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob75.eps +++ /dev/null @@ -1,1359 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: hecht7.24.create -%%Creator: Create -%%CreationDate: Thu Feb 13 20:43:04 1997 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 179 403 335 649 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(/cOUe&4"%._o$8Oh_94H\qG4BV_o!Qm^a]a-gShGm50rXAK6g.'$A3>(?PULn8sf!(UF(UE#U?.1Jb5hL -% j?uG+CjoE7Z4WifRm1LUO>:So+Io6D&]$kuRn@JOgqL!%eTrggQ'HJ=qT'!l3`(O[[nHFe9s -% >RY;RsW)s$=#3'!P8%*qXAg*&A>)C<8J0L9*8]RQ;/nPl/GAtti??t_eQ%aalGs3 -% ##Si?MF?D'CjqFQ,0j]BP,Yb_mrW>dr\@YP+/f'.bqAst0H$?F8TQXLejm&@SeW9S<&[e]', -% .S_M(U*,0e:`Z&gB6&-:nE+)3E1:QcX).gnJ"pdT/;26- -% *jLdi%$?4B^(il._"q<7#I<<3&"&c*]+/jG7?LhICK_FoR1uEJfg#*%>NJ_2[g -% tXb_6lZVa5>DCq.<%))BM]\J\n=4N>H)bE9h1@Do6t&@Jj-9R%")k,![+QuPDV6a -% Ya!O-4=A)`U[iEG,Fc>2>U-B9srMR^Wa^K"d*5:fO -% L9Hp#g.e^%V8>K:CX+\%0ED9lb@Y>ik6?\BH*kEJJ%oj6?h/"QFuQI_2*P2qL'YJW:,4ir\I -% =(R3FOY'!uo*=QC9];O9kGAPVHmnQ3*h`1Zp*]TGj"RlHs*:I'pEn9fK#:FS$M.5,I=N4k_! -% ul>uH6OT%a\\iimE)PY27m#:G1O!l"\fJCA"WUd-H;uAm.Ki$NO9W$HJ7*R. -% kaeph5UYj"QZ>1"iV1FkSeb>pL[e! -% Y;'W#lnW-3n5$&CM\V0sDfM!Q[YT%^:dU!!!js(d]>F+Fjbp!0tVu%&KQGQW>$P1S/QKQG,1 -% K+=:\fh?8EU`#/OU,X;F0'#fu6[?k73$;T]'*\l&RbjQYf=7,ht.%&[ei`UX<;Vf43cu_lrka>iq9'SQ(elnJ5&)SnqmF7^]Y -% `jQk5TCdUAFU8gg`R9#IG7[D3sd,TqY2ePsmrN@Qaj*Ti8r>,t?P.];*kkY?J8;*t1;W.>e# -% +FYG`UF'!+94_]+S=5jJDFpk$U8hCI+FpP2Q(TDnC+tW,eoWq%XNA\O/h+qA65dWOx -% EndEmbeddedGraphics N 1492 5d4 E 33 S 298e1 R 16a289c6 -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -179 403 156 246 rectclip -0 0 0.15 1 10 SU -[1 0 0 -1 233 613] concat -[1 0 0 1 1 1] concat -N -gsave N -36 36 0 0 ovalPath -clip -N -0 setlinewidth -gsave -0 nxsetgray -gsave -76.537048 76.537048 -27.468525 -31.068523 oval fill -grestore -0.044038 nxsetgray -gsave -72.710197 72.710197 -25.555099 -29.155098 oval fill -grestore -0.088076 nxsetgray -gsave -68.883347 68.883347 -23.641672 -27.241671 oval fill -grestore -0.132115 nxsetgray -gsave -65.056488 65.056488 -21.728247 -25.328245 oval fill -grestore -0.176153 nxsetgray -gsave -61.229637 61.229637 -19.814819 -23.414818 oval fill -grestore -0.220176 nxsetgray -gsave -57.402786 57.402786 -17.901394 -21.501392 oval fill -grestore -0.264214 nxsetgray -gsave -53.575935 53.575935 -15.987968 -19.587967 oval fill -grestore -0.308252 nxsetgray -gsave -49.749081 49.749081 -14.074542 -17.67454 oval fill -grestore -0.35229 nxsetgray -gsave -45.92223 45.92223 -12.161116 -15.761114 oval fill -grestore -0.396329 nxsetgray -gsave -42.095379 42.095379 -10.247689 -13.847688 oval fill -grestore -0.440367 nxsetgray -gsave -38.268524 38.268524 -8.334263 -11.934261 oval fill -grestore -0.484405 nxsetgray -gsave -34.441673 34.441673 -6.420837 -10.020836 oval fill -grestore -0.528443 nxsetgray -gsave -30.61482 30.61482 -4.507411 -8.107409 oval fill -grestore -0.572481 nxsetgray -gsave -26.787968 26.787968 -2.593985 -6.193983 oval fill -grestore -0.61652 nxsetgray -gsave -22.961117 22.961117 -0.680559 -4.280557 oval fill -grestore -0.660543 nxsetgray -gsave -19.134264 19.134264 1.232867 -2.367131 oval fill -grestore -0.704581 nxsetgray -gsave -15.307411 15.307411 3.146294 -0.453705 oval fill -grestore -0.748619 nxsetgray -gsave -11.480558 11.480558 5.05972 1.459721 oval fill -grestore -0.792657 nxsetgray -gsave -7.653707 7.653707 6.973146 3.373147 oval fill -grestore -0.836695 nxsetgray -gsave -3.826854 3.826854 8.886572 5.286573 oval fill -grestore -grestore -N -grestore -0.15 L -0 nxsetgray -gsave -36 36 0 0 oval 0.027778 0.027778 S s -grestore -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 233 469] concat -[1 0 0 1 1 1] concat -N -gsave N -36 36 0 0 ovalPath -clip -N -0 setlinewidth -gsave -0 nxsetgray -gsave -76.537048 76.537048 -27.468525 -31.068523 oval fill -grestore -0.044038 nxsetgray -gsave -72.710197 72.710197 -25.555099 -29.155098 oval fill -grestore -0.088076 nxsetgray -gsave -68.883347 68.883347 -23.641672 -27.241671 oval fill -grestore -0.132115 nxsetgray -gsave -65.056488 65.056488 -21.728247 -25.328245 oval fill -grestore -0.176153 nxsetgray -gsave -61.229637 61.229637 -19.814819 -23.414818 oval fill -grestore -0.220176 nxsetgray -gsave -57.402786 57.402786 -17.901394 -21.501392 oval fill -grestore -0.264214 nxsetgray -gsave -53.575935 53.575935 -15.987968 -19.587967 oval fill -grestore -0.308252 nxsetgray -gsave -49.749081 49.749081 -14.074542 -17.67454 oval fill -grestore -0.35229 nxsetgray -gsave -45.92223 45.92223 -12.161116 -15.761114 oval fill -grestore -0.396329 nxsetgray -gsave -42.095379 42.095379 -10.247689 -13.847688 oval fill -grestore -0.440367 nxsetgray -gsave -38.268524 38.268524 -8.334263 -11.934261 oval fill -grestore -0.484405 nxsetgray -gsave -34.441673 34.441673 -6.420837 -10.020836 oval fill -grestore -0.528443 nxsetgray -gsave -30.61482 30.61482 -4.507411 -8.107409 oval fill -grestore -0.572481 nxsetgray -gsave -26.787968 26.787968 -2.593985 -6.193983 oval fill -grestore -0.61652 nxsetgray -gsave -22.961117 22.961117 -0.680559 -4.280557 oval fill -grestore -0.660543 nxsetgray -gsave -19.134264 19.134264 1.232867 -2.367131 oval fill -grestore -0.704581 nxsetgray -gsave -15.307411 15.307411 3.146294 -0.453705 oval fill -grestore -0.748619 nxsetgray -gsave -11.480558 11.480558 5.05972 1.459721 oval fill -grestore -0.792657 nxsetgray -gsave -7.653707 7.653707 6.973146 3.373147 oval fill -grestore -0.836695 nxsetgray -gsave -3.826854 3.826854 8.886572 5.286573 oval fill -grestore -grestore -N -grestore -0.15 L -0 nxsetgray -gsave -36 36 0 0 oval 0.027778 0.027778 S s -grestore -0 0 T -grestore -0 0 0.15 1 10 SU -252 450 T -N -gsave N -0 0 m 0 144 l -clip -N -0 setlinewidth -gsave -0 nxsetgray -gsave -230.404251 230.404251 -114.902122 -86.402122 oval fill -grestore -0.044038 nxsetgray -gsave -218.884033 218.884033 -109.142014 -80.642014 oval fill -grestore -0.088076 nxsetgray -gsave -207.363831 207.363831 -103.381912 -74.881912 oval fill -grestore -0.132115 nxsetgray -gsave -195.843613 195.843613 -97.621803 -69.121803 oval fill -grestore -0.176153 nxsetgray -gsave -184.323395 184.323395 -91.861694 -63.361698 oval fill -grestore -0.220176 nxsetgray -gsave -172.803192 172.803192 -86.101593 -57.601593 oval fill -grestore -0.264214 nxsetgray -gsave -161.282974 161.282974 -80.341484 -51.841484 oval fill -grestore -0.308252 nxsetgray -gsave -149.762772 149.762772 -74.581383 -46.081379 oval fill -grestore -0.35229 nxsetgray -gsave -138.242554 138.242554 -68.821274 -40.321274 oval fill -grestore -0.396329 nxsetgray -gsave -126.722343 126.722343 -63.061169 -34.561169 oval fill -grestore -0.440367 nxsetgray -gsave -115.202133 115.202133 -57.301064 -28.801062 oval fill -grestore -0.484405 nxsetgray -gsave -103.681915 103.681915 -51.540955 -23.040955 oval fill -grestore -0.528443 nxsetgray -gsave -92.161705 92.161705 -45.780849 -17.280849 oval fill -grestore -0.572481 nxsetgray -gsave -80.641495 80.641495 -40.020744 -11.520743 oval fill -grestore -0.61652 nxsetgray -gsave -69.121277 69.121277 -34.260635 -5.760637 oval fill -grestore -0.660543 nxsetgray -gsave -57.601067 57.601067 -28.50053 -0.000531 oval fill -grestore -0.704581 nxsetgray -gsave -46.080856 46.080856 -22.740425 5.759575 oval fill -grestore -0.748619 nxsetgray -gsave -34.560646 34.560646 -16.98032 11.519681 oval fill -grestore -0.792657 nxsetgray -gsave -23.040432 23.040432 -11.220213 17.279787 oval fill -grestore -0.836695 nxsetgray -gsave -11.52022 11.52022 -5.460107 23.039894 oval fill -grestore -grestore -N -grestore -0.15 L -0 nxsetgray -0 144 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 287.5 532] concat -[2 0 0 1 0.5 1] concat -N -gsave N -9 18 0 0 ovalPath -clip -N -0 setlinewidth -gsave -0 nxsetgray -gsave -31.435648 31.435648 -13.017824 -12.117824 oval fill -grestore -0.044038 nxsetgray -gsave -29.863865 29.863865 -12.231933 -11.331932 oval fill -grestore -0.088076 nxsetgray -gsave -28.292084 28.292084 -11.446042 -10.546041 oval fill -grestore -0.132115 nxsetgray -gsave -26.720301 26.720301 -10.660151 -9.76015 oval fill -grestore -0.176153 nxsetgray -gsave -25.148518 25.148518 -9.87426 -8.974258 oval fill -grestore -0.220176 nxsetgray -gsave -23.576736 23.576736 -9.088368 -8.188368 oval fill -grestore -0.264214 nxsetgray -gsave -22.004953 22.004953 -8.302477 -7.402476 oval fill -grestore -0.308252 nxsetgray -gsave -20.433172 20.433172 -7.516586 -6.616585 oval fill -grestore -0.35229 nxsetgray -gsave -18.861389 18.861389 -6.730695 -5.830694 oval fill -grestore -0.396329 nxsetgray -gsave -17.289606 17.289606 -5.944804 -5.044803 oval fill -grestore -0.440367 nxsetgray -gsave -15.717825 15.717825 -5.158913 -4.258912 oval fill -grestore -0.484405 nxsetgray -gsave -14.146042 14.146042 -4.373021 -3.473021 oval fill -grestore -0.528443 nxsetgray -gsave -12.57426 12.57426 -3.58713 -2.687129 oval fill -grestore -0.572481 nxsetgray -gsave -11.002478 11.002478 -2.801239 -1.901238 oval fill -grestore -0.61652 nxsetgray -gsave -9.430695 9.430695 -2.015348 -1.115347 oval fill -grestore -0.660543 nxsetgray -gsave -7.858912 7.858912 -1.229457 -0.329456 oval fill -grestore -0.704581 nxsetgray -gsave -6.28713 6.28713 -0.443565 0.456435 oval fill -grestore -0.748619 nxsetgray -gsave -4.715348 4.715348 0.342326 1.242326 oval fill -grestore -0.792657 nxsetgray -gsave -3.143566 3.143566 1.128217 2.028218 oval fill -grestore -0.836695 nxsetgray -gsave -1.571783 1.571783 1.914108 2.814109 oval fill -grestore -grestore -N -grestore -0.15 L -0 nxsetgray -gsave -9 18 0 0 oval 0.055556 0.055556 S s -grestore -0 0 T -grestore -0 0 0.15 1 10 SU -252 522 T -N -gsave N -0 0 m 45 0 l -clip -N -0 setlinewidth -gsave -0 nxsetgray -gsave -63.020313 63.020313 -18.010155 -31.310156 oval fill -grestore -0.044038 nxsetgray -gsave -59.869297 59.869297 -16.434647 -29.734648 oval fill -grestore -0.088076 nxsetgray -gsave -56.718281 56.718281 -14.859138 -28.15914 oval fill -grestore -0.132115 nxsetgray -gsave -53.567265 53.567265 -13.283631 -26.583632 oval fill -grestore -0.176153 nxsetgray -gsave -50.416252 50.416252 -11.708123 -25.008125 oval fill -grestore -0.220176 nxsetgray -gsave -47.265236 47.265236 -10.132615 -23.432617 oval fill -grestore -0.264214 nxsetgray -gsave -44.11422 44.11422 -8.557108 -21.857109 oval fill -grestore -0.308252 nxsetgray -gsave -40.963203 40.963203 -6.9816 -20.281601 oval fill -grestore -0.35229 nxsetgray -gsave -37.812187 37.812187 -5.406092 -18.706093 oval fill -grestore -0.396329 nxsetgray -gsave -34.661171 34.661171 -3.830584 -17.130585 oval fill -grestore -0.440367 nxsetgray -gsave -31.510155 31.510155 -2.255076 -15.555077 oval fill -grestore -0.484405 nxsetgray -gsave -28.35914 28.35914 -0.679568 -13.979569 oval fill -grestore -0.528443 nxsetgray -gsave -25.208124 25.208124 0.89594 -12.404061 oval fill -grestore -0.572481 nxsetgray -gsave -22.057108 22.057108 2.471448 -10.828553 oval fill -grestore -0.61652 nxsetgray -gsave -18.906094 18.906094 4.046956 -9.253046 oval fill -grestore -0.660543 nxsetgray -gsave -15.755077 15.755077 5.622463 -7.677538 oval fill -grestore -0.704581 nxsetgray -gsave -12.604061 12.604061 7.197971 -6.10203 oval fill -grestore -0.748619 nxsetgray -gsave -9.453045 9.453045 8.773479 -4.526522 oval fill -grestore -0.792657 nxsetgray -gsave -6.30203 6.30203 10.348988 -2.951014 oval fill -grestore -0.836695 nxsetgray -gsave -3.151014 3.151014 11.924495 -1.375506 oval fill -grestore -grestore -N -grestore -0.15 L -0 nxsetgray -45 0 0 0 line -0 0 T -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -/Courier findfont 10 scalefont [1 0 0 -1 0 0] makefont -224 -exch -defineuserobject -224 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1096] concat -224 execuserobject setfont -0 nxsetgray -288 551 moveto (Marble) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -224 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1226] concat -224 execuserobject setfont -0 nxsetgray -279 610 moveto (Crystal) show -279 622 moveto (Ball) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -224 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 938] concat -224 execuserobject setfont -0 nxsetgray -279 466 moveto (Crystal) show -279 478 moveto (Ball) show -grestore -grestore -0 0 0.15 1 10 SU -297 522 T -N -gsave N -0 0 m 27 0 l -clip -N -0 setlinewidth -gsave -0 nxsetgray -gsave -37.833847 37.833847 -10.816923 -18.716923 oval fill -grestore -0.044038 nxsetgray -gsave -35.942154 35.942154 -9.871077 -17.771076 oval fill -grestore -0.088076 nxsetgray -gsave -34.050461 34.050461 -8.925231 -16.82523 oval fill -grestore -0.132115 nxsetgray -gsave -32.158772 32.158772 -7.979384 -15.879384 oval fill -grestore -0.176153 nxsetgray -gsave -30.267078 30.267078 -7.033538 -14.933538 oval fill -grestore -0.220176 nxsetgray -gsave -28.375385 28.375385 -6.087692 -13.987692 oval fill -grestore -0.264214 nxsetgray -gsave -26.483692 26.483692 -5.141846 -13.041845 oval fill -grestore -0.308252 nxsetgray -gsave -24.592001 24.592001 -4.196 -12.096 oval fill -grestore -0.35229 nxsetgray -gsave -22.700308 22.700308 -3.250154 -11.150153 oval fill -grestore -0.396329 nxsetgray -gsave -20.808615 20.808615 -2.304307 -10.204307 oval fill -grestore -0.440367 nxsetgray -gsave -18.916924 18.916924 -1.358461 -9.258461 oval fill -grestore -0.484405 nxsetgray -gsave -17.02523 17.02523 -0.412615 -8.312614 oval fill -grestore -0.528443 nxsetgray -gsave -15.133538 15.133538 0.533231 -7.366768 oval fill -grestore -0.572481 nxsetgray -gsave -13.241846 13.241846 1.479077 -6.420922 oval fill -grestore -0.61652 nxsetgray -gsave -11.350153 11.350153 2.424924 -5.475076 oval fill -grestore -0.660543 nxsetgray -gsave -9.458461 9.458461 3.37077 -4.52923 oval fill -grestore -0.704581 nxsetgray -gsave -7.566769 7.566769 4.316616 -3.583384 oval fill -grestore -0.748619 nxsetgray -gsave -5.675076 5.675076 5.262462 -2.637537 oval fill -grestore -0.792657 nxsetgray -gsave -3.783384 3.783384 6.208308 -1.691691 oval fill -grestore -0.836695 nxsetgray -gsave -1.891691 1.891691 7.154155 -0.745845 oval fill -grestore -grestore -N -grestore -0.15 L -0 nxsetgray -27 0 0 0 line -0 27 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -207 522 T -N -gsave N -0 0 m 45 0 l -clip -N -0 setlinewidth -gsave -0 nxsetgray -gsave -63.020313 63.020313 -18.010155 -31.310156 oval fill -grestore -0.044038 nxsetgray -gsave -59.869297 59.869297 -16.434647 -29.734648 oval fill -grestore -0.088076 nxsetgray -gsave -56.718281 56.718281 -14.859138 -28.15914 oval fill -grestore -0.132115 nxsetgray -gsave -53.567265 53.567265 -13.283631 -26.583632 oval fill -grestore -0.176153 nxsetgray -gsave -50.416252 50.416252 -11.708123 -25.008125 oval fill -grestore -0.220176 nxsetgray -gsave -47.265236 47.265236 -10.132615 -23.432617 oval fill -grestore -0.264214 nxsetgray -gsave -44.11422 44.11422 -8.557108 -21.857109 oval fill -grestore -0.308252 nxsetgray -gsave -40.963203 40.963203 -6.9816 -20.281601 oval fill -grestore -0.35229 nxsetgray -gsave -37.812187 37.812187 -5.406092 -18.706093 oval fill -grestore -0.396329 nxsetgray -gsave -34.661171 34.661171 -3.830584 -17.130585 oval fill -grestore -0.440367 nxsetgray -gsave -31.510155 31.510155 -2.255076 -15.555077 oval fill -grestore -0.484405 nxsetgray -gsave -28.35914 28.35914 -0.679568 -13.979569 oval fill -grestore -0.528443 nxsetgray -gsave -25.208124 25.208124 0.89594 -12.404061 oval fill -grestore -0.572481 nxsetgray -gsave -22.057108 22.057108 2.471448 -10.828553 oval fill -grestore -0.61652 nxsetgray -gsave -18.906094 18.906094 4.046956 -9.253046 oval fill -grestore -0.660543 nxsetgray -gsave -15.755077 15.755077 5.622463 -7.677538 oval fill -grestore -0.704581 nxsetgray -gsave -12.604061 12.604061 7.197971 -6.10203 oval fill -grestore -0.748619 nxsetgray -gsave -9.453045 9.453045 8.773479 -4.526522 oval fill -grestore -0.792657 nxsetgray -gsave -6.30203 6.30203 10.348988 -2.951014 oval fill -grestore -0.836695 nxsetgray -gsave -3.151014 3.151014 11.924495 -1.375506 oval fill -grestore -grestore -N -grestore -0.15 L -0 nxsetgray -45 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -252 594 T -N -gsave N -0 0 m 0 45 l -clip -N -0 setlinewidth -gsave -0 nxsetgray -gsave -72.013611 72.013611 -35.706806 -27.006805 oval fill -grestore -0.044038 nxsetgray -gsave -68.412933 68.412933 -33.906467 -25.206465 oval fill -grestore -0.088076 nxsetgray -gsave -64.812248 64.812248 -32.106125 -23.406124 oval fill -grestore -0.132115 nxsetgray -gsave -61.211571 61.211571 -30.305786 -21.605785 oval fill -grestore -0.176153 nxsetgray -gsave -57.610889 57.610889 -28.505445 -19.805445 oval fill -grestore -0.220176 nxsetgray -gsave -54.010208 54.010208 -26.705105 -18.005104 oval fill -grestore -0.264214 nxsetgray -gsave -50.409527 50.409527 -24.904764 -16.204763 oval fill -grestore -0.308252 nxsetgray -gsave -46.808846 46.808846 -23.104424 -14.404424 oval fill -grestore -0.35229 nxsetgray -gsave -43.208168 43.208168 -21.304085 -12.604083 oval fill -grestore -0.396329 nxsetgray -gsave -39.607487 39.607487 -19.503744 -10.803742 oval fill -grestore -0.440367 nxsetgray -gsave -36.006805 36.006805 -17.703403 -9.003403 oval fill -grestore -0.484405 nxsetgray -gsave -32.406124 32.406124 -15.903063 -7.203062 oval fill -grestore -0.528443 nxsetgray -gsave -28.805443 28.805443 -14.102722 -5.402722 oval fill -grestore -0.572481 nxsetgray -gsave -25.204763 25.204763 -12.302382 -3.602382 oval fill -grestore -0.61652 nxsetgray -gsave -21.604082 21.604082 -10.502042 -1.802041 oval fill -grestore -0.660543 nxsetgray -gsave -18.003403 18.003403 -8.701702 -0.001701 oval fill -grestore -0.704581 nxsetgray -gsave -14.402721 14.402721 -6.901361 1.798639 oval fill -grestore -0.748619 nxsetgray -gsave -10.802041 10.802041 -5.101021 3.598979 oval fill -grestore -0.792657 nxsetgray -gsave -7.20136 7.20136 -3.300681 5.39932 oval fill -grestore -0.836695 nxsetgray -gsave -3.60068 3.60068 -1.500341 7.19966 oval fill -grestore -grestore -N -grestore -0.15 L -0 nxsetgray -0 45 0 0 line -90 0 45 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -252 414 T -N -gsave N -0 0 m 0 36 l -clip -N -0 setlinewidth -gsave -0 nxsetgray -gsave -57.617012 57.617012 -28.508507 -21.608505 oval fill -grestore -0.044038 nxsetgray -gsave -54.73616 54.73616 -27.068081 -20.168079 oval fill -grestore -0.088076 nxsetgray -gsave -51.855312 51.855312 -25.627657 -18.727655 oval fill -grestore -0.132115 nxsetgray -gsave -48.974461 48.974461 -24.187231 -17.28723 oval fill -grestore -0.176153 nxsetgray -gsave -46.093609 46.093609 -22.746805 -15.846804 oval fill -grestore -0.220176 nxsetgray -gsave -43.212761 43.212761 -21.306381 -14.406379 oval fill -grestore -0.264214 nxsetgray -gsave -40.331909 40.331909 -19.865955 -12.965954 oval fill -grestore -0.308252 nxsetgray -gsave -37.451057 37.451057 -18.425529 -11.525528 oval fill -grestore -0.35229 nxsetgray -gsave -34.570206 34.570206 -16.985104 -10.085103 oval fill -grestore -0.396329 nxsetgray -gsave -31.689358 31.689358 -15.54468 -8.644678 oval fill -grestore -0.440367 nxsetgray -gsave -28.808506 28.808506 -14.104254 -7.204252 oval fill -grestore -0.484405 nxsetgray -gsave -25.927656 25.927656 -12.663829 -5.763827 oval fill -grestore -0.528443 nxsetgray -gsave -23.046806 23.046806 -11.223404 -4.323402 oval fill -grestore -0.572481 nxsetgray -gsave -20.165955 20.165955 -9.782978 -2.882977 oval fill -grestore -0.61652 nxsetgray -gsave -17.285105 17.285105 -8.342553 -1.442551 oval fill -grestore -0.660543 nxsetgray -gsave -14.404254 14.404254 -6.902128 -0.002126 oval fill -grestore -0.704581 nxsetgray -gsave -11.523403 11.523403 -5.461702 1.438299 oval fill -grestore -0.748619 nxsetgray -gsave -8.642552 8.642552 -4.021277 2.878725 oval fill -grestore -0.792657 nxsetgray -gsave -5.761702 5.761702 -2.580852 4.31915 oval fill -grestore -0.836695 nxsetgray -gsave -2.880852 2.880852 -1.140427 5.759575 oval fill -grestore -grestore -N -grestore -0.15 L -0 nxsetgray -0 36 0 0 line --90 0 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -189 522 T -N -gsave N -0 0 m 18 0 l -clip -N -0 setlinewidth -gsave -0 nxsetgray -gsave -25.250742 25.250742 -7.225371 -12.425371 oval fill -grestore -0.044038 nxsetgray -gsave -23.988205 23.988205 -6.594102 -11.794103 oval fill -grestore -0.088076 nxsetgray -gsave -22.725668 22.725668 -5.962834 -11.162834 oval fill -grestore -0.132115 nxsetgray -gsave -21.463131 21.463131 -5.331565 -10.531566 oval fill -grestore -0.176153 nxsetgray -gsave -20.200594 20.200594 -4.700296 -9.900297 oval fill -grestore -0.220176 nxsetgray -gsave -18.938057 18.938057 -4.069028 -9.269029 oval fill -grestore -0.264214 nxsetgray -gsave -17.67552 17.67552 -3.437759 -8.63776 oval fill -grestore -0.308252 nxsetgray -gsave -16.412983 16.412983 -2.806491 -8.006492 oval fill -grestore -0.35229 nxsetgray -gsave -15.150445 15.150445 -2.175222 -7.375223 oval fill -grestore -0.396329 nxsetgray -gsave -13.887908 13.887908 -1.543954 -6.743954 oval fill -grestore -0.440367 nxsetgray -gsave -12.625371 12.625371 -0.912685 -6.112686 oval fill -grestore -0.484405 nxsetgray -gsave -11.362834 11.362834 -0.281417 -5.481417 oval fill -grestore -0.528443 nxsetgray -gsave -10.100296 10.100296 0.349852 -4.850148 oval fill -grestore -0.572481 nxsetgray -gsave -8.837759 8.837759 0.98112 -4.21888 oval fill -grestore -0.61652 nxsetgray -gsave -7.575222 7.575222 1.612389 -3.587611 oval fill -grestore -0.660543 nxsetgray -gsave -6.312685 6.312685 2.243658 -2.956343 oval fill -grestore -0.704581 nxsetgray -gsave -5.050148 5.050148 2.874926 -2.325074 oval fill -grestore -0.748619 nxsetgray -gsave -3.787611 3.787611 3.506195 -1.693806 oval fill -grestore -0.792657 nxsetgray -gsave -2.525074 2.525074 4.137463 -1.062537 oval fill -grestore -0.836695 nxsetgray -gsave -1.262537 1.262537 4.768732 -0.431269 oval fill -grestore -grestore -N -grestore -0.15 L -0 nxsetgray -18 0 0 0 line -180 0 0 arrow -0 0 T -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Courier diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob75.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob75.gif deleted file mode 100755 index e2e50f592..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob75.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob77.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob77.eps deleted file mode 100755 index 2963147c2..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob77.eps +++ /dev/null @@ -1,491 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: veltime3.create -%%Creator: Create -%%CreationDate: Thu Oct 10 09:25:06 1996 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 42 236 584 743 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr()SK#u#+AJ7ZpkUmV8AmLg4Se:W`)C&n.9?jY\j](^6C0/ZaAaXg!F93P6PD5YMRj3$QmC&?*ma$%,?0b$?tq$8cUUUiq%f[O?q_/.(W1_ -% "Ge1Qd"72i6$*`u@0R'.L]U=/k`f0\N`FY.BiLH(!&`A0C*XG#_rf@a9QY2S8Tn]Fp#f%l9P/UN3.jgC9N -% &2lSMN0gq3!PI2?:k7iIZM@>,[0]Z-O(^ig]r]k\H& -% "V1V^F+7QEHHM;Wr-hC2m)HPXukS::_]^aaFG3[7c6D!4b+.oML!)eI5*jH'XX1-cuF"L,ZC -% R]\\QVc$98>,\6#Be!hqIVCD7XV*;n1E=at6iqut_[HU\c3^SCG;cF5L;s&r-sWh*i@KrlY[ -% T2mg.$BR-38e(!0brQC0nL,XdbcXmXcF^Wq*SJ^`\^IK7FO2<\[>^!RjVZKE`6>CkrI_[0d< -% Q6Q>R6fkt"c!R.rCbCHc)^q?'t3Ij+e$:!Dj40DIu-6+@6J.oeL4peQKjs2eZ.rj=N8\RZNj]R=U -% /^J9CKVs/_KQAMFI*q(Pqla+:tr2hXdT\^Ziur8/,c'';e$V0VmY9BV<9&)TS&^2.;-%X2Fu -% n6%K^Q,(AJiYPgPYtRHca8Q:J\ZeI:mdpPfa^dXaBnuAkIW_Tmsk>(>9tC'U -% f:;[!$k6hAUoo[-AemQgGp@T6K>p#ZHlbV\7#ld&dTu\ct777?a4!9J0J/g28W"\T.9@26Pu -% O2!MGB_0G=`:KZIg2^fV`!!ItE6_.bFT7-HlO1@P!g'3]W*qU0LAGd1"-,qsiSKJ<`>35Z=% -% aWrRg((NJ]_/6Rnef`i.%TiR9&A6Z7*e$@*\LB(+#[e&Nk'rta(O+mW7x -% EndEmbeddedGraphics N 1219 4c3 E 40 S 202d6 R c0647e0e -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -42 236 542 507 rectclip -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 43 238] concat -0 0 0 1 10 SU -gsave -/Times-Bold findfont 18 scalefont [1 0 0 -1 0 0] makefont -162 -exch -defineuserobject -162 execuserobject setfont -1 227 T -99 flipV -7.5 49.5 T --90 R --48.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(VELOCITY) show -0 0 T -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 21 1] concat -0 0 5 1 10 SU -20 41 T -N -5 L -0 nxsetgray -0 448 0 0 line -0 0 T -grestore -0 0 3 1 10 SU -20 41 T -N -3 L -0 nxsetgray -476 0 0 0 line -0 0 T -grestore -0 0 3 1 10 SU -20 181 T -N -3 L -0 nxsetgray -0 0 m -476 252 l -s -grestore -0 0 3 1 10 SU -48 41 T -N -3 L -0 nxsetgray -0 0 m -450 239 l -s -grestore -0 0 0 1 10 SU -gsave -/Times-Bold findfont 24 scalefont [1 0 0 -1 0 0] makefont -284 -exch -defineuserobject -284 execuserobject setfont -173 1 T -19 flipV -33.5 9.5 T --32.5 8 T -N 0 0 m -0 nxsetgray -0 0 m -(TIME) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -162 execuserobject setfont -1 33 T -15 flipV -5.5 7.5 T --4.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(0) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -162 execuserobject setfont -3 487 T -11 flipV -5.5 5.5 T --4.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(v) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -162 execuserobject setfont -500 22 T -14 flipV -4 7 T --3 5 T -N 0 0 m -0 nxsetgray -0 0 m -(t) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -/Helvetica-Bold findfont 18 scalefont [1 0 0 -1 0 0] makefont -285 -exch -defineuserobject -285 execuserobject setfont -501 429 T -15 flipV -4 7.5 T --3 6 T -N 0 0 m -0 nxsetgray -0 0 m -(I) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -285 execuserobject setfont -503 275 T -15 flipV -6.5 7.5 T --5.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(II) show -0 0 T -grestore -grestore -grestore -grestore -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Times-Bold -%%+ Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob77.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob77.gif deleted file mode 100755 index 64d6fb66a..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob77.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob81a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob81a.eps deleted file mode 100755 index 002c4ae32..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype09/prob81a.eps +++ /dev/null @@ -1,656 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: VelTime1a.create -%%Creator: Create -%%CreationDate: Thu Oct 10 09:20:35 1996 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 33 129 580 651 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(6$2&O3X*;C+c9TY'O!-n(d.>T@fr_fo[5]_hl*&2(aBJP9LQ -% o&I&d(/A;N)>H9RW.uEPN%0@Aa"dJ.[6l/9Iqt'Ortl=J3^=?BKBq;GM5c*c(:biQI?sNR54 -% OcI!@>aiPaiP-,ea/=0?P:pT=Wa2@Z_2b2NoX.G3VMK*`uGb22C8!;bcF?(.X>)?BtO']*RKHNAa#7G)01*o;\N!?_+#J8F]&MHR1-BY.\R7_81 -% mgQ1)2/:lpd:Z_Z9aB>eq"Rgi:FfB,G+(l'Pa[UBi:gG9riZ6nfof;8kad"G-p[kYZ&c5GYs -% dhJf;&OPbL&R"F4G57V;`@&G^B;]>%k0n>+\/=FU"0a&]>D'B*jS0Q!W_8PEOND@c!5LlC_o,[;E5HHI,BQ6jLR`CTBL/;ZAbpJCOCcZB5`n)Kg"dbr(_DQY -% K;?:W,XVu=I]lVCZ53l_9BQpNNc=$Mh#Tm -% (V4YPXbhMX=[V?FtaJUaFD38l%d+Br`lNQ4$2^PNE1TOgn/jOh:ST']d"b9kJNiSBgSk=<9' -% TBQ(3m53o'A#kE)m%3l@Zph%kef^2Io2gRo,FpSFaT:4K2]N9Wr94],1Q!j]'r!+>;H#HW -% ksNf.9RBm)ne@;ADEiDt'KJtt[(/[(Fe9-"/[QWAY$YsJM3 -% )-@:U2?[)Xb[La#"ii_01.&K*!j]X0!+&LB4421>)pXd2Fr[s:%,363Cabt92,8HerA0 -% `N?!a#`eP$eEC-:PsH:P,l'YTSNH.oqsoWNp"UK9.#k+IcX:J8*;*B=E7!.gQ`KVm.m)7m*^U7&ju#/7+ZTMNSHRG1-k2d%TT8h;(u7sKRjdYY[Vh -% +3S6'OMr+f.B7"EKFi_U]CN.#tNDG"j)/34oR0-.H&&K!i;6L"u1`Jbi8q\&:k*T!S"LS@M& -% !ILEh=A$Y8`L(kZeI4f7b%d96(76&925;n:&3M:)fh8[rZ18Bpc67d5.WT)1X$K&;Wgb1k*nQ=rG47-8\UnN?bg!.KUaF0pEdlY.2_-"> -% p0SP^jEWi.NC!oEbbf8/8.$JImVKLd4X&'m0-*?"'VR.b]ib&H$R2^^1*^_?%YBXZF*F!DWoN' -% :gH<"ZS4;::/qUi@ktISk( -% S4;YDY+cfTKEm+5!0.,!`jlMW$qG'OG\V#c:BkWlcpEdb+sRMN9E91TObB6:'$0`U.)-aZ9c -% .P$!8d'W/)?S'(4XCBab -% SDEd/_-Q5`]9MJ#8H1dhiuC)ghAo!?<:PV`>UsZ(_ -% 6V]#W=9sAU"#tElFMN(aC[ULH.!\NXb!-\?N2-^6.X@^!C20dd9pHUBL3i5`m_2X-I\7jIV@Z6c\?+Q+shFpRBqS-T3EC61:Ya< -% lUlYk]);.,0aA[C.jo\VGaAcV6,XC`F=9=Yf -% %7G)(.U=qg#t0<)e\fZf3$m1`,QRIhD6d)@Di3P@b_@Z4:nrknlIW#+fpt9W(;Ul\TKa>6%,&dGCQ]rL!sAT -% XQ7RQmBF-ugb-p]!ZXV>)SK#u#+AJ7ZpkUmV8AmLg4Se:W`)C&n.9@Qm]&cE*R0fep!@j=I+ -% <*H[1atd>%-=0OH"*da,#b-jQ(T*OH+#.@B)bJdElFb20,MpU&7!9g_,S!gQtFZD^AoC-"Ko`+** -% T\2V.+MUiM@>C7hgV0Q!?)'8i\i`Ep];0MbH!2gA_AqX\hG\2[LG51#%VB' -% +\'*1c\6(P75QKOgJjYgV.K*qIE5DABIW/kTm3=%,T'Q]g.W162RV;OK\9FXdha!m9R^)!`7 -% >^?^C[B#VhC7;G/&qXg@=N*Q+&%&e)S\OT<ZD!W$`>!@KpIU^P]Xf8Kbu\!m_*nTu(18h,ARJf06^!Os&RR[7"E5pg%EU5i6%"Ai`6pql-u>VHC$BO[7n5 -% gpK+jR=!T#rD\%)f4STOW.jK78X)/j.1s&S5eK6-7T/8$NMXn0XcnRp8W&b1p:"dCl$fBBI; -% L75XNmjG8b@%j&4MDI01&MhopZYp2kfiUsYbO!H`ck'S2Li$(lTcZ[7J(<74&Z:+-U&'.Q,I -% -]=/V8boX/SZQPe`TXg2qeGUqZ]1^A6eMQ`^IArE4\^1=\@sn'24lS8csF"d -% qWP7K=&\^aiZPKA>O@jTDnjc;6IKSFnco#T(RV(.3Vf+F6>/)'FoJhBO&\?5GI"0Lc6QMLc5 -% 8Ai3\iksH3,"9npi"TJ48ATKl:HeC2 -% DYmoct>34q3lf1EaN>+Ar[3*!,ol?/E&-H6V!S?M67M>("LPt1CBsg-F9KA%"nXLb"ks)<*t -% #FWNfK=W,1oUOfjYiTC:s4tQSGegI -% 3GAgt,h`r*'[+K]'`K@g4 -% %`sn?DsTn)HSjUbRjp$ -% 69W?jM$/I("YqVP"9_E&JesBED+hpcNPRl;lOqm+Y%SP_X9K(44(ZT#lmF@fRB]+#99G_,/. -% fT`!Q#ZV4/+uql\#6RWdp>B\-66n$pn1+!!Y*I`^BeLJ2'#SO;3YgKI70O#untIQESjl$E,W -% i-#d:[I8!riZVJTa9&LSZ_a>OF?kPdOU(JKK:+@(6M(t+.UoCl$$"SViJbY"WGjJPpTpCE7r -% A9s1:#llgW<7cdJIDN%6jd,%celoJWB0gm/!K4-=[$7?,`mio"JTs!hXlSQXHt`82pJI)i!q -% OdJjF($$sa^%PFW`Ug.lk=jI5e^E%l'NXXO=>!'q`F!J#.,OLW'FAdsHBDIT["f[1"V]?,R* -% GsD,XXM4!5omNtT?FsrNo_4+`d-[bGSCc$W2*bNWE:P$riTVC@OP6fI5?u"`Wie:=,J8#pD( -% LPd0;6ILg$La9]Z9(#FL`8q1X1d1aO+]\4o.I)-4dA;3eq[]X*cO&#6(K;I.9qW4?=3c/m]6I\2+_6pT5r7PFVY$4L'AGd65.<0ok_+;B\*B7"HKVoSg="T]!jF)8U\FU9!%)mjR?#1_ZWWu@0R?><#ZdjPJTl%8ep=9X"7atq$" -% +ZD:k'nf?fRDTg]r$W-[3iJ:.l^[a?Y:I#%d+UDpmcsW5Wd"#nP!2^n>&nlR&7qPDLK:iEr0aDiu0`W7#J -% epq1)V9Fk#::K.HU8Nl+6PJYuJ"$Fbn^kC%O5IrcDHF? -% k0NOGCp?LBqRH)ZtHPU4OJm@8AS9Ca`VhfQP?gIJrnt=9o)W.#jaqMdP+a@>HD\Q\)R[4=X_ -% W[pTpOfJm6&F;>^&Xi+E.[=Q_F(8!C7&f*[$KjB++(7u6G\mQ9NAOr=V!l%)._373.3#)R(' -% iL/Vi,qciVfW*<<_PqiD,k'2`]fLB3 -% JFG,u9`^cQp7lNFC_]b.uUe#$!HU9_-Wp'YHe!eu,aK-WDa^;%S9W1eZ#_)TT7^%0&!7$'aW>D<=_Nq(94BJb,U -% '9>p!VaY_o9KWet%"Wo5n:\Jbjgl@Qb`Hq\J_?l_-NfQ#^tB7,rM`qqOT:]W!8Qgq%0Yc -% g8?kJXAMT"p&p=,0En!3@I5M,i]=!3MQ:,g:03me\V6a0KrpV:@r"sER1KQ'Y_FriW,W0"O/ -% [cK(EHs=#XC'R"TS[#2M;0dWh/F7JJaHJ6P]h*G1sq;#?s%on;SU5Q;bk^P3@e>(OeV)YlJ_ -% E&HDq=0F3TP"rGWFfT#D`k//g(N<,O9T/cj9`g2<4luQ?%-3XNV$;SYR+Z4$&@hdlQip6 -% iJ5CkAB[`\MP%8E[!!)![J1EQ2+UDiSl5^N3D;DsI,FTLG.8pEm&]Y$23![5HJ"D7>EpSi#i -% 4ja"&n8(h/_\Bt.fn!R.$uK06O$Q.ALb*k:[3H=!i@M6&5U+hj*jZm!S?46h[5-32f"lBBa> -% 93;1OaY0k93h!g(q@EX$ru_Aq%D#b_98NXHKH2aMKd>AA,TP,:sA3JIfFWl./$+AQG0fOu3!0Dfg>br-Cb'<"_E!gs[_'`S9$eRrQ=RlI-T77"[(tX<<=bpHoLHXjoA.Vp -% 8i*6t2#lo^4"B((+WMpNN*3O^a!/\)9[TeX"Xk4h;EP].i!AgTTj,F)(6H"oFc"5ammCa=nH -% j\NH!*E\^)'tW!60[HA;^uH,A6;#2+_VNiW$Rg?)Nl!kT!UDsCMOEc:)!u(W*>cC[Krk'1=B -% iG?_n/3BTIfNH"\K1fI%%,J[i$nIud>SWL&lNR45!B/f;*pS]AU#^DL*2.T8kf8!ESD/`#oc(_G-JuL8 -% +tSY/:"e\AFMXB:dT.MIR4a"u,8Q6I&Y_I6rIq<$.uOeqKlqle'dK[Kj\X48ss[0d-ZW -% 8\f%EUF)"s\Sf[X:/s#Dn$84gO1i\WsAPa*A-C#!IT/sn'!EUDr!.Z_.qJI0lJlN&76iN#[j8Q`53,e&opfZ%(Qcet<#0AV`JH6C,>7Q(e3F[G&/7SPB:qQ2e5\R6 -% \Hqp!!LD>g5Ve\gO:(4FfsQSf@=XrX*Iuqjf+"&MK03_nFFuk'Nj07/6Bj!#q:9@kOL@lib,<'Y3Zen_5&ei_r&QfS9\,]3G@ -% 4a#O5'n8eXF?'Mo:[fh::&Gea\q$s;]oY'ZflYBk7(^*'QaDZ_'X2G6,(r?K?0N-Md&dkDQ[ -% dCcQK_^ec$Q8.n)RdqG02`kqF\!AkAl)9gE*Nr;?lsQ69nZ$D*Y^'2`%7mlJ-,q9grq01)*Z -% Di=iB87/\&^mI;q=>X5=+<_1gC4d7+$JSQl6;`&If(No%ZM+]UJ=='^qnl-j,GBBD]+C9Vn7 -% dE*?m!!fQ9U(SBkKF7jt$t9f6!.jXW#SC4V7tCk1dAR3]rmf&&V.:k`6-fsO18G=l!\DXt!! -% M/_M>o#_3/WZQ^H/%l:,^Ne"ERIk^k;q7a?USpJB&Q,OIA9+!#l;UJ,lHC0qr)RJrCq."6/k -% OQbZ!Ph0FVm`_ZjNTR^d$TYh`(0S^?q/--((:(FddKJKdJ%S-=d(k./>dV+7PeOU,^>S.;d> -% _)t$F;Y\tABV_AZA[$qcl"Z[K-)5W"[Y2f%g7&@RmD%`"s\d33&CmTp]2*;K7uG;Oj8*X'39 -% `fBhJ[3;jh+cL.CR^495uoHcFtJg`Z_gOQ$InqU7S1H&k7Z-F*caU7i*WkSPX=LfIF6!h,2N -% =C_FJkCjUJALhK0g3=oNW[*O(XT:0BB)t^T+:q[XGIls2;SI0+^4t;WdUVXM>=2Q[a$6%/q1T<)Go?O;YPi&7d2dOgnjDXV8keI&N"$KLa -% !pD2TAk9#aPlb3X%I\;T7/pVOZWqrsAf[c3=7_+CgP6;6M=+/Bo$5A':Is?p4ec+C&md/[u\ -% ?)dY1gn`XKqj!qfS74=&BlJK#Kl2f+GK*&PFj,kOs0!^c/K#tZ8"/8rH6s'XP(1q)Na*GrON -% hErB$0>(#JBt#tnU)>7iY`?>bB])LU'8X%12@Q?K8;@@-r#:d-X"p7[WAAq"@JsXTEMIU4:"l%!X,"lm)GWUWu<*b`MO\SI0-*p -% G<`^iLR*+Nqhem22qZMb10D:QOW#i75i@:Yos[#!74*NZcG[_fPg;L-Lp+E]JOgEd=`*Be*Z -% 3,o(3@M$Q>auTgCtSldi`[jEg70pf*QBdYSiIr4k#qDlMaeX!hfr$^q7r(G.#>BcLH5prSqK -% "3GFShJs)aRi0[Pc\;c5Uq0r2!INDCk`:.npMnR,@QaO3#?0gd,M$Z*p`kkF+FFq]Lj`RGIb -% fc"?XLGSMnd5@J/LNa6HMQa5S@2d+_>pXZ@'GnUJ:.V6J2&J'o?dcTZg99G2a5X5#db-*p$` -% _'bT4F',;((WHsA@_Z$r\``"#uNH7h)Kn+<3bct@-@gZglpJNs<>Gd#cWK6Xo6'5]C\&'3e/ -% hELN2JEnK]qfsDgqIQinAZ]hA\]>3_g[DiMmgOXKM4aQme2X=jI&iohc"C[o(O`qQIIcQ@el -% R@R(H-i[ID,r3S-E0U='X*=IKC?SWWsOLLfa!LFRUZ&:#pis(O"FY4VOcD(8u2h-%+:^JRN( -% m-^+NpYZT1`?tT"Z$Q+@@G]jUrJs[8YPC&^OJ">,F05$#73.>XVK819L(P%2+-\iu"LtZ?oN[BU6 -% hu]F6K^RoV0aNRk\;PNE#XB7im(jrR_KS'P$Kb -% sfF=9jE8$#^E5Ml;0?fRQ9oM5,]\MuXXCG`;(0KWjTh)X'W7pa$ki#h4)mS+f&,Et[gFNH,a -% >FJV7mBF*ra)QV@[Jac::P`LP!x -% EndEmbeddedGraphics N 2728 aa8 E f6 S 4d41c R d58a84e1 -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -45 150 519 437 rectclip -0 nxsetgray -0 0 0.196006 1 10 SU -gsave -[1 0 0 1 46 204] concat -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 18 1] concat -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 1 2] concat -0 0 0.15 1 10 SU -9 117 T -N -0.15 L -0 nxsetgray -414 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -27 9 T -N -0.15 L -0 nxsetgray -0 306 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 279 T -N -0.15 L -0 nxsetgray -18 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 9 T -N -0.15 L -0 nxsetgray -18 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 171 T -N -0.15 L -0 nxsetgray -18 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 225 T -N -0.15 L -0 nxsetgray -18 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 63 T -N -0.15 L -0 nxsetgray -18 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -99 99 T -N -0.15 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -171 99 T -N -0.15 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -243 99 T -N -0.15 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -315 99 T -N -0.15 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -387 99 T -N -0.15 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -grestore -grestore -0 0 0 1 10 SU -gsave -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -154 -exch -defineuserobject -154 execuserobject setfont -98 73 T -12 flipV -5 6 T --4 5 T -N 0 0 m -0 nxsetgray -0 0 m -(1) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -170 73 T -12 flipV -5 6 T --4 5 T -N 0 0 m -0 nxsetgray -0 0 m -(2) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -242 73 T -13 flipV -5 6.5 T --4 5 T -N 0 0 m -0 nxsetgray -0 0 m -(3) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -314 73 T -12 flipV -5 6 T --4 5 T -N 0 0 m -0 nxsetgray -0 0 m -(4) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -386 73 T -13 flipV -5 6.5 T --4 5 T -N 0 0 m -0 nxsetgray -0 0 m -(5) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -8 163 T -12 flipV -5 6 T --4 5 T -N 0 0 m -0 nxsetgray -0 0 m -(1) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -8 109 T -13 flipV -5 6.5 T --4 5 T -N 0 0 m -0 nxsetgray -0 0 m -(0) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -8 217 T -12 flipV -5 6 T --4 5 T -N 0 0 m -0 nxsetgray -0 0 m -(2) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -8 271 T -13 flipV -5 6.5 T --4 5 T -N 0 0 m -0 nxsetgray -0 0 m -(3) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -8 325 T -12 flipV -5 6 T --4 5 T -N 0 0 m -0 nxsetgray -0 0 m -(4) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -8 55 T -12 flipV -7.5 6 T --6.5 5 T -N 0 0 m -0 nxsetgray -0 0 m -(-1) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -8 1 T -12 flipV -7.5 6 T --6.5 5 T -N 0 0 m -0 nxsetgray -0 0 m -(-2) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -28 317 T -N -0.15 L -0 nxsetgray -0 54 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -10 335 T -N -0.15 L -0 nxsetgray -18 0 0 0 line -0 0 T -grestore -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -427.725403 80.840393 T -20 flipV -43.5 10 T -0.7172 1.306707 S --59 4 T -N 0 0 m -0 nxsetgray -0 0 m -(Distance \(metres\)) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -1 207 T -111 flipV -8 55.5 T --90 R --54.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(Force \(newtons\)) show -0 0 T -grestore -grestore -grestore -grestore -0 0 2 1 10 SU -92 432 T -N -2 L -0 nxsetgray -72 0 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -236 324 T -N -2 L -0 nxsetgray -72 0 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -308 270 T -N -2 L -0 nxsetgray -0 54 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -308 270 T -N -2 L -0 nxsetgray -72 0 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -380 270 T -N -2 L -0 nxsetgray -0 54 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -380 324 T -N -2 L -0 nxsetgray -144 0 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -162 432 T -N -2 L -0 nxsetgray -72 108 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -234 324 T -N -2 L -0 nxsetgray -0 216 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 322 163] concat -gsave -/Times-Bold findfont 12 scalefont [1 0 0 -1 0 0] makefont -175 -exch -defineuserobject -175 execuserobject setfont -5.5 5.5 T --4.5 4 T -N 0 0 m -1 nxsetgray -0 0 m -(B) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 124 451] concat -gsave -175 execuserobject setfont -5.5 5.5 T --4.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(A) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 178 505] concat -gsave -175 execuserobject setfont -5.5 5.5 T --4.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(B) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 268 343] concat -gsave -175 execuserobject setfont -5.5 5.5 T --4.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(C) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 340 253] concat -gsave -175 execuserobject setfont -5.5 5.5 T --4.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(D) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 412 307] concat -gsave -175 execuserobject setfont -5.5 5.5 T --4.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(E) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 484 343] concat -gsave -175 execuserobject setfont -5 5.5 T --4 4 T -N 0 0 m -0 nxsetgray -0 0 m -(F) show -0 0 T -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Times-Bold -%%+ Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype12/prob37v1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype12/prob37v1.gif deleted file mode 100755 index 4565ae6b0..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype12/prob37v1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype12/prob37v2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype12/prob37v2.eps deleted file mode 100755 index 2a44e4d5f..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype12/prob37v2.eps +++ /dev/null @@ -1,844 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: Untitled2.create -%%Creator: Create -%%CreationDate: Thu Feb 6 16:43:18 1997 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 38 196 569 593 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(m\>XB"QlJ4Ni/mQ#=k=47,.8pEm&]Y$23![5HJ"D7>EpSic@ -% ).9P&n8YCD;*0`.fn!R.%%TLKuD"UX[fJGIA,gSpu_;eD%56C00%+:S;VV`M*5QF%\ZI*8'D?/n_:F -% O(S#_4>F/N6:D!0CY1?)86DMKn1sE/Ju.\HcIf'PJ-#'EN.V#T6hh3*U72V23l`/Ij-EN62kh@uFA7a(%o=Ft92[\SpA#Q[u9,K(]=\0 -% B+bTPrPGY$%Wq7/-H"WU.>: -% _f(H5Q!=of;/P$:D=huPhPQ5kea@&r-9jHaK))>]"aU1L8&V(sS5U+f,?FhO-J43[FY[u,n/ -% _?qd$B8I:BK4.jULJ;g0qG`'[B=dX)(,Cbd7qfW5ECX@joFk0;Mb`d#9X$IClgfMSUa/][Tr -% s -% HLY[t2)jfu#6=\eZaT9\Y-8S2U>`I,:1GT/'B1tY]h;,2n3T(W4I$4jlM9Sc-Zi!/]!.U`3#NY]6bV:![(plPok -% 1kJ)Th:4UanTC,C'5Qr3%'Yu;h"6ZDh[(-]mn?X5?jeb>:N[f0*teO=4kVD=M75".paSQ2:!d -% :!2F-.7ZY1KgDCL?^\R>$m2]:jP%@+5bLh4X7Pc;mhPDHU(F7%;4HKGI*=j`-- -% e)Jcc+!AW.69)ppX9H1Bm -% dNOM,D6Re1^Ffj!>Q,tKfmlTb\0am'g"B'0BQ+Tb,niWaFlP.ZE%T&2U.1u[`n,NY -% <'U3M$j&ccF9@_#cR%G$*-JUie&clG^&i#g\N^0<[.,Y1\/gogds)GNO9$PG]]7W]@gOB1Y[fIY?4 -% -:=#"[m\P(a&?9nYJF!%>+:1RDA?'c)26U.N/a*^A<.j2JE$H'Mf2_fN`/p2GBt?mJ#@+:4^to)f -% 4*(b9rng!=fLR&88e?jP7'P_aIM#@WKaJ,n$,c;T"H>`'Hh]#1!Y&d+)gK6%]q=iP&4kEZKh -% /AiFW030rEkhQQLE8^in*e^VsrF=Qafl][n8&KfbrC;rbJB2-?Rro_Wi5a20c4o$],Q#3-T$d=^&j@J>i1N -% i1q%7:boq!E8!P.FV5ZZA+XKAe@R.DZEDFD88!)p520Fh.SoLG7JdF@i`kt!3oR3drjH8$%b -% .2ri\l04BY3[#W*(:"GVQ]<]Ao:aOJifUE5R(-HliE&%L]EB"EdC.AZ'CgF^f,4AM+r,."0q -% YekQ*:K=M'5nVq_5#)md<8/5(r/"4tG^[%g)KC3ttP`+",;]/SR7,q"'uA$>[(7",L)W-T]5 -% !s#Nk5jV?!I4eD><7Vl_@Z:N(m0=a(!QQee08m\$Oam1XYR9UgHs[V:Zo^1VgfDj>:8K9j/78.TEtqo"'N$ -% \#3]\*G\-@lK%J%cXjpNSn5g0G>8"Gq(>+,%TNQr`=YZ9DJIi:k:kR-XJHtCf#oJ/nKcuG0% -% ml)(CaWa,\1&/;Hq:2h9IPMo(knQZ:pYq0pq5_onAX87EL,ou#JNgQV -% 6S0AM@q#&25E_+2Eu5pFSTnB%<#+J0MJj5d[&? -% ak\*j@sEuEo0Ih1^seh$Jpk1eSoptmH]rs+G51n$P:6TYfMkM2^Y=cX)G+WK=dE716(f\":3 -% 's5Y/\X0lK2U^j;Ne?C+l*N9Of)ci>uD"UWhNJGIA,gSpu_;eD%56C00IckK$7f,Xl-/D.lW -% Y2$RP`V#j9!-BD%@6Wa!R=^D%8Dn%ZJ3kA`TS_gS0?p"f%1\u"-3aSQ";0C)[G;#eKDpNJ*/ -% "d%TXF(-p$Q0KG%# -% c5_Xgn;?88FW=jt#XF6gnLpGE?)fCa/VW*JQ^#bu/"iPZFN&:f9$5#:Y(KYlFY1MNWnSpf9" -% (#,mhgSA@fp@mr@M@`W8nGd9r0B+D4B'F9rEVJ[ic31QKlegVi'H^- -% ?ST0!8R,GCB=5bBV."QIOt9$S/#Umb%>V592,CLq(FC<:$/J)$\?0$ebJ,+9d[Gp9S5$KpWC -% 0[?,".72th-]^G$)PdS+e.Ds+`&;r.?BP)\CkBl3M;$`P>)UB^h"I` -% lK9_2TD7S^Po#@h@o0!,/u0;H,nVDq"g.;upN-aT\-'&4eCh66JN9M?HbW>k\Smlla^*Jcri -% iU6sA$$4p*#Fth!*;ZTTtj@1"8@oCDVoFV1U+%Y%g8Xq=5khjZ`!\G:$q;Mc`Q;$:C@3F2*b -% =DV9Hb3mjE6:VPH!)"4!!1L?$^j5=@D(\%mnqS"'2oGV7N,p46&3oc2`42R/lWiB/TJ&#orF -% +!]bf=c3nq2P:SM^Z?>I"jLbN\N+nohqMedO+4l5C/O96[@UqXHNP?J' -% fbg5_[apc@5JlX4Ze&jLs<%Y;*W#;^ERUT#n*b5#_f<*s)J"[qnfP3I@BojsRT13NmPGe)/m -% +i0CcK0KLPLg\*VY4kkOk0t@>?pi].e6;1,X&.F'l!2)?TER&VDe/&@ZGJCJ<&:+-\9cutD# -% S=MbFX`""$8"_4(KLlo1K5J!)H_h1*(kuW!5JcM"r@M)%kc'>h$ -% @Gb!_'Vn%EjY]2?$#[duO;^!c%745p6_?"S#JC1ZT*q$[,%V$mh#Z1#t44)pqDO-9q-oIUYWBFJd_*?nnP-uOk) -% 7+jqhp2!\uInIL,6qU@@NWGu0!%,l7i"]C>Kb*Q$j=(rq^R\t7RO[9e>&0e-=@s(17C;+5pNW)kkq(2/(!m'g!muY/(f.EY;l3;W]1UL -% 0d^66[SeMXF470H#3N<,!t1l&;#5%%=HqmohCYUq8]CIJ=C,M92MNDB[tr.)".+Ms%RAU'"*fL -% lf::?V!aQ]f#B5sRdALk)dq@:P6BMu^h^goj$BX/?h[RDrXs'a/QI%0.fLa%K%rKSQU#+Y3- -% .k$@8LOK;t)\`*Tmd.jcf`Dl[Q>I=GI@K:gunF(8TqV/Tan9E%aXWjD*aFdlF-VhR5#=NqNa`b.YSK$d*o/ -% GB.p3<9Fehm+8n]:$f5^d#QV=Z83Llu!2p_:BQAolsCV7Ei1:4`#SSsV17fi6 -% Z"k$,ZoRWp1\Bp#Tn_GALt;ku%rIGZhc3?8fc&5ceQ!_>Is1nhi(*PT+F^JQhe(pg -% 2rQE&4qjWn_s-2YQe(&($u*7mmE7IZF.lWMM#FKnJpXF!N/>f>gBFG[#jj4 -% $f56JIi:k:kUE&7c%qZ+ED[mYj[=ts7uTE]h,ApT -% 7=SK3M-bE-DodEr.#>n[J9*Z%9aHW-hu]t`LJmnkH%_%bW/?d@#m-b+)it&++Tm4=;e8L.)Q -% 8=sW.mj]5BYjlOG3`8x -% EndEmbeddedGraphics N 2755 ac3 E d5 S 4e91b R 71a3930f -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -38 179 531 397 rectclip -0 nxsetgray -0 0 0.196006 1 10 SU -gsave -[1 0 0 1 39 181] concat -0 nxsetgray -0 0 0.196006 1 10 SU -gsave -[1 0 0 1 6 6] concat -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 18 1] concat -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 1 2] concat -0 0 0.15 1 10 SU -9 117 T -N -0.15 L -0 nxsetgray -414 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -27 9 T -N -0.15 L -0 nxsetgray -0 306 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 279 T -N -0.15 L -0 nxsetgray -18 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 9 T -N -0.15 L -0 nxsetgray -18 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 171 T -N -0.15 L -0 nxsetgray -18 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 225 T -N -0.15 L -0 nxsetgray -18 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 63 T -N -0.15 L -0 nxsetgray -18 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -99 99 T -N -0.15 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -171 99 T -N -0.15 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -243 99 T -N -0.15 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -315 99 T -N -0.15 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -387 99 T -N -0.15 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -grestore -grestore -0 0 0 1 10 SU -gsave -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -154 -exch -defineuserobject -154 execuserobject setfont -98 73 T -12 flipV -5 6 T --4 5 T -N 0 0 m -0 nxsetgray -0 0 m -(1) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -170 73 T -12 flipV -5 6 T --4 5 T -N 0 0 m -0 nxsetgray -0 0 m -(2) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -242 73 T -13 flipV -5 6.5 T --4 5 T -N 0 0 m -0 nxsetgray -0 0 m -(3) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -314 73 T -12 flipV -5 6 T --4 5 T -N 0 0 m -0 nxsetgray -0 0 m -(4) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -386 73 T -13 flipV -5 6.5 T --4 5 T -N 0 0 m -0 nxsetgray -0 0 m -(5) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -8 163 T -12 flipV -5 6 T --4 5 T -N 0 0 m -0 nxsetgray -0 0 m -(1) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -8 109 T -13 flipV -5 6.5 T --4 5 T -N 0 0 m -0 nxsetgray -0 0 m -(0) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -8 217 T -12 flipV -5 6 T --4 5 T -N 0 0 m -0 nxsetgray -0 0 m -(2) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -8 271 T -13 flipV -5 6.5 T --4 5 T -N 0 0 m -0 nxsetgray -0 0 m -(3) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -8 325 T -12 flipV -5 6 T --4 5 T -N 0 0 m -0 nxsetgray -0 0 m -(4) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -8 55 T -12 flipV -7.5 6 T --6.5 5 T -N 0 0 m -0 nxsetgray -0 0 m -(-1) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -8 1 T -12 flipV -7.5 6 T --6.5 5 T -N 0 0 m -0 nxsetgray -0 0 m -(-2) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -28 317 T -N -0.15 L -0 nxsetgray -0 54 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -10 335 T -N -0.15 L -0 nxsetgray -18 0 0 0 line -0 0 T -grestore -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -427.725403 80.840393 T -20 flipV -43.5 10 T -0.7172 1.306707 S --59 4 T -N 0 0 m -0 nxsetgray -0 0 m -(Distance \(metres\)) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -1 207 T -111 flipV -8 55.5 T --90 R --54.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(Force \(newtons\)) show -0 0 T -grestore -grestore -grestore -grestore -0 0 2 1 10 SU -124 180 T -N -2 L -0 nxsetgray -72 108 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -268 18 T -N -2 L -0 nxsetgray -0 108 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -268 18 T -N -2 L -0 nxsetgray -72 0 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -340 18 T -N -2 L -0 nxsetgray -0 -108 0 108 line -0 0 T -grestore -0 0 2 1 10 SU -340 126 T -N -2 L -0 nxsetgray -144 0 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -52 180 T -N -2 L -0 nxsetgray -72 0 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -52 126 T -N -2 L -0 nxsetgray -0 54 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -196 180 T -N -2 L -0 nxsetgray -0 108 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -196 126 T -N -2 L -0 nxsetgray -72 -54 0 54 line -0 0 T -grestore -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 117 379] concat -gsave -/Times-Bold findfont 12 scalefont [1 0 0 -1 0 0] makefont -175 -exch -defineuserobject -175 execuserobject setfont -5.5 5.5 T --4.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(A) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 182 425] concat -gsave -175 execuserobject setfont -5.5 5.5 T --4.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(B) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 268 353] concat -gsave -175 execuserobject setfont -5.5 5.5 T --4.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(C) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 335 220] concat -gsave -175 execuserobject setfont -5.5 5.5 T --4.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(D) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 410 326] concat -gsave -175 execuserobject setfont -5.5 5.5 T --4.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(E) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 480 329] concat -gsave -175 execuserobject setfont -5 5.5 T --4 4 T -N 0 0 m -0 nxsetgray -0 0 m -(F) show -0 0 T -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Times-Bold -%%+ Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype12/prob37v3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype12/prob37v3.gif deleted file mode 100755 index 8608e2bb7..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype12/prob37v3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype12/prob37v4.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype12/prob37v4.eps deleted file mode 100755 index 4ddd646bf..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype12/prob37v4.eps +++ /dev/null @@ -1,844 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: Untitled5.create -%%Creator: Create -%%CreationDate: Thu Feb 6 16:49:41 1997 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 36 197 567 594 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(0AM@q#&25E_+2Eu5pFSTnB%<#+J0MJj5d[&? -% ak\*j@sEuEo0Ih1^seh6JdeieSq'?mH]rs+G51n$P:6TYfMkM2^Y=cX)G+WK=dE716(f\":3 -% 's5Y/\X0lK2U^j;Ne?C+l*N9Of)ci>uD"UWhNJGIA,gSpu_;eD%56C00eckNFBf*MHn/D.lW -% Y2$RP`V#j9!-BD%@6Wa!R=^D%8Dn%ZJ3kA`TS_gS&'pbH%1\8c-3aSQ";0C)[G;#eKDpNJ*/ -% "QKG+D -% `i?3\N@Z#n"0Z)Nk$A^)LD78C-R:IeM(tVtE.T\lo-dGh(!2U6hj*5R/fAh2E]bfQ3oL[uk) -% +a8..Lh;g;k)%3g.GUCE^.P;F -% ZJ$^[XaTd(A"Z,BTLg/T'I)n<9^_SP?cOL\/q!^6&0>fXP*KnD5RYe0&lVZiGUZ!*?W:/qErc*9GM0;>.DJE/AGb?=a?c9E9 -% jOI9YI`^A[=HFl*XMhL!FJM;Nsd:4jm@&H7t_Lh"+Uj0q6u+L8">rnr9lcUE"jJO&elk.cdo -% U5<\ZbTbgGOD["q$_m&"hlHc_aUGDsDRT+m;m,fQ\j,WUn!3'bF+qRTcT1Ba2s.d4cqA;'oo -% 5eSB-du!7o9@_Qi]RjOG5QaJIY=g>#PDK"8Zs\!.N9]c"ona7Q$3A]7X@b-E!Zt>qc9FK8!C -% R-GfJ.DIT?(PPqH3R,$omHE)UJp0p9/.W>k(!tI[[t>jK@?=Y6p_4PP(6.Tc2nRg-iUatkhR.HE"JOp:<1R'&[ -% ULM@^Q]P-;U5jBY3.M*AEj,&@Zq'W3sE"nD[5ltVll4SA-]\f"g:d9siW]kUU. -% '*/P,+=mtpDcnA97^ScT\0W1IC,7.S'si,rd#\8P@Q\/Q(h3js8?a%EqpQUQ@Ko*#Y`Nu2!= -% `ZD!"/3L]g,fCo(ht#q2Os%s-)FWMoZVe8OsA+E#J4lXRc._14U,%Qh&n/T$X)g6.^d^as%D_E\Z@XBCI.? -% \:LaJ#ne66]HX*i5u]/$mG[]^oLdq>N\nI>M'l_?eCSN6K0k/%rIF/fHL(Ca$hngPZ/[hid( -% V$li?[Pf:h8^Hhtn^maJ44GO(1N("hPhp=igUD56=3anG*b]Vj(kaQiM[K%KO:rq<*>EpfFGMI,tTWW>->,Kb&DC!:,Dj,)CTs='7eUK -% (W2uOLJ;f#:[V^7MqM?)H_W\1PJh25?GpV=_LqcR">WPKG4-&@G#*ELjK"iIX>*tLS[I"pf\ -% ^4F$$=NmoOo_W$QC"KRn(fF;T9o(k*5KK;W:0B]oMT7>3`mLapo/psXbNBS$;Y#oes+?6KDX -% 8:&$_H7l+N(FW1Hk_.,l2JR>kROEuC7shS]K-Q18E#8R(#VVdr(>l$>XI+d_7u8*sM,8FT?8 -% 7DJ\3,E=C0&E6=I=nJBF)McG_+4dO!bs&TT-bN%-3XNV$_k]R+Z4$OHBNoSd80 -% >ZGDX/B[8"sU,G7:!,qtON=2'aKX?!q%Y*\;@tI+="5oA-:I.0%p;cF$h -% nF"81!lupXC]/3!,*8R9\$'bK@Cd35\,t[:[3H=,-m"j&BL"THOAo&O92T#\[ig\G&GkfaO: -% \C+JSo[!Fs-bo`QDr=(QEsobh#*$s&`+\4p"t@k"N*^ihKW7*$[>8>(e?!@4nb-?@Mq?s -% F-6ocSo#)Kt(LO\NjRK*d/#R=h2m#07>:a9DV\&'/?J+P"QA:)!uh+^m,i8RlY&^"?_M3a0OuB -% VZC%J<2:o,MNU^1c^@Ve:?I&TY!3B-']o_M.H]k!^IbT%e*JU&Rq%Rf6Lu:pDt@F).Ekorrk -% AiJJ:p>h^4U^nD>_tZ@ONX`@:!eSq7$JkCbY:Qsh9BUr$^H,F3R`VoI/=XJ!c1M5d++mT=;! -% Ii[f!O?sRo,a(bTH)ZKpDG"03=#($GQc3N>2DoOdb[Ktd4=.Xna9;.t6L2 -% 6"_43#f\U5KK_5bjB0)T8G:^'gd7<#4f!]qLHilBeH0\S@OF^)H==U'1U7+Mo%q.j;P`n6[d -% L_B=@5&J3]2T%h!CE3k!W)_INfBEH!NkL$9gJdZ5GE/YH5VsEuan1%N17&B9qM(@?n7;UDY,8`VL^Uj5!!Lp)M=mMJe$V$Ni!PpJf%=:;J3O -% ah"pcmiXBWZaY:1Ub@s;uT=1qbrlfEj(C`u/i1t2N8i.V+l1Tc3.*Ji'1n(dN\!bO0/d8_B] -% 27HgH%B.b(Jf+11)]E5BFggqgOm!FpE4M*D)]S:_o;JcU@R^Gm; -% `[(YKR$RRCHI[ZW^V:kG%;lX*Ks,RcVIg0(Fp5F.G*/kX7qP:RLQu;Sq2Ro]A3E#XB-4_]PC -% ha$9CHN-Kn-?LU]fP63XM#\fC<(t_XhrEu?4$M_pn"EXbI1uLdD)^#+bOL,6ec>,=qgqk%!X -% r[0`&=="?&d5Fh"Ct,(WLMKDm:DjSUd5!3'3,,4iL%='LEZg+JdcKuM$/bA(iR3C&-`/r:%V -% p$JY5aZ!FW:ofSPF-;]5_"ka9L0cp[qJib'kJ7nq2>*ZOSRC4ZGB%8='j6b$U&1)Rci22;oS -% SB_tp\>?9c5raLijS2KuY-O=*,X_a'0Em&]+Ur'L"!'#RL)N+,+pDW]45Cd -% ))]%?rp]([6":tPi!6=-`D-F>W1F2bcsbq4Qt,1" -% '8[kT$LlLT4-eDS\+n'A#*khuh3(5f=p_EJ$ih^N(gI\8M":%&#QZW[aTb:9?OE$5SM5au"8 -% 1)1@d^=d"2n>!"qC^A`j(WMWs0qT9tt.YW77dL"(]A4V$;ONJT,?HTW0M0zx -% EndEmbeddedGraphics N 1545 609 E 72 S 2b1e6 R f358f8a5 -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -132 477 384 223 rectclip -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[0.707107 -0.707107 0.707107 0.707107 139.201752 588.646423] concat -0 0 2 1 10 SU -10.5 10.5 T -N -2 L -0 nxsetgray -126.000015 -1 0 1 line --0.454732 126.000015 0 arrow -0 0 T -grestore -0 0 2 1 10 SU -11 11 T -N -2 L -0 nxsetgray -0 126 0 0 line -90 0 126 arrow -0 0 T -grestore -grestore -grestore -0 0 2 1 10 SU -[4] 0 setdash -154 588 T -N -2 L -0 nxsetgray -350 0 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -504 580 T -N -2 L -0 nxsetgray -0 14 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -[1 0 0 -1 76.218254 668.218262] concat -[1 0 0 -1 1 157] concat -N -2 L -0 nxsetgray -N -77.781746 77.781746 77.781746 45 0 arcn -s -135 132.781738 132.781738 arrow --90 155.563492 77.781746 arrow -0 0 T -grestore -0 0 2 1 10 SU -[1 0 0 -1 76.218262 665.218262] concat -[1 0 0 1 1 1.436508] concat -N -2 L -0 nxsetgray -N -77.781746 77.781746 77.781746 45 0 arcn -s -135 132.781738 132.781738 arrow --90 155.563492 77.781746 arrow -0 0 T -grestore -0 0 2 1 10 SU -[1 0 0 -1 151 594] concat -[1 0 0 1 1 1] concat -N -0 nxsetgray -gsave -11 9 0 0 oval fill -grestore -2 L -0 nxsetgray -gsave -11 9 0 0 oval 0.090909 0.111111 S s -grestore -0 0 T -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 185 601] concat -0 0 2 1 10 SU -gsave -/Helvetica findfont 12 scalefont [1 0 0 -1 0 0] makefont -12 -exch -defineuserobject -12 execuserobject setfont -1 1 T -11 flipV -8 5.5 T --7 4 T -N 0 0 m -0 nxsetgray -0 0 m -(45) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -/Helvetica findfont 11 scalefont [1 0 0 -1 0 0] makefont -41 -exch -defineuserobject -41 execuserobject setfont -16 7 T -9 flipV -4.5 4.5 T --3.5 3 T -N 0 0 m -0 nxsetgray -0 0 m -(o) show -0 0 T -grestore -grestore -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 185 560] concat -0 0 0 1 10 SU -gsave -12 execuserobject setfont -1 1 T -11 flipV -8 5.5 T --7 4 T -N 0 0 m -0 nxsetgray -0 0 m -(45) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -41 execuserobject setfont -16 7 T -9 flipV -4.5 4.5 T --3.5 3 T -N 0 0 m -0 nxsetgray -0 0 m -(o) show -0 0 T -grestore -grestore -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 175 620] concat -0 0 0.15 1 10 SU -gsave -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -223 -exch -defineuserobject -223 execuserobject setfont -1 6 T -13 flipV -5.5 6.5 T --4.5 5 T -N 0 0 m -0 nxsetgray -0 0 m -(F) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -/Helvetica-Bold findfont 12 scalefont [1 0 0 -1 0 0] makefont -231 -exch -defineuserobject -231 execuserobject setfont -6 1 T -11 flipV -4.5 5.5 T --3.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(1) show -0 0 T -grestore -grestore -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 172 539] concat -0 0 0.15 1 10 SU -gsave -223 execuserobject setfont -1 6 T -13 flipV -5.5 6.5 T --4.5 5 T -N 0 0 m -0 nxsetgray -0 0 m -(F) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -231 execuserobject setfont -6 1 T -11 flipV -4.5 5.5 T --3.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(2) show -0 0 T -grestore -grestore -grestore -grestore -0 0 2 1 10 SU -[1 0 0 -1 326 602] concat -gsave -231 execuserobject setfont -5 5.5 T --4 4 T -N 0 0 m -0 nxsetgray -0 0 m -(d) show -0 0 T -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Helvetica-Bold -%%+ Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype12/prob39.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype12/prob39.gif deleted file mode 100755 index e8f855c88..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype12/prob39.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype12/prob41.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype12/prob41.eps deleted file mode 100755 index f272ca3b4..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype12/prob41.eps +++ /dev/null @@ -1,851 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: Untitled1.create -%%Creator: Create -%%CreationDate: Thu Feb 6 16:39:20 1997 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 45 150 564 587 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(%-3XNV$;SYR+Z4$&@hdlQip6 -% iJ5CkAB[`\MP%8E[!!)![J1EQ2+UDiSl5^N3D;DsI,FTLG.8pEm&]Y$23![5HJ"D7>EpSi#i -% 4ja"&n8(h/_\Bt.fn!R.$uK06O$Q.ALb*k:[3H=!i@M6&5U+hj*jZm!S?46h[5-32f"lBBa> -% 93;1OaY0k93h!g(q@EX$ru_Aq%D#b_98NXHKH2aMKd>AA,TP,:sA3JIfFWl./$+AQG0fOu3!0Dfg>br-Cb'<"_E!gs[_'`S9$eRrQ=RlI-T77"[(tX<<=bpHoLHXjoA.Vp -% 8i*6t2#lo^4"B((+WMpNN*3O^a!/\)9[TeX"Xk4h;EP].i!AgTTj,F)(6H"oFc"5ammCa=nH -% j\NH!*E\^)'tW!60[HA;^uH,A6;#2+_VNiW$Rg?)Nl!kT!UDsCMOEc:)!u(W*>cC[Krk'1=B -% iG?_n/3BTIfNH"\K1fI%%,J[i$nIud>SWL&lNR45!B/f;*pS]AU#^DL*2.T8kf8!ESD/`#oc(_G-JuL8 -% +tSY/:"e\AFMXB:dT.MIR4a"u,8Q6I&Y_I6rIq<$.uOeqKlqle'dK[Kj\X48ss[0d-ZW -% 8\f%EUF)"s\Sf[X:/s#Dn$84gO1i\WsAPa*A-C#!IT/sn'!EUDr!.Z_.qJI0lJlN&76iN#[j8Q`53,e&opfZ%(Qcet<#0AV`JH6C,>7Q(e3F[G&/7SPB:qQ2e5\R6 -% \Hqp!!LD>g5Ve\gO:(4FfsQSf@=XrX*Iuqjf+"&MK03_nFFuk'Nj07/6Bj!#q:9@kOL@lib,<'Y3Zen_5&ei_r&QfS9\,]3G@ -% 4a#O5'n8eXF?'Mo:[fh::&Gea\q$s;]oY'ZflYBk7(^*'QaDZ_'X2G6,(r?K?0N-Md&dkDQ[ -% dCcQK_^ec$Q8.n)RdqG02`kqF\!AkAl)9gE*Nr;?lsQ69nZ$D*Y^'2`%7mlJ-,q9grq01)*Z -% Di=iB87/\&^mI;q=>X5=+<_1gC4d7+$JSQl6;`&If(No%ZM+]UJ=='^qnl-j,GBBD]+C9Vn7 -% dE*?m!!fQ9U(SBkKF7jt$t9f6!.jXW#SC4V7tCk1dAR3]rmf&&V.:k`6-fsO18G=l!\DXt!! -% M/_M>o#_3/WZQ^H/%l:,^Ne"ERIk^k;q7a?USpJB&Q,OIA9+!#l;UJ,lHC0qr)RJrCq."6/k -% OQbZ!Ph0FVm`_ZjNTR^d$TYh`(0S^?q/--((:(FddKJKdJ%S-=d(k./>dV+7PeOU,^>S.;d> -% _)t$F;Y\tABV_AZA[$qcl"Z[K-)5W"[Y2f%g7&@RmD%`"s\d33&CmTp]2*;K7uG;Oj8*X'39 -% `fBhJ[3;jh+cL.CR^495uoHcFtJg`Z_gOQ$InqU7S1H&k7Z-F*caU7i*WkSPX=LfIF6!h,2N -% =C_FJkCjUJALhK0g3=oNW[*O(XT:0BB)t^T+:q[XGIls2;SI0+^4t;WdUVXM>=2Q[a$6%/q1T<)Go?O;YPi&7d2dOgnjDXV8keI&N"$KLa -% !pD2TAk9#aPlb3X%I\;T7/pVOZWqrsAf[c3=7_+CgP6;6M=+/Bo$5A':Is?p4ec+C&md/[u\ -% ?)dY1gn`XKqj!qfS74=&BlJK#Kl2f+GK*&PFj,kOs0!^c/K#tZ8"/8rH6s'XP(1q)Na*GrON -% hErB$0>(#JBt#tnU)>7iY`?>bB])LU'8X%12@Q?K8;@@-r#:d-X"p7[WAAq"@JsXTEMIU4:"l%!X,"lm)GWUWu<*b`MO\SI0-*p -% G<`^iLR*+Nqhem22qZMb10D:QOW#i75i@:Yos[#!74*NZcG[_fPg;L-Lp+E]JOgEd=`*Be*Z -% 3,o(3@M$Q>auTgCtSldi`[jEg70pf*QBdYSiIr4k#qDlMaeX!hfr$^q7r(G.#>BcLH5prSqK -% "3GFShJs)aRi0[Pc\;c5Uq0r2!INDCk`:.npMnR,@QaO3#?0gd,M$Z*p`kkF+FFq]Lj`RGIb -% fc"?XLGSMnd5@J/LNa6HMQa5S@2d+_>pXZ@'GnUJ:.V6J2&J'o?dcTZg99G2a5X5#db-*p$` -% _'bT4F',;((WHsA@_Z$r\``"#uNH7h)Kn+<3bct@-@gZglpJNs<>Gd#cWK6Xo6'5]C\&'3e/ -% hELN2JEnK]qfsDgqIQinAZ]hA\]>3_g[DiMmgOXKM4aQme2X=jI&iohc"C[o(O`qQIIcQ@el -% R@R(H-i[ID,r3S-E0U='X*=IKC?SWWsOLLfa!LFRUZ&:#pis(O"FY4VOcD(8u2h-%+:^JRN( -% m-^+NpYZT1`?tT"Z$Q+@@G]jUrJs[8YPC&^OJ">,F05$#73.>XVK819L(P%2+-\iu"LtZ?oN[BU6 -% hu]F6K^RoV0aNRk\;PNE#XB7im(jrR_KS'P$Kb -% sfF=9jE8$#^E5Ml;0?fRQ9oM5,]\MuXXCG`;(0KWjTh)X'W7pa$ki#h4)mS+f&,Et[gFNH,a -% >FJV7mBF*ra)QV@[Jac::P`LP!x -% EndEmbeddedGraphics N 2728 aa8 E f6 S 4d41c R d58a84e1 -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -45 150 519 437 rectclip -0 nxsetgray -0 0 0.196006 1 10 SU -gsave -[1 0 0 1 46 204] concat -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 18 1] concat -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 1 2] concat -0 0 0.15 1 10 SU -9 117 T -N -0.15 L -0 nxsetgray -414 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -27 9 T -N -0.15 L -0 nxsetgray -0 306 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 279 T -N -0.15 L -0 nxsetgray -18 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 9 T -N -0.15 L -0 nxsetgray -18 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 171 T -N -0.15 L -0 nxsetgray -18 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 225 T -N -0.15 L -0 nxsetgray -18 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 63 T -N -0.15 L -0 nxsetgray -18 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -99 99 T -N -0.15 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -171 99 T -N -0.15 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -243 99 T -N -0.15 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -315 99 T -N -0.15 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -387 99 T -N -0.15 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -grestore -grestore -0 0 0 1 10 SU -gsave -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -154 -exch -defineuserobject -154 execuserobject setfont -98 73 T -12 flipV -5 6 T --4 5 T -N 0 0 m -0 nxsetgray -0 0 m -(1) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -170 73 T -12 flipV -5 6 T --4 5 T -N 0 0 m -0 nxsetgray -0 0 m -(2) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -242 73 T -13 flipV -5 6.5 T --4 5 T -N 0 0 m -0 nxsetgray -0 0 m -(3) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -314 73 T -12 flipV -5 6 T --4 5 T -N 0 0 m -0 nxsetgray -0 0 m -(4) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -386 73 T -13 flipV -5 6.5 T --4 5 T -N 0 0 m -0 nxsetgray -0 0 m -(5) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -8 163 T -12 flipV -5 6 T --4 5 T -N 0 0 m -0 nxsetgray -0 0 m -(1) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -8 109 T -13 flipV -5 6.5 T --4 5 T -N 0 0 m -0 nxsetgray -0 0 m -(0) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -8 217 T -12 flipV -5 6 T --4 5 T -N 0 0 m -0 nxsetgray -0 0 m -(2) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -8 271 T -13 flipV -5 6.5 T --4 5 T -N 0 0 m -0 nxsetgray -0 0 m -(3) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -8 325 T -12 flipV -5 6 T --4 5 T -N 0 0 m -0 nxsetgray -0 0 m -(4) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -8 55 T -12 flipV -7.5 6 T --6.5 5 T -N 0 0 m -0 nxsetgray -0 0 m -(-1) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -8 1 T -12 flipV -7.5 6 T --6.5 5 T -N 0 0 m -0 nxsetgray -0 0 m -(-2) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -28 317 T -N -0.15 L -0 nxsetgray -0 54 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -10 335 T -N -0.15 L -0 nxsetgray -18 0 0 0 line -0 0 T -grestore -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -427.725403 80.840393 T -20 flipV -43.5 10 T -0.7172 1.306707 S --59 4 T -N 0 0 m -0 nxsetgray -0 0 m -(Distance \(metres\)) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -154 execuserobject setfont -1 207 T -111 flipV -8 55.5 T --90 R --54.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(Force \(newtons\)) show -0 0 T -grestore -grestore -grestore -grestore -0 0 2 1 10 SU -92 432 T -N -2 L -0 nxsetgray -72 0 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -236 324 T -N -2 L -0 nxsetgray -72 0 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -308 270 T -N -2 L -0 nxsetgray -0 54 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -308 270 T -N -2 L -0 nxsetgray -72 0 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -380 270 T -N -2 L -0 nxsetgray -0 54 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -380 324 T -N -2 L -0 nxsetgray -144 0 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -162 432 T -N -2 L -0 nxsetgray -72 108 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -234 324 T -N -2 L -0 nxsetgray -0 216 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 322 163] concat -gsave -/Times-Bold findfont 12 scalefont [1 0 0 -1 0 0] makefont -175 -exch -defineuserobject -175 execuserobject setfont -5.5 5.5 T --4.5 4 T -N 0 0 m -1 nxsetgray -0 0 m -(B) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 124 451] concat -gsave -175 execuserobject setfont -5.5 5.5 T --4.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(A) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 178 505] concat -gsave -175 execuserobject setfont -5.5 5.5 T --4.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(B) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 268 343] concat -gsave -175 execuserobject setfont -5.5 5.5 T --4.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(C) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 340 253] concat -gsave -175 execuserobject setfont -5.5 5.5 T --4.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(D) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 412 307] concat -gsave -175 execuserobject setfont -5.5 5.5 T --4.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(E) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 484 343] concat -gsave -175 execuserobject setfont -5 5.5 T --4 4 T -N 0 0 m -0 nxsetgray -0 0 m -(F) show -0 0 T -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Times-Bold -%%+ Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype12/prob41.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype12/prob41.gif deleted file mode 100755 index 4565ae6b0..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype12/prob41.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype12/prob43.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype12/prob43.eps deleted file mode 100755 index 9e9ff6742..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype12/prob43.eps +++ /dev/null @@ -1,538 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: Untitled1.create -%%Creator: Create -%%CreationDate: Fri Feb 7 10:29:59 1997 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 60 369 517 530 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(%-3XNV$_k]R+Z4$:l#+&WWbY -% ='j[M'_85lAo4sH!n&oeD3:]qBb17UObO:]P%1'J\?LJl\i417&BU.[HO9tFO92T#\\9'oQYtA2aO: -% \C+JSo[!Fs-fo`QDVi8 -% _5=tfd3Y+ZQd$gaBE3-PfO6u%bdPg!"`//[_aE@]EUW;K)hVM4L\&Y+E -% .7466([ZLpC9,UJ(mm.G;sG$6#e'B3kV:[.dmSo2RQ^I49]Ca&i`IGMn$q'aW`O$6"X9KTW5 -% NiIqK]RomKT);07"MrN!7]:!-P(ki)_@`$ -% 9.WY/2[SMK>YQ/"V(Xq/-2/`&hW4L"8mBI1L!H7j+T1ciCEP3bp13"E-=O_LX.`Tr@lcJW:: -% o=>G[hWeCG2$:0bhn[TOh8Jf"NmWmj5V)/5>]Y`Aq;#r_k;$S(?"cu;%%;ZQc`GNl#b5gPA5>A+qHMRH)k4\O&0o7Rq,Rf>4"0fS<2)'.`7,OR]a?HT6NtCeJ^jW-^( -% /MT^"t5ER$P?@E(N([P;o2jQ[RV862"?Dc*$=J6oY:GpcuSHI@/D#'_#rK5M-^lg'JD>_cr: -% U:0Z;rZZ,O[@Jq]%J$)=VWZ`u9WnUG8S@-s%X#m9rW&5EW6'OaC")VQol@#ac"&0"8.QIYK_c;B*!9,09OSQp=.IVY-Y1+sJrr!ho-#7tGY0ch%umYqUB -% _*u#r]`LI[$Y)-#M="l/`O^]>Ra)S-__-!`OK!KFu^1Gt^UQdtip8hZ0)OaX>@H0X[.r/J4C -% @?#h]S3SS.-,tZ66Nmj@_6tR%1F%#d,5SH\%-N]uu^Ig\NMXsg/c!hN_4]_$8#Z^*_qY!#(Ox -% EndEmbeddedGraphics N 1336 538 E 9 S 24de7 R 45975e6c -gsave --20 -24 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -60 369 457 161 rectclip -0 0 4 1 10 SU -72 414 T -N -4 L -0 nxsetgray -432 0 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -108 414 T -N -1 L -0 nxsetgray -0 54 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -108 468 T -N -1 L -0 nxsetgray -54 0 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -162 414 T -N -1 L -0 nxsetgray -0 54 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -[2] 0 setdash -414 414 T -N -1 L -0 nxsetgray -0 54 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -[2] 0 setdash -414 468 T -N -1 L -0 nxsetgray -54 0 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -[2] 0 setdash -468 414 T -N -1 L -0 nxsetgray -0 54 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -162 396 T -N -2 L -0 nxsetgray -306 0 0 0 line -0 306 0 arrow -180 0 0 arrow -0 0 T -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 124 429] concat -0 0 2 1 10 SU -[4] 0 setdash -11 11 T -N -2 L -0 nxsetgray -144 0 0 0 line -0 144 0 arrow -0 0 T -grestore -0 0 2 1 10 SU -[4] 0 setdash -155 11 T -N -2 L -0 nxsetgray -0 72 0 0 line -90 0 72 arrow -0 0 T -grestore -0 0 2 1 10 SU -11 11 T -N -2 L -0 nxsetgray -144 72 0 0 line -26.565834 144 72 arrow -0 0 T -grestore -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 115 430] concat -gsave -/Times-Roman findfont 12 scalefont [1 0 0 -1 0 0] makefont -183 -exch -defineuserobject -183 execuserobject setfont -6.5 5 T --5.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(M) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 199 492] concat -gsave -183 execuserobject setfont -4.5 5 T --3.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(F) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 283 483] concat -gsave -183 execuserobject setfont -4.5 5 T --3.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(F) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 206 437] concat -gsave -183 execuserobject setfont -4.5 5 T --3.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(F) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 297 389] concat -gsave -183 execuserobject setfont -4 5.5 T --3 4 T -N 0 0 m -0 nxsetgray -0 0 m -(d) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 212 432] concat -gsave -/Times-Roman findfont 11 scalefont [1 0 0 -1 0 0] makefont -200 -exch -defineuserobject -200 execuserobject setfont -4 5 T --3 4 T -N 0 0 m -0 nxsetgray -0 0 m -(h) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 289 477] concat -gsave -200 execuserobject setfont -4 4 T --3 2 T -N 0 0 m -0 nxsetgray -0 0 m -(v) show -0 0 T -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Times-Roman diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype12/prob43.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype12/prob43.gif deleted file mode 100755 index 741df2c15..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype12/prob43.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob01a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob01a.eps deleted file mode 100755 index bc91827b0..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob01a.eps +++ /dev/null @@ -1,2460 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Incline_spr.eps -%%CreationDate: 5/20/1996 -%%Pages: 0 -%%DocumentFonts: Symbol -%%+ Times-Roman -%%BoundingBox:199 496 369 623 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Symbol Symbol -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Symbol/Symbol 0 Z -%%EndEncoding -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -4618 4739 4722 5034 R -1 sg fill -gr -/_Symbol ff [208 0 0 -208 0 0] mf sf -4618 4964 m 0 sg (q) show -gs -4126 4507 4126 4354 4127 4355 4135 4367 4142 4380 4150 4393 4157 4407 4163 4420 -4170 4434 4175 4448 4181 4463 4186 4477 4191 4492 4195 4506 4199 4521 4202 4536 -4205 4552 4208 4567 4211 4583 4213 4599 4214 4614 4215 4627 4215 4638 4215 4648 -4214 4656 4213 4662 4211 4666 4208 4669 4204 4669 4200 4668 4196 4665 4191 4661 -4185 4654 4178 4646 4171 4635 4164 4624 4156 4610 4149 4597 4144 4583 4139 4569 -4135 4554 4131 4538 4129 4523 4128 4507 4127 4490 4127 4473 4128 4455 4130 4438 -4132 4419 4136 4400 4140 4381 4146 4362 4151 4343 4157 4326 4163 4311 4169 4299 -4175 4288 4181 4279 4188 4273 4195 4269 4201 4266 4208 4266 4215 4268 4223 4272 -4230 4277 4238 4285 4246 4295 4254 4308 4261 4321 4269 4334 4276 4347 4282 4361 -4289 4375 4294 4389 4300 4403 4305 4418 4310 4432 4314 4447 4318 4462 4321 4477 -4324 4492 4327 4508 4330 4524 4332 4540 4333 4554 4334 4568 4334 4579 4334 4589 -4333 4596 4331 4602 4329 4607 4326 4609 4323 4610 4319 4608 4314 4605 4309 4601 -4303 4594 4297 4586 4290 4575 4283 4564 4275 4550 4268 4537 4262 4523 4257 4509 -4253 4494 4250 4479 4247 4463 4246 4447 4245 4430 4245 4413 4246 4396 4248 4378 -4250 4360 4254 4341 4258 4322 4264 4303 4269 4284 4275 4267 4281 4252 4287 4239 -4293 4229 4300 4220 4307 4214 4313 4209 4320 4207 4327 4206 4334 4208 4342 4212 -4349 4218 4357 4226 4365 4236 4373 4248 4380 4261 4387 4274 4394 4287 4401 4301 -4407 4315 4413 4329 4418 4343 4423 4357 4428 4372 4432 4386 4436 4401 4439 4416 -4443 4432 4445 4447 4448 4463 4450 4479 4451 4494 4452 4507 4452 4519 4452 4528 -4451 4536 4449 4543 4447 4547 4445 4550 4441 4551 4437 4550 4433 4547 4428 4543 -4422 4537 4416 4529 4409 4519 4402 4508 4394 4495 4387 4482 4382 4468 4376 4453 -4372 4438 4368 4422 4365 4405 4363 4388 4362 4369 4361 4351 4361 4331 4362 4311 -4363 4290 4366 4269 4369 4246 4373 4224 4377 4202 4382 4184 4388 4169 4395 4158 -4403 4151 4412 4147 4421 4146 4431 4149 4442 4155 4454 4165 4467 4179 4480 4195 -4494 4216 4509 4239 4525 4267 4542 4298 195 P -1 sg fill -gr -gs -3918 4523 3919 4525 3925 4539 3932 4552 3938 4566 3943 4581 3948 4595 3953 4610 -3957 4624 3961 4639 3965 4655 3968 4670 3971 4686 3973 4701 3976 4718 3977 4733 -3978 4746 3978 4758 3978 4768 3977 4776 3976 4782 3974 4786 3971 4789 3967 4789 -3963 4788 3959 4785 3954 4780 3948 4774 3941 4765 3934 4755 3927 4743 3919 4729 -3918 4727 32 P -1 sg fill -gr -gs -3918 4612 4126 4507 4126 4354 4119 4345 4112 4337 4104 4331 4097 4327 4090 4325 -4083 4326 4076 4328 4069 4332 4063 4339 4056 4347 4050 4358 4044 4370 4038 4385 -4032 4402 4027 4421 4021 4440 4017 4459 4013 4478 4010 4497 4008 4515 4007 4532 -4007 4549 4008 4566 4009 4582 4012 4598 4015 4613 4019 4628 4024 4643 4030 4657 -4037 4670 4045 4684 4052 4696 4060 4706 4066 4714 4072 4721 4077 4726 4082 4729 -4086 4730 4090 4729 4092 4726 4095 4722 4096 4716 4097 4708 4097 4698 4097 4686 -4096 4673 4095 4658 4092 4641 4090 4626 4087 4610 4084 4595 4080 4579 4077 4564 -4072 4550 4068 4535 4062 4521 4057 4506 4051 4492 4045 4479 4038 4465 4032 4452 -4024 4438 4017 4426 4009 4414 4001 4404 3993 4396 3986 4391 3978 4387 3971 4385 -3964 4386 3957 4388 3951 4393 3944 4399 3937 4408 3931 4418 3925 4431 3919 4445 -3918 4448 80 P -1 sg fill -gr -gs -3918 4612 3713 4715 3711 4676 3710 4641 3710 4610 3711 4582 3712 4558 3714 4537 -3717 4520 3720 4507 3724 4496 3729 4490 3734 4487 3740 4487 3747 4491 3755 4499 -3763 4510 3772 4525 3780 4541 3789 4557 3797 4574 3804 4590 3811 4606 3818 4622 -3824 4638 3830 4655 3835 4670 3839 4686 3844 4702 3847 4718 3851 4734 3853 4749 -3856 4765 3858 4781 3859 4795 3860 4808 3860 4819 3859 4828 3858 4836 3857 4842 -3854 4846 3852 4848 3848 4848 3844 4847 3839 4844 3834 4839 3828 4832 3822 4824 -3815 4813 3808 4802 3800 4788 3793 4775 3788 4761 3783 4747 3779 4732 3775 4717 -3773 4701 3771 4685 3770 4668 3771 4651 3771 4634 3773 4616 3776 4598 3779 4579 -3783 4560 3789 4541 3794 4522 3800 4505 3806 4490 3812 4478 3818 4467 3825 4459 -3831 4452 3838 4448 3845 4445 3852 4445 3859 4447 3866 4450 3874 4456 3881 4464 -3889 4474 3897 4486 3904 4498 3912 4512 3918 4523 3918 4727 3912 4715 3906 4701 -3901 4687 3897 4672 3893 4656 3891 4641 3889 4625 3888 4608 3889 4591 3890 4574 -3891 4556 3894 4538 3898 4519 3902 4500 3908 4481 3913 4462 3918 4448 102 P -1 sg fill -gr -gs -3713.625 4715.625 m -3711.625 4676.625 L -1.25 slw 0 sg str -gr -gs -3711.625 4676.625 m -3710.625 4641.625 L -1.25 slw 0 sg str -gr -gs -3710.625 4641.625 m -3710.625 4610.625 L -1.25 slw 0 sg str -gr -gs -3710.625 4610.625 m -3711.625 4582.625 L -1.25 slw 0 sg str -gr -gs -3711.625 4582.625 m -3712.625 4558.625 L -1.25 slw 0 sg str -gr -gs -3712.625 4558.625 m -3714.625 4537.625 L -1.25 slw 0 sg str -gr -gs -3714.625 4537.625 m -3717.625 4520.625 L -1.25 slw 0 sg str -gr -gs -3717.625 4520.625 m -3720.625 4507.625 L -1.25 slw 0 sg str -gr -gs -3720.625 4507.625 m -3724.625 4496.625 L -1.25 slw 0 sg str -gr -gs -3724.625 4496.625 m -3729.625 4490.625 L -1.25 slw 0 sg str -gr -gs -3729.625 4490.625 m -3734.625 4487.625 L -1.25 slw 0 sg str -gr -gs -3734.625 4487.625 m -3740.625 4487.625 L -1.25 slw 0 sg str -gr -gs -3740.625 4487.625 m -3747.625 4491.625 L -1.25 slw 0 sg str -gr -gs -3747.625 4491.625 m -3755.625 4499.625 L -1.25 slw 0 sg str -gr -gs -3755.625 4499.625 m -3763.625 4510.625 L -1.25 slw 0 sg str -gr -gs -3763.625 4510.625 m -3772.625 4525.625 L -1.25 slw 0 sg str -gr -gs -3772.625 4525.625 m -3780.625 4541.625 L -1.25 slw 0 sg str -gr -gs -3780.625 4541.625 m -3789.625 4557.625 L -1.25 slw 0 sg str -gr -gs -3789.625 4557.625 m -3797.625 4574.625 L -1.25 slw 0 sg str -gr -gs -3797.625 4574.625 m -3804.625 4590.625 L -1.25 slw 0 sg str -gr -gs -3804.625 4590.625 m -3811.625 4606.625 L -1.25 slw 0 sg str -gr -gs -3811.625 4606.625 m -3818.625 4622.625 L -1.25 slw 0 sg str -gr -gs -3818.625 4622.625 m -3824.625 4638.625 L -1.25 slw 0 sg str -gr -gs -3824.625 4638.625 m -3830.625 4655.625 L -1.25 slw 0 sg str -gr -gs -3830.625 4655.625 m -3835.625 4670.625 L -1.25 slw 0 sg str -gr -gs -3835.625 4670.625 m -3839.625 4686.625 L -1.25 slw 0 sg str -gr -gs -3839.625 4686.625 m -3844.625 4702.625 L -1.25 slw 0 sg str -gr -gs -3844.625 4702.625 m -3847.625 4718.625 L -1.25 slw 0 sg str -gr -gs -3847.625 4718.625 m -3851.625 4734.625 L -1.25 slw 0 sg str -gr -gs -3851.625 4734.625 m -3853.625 4749.625 L -1.25 slw 0 sg str -gr -gs -3853.625 4749.625 m -3856.625 4765.625 L -1.25 slw 0 sg str -gr -gs -3856.625 4765.625 m -3858.625 4781.625 L -1.25 slw 0 sg str -gr -gs -3858.625 4781.625 m -3859.625 4795.625 L -1.25 slw 0 sg str -gr -gs -3859.625 4795.625 m -3860.625 4808.625 L -1.25 slw 0 sg str -gr -gs -3860.625 4808.625 m -3860.625 4819.625 L -1.25 slw 0 sg str -gr -gs -3860.625 4819.625 m -3859.625 4828.625 L -1.25 slw 0 sg str -gr -gs -3859.625 4828.625 m -3858.625 4836.625 L -1.25 slw 0 sg str -gr -gs -3858.625 4836.625 m -3857.625 4842.625 L -1.25 slw 0 sg str -gr -gs -3857.625 4842.625 m -3854.625 4846.625 L -1.25 slw 0 sg str -gr -gs -3854.625 4846.625 m -3852.625 4848.625 L -1.25 slw 0 sg str -gr -gs -3852.625 4848.625 m -3848.625 4848.625 L -1.25 slw 0 sg str -gr -gs -3848.625 4848.625 m -3844.625 4847.625 L -1.25 slw 0 sg str -gr -gs -3844.625 4847.625 m -3839.625 4844.625 L -1.25 slw 0 sg str -gr -gs -3839.625 4844.625 m -3834.625 4839.625 L -1.25 slw 0 sg str -gr -gs -3834.625 4839.625 m -3828.625 4832.625 L -1.25 slw 0 sg str -gr -gs -3828.625 4832.625 m -3822.625 4824.625 L -1.25 slw 0 sg str -gr -gs -3822.625 4824.625 m -3815.625 4813.625 L -1.25 slw 0 sg str -gr -gs -3815.625 4813.625 m -3808.625 4802.625 L -1.25 slw 0 sg str -gr -gs -3808.625 4802.625 m -3800.625 4788.625 L -1.25 slw 0 sg str -gr -gs -3800.625 4788.625 m -3793.625 4775.625 L -1.25 slw 0 sg str -gr -gs -3793.625 4775.625 m -3788.625 4761.625 L -1.25 slw 0 sg str -gr -gs -3788.625 4761.625 m -3783.625 4747.625 L -1.25 slw 0 sg str -gr -gs -3783.625 4747.625 m -3779.625 4732.625 L -1.25 slw 0 sg str -gr -gs -3779.625 4732.625 m -3775.625 4717.625 L -1.25 slw 0 sg str -gr -gs -3775.625 4717.625 m -3773.625 4701.625 L -1.25 slw 0 sg str -gr -gs -3773.625 4701.625 m -3771.625 4685.625 L -1.25 slw 0 sg str -gr -gs -3771.625 4685.625 m -3770.625 4668.625 L -1.25 slw 0 sg str -gr -gs -3770.625 4668.625 m -3771.625 4651.625 L -1.25 slw 0 sg str -gr -gs -3771.625 4651.625 m -3771.625 4634.625 L -1.25 slw 0 sg str -gr -gs -3771.625 4634.625 m -3773.625 4616.625 L -1.25 slw 0 sg str -gr -gs -3773.625 4616.625 m -3776.625 4598.625 L -1.25 slw 0 sg str -gr -gs -3776.625 4598.625 m -3779.625 4579.625 L -1.25 slw 0 sg str -gr -gs -3779.625 4579.625 m -3783.625 4560.625 L -1.25 slw 0 sg str -gr -gs -3783.625 4560.625 m -3789.625 4541.625 L -1.25 slw 0 sg str -gr -gs -3789.625 4541.625 m -3794.625 4522.625 L -1.25 slw 0 sg str -gr -gs -3794.625 4522.625 m -3800.625 4505.625 L -1.25 slw 0 sg str -gr -gs -3800.625 4505.625 m -3806.625 4490.625 L -1.25 slw 0 sg str -gr -gs -3806.625 4490.625 m -3812.625 4478.625 L -1.25 slw 0 sg str -gr -gs -3812.625 4478.625 m -3818.625 4467.625 L -1.25 slw 0 sg str -gr -gs -3818.625 4467.625 m -3825.625 4459.625 L -1.25 slw 0 sg str -gr -gs -3825.625 4459.625 m -3831.625 4452.625 L -1.25 slw 0 sg str -gr -gs -3831.625 4452.625 m -3838.625 4448.625 L -1.25 slw 0 sg str -gr -gs -3838.625 4448.625 m -3845.625 4445.625 L -1.25 slw 0 sg str -gr -gs -3845.625 4445.625 m -3852.625 4445.625 L -1.25 slw 0 sg str -gr -gs -3852.625 4445.625 m -3859.625 4447.625 L -1.25 slw 0 sg str -gr -gs -3859.625 4447.625 m -3866.625 4450.625 L -1.25 slw 0 sg str -gr -gs -3866.625 4450.625 m -3874.625 4456.625 L -1.25 slw 0 sg str -gr -gs -3874.625 4456.625 m -3881.625 4464.625 L -1.25 slw 0 sg str -gr -gs -3881.625 4464.625 m -3889.625 4474.625 L -1.25 slw 0 sg str -gr -gs -3889.625 4474.625 m -3897.625 4486.625 L -1.25 slw 0 sg str -gr -gs -3897.625 4486.625 m -3904.625 4498.625 L -1.25 slw 0 sg str -gr -gs -3904.625 4498.625 m -3912.625 4512.625 L -1.25 slw 0 sg str -gr -gs -3912.625 4512.625 m -3919.625 4525.625 L -1.25 slw 0 sg str -gr -gs -3919.625 4525.625 m -3925.625 4539.625 L -1.25 slw 0 sg str -gr -gs -3925.625 4539.625 m -3932.625 4552.625 L -1.25 slw 0 sg str -gr -gs -3932.625 4552.625 m -3938.625 4566.625 L -1.25 slw 0 sg str -gr -gs -3938.625 4566.625 m -3943.625 4581.625 L -1.25 slw 0 sg str -gr -gs -3943.625 4581.625 m -3948.625 4595.625 L -1.25 slw 0 sg str -gr -gs -3948.625 4595.625 m -3953.625 4610.625 L -1.25 slw 0 sg str -gr -gs -3953.625 4610.625 m -3957.625 4624.625 L -1.25 slw 0 sg str -gr -gs -3957.625 4624.625 m -3961.625 4639.625 L -1.25 slw 0 sg str -gr -gs -3961.625 4639.625 m -3965.625 4655.625 L -1.25 slw 0 sg str -gr -gs -3965.625 4655.625 m -3968.625 4670.625 L -1.25 slw 0 sg str -gr -gs -3968.625 4670.625 m -3971.625 4686.625 L -1.25 slw 0 sg str -gr -gs -3971.625 4686.625 m -3973.625 4701.625 L -1.25 slw 0 sg str -gr -gs -3973.625 4701.625 m -3976.625 4718.625 L -1.25 slw 0 sg str -gr -gs -3976.625 4718.625 m -3977.625 4733.625 L -1.25 slw 0 sg str -gr -gs -3977.625 4733.625 m -3978.625 4746.625 L -1.25 slw 0 sg str -gr -gs -3978.625 4746.625 m -3978.625 4758.625 L -1.25 slw 0 sg str -gr -gs -3978.625 4758.625 m -3978.625 4768.625 L -1.25 slw 0 sg str -gr -gs -3978.625 4768.625 m -3977.625 4776.625 L -1.25 slw 0 sg str -gr -gs -3977.625 4776.625 m -3976.625 4782.625 L -1.25 slw 0 sg str -gr -gs -3976.625 4782.625 m -3974.625 4786.625 L -1.25 slw 0 sg str -gr -gs -3974.625 4786.625 m -3971.625 4789.625 L -1.25 slw 0 sg str -gr -gs -3971.625 4789.625 m -3967.625 4789.625 L -1.25 slw 0 sg str -gr -gs -3967.625 4789.625 m -3963.625 4788.625 L -1.25 slw 0 sg str -gr -gs -3963.625 4788.625 m -3959.625 4785.625 L -1.25 slw 0 sg str -gr -gs -3959.625 4785.625 m -3954.625 4780.625 L -1.25 slw 0 sg str -gr -gs -3954.625 4780.625 m -3948.625 4774.625 L -1.25 slw 0 sg str -gr -gs -3948.625 4774.625 m -3941.625 4765.625 L -1.25 slw 0 sg str -gr -gs -3941.625 4765.625 m -3934.625 4755.625 L -1.25 slw 0 sg str -gr -gs -3934.625 4755.625 m -3927.625 4743.625 L -1.25 slw 0 sg str -gr -gs -3927.625 4743.625 m -3919.625 4729.625 L -1.25 slw 0 sg str -gr -gs -3919.625 4729.625 m -3912.625 4715.625 L -1.25 slw 0 sg str -gr -gs -3912.625 4715.625 m -3906.625 4701.625 L -1.25 slw 0 sg str -gr -gs -3906.625 4701.625 m -3901.625 4687.625 L -1.25 slw 0 sg str -gr -gs -3901.625 4687.625 m -3897.625 4672.625 L -1.25 slw 0 sg str -gr -gs -3897.625 4672.625 m -3893.625 4656.625 L -1.25 slw 0 sg str -gr -gs -3893.625 4656.625 m -3891.625 4641.625 L -1.25 slw 0 sg str -gr -gs -3891.625 4641.625 m -3889.625 4625.625 L -1.25 slw 0 sg str -gr -gs -3889.625 4625.625 m -3888.625 4608.625 L -1.25 slw 0 sg str -gr -gs -3888.625 4608.625 m -3889.625 4591.625 L -1.25 slw 0 sg str -gr -gs -3889.625 4591.625 m -3890.625 4574.625 L -1.25 slw 0 sg str -gr -gs -3890.625 4574.625 m -3891.625 4556.625 L -1.25 slw 0 sg str -gr -gs -3891.625 4556.625 m -3894.625 4538.625 L -1.25 slw 0 sg str -gr -gs -3894.625 4538.625 m -3898.625 4519.625 L -1.25 slw 0 sg str -gr -gs -3898.625 4519.625 m -3902.625 4500.625 L -1.25 slw 0 sg str -gr -gs -3902.625 4500.625 m -3908.625 4481.625 L -1.25 slw 0 sg str -gr -gs -3908.625 4481.625 m -3913.625 4462.625 L -1.25 slw 0 sg str -gr -gs -3913.625 4462.625 m -3919.625 4445.625 L -1.25 slw 0 sg str -gr -gs -3919.625 4445.625 m -3925.625 4431.625 L -1.25 slw 0 sg str -gr -gs -3925.625 4431.625 m -3931.625 4418.625 L -1.25 slw 0 sg str -gr -gs -3931.625 4418.625 m -3937.625 4408.625 L -1.25 slw 0 sg str -gr -gs -3937.625 4408.625 m -3944.625 4399.625 L -1.25 slw 0 sg str -gr -gs -3944.625 4399.625 m -3951.625 4393.625 L -1.25 slw 0 sg str -gr -gs -3951.625 4393.625 m -3957.625 4388.625 L -1.25 slw 0 sg str -gr -gs -3957.625 4388.625 m -3964.625 4386.625 L -1.25 slw 0 sg str -gr -gs -3964.625 4386.625 m -3971.625 4385.625 L -1.25 slw 0 sg str -gr -gs -3971.625 4385.625 m -3978.625 4387.625 L -1.25 slw 0 sg str -gr -gs -3978.625 4387.625 m -3986.625 4391.625 L -1.25 slw 0 sg str -gr -gs -3986.625 4391.625 m -3993.625 4396.625 L -1.25 slw 0 sg str -gr -gs -3993.625 4396.625 m -4001.625 4404.625 L -1.25 slw 0 sg str -gr -gs -4001.625 4404.625 m -4009.625 4414.625 L -1.25 slw 0 sg str -gr -gs -4009.625 4414.625 m -4017.625 4426.625 L -1.25 slw 0 sg str -gr -gs -4017.625 4426.625 m -4024.625 4438.625 L -1.25 slw 0 sg str -gr -gs -4024.625 4438.625 m -4032.625 4452.625 L -1.25 slw 0 sg str -gr -gs -4032.625 4452.625 m -4038.625 4465.625 L -1.25 slw 0 sg str -gr -gs -4038.625 4465.625 m -4045.625 4479.625 L -1.25 slw 0 sg str -gr -gs -4045.625 4479.625 m -4051.625 4492.625 L -1.25 slw 0 sg str -gr -gs -4051.625 4492.625 m -4057.625 4506.625 L -1.25 slw 0 sg str -gr -gs -4057.625 4506.625 m -4062.625 4521.625 L -1.25 slw 0 sg str -gr -gs -4062.625 4521.625 m -4068.625 4535.625 L -1.25 slw 0 sg str -gr -gs -4068.625 4535.625 m -4072.625 4550.625 L -1.25 slw 0 sg str -gr -gs -4072.625 4550.625 m -4077.625 4564.625 L -1.25 slw 0 sg str -gr -gs -4077.625 4564.625 m -4080.625 4579.625 L -1.25 slw 0 sg str -gr -gs -4080.625 4579.625 m -4084.625 4595.625 L -1.25 slw 0 sg str -gr -gs -4084.625 4595.625 m -4087.625 4610.625 L -1.25 slw 0 sg str -gr -gs -4087.625 4610.625 m -4090.625 4626.625 L -1.25 slw 0 sg str -gr -gs -4090.625 4626.625 m -4092.625 4641.625 L -1.25 slw 0 sg str -gr -gs -4092.625 4641.625 m -4095.625 4658.625 L -1.25 slw 0 sg str -gr -gs -4095.625 4658.625 m -4096.625 4673.625 L -1.25 slw 0 sg str -gr -gs -4096.625 4673.625 m -4097.625 4686.625 L -1.25 slw 0 sg str -gr -gs -4097.625 4686.625 m -4097.625 4698.625 L -1.25 slw 0 sg str -gr -gs -4097.625 4698.625 m -4097.625 4708.625 L -1.25 slw 0 sg str -gr -gs -4097.625 4708.625 m -4096.625 4716.625 L -1.25 slw 0 sg str -gr -gs -4096.625 4716.625 m -4095.625 4722.625 L -1.25 slw 0 sg str -gr -gs -4095.625 4722.625 m -4092.625 4726.625 L -1.25 slw 0 sg str -gr -gs -4092.625 4726.625 m -4090.625 4729.625 L -1.25 slw 0 sg str -gr -gs -4090.625 4729.625 m -4086.625 4730.625 L -1.25 slw 0 sg str -gr -gs -4086.625 4730.625 m -4082.625 4729.625 L -1.25 slw 0 sg str -gr -gs -4082.625 4729.625 m -4077.625 4726.625 L -1.25 slw 0 sg str -gr -gs -4077.625 4726.625 m -4072.625 4721.625 L -1.25 slw 0 sg str -gr -gs -4072.625 4721.625 m -4066.625 4714.625 L -1.25 slw 0 sg str -gr -gs -4066.625 4714.625 m -4060.625 4706.625 L -1.25 slw 0 sg str -gr -gs -4060.625 4706.625 m -4052.625 4696.625 L -1.25 slw 0 sg str -gr -gs -4052.625 4696.625 m -4045.625 4684.625 L -1.25 slw 0 sg str -gr -gs -4045.625 4684.625 m -4037.625 4670.625 L -1.25 slw 0 sg str -gr -gs -4037.625 4670.625 m -4030.625 4657.625 L -1.25 slw 0 sg str -gr -gs -4030.625 4657.625 m -4024.625 4643.625 L -1.25 slw 0 sg str -gr -gs -4024.625 4643.625 m -4019.625 4628.625 L -1.25 slw 0 sg str -gr -gs -4019.625 4628.625 m -4015.625 4613.625 L -1.25 slw 0 sg str -gr -gs -4015.625 4613.625 m -4012.625 4598.625 L -1.25 slw 0 sg str -gr -gs -4012.625 4598.625 m -4009.625 4582.625 L -1.25 slw 0 sg str -gr -gs -4009.625 4582.625 m -4008.625 4566.625 L -1.25 slw 0 sg str -gr -gs -4008.625 4566.625 m -4007.625 4549.625 L -1.25 slw 0 sg str -gr -gs -4007.625 4549.625 m -4007.625 4532.625 L -1.25 slw 0 sg str -gr -gs -4007.625 4532.625 m -4008.625 4515.625 L -1.25 slw 0 sg str -gr -gs -4008.625 4515.625 m -4010.625 4497.625 L -1.25 slw 0 sg str -gr -gs -4010.625 4497.625 m -4013.625 4478.625 L -1.25 slw 0 sg str -gr -gs -4013.625 4478.625 m -4017.625 4459.625 L -1.25 slw 0 sg str -gr -gs -4017.625 4459.625 m -4021.625 4440.625 L -1.25 slw 0 sg str -gr -gs -4021.625 4440.625 m -4027.625 4421.625 L -1.25 slw 0 sg str -gr -gs -4027.625 4421.625 m -4032.625 4402.625 L -1.25 slw 0 sg str -gr -gs -4032.625 4402.625 m -4038.625 4385.625 L -1.25 slw 0 sg str -gr -gs -4038.625 4385.625 m -4044.625 4370.625 L -1.25 slw 0 sg str -gr -gs -4044.625 4370.625 m -4050.625 4358.625 L -1.25 slw 0 sg str -gr -gs -4050.625 4358.625 m -4056.625 4347.625 L -1.25 slw 0 sg str -gr -gs -4056.625 4347.625 m -4063.625 4339.625 L -1.25 slw 0 sg str -gr -gs -4063.625 4339.625 m -4069.625 4332.625 L -1.25 slw 0 sg str -gr -gs -4069.625 4332.625 m -4076.625 4328.625 L -1.25 slw 0 sg str -gr -gs -4076.625 4328.625 m -4083.625 4326.625 L -1.25 slw 0 sg str -gr -gs -4083.625 4326.625 m -4090.625 4325.625 L -1.25 slw 0 sg str -gr -gs -4090.625 4325.625 m -4097.625 4327.625 L -1.25 slw 0 sg str -gr -gs -4097.625 4327.625 m -4104.625 4331.625 L -1.25 slw 0 sg str -gr -gs -4104.625 4331.625 m -4112.625 4337.625 L -1.25 slw 0 sg str -gr -gs -4112.625 4337.625 m -4119.625 4345.625 L -1.25 slw 0 sg str -gr -gs -4119.625 4345.625 m -4127.625 4355.625 L -1.25 slw 0 sg str -gr -gs -4127.625 4355.625 m -4135.625 4367.625 L -1.25 slw 0 sg str -gr -gs -4135.625 4367.625 m -4142.625 4380.625 L -1.25 slw 0 sg str -gr -gs -4142.625 4380.625 m -4150.625 4393.625 L -1.25 slw 0 sg str -gr -gs -4150.625 4393.625 m -4157.625 4407.625 L -1.25 slw 0 sg str -gr -gs -4157.625 4407.625 m -4163.625 4420.625 L -1.25 slw 0 sg str -gr -gs -4163.625 4420.625 m -4170.625 4434.625 L -1.25 slw 0 sg str -gr -gs -4170.625 4434.625 m -4175.625 4448.625 L -1.25 slw 0 sg str -gr -gs -4175.625 4448.625 m -4181.625 4463.625 L -1.25 slw 0 sg str -gr -gs -4181.625 4463.625 m -4186.625 4477.625 L -1.25 slw 0 sg str -gr -gs -4186.625 4477.625 m -4191.625 4492.625 L -1.25 slw 0 sg str -gr -gs -4191.625 4492.625 m -4195.625 4506.625 L -1.25 slw 0 sg str -gr -gs -4195.625 4506.625 m -4199.625 4521.625 L -1.25 slw 0 sg str -gr -gs -4199.625 4521.625 m -4202.625 4536.625 L -1.25 slw 0 sg str -gr -gs -4202.625 4536.625 m -4205.625 4552.625 L -1.25 slw 0 sg str -gr -gs -4205.625 4552.625 m -4208.625 4567.625 L -1.25 slw 0 sg str -gr -gs -4208.625 4567.625 m -4211.625 4583.625 L -1.25 slw 0 sg str -gr -gs -4211.625 4583.625 m -4213.625 4599.625 L -1.25 slw 0 sg str -gr -gs -4213.625 4599.625 m -4214.625 4614.625 L -1.25 slw 0 sg str -gr -gs -4214.625 4614.625 m -4215.625 4627.625 L -1.25 slw 0 sg str -gr -gs -4215.625 4627.625 m -4215.625 4638.625 L -1.25 slw 0 sg str -gr -gs -4215.625 4638.625 m -4215.625 4648.625 L -1.25 slw 0 sg str -gr -gs -4215.625 4648.625 m -4214.625 4656.625 L -1.25 slw 0 sg str -gr -gs -4214.625 4656.625 m -4213.625 4662.625 L -1.25 slw 0 sg str -gr -gs -4213.625 4662.625 m -4211.625 4666.625 L -1.25 slw 0 sg str -gr -gs -4211.625 4666.625 m -4208.625 4669.625 L -1.25 slw 0 sg str -gr -gs -4208.625 4669.625 m -4204.625 4669.625 L -1.25 slw 0 sg str -gr -gs -4204.625 4669.625 m -4200.625 4668.625 L -1.25 slw 0 sg str -gr -gs -4200.625 4668.625 m -4196.625 4665.625 L -1.25 slw 0 sg str -gr -gs -4196.625 4665.625 m -4191.625 4661.625 L -1.25 slw 0 sg str -gr -gs -4191.625 4661.625 m -4185.625 4654.625 L -1.25 slw 0 sg str -gr -gs -4185.625 4654.625 m -4178.625 4646.625 L -1.25 slw 0 sg str -gr -gs -4178.625 4646.625 m -4171.625 4635.625 L -1.25 slw 0 sg str -gr -gs -4171.625 4635.625 m -4164.625 4624.625 L -1.25 slw 0 sg str -gr -gs -4164.625 4624.625 m -4156.625 4610.625 L -1.25 slw 0 sg str -gr -gs -4156.625 4610.625 m -4149.625 4597.625 L -1.25 slw 0 sg str -gr -gs -4149.625 4597.625 m -4144.625 4583.625 L -1.25 slw 0 sg str -gr -gs -4144.625 4583.625 m -4139.625 4569.625 L -1.25 slw 0 sg str -gr -gs -4139.625 4569.625 m -4135.625 4554.625 L -1.25 slw 0 sg str -gr -gs -4135.625 4554.625 m -4131.625 4538.625 L -1.25 slw 0 sg str -gr -gs -4131.625 4538.625 m -4129.625 4523.625 L -1.25 slw 0 sg str -gr -gs -4129.625 4523.625 m -4128.625 4507.625 L -1.25 slw 0 sg str -gr -gs -4128.625 4507.625 m -4127.625 4490.625 L -1.25 slw 0 sg str -gr -gs -4127.625 4490.625 m -4127.625 4473.625 L -1.25 slw 0 sg str -gr -gs -4127.625 4473.625 m -4128.625 4455.625 L -1.25 slw 0 sg str -gr -gs -4128.625 4455.625 m -4130.625 4438.625 L -1.25 slw 0 sg str -gr -gs -4130.625 4438.625 m -4132.625 4419.625 L -1.25 slw 0 sg str -gr -gs -4132.625 4419.625 m -4136.625 4400.625 L -1.25 slw 0 sg str -gr -gs -4136.625 4400.625 m -4140.625 4381.625 L -1.25 slw 0 sg str -gr -gs -4140.625 4381.625 m -4146.625 4362.625 L -1.25 slw 0 sg str -gr -gs -4146.625 4362.625 m -4151.625 4343.625 L -1.25 slw 0 sg str -gr -gs -4151.625 4343.625 m -4157.625 4326.625 L -1.25 slw 0 sg str -gr -gs -4157.625 4326.625 m -4163.625 4311.625 L -1.25 slw 0 sg str -gr -gs -4163.625 4311.625 m -4169.625 4299.625 L -1.25 slw 0 sg str -gr -gs -4169.625 4299.625 m -4175.625 4288.625 L -1.25 slw 0 sg str -gr -gs -4175.625 4288.625 m -4181.625 4279.625 L -1.25 slw 0 sg str -gr -gs -4181.625 4279.625 m -4188.625 4273.625 L -1.25 slw 0 sg str -gr -gs -4188.625 4273.625 m -4195.625 4269.625 L -1.25 slw 0 sg str -gr -gs -4195.625 4269.625 m -4201.625 4266.625 L -1.25 slw 0 sg str -gr -gs -4201.625 4266.625 m -4208.625 4266.625 L -1.25 slw 0 sg str -gr -gs -4208.625 4266.625 m -4215.625 4268.625 L -1.25 slw 0 sg str -gr -gs -4215.625 4268.625 m -4223.625 4272.625 L -1.25 slw 0 sg str -gr -gs -4223.625 4272.625 m -4230.625 4277.625 L -1.25 slw 0 sg str -gr -gs -4230.625 4277.625 m -4238.625 4285.625 L -1.25 slw 0 sg str -gr -gs -4238.625 4285.625 m -4246.625 4295.625 L -1.25 slw 0 sg str -gr -gs -4246.625 4295.625 m -4254.625 4308.625 L -1.25 slw 0 sg str -gr -gs -4254.625 4308.625 m -4261.625 4321.625 L -1.25 slw 0 sg str -gr -gs -4261.625 4321.625 m -4269.625 4334.625 L -1.25 slw 0 sg str -gr -gs -4269.625 4334.625 m -4276.625 4347.625 L -1.25 slw 0 sg str -gr -gs -4276.625 4347.625 m -4282.625 4361.625 L -1.25 slw 0 sg str -gr -gs -4282.625 4361.625 m -4289.625 4375.625 L -1.25 slw 0 sg str -gr -gs -4289.625 4375.625 m -4294.625 4389.625 L -1.25 slw 0 sg str -gr -gs -4294.625 4389.625 m -4300.625 4403.625 L -1.25 slw 0 sg str -gr -gs -4300.625 4403.625 m -4305.625 4418.625 L -1.25 slw 0 sg str -gr -gs -4305.625 4418.625 m -4310.625 4432.625 L -1.25 slw 0 sg str -gr -gs -4310.625 4432.625 m -4314.625 4447.625 L -1.25 slw 0 sg str -gr -gs -4314.625 4447.625 m -4318.625 4462.625 L -1.25 slw 0 sg str -gr -gs -4318.625 4462.625 m -4321.625 4477.625 L -1.25 slw 0 sg str -gr -gs -4321.625 4477.625 m -4324.625 4492.625 L -1.25 slw 0 sg str -gr -gs -4324.625 4492.625 m -4327.625 4508.625 L -1.25 slw 0 sg str -gr -gs -4327.625 4508.625 m -4330.625 4524.625 L -1.25 slw 0 sg str -gr -gs -4330.625 4524.625 m -4332.625 4540.625 L -1.25 slw 0 sg str -gr -gs -4332.625 4540.625 m -4333.625 4554.625 L -1.25 slw 0 sg str -gr -gs -4333.625 4554.625 m -4334.625 4568.625 L -1.25 slw 0 sg str -gr -gs -4334.625 4568.625 m -4334.625 4579.625 L -1.25 slw 0 sg str -gr -gs -4334.625 4579.625 m -4334.625 4589.625 L -1.25 slw 0 sg str -gr -gs -4334.625 4589.625 m -4333.625 4596.625 L -1.25 slw 0 sg str -gr -gs -4333.625 4596.625 m -4331.625 4602.625 L -1.25 slw 0 sg str -gr -gs -4331.625 4602.625 m -4329.625 4607.625 L -1.25 slw 0 sg str -gr -gs -4329.625 4607.625 m -4326.625 4609.625 L -1.25 slw 0 sg str -gr -gs -4326.625 4609.625 m -4323.625 4610.625 L -1.25 slw 0 sg str -gr -gs -4323.625 4610.625 m -4319.625 4608.625 L -1.25 slw 0 sg str -gr -gs -4319.625 4608.625 m -4314.625 4605.625 L -1.25 slw 0 sg str -gr -gs -4314.625 4605.625 m -4309.625 4601.625 L -1.25 slw 0 sg str -gr -gs -4309.625 4601.625 m -4303.625 4594.625 L -1.25 slw 0 sg str -gr -gs -4303.625 4594.625 m -4297.625 4586.625 L -1.25 slw 0 sg str -gr -gs -4297.625 4586.625 m -4290.625 4575.625 L -1.25 slw 0 sg str -gr -gs -4290.625 4575.625 m -4283.625 4564.625 L -1.25 slw 0 sg str -gr -gs -4283.625 4564.625 m -4275.625 4550.625 L -1.25 slw 0 sg str -gr -gs -4275.625 4550.625 m -4268.625 4537.625 L -1.25 slw 0 sg str -gr -gs -4268.625 4537.625 m -4262.625 4523.625 L -1.25 slw 0 sg str -gr -gs -4262.625 4523.625 m -4257.625 4509.625 L -1.25 slw 0 sg str -gr -gs -4257.625 4509.625 m -4253.625 4494.625 L -1.25 slw 0 sg str -gr -gs -4253.625 4494.625 m -4250.625 4479.625 L -1.25 slw 0 sg str -gr -gs -4250.625 4479.625 m -4247.625 4463.625 L -1.25 slw 0 sg str -gr -gs -4247.625 4463.625 m -4246.625 4447.625 L -1.25 slw 0 sg str -gr -gs -4246.625 4447.625 m -4245.625 4430.625 L -1.25 slw 0 sg str -gr -gs -4245.625 4430.625 m -4245.625 4413.625 L -1.25 slw 0 sg str -gr -gs -4245.625 4413.625 m -4246.625 4396.625 L -1.25 slw 0 sg str -gr -gs -4246.625 4396.625 m -4248.625 4378.625 L -1.25 slw 0 sg str -gr -gs -4248.625 4378.625 m -4250.625 4360.625 L -1.25 slw 0 sg str -gr -gs -4250.625 4360.625 m -4254.625 4341.625 L -1.25 slw 0 sg str -gr -gs -4254.625 4341.625 m -4258.625 4322.625 L -1.25 slw 0 sg str -gr -gs -4258.625 4322.625 m -4264.625 4303.625 L -1.25 slw 0 sg str -gr -gs -4264.625 4303.625 m -4269.625 4284.625 L -1.25 slw 0 sg str -gr -gs -4269.625 4284.625 m -4275.625 4267.625 L -1.25 slw 0 sg str -gr -gs -4275.625 4267.625 m -4281.625 4252.625 L -1.25 slw 0 sg str -gr -gs -4281.625 4252.625 m -4287.625 4239.625 L -1.25 slw 0 sg str -gr -gs -4287.625 4239.625 m -4293.625 4229.625 L -1.25 slw 0 sg str -gr -gs -4293.625 4229.625 m -4300.625 4220.625 L -1.25 slw 0 sg str -gr -gs -4300.625 4220.625 m -4307.625 4214.625 L -1.25 slw 0 sg str -gr -gs -4307.625 4214.625 m -4313.625 4209.625 L -1.25 slw 0 sg str -gr -gs -4313.625 4209.625 m -4320.625 4207.625 L -1.25 slw 0 sg str -gr -gs -4320.625 4207.625 m -4327.625 4206.625 L -1.25 slw 0 sg str -gr -gs -4327.625 4206.625 m -4334.625 4208.625 L -1.25 slw 0 sg str -gr -gs -4334.625 4208.625 m -4342.625 4212.625 L -1.25 slw 0 sg str -gr -gs -4342.625 4212.625 m -4349.625 4218.625 L -1.25 slw 0 sg str -gr -gs -4349.625 4218.625 m -4357.625 4226.625 L -1.25 slw 0 sg str -gr -gs -4357.625 4226.625 m -4365.625 4236.625 L -1.25 slw 0 sg str -gr -gs -4365.625 4236.625 m -4373.625 4248.625 L -1.25 slw 0 sg str -gr -gs -4373.625 4248.625 m -4380.625 4261.625 L -1.25 slw 0 sg str -gr -gs -4380.625 4261.625 m -4387.625 4274.625 L -1.25 slw 0 sg str -gr -gs -4387.625 4274.625 m -4394.625 4287.625 L -1.25 slw 0 sg str -gr -gs -4394.625 4287.625 m -4401.625 4301.625 L -1.25 slw 0 sg str -gr -gs -4401.625 4301.625 m -4407.625 4315.625 L -1.25 slw 0 sg str -gr -gs -4407.625 4315.625 m -4413.625 4329.625 L -1.25 slw 0 sg str -gr -gs -4413.625 4329.625 m -4418.625 4343.625 L -1.25 slw 0 sg str -gr -gs -4418.625 4343.625 m -4423.625 4357.625 L -1.25 slw 0 sg str -gr -gs -4423.625 4357.625 m -4428.625 4372.625 L -1.25 slw 0 sg str -gr -gs -4428.625 4372.625 m -4432.625 4386.625 L -1.25 slw 0 sg str -gr -gs -4432.625 4386.625 m -4436.625 4401.625 L -1.25 slw 0 sg str -gr -gs -4436.625 4401.625 m -4439.625 4416.625 L -1.25 slw 0 sg str -gr -gs -4439.625 4416.625 m -4443.625 4432.625 L -1.25 slw 0 sg str -gr -gs -4443.625 4432.625 m -4445.625 4447.625 L -1.25 slw 0 sg str -gr -gs -4445.625 4447.625 m -4448.625 4463.625 L -1.25 slw 0 sg str -gr -gs -4448.625 4463.625 m -4450.625 4479.625 L -1.25 slw 0 sg str -gr -gs -4450.625 4479.625 m -4451.625 4494.625 L -1.25 slw 0 sg str -gr -gs -4451.625 4494.625 m -4452.625 4507.625 L -1.25 slw 0 sg str -gr -gs -4452.625 4507.625 m -4452.625 4519.625 L -1.25 slw 0 sg str -gr -gs -4452.625 4519.625 m -4452.625 4528.625 L -1.25 slw 0 sg str -gr -gs -4452.625 4528.625 m -4451.625 4536.625 L -1.25 slw 0 sg str -gr -gs -4451.625 4536.625 m -4449.625 4543.625 L -1.25 slw 0 sg str -gr -gs -4449.625 4543.625 m -4447.625 4547.625 L -1.25 slw 0 sg str -gr -gs -4447.625 4547.625 m -4445.625 4550.625 L -1.25 slw 0 sg str -gr -gs -4445.625 4550.625 m -4441.625 4551.625 L -1.25 slw 0 sg str -gr -gs -4441.625 4551.625 m -4437.625 4550.625 L -1.25 slw 0 sg str -gr -gs -4437.625 4550.625 m -4433.625 4547.625 L -1.25 slw 0 sg str -gr -gs -4433.625 4547.625 m -4428.625 4543.625 L -1.25 slw 0 sg str -gr -gs -4428.625 4543.625 m -4422.625 4537.625 L -1.25 slw 0 sg str -gr -gs -4422.625 4537.625 m -4416.625 4529.625 L -1.25 slw 0 sg str -gr -gs -4416.625 4529.625 m -4409.625 4519.625 L -1.25 slw 0 sg str -gr -gs -4409.625 4519.625 m -4402.625 4508.625 L -1.25 slw 0 sg str -gr -gs -4402.625 4508.625 m -4394.625 4495.625 L -1.25 slw 0 sg str -gr -gs -4394.625 4495.625 m -4387.625 4482.625 L -1.25 slw 0 sg str -gr -gs -4387.625 4482.625 m -4382.625 4468.625 L -1.25 slw 0 sg str -gr -gs -4382.625 4468.625 m -4376.625 4453.625 L -1.25 slw 0 sg str -gr -gs -4376.625 4453.625 m -4372.625 4438.625 L -1.25 slw 0 sg str -gr -gs -4372.625 4438.625 m -4368.625 4422.625 L -1.25 slw 0 sg str -gr -gs -4368.625 4422.625 m -4365.625 4405.625 L -1.25 slw 0 sg str -gr -gs -4365.625 4405.625 m -4363.625 4388.625 L -1.25 slw 0 sg str -gr -gs -4363.625 4388.625 m -4362.625 4369.625 L -1.25 slw 0 sg str -gr -gs -4362.625 4369.625 m -4361.625 4351.625 L -1.25 slw 0 sg str -gr -gs -4361.625 4351.625 m -4361.625 4331.625 L -1.25 slw 0 sg str -gr -gs -4361.625 4331.625 m -4362.625 4311.625 L -1.25 slw 0 sg str -gr -gs -4362.625 4311.625 m -4363.625 4290.625 L -1.25 slw 0 sg str -gr -gs -4363.625 4290.625 m -4366.625 4269.625 L -1.25 slw 0 sg str -gr -gs -4366.625 4269.625 m -4369.625 4246.625 L -1.25 slw 0 sg str -gr -gs -4369.625 4246.625 m -4373.625 4224.625 L -1.25 slw 0 sg str -gr -gs -4373.625 4224.625 m -4377.625 4202.625 L -1.25 slw 0 sg str -gr -gs -4377.625 4202.625 m -4382.625 4184.625 L -1.25 slw 0 sg str -gr -gs -4382.625 4184.625 m -4388.625 4169.625 L -1.25 slw 0 sg str -gr -gs -4388.625 4169.625 m -4395.625 4158.625 L -1.25 slw 0 sg str -gr -gs -4395.625 4158.625 m -4403.625 4151.625 L -1.25 slw 0 sg str -gr -gs -4403.625 4151.625 m -4412.625 4147.625 L -1.25 slw 0 sg str -gr -gs -4412.625 4147.625 m -4421.625 4146.625 L -1.25 slw 0 sg str -gr -gs -4421.625 4146.625 m -4431.625 4149.625 L -1.25 slw 0 sg str -gr -gs -4431.625 4149.625 m -4442.625 4155.625 L -1.25 slw 0 sg str -gr -gs -4442.625 4155.625 m -4454.625 4165.625 L -1.25 slw 0 sg str -gr -gs -4454.625 4165.625 m -4467.625 4179.625 L -1.25 slw 0 sg str -gr -gs -4467.625 4179.625 m -4480.625 4195.625 L -1.25 slw 0 sg str -gr -gs -4480.625 4195.625 m -4494.625 4216.625 L -1.25 slw 0 sg str -gr -gs -4494.625 4216.625 m -4509.625 4239.625 L -1.25 slw 0 sg str -gr -gs -4509.625 4239.625 m -4525.625 4267.625 L -1.25 slw 0 sg str -gr -gs -4525.625 4267.625 m -4542.625 4298.625 L -1.25 slw 0 sg str -gr -gs -4542.625 4298.625 m -4602.625 4268.625 L -1.25 slw 0 sg str -gr -gs -3837 5043 6337 5043 6337 3793 3837 5043 3 P closepath -1.25 slw 0 sg str -gr -gs -4775.5 4574.5 m -4462.5 3949.5 L -35 slw 0 sg str -gr -gs -3524 5043 3837 5043 3524 4418 3524 5043 3 P closepath -0 0 0 1 1 1 [76 210 83 45 150 89 70 179] patfill -gr -gs -3524 5043 3837 5043 3524 4418 3524 5043 3 P closepath -1.25 slw 0 sg str -gr -gs -4396 4763 4417 4810 4429 4843 4439 4877 4448 4911 4454 4946 4459 4981 4461 5016 -4462 5043 8 P -1.25 slw 0 sg str -gr -gs -5712 4106 6337 3793 6025 3168 5400 3480 5712 4106 4 P closepath -0.5 sg fill -gr -gs -5712 4106 6337 3793 6025 3168 5400 3480 5712 4106 4 P closepath -1.25 slw 0 sg str -gr -gs -4384.625 3754.625 m -4696.625 3598.625 L -1.25 slw 0 sg str -gr -gs -4970.625 3441.625 m -5282.625 3285.625 L -1.25 slw 0 sg str -gr -gs -4462.625 3949.625 m -4306.625 3637.625 L -1.25 slw 0 sg str -gr -gs -5400.625 3480.625 m -5243.625 3168.625 L -1.25 slw 0 sg str -gr -gs -4762 3407 4866 3632 R -1 sg fill -gr -/_Times-Roman ff [208 0 0 -208 0 0] mf sf -4762 3563 m 0 sg (d) show -gs -5790 3524 5946 3750 R -1 sg fill -gr -5790 3680 m 2.08 slw 0 sg (m) show -gs -3902 4110 4006 4336 R -1 sg fill -gr -3902 4266 m 2.08 slw 0 sg (k) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob01a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob01a.gif deleted file mode 100755 index 16901b316..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob01a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob02a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob02a.eps deleted file mode 100755 index a69d4ed14..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob02a.eps +++ /dev/null @@ -1,1410 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Pend_peg.eps -%%CreationDate: 8/12/1996 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%BoundingBox:37 515 262 713 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -3439.625 4557.625 m -3388.625 4556.625 L -1.25 slw 0 sg str -gr -gs -3335.625 4555.625 m -3333.625 4555.625 L -1.25 slw 0 sg str -gr -gs -3333.625 4555.625 m -3284.625 4552.625 L -1.25 slw 0 sg str -gr -gs -3231.625 4548.625 m -3191.625 4545.625 L -1.25 slw 0 sg str -gr -gs -3191.625 4545.625 m -3180.625 4544.625 L -1.25 slw 0 sg str -gr -gs -3127.625 4538.625 m -3121.625 4537.625 L -1.25 slw 0 sg str -gr -gs -3121.625 4537.625 m -3077.625 4531.625 L -1.25 slw 0 sg str -gr -gs -3024.625 4522.625 m -2981.625 4515.625 L -1.25 slw 0 sg str -gr -gs -2981.625 4515.625 m -2974.625 4514.625 L -1.25 slw 0 sg str -gr -gs -2922.625 4504.625 m -2912.625 4502.625 L -1.25 slw 0 sg str -gr -gs -2912.625 4502.625 m -2872.625 4493.625 L -1.25 slw 0 sg str -gr -gs -2820.625 4480.625 m -2774.625 4468.625 L -1.25 slw 0 sg str -gr -gs -2774.625 4468.625 m -2771.625 4467.625 L -1.25 slw 0 sg str -gr -gs -2720.625 4452.625 m -2706.625 4448.625 L -1.25 slw 0 sg str -gr -gs -2706.625 4448.625 m -2671.625 4437.625 L -1.25 slw 0 sg str -gr -gs -2621.625 4420.625 m -2573.625 4403.625 L -1.25 slw 0 sg str -gr -gs -2572.625 4403.625 m -2573.625 4403.625 L -1.25 slw 0 sg str -gr -gs -2523.625 4385.625 m -2505.625 4378.625 L -1.25 slw 0 sg str -gr -gs -2505.625 4378.625 m -2476.625 4365.625 L -1.25 slw 0 sg str -gr -gs -2427.625 4344.625 m -2380.625 4323.625 L -1.25 slw 0 sg str -gr -gs -2333.625 4300.625 m -2311.625 4290.625 L -1.25 slw 0 sg str -gr -gs -2311.625 4290.625 m -2287.625 4278.625 L -1.25 slw 0 sg str -gr -gs -2240.625 4253.625 m -2195.625 4228.625 L -1.25 slw 0 sg str -gr -gs -2149.625 4201.625 m -2125.625 4187.625 L -1.25 slw 0 sg str -gr -gs -2125.625 4187.625 m -2106.625 4175.625 L -1.25 slw 0 sg str -gr -gs -2061.625 4147.625 m -2018.625 4119.625 L -1.25 slw 0 sg str -gr -gs -1975.625 4088.625 m -1947.625 4068.625 L -1.25 slw 0 sg str -gr -gs -1947.625 4068.625 m -1934.625 4058.625 L -1.25 slw 0 sg str -gr -gs -1891.625 4026.625 m -1890.625 4025.625 L -1.25 slw 0 sg str -gr -gs -1890.625 4025.625 m -1851.625 3994.625 L -1.25 slw 0 sg str -gr -gs -1810.625 3960.625 m -1780.625 3935.625 L -1.25 slw 0 sg str -gr -gs -1780.625 3935.625 m -1771.625 3927.625 L -1.25 slw 0 sg str -gr -gs -1732.625 3892.625 m -1727.625 3888.625 L -1.25 slw 0 sg str -gr -gs -1727.625 3888.625 m -1694.625 3857.625 L -1.25 slw 0 sg str -gr -gs -1656.625 3820.625 m -1624.625 3788.625 L -1.25 slw 0 sg str -gr -gs -1624.625 3788.625 m -1620.625 3784.625 L -1.25 slw 0 sg str -gr -gs -1584.625 3745.625 m -1575.625 3736.625 L -1.25 slw 0 sg str -gr -gs -1575.625 3736.625 m -1549.625 3708.625 L -1.25 slw 0 sg str -gr -gs -1514.625 3668.625 m -1481.625 3629.625 L -1.25 slw 0 sg str -gr -gs -1481.625 3629.625 m -dot -1.25 slw 0 sg str -gr -gs -1448.625 3588.625 m -1436.625 3573.625 L -1.25 slw 0 sg str -gr -gs -1436.625 3573.625 m -1417.625 3547.625 L -1.25 slw 0 sg str -gr -gs -1385.625 3505.625 m -1355.625 3463.625 L -1.25 slw 0 sg str -gr -gs -1325.625 3419.625 m -1311.625 3398.625 L -1.25 slw 0 sg str -gr -gs -1311.625 3398.625 m -1297.625 3376.625 L -1.25 slw 0 sg str -gr -gs -1269.625 3331.625 m -1243.625 3288.625 L -1.25 slw 0 sg str -gr -gs -1217.625 3241.625 m -1201.625 3213.625 L -1.25 slw 0 sg str -gr -gs -1201.625 3213.625 m -1192.625 3197.625 L -1.25 slw 0 sg str -gr -gs -1168.625 3150.625 m -1145.625 3104.625 L -1.25 slw 0 sg str -gr -gs -1122.625 3056.625 m -1106.625 3020.625 L -1.25 slw 0 sg str -gr -gs -1106.625 3020.625 m -1101.625 3009.625 L -1.25 slw 0 sg str -gr -gs -1081.625 2960.625 m -1078.625 2954.625 L -1.25 slw 0 sg str -gr -gs -1078.625 2954.625 m -1062.625 2913.625 L -1.25 slw 0 sg str -gr -gs -1043.625 2863.625 m -1027.625 2819.625 L -1.25 slw 0 sg str -gr -gs -1027.625 2819.625 m -1026.625 2815.625 L -1.25 slw 0 sg str -gr -gs -1009.625 2765.625 m -1005.625 2751.625 L -1.25 slw 0 sg str -gr -gs -1005.625 2751.625 m -994.625 2716.625 L -1.25 slw 0 sg str -gr -gs -979.625 2665.625 m -966.625 2616.625 L -1.25 slw 0 sg str -gr -gs -953.625 2564.625 m -948.625 2543.625 L -1.25 slw 0 sg str -gr -gs -948.625 2543.625 m -942.625 2514.625 L -1.25 slw 0 sg str -gr -gs -931.625 2462.625 m -922.625 2412.625 L -1.25 slw 0 sg str -gr -gs -913.625 2360.625 m -908.625 2330.625 L -1.25 slw 0 sg str -gr -gs -908.625 2330.625 m -905.625 2309.625 L -1.25 slw 0 sg str -gr -gs -899.625 2257.625 m -894.625 2206.625 L -1.25 slw 0 sg str -gr -gs -889.625 2153.625 m -886.625 2115.625 L -1.25 slw 0 sg str -gr -gs -886.625 2115.625 m -885.625 2102.625 L -1.25 slw 0 sg str -gr -gs -883.625 2049.625 m -883.625 2043.625 L -1.25 slw 0 sg str -gr -gs -883.625 2043.625 m -882.625 1998.625 L -1.25 slw 0 sg str -gr -gs -711 1780 1052 2127 OV -0.75 sg fill -gr -gs -711.625 1780.625 1052.375 2127.375 OV -1.25 slw 0 sg str -gr -gs -3439.625 1997.625 m -3439.625 4384.625 L -1.25 slw 0 sg str -gr -gs -1052.5 1953.5 m -3396.5 1953.5 L -35 slw 0 sg str -gr -gs -3396 1910 3481 1997 OV -1 sg fill -gr -gs -3396.625 1910.625 3481.375 1997.375 OV -1.25 slw 0 sg str -gr -gs -3396 3472 3481 3559 OV -0.5 sg fill -gr -gs -3396.625 3472.625 3481.375 3559.375 OV -1.25 slw 0 sg str -gr -gs -4121 4297 3977 4200 4045 4141 2 P -0 sg fill -gr -gs -3439.625 3516.625 m -4011.625 4170.625 L -1.25 slw 0 sg str -gr -gs -882.625 1606.625 m -882.625 1780.625 L -1.25 slw 0 sg str -gr -gs -3439.625 1606.625 m -3439.625 1910.625 L -1.25 slw 0 sg str -gr -gs -882.625 1693.625 m -1905.625 1693.625 L -1.25 slw 0 sg str -gr -gs -2331.625 1693.625 m -3439.625 1693.625 L -1.25 slw 0 sg str -gr -gs -3609.625 1953.625 m -3609.625 2561.625 L -1.25 slw 0 sg str -gr -gs -3609.625 2865.625 m -3609.625 3516.625 L -1.25 slw 0 sg str -gr -gs -3481.625 3516.625 m -3695.625 3516.625 L -1.25 slw 0 sg str -gr -gs -3481.625 1953.625 m -3695.625 1953.625 L -1.25 slw 0 sg str -gr -gs -2039 1649 2161 1875 R -1 sg fill -gr -/_Times-Roman ff [208 0 0 -208 0 0] mf sf -2039 1805 m 0 sg (L) show -gs -3602 2665 3706 2891 R -1 sg fill -gr -3602 2821 m 2.08 slw 0 sg (d) show -gs -3888 3759 3940 3985 R -1 sg fill -gr -3888 3915 m 2.08 slw 0 sg (r) show -gs -3237 3368 3341 3594 R -1 sg fill -gr -3237 3524 m 2.08 slw 0 sg (P) show -gs -3439.625 4557.625 m -3388.625 4556.625 L -1.25 slw 0 sg str -gr -gs -3335.625 4552.625 m -3325.625 4551.625 L -1.25 slw 0 sg str -gr -gs -3325.625 4551.625 m -3284.625 4546.625 L -1.25 slw 0 sg str -gr -gs -3232.625 4537.625 m -3190.625 4527.625 L -1.25 slw 0 sg str -gr -gs -3190.625 4527.625 m -3182.625 4525.625 L -1.25 slw 0 sg str -gr -gs -3131.625 4511.625 m -3102.625 4501.625 L -1.25 slw 0 sg str -gr -gs -3102.625 4501.625 m -3083.625 4494.625 L -1.25 slw 0 sg str -gr -gs -3033.625 4475.625 m -3017.625 4468.625 L -1.25 slw 0 sg str -gr -gs -3017.625 4468.625 m -2987.625 4454.625 L -1.25 slw 0 sg str -gr -gs -2940.625 4429.625 m -2935.625 4427.625 L -1.25 slw 0 sg str -gr -gs -2935.625 4427.625 m -2895.625 4404.625 L -1.25 slw 0 sg str -gr -gs -2895.625 4404.625 m -dot -1.25 slw 0 sg str -gr -gs -2851.625 4375.625 m -2819.625 4353.625 L -1.25 slw 0 sg str -gr -gs -2819.625 4353.625 m -2809.625 4346.625 L -1.25 slw 0 sg str -gr -gs -2768.625 4312.625 m -2748.625 4296.625 L -1.25 slw 0 sg str -gr -gs -2748.625 4296.625 m -2730.625 4278.625 L -1.25 slw 0 sg str -gr -gs -2692.625 4241.625 m -2682.625 4232.625 L -1.25 slw 0 sg str -gr -gs -2682.625 4232.625 m -2657.625 4204.625 L -1.25 slw 0 sg str -gr -gs -2623.625 4163.625 m -2595.625 4126.625 L -1.25 slw 0 sg str -gr -gs -2595.625 4126.625 m -2592.625 4122.625 L -1.25 slw 0 sg str -gr -gs -2562.625 4078.625 m -2545.625 4050.625 L -1.25 slw 0 sg str -gr -gs -2545.625 4050.625 m -2536.625 4035.625 L -1.25 slw 0 sg str -gr -gs -2511.625 3988.625 m -2501.625 3969.625 L -1.25 slw 0 sg str -gr -gs -2501.625 3969.625 m -2489.625 3942.625 L -1.25 slw 0 sg str -gr -gs -2468.625 3893.625 m -2465.625 3885.625 L -1.25 slw 0 sg str -gr -gs -2465.625 3885.625 m -2451.625 3845.625 L -1.25 slw 0 sg str -gr -gs -2435.625 3794.625 m -2425.625 3754.625 L -1.25 slw 0 sg str -gr -gs -2425.625 3754.625 m -2423.625 3745.625 L -1.25 slw 0 sg str -gr -gs -2412.625 3693.625 m -2408.625 3664.625 L -1.25 slw 0 sg str -gr -gs -2408.625 3664.625 m -2406.625 3642.625 L -1.25 slw 0 sg str -gr -gs -2400.625 3589.625 m -2399.625 3573.625 L -1.25 slw 0 sg str -gr -gs -2399.625 3573.625 m -2397.625 3538.625 L -1.25 slw 0 sg str -gr -gs -2398.625 3485.625 m -2398.625 3482.625 L -1.25 slw 0 sg str -gr -gs -2398.625 3482.625 m -2400.625 3436.625 L -1.25 slw 0 sg str -gr -gs -2400.625 3436.625 m -2400.625 3434.625 L -1.25 slw 0 sg str -gr -gs -2406.625 3381.625 m -2411.625 3345.625 L -1.25 slw 0 sg str -gr -gs -2411.625 3345.625 m -2414.625 3331.625 L -1.25 slw 0 sg str -gr -gs -2425.625 3279.625 m -2430.625 3255.625 L -1.25 slw 0 sg str -gr -gs -2430.625 3255.625 m -2438.625 3230.625 L -1.25 slw 0 sg str -gr -gs -2453.625 3179.625 m -2457.625 3168.625 L -1.25 slw 0 sg str -gr -gs -2457.625 3168.625 m -2471.625 3131.625 L -1.25 slw 0 sg str -gr -gs -2492.625 3082.625 m -2512.625 3042.625 L -1.25 slw 0 sg str -gr -gs -2512.625 3042.625 m -2515.625 3037.625 L -1.25 slw 0 sg str -gr -gs -2540.625 2990.625 m -2557.625 2962.625 L -1.25 slw 0 sg str -gr -gs -2557.625 2962.625 m -2567.625 2947.625 L -1.25 slw 0 sg str -gr -gs -2597.625 2903.625 m -2609.625 2887.625 L -1.25 slw 0 sg str -gr -gs -2609.625 2887.625 m -2628.625 2862.625 L -1.25 slw 0 sg str -gr -gs -2663.625 2822.625 m -2667.625 2817.625 L -1.25 slw 0 sg str -gr -gs -2667.625 2817.625 m -2697.625 2784.625 L -1.25 slw 0 sg str -gr -gs -2736.625 2748.625 m -2765.625 2721.625 L -1.25 slw 0 sg str -gr -gs -2765.625 2721.625 m -2774.625 2714.625 L -1.25 slw 0 sg str -gr -gs -2816.625 2681.625 m -2838.625 2665.625 L -1.25 slw 0 sg str -gr -gs -2838.625 2665.625 m -2858.625 2652.625 L -1.25 slw 0 sg str -gr -gs -2903.625 2624.625 m -2915.625 2616.625 L -1.25 slw 0 sg str -gr -gs -2915.625 2616.625 m -2947.625 2598.625 L -1.25 slw 0 sg str -gr -gs -2994.625 2574.625 m -2996.625 2573.625 L -1.25 slw 0 sg str -gr -gs -2996.625 2573.625 m -3038.625 2554.625 L -1.25 slw 0 sg str -gr -gs -3038.625 2554.625 m -3041.625 2553.625 L -1.25 slw 0 sg str -gr -gs -3090.625 2534.625 m -3124.625 2523.625 L -1.25 slw 0 sg str -gr -gs -3124.625 2523.625 m -3139.625 2519.625 L -1.25 slw 0 sg str -gr -gs -3190.625 2504.625 m -3212.625 2499.625 L -1.25 slw 0 sg str -gr -gs -3212.625 2499.625 m -3240.625 2493.625 L -1.25 slw 0 sg str -gr -gs -3292.625 2485.625 m -3302.625 2483.625 L -1.25 slw 0 sg str -gr -gs -3302.625 2483.625 m -3343.625 2479.625 L -1.25 slw 0 sg str -gr -gs -3396.625 2475.625 m -3439.625 2474.625 L -1.25 slw 0 sg str -gr -gs -3439.625 2474.625 m -3447.625 2474.625 L -1.25 slw 0 sg str -gr -gs -3500.625 2476.625 m -3531.625 2478.625 L -1.25 slw 0 sg str -gr -gs -3531.625 2478.625 m -3551.625 2480.625 L -1.25 slw 0 sg str -gr -gs -3603.625 2487.625 m -3621.625 2490.625 L -1.25 slw 0 sg str -gr -gs -3621.625 2490.625 m -3654.625 2497.625 L -1.25 slw 0 sg str -gr -gs -3705.625 2509.625 m -3710.625 2510.625 L -1.25 slw 0 sg str -gr -gs -3710.625 2510.625 m -3754.625 2523.625 L -1.25 slw 0 sg str -gr -gs -3754.625 2523.625 m -dot -1.25 slw 0 sg str -gr -gs -3805.625 2540.625 m -3840.625 2554.625 L -1.25 slw 0 sg str -gr -gs -3840.625 2554.625 m -3852.625 2559.625 L -1.25 slw 0 sg str -gr -gs -3900.625 2582.625 m -3923.625 2594.625 L -1.25 slw 0 sg str -gr -gs -3923.625 2594.625 m -3945.625 2606.625 L -1.25 slw 0 sg str -gr -gs -3991.625 2633.625 m -4002.625 2640.625 L -1.25 slw 0 sg str -gr -gs -4002.625 2640.625 m -4034.625 2661.625 L -1.25 slw 0 sg str -gr -gs -4077.625 2692.625 m -dot -1.25 slw 0 sg str -gr -gs -4077.625 2692.625 m -4112.625 2721.625 L -1.25 slw 0 sg str -gr -gs -4112.625 2721.625 m -4116.625 2724.625 L -1.25 slw 0 sg str -gr -gs -4155.625 2760.625 m -4180.625 2783.625 L -1.25 slw 0 sg str -gr -gs -4180.625 2783.625 m -4192.625 2796.625 L -1.25 slw 0 sg str -gr -gs -4227.625 2835.625 m -4241.625 2851.625 L -1.25 slw 0 sg str -gr -gs -4241.625 2851.625 m -4260.625 2875.625 L -1.25 slw 0 sg str -gr -gs -4291.625 2917.625 m -4296.625 2924.625 L -1.25 slw 0 sg str -gr -gs -4296.625 2924.625 m -4320.625 2960.625 L -1.25 slw 0 sg str -gr -gs -4347.625 3005.625 m -4366.625 3042.625 L -1.25 slw 0 sg str -gr -gs -4366.625 3042.625 m -4370.625 3051.625 L -1.25 slw 0 sg str -gr -gs -4394.625 3098.625 m -4405.625 3125.625 L -1.25 slw 0 sg str -gr -gs -4405.625 3125.625 m -4413.625 3146.625 L -1.25 slw 0 sg str -gr -gs -4430.625 3196.625 m -4435.625 3212.625 L -1.25 slw 0 sg str -gr -gs -4435.625 3212.625 m -4445.625 3245.625 L -1.25 slw 0 sg str -gr -gs -4457.625 3296.625 m -4458.625 3300.625 L -1.25 slw 0 sg str -gr -gs -4458.625 3300.625 m -4466.625 3345.625 L -1.25 slw 0 sg str -gr -gs -4466.625 3345.625 m -4466.625 3347.625 L -1.25 slw 0 sg str -gr -gs -4474.625 3399.625 m -4477.625 3436.625 L -1.25 slw 0 sg str -gr -gs -4477.625 3436.625 m -4478.625 3450.625 L -1.25 slw 0 sg str -gr -gs -4480.625 3503.625 m -4481.625 3527.625 L -1.25 slw 0 sg str -gr -gs -4481.625 3527.625 m -4480.625 3554.625 L -1.25 slw 0 sg str -gr -gs -4476.625 3607.625 m -4475.625 3619.625 L -1.25 slw 0 sg str -gr -gs -4475.625 3619.625 m -4471.625 3658.625 L -1.25 slw 0 sg str -gr -gs -4463.625 3710.625 m -4453.625 3754.625 L -1.25 slw 0 sg str -gr -gs -4453.625 3754.625 m -4451.625 3760.625 L -1.25 slw 0 sg str -gr -gs -4437.625 3811.625 m -4428.625 3842.625 L -1.25 slw 0 sg str -gr -gs -4428.625 3842.625 m -4422.625 3860.625 L -1.25 slw 0 sg str -gr -gs -4403.625 3910.625 m -4396.625 3927.625 L -1.25 slw 0 sg str -gr -gs -4396.625 3927.625 m -4383.625 3956.625 L -1.25 slw 0 sg str -gr -gs -4359.625 4004.625 m -4356.625 4010.625 L -1.25 slw 0 sg str -gr -gs -4356.625 4010.625 m -4334.625 4048.625 L -1.25 slw 0 sg str -gr -gs -4306.625 4094.625 m -4283.625 4126.625 L -1.25 slw 0 sg str -gr -gs -4283.625 4126.625 m -4276.625 4135.625 L -1.25 slw 0 sg str -gr -gs -4243.625 4177.625 m -4226.625 4198.625 L -1.25 slw 0 sg str -gr -gs -4226.625 4198.625 m -4210.625 4215.625 L -1.25 slw 0 sg str -gr -gs -4173.625 4254.625 m -4163.625 4264.625 L -1.25 slw 0 sg str -gr -gs -4163.625 4264.625 m -4137.625 4289.625 L -1.25 slw 0 sg str -gr -gs -4096.625 4324.625 m -4095.625 4325.625 L -1.25 slw 0 sg str -gr -gs -4095.625 4325.625 m -4058.625 4353.625 L -1.25 slw 0 sg str -gr -gs -4058.625 4353.625 m -4056.625 4355.625 L -1.25 slw 0 sg str -gr -gs -4012.625 4385.625 m -3983.625 4404.625 L -1.25 slw 0 sg str -gr -gs -3983.625 4404.625 m -3969.625 4412.625 L -1.25 slw 0 sg str -gr -gs -3922.625 4438.625 m -3903.625 4448.625 L -1.25 slw 0 sg str -gr -gs -3903.625 4448.625 m -3877.625 4461.625 L -1.25 slw 0 sg str -gr -gs -3828.625 4482.625 m -3819.625 4486.625 L -1.25 slw 0 sg str -gr -gs -3819.625 4486.625 m -3780.625 4500.625 L -1.25 slw 0 sg str -gr -gs -3730.625 4516.625 m -3688.625 4527.625 L -1.25 slw 0 sg str -gr -gs -3688.625 4527.625 m -3680.625 4529.625 L -1.25 slw 0 sg str -gr -gs -3628.625 4540.625 m -3599.625 4545.625 L -1.25 slw 0 sg str -gr -gs -3599.625 4545.625 m -3578.625 4548.625 L -1.25 slw 0 sg str -gr -gs -3525.625 4553.625 m -3508.625 4555.625 L -1.25 slw 0 sg str -gr -gs -3508.625 4555.625 m -3485.625 4556.625 L -1.25 slw 0 sg str -gr -gs -3485.625 4556.625 m -3474.625 4556.625 L -1.25 slw 0 sg str -gr -gs -3268 4384 3609 4731 OV -1 sg fill -gr -gs -3268.625 4384.625 3609.375 4731.375 OV -1.25 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob02a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob02a.gif deleted file mode 100755 index 3c124bf1c..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob02a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob03.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob03.eps deleted file mode 100755 index e7e090a35..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob03.eps +++ /dev/null @@ -1,2161 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: limp_rope.eps -%%CreationDate: 6/9/1996 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%BoundingBox:245 461 334 642 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -5189.625 3608.625 m -5188.625 3601.625 L -1.25 slw 0 sg str -gr -gs -5180.625 3572.625 m -5158.625 3542.625 L -1.25 slw 0 sg str -gr -gs -5189 3608 5188 3615 5186 3622 5184 3629 5181 3635 5179 3637 5 P -0.5 sg fill -gr -gs -5189 3608 5188 3615 5186 3622 5184 3629 5181 3635 5179 3637 5 P -1.25 slw 0 sg str -gr -gs -5179 3572 5184 3580 5186 3586 5188 3593 5188 3601 4 P -0.5 sg fill -gr -gs -5179 3572 5184 3580 5186 3586 5188 3593 5188 3601 4 P -1.25 slw 0 sg str -gr -gs -5128.625 3584.625 m -5106.625 3554.625 L -1.25 slw 0 sg str -gr -gs -5098.625 3525.625 m -5098.625 3518.625 L -1.25 slw 0 sg str -gr -gs -5107.625 3488.625 m -5180.625 3387.625 L -1.25 slw 0 sg str -gr -gs -5189.625 3357.625 m -5189.625 3350.625 L -1.25 slw 0 sg str -gr -gs -5180.625 3320.625 m -5159.625 3291.625 L -1.25 slw 0 sg str -gr -gs -5108 3554 5103 3546 5101 3538 5100 3532 5099 3525 4 P -0.5 sg fill -gr -gs -5108 3554 5103 3546 5101 3538 5100 3532 5099 3525 4 P -1.25 slw 0 sg str -gr -gs -5099 3517 5100 3510 5101 3503 5103 3496 5107 3490 5107 3488 5 P -0.5 sg fill -gr -gs -5099 3517 5100 3510 5101 3503 5103 3496 5107 3490 5107 3488 5 P -1.25 slw 0 sg str -gr -gs -5189 3357 5187 3364 5186 3371 5185 3378 5182 3383 5179 3387 5 P -0.5 sg fill -gr -gs -5189 3357 5187 3364 5186 3371 5185 3378 5182 3383 5179 3387 5 P -1.25 slw 0 sg str -gr -gs -5179 3321 5185 3329 5186 3335 5188 3343 5189 3350 4 P -0.5 sg fill -gr -gs -5179 3321 5185 3329 5186 3335 5188 3343 5189 3350 4 P -1.25 slw 0 sg str -gr -gs -5107.625 3613.625 m -5180.625 3513.625 L -1.25 slw 0 sg str -gr -gs -5188.625 3483.625 m -5188.625 3475.625 L -1.25 slw 0 sg str -gr -gs -5180.625 3446.625 m -5158.625 3416.625 L -1.25 slw 0 sg str -gr -gs -5099 3643 5100 3635 5100 3629 5103 3622 5106 3616 5108 3613 5 P -0.5 sg fill -gr -gs -5099 3643 5100 3635 5100 3629 5103 3622 5106 3616 5108 3613 5 P -1.25 slw 0 sg str -gr -gs -5189 3483 5188 3490 5186 3497 5184 3503 5181 3510 5179 3512 5 P -0.5 sg fill -gr -gs -5189 3483 5188 3490 5186 3497 5184 3503 5181 3510 5179 3512 5 P -1.25 slw 0 sg str -gr -gs -5179 3446 5185 3455 5186 3461 5188 3468 5188 3475 4 P -0.5 sg fill -gr -gs -5179 3446 5185 3455 5186 3461 5188 3468 5188 3475 4 P -1.25 slw 0 sg str -gr -gs -5128.625 3458.625 m -5106.625 3429.625 L -1.25 slw 0 sg str -gr -gs -5098.625 3399.625 m -5098.625 3392.625 L -1.25 slw 0 sg str -gr -gs -5106.625 3363.625 m -5180.625 3261.625 L -1.25 slw 0 sg str -gr -gs -5188.625 3232.625 m -5189.625 3225.625 L -1.25 slw 0 sg str -gr -gs -5180.625 3195.625 m -5159.625 3166.625 L -1.25 slw 0 sg str -gr -gs -5107 3428 5103 3420 5101 3413 5100 3406 5100 3399 4 P -0.5 sg fill -gr -gs -5107 3428 5103 3420 5101 3413 5100 3406 5100 3399 4 P -1.25 slw 0 sg str -gr -gs -5099 3392 5099 3385 5100 3377 5103 3371 5106 3365 5108 3362 5 P -0.5 sg fill -gr -gs -5099 3392 5099 3385 5100 3377 5103 3371 5106 3365 5108 3362 5 P -1.25 slw 0 sg str -gr -gs -5189 3232 5188 3239 5186 3246 5185 3253 5182 3259 5179 3261 5 P -0.5 sg fill -gr -gs -5189 3232 5188 3239 5186 3246 5185 3253 5182 3259 5179 3261 5 P -1.25 slw 0 sg str -gr -gs -5179 3194 5185 3204 5186 3210 5188 3217 5189 3224 4 P -0.5 sg fill -gr -gs -5179 3194 5185 3204 5186 3210 5188 3217 5189 3224 4 P -1.25 slw 0 sg str -gr -gs -5129.625 3207.625 m -5107.625 3178.625 L -1.25 slw 0 sg str -gr -gs -5099.625 3148.625 m -5099.625 3141.625 L -1.25 slw 0 sg str -gr -gs -5107.625 3112.625 m -5180.625 3010.625 L -1.25 slw 0 sg str -gr -gs -5108 3177 5103 3169 5100 3163 5100 3155 5099 3148 4 P -0.5 sg fill -gr -gs -5108 3177 5103 3169 5100 3163 5100 3155 5099 3148 4 P -1.25 slw 0 sg str -gr -gs -5100 3141 5100 3134 5100 3127 5103 3120 5107 3114 5108 3112 5 P -0.5 sg fill -gr -gs -5100 3141 5100 3134 5100 3127 5103 3120 5107 3114 5108 3112 5 P -1.25 slw 0 sg str -gr -gs -5188 2981 5188 2988 5186 2995 5184 3002 5181 3008 5179 3010 5 P -0.5 sg fill -gr -gs -5188 2981 5188 2988 5186 2995 5184 3002 5181 3008 5179 3010 5 P -1.25 slw 0 sg str -gr -gs -5129.625 3337.625 m -5107.625 3307.625 L -1.25 slw 0 sg str -gr -gs -5098.625 3277.625 m -5098.625 3271.625 L -1.25 slw 0 sg str -gr -gs -5107.625 3241.625 m -5180.625 3139.625 L -1.25 slw 0 sg str -gr -gs -5189.625 3110.625 m -5189.625 3103.625 L -1.25 slw 0 sg str -gr -gs -5180.625 3073.625 m -5158.625 3044.625 L -1.25 slw 0 sg str -gr -gs -5108 3307 5103 3298 5101 3291 5100 3284 5099 3277 4 P -0.5 sg fill -gr -gs -5108 3307 5103 3298 5101 3291 5100 3284 5099 3277 4 P -1.25 slw 0 sg str -gr -gs -5100 3270 5100 3263 5101 3256 5103 3249 5107 3243 5108 3241 5 P -0.5 sg fill -gr -gs -5100 3270 5100 3263 5101 3256 5103 3249 5107 3243 5108 3241 5 P -1.25 slw 0 sg str -gr -gs -5189 3110 5188 3117 5186 3124 5184 3131 5181 3138 5179 3139 5 P -0.5 sg fill -gr -gs -5189 3110 5188 3117 5186 3124 5184 3131 5181 3138 5179 3139 5 P -1.25 slw 0 sg str -gr -gs -5179 3073 5184 3082 5186 3088 5188 3096 5188 3102 4 P -0.5 sg fill -gr -gs -5179 3073 5184 3082 5186 3088 5188 3096 5188 3102 4 P -1.25 slw 0 sg str -gr -gs -5129.625 3082.625 m -5107.625 3052.625 L -1.25 slw 0 sg str -gr -gs -5098.625 3023.625 m -5098.625 3015.625 L -1.25 slw 0 sg str -gr -gs -5108 3052 5103 3044 5100 3037 5100 3030 5099 3023 4 P -0.5 sg fill -gr -gs -5108 3052 5103 3044 5100 3037 5100 3030 5099 3023 4 P -1.25 slw 0 sg str -gr -gs -5100 3016 5100 3008 5100 3001 5103 2995 5106 2989 5108 2986 5 P -0.5 sg fill -gr -gs -5100 3016 5100 3008 5100 3001 5103 2995 5106 2989 5108 2986 5 P -1.25 slw 0 sg str -gr -gs -5189.625 4226.625 m -5188.625 4219.625 L -1.25 slw 0 sg str -gr -gs -5180.625 4190.625 m -5158.625 4160.625 L -1.25 slw 0 sg str -gr -gs -5189 4226 5188 4233 5186 4240 5184 4247 5181 4253 5179 4255 5 P -0.5 sg fill -gr -gs -5189 4226 5188 4233 5186 4240 5184 4247 5181 4253 5179 4255 5 P -1.25 slw 0 sg str -gr -gs -5179 4189 5184 4198 5186 4204 5188 4211 5188 4218 4 P -0.5 sg fill -gr -gs -5179 4189 5184 4198 5186 4204 5188 4211 5188 4218 4 P -1.25 slw 0 sg str -gr -gs -5128.625 4202.625 m -5106.625 4172.625 L -1.25 slw 0 sg str -gr -gs -5098.625 4143.625 m -5098.625 4136.625 L -1.25 slw 0 sg str -gr -gs -5107.625 4106.625 m -5180.625 4005.625 L -1.25 slw 0 sg str -gr -gs -5189.625 3975.625 m -5189.625 3968.625 L -1.25 slw 0 sg str -gr -gs -5180.625 3938.625 m -5159.625 3909.625 L -1.25 slw 0 sg str -gr -gs -5108 4172 5103 4164 5101 4156 5100 4150 5099 4143 4 P -0.5 sg fill -gr -gs -5108 4172 5103 4164 5101 4156 5100 4150 5099 4143 4 P -1.25 slw 0 sg str -gr -gs -5099 4135 5100 4128 5101 4121 5103 4114 5107 4108 5107 4106 5 P -0.5 sg fill -gr -gs -5099 4135 5100 4128 5101 4121 5103 4114 5107 4108 5107 4106 5 P -1.25 slw 0 sg str -gr -gs -5189 3975 5187 3982 5186 3989 5185 3996 5182 4001 5179 4005 5 P -0.5 sg fill -gr -gs -5189 3975 5187 3982 5186 3989 5185 3996 5182 4001 5179 4005 5 P -1.25 slw 0 sg str -gr -gs -5179 3939 5185 3947 5186 3953 5188 3961 5189 3968 4 P -0.5 sg fill -gr -gs -5179 3939 5185 3947 5186 3953 5188 3961 5189 3968 4 P -1.25 slw 0 sg str -gr -gs -5107.625 4231.625 m -5180.625 4131.625 L -1.25 slw 0 sg str -gr -gs -5188.625 4101.625 m -5188.625 4093.625 L -1.25 slw 0 sg str -gr -gs -5180.625 4064.625 m -5158.625 4034.625 L -1.25 slw 0 sg str -gr -gs -5099 4261 5100 4253 5100 4247 5103 4240 5106 4234 5108 4231 5 P -0.5 sg fill -gr -gs -5099 4261 5100 4253 5100 4247 5103 4240 5106 4234 5108 4231 5 P -1.25 slw 0 sg str -gr -gs -5189 4101 5188 4108 5186 4115 5184 4121 5181 4128 5179 4130 5 P -0.5 sg fill -gr -gs -5189 4101 5188 4108 5186 4115 5184 4121 5181 4128 5179 4130 5 P -1.25 slw 0 sg str -gr -gs -5179 4064 5185 4073 5186 4079 5188 4086 5188 4093 4 P -0.5 sg fill -gr -gs -5179 4064 5185 4073 5186 4079 5188 4086 5188 4093 4 P -1.25 slw 0 sg str -gr -gs -5128.625 4076.625 m -5106.625 4047.625 L -1.25 slw 0 sg str -gr -gs -5098.625 4017.625 m -5098.625 4010.625 L -1.25 slw 0 sg str -gr -gs -5106.625 3981.625 m -5180.625 3879.625 L -1.25 slw 0 sg str -gr -gs -5188.625 3850.625 m -5189.625 3843.625 L -1.25 slw 0 sg str -gr -gs -5180.625 3813.625 m -5159.625 3784.625 L -1.25 slw 0 sg str -gr -gs -5107 4046 5103 4038 5101 4031 5100 4024 5100 4017 4 P -0.5 sg fill -gr -gs -5107 4046 5103 4038 5101 4031 5100 4024 5100 4017 4 P -1.25 slw 0 sg str -gr -gs -5099 4010 5099 4003 5100 3995 5103 3989 5106 3983 5108 3980 5 P -0.5 sg fill -gr -gs -5099 4010 5099 4003 5100 3995 5103 3989 5106 3983 5108 3980 5 P -1.25 slw 0 sg str -gr -gs -5189 3850 5188 3857 5186 3864 5185 3871 5182 3877 5179 3879 5 P -0.5 sg fill -gr -gs -5189 3850 5188 3857 5186 3864 5185 3871 5182 3877 5179 3879 5 P -1.25 slw 0 sg str -gr -gs -5179 3812 5185 3822 5186 3828 5188 3835 5189 3842 4 P -0.5 sg fill -gr -gs -5179 3812 5185 3822 5186 3828 5188 3835 5189 3842 4 P -1.25 slw 0 sg str -gr -gs -5129.625 3825.625 m -5107.625 3796.625 L -1.25 slw 0 sg str -gr -gs -5099.625 3766.625 m -5099.625 3759.625 L -1.25 slw 0 sg str -gr -gs -5108 3795 5103 3787 5100 3781 5100 3773 5099 3766 4 P -0.5 sg fill -gr -gs -5108 3795 5103 3787 5100 3781 5100 3773 5099 3766 4 P -1.25 slw 0 sg str -gr -gs -5100 3759 5100 3752 5100 3745 5103 3738 5107 3732 5108 3730 5 P -0.5 sg fill -gr -gs -5100 3759 5100 3752 5100 3745 5103 3738 5107 3732 5108 3730 5 P -1.25 slw 0 sg str -gr -gs -5129.625 3955.625 m -5107.625 3925.625 L -1.25 slw 0 sg str -gr -gs -5098.625 3895.625 m -5098.625 3889.625 L -1.25 slw 0 sg str -gr -gs -5107.625 3859.625 m -5180.625 3757.625 L -1.25 slw 0 sg str -gr -gs -5189.625 3728.625 m -5189.625 3721.625 L -1.25 slw 0 sg str -gr -gs -5180.625 3691.625 m -5158.625 3662.625 L -1.25 slw 0 sg str -gr -gs -5108 3925 5103 3916 5101 3909 5100 3902 5099 3895 4 P -0.5 sg fill -gr -gs -5108 3925 5103 3916 5101 3909 5100 3902 5099 3895 4 P -1.25 slw 0 sg str -gr -gs -5100 3888 5100 3881 5101 3874 5103 3867 5107 3862 5108 3859 5 P -0.5 sg fill -gr -gs -5100 3888 5100 3881 5101 3874 5103 3867 5107 3862 5108 3859 5 P -1.25 slw 0 sg str -gr -gs -5189 3728 5188 3735 5186 3742 5184 3749 5181 3756 5179 3757 5 P -0.5 sg fill -gr -gs -5189 3728 5188 3735 5186 3742 5184 3749 5181 3756 5179 3757 5 P -1.25 slw 0 sg str -gr -gs -5179 3691 5184 3700 5186 3706 5188 3714 5188 3720 4 P -0.5 sg fill -gr -gs -5179 3691 5184 3700 5186 3706 5188 3714 5188 3720 4 P -1.25 slw 0 sg str -gr -gs -5129.625 3700.625 m -5107.625 3670.625 L -1.25 slw 0 sg str -gr -gs -5098.625 3641.625 m -5098.625 3633.625 L -1.25 slw 0 sg str -gr -gs -5108 3670 5103 3662 5100 3655 5100 3648 5099 3641 4 P -0.5 sg fill -gr -gs -5108 3670 5103 3662 5100 3655 5100 3648 5099 3641 4 P -1.25 slw 0 sg str -gr -gs -5181.625 3636.625 m -5106.625 3734.625 L -1.25 slw 0 sg str -gr -gs -5189.625 4862.625 m -5188.625 4855.625 L -1.25 slw 0 sg str -gr -gs -5180.625 4826.625 m -5158.625 4796.625 L -1.25 slw 0 sg str -gr -gs -5189 4862 5188 4869 5186 4876 5184 4883 5181 4889 5179 4892 5 P -0.5 sg fill -gr -gs -5189 4862 5188 4869 5186 4876 5184 4883 5181 4889 5179 4892 5 P -1.25 slw 0 sg str -gr -gs -5179 4826 5184 4834 5186 4840 5188 4848 5188 4855 4 P -0.5 sg fill -gr -gs -5179 4826 5184 4834 5186 4840 5188 4848 5188 4855 4 P -1.25 slw 0 sg str -gr -gs -5128.625 4838.625 m -5106.625 4808.625 L -1.25 slw 0 sg str -gr -gs -5098.625 4779.625 m -5098.625 4772.625 L -1.25 slw 0 sg str -gr -gs -5107.625 4742.625 m -5180.625 4641.625 L -1.25 slw 0 sg str -gr -gs -5189.625 4612.625 m -5189.625 4604.625 L -1.25 slw 0 sg str -gr -gs -5180.625 4575.625 m -5159.625 4545.625 L -1.25 slw 0 sg str -gr -gs -5108 4808 5103 4800 5101 4793 5100 4786 5099 4779 4 P -0.5 sg fill -gr -gs -5108 4808 5103 4800 5101 4793 5100 4786 5099 4779 4 P -1.25 slw 0 sg str -gr -gs -5099 4771 5100 4765 5101 4757 5103 4751 5107 4745 5107 4743 5 P -0.5 sg fill -gr -gs -5099 4771 5100 4765 5101 4757 5103 4751 5107 4745 5107 4743 5 P -1.25 slw 0 sg str -gr -gs -5189 4612 5187 4619 5186 4626 5185 4632 5182 4638 5179 4641 5 P -0.5 sg fill -gr -gs -5189 4612 5187 4619 5186 4626 5185 4632 5182 4638 5179 4641 5 P -1.25 slw 0 sg str -gr -gs -5179 4575 5185 4583 5186 4590 5188 4597 5189 4604 4 P -0.5 sg fill -gr -gs -5179 4575 5185 4583 5186 4590 5188 4597 5189 4604 4 P -1.25 slw 0 sg str -gr -gs -5107.625 4868.625 m -5180.625 4767.625 L -1.25 slw 0 sg str -gr -gs -5188.625 4737.625 m -5188.625 4730.625 L -1.25 slw 0 sg str -gr -gs -5180.625 4700.625 m -5158.625 4671.625 L -1.25 slw 0 sg str -gr -gs -5099 4898 5100 4890 5100 4883 5103 4876 5106 4870 5108 4868 5 P -0.5 sg fill -gr -gs -5099 4898 5100 4890 5100 4883 5103 4876 5106 4870 5108 4868 5 P -1.25 slw 0 sg str -gr -gs -5189 4737 5188 4744 5186 4751 5184 4758 5181 4764 5179 4766 5 P -0.5 sg fill -gr -gs -5189 4737 5188 4744 5186 4751 5184 4758 5181 4764 5179 4766 5 P -1.25 slw 0 sg str -gr -gs -5179 4701 5185 4710 5186 4715 5188 4723 5188 4730 4 P -0.5 sg fill -gr -gs -5179 4701 5185 4710 5186 4715 5188 4723 5188 4730 4 P -1.25 slw 0 sg str -gr -gs -5128.625 4713.625 m -5106.625 4683.625 L -1.25 slw 0 sg str -gr -gs -5098.625 4653.625 m -5098.625 4646.625 L -1.25 slw 0 sg str -gr -gs -5106.625 4617.625 m -5180.625 4516.625 L -1.25 slw 0 sg str -gr -gs -5188.625 4487.625 m -5189.625 4479.625 L -1.25 slw 0 sg str -gr -gs -5180.625 4449.625 m -5159.625 4420.625 L -1.25 slw 0 sg str -gr -gs -5107 4683 5103 4674 5101 4668 5100 4661 5100 4653 4 P -0.5 sg fill -gr -gs -5107 4683 5103 4674 5101 4668 5100 4661 5100 4653 4 P -1.25 slw 0 sg str -gr -gs -5099 4646 5099 4639 5100 4632 5103 4625 5106 4619 5108 4617 5 P -0.5 sg fill -gr -gs -5099 4646 5099 4639 5100 4632 5103 4625 5106 4619 5108 4617 5 P -1.25 slw 0 sg str -gr -gs -5189 4486 5188 4493 5186 4501 5185 4507 5182 4513 5179 4516 5 P -0.5 sg fill -gr -gs -5189 4486 5188 4493 5186 4501 5185 4507 5182 4513 5179 4516 5 P -1.25 slw 0 sg str -gr -gs -5179 4449 5185 4458 5186 4465 5188 4472 5189 4479 4 P -0.5 sg fill -gr -gs -5179 4449 5185 4458 5186 4465 5188 4472 5189 4479 4 P -1.25 slw 0 sg str -gr -gs -5129.625 4462.625 m -5107.625 4432.625 L -1.25 slw 0 sg str -gr -gs -5099.625 4402.625 m -5099.625 4395.625 L -1.25 slw 0 sg str -gr -gs -5107.625 4366.625 m -5180.625 4265.625 L -1.25 slw 0 sg str -gr -gs -5108 4432 5103 4423 5100 4417 5100 4409 5099 4402 4 P -0.5 sg fill -gr -gs -5108 4432 5103 4423 5100 4417 5100 4409 5099 4402 4 P -1.25 slw 0 sg str -gr -gs -5100 4395 5100 4388 5100 4381 5103 4375 5107 4369 5108 4366 5 P -0.5 sg fill -gr -gs -5100 4395 5100 4388 5100 4381 5103 4375 5107 4369 5108 4366 5 P -1.25 slw 0 sg str -gr -gs -5188 4235 5188 4243 5186 4250 5184 4256 5181 4262 5179 4265 5 P -0.5 sg fill -gr -gs -5188 4235 5188 4243 5186 4250 5184 4256 5181 4262 5179 4265 5 P -1.25 slw 0 sg str -gr -gs -5129.625 4591.625 m -5107.625 4562.625 L -1.25 slw 0 sg str -gr -gs -5098.625 4532.625 m -5098.625 4525.625 L -1.25 slw 0 sg str -gr -gs -5107.625 4495.625 m -5180.625 4393.625 L -1.25 slw 0 sg str -gr -gs -5189.625 4364.625 m -5189.625 4357.625 L -1.25 slw 0 sg str -gr -gs -5180.625 4327.625 m -5158.625 4298.625 L -1.25 slw 0 sg str -gr -gs -5108 4562 5103 4552 5101 4546 5100 4538 5099 4532 4 P -0.5 sg fill -gr -gs -5108 4562 5103 4552 5101 4546 5100 4538 5099 4532 4 P -1.25 slw 0 sg str -gr -gs -5100 4525 5100 4517 5101 4511 5103 4504 5107 4498 5108 4495 5 P -0.5 sg fill -gr -gs -5100 4525 5100 4517 5101 4511 5103 4504 5107 4498 5108 4495 5 P -1.25 slw 0 sg str -gr -gs -5189 4364 5188 4371 5186 4378 5184 4385 5181 4392 5179 4393 5 P -0.5 sg fill -gr -gs -5189 4364 5188 4371 5186 4378 5184 4385 5181 4392 5179 4393 5 P -1.25 slw 0 sg str -gr -gs -5179 4327 5184 4336 5186 4342 5188 4350 5188 4357 4 P -0.5 sg fill -gr -gs -5179 4327 5184 4336 5186 4342 5188 4350 5188 4357 4 P -1.25 slw 0 sg str -gr -gs -5129.625 4337.625 m -5107.625 4307.625 L -1.25 slw 0 sg str -gr -gs -5098.625 4277.625 m -5098.625 4270.625 L -1.25 slw 0 sg str -gr -gs -5108 4307 5103 4298 5100 4291 5100 4284 5099 4278 4 P -0.5 sg fill -gr -gs -5108 4307 5103 4298 5100 4291 5100 4284 5099 4278 4 P -1.25 slw 0 sg str -gr -gs -5100 4270 5100 4262 5100 4256 5103 4249 5106 4243 5108 4240 5 P -0.5 sg fill -gr -gs -5100 4270 5100 4262 5100 4256 5103 4249 5106 4243 5108 4240 5 P -1.25 slw 0 sg str -gr -gs -5189.625 5480.625 m -5188.625 5473.625 L -1.25 slw 0 sg str -gr -gs -5180.625 5444.625 m -5158.625 5414.625 L -1.25 slw 0 sg str -gr -gs -5189 5480 5188 5487 5186 5494 5184 5501 5181 5507 5179 5510 5 P -0.5 sg fill -gr -gs -5189 5480 5188 5487 5186 5494 5184 5501 5181 5507 5179 5510 5 P -1.25 slw 0 sg str -gr -gs -5179 5444 5184 5452 5186 5458 5188 5466 5188 5473 4 P -0.5 sg fill -gr -gs -5179 5444 5184 5452 5186 5458 5188 5466 5188 5473 4 P -1.25 slw 0 sg str -gr -gs -5128.625 5456.625 m -5106.625 5426.625 L -1.25 slw 0 sg str -gr -gs -5098.625 5397.625 m -5098.625 5390.625 L -1.25 slw 0 sg str -gr -gs -5107.625 5360.625 m -5180.625 5259.625 L -1.25 slw 0 sg str -gr -gs -5189.625 5230.625 m -5189.625 5222.625 L -1.25 slw 0 sg str -gr -gs -5180.625 5193.625 m -5159.625 5163.625 L -1.25 slw 0 sg str -gr -gs -5108 5426 5103 5418 5101 5411 5100 5404 5099 5397 4 P -0.5 sg fill -gr -gs -5108 5426 5103 5418 5101 5411 5100 5404 5099 5397 4 P -1.25 slw 0 sg str -gr -gs -5099 5389 5100 5383 5101 5375 5103 5369 5107 5363 5107 5361 5 P -0.5 sg fill -gr -gs -5099 5389 5100 5383 5101 5375 5103 5369 5107 5363 5107 5361 5 P -1.25 slw 0 sg str -gr -gs -5189 5230 5187 5237 5186 5244 5185 5250 5182 5256 5179 5259 5 P -0.5 sg fill -gr -gs -5189 5230 5187 5237 5186 5244 5185 5250 5182 5256 5179 5259 5 P -1.25 slw 0 sg str -gr -gs -5179 5193 5185 5201 5186 5208 5188 5215 5189 5222 4 P -0.5 sg fill -gr -gs -5179 5193 5185 5201 5186 5208 5188 5215 5189 5222 4 P -1.25 slw 0 sg str -gr -gs -5107.625 5486.625 m -5180.625 5385.625 L -1.25 slw 0 sg str -gr -gs -5188.625 5355.625 m -5188.625 5348.625 L -1.25 slw 0 sg str -gr -gs -5180.625 5318.625 m -5158.625 5289.625 L -1.25 slw 0 sg str -gr -gs -5099 5515 5100 5508 5100 5501 5103 5494 5106 5488 5108 5486 5 P -0.5 sg fill -gr -gs -5099 5515 5100 5508 5100 5501 5103 5494 5106 5488 5108 5486 5 P -1.25 slw 0 sg str -gr -gs -5189 5355 5188 5362 5186 5369 5184 5376 5181 5382 5179 5384 5 P -0.5 sg fill -gr -gs -5189 5355 5188 5362 5186 5369 5184 5376 5181 5382 5179 5384 5 P -1.25 slw 0 sg str -gr -gs -5179 5319 5185 5327 5186 5333 5188 5341 5188 5348 4 P -0.5 sg fill -gr -gs -5179 5319 5185 5327 5186 5333 5188 5341 5188 5348 4 P -1.25 slw 0 sg str -gr -gs -5128.625 5331.625 m -5106.625 5301.625 L -1.25 slw 0 sg str -gr -gs -5098.625 5271.625 m -5098.625 5264.625 L -1.25 slw 0 sg str -gr -gs -5106.625 5235.625 m -5180.625 5134.625 L -1.25 slw 0 sg str -gr -gs -5188.625 5105.625 m -5189.625 5097.625 L -1.25 slw 0 sg str -gr -gs -5180.625 5067.625 m -5159.625 5038.625 L -1.25 slw 0 sg str -gr -gs -5107 5301 5103 5292 5101 5286 5100 5279 5100 5271 4 P -0.5 sg fill -gr -gs -5107 5301 5103 5292 5101 5286 5100 5279 5100 5271 4 P -1.25 slw 0 sg str -gr -gs -5099 5264 5099 5257 5100 5250 5103 5243 5106 5237 5108 5235 5 P -0.5 sg fill -gr -gs -5099 5264 5099 5257 5100 5250 5103 5243 5106 5237 5108 5235 5 P -1.25 slw 0 sg str -gr -gs -5189 5104 5188 5111 5186 5119 5185 5125 5182 5131 5179 5134 5 P -0.5 sg fill -gr -gs -5189 5104 5188 5111 5186 5119 5185 5125 5182 5131 5179 5134 5 P -1.25 slw 0 sg str -gr -gs -5179 5067 5185 5076 5186 5083 5188 5090 5189 5096 4 P -0.5 sg fill -gr -gs -5179 5067 5185 5076 5186 5083 5188 5090 5189 5096 4 P -1.25 slw 0 sg str -gr -gs -5129.625 5080.625 m -5107.625 5050.625 L -1.25 slw 0 sg str -gr -gs -5099.625 5020.625 m -5099.625 5013.625 L -1.25 slw 0 sg str -gr -gs -5108 5050 5103 5041 5100 5035 5100 5027 5099 5020 4 P -0.5 sg fill -gr -gs -5108 5050 5103 5041 5100 5035 5100 5027 5099 5020 4 P -1.25 slw 0 sg str -gr -gs -5100 5013 5100 5006 5100 4999 5103 4993 5107 4987 5108 4984 5 P -0.5 sg fill -gr -gs -5100 5013 5100 5006 5100 4999 5103 4993 5107 4987 5108 4984 5 P -1.25 slw 0 sg str -gr -gs -5129.625 5209.625 m -5107.625 5179.625 L -1.25 slw 0 sg str -gr -gs -5098.625 5150.625 m -5098.625 5143.625 L -1.25 slw 0 sg str -gr -gs -5107.625 5113.625 m -5180.625 5011.625 L -1.25 slw 0 sg str -gr -gs -5189.625 4982.625 m -5189.625 4975.625 L -1.25 slw 0 sg str -gr -gs -5180.625 4945.625 m -5158.625 4916.625 L -1.25 slw 0 sg str -gr -gs -5108 5179 5103 5170 5101 5164 5100 5156 5099 5150 4 P -0.5 sg fill -gr -gs -5108 5179 5103 5170 5101 5164 5100 5156 5099 5150 4 P -1.25 slw 0 sg str -gr -gs -5100 5143 5100 5135 5101 5129 5103 5122 5107 5116 5108 5113 5 P -0.5 sg fill -gr -gs -5100 5143 5100 5135 5101 5129 5103 5122 5107 5116 5108 5113 5 P -1.25 slw 0 sg str -gr -gs -5189 4982 5188 4989 5186 4996 5184 5003 5181 5010 5179 5011 5 P -0.5 sg fill -gr -gs -5189 4982 5188 4989 5186 4996 5184 5003 5181 5010 5179 5011 5 P -1.25 slw 0 sg str -gr -gs -5179 4945 5184 4954 5186 4961 5188 4968 5188 4975 4 P -0.5 sg fill -gr -gs -5179 4945 5184 4954 5186 4961 5188 4968 5188 4975 4 P -1.25 slw 0 sg str -gr -gs -5129.625 4955.625 m -5107.625 4925.625 L -1.25 slw 0 sg str -gr -gs -5098.625 4895.625 m -5098.625 4888.625 L -1.25 slw 0 sg str -gr -gs -5108 4925 5103 4916 5100 4909 5100 4902 5099 4896 4 P -0.5 sg fill -gr -gs -5108 4925 5103 4916 5100 4909 5100 4902 5099 4896 4 P -1.25 slw 0 sg str -gr -gs -5181.625 4891.625 m -5106.625 4988.625 L -1.25 slw 0 sg str -gr -gs -4870 2911 5104 3145 OV -0.75 sg fill -gr -gs -4870.625 2911.625 5104.375 3145.375 OV -1.25 slw 0 sg str -gr -gs -4880.625 3611.625 m -4880.625 3604.625 L -1.25 slw 0 sg str -gr -gs -4871.625 3575.625 m -4849.625 3545.625 L -1.25 slw 0 sg str -gr -gs -4880 3611 4880 3619 4877 3625 4875 3632 4873 3638 4870 3640 5 P -0.5 sg fill -gr -gs -4880 3611 4880 3619 4877 3625 4875 3632 4873 3638 4870 3640 5 P -1.25 slw 0 sg str -gr -gs -4870 3575 4875 3583 4877 3590 4879 3597 4880 3604 4 P -0.5 sg fill -gr -gs -4870 3575 4875 3583 4877 3590 4879 3597 4880 3604 4 P -1.25 slw 0 sg str -gr -gs -4819.625 3587.625 m -4797.625 3557.625 L -1.25 slw 0 sg str -gr -gs -4790.625 3528.625 m -4790.625 3521.625 L -1.25 slw 0 sg str -gr -gs -4798.625 3491.625 m -4871.625 3391.625 L -1.25 slw 0 sg str -gr -gs -4880.625 3361.625 m -4880.625 3353.625 L -1.25 slw 0 sg str -gr -gs -4871.625 3324.625 m -4850.625 3294.625 L -1.25 slw 0 sg str -gr -gs -4799 3557 4794 3550 4792 3542 4791 3535 4790 3528 4 P -0.5 sg fill -gr -gs -4799 3557 4794 3550 4792 3542 4791 3535 4790 3528 4 P -1.25 slw 0 sg str -gr -gs -4790 3521 4791 3514 4792 3506 4794 3500 4798 3494 4798 3492 5 P -0.5 sg fill -gr -gs -4790 3521 4791 3514 4792 3506 4794 3500 4798 3494 4798 3492 5 P -1.25 slw 0 sg str -gr -gs -4880 3361 4878 3368 4877 3375 4876 3381 4873 3387 4870 3390 5 P -0.5 sg fill -gr -gs -4880 3361 4878 3368 4877 3375 4876 3381 4873 3387 4870 3390 5 P -1.25 slw 0 sg str -gr -gs -4870 3324 4876 3332 4877 3339 4879 3346 4880 3353 4 P -0.5 sg fill -gr -gs -4870 3324 4876 3332 4877 3339 4879 3346 4880 3353 4 P -1.25 slw 0 sg str -gr -gs -4798.625 3617.625 m -4871.625 3516.625 L -1.25 slw 0 sg str -gr -gs -4880.625 3486.625 m -4880.625 3479.625 L -1.25 slw 0 sg str -gr -gs -4871.625 3449.625 m -4849.625 3420.625 L -1.25 slw 0 sg str -gr -gs -4790 3647 4791 3639 4791 3632 4794 3625 4797 3619 4799 3617 5 P -0.5 sg fill -gr -gs -4790 3647 4791 3639 4791 3632 4794 3625 4797 3619 4799 3617 5 P -1.25 slw 0 sg str -gr -gs -4880 3486 4879 3493 4877 3500 4875 3507 4873 3513 4870 3515 5 P -0.5 sg fill -gr -gs -4880 3486 4879 3493 4877 3500 4875 3507 4873 3513 4870 3515 5 P -1.25 slw 0 sg str -gr -gs -4870 3450 4876 3458 4877 3464 4880 3472 4880 3479 4 P -0.5 sg fill -gr -gs -4870 3450 4876 3458 4877 3464 4880 3472 4880 3479 4 P -1.25 slw 0 sg str -gr -gs -4819.625 3462.625 m -4797.625 3432.625 L -1.25 slw 0 sg str -gr -gs -4790.625 3402.625 m -4790.625 3395.625 L -1.25 slw 0 sg str -gr -gs -4797.625 3366.625 m -4871.625 3265.625 L -1.25 slw 0 sg str -gr -gs -4880.625 3236.625 m -4880.625 3228.625 L -1.25 slw 0 sg str -gr -gs -4871.625 3198.625 m -4850.625 3169.625 L -1.25 slw 0 sg str -gr -gs -4798 3432 4794 3423 4792 3416 4791 3409 4791 3402 4 P -0.5 sg fill -gr -gs -4798 3432 4794 3423 4792 3416 4791 3409 4791 3402 4 P -1.25 slw 0 sg str -gr -gs -4790 3395 4790 3388 4791 3381 4794 3374 4797 3368 4799 3366 5 P -0.5 sg fill -gr -gs -4790 3395 4790 3388 4791 3381 4794 3374 4797 3368 4799 3366 5 P -1.25 slw 0 sg str -gr -gs -4880 3236 4880 3243 4877 3250 4876 3256 4873 3262 4870 3265 5 P -0.5 sg fill -gr -gs -4880 3236 4880 3243 4877 3250 4876 3256 4873 3262 4870 3265 5 P -1.25 slw 0 sg str -gr -gs -4870 3198 4876 3207 4877 3214 4879 3221 4880 3228 4 P -0.5 sg fill -gr -gs -4870 3198 4876 3207 4877 3214 4879 3221 4880 3228 4 P -1.25 slw 0 sg str -gr -gs -4820.625 3210.625 m -4798.625 3181.625 L -1.25 slw 0 sg str -gr -gs -4790.625 3151.625 m -4790.625 3144.625 L -1.25 slw 0 sg str -gr -gs -4798.625 3115.625 m -4871.625 3014.625 L -1.25 slw 0 sg str -gr -gs -4799 3181 4794 3172 4791 3166 4791 3158 4790 3151 4 P -0.5 sg fill -gr -gs -4799 3181 4794 3172 4791 3166 4791 3158 4790 3151 4 P -1.25 slw 0 sg str -gr -gs -4791 3144 4791 3137 4791 3130 4794 3124 4798 3118 4799 3115 5 P -0.5 sg fill -gr -gs -4791 3144 4791 3137 4791 3130 4794 3124 4798 3118 4799 3115 5 P -1.25 slw 0 sg str -gr -gs -4880 2984 4879 2992 4877 2999 4875 3005 4873 3012 4870 3014 5 P -0.5 sg fill -gr -gs -4880 2984 4879 2992 4877 2999 4875 3005 4873 3012 4870 3014 5 P -1.25 slw 0 sg str -gr -gs -4820.625 3340.625 m -4798.625 3310.625 L -1.25 slw 0 sg str -gr -gs -4790.625 3280.625 m -4790.625 3274.625 L -1.25 slw 0 sg str -gr -gs -4798.625 3244.625 m -4871.625 3142.625 L -1.25 slw 0 sg str -gr -gs -4880.625 3113.625 m -4880.625 3106.625 L -1.25 slw 0 sg str -gr -gs -4871.625 3077.625 m -4849.625 3047.625 L -1.25 slw 0 sg str -gr -gs -4799 3310 4794 3301 4792 3295 4791 3287 4790 3280 4 P -0.5 sg fill -gr -gs -4799 3310 4794 3301 4792 3295 4791 3287 4790 3280 4 P -1.25 slw 0 sg str -gr -gs -4791 3273 4791 3266 4792 3259 4794 3253 4798 3247 4799 3244 5 P -0.5 sg fill -gr -gs -4791 3273 4791 3266 4792 3259 4794 3253 4798 3247 4799 3244 5 P -1.25 slw 0 sg str -gr -gs -4880 3113 4879 3120 4877 3127 4875 3134 4873 3141 4870 3142 5 P -0.5 sg fill -gr -gs -4880 3113 4879 3120 4877 3127 4875 3134 4873 3141 4870 3142 5 P -1.25 slw 0 sg str -gr -gs -4870 3077 4875 3085 4877 3091 4879 3099 4880 3106 4 P -0.5 sg fill -gr -gs -4870 3077 4875 3085 4877 3091 4879 3099 4880 3106 4 P -1.25 slw 0 sg str -gr -gs -4820.625 3085.625 m -4798.625 3056.625 L -1.25 slw 0 sg str -gr -gs -4790.625 3026.625 m -4790.625 3019.625 L -1.25 slw 0 sg str -gr -gs -4799 3056 4794 3047 4791 3040 4791 3033 4790 3027 4 P -0.5 sg fill -gr -gs -4799 3056 4794 3047 4791 3040 4791 3033 4790 3027 4 P -1.25 slw 0 sg str -gr -gs -4791 3019 4791 3012 4791 3005 4794 2998 4797 2992 4799 2989 5 P -0.5 sg fill -gr -gs -4791 3019 4791 3012 4791 3005 4794 2998 4797 2992 4799 2989 5 P -1.25 slw 0 sg str -gr -gs -4880.625 4229.625 m -4880.625 4222.625 L -1.25 slw 0 sg str -gr -gs -4871.625 4193.625 m -4849.625 4163.625 L -1.25 slw 0 sg str -gr -gs -4880 4229 4880 4236 4877 4243 4875 4250 4873 4256 4870 4258 5 P -0.5 sg fill -gr -gs -4880 4229 4880 4236 4877 4243 4875 4250 4873 4256 4870 4258 5 P -1.25 slw 0 sg str -gr -gs -4870 4193 4875 4201 4877 4208 4879 4215 4880 4222 4 P -0.5 sg fill -gr -gs -4870 4193 4875 4201 4877 4208 4879 4215 4880 4222 4 P -1.25 slw 0 sg str -gr -gs -4819.625 4205.625 m -4797.625 4175.625 L -1.25 slw 0 sg str -gr -gs -4790.625 4146.625 m -4790.625 4139.625 L -1.25 slw 0 sg str -gr -gs -4798.625 4109.625 m -4871.625 4009.625 L -1.25 slw 0 sg str -gr -gs -4880.625 3979.625 m -4880.625 3971.625 L -1.25 slw 0 sg str -gr -gs -4871.625 3942.625 m -4850.625 3912.625 L -1.25 slw 0 sg str -gr -gs -4799 4175 4794 4168 4792 4160 4791 4153 4790 4146 4 P -0.5 sg fill -gr -gs -4799 4175 4794 4168 4792 4160 4791 4153 4790 4146 4 P -1.25 slw 0 sg str -gr -gs -4790 4139 4791 4132 4792 4124 4794 4118 4798 4112 4798 4110 5 P -0.5 sg fill -gr -gs -4790 4139 4791 4132 4792 4124 4794 4118 4798 4112 4798 4110 5 P -1.25 slw 0 sg str -gr -gs -4880 3979 4878 3986 4877 3993 4876 3999 4873 4005 4870 4008 5 P -0.5 sg fill -gr -gs -4880 3979 4878 3986 4877 3993 4876 3999 4873 4005 4870 4008 5 P -1.25 slw 0 sg str -gr -gs -4870 3942 4876 3950 4877 3957 4879 3964 4880 3971 4 P -0.5 sg fill -gr -gs -4870 3942 4876 3950 4877 3957 4879 3964 4880 3971 4 P -1.25 slw 0 sg str -gr -gs -4798.625 4235.625 m -4871.625 4134.625 L -1.25 slw 0 sg str -gr -gs -4880.625 4104.625 m -4880.625 4097.625 L -1.25 slw 0 sg str -gr -gs -4871.625 4067.625 m -4849.625 4038.625 L -1.25 slw 0 sg str -gr -gs -4790 4265 4791 4257 4791 4250 4794 4243 4797 4237 4799 4235 5 P -0.5 sg fill -gr -gs -4790 4265 4791 4257 4791 4250 4794 4243 4797 4237 4799 4235 5 P -1.25 slw 0 sg str -gr -gs -4880 4104 4879 4111 4877 4118 4875 4125 4873 4131 4870 4133 5 P -0.5 sg fill -gr -gs -4880 4104 4879 4111 4877 4118 4875 4125 4873 4131 4870 4133 5 P -1.25 slw 0 sg str -gr -gs -4870 4068 4876 4076 4877 4082 4880 4090 4880 4097 4 P -0.5 sg fill -gr -gs -4870 4068 4876 4076 4877 4082 4880 4090 4880 4097 4 P -1.25 slw 0 sg str -gr -gs -4819.625 4080.625 m -4797.625 4050.625 L -1.25 slw 0 sg str -gr -gs -4790.625 4020.625 m -4790.625 4013.625 L -1.25 slw 0 sg str -gr -gs -4797.625 3984.625 m -4871.625 3883.625 L -1.25 slw 0 sg str -gr -gs -4880.625 3854.625 m -4880.625 3846.625 L -1.25 slw 0 sg str -gr -gs -4871.625 3816.625 m -4850.625 3787.625 L -1.25 slw 0 sg str -gr -gs -4798 4050 4794 4041 4792 4034 4791 4027 4791 4020 4 P -0.5 sg fill -gr -gs -4798 4050 4794 4041 4792 4034 4791 4027 4791 4020 4 P -1.25 slw 0 sg str -gr -gs -4790 4013 4790 4006 4791 3999 4794 3992 4797 3986 4799 3984 5 P -0.5 sg fill -gr -gs -4790 4013 4790 4006 4791 3999 4794 3992 4797 3986 4799 3984 5 P -1.25 slw 0 sg str -gr -gs -4880 3854 4880 3861 4877 3868 4876 3874 4873 3880 4870 3883 5 P -0.5 sg fill -gr -gs -4880 3854 4880 3861 4877 3868 4876 3874 4873 3880 4870 3883 5 P -1.25 slw 0 sg str -gr -gs -4870 3816 4876 3825 4877 3832 4879 3839 4880 3846 4 P -0.5 sg fill -gr -gs -4870 3816 4876 3825 4877 3832 4879 3839 4880 3846 4 P -1.25 slw 0 sg str -gr -gs -4820.625 3828.625 m -4798.625 3799.625 L -1.25 slw 0 sg str -gr -gs -4790.625 3769.625 m -4790.625 3762.625 L -1.25 slw 0 sg str -gr -gs -4799 3799 4794 3790 4791 3784 4791 3776 4790 3769 4 P -0.5 sg fill -gr -gs -4799 3799 4794 3790 4791 3784 4791 3776 4790 3769 4 P -1.25 slw 0 sg str -gr -gs -4791 3762 4791 3755 4791 3748 4794 3742 4798 3736 4799 3733 5 P -0.5 sg fill -gr -gs -4791 3762 4791 3755 4791 3748 4794 3742 4798 3736 4799 3733 5 P -1.25 slw 0 sg str -gr -gs -4820.625 3958.625 m -4798.625 3928.625 L -1.25 slw 0 sg str -gr -gs -4790.625 3898.625 m -4790.625 3892.625 L -1.25 slw 0 sg str -gr -gs -4798.625 3862.625 m -4871.625 3760.625 L -1.25 slw 0 sg str -gr -gs -4880.625 3731.625 m -4880.625 3724.625 L -1.25 slw 0 sg str -gr -gs -4871.625 3695.625 m -4849.625 3665.625 L -1.25 slw 0 sg str -gr -gs -4799 3928 4794 3919 4792 3913 4791 3905 4790 3898 4 P -0.5 sg fill -gr -gs -4799 3928 4794 3919 4792 3913 4791 3905 4790 3898 4 P -1.25 slw 0 sg str -gr -gs -4791 3892 4791 3884 4792 3877 4794 3871 4798 3865 4799 3862 5 P -0.5 sg fill -gr -gs -4791 3892 4791 3884 4792 3877 4794 3871 4798 3865 4799 3862 5 P -1.25 slw 0 sg str -gr -gs -4880 3731 4879 3738 4877 3745 4875 3752 4873 3759 4870 3760 5 P -0.5 sg fill -gr -gs -4880 3731 4879 3738 4877 3745 4875 3752 4873 3759 4870 3760 5 P -1.25 slw 0 sg str -gr -gs -4870 3695 4875 3703 4877 3709 4879 3717 4880 3724 4 P -0.5 sg fill -gr -gs -4870 3695 4875 3703 4877 3709 4879 3717 4880 3724 4 P -1.25 slw 0 sg str -gr -gs -4820.625 3704.625 m -4798.625 3674.625 L -1.25 slw 0 sg str -gr -gs -4790.625 3644.625 m -4790.625 3637.625 L -1.25 slw 0 sg str -gr -gs -4799 3674 4794 3665 4791 3658 4791 3651 4790 3645 4 P -0.5 sg fill -gr -gs -4799 3674 4794 3665 4791 3658 4791 3651 4790 3645 4 P -1.25 slw 0 sg str -gr -gs -4873.625 3640.625 m -4797.625 3737.625 L -1.25 slw 0 sg str -gr -gs -4799 2989 4801 2984 4804 2980 4806 2976 4809 2972 4813 2969 4817 2967 4818 2966 -4837 2956 4847 2951 4855 2948 4864 2946 4873 2943 4881 2942 4887 2941 4913 2939 -15 P -1.25 slw 0 sg str -gr -gs -4831 2954 4838 2940 4844 2928 4852 2915 4855 2912 4858 2909 4861 2906 4862 2906 -4868 2902 4874 2900 4875 2899 4901 2889 4913 2885 4919 2885 4925 2884 4930 2884 -4938 2885 4942 2887 4944 2888 4944 2889 4955 2896 4955 2897 4967 2907 22 P -1.25 slw 0 sg str -gr -gs -4903 2884 4904 2882 4907 2877 4911 2874 4914 2871 4919 2868 4920 2867 4927 2864 -4932 2863 4938 2862 4941 2862 4969 2860 4978 2861 4984 2862 4990 2863 4996 2865 -5002 2868 5007 2871 5012 2874 5020 2880 5025 2884 5030 2889 5033 2893 5034 2894 -5038 2900 5041 2906 5043 2911 5044 2917 5047 2929 28 P -1.25 slw 0 sg str -gr -gs -5022 2874 5024 2873 5035 2868 5041 2866 5046 2865 5052 2864 5056 2864 5060 2865 -5064 2867 5066 2868 5087 2881 5094 2887 5099 2891 5103 2896 5105 2900 5107 2903 -5108 2908 5109 2912 5109 2914 5109 2930 5108 2942 5107 2950 5105 2959 5104 2963 -5100 2975 5097 2979 5096 2981 5094 2983 27 P -1.25 slw 0 sg str -gr -gs -5111 2912 5113 2911 5116 2907 5119 2906 5123 2905 5126 2905 5130 2905 5132 2906 -5133 2906 5140 2909 5143 2911 5147 2914 5149 2918 5150 2918 5152 2921 5159 2933 -5161 2937 5162 2940 5162 2943 5162 2946 5152 2984 5150 2992 5148 2997 5147 2997 -5140 3010 5135 3016 5131 3019 5130 3020 5111 3036 28 P -1.25 slw 0 sg str -gr -gs -5188 2981 5186 2974 5180 2959 5180 2958 5179 2955 5177 2952 5175 2950 5172 2948 -5166 2944 8 P -1.25 slw 0 sg str -gr -gs -4479.625 2872.625 m -4753.625 2872.625 L -1.25 slw 0 sg str -gr -gs -4479.625 4239.625 m -4753.625 4239.625 L -1.25 slw 0 sg str -gr -gs -4596.625 2872.625 m -4596.625 3340.625 L -1.25 slw 0 sg str -gr -gs -4596.625 3692.625 m -4596.625 4239.625 L -1.25 slw 0 sg str -gr -gs -4483 3332 4605 3592 R -1 sg fill -gr -/_Times-Roman ff [243 0 0 -243 0 0] mf sf -4483 3522 m 0 sg (y) show -gs -4596 3497 4683 3705 R -1 sg fill -gr -/_Times-Roman ff [174 0 0 -174 0 0] mf sf -4596 3653 m 0 sg (1) show -gs -5356 4031 5477 4291 R -1 sg fill -gr -/_Times-Roman ff [243 0 0 -243 0 0] mf sf -5356 4221 m 0 sg (y) show -gs -5469 4195 5556 4404 R -1 sg fill -gr -/_Times-Roman ff [174 0 0 -174 0 0] mf sf -5469 4351 m 0 sg (2) show -gs -5299.625 2872.625 m -5573.625 2872.625 L -1.25 slw 0 sg str -gr -gs -5299.625 5528.625 m -5573.625 5528.625 L -1.25 slw 0 sg str -gr -gs -5456.625 5528.625 m -5456.625 4395.625 L -1.25 slw 0 sg str -gr -gs -5456.625 4024.625 m -5456.625 2891.625 L -1.25 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob03.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob03.gif deleted file mode 100755 index 667993634..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob03.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob07av1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob07av1.eps deleted file mode 100755 index e091256d8..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob07av1.eps +++ /dev/null @@ -1,642 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 - -%%BoundingBox: 0 0 395 208 - -%%Creator: Igor - -%%Title: v1_x1 - -%%Creation Date: 1 Oct, 1994 21:02 - -%%DocumentFonts: (atend) - -%%EndComments -0 208 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -44.50 14.00 44.50 171.00 MacLine -380.50 14.00 380.50 171.00 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 166.75 377.00 166.75 MacLine -grestore -1.00 ps -380.50 166.25 377.00 166.25 MacLine -44.50 166.25 48.00 166.25 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 156.25 377.00 156.25 MacLine -grestore -1.00 ps -380.50 155.75 377.00 155.75 MacLine -44.50 155.75 48.00 155.75 MacLine -1 ps -gsave 0.25 ps [1] sd -51.50 145.50 373.50 145.50 MacLine -grestore -1.00 ps -380.50 145.12 373.50 145.12 MacLine -44.50 145.12 51.50 145.12 MacLine -1 ps - OurEncoding /_Times-Roman /Times-Roman EncodeFont -12.00 (_Times-Roman) 0 F -(-20) 25.00 148.62 16.00 WS -gsave 0.125 ps [1] sd -48.00 135.12 377.00 135.12 MacLine -grestore -1.00 ps -380.50 134.62 377.00 134.62 MacLine -44.50 134.62 48.00 134.62 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 124.62 377.00 124.62 MacLine -grestore -1.00 ps -380.50 124.12 377.00 124.12 MacLine -44.50 124.12 48.00 124.12 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 114.12 377.00 114.12 MacLine -grestore -1.00 ps -380.50 113.62 377.00 113.62 MacLine -44.50 113.62 48.00 113.62 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 103.50 377.00 103.50 MacLine -grestore -1.00 ps -380.50 103.00 377.00 103.00 MacLine -44.50 103.00 48.00 103.00 MacLine -1 ps -gsave 0.25 ps [1] sd -51.50 92.88 373.50 92.88 MacLine -grestore -1.00 ps -380.50 92.50 373.50 92.50 MacLine -44.50 92.50 51.50 92.50 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(-10) 25.00 96.00 16.00 WS -gsave 0.125 ps [1] sd -48.00 82.50 377.00 82.50 MacLine -grestore -1.00 ps -380.50 82.00 377.00 82.00 MacLine -44.50 82.00 48.00 82.00 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 71.88 377.00 71.88 MacLine -grestore -1.00 ps -380.50 71.38 377.00 71.38 MacLine -44.50 71.38 48.00 71.38 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 61.38 377.00 61.38 MacLine -grestore -1.00 ps -380.50 60.88 377.00 60.88 MacLine -44.50 60.88 48.00 60.88 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 50.88 377.00 50.88 MacLine -grestore -1.00 ps -380.50 50.38 377.00 50.38 MacLine -44.50 50.38 48.00 50.38 MacLine -1 ps -gsave 0.25 ps [1] sd -51.50 40.25 373.50 40.25 MacLine -grestore -1.00 ps -380.50 39.88 373.50 39.88 MacLine -44.50 39.88 51.50 39.88 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(0) 35.00 43.38 6.00 WS -gsave 0.125 ps [1] sd -48.00 29.75 377.00 29.75 MacLine -grestore -1.00 ps -380.50 29.25 377.00 29.25 MacLine -44.50 29.25 48.00 29.25 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 19.25 377.00 19.25 MacLine -grestore -1.00 ps -380.50 18.75 377.00 18.75 MacLine -44.50 18.75 48.00 18.75 MacLine -1 ps -12.00 (_Times-Roman) 0 F -gsave 9.00 113.62 translate -90 rotate -(U\(x\) \(J\)) 0.00 0.00 41.25 WS -grestore -1.00 ps -44.50 171.50 380.50 171.50 MacLine -44.50 13.50 380.50 13.50 MacLine -1 ps -1.00 ps -380.50 13.50 380.50 20.50 MacLine -380.50 171.50 380.50 164.50 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(20) 375.00 185.50 12.00 WS -gsave 0.125 ps [1] sd -364.25 168.00 364.25 17.00 MacLine -grestore -1.00 ps -363.75 13.50 363.75 17.00 MacLine -363.75 171.50 363.75 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -347.38 168.00 347.38 17.00 MacLine -grestore -1.00 ps -346.88 13.50 346.88 17.00 MacLine -346.88 171.50 346.88 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -330.62 168.00 330.62 17.00 MacLine -grestore -1.00 ps -330.12 13.50 330.12 17.00 MacLine -330.12 171.50 330.12 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -313.75 168.00 313.75 17.00 MacLine -grestore -1.00 ps -313.25 13.50 313.25 17.00 MacLine -313.25 171.50 313.25 168.00 MacLine -1 ps -gsave 0.25 ps [1] sd -296.88 164.50 296.88 20.50 MacLine -grestore -1.00 ps -296.50 13.50 296.50 20.50 MacLine -296.50 171.50 296.50 164.50 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(15) 291.00 185.50 12.00 WS -gsave 0.125 ps [1] sd -280.25 168.00 280.25 17.00 MacLine -grestore -1.00 ps -279.75 13.50 279.75 17.00 MacLine -279.75 171.50 279.75 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -263.38 168.00 263.38 17.00 MacLine -grestore -1.00 ps -262.88 13.50 262.88 17.00 MacLine -262.88 171.50 262.88 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -246.62 168.00 246.62 17.00 MacLine -grestore -1.00 ps -246.12 13.50 246.12 17.00 MacLine -246.12 171.50 246.12 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -229.75 168.00 229.75 17.00 MacLine -grestore -1.00 ps -229.25 13.50 229.25 17.00 MacLine -229.25 171.50 229.25 168.00 MacLine -1 ps -gsave 0.25 ps [1] sd -212.88 164.50 212.88 20.50 MacLine -grestore -1.00 ps -212.50 13.50 212.50 20.50 MacLine -212.50 171.50 212.50 164.50 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(10) 207.00 185.50 12.00 WS -gsave 0.125 ps [1] sd -196.25 168.00 196.25 17.00 MacLine -grestore -1.00 ps -195.75 13.50 195.75 17.00 MacLine -195.75 171.50 195.75 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -179.38 168.00 179.38 17.00 MacLine -grestore -1.00 ps -178.88 13.50 178.88 17.00 MacLine -178.88 171.50 178.88 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -162.62 168.00 162.62 17.00 MacLine -grestore -1.00 ps -162.12 13.50 162.12 17.00 MacLine -162.12 171.50 162.12 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -145.75 168.00 145.75 17.00 MacLine -grestore -1.00 ps -145.25 13.50 145.25 17.00 MacLine -145.25 171.50 145.25 168.00 MacLine -1 ps -gsave 0.25 ps [1] sd -128.88 164.50 128.88 20.50 MacLine -grestore -1.00 ps -128.50 13.50 128.50 20.50 MacLine -128.50 171.50 128.50 164.50 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(5) 126.00 185.50 6.00 WS -gsave 0.125 ps [1] sd -112.25 168.00 112.25 17.00 MacLine -grestore -1.00 ps -111.75 13.50 111.75 17.00 MacLine -111.75 171.50 111.75 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -95.38 168.00 95.38 17.00 MacLine -grestore -1.00 ps -94.88 13.50 94.88 17.00 MacLine -94.88 171.50 94.88 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -78.62 168.00 78.62 17.00 MacLine -grestore -1.00 ps -78.12 13.50 78.12 17.00 MacLine -78.12 171.50 78.12 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -61.75 168.00 61.75 17.00 MacLine -grestore -1.00 ps -61.25 13.50 61.25 17.00 MacLine -61.25 171.50 61.25 168.00 MacLine -1 ps -1.00 ps -44.50 13.50 44.50 20.50 MacLine -44.50 171.50 44.50 164.50 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(0) 42.00 185.50 6.00 WS -12.00 (_Times-Roman) 0 F -(x \(m\)) 199.88 205.00 26.38 WS -1.00 ps -newpath 45.00 40.38 M -78.62 40.38 L -112.12 145.62 L -213.00 145.62 L -297.00 50.88 L -381.00 50.88 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Times-Roman diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob07av1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob07av1.gif deleted file mode 100755 index 151c94ff0..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob07av1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob07av2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob07av2.eps deleted file mode 100755 index 9bf9843a3..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob07av2.eps +++ /dev/null @@ -1,642 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 - -%%BoundingBox: 0 0 395 208 - -%%Creator: Igor - -%%Title: v2_x2 - -%%Creation Date: 1 Oct, 1994 21:03 - -%%DocumentFonts: (atend) - -%%EndComments -0 208 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -44.50 14.00 44.50 171.00 MacLine -380.50 14.00 380.50 171.00 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 166.75 377.00 166.75 MacLine -grestore -1.00 ps -380.50 166.25 377.00 166.25 MacLine -44.50 166.25 48.00 166.25 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 156.25 377.00 156.25 MacLine -grestore -1.00 ps -380.50 155.75 377.00 155.75 MacLine -44.50 155.75 48.00 155.75 MacLine -1 ps -gsave 0.25 ps [1] sd -51.50 145.50 373.50 145.50 MacLine -grestore -1.00 ps -380.50 145.12 373.50 145.12 MacLine -44.50 145.12 51.50 145.12 MacLine -1 ps - OurEncoding /_Times-Roman /Times-Roman EncodeFont -12.00 (_Times-Roman) 0 F -(-20) 25.00 148.62 16.00 WS -gsave 0.125 ps [1] sd -48.00 135.12 377.00 135.12 MacLine -grestore -1.00 ps -380.50 134.62 377.00 134.62 MacLine -44.50 134.62 48.00 134.62 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 124.62 377.00 124.62 MacLine -grestore -1.00 ps -380.50 124.12 377.00 124.12 MacLine -44.50 124.12 48.00 124.12 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 114.12 377.00 114.12 MacLine -grestore -1.00 ps -380.50 113.62 377.00 113.62 MacLine -44.50 113.62 48.00 113.62 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 103.50 377.00 103.50 MacLine -grestore -1.00 ps -380.50 103.00 377.00 103.00 MacLine -44.50 103.00 48.00 103.00 MacLine -1 ps -gsave 0.25 ps [1] sd -51.50 92.88 373.50 92.88 MacLine -grestore -1.00 ps -380.50 92.50 373.50 92.50 MacLine -44.50 92.50 51.50 92.50 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(-10) 25.00 96.00 16.00 WS -gsave 0.125 ps [1] sd -48.00 82.50 377.00 82.50 MacLine -grestore -1.00 ps -380.50 82.00 377.00 82.00 MacLine -44.50 82.00 48.00 82.00 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 71.88 377.00 71.88 MacLine -grestore -1.00 ps -380.50 71.38 377.00 71.38 MacLine -44.50 71.38 48.00 71.38 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 61.38 377.00 61.38 MacLine -grestore -1.00 ps -380.50 60.88 377.00 60.88 MacLine -44.50 60.88 48.00 60.88 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 50.88 377.00 50.88 MacLine -grestore -1.00 ps -380.50 50.38 377.00 50.38 MacLine -44.50 50.38 48.00 50.38 MacLine -1 ps -gsave 0.25 ps [1] sd -51.50 40.25 373.50 40.25 MacLine -grestore -1.00 ps -380.50 39.88 373.50 39.88 MacLine -44.50 39.88 51.50 39.88 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(0) 35.00 43.38 6.00 WS -gsave 0.125 ps [1] sd -48.00 29.75 377.00 29.75 MacLine -grestore -1.00 ps -380.50 29.25 377.00 29.25 MacLine -44.50 29.25 48.00 29.25 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 19.25 377.00 19.25 MacLine -grestore -1.00 ps -380.50 18.75 377.00 18.75 MacLine -44.50 18.75 48.00 18.75 MacLine -1 ps -12.00 (_Times-Roman) 0 F -gsave 9.00 113.62 translate -90 rotate -(U\(x\) \(J\)) 0.00 0.00 41.25 WS -grestore -1.00 ps -44.50 171.50 380.50 171.50 MacLine -44.50 13.50 380.50 13.50 MacLine -1 ps -1.00 ps -380.50 13.50 380.50 20.50 MacLine -380.50 171.50 380.50 164.50 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(20) 375.00 185.50 12.00 WS -gsave 0.125 ps [1] sd -364.25 168.00 364.25 17.00 MacLine -grestore -1.00 ps -363.75 13.50 363.75 17.00 MacLine -363.75 171.50 363.75 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -347.38 168.00 347.38 17.00 MacLine -grestore -1.00 ps -346.88 13.50 346.88 17.00 MacLine -346.88 171.50 346.88 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -330.62 168.00 330.62 17.00 MacLine -grestore -1.00 ps -330.12 13.50 330.12 17.00 MacLine -330.12 171.50 330.12 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -313.75 168.00 313.75 17.00 MacLine -grestore -1.00 ps -313.25 13.50 313.25 17.00 MacLine -313.25 171.50 313.25 168.00 MacLine -1 ps -gsave 0.25 ps [1] sd -296.88 164.50 296.88 20.50 MacLine -grestore -1.00 ps -296.50 13.50 296.50 20.50 MacLine -296.50 171.50 296.50 164.50 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(15) 291.00 185.50 12.00 WS -gsave 0.125 ps [1] sd -280.25 168.00 280.25 17.00 MacLine -grestore -1.00 ps -279.75 13.50 279.75 17.00 MacLine -279.75 171.50 279.75 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -263.38 168.00 263.38 17.00 MacLine -grestore -1.00 ps -262.88 13.50 262.88 17.00 MacLine -262.88 171.50 262.88 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -246.62 168.00 246.62 17.00 MacLine -grestore -1.00 ps -246.12 13.50 246.12 17.00 MacLine -246.12 171.50 246.12 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -229.75 168.00 229.75 17.00 MacLine -grestore -1.00 ps -229.25 13.50 229.25 17.00 MacLine -229.25 171.50 229.25 168.00 MacLine -1 ps -gsave 0.25 ps [1] sd -212.88 164.50 212.88 20.50 MacLine -grestore -1.00 ps -212.50 13.50 212.50 20.50 MacLine -212.50 171.50 212.50 164.50 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(10) 207.00 185.50 12.00 WS -gsave 0.125 ps [1] sd -196.25 168.00 196.25 17.00 MacLine -grestore -1.00 ps -195.75 13.50 195.75 17.00 MacLine -195.75 171.50 195.75 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -179.38 168.00 179.38 17.00 MacLine -grestore -1.00 ps -178.88 13.50 178.88 17.00 MacLine -178.88 171.50 178.88 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -162.62 168.00 162.62 17.00 MacLine -grestore -1.00 ps -162.12 13.50 162.12 17.00 MacLine -162.12 171.50 162.12 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -145.75 168.00 145.75 17.00 MacLine -grestore -1.00 ps -145.25 13.50 145.25 17.00 MacLine -145.25 171.50 145.25 168.00 MacLine -1 ps -gsave 0.25 ps [1] sd -128.88 164.50 128.88 20.50 MacLine -grestore -1.00 ps -128.50 13.50 128.50 20.50 MacLine -128.50 171.50 128.50 164.50 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(5) 126.00 185.50 6.00 WS -gsave 0.125 ps [1] sd -112.25 168.00 112.25 17.00 MacLine -grestore -1.00 ps -111.75 13.50 111.75 17.00 MacLine -111.75 171.50 111.75 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -95.38 168.00 95.38 17.00 MacLine -grestore -1.00 ps -94.88 13.50 94.88 17.00 MacLine -94.88 171.50 94.88 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -78.62 168.00 78.62 17.00 MacLine -grestore -1.00 ps -78.12 13.50 78.12 17.00 MacLine -78.12 171.50 78.12 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -61.75 168.00 61.75 17.00 MacLine -grestore -1.00 ps -61.25 13.50 61.25 17.00 MacLine -61.25 171.50 61.25 168.00 MacLine -1 ps -1.00 ps -44.50 13.50 44.50 20.50 MacLine -44.50 171.50 44.50 164.50 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(0) 42.00 185.50 6.00 WS -12.00 (_Times-Roman) 0 F -(x \(m\)) 199.88 205.00 26.38 WS -1.00 ps -newpath 45.00 66.62 M -78.62 66.62 L -213.00 119.38 L -246.62 119.38 L -347.38 40.38 L -381.00 40.38 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Times-Roman diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob07av2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob07av2.gif deleted file mode 100755 index ca62fb551..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob07av2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob07av3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob07av3.eps deleted file mode 100755 index 2263b1324..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob07av3.eps +++ /dev/null @@ -1,642 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 - -%%BoundingBox: 0 0 395 208 - -%%Creator: Igor - -%%Title: v3_x3 - -%%Creation Date: 1 Oct, 1994 21:04 - -%%DocumentFonts: (atend) - -%%EndComments -0 208 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -44.50 14.00 44.50 171.00 MacLine -380.50 14.00 380.50 171.00 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 166.75 377.00 166.75 MacLine -grestore -1.00 ps -380.50 166.25 377.00 166.25 MacLine -44.50 166.25 48.00 166.25 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 156.25 377.00 156.25 MacLine -grestore -1.00 ps -380.50 155.75 377.00 155.75 MacLine -44.50 155.75 48.00 155.75 MacLine -1 ps -gsave 0.25 ps [1] sd -51.50 145.50 373.50 145.50 MacLine -grestore -1.00 ps -380.50 145.12 373.50 145.12 MacLine -44.50 145.12 51.50 145.12 MacLine -1 ps - OurEncoding /_Times-Roman /Times-Roman EncodeFont -12.00 (_Times-Roman) 0 F -(-20) 25.00 148.62 16.00 WS -gsave 0.125 ps [1] sd -48.00 135.12 377.00 135.12 MacLine -grestore -1.00 ps -380.50 134.62 377.00 134.62 MacLine -44.50 134.62 48.00 134.62 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 124.62 377.00 124.62 MacLine -grestore -1.00 ps -380.50 124.12 377.00 124.12 MacLine -44.50 124.12 48.00 124.12 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 114.12 377.00 114.12 MacLine -grestore -1.00 ps -380.50 113.62 377.00 113.62 MacLine -44.50 113.62 48.00 113.62 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 103.50 377.00 103.50 MacLine -grestore -1.00 ps -380.50 103.00 377.00 103.00 MacLine -44.50 103.00 48.00 103.00 MacLine -1 ps -gsave 0.25 ps [1] sd -51.50 92.88 373.50 92.88 MacLine -grestore -1.00 ps -380.50 92.50 373.50 92.50 MacLine -44.50 92.50 51.50 92.50 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(-10) 25.00 96.00 16.00 WS -gsave 0.125 ps [1] sd -48.00 82.50 377.00 82.50 MacLine -grestore -1.00 ps -380.50 82.00 377.00 82.00 MacLine -44.50 82.00 48.00 82.00 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 71.88 377.00 71.88 MacLine -grestore -1.00 ps -380.50 71.38 377.00 71.38 MacLine -44.50 71.38 48.00 71.38 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 61.38 377.00 61.38 MacLine -grestore -1.00 ps -380.50 60.88 377.00 60.88 MacLine -44.50 60.88 48.00 60.88 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 50.88 377.00 50.88 MacLine -grestore -1.00 ps -380.50 50.38 377.00 50.38 MacLine -44.50 50.38 48.00 50.38 MacLine -1 ps -gsave 0.25 ps [1] sd -51.50 40.25 373.50 40.25 MacLine -grestore -1.00 ps -380.50 39.88 373.50 39.88 MacLine -44.50 39.88 51.50 39.88 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(0) 35.00 43.38 6.00 WS -gsave 0.125 ps [1] sd -48.00 29.75 377.00 29.75 MacLine -grestore -1.00 ps -380.50 29.25 377.00 29.25 MacLine -44.50 29.25 48.00 29.25 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 19.25 377.00 19.25 MacLine -grestore -1.00 ps -380.50 18.75 377.00 18.75 MacLine -44.50 18.75 48.00 18.75 MacLine -1 ps -12.00 (_Times-Roman) 0 F -gsave 9.00 113.62 translate -90 rotate -(U\(x\) \(J\)) 0.00 0.00 41.25 WS -grestore -1.00 ps -44.50 171.50 380.50 171.50 MacLine -44.50 13.50 380.50 13.50 MacLine -1 ps -1.00 ps -380.50 13.50 380.50 20.50 MacLine -380.50 171.50 380.50 164.50 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(20) 375.00 185.50 12.00 WS -gsave 0.125 ps [1] sd -364.25 168.00 364.25 17.00 MacLine -grestore -1.00 ps -363.75 13.50 363.75 17.00 MacLine -363.75 171.50 363.75 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -347.38 168.00 347.38 17.00 MacLine -grestore -1.00 ps -346.88 13.50 346.88 17.00 MacLine -346.88 171.50 346.88 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -330.62 168.00 330.62 17.00 MacLine -grestore -1.00 ps -330.12 13.50 330.12 17.00 MacLine -330.12 171.50 330.12 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -313.75 168.00 313.75 17.00 MacLine -grestore -1.00 ps -313.25 13.50 313.25 17.00 MacLine -313.25 171.50 313.25 168.00 MacLine -1 ps -gsave 0.25 ps [1] sd -296.88 164.50 296.88 20.50 MacLine -grestore -1.00 ps -296.50 13.50 296.50 20.50 MacLine -296.50 171.50 296.50 164.50 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(15) 291.00 185.50 12.00 WS -gsave 0.125 ps [1] sd -280.25 168.00 280.25 17.00 MacLine -grestore -1.00 ps -279.75 13.50 279.75 17.00 MacLine -279.75 171.50 279.75 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -263.38 168.00 263.38 17.00 MacLine -grestore -1.00 ps -262.88 13.50 262.88 17.00 MacLine -262.88 171.50 262.88 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -246.62 168.00 246.62 17.00 MacLine -grestore -1.00 ps -246.12 13.50 246.12 17.00 MacLine -246.12 171.50 246.12 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -229.75 168.00 229.75 17.00 MacLine -grestore -1.00 ps -229.25 13.50 229.25 17.00 MacLine -229.25 171.50 229.25 168.00 MacLine -1 ps -gsave 0.25 ps [1] sd -212.88 164.50 212.88 20.50 MacLine -grestore -1.00 ps -212.50 13.50 212.50 20.50 MacLine -212.50 171.50 212.50 164.50 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(10) 207.00 185.50 12.00 WS -gsave 0.125 ps [1] sd -196.25 168.00 196.25 17.00 MacLine -grestore -1.00 ps -195.75 13.50 195.75 17.00 MacLine -195.75 171.50 195.75 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -179.38 168.00 179.38 17.00 MacLine -grestore -1.00 ps -178.88 13.50 178.88 17.00 MacLine -178.88 171.50 178.88 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -162.62 168.00 162.62 17.00 MacLine -grestore -1.00 ps -162.12 13.50 162.12 17.00 MacLine -162.12 171.50 162.12 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -145.75 168.00 145.75 17.00 MacLine -grestore -1.00 ps -145.25 13.50 145.25 17.00 MacLine -145.25 171.50 145.25 168.00 MacLine -1 ps -gsave 0.25 ps [1] sd -128.88 164.50 128.88 20.50 MacLine -grestore -1.00 ps -128.50 13.50 128.50 20.50 MacLine -128.50 171.50 128.50 164.50 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(5) 126.00 185.50 6.00 WS -gsave 0.125 ps [1] sd -112.25 168.00 112.25 17.00 MacLine -grestore -1.00 ps -111.75 13.50 111.75 17.00 MacLine -111.75 171.50 111.75 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -95.38 168.00 95.38 17.00 MacLine -grestore -1.00 ps -94.88 13.50 94.88 17.00 MacLine -94.88 171.50 94.88 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -78.62 168.00 78.62 17.00 MacLine -grestore -1.00 ps -78.12 13.50 78.12 17.00 MacLine -78.12 171.50 78.12 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -61.75 168.00 61.75 17.00 MacLine -grestore -1.00 ps -61.25 13.50 61.25 17.00 MacLine -61.25 171.50 61.25 168.00 MacLine -1 ps -1.00 ps -44.50 13.50 44.50 20.50 MacLine -44.50 171.50 44.50 164.50 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(0) 42.00 185.50 6.00 WS -12.00 (_Times-Roman) 0 F -(x \(m\)) 199.88 205.00 26.38 WS -1.00 ps -newpath 45.00 72.00 M -129.00 72.00 L -179.38 145.62 L -246.62 145.62 L -280.12 29.88 L -381.00 29.88 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Times-Roman diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob07av3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob07av3.gif deleted file mode 100755 index 70848d615..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob07av3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob07av4.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob07av4.eps deleted file mode 100755 index d102a96bf..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob07av4.eps +++ /dev/null @@ -1,642 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 - -%%BoundingBox: 0 0 395 208 - -%%Creator: Igor - -%%Title: v4_x4 - -%%Creation Date: 1 Oct, 1994 21:04 - -%%DocumentFonts: (atend) - -%%EndComments -0 208 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -44.50 14.00 44.50 171.00 MacLine -380.50 14.00 380.50 171.00 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 166.75 377.00 166.75 MacLine -grestore -1.00 ps -380.50 166.25 377.00 166.25 MacLine -44.50 166.25 48.00 166.25 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 156.25 377.00 156.25 MacLine -grestore -1.00 ps -380.50 155.75 377.00 155.75 MacLine -44.50 155.75 48.00 155.75 MacLine -1 ps -gsave 0.25 ps [1] sd -51.50 145.50 373.50 145.50 MacLine -grestore -1.00 ps -380.50 145.12 373.50 145.12 MacLine -44.50 145.12 51.50 145.12 MacLine -1 ps - OurEncoding /_Times-Roman /Times-Roman EncodeFont -12.00 (_Times-Roman) 0 F -(-20) 25.00 148.62 16.00 WS -gsave 0.125 ps [1] sd -48.00 135.12 377.00 135.12 MacLine -grestore -1.00 ps -380.50 134.62 377.00 134.62 MacLine -44.50 134.62 48.00 134.62 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 124.62 377.00 124.62 MacLine -grestore -1.00 ps -380.50 124.12 377.00 124.12 MacLine -44.50 124.12 48.00 124.12 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 114.12 377.00 114.12 MacLine -grestore -1.00 ps -380.50 113.62 377.00 113.62 MacLine -44.50 113.62 48.00 113.62 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 103.50 377.00 103.50 MacLine -grestore -1.00 ps -380.50 103.00 377.00 103.00 MacLine -44.50 103.00 48.00 103.00 MacLine -1 ps -gsave 0.25 ps [1] sd -51.50 92.88 373.50 92.88 MacLine -grestore -1.00 ps -380.50 92.50 373.50 92.50 MacLine -44.50 92.50 51.50 92.50 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(-10) 25.00 96.00 16.00 WS -gsave 0.125 ps [1] sd -48.00 82.50 377.00 82.50 MacLine -grestore -1.00 ps -380.50 82.00 377.00 82.00 MacLine -44.50 82.00 48.00 82.00 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 71.88 377.00 71.88 MacLine -grestore -1.00 ps -380.50 71.38 377.00 71.38 MacLine -44.50 71.38 48.00 71.38 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 61.38 377.00 61.38 MacLine -grestore -1.00 ps -380.50 60.88 377.00 60.88 MacLine -44.50 60.88 48.00 60.88 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 50.88 377.00 50.88 MacLine -grestore -1.00 ps -380.50 50.38 377.00 50.38 MacLine -44.50 50.38 48.00 50.38 MacLine -1 ps -gsave 0.25 ps [1] sd -51.50 40.25 373.50 40.25 MacLine -grestore -1.00 ps -380.50 39.88 373.50 39.88 MacLine -44.50 39.88 51.50 39.88 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(0) 35.00 43.38 6.00 WS -gsave 0.125 ps [1] sd -48.00 29.75 377.00 29.75 MacLine -grestore -1.00 ps -380.50 29.25 377.00 29.25 MacLine -44.50 29.25 48.00 29.25 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 19.25 377.00 19.25 MacLine -grestore -1.00 ps -380.50 18.75 377.00 18.75 MacLine -44.50 18.75 48.00 18.75 MacLine -1 ps -12.00 (_Times-Roman) 0 F -gsave 9.00 113.62 translate -90 rotate -(U\(x\) \(J\)) 0.00 0.00 41.25 WS -grestore -1.00 ps -44.50 171.50 380.50 171.50 MacLine -44.50 13.50 380.50 13.50 MacLine -1 ps -1.00 ps -380.50 13.50 380.50 20.50 MacLine -380.50 171.50 380.50 164.50 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(20) 375.00 185.50 12.00 WS -gsave 0.125 ps [1] sd -364.25 168.00 364.25 17.00 MacLine -grestore -1.00 ps -363.75 13.50 363.75 17.00 MacLine -363.75 171.50 363.75 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -347.38 168.00 347.38 17.00 MacLine -grestore -1.00 ps -346.88 13.50 346.88 17.00 MacLine -346.88 171.50 346.88 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -330.62 168.00 330.62 17.00 MacLine -grestore -1.00 ps -330.12 13.50 330.12 17.00 MacLine -330.12 171.50 330.12 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -313.75 168.00 313.75 17.00 MacLine -grestore -1.00 ps -313.25 13.50 313.25 17.00 MacLine -313.25 171.50 313.25 168.00 MacLine -1 ps -gsave 0.25 ps [1] sd -296.88 164.50 296.88 20.50 MacLine -grestore -1.00 ps -296.50 13.50 296.50 20.50 MacLine -296.50 171.50 296.50 164.50 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(15) 291.00 185.50 12.00 WS -gsave 0.125 ps [1] sd -280.25 168.00 280.25 17.00 MacLine -grestore -1.00 ps -279.75 13.50 279.75 17.00 MacLine -279.75 171.50 279.75 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -263.38 168.00 263.38 17.00 MacLine -grestore -1.00 ps -262.88 13.50 262.88 17.00 MacLine -262.88 171.50 262.88 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -246.62 168.00 246.62 17.00 MacLine -grestore -1.00 ps -246.12 13.50 246.12 17.00 MacLine -246.12 171.50 246.12 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -229.75 168.00 229.75 17.00 MacLine -grestore -1.00 ps -229.25 13.50 229.25 17.00 MacLine -229.25 171.50 229.25 168.00 MacLine -1 ps -gsave 0.25 ps [1] sd -212.88 164.50 212.88 20.50 MacLine -grestore -1.00 ps -212.50 13.50 212.50 20.50 MacLine -212.50 171.50 212.50 164.50 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(10) 207.00 185.50 12.00 WS -gsave 0.125 ps [1] sd -196.25 168.00 196.25 17.00 MacLine -grestore -1.00 ps -195.75 13.50 195.75 17.00 MacLine -195.75 171.50 195.75 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -179.38 168.00 179.38 17.00 MacLine -grestore -1.00 ps -178.88 13.50 178.88 17.00 MacLine -178.88 171.50 178.88 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -162.62 168.00 162.62 17.00 MacLine -grestore -1.00 ps -162.12 13.50 162.12 17.00 MacLine -162.12 171.50 162.12 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -145.75 168.00 145.75 17.00 MacLine -grestore -1.00 ps -145.25 13.50 145.25 17.00 MacLine -145.25 171.50 145.25 168.00 MacLine -1 ps -gsave 0.25 ps [1] sd -128.88 164.50 128.88 20.50 MacLine -grestore -1.00 ps -128.50 13.50 128.50 20.50 MacLine -128.50 171.50 128.50 164.50 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(5) 126.00 185.50 6.00 WS -gsave 0.125 ps [1] sd -112.25 168.00 112.25 17.00 MacLine -grestore -1.00 ps -111.75 13.50 111.75 17.00 MacLine -111.75 171.50 111.75 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -95.38 168.00 95.38 17.00 MacLine -grestore -1.00 ps -94.88 13.50 94.88 17.00 MacLine -94.88 171.50 94.88 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -78.62 168.00 78.62 17.00 MacLine -grestore -1.00 ps -78.12 13.50 78.12 17.00 MacLine -78.12 171.50 78.12 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -61.75 168.00 61.75 17.00 MacLine -grestore -1.00 ps -61.25 13.50 61.25 17.00 MacLine -61.25 171.50 61.25 168.00 MacLine -1 ps -1.00 ps -44.50 13.50 44.50 20.50 MacLine -44.50 171.50 44.50 164.50 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(0) 42.00 185.50 6.00 WS -12.00 (_Times-Roman) 0 F -(x \(m\)) 199.88 205.00 26.38 WS -1.00 ps -newpath 45.00 19.25 M -145.88 19.25 L -213.00 135.12 L -246.62 135.12 L -347.38 40.38 L -381.00 40.38 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Times-Roman diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob07av4.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob07av4.gif deleted file mode 100755 index 618b7736d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob07av4.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob07av5.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob07av5.eps deleted file mode 100755 index 3c8c53adf..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob07av5.eps +++ /dev/null @@ -1,642 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 - -%%BoundingBox: 0 0 395 208 - -%%Creator: Igor - -%%Title: v5_x5 - -%%Creation Date: 1 Oct, 1994 21:05 - -%%DocumentFonts: (atend) - -%%EndComments -0 208 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -44.50 14.00 44.50 171.00 MacLine -380.50 14.00 380.50 171.00 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 166.75 377.00 166.75 MacLine -grestore -1.00 ps -380.50 166.25 377.00 166.25 MacLine -44.50 166.25 48.00 166.25 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 156.25 377.00 156.25 MacLine -grestore -1.00 ps -380.50 155.75 377.00 155.75 MacLine -44.50 155.75 48.00 155.75 MacLine -1 ps -gsave 0.25 ps [1] sd -51.50 145.50 373.50 145.50 MacLine -grestore -1.00 ps -380.50 145.12 373.50 145.12 MacLine -44.50 145.12 51.50 145.12 MacLine -1 ps - OurEncoding /_Times-Roman /Times-Roman EncodeFont -12.00 (_Times-Roman) 0 F -(-20) 25.00 148.62 16.00 WS -gsave 0.125 ps [1] sd -48.00 135.12 377.00 135.12 MacLine -grestore -1.00 ps -380.50 134.62 377.00 134.62 MacLine -44.50 134.62 48.00 134.62 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 124.62 377.00 124.62 MacLine -grestore -1.00 ps -380.50 124.12 377.00 124.12 MacLine -44.50 124.12 48.00 124.12 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 114.12 377.00 114.12 MacLine -grestore -1.00 ps -380.50 113.62 377.00 113.62 MacLine -44.50 113.62 48.00 113.62 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 103.50 377.00 103.50 MacLine -grestore -1.00 ps -380.50 103.00 377.00 103.00 MacLine -44.50 103.00 48.00 103.00 MacLine -1 ps -gsave 0.25 ps [1] sd -51.50 92.88 373.50 92.88 MacLine -grestore -1.00 ps -380.50 92.50 373.50 92.50 MacLine -44.50 92.50 51.50 92.50 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(-10) 25.00 96.00 16.00 WS -gsave 0.125 ps [1] sd -48.00 82.50 377.00 82.50 MacLine -grestore -1.00 ps -380.50 82.00 377.00 82.00 MacLine -44.50 82.00 48.00 82.00 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 71.88 377.00 71.88 MacLine -grestore -1.00 ps -380.50 71.38 377.00 71.38 MacLine -44.50 71.38 48.00 71.38 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 61.38 377.00 61.38 MacLine -grestore -1.00 ps -380.50 60.88 377.00 60.88 MacLine -44.50 60.88 48.00 60.88 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 50.88 377.00 50.88 MacLine -grestore -1.00 ps -380.50 50.38 377.00 50.38 MacLine -44.50 50.38 48.00 50.38 MacLine -1 ps -gsave 0.25 ps [1] sd -51.50 40.25 373.50 40.25 MacLine -grestore -1.00 ps -380.50 39.88 373.50 39.88 MacLine -44.50 39.88 51.50 39.88 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(0) 35.00 43.38 6.00 WS -gsave 0.125 ps [1] sd -48.00 29.75 377.00 29.75 MacLine -grestore -1.00 ps -380.50 29.25 377.00 29.25 MacLine -44.50 29.25 48.00 29.25 MacLine -1 ps -gsave 0.125 ps [1] sd -48.00 19.25 377.00 19.25 MacLine -grestore -1.00 ps -380.50 18.75 377.00 18.75 MacLine -44.50 18.75 48.00 18.75 MacLine -1 ps -12.00 (_Times-Roman) 0 F -gsave 9.00 113.62 translate -90 rotate -(U\(x\) \(J\)) 0.00 0.00 41.25 WS -grestore -1.00 ps -44.50 171.50 380.50 171.50 MacLine -44.50 13.50 380.50 13.50 MacLine -1 ps -1.00 ps -380.50 13.50 380.50 20.50 MacLine -380.50 171.50 380.50 164.50 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(20) 375.00 185.50 12.00 WS -gsave 0.125 ps [1] sd -364.25 168.00 364.25 17.00 MacLine -grestore -1.00 ps -363.75 13.50 363.75 17.00 MacLine -363.75 171.50 363.75 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -347.38 168.00 347.38 17.00 MacLine -grestore -1.00 ps -346.88 13.50 346.88 17.00 MacLine -346.88 171.50 346.88 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -330.62 168.00 330.62 17.00 MacLine -grestore -1.00 ps -330.12 13.50 330.12 17.00 MacLine -330.12 171.50 330.12 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -313.75 168.00 313.75 17.00 MacLine -grestore -1.00 ps -313.25 13.50 313.25 17.00 MacLine -313.25 171.50 313.25 168.00 MacLine -1 ps -gsave 0.25 ps [1] sd -296.88 164.50 296.88 20.50 MacLine -grestore -1.00 ps -296.50 13.50 296.50 20.50 MacLine -296.50 171.50 296.50 164.50 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(15) 291.00 185.50 12.00 WS -gsave 0.125 ps [1] sd -280.25 168.00 280.25 17.00 MacLine -grestore -1.00 ps -279.75 13.50 279.75 17.00 MacLine -279.75 171.50 279.75 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -263.38 168.00 263.38 17.00 MacLine -grestore -1.00 ps -262.88 13.50 262.88 17.00 MacLine -262.88 171.50 262.88 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -246.62 168.00 246.62 17.00 MacLine -grestore -1.00 ps -246.12 13.50 246.12 17.00 MacLine -246.12 171.50 246.12 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -229.75 168.00 229.75 17.00 MacLine -grestore -1.00 ps -229.25 13.50 229.25 17.00 MacLine -229.25 171.50 229.25 168.00 MacLine -1 ps -gsave 0.25 ps [1] sd -212.88 164.50 212.88 20.50 MacLine -grestore -1.00 ps -212.50 13.50 212.50 20.50 MacLine -212.50 171.50 212.50 164.50 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(10) 207.00 185.50 12.00 WS -gsave 0.125 ps [1] sd -196.25 168.00 196.25 17.00 MacLine -grestore -1.00 ps -195.75 13.50 195.75 17.00 MacLine -195.75 171.50 195.75 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -179.38 168.00 179.38 17.00 MacLine -grestore -1.00 ps -178.88 13.50 178.88 17.00 MacLine -178.88 171.50 178.88 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -162.62 168.00 162.62 17.00 MacLine -grestore -1.00 ps -162.12 13.50 162.12 17.00 MacLine -162.12 171.50 162.12 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -145.75 168.00 145.75 17.00 MacLine -grestore -1.00 ps -145.25 13.50 145.25 17.00 MacLine -145.25 171.50 145.25 168.00 MacLine -1 ps -gsave 0.25 ps [1] sd -128.88 164.50 128.88 20.50 MacLine -grestore -1.00 ps -128.50 13.50 128.50 20.50 MacLine -128.50 171.50 128.50 164.50 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(5) 126.00 185.50 6.00 WS -gsave 0.125 ps [1] sd -112.25 168.00 112.25 17.00 MacLine -grestore -1.00 ps -111.75 13.50 111.75 17.00 MacLine -111.75 171.50 111.75 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -95.38 168.00 95.38 17.00 MacLine -grestore -1.00 ps -94.88 13.50 94.88 17.00 MacLine -94.88 171.50 94.88 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -78.62 168.00 78.62 17.00 MacLine -grestore -1.00 ps -78.12 13.50 78.12 17.00 MacLine -78.12 171.50 78.12 168.00 MacLine -1 ps -gsave 0.125 ps [1] sd -61.75 168.00 61.75 17.00 MacLine -grestore -1.00 ps -61.25 13.50 61.25 17.00 MacLine -61.25 171.50 61.25 168.00 MacLine -1 ps -1.00 ps -44.50 13.50 44.50 20.50 MacLine -44.50 171.50 44.50 164.50 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(0) 42.00 185.50 6.00 WS -12.00 (_Times-Roman) 0 F -(x \(m\)) 199.88 205.00 26.38 WS -1.00 ps -newpath 45.00 40.38 M -112.12 40.38 L -179.38 145.62 L -246.62 145.62 L -313.88 50.88 L -381.00 50.88 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Times-Roman diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob07av5.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob07av5.gif deleted file mode 100755 index 23ec680f2..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob07av5.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob08a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob08a.eps deleted file mode 100755 index 852b4a670..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob08a.eps +++ /dev/null @@ -1,382 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 - -%%Creator: MiniCad+ 4.0 - -%%Title: hw6p10f.eps - -%%CreationDate: 10/2/1994 - -%%Pages: 0 - -%%DocumentFonts: Times-Roman - -%%BoundingBox:128 432 412 727 - -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -2777.625 1805.625 6527.375 5555.375 OV -1.25 slw 0 sg str -gr -gs -3654 3411 3775 3637 R -1 sg fill -gr -/_Times-Roman ff [208 0 0 -208 0 0] mf sf -3654 3567 m 0 sg (L) show -gs -3541 3723 3888 3949 R -1 sg fill -gr -3541 3879 m 2.08 slw 0 sg (Rod) show -gs -2777.5 3676.5 m -4652.5 3676.5 L -35 slw 0 sg str -gr -gs -4791 3563 5711 3789 R -1 sg fill -gr -4791 3719 m 2.08 slw 0 sg (Pivot point) show -gs -2621 3524 2933 3836 OV -0 sg fill -gr -gs -2621.625 3524.625 2933.375 3836.375 OV -1.25 slw 0 sg str -gr -gs -2777 4930 2703 4772 2851 4772 2 P -0 sg fill -gr -gs -2777.625 3676.625 m -2777.625 4930.625 L -1.25 slw 0 sg str -gr -gs -2638 4986 2881 5212 R -1 sg fill -gr -2638 5142 m 2.08 slw 0 sg (Vo) show -gs -4652.625 1649.625 m -4652.625 1961.625 L -1.25 slw 0 sg str -gr -gs -6371.625 3680.625 m -6683.625 3680.625 L -1.25 slw 0 sg str -gr -gs -4652.625 5399.625 m -4652.625 5711.625 L -1.25 slw 0 sg str -gr -gs -2464 3367 2603 3593 R -1 sg fill -gr -2464 3523 m 2.08 slw 0 sg (A) show -gs -4582 5781 4721 6007 R -1 sg fill -gr -4582 5937 m 2.08 slw 0 sg (B) show -gs -6770 3567 6909 3793 R -1 sg fill -gr -6770 3723 m 2.08 slw 0 sg (C) show -gs -4582 1380 4721 1605 R -1 sg fill -gr -4582 1536 m 2.08 slw 0 sg (D) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob08a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob08a.gif deleted file mode 100755 index 7de32476a..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob08a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob09.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob09.eps deleted file mode 100755 index 0ad80d759..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob09.eps +++ /dev/null @@ -1,384 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 - -%%Creator: MiniCad+ 4.0 - -%%Title: mdt2p5f.eps - -%%CreationDate: 10/16/1994 - -%%Pages: 0 - -%%DocumentFonts: Times-Roman - -%%BoundingBox:148 464 446 609 - -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -5087 5026 5208 5251 R -1 sg fill -gr -/_Times-Roman ff [208 0 0 -208 0 0] mf sf -5087 5182 m 0 sg (L) show -gs -0 slc -newpath -6554 3576 m -5616 2326 7492 4826 270 360 A -1 sg fill -gr -gs -0 slc -newpath -5616.5 2326.5 7492.5 4826.5 270 360 A -35 slw 0 sg str -gr -gs -3741.5 4826.5 m -6554.5 4826.5 L -35 slw 0 sg str -gr -gs -3741.625 4982.625 m -3741.625 5451.625 L -1.25 slw 0 sg str -gr -gs -6554.625 4982.625 m -6554.625 5451.625 L -1.25 slw 0 sg str -gr -gs -3741 5217 3899 5143 3899 5291 2 P -0 sg fill -gr -gs -6554 5217 6396 5291 6396 5143 2 P -0 sg fill -gr -gs -3741.625 5217.625 m -6554.625 5217.625 L -1.25 slw 0 sg str -gr -gs -3273.625 3576.625 m -4054.625 3576.625 L -1.25 slw 0 sg str -gr -gs -3741 3576 3815 3734 3667 3734 2 P -0 sg fill -gr -gs -3741 4826 3667 4668 3815 4668 2 P -0 sg fill -gr -gs -3741.625 3576.625 m -3741.625 4826.625 L -1.25 slw 0 sg str -gr -gs -3880 4088 3984 4314 R -1 sg fill -gr -3880 4244 m 2.08 slw 0 sg (h) show -gs -2804 3420 3116 3732 R -0 0 0 1 1 1 [76 210 83 45 150 89 70 179] patfill -gr -gs -2804.625 3420.625 3116.375 3732.375 R -1.25 slw 0 sg str -gr -gs -0 slc -newpath -2804.5 2326.5 4679.5 4826.5 180 270 A -35 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob09.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob09.gif deleted file mode 100755 index e1539598d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob09.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob10a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob10a.eps deleted file mode 100755 index 1dd097144..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob10a.eps +++ /dev/null @@ -1,444 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Vert_spring.eps -%%CreationDate: 5/11/1996 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%BoundingBox:241 439 342 627 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -4765 2976 5390 3601 R -0.5 sg fill -gr -gs -4765.625 2976.625 5390.375 3601.375 R -1.25 slw 0 sg str -gr -gs -4257 4031 4491 5906 R -0.75 sg fill -gr -gs -4257.625 4031.625 4491.375 5906.375 R -1.25 slw 0 sg str -gr -gs -5624 4031 5859 5906 R -0.75 sg fill -gr -gs -5624.625 4031.625 5859.375 5906.375 R -1.25 slw 0 sg str -gr -gs -4257 5906 5859 6062 R -0 0 0 1 1 1 [247 189 255 111 251 191 239 254] patfill -gr -gs -4257.625 5906.625 5859.375 6062.375 R -1.25 slw 0 sg str -gr -gs -5546 3914 5501 3746 5591 3746 2 P -0 sg fill -gr -gs -5546.625 3093.625 m -5546.625 3746.625 L -1.25 slw 0 sg str -gr -gs -5328 5906 5328 5867 4788 5711 4788 5750 5328 5906 4 P closepath -1 sg fill -gr -gs -5328 5906 5328 5867 4788 5711 4788 5750 5328 5906 4 P closepath -1.25 slw 0 sg str -gr -gs -4788 5867 5328 5906 R -1 sg fill -gr -gs -4788.625 5867.625 5328.375 5906.375 R -1.25 slw 0 sg str -gr -gs -5328 4968 5328 4929 4788 4773 4788 4812 5328 4968 4 P closepath -1 sg fill -gr -gs -5328 4968 5328 4929 4788 4773 4788 4812 5328 4968 4 P closepath -1.25 slw 0 sg str -gr -gs -5328 5281 5328 5242 4788 5086 4788 5125 5328 5281 4 P closepath -1 sg fill -gr -gs -5328 5281 5328 5242 4788 5086 4788 5125 5328 5281 4 P closepath -1.25 slw 0 sg str -gr -gs -5328 5594 5328 5554 4788 5398 4788 5437 5328 5594 4 P closepath -1 sg fill -gr -gs -5328 5594 5328 5554 4788 5398 4788 5437 5328 5594 4 P closepath -1.25 slw 0 sg str -gr -gs -4788 5750 4788 5711 5328 5554 5328 5594 4788 5750 4 P closepath -1 sg fill -gr -gs -4788 5750 4788 5711 5328 5554 5328 5594 4788 5750 4 P closepath -1.25 slw 0 sg str -gr -gs -4788 5437 4788 5398 5328 5242 5328 5281 4788 5437 4 P closepath -1 sg fill -gr -gs -4788 5437 4788 5398 5328 5242 5328 5281 4788 5437 4 P closepath -1.25 slw 0 sg str -gr -gs -4788 5125 4788 5086 5328 4929 5328 4968 4788 5125 4 P closepath -1 sg fill -gr -gs -4788 5125 4788 5086 5328 4929 5328 4968 4788 5125 4 P closepath -1.25 slw 0 sg str -gr -gs -5328 4656 5328 4617 4788 4461 4788 4500 5328 4656 4 P closepath -1 sg fill -gr -gs -5328 4656 5328 4617 4788 4461 4788 4500 5328 4656 4 P closepath -1.25 slw 0 sg str -gr -gs -5328 4343 5328 4304 4788 4148 4788 4187 5328 4343 4 P closepath -1 sg fill -gr -gs -5328 4343 5328 4304 4788 4148 4788 4187 5328 4343 4 P closepath -1.25 slw 0 sg str -gr -gs -4788 4812 4788 4773 5328 4617 5328 4656 4788 4812 4 P closepath -1 sg fill -gr -gs -4788 4812 4788 4773 5328 4617 5328 4656 4788 4812 4 P closepath -1.25 slw 0 sg str -gr -gs -4788 4500 4788 4461 5328 4304 5328 4343 4788 4500 4 P closepath -1 sg fill -gr -gs -4788 4500 4788 4461 5328 4304 5328 4343 4788 4500 4 P closepath -1.25 slw 0 sg str -gr -gs -4687 4109 5429 4148 R -0 sg fill -gr -gs -4687.625 4109.625 5429.375 4148.375 R -1.25 slw 0 sg str -gr -gs -4990 3159 5164 3419 R -1 sg fill -gr -/_Times-Roman ff [243 0 0 -243 0 0] mf sf -4990 3349 m 0 sg (m) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob10a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob10a.gif deleted file mode 100755 index f8c04ee99..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob10a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob11a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob11a.eps deleted file mode 100755 index e739b0ca7..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob11a.eps +++ /dev/null @@ -1,9 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: hw5p9f.eps -%%CreationDate: 9/17/1994 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%+ Symbol -%%BoundingBox:244 500 364 685 -%%EndComments save % Basic Definitions /gs {gsave} def /gr {grestore} def /t {translate} def /sc {scale} def /sg {setgray} def /srgb {setrgbcolor} def /ff {findfont} def /mf {makefont} def /sf {setfont} def /slw {setlinewidth} def /str {stroke} def /slc {setlinecap} def % Polyline operators /pl % x y pl x y { transform 0.25 sub round 0.25 add exch 0.25 sub round 0.25 add exch itransform } def /setstrokeadjust where { pop true setstrokeadjust /c % x1 y1 x2 y2 x3 y3 c - {curveto} def /C /c load def /v % x2 y2 x3 y3 v - {currentpoint 6 2 roll curveto} def /V /v load def /y % x1 y1 x2 y2 y - {2 copy curveto} def /Y /y load def /l % x y l - {lineto} def /L /l load def /m % x y m - {moveto} def /dot {currentpoint transform exch 1 add exch itransform lineto} def } {%else /c {pl curveto} def /C /c load def /v {currentpoint 6 2 roll pl curveto} def /V /v load def /y {pl 2 copy curveto} def /Y /y load def /l {pl lineto} def /L /l load def /m {pl moveto} def /dot {currentpoint transform exch 1 add exch itransform lineto} def }ifelse % Rectangle: left top right bottom R - /rectangleDict 4 dict def /R {rectangleDict begin /bottom exch def /right exch def /top exch def /left exch def right bottom m right top L left top L left bottom L right bottom L closepath end} bind def % Oval: left top right bottom OV - /ovalDict 10 dict def /OV {ovalDict begin /bottom exch def /right exch def /top exch def /left exch def /yrad bottom top sub 2 div def /xrad right left sub 2 div def /y yrad top add def /x xrad left add def x y t xrad yrad sc newpath 0 0 1 0 360 arc closepath 1 xrad div 1 yrad div sc % Reverse scaling. end} bind def % Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - /rRectangleDict 10 dict def /RR { rRectangleDict begin 2 div /hvy exch def 2 div /hvx exch def /bottom exch def /right exch def /top exch def /left exch def /nleft hvx left add hvx div def /ntop hvy top add hvy div def /nright right hvx sub hvx div def /nbottom bottom hvy sub hvy div def hvx hvy sc newpath nright nbottom 1 90 0 arcn nright ntop 1 360 270 arcn nleft ntop 1 270 180 arcn nleft nbottom 1 180 90 arcn closepath 1 hvx div 1 hvy div sc end } bind def % Arc: left top right bottom startangle endangle A - /arcDict 12 dict def /A { arcDict begin /endangle exch def /startangle exch def /bottom exch def /right exch def /top exch def /left exch def /yrad bottom top sub 2 div def /y yrad top add def /xrad right left sub 2 div def /x xrad left add def x y t xrad yrad neg sc 0 0 1 startangle endangle arc 1 xrad div 1 yrad neg div sc % Reverse scaling. end } bind def % Polygon: xn yn ... x1 y1 n-1 P - /polyDict 1 dict def /P { polyDict begin /numOfPoints exch def m numOfPoints {L} repeat end } bind def % Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - /fillDict 11 dict def /patfill { fillDict begin gs /fa exch def % Grab pattern. srgb % Set background color. 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. flattenpath pathbbox % Get path bounding box. /ury exch def /urx exch def /lly exch def /llx exch def % Get edges. clip newpath llx lly m llx ury L urx ury L urx lly L closepath fill % Fill in background color. srgb % Set foreground color. /w urx llx sub ceiling cvi def /h ury lly sub ceiling cvi def /bytes w 8 div ceiling cvi def /patstr bytes 8 mul string def /row 0 def /patproc { 0 1 7 { /row exch def row bytes mul 1 row 1 add bytes mul 1 sub {patstr exch fa row 8 mod get put} for } for patstr } def llx lly t w h sc w h true [w 0 0 h 0 0] patproc imagemask gr end } bind def % Outline string show: string olshow - /outlinedict 1 dict def /olshow { outlinedict begin /cs 1 string def { cs 0 3 -1 roll put % Stuff the char into the string cs. gs 1 sg cs show gr % Paint the char white and move back. cs true charpath currentpoint str m % Draw char outline. } forall end } bind def % Shadow string show: string shadow-x shadow-y shshow - /shadowdict 3 dict def /shshow { shadowdict begin /shady exch def /shadx exch def /cs 1 string def { cs 0 3 -1 roll put % Stuff the char into the string cs. currentpoint shadx shady rmoveto % Draw shadow. cs show m gs 1 sg cs show gr % Paint char white. cs true charpath currentpoint str m % Draw char outline. shadx 0 rmoveto % Move to next char position. } forall end } bind def % Text Encoding Procedure /Z % array literal literal direction Z - { pop findfont begin currentdict dup length 1 add dict begin {1 index /FID ne {def} {pop pop} ifelse} forall /FontName exch def dup length 0 ne { /Encoding Encoding 256 array copy def 0 exch { dup type /nametype eq {Encoding 2 index 2 index put pop 1 add} {exch pop} ifelse } forall } if pop currentdict dup end end /FontName get exch definefont pop } def %%EndProlog %%BeginEncoding: _Times-Roman Times-Roman [ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis /Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute /egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde /oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex /udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls /registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash /infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation /product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash /questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta /guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe /endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide /lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright /fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand /Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex /Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex /Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla /hungarumlaut/ogonek/caron ] /_Times-Roman/Times-Roman 0 Z %%EndEncoding %%BeginEncoding: _Symbol Symbol [ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis /Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute /egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde /oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex /udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls /registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash /infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation /product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash /questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta /guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe /endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide /lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright /fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand /Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex /Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex /Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla /hungarumlaut/ogonek/caron ] /_Symbol/Symbol 0 Z %%EndEncoding gs 0 792 t 0.058 -0.058 sc 2 slc gs 4739 4331 4982 4557 R 1 sg fill gr /_Times-Roman ff [208 0 0 -208 0 0] mf sf 4739 4487 m 0 sg (Vo) show gs 4478.75 2108.75 m 5728.75 3983.75 L 17.5 slw 0 sg str gr gs 5677 3967 5868 4175 OV 0 sg fill gr gs 5676.75 3966.75 5868.25 4175.25 OV 17.5 slw 0 sg str gr gs 0 slc newpath 3228.75 858.75 5729.25 3359.25 270 304 A 17.5 slw 0 sg str gr gs 5781 4043 5676 4110 5617 4144 5557 4176 5496 4208 5434 4237 5371 4264 5307 4289 5243 4312 5178 4334 5140 4346 10 P 17.5 slw 0 sg str gr gs 4991 4383 5130 4296 5147 4349 5164 4401 4991 4383 4 P closepath 0 sg fill gr gs 4982 4374 5121 4287 5138 4340 5155 4392 4982 4374 4 P closepath 17.5 slw 0 sg str gr gs 5260 2942 5382 3168 R 1 sg fill gr 5260 3098 m 2.08 slw 0 sg (L) show gs 5920 3967 6076 4192 R 1 sg fill gr 5920 4123 m 2.08 slw 0 sg (m) show gs 4687 2942 4930 3238 R 1 sg fill gr /_Symbol ff [208 0 0 -208 0 0] mf sf 4687 3167 m 0 sg (qo) show gs 4479.625 2109.625 m 4479.625 2160.625 L 1.25 slw 0 sg str gr gs 4479.625 2213.625 m 4479.625 2264.625 L 1.25 slw 0 sg str gr gs 4479.625 2317.625 m 4479.625 2368.625 L 1.25 slw 0 sg str gr gs 4479.625 2421.625 m 4479.625 2473.625 L 1.25 slw 0 sg str gr gs 4479.625 2526.625 m 4479.625 2577.625 L 1.25 slw 0 sg str gr gs 4479.625 2630.625 m 4479.625 2681.625 L 1.25 slw 0 sg str gr gs 4479.625 2734.625 m 4479.625 2785.625 L 1.25 slw 0 sg str gr gs 4479.625 2838.625 m 4479.625 2889.625 L 1.25 slw 0 sg str gr gs 4479.625 2942.625 m 4479.625 2993.625 L 1.25 slw 0 sg str gr gs 4479.625 3046.625 m 4479.625 3098.625 L 1.25 slw 0 sg str gr gs 4479.625 3151.625 m 4479.625 3202.625 L 1.25 slw 0 sg str gr gs 4479.625 3255.625 m 4479.625 3306.625 L 1.25 slw 0 sg str gr gs 4479.625 3359.625 m 4479.625 3410.625 L 1.25 slw 0 sg str gr gs 4479.625 3463.625 m 4479.625 3514.625 L 1.25 slw 0 sg str gr gs 4479.625 3567.625 m 4479.625 3618.625 L 1.25 slw 0 sg str gr gs 4479.625 3671.625 m 4479.625 3722.625 L 1.25 slw 0 sg str gr gs 4479.625 3776.625 m 4479.625 3827.625 L 1.25 slw 0 sg str gr gs 4479.625 3880.625 m 4479.625 3931.625 L 1.25 slw 0 sg str gr gs 4479.625 3984.625 m 4479.625 4035.625 L 1.25 slw 0 sg str gr gs 4479.625 4088.625 m 4479.625 4139.625 L 1.25 slw 0 sg str gr gs 4479.625 4192.625 m 4479.625 4243.625 L 1.25 slw 0 sg str gr gs 4479.625 4296.625 m 4479.625 4347.625 L 1.25 slw 0 sg str gr gs 4479.625 4401.625 m 4479.625 4452.625 L 1.25 slw 0 sg str gr gs 4479.625 4505.625 m 4479.625 4556.625 L 1.25 slw 0 sg str gr gs 4479.625 4609.625 m 4479.625 4660.625 L 1.25 slw 0 sg str gr gs 4479.625 4713.625 m 4479.625 4764.625 L 1.25 slw 0 sg str gr gs 4479.625 4817.625 m 4479.625 4835.625 L 1.25 slw 0 sg str gr gr %%Trailer restore \ No newline at end of file diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob11a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob11a.gif deleted file mode 100755 index 586e2af79..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob11a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob12a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob12a.eps deleted file mode 100755 index 01634326a..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob12a.eps +++ /dev/null @@ -1,834 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: rifle.eps -%%CreationDate: 3/19/1996 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%+ Symbol -%%BoundingBox:76 480 444 601 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -%%BeginEncoding: _Symbol Symbol -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Symbol/Symbol 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -3593.5 4094.5 7483.5 4563.5 R -35 slw 0 sg str -gr -gs -7483.625 4563.625 m -3607.625 4563.625 L -1.25 slw 0 sg str -gr -gs -3593.625 4094.625 m -7483.625 4094.625 L -1.25 slw 0 sg str -gr -gs -3949 4547 3948 4583 3944 4611 3939 4638 3931 4665 3922 4692 3911 4717 3898 4742 -3883 4765 3866 4788 3848 4809 3829 4829 3808 4848 3786 4865 3762 4880 3738 4893 -3713 4905 3686 4915 3660 4923 3632 4929 3605 4933 3577 4935 3549 4935 3521 4933 -3494 4929 3466 4923 3440 4915 3414 4905 3388 4893 3364 4880 3341 4865 3318 4848 -3297 4829 3278 4809 3260 4788 3243 4766 3229 4742 3215 4717 3204 4692 3203 4689 -39 P -35 slw 0 sg str -gr -gs -3593.625 4329.625 m -3655.625 4329.625 L -1.25 slw 0 sg str -gr -gs -3655 4212 3733 4446 OV -1 sg fill -gr -gs -3655.625 4212.625 3733.375 4446.375 OV -1.25 slw 0 sg str -gr -gs -3694 4212 3772 4446 OV -1 sg fill -gr -gs -3694.625 4212.625 3772.375 4446.375 OV -1.25 slw 0 sg str -gr -gs -3733 4212 3811 4446 OV -1 sg fill -gr -gs -3733.625 4212.625 3811.375 4446.375 OV -1.25 slw 0 sg str -gr -gs -3772 4212 3850 4446 OV -1 sg fill -gr -gs -3772.625 4212.625 3850.375 4446.375 OV -1.25 slw 0 sg str -gr -gs -3811 4212 3889 4446 OV -1 sg fill -gr -gs -3811.625 4212.625 3889.375 4446.375 OV -1.25 slw 0 sg str -gr -gs -3850 4212 3929 4446 OV -1 sg fill -gr -gs -3850.625 4212.625 3929.375 4446.375 OV -1.25 slw 0 sg str -gr -gs -3889 4212 3968 4446 OV -1 sg fill -gr -gs -3889.625 4212.625 3968.375 4446.375 OV -1.25 slw 0 sg str -gr -gs -3929 4212 4007 4446 OV -1 sg fill -gr -gs -3929.625 4212.625 4007.375 4446.375 OV -1.25 slw 0 sg str -gr -gs -3968 4212 4046 4446 OV -1 sg fill -gr -gs -3968.625 4212.625 4046.375 4446.375 OV -1.25 slw 0 sg str -gr -gs -4007 4212 4085 4446 OV -1 sg fill -gr -gs -4007.625 4212.625 4085.375 4446.375 OV -1.25 slw 0 sg str -gr -gs -4046 4212 4124 4446 OV -1 sg fill -gr -gs -4046.625 4212.625 4124.375 4446.375 OV -1.25 slw 0 sg str -gr -gs -4085 4212 4163 4446 OV -1 sg fill -gr -gs -4085.625 4212.625 4163.375 4446.375 OV -1.25 slw 0 sg str -gr -gs -4124 4212 4202 4446 OV -1 sg fill -gr -gs -4124.625 4212.625 4202.375 4446.375 OV -1.25 slw 0 sg str -gr -gs -4163 4212 4241 4446 OV -1 sg fill -gr -gs -4163.625 4212.625 4241.375 4446.375 OV -1.25 slw 0 sg str -gr -gs -4202 4212 4280 4446 OV -1 sg fill -gr -gs -4202.625 4212.625 4280.375 4446.375 OV -1.25 slw 0 sg str -gr -gs -4241 4212 4319 4446 OV -1 sg fill -gr -gs -4241.625 4212.625 4319.375 4446.375 OV -1.25 slw 0 sg str -gr -gs -4280 4212 4358 4446 OV -1 sg fill -gr -gs -4280.625 4212.625 4358.375 4446.375 OV -1.25 slw 0 sg str -gr -gs -4319 4212 4397 4446 OV -1 sg fill -gr -gs -4319.625 4212.625 4397.375 4446.375 OV -1.25 slw 0 sg str -gr -gs -4358.625 4446.625 m -4358.625 4329.625 L -1.25 slw 0 sg str -gr -gs -4358.625 4329.625 m -4436.625 4329.625 L -1.25 slw 0 sg str -gr -gs -4436 4173 4710 4485 R -0.25 sg fill -gr -gs -4436.625 4173.625 4710.375 4485.375 R -1.25 slw 0 sg str -gr -gs -5179.625 4094.625 m -5179.625 4043.625 L -1.25 slw 0 sg str -gr -gs -5179.625 3990.625 m -5179.625 3939.625 L -1.25 slw 0 sg str -gr -gs -5179.625 3886.625 m -5179.625 3835.625 L -1.25 slw 0 sg str -gr -gs -5179.625 3782.625 m -5179.625 3730.625 L -1.25 slw 0 sg str -gr -gs -5179.625 3677.625 m -5179.625 3665.625 L -1.25 slw 0 sg str -gr -gs -1546.5 5188.5 m -1546.5 4798.5 L -35 slw 0 sg str -gr -gs -2542.5 4761.5 m -1546.5 5188.5 L -35 slw 0 sg str -gr -gs -2550.5 4758.5 m -2542.5 4761.5 L -35 slw 0 sg str -gr -gs -2577.5 4751.5 m -2550.5 4758.5 L -35 slw 0 sg str -gr -gs -2604.5 4748.5 m -2577.5 4751.5 L -35 slw 0 sg str -gr -gs -2631.5 4751.5 m -2604.5 4748.5 L -35 slw 0 sg str -gr -gs -2657.5 4758.5 m -2631.5 4751.5 L -35 slw 0 sg str -gr -gs -2682.5 4770.5 m -2657.5 4758.5 L -35 slw 0 sg str -gr -gs -2714.5 4794.5 m -2682.5 4770.5 L -35 slw 0 sg str -gr -gs -2723.5 4803.5 m -2714.5 4794.5 L -35 slw 0 sg str -gr -gs -2733.5 4812.5 m -2723.5 4803.5 L -35 slw 0 sg str -gr -gs -2755.5 4828.5 m -2733.5 4812.5 L -35 slw 0 sg str -gr -gs -2780.5 4839.5 m -2755.5 4828.5 L -35 slw 0 sg str -gr -gs -2806.5 4846.5 m -2780.5 4839.5 L -35 slw 0 sg str -gr -gs -2833.5 4849.5 m -2806.5 4846.5 L -35 slw 0 sg str -gr -gs -2860.5 4846.5 m -2833.5 4849.5 L -35 slw 0 sg str -gr -gs -2891.5 4837.5 m -2860.5 4846.5 L -35 slw 0 sg str -gr -gs -3549.5 4575.5 m -2891.5 4837.5 L -35 slw 0 sg str -gr -gs -3554.5 4573.5 m -3549.5 4575.5 L -35 slw 0 sg str -gr -gs -3580.5 4566.5 m -3554.5 4573.5 L -35 slw 0 sg str -gr -gs -3607.5 4563.5 m -3593.5 4564.5 L -35 slw 0 sg str -gr -gs -3593.5 4564.5 m -3580.5 4566.5 L -35 slw 0 sg str -gr -gs -3562.5 4098.5 m -3593.5 4094.5 L -35 slw 0 sg str -gr -gs -2848.5 4240.5 m -3562.5 4098.5 L -35 slw 0 sg str -gr -gs -2845.5 4241.5 m -2848.5 4240.5 L -35 slw 0 sg str -gr -gs -2818.5 4243.5 m -2845.5 4241.5 L -35 slw 0 sg str -gr -gs -2791.5 4241.5 m -2818.5 4243.5 L -35 slw 0 sg str -gr -gs -2748.5 4227.5 m -2791.5 4241.5 L -35 slw 0 sg str -gr -gs -2541.5 4123.5 m -2748.5 4227.5 L -35 slw 0 sg str -gr -gs -2525.5 4116.5 m -2541.5 4123.5 L -35 slw 0 sg str -gr -gs -2499.5 4109.5 m -2525.5 4116.5 L -35 slw 0 sg str -gr -gs -2471.5 4107.5 m -2499.5 4109.5 L -35 slw 0 sg str -gr -gs -2422.5 4115.5 m -2471.5 4107.5 L -35 slw 0 sg str -gr -gs -1653.5 4371.5 m -2422.5 4115.5 L -35 slw 0 sg str -gr -gs -1649.5 4373.5 m -1653.5 4371.5 L -35 slw 0 sg str -gr -gs -1624.5 4384.5 m -1649.5 4373.5 L -35 slw 0 sg str -gr -gs -1602.5 4400.5 m -1624.5 4384.5 L -35 slw 0 sg str -gr -gs -1582.5 4419.5 m -1602.5 4400.5 L -35 slw 0 sg str -gr -gs -1567.5 4441.5 m -1582.5 4419.5 L -35 slw 0 sg str -gr -gs -1555.5 4466.5 m -1567.5 4441.5 L -35 slw 0 sg str -gr -gs -1548.5 4492.5 m -1555.5 4466.5 L -35 slw 0 sg str -gr -gs -1546.5 4520.5 m -1548.5 4492.5 L -35 slw 0 sg str -gr -gs -1546.5 4798.5 m -1546.5 4520.5 L -35 slw 0 sg str -gr -gs -3593.5 4094.5 m -3593.5 4563.5 L -35 slw 0 sg str -gr -gs -1653 4485 2483 4212 2835 4368 3499 4212 3499 4485 2874 4719 2600 4602 1663 5032 -1653 4485 8 P closepath -0 0 0 1 1 1 [8 66 0 144 4 64 16 1] patfill -gr -gs -4749 4251 7405 4329 R -0.87 sg fill -gr -gs -5057 3378 5456 3639 R -1 sg fill -gr -/_Times-Roman ff [243 0 0 -243 0 0] mf sf -5057 3586 m 0 sg (Xeq) show -gs -7405 4094 7561 4563 OV -0.5 sg fill -gr -gs -7405.625 4094.625 7561.375 4563.375 OV -1.25 slw 0 sg str -gr -gs -7405 4427 7561 4466 R -0.25 sg fill -gr -gs -7405.5 4094.5 7561.5 4563.5 OV -35 slw 0 sg str -gr -gs -3552 4789 3543 4753 3539 4731 3537 4708 3538 4685 3540 4663 3545 4641 3551 4619 -3560 4598 3570 4577 3582 4558 3590 4546 11 P -35 slw 0 sg str -gr -gs -4397 3880 4565 3835 4565 3925 2 P -0 sg fill -gr -gs -5179 3880 5011 3925 5011 3835 2 P -0 sg fill -gr -gs -4565.625 3880.625 m -5011.625 3880.625 L -1.25 slw 0 sg str -gr -gs -4612 3749 4964 4010 R -1 sg fill -gr -/_Symbol ff [243 0 0 -243 0 0] mf sf -4612 3957 m 0 sg (D) show -/_Times-Roman ff [243 0 0 -243 0 0] mf sf -4790 3957 m 0 sg (X) show -gs -4397.625 4094.625 m -4397.625 4043.625 L -1.25 slw 0 sg str -gr -gs -4397.625 3990.625 m -4397.625 3939.625 L -1.25 slw 0 sg str -gr -gs -4397.625 3886.625 m -4397.625 3835.625 L -1.25 slw 0 sg str -gr -gs -4397.625 3782.625 m -4397.625 3730.625 L -1.25 slw 0 sg str -gr -gs -4397.625 3677.625 m -4397.625 3665.625 L -1.25 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob12a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob12a.gif deleted file mode 100755 index ac8270d35..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob12a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob13a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob13a.eps deleted file mode 100755 index e92d43b3f..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob13a.eps +++ /dev/null @@ -1,643 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: block_and_spring.eps -%%CreationDate: 3/19/1996 -%%Pages: 0 -%%DocumentFonts: Helvetica -%%BoundingBox:135 491 422 611 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica/Helvetica 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -6975 4020 7249 4743 R -0.5 sg fill -gr -gs -5979 4879 6079 4852 6079 4906 2 P -0 sg fill -gr -gs -6429 4879 6329 4906 6329 4852 2 P -0 sg fill -gr -gs -6079.625 4879.625 m -6329.625 4879.625 L -1.25 slw 0 sg str -gr -gs -4319 3258 3069 3571 3069 4743 6975 4743 6975 4547 4241 4547 3069 3571 6 P -0.5 sg fill -gr -gs -2835 3571 3069 4743 R -0.5 sg fill -gr -gs -4319 4547 4243 4545 4192 4540 4142 4534 4091 4526 4042 4516 3992 4505 3943 4491 -3895 4475 3847 4457 3800 4437 3754 4416 3708 4393 3664 4368 3621 4341 3579 4313 -3537 4282 3498 4251 3459 4217 3422 4183 3386 4147 3352 4109 3319 4070 3287 4030 -3258 3989 3230 3946 3204 3902 3179 3858 3156 3812 3135 3766 3116 3719 3099 3671 -3083 3622 3070 3573 3069 3571 4319 3258 35 P -1 sg fill -gr -gs -4319.5 4547.5 m -6975.5 4547.5 L -35 slw 0 sg str -gr -gs -6975.5 4547.5 m -6975.5 4039.5 L -35 slw 0 sg str -gr -gs -6663 4196 6819 4508 OV -1 sg fill -gr -gs -6663.625 4196.625 6819.375 4508.375 OV -1.25 slw 0 sg str -gr -gs -6585 4196 6741 4508 OV -1 sg fill -gr -gs -6585.625 4196.625 6741.375 4508.375 OV -1.25 slw 0 sg str -gr -gs -6507 4196 6663 4508 OV -1 sg fill -gr -gs -6507.625 4196.625 6663.375 4508.375 OV -1.25 slw 0 sg str -gr -gs -6429 4196 6585 4508 OV -1 sg fill -gr -gs -6429.625 4196.625 6585.375 4508.375 OV -1.25 slw 0 sg str -gr -gs -6975.625 4352.625 m -6819.625 4352.625 L -1.25 slw 0 sg str -gr -gs -6350 4196 6507 4508 OV -1 sg fill -gr -gs -6350.625 4196.625 6507.375 4508.375 OV -1.25 slw 0 sg str -gr -gs -6272 4196 6429 4508 OV -1 sg fill -gr -gs -6272.625 4196.625 6429.375 4508.375 OV -1.25 slw 0 sg str -gr -gs -6194 4196 6350 4508 OV -1 sg fill -gr -gs -6194.625 4196.625 6350.375 4508.375 OV -1.25 slw 0 sg str -gr -gs -6116 4196 6272 4508 OV -1 sg fill -gr -gs -6116.625 4196.625 6272.375 4508.375 OV -1.25 slw 0 sg str -gr -gs -6194.625 4508.625 m -6194.625 4352.625 L -1.25 slw 0 sg str -gr -gs -6194.625 4352.625 m -6038.625 4352.625 L -1.25 slw 0 sg str -gr -gs -3339 3463 3466 3812 3190 3913 3063 3564 3339 3463 4 P closepath -0.75 sg fill -gr -gs -3339 3463 3466 3812 3190 3913 3063 3564 3339 3463 4 P closepath -1.25 slw 0 sg str -gr -gs -2698 3913 2725 4013 2671 4013 2 P -0 sg fill -gr -gs -2698 4547 2671 4447 2725 4447 2 P -0 sg fill -gr -gs -2698.625 4013.625 m -2698.625 4447.625 L -1.25 slw 0 sg str -gr -gs -2629 4108 2767 4351 R -1 sg fill -gr -/_Helvetica ff [208 0 0 -208 0 0] mf sf -2629 4281 m 0 sg (H) show -gs -4302 4534 4252 4533 4201 4530 4150 4525 4100 4518 4050 4509 4000 4498 3951 4485 -3903 4470 3855 4454 3808 4435 3761 4415 3715 4393 3671 4369 3627 4343 3584 4316 -3543 4287 3502 4256 3463 4224 3425 4190 3388 4155 3353 4119 3320 4080 3287 4041 -3257 4001 3228 3959 3200 3917 3175 3873 3151 3828 3129 3782 3108 3736 3090 3689 -3073 3641 3058 3592 3046 3547 34 P -35 slw 0 sg str -gr -gs -6416 3938 6520 4180 R -1 sg fill -gr -6416 4111 m 2.08 slw 0 sg (k) show -gs -5979 4196 6038 4528 R -0.25 sg fill -gr -gs -5979.625 4196.625 6038.375 4528.375 R -1.25 slw 0 sg str -gr -gs -5979.625 4528.625 m -5979.625 4579.625 L -1.25 slw 0 sg str -gr -gs -5979.625 4632.625 m -5979.625 4683.625 L -1.25 slw 0 sg str -gr -gs -5979.625 4736.625 m -5979.625 4787.625 L -1.25 slw 0 sg str -gr -gs -5979.625 4840.625 m -5979.625 4892.625 L -1.25 slw 0 sg str -gr -gs -5979.625 4945.625 m -5979.625 4996.625 L -1.25 slw 0 sg str -gr -gs -6448.625 4547.625 m -6448.625 4598.625 L -1.25 slw 0 sg str -gr -gs -6448.625 4651.625 m -6448.625 4702.625 L -1.25 slw 0 sg str -gr -gs -6448.625 4755.625 m -6448.625 4806.625 L -1.25 slw 0 sg str -gr -gs -6448.625 4859.625 m -6448.625 4911.625 L -1.25 slw 0 sg str -gr -gs -6448.625 4964.625 m -6448.625 4997.625 L -1.25 slw 0 sg str -gr -gs -6152 4758 6256 5001 R -1 sg fill -gr -6152 4931 m 2.08 slw 0 sg (x) show -gs -3190.625 3913.625 m -3139.625 3913.625 L -1.25 slw 0 sg str -gr -gs -3086.625 3913.625 m -3035.625 3913.625 L -1.25 slw 0 sg str -gr -gs -2982.625 3913.625 m -2931.625 3913.625 L -1.25 slw 0 sg str -gr -gs -2878.625 3913.625 m -2826.625 3913.625 L -1.25 slw 0 sg str -gr -gs -2773.625 3913.625 m -2722.625 3913.625 L -1.25 slw 0 sg str -gr -gs -2669.625 3913.625 m -2618.625 3913.625 L -1.25 slw 0 sg str -gr -gs -2565.625 3913.625 m -2561.625 3913.625 L -1.25 slw 0 sg str -gr -gs -4241.625 4547.625 m -4190.625 4547.625 L -1.25 slw 0 sg str -gr -gs -4137.625 4547.625 m -4086.625 4547.625 L -1.25 slw 0 sg str -gr -gs -4033.625 4547.625 m -3982.625 4547.625 L -1.25 slw 0 sg str -gr -gs -3929.625 4547.625 m -3877.625 4547.625 L -1.25 slw 0 sg str -gr -gs -3824.625 4547.625 m -3773.625 4547.625 L -1.25 slw 0 sg str -gr -gs -3720.625 4547.625 m -3669.625 4547.625 L -1.25 slw 0 sg str -gr -gs -3616.625 4547.625 m -3565.625 4547.625 L -1.25 slw 0 sg str -gr -gs -3512.625 4547.625 m -3461.625 4547.625 L -1.25 slw 0 sg str -gr -gs -3408.625 4547.625 m -3357.625 4547.625 L -1.25 slw 0 sg str -gr -gs -3304.625 4547.625 m -3252.625 4547.625 L -1.25 slw 0 sg str -gr -gs -3199.625 4547.625 m -3148.625 4547.625 L -1.25 slw 0 sg str -gr -gs -3095.625 4547.625 m -3044.625 4547.625 L -1.25 slw 0 sg str -gr -gs -2991.625 4547.625 m -2940.625 4547.625 L -1.25 slw 0 sg str -gr -gs -2887.625 4547.625 m -2836.625 4547.625 L -1.25 slw 0 sg str -gr -gs -2783.625 4547.625 m -2732.625 4547.625 L -1.25 slw 0 sg str -gr -gs -2679.625 4547.625 m -2628.625 4547.625 L -1.25 slw 0 sg str -gr -gs -2574.625 4547.625 m -2561.625 4547.625 L -1.25 slw 0 sg str -gr -gs -3460 3391 3616 3634 R -1 sg fill -gr -3460 3564 m 2.08 slw 0 sg (m) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob13a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob13a.gif deleted file mode 100755 index 19f959d4f..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob13a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob17a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob17a.eps deleted file mode 100755 index 415e7a717..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob17a.eps +++ /dev/null @@ -1,575 +0,0 @@ -%!PS-Adobe-3.0 EPSF-3.0 -%%BoundingBox: 77 472 464 689 -%%Title: (Patrick1-Layer#1) -%%Creator: (MacDraw II: LaserWriter 8 8.1.1) -%%CreationDate: (4:02 PM 11 November, 1996) -%%For: (wolfs) -%%Pages: 1 -%%DocumentFonts: Helvetica -%%DocumentNeededFonts: Helvetica -%%DocumentSuppliedFonts: -%%DocumentData: Clean7Bit -%%PageOrder: Ascend -%%Orientation: Portrait -%ADO_PaperArea: -129 -125 3171 2425 -%ADO_ImageableArea: 0 0 3042 2300 -%%EndComments -/md 149 dict def md begin -/currentpacking where {pop /sc_oldpacking currentpacking def true setpacking}if -%%BeginFile: adobe_psp_basic -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/bd{bind def}bind def -/xdf{exch def}bd -/xs{exch store}bd -/ld{load def}bd -/Z{0 def}bd -/T/true -/F/false -/:L/lineto -/lw/setlinewidth -/:M/moveto -/rl/rlineto -/rm/rmoveto -/:C/curveto -/:T/translate -/:K/closepath -/:mf/makefont -/gS/gsave -/gR/grestore -/np/newpath -14{ld}repeat -/$m matrix def -/av 81 def -/por true def -/normland false def -/psb-nosave{}bd -/pse-nosave{}bd -/us Z -/psb{/us save store}bd -/pse{us restore}bd -/level2 -/languagelevel where -{ -pop languagelevel 2 ge -}{ -false -}ifelse -def -/featurecleanup -{ -stopped -cleartomark -countdictstack exch sub dup 0 gt -{ -{end}repeat -}{ -pop -}ifelse -}bd -/noload Z -/startnoload -{ -{/noload save store}if -}bd -/endnoload -{ -{noload restore}if -}bd -level2 startnoload -/setjob -{ -statusdict/jobname 3 -1 roll put -}bd -/setcopies -{ -userdict/#copies 3 -1 roll put -}bd -level2 endnoload level2 not startnoload -/setjob -{ -1 dict begin/JobName xdf currentdict end setuserparams -}bd -/setcopies -{ -1 dict begin/NumCopies xdf currentdict end setpagedevice -}bd -level2 not endnoload -/pm Z -/mT Z -/sD Z -/realshowpage Z -/initializepage -{ -/pm save store mT concat -}bd -/endp -{ -pm restore showpage -}def -/$c/DeviceRGB def -/rectclip where -{ -pop/rC/rectclip ld -}{ -/rC -{ -np 4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -clip np -}bd -}ifelse -/rectfill where -{ -pop/rF/rectfill ld -}{ -/rF -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -fill -gR -}bd -}ifelse -/rectstroke where -{ -pop/rS/rectstroke ld -}{ -/rS -{ -gS -np -4 2 roll -:M -1 index 0 rl -0 exch rl -neg 0 rl -:K -stroke -gR -}bd -}ifelse -%%EndFile -%%BeginFile: adobe_psp_colorspace_level1 -%%Copyright: Copyright 1991-1993 Adobe Systems Incorporated. All Rights Reserved. -/G/setgray ld -/:F/setrgbcolor ld -%%EndFile -%%BeginFile: adobe_psp_uniform_graphics -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/@a -{ -np :M 0 rl :L 0 exch rl 0 rl :L fill -}bd -/@b -{ -np :M 0 rl 0 exch rl :L 0 rl 0 exch rl fill -}bd -/arct where -{ -pop -}{ -/arct -{ -arcto pop pop pop pop -}bd -}ifelse -/x1 Z -/x2 Z -/y1 Z -/y2 Z -/rad Z -/@q -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -fill -}bd -/@s -{ -/rad xs -/y2 xs -/x2 xs -/y1 xs -/x1 xs -np -x2 x1 add 2 div y1 :M -x2 y1 x2 y2 rad arct -x2 y2 x1 y2 rad arct -x1 y2 x1 y1 rad arct -x1 y1 x2 y1 rad arct -:K -stroke -}bd -/@i -{ -np 0 360 arc fill -}bd -/@j -{ -gS -np -:T -scale -0 0 .5 0 360 arc -fill -gR -}bd -/@e -{ -np -0 360 arc -:K -stroke -}bd -/@f -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 0 360 arc -:K -$m setmatrix -stroke -}bd -/@k -{ -gS -np -:T -0 0 :M -0 0 5 2 roll -arc fill -gR -}bd -/@l -{ -gS -np -:T -0 0 :M -scale -0 0 .5 5 -2 roll arc -fill -gR -}bd -/@m -{ -np -arc -stroke -}bd -/@n -{ -np -$m currentmatrix -pop -:T -scale -0 0 .5 5 -2 roll arc -$m setmatrix -stroke -}bd -%%EndFile -%%BeginFile: adobe_psp_customps -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/$t Z -/$p Z -/$s Z -/$o 1. def -/2state? false def -/ps Z -level2 startnoload -/pushcolor/currentrgbcolor ld -/popcolor/setrgbcolor ld -/setcmykcolor where -{ -pop/currentcmykcolor where -{ -pop/pushcolor/currentcmykcolor ld -/popcolor/setcmykcolor ld -}if -}if -level2 endnoload level2 not startnoload -/pushcolor -{ -currentcolorspace $c eq -{ -currentcolor currentcolorspace true -}{ -currentcmykcolor false -}ifelse -}bd -/popcolor -{ -{ -setcolorspace setcolor -}{ -setcmykcolor -}ifelse -}bd -level2 not endnoload -/pushstatic -{ -ps -2state? -$o -$t -$p -$s -}bd -/popstatic -{ -/$s xs -/$p xs -/$t xs -/$o xs -/2state? xs -/ps xs -}bd -/pushgstate -{ -save errordict/nocurrentpoint{pop 0 0}put -currentpoint -3 -1 roll restore -pushcolor -currentlinewidth -currentlinecap -currentlinejoin -currentdash exch aload length -np clippath pathbbox -$m currentmatrix aload pop -}bd -/popgstate -{ -$m astore setmatrix -2 index sub exch -3 index sub exch -rC -array astore exch setdash -setlinejoin -setlinecap -lw -popcolor -np :M -}bd -/bu -{ -pushgstate -gR -pushgstate -2state? -{ -gR -pushgstate -}if -pushstatic -pm restore -mT concat -}bd -/bn -{ -/pm save store -popstatic -popgstate -gS -popgstate -2state? -{ -gS -popgstate -}if -}bd -/cpat{pop 64 div G 8{pop}repeat}bd -%%EndFile -%%BeginFile: adobe_psp_basic_text -%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved. -/S/show ld -/A{ -0.0 exch ashow -}bd -/R{ -0.0 exch 32 exch widthshow -}bd -/W{ -0.0 3 1 roll widthshow -}bd -/J{ -0.0 32 4 2 roll 0.0 exch awidthshow -}bd -/V{ -0.0 4 1 roll 0.0 exch awidthshow -}bd -/fcflg true def -/fc{ -fcflg{ -vmstatus exch sub 50000 lt{ -(%%[ Warning: Running out of memory ]%%\r)print flush/fcflg false store -}if pop -}if -}bd -/$f[1 0 0 -1 0 0]def -/:ff{$f :mf}bd -/MacEncoding StandardEncoding 256 array copy def -MacEncoding 39/quotesingle put -MacEncoding 96/grave put -/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis/Udieresis/aacute -/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute/egrave -/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde/oacute -/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex/udieresis -/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/notequal/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdiff/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta/guillemotleft -/guillemotright/ellipsis/space/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide/lozenge -/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright/fi/fl -/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex/Idieresis/Igrave -/Oacute/Ocircumflex/apple/Ograve/Uacute/Ucircumflex/Ugrave/dotlessi/circumflex/tilde -/macron/breve/dotaccent/ring/cedilla/hungarumlaut/ogonek/caron -MacEncoding 128 128 getinterval astore pop -level2 startnoload -/copyfontdict -{ -findfont dup length dict -begin -{ -1 index/FID ne{def}{pop pop}ifelse -}forall -}bd -level2 endnoload level2 not startnoload -/copyfontdict -{ -findfont dup length dict -copy -begin -}bd -level2 not endnoload -md/fontname known not{ -/fontname/customfont def -}if -/Encoding Z -/:mre -{ -copyfontdict -/Encoding MacEncoding def -fontname currentdict -end -definefont :ff def -}bd -/:bsr -{ -copyfontdict -/Encoding Encoding 256 array copy def -Encoding dup -}bd -/pd{put dup}bd -/:esr -{ -pop pop -fontname currentdict -end -definefont :ff def -}bd -/scf -{ -scalefont def -}bd -/scf-non -{ -$m scale :mf setfont -}bd -/ps Z -/fz{/ps xs}bd -/sf/setfont ld -/cF/currentfont ld -/mbf -{ -/makeblendedfont where -{ -pop -makeblendedfont -/ABlend exch definefont -}{ -pop -}ifelse -def -}def -%%EndFile -/currentpacking where {pop sc_oldpacking setpacking}if -end % md -%%EndProlog -%%BeginSetup -md begin -/pT[1 0 0 -1 29.999 761.009]def/mT[.24 0 0 -.24 29.999 761.009]def -/sD 16 dict def -%%IncludeFont: Helvetica -/f0_1/Helvetica :mre -/f1_1 f0_1 1.04 scf -/f1_75 f1_1 75 scf -/Courier findfont[10 0 0 -10 0 0]:mf setfont -%%EndSetup -%%Page: 1 1 -%%BeginPageSetup -initializepage -%%EndPageSetup -gS 0 0 2300 3042 rC -0 0 :M -0 setlinecap -currentscreen -3 1 roll pop pop 60 45 3 -1 roll setscreen -1 G -1196 900 300 @i -0 G -4 lw -1196 900 300 @e -219 344 -4 4 1006 1131 4 219 340 @a --4 -4 1331 1173 4 4 1798 969 @b --4 -4 1202 902 4 4 1411 686 @b -223 1202 -4 4 1806 1198 4 223 1198 @a -gS -312 391 :T -43 rotate --312 -391 :T -266 366 92 50 rF -266 366 92 50 rS -gR --4 -4 298 1202 4 4 294 415 @b -1200 600 8 @i -1200 600 8 @e -239 721 :M -f1_75 sf -(h)S -214 488 :M -(P)S -351 383 :M -(m)S -1330 850 :M -(R)S -1176 688 :M -(A)S -endp -%%Trailer -end % md -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob17a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob17a.gif deleted file mode 100755 index c8281a8b1..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob17a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob19.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob19.eps deleted file mode 100755 index 71e3ba07e..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob19.eps +++ /dev/null @@ -1,492 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Elevator.eps -%%CreationDate: 3/15/1996 -%%Pages: 0 -%%DocumentFonts: Bookman-Light -%%BoundingBox:185 492 393 826 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Bookman-Light Bookman-Light -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Bookman-Light/Bookman-Light 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -5017.25 4488.25 m -5017.25 4644.25 L -52.5 slw 0 sg str -gr -gs -3611 -356 3767 -356 3767 4644 6267 4644 6267 -356 6580 -356 6580 4957 3454 4957 -3454 -356 3611 -356 9 P closepath -0 0 0 1 1 1 [8 66 0 144 4 64 16 1] patfill -gr -gs -3611 -356 3767 -356 3767 4644 6267 4644 6267 -356 6580 -356 6580 4957 3454 4957 -3454 -356 3611 -356 9 P closepath -1.25 slw 0 sg str -gr -gs -4079 -356 4236 4644 R -0 sg fill -gr -gs -4079.625 -355.375 4236.375 4644.375 R -1.25 slw 0 sg str -gr -gs -5798 -356 5955 4644 R -0 sg fill -gr -gs -5798.625 -355.375 5955.375 4644.375 R -1.25 slw 0 sg str -gr -gs -4392 894 5642 2769 R -0.5 sg fill -gr -gs -4392.625 894.625 5642.375 2769.375 R -1.25 slw 0 sg str -gr -gs -3923 1050 4392 1206 R -0.5 sg fill -gr -gs -3923.625 1050.625 4392.375 1206.375 R -1.25 slw 0 sg str -gr -gs -3923 2457 4392 2613 R -0.5 sg fill -gr -gs -3923.625 2457.625 4392.375 2613.375 R -1.25 slw 0 sg str -gr -gs -5642 2457 6111 2613 R -0.5 sg fill -gr -gs -5642.625 2457.625 6111.375 2613.375 R -1.25 slw 0 sg str -gr -gs -5642 1050 6111 1206 R -0.5 sg fill -gr -gs -5642.625 1050.625 6111.375 1206.375 R -1.25 slw 0 sg str -gr -gs -5017 894 5017 824 4982 790 4947 755 4913 720 4913 651 4930 599 4982 581 -5017 547 5069 529 5087 477 10 P -1.25 slw 0 sg str -gr -gs -5087 269 5052 234 5000 199 4965 165 4947 113 4965 61 5000 26 5034 -9 -5052 -61 5052 -130 5034 -182 5034 -252 5034 -321 12 P -1.25 slw 0 sg str -gr -gs -4704.25 3707.25 m -5330.25 3707.25 L -52.5 slw 0 sg str -gr -gs -4704 4332 5330 4488 OV -1 sg fill -gr -gs -4704.625 4332.625 5330.375 4488.375 OV -1.25 slw 0 sg str -gr -gs -4704 4253 5330 4410 OV -1 sg fill -gr -gs -4704.625 4253.625 5330.375 4410.375 OV -1.25 slw 0 sg str -gr -gs -4704 4175 5330 4332 OV -1 sg fill -gr -gs -4704.625 4175.625 5330.375 4332.375 OV -1.25 slw 0 sg str -gr -gs -4704 4097 5330 4253 OV -1 sg fill -gr -gs -4704.625 4097.625 5330.375 4253.375 OV -1.25 slw 0 sg str -gr -gs -4704 4019 5330 4175 OV -1 sg fill -gr -gs -4704.625 4019.625 5330.375 4175.375 OV -1.25 slw 0 sg str -gr -gs -4704 3941 5330 4097 OV -1 sg fill -gr -gs -4704.625 3941.625 5330.375 4097.375 OV -1.25 slw 0 sg str -gr -gs -4704 3863 5330 4019 OV -1 sg fill -gr -gs -4704.625 3863.625 5330.375 4019.375 OV -1.25 slw 0 sg str -gr -gs -4704 3785 5330 3941 OV -1 sg fill -gr -gs -4704.625 3785.625 5330.375 3941.375 OV -1.25 slw 0 sg str -gr -gs -5017.625 3707.625 m -5017.625 3863.625 L -1.25 slw 0 sg str -gr -gs -5017.625 3863.625 m -5330.625 3863.625 L -1.25 slw 0 sg str -gr -gs -4548 2769 4622 2927 4474 2927 2 P -0 sg fill -gr -gs -4548 3707 4474 3549 4622 3549 2 P -0 sg fill -gr -gs -4548.625 2769.625 m -4548.625 3707.625 L -1.25 slw 0 sg str -gr -gs -4392.625 3707.625 m -4443.625 3707.625 L -1.25 slw 0 sg str -gr -gs -4496.625 3707.625 m -4547.625 3707.625 L -1.25 slw 0 sg str -gr -gs -4600.625 3707.625 m -4651.625 3707.625 L -1.25 slw 0 sg str -gr -gs -4626 3090 4783 3385 R -1 sg fill -gr -/_Bookman-Light ff [278 0 0 -278 0 0] mf sf -4626 3315 m 0 sg (d) show -gs -5460 3988 5616 4284 R -1 sg fill -gr -5460 4213 m 0 sg (k) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob19.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob19.gif deleted file mode 100755 index 834943521..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob19.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob20.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob20.eps deleted file mode 100755 index 48c11ce5a..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob20.eps +++ /dev/null @@ -1,704 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: valley.eps -%%CreationDate: 5/2/1995 -%%Pages: 0 -%%DocumentFonts: Helvetica-Bold -%%+ Helvetica -%%+ Symbol -%%BoundingBox:116 478 495 637 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Helvetica-Bold Helvetica-Bold -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica-Bold/Helvetica-Bold 0 Z -%%EndEncoding -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica/Helvetica 0 Z -%%EndEncoding -%%BeginEncoding: _Symbol Symbol -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Symbol/Symbol 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -2237.625 3892.625 m -3030.625 3892.625 L -1.25 slw 0 sg str -gr -gs -3956.625 4673.625 m -dot -1.25 slw 0 sg str -gr -gs -4190.625 5220.625 m -5284.625 5220.625 L -1.25 slw 0 sg str -gr -gs -6143.625 3267.625 m -dot -1.25 slw 0 sg str -gr -gs -7068.5 3254.5 m -8161.5 3254.5 L -35 slw 0 sg str -gr -gs -2939 3899 2995 3893 3030 3892 3066 3893 3101 3896 3136 3901 3171 3908 3205 3917 -3239 3928 3272 3941 3304 3955 3335 3971 3366 3989 3395 4009 3423 4031 3450 4054 -3475 4078 3500 4104 3518 4127 18 P -1.25 slw 0 sg str -gr -gs -6607 3465 6655 3417 6682 3394 6711 3372 6740 3352 6770 3334 6802 3318 6834 3303 -6867 3290 6900 3280 6935 3271 6969 3264 7004 3259 7040 3256 7075 3255 7110 3256 -7145 3259 7181 3264 7198 3267 18 P -1.25 slw 0 sg str -gr -gs -4190 5235 4124 5218 4090 5206 4058 5193 4026 5177 3995 5160 3965 5141 3937 5120 -3909 5098 3883 5075 3858 5049 3835 5023 3813 4995 3792 4966 3774 4936 3757 4905 -3742 4873 3729 4840 3723 4823 18 P -1.25 slw 0 sg str -gr -gs -5863 4986 5832 5021 5808 5047 5781 5070 5754 5093 5725 5113 5695 5132 5664 5149 -5633 5165 5600 5179 5566 5191 5533 5200 5498 5208 5463 5214 5428 5218 5393 5220 -5357 5220 5322 5218 5287 5214 5284 5214 19 P -1.25 slw 0 sg str -gr -gs -3518.625 4126.625 m -3723.625 4823.625 L -1.25 slw 0 sg str -gr -gs -5863.625 4986.625 m -6609.625 3479.625 L -1.25 slw 0 sg str -gr -gs -3174.625 3892.625 m -3225.625 3892.625 L -1.25 slw 0 sg str -gr -gs -3278.625 3892.625 m -3329.625 3892.625 L -1.25 slw 0 sg str -gr -gs -3382.625 3892.625 m -3433.625 3892.625 L -1.25 slw 0 sg str -gr -gs -3486.625 3892.625 m -3538.625 3892.625 L -1.25 slw 0 sg str -gr -gs -3591.625 3892.625 m -3642.625 3892.625 L -1.25 slw 0 sg str -gr -gs -3695.625 3892.625 m -3746.625 3892.625 L -1.25 slw 0 sg str -gr -gs -3799.625 3892.625 m -3850.625 3892.625 L -1.25 slw 0 sg str -gr -gs -3903.625 3892.625 m -3954.625 3892.625 L -1.25 slw 0 sg str -gr -gs -4007.625 3892.625 m -4058.625 3892.625 L -1.25 slw 0 sg str -gr -gs -4111.625 3892.625 m -4163.625 3892.625 L -1.25 slw 0 sg str -gr -gs -4216.625 3892.625 m -4267.625 3892.625 L -1.25 slw 0 sg str -gr -gs -4320.625 3892.625 m -4371.625 3892.625 L -1.25 slw 0 sg str -gr -gs -4424.625 3892.625 m -4475.625 3892.625 L -1.25 slw 0 sg str -gr -gs -4528.625 3892.625 m -4579.625 3892.625 L -1.25 slw 0 sg str -gr -gs -4632.625 3892.625 m -4683.625 3892.625 L -1.25 slw 0 sg str -gr -gs -4736.625 3892.625 m -4787.625 3892.625 L -1.25 slw 0 sg str -gr -gs -4841.625 3892.625 m -4892.625 3892.625 L -1.25 slw 0 sg str -gr -gs -4945.625 3892.625 m -4996.625 3892.625 L -1.25 slw 0 sg str -gr -gs -5049.625 3892.625 m -5100.625 3892.625 L -1.25 slw 0 sg str -gr -gs -5153.625 3892.625 m -5204.625 3892.625 L -1.25 slw 0 sg str -gr -gs -5257.625 3892.625 m -5308.625 3892.625 L -1.25 slw 0 sg str -gr -gs -5361.625 3892.625 m -5412.625 3892.625 L -1.25 slw 0 sg str -gr -gs -5466.625 3892.625 m -5517.625 3892.625 L -1.25 slw 0 sg str -gr -gs -5570.625 3892.625 m -5621.625 3892.625 L -1.25 slw 0 sg str -gr -gs -5674.625 3892.625 m -5725.625 3892.625 L -1.25 slw 0 sg str -gr -gs -5778.625 3892.625 m -5829.625 3892.625 L -1.25 slw 0 sg str -gr -gs -5882.625 3892.625 m -5933.625 3892.625 L -1.25 slw 0 sg str -gr -gs -5986.625 3892.625 m -6037.625 3892.625 L -1.25 slw 0 sg str -gr -gs -6090.625 3892.625 m -6142.625 3892.625 L -1.25 slw 0 sg str -gr -gs -6195.625 3892.625 m -6246.625 3892.625 L -1.25 slw 0 sg str -gr -gs -6299.625 3892.625 m -6350.625 3892.625 L -1.25 slw 0 sg str -gr -gs -6403.625 3892.625 m -6454.625 3892.625 L -1.25 slw 0 sg str -gr -gs -6507.625 3892.625 m -6558.625 3892.625 L -1.25 slw 0 sg str -gr -gs -6611.625 3892.625 m -6662.625 3892.625 L -1.25 slw 0 sg str -gr -gs -6715.625 3892.625 m -6767.625 3892.625 L -1.25 slw 0 sg str -gr -gs -6820.625 3892.625 m -6871.625 3892.625 L -1.25 slw 0 sg str -gr -gs -6924.625 3892.625 m -6975.625 3892.625 L -1.25 slw 0 sg str -gr -gs -7028.625 3892.625 m -7079.625 3892.625 L -1.25 slw 0 sg str -gr -gs -7132.625 3892.625 m -7183.625 3892.625 L -1.25 slw 0 sg str -gr -gs -7236.625 3892.625 m -7287.625 3892.625 L -1.25 slw 0 sg str -gr -gs -7340.625 3892.625 m -7391.625 3892.625 L -1.25 slw 0 sg str -gr -gs -7445.625 3892.625 m -7496.625 3892.625 L -1.25 slw 0 sg str -gr -gs -7549.625 3892.625 m -7600.625 3892.625 L -1.25 slw 0 sg str -gr -gs -7653.625 3892.625 m -7704.625 3892.625 L -1.25 slw 0 sg str -gr -gs -7757.625 3892.625 m -7808.625 3892.625 L -1.25 slw 0 sg str -gr -gs -7861.625 3892.625 m -7862.625 3892.625 L -1.25 slw 0 sg str -gr -gs -2354 3579 2745 3892 R -1 sg fill -gr -gs -2354.625 3579.625 2745.375 3892.375 R -1.25 slw 0 sg str -gr -gs -3174 3736 3016 3810 3016 3662 2 P -0 sg fill -gr -gs -2745.625 3736.625 m -3174.625 3736.625 L -1.25 slw 0 sg str -gr -gs -7159 3313 7204 3481 7114 3481 2 P -0 sg fill -gr -gs -7159 3924 7114 3756 7204 3756 2 P -0 sg fill -gr -gs -7159.625 3481.625 m -7159.625 3756.625 L -1.25 slw 0 sg str -gr -gs -7497 3371 7688 3753 R -1 sg fill -gr -/_Helvetica-Bold ff [312 0 0 -312 0 0] mf sf -7497 3683 m 0 sg (h) show -gs -3096 3076 3287 3458 R -1 sg fill -gr -3096 3388 m 0 sg (v) show -gs -3270 3319 3409 3597 R -1 sg fill -gr -/_Helvetica-Bold ff [208 0 0 -208 0 0] mf sf -3270 3527 m 0 sg (o) show -gs -8406 1802 8527 2080 R -1 sg fill -gr -/_Helvetica ff [208 0 0 -208 0 0] mf sf -8406 2010 m 1 sg (k) show -gs -7953 2690 8057 2985 R -1 sg fill -gr -/_Symbol ff [208 0 0 -208 0 0] mf sf -7953 2915 m 0 sg (m) show -gs -8123 2880 8227 3089 R -1 sg fill -gr -/_Helvetica ff [174 0 0 -174 0 0] mf sf -8123 3053 m 0 sg (k) show -gs -7432 3150 7484 3060 7522 3098 2 P -0 sg fill -gr -gs -7503.625 3079.625 m -7862.625 2720.625 L -1.25 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob20.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob20.gif deleted file mode 100755 index 791be304f..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob20.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob21a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob21a.eps deleted file mode 100755 index 9053ad6cd..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob21a.eps +++ /dev/null @@ -1,607 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Sun Oct 2 22:30:24 1994 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 391 175 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /arwlen 6 def /arw 4 def /arow { - gsave newpath moveto lineto unpagectm concat { - - } { - - } { - - } { - - } pathforall newpath 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath crlinalph setalpha strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - crstrpat findfont exch strwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /arwpath { - sc7mt currentmatrix pop gsave newpath moveto lineto unpagectm dup concat { - - } { - - } { - - } { - - } pathforall grestore unpagectm 5 -1 roll concat 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath sc7mt setmatrix -} bind def end -TopDrawDict begin /estroke { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /efill { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath unpagectm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /apstroke { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc pie chord or { - closepath - } if crlinalph setalpha pie not chord not and { - crfrtarw { - 2 copy crlinw exch gsave newpath angle1 1 add cos radius mul radius add angle1 1 add sin radius mul radius add moveto angle1 cos radius mul radius add angle1 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if crendarw { - 2 copy crlinw exch gsave newpath angle2 1 sub cos radius mul radius add angle2 1 sub sin radius mul radius add moveto angle2 cos radius mul radius add angle2 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if - } if crlincp setlinecap crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /apfill { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup 5 -2 roll arc pie chord or { - closepath - } if 1 xscale div 1 yscale div scale crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /mkepath { - dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def /closed exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc closed pie or chord or { - closepath - } if unpagectm -} bind def end -TopDrawDict begin /closedspl false def /nspans 0 def /sstrt { - gsave dodrawctm /closedspl exch def /nspans 0 def newpath -} bind def /sstrtpath { - dodrawctm /closedspl exch def /nspans 0 def newpath -} bind def /sadd { - nspans 0 eq { - moveto - } { - pop pop - } ifelse curveto /nspans nspans 1 add def -} bind def /splstroke { - nspans 0 gt { - unpagectm concat closedspl { - closepath - } if crlincp setlinecap crlinjn setlinejoin crlinalph setalpha crlinw setlinewidth crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - flattenpath crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse - } { - pop pop - } ifelse grestore -} bind def /splfill { - nspans 0 gt { - closedspl { - closepath - } if crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - flattenpath crfilpat findfont exch crfilstyl 0 eq { - filwittrans { - trpateofil - } { - oppateofil - } ifelse - } { - filwittrans { - trpatfil - } { - oppatfil - } ifelse - } ifelse - } { - crfilstyl 0 eq { - eofill - } { - fill - } ifelse pop - } ifelse - } if grestore -} bind def /mksplpath { - nspans 0 gt { - closedspl { - closepath - } if - } if -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 390.690918 174.055725 rectclip --80 -399.768005 translate -80 399.768005 390.690918 174.055725 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 2.6 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 4] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -/usedash true def -false -1.15178 0 0 0.54491 586.787598 338.573608 sc5mt astore sstrt -systemdict -begin -121.5 143 256 310 setbbox -121.5 143 moveto -121.5 143 129.5 162.5 129.5 162.5 curveto -129.5 162.5 137.5 180 137.5 180 curveto -137.5 180 144 194 144 194 curveto -144 194 148.5 203 148.5 203 curveto -148.5 203 152.5 211 152.5 211 curveto -152.5 211 157 219 157 219 curveto -157 219 160.5 225.5 160.5 225.5 curveto -160.5 225.5 163.5 230.5 163.5 230.5 curveto -163.5 230.5 169 239.5 169 239.5 curveto -169 239.5 174.5 248 174.5 248 curveto -174.5 248 180.5 257 180.5 257 curveto -180.5 257 185.5 263.5 185.5 263.5 curveto -185.5 263.5 191 270 191 270 curveto -191 270 197.5 278 197.5 278 curveto -197.5 278 204.5 284.5 204.5 284.5 curveto -204.5 284.5 211 291 211 291 curveto -211 291 216 294.5 216 294.5 curveto -216 294.5 221 298 221 298 curveto -221 298 225.5 301 225.5 301 curveto -225.5 301 230.5 303.5 230.5 303.5 curveto -230.5 303.5 235.5 305.5 235.5 305.5 curveto -235.5 305.5 240.5 307 240.5 307 curveto -240.5 307 247 309 247 309 curveto -247 309 254 309.5 254 309.5 curveto -254 309.5 256 310 256 310 curveto -end -/nspans 25 def 1 0 0 1 0 0 sc5mt astore -1 0 0 1 413.488953 0 sc6mt astore splstroke -/crlinw 1.9 def -/usedash false def -0.966572 -0.256394 0.256394 0.966572 -191.069 -14.081184 sc4mt astore 0.966572 -0.256394 0.256394 0.966572 -191.069 -14.081184 sc6mt astore 11.401749 1.000001 -1 90 447 0.279242 -0.121584 0.014539 0.187597 172.34552 477.588501 sc5mt astore estroke -0.966572 -0.256394 0.256394 0.966572 -191.069 -14.081184 sc4mt astore 0.966572 -0.256394 0.256394 0.966572 -191.069 -14.081184 sc5mt astore -1 -20 100 419 0.424513 -0.184836 0.024019 0.309911 154.496933 433.005096 sc6mt astore ssl -0.966572 -0.256394 0.256394 0.966572 -191.069 -14.081184 sc4mt astore 0.966572 -0.256394 0.256394 0.966572 -191.069 -14.081184 sc5mt astore 19 -6 99 413 0.424513 -0.184836 0.024019 0.309911 154.496933 433.005096 sc6mt astore ssl -0.966572 -0.256394 0.256394 0.966572 -191.069 -14.081184 sc4mt astore 0.966572 -0.256394 0.256394 0.966572 -191.069 -14.081184 sc5mt astore -5 -29 99 400 0.424513 -0.184836 0.024019 0.309911 154.496933 433.005096 sc6mt astore ssl -0.966572 -0.256394 0.256394 0.966572 -191.069 -14.081184 sc4mt astore 0.966572 -0.256394 0.256394 0.966572 -191.069 -14.081184 sc5mt astore 3 -29 100 399 0.424513 -0.184836 0.024019 0.309911 154.496933 433.005096 sc6mt astore ssl -0.966572 -0.256394 0.256394 0.966572 -191.069 -14.081184 sc4mt astore 0.966572 -0.256394 0.256394 0.966572 -191.069 -14.081184 sc5mt astore 47 -0.638824 66 369.638824 0.613081 -0.26694 0.029313 0.378216 140.505035 413.689728 sc6mt astore ssl -/esave save def 0.966572 -0.256394 0.256394 0.966572 -191.069 -14.081184 sc4mt astore 0.966572 -0.256394 0.256394 0.966572 -191.069 -14.081184 sc6mt astore 75.272552 159.171448 175 418 -1 -1.642857 7 false false 0.424513 -0.184836 0.024019 0.309911 -139.892807 431.425201 sc5mt astore apstroke esave restore -0.993978 0.109584 -0.109584 0.993978 32.49678 -79.66378 sc4mt astore 0.993978 0.109584 -0.109584 0.993978 32.49678 -79.66378 sc5mt astore -24 -5 220 442 0.726761 -0.072516 -0.226777 0.729319 152.671021 231.63623 sc6mt astore ssl -/crlinw 2.1 def -/crfrtarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -41.400024 92 557.400024 1 0 0 1 0 0 sc6mt astore ssl -/crendarw true def -/crfrtarw false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0.793213 -23.003571 466 443 1 0 0 1 0 0 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(h ) [12 0 0 0] 205 496 /Times-Roman [ 24 1 mul 0 0 24 0 0 ] [1 0 0 1 250 -43] dotx -/crendarw false def -/crfrtarw true def --4.371139e-08 -1 1 -4.371139e-08 -184 753 sc4mt astore -4.371139e-08 -1 1 -4.371139e-08 -184 753 sc5mt astore -44.2995 3.051758e-05 440.2995 412.999969 1 0 0 1 0 0 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(D ) [17.328003 0 0 0] 358 130 /Times-Roman [ 24 1 mul 0 0 24 0 0 ] [1 0 0 1 7 276] dotx -/crlinw 3 def -/crfrtarw false def -/esave save def 1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 90 167.192322 243 415 1.781818 -1 82.5 false false 1 0 0 1 -97 258 sc5mt astore apstroke esave restore -/crlinw 1 def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -39 -157 150 571 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -95 293 509 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -39 -118 188 531 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 38 -158 150 571 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 39 -116 188 531 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 41 102 188 413 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 34 -103 230 516 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 37 95 227 415 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 31 -97 262 509 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -30 -94 293 508 1 0 0 1 0 0 sc6mt astore ssl -/crlinw 3 def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 40 0 110 572 1 0 0 1 0 0 sc6mt astore ssl -/crlinw 1.1 def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 39 -159 110 572 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -1 -155 111 569 1 0 0 1 0 0 sc6mt astore ssl -/crlinw 2.1 def -/crendarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -44.399994 92 471 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -50 0 350 414 1 0 0 1 0 0 sc6mt astore ssl -/crendarw false def -/crfrtarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -29 465 500 1 0 0 1 0 0 sc6mt astore ssl -(H ) [17.328003 0 0 0] 324 214 /Times-Roman [ 24 1 mul 0 0 24 0 0 ] [1 0 0 1 -243 271] dotx -end -grestore -grestore -%%Trailer -%%DocumentFonts: Times-Roman diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob21a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob21a.gif deleted file mode 100755 index ba6376876..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob21a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob26.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob26.eps deleted file mode 100755 index 90511f494..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob26.eps +++ /dev/null @@ -1,923 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: pssc7cq6.10.a.eps.create -%%Creator: Create -%%CreationDate: Thu Feb 20 15:05:32 1997 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 2 307 612 468 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(2u_n\R%AdlucPU^rtBr7kt5Z%Rcnfh'I!$$Y1%,&dGCQ]rL!sAT -% XQ7RQmBF-ugb-p]!ZXV+PSU38hR6d8sAag:O9TY'O!-n(d.>T@fr\t@E#7n\4PUd9Sgi>b/T -% hCY3A.i[qL=NP?jeCQ6=#=3iMY$6fI!@>\`/n,*U04/275ne<;I%SE%%T(_iGmYhVjE]BLk/d6>>*9W9=>I`9S%jg<c4DH*aL@,(Fo<4X?US%dQiPuhS.-(/(kM4%s%PaNnfFK)8)WgRlGVb47OC1jMY`d3rY -% fDb#LN32n3k\7BoM^h5bIs.r28oMR -% I$-\aCBsU\7GdQE^3t>&:djIVL0p>%SCaZQ24;?R00)2QaIhOK7Z=`brE:SDGFp0!H`J9V'% -% O2@T2%BLSG)Hh#6;0<^HI-7OK?>)MQsr.=:=a8h8^E/C5*4IXTo!R5Sp%OW`md5iaLEMF?El -% L_b/k<$)8d(=L,:WB$:g-#LVg)i+nBUJl^*\boT*stRm2GsVY&&UeG3Hc&mW%&\SrPAD>6`B^hdL9N -% L:#nT/pYWI%qf.Qm]np6N(!:pN^%4Hq-&51pcXo3?LAl9l.n2X?\%mY!_de^&EcbEhL -% J7Q^THb>sPd*5)F;O/E.PID[gJqh0_^ph>_18,D08IYPVB=g!FG45oSX[^OG=\X+=@^^ONJ7?&-ti-5SH.7N -% .0ZB+ -% (h.1gp^o#t#WVJ-J'i-9"*`:^u>-%KMTA"9BX8,2!gMlQknRI57L16F/*:0 -% FFPc,NSoP-T(o9!-iH$$k;)a#[^P_#4TGo!6F(gM9^gC3t.St>slJf#'#$0=VM.;+s0%(e:f -% pD==Hq$;V(VQV&Fpc0Im/+padNf?.5mYL=mGOT -% lmX80o']OhahXf[ibN[>?>\l4a2_fLiZ(T`B=RA1+=nm:"24Ns&g%J%Ad-_8i=DL$WJG.C[b -% Q::3pR:hs3q#n(8EU67YI:2Oc4bOQ@R@_ImZ3Vjd-"QC0t!%A;<$7r"l=*hriP#PXhM%sPf! -% =GbSD'th%qcPkS(p+BgX3"KN"9K$<$G^UNC>P/Keu;KJ`-P^XK(g`;!(_q6\/$ -% NAhrA&D6[6Co/T=VtPMR4`(Bs8mJp\_C>HdH/^UhB<=fLLes2#tq+AQZk%=Hq6LWZG@a93%q -% *9$^BNO&8s/QcMahkFhPZUjkp=HJX)o'Ub@.UB0t(0h.Z3#K4rShQ>PCM&OR6N -% bW>oi4+TG)Uan!onAm:?/(M1f"%s0S)(MS*J\qoUV:QKQ-3LY,TmF,0K+jR9AQe?RE9,cZEs -% KG#\X`+gf9Bg'!Vo4"A;a5J^?3F\%ou&"i;)V+Fjd0nE<,==4nIEa@g,Q)9db)/0s`VYmkU= -% 8IoEQm*.eqM`gDPf9a^6??3,kX6ttM3SIBf27:OVmuIAC^a-?EHSL$jE/Qf)'J.joQ_!PVRi -% KnI%`F@cc0GrV!aY\fBrtehZ+M?*\qbI,N*CO9K%XK)'\Rgb-$S: -% RRb^EH1`^\7PkSNL6tW?i03_(-JO3=983D!s">LT\%+%pT%X8h3BU'G -% o2WOl-!ZD?neO1m)4Ic7t<"ScL*lU;$320Hd"gBMJ09W!i2;15`ddN!@rdrmV6u,'aFp:N!:ZZiI;"+p -% .!LuuL*T9F1mUIa(k?b]JP)k_@e_)P!$BE-M.tUjCWLRLR!c775Fj3\/I.1#2a$Fa!:\qV;L -% o)R^]la\LTC`:&I==sk_eF;0BOAlh'e8S-terGMe^jI!mll,n6g]1I$#5$Z9/B\p"A0:Ld'`oo2@sU -% WUo`7T8Wo_U&-.5b!,^W),m<2.h7H&0ZB`W-D+$141hFhf,N>(5&a'/hjNgbd:Q,0klH=Bi> -% =&bfU+K$+D^>CP"q:W1C<3%h$J_'Co^5kD5uMY>$fWTPjP#P!.EKXn/)/ruj17oO4:M;m1(" -% R*0P68J:B7O5-_]/RQ5F,C+]FoK<[WOh:k0cS3!L71&k8288ci,C?5"-c;9"!N<2+mi/$oin,l=:F$! -% [bAaObui.C`bnK15Q;A/-jX=b;(@#QQ7Vaq[tXTAbRMIZ/B&ie[Znetd0^KE<-E!/PZ#E`\Y -% pg].I>G9_g&q8:i5cN-iK"70l&8HP=t?pGjOlt;?//.QBe?9EDNTS!gZ_;#0?kUQ+ -% dZ/[5\NtNP(sSL?t$m/4QZqMN5*KUTO2qZE<[>'R.=O- -% "e9U>HKu_XaT8(9J-@MhLk3AUPR;,4E1&2cBoSZsi@1E.ddi>MU^f/20%0 -% D,F-Nl5]##PY6)CQLD@4O%SKJDhHNBnH)+9E3m0Z$%2)qVF<8IJh3f#D&,F+#7pB(Sk<'/e#P0SIu=/TG\B:Ac\@)'aU4Y(t5jMQ:APAeM`TWVk=A.; -% S[E/*(j'19h[iL(uBl!iJ1-Q_@hl#`1l(8)"oKQYtDeVoJjAgItlLW\Ls$m%suoc=Tcib+IH2NE;KhO0FegZoX:7g=RUk"Z[B -% jcn&F5!#T*R*N4/rlAnfl\)o'J0n.7:4&O-^LajN\hbCqn!!hp^8mJ7DLCTQDn^L]Si72Io/ -% 0.$3q_(1meYfmn=JUiG:D=0%smBeOfNd2\b/5s5>+%Dr0#Ylk.Sua]$m;*_PFbWq(I)[+Fkd -% O&;\+V.0-b#i:uqE51H-AJX'pl%#7e-2WR@.-_qkpQKL$4^eAhfo[3qB=2!-Mi-uqE5TNUe6 -% 5UKB7CbdY$Pd?S=39r?HDt`?pnqJ1Qp/*NAhD\)8u37+u,naPb)lg1Geb -% Us]eD=#qLr&Wn,6j6Mk!_FD90O\e/JN=mWW-X+o\%b.7#Cl#VAIStIa)eT;*]LC""g?6eh713!Ebdlng)'o!=tf" -% QDXs#Z*tkx -% EndEmbeddedGraphics N 1332 534 E 2d S 2518f R 7fa70653 -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -207 276 209 245 rectclip -0 nxsetgray -0 0 0.277384 1 10 SU -gsave -[1 0 0 1 208 278] concat -0 nxsetgray -0 0 0.277384 1 10 SU -gsave -[1 0 0 1 6 6] concat -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 28 29] concat -0 0 0.15 1 10 SU -10 190 T -N -0.15 L -0 nxsetgray -144 0 0 0 line -0 0 T -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 1 1] concat -0 0 0.15 1 10 SU -9 9 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 9 T -N -0.15 L -0 nxsetgray -144 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 45 T -N -0.15 L -0 nxsetgray -144 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 81 T -N -0.15 L -0 nxsetgray -144 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 117 T -N -0.15 L -0 nxsetgray -144 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 153 T -N -0.15 L -0 nxsetgray -144 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -45 9 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -81 9 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -117 9 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -153 9 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -grestore -grestore -grestore -grestore -0 0 0 1 10 SU -gsave -/Times-Bold findfont 16 scalefont [1 0 0 -1 0 0] makefont -160 -exch -defineuserobject -160 execuserobject setfont -1.408936 98 T -79 flipV -12 39.5 T --90 R -1.490714 1.536826 S --25 4 T -N 0 0 m -0 nxsetgray -0 0 m -(Energy) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -160 execuserobject setfont -62.388 1 T -22 flipV -44 11 T -1.849224 1.392706 S --23.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(Height) show -0 0 T -grestore -grestore -grestore -grestore -0 0 3 1 10 SU -43 45 T -N -3 L -0 nxsetgray -144 -144 0 144 line -0 0 T -grestore -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 329 502] concat -gsave -/Times-Bold findfont 36 scalefont [1 0 0 -1 0 0] makefont -179 -exch -defineuserobject -179 execuserobject setfont -14 13.5 T --13 12 T -N 0 0 m -0 nxsetgray -0 0 m -(A) show -0 0 T -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Times-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob28v1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob28v1.gif deleted file mode 100755 index 3e9a33930..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob28v1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob28v2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob28v2.eps deleted file mode 100755 index 1f7649cb4..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob28v2.eps +++ /dev/null @@ -1,507 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: Untitled2.create -%%Creator: Create -%%CreationDate: Tue Feb 11 12:40:49 1997 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 202 267 411 512 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(0AM@q#&25E_+2Eu5pFSTnB%<#+J0MJj5d[&? -% ak\*j@sEuEo0Ih1^t?+.+F>E.6*\VmHNH5+G7Pq@2?d[YfO6l'2kL2\(8"'h9'l.VKa!\"Cr -% 2h,[ei`\"3S-2,7Vab:PHgF;[DY!1Vu""RJjer+-?)<78-&1WL'O!]f/fJMT/KVFgqII0C1\ -% JQHL^aTK=*QgNlNAT>iRfit!U_F"?aq!_BrND1g(8h13Uaa6`ej@1$[@8b2KR]Ok&+HZ)Zi[ -% /ZQki,hQo!KTmJe9=QA"TfeRElqg -% %7WAMA!$.(76KV'RUHf&L,nRSq8L4[V@XnK1#fE8p"1Cb]JU@(R=b@5SW2!j1qL]r?f?GEO+ -% dZ/[J7qb9P"/SU=MSC,H3+X&E&0C3=CH^Yg#*^RYk(570b>MO%gXdi@$!#KH"L`Bn<:^<64< -% q2$afsh#T2[]:oc@FPYkYX\OedeW1jc"lD_V1G\(n!Pj'FnUd4F8!S?"t*>2qZE<[>'QkJ8# -% "e:b4HL2kZaT8+:J-@MhLk3AUP7Dl2E0r8VWK!H^d:o6_ddi>MUCK&;/]=;C@tH;$3N^Xi.+9E3m0Z$%2/(_,M8K1sCf#D&,V+#7sGk:0`'/e#P0S.Ze)TGeHKAc\@-'hFaD(t5jMPt&G@eMiZhkF`.n; -% ?1ko*(j'19h[iL(uBl1+c&j<_NKA9!0D_4[#BEG?Y3qSA(>cSZ5:ca+5_;PubF[I/08"O`67)'GX-[(>9@@E64o;MSr*HI1hX:*$ZWM.)[g=16!F3?3 -% 1068Nb7H0pC9X(U3i3KpB*_99TPIj7S(OHf6qo'P&ACt<>agL -% /8Zo:`WH9:9hdXhJp6$K3%-@D5fZd;014P*B;jtjScD)\&C""g?6eqkm3&5Ygsx -% EndEmbeddedGraphics N 1332 534 E 3d S 24b1d R e249fe7e -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -202 267 209 245 rectclip -0 nxsetgray -0 0 0.277384 1 10 SU -gsave -[1 0 0 1 203 269] concat -0 nxsetgray -0 0 0.277384 1 10 SU -gsave -[1 0 0 1 6 6] concat -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 28 29] concat -0 0 0.15 1 10 SU -10 190 T -N -0.15 L -0 nxsetgray -144 0 0 0 line -0 0 T -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 1 1] concat -0 0 0.15 1 10 SU -9 9 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 9 T -N -0.15 L -0 nxsetgray -144 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 45 T -N -0.15 L -0 nxsetgray -144 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 81 T -N -0.15 L -0 nxsetgray -144 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 117 T -N -0.15 L -0 nxsetgray -144 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 153 T -N -0.15 L -0 nxsetgray -144 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -45 9 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -81 9 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -117 9 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -153 9 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -grestore -grestore -grestore -grestore -0 0 0 1 10 SU -gsave -/Times-Bold findfont 16 scalefont [1 0 0 -1 0 0] makefont -160 -exch -defineuserobject -160 execuserobject setfont -1.408936 98 T -79 flipV -12 39.5 T --90 R -1.490714 1.536826 S --25 4 T -N 0 0 m -0 nxsetgray -0 0 m -(Energy) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -160 execuserobject setfont -62.388 1 T -22 flipV -44 11 T -1.849224 1.392706 S --23.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(Height) show -0 0 T -grestore -grestore -grestore -grestore -0 0 3 1 10 SU -43 45 T -N -3 L -0 nxsetgray -144 144 0 0 line -0 0 T -grestore -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 322 487] concat -gsave -/Times-Bold findfont 36 scalefont [1 0 0 -1 0 0] makefont -179 -exch -defineuserobject -179 execuserobject setfont -14 14 T --13 12 T -N 0 0 m -0 nxsetgray -0 0 m -(C) show -0 0 T -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Times-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob28v2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob28v2.gif deleted file mode 100755 index 6af57361b..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob28v2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob28v3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob28v3.eps deleted file mode 100755 index cd8351216..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob28v3.eps +++ /dev/null @@ -1,510 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: Untitled3.create -%%Creator: Create -%%CreationDate: Tue Feb 11 12:41:58 1997 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 202 267 411 512 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(0AM@q#&25E_+2Eu5pFSTnB%<#+J0MJj5d[&? -% ak\*j@sEuEo0Ih1_&I7A(6T+IoMt#4UD4p+G3"r&f/DaYfO6l'2kL2\(8"'h9'l.VKa!\"Cr -% 2h,[ei`\"3S-2,7Vab:PHgF=BOi!1Vu""RJjer+-?)<78-&1WL'O!]f/fJMT/KVFh"K"^2*Q -% :]moHoHt.LRpC3]?BC&cY,$`BS/h=1?>')r8$ -% c\l(qREh&6s]]-n!*kgjDLSn.@E6plnV=]PeTYg6!j.R>RVO.Og,$:jY@X0u'rqHob"7E"KGTDbKo(^"_Dln$2Y7!A&Oh4f* -% \^jr6/nH0#Q_%c+>c,dul`LKW6gSpDDL3\>';E)=RRGR#mt@-nLB52?f9'+"r_iiWsqi'!0M#V4m2)IpV+?nck$JeB"(!=](VOFN8SOpKs^Z -% dtD'Ha?Z0pE6-E(FGdb1pg]^+?7"R]'jl+g`g!PfWcQRAr*NBif!qh`";3mM'URl'IbG!"B& -% *EQ*=^3ZC&?Xi_Y4f"QO%2-pRQfEA'We"4QSp>`NN30>'2Q-83ef.[eu2$HrR!D7 -% 6m:[ufgS:!l:GUs";r&u`Xbu9OTui!,iqS=7X<=?R7ojS3S?nu7M(f8U`fRl#8^=I/WleiU+ -% ?*GaX.4r0QRri/MDCin\MG\SKsK"JGDWBL,".Rbb4,sftk]hdX&2uc8/0C4$"GPP.3<$-N]r -% tZ__MUdE/0c!oXM*`?h":qrOf/.Eu:-E-X]:A1Hi[b&]0iP3SQJ4/HZ5k[7;[oTU9EX;3EU@ -% $FH9!`U9FPtu\^O$EUEOFTB,#QOi)x -% EndEmbeddedGraphics N 1345 541 E 1f S 25875 R 850a6fe3 -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -202 267 209 245 rectclip -0 nxsetgray -0 0 0.277384 1 10 SU -gsave -[1 0 0 1 203 269] concat -0 nxsetgray -0 0 0.277384 1 10 SU -gsave -[1 0 0 1 6 6] concat -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 28 29] concat -0 0 0.15 1 10 SU -10 190 T -N -0.15 L -0 nxsetgray -144 0 0 0 line -0 0 T -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 1 1] concat -0 0 0.15 1 10 SU -9 9 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 9 T -N -0.15 L -0 nxsetgray -144 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 45 T -N -0.15 L -0 nxsetgray -144 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 81 T -N -0.15 L -0 nxsetgray -144 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 117 T -N -0.15 L -0 nxsetgray -144 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 153 T -N -0.15 L -0 nxsetgray -144 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -45 9 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -81 9 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -117 9 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -153 9 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -grestore -grestore -grestore -grestore -0 0 0 1 10 SU -gsave -/Times-Bold findfont 16 scalefont [1 0 0 -1 0 0] makefont -160 -exch -defineuserobject -160 execuserobject setfont -1.408936 98 T -79 flipV -12 39.5 T --90 R -1.490714 1.536826 S --25 4 T -N 0 0 m -0 nxsetgray -0 0 m -(Energy) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -160 execuserobject setfont -62.388 1 T -22 flipV -44 11 T -1.849224 1.392706 S --23.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(Height) show -0 0 T -grestore -grestore -grestore -grestore -0 0 3 1 10 SU -43 45 T -144 flipH -144 flipV -N -3 L -0 nxsetgray -0 0 m 0 144 144 144 144 144 c -s -0 0 T -grestore -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 325 489] concat -gsave -/Times-Bold findfont 36 scalefont [1 0 0 -1 0 0] makefont -179 -exch -defineuserobject -179 execuserobject setfont -13.5 13.5 T --12.5 12 T -N 0 0 m -0 nxsetgray -0 0 m -(E) show -0 0 T -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Times-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob28v3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob28v3.gif deleted file mode 100755 index af53bcac2..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob28v3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob28v4.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob28v4.eps deleted file mode 100755 index 0e7ef44e0..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob28v4.eps +++ /dev/null @@ -1,508 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: Untitled4.create -%%Creator: Create -%%CreationDate: Tue Feb 11 12:43:09 1997 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 202 267 411 512 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(0AM@q#&25E_+2Eu5pFSTnB%<#+J0MJj5d[&? -% ak\*j@sEuEo0Ih1_&I7A(6T+IoMt#4UD4p+G3"r&f/DaYfO6l'2kL2\(8"'h9'l.VKa!\"Cr -% 2h,[ei`\"3S-2,7Vab:PHgF:giQ!1Vu""RJjer+-?)<78-&1WL'O!]f/fJMT/KVFh(M"^2*Q -% :]moHoHt.LRpO8-l?A*67/+SND[-W?T\Aib(4WU'`_qD@FH;C?Hj -% MO%gb")i0'iN$KWE.Ui;2&K)kC-/O0^G7QEF>X%XpQe->0'TaV"'XFo#KCN):gR9Tc2C'akh -% &A2SiFZ*og6lB^/JHd-lKK!3)?MZOSaK/]?T$,E?[3MWfZ,JtUEr_$m&('EXd/M?ZQ^$]HiL8F%\3K1J\@`>JWjX^'^4(N+? -% URd3QX.EZX"*q>+((O>\R`u^h;(n_0?*<]84J&i%eA&3q<%)B`\:(+%s)A83G!LgA1aI@_tU -% U?9kmT$Ju?oL.-fIBmq!$MMR#D8ie2:08U"GP7k]-sZr^aC\tQO*WuGZEe>>K;```cXKSWKF -% bEkcn]<5oBqmr;e'ljBCE+H=L6,fr^VFXR]k0BPJu>@rB.daTLt-dWcdp?hlUZDfq'8luoSs -% .-I0Jq0A0tLDG]1JXDIDQIL4P.%%6^Y,W#?CQ?"k5KCl-+he>W8JK!:IO!W/b3a?6[nF_gA^ -% 1r"ZLg"TJ%G.%]+(+6pUY9g%nPZk?(8p5]CVjp'.mnTn9S(sq&SpNij0^1S)cU.78H-KZ5s! -% GQT`sjXF&#]i69i<4)sYjGEj;$-5$lGa2o_^P_5U%/>t8`A["]EKM2:mkThR]+VhZ7+3`-P&j;6'U<`)g>PqT\o_@.)j^O2MNVbl6kqF6=iOsc-(1N3UBn+=7jh?#HaZ?#2-Z? -% jke,7RSd7U8]YZS97>I3:#_Xl-o?6NPF-3:]A2-r\a/HJlGSFLJj+KjKl -% B>s`_j\(DiDDf7#uH0ae3EIP4oY3]5QVk'+TMKBx -% EndEmbeddedGraphics N 1354 54a E fc S 252b8 R 9d3a50fe -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -202 267 209 245 rectclip -0 nxsetgray -0 0 0.277384 1 10 SU -gsave -[1 0 0 1 203 269] concat -0 nxsetgray -0 0 0.277384 1 10 SU -gsave -[1 0 0 1 6 6] concat -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 28 29] concat -0 0 0.15 1 10 SU -10 190 T -N -0.15 L -0 nxsetgray -144 0 0 0 line -0 0 T -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 1 1] concat -0 0 0.15 1 10 SU -9 9 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 9 T -N -0.15 L -0 nxsetgray -144 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 45 T -N -0.15 L -0 nxsetgray -144 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 81 T -N -0.15 L -0 nxsetgray -144 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 117 T -N -0.15 L -0 nxsetgray -144 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 153 T -N -0.15 L -0 nxsetgray -144 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -45 9 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -81 9 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -117 9 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -153 9 T -N -0.15 L -0 nxsetgray -0 180 0 0 line -0 0 T -grestore -grestore -grestore -grestore -grestore -0 0 0 1 10 SU -gsave -/Times-Bold findfont 16 scalefont [1 0 0 -1 0 0] makefont -160 -exch -defineuserobject -160 execuserobject setfont -1.408936 98 T -79 flipV -12 39.5 T --90 R -1.490714 1.536826 S --25 4 T -N 0 0 m -0 nxsetgray -0 0 m -(Energy) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -160 execuserobject setfont -62.388 1 T -22 flipV -44 11 T -1.849224 1.392706 S --23.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(Height) show -0 0 T -grestore -grestore -grestore -grestore -0 0 3 1 10 SU -43 45 T -N -3 L -0 nxsetgray -0 180 m 0 0 144 0 144 0 c -s -0 0 T -grestore -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 325 489] concat -gsave -/Times-Bold findfont 36 scalefont [1 0 0 -1 0 0] makefont -179 -exch -defineuserobject -179 execuserobject setfont -13.5 13.5 T --12.5 12 T -N 0 0 m -0 nxsetgray -0 0 m -(B) show -0 0 T -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Times-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob28v4.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob28v4.gif deleted file mode 100755 index 60d0d197b..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob28v4.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob28v5.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob28v5.eps deleted file mode 100755 index f3f367a2a..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype13/prob28v5.eps +++ /dev/null @@ -1,507 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: Untitled5.create -%%Creator: Create -%%CreationDate: Tue Feb 11 12:44:10 1997 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 202 267 411 512 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(0AM@q#&25E_+2Eu5pFSTnB%<#+J0MJj5d[&? -% ak\*j@sEuEo0Ih1^t?+@+:9(IoN(&mHNH5+G3"r&f/DaYfO6l'2kL2\(8"'h9'l.VKa!\"Cr -% 2h,[ei`\"3S-2,7Vab:PHgF -% MO%gb")+I#&ZBkM+3n<:^<6BLn-/O0^G7QEFBX%XpQeFk;XTaV"'XFo#KCN)G*R9Tc7IL-!' -% &A2SiFZ*og6l@58BM*O0'lZckla:qN,mT51!#Ds>+9i$GN%--*_P,,FW^V**7B;J18BWg'bW -% VPa'P@&(n_0?*<]84J&i$JS?Hn&MD5):ZT@KKO`!^GScrfU< -% S=%HKr8gM7r60lWst7GI[12MKa/(hs/YA/'CJdI?f.dNfkbS_pK!:c5YTKUfSi@Xj2FLHX5t -% f5laV)+:s.ZP)dK4^]S1"J^ZuYP$/,-p,-e]qeqijB;-K=$7hJWHI43dg/U6J -% 3'V_!4amnq%BMhlS5VC214)SK#u#+AJ7ZpkUmV8AmLg4Se:W`)C&n.9B!3q=7#!R15TY+W)QN) -% )QFf\g_-R@Y#kp3V0&VTLg"^@=S\2C(sSm(7?-D#S_)u'sX4OQ7\"q^a?S(kK;n.2m89;_#t -% E0/GOGY\T,q.@c5i'toZ:Q>mA:hW";oJf'DXV!]f)WRJopft$&;QTYjoO,)=Wi$Heg -% N!8[Tt4/"L"Tf*88mmJ7EuY7 -% Jic+f9QeYt;T(jI4d/h$,Lb<_G66I6R&:bBPk."oU!;L57!C730,+*rgVBh0/1?`*l-tI@OP -% Q64FJq6+M;+e#]u_*FV/''OnC1-+.N<]%6kj&(_[Q\nHbO*^ -% r?GmU?HT#`f<(2aEoZ].?A)LLt8pU^`l(h:l(eS[_@-`5g:NiPCV!@"\i`mlkY"k9/#6S"P< -% pBKeV0i6VN9R'NZJF-4'g\%01?k/2uBgMVMe"-9',Wb/>dNh&q9,:brG5E7&O^M\"82j6-9& -% DL4b.B/s5""MqY$TUS)*g'pq:5S.rM`D\.LE0/0a35C(H[W$bL9+Z[<1R7irL.l48com0YQd -% "/85ONK55&L*L5T_tI;)+9Ib94MK@&?$Z9Banh6t">+0nlktHWp!>9s6pM[,0L^U -% h&\de#Nr]:b#5d3-^.%9UIW2"&p%+8V -% Zag[!#cg^#7'3R&;lP\,b.+H9]1Fdn7*qTN8Lnc,/Y:=Bgc:5i=[`m,2VfbDD+U`'c]`c5b!SF:aN!!WFU#-=#6mGqcWr[?)"! -% m2(/kX5DcH-9GfJ=_FUjUj6KJjA,.U]m=4-@XXL&.(-/`B;@!"V;&.\=sVe`25G&.Mm$S1n8 -% @J-(2jM*-7iQSYMDh47rlqGQ&t]X%Z?B?r75\$C%2:<%91m<'ri(<2iN=BN)=VSV^D>U(5sg -% &rXj]XbLqn/UaTN;>Qq-A7>R\KRoVKMO(N!W3#g^:U -% s>&eeM!hE`+32&=X24K`M54!$n`n*5a*;N?o486Pg\'%7-:AJIlW?cl`>=_Ndl:73u7&q'se -% ci3.\sX_J/8`nFH+[[0Z;%c'+R.n+Wj]tGuD10_oZG#jTpFVU**lDdNC74M9A$Z!.KDhWOM.#Q`*&2(aBJP9LQ -% o&I&d(/A;N)>H9RW.uEPN%0@Aa"dJ.[6l/9U.kRZBN'u!)7(gcDA-%md@Z.3T])___>Q:`Y8 -% +G?!"14#&h>$"WfU?,lj>7?'EDZJF-+J&;)?(8:f7]:?AK/4*PD-pLsmEOATD"e+^cU&ic@# -% q-ed6#r'@9quKV#"GRJn8L5Hh2\#fq"L&)Jlr@+gDe(RmST&oFeR)a?.>J[]cCHg"F_Cqt?$ -% 8V8jbR/WN!I.CrfFFWF*!Tj++:$IkJMa)L?K^fKUl"K,nD92TEgn?O[&n_:m`GG(m^!;=WA( -% KiJ5T^C#t0s>)-B+fPi2S)`#iTj,Ia:3*u\LG5*;36@qb(5=Wq3@$1jtdQr%O"CMJ!;X-`JD -% c`g$V2'263?iELU8Zh(J\4l\5%g`1?B$mE#_8C,q?Z/JrtTf)T*o\$SN$W%dDg%6=i_PVM#s -% npEK/Q&V51_S$)s3"G -% /(emNS^'Z>\$hTT@fr_fmulV^3rR1#sX_*\I+: -% niMk"MduN6Db&/+?\"](2_a8S)U$:4-pUe]flcF*\87MV*NK0&2LIY7Z80o]'SB"LQ35h>f+ -% "=P@h=m2f@j+&]9@HEU.]6@%7<#8JsF0b0V:MAk*pH>hXjnF+t,5)!KMVQh+P"n1ek6]I?U( -% #B>JRe5-5`B,"=")Z^F>>odK%BHDJ0L_0_*E3)P6(NeS4_[J>/Ldqk-fPlIu1"ZKDKGjVE_g -% j2i?ipl[c6*2t1;nFT$oW?$K+'[]QQZet^sHME)pU.sF^cJ[#'+jji79(rq3 -% sKEC=ZEY9O^<0B`u#94;2)-.Ud!,5r.[2K#HUdiq)X9%6_?@13lRph+%D-KQpp-2H3O9ERmK(JZppF,ll`)VHIfb'rPehdWHpRH4n -% 6\@&_Ofg1c3on8-k%so5BDc08D%otE5p=%<5$o5UtQ[EhbDfb;Ab8e\5!R-hiO@^H6"L%rs34g['c3;O_BAn -% XM?0BQIRhcggJ]KWI,@[djpL$j.4#P,\&"`@/.j+1:j#B.r7FRL!/b%k<)iXI@S]Z] -% ]'4bS,?>8Sq^o4sY[7j/eqLGGHf?]2ID]]K6it.4BI=<>3Pr/@*B`P*gDpPF;o)%SoW -% ;KtHI^T=96g>g6_'M*`AefI!XaL?"9;b)^::9sI6AMjkAY"F?(lsi_\uh"RPC'-#_7L$qqM) -% QLGeE!:jW7C*91dqM$4#K&S,TAn'(OAoW=1!'RV"niho(?+^uqs&5*Bt35)X$/p8Q=+(AuO6 -% 3;au"taX4=^j'P#GTP!D?F;:FEg+CamY"9OF[B5&-F,fNdCVeh:>EdZGdDb':!eCWC1,/7KB -% (^UF@+PY/mpg:=()la\=1<;k3/%LH3Y2Nc_40*TWS2459#FGJZ/-0pLi`kugf/lBB?ceE9$k -% g!=cmi1GU_+[H5d&:t&'K`s>)5S)j@KI0YA3F%A2*$S797[0SZS]F/J@M'Yli$'"L84GGA&W -% UtO,9PkF84)lDOcG*b,]R6a>\MQL+=/<`RDDM$bYf:fU]<'u$]Z\Z<@n2Y!'F.SFEHJOk-DM -% 8KEVtgK-ZIsOE8M*=@\LKCa=221C*>m#<^uh:FtV68bdD55bF9P./?6Qs.#7;"Y.E@;!CRW@ -% <.YJZB-nafumZaa@%EpAdh]Cb[SS*7Q!6hNH4ZdB'Ld86dcO$W7ach1!*!`l=Q^Z -% ]u(f-B8Xn7?mM:jo[kJlSR.<0$L?"2<8TR=ki5s2QXKdUd?fX:pg)MPAHL4EVj6C<$lgS$EE -% DBCCj.#6C4mer+gEWX&>7l8@s+3AkZ,c;e@dC]T/70H$u,UTQ2j%Qt>_uNV]J*Kch$7TKjX( -% ?klU?&[_a?/Zo$9-Nku3$TNCT]g.Yc4!_TN%7Du6Ue8rr/^/:;JR@5Z(l2s$Kb4@$Z5N=j7M -% 9$'M-ad=pY:"s&!1NG!*DJdeo5/uVRDOkciJ\/[RiWnB_of`gOf_#"JbJdRft"J)rdX937hiUiJd%m(d=2UB]4Q( -% :BK#rAdePN6JK08e=#Ml4G61c*E?cV/+=8%Zj:&!3eg0ZL$a""'X?/c68mna?rpjC'_rl^p] -% `gk%FQEg'XU_$Gj0%9IQPDDrC>e]cHAaZPLc*,IaA-Aumim!ZqHa2nL6(``TEag@N%F"u;;@ -% ??_iqE&M5QWi=F-?ple&;Xo,g0#E]>Q,ZQJ0Xb@CN,:m`1;.V$tOqjJ\ZFOJfkh9UI -% F3["*^jIIQW]6gY?WO6l?-3F0R:/jfjL5_m_S?`>PB`! -% 7iqn>Zk8$4B0DTH-)AVB7hJ7FBI!u -% Gnb8-TlPi).B#1Vef:$o$=QK8hVJ!tF[X!T"[NJae7DYTkr -% ?:HfC0#*d[+Vk8nk[`&D%OpZ8mA)#aCLi.(th\EneV4rE73l`jl,6"GYiTnab*aMir]C3Up= -% .B_(,EFkQ(h8Ukg*e5/GfX8Tl7@@f"O_1h5[e -% XO*@F2!(SUQ//7j`eg&-*ZG.V`"'WY3@P=icH.>ca:;$:(`KGm@ZYjgiEI[D0R+h]2:ALS'% -% nNN6Hn#X7!O[,atTTsY\KlYVDgI&JX,-7W4PM_5XTm^qlWkTc2^`\=4$pEmF]PPIB[jd#j9u%A3W?a]3S7a9LHKiR)_gLdoj4/N`H8rYUm*7 -% a1$T,.U1M^CG6SjOkZk>!>/V[&B4#Is&SL4SIaVpSs&I9of*"JKD,t!!!j0(X!.s*H!.W]j"mu"ZZRL@:pYs -% 0>"CkABC><:1D8mSi*kHk[a9krOZR^fFg]5sf!DRf#d]=oUFhiTL8q)TJ0eeYKu?0Q48Rp5L -% Nf!'qS+_#ef=S8h@Z0[#K%33Op!!6#Yn,P#^!%ZPUD&oib,(a+1C+ufk3Uh4YdbP%O(UgR`$%mKL(Y[<92Lcb9K?8b=#j\q']/_ -% E\''n9Zs-C@="@5k;!WuI%!<>PsL4"lB96#7`X-KMn!Ao'.9OpJP"uK`q":7F6c@?*[>f:&? -% Th#3QnB!G=Oq8"7JptQZS"UOM-b/CAa4;t48H@ZQM7Uo8&@ng)*G8:71X+!"ZU9qAKb+Z+$W -% jX>bICrW&cgkB)Q7\5!8t-r_'f^M"%*=t39?W)!K/qT17"c4iLFU)!!-V,J>G*aSA6C8=aWa -% WIrJtjtNp=Ei:[#eQ^At2E5_/kR8mP!:D&_[ -% ,OL@<1BADk@V-0>a;8t1@^#_5QUp=kjDS"gX)P[efX!RUh50.QHh[(L+EZ#HhT#I^KPcVJrT -% 26&PLpuA3p'b@u?X^,J_`Z#qNJ9IT>ch"$9hk&iRMSV87oh -% &Ibq_TZ#aD.>fXV@btR;VaEoAMZXRO5SsSS0sL1^QTO*ThH.UMp![D;+=QScJL^"7Ub73*hF -% NLT;Q.\O!]Ymd`W-\URBT$[%#&6:.+uiomdZ/\\mQsGfVmDh+X7%r-nWK+b8,7RL3nkdl#IW -% 6+5kd2!3gtRXJ*sPBsVg9bd'OL[EpNi1rkD;'hm7/313&'PHjnNAq -% =CNe%;.&p(tHp%1,]gU(,j+"Y;rJ`&+"(IfCC`LQ084gS.GZ^r-HW,&N/U)?#!j_g+6)rogO -% l:$EE0^g!?h*N[;q[93(hrf]E1S_uTj"ZpDKD(A>8+/80*s)Vpl_FWcFsmK!/HhN4=QI4&lM -% 0M`LX)u+@mh>m%a$_3"5*p/Z+S*jgfH4>G@7fYLYnQC']a3_NmL1RB99I.F.C]H?n`!pa=(E -% :18Dm@F9SI%.VinY\lH!b7po.S;bg+po<-5[:"IKq&&@*q!\>G^($"9$jXB/%`f&;W(Ii9F] -% IHF.H^Bo=2O:O5'PRF,hQ6bj_(JIl?7#`5gu&#rH]$:(6Q'MYOq6n20@b2<:#x -% EndEmbeddedGraphics N 2179 883 E 4d S 3ea6b R b22a36b4 -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -106 292 395 298 rectclip -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 113 300] concat -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 7 7] concat -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 -1 7 262] concat -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 7 18] concat -0 0 0.15 1 10 SU -12 226 T -N -0.15 L -0 nxsetgray -321 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 118 T -N -0.15 L -0 nxsetgray -0 108 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -10 117 T -N -0.15 L -0 nxsetgray -111 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -226 118 T -N -0.15 L -0 nxsetgray -109 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -334 118 T -N -0.15 L -0 nxsetgray -0 108 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -119 9 T -N -0.15 L -0 nxsetgray -0 108 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -227 11 T -N -0.15 L -0 nxsetgray -0 107 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -118 9 T -N -0.15 L -0 nxsetgray -110 0 0 0 line -0 0 T -grestore -grestore -grestore -0 0 0.15 1 10 SU -10 193 T -N -0.15 L -0 nxsetgray -0 49 0 0 line -90 0 49 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -10 136 T -N -0.15 L -0 nxsetgray -0 45 0 0 line --90 0 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -79 144 T -N -0.15 L -0 nxsetgray -47 0 0 0 line -0 47 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -18 143 T -N -0.15 L -0 nxsetgray -51 0 0 0 line -180 0 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -116 82 T -N -0.15 L -0 nxsetgray -0 53 0 0 line -90 0 53 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -116 28 T -N -0.15 L -0 nxsetgray -0 43 0 0 line --90 0 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -191 10 T -N -0.15 L -0 nxsetgray -43 0 0 0 line -0 43 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -125 10 T -N -0.15 L -0 nxsetgray -53 0 0 0 line -180 0 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -299 146 T -N -0.15 L -0 nxsetgray -42 0 0 0 line -0 42 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -235 146 T -N -0.15 L -0 nxsetgray -55 0 0 0 line -180 0 0 arrow -0 0 T -grestore -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU --120 -307 translate -gsave -/Helvetica findfont 12 scalefont [1 0 0 -1 0 0] makefont -12 -exch -defineuserobject -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1119] concat -12 execuserobject setfont -0 nxsetgray -307 564 moveto (a) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU --120 -307 translate -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 981] concat -12 execuserobject setfont -0 nxsetgray -239 495 moveto (a) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU --120 -307 translate -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 853] concat -12 execuserobject setfont -0 nxsetgray -199 431 moveto (a) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU --120 -307 translate -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 845] concat -12 execuserobject setfont -0 nxsetgray -421 427 moveto (a) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU --120 -307 translate -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 763] concat -12 execuserobject setfont -0 nxsetgray -135 386 moveto (a) show -grestore -grestore -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 25 16] concat -0 nxsetgray -0 0 0.15 1 10 SU --138 -316 translate -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 649] concat -12 execuserobject setfont -0 nxsetgray -141 329 moveto (O) show -grestore -grestore -grestore -grestore -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype15/prob08av2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype15/prob08av2.gif deleted file mode 100755 index 55eff2f14..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype15/prob08av2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype15/prob08av3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype15/prob08av3.eps deleted file mode 100755 index eda6e81fc..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype15/prob08av3.eps +++ /dev/null @@ -1,603 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: Untitled10.create -%%Creator: Create -%%CreationDate: Wed Jul 3 09:49:38 1996 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 169 212 468 608 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(2Aj<=/(Z%<^'4i -% CJ8A?gB[I/0"Mq.n[mSN&9hVs56o0HPA]ipUig:i#k5b#4Y>Z!.KDhWO\^mU9QnoOT.>*Bc: -% n^8Z!==:U;M@dg0L0lUl"jP0F>q<1?'d1A]R,&D7SJ&Mi_"d!!?bo\Mi8K-`cTnO71L=o0Xu -% dU1FEWO1N2'qTd,:$(Za32gqbrT"HkNVm$+221sCtD$FmGL,NfIS)DKUCD_D@0!od_HY^'`k -% qMsPDa\Y>6>b"Yf)/]^N@!-UVU#:4\N?Lb">en/s)-kO>7h%8uOM:dZI>T1`7_1ioVQ'%UG1gDt/Eap3 -% s_@m9Lf?$U;>_:]R!+^,c!J*4LeJeOR7[@2Y!?co-A]<=@!3bY+QYj,NQIoZ3(pML*2F+\WD -% M=;ma=dN=ci@dWa]6r_X5-o[T!@fgR%K&jVHYIe)2I$gbrlm!FOaZ`S/L%#k8eg,OZ/#?kc) -% UoHhQ,bT7-M!`ufG?r)XFI$5RkoJcg&0TS!>5aG#9]=ssW17B'jg[<[G#(oie]+9)Zu#SMCTp22NiunN^0VVUQ@l]fO;G80%o -% R;L?3'g'POk)*3ST@Ma(8_j[XQd_FM[D4\,"!_`ak3kUZHBD[4R:2"^*b_\ou5PKIQ.]S+OA -% (0bsm=P7lXr)diR=fLa+OsXboo()_R(JRqjmm=o5_:]@@s:o"=YP>P>dDVk#+B+9:aSR"t*\ -% YU*2<&-1Of6&`:DXmn!t`II'jEMss08%>ORVj_k2.DO$2XL-+dH*3C`S0-n/C;)KT4o_$gd* -% 3%`]!Tt5ICdk\@Tp6E(H'j-Me_Fl)S0*Ua9;R -% :pTR4`:N(T\f_,/c0u.dI<8SWtpoH9c`L/A[/uo`2,cA@^=jCXKo8h1S\5BQ -% iCR[.J?X/e7:A,gdol*0Q\a`tDq=gG`Df4<8tgqM%"QN&\0@mbQDG4O>/O>m&V*i(+rH+r-= -% I1R!2hg*.:\4sRr1fJ1fuOC"<`4'$F#bl=AsnV5`70"ZV1CY@1;,u5U@I:0N1r+PM<>;; -% 3g/@gCi3/di"RR4%c\):X -% Amlr=BTrTd'%-u\3VGe&;Wg -% V?j8&kAQnY]69L[%Yc%`kBuHIjZ78ITJY5C2O@rg"7[(,Gbq3:GX45AIor01D5pi07#Y4sR" -% j,"=F%a^&QU]T2e4&^W(%i!7YQV\rFXq^sH;omPe\&U:BalhkJ3Y6O/1hF8$+FZK_>85=dUh -% ZF=hA$o.7,MD(eY53AQARE: -% &d&bBp9rqnCjCBn<4msb&g8qBENsHtG1:Ms=TuU#\bb(rs%+N%5es%3!#^!4+;8ohJ/dJUeh -% 't5bC.MMO+3[,%bjr[f8p=a!jH8]Ii$30euaL)N8Q&_et!mJfJil8J,l[E`i5[$SLbcD_?RB -% m5Ak<\Li=)!N+EHISu@KcX5j@=q6$6iKEj8PLBIa1%?O>CRjSYXN*0>]R.fX4&V^`XO+e%:I -% OhBrbZi=M3Ro-8QkKO/LKDM7/[MTdXoFetdK3goRI5#:??)6Xr&WI47^8Ud*9TY`HDDNGQoG -% (RLGlBi:=6f*Zn[NsZs[+i2]Y5o"5n'9"'XL?*H\hfXj0:8@KR%A".PmaAP#NVa3`X^[=+#& -% 19D]2p]pkhr&s/>qY1jMD1'lh%A&5_$920)Oj4+^3#_8-A601@6H!k" -% rq]"QT8#I7Lm:J\KRKBba!5/8'#`Hi)WcFB+K`19m)@&Bok5bnA_)CO'$J3\$02Aj<=/(Z%<^'4i -% CJ8A?gB[I/0"Mq.n[mSN&9hVs56o0HPA]ipUig:i#k5b#4Y>Z!.KDhWOH!om&)_ktXTMbt)* -% M>`U"p,D;;l("m(droD5h"DnB'F2rS%:4X:3lU10T;AQmDP7k9`mZ%^_ReB@Z9QWLPm-5Amf -% Qaj(;&Tib%&WTgM?!JDD'bNKG1d:FM<2-RTM -% 38L5Eg&kFSSd*Y*mVoe&SC1Xg8)HsB0`Ret8*JU&$!/+8*ES3)0*-BV+B,u.]DV*]giJgpq) -% !@a)?@2.s[qL3ajgSTHeZf-_6"DN[+G'q5a@1^l&f;c.'39@O*#WYH+c.AV#i^[kVMLt)1Wf -% u5NB643if61)pnN^5&nrVS8i#Y,),QJWAJeGtJ>FDmEgb#gJXd:eR&79g-3.`)[H;80]d[Ta -% [J?$@DKZqRS8rp>LL$O;!id8bF*Iq]GiY8O.Xd!$D5*2g*`Mgr"4=UJ-^5=0H1K_/ -% 0T]ZUH1-1(9_C\Y8PAGEJl%D3?t]=l?X\9-3L;Rat'r+Cs4[[>;H[10RIAs>BUlS'0p>[->V -% LjlfN"V-[fm'GHSP_e9k0mVq$CM9.7N0-9@dNNeSRYIUuT,p;$nZ]We:CMu#-_Vl%T[`N-+p6ar8HM/?r]#TYk@,3+KQ< -% e@A_/,G;NnlbE^:i/[Lju%)=%"1k;W;+9:u>-8r9Bc-po9PQ_?UkJkWdF8@,Pf:6D($#rTYG -% j-"E:r"^F#Z(NRdtaL3j$&SS[.L2LR6mD'5QajdK*G_M$AE"K[n4o$JlA2?go!RqMPYI(1C' -% >@!s`^9dX'KLR%HGe@J[O3J&_,K?IFU.G'VQ,&r**KFQbY.$<2&_c^a2uk=0BHK;;*?ThV@. -% 0iP*uZgtH!W-N)KAI;/6"sOIcWI\,pgCUSko -% /*;:)0tNKW1F8l6T+p`=i9^lsRYu8[1SrZ$]EM?&,H2G1n&P:C%(K!:U'6#*UYejeM"#k#m1 -% 1eMUAJ/QMsN%B4_!!52Yi:L3kHM$A+2N%HM@+'X@k-m0(W-qas-WnFq39;QfCWGn&*(XhSL. -% [LuF$`%!/[.oleehq5PBLCOoY-em!n89A#;3i&\(V#qtDdE+<8'p*+/Y[+NEd&H.BT+5AoF7 -% j0?X)*=Ap9QqD.*]*EIc/?i@=3(+YZR3/b?+O]aQN[&J -% X%^35[4F,IL/]!%J0&@5[2Z8d@]pa2rbAp5TU?,e((c!R**>'N2O]_mG1ZC*=h.(X-5!E?Lp -% =&?akX8l@6;-SMq7U,?+NB)!l0ODVZk.NmVI26CZ_ul\<(Fu&iQ%<(,it=VfU.eL[FHcG.oX -% A:'c@jq!@1;Kt/fi*\sFID!8PbpD$cO8#%/#?2RH#^Z;]+7bc#c08Tc2G%cMh>7,%?O#^ppD -% =^(Ug;j2OS,NbB@J?1kE/Z+G)9_ -% D"g!JT^-d*?!?MafLe\)'`$Rrn7Ldc9QcF'"24Ss8Tc"Rs#J -% qrm$%U35%KHJ/x -% EndEmbeddedGraphics N 2081 821 E c5 S 3bafd R 3d762f12 -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -157 219 285 382 rectclip -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 164 227] concat -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[-4.37113e-08 1 -1 -4.37113e-08 262.5 7.500006] concat -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 7 18] concat -0 0 0.15 1 10 SU -12 226 T -N -0.15 L -0 nxsetgray -321 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 118 T -N -0.15 L -0 nxsetgray -0 108 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -10 117 T -N -0.15 L -0 nxsetgray -111 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -226 118 T -N -0.15 L -0 nxsetgray -109 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -334 118 T -N -0.15 L -0 nxsetgray -0 108 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -119 9 T -N -0.15 L -0 nxsetgray -0 108 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -227 11 T -N -0.15 L -0 nxsetgray -0 107 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -118 9 T -N -0.15 L -0 nxsetgray -110 0 0 0 line -0 0 T -grestore -grestore -grestore -0 0 0.15 1 10 SU -10 193 T -N -0.15 L -0 nxsetgray -0 49 0 0 line -90 0 49 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -10 136 T -N -0.15 L -0 nxsetgray -0 45 0 0 line --90 0 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -79 144 T -N -0.15 L -0 nxsetgray -47 0 0 0 line -0 47 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -18 143 T -N -0.15 L -0 nxsetgray -51 0 0 0 line -180 0 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -116 82 T -N -0.15 L -0 nxsetgray -0 53 0 0 line -90 0 53 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -116 28 T -N -0.15 L -0 nxsetgray -0 43 0 0 line --90 0 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -191 10 T -N -0.15 L -0 nxsetgray -43 0 0 0 line -0 43 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -125 10 T -N -0.15 L -0 nxsetgray -53 0 0 0 line -180 0 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -299 146 T -N -0.15 L -0 nxsetgray -42 0 0 0 line -0 42 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -235 146 T -N -0.15 L -0 nxsetgray -55 0 0 0 line -180 0 0 arrow -0 0 T -grestore -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU --164 -227 translate -gsave -/Helvetica findfont 12 scalefont [1 0 0 -1 0 0] makefont -12 -exch -defineuserobject -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 491] concat -12 execuserobject setfont -0 nxsetgray -237 250 moveto (a) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU --164 -227 translate -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 623] concat -12 execuserobject setfont -0 nxsetgray -279 316 moveto (a) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU --164 -227 translate -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 839] concat -12 execuserobject setfont -0 nxsetgray -413 424 moveto (a) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU --164 -227 translate -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1059] concat -12 execuserobject setfont -0 nxsetgray -277 534 moveto (a) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU --164 -227 translate -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 701] concat -12 execuserobject setfont -0 nxsetgray -347 355 moveto (a) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU --164 -227 translate -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 503] concat -12 execuserobject setfont -0 nxsetgray -178 256 moveto (O) show -grestore -grestore -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype15/prob08av4.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype15/prob08av4.gif deleted file mode 100755 index 1af8551f8..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype15/prob08av4.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype15/prob08av5.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype15/prob08av5.eps deleted file mode 100755 index 2fc1e9f7c..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype15/prob08av5.eps +++ /dev/null @@ -1,590 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: Untitled13.create -%%Creator: Create -%%CreationDate: Wed Jul 3 09:57:39 1996 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 120 265 510 528 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(T@fr_fmulV^3rR1#sX_*\I+: -% niMk"Mdtc6m`'C+?\"](2_a8S)U$:4-pUe]flcF*\87MV*NM6)V?5Y7Z9'-p2H-]`s`A/@GK -% 'u,M^K^2g"8>@Dg'/of74Mc2iKl$l_9>kR\30UQ5I/D8O@S_hJASoBFlMEN_Y&QoAj<&>-[H -% 3("Q@eA0$@"dS$NJ-&JI7i;SuGMX0G`4uNrlB/md*I-'f_[I@@&H`G"gsBI<2S^FYL:thS+G -% r)0J4#)Ja8gi$0]"L9%3_[XXp8-9>UE/:3B1Pf_8(rrIm>TIXjnQZs`aZr49@iRF^E?IB -% ;J9d]U7*$[`Od=)i#6^40<9aHKg/qpg#(Q]QOl[p*!4\?H?FA0m(h/A&EWJnIc0uQ=%5]dC6 -% "-R/"r_Sgj@1"V;,fdoN^Cl%711pa?5St;<>86!M31@2(;(3oR\dP$VeU>%ALD;>'"6t2WQf -% /2BnS20Q<.;079>tD!0@L+JRfCDWLX05=L*PkU4?1h3[N@aCnA%6)VCoQ!!+hhYZ+QR^:"gY -% B>l?i5KsNh`Yde=:rrfo&FrC=@:TFn"X]aSL!$j[VBR_)(__;b@&gS<#mBeD$UuIc"9Ji/0'HMVBk[=C0Yhf7HZPelr_06p#5,g^A,j\F-1Q(!)u3Ng6Una4O7ZR4YZ8D'+arpGR$RR<1 -% !f-54u$Rqmt>2)jfOALH*7ql!:gR6IJU?J-t?FG]UbBqg)j:cI"+e[mH#/IPj0B.0=u6$NU2 -% .pHQN+D0lEPScK^a4"V_;$N[1n!)`e_!&S -% (?7@Va8H'Uf*qVsKE$&*>SA"D[3V`E([c?-(-*&Ctm45B?9Gf2BBnsBYFl/guPa9QJRVU,4/P<%4,8$H&/Dd%u!#d0`Hd"orIY7oY>*/ph]p(7@] -% I5QX34_^WlN%*>%),Z9kc]MM5ZBb -% &Tf`MC's$WQPm=kX<:HJVnnJ9Gkm-7`MeINdSdh*!&W%);/ua-/Z9p,>"OE[Z98Y&k^;7Yao"hsPlJ:- -% .Q>M)"a0H'&HZYu7>fP)Kug((7$1)o3D:7"'U^[U-;Abr;eY$n8-,jT27!Tg7nQ@Oi.M+:`5 -% s;Y^$uDS$\/>L\f*_DOcT+`PJO=]8:;[PX,---,/A02:S&SQSl5h3>*)Q)mch#pmcXEE/F"]"50OYl& -% 0Uq3oLA8iNt'>q(]7MhbfZ[)=_*-=aaTf]S!uVqCq32U.05oPV+9?CFq/11:DKYQ90r"$fiM -% 1f\i?b]BkRhq`_uLhocO*Wc&@)?#=['5DHBWb(5b)E0;rN"5oOCVpnGBj[j:[Uue0djkA/8Uuci9m\bfbmr -% 9#NTqPPVB*?r)hubXP,K=D9X&2oWTAgAS#<:DuH^m!0A$_X^SbJR!+gnPE7V?J@Q+S: -% 7eCALL29qqK&U4YGq[ZK[\%GKW^=R$*0T7.pG'XH9NI<.tNAL2'Ds_$cFpP['(S_]6LRN,GL -% I$BJpqA@^'hF<5pNS&lr4ef>_sAFcF!XN%,CQ[\$YeI?nrLL"'emTpj`,l?BFX$j$u"[$Ls^ -% C"kY-Q!WLb_&#!SFF#E3-Ff-D4_d@)DrD'+it$t]k9ds4iiKK]X=8"'NI*>-L+l"C!\gK,SL -% G+ag3LuUPR49ZKdp->=9*@Ox -% EndEmbeddedGraphics N 2092 82c E 2d S 3b541 R 344cbf64 -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -120 265 390 263 rectclip -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 127 273] concat -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 7 7] concat -0 0 0.15 1 10 SU -9 9 T -N -0.15 L -0 nxsetgray -0 217 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 224 T -N -0.15 L -0 nxsetgray -324 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -333 9 T -N -0.15 L -0 nxsetgray -0 215 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -224 9 T -N -0.15 L -0 nxsetgray -109 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 9 T -N -0.15 L -0 nxsetgray -108 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -118 9 T -N -0.15 L -0 nxsetgray -0 108 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -225 9 T -N -0.15 L -0 nxsetgray -0 109 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -118 116 T -N -0.15 L -0 nxsetgray -108 0 0 0 line -0 0 T -grestore -0 nxsetgray -0 0 0.15 1 10 SU --134 -280 translate -gsave -/Helvetica findfont 12 scalefont [1 0 0 -1 0 0] makefont -12 -exch -defineuserobject -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 605] concat -12 execuserobject setfont -0 nxsetgray -199 307 moveto (a) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU --134 -280 translate -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 603] concat -12 execuserobject setfont -0 nxsetgray -417 306 moveto (a) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU --134 -280 translate -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 815] concat -12 execuserobject setfont -0 nxsetgray -305 412 moveto (a) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU --134 -280 translate -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 683] concat -12 execuserobject setfont -0 nxsetgray -342 346 moveto (a) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU --134 -280 translate -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 895] concat -12 execuserobject setfont -0 nxsetgray -478 452 moveto (a) show -grestore -grestore -0 0 0.15 1 10 SU -348 179 T -N -0.15 L -0 nxsetgray -0 45 0 0 line -90 0 45 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -348 117 T -N -0.15 L -0 nxsetgray -0 41 0 0 line --90 0 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -295 21 T -N -0.15 L -0 nxsetgray -38 0 0 0 line -0 38 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -225 21 T -N -0.15 L -0 nxsetgray -52 0 0 0 line -180 0 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -211 73 T -N -0.15 L -0 nxsetgray -0 43 0 0 line -90 0 43 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -211 9 T -N -0.15 L -0 nxsetgray -0 40 0 0 line --90 0 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -182 128 T -N -0.15 L -0 nxsetgray -43 0 0 0 line -0 43 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -117 128 T -N -0.15 L -0 nxsetgray -46 0 0 0 line -180 0 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -80 22 T -N -0.15 L -0 nxsetgray -38 0 0 0 line -0 38 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -9 22 T -N -0.15 L -0 nxsetgray -47 0 0 0 line -180 0 0 arrow -0 0 T -grestore -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU --127 -273 translate -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 577] concat -12 execuserobject setfont -0 nxsetgray -139 293 moveto (O) show -grestore -grestore -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype15/prob08av5.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype15/prob08av5.gif deleted file mode 100755 index 2af94c049..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype15/prob08av5.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype15/prob08av6.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype15/prob08av6.eps deleted file mode 100755 index e259a10ab..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype15/prob08av6.eps +++ /dev/null @@ -1,596 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: Untitled14.create -%%Creator: Create -%%CreationDate: Wed Jul 3 09:59:21 1996 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 112 256 515 535 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(puk63IQ)1m'XW2X[HOV<,_YA/DG1_1`!/2I%]X1]W1;Clo;S`gAB*\B(@R"pUDJDW[ -% `$DWZot3cr*];.qK8"Qg!.t_>E#=3:0LU./D_hN@U( -% '$=^u5\W^`^OQ2p>Y3LG[(kK5h^UJ--3!?C9[[+]]tFEG67k#9.P?=,(iQcp6D(`f3h8#Yuj -% F?7.*4E_1,A!0G;'#6\MV<;HS;>$,:2#(Q]OM<1UL!3gWJ?F.aCQskeN@_blGf[/7t[='62+ -% CG=+6j'-Bp6Js&U.2%cG.O!;@!`)YgMNVe2dCLH.E@s"cq-`uEFrIBh0.V&(Z$"hQ$6P\lch -% A(I.Pm4?[gD-_-]K=*%2q\"p2k7JdVY4+;YPX32%<,$E9_T+,5%!La@(tU5F3:^nQ`'_C-Xg -% 2WCY[O*LF*,_n`&C#"hU,g"#g9tKk*W_lMojcs7fW;r9>&41%QKk1lf#ZF_*!2F>Lj^tNt@uqOBkjG]H.`nKM:eGF+Q-Agb0>IY@` -% hgN&!"ar:$TFO._fEESQ-N:E__F8Y:CabAO*F!OhRlH(Kaatg%Ne&l"@0?`OMY5$iNX+* -% 2Eq_K/u#43Od6pk`Hf,fOBFLEPXc)nH,8j.(Bj^Pouf'>q$ABF>`9/"unRZ4b@0S%O=Qp=TE`;o7fR)WF/mgcCDI"igW#h2HsGX*,&XF?WhR`&b-/h]T&d=\::#A:pU[o\!V5T`Ys -% 9fi2!N=UgGS7f]@PE;jZ9?Z/mM="f@A<7[2s2PFC4@)f]mU_3TTLBq^UImrft.MS0en>#_^' -% fG;i&iDf:#u)#!r@Z+tJm<8\FXpngDB`gtFU/X+`.-FZ0D?*7f0gJ?+JA\V[t#^"1g_6SgH^ -% XH%QFTQ)Ze"4"B"6)UO<4emTb]PuPk3d^2%,8G7B!8N).r?20>F3'7L,"r"%9$\jR`No('2$ -% DUel1P(0%D$JfFWj4"Fu`-#Y&6S)&P[g^a[?H$< -% WV9VQqa!%F@cN!=0g#!\C/scr;.hb0nGJ'N5!A(]u\t:l,D[bS6C]\Njgi<.Ub? -% B40?j`Q[5LH<-a@GhD,)B1tXA?k"Bn2'*,uC#:c)IQa*>qRakAk2S#5=_Y>?0Wu,Iq+E5UuJ -% 0>SL#Xfd8i.?/2;gS%'@@d$m;2ja\;Z-1MBE3?,CrgGn!\!;!'=q"pNom%b/:^.U\P7acoV2 -% ?+-pl$i:-tWF$O44sgd\jVPKq[<&OR]l>ABOldOD'ACK!J#Ob'Li[&Q2&VEu/H;P6L$U./^f -% 2j:7=N]OQ\?8*3R!2+iBTYQdI9rV/r.bCgqcXE[7B3=%H5gq.=;?sO&RR8O#lXK$g>6FItZfS%LH0pL7-=l*G92_od!MJIEdC7)sh'[=]S'+016Z2W(!#l!TAB -% XC!]MMq=Gs+g^8hcsKHjr=[E,6HgH9&kZ$StJsr8BDG8pRIq:c6Iut&C_0mG->b$ -% 5BhG.d<0<@ru"X>N^3XX#>;n(%-M4mq8F`0s-9hqmIo_,>"K%s -% ,N72Roer*U/9-ee"AXJ/\Rka$@]X?q=?[REU=2KEf4'8/Dq=UdC?G81!M@`(x -% EndEmbeddedGraphics N 2121 849 E a4 S 3de0c R 9aedac3c -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -112 256 403 279 rectclip -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 119 264] concat -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 7 7] concat -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 -1 7 243] concat -0 0 0.15 1 10 SU -10 10 T -N -0.15 L -0 nxsetgray -0 217 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -10 225 T -N -0.15 L -0 nxsetgray -324 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -334 10 T -N -0.15 L -0 nxsetgray -0 215 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -225 10 T -N -0.15 L -0 nxsetgray -109 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -10 10 T -N -0.15 L -0 nxsetgray -108 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -119 10 T -N -0.15 L -0 nxsetgray -0 108 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -226 10 T -N -0.15 L -0 nxsetgray -0 109 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -119 117 T -N -0.15 L -0 nxsetgray -108 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -349 180 T -N -0.15 L -0 nxsetgray -0 45 0 0 line -90 0 45 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -349 118 T -N -0.15 L -0 nxsetgray -0 41 0 0 line --90 0 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -296 22 T -N -0.15 L -0 nxsetgray -38 0 0 0 line -0 38 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -226 22 T -N -0.15 L -0 nxsetgray -52 0 0 0 line -180 0 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -212 74 T -N -0.15 L -0 nxsetgray -0 43 0 0 line -90 0 43 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -212 10 T -N -0.15 L -0 nxsetgray -0 40 0 0 line --90 0 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -183 129 T -N -0.15 L -0 nxsetgray -43 0 0 0 line -0 43 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -118 129 T -N -0.15 L -0 nxsetgray -46 0 0 0 line -180 0 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -81 23 T -N -0.15 L -0 nxsetgray -38 0 0 0 line -0 38 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -10 23 T -N -0.15 L -0 nxsetgray -47 0 0 0 line -180 0 0 arrow -0 0 T -grestore -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU --126 -271 translate -gsave -/Helvetica findfont 12 scalefont [1 0 0 -1 0 0] makefont -12 -exch -defineuserobject -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 983] concat -12 execuserobject setfont -0 nxsetgray -199 496 moveto (a) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU --126 -271 translate -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 769] concat -12 execuserobject setfont -0 nxsetgray -304 389 moveto (a) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU --126 -271 translate -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 905] concat -12 execuserobject setfont -0 nxsetgray -342 457 moveto (a) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU --126 -271 translate -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 983] concat -12 execuserobject setfont -0 nxsetgray -417 496 moveto (a) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU --126 -271 translate -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 691] concat -12 execuserobject setfont -0 nxsetgray -480 350 moveto (a) show -grestore -grestore -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU --119 -264 translate -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 577] concat -12 execuserobject setfont -0 nxsetgray -139 293 moveto (O) show -grestore -grestore -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype15/prob08av6.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype15/prob08av6.gif deleted file mode 100755 index 71c08a371..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype15/prob08av6.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype15/prob08av7.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype15/prob08av7.eps deleted file mode 100755 index 15040d03c..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype15/prob08av7.eps +++ /dev/null @@ -1,597 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: Untitled15.create -%%Creator: Create -%%CreationDate: Wed Jul 3 10:01:38 1996 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 185 184 464 587 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(%,&dGCQ]rL!sAT -% XQ7RQmB*Aiud'^"1+_ScgSP(o9R6d8sAag:O9TY'O!-n(d.>T@fr_fmulV^3rR1#sX_*\I+: -% niMk"Me!97&C5$+?\"](2_a8S)U$:4-pUe]flcF*\87MV*NK0&2LIY7Z80o]'SB"LQ35h>f+ -% "=P@h=m2f@j+&]9@HEU.]6@%7<#8JsF0b0V:MAk*pH>hXjnF+t,5)!KMVQh+P"n1ek6]I?U( -% #B>JRe5-5`B,"=")Z^F>>odK%BHDJ0L_0_*E3)P6(NeS4_[J>/Ldqk-fPlIu1"ZKDKGjVE_g -% j2i?ipl[c6*2t1;nFT$oW?$K+'[]QQZet^sHME)pU.sF^cJ[#'+jji79(rq3 -% sKEC=ZEY9O^gkH.9R2g02+SnW?7f]?E,K/@C0@O)8p,. -% :d$e6j'3L()L7sWb*VaGf$m:@=8W/>Ag,C=57r@1$9NudSXWtEb8jk?$G1[2r5D5SX82ZmF= -% /]I.c<^hgX%ZiEnl],Y4SZ#R\YlJdi(^+;YVb=J6]N'$2;R+c_puM'mVJ,)^]ei$+*tb"/:e -% 39nS[O*CXRUk_A[M-Q3K/BL>E:V%-LW`)rDAX6bDWIU=i&7T;qV2uS9+B#HG!2FDV"_XWQ:> -% 4E;H=i'!D#S5X5c;OdFjH(:#kjG]J1?g'K;Gq4`Q-Agb0>IYH7 -% LGPHi3mU"X$&SC>SnEHt1c+a=i1U0 -% 0N_-kV$8k:eG7WT$5Le;iYIsLjNN_#K@gN5CrHA"u^n[!J -% 5p.0N^p'T\a*Dm"XR.$t`I>u>\Au]#5-!S=,-EE3;NEfOX=4Vi-[F0J?G@IW)^#kE[ZgDOQ`V\9WDBfL@WBr(@E$!g -% T#-$kK9lC`X?Jd=-2c"E(AD\n;Fi:2fo!tc3Z?f[7dYFmGea.__adKBs="FN#/m1&6f$O+l3 -% bk>uJ?!D=doo^94G\o1/Hn;OG[iM.@;D&889T3rmX32jM -% `aE2o,p3+7\;?0Y2uTZKiGn/.$>TF"O>8/Tco"uO]c,5*c!71.BE80;1+9q9RR575'&Y=F*)&*k0SV<4'*+;B5ep&jM(iHa$5YAs.\dk -% Eep/gX/I[IP$D1eh5&R>F2Q67Tj:-Sb^Q9Ri]:RW9iM.^#16@)N!WXj?B5-^%937uES;?FmV#D7Y>m>hPJ\[">"sAG\0!q;_KkP0IMTl3)1nW -% Z9BL]u*O,bt0Sa%I'424V=>=dkO.o<2pd:1E8hW^k0NG8#)FrGm#mnGddJ5pi_eXmc/Tb+%J -% ;(HriV65oZ:A*%*6gBAW;?Hn+#QP4s=B"Il<+<$>lX47<-^pWLTE_`R<>Zkp'Y&9>6&"Gt.; -% IADL3'+aok7=Xf`f+l5R@Hn!Fb;._@n9iY%#)BA+KuZJk@p4bRhr)/dkaS8sHYPKhYH0b>F= -% P<2u5A6:&Qk!"7.=X+fr@CV^A4`K&J*AM#H:%7UK$?m5Tsj_\V%\_3\]G;$j>.VSD\eW=[BT -% I:(r"m!3tQ:>]%q1P_iAXhMrpL6_Z"Wq2FJU$3Y?Fi&IXrbT`BLA3l$a=4pcDk#\he?n?)* -% 9:,%3fIAcj5QFul@c&XP\=Q]=EM'gDj>J.pGA%V2a4b%A;E)V#ok/bEHrGZ/6Rqg9!#l!dAB -% k,)]MX.IPkB?-Fu!L:J.4a_G)Vk!gSr)<_O-FC4Q[j>2A"[R"D.8]B(E[h`PQb:N$1mVd8j] -% _=:Ql$pl(LkF83q0%eE@%c-%jYoZW1.$QC"T?iVbQ]KSliS3pNFO=GgG$[$IDdRbj#2uq]f/_?uReb_3g6%!#>LtL'"%`Ao*X(O=,(oT!71kR -% "^j$6P3c65VC6(JR;^]rd:FA-7S!J##ZC&>gG7E`/5NDir@gFDtnG)Ot3?:hbUcL"'g&P*dq -% Bd6e4]B6SpZi/qL#+=46-MT4r0a7Y`gt]q4E4VYMB4afig$#MY-&d@iX.231rPkb3J37MN$= -% (3N27?TgEFsp*)qMx -% EndEmbeddedGraphics N 2129 851 E c8 S 3d8a4 R 49050f08 -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -185 184 279 403 rectclip -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 192 192] concat -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 7 7] concat -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[-4.37113e-08 1 1 4.37113e-08 7.000008 6.999995] concat -0 0 0.15 1 10 SU -10 10 T -N -0.15 L -0 nxsetgray -0 217 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -10 225 T -N -0.15 L -0 nxsetgray -324 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -334 10 T -N -0.15 L -0 nxsetgray -0 215 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -225 10 T -N -0.15 L -0 nxsetgray -109 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -10 10 T -N -0.15 L -0 nxsetgray -108 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -119 10 T -N -0.15 L -0 nxsetgray -0 108 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -226 10 T -N -0.15 L -0 nxsetgray -0 109 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -119 117 T -N -0.15 L -0 nxsetgray -108 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -349 180 T -N -0.15 L -0 nxsetgray -0 45 0 0 line -90 0 45 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -349 118 T -N -0.15 L -0 nxsetgray -0 41 0 0 line --90 0 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -296 22 T -N -0.15 L -0 nxsetgray -38 0 0 0 line -0 38 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -226 22 T -N -0.15 L -0 nxsetgray -52 0 0 0 line -180 0 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -212 74 T -N -0.15 L -0 nxsetgray -0 43 0 0 line -90 0 43 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -212 10 T -N -0.15 L -0 nxsetgray -0 40 0 0 line --90 0 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -183 129 T -N -0.15 L -0 nxsetgray -43 0 0 0 line -0 43 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -118 129 T -N -0.15 L -0 nxsetgray -46 0 0 0 line -180 0 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -81 23 T -N -0.15 L -0 nxsetgray -38 0 0 0 line -0 38 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -10 23 T -N -0.15 L -0 nxsetgray -47 0 0 0 line -180 0 0 arrow -0 0 T -grestore -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU --199 -199 translate -gsave -/Helvetica findfont 12 scalefont [1 0 0 -1 0 0] makefont -12 -exch -defineuserobject -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1113] concat -12 execuserobject setfont -0 nxsetgray -371 561 moveto (a) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU --199 -199 translate -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 983] concat -12 execuserobject setfont -0 nxsetgray -225 496 moveto (a) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU --199 -199 translate -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 835] concat -12 execuserobject setfont -0 nxsetgray -262 422 moveto (a) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU --199 -199 translate -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 757] concat -12 execuserobject setfont -0 nxsetgray -332 383 moveto (a) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU --199 -199 translate -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 551] concat -12 execuserobject setfont -0 nxsetgray -226 280 moveto (a) show -grestore -grestore -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU --192 -192 translate -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 431] concat -12 execuserobject setfont -0 nxsetgray -211 220 moveto (O) show -grestore -grestore -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype15/prob08av7.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype15/prob08av7.gif deleted file mode 100755 index d123d63fc..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype15/prob08av7.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype15/prob08av8.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype15/prob08av8.eps deleted file mode 100755 index 125e1a2e7..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype15/prob08av8.eps +++ /dev/null @@ -1,596 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: Untitled16.create -%%Creator: Create -%%CreationDate: Wed Jul 3 10:03:25 1996 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 151 183 430 586 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(^O]KN#$YlV^3rR1#sX_*\I+: -% niMk"Me"$6m`3P+?\"m2Q^,nS)g0D9:&T6]fliL/pqoJ^Ij'S!?bo\Mi8K-`cTnO71L=o0Xu -% dU1FEWO1N2'qTd,:$(Za32gqbrT"HkNVm$+221sCtD$FmGL,NfIS)DKUCD_D@0!od_HY^'`k -% qMsPDa\Y>6>b"Yf)/]^N@!-UVU#:4\N?Lb">en/s)-kO>7h%8uOM:dZI>T1`7_1ioVQ'%UG1gDt/Eap3 -% s_@m9Lf?$U;>_:]\!+^,c!J0GZPoTme7[@2X!?aXBA];b0!3YS*QYa,#R@$U3(pML*2E\DSD -% QT-@Lc#/HdD0Fla]6r_WngfZT!8#^gMFCa((,'$@CKK_cUBcuFk7pPL3D?t#G-2$NFW<%d)cEh2V3P.t)+Kr"Ht`j0LBbUfR;<"hkbE%D'doi#>2 -% %\GHe(ZRVO[eXBlV0>2l^rNRJL^!fkiZ^36(UT-;S-bHC!XL$%s3NeXnS6tEnDOrY8484^#cc -% cSfHF2.ANB5M@;B!#LpU&S495kec* -% t'tm15:N(TTf_,/s^$Q,$<8S'dpoH88`gI?JKR-Ds%5?&iOdo+0-&D$%CP\)sf/C8dn/I@MnC8QO^"HYnMQI;"4WfR3oOX4G#.=a.3+e/P2_ug3UMFrOF'2c8i#ui? -% J]=G55'@YD;q_UsX3UAT#kbW!BWMirjAXN'_-304n%obr2P$J7rfTLMkY'.rKS`M -% l_3U@Y@;BP/.T$32@T?j2+hk6Y#Ld^gV\VMh9"6#ZVP5VQ\!/"itJK,W.])AP/$jm5H$qpEb -% kJdXLP#66;?K<#>[X/n1[CC()D98QZWAMG\IY(DK11fq/PKdLDgqHLZ:=/hb(.qm\JKq"eZ! -% #Cr7C0)=Ykj$Wte4hJeB:?lo#!rpW%7!7@\^7d>(SYT"X(IE=dCQ3A\00>=9h!.#'[50^KXF -% cpq)Or0hW_WMc*!diE>7Qo%<@gRleh(6,-lK+ZZt`H"`:3fU`S/,PS -% @HVVbM2=+g2XT[&BCF#q7 -% a%_8>3^c0Zj.Res/eC9uGB12ItK9]WRj028.n"\VXBc/#/P_#KN+LZW6 -% f'#2fRI[XJ\io2*PFBR\8D"a^0_)Cf4Pd/p25He&=5t4XelOR^^+[2jIX`9[_BsB0%m?4DR/ -% ,f;IP\=(bjqYMU([QH,95gt;*uB3un;$x -% EndEmbeddedGraphics N 2118 846 E 96 S 3e698 R 3f006ac0 -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -151 183 279 403 rectclip -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 158 191] concat -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 7 7] concat -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[4.37113e-08 1 -1 4.37113e-08 242.999985 6.999995] concat -0 0 0.15 1 10 SU -10 10 T -N -0.15 L -0 nxsetgray -0 217 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -10 225 T -N -0.15 L -0 nxsetgray -324 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -334 10 T -N -0.15 L -0 nxsetgray -0 215 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -225 10 T -N -0.15 L -0 nxsetgray -109 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -10 10 T -N -0.15 L -0 nxsetgray -108 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -119 10 T -N -0.15 L -0 nxsetgray -0 108 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -226 10 T -N -0.15 L -0 nxsetgray -0 109 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -119 117 T -N -0.15 L -0 nxsetgray -108 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -349 180 T -N -0.15 L -0 nxsetgray -0 45 0 0 line -90 0 45 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -349 118 T -N -0.15 L -0 nxsetgray -0 41 0 0 line --90 0 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -296 22 T -N -0.15 L -0 nxsetgray -38 0 0 0 line -0 38 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -226 22 T -N -0.15 L -0 nxsetgray -52 0 0 0 line -180 0 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -212 74 T -N -0.15 L -0 nxsetgray -0 43 0 0 line -90 0 43 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -212 10 T -N -0.15 L -0 nxsetgray -0 40 0 0 line --90 0 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -183 129 T -N -0.15 L -0 nxsetgray -43 0 0 0 line -0 43 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -118 129 T -N -0.15 L -0 nxsetgray -46 0 0 0 line -180 0 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -81 23 T -N -0.15 L -0 nxsetgray -38 0 0 0 line -0 38 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -10 23 T -N -0.15 L -0 nxsetgray -47 0 0 0 line -180 0 0 arrow -0 0 T -grestore -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU --165 -198 translate -gsave -/Helvetica findfont 12 scalefont [1 0 0 -1 0 0] makefont -12 -exch -defineuserobject -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1109] concat -12 execuserobject setfont -0 nxsetgray -236 559 moveto (a) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU --165 -198 translate -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 833] concat -12 execuserobject setfont -0 nxsetgray -343 421 moveto (a) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU --165 -198 translate -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 983] concat -12 execuserobject setfont -0 nxsetgray -382 496 moveto (a) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU --165 -198 translate -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 757] concat -12 execuserobject setfont -0 nxsetgray -275 383 moveto (a) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU --165 -198 translate -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 549] concat -12 execuserobject setfont -0 nxsetgray -381 279 moveto (a) show -grestore -grestore -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU --158 -191 translate -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 431] concat -12 execuserobject setfont -0 nxsetgray -178 220 moveto (O) show -grestore -grestore -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype15/prob08av8.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype15/prob08av8.gif deleted file mode 100755 index 50a239453..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype15/prob08av8.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob05a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob05a.eps deleted file mode 100755 index 6260fa9af..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob05a.eps +++ /dev/null @@ -1,2447 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Two_mass_spr.eps -%%CreationDate: 5/2/1996 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%BoundingBox:139 513 413 593 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -2486 4622 7018 4778 R -1 sg fill -gr -gs -2486.625 4622.625 7018.375 4778.375 R -1.25 slw 0 sg str -gr -gs -5299 3684 6237 4622 R -0.75 sg fill -gr -gs -5299.625 3684.625 6237.375 4622.375 R -1.25 slw 0 sg str -gr -gs -5299.5 3684.5 m -5299.5 4622.5 L -35 slw 0 sg str -gr -gs -4675 4153 4675 3961 4683 3962 4691 3965 4699 3970 4706 3977 4713 3986 4719 3997 -4725 4010 4731 4025 4735 4041 4739 4057 4743 4073 4746 4089 4749 4105 4751 4121 -4752 4137 4753 4153 4754 4169 4754 4185 4753 4201 4752 4217 4751 4233 4749 4249 -4746 4265 4744 4281 4740 4296 4737 4309 4733 4320 4730 4329 4726 4336 4722 4341 -4718 4344 4714 4345 4710 4344 4706 4341 4701 4336 4697 4329 4692 4320 4687 4309 -4682 4296 4678 4281 4675 4271 4675 4153 4679 4137 4685 4121 4692 4105 4700 4089 -4709 4073 4720 4057 4731 4041 4744 4025 4756 4010 4769 3997 4781 3986 4792 3977 -4803 3970 4813 3965 4823 3962 4832 3961 4841 3962 4849 3965 4857 3970 4864 3977 -4871 3986 4877 3997 4883 4010 4889 4025 4893 4041 4897 4057 4901 4073 4904 4089 -4906 4105 4908 4121 4910 4137 4911 4153 4911 4169 4911 4185 4911 4201 4910 4217 -4908 4233 4906 4249 4904 4265 4901 4281 4897 4296 4894 4309 4890 4320 4887 4329 -4883 4336 4879 4341 4875 4344 4871 4345 4867 4344 4863 4341 4859 4336 4854 4329 -4850 4320 4845 4309 4840 4296 4836 4281 4831 4265 4828 4249 4826 4233 4825 4217 -4825 4201 4827 4185 4829 4169 4833 4153 4837 4137 4843 4121 4850 4105 4858 4089 -4867 4073 4878 4057 4889 4041 4902 4025 4914 4010 4927 3997 4939 3986 4950 3977 -4961 3970 4971 3965 4981 3962 4990 3961 4999 3962 5007 3965 5015 3970 5022 3977 -5029 3986 5035 3997 5040 4010 5046 4025 5050 4041 5054 4057 5058 4073 5061 4089 -5064 4105 5066 4121 5068 4137 5069 4153 5069 4169 5069 4185 5069 4201 5068 4217 -5066 4233 5064 4249 5062 4265 5059 4281 5055 4295 5052 4308 5048 4319 5045 4328 -5041 4335 5037 4341 5033 4344 5029 4345 5025 4344 5021 4342 5017 4337 5012 4330 -5008 4322 5003 4311 4998 4299 4994 4285 4989 4269 4986 4253 4984 4237 4983 4221 -4983 4204 4984 4187 4986 4170 4990 4153 4994 4135 5000 4117 5006 4098 5014 4080 -5022 4061 5032 4042 5043 4022 5055 4003 5067 3984 5079 3970 5091 3959 5103 3952 -5114 3948 5126 3949 5137 3952 5148 3960 5158 3971 5169 3986 5179 4005 5189 4027 -5199 4053 5208 4082 5217 4116 5227 4153 195 P -1 sg fill -gr -gs -4675 4153 4399 4153 4399 3987 4404 3996 4409 4009 4415 4025 4419 4041 4423 4057 -4427 4073 4430 4089 4433 4105 4435 4121 4437 4137 4438 4153 4438 4169 4438 4185 -4438 4201 4437 4217 4435 4233 4433 4249 4431 4265 4428 4281 4424 4296 4421 4309 -4417 4320 4414 4329 4410 4336 4406 4341 4402 4344 4399 4345 4399 4064 4404 4057 -4415 4041 4428 4025 4440 4010 4453 3997 4465 3986 4476 3977 4487 3970 4497 3965 -4507 3962 4516 3961 4525 3962 4533 3965 4541 3970 4548 3977 4555 3986 4561 3997 -4567 4010 4573 4025 4577 4041 4581 4057 4585 4073 4588 4089 4591 4105 4593 4121 -4594 4137 4595 4153 4596 4169 4596 4185 4595 4201 4594 4217 4593 4233 4591 4249 -4588 4265 4586 4281 4582 4296 4579 4309 4575 4320 4572 4329 4568 4336 4564 4341 -4560 4344 4556 4345 4552 4344 4548 4341 4543 4336 4539 4329 4534 4320 4529 4309 -4524 4296 4520 4281 4515 4265 4512 4249 4510 4233 4509 4217 4509 4201 4511 4185 -4513 4169 4517 4153 4521 4137 4527 4121 4534 4105 4542 4089 4551 4073 4562 4057 -4573 4041 4586 4025 4598 4010 4611 3997 4623 3986 4634 3977 4645 3970 4655 3965 -4665 3962 4674 3961 4675 3961 106 P -1 sg fill -gr -gs -4399 4153 4123 4153 4134 4116 4144 4082 4155 4053 4165 4027 4175 4005 4184 3986 -4193 3971 4201 3960 4209 3952 4217 3949 4224 3948 4231 3952 4238 3959 4244 3970 -4250 3984 4256 4003 4260 4022 4265 4042 4269 4061 4272 4080 4275 4098 4277 4117 -4279 4135 4280 4153 4280 4170 4281 4187 4280 4204 4279 4221 4278 4237 4276 4253 -4273 4269 4271 4285 4267 4299 4264 4311 4260 4322 4256 4330 4252 4337 4249 4342 -4245 4344 4241 4345 4236 4344 4232 4341 4228 4335 4223 4328 4219 4319 4214 4308 -4209 4295 4205 4281 4200 4265 4197 4249 4195 4233 4194 4217 4194 4201 4196 4185 -4198 4169 4202 4153 4206 4137 4212 4121 4219 4105 4227 4089 4236 4073 4247 4057 -4258 4041 4271 4025 4283 4009 4296 3996 4308 3985 4319 3976 4330 3969 4340 3964 -4350 3961 4359 3960 4368 3961 4376 3964 4384 3969 4391 3976 4398 3985 4399 3987 -79 P -1 sg fill -gr -gs -4399 4064 4393 4073 4384 4089 4376 4105 4369 4121 4363 4137 4359 4153 4355 4169 -4353 4185 4352 4201 4352 4217 4353 4233 4355 4249 4358 4265 4363 4281 4367 4296 -4372 4309 4377 4320 4381 4329 4386 4336 4390 4341 4394 4344 4398 4345 4399 4345 -23 P -1 sg fill -gr -gs -4675 4153 4671 4169 4669 4185 4667 4201 4667 4217 4668 4233 4670 4249 4673 4265 -4675 4271 8 P -1 sg fill -gr -gs -4123.625 4153.625 m -4134.625 4116.625 L -1.25 slw 0 sg str -gr -gs -4134.625 4116.625 m -4144.625 4082.625 L -1.25 slw 0 sg str -gr -gs -4144.625 4082.625 m -4155.625 4053.625 L -1.25 slw 0 sg str -gr -gs -4155.625 4053.625 m -4165.625 4027.625 L -1.25 slw 0 sg str -gr -gs -4165.625 4027.625 m -4175.625 4005.625 L -1.25 slw 0 sg str -gr -gs -4175.625 4005.625 m -4184.625 3986.625 L -1.25 slw 0 sg str -gr -gs -4184.625 3986.625 m -4193.625 3971.625 L -1.25 slw 0 sg str -gr -gs -4193.625 3971.625 m -4201.625 3960.625 L -1.25 slw 0 sg str -gr -gs -4201.625 3960.625 m -4209.625 3952.625 L -1.25 slw 0 sg str -gr -gs -4209.625 3952.625 m -4217.625 3949.625 L -1.25 slw 0 sg str -gr -gs -4217.625 3949.625 m -4224.625 3948.625 L -1.25 slw 0 sg str -gr -gs -4224.625 3948.625 m -4231.625 3952.625 L -1.25 slw 0 sg str -gr -gs -4231.625 3952.625 m -4238.625 3959.625 L -1.25 slw 0 sg str -gr -gs -4238.625 3959.625 m -4244.625 3970.625 L -1.25 slw 0 sg str -gr -gs -4244.625 3970.625 m -4250.625 3984.625 L -1.25 slw 0 sg str -gr -gs -4250.625 3984.625 m -4256.625 4003.625 L -1.25 slw 0 sg str -gr -gs -4256.625 4003.625 m -4260.625 4022.625 L -1.25 slw 0 sg str -gr -gs -4260.625 4022.625 m -4265.625 4042.625 L -1.25 slw 0 sg str -gr -gs -4265.625 4042.625 m -4269.625 4061.625 L -1.25 slw 0 sg str -gr -gs -4269.625 4061.625 m -4272.625 4080.625 L -1.25 slw 0 sg str -gr -gs -4272.625 4080.625 m -4275.625 4098.625 L -1.25 slw 0 sg str -gr -gs -4275.625 4098.625 m -4277.625 4117.625 L -1.25 slw 0 sg str -gr -gs -4277.625 4117.625 m -4279.625 4135.625 L -1.25 slw 0 sg str -gr -gs -4279.625 4135.625 m -4280.625 4153.625 L -1.25 slw 0 sg str -gr -gs -4280.625 4153.625 m -4280.625 4170.625 L -1.25 slw 0 sg str -gr -gs -4280.625 4170.625 m -4281.625 4187.625 L -1.25 slw 0 sg str -gr -gs -4281.625 4187.625 m -4280.625 4204.625 L -1.25 slw 0 sg str -gr -gs -4280.625 4204.625 m -4279.625 4221.625 L -1.25 slw 0 sg str -gr -gs -4279.625 4221.625 m -4278.625 4237.625 L -1.25 slw 0 sg str -gr -gs -4278.625 4237.625 m -4276.625 4253.625 L -1.25 slw 0 sg str -gr -gs -4276.625 4253.625 m -4273.625 4269.625 L -1.25 slw 0 sg str -gr -gs -4273.625 4269.625 m -4271.625 4285.625 L -1.25 slw 0 sg str -gr -gs -4271.625 4285.625 m -4267.625 4299.625 L -1.25 slw 0 sg str -gr -gs -4267.625 4299.625 m -4264.625 4311.625 L -1.25 slw 0 sg str -gr -gs -4264.625 4311.625 m -4260.625 4322.625 L -1.25 slw 0 sg str -gr -gs -4260.625 4322.625 m -4256.625 4330.625 L -1.25 slw 0 sg str -gr -gs -4256.625 4330.625 m -4252.625 4337.625 L -1.25 slw 0 sg str -gr -gs -4252.625 4337.625 m -4249.625 4342.625 L -1.25 slw 0 sg str -gr -gs -4249.625 4342.625 m -4245.625 4344.625 L -1.25 slw 0 sg str -gr -gs -4245.625 4344.625 m -4241.625 4345.625 L -1.25 slw 0 sg str -gr -gs -4241.625 4345.625 m -4236.625 4344.625 L -1.25 slw 0 sg str -gr -gs -4236.625 4344.625 m -4232.625 4341.625 L -1.25 slw 0 sg str -gr -gs -4232.625 4341.625 m -4228.625 4335.625 L -1.25 slw 0 sg str -gr -gs -4228.625 4335.625 m -4223.625 4328.625 L -1.25 slw 0 sg str -gr -gs -4223.625 4328.625 m -4219.625 4319.625 L -1.25 slw 0 sg str -gr -gs -4219.625 4319.625 m -4214.625 4308.625 L -1.25 slw 0 sg str -gr -gs -4214.625 4308.625 m -4209.625 4295.625 L -1.25 slw 0 sg str -gr -gs -4209.625 4295.625 m -4205.625 4281.625 L -1.25 slw 0 sg str -gr -gs -4205.625 4281.625 m -4200.625 4265.625 L -1.25 slw 0 sg str -gr -gs -4200.625 4265.625 m -4197.625 4249.625 L -1.25 slw 0 sg str -gr -gs -4197.625 4249.625 m -4195.625 4233.625 L -1.25 slw 0 sg str -gr -gs -4195.625 4233.625 m -4194.625 4217.625 L -1.25 slw 0 sg str -gr -gs -4194.625 4217.625 m -4194.625 4201.625 L -1.25 slw 0 sg str -gr -gs -4194.625 4201.625 m -4196.625 4185.625 L -1.25 slw 0 sg str -gr -gs -4196.625 4185.625 m -4198.625 4169.625 L -1.25 slw 0 sg str -gr -gs -4198.625 4169.625 m -4202.625 4153.625 L -1.25 slw 0 sg str -gr -gs -4202.625 4153.625 m -4206.625 4137.625 L -1.25 slw 0 sg str -gr -gs -4206.625 4137.625 m -4212.625 4121.625 L -1.25 slw 0 sg str -gr -gs -4212.625 4121.625 m -4219.625 4105.625 L -1.25 slw 0 sg str -gr -gs -4219.625 4105.625 m -4227.625 4089.625 L -1.25 slw 0 sg str -gr -gs -4227.625 4089.625 m -4236.625 4073.625 L -1.25 slw 0 sg str -gr -gs -4236.625 4073.625 m -4247.625 4057.625 L -1.25 slw 0 sg str -gr -gs -4247.625 4057.625 m -4258.625 4041.625 L -1.25 slw 0 sg str -gr -gs -4258.625 4041.625 m -4271.625 4025.625 L -1.25 slw 0 sg str -gr -gs -4271.625 4025.625 m -4283.625 4009.625 L -1.25 slw 0 sg str -gr -gs -4283.625 4009.625 m -4296.625 3996.625 L -1.25 slw 0 sg str -gr -gs -4296.625 3996.625 m -4308.625 3985.625 L -1.25 slw 0 sg str -gr -gs -4308.625 3985.625 m -4319.625 3976.625 L -1.25 slw 0 sg str -gr -gs -4319.625 3976.625 m -4330.625 3969.625 L -1.25 slw 0 sg str -gr -gs -4330.625 3969.625 m -4340.625 3964.625 L -1.25 slw 0 sg str -gr -gs -4340.625 3964.625 m -4350.625 3961.625 L -1.25 slw 0 sg str -gr -gs -4350.625 3961.625 m -4359.625 3960.625 L -1.25 slw 0 sg str -gr -gs -4359.625 3960.625 m -4368.625 3961.625 L -1.25 slw 0 sg str -gr -gs -4368.625 3961.625 m -4376.625 3964.625 L -1.25 slw 0 sg str -gr -gs -4376.625 3964.625 m -4384.625 3969.625 L -1.25 slw 0 sg str -gr -gs -4384.625 3969.625 m -4391.625 3976.625 L -1.25 slw 0 sg str -gr -gs -4391.625 3976.625 m -4398.625 3985.625 L -1.25 slw 0 sg str -gr -gs -4398.625 3985.625 m -4404.625 3996.625 L -1.25 slw 0 sg str -gr -gs -4404.625 3996.625 m -4409.625 4009.625 L -1.25 slw 0 sg str -gr -gs -4409.625 4009.625 m -4415.625 4025.625 L -1.25 slw 0 sg str -gr -gs -4415.625 4025.625 m -4419.625 4041.625 L -1.25 slw 0 sg str -gr -gs -4419.625 4041.625 m -4423.625 4057.625 L -1.25 slw 0 sg str -gr -gs -4423.625 4057.625 m -4427.625 4073.625 L -1.25 slw 0 sg str -gr -gs -4427.625 4073.625 m -4430.625 4089.625 L -1.25 slw 0 sg str -gr -gs -4430.625 4089.625 m -4433.625 4105.625 L -1.25 slw 0 sg str -gr -gs -4433.625 4105.625 m -4435.625 4121.625 L -1.25 slw 0 sg str -gr -gs -4435.625 4121.625 m -4437.625 4137.625 L -1.25 slw 0 sg str -gr -gs -4437.625 4137.625 m -4438.625 4153.625 L -1.25 slw 0 sg str -gr -gs -4438.625 4153.625 m -4438.625 4169.625 L -1.25 slw 0 sg str -gr -gs -4438.625 4169.625 m -4438.625 4185.625 L -1.25 slw 0 sg str -gr -gs -4438.625 4185.625 m -4438.625 4201.625 L -1.25 slw 0 sg str -gr -gs -4438.625 4201.625 m -4437.625 4217.625 L -1.25 slw 0 sg str -gr -gs -4437.625 4217.625 m -4435.625 4233.625 L -1.25 slw 0 sg str -gr -gs -4435.625 4233.625 m -4433.625 4249.625 L -1.25 slw 0 sg str -gr -gs -4433.625 4249.625 m -4431.625 4265.625 L -1.25 slw 0 sg str -gr -gs -4431.625 4265.625 m -4428.625 4281.625 L -1.25 slw 0 sg str -gr -gs -4428.625 4281.625 m -4424.625 4296.625 L -1.25 slw 0 sg str -gr -gs -4424.625 4296.625 m -4421.625 4309.625 L -1.25 slw 0 sg str -gr -gs -4421.625 4309.625 m -4417.625 4320.625 L -1.25 slw 0 sg str -gr -gs -4417.625 4320.625 m -4414.625 4329.625 L -1.25 slw 0 sg str -gr -gs -4414.625 4329.625 m -4410.625 4336.625 L -1.25 slw 0 sg str -gr -gs -4410.625 4336.625 m -4406.625 4341.625 L -1.25 slw 0 sg str -gr -gs -4406.625 4341.625 m -4402.625 4344.625 L -1.25 slw 0 sg str -gr -gs -4402.625 4344.625 m -4398.625 4345.625 L -1.25 slw 0 sg str -gr -gs -4398.625 4345.625 m -4394.625 4344.625 L -1.25 slw 0 sg str -gr -gs -4394.625 4344.625 m -4390.625 4341.625 L -1.25 slw 0 sg str -gr -gs -4390.625 4341.625 m -4386.625 4336.625 L -1.25 slw 0 sg str -gr -gs -4386.625 4336.625 m -4381.625 4329.625 L -1.25 slw 0 sg str -gr -gs -4381.625 4329.625 m -4377.625 4320.625 L -1.25 slw 0 sg str -gr -gs -4377.625 4320.625 m -4372.625 4309.625 L -1.25 slw 0 sg str -gr -gs -4372.625 4309.625 m -4367.625 4296.625 L -1.25 slw 0 sg str -gr -gs -4367.625 4296.625 m -4363.625 4281.625 L -1.25 slw 0 sg str -gr -gs -4363.625 4281.625 m -4358.625 4265.625 L -1.25 slw 0 sg str -gr -gs -4358.625 4265.625 m -4355.625 4249.625 L -1.25 slw 0 sg str -gr -gs -4355.625 4249.625 m -4353.625 4233.625 L -1.25 slw 0 sg str -gr -gs -4353.625 4233.625 m -4352.625 4217.625 L -1.25 slw 0 sg str -gr -gs -4352.625 4217.625 m -4352.625 4201.625 L -1.25 slw 0 sg str -gr -gs -4352.625 4201.625 m -4353.625 4185.625 L -1.25 slw 0 sg str -gr -gs -4353.625 4185.625 m -4355.625 4169.625 L -1.25 slw 0 sg str -gr -gs -4355.625 4169.625 m -4359.625 4153.625 L -1.25 slw 0 sg str -gr -gs -4359.625 4153.625 m -4363.625 4137.625 L -1.25 slw 0 sg str -gr -gs -4363.625 4137.625 m -4369.625 4121.625 L -1.25 slw 0 sg str -gr -gs -4369.625 4121.625 m -4376.625 4105.625 L -1.25 slw 0 sg str -gr -gs -4376.625 4105.625 m -4384.625 4089.625 L -1.25 slw 0 sg str -gr -gs -4384.625 4089.625 m -4393.625 4073.625 L -1.25 slw 0 sg str -gr -gs -4393.625 4073.625 m -4404.625 4057.625 L -1.25 slw 0 sg str -gr -gs -4404.625 4057.625 m -4415.625 4041.625 L -1.25 slw 0 sg str -gr -gs -4415.625 4041.625 m -4428.625 4025.625 L -1.25 slw 0 sg str -gr -gs -4428.625 4025.625 m -4440.625 4010.625 L -1.25 slw 0 sg str -gr -gs -4440.625 4010.625 m -4453.625 3997.625 L -1.25 slw 0 sg str -gr -gs -4453.625 3997.625 m -4465.625 3986.625 L -1.25 slw 0 sg str -gr -gs -4465.625 3986.625 m -4476.625 3977.625 L -1.25 slw 0 sg str -gr -gs -4476.625 3977.625 m -4487.625 3970.625 L -1.25 slw 0 sg str -gr -gs -4487.625 3970.625 m -4497.625 3965.625 L -1.25 slw 0 sg str -gr -gs -4497.625 3965.625 m -4507.625 3962.625 L -1.25 slw 0 sg str -gr -gs -4507.625 3962.625 m -4516.625 3961.625 L -1.25 slw 0 sg str -gr -gs -4516.625 3961.625 m -4525.625 3962.625 L -1.25 slw 0 sg str -gr -gs -4525.625 3962.625 m -4533.625 3965.625 L -1.25 slw 0 sg str -gr -gs -4533.625 3965.625 m -4541.625 3970.625 L -1.25 slw 0 sg str -gr -gs -4541.625 3970.625 m -4548.625 3977.625 L -1.25 slw 0 sg str -gr -gs -4548.625 3977.625 m -4555.625 3986.625 L -1.25 slw 0 sg str -gr -gs -4555.625 3986.625 m -4561.625 3997.625 L -1.25 slw 0 sg str -gr -gs -4561.625 3997.625 m -4567.625 4010.625 L -1.25 slw 0 sg str -gr -gs -4567.625 4010.625 m -4573.625 4025.625 L -1.25 slw 0 sg str -gr -gs -4573.625 4025.625 m -4577.625 4041.625 L -1.25 slw 0 sg str -gr -gs -4577.625 4041.625 m -4581.625 4057.625 L -1.25 slw 0 sg str -gr -gs -4581.625 4057.625 m -4585.625 4073.625 L -1.25 slw 0 sg str -gr -gs -4585.625 4073.625 m -4588.625 4089.625 L -1.25 slw 0 sg str -gr -gs -4588.625 4089.625 m -4591.625 4105.625 L -1.25 slw 0 sg str -gr -gs -4591.625 4105.625 m -4593.625 4121.625 L -1.25 slw 0 sg str -gr -gs -4593.625 4121.625 m -4594.625 4137.625 L -1.25 slw 0 sg str -gr -gs -4594.625 4137.625 m -4595.625 4153.625 L -1.25 slw 0 sg str -gr -gs -4595.625 4153.625 m -4596.625 4169.625 L -1.25 slw 0 sg str -gr -gs -4596.625 4169.625 m -4596.625 4185.625 L -1.25 slw 0 sg str -gr -gs -4596.625 4185.625 m -4595.625 4201.625 L -1.25 slw 0 sg str -gr -gs -4595.625 4201.625 m -4594.625 4217.625 L -1.25 slw 0 sg str -gr -gs -4594.625 4217.625 m -4593.625 4233.625 L -1.25 slw 0 sg str -gr -gs -4593.625 4233.625 m -4591.625 4249.625 L -1.25 slw 0 sg str -gr -gs -4591.625 4249.625 m -4588.625 4265.625 L -1.25 slw 0 sg str -gr -gs -4588.625 4265.625 m -4586.625 4281.625 L -1.25 slw 0 sg str -gr -gs -4586.625 4281.625 m -4582.625 4296.625 L -1.25 slw 0 sg str -gr -gs -4582.625 4296.625 m -4579.625 4309.625 L -1.25 slw 0 sg str -gr -gs -4579.625 4309.625 m -4575.625 4320.625 L -1.25 slw 0 sg str -gr -gs -4575.625 4320.625 m -4572.625 4329.625 L -1.25 slw 0 sg str -gr -gs -4572.625 4329.625 m -4568.625 4336.625 L -1.25 slw 0 sg str -gr -gs -4568.625 4336.625 m -4564.625 4341.625 L -1.25 slw 0 sg str -gr -gs -4564.625 4341.625 m -4560.625 4344.625 L -1.25 slw 0 sg str -gr -gs -4560.625 4344.625 m -4556.625 4345.625 L -1.25 slw 0 sg str -gr -gs -4556.625 4345.625 m -4552.625 4344.625 L -1.25 slw 0 sg str -gr -gs -4552.625 4344.625 m -4548.625 4341.625 L -1.25 slw 0 sg str -gr -gs -4548.625 4341.625 m -4543.625 4336.625 L -1.25 slw 0 sg str -gr -gs -4543.625 4336.625 m -4539.625 4329.625 L -1.25 slw 0 sg str -gr -gs -4539.625 4329.625 m -4534.625 4320.625 L -1.25 slw 0 sg str -gr -gs -4534.625 4320.625 m -4529.625 4309.625 L -1.25 slw 0 sg str -gr -gs -4529.625 4309.625 m -4524.625 4296.625 L -1.25 slw 0 sg str -gr -gs -4524.625 4296.625 m -4520.625 4281.625 L -1.25 slw 0 sg str -gr -gs -4520.625 4281.625 m -4515.625 4265.625 L -1.25 slw 0 sg str -gr -gs -4515.625 4265.625 m -4512.625 4249.625 L -1.25 slw 0 sg str -gr -gs -4512.625 4249.625 m -4510.625 4233.625 L -1.25 slw 0 sg str -gr -gs -4510.625 4233.625 m -4509.625 4217.625 L -1.25 slw 0 sg str -gr -gs -4509.625 4217.625 m -4509.625 4201.625 L -1.25 slw 0 sg str -gr -gs -4509.625 4201.625 m -4511.625 4185.625 L -1.25 slw 0 sg str -gr -gs -4511.625 4185.625 m -4513.625 4169.625 L -1.25 slw 0 sg str -gr -gs -4513.625 4169.625 m -4517.625 4153.625 L -1.25 slw 0 sg str -gr -gs -4517.625 4153.625 m -4521.625 4137.625 L -1.25 slw 0 sg str -gr -gs -4521.625 4137.625 m -4527.625 4121.625 L -1.25 slw 0 sg str -gr -gs -4527.625 4121.625 m -4534.625 4105.625 L -1.25 slw 0 sg str -gr -gs -4534.625 4105.625 m -4542.625 4089.625 L -1.25 slw 0 sg str -gr -gs -4542.625 4089.625 m -4551.625 4073.625 L -1.25 slw 0 sg str -gr -gs -4551.625 4073.625 m -4562.625 4057.625 L -1.25 slw 0 sg str -gr -gs -4562.625 4057.625 m -4573.625 4041.625 L -1.25 slw 0 sg str -gr -gs -4573.625 4041.625 m -4586.625 4025.625 L -1.25 slw 0 sg str -gr -gs -4586.625 4025.625 m -4598.625 4010.625 L -1.25 slw 0 sg str -gr -gs -4598.625 4010.625 m -4611.625 3997.625 L -1.25 slw 0 sg str -gr -gs -4611.625 3997.625 m -4623.625 3986.625 L -1.25 slw 0 sg str -gr -gs -4623.625 3986.625 m -4634.625 3977.625 L -1.25 slw 0 sg str -gr -gs -4634.625 3977.625 m -4645.625 3970.625 L -1.25 slw 0 sg str -gr -gs -4645.625 3970.625 m -4655.625 3965.625 L -1.25 slw 0 sg str -gr -gs -4655.625 3965.625 m -4665.625 3962.625 L -1.25 slw 0 sg str -gr -gs -4665.625 3962.625 m -4674.625 3961.625 L -1.25 slw 0 sg str -gr -gs -4674.625 3961.625 m -4683.625 3962.625 L -1.25 slw 0 sg str -gr -gs -4683.625 3962.625 m -4691.625 3965.625 L -1.25 slw 0 sg str -gr -gs -4691.625 3965.625 m -4699.625 3970.625 L -1.25 slw 0 sg str -gr -gs -4699.625 3970.625 m -4706.625 3977.625 L -1.25 slw 0 sg str -gr -gs -4706.625 3977.625 m -4713.625 3986.625 L -1.25 slw 0 sg str -gr -gs -4713.625 3986.625 m -4719.625 3997.625 L -1.25 slw 0 sg str -gr -gs -4719.625 3997.625 m -4725.625 4010.625 L -1.25 slw 0 sg str -gr -gs -4725.625 4010.625 m -4731.625 4025.625 L -1.25 slw 0 sg str -gr -gs -4731.625 4025.625 m -4735.625 4041.625 L -1.25 slw 0 sg str -gr -gs -4735.625 4041.625 m -4739.625 4057.625 L -1.25 slw 0 sg str -gr -gs -4739.625 4057.625 m -4743.625 4073.625 L -1.25 slw 0 sg str -gr -gs -4743.625 4073.625 m -4746.625 4089.625 L -1.25 slw 0 sg str -gr -gs -4746.625 4089.625 m -4749.625 4105.625 L -1.25 slw 0 sg str -gr -gs -4749.625 4105.625 m -4751.625 4121.625 L -1.25 slw 0 sg str -gr -gs -4751.625 4121.625 m -4752.625 4137.625 L -1.25 slw 0 sg str -gr -gs -4752.625 4137.625 m -4753.625 4153.625 L -1.25 slw 0 sg str -gr -gs -4753.625 4153.625 m -4754.625 4169.625 L -1.25 slw 0 sg str -gr -gs -4754.625 4169.625 m -4754.625 4185.625 L -1.25 slw 0 sg str -gr -gs -4754.625 4185.625 m -4753.625 4201.625 L -1.25 slw 0 sg str -gr -gs -4753.625 4201.625 m -4752.625 4217.625 L -1.25 slw 0 sg str -gr -gs -4752.625 4217.625 m -4751.625 4233.625 L -1.25 slw 0 sg str -gr -gs -4751.625 4233.625 m -4749.625 4249.625 L -1.25 slw 0 sg str -gr -gs -4749.625 4249.625 m -4746.625 4265.625 L -1.25 slw 0 sg str -gr -gs -4746.625 4265.625 m -4744.625 4281.625 L -1.25 slw 0 sg str -gr -gs -4744.625 4281.625 m -4740.625 4296.625 L -1.25 slw 0 sg str -gr -gs -4740.625 4296.625 m -4737.625 4309.625 L -1.25 slw 0 sg str -gr -gs -4737.625 4309.625 m -4733.625 4320.625 L -1.25 slw 0 sg str -gr -gs -4733.625 4320.625 m -4730.625 4329.625 L -1.25 slw 0 sg str -gr -gs -4730.625 4329.625 m -4726.625 4336.625 L -1.25 slw 0 sg str -gr -gs -4726.625 4336.625 m -4722.625 4341.625 L -1.25 slw 0 sg str -gr -gs -4722.625 4341.625 m -4718.625 4344.625 L -1.25 slw 0 sg str -gr -gs -4718.625 4344.625 m -4714.625 4345.625 L -1.25 slw 0 sg str -gr -gs -4714.625 4345.625 m -4710.625 4344.625 L -1.25 slw 0 sg str -gr -gs -4710.625 4344.625 m -4706.625 4341.625 L -1.25 slw 0 sg str -gr -gs -4706.625 4341.625 m -4701.625 4336.625 L -1.25 slw 0 sg str -gr -gs -4701.625 4336.625 m -4697.625 4329.625 L -1.25 slw 0 sg str -gr -gs -4697.625 4329.625 m -4692.625 4320.625 L -1.25 slw 0 sg str -gr -gs -4692.625 4320.625 m -4687.625 4309.625 L -1.25 slw 0 sg str -gr -gs -4687.625 4309.625 m -4682.625 4296.625 L -1.25 slw 0 sg str -gr -gs -4682.625 4296.625 m -4678.625 4281.625 L -1.25 slw 0 sg str -gr -gs -4678.625 4281.625 m -4673.625 4265.625 L -1.25 slw 0 sg str -gr -gs -4673.625 4265.625 m -4670.625 4249.625 L -1.25 slw 0 sg str -gr -gs -4670.625 4249.625 m -4668.625 4233.625 L -1.25 slw 0 sg str -gr -gs -4668.625 4233.625 m -4667.625 4217.625 L -1.25 slw 0 sg str -gr -gs -4667.625 4217.625 m -4667.625 4201.625 L -1.25 slw 0 sg str -gr -gs -4667.625 4201.625 m -4669.625 4185.625 L -1.25 slw 0 sg str -gr -gs -4669.625 4185.625 m -4671.625 4169.625 L -1.25 slw 0 sg str -gr -gs -4671.625 4169.625 m -4675.625 4153.625 L -1.25 slw 0 sg str -gr -gs -4675.625 4153.625 m -4679.625 4137.625 L -1.25 slw 0 sg str -gr -gs -4679.625 4137.625 m -4685.625 4121.625 L -1.25 slw 0 sg str -gr -gs -4685.625 4121.625 m -4692.625 4105.625 L -1.25 slw 0 sg str -gr -gs -4692.625 4105.625 m -4700.625 4089.625 L -1.25 slw 0 sg str -gr -gs -4700.625 4089.625 m -4709.625 4073.625 L -1.25 slw 0 sg str -gr -gs -4709.625 4073.625 m -4720.625 4057.625 L -1.25 slw 0 sg str -gr -gs -4720.625 4057.625 m -4731.625 4041.625 L -1.25 slw 0 sg str -gr -gs -4731.625 4041.625 m -4744.625 4025.625 L -1.25 slw 0 sg str -gr -gs -4744.625 4025.625 m -4756.625 4010.625 L -1.25 slw 0 sg str -gr -gs -4756.625 4010.625 m -4769.625 3997.625 L -1.25 slw 0 sg str -gr -gs -4769.625 3997.625 m -4781.625 3986.625 L -1.25 slw 0 sg str -gr -gs -4781.625 3986.625 m -4792.625 3977.625 L -1.25 slw 0 sg str -gr -gs -4792.625 3977.625 m -4803.625 3970.625 L -1.25 slw 0 sg str -gr -gs -4803.625 3970.625 m -4813.625 3965.625 L -1.25 slw 0 sg str -gr -gs -4813.625 3965.625 m -4823.625 3962.625 L -1.25 slw 0 sg str -gr -gs -4823.625 3962.625 m -4832.625 3961.625 L -1.25 slw 0 sg str -gr -gs -4832.625 3961.625 m -4841.625 3962.625 L -1.25 slw 0 sg str -gr -gs -4841.625 3962.625 m -4849.625 3965.625 L -1.25 slw 0 sg str -gr -gs -4849.625 3965.625 m -4857.625 3970.625 L -1.25 slw 0 sg str -gr -gs -4857.625 3970.625 m -4864.625 3977.625 L -1.25 slw 0 sg str -gr -gs -4864.625 3977.625 m -4871.625 3986.625 L -1.25 slw 0 sg str -gr -gs -4871.625 3986.625 m -4877.625 3997.625 L -1.25 slw 0 sg str -gr -gs -4877.625 3997.625 m -4883.625 4010.625 L -1.25 slw 0 sg str -gr -gs -4883.625 4010.625 m -4889.625 4025.625 L -1.25 slw 0 sg str -gr -gs -4889.625 4025.625 m -4893.625 4041.625 L -1.25 slw 0 sg str -gr -gs -4893.625 4041.625 m -4897.625 4057.625 L -1.25 slw 0 sg str -gr -gs -4897.625 4057.625 m -4901.625 4073.625 L -1.25 slw 0 sg str -gr -gs -4901.625 4073.625 m -4904.625 4089.625 L -1.25 slw 0 sg str -gr -gs -4904.625 4089.625 m -4906.625 4105.625 L -1.25 slw 0 sg str -gr -gs -4906.625 4105.625 m -4908.625 4121.625 L -1.25 slw 0 sg str -gr -gs -4908.625 4121.625 m -4910.625 4137.625 L -1.25 slw 0 sg str -gr -gs -4910.625 4137.625 m -4911.625 4153.625 L -1.25 slw 0 sg str -gr -gs -4911.625 4153.625 m -4911.625 4169.625 L -1.25 slw 0 sg str -gr -gs -4911.625 4169.625 m -4911.625 4185.625 L -1.25 slw 0 sg str -gr -gs -4911.625 4185.625 m -4911.625 4201.625 L -1.25 slw 0 sg str -gr -gs -4911.625 4201.625 m -4910.625 4217.625 L -1.25 slw 0 sg str -gr -gs -4910.625 4217.625 m -4908.625 4233.625 L -1.25 slw 0 sg str -gr -gs -4908.625 4233.625 m -4906.625 4249.625 L -1.25 slw 0 sg str -gr -gs -4906.625 4249.625 m -4904.625 4265.625 L -1.25 slw 0 sg str -gr -gs -4904.625 4265.625 m -4901.625 4281.625 L -1.25 slw 0 sg str -gr -gs -4901.625 4281.625 m -4897.625 4296.625 L -1.25 slw 0 sg str -gr -gs -4897.625 4296.625 m -4894.625 4309.625 L -1.25 slw 0 sg str -gr -gs -4894.625 4309.625 m -4890.625 4320.625 L -1.25 slw 0 sg str -gr -gs -4890.625 4320.625 m -4887.625 4329.625 L -1.25 slw 0 sg str -gr -gs -4887.625 4329.625 m -4883.625 4336.625 L -1.25 slw 0 sg str -gr -gs -4883.625 4336.625 m -4879.625 4341.625 L -1.25 slw 0 sg str -gr -gs -4879.625 4341.625 m -4875.625 4344.625 L -1.25 slw 0 sg str -gr -gs -4875.625 4344.625 m -4871.625 4345.625 L -1.25 slw 0 sg str -gr -gs -4871.625 4345.625 m -4867.625 4344.625 L -1.25 slw 0 sg str -gr -gs -4867.625 4344.625 m -4863.625 4341.625 L -1.25 slw 0 sg str -gr -gs -4863.625 4341.625 m -4859.625 4336.625 L -1.25 slw 0 sg str -gr -gs -4859.625 4336.625 m -4854.625 4329.625 L -1.25 slw 0 sg str -gr -gs -4854.625 4329.625 m -4850.625 4320.625 L -1.25 slw 0 sg str -gr -gs -4850.625 4320.625 m -4845.625 4309.625 L -1.25 slw 0 sg str -gr -gs -4845.625 4309.625 m -4840.625 4296.625 L -1.25 slw 0 sg str -gr -gs -4840.625 4296.625 m -4836.625 4281.625 L -1.25 slw 0 sg str -gr -gs -4836.625 4281.625 m -4831.625 4265.625 L -1.25 slw 0 sg str -gr -gs -4831.625 4265.625 m -4828.625 4249.625 L -1.25 slw 0 sg str -gr -gs -4828.625 4249.625 m -4826.625 4233.625 L -1.25 slw 0 sg str -gr -gs -4826.625 4233.625 m -4825.625 4217.625 L -1.25 slw 0 sg str -gr -gs -4825.625 4217.625 m -4825.625 4201.625 L -1.25 slw 0 sg str -gr -gs -4825.625 4201.625 m -4827.625 4185.625 L -1.25 slw 0 sg str -gr -gs -4827.625 4185.625 m -4829.625 4169.625 L -1.25 slw 0 sg str -gr -gs -4829.625 4169.625 m -4833.625 4153.625 L -1.25 slw 0 sg str -gr -gs -4833.625 4153.625 m -4837.625 4137.625 L -1.25 slw 0 sg str -gr -gs -4837.625 4137.625 m -4843.625 4121.625 L -1.25 slw 0 sg str -gr -gs -4843.625 4121.625 m -4850.625 4105.625 L -1.25 slw 0 sg str -gr -gs -4850.625 4105.625 m -4858.625 4089.625 L -1.25 slw 0 sg str -gr -gs -4858.625 4089.625 m -4867.625 4073.625 L -1.25 slw 0 sg str -gr -gs -4867.625 4073.625 m -4878.625 4057.625 L -1.25 slw 0 sg str -gr -gs -4878.625 4057.625 m -4889.625 4041.625 L -1.25 slw 0 sg str -gr -gs -4889.625 4041.625 m -4902.625 4025.625 L -1.25 slw 0 sg str -gr -gs -4902.625 4025.625 m -4914.625 4010.625 L -1.25 slw 0 sg str -gr -gs -4914.625 4010.625 m -4927.625 3997.625 L -1.25 slw 0 sg str -gr -gs -4927.625 3997.625 m -4939.625 3986.625 L -1.25 slw 0 sg str -gr -gs -4939.625 3986.625 m -4950.625 3977.625 L -1.25 slw 0 sg str -gr -gs -4950.625 3977.625 m -4961.625 3970.625 L -1.25 slw 0 sg str -gr -gs -4961.625 3970.625 m -4971.625 3965.625 L -1.25 slw 0 sg str -gr -gs -4971.625 3965.625 m -4981.625 3962.625 L -1.25 slw 0 sg str -gr -gs -4981.625 3962.625 m -4990.625 3961.625 L -1.25 slw 0 sg str -gr -gs -4990.625 3961.625 m -4999.625 3962.625 L -1.25 slw 0 sg str -gr -gs -4999.625 3962.625 m -5007.625 3965.625 L -1.25 slw 0 sg str -gr -gs -5007.625 3965.625 m -5015.625 3970.625 L -1.25 slw 0 sg str -gr -gs -5015.625 3970.625 m -5022.625 3977.625 L -1.25 slw 0 sg str -gr -gs -5022.625 3977.625 m -5029.625 3986.625 L -1.25 slw 0 sg str -gr -gs -5029.625 3986.625 m -5035.625 3997.625 L -1.25 slw 0 sg str -gr -gs -5035.625 3997.625 m -5040.625 4010.625 L -1.25 slw 0 sg str -gr -gs -5040.625 4010.625 m -5046.625 4025.625 L -1.25 slw 0 sg str -gr -gs -5046.625 4025.625 m -5050.625 4041.625 L -1.25 slw 0 sg str -gr -gs -5050.625 4041.625 m -5054.625 4057.625 L -1.25 slw 0 sg str -gr -gs -5054.625 4057.625 m -5058.625 4073.625 L -1.25 slw 0 sg str -gr -gs -5058.625 4073.625 m -5061.625 4089.625 L -1.25 slw 0 sg str -gr -gs -5061.625 4089.625 m -5064.625 4105.625 L -1.25 slw 0 sg str -gr -gs -5064.625 4105.625 m -5066.625 4121.625 L -1.25 slw 0 sg str -gr -gs -5066.625 4121.625 m -5068.625 4137.625 L -1.25 slw 0 sg str -gr -gs -5068.625 4137.625 m -5069.625 4153.625 L -1.25 slw 0 sg str -gr -gs -5069.625 4153.625 m -5069.625 4169.625 L -1.25 slw 0 sg str -gr -gs -5069.625 4169.625 m -5069.625 4185.625 L -1.25 slw 0 sg str -gr -gs -5069.625 4185.625 m -5069.625 4201.625 L -1.25 slw 0 sg str -gr -gs -5069.625 4201.625 m -5068.625 4217.625 L -1.25 slw 0 sg str -gr -gs -5068.625 4217.625 m -5066.625 4233.625 L -1.25 slw 0 sg str -gr -gs -5066.625 4233.625 m -5064.625 4249.625 L -1.25 slw 0 sg str -gr -gs -5064.625 4249.625 m -5062.625 4265.625 L -1.25 slw 0 sg str -gr -gs -5062.625 4265.625 m -5059.625 4281.625 L -1.25 slw 0 sg str -gr -gs -5059.625 4281.625 m -5055.625 4295.625 L -1.25 slw 0 sg str -gr -gs -5055.625 4295.625 m -5052.625 4308.625 L -1.25 slw 0 sg str -gr -gs -5052.625 4308.625 m -5048.625 4319.625 L -1.25 slw 0 sg str -gr -gs -5048.625 4319.625 m -5045.625 4328.625 L -1.25 slw 0 sg str -gr -gs -5045.625 4328.625 m -5041.625 4335.625 L -1.25 slw 0 sg str -gr -gs -5041.625 4335.625 m -5037.625 4341.625 L -1.25 slw 0 sg str -gr -gs -5037.625 4341.625 m -5033.625 4344.625 L -1.25 slw 0 sg str -gr -gs -5033.625 4344.625 m -5029.625 4345.625 L -1.25 slw 0 sg str -gr -gs -5029.625 4345.625 m -5025.625 4344.625 L -1.25 slw 0 sg str -gr -gs -5025.625 4344.625 m -5021.625 4342.625 L -1.25 slw 0 sg str -gr -gs -5021.625 4342.625 m -5017.625 4337.625 L -1.25 slw 0 sg str -gr -gs -5017.625 4337.625 m -5012.625 4330.625 L -1.25 slw 0 sg str -gr -gs -5012.625 4330.625 m -5008.625 4322.625 L -1.25 slw 0 sg str -gr -gs -5008.625 4322.625 m -5003.625 4311.625 L -1.25 slw 0 sg str -gr -gs -5003.625 4311.625 m -4998.625 4299.625 L -1.25 slw 0 sg str -gr -gs -4998.625 4299.625 m -4994.625 4285.625 L -1.25 slw 0 sg str -gr -gs -4994.625 4285.625 m -4989.625 4269.625 L -1.25 slw 0 sg str -gr -gs -4989.625 4269.625 m -4986.625 4253.625 L -1.25 slw 0 sg str -gr -gs -4986.625 4253.625 m -4984.625 4237.625 L -1.25 slw 0 sg str -gr -gs -4984.625 4237.625 m -4983.625 4221.625 L -1.25 slw 0 sg str -gr -gs -4983.625 4221.625 m -4983.625 4204.625 L -1.25 slw 0 sg str -gr -gs -4983.625 4204.625 m -4984.625 4187.625 L -1.25 slw 0 sg str -gr -gs -4984.625 4187.625 m -4986.625 4170.625 L -1.25 slw 0 sg str -gr -gs -4986.625 4170.625 m -4990.625 4153.625 L -1.25 slw 0 sg str -gr -gs -4990.625 4153.625 m -4994.625 4135.625 L -1.25 slw 0 sg str -gr -gs -4994.625 4135.625 m -5000.625 4117.625 L -1.25 slw 0 sg str -gr -gs -5000.625 4117.625 m -5006.625 4098.625 L -1.25 slw 0 sg str -gr -gs -5006.625 4098.625 m -5014.625 4080.625 L -1.25 slw 0 sg str -gr -gs -5014.625 4080.625 m -5022.625 4061.625 L -1.25 slw 0 sg str -gr -gs -5022.625 4061.625 m -5032.625 4042.625 L -1.25 slw 0 sg str -gr -gs -5032.625 4042.625 m -5043.625 4022.625 L -1.25 slw 0 sg str -gr -gs -5043.625 4022.625 m -5055.625 4003.625 L -1.25 slw 0 sg str -gr -gs -5055.625 4003.625 m -5067.625 3984.625 L -1.25 slw 0 sg str -gr -gs -5067.625 3984.625 m -5079.625 3970.625 L -1.25 slw 0 sg str -gr -gs -5079.625 3970.625 m -5091.625 3959.625 L -1.25 slw 0 sg str -gr -gs -5091.625 3959.625 m -5103.625 3952.625 L -1.25 slw 0 sg str -gr -gs -5103.625 3952.625 m -5114.625 3948.625 L -1.25 slw 0 sg str -gr -gs -5114.625 3948.625 m -5126.625 3949.625 L -1.25 slw 0 sg str -gr -gs -5126.625 3949.625 m -5137.625 3952.625 L -1.25 slw 0 sg str -gr -gs -5137.625 3952.625 m -5148.625 3960.625 L -1.25 slw 0 sg str -gr -gs -5148.625 3960.625 m -5158.625 3971.625 L -1.25 slw 0 sg str -gr -gs -5158.625 3971.625 m -5169.625 3986.625 L -1.25 slw 0 sg str -gr -gs -5169.625 3986.625 m -5179.625 4005.625 L -1.25 slw 0 sg str -gr -gs -5179.625 4005.625 m -5189.625 4027.625 L -1.25 slw 0 sg str -gr -gs -5189.625 4027.625 m -5199.625 4053.625 L -1.25 slw 0 sg str -gr -gs -5199.625 4053.625 m -5208.625 4082.625 L -1.25 slw 0 sg str -gr -gs -5208.625 4082.625 m -5217.625 4116.625 L -1.25 slw 0 sg str -gr -gs -5217.625 4116.625 m -5227.625 4153.625 L -1.25 slw 0 sg str -gr -gs -4044.625 4153.625 m -4123.625 4153.625 L -1.25 slw 0 sg str -gr -gs -5227.625 4153.625 m -5306.625 4153.625 L -1.25 slw 0 sg str -gr -gs -3346 3841 4049 4622 R -0.87 sg fill -gr -gs -3346.625 3841.625 4049.375 4622.375 R -1.25 slw 0 sg str -gr -gs -4049.5 3841.5 m -4049.5 4622.5 L -35 slw 0 sg str -gr -gs -2643 4231 2811 4186 2811 4276 2 P -0 sg fill -gr -gs -3111.625 4231.625 m -2811.625 4231.625 L -1.25 slw 0 sg str -gr -gs -6940 4231 6772 4276 6772 4186 2 P -0 sg fill -gr -gs -6471.625 4231.625 m -6772.625 4231.625 L -1.25 slw 0 sg str -gr -gs -3567 4118 3827 4344 R -1 sg fill -gr -/_Times-Roman ff [208 0 0 -208 0 0] mf sf -3567 4274 m 0 sg (m1) show -gs -5638 4040 5898 4266 R -1 sg fill -gr -5638 4196 m 2.08 slw 0 sg (m2) show -gs -2851 3997 3059 4223 R -1 sg fill -gr -2851 4153 m 2.08 slw 0 sg (v1) show -gs -6523 3997 6731 4223 R -1 sg fill -gr -6523 4153 m 2.08 slw 0 sg (v2) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob05a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob05a.gif deleted file mode 100755 index 079b0b048..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob05a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob06.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob06.eps deleted file mode 100755 index 4a2970954..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob06.eps +++ /dev/null @@ -1,658 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Ballistic_Pendulum.eps -%%CreationDate: 3/20/1995 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%BoundingBox:123 536 376 710 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -5100 3772 5204 3997 R -1 sg fill -gr -/_Times-Roman ff [208 0 0 -208 0 0] mf sf -5100 3928 m 0 sg (h) show -gs -6024 3967 6233 4193 R -1 sg fill -gr -6024 4123 m 2.08 slw 0 sg (Vf) show -gs -2908 3967 3099 4193 R -1 sg fill -gr -2908 4123 m 2.08 slw 0 sg (Vi) show -gs -2457 3615 2613 3841 R -1 sg fill -gr -2457 3771 m 2.08 slw 0 sg (m) show -gs -3316.625 3533.625 4566.375 4158.375 R -1.25 slw 0 sg str -gr -gs -3472.625 1658.625 m -3472.625 3533.625 L -1.25 slw 0 sg str -gr -gs -4410.625 3533.625 m -4410.625 1658.625 L -1.25 slw 0 sg str -gr -gs -3472.625 1658.625 m -3566.625 1733.625 L -1.25 slw 0 sg str -gr -gs -3608.625 1766.625 m -3702.625 1842.625 L -1.25 slw 0 sg str -gr -gs -3743.625 1875.625 m -3837.625 1950.625 L -1.25 slw 0 sg str -gr -gs -3879.625 1983.625 m -3973.625 2059.625 L -1.25 slw 0 sg str -gr -gs -4014.625 2092.625 m -4108.625 2167.625 L -1.25 slw 0 sg str -gr -gs -4150.625 2200.625 m -4244.625 2275.625 L -1.25 slw 0 sg str -gr -gs -4285.625 2309.625 m -4380.625 2384.625 L -1.25 slw 0 sg str -gr -gs -4421.625 2417.625 m -4515.625 2492.625 L -1.25 slw 0 sg str -gr -gs -4557.625 2525.625 m -4651.625 2601.625 L -1.25 slw 0 sg str -gr -gs -4692.625 2634.625 m -4786.625 2709.625 L -1.25 slw 0 sg str -gr -gs -4828.625 2742.625 m -4922.625 2818.625 L -1.25 slw 0 sg str -gr -gs -4963.625 2851.625 m -5035.625 2908.625 L -1.25 slw 0 sg str -gr -gs -4410.625 1658.625 m -4504.625 1733.625 L -1.25 slw 0 sg str -gr -gs -4546.625 1766.625 m -4640.625 1842.625 L -1.25 slw 0 sg str -gr -gs -4681.625 1875.625 m -4775.625 1950.625 L -1.25 slw 0 sg str -gr -gs -4817.625 1983.625 m -4911.625 2059.625 L -1.25 slw 0 sg str -gr -gs -4952.625 2092.625 m -5046.625 2167.625 L -1.25 slw 0 sg str -gr -gs -5088.625 2200.625 m -5182.625 2276.625 L -1.25 slw 0 sg str -gr -gs -5223.625 2309.625 m -5317.625 2384.625 L -1.25 slw 0 sg str -gr -gs -5359.625 2417.625 m -5453.625 2493.625 L -1.25 slw 0 sg str -gr -gs -5494.625 2526.625 m -5588.625 2601.625 L -1.25 slw 0 sg str -gr -gs -5630.625 2634.625 m -5724.625 2710.625 L -1.25 slw 0 sg str -gr -gs -5765.625 2743.625 m -5860.625 2818.625 L -1.25 slw 0 sg str -gr -gs -5901.625 2851.625 m -5972.625 2908.625 L -1.25 slw 0 sg str -gr -gs -4878 2908 6129 3533 R -1 sg fill -gr -gs -4878.625 2908.625 m -4999.625 2908.625 L -1.25 slw 0 sg str -gr -gs -5052.625 2908.625 m -5172.625 2908.625 L -1.25 slw 0 sg str -gr -gs -5225.625 2908.625 m -5346.625 2908.625 L -1.25 slw 0 sg str -gr -gs -5399.625 2908.625 m -5519.625 2908.625 L -1.25 slw 0 sg str -gr -gs -5572.625 2908.625 m -5693.625 2908.625 L -1.25 slw 0 sg str -gr -gs -5746.625 2908.625 m -5867.625 2908.625 L -1.25 slw 0 sg str -gr -gs -5920.625 2908.625 m -6040.625 2908.625 L -1.25 slw 0 sg str -gr -gs -6093.625 2908.625 m -6129.625 2908.625 L -1.25 slw 0 sg str -gr -gs -6129.625 2908.625 m -6129.625 2993.625 L -1.25 slw 0 sg str -gr -gs -6129.625 3046.625 m -6129.625 3166.625 L -1.25 slw 0 sg str -gr -gs -6129.625 3219.625 m -6129.625 3340.625 L -1.25 slw 0 sg str -gr -gs -6129.625 3393.625 m -6129.625 3514.625 L -1.25 slw 0 sg str -gr -gs -6095.625 3533.625 m -5975.625 3533.625 L -1.25 slw 0 sg str -gr -gs -5922.625 3533.625 m -5801.625 3533.625 L -1.25 slw 0 sg str -gr -gs -5748.625 3533.625 m -5628.625 3533.625 L -1.25 slw 0 sg str -gr -gs -5574.625 3533.625 m -5454.625 3533.625 L -1.25 slw 0 sg str -gr -gs -5401.625 3533.625 m -5280.625 3533.625 L -1.25 slw 0 sg str -gr -gs -5227.625 3533.625 m -5107.625 3533.625 L -1.25 slw 0 sg str -gr -gs -5054.625 3533.625 m -4933.625 3533.625 L -1.25 slw 0 sg str -gr -gs -4880.625 3533.625 m -4878.625 3533.625 L -1.25 slw 0 sg str -gr -gs -4878.625 3533.625 m -4878.625 3415.625 L -1.25 slw 0 sg str -gr -gs -4878.625 3361.625 m -4878.625 3241.625 L -1.25 slw 0 sg str -gr -gs -4878.625 3188.625 m -4878.625 3067.625 L -1.25 slw 0 sg str -gr -gs -4878.625 3014.625 m -4878.625 2908.625 L -1.25 slw 0 sg str -gr -gs -3002.75 1657.75 m -4877.75 1657.75 L -87.5 slw 0 sg str -gr -gs -2377.75 3845.75 m -2690.75 3845.75 L -87.5 slw 0 sg str -gr -gs -3160 3846 3002 3920 3002 3772 2 P -0 sg fill -gr -gs -2847.625 3846.625 m -3160.625 3846.625 L -1.25 slw 0 sg str -gr -gs -5504.25 3846.25 m -5816.25 3846.25 L -122.5 slw 0 sg str -gr -gs -6285 3846 6127 3920 6127 3772 2 P -0 sg fill -gr -gs -5972.625 3846.625 m -6285.625 3846.625 L -1.25 slw 0 sg str -gr -gs -3854 3733 4028 3958 R -1 sg fill -gr -3854 3889 m 2.08 slw 0 sg (M) show -gs -5035 3533 5109 3691 4961 3691 2 P -0 sg fill -gr -gs -5035 4158 4961 4000 5109 4000 2 P -0 sg fill -gr -gs -5035.625 3533.625 m -5035.625 4158.625 L -1.25 slw 0 sg str -gr -gs -4566.625 4158.625 m -4617.625 4158.625 L -1.25 slw 0 sg str -gr -gs -4670.625 4158.625 m -4721.625 4158.625 L -1.25 slw 0 sg str -gr -gs -4774.625 4158.625 m -4825.625 4158.625 L -1.25 slw 0 sg str -gr -gs -4878.625 4158.625 m -4930.625 4158.625 L -1.25 slw 0 sg str -gr -gs -4983.625 4158.625 m -5034.625 4158.625 L -1.25 slw 0 sg str -gr -gs -5087.625 4158.625 m -5138.625 4158.625 L -1.25 slw 0 sg str -gr -gs -5191.625 4158.625 m -dot -1.25 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob06.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob06.gif deleted file mode 100755 index dabbb2f5d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob06.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob07.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob07.eps deleted file mode 100755 index 59a5acbaf..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob07.eps +++ /dev/null @@ -1,688 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: ballistic pendulum.eps -%%CreationDate: 3/23/1996 -%%Pages: 0 -%%DocumentFonts: Helvetica -%%BoundingBox:121 475 551 675 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica/Helvetica 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -2325 2092 5509 2327 R -0 0 0 1 1 1 [247 189 255 111 251 191 239 254] patfill -gr -gs -3673.625 2327.625 m -3673.625 3811.625 L -1.25 slw 0 sg str -gr -gs -4649.625 2327.625 m -4649.625 3811.625 L -1.25 slw 0 sg str -gr -gs -3321 3811 4962 4475 R -0.75 sg fill -gr -gs -3321.625 3811.625 4962.375 4475.375 R -1.25 slw 0 sg str -gr -gs -2169 4065 2403 4221 R -0 sg fill -gr -gs -2169.625 4065.625 2403.375 4221.375 R -1.25 slw 0 sg str -gr -gs -2504 4145 2490 4165 2478 4179 2465 4191 2450 4201 2434 4210 2417 4217 2403 4221 -2364 4065 8 P -0 sg fill -gr -gs -2504 4145 2490 4165 2478 4179 2465 4191 2450 4201 2434 4210 2417 4217 2403 4221 -7 P -1.25 slw 0 sg str -gr -gs -2403 4065 2434 4076 2450 4085 2465 4095 2478 4107 2490 4121 2501 4135 2505 4144 -2364 4221 8 P -0 sg fill -gr -gs -2403 4065 2434 4076 2450 4085 2465 4095 2478 4107 2490 4121 2501 4135 2505 4144 -7 P -1.25 slw 0 sg str -gr -gs -6153 2092 9337 2327 R -0 0 0 1 1 1 [247 189 255 111 251 191 239 254] patfill -gr -gs -7364 3381 9005 4045 R -0.75 sg fill -gr -gs -7364.625 3381.625 9005.375 4045.375 R -1.25 slw 0 sg str -gr -gs -6739.625 2385.625 m -7737.625 3404.625 L -1.25 slw 0 sg str -gr -gs -7716.625 2385.625 m -8694.625 3365.625 L -1.25 slw 0 sg str -gr -gs -7950 3635 8184 3791 R -0 sg fill -gr -gs -7950.625 3635.625 8184.375 3791.375 R -1.25 slw 0 sg str -gr -gs -8285 3715 8271 3736 8259 3749 8246 3761 8231 3772 8215 3780 8198 3787 8184 3791 -8145 3635 8 P -0 sg fill -gr -gs -8285 3715 8271 3736 8259 3749 8246 3761 8231 3772 8215 3780 8198 3787 8184 3791 -7 P -1.25 slw 0 sg str -gr -gs -8184 3635 8215 3646 8231 3655 8246 3665 8259 3678 8271 3691 8282 3706 8287 3714 -8145 3791 8 P -0 sg fill -gr -gs -8184 3635 8215 3646 8231 3655 8246 3665 8259 3678 8271 3691 8282 3706 8287 3714 -7 P -1.25 slw 0 sg str -gr -gs -2325.25 2327.25 m -5509.25 2327.25 L -52.5 slw 0 sg str -gr -gs -6153.25 2327.25 m -9337.25 2327.25 L -52.5 slw 0 sg str -gr -gs -3614 2327 3731 2444 OV -1 sg fill -gr -gs -3614.625 2327.625 3731.375 2444.375 OV -1.25 slw 0 sg str -gr -gs -4591 2327 4708 2444 OV -1 sg fill -gr -gs -4591.625 2327.625 4708.375 2444.375 OV -1.25 slw 0 sg str -gr -gs -6681 2327 6798 2444 OV -1 sg fill -gr -gs -6681.625 2327.625 6798.375 2444.375 OV -1.25 slw 0 sg str -gr -gs -7657 2327 7774 2444 OV -1 sg fill -gr -gs -7657.625 2327.625 7774.375 2444.375 OV -1.25 slw 0 sg str -gr -gs -5138.625 4475.625 m -5189.625 4475.625 L -1.25 slw 0 sg str -gr -gs -5242.625 4475.625 m -5293.625 4475.625 L -1.25 slw 0 sg str -gr -gs -5346.625 4475.625 m -5397.625 4475.625 L -1.25 slw 0 sg str -gr -gs -5450.625 4475.625 m -5502.625 4475.625 L -1.25 slw 0 sg str -gr -gs -5555.625 4475.625 m -5606.625 4475.625 L -1.25 slw 0 sg str -gr -gs -5659.625 4475.625 m -5710.625 4475.625 L -1.25 slw 0 sg str -gr -gs -5763.625 4475.625 m -5814.625 4475.625 L -1.25 slw 0 sg str -gr -gs -5867.625 4475.625 m -5918.625 4475.625 L -1.25 slw 0 sg str -gr -gs -5971.625 4475.625 m -6022.625 4475.625 L -1.25 slw 0 sg str -gr -gs -6075.625 4475.625 m -6127.625 4475.625 L -1.25 slw 0 sg str -gr -gs -6180.625 4475.625 m -6231.625 4475.625 L -1.25 slw 0 sg str -gr -gs -6284.625 4475.625 m -6335.625 4475.625 L -1.25 slw 0 sg str -gr -gs -6388.625 4475.625 m -6439.625 4475.625 L -1.25 slw 0 sg str -gr -gs -6492.625 4475.625 m -6543.625 4475.625 L -1.25 slw 0 sg str -gr -gs -6596.625 4475.625 m -6647.625 4475.625 L -1.25 slw 0 sg str -gr -gs -6700.625 4475.625 m -6751.625 4475.625 L -1.25 slw 0 sg str -gr -gs -6805.625 4475.625 m -6856.625 4475.625 L -1.25 slw 0 sg str -gr -gs -6909.625 4475.625 m -6960.625 4475.625 L -1.25 slw 0 sg str -gr -gs -7013.625 4475.625 m -7064.625 4475.625 L -1.25 slw 0 sg str -gr -gs -7117.625 4475.625 m -7168.625 4475.625 L -1.25 slw 0 sg str -gr -gs -7221.625 4475.625 m -7272.625 4475.625 L -1.25 slw 0 sg str -gr -gs -7325.625 4475.625 m -7376.625 4475.625 L -1.25 slw 0 sg str -gr -gs -7430.625 4475.625 m -7481.625 4475.625 L -1.25 slw 0 sg str -gr -gs -7534.625 4475.625 m -7585.625 4475.625 L -1.25 slw 0 sg str -gr -gs -7638.625 4475.625 m -7689.625 4475.625 L -1.25 slw 0 sg str -gr -gs -7742.625 4475.625 m -7793.625 4475.625 L -1.25 slw 0 sg str -gr -gs -7846.625 4475.625 m -7897.625 4475.625 L -1.25 slw 0 sg str -gr -gs -7950.625 4475.625 m -8001.625 4475.625 L -1.25 slw 0 sg str -gr -gs -8054.625 4475.625 m -8106.625 4475.625 L -1.25 slw 0 sg str -gr -gs -7110.625 4045.625 m -7059.625 4045.625 L -1.25 slw 0 sg str -gr -gs -7006.625 4045.625 m -6955.625 4045.625 L -1.25 slw 0 sg str -gr -gs -6902.625 4045.625 m -6851.625 4045.625 L -1.25 slw 0 sg str -gr -gs -6798.625 4045.625 m -6746.625 4045.625 L -1.25 slw 0 sg str -gr -gs -6693.625 4045.625 m -6642.625 4045.625 L -1.25 slw 0 sg str -gr -gs -6589.625 4045.625 m -6538.625 4045.625 L -1.25 slw 0 sg str -gr -gs -6485.625 4045.625 m -6434.625 4045.625 L -1.25 slw 0 sg str -gr -gs -6381.625 4045.625 m -6330.625 4045.625 L -1.25 slw 0 sg str -gr -gs -6277.625 4045.625 m -6226.625 4045.625 L -1.25 slw 0 sg str -gr -gs -6173.625 4045.625 m -6121.625 4045.625 L -1.25 slw 0 sg str -gr -gs -6068.625 4045.625 m -6017.625 4045.625 L -1.25 slw 0 sg str -gr -gs -5964.625 4045.625 m -5913.625 4045.625 L -1.25 slw 0 sg str -gr -gs -5860.625 4045.625 m -5809.625 4045.625 L -1.25 slw 0 sg str -gr -gs -5756.625 4045.625 m -5705.625 4045.625 L -1.25 slw 0 sg str -gr -gs -5652.625 4045.625 m -5626.625 4045.625 L -1.25 slw 0 sg str -gr -gs -6544 4475 6607 4710 6481 4710 2 P -0 sg fill -gr -gs -6544.625 4710.625 m -6544.625 5198.625 L -1.25 slw 0 sg str -gr -gs -6544 4045 6481 3810 6607 3810 2 P -0 sg fill -gr -gs -6544.625 3440.625 m -6544.625 3810.625 L -1.25 slw 0 sg str -gr -gs -6431 4981 6657 5415 R -1 sg fill -gr -/_Helvetica ff [417 0 0 -417 0 0] mf sf -6431 5328 m 0 sg (h) show -gs -3165 4145 2930 4208 2930 4082 2 P -0 sg fill -gr -gs -2618.625 4145.625 m -2930.625 4145.625 L -1.25 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob07.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob07.gif deleted file mode 100755 index 9c9427d82..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob07.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob08a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob08a.eps deleted file mode 100755 index 32ecc8116..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob08a.eps +++ /dev/null @@ -1,574 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: ball hits spring.eps -%%CreationDate: 3/20/1996 -%%Pages: 0 -%%DocumentFonts: Helvetica -%%BoundingBox:-14 427 443 747 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica/Helvetica 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -1024 4120 1024 5839 4774 5839 4774 5214 1961 5214 1961 4589 4774 4589 4774 3964 -1024 3964 1024 4120 9 P closepath -0.75 sg fill -gr -gs -1024 4120 1024 5839 4774 5839 4774 5214 1961 5214 1961 4589 4774 4589 4774 3964 -1024 3964 1024 4120 9 P closepath -1.25 slw 0 sg str -gr -gs -165 4901 466 4820 466 4982 2 P -0 sg fill -gr -gs -1454.5 4901.5 m -466.5 4901.5 L -35 slw 0 sg str -gr -gs -2665 4628 3211 5175 OV -0 0 0 1 1 1 [8 66 0 144 4 64 16 1] patfill -gr -gs -2665.625 4628.625 3211.375 5175.375 OV -1.25 slw 0 sg str -gr -gs -1961.625 4901.625 m -2031.625 4901.625 L -1.25 slw 0 sg str -gr -gs -2031 4706 2136 5097 OV -1 sg fill -gr -gs -2031.625 4706.625 2136.375 5097.375 OV -1.25 slw 0 sg str -gr -gs -2084 4706 2188 5097 OV -1 sg fill -gr -gs -2084.625 4706.625 2188.375 5097.375 OV -1.25 slw 0 sg str -gr -gs -2136 4706 2241 5097 OV -1 sg fill -gr -gs -2136.625 4706.625 2241.375 5097.375 OV -1.25 slw 0 sg str -gr -gs -2188 4706 2293 5097 OV -1 sg fill -gr -gs -2188.625 4706.625 2293.375 5097.375 OV -1.25 slw 0 sg str -gr -gs -2241 4706 2346 5097 OV -1 sg fill -gr -gs -2241.625 4706.625 2346.375 5097.375 OV -1.25 slw 0 sg str -gr -gs -2293 4706 2398 5097 OV -1 sg fill -gr -gs -2293.625 4706.625 2398.375 5097.375 OV -1.25 slw 0 sg str -gr -gs -2346 4706 2451 5097 OV -1 sg fill -gr -gs -2346.625 4706.625 2451.375 5097.375 OV -1.25 slw 0 sg str -gr -gs -2398 4706 2503 5097 OV -1 sg fill -gr -gs -2398.625 4706.625 2503.375 5097.375 OV -1.25 slw 0 sg str -gr -gs -2451 4706 2556 5097 OV -1 sg fill -gr -gs -2451.625 4706.625 2556.375 5097.375 OV -1.25 slw 0 sg str -gr -gs -2503.625 5097.625 m -2503.625 4901.625 L -1.25 slw 0 sg str -gr -gs -2503.625 4901.625 m -2590.625 4901.625 L -1.25 slw 0 sg str -gr -gs -2586 4706 2665 5097 R -0.25 sg fill -gr -gs -2586.625 4706.625 2665.375 5097.375 R -1.25 slw 0 sg str -gr -gs -2176 1015 2176 2733 5926 2733 5926 2108 3114 2108 3114 1483 5926 1483 5926 858 -2176 858 2176 1015 9 P closepath -0.75 sg fill -gr -gs -2176 1015 2176 2733 5926 2733 5926 2108 3114 2108 3114 1483 5926 1483 5926 858 -2176 858 2176 1015 9 P closepath -1.25 slw 0 sg str -gr -gs -3114.625 1796.625 m -3270.625 1796.625 L -1.25 slw 0 sg str -gr -gs -3270 1600 3504 1991 OV -1 sg fill -gr -gs -3270.625 1600.625 3504.375 1991.375 OV -1.25 slw 0 sg str -gr -gs -3387 1600 3622 1991 OV -1 sg fill -gr -gs -3387.625 1600.625 3622.375 1991.375 OV -1.25 slw 0 sg str -gr -gs -3504 1600 3739 1991 OV -1 sg fill -gr -gs -3504.625 1600.625 3739.375 1991.375 OV -1.25 slw 0 sg str -gr -gs -3622 1600 3856 1991 OV -1 sg fill -gr -gs -3622.625 1600.625 3856.375 1991.375 OV -1.25 slw 0 sg str -gr -gs -3739 1600 3973 1991 OV -1 sg fill -gr -gs -3739.625 1600.625 3973.375 1991.375 OV -1.25 slw 0 sg str -gr -gs -3856 1600 4090 1991 OV -1 sg fill -gr -gs -3856.625 1600.625 4090.375 1991.375 OV -1.25 slw 0 sg str -gr -gs -3973 1600 4208 1991 OV -1 sg fill -gr -gs -3973.625 1600.625 4208.375 1991.375 OV -1.25 slw 0 sg str -gr -gs -4090 1600 4325 1991 OV -1 sg fill -gr -gs -4090.625 1600.625 4325.375 1991.375 OV -1.25 slw 0 sg str -gr -gs -4208 1600 4442 1991 OV -1 sg fill -gr -gs -4208.625 1600.625 4442.375 1991.375 OV -1.25 slw 0 sg str -gr -gs -4325.625 1991.625 m -4325.625 1796.625 L -1.25 slw 0 sg str -gr -gs -4325.625 1796.625 m -4520.625 1796.625 L -1.25 slw 0 sg str -gr -gs -4520 1600 4598 1991 R -0.25 sg fill -gr -gs -4520.625 1600.625 4598.375 1991.375 R -1.25 slw 0 sg str -gr -gs -5614 1796 5915 1715 5915 1877 2 P -0 sg fill -gr -gs -6903.5 1796.5 m -5915.5 1796.5 L -35 slw 0 sg str -gr -gs -6903 1522 7450 2069 OV -0 0 0 1 1 1 [8 66 0 144 4 64 16 1] patfill -gr -gs -6903.625 1522.625 7450.375 2069.375 OV -1.25 slw 0 sg str -gr -gs -106 2733 7626 3163 R -0 0 0 1 1 1 [247 189 255 111 251 191 239 254] patfill -gr -gs -106.625 2733.625 7626.375 3163.375 R -1.25 slw 0 sg str -gr -gs -6180 1401 6475 1766 R -1 sg fill -gr -/_Helvetica ff [347 0 0 -347 0 0] mf sf -6180 1661 m 0 sg (Vi) show -gs -7054 2123 7523 2487 R -1 sg fill -gr -7054 2383 m 3.47 slw 0 sg (M1) show -gs -2411 2004 2879 2369 R -1 sg fill -gr -2411 2264 m 3.47 slw 0 sg (M2) show -gs -86 5839 7606 6268 R -0 0 0 1 1 1 [247 189 255 111 251 191 239 254] patfill -gr -gs -86.625 5839.625 7606.375 6268.375 R -1.25 slw 0 sg str -gr -gs -564 4407 859 4771 R -1 sg fill -gr -564 4667 m 3.47 slw 0 sg (V) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob08a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob08a.gif deleted file mode 100755 index 2bdf536da..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob08a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob09a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob09a.eps deleted file mode 100755 index 75b7ed00b..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob09a.eps +++ /dev/null @@ -1,873 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: jumping_cat.draw - /Users/freeman/CAPA/phy113m6/pictures4 -%%Creator: Draw -%%CreationDate: Fri Mar 22 17:13:02 1996 -%%For: freeman -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 158 330 382 388 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -158 330 224 58 rectclip -0 0 0 setup -164.000000 336.000000 transform -gsave __NXbasematrix setmatrix itransform translate -0 0 212 47 rectclip - -/__NXEPSSave save def /showpage {} def -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -/_NXcimage where{pop}{/_NXcimage /colorimage load def}ifelse /colorimage{dup 3 eq{true 2 index{1 index}{1}ifelse 7 add 1 roll _NXCalibratedImage}{_NXcimage}ifelse}def}if -0 setgray 0 setlinecap 1 setlinewidth -0 setlinejoin 10 setmiterlimit [] 0 setdash newpath count /__NXEPSOpCount exch def /__NXEPSDictCount countdictstack def -%%BeginDocument: -%!PS-Adobe-2.0 EPSF-1.2 -%%Title: JUMPCAT.EPS -%%Creator: DeskScan II - Hewlett-Packard Company -%%CreationDate: Wed Mar 20 20:2:31 1996 -%%BoundingBox: 0 0 212 47 -%%EndComments -%%EndProlog -save -15 dict begin -/xpoints 212 def -/ypoints 47 def -/xpixels 882 def -/ypixels 193 def -/rasterbytes 111 def -/bitspercomponent 1 def -/xunits xpixels xpoints div def -/yunits ypixels ypoints div def -/coords [xunits 0 0 yunits neg 0 ypixels] def -/picstr rasterbytes string def -/readimage { currentfile picstr readhexstring pop } def -xpixels ypixels bitspercomponent coords /readimage load -image -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC23FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF071FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1F1E3FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1F007FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1E00FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1F001FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81F807FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFF03FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FFE01FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFE01FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFF00FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000FFFF00FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00001FFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00003FFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800007FFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000007FFFFFE7FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000007FFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000000003FFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000000003FFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC0000FFFFFFFFFFFFF8000000E0007FFFFFFC001FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF0000001FFFFFFFFFFFE000000FC6E03FFFFFF80FC7FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF00007C0007FFFFFFFFC0000001FFFFF07FFFFE00FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF80000FC00003FFFF00000000003FFFFF03FF820383FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFE00001FF000001FE00000300000FFFFFFC0FF0007F9FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF801C03FF0000000000003FE0000FFFFFFE07E000F7FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFE007FFFFF0003E00000007FE0003FFFFFFE03C001F7FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFF8007FFFFE0003FF800000FFFC003FFFFFFF8381E3FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFC0000C0000001FFFF0000EFFFE001FFFFFFFC007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF0000000000001FFFE000007FFFC01FFFFFFFC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFE0000000000000FFFC00003FFFFE00FFFFFFFC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FF80E000FFFFE000FFF80000FFC0FE07FFFFFFFE00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FF03E007FFFFFC000FC00000FF007A07FFFFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FE07C00FFFFFFFC000000003FF003E0FFFFFFFFF0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC0300FFFFFFFFFF80000007FF803E3FFFFFFFFF800003FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC0003FFFFFFFFFFFC000007FFC07FFFFFFFFFFF800000003FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F80003FFFFFFFFFFFFC0000FFFC3FFFFFFFFFFFF800000000FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F8000FFFFFFFFFFFFF80003FFFFFFFFFFFF0FFFFC00000ECC1FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F0003FFFFFFFFFFFFF8001FF87FFFFFFFFE01FFFE00000FFF0FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E000FFFFFFFFFFFFFF0007FF07FFFFFFFF8007FFE0000003F01FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F80FFFFFFFFFFFFFFE1E0FFE03FFFFFFFE0003FFF0000000FC0FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFE1FFFC3E07FC03FFFFFFF80001FFFC0000007E03FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF807FF03F07F003FFFFFFC000007FFF8000000800FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF001F803FDFE003FFFFFE0009E03FFFF001800000FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFC0000007FFE8007FFFFF8007FF01FFFFE00000001FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF00000007FFC000FFFFFC000FFF81FFFFFE0000003FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE0000000FFF8000FFFFE0063FFFFC3FFFFFF803C07FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF00000001FFF8001FFFC007FFFFFFE007FFFFF00FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC00000001FEF8000FFC003FFFFFFFF000003FFE07FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF800000007FFF80000000FFFFFFFFFFE000007FF81FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFE0000001FFFFF0000003FFFFFFFFFFFFFC00007CC07FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF800000FFFFFF9000FFFFFFFFFFFFFFFFFFFF0000601FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFC1C0001FFFFFFE007FFFFFFFFFFFFFFFFFFFFF8000007FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFC0300001FFFFFFC00FFFFFFFFFFFFFFFFFFFFFFE000007FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFC03E00007FFFFFF803FFFFFFFFFFFFFFFFFFFFFFFE0000FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF80FC00007FFFFFF80FFFFFFFFFFFFFFFFFFFFFFFFFE001FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF07F00060FFCFFFC07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF000003C1FF000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF00000FC3FE00001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF0000FF83FC007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFC00FFF07F87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE0FF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF81FE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF01FC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC03F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF80FE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF0FFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFE0FFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFC0FF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF80FC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF03E01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF00007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF0003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA0007FFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800001FFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000001FFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000001FFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFF7000000000000000000000FFFE3FFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF000000000000000000000000000000000001FFFE1FFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF0000000000000000000000000000000000000000000000000FFFE1FFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -000000000000000000000000000000000000000000000000000000078801FFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000000000 -000000000000000000000000000000000387FFFC7FF80000000000000001FFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000000000 -0000000000000001011FFFFFFFFFFFFF8006000000000000000000000001FFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000000000 -000007FFFFFFFFFFFFE20C00000000000000000000000000000000000001FFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000000000C1 -FFFFFFFFFF8FF40000000000000000000000000000000000000000000007FFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000000000 -000000000000000000000000000000000000000000180EFFFFFFC07FFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -000000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000000000 -0000000000000000000000000000E032800001FFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000000000 -000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000000000 -00000000000000000FFFFFFFFFFFFFFFFC7FE3FFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000000000000000 -000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000000000 -0033FFFFFC01E1FFFFFFFFFFFFFFFFFFFC3FC3FFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFF00001FFFFFFFFFFFFFFFFFFFFFFFF800000000000000000000000000000 -0227FFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00001FFFFFF -FFFFFFFFFC07F1FFFFFFFFFFFFFFFFFFFC0003FFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFE00000FFFFFFFFFFFFFFF8000000000000000000000000000007FFFFFFFF -FFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1C07FFFFFF -FFFFFFFFFC0401FFFFFFFFFFFFFFFFFFFC0003FFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFE000003FFFE00000000000000000000000000000000007FFFFFFFFFFFFFF -FFFFFFFFF803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0607FFFFFF -FFFFFFFFFE0001FFFFFFFFFFFFFFFFFFFF000FFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFE000000000000000000000000000000867FFFFFFFFFFFFFFFFFFFFFFFFFF -FEE000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0007FFFFFF -FFFFFFFFFE0001FFFFFFFFFFFFFFFFFFFF841FFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFC0000000000000000000000020FFFFFFFFFFFFFFFFFFFFFFFFF000000000 -000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0007FFFFFF -FFFFFFFFFF0003FFFFFFFFFFFFFFFFFFFF860FFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFC1FFF000000000000FFFFFFFFFFFFFFFFFFFF98000000000000000000000 -000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0007FFFFFF -FFFFFFFFFFE003FFFFFFFFFFFFFFFFFFFF8F0FFFFFFFFFFFFFF03FFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFC3FFF80003FFFFFFFFFFFFFFFFE50C0000000000000000000000000000CB -FFFFFFC3F87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFF -FFFFFFFFFFE003FFFFFFFFFFFFFFFFFFFF0F07FFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFC0FFE0003FFFFFFFFE00000000000000000000000000000003FFFFFFFFFF -FFFFFFC7F87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFF -FFFFFFFFFFE381FFFFFFFFFFFFFFFFFFFE0F87FFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFC000000000000000000000000000000000000DFFFFFF8FF0FFFFFFFFFFFF -FFFFFFC0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0C3FFFFFFF -FFFFFFFFFFC3C1FFFFFFFFFFFFFFFFFFFE1FC3FFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFC000000000000000000000000000FFFFFFFFFFFFFFFF8FF8FFFFFFFFFFFF -FFFFFFC0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0E1FFFFFFF -FFFFFFFFFF87C3FFFFFFFFFFFFFFFFFFFC3FC1FFFFFFFFFFFE03FFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFE000000000000000FFFFFFFC3FC3FFFFFFFFFFFFFFFF87F0FFFFFFFFFFFF -FFFFFFC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1E0FFFFFFF -FFFFFFFFFF87E3FFFFFFFFFFFFFFFFFFFC3FE0FFFFFFFFFFFC07FFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFF800000007FFFFFFFFFFFFFC3FC7FFFFFFFFFFFFFFFF8000FFFFFFFFFFFF -FFFFFFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83F87FFFFFF -FFFFFFFFFF0FE1FFFFFFFFFFFFFFFFFFF07FF07FFFFFFFFFF00FFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFFC0007FFFFFFFFFFFFFFFF0000FFFFFFFFFFFF -FFFFFFE001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FC3FFFFFF -FFFFFFFFFE0FF0FFFFFFFFFFFFFFFFFFF07FF83FFFFFFFFFE03FFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFFFFFC0007FFFFFFFFFFFFFFFF8001FFFFFFFFFFFF -FFFFFFF060FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFC1FFFFFF -FFFFFFFFFE1FF87FFFFFFFFFFFFFFFFFE0FFFC1FFFFFFFFF007FFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFC0007FFFFFFFFFFFFFFFFF007FFFFFFFFFFFF -FFFFFFF0F87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFE0FFFFFF -FFFFFFFFFC1FFC1FFFFFFFFFFFFFFFFFC1FFFE07FFFFFFF001FFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFFFF8007FFFFFFFFFFFFFFFFF007FFFFFFFFFFFF -FFFFFFE0FC1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFF07FFFFF -FFFFFFFFF83FFE0FFFFFFFFFFFFFFFFF83FFFF03FFFFFF0007FFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFF870FFFFFFFFFFFFFFFFFE007FFFFFFFFFFFF -FFFFFFE1FE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFC1FFFFF -FFFFFFFFF07FFF07FFFFFFFFFFFFFFFF07FFFFC0FFFFE0000FFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFF870FFFFFFFFFFFFFFFFFE1C3FFFFFFFFFFFF -FFFFFFC1FF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFE0FFFFF -FFFFFFFFE07FFF81FFFFFFFFFFFFFFFC0FFFFFC03FF000007FFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFF8F87FFFFFFFFFFFFFFFFC3E3FFFFFFFFFFFF -FFFFFF83FF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFF83FFFF -FFFFFFFFC0FFFFC07FFFFFFFFFFFFFE00000000000000001FFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFF00FFFFFFFFFFFFFFF0FC7FFFFFFFFFFFFFFFFC3E1FFFFFFFFFFFF -FFFFFF07FFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FFFFFC0FFFF -FFFFFFFF01FFFFC00FFD000000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFF807FFFFFFFFFFFFFE1FE3FFFFFFFFFFFFFFFF87F0FFFFFFFFFFFF -FFFFFE07FFF83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFFFE00FFF -FFFFFFFC000000000000000000000000000000000000007FFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFC3FE1FFFFFFFFFFFFFFFF07F87FFFFFFFFFFF -FFFFFC0FFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFE00000 -0000000000000000000000000000000000000000000001FFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFE00FFFFFFFFFFFFF87FE0FFFFFFFFFFFFFFFE0FF83FFFFFFFFFFF -FFFFF83FFFFF01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000 -00000000000000000000000000000000000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFF807FFFFFFFFFFFF07FF87FFFFFFFFFFFFFFE1FFC0FFFFFFFFFFF -FFFFE07FFFFFC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000000000000000000 -0000000000000000000000000000000000000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFC01FFFFFFFFFFFE1FFFC3FFFFFFFFFFFFFF83FFE07FFFFFFFFFF -FFFF807FFFFFF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000000 -0000000000000000000000000201001BFFFFFFF777FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFFFFC1FFFC1FFFFFFFFFFFFFF03FFF81FFFFFFFFFF -FFFF007FFFFFC0000807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000000 -000000000003199BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFC00FFFFFFFFFF03FFFF07FFFFFFFFFFFFC07FFFC07FFFFFFFFF -E0000000000000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000000000000000041B -FF9BBBBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFE000FFFFFFFFE07FFFF03FFFFFFFFFF7E007FFF800000000000 -00000000000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000500C9DDFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFF8001FFFFFFF807FFFF007FFFFFC00000000000000000000000 -000000000000000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFE00007FFFFC001F80000000000000000000000000000000000 -000000000000000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFC000000000000000000000000000000000000000000000000 -00000000000000423FFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000000000000 -0017ECEFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFE0000000000000000000000000000000000000000000C7FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000000003E33B3FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000000001BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE200007EFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFEFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -end -restore -%%Trailer - -%%EndDocument -count __NXEPSOpCount sub {pop} repeat countdictstack __NXEPSDictCount sub {end} repeat __NXEPSSave restore -grestore -grestore -0 0 0 setup -gsave -/Helvetica findfont 12 scalefont [1 0 0 -1 0 0] makefont -12 -exch -defineuserobject -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 727] concat -12 execuserobject setfont -0 nxsetgray -171 368 moveto (sled 1) show -grestore -grestore -0 0 0 setup -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 731] concat -12 execuserobject setfont -0 nxsetgray -335 370 moveto (sled 2) show -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob09a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob09a.gif deleted file mode 100755 index e3746b409..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob09a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob10a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob10a.eps deleted file mode 100755 index 65296a541..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob10a.eps +++ /dev/null @@ -1,439 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: hw7p4f.eps -%%CreationDate: 10/8/1994 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%BoundingBox:93 406 505 633 -%%EndComments -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -3411 3316 4366 3958 R -0.75 sg fill -gr -gs -3410.75 3315.75 4366.25 3958.25 R -17.5 slw 0 sg str -gr -gs -5912 3316 6866 3958 R -0 0 0 1 1 1 [76 210 83 45 150 89 70 179] patfill -gr -gs -5911.75 3315.75 6866.25 3958.25 R -17.5 slw 0 sg str -gr -gs -2152 3619 2170 3619 1 P -17.5 slw 0 sg str -gr -gs -3724 5503 4679 6145 R -0.75 sg fill -gr -gs -3723.75 5502.75 4679.25 6145.25 R -17.5 slw 0 sg str -gr -gs -7162 5503 8116 6145 R -0 0 0 1 1 1 [76 210 83 45 150 89 70 179] patfill -gr -gs -7161.75 5502.75 8116.25 6145.25 R -17.5 slw 0 sg str -gr -gs -3724 5746 4679 5920 R -1 sg fill -gr -gs -3723.75 5745.75 4679.25 5920.25 R -17.5 slw 0 sg str -gr -gs -7162 5746 7734 5920 R -1 sg fill -gr -gs -7161.75 5745.75 7734.25 5920.25 R -17.5 slw 0 sg str -gr -gs -4870 5243 5078 5469 R -1 sg fill -gr -/_Times-Roman ff [208 0 0 -208 0 0] mf sf -4870 5399 m 0 sg (v1) show -gs -4909 5217 5169 5495 R -gr -gs -2161 6128 8429 6458 R -0 sg fill -gr -gs -2160.75 6127.75 8429.25 6458.25 R -17.5 slw 0 sg str -gr -gs -4818 5338 4660 5412 4660 5264 2 P -0 sg fill -gr -gs -4036.625 5338.625 m -4818.625 5338.625 L -1.25 slw 0 sg str -gr -gs -8255 5338 8097 5412 8097 5264 2 P -0 sg fill -gr -gs -7787.625 5338.625 m -8255.625 5338.625 L -1.25 slw 0 sg str -gr -gs -8307 5225 8516 5451 R -1 sg fill -gr -8307 5381 m 2.08 slw 0 sg (v2) show -gs -7669 5833 7511 5907 7511 5759 2 P -0 sg fill -gr -gs -7552.625 5833.625 m -7669.625 5833.625 L -1.25 slw 0 sg str -gr -gs -4445 3507 4722 3732 R -1 sg fill -gr -4445 3663 m 2.08 slw 0 sg (M1) show -gs -6945 3507 7222 3732 R -1 sg fill -gr -6945 3663 m 2.08 slw 0 sg (M2) show -gs -2179 3628 2021 3702 2021 3554 2 P -0 sg fill -gr -gs -2161.625 3628.625 m -2179.625 3628.625 L -1.25 slw 0 sg str -gr -gs -1849 3507 2005 3732 R -1 sg fill -gr -1849 3663 m 2.08 slw 0 sg (m) show -gs -2161 3941 8429 4270 R -0 sg fill -gr -gs -2160.75 3940.75 8429.25 4270.25 R -17.5 slw 0 sg str -gr -gs -2962 3112 2804 3186 2804 3038 2 P -0 sg fill -gr -gs -2064.625 3112.625 m -2962.625 3112.625 L -1.25 slw 0 sg str -gr -gs -3014 2999 3223 3225 R -1 sg fill -gr -3014 3155 m 2.08 slw 0 sg (v0) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob10a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob10a.gif deleted file mode 100755 index 33a28a62d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob10a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob11a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob11a.eps deleted file mode 100755 index 4edccf053..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob11a.eps +++ /dev/null @@ -1,837 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Sun Oct 2 21:59:39 1994 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 548 163 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /rpath { - newpath moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} bind def /rfpath { - /rad3 exch def /hh3 exch def /ww3 exch def /yy1 exch def /xx1 exch def /xx2 xx1 ww3 add def /yy2 yy1 hh3 add def newpath xx1 yy1 rad3 hh3 0 gt { - add - } { - sub - } ifelse moveto xx1 yy1 xx2 yy1 rad3 arcto 4 { - pop - } repeat xx2 yy1 xx2 yy2 rad3 arcto 4 { - pop - } repeat xx2 yy2 xx1 yy2 rad3 arcto 4 { - pop - } repeat xx1 yy2 xx1 yy1 rad3 arcto 4 { - pop - } repeat closepath -} bind def /rfill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - 4 2 roll rpath crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - rectfill pop - } ifelse grestore -} bind def /rstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse 4 2 roll rpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /rffill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse rfpath filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /rfstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse rfpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /mkrpath { - dodrawctm rpath unpagectm -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /estroke { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /efill { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath unpagectm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /apstroke { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc pie chord or { - closepath - } if crlinalph setalpha pie not chord not and { - crfrtarw { - 2 copy crlinw exch gsave newpath angle1 1 add cos radius mul radius add angle1 1 add sin radius mul radius add moveto angle1 cos radius mul radius add angle1 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if crendarw { - 2 copy crlinw exch gsave newpath angle2 1 sub cos radius mul radius add angle2 1 sub sin radius mul radius add moveto angle2 cos radius mul radius add angle2 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if - } if crlincp setlinecap crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /apfill { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup 5 -2 roll arc pie chord or { - closepath - } if 1 xscale div 1 yscale div scale crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /mkepath { - dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def /closed exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc closed pie or chord or { - closepath - } if unpagectm -} bind def end -TopDrawDict begin /closedspl false def /nspans 0 def /sstrt { - gsave dodrawctm /closedspl exch def /nspans 0 def newpath -} bind def /sstrtpath { - dodrawctm /closedspl exch def /nspans 0 def newpath -} bind def /sadd { - nspans 0 eq { - moveto - } { - pop pop - } ifelse curveto /nspans nspans 1 add def -} bind def /splstroke { - nspans 0 gt { - unpagectm concat closedspl { - closepath - } if crlincp setlinecap crlinjn setlinejoin crlinalph setalpha crlinw setlinewidth crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - flattenpath crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse - } { - pop pop - } ifelse grestore -} bind def /splfill { - nspans 0 gt { - closedspl { - closepath - } if crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - flattenpath crfilpat findfont exch crfilstyl 0 eq { - filwittrans { - trpateofil - } { - oppateofil - } ifelse - } { - filwittrans { - trpatfil - } { - oppatfil - } ifelse - } ifelse - } { - crfilstyl 0 eq { - eofill - } { - fill - } ifelse pop - } ifelse - } if grestore -} bind def /mksplpath { - nspans 0 gt { - closedspl { - closepath - } if - } if -} bind def end -%%EndSetup -gsave -0 0 549 163 rectclip --42.451984 -448.008514 translate -42.451984 448.008514 547.592773 162.635101 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 1 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 249 547 57 -25 1.3 0 0 1.441768 25.464005 -256.518616 sc6mt astore rstroke -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 177 547 57 -25 1.3 0 0 1.441768 25.464005 -256.518616 sc6mt astore rstroke -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 108.5 547 57 -25 1.3 0 0 1.441768 25.464005 -256.518616 sc6mt astore rstroke -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 37.5 547 57 -25 1.3 0 0 1.441768 25.464005 -256.518616 sc6mt astore rstroke -/esave save def 1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc6mt astore 345.030304 191.659286 100 658 1.555556 -1 4.5 false false 1.207143 0 0 1.865703 2.249713 -726.290894 sc5mt astore apstroke esave restore -/esave save def 1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc6mt astore 345.030273 191.659286 100 658 1.555556 -1 4.5 false false 1.207143 0 0 1.865703 -38.050289 -726.290894 sc5mt astore apstroke esave restore -/esave save def 1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc6mt astore 342.674927 191.659286 100 658 1.555556 -1 4.5 false false 1.207143 0 0 1.865703 55.549713 -726.290894 sc5mt astore apstroke esave restore -/esave save def 1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc6mt astore 342.674866 191.659286 100 658 1.555556 -1 4.5 false false 1.207143 0 0 1.865703 93.24971 -726.290894 sc5mt astore apstroke esave restore -/esave save def 1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc6mt astore 337.95343 191.659286 100 658 1.555556 -1 4.5 false false 1.207143 0 0 1.865703 145.249695 -726.290894 sc5mt astore apstroke esave restore -/esave save def 1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc6mt astore 345.987671 191.659286 100 658 1.555556 -1 4.5 false false 1.207143 0 0 1.865703 182.949707 -726.290894 sc5mt astore apstroke esave restore -/esave save def 1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc6mt astore 342.674957 191.659286 100 658 1.555556 -1 4.5 false false 1.207143 0 0 1.865703 237.549698 -726.290894 sc5mt astore apstroke esave restore -/esave save def 1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc6mt astore 345.030334 191.659286 100 658 1.555556 -1 4.5 false false 1.207143 0 0 1.865703 279.149719 -726.290894 sc5mt astore apstroke esave restore -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 292 572 9 -25 1.3 0 0 1.441768 25.464005 -256.518616 sc6mt astore rstroke -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 251 562 31 -15 1.3 0 0 1.441768 25.464005 -256.518616 sc6mt astore rstroke -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc6mt astore 8.93399 1 -1.111929 278.56601 615.43396 1.3 0 0 1.150111 6.464005 -103.817642 sc5mt astore estroke -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc6mt astore 15.655487 1 -1.063877 245.844513 653.155518 1.3 0 0 1.06912 -13.335995 -88.301376 sc5mt astore estroke -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 14 0 94 527 1.3 0 0 1.441768 25.464005 -256.518616 sc6mt astore ssl -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 11 0 166 526 1.3 0 0 1.441768 25.464005 -256.518616 sc6mt astore ssl -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 14 0 235 526 1.3 0 0 1.441768 25.464005 -256.518616 sc6mt astore ssl -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 43 539.5 17 -11 1.3 0 0 1.441768 25.464005 -252.193298 sc6mt astore rstroke -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc6mt astore 4 1 1 66.75 425.75 1.3 0 0 1.441768 -0.535995 -101.528503 sc5mt astore estroke -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 0 -3.25 50 536.75 1.3 0 0 1.441768 25.464005 -252.193298 sc6mt astore ssl -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 0 -3.25 51.75 536.75 1.3 0 0 1.441768 25.464005 -252.193298 sc6mt astore ssl -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 4.25 0 48.75 532.5 1.3 0 0 1.441768 25.464005 -252.193298 sc6mt astore ssl -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 43 539.5 17 -11 1.3 0 0 1.441768 59.914001 -251.472412 sc6mt astore rstroke -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc6mt astore 4 1 1 66.75 425.75 1.3 0 0 1.441768 33.914001 -100.807617 sc5mt astore estroke -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 0 -3.25 50 536.75 1.3 0 0 1.441768 59.914001 -251.472412 sc6mt astore ssl -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 0 -3.25 51.75 536.75 1.3 0 0 1.441768 59.914001 -251.472412 sc6mt astore ssl -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 4.25 0 48.75 532.5 1.3 0 0 1.441768 59.914001 -251.472412 sc6mt astore ssl -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 43 539.5 17 -11 1.3 0 0 1.441768 120.363998 -251.472412 sc6mt astore rstroke -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc6mt astore 4 1 1 66.75 425.75 1.3 0 0 1.441768 94.363998 -100.807617 sc5mt astore estroke -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 0 -3.25 50 536.75 1.3 0 0 1.441768 120.363998 -251.472412 sc6mt astore ssl -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 0 -3.25 51.75 536.75 1.3 0 0 1.441768 120.363998 -251.472412 sc6mt astore ssl -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 4.25 0 48.75 532.5 1.3 0 0 1.441768 120.363998 -251.472412 sc6mt astore ssl -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 43 539.5 17 -11 1.3 0 0 1.441768 151.563995 -251.472412 sc6mt astore rstroke -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc6mt astore 4 1 1 66.75 425.75 1.3 0 0 1.441768 125.563995 -100.807617 sc5mt astore estroke -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 0 -3.25 50 536.75 1.3 0 0 1.441768 151.563995 -251.472412 sc6mt astore ssl -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 0 -3.25 51.75 536.75 1.3 0 0 1.441768 151.563995 -251.472412 sc6mt astore ssl -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 4.25 0 48.75 532.5 1.3 0 0 1.441768 151.563995 -251.472412 sc6mt astore ssl -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 43 539.5 17 -11 1.3 0 0 1.441768 241.914001 -251.472412 sc6mt astore rstroke -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc6mt astore 4 1 1 66.75 425.75 1.3 0 0 1.441768 215.914001 -100.807617 sc5mt astore estroke -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 0 -3.25 50 536.75 1.3 0 0 1.441768 241.914001 -251.472412 sc6mt astore ssl -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 0 -3.25 51.75 536.75 1.3 0 0 1.441768 241.914001 -251.472412 sc6mt astore ssl -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 4.25 0 48.75 532.5 1.3 0 0 1.441768 241.914001 -251.472412 sc6mt astore ssl -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 43 539.5 17 -11 1.3 0 0 1.441768 206.813995 -251.472412 sc6mt astore rstroke -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc6mt astore 4 1 1 66.75 425.75 1.3 0 0 1.441768 180.813995 -100.807617 sc5mt astore estroke -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 0 -3.25 50 536.75 1.3 0 0 1.441768 206.813995 -251.472412 sc6mt astore ssl -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 0 -3.25 51.75 536.75 1.3 0 0 1.441768 206.813995 -251.472412 sc6mt astore ssl -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 4.25 0 48.75 532.5 1.3 0 0 1.441768 206.813995 -251.472412 sc6mt astore ssl -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc6mt astore 4.21698 1 -1.237136 289.78302 590.21698 1.3 0 0 1.016457 27.464005 -12.93042 sc5mt astore estroke -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc6mt astore 4.424423 1 -1.226022 155.075577 477.424438 1.3 0 0 1.441768 167.813995 -139.735352 sc5mt astore estroke -/crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /filinclr true def -1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 97.5 462 8 -5 1.3 0 0 1.441768 243.213989 -113.783524 sc6mt astore rfill -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 97.5 462 8 -5 1.3 0 0 1.441768 243.213989 -113.783524 sc6mt astore rstroke -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore -4.5 0 110.5 457 1.3 0 0 1.441768 243.213989 -113.783524 sc6mt astore ssl -/esave save def 1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc6mt astore 345.963745 180 118 441 1.25 1 2 false false 1.3 0 0 1.441768 218.513992 -104.412033 sc5mt astore apstroke esave restore -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 0 2 119 456.5 1.3 0 0 1.441768 218.513992 -117.387947 sc6mt astore ssl -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 0 2 122.5 456.5 1.3 0 0 1.441768 218.513992 -117.387947 sc6mt astore ssl -/crlinw 3 def -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 336 0 24 515 1.3 0 0 1.441768 11.464005 -258.518616 sc6mt astore ssl -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore 22.536011 -35.550354 479.463989 484.550354 1 0 0 1 0 0 sc6mt astore ssl -/crlinw 1 def -false 0.77 0 0 0.77 195.151733 96.990616 sc5mt astore sstrt -systemdict -begin -462.75 544.5 489.75 550 setbbox -462.75 547.75 moveto -462.75 547.75 471.75 550 471.75 550 curveto -471.75 550 478.058533 549.515015 478.25 549.5 curveto -478.44104 549.485046 484.5 547.75 484.5 547.75 curveto -484.5 547.75 489.396515 548.309937 489.5 548.25 curveto -489.539032 548.227417 489.75 544.5 489.75 544.5 curveto -end -/nspans 5 def 0.77 0 0 0.77 97.279221 126.52562 sc5mt astore 0.77 0 0 0.77 97.279221 126.52562 sc6mt astore splstroke -false 0.77 0 0 0.77 196.691742 96.990616 sc5mt astore sstrt -systemdict -begin -460 534.232788 490.760895 547 setbbox -461.5 545.75 moveto -461.5 545.75 472 547 472 547 curveto -472 547 478.561371 546.738708 478.75 546.75 curveto -478.936371 546.761169 485.315643 544.778076 485.5 544.75 curveto -485.660614 544.725586 490.430756 544.353821 490.5 544.25 curveto -490.595764 544.106323 490.760895 537.701477 490.75 537.5 curveto -490.74588 537.424011 490.046356 535.05481 490 535 curveto -489.963867 534.957275 488.044739 534.232788 488 534.25 curveto -487.947235 534.270325 486.761749 536.185303 486.75 536.25 curveto -486.73175 536.350342 487.053986 539.739502 487 539.75 curveto -486.514008 539.844482 469.545288 538.96521 469 539 curveto -468.840271 539.010193 460.75 539.5 460.75 539.5 curveto -end -/nspans 11 def 0.77 0 0 0.77 97.279221 126.52562 sc5mt astore 0.77 0 0 0.77 97.279221 126.52562 sc6mt astore splstroke -false 0.77 0 0 0.77 168.779236 101.225616 sc5mt astore sstrt -systemdict -begin -423 538.75 432 544.004883 setbbox -431 543.75 moveto -431 543.75 428.325958 543.997375 428.25 544 curveto -428.108429 544.004883 424.876282 542.307861 424.75 542.25 curveto -424.696289 542.225403 423 538.75 423 538.75 curveto -end -/nspans 3 def 0.77 0 0 0.77 97.279221 126.52562 sc5mt astore 0.77 0 0 0.77 97.279221 126.52562 sc6mt astore splstroke -false 0.77 0 0 0.77 168.779236 101.225616 sc5mt astore sstrt -systemdict -begin -387.25 531.748596 441.75 535.75 setbbox -441.75 533.25 moveto -441.75 533.25 424.661682 532.300232 424.25 532.25 curveto -423.739197 532.187683 407.503174 531.985229 407 532 curveto -406.993164 532.000183 407.260498 532.750732 407.25 532.75 curveto -407.155487 532.743225 403.612122 531.748596 403.5 531.75 curveto -403.012115 531.756104 387.25 533 387.25 533 curveto -end -/nspans 5 def 0.77 0 0 0.77 97.279221 126.52562 sc5mt astore 0.77 0 0 0.77 97.279221 126.52562 sc6mt astore splstroke -false 0.77 0 0 0.77 168.779236 101.225616 sc5mt astore sstrt -systemdict -begin -387 533.25 409 539.053528 setbbox -409 536.25 moveto -409 536.25 403.187012 538.978516 403 539 curveto -402.534515 539.053528 387.670837 538.901245 387.25 538.75 curveto -387.190857 538.72876 387 533.25 387 533.25 curveto -end -/nspans 3 def 0.77 0 0 0.77 97.279221 126.52562 sc5mt astore 0.77 0 0 0.77 97.279221 126.52562 sc6mt astore splstroke -false 0.77 0 0 0.77 168.779236 101.225616 sc5mt astore sstrt -systemdict -begin -404.5 537.25 426.5 540.775757 setbbox -425.75 538.25 moveto -425.75 538.25 421.903229 540.216248 421.75 540.25 curveto -421.460724 540.313721 412.046448 540.775757 411.75 540.75 curveto -411.528961 540.730774 404.5 538.75 404.5 538.75 curveto -end -/nspans 3 def 0.77 0 0 0.77 97.279221 126.52562 sc5mt astore 0.77 0 0 0.77 97.279221 126.52562 sc6mt astore splstroke -false 0.77 0 0 0.77 168.779236 101.225616 sc5mt astore sstrt -systemdict -begin -415.995697 542 430.774811 560.769348 setbbox -428.75 547 moveto -428.75 547 428.225464 549.447449 428.25 549.5 curveto -428.277985 549.559937 430.228973 550.941101 430.25 551 curveto -430.303955 551.151062 430.774811 556.341248 430.75 556.5 curveto -430.737305 556.581238 429.070343 558.950195 429 559 curveto -428.89035 559.077698 424.88269 560.724304 424.75 560.75 curveto -424.650177 560.769348 421.346008 560.533386 421.25 560.5 curveto -421.173492 560.473389 419.039978 558.818542 419 558.75 curveto -418.882477 558.548523 416.025696 551.724854 416 551.5 curveto -415.995697 551.462341 417.958435 550.058167 418 550 curveto -418.033447 549.953186 418.462494 548.022522 418.5 548 curveto -418.537506 547.977478 420.5 548.500732 420.5 548.5 curveto -420.5 548.493225 418.519836 547.791626 418.5 547.75 curveto -418.444824 547.634155 417.939606 543.316162 418 543.25 curveto -418.097107 543.143677 423.75 542 423.75 542 curveto -end -/nspans 14 def 0.77 0 0 0.77 97.279221 126.52562 sc5mt astore 0.77 0 0 0.77 97.279221 126.52562 sc6mt astore splstroke -false 0.77 0 0 0.77 168.779236 101.225616 sc5mt astore sstrt -systemdict -begin -419.5 555 423 556.512817 setbbox -419.5 555.75 moveto -419.5 555.75 421.690063 556.512817 421.75 556.5 curveto -421.795074 556.490356 423 555 423 555 curveto -end -/nspans 2 def 0.77 0 0 0.77 97.279221 126.52562 sc5mt astore 0.77 0 0 0.77 97.279221 126.52562 sc6mt astore splstroke -true 0.77 0 0 0.77 168.779236 101.225616 sc5mt astore sstrt -systemdict -begin -420.493256 552.979736 421 554.5 setbbox -421 554.5 moveto -421 554.5 420.500763 553.002258 420.5 553 curveto -420.493256 552.979736 420.75 553.75 420.75 553.75 curveto -420.75 553.75 421 554.5 421 554.5 curveto -end -/nspans 3 def 0.77 0 0 0.77 97.279221 126.52562 sc5mt astore 0.77 0 0 0.77 97.279221 126.52562 sc6mt astore splstroke -false 0.77 0 0 0.77 168.779236 101.225616 sc5mt astore sstrt -systemdict -begin -419.5 549.25 427.5 558.25 setbbox -419.5 558.25 moveto -419.5 558.25 424.135529 557.323608 424.25 557.25 curveto -424.34552 557.188599 426.453827 553.863647 426.5 553.75 curveto -426.551331 553.623657 427.5 549.25 427.5 549.25 curveto -end -/nspans 3 def 0.77 0 0 0.77 97.279221 126.52562 sc5mt astore 0.77 0 0 0.77 97.279221 126.52562 sc6mt astore splstroke -true 0.77 0 0 0.77 168.779236 101.225616 sc5mt astore sstrt -systemdict -begin -420.234985 549.235779 430.005127 560.259094 setbbox -427 559 moveto -427 559 423.252991 558.749268 423.25 558.75 curveto -423.222992 558.756775 426.003754 559.247742 426 559.25 curveto -425.966248 559.270264 422.117035 559.515259 422 559.5 curveto -421.944519 559.492737 420.25 558.499268 420.25 558.5 curveto -420.25 558.506775 421.946045 559.747742 422 559.75 curveto -422.126038 559.755249 426.247742 558.748474 426.25 558.75 curveto -426.270264 558.763489 422.859589 560.229126 422.75 560.25 curveto -422.702087 560.259094 421.045227 559.777161 421 559.75 curveto -420.970215 559.732117 420.234985 558.752991 420.25 558.75 curveto -420.38501 558.723022 425.883301 558.768433 426 558.75 curveto -426.025818 558.745911 424.993988 558.003723 425 558 curveto -425.053986 557.966248 427.921997 557.476013 428 557.5 curveto -428.019501 557.505981 428.256744 559.000732 428.25 559 curveto -428.18924 558.993225 425.742798 557.286072 425.75 557.25 curveto -425.750275 557.248535 428.475128 557.781128 428.5 557.75 curveto -428.505127 557.743591 426.743073 556.034607 426.75 556 curveto -426.75058 555.997131 428.75 556.506775 428.75 556.5 curveto -428.75 556.43927 426.749237 553.751526 426.75 553.75 curveto -426.756744 553.736511 428.997742 556.00824 429 556 curveto -429.020264 555.92572 427.498505 551.004517 427.5 551 curveto -427.513489 550.959473 429.497009 554.502258 429.5 554.5 curveto -429.527008 554.479736 428.550812 550.368591 428.5 550.25 curveto -428.483307 550.21106 427.248505 549.235779 427.25 549.25 curveto -427.263489 549.378235 428.99353 554.951355 429 555 curveto -429.008514 555.063843 427.750763 552.997742 427.75 553 curveto -427.743256 553.020264 428.768005 555.713989 428.75 555.75 curveto -428.745514 555.758972 427.007507 554.492493 427 554.5 curveto -426.984985 554.515015 428.01825 556.474487 428 556.5 curveto -427.980743 556.526978 425.779999 556.219971 425.75 556.25 curveto -425.734985 556.265015 426.461578 557.982544 426.5 558 curveto -426.544067 558.02002 428.456696 557.5354 428.5 557.5 curveto -428.539215 557.467896 429.238464 555.747681 429.25 555.75 curveto -429.27597 555.755188 429.736511 557.745483 429.75 557.75 curveto -429.759003 557.752991 430.005127 556.051208 430 556 curveto -429.99762 555.976257 429.506744 555.244751 429.5 555.25 curveto -429.43924 555.297241 427.75 557.75 427.75 557.75 curveto -427.75 557.75 427 559 427 559 curveto -end -/nspans 37 def 0.77 0 0 0.77 97.279221 126.52562 sc5mt astore 0.77 0 0 0.77 97.279221 126.52562 sc6mt astore splstroke -false 0.77 0 0 0.77 168.779236 101.225616 sc5mt astore sstrt -systemdict -begin -376.748505 534.75 386.75 538.511536 setbbox -386.25 534.75 moveto -386.25 534.75 385.040283 535.745667 385 535.75 curveto -384.762787 535.775635 377.158569 535.719482 377 535.75 curveto -376.963562 535.757019 378.504852 536.970825 378.5 537 curveto -378.497375 537.015808 376.748505 537.245483 376.75 537.25 curveto -376.763489 537.290527 378.930786 538.496521 379 538.5 curveto -379.230804 538.511536 386.75 537.75 386.75 537.75 curveto -end -/nspans 6 def 0.77 0 0 0.77 97.279221 126.52562 sc5mt astore 0.77 0 0 0.77 97.279221 126.52562 sc6mt astore splstroke -false 0.77 0 0 0.77 168.779236 101.225616 sc5mt astore sstrt -systemdict -begin -407.75 540.5 420 542.25 setbbox -420 542.25 moveto -420 542.25 411.265656 542.037964 411 542 curveto -410.898163 541.985474 407.75 540.5 407.75 540.5 curveto -end -/nspans 2 def 0.77 0 0 0.77 97.279221 126.52562 sc5mt astore 0.77 0 0 0.77 97.279221 126.52562 sc6mt astore splstroke -false 0.77 0 0 0.77 168.779236 101.225616 sc5mt astore sstrt -systemdict -begin -388.216248 539 406.25 541.539978 setbbox -406.25 539.5 moveto -406.25 539.5 401.405151 541.47998 401.25 541.5 curveto -400.940155 541.539978 391.06488 541.506042 390.75 541.5 curveto -390.674896 541.498535 388.29126 541.29126 388.25 541.25 curveto -388.216248 541.216248 388.25 539 388.25 539 curveto -end -/nspans 4 def 0.77 0 0 0.77 97.279221 126.52562 sc5mt astore 0.77 0 0 0.77 97.279221 126.52562 sc6mt astore splstroke -false 0.77 0 0 0.77 168.779236 101.225616 sc5mt astore sstrt -systemdict -begin -378.74176 538 387.25 542.007874 setbbox -387.25 540.75 moveto -387.25 540.75 383.61441 541.992859 383.5 542 curveto -383.37439 542.007874 379.362854 541.303467 379.25 541.25 curveto -379.220337 541.235962 378.74176 539.754517 378.75 539.75 curveto -378.824249 539.709473 381.907532 539.771545 382 539.75 curveto -382.132538 539.719055 386.25 538 386.25 538 curveto -end -/nspans 5 def 0.77 0 0 0.77 97.279221 126.52562 sc5mt astore 0.77 0 0 0.77 97.279221 126.52562 sc6mt astore splstroke -true 0.77 0 0 0.77 168.779236 101.225616 sc5mt astore sstrt -systemdict -begin -428.5 521 497.75 556 setbbox -433.25 541.5 moveto -433.25 541.5 428.5 546.75 428.5 546.75 curveto -428.5 546.75 437.25 552.25 437.25 552.25 curveto -437.25 552.25 473.5 552.5 473.5 552.5 curveto -473.5 552.5 497.25 556 497.25 556 curveto -497.25 556 495.5 547.5 495.5 547.5 curveto -495.5 547.5 497.25 542.75 497.25 542.75 curveto -497.25 542.75 494.5 535.5 494.5 535.5 curveto -494.5 535.5 497.75 531 497.75 531 curveto -497.75 531 494.75 525.75 494.75 525.75 curveto -494.75 525.75 495 521 495 521 curveto -495 521 458.5 529.5 458.5 529.5 curveto -458.5 529.5 435 535.25 435 535.25 curveto -435 535.25 433.25 541.5 433.25 541.5 curveto -end -/nspans 13 def 0.77 0 0 0.77 97.279221 126.52562 sc5mt astore 0.77 0 0 0.77 97.279221 126.52562 sc6mt astore splstroke -/crlinw 3 def -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore -15 -27 547 485 1 0 0 1 0 0 sc6mt astore ssl -1.3 0 0 1.3 -58.535995 -167.18396 sc4mt astore 1.3 0 0 1.3 -58.535995 -167.18396 sc5mt astore -44 0 590 484 1 0 0 1 0 0 sc6mt astore ssl -end -grestore -grestore -%%Trailer -%%DocumentFonts: diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob11a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob11a.gif deleted file mode 100755 index 2e26c0b6f..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob11a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob16.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob16.eps deleted file mode 100755 index 7d2f90d6e..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob16.eps +++ /dev/null @@ -1,1515 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Title: ROCKET.EPS -%%Creator: DeskScan II - Hewlett-Packard Company -%%CreationDate: Wed Mar 13 7:41:6 1996 -%%BoundingBox: 0 0 109 215 -%%EndComments -%%EndProlog -save -15 dict begin -/xpoints 109 def -/ypoints 215 def -/xpixels 151 def -/ypixels 298 def -/rasterbytes 151 def -/bitspercomponent 8 def -/xunits xpixels xpoints div def -/yunits ypixels ypoints div def -/coords [xunits 0 0 yunits neg 0 ypixels] def -/picstr rasterbytes string def -/readimage { currentfile picstr readhexstring pop } def -xpixels ypixels bitspercomponent coords /readimage load -image -676F7271616F7C6D6A766F616C71676C6C6D776A6C776A65676D65636C6D63676C6A6C6D67 -6C65676F6A676C6D676F6D6A61656F67616F63636D6D6D6D6D676761676C6561676F61616D -6A67766F6065656C6760616C67636F766365766F656D6F6F61676C6D6C616A6563636C655C -67655C676F63676A65676763616361656C676A676A616A6F61616C63636A655B65616C615B -636563 -6C616A6A6F6F6A7671636F71676A6F6C676C6A6A6D716F6C6F6A6A6D656D6C636A716A6372 -6A636C67716560726D6A656C6A636776675B6C6A656C726F656A6C6C636C6D6A63606D6C61 -6F6F67656F6560656A656167656C6A636D6F60676A60636C67676F6C676563656561636565 -676A71636A7163636D676767636065616A6A635C6D6D67656F6A5C656D5C6565656363636C -606065 -6C6D616A6A676C6D6C716A6D716767726D63676D6D616F77676A726C676F6D6D655C6C716C -6C7971676C6D6567726D6567656765606D6F65656F6C616A6F676A6F67616C6D6565636771 -5B657167636A535B6C676A636A65636F6A6D6C6A676F6565716C67636C635A6F6F63606A63 -656C6F6C65636F6D5C61716559657167636D6C6365636C67656C6F61606F6C5A616D635B6C -606063 -676D766567777265727A716D71716C6C716C6A616C776A63716D656C6D6A67676F63606D76 -7167657667656F6F656A7667676A6C63656D656A676567635C6F6D61676A5A606767676A6C -6765726A6A6F616F6D636F775C65776D656C726C6A6F766A6A656D6A60657A675C6F6F6163 -716C616A6F6560676765606763635B6A6D606C6F6C65716D656A6D65606360606160656360 -616760 -6F6F6D6D6C716A7671656A766167776A61656760656C6F6A6A6D726C636A76616571616A6A -6D63657171726D6A676A6A6A6C606A7167616763616A726C61636C6C65676C636567716060 -716F63676D63617271656A656C65656C6D6A65727160656F6C60656F61606D676065636A67 -616A6760606D63606C63606361676065655B61656C6065636D63606A6A63656A61656A6F6A -67616C -6D71676C6F6A6A6F716C676F6A676371656A63676C63636D6565766F656F7261636A6D6C65 -6A6C6F636D716A616F6D616776656A6C6C6C6D656D635A6C7765636A615B6A6C6A616A6A61 -656C67655A6A676C6C6D65656F67656A636C63676D67616C6D6361636565616A6C61636A6A -60606D6A606C6F6761676C635C65716765717163636D6C6A676A675C616D6A61616F61636C -6A5B63 -6F766767766F6C6772776D6A6F726A676D6F656C716761656C6D67656F63606A7165636C72 -6567796353635B6565676C6363636760676A655B636161656D6F636C6565616C6A65636F6A -5C656C6A6165636C676A7267676A6C6C636D6F6765717663636D6765656F635C636C655C61 -6765606C6A63616A6C5C636F61606A656763676365616365616367605C61635C5C6A6A5C65 -6A655C -6D656A71656C796767726C6C6A6D6765616F6C6A635B6C63636A6A5C6A67606A676D656A6D -6A616D6D586D656565636A7265637667636C6C60676A6C6C6A6C6D6760656C5A636C656067 -6C6161676A6F6C6C716C676C6D636A726A6367636363676C726A636A5C606063606365635A -636C5B606C63616C6163606567636067716A5C6D726567726A60676A5B63616A6765636A65 -60656C -6D6D6C6D6F6C6C6D6C6D677271676C71676A71716A636A6C60606D6A6A6F776A636C76676C -726F6A636071656C6A656367656C63676F6A636A6C65616F6C616A6760636F6567656A6F61 -6367636C657263656F6C656C6A6A6767636561636767656A76615A716560656D6161606563 -60656D6C65677263596D6F67606A65616C766C5C65676A67616A675C616C63616A63606161 -656067 -67767767717C6C67716C6D7779716D6D72766F6D7977616D6F6067726C71716779676C6C6C -6A65585B67677165606C63636C6A676A676A6A6C6C6A616C716A6D636D6A61656D606A6F65 -656F6A715461676A6A6F7672616C726761726D5B5C6C6767636C6C63636A6C60656C5C5C6D -63616A6565616A6363636C676567616C635A6C635C6765656063635C63636A63616C6A6760 -6A6A5C -676A6F676567676C65636F71616A655C6567606165636160656D6A65656C67606C6D5A616F -5B58675C5C67656363596C6563616F675C6A6C615C676365676A676A6067615C6167615A61 -6C58776F5054636D676D656F6D5A5A61676060676563656F636367606167636167605C5B5B -636160636A7161616C60656D656561656360636A6D675B71675C676C65616D6F63676F6D67 -636C6A -6F6D6D7667617671656A6D6C715C6F76676C6F6A656A6F6363726F656C6F6C6C6A6D6D6A6C -6F6A6A65716C616F71636A7265636C6F796D607672606C726A656A76676571676A6A636563 -55766541395959606A6C616D7263656D67656567656C616C6563656D67616A6C675C65675C -61676D65636A6C635C6567615A6C635967615963656A636C63635B5C6D635C6A6C635B6161 -595B61 -72766D6A6A6D6563796760717A6C6F716F6A6A71766D6A71766A6A766A6172766C616D6C6C -6F67716C656D6D63676F6C606F676D6A6A6A656F6F6A6A6F716D67657167606F6A606A6A57 -8DBBA26F51A67E6A676D6C6A6C6D6F636C726763656D6365676F6D716C6C6D676F6D6A636D -6767726F67636F61606067676761616C6A636F6765726A6763676360676A63656565616565 -6C6360 -6C71726C6C6C6F6D6A65776F6C716F63676F656D6C6D61656D63676C656C6C5C6771636A71 -6365726A616C6A6567676C6F6A6C776D6A6A76636A796D676F716D676F6F63676F716C5B65 -825B5749494B595C6C6F6D6F6A616D6A6A67616C6C6C6F6C606C6D63656C6765636C6A676D -6A6761636F6C5C636F5C616F6C636A6D6D656A676C6C6C6D6C656C6F6A636D6A63676A635B -6A6C63 -7265677765676D716F6D726F6C676D6D6A6D7176716C766D656F6D6C6A726F6A6D6F656C6D -6F72726D716C5B6D6F676D7667636C726D676F6D6D6D6C796C636F726765766D676A676565 -59534C3B423C34344B7E63676F636A726767676A6C6A656A6C65606D65636A6D6D616D6D65 -6A726F6C67766D6A716F6C6A6C716A656D726767766D676C717163676F65616165605B6A6D -605C6A -6F6C656D6F726D6A72726A6D796A6A71766A6A7771636D6F676A6C6F6F656F7667636D716C -6C6C6C6A676F67676A6D6F676C6C6A6C6D716A6C716F676D6D6A6A6C65676C6F6A6A63715A -54554B554649413739576D6A6A6A6C716A7267656C7763616F6F616C7767676A6C656A656C -6C65656C6561716D656A6C6A6567716C6A6D6A6C67676D6A676F6D636A6C6363676561616A -6D6160 -636A7161636D6F65676F67676F6D6C6C6C716D676A6F65676D6C7171656D656F6A656C6F6D -6A676A6D6A676D67636C6C6C676F6C6359726F616D6D6F6A6D776761767A6F6A776D615C59 -544B486A45413E3E373E676F65636A71676771655C6F676C6A656A71636571656567616361 -6065676D6A6A676C67636D6D6A656A7A6D636F6F676571676A6F726765656D6A63676C655C -657265 -61656D6C6D6D6D716D676D6A656D6F65606F71676C766F636D726A6D6C766F6567766D5B71 -79656C766F656D6D6F6C6C776D61676A61616C6D6A6D6C6A616F6C6F6C6C6D676561615150 -514F444432443C39323946766C656D636A6D6A656D676A6D65636D77636A716763636A6759 -6A716D606A6F63606A6F61637A6F63716D6C65606F6F5C61716761676C605C6C675B656A63 -655C65 -726D656D796F6A71716C6C766D6A6C72726A6C777163717667677276676A766F6A6A6F716C -6C6F6D67676C6D676F726A71716763716D6567656F716A6F716C6C6D676C6D6A616158483E -42493E443E4B423239323465796D67676F6D6C6A726C65656C6F6A65716560656D655C6C67 -6365716A6C6C656360636D6C616C7167676D6761676D65636D65616C6760655B656A61656F -635A61 -6D6C716C6371796763776367726A63676F6F656F6F6C67656A716A6C6F6A656D6D656F6C6C -6A6C7265656A6D676D7172716D726C6D71726D67776C636371716A6D716C67636054484B4F -4D4642583B44403A32312C4477676F7160656D61636D6A6A6A6C6A656F67616567676A6563 -6C65636F6C656A6C6A636C6D63636D6D6D6C6A636565726C63656F675C676C636367656165 -636D6A -6563676D656C716C676C6D656F6A6A6F656A71636C7E6C6576766C6F72766A636C726C6772 -796A6D6F6A616D776A6D6D6C6C676C726D676D6F6365727165716F656365635A635555504D -4B444649373E373734312C345A7E6D6F67676F6A6C61616A6A636D72636C766A63676C6560 -636C6A67636767636F6C65676F655C6C6F6763676D61636A67675B656C615B6C6059656361 -616365 -6C65616F71656C727667717165606A6D6D6A6A6D6A6A777C6F6D77776A6C766C65716D6C67 -6D6F716A6572656A717661677967656F65616C636A676C716F6A716F6C605C6C534B4C4242 -44403B3C393A37343A3227293A766C6A6F6A61616F616067676561636C61656361635C6C6D -6065795C595C635B5C5B676063656A65616A635C5B6D5C616A606563656A63615C65615C63 -615B61 -6D6F67726A6C71676C726D656D6C60636F6A60716C6C716D71716A6C7167636F6C6D6D716A -616D716367726C71716A716A6C6F6C67716C6565726D606A726F6A77796D61584C49444548 -424040452F3A3A37412E2C2629487A676365655C616A6D61636D6361676765656563636367 -67636C61635C6167655C656C63656A676565656F63616A6D636C6C6560656D5C63716C5C63 -656063 -6A6F7172656A6D6A6D776A6D716F6C6C6A6A6D676A776F6777766D6D7971676A716C6A6D6F -6F61676F71676D6F6A67776C6372726F6F6C766F656A6F67676C766C676C5C49484B444144 -4139343B2934322F29292E2E26347E6F63636D61656767676A676A6C656571615B6A6D6763 -6D6767656F6363636F6A605B7665656D7263616F6D5865716A63636A6561636D6563616A61 -606165 -6C6A76766F6567766D6D6C726C636F72616C766C656D716F6F77796F6571796A60726A676D -766D676C6D6C6A65726C656772656A6F6C636C6F6C656C63616A6D676A6355463C343C3941 -313A2F3B2F3B322F2C2E2729242760796D6563657667616C6A6367716C636F6F6765676F63 -63676F60656D6C63606D636165606A63616767656A6A5C5C616A676167655B676365656163 -656365 -6D7A6C6A7271636C6F6A6565716A5C63716F676F6D676A71776C71766C6C6F716C6D6C716C -6C76766C6D7277656C716A6C796A6A6F716F6C67766C6365766C636F6F5B4841454D444955 -40443C3A32423A3A343E2C292C1F3A6D6D6C6A656C6D6C63656D676367656A616A605C676C -5C656D67656563675C5C6A6C5C676C63656D716A6372676565656763616C6A5C5C716A6067 -6F6161 -6C6D6C6F676C6D6A676F6D676A716A61726D6D6D717167727A776F71776F6C6C776F677272 -676A7771716C77726C6A716F6A677E6C616D76635B716F656C636C635B7961513E393A3231 -312C32442E322C2C26272426242629596F656F6A6A61716A636F6C6C676D6C6C6A656F656A -726A65616D675B6A6D60616D6D6363656A636A6D6A61606D675C656A5B5C65655C606C6560 -656163 -776D71776C677271676F76726F6A6D6C6C6C71766A6C716D6F79726F726A6F6D6C71716C71 -6C716C6C726F65766F636A6A6763676D67656F6A65656D6A63656D715A5A453B3E41393A3E -3B3937322C2F2E2E2C2926221F221D469261676A6C6567716C6C63716D5C677263606D6C6A -63636C61656C6F6A616A6F63636A6C616D676063656363676060615B656563606765636D6F -615B6C -7172716F716C6A636D6C5C677A60656F656C6F6F6D6D676C716A6A6F6D6772726A6C726C6A -6F726D6F6C6F6D676F716A67726D656572676572716A6D6C6A6763656146444141403A3E39 -373734402F263A2F2F2C262422221F317C7271606A7167676F67636767656365636565676F -6A616F716A656D60636C636A676D6A6A61656C63636D6D6A616C6C61656C616C6A676C6A63 -6C675B -67766F67716C6C6D6D6C6C676C6D6A6D766F6D6A7272676F7A716771716D6F65716C676D76 -6A61716F636A726D67716D656A717167616D766A656F6F5B6171676A654241403E3B3B3734 -392F314F392C2C2C2E2929221C1F1F22657E6D776D6F716A61716D67636F6A656C71676371 -6F6A6C6F7265636F6C616077716065776A636A6D616D67676A5C656C605B676C60616A635C -6A6160 -716F7179676776776D6D79716C72716F6A7171726A6D776C6F7776676F71716A6F7165676C -6D6A6767726D656F71656C6D6D6A6D656567766C63676A656A616A674C48453E3C4240373E -37343440293C342F2E2E262626221D2240826C72676571726A6C6A716C6D6D796C65716763 -6A726D676C71616A63636C676D6F6D65716C636A6C6D636A6A61636565656A676C635C676C -5C5C65 -726F6A6D6F716A6C77726A726F6A6A776F636A726C676F6F6F6D6D6D72656C6C6A67776A6C -716D67636D6A6C6A6F6A6A6F6A656365716A6572676A67776A67636D494644423E443B3E3A -3B37394031323B312C2C2722271D1C1F2F7E726167716A6A6C6A636A6C67616A6761676365 -6F676D7663677167657165656C6C6C636A6C6563656A6765616F675C676D63636C65615C6F -676361 -67726F6C726C6C6D6D72676D716C60676C6C6D6C6F6C606D726761716D6D6F6F6C6C71766C -6A65776F636A725B657171656A766D636F716C6A676A6A61616D61614545403B443C3A3C3C -343239463B2732312E292626221F1C1C24587265676F656A6F6F6C676A6A6F656F6D63636F -6C6367766A656C6D7167656C6F5B616D6567716D6567676361616A63675C676C60636D6055 -6A6359 -6C7272716A67716F676A76676A76766F65766D676F716C6F6D726A636D716A606C6D63676C -6C67656D6A6565636D63636C6C5B676767616D636767676565615C55484442443C3B3E3439 -3B2F31493B32372F2E292724221C1C1F244589766A636D716567766D65676C6F6D6A676D60 -616F6F6A6F71656A6A676A656F6A67676F6C6A606D6C616C6C60636563606565616361635C -676165 -7971657A726567716F656D716F6D657672676F71676C6D716A6A6A6C6A6A6A676A6D6F6D6C -6C726D6F776F616D6761676F6C676A716F656C6F716C65716C655B4D4B4046423B3B3A3932 -39343434242E372F2E2727261F1F1D1D1F31776765656D656D6C6567716A6A76675C656C6A -63676A656A6D6C676571766A5C6D67656F6F63656C71656A6D676363636765636F6F5B6072 -6A5B67 -6C676C766D6A6F636D716A6D716A676D77676776796C6A766A6D6C7971616C766F6571826C -65766D6A6F7767636571716765776A676C6C676367675C616F655C4C46444140403B37393A -3737323C3A26312E2C2E2924221F241D1C266C6A6C6D6D5C6C71676A726D656F676C63656D -6A616C766A677172656A726C6A6A6F6F65616C6A5C606F6A636D6F6760656C606563636161 -636760 -6572726F677176676F7C76716D76766A6D72776A6D776D656F716A71766A676F6D726A6A6F -6D5B6A726C6C6F6F67656A67657167656761716C61676F635C715C4049464041403B39323A -312F323C421F312C292727241F1F1F1F1F22617A6A676C6D6567796A6063776C656F726165 -6F6D676A6C716D616A6F6363726A636D675C656763616767676A6761675860676360716160 -63615B -6D6F636D79676C7A6D6C72726D6D716D6A676C6C6A6A6F766D6A726D65766D6A6D6F6A6A6D -726A6D6D6C6C656C6D6C606A6F656F726A616A6D67636A6C63656348463C4242403E3C3A32 -37372F3C3C29292727272622241D1D221F24557C726A636D6F6F716F656C716F6F6A6A6C65 -606A6C6A6C716C60676F6567656C67636D6A6C636A6D5C616D6760616A615B6C676567656C -636063 -6F6A677172716F6F6F716F6F716D656C7663677C67676D72716C6D71716C6F726F6A6D6F65 -6A7972656F796A656D6D6A636C716A6A6A6F6A656D6C616A6D65574248443B3C3B3A373232 -372E2E3429262C272627221F261F1C1D1D1D428E71716F6567726A606F6C6A6D7663606F6D -6D6C6F726C656A7165676F6C616A6D5C61656C63676A676A60636A6360676C60616D636061 -6A6361 -676C71716D797A6A6C7C726C72776A656D6F6A6D6C7671656A76636A716C6776726F6A6D6D -6F6A6C6D67616C6F65656C63617167636A63676A6A6D7163616A574142423E3A413B343434 -3432342F32262C2C262422221F1F1D1D1F1D37836165716C6A6F63676C6A6D6D616F716367 -7265616C716A5C636C6C656A6C6360656A635C716360676363676167655B636561616A6561 -656A63 -766C6F716D716F77797172776A656D726A766F6A6C6D726D656D6D6F676C776A6A6D6D656C -7267636A616A676A6D6C676D6565676C6A656D726365796C63654C42483E413B3B3B393431 -3234373A51292C2C27241F1F1F1C1D1A1A222E8D6C6763716C6367676F65656D6C616D6A61 -6A6A67636C6D6A616F6F63636C67616A676C67656D6D5B6163655B636C655C6C6763656C63 -5A5C65 -6A6D676C776D6571716C726F6C6C6F6D6F636A766F6D71726D6A726D6C7177717671766F67 -6A776F636D716363716D6565716F65636A6C6565716F6A656F604941443B3E3A3237373232 -3432323437242F272924271D1F1F1C1D1D1C26776D6767616C6D656A7267676C7265636D6C -636D726A676A6D716C67726A636D7261616D6D676777656363676A67616767655C6F655B61 -6A5C61 -6D767672717976656F7C72676D776D67776D657272726D717777636C766D63727C6A63716D -616F6C656A656C6761616C6C676F675C656C67616F6C6C65655C4C414044403C3A343A3437 -2F2E2C322C26312C262624221F1F221F1F1D226F6D6A725B586D72676D716D6F676F6F6367 -716D6571766A636C6D616C6A6C6C636C6A6161656A636A676A61656D5B636A65656A656A65 -636161 -6D6C77796F777176766C716F676A716560676A6C6A6D716A6C6F6D6C716C76726A6C6C6576 -6D636A6C6C63636C655C716A60656A676D6567716A6C766D63634F403C403C393739343731 -312F2C2F372431292926221F2226221F241D24596D6754588659616C71636A6A61636F6063 -6D6A676A6A6767656A6A65656A6C65616C65656F6C5C6367656D656567605B6A6A60677265 -60656C -6F716D6F716A6A72716C6D726C636C6C60676C716D6367726F677972716A79766C6C766C6C -716F6C6D6F6D67656D7165606C6D6771796561716F676D6C6C60443C423C373B3A32343932 -2C312C34513B4834262626241F262222261D2263796A4BCBC14F616F6D6A5B636A6A636F6D -63656C67616A6F65616D6D61676D6D6763606F67606D635B6571635C63656763636A6A656C -6F6360 -6C776D657276716F6F71716C726F61606A6D616A77636377776C796F71726D727161676C6F -6165716D656C6D656D6C6C636565656A61716561656D6567655A4140423B373A3A32372E2E -2E2629342E39343126292422262626222622245B7C5B65DBC16A5C676771676571716A6561 -6D6A616A6A6A656A6D60676C6760676D6163656365635C6763616A635A6A6A635B636C6161 -71605B -6C677179676D7776636C766765716C6A67616A6D6D6C776D6D7A6D6C6F776D676D67606571 -6F6D6771716565726C656C6A6C67726D676C6C63616767676A5C463B3E3B3B3B373431312E -2F2E2729242F2E27221F242224242227271D1F4D77549CD8C479536D6763676F6563656763 -636F6767726C636565636760656765677165616C6D6A616C655C5C6A67616A616A65617161 -61606C -716A6F776F726D716D6A67766C67726D67656D6F6C6D776A6A716F6A6F6F7272676A6F6F67 -7176676F6F6F6371717172676F77656A726A5C5C575C5B6F655A413C373A393A37322F322F -2F312C32512F2E292726221F242224242626264D7A4BC7D3C18D49656F5961716C636C6A61 -6A676F6C6A6D6A5A5C6F6560616A6C656760606160656A635C6D63616C6D605B6A655B6563 -636560 -6D7A6A6D72766A6F766F676D7167656A77766A727E6D606A766A6C6D766A6D766F6F6F716D -65676F6A6A6D6F6D657276656A7163676D63614FC0AB5563636A3C3C3A373739373134312F -2E2C29323731322E242626241D222622242722517954D7CEC0A55758676D6765766C676565 -6D636C71676A67636763616A655B676D63616765605A61615B6A6361616063655B67615A5B -6C605C -71726F776C6C7C726D6F71676D716F6C67766365726D67716D6D766776776C6A766C656D67 -6A636C6F676D7271676A6F6C6A6A796D616C6A59D1A33C5A6167403B3C3A39373134313431 -2F2F292C2E372F2E242626242226222426241F4D6388D7D0B9A160556C6763616765616761 -6A6D656A7267636165615B6A7161676A656567616760606A67636C6C615B676D6567656160 -616563 -6F6D71726F6F6F6F6A6C6D636C6D6D6F6D676D77676C716C677272656C766F676C716A6C65 -6F726C717C726A7979676C716D656A6F6C675489D7AD505A655B4240393434313231343231 -2C2C2E2F58322F272424222224261F24271F1D465AB0BCC7BC9C634D76656D726D6167675C -656F6A616C6D6D61636A655A61676561656A5A5A6C67615B6C6C67636365605C6D65596A6A -605B5B -726A6C7277796C717C6C656D776C6A7171676D716F6A6C7776656C716F6D6D776D636F6D65 -656F6D65676F6C6C67716F616C716A6A6D6745C8CFB75741615A3E3A373B34323431312F2E -292E2C32412E2F29222627222227272627291F4157957AD3C4B0824B636C6A6A6C6C65606D -6A5C6C6F63636C6D656567655C63616A60616A6D655A6A605A6C6061616165656565636763 -65635B -6A726C6D6D76766D6F6D716A6A6C76616D726C6C6F676C6D6F6C6C6D6F6A6A6C6D6C676A6F -71616F6D656C6F716A676F635C766D676C6760D6CDC0713465653C323A3937323131312927 -262E2429272F31291D22221D2427272726221F4058A176D2B7A69B50516C6C6A63636D6167 -6A6A656C6C6C6765716D616D6A5A676D63606C6760656D6763636765675C636F636A726C60 -676A65 -6C716D7172636F776A6A726C6A6D716F67676A6C6F6A6C6A6572766D6C766A677176676D72 -716C67717671636F796A636D6A677277675882D9CBBA8D3A6161413131262E2F372C3C373B -425444494D322934373139292C2C272C2E1F1C3A9FC7C7CEBFA39C6D4F60676A6C6A6C6F61 -60776F616D7167656F716A656A6C6A656D726163716F67636D6A61636C605C676C67656363 -655B65 -776A656F776F6A726D6C6D6C716C676F6F606779776572766C7172716C676A766F63717267 -6C766D6C726A6A6A6C6F6767676A6D6A6A50C0D1C4BC88414F603B344060637A6F55545861 -616F77614234324145413A373A3B4144443E2637D6D3D4C0C5C4956F4F59616C7163636D6A -63616A7167636D6F5C6576656763676563636A61636D6567606A6C616167615A6C6A636765 -675A60 -6765796A6C7771636C6D656A6A716C6D6A6D67716D6C6C6C7271676D6F656D6F6C6A6C7167 -6A6C6F6A6F6A7171656F7761677676676C54D4B37990635044556F927C9585675559495334 -2F313732293A39322E2929292F31393A2C262454D9CFB783BFC09C4C4F516C65636C72636A -6F676D6C71636A6C6C676C67656C656C6C63676A61656A67616D766765656C6C65656F6F63 -5B7165 -6C6C6D6C6C6A6D6A6A6A6C6F676A7E6A617165676C726C6A6A716F6C71766F6D6D71676377 -71636A716A676A726F6A676A676A6C77607CD19F9C71776C3955A1713E342922316A54511D -1F2424272C3A2F311F1D1A1D1D1C1C1C24221C85DCD1CDC5C2BAAD76604B6C6D676D71716D -6C766C656D6F6C636D6F6A65766D6C67726C6D63676A616A716F6565715B61656A61616D63 -5B6063 -6C7667767A6C6D766F6C6F726C616D726C6C6C7772636F776A6D7976656C6F726A6A716D72 -6C7267676C776A6A7771676C6A676A6750B3D5BFC4886F6C3E48766A1F262C2C2F6A49551F -262626273B40372F221F1C1D1C1D1F1A242624C8D4D4CFCBC1BD9F8D714C5B7677676A7A6D -656F6F6D63636F636A6A6C6C656D6C61616F6C61676F6C67676C65656A6760636767656063 -675B63 -6C776F726D776F6D6F6F6F6F6F6F676A65676F716D6D6A6F6C676F6D6D6A676F7161657767 -67716C6A6D6C6F6767726C65616D6D604CD1D4CDCDB3A27C4D2F5542262E29272F764F541F -22242427292F4929241F1D1D1C1D1F1D1D1C40D7D1D4D0C4BFBCA5917151546C6D6A6C676A -6C6C60656C65656C6C636D6561636A676D67636F656A6C72606A726A636A6C6565656A6A67 -6D655B -6C6C7C6F6A796F656C677271656A6761636F6A6A6F76716A717167656A6C636C6F726C6363 -6C67676F6D616C7665636F6D676F726059C7A5CDC2BD9C4B53296C2E242727242F866D5822 -272224262F292C1F221D1D1F1C1D1D1A1C1D6FD7D5D4D6CBBFC1BDB08660506A6771726567 -6F6A656A6F6A60656C6F6765726F656C7A716371726A6C716F6F676A6561616F6F5B637267 -606563 -6D6D6C72776767727161777A6F656C6F656D6F796D6A71716D6C716F656A716C6A6F6A5B6F -6D766F636A6A676A716F676D6F676554ABCBCDD0C9C098795C3A492C24242722263129271D -1F1F222E3A241F221F1C1C1A1F1F1F1F1D1DABC2A9959589725B4D4B5054455A716A677271 -65606F6A616C6761656A6D6A636A676A676F6A63656D6D63676C616567616A6F656A676C71 -6A636A -797C6C6D727677716A716C6A726F6A6C6C71606C766C616F6A6C716A6C67676C6F6A6D6F6C -6A6C717167726A6A6D6F6C6A726F6C4FD2D4CECBCDC0A38D6F393227262C26242626242722 -2222221F2C1D26221F1C1F1D1C1D1C1D1C226C63836F7C8561554F3E3C4434517167636D65 -6A635C676A63636F615C6C6F65636F65636F6C63616D6D676C676C6A5C6C6F63636C716C6C -776765 -6D6A716C7176766D6A6F76676F6F676C6C6F6C6A6A766F6372716D6D716F676C79655C6C72 -716A6C776F6A6D71676772726A6D6F65D8D4D2CEC7BFB09061452F2C29262622272E292622 -222224263E1C24221F1D1F1F1C1C1C221C2CC4BABCBFBBB09C82655C514F4D616C766D655C -6C716067796D616D6D6365676F6A6367766A606D776765766A636C6A656360676A636C6F67 -636A6D -766D727A6F71726F726C7279716A7271636A7C716771766D6771726F636C7267656D6D5C49 -6F6C636F766D6C6D6C6A6A676C6D5397DCD6D0D5CAC4B7AA6A542924272F242626221F2422 -2226262226221D1F1F1C1D1D1F1C1F1D1C2EC3C2C3BCB0836A544854514B48596F6C6A6C67 -636C716C656A6F6560656D616C6F6A616C6A6765616A676165726C61656163616D656A7161 -656D6D -777C6D6A72726A6D85726A71716F676A726D6A72716767716D676C6D63676D6F6A6D6A5C6F -67636F676A716A6C726D716C6F6F53CAD5C7B7989B9898926C5124509C5B3C3226261F1F22 -1F2426221F1D2222221D1D1C1D1F1D1A222ECABFC5BFAB79776A5B544F4F46536F6C636567 -6D60716A636A6D67636061655C656D656771676C676A6A616A726C67656A67655C6C6D656A -716A63 -91766F6F716D766C6C72727177716D636F76676C7971677176716F6F6F72676F796F677277 -6560796F6A6D716F6C6A72726D6A5765675B6F5A504B3E32272727488D2E312F24241D2226 -221F292439241F1F26241C1D1A1F1F1F222EC9BDBDBDB0959A7C7E504D5148597E6F636D63 -6C6D67677C6A63716F616A716560636D6C716A727163636F6763676F63616A6C6567676A6C -6C6A6A -8D919083776F77726C71897A7171796F6A6D716F6D6F7A766A7977676C7C676C6F6D6C676A -6D6F676A776C656F716A65776C6754A2BFBDBDAEA27A6C583A342C679F1F24221F241D2224 -1F2686372626261D22221C1A1C1F221D1A48C9BDC0BFAE9F927A71544F494F5A6D636D6D63 -656D6C6A6A6A6F6A61616561656D6A636C72636771656365656565616367616171615C6C67 -6A5C65 -393E556C7A88797985766A71908579726F6C6F6F6C6D6C72716A6D725A6C6F6C6C6C6D716A -6F6D6A6A716A6D676C6F6C6C766A53CFCFC3B9B09B7C6D57423127867A2427221F26262429 -243C90292622221C241F1D1D1D221F221D44D0BFBFBFB09B927A55544F4455536D6D67636D -6C61796A65656D6C60606C6167716A656F6C6D6C656C7261636F6A63617160656C6F63676A -6F6D6C -2E29292E2F3C4D63823C2C48394563656C71656577716A72766F7177726D717777726C6F76 -676A796A6C6F77726A72776D6D675BA990BAC1A38D7A604C392944714D242222241F222426 -224453262224221C1F1A1C221C241D1D1C34CCB5BABAB5A192826A504D4D4D4D79726C6A6F -67616D6D65656A6C6F6063767665616F6C637172636C6D72716A6A6F67636A6F6A656C6A65 -676A67 -2E2E313737312C272F323E492F3E676F6C71716C71726D72727172656A716D636F7A6D6C6F -716D716D6F6A616D6F606F7E6C5C5AD0C0BFBAAB9B856C5131A6B2AD8D222422221F221D22 -1F4944291F24221D1F1F1D1A222622221F37CCC3B0BFB4A6AE776D5B4C494B576761716D61 -6771675A6A7165616D6A606A676A6C636A6F656372676771676563656A616A6C6A65636767 -65616D -342C32323E3A343124273B4B2F3B727A716D76726F6C6A716C6D6C6F6A676C716D6A6D6D6A -6F72676A716D636D6F676C7172635AD2C3C1B9B5A37A654F2E908563541D1D1D221A222627 -1F3C39291F22221A1C1F1F221F262222222EC7BFA9CD9CA59577615550464C5B6C63676A63 -636565616761656C636A655C636D6D6A6A6D65656D6D6D6C6A6A655C616A606A6D6C67676C -6A6367 -372E2E322F323931312F825929406C6F72726D7172727172726F6A7E72656A726C6F727772 -676A76726C6D6D6C656F766A6F6C60C4BDC9BDAE9C7A554526263A3E417E67411D1C1D2226 -242432241F1F1D1C1D1D1F241D1F2422242FC8BBB36F9FAE7E908276514C4148637661636D -6A60636A67606C6F676A6A72676367766C656F7C6167716F6D6A6F635C65656F67616F6D67 -6C7161 -2F2C342F1C24272626276D592F317E766C7A716A71766F6C76766F7A6D76766A6F72656C76 -6D636C6F7260676C6C6F676D726758D2C5BDBBB591884DBD9195B798B9C5AA77221A1C2222 -26293A241F2226241D221F1F1C1C2226262EC9C9BA658D61505B544C404440576A6D6D6767 -656C6C5B61715C6171655C6C6D6C636171676C6D716A5C676D6A6771655B67716A6A6D6C6A -656C61 -1C1C32391F1C242F422C42572E31896D776C7271726776766A71776A6D6C71726C6F6F6C6A -6C6572656D6761677965676D7C6755D2C4BFC1B99B6F55D758393445C7BDBBA92C1A1D2222 -1D2E3E1F1A1D452E1C1D1D1A1D221D242429A27176796D5C5C514D3C44453A507660636D61 -616C675C636F67636765636A67636D5C6A6F67656F6D656C6D6A6D6A6D6A676C7171676D76 -6C6067 -411F263E413C497C714C2F51242C6C716F6D6D726D6F726F6D6C71766F6C6D726C6D71766F -67727165636F67636D6F716C6F6D5AC5C8CDC3A39F65B2CF483B3E5A9FBFC7B531221C1D22 -1C2740271D1C37221A1D1C1D1F1C22242424B5BFB3B3A39089715954574C424D6F6A65676F -6C6C636C6C5B6571635A6D6D5C63716A63676F6F67676D71606D796760616C6A676C6A6A6A -6A6365 -772C2422325B487C6C552E4829376D6F637272636D7C72616F7E6C716D6F6C67716F6A6A72 -766C6A7163606D71656A6D766C6358C7B5C06DB4AB71905B5A504F516350453B1D1F1A1C26 -26243B261F263126221D1F221D1D26261F26C3C1B7B4AA988D7A6A58504B4B50616767606A -63675C6A6A6363676C67606365675A6D6F6167656C65676C676A6D6C65656A656C61676763 -677167 -583449422F3E447A714B2948242C7C7A6C6C726C6F716D6F6F716D766D6D76676D7A6F6C71 -6C6C6A716A65676F6563676A716155C9C2AE6AA59C6A88BFBAC0C2C8BFA6927A5B451F1C1F -1F2E3A221D1D2E1F1D1C1C1C1C1A1C1F2224BDBDB3A6A9A186775B55504944546F615C6A67 -61656C60636A63636F6160605C6565636A6A63636C6C6C656C67616A6C6C65656D67676A6A -656772 -7E615C674F2E547E76502C3C2E296D7771766A71776C6D776C6D77796C6A77726C6D766F71 -6A6D766A67776A61716F676A6F6C4DA38271726D58BACDD0D4CDCDC9C0B5A99A89571D1C24 -3C393B2E1F1D2F2734292726242E27272727BDC5B5B5AD9B897C6353534C45507665606C6C -6161656A6D6C6C6F67656D766063766A656F6F615C6A6A6A5B636F6A5B6D6D5B6171656363 -6A6567 -637C776760344C836D5526372927656F6C726D6F726F6D6A6C7A6D6C726D6A7272676D7176 -6C6576716D656A6D67676C72676357B9B7C0BDA682CECBC9CFD0D1C7BAB5B39C83601F1A1C -3A5A39261D222C313431313A313B3C403127B2C1ABB7AD9290856F544C51494F60676A6161 -6D6C60676D67676F6D5C5C6D67656A6C6D6D6A6C6761656F60636C655A6C6A656067656C65 -65636C -3B71856D604934656F50293B2432656F6171766567716F636D6A6D6F6C6F726D6C6F766A6D -716D6A726A676F6D6D6C6C6F716057C1B9BAB4A2A3D1D7D0CCD0D1C4BBBCB29B836A2E1D1C -3E593C24221F272F2E2E27393A323B3E3426B4BFBAB3AB9C98766A594D49444F65716C6D63 -63656A61636A6C6A6A6767636F6F656A726A6A6A616C6A6F615C63636161606C6D5C63726F -5C606F -313C7E7A6A602745834C273B223967485C63547A716A76716A636F7A656C7C71657679726F -676A6C6D717A6A6172766D6C7A6A4CC0BDBAB392C4ABBCD7D9D8CFC9C0BFAEA28563271D1A -1F243C26222229272422242626292C292922ABC9BDB0B0A695857657504C414F6C6A636A6F -616A6F6A676A6C6765616A60616A6F6C616F6F65636F6D60606D676561616A63676D676363 -6A6563 -552F3A797E602E2F885B2737263171467951416D8271676A6F6A65717671676D776C6F7679 -6565726A67726F726A67726F616353BCB3B9B99AC9C3D2BC7AA3C7D6C2AEA99C866F321C1D -1F243B2C242932311D22262427272C27241DA5CBBBB0AD9C868E7E514F514948636C656767 -636360606F6360656C61656D636067656765606C6367676D61676C6F5C5C6C615C6F67656C -6F676A -6A532640554C402C3C492C3C1D394634483E375372766D6A676C6A65716D636C776C6D676A -6C676F766F6A6C766F656A71655C51C4B9BFADAED4AE50322C2F397EC2C7AA928579411D1C -1F273E262224292F1F2222262727292C2622A5C0B5A9A5A1886C61574B4945556565676A60 -6365606167656163656763616F6163656A6A61676D6A60776C616A6A63635C6C6A6C656C6D -636077 -675A63273A6039342C39273126243E4D34262E347E6C6D6A6A656D71656A776C6C76726D65 -766F6A63716D6A6F716D616C6F6A4DC4C0C09CC9A23131412C312C2E3961BCB48672421F22 -1C292E241F1F2729221F221F242426262426ADC5BCB2B09F927960574F4544486D6C616563 -5A616A605C676D5A5A6D6A63656C6C67656F6D6A606C6A6563766F6C6A7163676C6A6C656C -716063 -5A5949342731324C26323132393E46544B313E2F8E6F656C72656C77656A6D6C766C6D7271 -63656F65636C726C636D6A61676148C2BDC2C592313251853B884F27263B8DA6886F461F1F -1D261D241F1F2C2E1C222224242424261F2291C7BAB9B09C857E67514F49404D6A77605B67 -655C65656363656C6C6763716A616F6A65616C6A5A63656A6D6A6D6F63616C67616A6C676C -6C6060 -653224262F24314B22273431313939414B37343276676C6C6A6C6A63676F67676F726C6D71 -65636F6A676D6C6F6F616A72636151BDB9BDA2589798C1CDBAC095412E2446A58D7C451D26 -242C1F221D1F2631221F1F2624242E27241D8DC4B9B0B3AD867761534F4F3E55656365615C -6367635C606C61676C63606A615C676A6A6D616A6C656A726A637171655C6065606A6A676C -636776 -4426242224181A1C1F2424322946533C4034372C656D79766F6D766D6C6D72656A76776A6C -716C656D7767656C7167656D656351C8C2BD85C4CABFBDBFBF8E764C241D50B583464B2622 -24271C221C24272C1C241F1F2227292E221D9AC0B7B3A9A292766055534844516D61656F63 -636C6C65606A6C6A676C6A6A63716F6563716C636A6C6A6561766D656A715B606C6D616572 -67606F -593226262F2E221D221F242E1DA14C494431344D776F6A7979656D79726776776A636F6C6C -7667766F6A6C7167656F6D67616A4DBDC2C06FC9BCABB09AA39C8D603A297AA5863B464941 -37241C241A1A2C2E1C242224222729291F2295C4BBC2A5928E7C5A545049454D6F6D65616D -675B656D6A636F6A636C676C7163676D6161726A63616A6C636F6F65676C6C656A676A6D63 -6D6C65 -58422E3C2E2229272924322937923A393979726A717267616F6A6C6D6A71776771796A6D72 -6D65726C656C716A656A676D726A53B5C5BCA1C7AAB0B0929B979F8582827A8E91484F4C49 -503A1C241F1F27311F1F22262424272624227EBFAB919A95726F5B504950444C676C61656D -67676C656D6D61677767656F6D636A716C636F67656A6A726A636A796C636F796A656D6A5C -6C766C -543A2C493E2C293C372C37273C3B37273461726C6D7279766777766A676A72656D7E717172 -766C6C6F766F616A7165677A766151BCC5C0C2C7C4C5BFC3BCA9A292777A8E908D49464944 -51451C221D1F272C1D2226222626262727227AC1BD9AA2AA8D796554545045506350545A58 -63716D6167766A676C766A6C6C637663676D676A7177676F726D67716D6A656C6C6760676D -6A5C76 -552F3224221F263B373245313B2737292C29377E716A6D72726A717676656D7C6A6576776D -6F71726C5C716A6C6A6F6F6D6D6F55BFC5C5C0D1BFBBC47191C7B48E7A798E838846404F4D -4B501C241C1D292F1C1F271F2226262924248DC7BCADA29C9A8967545850454C778E97AD79 -5B60677263656F72616A6D6A61506F6565636A6F6C6A6C6D67656F63636C6763636761636C -6C616C -53292C262626292C262E452731442C2C2929316C77726763716C716F766F6A72656C6C6D6F -71717171656A716A6C767165716F54AAC2C3C5C445487C294C869B797676826D914B464F51 -51511C22181D242E1A1F241D22242729261D7EC8B7B4AD9C89856F59504F4C41B5C0C0BDA1 -5B7977656F6D6C6D67716D6A6F51676C616367776A6A6C6F676A716C6C656D6D6C6A6F6D5C -6D726C -532934292C1D1F413422271824292222242E3E5177716A616D716D6A6D76776C6C7C6F6C76 -766A6572716A6776726A6C7972675BB4A2C0B5AD2E485C327CB4978E857A76838E48454C49 -4C491F221C2722311F22222426262C27241F7AC7BCB5B0A691796A554F4C453BBFC4C1C4BC -A2BD974C5A6F6C656F77635C67636A656D6D61676D6D636A716A636A6A636C6C6F6C676C67 -61616C -4F2C3E2F3727272F1D26261C272C37574F77464F886C6D766C676F776C6F76716D6C717667 -6A7672606C6F636C6D6D6D6A726C54B5BBC2BDBC5BAAA689A6857C7963676F6171444D4F48 -4F4C22271A1C1F2E1F261F1F22262629221D7ACBBDBBABA59B896D51584D4840D1CCC9CCCC -C5BF8D90A36358635B63676C5C6377656163676A636C6A6A6D636C60656571676A6F676D71 -65606A -5B26323437373737392E291D2937346D4C863E4D836F6C6A776A6067716A63716A6C6F6F6D -65676A656A7165656A6D6F6F6C6F55B4C4C5C4C4C5C0B3B0BFADA3A39789837A6D494F5055 -4D5134271D1F262F1D221D1D2426272C241F76CBBBBDA9A2928589634F49423CD2CCCFC9C5 -CBBCB4C7C7A263836357606D67636F6C65656A6D6D636C7260617263616D766A6A6C716765 -676C6A -55324239373E373934373231372E2954426C464B88776567716A636C716A67676C76716D77 -7C636A7971616A716D636F71676557B2C3C4CACCC5BFC4BFBFB9B4A591868882604546454B -4F5429271F1C2432261D1D1D2222292C261D6CCBB7B7B5B99A837A4B4948493BCDD1CDC4C1 -C7C1C3CCD1CDC2C5B2BC63536A675B657267656F6F6C65676C6D6C657767616F6F636A6C6C -6C676C -892F3E2F393A313A2E392737372E2640393C3A4482656F7971636D7A63636F6D636C6C6F6A -6A6D6D6F676A6A636C6A656779614DAEC4CCC9C5C2BFBDBBBFB5B2A19A837C885549324649 -534D1F261D1C222F22241F1F22262929262271C8BDBBB0AA9F8363584F4D463AD0CFC5CAC5 -BFC3D1CDCACBCACAC9C39F76555A6371636C72656371616365616A616A676D6C656A63656C -6D5C60 -A12F3C392E3A292F322F2E273137244146423C2C55676F71716A616C6C6C6A6F6A676C7671 -6572716C656A616A6567676A7176599FC7CDC9C5C7C5BABCC4BCB0A3A3908285554F455155 -4F48272E1D22262F1C1F1F1F24242929241D63C5B3B7B49F8E8D6C5451514139D0CECCCCC0 -BFC2CACBCECBC9C9CDBFC1BD9F97606A676F6C676165716C676C6D656163766361635A585B -655A50 -B93E483B585146322C273E242F2E22313B453C2967716A656F726765766C656F726D6A6F72 -6F6C6F716C656C76676177716767599CC4CBC9CAC2BFC2C4BDBDB5A997908E764D4D4F494F -544C29261C1D242E1D1F242626262929261F61CBBAB9AEA69888765954504939C8CBCBC4BF -C1BFC4CBD0CECDCDD2CDC4C7C7C4886C776F65766D616C6F676A6F6F6F6763656589ADAA71 -5089A3 -BF57344482493B4B462F3237293A2224241D2627677672766D72716D6C6F7A72636F7A6A67 -796D636C6D6C65656C656C6A67675085BDCDC5CBC5BDBCB9B7B7B0A29F908E824B4B544F4D -5048271F1A1D1F3A241F24262626292C2C1F5AC3BDBDA9ABAA88716C58494D40C8C9C4C4C2 -BBBFC8C7C5CBD4CFCBD0CAC7C4C3BB8367716D6F6C6A6A60656F67606D67585C6ABFC7D3B9 -A9C5D5 -D0B53B3259453B533C37262C262F2E312C2931275B776A7A6C616C766A6F716C6A77716D6D -6D6C6571716D7665676F6567726A51B7CDCDC5C8C8C2BDBCC0BBB0A9AE91857C4F49504F53 -4F42241D1C1C1F341C22221F27262927292261CBBCBAB2A29B8D79605053503CCFD3CACCCB -B4B3BFC5C4C7D0CCCBCAC5C4C4BCAA7665726F65606D6F676777726C71677CA3C5CED0CBC3 -CED0BD -6A443742614B313E4B632226262F2729272F34265C6A6D7271716F7179726F6F79776C7676 -6F6C6F6C67676F6D676A6C6D6D6A5A9FC5C9CCC2C0C4BFBFC0BCB4AAA59790714F4D494B4B -584D271D1C1F22311F1D1D2227262929261F57CDB9B5B2A29292795A55514C40CBD6C9CAC1 -B3B0B5C0C5C2C4CDD0C8CAC2C4AA6C60716C656D6F6C67726D676C7163559FCCCDD0D0CFCD -C9C1BF -402432405346373E5A6024292E26272C2231392C77767C6D6C72776C6A7172716F716F6D67 -72716A6A6D6363726D63716C6F6D5792C5C9CBC9C5C2C4C4C0B9B7B2978E886A465037464D -4F4D48261F1C1F31241C221F26272629261D4FC7BFB5AAA2A38977615449493BC4CBD0C9B5 -B4B4BDBBB7BFC2C0C3C9C1ADA3797189716F6165656C7163676D67615A61BFCDD0D1CDCCCE -C2C3CD -3C314657595139374B63242E3B34392F2F3C2F4F766C67726F6D6C796F6F6F796A67796765 -766C676C6F6D726A726F6D6C6F6D5398CDCBC5CBCBC5C4C3C2BFBBB2AA9A86764F4D3B5150 -4D4C572C1A1A1D321D1F221F2427262927224DBFA5A98D7E7272765B5455503CC8D4CAC9C5 -CABDB4B5AEAEBAB3B7C7C1C2AE9797A1716D6F65676F6D6D6D796A6067C5D0D5D5D2C5C7CD -CFD3D1 -2E2E3437464F4D513A372F373434404C765C676D79766C6F7C6F6D7972726F777A7267716F -6F6A7971676F7C6D6C76726C6D6D5998C9CBD0CCC9CEC8BFBDC4BBADAEA18D7C504D4D4C4D -554C4C3C1F1D1D391F1F262624262626261F54D1BBBDB2A992987C5B54544D3CC7CEC7CFD0 -C7BFB3B0B0A6A1BFC9CBC9CFD1C7BFA5655865676D6D67726C675C58BCC7CFD7C9C4CCD0CD -D9D5DA -2E2C2E1D2224416F313B313A3B29407E6160717A71767A716D72776D6C77766C72776A6D6C -77726C6F766C6C76716D6C6C766D6091C5CBCFCDCDCBBCC2BFBCBAB3A59C917E514D51464C -51504C461F1C1C3122221F242C29272927224BCBBBAEBFB09B887265594F4D40BDC2C9D5CD -C3C0BCA3A9A5A3CDD2D4D7D1CED1CEB085888260605B585C595192B3C5C7C9C3C3D0D1D0D9 -D7D6DB -4034291F392F3944412F29323E2645775C6D6D796F65766D716D6F71726C72766C6F726C6C -77716D717971677971726D6D76715892CECDC9D0CDC5C0C4C1B7B5B5A198907E544C515750 -4554514B1F1D1C2F1D221F1D27262429261F4FCDBBB7B3A19C91725A5A4D4540BBC5CBCCC7 -C1B7ADA6A29CD1D1D1D4D5CFC5C8C5BFC9CBCD79576A7A5379C4D9D3D1D0C3CDD4DCD1D1DA -DBD6D4 -3C243422372426393B272C3142244B61776F6C71776F67726F6F6D767A676D7A6C6A72796F -716F7A6F6F777E6C656F7A716D716086C4CBCACDC9C7C4BFBCC0B4ADABA28D72574C4C5351 -4B4F4C49221C1C371F221F2422242426261F4FCDB9BFB0A99B9277655958513EBBC5C7C9B9 -BBAA90BCC8C9D5D5D1D4CDCFCEC7C4D0D0CDCDC0BCC9CEC5C5CDDFD4CCC9CED4D5DCDCD9D4 -DAD7D1 -291F2C1D2724272E29342C32462C4D7A6C7E72677679726F72726C6D7276766C727A716F6D -776A67766C6D6C6D676567726A6A5B8DC5C8CBCBC7C4C4C3BBBDB2A6A397897C4F4F464D55 -614C465A2E1D1F3722221F242626272729224CD5BAB4BAB29F8D7E6C5B54533AB3C5C4C3B2 -A2C7C7D5D5D5D9D6CFD4CBC9D7CFD0DADBD5D2C9CACFCDD0CDC4D7D4CBCDCFD9D7D5D4DAD6 -D6D4D1 -49393427311D26292E29293232264983766F71797267716F6D716F72676D6D6D76726D7167 -71766F6A776C616D716D7176776A5488C4C8CBCDCBC5C4C8C3C0BBAEAB91977E514F405553 -58574F58391D1D34221D242424272427292248CEB9B5B9A9A3977A615A51493CB0C9C5C3C5 -BCC8D1D2D7D3CFC8CACDC9CDCCCBCBCDD0CFD1CCCBD2D0D1D2CDD1D4D0D3D5D9DBD7D6DAD8 -D5CBCC -322C2F2629242731222226293B274B7E796F6A7672716F717271657279676C7E726A7A7A6D -6D79796C72726F6A6A727A6F6A725990CDD0CDCFC9C7ADB4BAB7A1919185796758504D5341 -544F51593B1C1F2F241D1F2424262226261F46CDBAB4B5A6989A7E615A574940AACECDCBCB -C7C4CCD2D5D0CCD1CECFD4D0CCC9CBCFCDCCCDC9C7C9D7D5CACED1C9CDD4D8D6D6D6D9D9D2 -D1CECE -22262F1F371F26343129272F29295885727A726571836F6A7176656D716D6D727179767172 -76716D776F6C6C716D6A77716D715A86CACBC4B9B3BBA5B4B4B3AEA39B9289795750555439 -63544B57491C1D37241D1F2224242427292240D5BDBBB5AE988D7A6758504D3EB5D4D3CCCB -CBCDCBCDCBD0D3D0D5D9D4CED1D0D0D3D2CECCD1CEC9D1CECBD4D1D2D9D8D9D9D8D5D7D8D2 -CDCACB -2E2E2F2E343A3726372C243126294885767A6A6C6F6C6D726D6C726C67726C7672726C6F6F -776A6C767667637176716A797A6D5B90C8C8CBCBC4C1C4C0BBBAB7B2A18D9289515155482C -63584D4D4F1D2231242224262E2C292F31223BD1C3C0B5AAA289726759534B39B2D9CDD0CD -CED7D4D1CCCAD1D0D0D5D1D1D7D3D5D8D5D2D1D0D4D1CBD0D9DBD5D7DDD9D5DBD9D7D9D7D5 -D4C4CA -2E2F261F312C2629291A292C34314B76856D71766C6C6A7E6F6D6F766F6D717C77726F776D -6D79717172776C6C717E71717679A2ABC2CDC9C5CAC9BDBFC2BBB2AEAA958D7E5C503E3A3A -594F5A5555221F3424221F242729292C2C2439CFC0BBBAAA9F9A715C6055483AB0D7CCCDD0 -D6D5D5D1D3CBD0D7D4D2D6D7D7D7DAD9D4D7D5D1CFD1D0D9DADBDEDBD5DBDAD3D7E0DDD6D0 -D1C7CF -2F423132262F262724222F2C3127466D7A7A79727179726D79796C677A766C6F77716D7272 -716F766D716A727C6F6F7C6F6167C3C3BDCDCAC4C9C9C1C4C1BBBCB0A3A69777585349554C -51515557592C223C2222242726262929272234C9BDBDC0B3989779605B59513AB5D7D4CAD0 -DBD4D4D5D4D2D4D0D9D9D2D4D9DBDCD8DBD4D1D1CDC3D2D4D8DBDBDADAD9D7D7D6D8D9D7CD -D0C9DB -4457484B1D1D1F2226292F3E3126827C6F717A766F71716F6D6D6C6A6D6F6F766F71716A76 -796A6A766F6C71727972797760ADCDC1BDC9CCCEC7C3C5C5BDBFBFB59F9C97765451585445 -535A545163401F27242622242927272C271F24A2CBBCAEBA9C8577635A535740B0D5CDD5D7 -D7D5D9D9D4D4D4CDD9D8D5D9DAD9D9D9DCD4D3D3D1D1D3D0DCDDD7DBDBD7DADAD4C7C4D2D0 -C4C7D8 -262224423432263C313E425B262E82797771727976716F776D6A77776C6D7C76716F777276 -6F79766D6F7A766F76856D6C98CDCDBDC0CECBCDCCC5C0C2C7C5B7B2B0978D85574B54534F -55515358655024271F272622262C2729241D1F77CABFB7BB9C89796358584F3CA1D6CFDBDC -D7D7DADBD0D3D7D1D4D8D9D9D7D6DCDDD1D7DCD1D0D9D7D3D7DDDAD7D6D5D9D5D7C9C7BDBD -C0C0D4 -1F261A313B272F4024403E6A2E2C6A72797E6C7279766F7276766D6A7C7C6D767E716C7A77 -6D6C76726F6F71717171635BAECCD5BFB2CCCACBCAC7C3C2C0BCB3B0A69F897A5451595051 -5850515B54501D241F1F1F2627272926241C2457CABDBDB2959B8D6555574F40A2D7D4D7D9 -D8D9D4D7D4D1D0D7D6D4D7D9DCD8DBDADBD5D3D4D4D5D7D7D9D1D5D9D2D0D1D4D6D2D4C9C0 -BFC0CC -2737262C5034325C495C656C31297171726D6D6F676F7A6C71766D6D717171766D7272727C -7977777979716F826F6C9BC3C3CDD1C4B7CCCCCBC9C5C3C4BFC0BFB2A3AA9C825350584B4D -5A5151595753221D1D1F2422292C242626222445C0ADA39A7A7C615A5A57503EA9DCD4D5D7 -D5D7CED4D7D3D5D4D7D7D9D9DCDEDCDAD9D5D4D8D4D6D5D4D2D0D1D5D0CFCBD5DCD0C9CCC5 -C5D4D4 -6072552E77423972716F616A322E7C76796A766F6F6777766C727C79777186796F72827171 -777A71727A82766D7672A1CBC4D1CDBCC5CBCBCDD0C5BFC2C3C1BBB3B39C897C5B4D45464B -5154534D5158291D22241F242624242424221F39B3C086B29C9076635455514298DDD0D0D3 -D3CFCED1D1D5D4D2D4D7D9D9D9DEDBDAD6D6D5D7D2D4D7D0D1D7D5CCCDCCD7D7D7D5CDCCD2 -D5D4D2 -6A7A5C2E7A4B317271716A6A3731717176796C717C7671767C766D797A726F79766C717777 -6C777C7A6F77766D716F59B2C8CDCEADBACECDCBC9C9C4C3C3C4BDBBBA988885604D424953 -5751545350553E222224262424262422241F22399AC5A3B0A1928D675959514589D5CBCDCE -D0CECFD1D1D0C9D3D7D5D4DBDCD4D7D7D4D6D4D7D6D1CBD0CDCED1CDC7D5D9D5CFCDD1D1D3 -D9D7D5 -3E7E6A2E675A486C6572776D34266372716F76716C6D72766F727676717A77767C76727A77 -6D717C776D6D71796A5879D7CFCDD5C2B0D0D0CDCBCCC5C5C1C1BFB3B0A29F825A555A4D55 -5A54515357554822241D24221F2724261F1D1D316CCBBCB09C927A6C5A58544198D3D4D3D0 -D4D5D1CCD5D1CCD2D6D1D5DCD9D5D3D7D4D6D1D1DAD4CDD0CCC4C7CBD0D4D7D7D3CBD1D5D5 -D7D7DB -2951903277615954796D6F6F39297E796F71767C6D6F79726C797771717677766F6F7C766D -7982767282766A776582D5D8D1D1D0C0ADCEC9D0CFC5BFCAC4BDBFB2AAA292895C4D545154 -534D515750594B1C27221F1D1D2626221D1F1D3151CAB5AEA195796C5B54514297DED8D4D3 -D5DAD5D1D5D6CFD4D3D1D8D4D5DBD4D1D7D2D3D4D5D9CDCAC9C9BCC8D1D3D1D4DAD2D1D9D2 -D8D8DA -412749317E7C4B537C7667763C26657777726C6A79716D727A71767A7A6C727C6D6D7A797C -6D7676727276726A58CAD6D2D0D4D1BDC0CBCDD2CBC5BDBFBFBDB7AEADA59085654D535754 -545459606059531D2222222424242426241D1D3B45C0B2B3A5917E605A57503E82E2D5D1D3 -D8D0D2D3D4D4D1D2D5CDD1D7D3D3D4D4D1D0D5D5D0CBCDC8C8C5BAC4D1CDCDD7D3D0D1D3D3 -D5D4D9 -65452E29856F3B5C59717676312667766C76726779726F797171796F79776C71776F6D7176 -6F7679716D7277674C9AD0D2D1D2D3C7A3D0CECDC9CBC1BFC1C4BAB0B3A1977E6053535048 -605954616F59552724261F2224242424221D1C3446A2BFBC9B858665575C513B7CDCD5D5D7 -D7DFD2D2D9D7D1CDD1CFCFD5D4D4D1D1D2D0D2D1CAC7C9C7C8C1BDC7CDC9CFE3CDD0D9D1D0 -D5D5DA -676D3E2C598E41724C67776C37276F71716C767271777C7E6F777A6F717C726F76766F7671 -7677766F82716761B0D2CDD5D4CECEC9B2CFCBCECDC7C3C8C2BDBBB7A6979286554950423A -5758635C57605A2E22221D1D1D221F241F1F1C343C72C4B59C91826D6051534298DDD5DAD6 -D3DAD2D1D9D5D4D4CECED5D2D3D6CFC9D0D4D0C7CCCEC9C5C7C4C1C7CDC5C9CDD4D9D4D4D3 -D4D0D3 -72716C3A2C553E6F4C55716C412C7682796F6F827A7C76727271717C7C727179726A6F886C -65766C6A7771579BCDD6D7D0D2D5CBBFB4D1CBCECEC8C4C7C2BDBBB5AAA19F836551424D4F -54575C605C6182341A24221D1F241F1F1C221C3B3E55C4ADAA9C79675C554C4276DCD0D0D4 -D3CFCBD5D7D1D5D4CDCBD2CECBCCC5CACFCBC9C9C5C8C7C0BFBFC1C4C7CBD5D5DBD9CECCCB -CCCCD9 -6F71712F31313479534C616F39296179717A76717272717276776D7277716F71776F6D6F6D -6F6D716F6A6F57BDCDD2D7CFCED4D1BFBDD0CDCED0D0D1BBC1BFBFABA2AD88716D4F494F54 -4D505A65676155262E1F1F241D1F24221D1C1C374245A6B5A195856A5550543E61D7D1CFD0 -D1CECDCFD0D0D1D1CBCDCBCDCCC5C7CBC8C9C5C7C0C1C5BFBDBDBCC4BFC7D6D7D5D4CAD0CC -C3D4DB -7171612E593127373C4453773B2C65716D766D717677717971778271777A7671727A6D6A71 -776F6C717158A5D3D5D5D5D9D4CDD0D1BAC9CBC5C1C5AAB2B7BAB7A9A59288835B49584F54 -4850595A6A6346242F24242226241F221F1C1C37453E91BBA28E82655457553A76D2CED2CE -CDD1CFC8CCD0CFC9D0CCCBC9D1CDC7C4C3C9C2BCC3BFB9B2ABB7B0BFC5C1CAD2D1CEC7D5D9 -D5D8DA -3965582F614C2924505C4C7C452E6C7E776C76827E72727E79717779727A777C726C797C65 -6D79726A6F71CDCED4D8D5D7D5D0D1C7ADCDCBCACBCABFC4C2C2C0BFABA18E86604D5B4C53 -4F586060596F4D1D2F271D1F2426241D221A1C32464B6ABBA69C7A635A594D4076D9CAD1D0 -CDCBC9CBCBC9C8C9C5C5D0CBC8CACDC9C9C7C0BABDBDBFAEA5AAB3ADB0BDC7CDD0D6D5DBD9 -D9D9DC -2F536334676C4426314B3A5B37316D777272766F7276766D7977717C79777977766F72796F -676D717265A2D3CECED1D4CDD4D4D5C4B2CDCECAD1CAC3C3C7C2BFB7B2AD89776353504054 -5857636D676760262F29241F1F221F22241F1C34414C59BFA38D826F594F504563D6CDCBD0 -D3CBC5CCD0CACACDCCCBCECCCED0CDC9CDCAC7C5BBBFC2BCA69FC1C5C1CFC9D5D9DAD9DCD9 -DBDEDC -32536A3153543726262E415A312E5C776D7777727676716F7C7E727676777976767A766F7E -796F728263A1CDCFCDCDD3D3D1D1D0C7BBC9CFD3CAC8C9C7C2C0BDB4ABA391826A4F535459 -59615A5B6A6765262F2C24261F222726261F1831454B4FB3AA88836F5455514859D5D1C9C9 -D2CBC9CCC8CDCCC9D0C5C2CCD1D3CACDD3CBC3C5C5C3BDAAA2ABD8D5DBD8D9E1E2D8D7DCDB -DBD9DC -44405526495C372F3A27394D312C48887272727C7C6F728572717A8272777A7C71767C7676 -717C766A659AC5C0D0D4D0D3D2CBCCC7B5CECECDCAC9C5C3C4C0B9B5AE959586654F5C584F -555B67616D6C6A2F2C2F221F1F242622221C1F2F41484572AA897C725C5848426DDCC7CECC -CECBCBC8C5C7CBCBCACBC4BAC5D6D0C9C4CCBFB5BDB0728288B2D9D0CFD2D7D5D7DCDBD8D9 -DAD3D9 -374249323B442C272F442239462E4182797672777A717777717A7779797A6F767C6C6F8276 -7677726D6797C3C2CFD7D2D5D3C4C8C3B7D1CDCBCECBC4C2C5C4BFBDB5A19A886C57545A4D -4B54636A6A6D7C4227312C241C222424221F1A2F46504D5B908276635550673C59D9C7C7CB -CBC9C1C4CBC7C7CDCDC7C5B58D9BADA69BA395BDBAB59FB3BFCBDBD1CBD4D5D0D5DBDCD7D7 -D8D6D8 -50493B2F31443E31293C2C2C2C2C45987279777771777A61777C76717E7972727A766F6D83 -7672717C6D6AB3C9CCD0D4D4CDC5CDC5BBCCCECFD1CCC9C7BFBFC4B0AAA398856C50555341 -32505B616A6D714229312C261F2224221F1D1D2C40484C589B98826357536A4449CFC9C5C5 -C8C9C0C0C8C9C5C5CAC9C5C3C0ADA59CB99AA1BFCBD6D1D7D2D3D5D3D3D0D1D3D8D4D8DED5 -D5D9D6 -44392C292F2929262F394446442C46986D7A7C7C7172797979797A7A76767C796D7C766D6D -7677726F71659AC2CED0D0D4D4D1D0D0BCCBC8CCCEC9C5C7C5BFBFB5A2A192886F4F5B5551 -3954585A676C6D49242E31241F1F221F1F1C1F2E41464F5B929A77635C514D454CD0C8C4C7 -C0C4C8C5C0C9C4C4C2C4C5C3C2BDBDB9B3B3B5C8D1D9D7D3D6D6CECDD1D0D1D1D5D3D3D7D6 -D3D6D7 -29423A4B2926272F2F29292C322E4176826A65767C6F6C716F727C77777172726F71717672 -6F77766D716A90BCCCCECBD0CDCAC0C2BDD1CBD0D1CDC9C5C8C1B7B5B29F97886A53584663 -4054605B6565766024292F291D22221D1D1C1A273E454B57639C7E5A5554504153D7C5C3C5 -C5C4C2C1C4C0C1C5C4BFC0C5BBB4B7B9B4B5BFCBD4D7DBD5D3D9D1CFCED1D4D2D0D7D7D4D9 -D7D3CD -37494F4D241F1D24342F442E3B2E498571636A7971716F6D6F76726C797C6D727A716F6F77 -71767A776D6C72A5CDC9C5C8B9A9B5B983D3CDCDCACAC9C4C7C4BFABB2A29C866055595065 -45545C5C6D6C716F4529312724242422221D1C2939454F5159907C615753554548D3C4C4BF -C7C4BFC1C9C0BFBDC1BABCC0C0B5B4B7C0BFB9C4D7D5D2D9D4D4D7D3CED1D2D5D4D3D0D6D3 -D1D1D0 -583C343E5448543B4D466A393B2950865B6D7C776D767A6D716F77776F77726D6F72796C6A -76776A6D776D5B657C8D7A9BA5ADA3C376D5C5CBCBC9CBC5C2C0BFAEA5A992886C5367545A -4659605C6D72676753222F2C2E1F1F24221D18273B44495359837A675A5150464FCDC5C7C3 -BFC2C7C0C0C1C5C1B9BDC4BAC1C0BBBBBDBFBDC7CBD3D4D9D9D5D0CFCBD2CACCD0CDCACFD0 -D1D1D1 -42291D2C483941586D5A633B34294671605B6F6F7671716D716F6A766C5C796F6F76727671 -6D72716C6760597A9BA2A5C7D7CFC7CB76D8CACECEC5C1C9C7BFB7B3B2A982886D4F5B6165 -585B676C6A6A71605A2629404D3C2224221D1C293A424850536A866D5B5053444BD3C0C0C5 -C0BCC2BFB9BFBDB5B0B4BBBDB9B3BAB5BCBDC3C5C8CDD1D4D6D7CED2D0D1CCC7CCCFCBC9C9 -D4D3CB -506126294D53606C676F6A3B39314C726C826A6779776D726D67717272716A7276766C727C -6D6D7E725883C8D4D1D4D7DAD8D5DB8398D0D0C9C7CBC2C0C3C2B7B2ADA9957E60576A5863 -45495A6A6A6171765A3A27585355311F1D1D1A27343E464C4C6577505450503E48D7BDBDC2 -C4BBBFBDBFBCB7B5BFB0AABFBDB0B9BAB9B7BAC1CBCACBD4D3CDCDD4D3C9CFCAC7CBCDC9C5 -D0D3D0 -7761262C5B535A7A6C77773C3A2F4D91727171726C727E7965717A676A71716D7271727172 -776C655C7ED6CED2D4D1D0D9D7D5C848CACBC7C7C5C5C4C2C0BDB4AEA6A69C836158635777 -465067617271777161533A3E4857533422221D263B464C57595C2F24273E674D45C5C0C5BD -C0C2C1BABBBDBDB2AEBBB3A9B7BBB3B2BBC2BCC4D0CBC9CBD1D0D0CCD0CFCBC9C8CAC9C4CB -D0D0CE -657122275860506C77776D4139294590716C6D6D71766D6F71636F6F676371726D6F71796D -7272676FD0CDD0D1D7D4D1D7D9DB7C58D8CDC9CBD0C7BFC3BFBDBFB5B5A38E89714D5B516C -3C496C656F777A7267597E573C4661532E1F1D2E3A46484C58602C222444634945CCC1BBC4 -BFBABDBDB9B5BBB2A6B3B3A6ADB3B3BBB9C2C7C7C5CEC7CBCDD1CBC9CBD0CDC7CDCAC9C4CA -CBCDCB -345127266F654D54766F6A4132293E7972796D6D6F6C6D6F796D6777716771776F766D7182 -6F6F7EB2D1D0D2D3D1D7D9D9DEBA44BDCDCCCECBC7CCC4BFBDBFB3B0B4B2897C7257535171 -42535C676F6F7979674CADBF5442506748241D293A3A444850592F2222426A4245D7BFBCC5 -C4BABABDBDB0B3BAB5AEABB5AEA9AEBFC0BBC7C9C7C8CFCCCBCCCCCDCCCBD2CFC8C7CBC8C7 -C9D0C7 -34292429676F60536A778545322E4089677A796A727179766A72766F63726F6771836D6D7C -71766D9CD4D1CBD2D7D5DABF7A4677D6C3C8CDCCC9CCC7C5C0B9B4B79CA1927C6D535C5471 -414B5A656F6C71827954AEBDB46F4C556C482426393A424950552C1F1D3A654C42CEC0C2B9 -BDC2BDABBABAB5ABB4ABA3ABADA9ADB3B9C0BCC0C5CAC7CBCDC8CACDD1CFD1D0CDC8C7C7CC -C9C5C8 -6C2E222C6C7C6D5A585C6039312E3EA1776D726D726C7279675959656F6A6F726A6F717767 -6D77637CC5CBC7CED4DBAB505B53CCC9C4C9C5C4BBB0A697A19288989291897A5B4C585B55 -374B635B60717671796AB4B9C0B9543C4C5940292F3A3C454D552C1A1C31584C42C5BBBDBB -B4BCBBBAB7B4B9B4B9A6A6A6A6A9AAABB5C1BDC2C5C1C0C7CBCACAC9CED3CFCDD4CEC4C5CB -CDC4C9 -7258222E393734553E393A2C372F3B717E6F71716F71716F71405C72776C7277726771766F -6D6F726DB0C8CBC9D2B2426148C9CEC1C7C9C1C3C9C7BCBFBCBDABA6AAAB8D856F50725760 -4557766763777A767163CBC9BCBDB24F395461453C3A3C414C572E1C1C315B4542D0BABBBF -BDBABDBFBBADBABDB7AEAEAEAEA9B0B2B4B5BFC4BDBCC3CBC7C7CBC4CAD1D0D4D0CCCAC8BD -C5CBC7 -83582C45316C7E6F60506F3E372F27575B72766C7677766C765C5C6F6F7777716D776C6C72 -726C6D6FA1C7D1DBBD776D59A9CFC7D0CDCBD0D0CBCCCBC1C2BFB4AEB0AA98826D556A467E -3E59616A796F777C8563C4D1BFBAC1AB673B4D634940343E4248323C3A4558443CCEC0BFC1 -BDB9B3B3B3C1B0B2BDB5A6A5B0A5A2A9B9B5B5BBB5BAB3C3CEC2BDBBC9CBCBCFCCC7C7C4C0 -C5C5C4 -723440882C446A7167548340322E393C4F7C5B76716A7171655058716C71796D6F796A6F72 -6F6F777298C7D2BF6D7E5B76D7C7C8D0CACCCED1CBCCC8C5C5BDB9BAABA9AB89614C726A6F -34576A616D71776F836DBFC8CBC5BAC1B7503B4D5A4844404D4B4F4C5854514C40C0B9C3C1 -B3BCBDB4B2BDB2ABB7ADAAABA9AAADADBAC4B9B3B5BDADBBCBCACAC0D4CBC9CBCFC8C0C0C8 -C5C3CD -9A374F4B261F29272E5A42292C2F2E5C483C607A6F6A6F727654587C7C868691867E919783 -657E7960ADD1C761826061D0C7CED5CBC8D1CCCDD3CDC7C3CBC0BAB5B4AEA388765A838282 -3A4F6F6A656D797A7A65C0C9C8C9BDBFB9A65A3B5065483E454B46494F4B504541C1B7BDBA -BBBDB9BCBBB2B7B9AEA6AEB29CA9BDB3B5BDBFC1BCB7BACBC3C9D5D1D0D1CAC5C7CAC4BCC2 -C1C7C5 -5427292F50272F271D4148272F32263B376A8279868576728D6A5161615C5051533A3B403C -3C393C404F4C45506A4FD3CDCAD1D1CDCCD0D0D1CDCBC7C7C3C5C0B4B2AB9B856F657A7A86 -5576766D6A7776838D5CC9CDC7C7CBC7BCC3B45339505C51484B514F494C54443CCBBFB2B7 -BABDB4B4B4B5B2B4ABAEA597A9B2A6B9BCB5B9C2C5C2BDC2C4C5CDD3D4D0CCC4C8C3BFC4BF -BFCDBD -4624343E531F2C2C1F2F532E2934376C5B6A5B5C5A4F49554432343A374240373A34373742 -3E3B4C5539454C7A4DC5CDC0CECCCBD1CECDD2D4CDCBCBC9C4C2C4B3B0AE9F906F618D7767 -45586C656D7977798977B5C4C0C9C4C7C8C5BCB35137545C534246504C4C504944BFAEB0AB -A2ABB7A9B3B9B0ABB4B2ADA5A2ADADB3AEB2B4B4BDC2B5AEAAB9C8D3D4D1CACBC7BCBAC5C3 -BDBFC4 -3B2231313C242C3944263E40223244463B3A323731323432292E3B372C2E3B393A2F39373E -343B4F4F3950724DBAD1CCCED4D2CDCED0D0D0D0CECEC7C7CDC2BCBCB9A59F896C5A896F7C -53547163656D83827C7EADC5C2C4C5C7C3BFB9B7A949395055504F49494B4B48459A9FA9A9 -9B9FB2ABADB0B2AAA3A5AEB097A1BCB3B7BABAAEB0B2ADA291AACFD7D0D1D1C5C2C0BDB9C2 -C1C0BF -291F2F2E34241D3C291F2E463132322E3B413E2E2F423B34372F34342F313B34392E322E37 -372E46542C7A717AD1C7D0D4CDCFD1CDCAD0CDCCD0D0C8C5C7C0BFBBADA9A3896D65637782 -574D776F676F7C868979A9C9C5C0C7CDC4C0C5BFB4B24F345A59574B464C4F4537B7BFA588 -98A397ABB2AAA3A59A9AA1A69C9CB0B5BBB7B7B9B59CA2AA9F9AC9CCCBCBCAC5C4BDBABDC0 -BDC0C1 -2924261D2626222E2724263C4C2F2F31292C2924262F31292C242E2F26293131322F3B323A -413A4241597955D1C5C5D0CFCDC9CECDCECDCED0CDCCCCC9BFC1C5BCA9ADA690656363857E -605C85656A7E728E9098ABBCCD9A98C189C3BFB7BAAD974C3A545B5C4646494939C3CDCEC3 -BCBBAB9092A5AA9B929A959BA1A2AAAEBCB5B7B2B5ABA19BA3ABC0C5C8C4C2C1C1B4B9C0BD -B9BBC0 -2F44392C3B2F2727221C1D31462C272C3B312E2F2234272729273131372F2F392E31344031 -37372F49774DC9C9C0D2CDC9D0C9C3CDCACACBCDCACEC9C7C4C0C0C0B39C90927261518879 -454D8260677688673E636757634C898251A9C5C0B5B4BD9B503C5A67584D4C4B3BBDD2D0D0 -C7C4BF9191959B979A92989CA1A1A3ABA6B3BDB0A5BAA1899AADD0C9BFBFBFB7ADBDB9BABD -BDBBAE -37774040425558584D4C3C32342C22312926262626392C293229262F293926373124322C34 -401D459742C3CDBDC7C9CBCCC4C7C8C9C8CBCFC9C9CDCAC4C4C0C4BDAB9C9A866D65548390 -5C4872676576905C484B4676675A54508279C5C0B0C2C4BA884441554848514937C1CDCDCB -C7CAC1B4AB9C8597A186869F9F989C98A2ADABA1AB9BA2A99C9FBDC4BFBFBFB4B0B9B9B5B4 -B0B2AD -318337242F342F3E3942423B453B39242F2F2C26292E24342E2631343132292E1F2639272C -2F2E8D4CABCDC0C5CACFCFCDC3B3CFB9D1C9CDCCCBCBC7C3C0BFC2BFABABA989716A5C8D91 -72677E6A797A826A4D3C3BBF7E585385AA90C5C5B0BCBBBFBC864034414F534C32C2D2CEC9 -CDC7BBB4A3AB90838991898D9298958897A1989BA99A9C9C8E9AA5B7BFBBB9B7B2B3B3B5BA -ABAAB4 -837C3C2C42294545323E2E2F2C3E27372F271D1D2422264132263B2F2C221F241D22242C39 -2985597AD4C7C0C7C9AA9F7757899F54D7CBC8D1D1C4C7CAC3C0C0BDB3A69A9A7E6F557988 -574D8E636C857E7EA68398D0C1BFC0C5C5D0C8C2B4C0BDBDBFB58D3C40635B453BA1CACECD -C5BFBBB4A2AB9786839C9B8D929290838395988E919F978D88989F95B2C0BAB0BCB4A6ADA6 -AA9C97 -57556A3B37295A3E653E1D243127222F27271F1C1F271F29242F3729322E26343E26392937 -6C6D67D3C5C5CBC7C3AE8E5B61614F58B9CDCFCDCDCACCC7C4C3C0C0B2A997957965619785 -6554826F6A7785546385856F6C727667534C76CDB0C0BFBAB5C3C48E454461453CA9CCC1C9 -BFB7AEA9A39F83858E837C9797828691898988907E909790868D9A98A5B0BCB3B0B0B4AA9B -A99F8E -55675427412F2C242626322F26292E3224242724262924243132273131422C3E552759376C -8651D4C7C1BFC1C5C2B767505C446082B5D0CEC7C3C5BCA1B4B5AB9288A1A6886D5B898E97 -50547A7679717248504B394145446A544C72A6C9BBB9BBBFB4C0BBAE6D44444D34B7CCC1BB -ABB3AE9B9588896F827E86908D8E89868E8E7C908E8989958D7C869598A6B4B5B0B2B2AEA1 -989A98 -677C31274F37393A3C54533A292F4226393731221C22241F37462C292457394249316C557C -44BFCFC7C3B4B4C1C7B48EB0657782868DC3C4CFD0C5C0C5C9C5C3B7A1A597928263929CA1 -8685856D777E8241557667A1BBB7C7B7B7C7C4C5BBBDB4B9C4C3B5B3BB6F3C4C39BCC5BFB7 -B3B3B5B3ABABB79783929185859790798D9A838290958E918991887E90BAB3ADAEB5A6A1B2 -9B8E90 -6F412631A3975A22272F393429322F3C374550241F272C39272E2F24245129392F316C7645 -BAD0CBC7BFBFC4C5C1C0464044917C6F88D4C4C7C9C4B491CE6F726F59545B6F6D4D465092 -9586896A7685837E8EA1A39CC0C4C2BFBFC5C7C4C2C4B9B5C1BFC1C0BC983C4439B7BBB7BC -B3A6ADBAB9BABFBA9086868E7E7A85928E869A89828388897A888D8388BBB2ABADAEAD9C8E -909A8D -82343239A3B26F262E3C4032393129482645773E222F323C513A2F312C4845533C31915185 -D2C7C9C9C0C0BFC7C3C3414157A2917A6C90A6A66F3A2E41A34DCBCFC9D0CBBFD4C8AB6C8E -906D6D677A7682909092929CC5C1C3C4C4C5C3CAB5B0C5BBB2BBBDC1BFB3503C34BDC0B7C0 -B9A9B0A9A6B3ABA591897C8D9186868E8D82857E83868385826C7C837A8EA9ADA5A2AEA697 -909C95 -904F583CB3C88226273142373437393C41377E3B262E224146443229224451483A6A7263D7 -C8C7C9C3C8C3B4C7CAC88576867C71A3CDD8D5DBAA314C3C4161DCDED5C8C298BDC4987A89 -857E6F616F7C8382869B9792C5C3BDC5C4C3C0CAB4B7BDBDB3BCBABAB5AD7E4139BDD4C7C7 -C9CCC4B5B0B09B8E8E89898D85928D767E91796F829076767C726C76796F91A3AAB3A1A6AB -907E86 -AB373E6D8E4B42314B4D5B372E444024372C40291D3226373B343B2F27424542327E4FCCC7 -C2C3C4BCC0C9BBC7C4C79767718688D9DEE1D7D64550B240427CD9DAD9C8B295B2B3857283 -777E7C656D8982838D9F9892CCC9C5C7C1C0C5C4BAC7B3B4C4BAAEBCC5B7A94434AADCD0D1 -D5CBC4C4A98D8D8888899295888888716C7776727A797C796A7176726A7790A59FA9A9A2A1 -928988 -BA556F4C513226413C3E403437313C492E4D29241C312627312F3429273C343A4257BDC7C7 -C7BFC0BDBBC4BBC7BFC5B2B9B2C7C9D6D8D9D69A2E919B443A9CDCDAD5C9BBB4BDB7A27689 -8E7E7671717C7E98958EA1A6B7CAC9CBC3C4C9C7C3C8C9C5CACDD1CDCCCBCD48246ADCD1D1 -D3CDC3B5917A77797E837E828D7C767A7C72716D6A6A71776F6F76797771727792A2B3AE9B -A3A195 -CC4C89377A412F503B243E342F3239412C3931292232293239323E31293B3A314F48CAC2C8 -C4BDC0C1BFBDB5C9C7C5C4C8C7C0D0D9D7CFD14655A18E4C32BDD7D8CDC2BCB3A6A3A66F6F -9F8677656C7E828D9BA1AAA1BFDBD7D6D4D4C9CBC4C2B9A6906A5B5A513C39292645DBCFCD -CBC8C0A2929276717685867E8D827671837C726C6F7A6C7186776F77856D6A6C9598A9AEB2 -A1918E -B2494C2C633A45464C463731273B372E222C2E3732343134423A3A3B343940345C5CD1CBBF -B9BFC2BABDC2AEC1C4C3C3C5C4C9D3D7DBD688329FA2835331B4C5D1CEBFB5B2A39C9C7C71 -957E7E6F65797C85A29790797A8D6A594F50443A5C372E2C2C26272627272E2C293CCCCFCD -C1BFBFAE89827E7E6D7283856D6777726D6F766A63716D7277726F716765726783959AA3A2 -978886 -9555652E392E31294F4C3E41272F292224292C292C2C392F34323B343439323B4F9AC4C3B5 -BBBBBCB4BBC0B9C3BFC4C7C7C5CDD7D5D4D13B5391978E5134BCC4D2C9BDAA8E92A18D866A -977C727257953E29292E2726272927262C292927502C312E2F2F32322F2F2F2C2450D9C7C4 -C5BDB0A9897C6F767976767A5C59676D726D6563676779716371776C65656C777A83858386 -908D8D -48486A343C32243E4C65444829342731342E312932342F2C412F343A2E6D2E3240BFBCC5C1 -C4BDC0C7C0C0BFCAC9CDD0D9D5CED4D1D08E39AB8386A5552FCAD0CDC5BDAE9C91A2907654 -9F7A4F713B4829262C29292C2C312F31342E2F242C2E292E2F27292926262F324242CFC3C0 -BCB3AD9B8585716D857C6A727A59636C727A5C596D6765717671636163676C8689716C7171 -637283 -4944443C4D29274B2E51463B2E2440453C27373E3C2E37584934314F3431324041CFD0D4D2 -CAD9D2CABFAEB3C7B59B827C82CBD0D5CD3B65A3888D91512ECACECFCCB0A2A5919A957250 -9C6F6A832926292729272C29272F2E29312C2C292627262C2F3C425C7A98AABCB760BAC1C2 -A5AAB9A3908E7C7A7C797972635861656A67635A60656561766C6561636D727C83796D676F -726161 -57484B45402F442F22405153312F425B2E503239482E5B55394F493932273926427A796058 -50513E3A393140652F2F2E2F4CDCD2D9793CA68597978D6537C9CBCFCBB2A39B9597887A5C -9F7E82892726242924272C2729292C262F32424C31469C9A9CBAB7AEBFBFBFB9C476AEB4AD -ADAAB2AD9C9B88777C72797C5B63797A6F6F6A605461636D6C6367635A6F776D6D7E6F6C67 -766F67 -483E443A44443B311F3C4C54342E37454D6D31453A275B4F2F61422E3141582F2227292C2C -272E2E2E2E2737492F32323265D5D5CD378EB991868D97853BBFD4D0C8C1AB92929F857158 -AA89728D2F222626242C29413E4F72A2A5B2BBC36579C5BAB7BDBFB2BFCBD7C9A54BC4AEAB -B4A6A6ADA69B916F7C85838D88888585857A606D6D63658279675B5960616177716365716F -607177 -443740325444423C273C2F583E323E2C713741372F2F8946394B3A3232404B27222E323131 -313431342F2C292F342F322E77D9D97242C4A39F957E92833AB4D1D0CBB9A3978E9F856D4D -B2826D893422244F5A868E9BA6AAC3C7C4C5C0C28D6FCBBBC3C5CBC5BA97553E3C6FC7B5B3 -A6AAB3AE989AA67776828E85838D8E86828D83726C65676D6D6D5B515B58586D676C656161 -606060 -6054673A58312E342239265050392C344D50552E2F34533B483B3140404B53261F24222C29 -27292727272F3929373A322E8DD7C94091BDA9A1A39B907248BACECCCCAEA6AA9795836C60 -9A5B9A9F372439A3768EB0A3A3A6CAC3C4C5BFC48E6DD8C5C9B77748374153514D89BDA5B4 -ABA5AAAAA29A90828E867E8E837C8E8D858E8D7A7777606C67636D63616059555B6F715B65 -76655B -48272C313B2F2641263A223A97513A2F2C616D3427312F4F39493C2C4144342C4649677282 -76766A506361852F92A39CA6D4D77248C0B5B59CA3A29B5C49B0D2CEC4BFB4988D9F896151 -A14297A24522398967919FA1AD95BFCBCBC7D0CD8E4C796A42403E494D50585B4272BDADB0 -B4AEA5AAA99889959C908D7E89908E909290868E897A6C716F63636F604F49425363606A67 -5C616A -5327272440585145342E263A552F3B39263B5034263939373E40403E403C3B46AE9BB29FB5 -C4B7A5A6B5B7B93CC5C7C4C5CBC83BABC5ADAAB4AA97B56C31A5D5D1C8C0B09A9098796358 -A1409A9C4224347A639C9CADBCA1CBD4D4BF9C533B58424F556A5A5A5157515A4583C5B9B2 -B2B2ABABA2A1A590959F9A7E839A9186959F928E898571675C5859584D464F55605A5B6A60 -5B5A6A -4832292472855A676C65505051344D312C2C2E2C2F2E393B3E4034403A424B45A3BAC2B3A9 -C3B5BBB9BFC0C23EC2C9C7C5D96753C8B4ADA2B7A9B5CB4231B3D7D2CDC1AEA99B92836D63 -913BB5A5452431885598ABB3B2BAB0834F41505351493C32343432322F3931313153BAAEB2 -B2A9A1AEA2959C9A97A19790918E8D958D8D91887C827157554F494F50576A6C5C635C5B6F -6D595A -402E261F83885757534C584F572F443C413C39323B3E313C792F4246348E4C2C454B538D9C -C5C5D0D5D2CECD48BBD1CDCDBF37B3BFAEB7BDBF7CD8C13440A3DDD0D1CDC2B3AEAE906161 -79428EB548242C8E76BF9C7E533C4B6D88A5A382AA926C57504F5755575A5B4B425CBDA2AA -AEAA9CA6A9978E989F9791919F88899788888E897C7A655C5851585758575A6A635C61635C -615C5A -412E2C2949545A61463E4644493A403B2F323B44373737546D39454646464F3C403A37373A -40424B768391A1396CB0C4CC674CC4B5B4B9BF764FD4B22F37AAE0D0CBBBA39F9B986A5854 -B37192B249272692584B425498AAC8C9BCAA9A7ECCB38E6F6A6C65656058615B5059ADA39B -92A5A59598A19792989C9F92889A8E8D8889898E8582676363576371635C67616A6D5C5C65 -5C585C -453C3C4854496F4D574D49506C3E2F3B499759323137404B4F504441404F63445B46855163 -3B3C45543A45372C2E343B3A32AEB4B0B5A5372F42C582292F5751424F372E272E313A8572 -9BA576A1412E265A55AAC4D4DACDCFC9C0B4A377D1BB6A555B63575955584B504B6AB29FA2 -A1979A9B98989C9C90869B89898E8D86869095978D837E71796A656371716F676D836C6F7A -7A635B -3E2C2C2F5748534254545957513A6159484B58324041635C7E6757413B58495A5A3B724863 -374B61614B4C41324042503954CAB4ABBA582F6055C746452C29313C50904D2F424439906D -766D424B393C2683D1CBD2D1C7C9C9C2B9B4AB79C2897261716C6C6D605C5A504967B29BA5 -A69298A99B979B97928D919A887A888E897E909F90839282726377776F6F727C6C77837276 -7C7E6C -3729394458594C3E535545604432656F58555134574C5B4C558D5B3E495A4257573A4D4253 -2F3A61465A3A3A373C4F4D34B3B4B3C1C04551C967A558652734322C555A31313232396F54 -95C1422C27272265D0C5CFCCC2BFBFBDB7AAAB91CDB977656F616D6A5C5C605C4960BBADA6 -9C9C9F989BA39A8D9798909097887A777E828995919A888583676A7C7C6565766F71836F72 -7A6D6D -3226554B4250593E5050514C413B617E7763534479486F533E576741374151534F3E555153 -322C49424F453431394C395ACDB5B4BF4D4BC9D36788632E34312C3B7698292C2C2E53835C -B27C322C29272691CACFCBC3C5C0A3AAAEB2A28ED9B37C7C8285796F6A5B595B507CC7ABAA -9C9C9BA19F9A9797888292908386826C6C899097959F8990958D827C79776C6376776A6C72 -7E6F71 -2F29373B57607C5859595753583E58857E7A544C854F6A7260605C4B453C55573E424B8E7E -444242514F4639393B4034C0BABFBD7941C3D7C8837C612F3B2F2E449F57323429428E4B67 -882C292E2C2932B2C4CBC9C7C7BFB0A6A3ABAB8989513E3E3E483B3B3E343A3E3450B9A5A3 -9A9191A39F9B9AA39789989289888E8E8E919BA191919B95959298887A7A896C6A79715C63 -6C726C -31323E5383576D868872634F58406C7172773A556C587179717C4B404440483E3748424846 -2E3B39444B414942482E79CAB0C39546C1D6D7CB907C5932322F37446C4076403151292F3C -572C2F2C2C2934C7C3C5C7C8C4BDB4ADA1A9AD797C90635B63726D6C605457554446B4A598 -A29B8E9B9C9C9F92A2AD9A98A59C9097B0A397A29786929B98908892AB868986766F605A71 -65676A -4B2E2F39325A443C3B45605B573B63717A633C6A673B443A3740413B3A4857484B6D534D4C -3E4D576C51504D5B712CBAC3C4AE49C3DCD3D8CD835045372C2E2E4F975350344F5139393C -652C2E2E292739CDC7C3C9C0C2BA9B98AEA69C79D0C79789958277796C65656D5A4CC4AEA9 -9B9A9B97889A9B979BAAA9A5A6A2A29BA5ABAAA19FA99AA1AAA1979FBBA698979B7C6D767A -77596A -76314B41676D576054A56A6F55405772855148885854775A5B5B596C54726A6A7E7C5C6C60 -5B796C7C9C958E867A2F8ECAC25191D9D5DED6766F825C3C463A323EAA342F3C272F312437 -60292E2C2C2767D2BAC0C3BFBDBAA29CA3AAA37CD1C7978691927C717261606C555BB9ABAA -A29C90919291A3A69FA5B9B2A2A2B2B3A3B2B9A5ADB2ADB0A99CA69CA5C5C0B4B3A3A1837A -837163 -613BA14698638561897A6A6F544855558645538576827A6A86887A7C72717E828D85727986 -828D86A38585899C5C278DD0556CD9D8DBCB609295424D585A513E82D0513E45343E322E37 -60322F2F2E2E9FC4B9BDBDC0BDB4B9B7A2A6B395AB77585755504545464445463A4FC9A198 -A1978D90A1A2A3AAAEB0B0AEB7B4A6AAB5A9A5AEB4B0B4AEA6A2A1A3B0C4CCCCC5BAB2A190 -838285 -61376C83506F765491585A775C456F8565427788716F7A766A7E7177827A86867A86837785 -8583838D838389A26029676D5CD2D9DFBF76B2C57955424446443746C06140483B3A373234 -774531342E34BABFC0BDBABFC4B4B0ADAEAEAB6F7189766C6D5A4D55534442463E469AA19A -979797959CAEB2AAABB9B0A3ADB7B2AABDB0B2B2B2B7B3A9AAB2A19CCDC7C1CBCFBDAEA3A3 -8D777A -632F6C8553614BAE5779596F53405A85544D7786777C7991797A89867E837E887C82888E86 -8691989590AAA3A54F2C3A57D5D7DCBA63CDCAC9CD60373C46454F4D5A7C4C4C534C464139 -504C2E2C2940C7BCB0B7C0B9B0BDB5ABB3B3AB85D2CDA992918D8876796F65636160A1929F -9B989B9BA3AAB5B4AEB3B5B4B3ABB2B4A6B5B7ADB3BABBBFAABAABAAC1CBC9C5C5C0BDA19F -A28660 -6142B53E5C458271598363574F5060904458827E82777A8E7E6F7E8589867989928977978E -858597978897A9B74F2F3BC0DAD5A5536DC1A98D855C464F585C586090D165463B3B49444B -9C584D51449BBBB4B2B2BFBAB3BDBDBBAEABB998CED2B289859A8D7171726A5B535BA18E90 -AAB0A1AABDAEA5B7B4A5ADB7BCB7AAAEB7B2AAB0B5B4BAC8C7C2B2C4CCC9C5C7C4B5B2B09F -8E7779 -65857C34594C9751726D886154445B863759838E71768E7979837C82858890888D9291908D -859197919586A3C3455048CED4926C774D4D636F7AA5544C4B4C424665C0985341393C343E -91ABA9B4B4B4A5ABB9BBB2BABDB7AEB9B0B5AD92CBC2836C857E6D636D595A5C4D53A59592 -A1ADADAEB3B3B4ABAEB3B3A9B2BAB3B4BFB5AAB0ABAEB4BBC7C7C2B7C5C1BABDC5C0B9BB9C -77766D -6C775C3957A55A445076776A51425C7148778290837A90827985858D8689928E8390A29595 -92989B8D98929CB5516548C5827E7C8377CBCECC868DC4B7A56D6085ADDECDAE8E91979A9C -B79AB5B4B3B0A3A3ADB4B5B9B3BAB3ABB3BDB48DD6D1AA899C957A86766A616C5558BBAAAE -A6A5B9B7ABB3BDAEABB5B9ABB0BCB7ABB5BBBCB3AEB7B4AEC0CDC5BBBDBBA5A3C0C29F898D -7C7663 -A940763E618854513A53826F51506D6D4482798695827A858D868389898E8D90908E959C9B -978E95978898A5A54D57468592A1897265D1CCAB7EA9E1DEE2D4CEDADFE0C9BBB4AEB3ABAB -A6A5ADB2ADAAAEABA3B7BDB3A9BAB4B4B2BCB99BAA896051514D4C423A3B3A3B3A3CA6BDB0 -B4AAAEB5BBADAEBAB9ADAAB3B5AEB5BAAEABBABAB7B4B2BCB7BFC4C2BCAAA99C979186837C -7A7763 -913A854FAD65586D53575C5B6F4C76604D8E897E7E8389867E858E8285958D8595928E9897 -9092979B92909AA671769FAE9B98977955C5CA797A95E2E5E0D4DBDEE0E1CCAAB4B4BAA6AE -BFAAA5BBABA2A3A9B2B5B7B5B5B4ABB5BDB3B5AE8E5B514B4C4C534C50553C3B414F6CBAA5 -ABB5B5B0B5B2B3B7B4B3B0B0ABB2B4BAB0AEB3B5BCB5ADB5B2ADBAC1BDAEA1AA9B83898D76 -677971 -6D37499286885B6A5C514C55894D587276859097838D98888583868E8D9598898E959B9298 -9C9B8E90A59892A19FAAAAAAAAA291866FD6C5A2A190D5DAC9BBC5DCE0E0CEB0A98692B3AE -B4BAA9A298ABADA1ABB3B2B3B5AEADB3C0B7B7A5BF67586F7E7E6D67716A5859595172B5AB -A5B2BBB3ADA9BAB9AEB7BDA6AEBFB4B0B2B4B4B3B3B5B4ABA6B5B3ABA9B7A99BB0A189887E -7E796A -B73977764857425C65676C539772618E7A857E8992868688928885989A89919A959197979F -9192A19097A3A29F959BAB9CA1A6977A63B37E55494F7C858E857C7971768D91D9CFD0BAB2 -B3BCAB9F9FA6AEA6A9B3B2B2AAB5BAB0B0BCB78583836379607E77546767535351504D98AE -B7A2B9B9B0A6B0B5BAB3AEADAEABB3B7AEB0BABCADAEB4AA9FA2B0ADA1A5A5A69F9F9C826A -7C7E65 -9739BA635563594B494F4B41796761927789828397858D90898989838E928D8E9B9A92979A -8D8D979897A29BA29A9F9CA3AB9FA172617265636582ADC2D7DFCBC5C8CACF9BD7DBD4AAB9 -C0BCB0B3BDA9A5BBB3ABB7B7B2B4ABB9B9B9AB7E575A5A8576777E615A615A544F4D499AA2 -AAA6A9A5B0B4ABA6B0ABA2B3B3ADB0B4B3B5B3BBB9B7BAB3AEA3A9ADA99FAAB4A298A3857A -7A7679 -4C3B6C4F576F7A9A7971796C88905A76678586899183868E899795858597918D9C9B8E9792 -959B959BA19A9BA3B29295AEAE8E976FAEAE899F7C88A1CDD5E6D8DEE0E2D789D0E0CDA6B0 -B7BDB3B2B3B0AAA2B0B7B4B4B5BAAEB3A2ABB4AEA19A5C7A7E777A6C60675B6558514C88B9 -AAB9A9ADBDB7B7B5AEB3B7B0B7BDBBA5B3C0B7AAB7BDB5BABDABA39AA2AAA6A3B5AB9B9291 -857179 -4B7EA1797979767783918265826F4B6C7C7C7991868285918D8985978D8E9197A18E979B86 -90A398929C9FA6AE9FA2A2A1A5A9975AC88697A69A9283BFD1E6DADCDCDFDEBDC9DEBCB5B7 -B5BDC2BCB5B7B2ABB7B4B9B5B7BCB3B0A9A3C9CBB4C0A9908D8988516A6D5B6D60575361C2 -BBA9A9BCBDB0B0C2AEB5C9C2BBBCB5AAA2AAB5BDB7B4BDC0BDB4AE9585979FA1ABAE9CA18D -86827C -504582835950716C63776F72676D576777887E82868E8888978E7C888D909190979B8D919A -989598979C9AA3AA9B9BA9ABA9AB907CAB7A9F7A7A7EA1C0D2E8DCDEE1E3E0CDC9DCC0BCB9 -BDCDC8C0BFBCB7C0B0A2B7C1B9B3BABDB098C9BCB4B4A68E7979824C51575A594F55514B9F -B2A6ABB2B5B3B5BDB4BCC0C0BFBCAEB0B3B2BABFB5B7BDBFB7AEAD9F9795A5A19C9FA9A389 -89927C -67779F9C9C795A5C5C857A5C675B5C716D868286918E8E8D908E90858895908898AD928DAA -A2989CA3A29AA1AEAA9F95B7B09F82A38690A18EC3BBCDD3E4E7E0E4E5E5E6DCCBCBC2BDAA -BDC3C0BFC1BDBDBDB5ADB3B7BBBCAEB7B79F7C7C827165585755574F414F53534C4B4B455B -7AA6BDB9B2BDBFB4C0C2BDC0BDBDB5B4B7BDBABABDB9AEB4BAB39590A39B9A9FA2929F919A -928382 -555C40495997888D909079539051728D6F7A798D9B8990A18E8395868E868995979B959798 -9AA6A1989CAD9B9BAB9FA1A5B5AA77B792B0A69AA29CADBDD7E1DDE0E4E3E5E3DDBFBABAB7 -B9C0C5C1C3C2C0B5B9BBBAA9B2BCAAB3BFBCC3BACDCBC7C4CACDC8BBB7BDB5A2928E9FC1BD -A1A3B4BCB4B2B4BDBABDC0C2B5B3BBB5B2BAB7B3AE9FA1AAA9A19A9A9FA5A2A3A9B0A39591 -8E8383 -6C6586765B6C6D587E82555B986560767986888D929C9A9A988D82839291888D9797979B9B -98A3A29FA3A3A2A298A2AA9F9CA1989C9BB4B09FADB2A27CC0D4D4D7D5DEE2E0D8C0B4B7BF -BDBBC4CAC2C5C4C0BDBABAC0B5B2BDB5B4D3E3E5E6E6DCD9D7D9C8C7C8C7D0C8BFC2CECCB9 -A6AEB0B3B0AEABB7B0B5BBBDBBB7B4B9B7B5B2B2A395A6A9A2A3A69F91A5AAADADBFBCA99A -9A8D85 -7E5379836A639A67676A596382616072778D8989909B9795A6A2898D92918E8698A19A97A2 -A2A3AAB3A99FA3BBA39AA6AEA686637C857A6A7CA6B29FB5C4C8CED0CBC7C5C7C1B2A3B9B4 -BBC8C4C1C5C8BFBDC1B7B4BDBDB3BFBAB9D3DFE4E5E7E2DBD5C3B9BD9FAAAB9CA2C5CEB990 -ADB4AEABB2B5A6ADB7B5B0ADB7BAA2A9BCAEB0B2AAA5A2A2ABAE989CA3A198B3BCBABBB7A6 -959189 -5354616A6776829597987E92885C6A77728591A3A195989C959AA191908D909192A2A6A2A2 -ABB2AEA3A9B9ABAAADA6A2A9A688C3D4C1B99FC3D1D2DBE5E6E3EAE9E7E1DCD9E1D7A6BCAB -BAC4C2C0C5C4BFB5B4BCB9B4BDC1BFBABFD4DCDEDBE7E1DCD7CFCAC4C7C4BFBDBBA58898BB -AAAAB2B09FA5A9A5A5A9B3B3B4A2A6929B9CA59A9A9AA29AA3A29CA5A9A1A2B0B4BBBDB09C -918583 -5B717A8395906D95957E727997725B8579888D8DA395919B989595909791858EA1989CA39C -A6B3B2A1AAB4A9A3AAA6AAA69F9CCBD5D6D3D0D7DCE0E2E2E6E6E6E6E7E6E6E7E5C98DB9C0 -C0C2C8C4BDBFC1BFBBBFBFBABBC1C4BFBDD1DDE2DEE6E3DCD6D6D3C5CCCDC9CBC5BCC0B5B7 -ADA9A1AAB09897A29B959BAD958289959C979A9F958EA5A39897A5AB9CB2BDB5B0BBB5AAA2 -958983 -7A7185978D8698958967887C956C65926783978E98959097A1A59288959889899C9A9AA29F -ABADA9B3B4ADAEB7ABB4AAAD9888CBD9DDDCD1D4DBDBDBE2E4E6EAE6E5E9E7E2DCCDA2BDC0 -C1C7C5C1BDB3B5C1C3BCC0C0C0BDC1BDB4BFD8E2E6E6E6E5E7E2E3E3E7E5E4E6E0E0D1AEAA -AEABA1A3AD9791A2A297907989AA9B9CA39B92A1A39595A3A3929AA5A6A6AEC0BFA397A398 -90837E -82828385899095909265829289596D925B7C97928D929A9298959B95958D9B888EAAABA29A -AAB9A6A9B3B2A6AAAAA3A5A2B09BCDE0DEDAD9DCDEDEE3E6E6E6EAE7E7E7E7E4E2CDADC3BD -C4CCC7C3C4C1BDBBC0BABCC0C0C3C4BBBDC5D4E4EAECEDEFF0F0EDEFEEEEEEEFEEEDE6CABD -AEA5AEAA9AA2A19C9A98897682A39B9CA2A29A9B9A929791929C9597A1A1A9B0A1A69CA18E -89836C -8392827E97A197657A797286906A618D71868690A389869C9590988E9F91908D989CA5ABA9 -A6AAAAAAADBAABA2AEABA3A1ADC4D2DAE2DCD7DBE2E3E3E3E7E9E7E7E9E9E8E7E0CAB4C2BF -BDC0C1C4BFBDC2C2B5C0C5C0BFC7C9C0BBC7D4E3EEEFEFEFEFEFECEDEEEEEDF0EEEDEBD4BA -B0A69197A29B909898857786827986888D928E92959598989CA1A5A198A5A1958DA19F8D90 -8E7A58 -798383868688895C76977E7C8D725B856A8886929B8E88979B9C9891A19A8E91A6A2AAA3B3 -B0ABAEB3B7BDB9B4B3B2B5B392CAD3E2E5E9EAEAECECEDEEEDECEDEDEBEDECE6E3D0B0B0BB -BDB7BFC4C4C0BFBCBDC1BDC0C1C0C0C2BAC2D0E4EFF1F1F1EFF0EFF0F0EFEFEFEFEEEDE1AA -B29A858D9A888598987E798D8D79728291979092A29297B2A295A3A6A2978E9F928D8E8D85 -776153 -867C869288777A657185717E8979639A5C8298A1959095978D9B92979097A19595B2BBA59F -B3B0A9B3C1BAAEBBB7AEAEB3ABCDD9E6E7EDEDF0EFEFF0F0EFF0F0EFEDEEEFEAE3C2B5B2B2 -B9BDC0C0C4C4BDB0BDC0BFBFBBBBBDC1C4C5CDEBEFEFF0F2F0F0F0F0F1EEEFEFF1F0EFE7BA -A19B9B888E89918E83829189858D826F7A989B9295979A9C9A9CA1979B979295918E7C8D6F -635A4F -8888887C8988586D7C828871927A5992797C7E979F8D9190979592A29B91A29798AAAEADA9 -B4B4B0B3B7B3B2B4B2B3B0B0BBCBDFE6E9EEEFF0EFF0F0EFEFF1EFF0EFEFEEEBDFA6B9C0B0 -ABB9C0B5B3BFBDB7BBB9BBB7BABFC3BDBCCBD5EBF0F0F0F1EFEFF0F0F0EFF0EFEFF0F0EBCD -A9A5979B908D928E83888E8985897A7C83869B9290959B979AA69F9F9BA99A90958E7E6C5A -5A5142 -7283728D928D775B7C769C777761718E658976869F91889AA19192A6A39AA9A2AAABA9B0B7 -B5ABC0BCB2B2B4B3AEB2BBB7B9C5C7D6EBEFEFF0EFF0EFEEEFF0F0EFF0EFEDECD7B7B4ADAD -ABADB2BBBFBCBFC0B5B7C1C1C0C4C2C3BFC1D9EFF0EFEFF0EFF0F1F1F1F0F1F0F0EFEFEDD4 -ADAB9C9A9C9C8D9598838392897C82828E8D899A91919CA5A3979AAAA598A59C887C6D6D5C -534951 -6755599B637C856C5B7C929B776557896D8388888E8E92A18592A39A98AAA19CA6B3AEA2B0 -BDB3B0B2BCAEA3B3BFB5ABC0BDBFBDD7EFF0F0F0EFF1F1F0EFEFEFF0F1F0EFF0E0C0C0AEAE -B4B2B4BBBFB7B5BABCC0C1BDC5C1BFC4C0C0DEF0EFEEF0F1EFF1F1F1F0F0F1F2F1F0EFEEDC -A3B4AB9F98A19591918E887A7A7976677C97837C9C9FA1ADA6A2A5A3A3A29F9F8D7261615B -504259 -7C7E7785919F927157637EA69558579C717A8983908E899A958895A3A5A59FA6A6A6AABCAD -BCBDB3B2B7B0A6AEAEABAEC1C1C5C5E1EFF0F1F1EFEFF0EFEFF0F0F1F0F1F0F0E9CCBDBDB0 -A9B2C1B2AEC0BFB9C0C5C3C4C5C5C4BCB9C2E1F0F0EFF0F1F1F1F1F1F2F1F1F0F0EFEFEFE7 -C0AAAAA59CA19B9889898E7C727A6C6C778D9095A5A1A6A6A3AEB3A1A3AA9286726D655757 -5C5C60 -77825367728D896C67615472924C53976F83798690909797A99090A5AA92A5A6AAA5AEBBBB -BBB5BDB5AAADB7BBABB9B3B5C0C3C7E7F0F0F0F1F0F0F0F0EFEFF0F1F1F0F0EEECD2BDB4AB -A6AAABB2B3B3BBC3C1BFC5C9C4C3C4B3AEC2E9EFF0EFF0F2F0F0F1F1F1F1F1F0F1F0F0EFEC -CAAEA5A6A39C959B978985867A72778E9895ABB4A9A1A6B2A5A5A9A5A98D796F776A6D6757 -6C8677 -548D5579768590558388615C886379897189888D8E8D8D8895989C9BA2A5A598B5BBA9A6C0 -B7AABAB2B0B7AABCB2AAA9BDC0B7D0EDEFF0F0F1EFEFF0F0EFF0F0F0F0F0EFEFEEE0C3A9A9 -B2A397A9B3AAB4C1C4C3C5C9C5C2C0B9AEBCEBF0F0F0F1F1F0F1F1F1F1F0F1F1F1EFEFEFEC -CFA9AEA3A3AD988D9F97857C798D9798A5B2AAABBBB2A5B2ADA3928D826D858D76726D6A79 -90A29F -5C605951505467495C828248A2B983906F7A8E90897C86918890979A9BA5A3A3ABAAB3AEB9 -B7B5BAB3B3B4A6B5BDAAABC3C4BBDBEFEFEFF0F0F0F0EFF1F0F0EFF0F0F1F0EDEDE7C5BDAA -A6A6A2A1A5BFBDBCC4CAC8C2C8C5B7AEA1C9EEEFF0EFF0F2F0F1EFF1F0F0F0F0F1F0F0EDED -CD9CB2A5A1979A9B9892908E90909C9FA3BCB2ADBFBDBBB5A2A1825C71919291A2B0B2A2AE -AAAABD -CBBAB5C2AAA39182767759416C855C86798386888886868D958D92A291A592ABAEA3B3BAB3 -AAB9B9B2A9B0AEB2B7C0BCBDBFB5D8EEF0F0EFF0F0EFF1F0F0F1F1F1F1F1F0EFEDEAC5B3B3 -ADA1A5A2A5B3BDC0C3C4C5C7C5BFB5B7A5DEEFF0EFEFF0F2EEF1F1F1F1F1F0F1F0F1F0EFEF -E39CA3B2AA9A9FAA9B959297A29AA1AEB3B4BCC0C1BCBABA9898A3839795B9C3C2C3C5C0B4 -BFCAC7 -A283A2BA9098B0ADA3B4B0A186984D89658E978382958D8D98929090979798A6B2BAB0AAB5 -B2B3AEB5B29FA9B4B2BBBABFBFBCE9F0EFF0EEF1F0F0F0F0EFF0F0F0F0F2F1EFEEEBCBA6AE -ADA59FA3A1ADB4C5C8C5CBC7BCB0BABBADDCF0EEEFF1F1F1F0F1F0F0F2F1F1F0F2F1F0F0EE -E6A5ADA6A9AA9A9FADA19F97AEB59CAEBDB5B3BBBCB9ABA3A9A59A9AABB9C5C7C9C8C9C4C0 -C1D1C8 -6F7198A1A39BA6B7AE9F9C986F9059975C7A9889837C8697888D909895839BA1A1B4B2ABB0 -ADAAABAAAEA5A1ABB3B7B4BDC0BAE5EEEFEEEFF0F0F0F1F0EFF0F0F0EFEFF0EEEDEAC9B9A3 -AEB49C9B9BADBAB5BCC5C3B3B5B2A9ABBAEAEFF0EFF0F0EFEFEFF1EFF1F1F0F0F1F0F0F0F0 -E6B7B3A9A6A9A1989FA1C0BFBBB9B0B5BBBDA9ABABB3A5ABB2B0A1B2BFC7C7C9CECDC7C9CE -C7CACF -4F98B4C0B097719A7A89827A7E8E5395767A8886907A8D9A8288929AA1979BA69FABBCBBA9 -A6B0B0A2A5A9A2A9B2BCBABFC0C0EAEFEFEFEFF0F0F0F1F0EFF0F0F0EEF0F0EEEDEBCDB7B9 -AAA5A29C9591A6AAA5B5B5ADA9B0ABAEB3E9EEEFEFF0F0F0EFF0F1F0F1EFF1F0EFEFEFF0F0 -E9C2A6B5B2A5A3A59CC2D1CDBFBCC2B7B5B7B9B3B2A2B2BAA3B3C7CAC7CAD3D1CCD0CDCCCB -CCCFCC -5A76D4CAC7767C634B656A6D716A5B856A86897E8895918E98958588A29C91ABAEABB9ABAB -AEA5A2AB9F959AA2A3A9BAC1B9C5ECEEF0EFEFF0F0F0F0F0EEEFEFEFEDEFEFEDECEADBB3BB -ABA5A2A29FA198A1A59FAAB2AEA6B4B2B3E6EFF0F0F0F0F0F0F1F1F0F0EFF0F1F1F1EFEFEF -EED4A1AEB3AAA99CBCCFCDC5C7C8BDC0C3BDB3B4B7A6ABB7BDC5CBCFD3D1D0D5D1CDD0D3CC -CCD1D1 -5AA16F7C98AB8D979BB2BA867A5B7AA16083888883929292929291978E98A6A3A2B4B7A2A6 -AD9BA2A39C959A9B9FB5AEB7BAD0EDEEEEEFEEF0F1F1F0F0EFEFF0EFECF0F0EFEFEBDAAEAA -B3AE98A1A59C989CADA29FA9ADB0B4A5BDECEFF1F0F0F1F1F0EFF1F1F1F1F1F1F1F0F0F0F0 -EFD7ABAEA5AEA2AAC4D3D1C7C5C5C0BFBDBBB5B0ADADA6B4BFC5CBD2D7D5D1D5D7CCCED8D3 -CFCED3 -798D5A6A678382556167677E836A6C9579887A89898290978D8D91A5919FA398A1AEB4B9A6 -A3A6A99AA3A99795AABCB5B5ABCDEDEDEEEFEFEFF1F1F1F1EEEFF0F0EFEFF0EFEFEDDFBFB2 -AEA195A3A29AA59B92A59FA1ABADB2A2C7ECF0F0F0EFEFF1F0EFF0F1F2F0F1F0F0F0F1F2F2 -F0DBA9B5A9AAA6C1CBCAC9CBBDBDC7BDB5BCB9A9ADB7B3B2BCC4D1D2D1D2D9D5D2D8D5D4D5 -D6D5D5 -B9828E9F8985AB65678D838692896C9772897C86909190898E95888D9A9F979BAAAAAEBAB4 -AA9CA6A6A3A39B98AAA3B2A9BDE4EFEFEFF0EFEFF0F0F0F1F0EFF0EFEFF0F0EFF0EEE1AAC2 -AB9A9FA19F98A3A1959C9FAAAAA6B3ABCEEDF0F1EFF0F0F0EFF0EDF1F1F1F0F0F1F1F0EFF1 -EFDEA3B3BCA6AEC2C7BCC0BCBDBDBDBCBDB598A5B7B0B2BFBFC7D0D2D0D5D4D2D5D5D4D5D1 -D4D8D8 -95637A9B95859C926D92869088867A9A777E8E928D928886869190888D989C91A5AAB0B5AA -B5A99BA2AD9F9BA3A6A9B5BACEECEFEFEFF1F0EFEFF1F0F1F0F1F0F1EFF0F0EEEFEEE6B0A5 -AAADA19CB4A99595A29F9FA6B3A59AABC4EFF0EFEFEDEFEEEDEFF1F1F1F1F0F0F1F0F0F0F1 -F0DFA6B3ADA3A39C9FA9A3A5ADAA97A2B5B2ADAEB3B2BBC4CACDCFD2D2D4CFD5D7D2D3D5D4 -D3DADB -6C7C9089989077A16C777982828E6A9B7E7A8891918D8886898888918895A99B9AA9B3B9AD -ADAEA1A3A9ADA6A3ADB9B0B2B3E6EEEDEFEEEDEEEFF0F0F0F0F0EFF0F0F0F0EEF0EFEAC4A2 -A6ABA9A19C9B9C919AA5A3A6A6ADB9A3D7EFEFEFEFEDEFECECEFF2F3F1F1F1F0F1F1F2F1F1 -EFE6BFB7ADA9AD9C9C989BC0BBB0866D9FC0C5BBB0C5C7C4CDD4D4D5D0D6D6D2D3D7D2D3D1 -D9D9D5 -8376677E898E7A7C9A867C7E85885A9F8589868D9A908688888E82908691929AA6A6A1B5B0 -9A9CADA5A1A3A9ADA5AEB4B5AEE4EEEEEDEEECEDEFF0F1F0F1F1F0F1F0F0F0EFEFEFEABDAA -B5A3A3ABA39AA6A298A2A2A1AAB7BFABD6EDF0F0EFEDEFF0EBF0F1F2F1F0F0F1F1F0F1F1F1 -EFE9C1B7BFB9A39FA989B4CCC9CB88B2C0BDBDBFBBC7CCD0D0CFD3D4D0CED4D5D1D2CFD4D0 -D5D7D3 -8E88617E837E90769C77778D858660A577828E85868E8985838E9283899AA2A1A6AAA9B9AD -A9A5A5A5ADA6A2B0A1A5B2BCB0E1ECEFEDEDEBEDEFEFEFEDEFF0F0F1EFEEEDEDEDEFEAC9AD -BFA9A3A1ABA2A19CA9A2979CB7A9ABABD9F0F0F0ECEBEDEDEAEFF2F1EFEEEEEFEFEEECEEF0 -EDE4B3B3B9B0A59B9AA3CDD19A8663D0CDC9C1BFC4CBCDD2D3D1D0D4D4D1D4D0D0D0CED1D1 -CBD3DB -7CA579717288857182906C899B8E65B4717C8D918E9289858589958D8883A2A19CAAB4ADA6 -A9A9A5A9B9AD9FA5ABB0AEB5B7E5E9EAEBEDEBEDEFECECEEEBEEEFEDE9EBECEAEBEFEAC4A5 -A1A6AE9F9AAD9C8E9C9B979BADADB5A3E5F0F0F0ECECF0F0EAEDF1EEEDF0EFEDEFF0EBECF0 -EDE3A5B5A3ABB59F90857C7C504277DBD8D4CBC5C8CED2D0D0D5D5CFD5D5D0CFCED1CDD0D0 -CDD3D0 -88B0907A6D7C856D5B8D777E987E60957C82898D959286869886889B8D889B95A29BA2B3B2 -9BA9AEA59C9BA99F95ADB4A2A9E6ECEAE9EDEBECEFECEDEFECEDEEEFEAEAEDE9EAEDE9D4B2 -AA9BA3A6A3A19A9791989F9FA5B7B7B4E7EEEFF0EBECF0F2EAEEF0EBF0F1F0EDEDF0ECEAEF -EDE3BCABB3AEA29B954C4B48543C4076859FD3CEC8CAD0D1CFD0D4D8D0D0D4CCCBCFCDD1CA -CBD0CB -88AB979776657E6F5C88A97C838D639F7989929089898D888E918D8D8E908E928EA6A1B2B5 -AAAAA39CA5A3A19898BBB0A9BCEAF0EDEBF0EAECF0EEEDEBEAECEFEDEAEDEFEBE9ECEAD7A6 -B5A99BB2A99CA29A959A97A6ABA9A3C0ECEFF0F0EDEDF0EFEBEDEDEBF0F0EFEDECF0EEECED -ECE9D997AEAA9B909C7A90BD55469C8E3EA6D1CFCECECCD1D1D0D4D8D1C9D0CDCBCFCECDC9 -C9D1D1 -92A5869C91826061677A958D7E715BA37985959B89868D898297928889899B9192A5B0B5B4 -AEAAA29BAAAB9B9CA39AADB0BBEAEDECEBEFEAEFEEEDECEBE8EAEFEEEBECEFECE9EBE7DABA -92AAB3A29CA29C9295A69A9CABAB9FB5ECEFEFF0EAEBF1F0ECEFEFECEFF1F1EFEFF1F0EDEC -EEECD9A1A9AAA1989AB9CCC24F58C7B982D1CDCFD6D3D2CCCFD4D5D1D4D2CDCBCFD4CAC9CE -CBCCCB -8290767A86926A6C6D887698779C58AB827C8E959790908D9186838E8E8397A29095BABFBB -ADA1A2989BA3A59A9CADB092C4ECECEAEDEFECEEEFECEDEDE9EAEDEEEAEBEFECEAEDEAE8E2 -B5A9AEA19AA39F959798979FA9ADA2C0EAF1F0F0EDEDF0F0EBEEEFEDECEFEFEFF0F0F0EFED -EEEDDEA2A9A1A19F97834B6F4B53BC7A4BC1D1D4D1CFD0CECBD1D4D5D5D3D0CDCCD2D0C9C9 -CACFC7 -8EAD766C7A8888A282636797616A638D7E8E8E85839086828E8D8D8D838695909CA59BA5B7 -B59B9CA28D909F9C95B9AA7CCDE9EBEDEFEEEAECEFEDEBE8E7EAEAEAE7EBECE9EBEEECEAE4 -A9AAA3B4B0A19FA29C95A1B3A3A2AEE5EDF0EDF0ECECEFF0ECEDEFF0ECEEF0F0F0F2F1F0EF -F0F0E2A5A3A6A6989A7692894D34423261C7D4D2D0D1D2CED2D3D3D5D0D1D2D2CCCFD4CFC5 -CACEC9 -777979799A8557A14D51608E6A6F54BD6A829A988885857C88918E898592909298AAA1ADB7 -B79F8E868386889FA6A1A1A1E3ECEDEFEEECECEDEFEDEEEBE9E9EAE9EAEAEDECEFF1F1EEE1 -A1B0AAA6A9A1A597A1A1A9ADB49FBAE7EDF0EFF0EFF0F2F1EFF0F0F1F1EFF2F1F1F1F1F1F1 -EFEFEAB59CA6A19FA1AACCC588558977C1D4D0CDD4D9D1D0D2D5D1D6CFD1D1CFCFD0CCCBD0 -C9C7CD -988583898865917C5967678671654882A985909A92868589868689929B888DA39B9AADB29B -A990A6B385BA9C8392A28898E4EDEFEDECECEDECEFEAEAE9E8EAE9EBEBEBEDEDEFEFEFEEE2 -9AA6AAAA9CAAA292909F9F9CA99F82DBEDEFEFF0EFF0F2F1EFF1F0EFF0F1F1F1F1F0EFF0F0 -EFEDEBC49A92A39F9797C0C9A25AD1C3C8CBCBCED1D0D9D6D1D4D0CBD0D1D6C9CDD0CDC9CB -C9CACD -727A83676F59867753677A515B885B6F67919182869586898E8685858E868D9795909CA1BD -CAC5D1DBDCDCCE79A5B286CDE8EAECECEEECEAEBEAEAEBE7E7EAE9E9EDEDECEEF0EFEFECC8 -A1B2A6ADABA698A9A39AA5AB95C0D7E9ECEEEFF0EFEFF1F1F0F1F1F0F0F0F1F1F1F0F1F0F0 -F0F0ECC4959598919898A2BA9C57D0C9CBCACED0CBCCD1D2CFD0CFCDD0CED1CCCBCACBC9C2 -C9CAD0 -C7BFC2BFBD5565824F839B504F9C639288899286838985868E8E8E8D85908D929B9F9FBFD1 -D8D8DBDFE0E0DB976A917CC7EBEDECEDECEAE8E9E8E5E7E8E6E7DBE7E8ECEBEDEEEFEFE7C5 -83BAA2A2A6A9989FA39FA2A19FA2C5E7EFEFEDF0F1F0EFF1F1F1F1F1F1F1F0F0F1F1F0F0F0 -EFEEECC1829892899A9F8886B353CFCDCDD1CFCACCCEC9CED7D1CDD1D0CCCBCDCAC7C5C7C3 -C9C4CF -8385B4BAB583827C5C635B454D88585C8E828D9B89838E8E838D898E83959890828EC9D7DB -D9DBE0DEE2E2DFD2BD766AC9ECEEEDEDE9E7E6E9E7E6E6E7E8E5C2EAEBEAEDEDEFEFF0EEE3 -AEA5A1ABA5ADAD9A91A39CA2AA9A8ED9EEEFEDEFF0EFF1F1F0F1F1F0F1F1F1F0F1F2F0EFEF -EDEEEEDCB38D9898958686A9BD59D7CCCACED0CDC9D0D1D3D3D4D8D2CACACBC7C7C9C2BCC4 -C7C9CE -C07CA99C9BC4927CBDCBBFB9798960858286868886887E8389887C7E918576908DBDD8D9DA -DDDCE0DFE4E3E2E3D9AB6AC9ECEEEDE9E5E6E5E5E7E5E5E6E6E7E7E9EAEAECEDEDEFEEEDE0 -919AAAAB9CA2AB9B92989FA2AAA191D4ECEDEEF0F0EFEFEFF0F1F1EFF0F1F1F1F0F0F1F0EF -F0EFEEE8B3899092908885BCC058D0CBCFCECDD0CDCDD1D1CFD1D7D1C5C7A9C5C4C4C3BABF -C5CBCB -B08D6D927686BFC7BFBFC2C5ABB3766A7C85927E86908379868E8382888872B7B4C9D2D1D6 -DCDBDDE1E2E3E1E2DFB76FCFEDEDE7E6E5E4E1E3E2E3E6E5E4E9E8E9E9ECEDEDEDEDEEEAE3 -B5A1A29CAAA691A1AE9F90858E79C9E9EDECECF0F0EFF0F0F0F1F1F1F0F0EFF0F1F1F2F1F0 -F1EFEFE58D989F8D929285ABC55AD1D0D1D3CCD0D1D0CBCCCED5D1CFD5C7C4D9CBADA5B3BD -BFCED4 -5491BDC5B7B58695868290897655516F777C918986868383828585836F6C79BCC4CED4D0D1 -D7DCDFE1E6E6E0E2E0D6D1E7EEEDE5E3E2E0E1E3E0E0E3E6E6E8E6E8EAEBEAEDEFEDEFECE6 -C986B3976F59585C595A90A5A297D5E6EDECECEEF0EFF0F1F0F0F1F1F1F1F1F1F1F1F1F1EF -EFF0EEE6B295A9918D8D8686BB53D1D2CDD0D5CDCDD1CCC9CED5D2CDD1D7D5D3D0B3B4BBBF -CACECD -7183C5C9CEC2576D4D5B60586592726D6F83839085838583866F5A91907E98C0C9CDD8DBD4 -D6D9DBDDE6E7E4E6E1E2E1E3EAE5DDDCDEE0DFDEE0E3E2E5E7E6E6E8EAE6EAF0F0EFEEEDE5 -D4A16A71585165634D5454464959C3DFE6EAEAECEDEDF0F0EDEDEDEDEFF0F1EFEEECF0EFEF -EEEDEDE6AE828E91886F63BAC760D5D1D0CFD0BDC7D0C9CBD2C8CFC8CACFD2D3BFA3A5A6AD -BFC0C5 -82B4C9CAC3C090835C898D8688A36A83797E85897E7C8E8279A3B5D0D3D1CAC7CECFAA716A -5957606792BFD1E3E2E2E0E2E3DEDCD9D7D9DBDDDEE1E2E3E3E3E5E5E5E6EDEEECEBEFEDE7 -E5A95455514B4C4B41484845464C65BDC7D6E6EAEAE9ECEFECEDEDEBEEF0EDECEEEDEFF1F0 -EFEFEEE7CE7C766389987CB4CB5BC9CBD4D1C7C7CBCBCDD4D1D0D4CFCECDD0D6C5C3B3BFC7 -C9CFD3 -7AC072636090AB7A6F8E8D92918854897A76929085868E8376CAD0D4DDDEE2DABF553A454F -4583A654655C5A82BBDCD9DBDCDCD5D5D5D2D1DADEDBE0E5E3E2E1E5E6E6E8EDEBECEEEDE7 -D04F4F4C48494846484D556060616085A2B5D7E8ECE9ECF1EDEDEDECEDF0EDECEEEEEFF0F0 -EFEFF0EADCC7CDC4C9D1CCCECB5AD5CDD0D3D0CECFD5D5D7D6D8DAD6D4CECBCFCBCDC5CDD3 -D5D4D5 -A9A283828DB7AB866D7E6D798376508982717C7C888879766DBFD5CFC5CDDEDED1A672493E -4179C58645619089C8BDC7C9D2D5CDCECED0D4D6D9DFE0E0E2E5E3E5E9E6E5EAEAEAEEEDE7 -CB5061605359615B585C72716A7276638389A5DAE9E9ECEDEBEDECEBECF0EFECE9EBEFF0F0 -EFEFEFECE4D1D6D1D4D5D2D9CD5CD6D7D6D6D4CDD0D9D7D6D6D7D4D4D3CFCDCECFCCD2D0D4 -D9D4D4 -C16C9B9C8E7E7EA9598889868592608888728586869083766FC8D5D4D3D6D4DAE0DED9BD59 -345AAAAE5C3E728EA19AC0CDD0D4D5D0CFD4D8D9E0E0E0E0E2E2E1E5E7E6E6E8E8E9EDECE6 -C161616A5857635960595A676A727163767692DDEBE7E9E9E6EBEFECECEEEEEFEDECECEFEF -EFEEEFEBE5D7D7D7D7D5D4D5C959D5D9DAD7D9D1D4D7D4D7D7CCCFD8CFCDCDCCCDC7D0D7D5 -D1D6D7 -9B6595A18E897A8E6C7C8D9188856D836F7689857C899B7A67C3D0D8D1D4D7D9D9DDE1DDD2 -855192BCAB3EAAA6515AA6CACCD6D8D3D1D4D5D7DDDEE0E3E3E2E2E6E7E5E6E8E6E7EDEAE5 -B25C6F60585857596359545A6A675B636F7976C0E8EAEBEFEAEBEBEBEBEEEEEDEEECECEFF0 -EFF0EFEDE7DADDD8D4D7D7CEC759D8D7DAD9D5D7D9D7D8D5D5D4D0CDD1CFCBC7C9C7C7D3DB -D5D4D5 -838E829C9FA3826AB57C86909886616C7A798283898985826391C0D9D5CDD4D9D8DAE2E2E0 -DBB79AC4CD6D9ACE6F639FC0CED5D9D6D1D1D1D9DCE0E1E2E5E2E0E4E7E4E8EAE9E7E9E8E5 -A9516D5A5859586A586063555B796557678985A9E6EAE9ECEAEAEAEBECEFEFEDEDEDEFF0F0 -EEF0F0EFEBE0DEDCD7D4D3D3D45BD9D4D0D4D7D5D5D9DCD5D0D5D2CBD2CDCBCAC5C8CDD4D6 -D7D4D3 -959A8E83A1A686679791828383975B678379837A838E7A7286CEDDDCD4D3D3D9DADADCE0E1 -DCDADDDBDBA9A3D7CDCBABB9C9D4DBDED4D6D7D8DAE0E0DFE0DFDDE2E6E8E8E8EAEBE9E8E6 -AE51655C5350515C57505A656065765967797AADE6ECEDEFEDEDEDEEEFEFEFEFF0F0EFF0EF -EFF0EFEFECE7DBDCDCD4D4D8D35BD2DBD1D1D3D5D6D7D6D8D3D0D2D1CCC9D0CDC4C7D9D9D2 -D4D4D6 -A9989B97798EB27A5A8E6A7C859761575C828889828971AAD6E3DBD9D5DBD9D5DBDBD9DBDC -D9D4D9DDDFD2D0DEE0D9D1CDC5D0DBE2DED8DCDCDCDFE1E2E2DFE0E5E7E7E7EAE8EAEBE9E5 -A6545958544F51585858555B6C615050596A729FE7EDEDEFECEFEDEFF1F0F0EFF0EEEFF0EF -F0EFEFEFEFECDCDBDCDCDBD7D35ACFD6D4D5CFD0D3D4D1D4D4D5CECCCBCDD1CECDCFC9CBD9 -D9D7D5 -AB9898A5868392A9859A79798E85679C987783A1976AAAD9DBD9C9D3D7D3D4D6D5D7DBDAD6 -D9DBDBD7DBD9DBDBE0DCDDDBD0CDD5DBE2E2DEDCDDDEE2E3E2E0DEE3E3E7E8E7E7E7E7E7E7 -AA4D584D4C4B4C48444F4B4F5751634F54767A85E4EDEFEFEEEEEFF1F1F0F0F0F0EFF0F0F0 -EEF0EFEFEFE9D9DDD9DBDBD9DA6FCED4D1C8D0D1C8D2D4D1D1D2CDC9C9CBCECDD0CFC2C4E2 -DFDCD8 -979CA59789726FAABCC9AE79727A778E67ADAEBABF89D4DDDCDECED1D6D6D3D8D9D2D0D5D4 -D7DCE2E0D7D6D9DCDDE2E2E2E0D7D7DCE0E4E4E5E3DEE4E2E2E3E3E5E3E7E7E7E9E7E5E6E4 -BD46514F4B444B4B494B5055555761544C6F7772DAECEEEFEFEFEFEFF0F0F0F0EFEFEFEFEF -EFF0F0F0EFEAE0DCDBD6D8DBD96FCBD6CBC4D3D5CDD0D4D2CCCECDCDC8C5D0D4CDCDCDC9DF -E0E0DB -929F9BA598837692BBCBCDB5A9906D7291D0D6CBCBC0D5D8DADBD4CFD0D9D3CFD8D6CDCCD0 -D4CFD7E1D9D3D5D9DCDBDDE0E7D9D8E0E3E2E3E5E2E1E4E1E2E2E5E5E7E4E8E7E5E6E6E4E6 -C44F4F535551555B5854585A58545C494D656F71CDE9ECEEEEEFEFEFF0EFEEEFF0EEEFEFEF -EEEFEFEFEFECE7D6DCDAD9D7DB71CEE2DBC7CECBCCD4CED2D0C9C5CBC9C7D0D3CDCBC3D1E2 -E1DDDB -AA9898A5A5886C6CB5CDDDDFD9D0D4C4B5C5DEE3DECDD2D7D4D5D5D2D1D5D4D4D1CFCDCFCA -CDD3D4D5D9D7D0D5DAD5D9DBE3E2DBDCE3E2E2E5E7E0E2E3E2E0E3E2E5E4E3E4E3E3E5E6D9 -834B53594F58584F545B5753604F484849675C5BBCE8EAEBEBECEDEFEFEFEFEFF0EFEEEDEE -F0F0F0EFEFEDE9DCD8DADFDADE89D0E1DED9D1C4C2C0C7D1D3CFD0D1CDCBD0D0D8D8D4E0E5 -E0DBD9 -9C98A6A1909A8D8EB7CCD7DCE0DBDEE3CAD1DCD5D3CED1D2D6D6D4D4CFCCCFD2D0CFD0D0C9 -C5CECDCBD1D4D4D7D5D5DAD9E4DFDEDBE0E2DDE1E9E6E5E6E5E4E2E4E3E3E2E0DEE1E1E088 -3B5053545153555B5560535A59454149485A6C58C3E5E6E7EAEAEBEDEFEEEFEEEFEDEAEAEE -EFF0EEEFEDEEECDBDEE2D9E5E388CEDBDAE0D6D0DCD4D5D7D7D3D5D4D0CFD0D1DCDCDCDFE1 -DDDCD8 -9C9CA59B9A9B9B9AADC7D0D6DCDDDEDED9DEDBCDD1D4D4D1D8D9D7D4D1CFCCCBCDCFCDC7C9 -CBC4C5CFCFCDD0D7D4D3D7D9E0DEDEE0DDDBCEDADEE3EAE5E0E5E5E1E0E3E3E1DEE0E1D259 -3E5A53515B4F505B50535751574F534C405A5C578ED5E4E7E7EAEBEDEFEEECECEFEEECEDED -EFEEEFEFEEEEECDBE7E7E5E4DF8EC9DAD6D5D9E2E4E3DFE3E2E1D9DBDBD2D0E1DCD7DADCD9 -DBDEDA -B7A998B3AAA29BBDBDD5D9D5D8DCDEDDD9DAD9D8CDD0D3D2D3D4D7D6CDD0CBCBCDC9C7C7C5 -C4C0C3C2C5CECBD4D9D5D2D5E0E0D9E0E2D7D0D1CDD5E0D9D9E5E6E3DFDDE2E3DCDADED350 -485B59555B575A574D53544B535B5144415B57554DBFE5E5E7E7EAEBECEBEAEAEEEDEDECEE -EDECECEAEDEEECE5E4E3E5E4DF89C1D5D2D1D1CDD6DEDBD9DCD3D8D7D9D9DBDADCDAD9D5D5 -D1CED7 -B9B7A5B5B2C4C2C9D5DFDCD6D9DBDADADBDBD7DBD0CED1D5D0D0D2D1CDCDCBC8C7C4C7C5C1 -BFC5C2BABDC8C9D0D9D8D6D5DADDDEDBDCDBD5CACDD0D0D7DADBE0E4DCDCDDDEDEDBDBCB4F -3A464540414148443E3C443E3C574B3B454C53554DABE1E3E5E5E6E9E9ECE9E9ECEAE9EAED -EDEAECEBECECE9E3E5E0E2E3DF82BBD7D0CCC9C9CCD6D9DED7D5D4D0CFD4D9D6DFE1DBD5D7 -CECCD3 -AEBBC4CBCDD7DED7D9DCDBD8D8DBD8D9DCDBD8D1D1CED0D0D3D4CAC7C3C9C5C5C7C5C0C3C5 -C4C4C7C5C4BDC5D2D1D3DCD8D5D9E0DCDED7D1D1CCCACFD4D2D7DEDEDDDEE1DEDCDBDCD257 -3B443C414444454649444B554F5C42403E4D584B4CABDFE0E3E2E3E9EAECE9EBECECE9E9ED -EAEBEDEDEAEDE8E3E4E3E0E2DC83BAD7D1CCC4C5C2C5D0E0DBD5D2D0CDC9D7DDDFDCDADCD4 -D4D1D4 -CDC9CFDBDADCDBDBDCDADBDDD9D9DBDFD7D9D7D7D5CFD0D1D0D0D4CEC9C9C9C2BFC7C0BCBD -C0C0BFC4C7C4C4CDCED1D8D7DBD4D9DBDED4D4D7CEC9CFD1CFD5E0E2DFDCE0E1DCDADFD95B -3A4637536A574D515A5557545959454042514F498EDCDFE2E3E0E3E9E9E9E7EAECEDE8EAEA -E9EAEDEDEDECE9E5E2E0DDE3DC7AB0D4CEC9BFBDB5C4C5D0DADBC5C7CBB4CBDCDCD7D2D7D3 -CBC5C1 -DAD7D2D5D9DBDBDDDEE0DCDBDCDDD8D8DBD9D7D5D7CEC9D1D0CBD7D0CACAC4C4C2C3C2BFBC -BDBDC0BDC1C5C5C7CFD3D5D5DEDBD5DBDDD3D2D0D0CDC7CDD5D8E2E2DDDBDFE0DDDBDCD651 -314C3949554D4D55504F58504F584B343E494B4079DBDDE0E2E1E5E8ECEAE7E9ECECE9EAEA -E9E9ECEDECEAE9E5E3E2DCE2DB86A3D2C7C5C5B4ADBFC5CDD5DFD7CFD0BDD3D9D7D7D2CED0 -CBC5BA -D9E0DDD6D8DBDAD9DCDFDED9DBDDD7D7DADBD5D1D7D1CBCDCDCDCDC9C9CBC2C0C4BDB9C0BA -B3B2BAC3B7C1C0C9C5C7D1D4D3D5DAD7D4D8D7CCD0D3CBCED5D3DCE0DBDEE0DFDCD9DCD75B -31413240534C494F5C54555953534C3A3A41463C6CDBDCDCE0E1E4E8E7E7E4E7EAE9E9E8EA -EAE6E8EAE9EAE7E5E4DFDBE0DA9F97D1CBC3B9AEAEB7C5D4D1D3D7D9D7D5DBD8D4D4CDC7C7 -C1BFBD -C9CED7DAD3D9DCDBDADCDEDED9D9DBD9D3D7D4D5D0D1D0CCC5C9CDC9C7C1C2C4C9C9C1BDB7 -AEAAB0C0BAB0B4C4C8CCCCD0D1D0D0D1D7D5D5D1CCCACDD1CED0DEE0D9D7DCDAD9D9DBD55A -3249443C5B554C58655C535A5B5550403A42546CB0DBDDDEE0E0E0E3E3E3E4E6E9EAE9E9EA -EAE8E7E7E8EAE6E3E1E0DEDBD461A5D3CDC4BDADB2AEBFC7C9CDD1D1D5D8DAD9D9D3C8C5C0 -AAABB4 -839FBCD1D7D8D8D6DBDBDBDDDAD7D7D6D4D7D4D0D1CFC9CCC8C4C8C8C9C4C7C2C4C3C5BBB2 -CAC1C3C4BFB9B5C1D2D0D0CCD3D3CBD0D6D6D3D5D0CDCFD5D4D6DDDEDEDCDBDDDAD8D9D555 -32494F44505B59595459545854555744314C6376BDD9DCDEDDE0E2E3E3E5E5E9EAEAEAEAEB -ECE9ECE9E9EAE6E5E3E4E0DBC8579BD2CAC2C0A1A1B0BBC1C4C9C9CBD2D5D5D7D1CDC5BAB2 -B39F97 -718582C9D3D9D5D4D5D6DBD8D8D7D4D1D1D5D0CFD4CFC7D0CCC5C7C4C7C4C0BFC2BFBFBDBD -C1C7D2CFCACED0D4D2D0C9C9CDCDD0CFCDD5D4CDCCD1D4D6D1D0DFDDDCE0DBDCDCDBDAD353 -3148575C6A57605B55595750505A5342294C6D89BBD0DADCDBE0E0E0E2E6E3E5E8E7E8E8EB -EAEAEAEBEBE8E5E2E3E1DCD9D2908DCEC4B5AEA698A2ADBDBBB4C3C7C9CAD5D5C9C9C4ADA2 -A1958E -7E8283C4CFCDD4D7D0D5DED5D2D5D6D4D0D5D9D3D0CECFCAC8C9C5BFC2C2C4C0C0BBB4B7BF -CACDD2CCCECDC4D5D9D0C9CBC9CCCFCDC7CFD4D0CED0D4D2D1D1D9DFC9D2E0DAD9DCD49844 -3C444D59655551545853505455514F404445599BB4C8D1D6D9DEDEDEDFE1E2E5E4E5E7E9EA -E9EAEAEAE9E4E3E3E2E0D9D6CF6C8DC8C3B59F9B988D88A2AAA2B2C1C5C0C4C5C4C0BDAE9C -928691 -77777C8EB0CAC7D4D5D5D2D1D4D1D2D3CFCCD2D2CECCCCCAC4C2C2BCBAB2BFBFB2BDBAC4C4 -DBD4D1CDCDC5B7C7D1D0CAC5C7C8C9CEC9C8CDD1D3CBCDD6D0CFD7DBCBD3DEDEE0D7CCBF48 -323C4D595457555050514F49504D4D42423C6091BACBC7D1D9D9D9DCDEE0E0E3E3E4E5E4E5 -E7E7E6E6E5E3E4E3E1DEDDD6C77983C8BCB7AA90908E858590AAB2A3B7BAB4AAB2B4A9A1A1 -888292 -7182826DB0BAC9CDD7D2CFD3D4D0CECFD0CCC9CDD2CBC7CDCDC1A6C2C5C2C4C9B9C4CEDCD1 -D9D0D1CDBDC4C3C4C7CBD0C0BFC9C4C5C8C2CAD2D0D2CECDCDD1D3D7DFDCDCDEDED8D7D550 -31404F6A5C575854535B545349545A423A406389A1C2C5CDD2D6D9DADCDDE0E0E1E4E3E1E3 -E3E2E4E5E2DFE1E0DFD7DBD5CC7C6AC5B0A6AA9A7E7C7C71768E9AA5B0A6AAA19198958D8E -7A8583 -65797C95BDA5C2C9D1D5D5D4D0D3D6D0CCCEC7C4CEC9C5CDC9C4CDD9DFD9DBD5D4DBD9D6CC -CDD1CDCBC9C198BFC3C4CCC3C0C2C4BDC2C4C2CBCBD0D3CDCFD4D0D9D9D7DCDDD8D8DBD046 -3E4650615A4B514F4F45394B4141373E3B3C578592AEC5D2D1D4D8DBD7D9DADCDCDEE1E0DE -DFE2E3E0DEDFDFDEDDD4D4D5CB765BC3AEA69A8E7C796C6C71767C9897859F92838D908276 -6C7688 -6A6D7695C3A577BCD3D5D9D5D7D7D2D4D1C9CAC9CDD0CBC8DBE0DED5D6D7D4CED2D4D9D6D1 -D0CCCDC4C7BBA9AEADBFC0C9C8C3C5BDBDC0BDC7CEC5C7CFCBCBD1D9D5D7DBDCD7DBD7D050 -8258595991916A7E3E4842484B4B423B423C445B88AABBC4CCD1D7D8D8D5D5D9DAD9DBDDD9 -DBDFDDDCD9DADAD9D6CFD5D1C3796AC2A2AA8D7776776A636A716D6F888883858D867C7161 -5C6776 -6D67728EBFC48897D2D5D4D8D8D7CFD7D5D2D7DAD4D5C7C8D7CBC9CCD1D0D7D7D4D1D4D7CC -CACCCABFB4ABAEABADBCC4B5BDCBC3B3ABB3B7BDC4C4C0BFC5CBCCCDD3D4D0D1D8D9D6D35B -5B485B59717240463B453B423B4445393E403B5077AEB4BCC8D0D2D2D3D0D1D0D2D4D6D5D7 -D8D5D6D5D4D2D5D4CAC3D2CEC27254B59592897967676A605A5C61616C717177726C6F6A65 -7C835A -5B6C6F7C86AB9086CAD9D7D9D6D8D9D3D4DAD1D4D2D0C5BCCACFD0CBCAD0D4D0CBCDD0C9C7 -C7CBC1B5909CAEB2A6B4BFB4B9B5B7AEA99FA3AEB4BABDB4BDC9CAC7C9D0CDCED5D6D6D59F -3C546367653B4F60556D464240484B4145423C5463B2B4BFC9D6D4D1C5CBCFCACACFD3D0CE -CDD9D3D0CFCDC8C4C4C5D4CDC05849A5886C7772616161555357555A615A5C6D5C607C837C -88836D -65675B7798977C7EB2DCD9DBD8D3D5D1D5D4D5D4D3D2CAC5C5CBD5CACBCEC7C3C4BFC1C5BD -B2C7BCB0ADAAA2B7B5B0A9BBBAA5ADAEA9929AABAAA5B2B3BDBCC0C4C1BDCBCDD1D1D7D5CA -5867554F4B3CC3D3D097655C4F4D51443B3E394258989BB7AEAE9FAEB7C0C3C5C5C4C5CC92 -54D3CEC9C8CBC2B5C0B4C8C5B56A4B977E826F636563545551514B515854575B5A727E777A -7A6A6D -6165636190A390599CDCDBDAD7D1CDD5D9D7D5D4CDC4C7C9C2C0C9C5C5C4BCC0BF97B4CBBB -B2C4BCADA9B2BBC0BABCADAEABA6A39B95A19091A29C9A95A2B4A9AEB5B0BDC9D4D7D6D7C0 -617A82443C7CD9D2D1CBBB86614B58463B40393B46887A6C42424C6CC0C3C0C7C1C7CBA541 -54BDC1D0D1C4C8C4BDADC0C7AA7C498876716C5C58534F544C4949494650514F4B616D7E79 -715951 -5A676D6076A5AA88D1D9D9D7D6D6D3D4DAD9D7D1CBCDCBBFBFBFBBC0C0BDB0ADAE95A9C0C7 -C8C0AAB7AEB5C3C3C1BFC2BCB3A6A190919289909A92958E8DA9A69FADBDC0C4C0A1AEB054 -76A197469AD7D6D0D4D3C5B47C517A77797955585A9C977E5C72725967655B584B5051463E -484548464C4D5554798D8DAA976D4988856A6A5453504F4942464642414846464448596363 -67634F -5A6063616583AA8EC4CFD4D6D4CFD3D5D8DBD1D2D2D2C7C3C2BCB2BDBAABA6A29BAEB4BFC9 -D0D0C5C3C1C3C7C9CCC1BCBCBAA6A39798828DA18E8288898E91AA9F9FB0C2C5B49189546A -C18D6048D0D5D2D1D5D4CDAB90674D464251463C4440543E40373932313439292F2F313737 -2E292C2E2C2C2E2F322E2F2F2E443B2F3431373734404140423C3E4246403C413E3A3E5B54 -50574F -5B635C636A6F9C98A2BFCBD4D0CCD7D5D7DBD1D1D7C9C3C8BCB7BDBDB5A19A9B90A3A9BBC0 -C0C7CACBCBD7CECFD1CCD0B9B4B39F86908E828983837C7986908D869CA3BFC8C7C7B3B5BA -BD5A3463D1D4D5D0C9D1D6BFBC76452F3E443E42403A41262F343A373A3E3932443B3A3A37 -322F3439392E3232312C292C2448421D1F1F1F2422272F39393C3B3B3E3A3B393449716754 -534941 -58616D676C88A29085B4C1CDD0D4D1D4D8DBC9D0D1C9C1CBCAB9A9AAB4A68883898E9AB0BC -BDC1C5C7C9C9C8C7C7BFBFAB9CA29F837C8879767A7A79797C88727297A5B3BDC7CDC9C3C4 -8249ABD5D9D2D5CDC0C0CBD3C3BC9139313A3A31372C3A29373E3B34373B392F4C463E4553 -4237322C2F272C2E2C272E2F2246492424271F1C221F2C2F2E323939323A3732325C896F58 -50483C -5955636A7E90907A798EA1C9D0D0D2DBD5D4C7CCCDC9C1C0C7BBA6A1A3A1837C838D8895AE -ABB3B3BFBFB4BCBDB4ABADA58E869289766D7179726D7A7A6D79928988A6B7BCC1CBD0CDC3 -91C0D7D6D8D7D0CCC9BFC4D4C4BD7E2E3240483A42404D2F4F4C3B6D7A533B587961444853 -3A3732292E2E2E2C2E2926241D484B2222261F27222424242F27343932312E32243A576555 -494137 -615C605B6A798282827C90C3C8C9D3D9D7D4D0D0D1D1C3C3C0BDBCB09A9A9586717E88827C -899A9897A6BAAAA6A5A59C8D837E727E8376716C6F6D676C6F7C778297A3A6BCBFC8D3D3D0 -D1D5D5D7D8D5D4C4C2BFC7D2BD986334495744404C4650406F453B4032342E40463B4F4F49 -2929322F2E292F323A2926262446512226291F262422221F2C2F2C2F342626262C72725A50 -3E3B32 -61767A76656F85837C8890AEC7CBCBCCD5D9CDD0D5D3C4C3BFBDB29B98908390AA766D7A86 -76768E8E889B9595A19A917E7A7279766D726D6360655C6C7676727E959C9BADB9BCC5D1D4 -D4D5D4D5D2CDD1C4BDBDCBC3727E512F37393A4C4044482C3B3A443C3A402E342C44614D50 -412F322F262E32313222242C29404C24262C1F1D1D1F1D1C272626272424241F316571574C -443A39 -61656C8560597786778591A9C1C5C5CED1CEC7D1D0CCC7C7C0ABA590918D6A6FA6977E777A -777279868686858686776C716A6A7A7263726A655C5C67655C727A7E8598A5A1A6B7C1C7D3 -D1D4D2CED2D1CDC9C4C2CBAD8576584141494C6141454C2F4441613B42403C393B4457504F -39312F2C39272F292E241F27244240242E291F241F26241D2627271C1D1F1F1D2634445045 -3E3A3B -5B596C7C61636F89797286A1BBBFC5C9C7C9D0D4CBCCC8C4B2A6A295857C77637795A18267 -6F7C6C718D97958D887C7C8EA98E7C6C776C595B6558576A606372767985909AA9ADBBC0C5 -C8CFD3CBCED0CCC7C5C2BF798E92533B3E4D65834246463441424F3A323E3439453A575354 -322F3A322F2629222F261F272242482429291F1D1F26241C2226241D1F22221C1F272E403A -32312C -5A636F7759676C7E85677692B3BDC5C5C9C9C4CDD0CDC7C2BDA5959282767C6D677A889B89 -6A65717176829FBABBC1B7B4C0BFA3A1B7AD976D545755586063656A777A7C97A9A2A9BBC0 -BFC8CDC8C5C4C7C2BFAE98675948403B404F48423E45402E4437342F344C3131442F544F59 -3A2E392F2726291D29221F272437372929271C241D1F221C2424241A261F241F2226272F32 -342C29 -58606A6353575A7788716C8895BFC9CFC8C2C7DBD7C7C4C2B9A29589857E726D71796F7682 -7A6C727A6F7A9FBCB5B0B5C4C0C0C5C5C7C5C7C06C575A53556A6A616379828690AAA3A6B0 -C2C7BDC7C7B4AEBFBF957C5C44323B3A4149424041403C2C45222C272E532C3440314C4646 -392C3126272229272C1D222E27323C262C2C221F1F26221F2624271D1D2226241F1F24272C -2C2E2E -5A6067545357596F7279728391B2CADBC7CBE2E3D8C9C4C0ADA5A28585797C716A7671676A -827771718892A9AEBCBDBBC3C4C5C8CACDCDBDB3727A6353535558635C6A6F777C9A9295A1 -A2AEBCBFBFB3AAABA276635C3B372F31343A3A3A31393432371F1F242F372E26292F3B3E50 -2F312726271F2624272424291F3E4B222C2E1F1D1F24221D22221F1D1F1F261C1D1D1C2229 -2C2627 -616D6D59555C59606F776A718D98B0D1C2D4DEE0DBCEBFBBBBA5918E7E72717A836C676A63 -71796A656C7CB395B4C9C4B3BDC0C5C5C5BDAEA29C9C7E7E5A545A5A636A5B6C7682919792 -91A6C0BAABADA5A2956F773B34423E3C4D636050464657542957655A6F79555B6C6A5A6C72 -7E533C3C442F2C272627221C1C34482226271F221C1F221A22221F1F1D1D221F1D1A22221D -222622 -585C7671545B5A5C636161676D7998B3BDDBDEDDD5C9BDADB2A28E897E716F6F77765C656F -6C6F7967657E9B919FC2C0B4AEB5BDBFBBB7B59A8898927A76545453596D605C6F72837C83 -989AA3ABA69CA3B09F95884C554B403B424B494C443B343129323C403B3A322E2E312E3139 -392F29272C392F29313732393434512627221D1C1C1D1C181F1F1D1A1D221F1C1C1C1C1D1A -1A1C24 -58595C67505458635B5A6776676D8298D0E1D9CCBFC5C2BFABA5907A797779606C776A6165 -6F6A6A657A8D929BA5A3A9B7AEA9ADBCB2A9A286798685837150555754555C5B606F797677 -828E8DA29B98889B9595915A3E424942494F3C5A5B5061502E7285898D5C5383678D9CA591 -7A65503E482F242426261F26273155293B3C3E372F2C261F1F261D1D1F22221C18181C1D1A -1D2E2F -5C5A55595559605C5C605B6A766D6F95D5D0BBC4D0C7C5BDA3A292827C6C6A6FA59288795C -5C5B5B61769B9B98A195929A9B9A9C9BA3A291838671797E714F555754575C5C5A5B6A6F71 -6F7A95908E868691899892AD60546D61897685854B3C4137345A443E4542403E3A4946463E -454C5B60613B454D295546493441651D262726272C29312F272E312426323226261F1D221F -272F27 -5558595553585B55545B605C65656590A992ADC3C9C8BDB7B5AB91867763616F9289897E60 -5957595C677E918E90989A92868E908591A68D767C7A776F7160504C555B59586359615C76 -72677C766C72778383777C9A6342557E918D92B57646554C54322E2C2F372E2632292C322F -2F262629373134342C4D5B6A605C633A5B5342342729241C1A1D1F1A262726221F1A222624 -262E1F -53535851505A5758585A6363616C76898390A5B9BDC4B7B0C0BDAD886D6A655A6D826D6165 -6D5B5C636161899F989F959C95827C7E837C77766D76726F5C53574F4C5551555B5A67676C -6F726C6165716C79826F6F8583657E6F89A6ADC0BB655AA9B56088979BC4A34C464B504837 -3222241D26221C22242422222634512C3E454B4D536C532F444D421F2431221D221C1A1A1A -1D241D -end -restore -%%Trailer diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob16.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob16.gif deleted file mode 100755 index 4d8c95545..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob16.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob17a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob17a.eps deleted file mode 100755 index f888f6556..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob17a.eps +++ /dev/null @@ -1,490 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Girl_Wagon.eps -%%CreationDate: 10/21/1995 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%BoundingBox:130 409 518 622 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -4366.5 6163.5 m -6866.5 6163.5 L -35 slw 0 sg str -gr -gs -4600 6163 4757 6319 OV -0 sg fill -gr -gs -4600.625 6163.625 4757.375 6319.375 OV -1.25 slw 0 sg str -gr -gs -6475 6163 6632 6319 OV -0 sg fill -gr -gs -6475.625 6163.625 6632.375 6319.375 OV -1.25 slw 0 sg str -gr -gs -5616.625 4913.625 m -5303.625 5538.625 L -1.25 slw 0 sg str -gr -gs -5303.625 5538.625 m -5303.625 6163.625 L -1.25 slw 0 sg str -gr -gs -5616.625 4913.625 m -5460.625 5538.625 L -1.25 slw 0 sg str -gr -gs -5460.625 5538.625 m -5772.625 6163.625 L -1.25 slw 0 sg str -gr -gs -5616.625 4913.625 m -5616.625 3663.625 L -1.25 slw 0 sg str -gr -gs -5616.625 3819.625 m -6085.625 4288.625 L -1.25 slw 0 sg str -gr -gs -6085.625 4288.625 m -6241.625 3507.625 L -1.25 slw 0 sg str -gr -gs -5382 3194 5850 3663 OV -1 sg fill -gr -gs -5382.625 3194.625 5850.375 3663.375 OV -1.25 slw 0 sg str -gr -gs -5616.625 3819.625 m -5303.625 4288.625 L -1.25 slw 0 sg str -gr -gs -5303.625 4288.625 m -5303.625 4913.625 L -1.25 slw 0 sg str -gr -gs -5225 4913 5382 5069 OV -0.75 sg fill -gr -gs -5225.625 4913.625 5382.375 5069.375 OV -1.25 slw 0 sg str -gr -gs -5303.625 4913.625 m -5225.625 5069.625 L -1.25 slw 0 sg str -gr -gs -5303.625 4913.625 m -5382.625 5069.625 L -1.25 slw 0 sg str -gr -gs -6163 3350 6319 3507 OV -0.75 sg fill -gr -gs -6163.625 3350.625 6319.375 3507.375 OV -1.25 slw 0 sg str -gr -gs -6241.625 3507.625 m -6163.625 3350.625 L -1.25 slw 0 sg str -gr -gs -6241.625 3507.625 m -6319.625 3350.625 L -1.25 slw 0 sg str -gr -gs -5616.625 3350.625 m -5616.625 3507.625 L -1.25 slw 0 sg str -gr -gs -5694 3546 5662 3558 5644 3562 5625 3564 5607 3564 5588 3562 5570 3558 5553 3552 -5538 3546 8 P -1.25 slw 0 sg str -gr -gs -5538.625 3350.625 m -5460.625 3350.625 L -1.25 slw 0 sg str -gr -gs -5694.625 3350.625 m -5772.625 3350.625 L -1.25 slw 0 sg str -gr -gs -6241.625 3507.625 m -6202.625 3350.625 L -1.25 slw 0 sg str -gr -gs -6241.625 3507.625 m -6241.625 3350.625 L -1.25 slw 0 sg str -gr -gs -6241.625 3507.625 m -6280.625 3350.625 L -1.25 slw 0 sg str -gr -gs -5303.625 4913.625 m -5264.625 5069.625 L -1.25 slw 0 sg str -gr -gs -5303.625 4913.625 m -5303.625 5069.625 L -1.25 slw 0 sg str -gr -gs -5303.625 4913.625 m -5343.625 5069.625 L -1.25 slw 0 sg str -gr -gs -3116 4288 3274 4214 3274 4362 2 P -0 sg fill -gr -gs -4366.625 4288.625 m -3116.625 4288.625 L -1.25 slw 0 sg str -gr -gs -8116 4288 7958 4362 7958 4214 2 P -0 sg fill -gr -gs -6866.625 4288.625 m -8116.625 4288.625 L -1.25 slw 0 sg str -gr -gs -3815 4019 4370 4245 R -1 sg fill -gr -/_Times-Roman ff [208 0 0 -208 0 0] mf sf -3815 4175 m 0 sg (weight) show -gs -6844 4019 7903 4245 R -1 sg fill -gr -6844 4175 m 2.08 slw 0 sg (girl + wagon) show -gs -2491 6319 8741 6397 R -0 0 0 1 1 1 [76 210 83 45 150 89 70 179] patfill -gr -gs -2491.625 6319.625 8741.375 6397.375 R -1.25 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob17a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob17a.gif deleted file mode 100755 index b58d3f9f3..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob17a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob18.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob18.eps deleted file mode 100755 index 15588fa12..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob18.eps +++ /dev/null @@ -1,427 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Compressed_Spring.eps -%%CreationDate: 12/15/1995 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%BoundingBox:88 524 548 624 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -6271 3480 6654 3776 R -1 sg fill -gr -/_Times-Roman ff [278 0 0 -278 0 0] mf sf -6271 3688 m 0 sg (M2) show -gs -4396 3480 4779 3776 R -1 sg fill -gr -4396 3688 m 2.78 slw 0 sg (M1) show -gs -3650.25 4418.25 m -7400.25 4418.25 L -52.5 slw 0 sg str -gr -gs -0 slc -newpath -5525.25 1918.25 9275.75 4418.75 270 360 A -52.5 slw 0 sg str -gr -gs -0 slc -newpath -1775.25 1918.25 5525.75 4418.75 180 270 A -52.5 slw 0 sg str -gr -gs -4275 3793 4900 4418 R -0.75 sg fill -gr -gs -4275.625 3793.625 4900.375 4418.375 R -1.25 slw 0 sg str -gr -gs -6150 3793 6775 4418 R -0.25 sg fill -gr -gs -6150.625 3793.625 6775.375 4418.375 R -1.25 slw 0 sg str -gr -gs -5134 3949 5291 4262 OV -1 sg fill -gr -gs -5134.625 3949.625 5291.375 4262.375 OV -1.25 slw 0 sg str -gr -gs -5212 3949 5369 4262 OV -1 sg fill -gr -gs -5212.625 3949.625 5369.375 4262.375 OV -1.25 slw 0 sg str -gr -gs -5291 3949 5447 4262 OV -1 sg fill -gr -gs -5291.625 3949.625 5447.375 4262.375 OV -1.25 slw 0 sg str -gr -gs -5369 3949 5525 4262 OV -1 sg fill -gr -gs -5369.625 3949.625 5525.375 4262.375 OV -1.25 slw 0 sg str -gr -gs -5447 3949 5603 4262 OV -1 sg fill -gr -gs -5447.625 3949.625 5603.375 4262.375 OV -1.25 slw 0 sg str -gr -gs -5525 3949 5681 4262 OV -1 sg fill -gr -gs -5525.625 3949.625 5681.375 4262.375 OV -1.25 slw 0 sg str -gr -gs -5603 3949 5759 4262 OV -1 sg fill -gr -gs -5603.625 3949.625 5759.375 4262.375 OV -1.25 slw 0 sg str -gr -gs -5681 3949 5838 4262 OV -1 sg fill -gr -gs -5681.625 3949.625 5838.375 4262.375 OV -1.25 slw 0 sg str -gr -gs -5759 3949 5916 4262 OV -1 sg fill -gr -gs -5759.625 3949.625 5916.375 4262.375 OV -1.25 slw 0 sg str -gr -gs -5838 3949 5994 4262 OV -1 sg fill -gr -gs -5838.625 3949.625 5994.375 4262.375 OV -1.25 slw 0 sg str -gr -gs -5916.625 4106.625 m -6150.625 4106.625 L -1.25 slw 0 sg str -gr -gs -4900.625 4106.625 m -5134.625 4106.625 L -1.25 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob18.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob18.gif deleted file mode 100755 index fef3fd968..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob18.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob19a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob19a.eps deleted file mode 100755 index c83d22168..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob19a.eps +++ /dev/null @@ -1,740 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Mon Oct 3 08:31:29 1994 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 334 289 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /rpath { - newpath moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} bind def /rfpath { - /rad3 exch def /hh3 exch def /ww3 exch def /yy1 exch def /xx1 exch def /xx2 xx1 ww3 add def /yy2 yy1 hh3 add def newpath xx1 yy1 rad3 hh3 0 gt { - add - } { - sub - } ifelse moveto xx1 yy1 xx2 yy1 rad3 arcto 4 { - pop - } repeat xx2 yy1 xx2 yy2 rad3 arcto 4 { - pop - } repeat xx2 yy2 xx1 yy2 rad3 arcto 4 { - pop - } repeat xx1 yy2 xx1 yy1 rad3 arcto 4 { - pop - } repeat closepath -} bind def /rfill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - 4 2 roll rpath crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - rectfill pop - } ifelse grestore -} bind def /rstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse 4 2 roll rpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /rffill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse rfpath filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /rfstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse rfpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /mkrpath { - dodrawctm rpath unpagectm -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /arwlen 6 def /arw 4 def /arow { - gsave newpath moveto lineto unpagectm concat { - - } { - - } { - - } { - - } pathforall newpath 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath crlinalph setalpha strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - crstrpat findfont exch strwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /arwpath { - sc7mt currentmatrix pop gsave newpath moveto lineto unpagectm dup concat { - - } { - - } { - - } { - - } pathforall grestore unpagectm 5 -1 roll concat 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath sc7mt setmatrix -} bind def end -TopDrawDict begin /estroke { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /efill { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath unpagectm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /apstroke { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc pie chord or { - closepath - } if crlinalph setalpha pie not chord not and { - crfrtarw { - 2 copy crlinw exch gsave newpath angle1 1 add cos radius mul radius add angle1 1 add sin radius mul radius add moveto angle1 cos radius mul radius add angle1 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if crendarw { - 2 copy crlinw exch gsave newpath angle2 1 sub cos radius mul radius add angle2 1 sub sin radius mul radius add moveto angle2 cos radius mul radius add angle2 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if - } if crlincp setlinecap crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /apfill { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup 5 -2 roll arc pie chord or { - closepath - } if 1 xscale div 1 yscale div scale crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /mkepath { - dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def /closed exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc closed pie or chord or { - closepath - } if unpagectm -} bind def end -TopDrawDict begin /defpat { - 7 dict begin /FontDict 9 dict def FontDict begin /cache exch def /key exch def /proc exch cvx def /mtx exch matrix invertmatrix def /height exch def /width exch def /ctm matrix currentmatrix def /ptm matrix identmatrix def /str -(12345678901234567890123456789012) def end /FontBBox [ 0 0 FontDict /width get FontDict /height get ] def /FontMatrix FontDict /mtx get def /Encoding StandardEncoding def /FontType 3 def /BuildChar { - pop begin FontDict begin width 0 cache { - 0 0 width height setcachedevice - } { - setcharwidth - } ifelse 0 0 moveto width 0 lineto width height lineto 0 height lineto closepath clip newpath gsave proc grestore end end - } def FontDict /key get currentdict definefont end -} bind def /patpath { - dup type /dicttype eq { - begin unpagectm - } { - exch begin unpagectm concat - } ifelse currentdict setfont FontDict begin FontMatrix concat width 0 dtransform round width div exch round dup 0 eq { - pop 1 - } if width div exch 0 height dtransform round dup 0 eq { - pop 1 - } if height div exch round height div exch 0 0 transform round exch round exch ptm astore setmatrix pathbbox height div ceiling height mul 4 1 roll width div ceiling width mul 4 1 roll height div floor height mul 4 1 roll width div floor width mul 4 1 -roll 2 index sub height div ceiling cvi exch 3 index sub width div ceiling cvi exch 4 2 roll moveto FontMatrix ptm invertmatrix pop { - gsave ptm concat dup str length idiv { - str show - } repeat dup str length mod str exch 0 exch getinterval show grestore 0 height rmoveto - } repeat pop end end -} bind def /patfil { - gsave clip patpath grestore newpath -} bind def /trpatfil { - patfil -} bind def /oppatfil { - gsave 1 setgray 1 setalpha fill grestore patfil -} bind def /trpateofil { - pateofil -} bind def /oppateofil { - gsave 1 setgray 1 setalpha fill grestore pateofil -} bind def /pateofil { - gsave eoclip patpath grestore newpath -} bind def /patstrk { - gsave strokepath clip patpath grestore newpath -} bind def /trpatstrk { - patstrk -} bind def /oppatstrk { - gsave 1 setgray 1 setalpha stroke grestore patstrk -} bind def /patashow { - (0) exch { - 2 copy 0 exch put pop dup false charpath currentpoint 5 index type /dicttype eq { - 5 index patfil - } { - 6 index 6 index patfil - } ifelse moveto 3 copy pop rmoveto - } forall pop pop pop dup type /dicttype ne { - pop - } if pop -} bind def /patshow { - 0 exch 0 exch patashow -} bind def /rpatfil { - gsave setalpha pop setrgbcolor rpath tpatstr cvs cvn invpats { - piddict exch get - } { - ipiddict exch get - } ifelse findfont oppatfil grestore -} bind def /tpatstr 10 string def /getpat { - tpatstr cvs cvn invpats { - piddict exch get - } { - ipiddict exch get - } ifelse -} bind def end -TopDrawDict begin 8 8 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 8 2 rectfill -} bind /hline1 true defpat pop 16 16 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 16 8 rectfill -} bind /hline2 true defpat pop 32 32 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 32 16 rectfill -} bind /hline3 true defpat pop 8 8 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 2 8 rectfill -} bind /vline1 true defpat pop 16 16 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 8 16 rectfill -} bind /vline2 true defpat pop 32 32 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 16 32 rectfill -} bind /vline3 true defpat pop 15 15 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 1 setlinewidth stroke -} bind /rdline1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 2 scale 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 3 setlinewidth stroke -} bind /rdline2 true defpat pop 60 60 [ 300 72 div 0 0 300 72 div 0 0 ] { - 4 4 scale 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 4 setlinewidth stroke -} bind /rdline3 true defpat pop 15 15 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 1 setlinewidth stroke -} bind /ldline1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 2 scale 2 setlinecap 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 3 setlinewidth stroke -} bind /ldline2 true defpat pop 60 60 [ 300 72 div 0 0 300 72 div 0 0 ] { - 4 4 scale 2 setlinecap 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 4 setlinewidth stroke -} bind /ldline3 true defpat pop 7 7 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 4 0 moveto 4 7 lineto 0 4 moveto 7 4 lineto 0.5 setlinewidth stroke -} bind /gray1 true defpat pop 11 11 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 6 0 moveto 6 11 lineto 0 6 moveto 11 6 lineto 0.5 setlinewidth stroke -} bind /gray2 true defpat pop 15 15 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 8 0 moveto 8 15 lineto 0 8 moveto 15 8 lineto 0.5 setlinewidth stroke -} bind /gray3 true defpat pop 19 19 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 10 0 moveto 10 19 lineto 0 10 moveto 19 10 lineto 0.5 setlinewidth stroke -} bind /gray4 true defpat pop 23 23 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 12 0 moveto 12 23 lineto 0 12 moveto 23 12 lineto 0.5 setlinewidth stroke -} bind /gray5 true defpat pop 31 31 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 16 0 moveto 16 31 lineto 0 16 moveto 31 16 lineto 0.5 setlinewidth stroke -} bind /gray6 true defpat pop 20 20 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 10 0 moveto 20 10 lineto 0 10 moveto 10 20 lineto 10 0 moveto 0 10 lineto 20 10 moveto 10 20 lineto 0.25 setlinewidth stroke -} bind /xhatch1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 2 scale 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 0.5 setlinewidth stroke -} bind /xhatch2 true defpat pop 60 60 [ 300 72 div 0 0 300 72 div 0 0 ] { - 4 4 scale 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 2 setlinewidth stroke -} bind /xhatch3 true defpat pop 20 20 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 10 10 4 0 360 arc closepath fill -} bind /dots1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 15 15 8 0 360 arc closepath fill -} bind /dots2 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 25 25 20 0 360 arc closepath fill -} bind /dots3 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 0 26 moveto 50 0 rlineto 0 1 moveto 50 0 rlineto 26 50 moveto 0 -25 rlineto 1 25 moveto 0 -25 rlineto 1 setlinewidth stroke -} bind /bricks true defpat pop 25 25 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0.5 0.5 scale 0 0 25 25 rectfill 25 25 25 25 rectfill -} bind /check1 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 25 25 rectfill 25 25 25 25 rectfill -} bind /check2 true defpat pop 80 80 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 40 40 rectfill 40 40 40 40 rectfill -} bind /check3 true defpat pop 20 20 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 10 0 moveto 20 10 lineto 10 20 lineto 0 10 lineto closepath fill -} bind /diamond1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 15 0 moveto 30 15 lineto 15 30 lineto 0 15 lineto closepath fill -} bind /diamond2 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 25 0 moveto 50 25 lineto 25 50 lineto 0 25 lineto closepath fill -} bind /diamond3 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 10 10 30 30 rectfill 0 0 moveto 50 50 lineto 0 50 moveto 50 0 lineto 1 setlinewidth stroke -} bind /weave true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 25 25 22 0 360 arc closepath 1 setlinewidth stroke -} bind /donut true defpat pop 100 100 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap -20 0 moveto 25 25 rlineto -25 25 rlineto 25 25 rlineto -25 25 rlineto 5 0 moveto 25 25 rlineto -25 25 rlineto 25 25 rlineto -25 25 rlineto 30 0 moveto 25 25 rlineto -25 25 rlineto 25 25 rlineto -25 25 rlineto 55 0 moveto 25 25 rlineto --25 25 rlineto 25 25 rlineto -25 25 rlineto 80 0 moveto 25 25 rlineto -25 25 rlineto 25 25 rlineto -25 25 rlineto 1 setlinewidth stroke -} bind /ziggy true defpat pop 100 100 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 0 -20 moveto 25 25 rlineto 25 -25 rlineto 25 25 rlineto 25 -25 rlineto 0 5 moveto 25 25 rlineto 25 -25 rlineto 25 25 rlineto 25 -25 rlineto 0 30 moveto 25 25 rlineto 25 -25 rlineto 25 25 rlineto 25 -25 rlineto 0 55 moveto 25 25 rlineto 25 --25 rlineto 25 25 rlineto 25 -25 rlineto 0 80 moveto 25 25 rlineto 25 -25 rlineto 25 25 rlineto 25 -25 rlineto 1 setlinewidth stroke -} bind /zaggy true defpat pop 80 80 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 0 0 moveto 0 40 lineto 40 40 lineto 40 80 lineto 80 80 lineto 0 60 moveto 20 60 lineto 20 80 lineto 20 0 moveto 20 20 lineto 60 20 lineto 60 60 lineto 80 60 lineto 1 setlinewidth stroke -} bind /zaggyd true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 0 12.5 moveto 6.25 0 rlineto 0 37.5 moveto 31.25 0 rlineto 50 12.5 moveto -31.25 0 rlineto 50 37.5 moveto -6.25 0 rlineto 12.5 0 moveto 0 6.25 rlineto 37.5 0 moveto 0 31.25 rlineto 12.5 50 moveto 0 -31.25 rlineto 37.5 50 moveto 0 -6.25 -rlineto 1 setlinewidth stroke -} bind /plusses true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 0 10 moveto 10 0 rlineto 0 -10 rlineto 0 40 moveto 10 0 rlineto 0 10 rlineto 50 10 moveto -10 0 rlineto 0 -10 rlineto 50 40 moveto -10 0 rlineto 0 10 rlineto 7 7 moveto 36 0 rlineto 0 36 rlineto -36 0 rlineto closepath 1 setlinewidth -stroke -} bind /boxes true defpat pop 100 100 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 50 50 40 0 360 arc closepath 40 60 moveto 0 8 rlineto 60 60 moveto 0 8 rlineto 50 45 moveto 0 8 rlineto 35 35 moveto 35 21 65 21 65 35 curveto 1 setlinewidth stroke -} bind /smiley true defpat pop /piddict 256 dict def piddict begin /1 /gray3 def /2 /gray2 def /3 /gray1 def /4 /gray6 def /5 /gray5 def /6 /gray4 def /7 /hline3 def /8 /hline2 def /9 /hline1 def /10 /vline3 def /11 /vline2 def /12 /vline1 def /13 -/rdline3 def /14 /rdline2 def /15 /rdline1 def /16 /ldline3 def /17 /ldline2 def /18 /ldline1 def /19 /check3 def /20 /check2 def /21 /check1 def /22 /xhatch3 def /23 /xhatch2 def /24 /xhatch1 def /25 /dots3 def /26 /dots2 def /27 /dots1 def /28 /zaggyd -def /29 /zaggy def /30 /ziggy def /31 /diamond3 def /32 /diamond2 def /33 /diamond1 def /34 /donut def /35 /weave def /36 /bricks def /37 /plusses def /38 /boxes def /39 /smiley def end /invpats true def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 334 288.847992 rectclip --116 -441.152008 translate -116 441.152008 334 288.847992 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 1 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 21 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 4] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 179 503 109 -54 1 0 0 1 0 0 sc6mt astore rstroke -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -216 270 720 1 0 0 1 0 0 sc6mt astore ssl -/crlinw 2.3 def -/usedash true def -/crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /filinclr true def -/filwpat true def -1 0 0 1 0 0 sc5mt astore 179 535 24 -8 4 1 0 0 1 139 -5 sc6mt astore rffill -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 179 535 24 -8 4 1 0 0 1 139 -5 sc6mt astore rfstroke -/crlinw 2.1 def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 179 558 109 -54 1 0 0 1 139 -5 sc6mt astore rstroke -/crlinw 1 def -/usedash false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -216 198 721 1 0 0 1 0 0 sc6mt astore ssl -/crlinw 2.1 def -/usedash true def -0.772726 0.634739 -0.634739 0.772726 426.761078 -1.875854 sc4mt astore 0.772726 0.634739 -0.634739 0.772726 426.761078 -1.875854 sc5mt astore 0 -216 216 703 0.772726 0.634739 -0.634739 0.772726 477.761078 39.124146 sc6mt astore ssl -0.772726 0.634739 -0.634739 0.772726 426.761078 -1.875854 sc4mt astore 0.772726 0.634739 -0.634739 0.772726 426.761078 -1.875854 sc5mt astore 0 -216 216 703 0.772726 0.634739 -0.634739 0.772726 551.761108 38.124146 sc6mt astore ssl -/crlinw 1 def -/usedash false def -/crendarw true def -/crfrtarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -37 435 491 1 0 0 1 0 0 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(h ) [18 0 0 0] 415 473 /Times-Roman [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 -3 -12] dotx -(M ) [32.003998 0 0 0] 219 476 /Times-Roman [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 -3 -12] dotx -(m ) [28.007996 0 0 0] 127 488 /Times-Roman [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 -10 -2] dotx -/crfrtarw false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 12 0 143 477 1 0 0 1 0 0 sc6mt astore ssl -(v ) [18 0 0 0] 134 439 /Times-Roman [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 10 11] dotx -/txtdraw true def -/txlndraw true def -(q ) [18.755997 0 0 0] 126 366 /Symbol [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 85 277] dotx -/crlinw 2.1 def -/usedash true def -/crendarw false def -/crfilalph 0.739998 def -/crfilred 0.666662 def /crfilgrn 0.666662 def /crfilblu 0.666662 def /filinclr true def -/filwpat false def -/esave save def 1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 90 180 224 700 -1.575758 -1 16.5 false false 1 0 0 1 1 4 sc5mt astore apstroke esave restore -/usedash false def -/crfilalph 1 def -/crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /filinclr true def -/filwpat true def -3 getpat /crfilpat exch def -1 0 0 1 0 0 sc5mt astore 179 535 24 -8 4 1 0 0 1 -60 -54 sc6mt astore rffill -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 179 535 24 -8 4 1 0 0 1 -60 -54 sc6mt astore rfstroke -/crlinw 1 def -1 0 0 0.5 0 184.319992 sc4mt astore 1 0 0 0.5 0 184.319992 sc5mt astore 108 1 126 359.999969 1 0 0 0.5 54 540 sc6mt astore ssl -1 0 0 0.5 0 184.319992 sc4mt astore 1 0 0 0.5 0 184.319992 sc5mt astore -18 -18 144 377.999969 1 0 0 0.5 54 540 sc6mt astore ssl -1 0 0 0.5 0 184.319992 sc4mt astore 1 0 0 0.5 0 184.319992 sc5mt astore -18 -18 162 378 1 0 0 0.5 54 540 sc6mt astore ssl -1 0 0 0.5 0 184.319992 sc4mt astore 1 0 0 0.5 0 184.319992 sc5mt astore -18 -18 180 377.999969 1 0 0 0.5 54 540 sc6mt astore ssl -1 0 0 0.5 0 184.319992 sc4mt astore 1 0 0 0.5 0 184.319992 sc5mt astore -18 -18 198 377.999969 1 0 0 0.5 54 540 sc6mt astore ssl -1 0 0 0.5 0 184.319992 sc4mt astore 1 0 0 0.5 0 184.319992 sc5mt astore -18 -18 216 378 1 0 0 0.5 54 540 sc6mt astore ssl -1 0 0 0.5 0 184.319992 sc4mt astore 1 0 0 0.5 0 184.319992 sc5mt astore -18 -18 234 378 1 0 0 0.5 54 540 sc6mt astore ssl -1 0 0 0.5 0 184.319992 sc4mt astore 1 0 0 0.5 0 184.319992 sc5mt astore -18 -18 252 378 1 0 0 0.5 54 540 sc6mt astore ssl -end -grestore -grestore -%%Trailer -%%DocumentFonts: Times-Roman -%%+ Symbol diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob19a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob19a.gif deleted file mode 100755 index bb60b7955..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype16/prob19a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob02a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob02a.eps deleted file mode 100755 index e5ed7594c..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob02a.eps +++ /dev/null @@ -1,358 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Ball_wall.eps -%%CreationDate: 5/14/1996 -%%Pages: 0 -%%DocumentFonts: Symbol -%%BoundingBox:222 507 320 677 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Symbol Symbol -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Symbol/Symbol 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -5017 3872 4989 3871 4961 3868 4934 3863 4907 3856 4881 3847 4855 3836 4830 3824 -4806 3810 4783 3794 4783 3793 5017 3481 11 P -1 sg fill -gr -gs -5017 3872 4989 3871 4961 3868 4934 3863 4907 3856 4881 3847 4855 3836 4830 3824 -4806 3810 4783 3794 4783 3793 10 P -1.25 slw 0 sg str -gr -gs -4783 3168 4806 3152 4830 3138 4855 3126 4881 3115 4907 3106 4934 3099 4961 3094 -4989 3091 5017 3090 5017 3481 10 P -1 sg fill -gr -gs -4783 3168 4806 3152 4830 3138 4855 3126 4881 3115 4907 3106 4934 3099 4961 3094 -4989 3091 5017 3090 9 P -1.25 slw 0 sg str -gr -gs -5017 2075 5486 4887 R -0 0 0 1 1 1 [255 128 128 128 255 8 8 8] patfill -gr -gs -5017.625 2075.625 5486.375 4887.375 R -1.25 slw 0 sg str -gr -gs -5017 3481 4952 3642 4880 3588 2 P -0 sg fill -gr -gs -4079.625 4731.625 m -4916.625 3615.625 L -1.25 slw 0 sg str -gr -gs -4079 2231 4216 2338 4144 2392 2 P -0 sg fill -gr -gs -5017.625 3481.625 m -4180.625 2365.625 L -1.25 slw 0 sg str -gr -gs -4783 2804 4904 3064 R -1 sg fill -gr -/_Symbol ff [243 0 0 -243 0 0] mf sf -4783 3012 m 0 sg (q) show -gs -4809 3898 4930 4158 R -1 sg fill -gr -4809 4106 m 2.43 slw 0 sg (q) show -gs -3962 4614 4197 4848 OV -0.87 sg fill -gr -gs -3962.625 4614.625 4197.375 4848.375 OV -1.25 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob02a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob02a.gif deleted file mode 100755 index fa274734d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob02a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob02a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob02a.pdf deleted file mode 100644 index 8e145757f..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob02a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av1.eps deleted file mode 100755 index bb4451367..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av1.eps +++ /dev/null @@ -1,947 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_J1 -%%Creation Date: 14 May, 1996 12:55 PM -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(7000) 14.50 18.38 35.50 WS -gsave 0.125 ps [1] sd -57.00 20.50 558.00 20.50 MacLine -grestore -1.00 ps -561.50 20.00 558.00 20.00 MacLine -53.50 20.00 57.00 20.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 27.12 558.00 27.12 MacLine -grestore -1.00 ps -561.50 26.62 558.00 26.62 MacLine -53.50 26.62 57.00 26.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 33.62 558.00 33.62 MacLine -grestore -1.00 ps -561.50 33.12 558.00 33.12 MacLine -53.50 33.12 57.00 33.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 40.12 558.00 40.12 MacLine -grestore -1.00 ps -561.50 39.62 558.00 39.62 MacLine -53.50 39.62 57.00 39.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 46.62 554.50 46.62 MacLine -grestore -1.00 ps -561.50 46.25 554.50 46.25 MacLine -53.50 46.25 60.50 46.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6000) 14.50 51.12 35.50 WS -gsave 0.125 ps [1] sd -57.00 53.25 558.00 53.25 MacLine -grestore -1.00 ps -561.50 52.75 558.00 52.75 MacLine -53.50 52.75 57.00 52.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 66.38 558.00 66.38 MacLine -grestore -1.00 ps -561.50 65.88 558.00 65.88 MacLine -53.50 65.88 57.00 65.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 72.88 558.00 72.88 MacLine -grestore -1.00 ps -561.50 72.38 558.00 72.38 MacLine -53.50 72.38 57.00 72.38 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 79.25 554.50 79.25 MacLine -grestore -1.00 ps -561.50 78.88 554.50 78.88 MacLine -53.50 78.88 60.50 78.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5000) 14.50 83.75 35.50 WS -gsave 0.125 ps [1] sd -57.00 86.00 558.00 86.00 MacLine -grestore -1.00 ps -561.50 85.50 558.00 85.50 MacLine -53.50 85.50 57.00 85.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 92.50 558.00 92.50 MacLine -grestore -1.00 ps -561.50 92.00 558.00 92.00 MacLine -53.50 92.00 57.00 92.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 99.00 558.00 99.00 MacLine -grestore -1.00 ps -561.50 98.50 558.00 98.50 MacLine -53.50 98.50 57.00 98.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 112.00 554.50 112.00 MacLine -grestore -1.00 ps -561.50 111.62 554.50 111.62 MacLine -53.50 111.62 60.50 111.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4000) 14.50 116.50 35.50 WS -gsave 0.125 ps [1] sd -57.00 118.62 558.00 118.62 MacLine -grestore -1.00 ps -561.50 118.12 558.00 118.12 MacLine -53.50 118.12 57.00 118.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 125.25 558.00 125.25 MacLine -grestore -1.00 ps -561.50 124.75 558.00 124.75 MacLine -53.50 124.75 57.00 124.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 131.75 558.00 131.75 MacLine -grestore -1.00 ps -561.50 131.25 558.00 131.25 MacLine -53.50 131.25 57.00 131.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 138.38 558.00 138.38 MacLine -grestore -1.00 ps -561.50 137.88 558.00 137.88 MacLine -53.50 137.88 57.00 137.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 144.75 554.50 144.75 MacLine -grestore -1.00 ps -561.50 144.38 554.50 144.38 MacLine -53.50 144.38 60.50 144.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(3000) 14.50 149.25 35.50 WS -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 158.00 558.00 158.00 MacLine -grestore -1.00 ps -561.50 157.50 558.00 157.50 MacLine -53.50 157.50 57.00 157.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 164.50 558.00 164.50 MacLine -grestore -1.00 ps -561.50 164.00 558.00 164.00 MacLine -53.50 164.00 57.00 164.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 171.00 558.00 171.00 MacLine -grestore -1.00 ps -561.50 170.50 558.00 170.50 MacLine -53.50 170.50 57.00 170.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 177.50 554.50 177.50 MacLine -grestore -1.00 ps -561.50 177.12 554.50 177.12 MacLine -53.50 177.12 60.50 177.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2000) 14.50 182.00 35.50 WS -gsave 0.125 ps [1] sd -57.00 184.12 558.00 184.12 MacLine -grestore -1.00 ps -561.50 183.62 558.00 183.62 MacLine -53.50 183.62 57.00 183.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 190.62 558.00 190.62 MacLine -grestore -1.00 ps -561.50 190.12 558.00 190.12 MacLine -53.50 190.12 57.00 190.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 203.75 558.00 203.75 MacLine -grestore -1.00 ps -561.50 203.25 558.00 203.25 MacLine -53.50 203.25 57.00 203.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 210.12 554.50 210.12 MacLine -grestore -1.00 ps -561.50 209.75 554.50 209.75 MacLine -53.50 209.75 60.50 209.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1000) 14.50 214.62 35.50 WS -gsave 0.125 ps [1] sd -57.00 216.88 558.00 216.88 MacLine -grestore -1.00 ps -561.50 216.38 558.00 216.38 MacLine -53.50 216.38 57.00 216.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 223.38 558.00 223.38 MacLine -grestore -1.00 ps -561.50 222.88 558.00 222.88 MacLine -53.50 222.88 57.00 222.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 229.88 558.00 229.88 MacLine -grestore -1.00 ps -561.50 229.38 558.00 229.38 MacLine -53.50 229.38 57.00 229.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 236.50 558.00 236.50 MacLine -grestore -1.00 ps -561.50 236.00 558.00 236.00 MacLine -53.50 236.00 57.00 236.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 164.50 translate -90 rotate -(Force \( ) 0.00 0.00 55.25 WS -grestore -16.00 (_Helvetica) 0 F -gsave 12.38 109.25 translate -90 rotate -(N\)) 0.00 0.00 16.88 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 553.12 259.88 17.75 WS -1.00 ps -551.38 13.50 551.38 17.00 MacLine -551.38 242.50 551.38 239.00 MacLine -1 ps -1.00 ps -541.12 13.50 541.12 17.00 MacLine -541.12 242.50 541.12 239.00 MacLine -1 ps -1.00 ps -531.00 13.50 531.00 17.00 MacLine -531.00 242.50 531.00 239.00 MacLine -1 ps -1.00 ps -520.88 13.50 520.88 17.00 MacLine -520.88 242.50 520.88 239.00 MacLine -1 ps -1.00 ps -510.75 13.50 510.75 18.75 MacLine -510.75 242.50 510.75 237.25 MacLine -1 ps -1.00 ps -500.50 13.50 500.50 17.00 MacLine -500.50 242.50 500.50 239.00 MacLine -1 ps -1.00 ps -490.38 13.50 490.38 17.00 MacLine -490.38 242.50 490.38 239.00 MacLine -1 ps -1.00 ps -480.25 13.50 480.25 17.00 MacLine -480.25 242.50 480.25 239.00 MacLine -1 ps -1.00 ps -470.00 13.50 470.00 17.00 MacLine -470.00 242.50 470.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -460.25 235.50 460.25 20.50 MacLine -grestore -1.00 ps -459.88 13.50 459.88 20.50 MacLine -459.88 242.50 459.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 456.00 259.88 8.88 WS -1.00 ps -449.75 13.50 449.75 17.00 MacLine -449.75 242.50 449.75 239.00 MacLine -1 ps -1.00 ps -439.62 13.50 439.62 17.00 MacLine -439.62 242.50 439.62 239.00 MacLine -1 ps -1.00 ps -429.38 13.50 429.38 17.00 MacLine -429.38 242.50 429.38 239.00 MacLine -1 ps -1.00 ps -419.25 13.50 419.25 17.00 MacLine -419.25 242.50 419.25 239.00 MacLine -1 ps -1.00 ps -409.12 13.50 409.12 18.75 MacLine -409.12 242.50 409.12 237.25 MacLine -1 ps -1.00 ps -399.00 13.50 399.00 17.00 MacLine -399.00 242.50 399.00 239.00 MacLine -1 ps -1.00 ps -388.75 13.50 388.75 17.00 MacLine -388.75 242.50 388.75 239.00 MacLine -1 ps -1.00 ps -378.62 13.50 378.62 17.00 MacLine -378.62 242.50 378.62 239.00 MacLine -1 ps -1.00 ps -368.50 13.50 368.50 17.00 MacLine -368.50 242.50 368.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -358.62 235.50 358.62 20.50 MacLine -grestore -1.00 ps -358.25 13.50 358.25 20.50 MacLine -358.25 242.50 358.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 354.38 259.88 8.88 WS -1.00 ps -348.12 13.50 348.12 17.00 MacLine -348.12 242.50 348.12 239.00 MacLine -1 ps -1.00 ps -338.00 13.50 338.00 17.00 MacLine -338.00 242.50 338.00 239.00 MacLine -1 ps -1.00 ps -327.88 13.50 327.88 17.00 MacLine -327.88 242.50 327.88 239.00 MacLine -1 ps -1.00 ps -317.62 13.50 317.62 17.00 MacLine -317.62 242.50 317.62 239.00 MacLine -1 ps -1.00 ps -307.50 13.50 307.50 18.75 MacLine -307.50 242.50 307.50 237.25 MacLine -1 ps -1.00 ps -297.38 13.50 297.38 17.00 MacLine -297.38 242.50 297.38 239.00 MacLine -1 ps -1.00 ps -287.12 13.50 287.12 17.00 MacLine -287.12 242.50 287.12 239.00 MacLine -1 ps -1.00 ps -277.00 13.50 277.00 17.00 MacLine -277.00 242.50 277.00 239.00 MacLine -1 ps -1.00 ps -266.88 13.50 266.88 17.00 MacLine -266.88 242.50 266.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -257.12 235.50 257.12 20.50 MacLine -grestore -1.00 ps -256.75 13.50 256.75 20.50 MacLine -256.75 242.50 256.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 252.88 259.88 8.88 WS -1.00 ps -246.50 13.50 246.50 17.00 MacLine -246.50 242.50 246.50 239.00 MacLine -1 ps -1.00 ps -236.38 13.50 236.38 17.00 MacLine -236.38 242.50 236.38 239.00 MacLine -1 ps -1.00 ps -226.25 13.50 226.25 17.00 MacLine -226.25 242.50 226.25 239.00 MacLine -1 ps -1.00 ps -216.00 13.50 216.00 17.00 MacLine -216.00 242.50 216.00 239.00 MacLine -1 ps -1.00 ps -205.88 13.50 205.88 18.75 MacLine -205.88 242.50 205.88 237.25 MacLine -1 ps -1.00 ps -195.75 13.50 195.75 17.00 MacLine -195.75 242.50 195.75 239.00 MacLine -1 ps -1.00 ps -185.62 13.50 185.62 17.00 MacLine -185.62 242.50 185.62 239.00 MacLine -1 ps -1.00 ps -175.38 13.50 175.38 17.00 MacLine -175.38 242.50 175.38 239.00 MacLine -1 ps -1.00 ps -165.25 13.50 165.25 17.00 MacLine -165.25 242.50 165.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -155.50 235.50 155.50 20.50 MacLine -grestore -1.00 ps -155.12 13.50 155.12 20.50 MacLine -155.12 242.50 155.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 151.25 259.88 8.88 WS -1.00 ps -145.00 13.50 145.00 17.00 MacLine -145.00 242.50 145.00 239.00 MacLine -1 ps -1.00 ps -134.75 13.50 134.75 17.00 MacLine -134.75 242.50 134.75 239.00 MacLine -1 ps -1.00 ps -124.62 13.50 124.62 17.00 MacLine -124.62 242.50 124.62 239.00 MacLine -1 ps -1.00 ps -114.50 13.50 114.50 17.00 MacLine -114.50 242.50 114.50 239.00 MacLine -1 ps -1.00 ps -104.25 13.50 104.25 18.75 MacLine -104.25 242.50 104.25 237.25 MacLine -1 ps -1.00 ps -94.12 13.50 94.12 17.00 MacLine -94.12 242.50 94.12 239.00 MacLine -1 ps -1.00 ps -84.00 13.50 84.00 17.00 MacLine -84.00 242.50 84.00 239.00 MacLine -1 ps -1.00 ps -73.88 13.50 73.88 17.00 MacLine -73.88 242.50 73.88 239.00 MacLine -1 ps -1.00 ps -63.62 13.50 63.62 17.00 MacLine -63.62 242.50 63.62 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(10) 262.50 284.38 63.12 WS -11.25 (_Helvetica) 0 F -(-3) 325.62 276.00 10.00 WS -16.00 (_Helvetica) 0 F -( s\)) 335.62 284.38 17.88 WS -1.00 ps -newpath 59.12 233.25 M -64.12 223.75 L -69.25 214.62 L -74.38 205.75 L -79.38 197.00 L -84.50 188.50 L -89.62 180.25 L -94.62 172.38 L -99.75 164.62 L -104.75 157.12 L -109.88 149.88 L -115.00 142.88 L -120.00 136.12 L -125.12 129.62 L -130.25 123.38 L -135.25 117.38 L -140.38 111.62 L -145.50 106.12 L -150.50 100.75 L -155.62 95.75 L -160.62 91.00 L -165.75 86.50 L -170.88 82.12 L -176.00 78.12 L -181.00 74.38 L -186.12 70.75 L -191.12 67.38 L -196.25 64.38 L -201.25 61.50 L -206.38 59.00 L -211.50 56.62 L -216.62 54.50 L -221.62 52.75 L -226.75 51.12 L -231.88 49.75 L -236.88 48.62 L -242.00 47.75 L -247.00 47.25 L -252.12 46.88 L -257.25 46.75 L -262.25 46.88 L -267.38 47.25 L -272.50 47.75 L -277.50 48.62 L -282.62 49.75 L -287.62 51.12 L -292.75 52.75 L -297.88 54.50 L -302.88 56.62 L -308.00 59.00 L -313.00 61.50 L -318.12 64.38 L -323.12 67.38 L -328.25 70.75 L -333.38 74.38 L -338.50 78.12 L -343.50 82.12 L -348.62 86.50 L -353.62 91.00 L -358.75 95.75 L -363.75 100.75 L -368.88 106.12 L -374.00 111.62 L -379.12 117.38 L -384.12 123.38 L -389.25 129.62 L -394.38 136.12 L -399.38 142.88 L -404.50 149.88 L -409.50 157.12 L -414.62 164.62 L -419.75 172.38 L -424.75 180.25 L -429.88 188.50 L -435.00 197.00 L -440.00 205.75 L -445.12 214.62 L -450.12 223.75 L -455.25 233.25 L -460.38 243.00 L -460.38 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av1.gif deleted file mode 100755 index c45eb9d66..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av1.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av1.pdf deleted file mode 100644 index 48c8499c4..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av1.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av10.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av10.eps deleted file mode 100755 index 58f5d05ab..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av10.eps +++ /dev/null @@ -1,1011 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_J10 -%%Creation Date: 14 May, 1996 12:57 PM -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 556.25 13.50 MacLine -53.50 13.50 58.75 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 19.12 558.00 19.12 MacLine -grestore -1.00 ps -561.50 18.62 558.00 18.62 MacLine -53.50 18.62 57.00 18.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 24.12 558.00 24.12 MacLine -grestore -1.00 ps -561.50 23.62 558.00 23.62 MacLine -53.50 23.62 57.00 23.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 29.25 558.00 29.25 MacLine -grestore -1.00 ps -561.50 28.75 558.00 28.75 MacLine -53.50 28.75 57.00 28.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 34.38 558.00 34.38 MacLine -grestore -1.00 ps -561.50 33.88 558.00 33.88 MacLine -53.50 33.88 57.00 33.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 39.38 554.50 39.38 MacLine -grestore -1.00 ps -561.50 39.00 554.50 39.00 MacLine -53.50 39.00 60.50 39.00 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(8000) 14.50 43.88 35.50 WS -gsave 0.125 ps [1] sd -57.00 44.50 558.00 44.50 MacLine -grestore -1.00 ps -561.50 44.00 558.00 44.00 MacLine -53.50 44.00 57.00 44.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 49.62 558.00 49.62 MacLine -grestore -1.00 ps -561.50 49.12 558.00 49.12 MacLine -53.50 49.12 57.00 49.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 54.75 558.00 54.75 MacLine -grestore -1.00 ps -561.50 54.25 558.00 54.25 MacLine -53.50 54.25 57.00 54.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -58.75 64.88 556.25 64.88 MacLine -grestore -1.00 ps -561.50 64.38 556.25 64.38 MacLine -53.50 64.38 58.75 64.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 70.00 558.00 70.00 MacLine -grestore -1.00 ps -561.50 69.50 558.00 69.50 MacLine -53.50 69.50 57.00 69.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 75.12 558.00 75.12 MacLine -grestore -1.00 ps -561.50 74.62 558.00 74.62 MacLine -53.50 74.62 57.00 74.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 80.12 558.00 80.12 MacLine -grestore -1.00 ps -561.50 79.62 558.00 79.62 MacLine -53.50 79.62 57.00 79.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 85.25 558.00 85.25 MacLine -grestore -1.00 ps -561.50 84.75 558.00 84.75 MacLine -53.50 84.75 57.00 84.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 90.25 554.50 90.25 MacLine -grestore -1.00 ps -561.50 89.88 554.50 89.88 MacLine -53.50 89.88 60.50 89.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6000) 14.50 94.75 35.50 WS -gsave 0.125 ps [1] sd -57.00 95.38 558.00 95.38 MacLine -grestore -1.00 ps -561.50 94.88 558.00 94.88 MacLine -53.50 94.88 57.00 94.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 100.50 558.00 100.50 MacLine -grestore -1.00 ps -561.50 100.00 558.00 100.00 MacLine -53.50 100.00 57.00 100.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 110.75 558.00 110.75 MacLine -grestore -1.00 ps -561.50 110.25 558.00 110.25 MacLine -53.50 110.25 57.00 110.25 MacLine -1 ps -gsave 0.125 ps [1] sd -58.75 115.75 556.25 115.75 MacLine -grestore -1.00 ps -561.50 115.25 556.25 115.25 MacLine -53.50 115.25 58.75 115.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 120.88 558.00 120.88 MacLine -grestore -1.00 ps -561.50 120.38 558.00 120.38 MacLine -53.50 120.38 57.00 120.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 126.00 558.00 126.00 MacLine -grestore -1.00 ps -561.50 125.50 558.00 125.50 MacLine -53.50 125.50 57.00 125.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 131.00 558.00 131.00 MacLine -grestore -1.00 ps -561.50 130.50 558.00 130.50 MacLine -53.50 130.50 57.00 130.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 136.12 558.00 136.12 MacLine -grestore -1.00 ps -561.50 135.62 558.00 135.62 MacLine -53.50 135.62 57.00 135.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 141.12 554.50 141.12 MacLine -grestore -1.00 ps -561.50 140.75 554.50 140.75 MacLine -53.50 140.75 60.50 140.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4000) 14.50 145.62 35.50 WS -gsave 0.125 ps [1] sd -57.00 146.25 558.00 146.25 MacLine -grestore -1.00 ps -561.50 145.75 558.00 145.75 MacLine -53.50 145.75 57.00 145.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 156.50 558.00 156.50 MacLine -grestore -1.00 ps -561.50 156.00 558.00 156.00 MacLine -53.50 156.00 57.00 156.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 161.62 558.00 161.62 MacLine -grestore -1.00 ps -561.50 161.12 558.00 161.12 MacLine -53.50 161.12 57.00 161.12 MacLine -1 ps -gsave 0.125 ps [1] sd -58.75 166.62 556.25 166.62 MacLine -grestore -1.00 ps -561.50 166.12 556.25 166.12 MacLine -53.50 166.12 58.75 166.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 171.75 558.00 171.75 MacLine -grestore -1.00 ps -561.50 171.25 558.00 171.25 MacLine -53.50 171.25 57.00 171.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 176.88 558.00 176.88 MacLine -grestore -1.00 ps -561.50 176.38 558.00 176.38 MacLine -53.50 176.38 57.00 176.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 181.88 558.00 181.88 MacLine -grestore -1.00 ps -561.50 181.38 558.00 181.38 MacLine -53.50 181.38 57.00 181.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 187.00 558.00 187.00 MacLine -grestore -1.00 ps -561.50 186.50 558.00 186.50 MacLine -53.50 186.50 57.00 186.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 192.00 554.50 192.00 MacLine -grestore -1.00 ps -561.50 191.62 554.50 191.62 MacLine -53.50 191.62 60.50 191.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2000) 14.50 196.50 35.50 WS -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 202.25 558.00 202.25 MacLine -grestore -1.00 ps -561.50 201.75 558.00 201.75 MacLine -53.50 201.75 57.00 201.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 207.38 558.00 207.38 MacLine -grestore -1.00 ps -561.50 206.88 558.00 206.88 MacLine -53.50 206.88 57.00 206.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 212.50 558.00 212.50 MacLine -grestore -1.00 ps -561.50 212.00 558.00 212.00 MacLine -53.50 212.00 57.00 212.00 MacLine -1 ps -gsave 0.125 ps [1] sd -58.75 217.50 556.25 217.50 MacLine -grestore -1.00 ps -561.50 217.00 556.25 217.00 MacLine -53.50 217.00 58.75 217.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 222.62 558.00 222.62 MacLine -grestore -1.00 ps -561.50 222.12 558.00 222.12 MacLine -53.50 222.12 57.00 222.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 227.75 558.00 227.75 MacLine -grestore -1.00 ps -561.50 227.25 558.00 227.25 MacLine -53.50 227.25 57.00 227.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 232.88 558.00 232.88 MacLine -grestore -1.00 ps -561.50 232.38 558.00 232.38 MacLine -53.50 232.38 57.00 232.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 237.88 558.00 237.88 MacLine -grestore -1.00 ps -561.50 237.38 558.00 237.38 MacLine -53.50 237.38 57.00 237.38 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 164.50 translate -90 rotate -(Force \( ) 0.00 0.00 55.25 WS -grestore -16.00 (_Helvetica) 0 F -gsave 12.38 109.25 translate -90 rotate -(N\)) 0.00 0.00 16.88 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 553.12 259.88 17.75 WS -1.00 ps -551.38 13.50 551.38 17.00 MacLine -551.38 242.50 551.38 239.00 MacLine -1 ps -1.00 ps -541.12 13.50 541.12 17.00 MacLine -541.12 242.50 541.12 239.00 MacLine -1 ps -1.00 ps -531.00 13.50 531.00 17.00 MacLine -531.00 242.50 531.00 239.00 MacLine -1 ps -1.00 ps -520.88 13.50 520.88 17.00 MacLine -520.88 242.50 520.88 239.00 MacLine -1 ps -1.00 ps -510.75 13.50 510.75 18.75 MacLine -510.75 242.50 510.75 237.25 MacLine -1 ps -1.00 ps -500.50 13.50 500.50 17.00 MacLine -500.50 242.50 500.50 239.00 MacLine -1 ps -1.00 ps -490.38 13.50 490.38 17.00 MacLine -490.38 242.50 490.38 239.00 MacLine -1 ps -1.00 ps -480.25 13.50 480.25 17.00 MacLine -480.25 242.50 480.25 239.00 MacLine -1 ps -1.00 ps -470.00 13.50 470.00 17.00 MacLine -470.00 242.50 470.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -460.25 235.50 460.25 20.50 MacLine -grestore -1.00 ps -459.88 13.50 459.88 20.50 MacLine -459.88 242.50 459.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 456.00 259.88 8.88 WS -1.00 ps -449.75 13.50 449.75 17.00 MacLine -449.75 242.50 449.75 239.00 MacLine -1 ps -1.00 ps -439.62 13.50 439.62 17.00 MacLine -439.62 242.50 439.62 239.00 MacLine -1 ps -1.00 ps -429.38 13.50 429.38 17.00 MacLine -429.38 242.50 429.38 239.00 MacLine -1 ps -1.00 ps -419.25 13.50 419.25 17.00 MacLine -419.25 242.50 419.25 239.00 MacLine -1 ps -1.00 ps -409.12 13.50 409.12 18.75 MacLine -409.12 242.50 409.12 237.25 MacLine -1 ps -1.00 ps -399.00 13.50 399.00 17.00 MacLine -399.00 242.50 399.00 239.00 MacLine -1 ps -1.00 ps -388.75 13.50 388.75 17.00 MacLine -388.75 242.50 388.75 239.00 MacLine -1 ps -1.00 ps -378.62 13.50 378.62 17.00 MacLine -378.62 242.50 378.62 239.00 MacLine -1 ps -1.00 ps -368.50 13.50 368.50 17.00 MacLine -368.50 242.50 368.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -358.62 235.50 358.62 20.50 MacLine -grestore -1.00 ps -358.25 13.50 358.25 20.50 MacLine -358.25 242.50 358.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 354.38 259.88 8.88 WS -1.00 ps -348.12 13.50 348.12 17.00 MacLine -348.12 242.50 348.12 239.00 MacLine -1 ps -1.00 ps -338.00 13.50 338.00 17.00 MacLine -338.00 242.50 338.00 239.00 MacLine -1 ps -1.00 ps -327.88 13.50 327.88 17.00 MacLine -327.88 242.50 327.88 239.00 MacLine -1 ps -1.00 ps -317.62 13.50 317.62 17.00 MacLine -317.62 242.50 317.62 239.00 MacLine -1 ps -1.00 ps -307.50 13.50 307.50 18.75 MacLine -307.50 242.50 307.50 237.25 MacLine -1 ps -1.00 ps -297.38 13.50 297.38 17.00 MacLine -297.38 242.50 297.38 239.00 MacLine -1 ps -1.00 ps -287.12 13.50 287.12 17.00 MacLine -287.12 242.50 287.12 239.00 MacLine -1 ps -1.00 ps -277.00 13.50 277.00 17.00 MacLine -277.00 242.50 277.00 239.00 MacLine -1 ps -1.00 ps -266.88 13.50 266.88 17.00 MacLine -266.88 242.50 266.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -257.12 235.50 257.12 20.50 MacLine -grestore -1.00 ps -256.75 13.50 256.75 20.50 MacLine -256.75 242.50 256.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 252.88 259.88 8.88 WS -1.00 ps -246.50 13.50 246.50 17.00 MacLine -246.50 242.50 246.50 239.00 MacLine -1 ps -1.00 ps -236.38 13.50 236.38 17.00 MacLine -236.38 242.50 236.38 239.00 MacLine -1 ps -1.00 ps -226.25 13.50 226.25 17.00 MacLine -226.25 242.50 226.25 239.00 MacLine -1 ps -1.00 ps -216.00 13.50 216.00 17.00 MacLine -216.00 242.50 216.00 239.00 MacLine -1 ps -1.00 ps -205.88 13.50 205.88 18.75 MacLine -205.88 242.50 205.88 237.25 MacLine -1 ps -1.00 ps -195.75 13.50 195.75 17.00 MacLine -195.75 242.50 195.75 239.00 MacLine -1 ps -1.00 ps -185.62 13.50 185.62 17.00 MacLine -185.62 242.50 185.62 239.00 MacLine -1 ps -1.00 ps -175.38 13.50 175.38 17.00 MacLine -175.38 242.50 175.38 239.00 MacLine -1 ps -1.00 ps -165.25 13.50 165.25 17.00 MacLine -165.25 242.50 165.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -155.50 235.50 155.50 20.50 MacLine -grestore -1.00 ps -155.12 13.50 155.12 20.50 MacLine -155.12 242.50 155.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 151.25 259.88 8.88 WS -1.00 ps -145.00 13.50 145.00 17.00 MacLine -145.00 242.50 145.00 239.00 MacLine -1 ps -1.00 ps -134.75 13.50 134.75 17.00 MacLine -134.75 242.50 134.75 239.00 MacLine -1 ps -1.00 ps -124.62 13.50 124.62 17.00 MacLine -124.62 242.50 124.62 239.00 MacLine -1 ps -1.00 ps -114.50 13.50 114.50 17.00 MacLine -114.50 242.50 114.50 239.00 MacLine -1 ps -1.00 ps -104.25 13.50 104.25 18.75 MacLine -104.25 242.50 104.25 237.25 MacLine -1 ps -1.00 ps -94.12 13.50 94.12 17.00 MacLine -94.12 242.50 94.12 239.00 MacLine -1 ps -1.00 ps -84.00 13.50 84.00 17.00 MacLine -84.00 242.50 84.00 239.00 MacLine -1 ps -1.00 ps -73.88 13.50 73.88 17.00 MacLine -73.88 242.50 73.88 239.00 MacLine -1 ps -1.00 ps -63.62 13.50 63.62 17.00 MacLine -63.62 242.50 63.62 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(10) 262.50 284.38 63.12 WS -11.25 (_Helvetica) 0 F -(-3) 325.62 276.00 10.00 WS -16.00 (_Helvetica) 0 F -( s\)) 335.62 284.38 17.88 WS -1.00 ps -newpath 59.12 233.00 M -64.12 223.12 L -69.25 213.62 L -74.38 204.38 L -79.38 195.25 L -84.50 186.50 L -89.62 178.00 L -94.62 169.75 L -99.75 161.75 L -104.75 154.00 L -109.88 146.50 L -115.00 139.25 L -120.00 132.25 L -125.12 125.50 L -130.25 119.00 L -135.25 112.75 L -140.38 106.75 L -145.50 101.00 L -150.50 95.62 L -155.62 90.38 L -160.62 85.38 L -165.75 80.75 L -170.88 76.25 L -176.00 72.00 L -181.00 68.12 L -186.12 64.38 L -191.12 61.00 L -196.25 57.75 L -201.25 54.88 L -206.38 52.25 L -211.50 49.75 L -216.62 47.62 L -221.62 45.75 L -226.75 44.00 L -231.88 42.62 L -236.88 41.50 L -242.00 40.62 L -247.00 40.00 L -252.12 39.62 L -257.25 39.50 L -262.25 39.62 L -267.38 40.00 L -272.50 40.62 L -277.50 41.50 L -282.62 42.62 L -287.62 44.00 L -292.75 45.75 L -297.88 47.62 L -302.88 49.75 L -308.00 52.25 L -313.00 54.88 L -318.12 57.75 L -323.12 61.00 L -328.25 64.38 L -333.38 68.12 L -338.50 72.00 L -343.50 76.25 L -348.62 80.75 L -353.62 85.38 L -358.75 90.38 L -363.75 95.62 L -368.88 101.00 L -374.00 106.75 L -379.12 112.75 L -384.12 119.00 L -389.25 125.50 L -394.38 132.25 L -399.38 139.25 L -404.50 146.50 L -409.50 154.00 L -414.62 161.75 L -419.75 169.75 L -424.75 178.00 L -429.88 186.50 L -435.00 195.25 L -440.00 204.38 L -445.12 213.62 L -450.12 223.12 L -455.25 233.00 L -460.38 243.00 L -460.38 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av10.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av10.gif deleted file mode 100755 index a424271a5..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av10.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av2.eps deleted file mode 100755 index 007826828..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av2.eps +++ /dev/null @@ -1,920 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_J2 -%%Creation Date: 14 May, 1996 12:56 PM -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(6000) 14.50 18.38 35.50 WS -gsave 0.125 ps [1] sd -57.00 21.62 558.00 21.62 MacLine -grestore -1.00 ps -561.50 21.12 558.00 21.12 MacLine -53.50 21.12 57.00 21.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 29.25 558.00 29.25 MacLine -grestore -1.00 ps -561.50 28.75 558.00 28.75 MacLine -53.50 28.75 57.00 28.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 44.50 558.00 44.50 MacLine -grestore -1.00 ps -561.50 44.00 558.00 44.00 MacLine -53.50 44.00 57.00 44.00 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 52.00 554.50 52.00 MacLine -grestore -1.00 ps -561.50 51.62 554.50 51.62 MacLine -53.50 51.62 60.50 51.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5000) 14.50 56.50 35.50 WS -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 67.38 558.00 67.38 MacLine -grestore -1.00 ps -561.50 66.88 558.00 66.88 MacLine -53.50 66.88 57.00 66.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 75.12 558.00 75.12 MacLine -grestore -1.00 ps -561.50 74.62 558.00 74.62 MacLine -53.50 74.62 57.00 74.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 90.25 554.50 90.25 MacLine -grestore -1.00 ps -561.50 89.88 554.50 89.88 MacLine -53.50 89.88 60.50 89.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4000) 14.50 94.75 35.50 WS -gsave 0.125 ps [1] sd -57.00 98.00 558.00 98.00 MacLine -grestore -1.00 ps -561.50 97.50 558.00 97.50 MacLine -53.50 97.50 57.00 97.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 113.25 558.00 113.25 MacLine -grestore -1.00 ps -561.50 112.75 558.00 112.75 MacLine -53.50 112.75 57.00 112.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 120.88 558.00 120.88 MacLine -grestore -1.00 ps -561.50 120.38 558.00 120.38 MacLine -53.50 120.38 57.00 120.38 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -53.50 128.00 60.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(3000) 14.50 132.88 35.50 WS -gsave 0.125 ps [1] sd -57.00 136.12 558.00 136.12 MacLine -grestore -1.00 ps -561.50 135.62 558.00 135.62 MacLine -53.50 135.62 57.00 135.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 143.75 558.00 143.75 MacLine -grestore -1.00 ps -561.50 143.25 558.00 143.25 MacLine -53.50 143.25 57.00 143.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 159.00 558.00 159.00 MacLine -grestore -1.00 ps -561.50 158.50 558.00 158.50 MacLine -53.50 158.50 57.00 158.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 166.50 554.50 166.50 MacLine -grestore -1.00 ps -561.50 166.12 554.50 166.12 MacLine -53.50 166.12 60.50 166.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2000) 14.50 171.00 35.50 WS -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 181.88 558.00 181.88 MacLine -grestore -1.00 ps -561.50 181.38 558.00 181.38 MacLine -53.50 181.38 57.00 181.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 189.62 558.00 189.62 MacLine -grestore -1.00 ps -561.50 189.12 558.00 189.12 MacLine -53.50 189.12 57.00 189.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 204.75 554.50 204.75 MacLine -grestore -1.00 ps -561.50 204.38 554.50 204.38 MacLine -53.50 204.38 60.50 204.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1000) 14.50 209.25 35.50 WS -gsave 0.125 ps [1] sd -57.00 212.50 558.00 212.50 MacLine -grestore -1.00 ps -561.50 212.00 558.00 212.00 MacLine -53.50 212.00 57.00 212.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 227.75 558.00 227.75 MacLine -grestore -1.00 ps -561.50 227.25 558.00 227.25 MacLine -53.50 227.25 57.00 227.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 235.38 558.00 235.38 MacLine -grestore -1.00 ps -561.50 234.88 558.00 234.88 MacLine -53.50 234.88 57.00 234.88 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 164.50 translate -90 rotate -(Force \( ) 0.00 0.00 55.25 WS -grestore -16.00 (_Helvetica) 0 F -gsave 12.38 109.25 translate -90 rotate -(N\)) 0.00 0.00 16.88 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 553.12 259.88 17.75 WS -1.00 ps -551.38 13.50 551.38 17.00 MacLine -551.38 242.50 551.38 239.00 MacLine -1 ps -1.00 ps -541.12 13.50 541.12 17.00 MacLine -541.12 242.50 541.12 239.00 MacLine -1 ps -1.00 ps -531.00 13.50 531.00 17.00 MacLine -531.00 242.50 531.00 239.00 MacLine -1 ps -1.00 ps -520.88 13.50 520.88 17.00 MacLine -520.88 242.50 520.88 239.00 MacLine -1 ps -1.00 ps -510.75 13.50 510.75 18.75 MacLine -510.75 242.50 510.75 237.25 MacLine -1 ps -1.00 ps -500.50 13.50 500.50 17.00 MacLine -500.50 242.50 500.50 239.00 MacLine -1 ps -1.00 ps -490.38 13.50 490.38 17.00 MacLine -490.38 242.50 490.38 239.00 MacLine -1 ps -1.00 ps -480.25 13.50 480.25 17.00 MacLine -480.25 242.50 480.25 239.00 MacLine -1 ps -1.00 ps -470.00 13.50 470.00 17.00 MacLine -470.00 242.50 470.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -460.25 235.50 460.25 20.50 MacLine -grestore -1.00 ps -459.88 13.50 459.88 20.50 MacLine -459.88 242.50 459.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 456.00 259.88 8.88 WS -1.00 ps -449.75 13.50 449.75 17.00 MacLine -449.75 242.50 449.75 239.00 MacLine -1 ps -1.00 ps -439.62 13.50 439.62 17.00 MacLine -439.62 242.50 439.62 239.00 MacLine -1 ps -1.00 ps -429.38 13.50 429.38 17.00 MacLine -429.38 242.50 429.38 239.00 MacLine -1 ps -1.00 ps -419.25 13.50 419.25 17.00 MacLine -419.25 242.50 419.25 239.00 MacLine -1 ps -1.00 ps -409.12 13.50 409.12 18.75 MacLine -409.12 242.50 409.12 237.25 MacLine -1 ps -1.00 ps -399.00 13.50 399.00 17.00 MacLine -399.00 242.50 399.00 239.00 MacLine -1 ps -1.00 ps -388.75 13.50 388.75 17.00 MacLine -388.75 242.50 388.75 239.00 MacLine -1 ps -1.00 ps -378.62 13.50 378.62 17.00 MacLine -378.62 242.50 378.62 239.00 MacLine -1 ps -1.00 ps -368.50 13.50 368.50 17.00 MacLine -368.50 242.50 368.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -358.62 235.50 358.62 20.50 MacLine -grestore -1.00 ps -358.25 13.50 358.25 20.50 MacLine -358.25 242.50 358.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 354.38 259.88 8.88 WS -1.00 ps -348.12 13.50 348.12 17.00 MacLine -348.12 242.50 348.12 239.00 MacLine -1 ps -1.00 ps -338.00 13.50 338.00 17.00 MacLine -338.00 242.50 338.00 239.00 MacLine -1 ps -1.00 ps -327.88 13.50 327.88 17.00 MacLine -327.88 242.50 327.88 239.00 MacLine -1 ps -1.00 ps -317.62 13.50 317.62 17.00 MacLine -317.62 242.50 317.62 239.00 MacLine -1 ps -1.00 ps -307.50 13.50 307.50 18.75 MacLine -307.50 242.50 307.50 237.25 MacLine -1 ps -1.00 ps -297.38 13.50 297.38 17.00 MacLine -297.38 242.50 297.38 239.00 MacLine -1 ps -1.00 ps -287.12 13.50 287.12 17.00 MacLine -287.12 242.50 287.12 239.00 MacLine -1 ps -1.00 ps -277.00 13.50 277.00 17.00 MacLine -277.00 242.50 277.00 239.00 MacLine -1 ps -1.00 ps -266.88 13.50 266.88 17.00 MacLine -266.88 242.50 266.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -257.12 235.50 257.12 20.50 MacLine -grestore -1.00 ps -256.75 13.50 256.75 20.50 MacLine -256.75 242.50 256.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 252.88 259.88 8.88 WS -1.00 ps -246.50 13.50 246.50 17.00 MacLine -246.50 242.50 246.50 239.00 MacLine -1 ps -1.00 ps -236.38 13.50 236.38 17.00 MacLine -236.38 242.50 236.38 239.00 MacLine -1 ps -1.00 ps -226.25 13.50 226.25 17.00 MacLine -226.25 242.50 226.25 239.00 MacLine -1 ps -1.00 ps -216.00 13.50 216.00 17.00 MacLine -216.00 242.50 216.00 239.00 MacLine -1 ps -1.00 ps -205.88 13.50 205.88 18.75 MacLine -205.88 242.50 205.88 237.25 MacLine -1 ps -1.00 ps -195.75 13.50 195.75 17.00 MacLine -195.75 242.50 195.75 239.00 MacLine -1 ps -1.00 ps -185.62 13.50 185.62 17.00 MacLine -185.62 242.50 185.62 239.00 MacLine -1 ps -1.00 ps -175.38 13.50 175.38 17.00 MacLine -175.38 242.50 175.38 239.00 MacLine -1 ps -1.00 ps -165.25 13.50 165.25 17.00 MacLine -165.25 242.50 165.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -155.50 235.50 155.50 20.50 MacLine -grestore -1.00 ps -155.12 13.50 155.12 20.50 MacLine -155.12 242.50 155.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 151.25 259.88 8.88 WS -1.00 ps -145.00 13.50 145.00 17.00 MacLine -145.00 242.50 145.00 239.00 MacLine -1 ps -1.00 ps -134.75 13.50 134.75 17.00 MacLine -134.75 242.50 134.75 239.00 MacLine -1 ps -1.00 ps -124.62 13.50 124.62 17.00 MacLine -124.62 242.50 124.62 239.00 MacLine -1 ps -1.00 ps -114.50 13.50 114.50 17.00 MacLine -114.50 242.50 114.50 239.00 MacLine -1 ps -1.00 ps -104.25 13.50 104.25 18.75 MacLine -104.25 242.50 104.25 237.25 MacLine -1 ps -1.00 ps -94.12 13.50 94.12 17.00 MacLine -94.12 242.50 94.12 239.00 MacLine -1 ps -1.00 ps -84.00 13.50 84.00 17.00 MacLine -84.00 242.50 84.00 239.00 MacLine -1 ps -1.00 ps -73.88 13.50 73.88 17.00 MacLine -73.88 242.50 73.88 239.00 MacLine -1 ps -1.00 ps -63.62 13.50 63.62 17.00 MacLine -63.62 242.50 63.62 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(10) 262.50 284.38 63.12 WS -11.25 (_Helvetica) 0 F -(-3) 325.62 276.00 10.00 WS -16.00 (_Helvetica) 0 F -( s\)) 335.62 284.38 17.88 WS -1.00 ps -newpath 59.12 235.38 M -64.12 228.00 L -69.25 220.88 L -74.38 213.75 L -79.38 206.88 L -84.50 200.12 L -89.62 193.75 L -94.62 187.38 L -99.75 181.12 L -104.75 175.00 L -109.88 169.25 L -115.00 163.50 L -120.00 158.00 L -125.12 152.62 L -130.25 147.38 L -135.25 142.38 L -140.38 137.50 L -145.50 132.75 L -150.50 128.25 L -155.62 123.88 L -160.62 119.75 L -165.75 115.75 L -170.88 111.88 L -176.00 108.12 L -181.00 104.62 L -186.12 101.25 L -191.12 98.12 L -196.25 95.12 L -201.25 92.25 L -206.38 89.62 L -211.50 87.12 L -216.62 84.75 L -221.62 82.50 L -226.75 80.50 L -231.88 78.75 L -236.88 77.00 L -242.00 75.50 L -247.00 74.25 L -252.12 73.00 L -257.25 72.00 L -262.25 71.25 L -267.38 70.50 L -272.50 70.00 L -277.50 69.75 L -282.62 69.50 L -287.62 69.50 L -292.75 69.75 L -297.88 70.12 L -302.88 70.62 L -308.00 71.25 L -313.00 72.12 L -318.12 73.12 L -323.12 74.38 L -328.25 75.62 L -333.38 77.12 L -338.50 78.88 L -343.50 80.75 L -348.62 82.75 L -353.62 84.88 L -358.75 87.25 L -363.75 89.75 L -368.88 92.50 L -374.00 95.38 L -379.12 98.38 L -384.12 101.62 L -389.25 105.00 L -394.38 108.50 L -399.38 112.25 L -404.50 116.12 L -409.50 120.12 L -414.62 124.38 L -419.75 128.62 L -424.75 133.25 L -429.88 138.00 L -435.00 142.88 L -440.00 147.88 L -445.12 153.12 L -450.12 158.50 L -455.25 164.00 L -460.38 169.75 L -465.38 175.62 L -470.50 181.62 L -475.62 187.88 L -480.75 194.25 L -485.75 200.75 L -490.88 207.50 L -495.88 214.38 L -501.00 221.50 L -506.00 228.75 L -511.12 236.12 L -515.75 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av2.gif deleted file mode 100755 index 8f6dc0a32..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av3.eps deleted file mode 100755 index 5af887df8..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av3.eps +++ /dev/null @@ -1,921 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_J3 -%%Creation Date: 14 May, 1996 12:56 PM -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(8000) 14.50 18.38 35.50 WS -gsave 0.125 ps [1] sd -57.00 19.75 558.00 19.75 MacLine -grestore -1.00 ps -561.50 19.25 558.00 19.25 MacLine -53.50 19.25 57.00 19.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 31.12 558.00 31.12 MacLine -grestore -1.00 ps -561.50 30.62 558.00 30.62 MacLine -53.50 30.62 57.00 30.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -58.75 42.62 556.25 42.62 MacLine -grestore -1.00 ps -561.50 42.12 556.25 42.12 MacLine -53.50 42.12 58.75 42.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 54.12 558.00 54.12 MacLine -grestore -1.00 ps -561.50 53.62 558.00 53.62 MacLine -53.50 53.62 57.00 53.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 65.50 558.00 65.50 MacLine -grestore -1.00 ps -561.50 65.00 558.00 65.00 MacLine -53.50 65.00 57.00 65.00 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -53.50 70.75 60.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6000) 14.50 75.62 35.50 WS -gsave 0.125 ps [1] sd -57.00 77.00 558.00 77.00 MacLine -grestore -1.00 ps -561.50 76.50 558.00 76.50 MacLine -53.50 76.50 57.00 76.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 88.38 558.00 88.38 MacLine -grestore -1.00 ps -561.50 87.88 558.00 87.88 MacLine -53.50 87.88 57.00 87.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -58.75 99.88 556.25 99.88 MacLine -grestore -1.00 ps -561.50 99.38 556.25 99.38 MacLine -53.50 99.38 58.75 99.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 111.38 558.00 111.38 MacLine -grestore -1.00 ps -561.50 110.88 558.00 110.88 MacLine -53.50 110.88 57.00 110.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 122.75 558.00 122.75 MacLine -grestore -1.00 ps -561.50 122.25 558.00 122.25 MacLine -53.50 122.25 57.00 122.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -53.50 128.00 60.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4000) 14.50 132.88 35.50 WS -gsave 0.125 ps [1] sd -57.00 134.25 558.00 134.25 MacLine -grestore -1.00 ps -561.50 133.75 558.00 133.75 MacLine -53.50 133.75 57.00 133.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 145.62 558.00 145.62 MacLine -grestore -1.00 ps -561.50 145.12 558.00 145.12 MacLine -53.50 145.12 57.00 145.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -58.75 157.12 556.25 157.12 MacLine -grestore -1.00 ps -561.50 156.62 556.25 156.62 MacLine -53.50 156.62 58.75 156.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 168.62 558.00 168.62 MacLine -grestore -1.00 ps -561.50 168.12 558.00 168.12 MacLine -53.50 168.12 57.00 168.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 180.00 558.00 180.00 MacLine -grestore -1.00 ps -561.50 179.50 558.00 179.50 MacLine -53.50 179.50 57.00 179.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -53.50 185.25 60.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2000) 14.50 190.12 35.50 WS -gsave 0.125 ps [1] sd -57.00 191.50 558.00 191.50 MacLine -grestore -1.00 ps -561.50 191.00 558.00 191.00 MacLine -53.50 191.00 57.00 191.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 202.88 558.00 202.88 MacLine -grestore -1.00 ps -561.50 202.38 558.00 202.38 MacLine -53.50 202.38 57.00 202.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -58.75 214.38 556.25 214.38 MacLine -grestore -1.00 ps -561.50 213.88 556.25 213.88 MacLine -53.50 213.88 58.75 213.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 225.88 558.00 225.88 MacLine -grestore -1.00 ps -561.50 225.38 558.00 225.38 MacLine -53.50 225.38 57.00 225.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 237.25 558.00 237.25 MacLine -grestore -1.00 ps -561.50 236.75 558.00 236.75 MacLine -53.50 236.75 57.00 236.75 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 164.50 translate -90 rotate -(Force \( ) 0.00 0.00 55.25 WS -grestore -16.00 (_Helvetica) 0 F -gsave 12.38 109.25 translate -90 rotate -(N\)) 0.00 0.00 16.88 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 557.62 259.88 8.88 WS -1.00 ps -548.75 13.50 548.75 17.00 MacLine -548.75 242.50 548.75 239.00 MacLine -1 ps -1.00 ps -536.12 13.50 536.12 17.00 MacLine -536.12 242.50 536.12 239.00 MacLine -1 ps -1.00 ps -523.38 13.50 523.38 17.00 MacLine -523.38 242.50 523.38 239.00 MacLine -1 ps -1.00 ps -510.75 13.50 510.75 17.00 MacLine -510.75 242.50 510.75 239.00 MacLine -1 ps -1.00 ps -498.00 13.50 498.00 18.75 MacLine -498.00 242.50 498.00 237.25 MacLine -1 ps -1.00 ps -485.25 13.50 485.25 17.00 MacLine -485.25 242.50 485.25 239.00 MacLine -1 ps -1.00 ps -472.62 13.50 472.62 17.00 MacLine -472.62 242.50 472.62 239.00 MacLine -1 ps -1.00 ps -459.88 13.50 459.88 17.00 MacLine -459.88 242.50 459.88 239.00 MacLine -1 ps -1.00 ps -447.25 13.50 447.25 17.00 MacLine -447.25 242.50 447.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 430.62 259.88 8.88 WS -1.00 ps -421.75 13.50 421.75 17.00 MacLine -421.75 242.50 421.75 239.00 MacLine -1 ps -1.00 ps -409.12 13.50 409.12 17.00 MacLine -409.12 242.50 409.12 239.00 MacLine -1 ps -1.00 ps -396.38 13.50 396.38 17.00 MacLine -396.38 242.50 396.38 239.00 MacLine -1 ps -1.00 ps -383.75 13.50 383.75 17.00 MacLine -383.75 242.50 383.75 239.00 MacLine -1 ps -1.00 ps -371.00 13.50 371.00 18.75 MacLine -371.00 242.50 371.00 237.25 MacLine -1 ps -1.00 ps -358.25 13.50 358.25 17.00 MacLine -358.25 242.50 358.25 239.00 MacLine -1 ps -1.00 ps -345.62 13.50 345.62 17.00 MacLine -345.62 242.50 345.62 239.00 MacLine -1 ps -1.00 ps -332.88 13.50 332.88 17.00 MacLine -332.88 242.50 332.88 239.00 MacLine -1 ps -1.00 ps -320.25 13.50 320.25 17.00 MacLine -320.25 242.50 320.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 303.62 259.88 8.88 WS -1.00 ps -294.75 13.50 294.75 17.00 MacLine -294.75 242.50 294.75 239.00 MacLine -1 ps -1.00 ps -282.12 13.50 282.12 17.00 MacLine -282.12 242.50 282.12 239.00 MacLine -1 ps -1.00 ps -269.38 13.50 269.38 17.00 MacLine -269.38 242.50 269.38 239.00 MacLine -1 ps -1.00 ps -256.75 13.50 256.75 17.00 MacLine -256.75 242.50 256.75 239.00 MacLine -1 ps -1.00 ps -244.00 13.50 244.00 18.75 MacLine -244.00 242.50 244.00 237.25 MacLine -1 ps -1.00 ps -231.25 13.50 231.25 17.00 MacLine -231.25 242.50 231.25 239.00 MacLine -1 ps -1.00 ps -218.62 13.50 218.62 17.00 MacLine -218.62 242.50 218.62 239.00 MacLine -1 ps -1.00 ps -205.88 13.50 205.88 17.00 MacLine -205.88 242.50 205.88 239.00 MacLine -1 ps -1.00 ps -193.25 13.50 193.25 17.00 MacLine -193.25 242.50 193.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 176.62 259.88 8.88 WS -1.00 ps -167.75 13.50 167.75 17.00 MacLine -167.75 242.50 167.75 239.00 MacLine -1 ps -1.00 ps -155.12 13.50 155.12 17.00 MacLine -155.12 242.50 155.12 239.00 MacLine -1 ps -1.00 ps -142.38 13.50 142.38 17.00 MacLine -142.38 242.50 142.38 239.00 MacLine -1 ps -1.00 ps -129.75 13.50 129.75 17.00 MacLine -129.75 242.50 129.75 239.00 MacLine -1 ps -1.00 ps -117.00 13.50 117.00 18.75 MacLine -117.00 242.50 117.00 237.25 MacLine -1 ps -1.00 ps -104.25 13.50 104.25 17.00 MacLine -104.25 242.50 104.25 239.00 MacLine -1 ps -1.00 ps -91.62 13.50 91.62 17.00 MacLine -91.62 242.50 91.62 239.00 MacLine -1 ps -1.00 ps -78.88 13.50 78.88 17.00 MacLine -78.88 242.50 78.88 239.00 MacLine -1 ps -1.00 ps -66.25 13.50 66.25 17.00 MacLine -66.25 242.50 66.25 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(10) 262.50 284.38 63.12 WS -11.25 (_Helvetica) 0 F -(-3) 325.62 276.00 10.00 WS -16.00 (_Helvetica) 0 F -( s\)) 335.62 284.38 17.88 WS -1.00 ps -newpath 60.38 231.75 M -66.62 220.75 L -73.00 210.12 L -79.38 199.75 L -85.75 189.75 L -92.12 180.12 L -98.38 170.88 L -104.75 161.88 L -111.12 153.12 L -117.50 144.75 L -123.88 136.75 L -130.25 129.12 L -136.50 121.75 L -142.88 114.75 L -149.25 108.00 L -155.62 101.62 L -161.88 95.50 L -168.25 89.75 L -174.62 84.38 L -181.00 79.25 L -187.25 74.50 L -193.62 70.12 L -200.00 66.00 L -206.38 62.25 L -212.75 58.75 L -219.00 55.62 L -225.38 52.75 L -231.75 50.38 L -238.12 48.25 L -244.50 46.38 L -250.88 44.88 L -257.25 43.62 L -263.50 42.88 L -269.88 42.38 L -276.25 42.12 L -282.62 42.25 L -288.88 42.75 L -295.25 43.50 L -301.62 44.62 L -308.00 46.12 L -314.25 47.88 L -320.62 49.88 L -327.00 52.38 L -333.38 55.12 L -339.75 58.12 L -346.00 61.62 L -352.38 65.25 L -358.75 69.38 L -365.12 73.75 L -371.50 78.38 L -377.75 83.50 L -384.12 88.75 L -390.38 94.50 L -396.75 100.50 L -403.12 106.88 L -409.50 113.50 L -415.88 120.50 L -422.12 127.75 L -428.50 135.38 L -434.88 143.38 L -441.25 151.62 L -447.62 160.25 L -454.00 169.25 L -460.38 178.50 L -466.62 188.12 L -473.00 198.00 L -479.38 208.25 L -485.75 218.88 L -492.00 229.75 L -498.38 241.00 L -499.38 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av3.gif deleted file mode 100755 index 7a4dfc6aa..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av4.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av4.eps deleted file mode 100755 index 752523fd4..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av4.eps +++ /dev/null @@ -1,854 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_J4 -%%Creation Date: 14 May, 1996 12:56 PM -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(6000) 14.50 18.38 35.50 WS -gsave 0.125 ps [1] sd -57.00 21.62 558.00 21.62 MacLine -grestore -1.00 ps -561.50 21.12 558.00 21.12 MacLine -53.50 21.12 57.00 21.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 29.25 558.00 29.25 MacLine -grestore -1.00 ps -561.50 28.75 558.00 28.75 MacLine -53.50 28.75 57.00 28.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 44.50 558.00 44.50 MacLine -grestore -1.00 ps -561.50 44.00 558.00 44.00 MacLine -53.50 44.00 57.00 44.00 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 52.00 554.50 52.00 MacLine -grestore -1.00 ps -561.50 51.62 554.50 51.62 MacLine -53.50 51.62 60.50 51.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5000) 14.50 56.50 35.50 WS -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 67.38 558.00 67.38 MacLine -grestore -1.00 ps -561.50 66.88 558.00 66.88 MacLine -53.50 66.88 57.00 66.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 75.12 558.00 75.12 MacLine -grestore -1.00 ps -561.50 74.62 558.00 74.62 MacLine -53.50 74.62 57.00 74.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 90.25 554.50 90.25 MacLine -grestore -1.00 ps -561.50 89.88 554.50 89.88 MacLine -53.50 89.88 60.50 89.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4000) 14.50 94.75 35.50 WS -gsave 0.125 ps [1] sd -57.00 98.00 558.00 98.00 MacLine -grestore -1.00 ps -561.50 97.50 558.00 97.50 MacLine -53.50 97.50 57.00 97.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 113.25 558.00 113.25 MacLine -grestore -1.00 ps -561.50 112.75 558.00 112.75 MacLine -53.50 112.75 57.00 112.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 120.88 558.00 120.88 MacLine -grestore -1.00 ps -561.50 120.38 558.00 120.38 MacLine -53.50 120.38 57.00 120.38 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -53.50 128.00 60.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(3000) 14.50 132.88 35.50 WS -gsave 0.125 ps [1] sd -57.00 136.12 558.00 136.12 MacLine -grestore -1.00 ps -561.50 135.62 558.00 135.62 MacLine -53.50 135.62 57.00 135.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 143.75 558.00 143.75 MacLine -grestore -1.00 ps -561.50 143.25 558.00 143.25 MacLine -53.50 143.25 57.00 143.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 159.00 558.00 159.00 MacLine -grestore -1.00 ps -561.50 158.50 558.00 158.50 MacLine -53.50 158.50 57.00 158.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 166.50 554.50 166.50 MacLine -grestore -1.00 ps -561.50 166.12 554.50 166.12 MacLine -53.50 166.12 60.50 166.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2000) 14.50 171.00 35.50 WS -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 181.88 558.00 181.88 MacLine -grestore -1.00 ps -561.50 181.38 558.00 181.38 MacLine -53.50 181.38 57.00 181.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 189.62 558.00 189.62 MacLine -grestore -1.00 ps -561.50 189.12 558.00 189.12 MacLine -53.50 189.12 57.00 189.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 204.75 554.50 204.75 MacLine -grestore -1.00 ps -561.50 204.38 554.50 204.38 MacLine -53.50 204.38 60.50 204.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1000) 14.50 209.25 35.50 WS -gsave 0.125 ps [1] sd -57.00 212.50 558.00 212.50 MacLine -grestore -1.00 ps -561.50 212.00 558.00 212.00 MacLine -53.50 212.00 57.00 212.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 227.75 558.00 227.75 MacLine -grestore -1.00 ps -561.50 227.25 558.00 227.25 MacLine -53.50 227.25 57.00 227.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 235.38 558.00 235.38 MacLine -grestore -1.00 ps -561.50 234.88 558.00 234.88 MacLine -53.50 234.88 57.00 234.88 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 164.50 translate -90 rotate -(Force \( ) 0.00 0.00 55.25 WS -grestore -16.00 (_Helvetica) 0 F -gsave 12.38 109.25 translate -90 rotate -(N\)) 0.00 0.00 16.88 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 557.62 259.88 8.88 WS -1.00 ps -548.75 13.50 548.75 17.00 MacLine -548.75 242.50 548.75 239.00 MacLine -1 ps -1.00 ps -536.12 13.50 536.12 17.00 MacLine -536.12 242.50 536.12 239.00 MacLine -1 ps -1.00 ps -523.38 13.50 523.38 17.00 MacLine -523.38 242.50 523.38 239.00 MacLine -1 ps -1.00 ps -510.75 13.50 510.75 17.00 MacLine -510.75 242.50 510.75 239.00 MacLine -1 ps -1.00 ps -498.00 13.50 498.00 18.75 MacLine -498.00 242.50 498.00 237.25 MacLine -1 ps -1.00 ps -485.25 13.50 485.25 17.00 MacLine -485.25 242.50 485.25 239.00 MacLine -1 ps -1.00 ps -472.62 13.50 472.62 17.00 MacLine -472.62 242.50 472.62 239.00 MacLine -1 ps -1.00 ps -459.88 13.50 459.88 17.00 MacLine -459.88 242.50 459.88 239.00 MacLine -1 ps -1.00 ps -447.25 13.50 447.25 17.00 MacLine -447.25 242.50 447.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 430.62 259.88 8.88 WS -1.00 ps -421.75 13.50 421.75 17.00 MacLine -421.75 242.50 421.75 239.00 MacLine -1 ps -1.00 ps -409.12 13.50 409.12 17.00 MacLine -409.12 242.50 409.12 239.00 MacLine -1 ps -1.00 ps -396.38 13.50 396.38 17.00 MacLine -396.38 242.50 396.38 239.00 MacLine -1 ps -1.00 ps -383.75 13.50 383.75 17.00 MacLine -383.75 242.50 383.75 239.00 MacLine -1 ps -1.00 ps -371.00 13.50 371.00 18.75 MacLine -371.00 242.50 371.00 237.25 MacLine -1 ps -1.00 ps -358.25 13.50 358.25 17.00 MacLine -358.25 242.50 358.25 239.00 MacLine -1 ps -1.00 ps -345.62 13.50 345.62 17.00 MacLine -345.62 242.50 345.62 239.00 MacLine -1 ps -1.00 ps -332.88 13.50 332.88 17.00 MacLine -332.88 242.50 332.88 239.00 MacLine -1 ps -1.00 ps -320.25 13.50 320.25 17.00 MacLine -320.25 242.50 320.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 303.62 259.88 8.88 WS -1.00 ps -294.75 13.50 294.75 17.00 MacLine -294.75 242.50 294.75 239.00 MacLine -1 ps -1.00 ps -282.12 13.50 282.12 17.00 MacLine -282.12 242.50 282.12 239.00 MacLine -1 ps -1.00 ps -269.38 13.50 269.38 17.00 MacLine -269.38 242.50 269.38 239.00 MacLine -1 ps -1.00 ps -256.75 13.50 256.75 17.00 MacLine -256.75 242.50 256.75 239.00 MacLine -1 ps -1.00 ps -244.00 13.50 244.00 18.75 MacLine -244.00 242.50 244.00 237.25 MacLine -1 ps -1.00 ps -231.25 13.50 231.25 17.00 MacLine -231.25 242.50 231.25 239.00 MacLine -1 ps -1.00 ps -218.62 13.50 218.62 17.00 MacLine -218.62 242.50 218.62 239.00 MacLine -1 ps -1.00 ps -205.88 13.50 205.88 17.00 MacLine -205.88 242.50 205.88 239.00 MacLine -1 ps -1.00 ps -193.25 13.50 193.25 17.00 MacLine -193.25 242.50 193.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 176.62 259.88 8.88 WS -1.00 ps -167.75 13.50 167.75 17.00 MacLine -167.75 242.50 167.75 239.00 MacLine -1 ps -1.00 ps -155.12 13.50 155.12 17.00 MacLine -155.12 242.50 155.12 239.00 MacLine -1 ps -1.00 ps -142.38 13.50 142.38 17.00 MacLine -142.38 242.50 142.38 239.00 MacLine -1 ps -1.00 ps -129.75 13.50 129.75 17.00 MacLine -129.75 242.50 129.75 239.00 MacLine -1 ps -1.00 ps -117.00 13.50 117.00 18.75 MacLine -117.00 242.50 117.00 237.25 MacLine -1 ps -1.00 ps -104.25 13.50 104.25 17.00 MacLine -104.25 242.50 104.25 239.00 MacLine -1 ps -1.00 ps -91.62 13.50 91.62 17.00 MacLine -91.62 242.50 91.62 239.00 MacLine -1 ps -1.00 ps -78.88 13.50 78.88 17.00 MacLine -78.88 242.50 78.88 239.00 MacLine -1 ps -1.00 ps -66.25 13.50 66.25 17.00 MacLine -66.25 242.50 66.25 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(10) 262.50 284.38 63.12 WS -11.25 (_Helvetica) 0 F -(-3) 325.62 276.00 10.00 WS -16.00 (_Helvetica) 0 F -( s\)) 335.62 284.38 17.88 WS -1.00 ps -newpath 60.38 231.75 M -66.62 220.75 L -73.00 210.12 L -79.38 199.75 L -85.75 189.88 L -92.12 180.12 L -98.38 170.88 L -104.75 161.88 L -111.12 153.25 L -117.50 144.88 L -123.88 136.88 L -130.25 129.25 L -136.50 121.88 L -142.88 114.88 L -149.25 108.12 L -155.62 101.88 L -161.88 95.75 L -168.25 90.12 L -174.62 84.75 L -181.00 79.62 L -187.25 75.00 L -193.62 70.50 L -200.00 66.50 L -206.38 62.75 L -212.75 59.38 L -219.00 56.25 L -225.38 53.50 L -231.75 51.12 L -238.12 49.00 L -244.50 47.25 L -250.88 45.75 L -257.25 44.62 L -263.50 43.88 L -269.88 43.38 L -276.25 43.25 L -282.62 43.50 L -288.88 44.00 L -295.25 44.88 L -301.62 46.12 L -308.00 47.62 L -314.25 49.50 L -320.62 51.62 L -327.00 54.12 L -333.38 56.88 L -339.75 60.12 L -346.00 63.62 L -352.38 67.38 L -358.75 71.50 L -365.12 76.00 L -371.50 80.75 L -377.75 85.88 L -384.12 91.38 L -390.38 97.12 L -396.75 103.25 L -403.12 109.75 L -409.50 116.50 L -415.88 123.62 L -422.12 131.00 L -428.50 138.75 L -434.88 146.75 L -441.25 155.25 L -447.62 164.00 L -454.00 173.00 L -460.38 182.38 L -466.62 192.12 L -473.00 202.12 L -479.38 212.50 L -485.75 223.25 L -492.00 234.25 L -496.88 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av4.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av4.gif deleted file mode 100755 index bfbda65a1..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av4.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av5.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av5.eps deleted file mode 100755 index 4962a05f6..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av5.eps +++ /dev/null @@ -1,1026 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_J5 -%%Creation Date: 14 May, 1996 12:56 PM -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 556.25 13.50 MacLine -53.50 13.50 58.75 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 19.12 558.00 19.12 MacLine -grestore -1.00 ps -561.50 18.62 558.00 18.62 MacLine -53.50 18.62 57.00 18.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 24.12 558.00 24.12 MacLine -grestore -1.00 ps -561.50 23.62 558.00 23.62 MacLine -53.50 23.62 57.00 23.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 29.25 558.00 29.25 MacLine -grestore -1.00 ps -561.50 28.75 558.00 28.75 MacLine -53.50 28.75 57.00 28.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 34.38 558.00 34.38 MacLine -grestore -1.00 ps -561.50 33.88 558.00 33.88 MacLine -53.50 33.88 57.00 33.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 39.38 554.50 39.38 MacLine -grestore -1.00 ps -561.50 39.00 554.50 39.00 MacLine -53.50 39.00 60.50 39.00 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(8000) 14.50 43.88 35.50 WS -gsave 0.125 ps [1] sd -57.00 44.50 558.00 44.50 MacLine -grestore -1.00 ps -561.50 44.00 558.00 44.00 MacLine -53.50 44.00 57.00 44.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 49.62 558.00 49.62 MacLine -grestore -1.00 ps -561.50 49.12 558.00 49.12 MacLine -53.50 49.12 57.00 49.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 54.75 558.00 54.75 MacLine -grestore -1.00 ps -561.50 54.25 558.00 54.25 MacLine -53.50 54.25 57.00 54.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -58.75 64.88 556.25 64.88 MacLine -grestore -1.00 ps -561.50 64.38 556.25 64.38 MacLine -53.50 64.38 58.75 64.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 70.00 558.00 70.00 MacLine -grestore -1.00 ps -561.50 69.50 558.00 69.50 MacLine -53.50 69.50 57.00 69.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 75.12 558.00 75.12 MacLine -grestore -1.00 ps -561.50 74.62 558.00 74.62 MacLine -53.50 74.62 57.00 74.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 80.12 558.00 80.12 MacLine -grestore -1.00 ps -561.50 79.62 558.00 79.62 MacLine -53.50 79.62 57.00 79.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 85.25 558.00 85.25 MacLine -grestore -1.00 ps -561.50 84.75 558.00 84.75 MacLine -53.50 84.75 57.00 84.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 90.25 554.50 90.25 MacLine -grestore -1.00 ps -561.50 89.88 554.50 89.88 MacLine -53.50 89.88 60.50 89.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6000) 14.50 94.75 35.50 WS -gsave 0.125 ps [1] sd -57.00 95.38 558.00 95.38 MacLine -grestore -1.00 ps -561.50 94.88 558.00 94.88 MacLine -53.50 94.88 57.00 94.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 100.50 558.00 100.50 MacLine -grestore -1.00 ps -561.50 100.00 558.00 100.00 MacLine -53.50 100.00 57.00 100.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 110.75 558.00 110.75 MacLine -grestore -1.00 ps -561.50 110.25 558.00 110.25 MacLine -53.50 110.25 57.00 110.25 MacLine -1 ps -gsave 0.125 ps [1] sd -58.75 115.75 556.25 115.75 MacLine -grestore -1.00 ps -561.50 115.25 556.25 115.25 MacLine -53.50 115.25 58.75 115.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 120.88 558.00 120.88 MacLine -grestore -1.00 ps -561.50 120.38 558.00 120.38 MacLine -53.50 120.38 57.00 120.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 126.00 558.00 126.00 MacLine -grestore -1.00 ps -561.50 125.50 558.00 125.50 MacLine -53.50 125.50 57.00 125.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 131.00 558.00 131.00 MacLine -grestore -1.00 ps -561.50 130.50 558.00 130.50 MacLine -53.50 130.50 57.00 130.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 136.12 558.00 136.12 MacLine -grestore -1.00 ps -561.50 135.62 558.00 135.62 MacLine -53.50 135.62 57.00 135.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 141.12 554.50 141.12 MacLine -grestore -1.00 ps -561.50 140.75 554.50 140.75 MacLine -53.50 140.75 60.50 140.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4000) 14.50 145.62 35.50 WS -gsave 0.125 ps [1] sd -57.00 146.25 558.00 146.25 MacLine -grestore -1.00 ps -561.50 145.75 558.00 145.75 MacLine -53.50 145.75 57.00 145.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 156.50 558.00 156.50 MacLine -grestore -1.00 ps -561.50 156.00 558.00 156.00 MacLine -53.50 156.00 57.00 156.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 161.62 558.00 161.62 MacLine -grestore -1.00 ps -561.50 161.12 558.00 161.12 MacLine -53.50 161.12 57.00 161.12 MacLine -1 ps -gsave 0.125 ps [1] sd -58.75 166.62 556.25 166.62 MacLine -grestore -1.00 ps -561.50 166.12 556.25 166.12 MacLine -53.50 166.12 58.75 166.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 171.75 558.00 171.75 MacLine -grestore -1.00 ps -561.50 171.25 558.00 171.25 MacLine -53.50 171.25 57.00 171.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 176.88 558.00 176.88 MacLine -grestore -1.00 ps -561.50 176.38 558.00 176.38 MacLine -53.50 176.38 57.00 176.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 181.88 558.00 181.88 MacLine -grestore -1.00 ps -561.50 181.38 558.00 181.38 MacLine -53.50 181.38 57.00 181.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 187.00 558.00 187.00 MacLine -grestore -1.00 ps -561.50 186.50 558.00 186.50 MacLine -53.50 186.50 57.00 186.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 192.00 554.50 192.00 MacLine -grestore -1.00 ps -561.50 191.62 554.50 191.62 MacLine -53.50 191.62 60.50 191.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2000) 14.50 196.50 35.50 WS -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 202.25 558.00 202.25 MacLine -grestore -1.00 ps -561.50 201.75 558.00 201.75 MacLine -53.50 201.75 57.00 201.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 207.38 558.00 207.38 MacLine -grestore -1.00 ps -561.50 206.88 558.00 206.88 MacLine -53.50 206.88 57.00 206.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 212.50 558.00 212.50 MacLine -grestore -1.00 ps -561.50 212.00 558.00 212.00 MacLine -53.50 212.00 57.00 212.00 MacLine -1 ps -gsave 0.125 ps [1] sd -58.75 217.50 556.25 217.50 MacLine -grestore -1.00 ps -561.50 217.00 556.25 217.00 MacLine -53.50 217.00 58.75 217.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 222.62 558.00 222.62 MacLine -grestore -1.00 ps -561.50 222.12 558.00 222.12 MacLine -53.50 222.12 57.00 222.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 227.75 558.00 227.75 MacLine -grestore -1.00 ps -561.50 227.25 558.00 227.25 MacLine -53.50 227.25 57.00 227.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 232.88 558.00 232.88 MacLine -grestore -1.00 ps -561.50 232.38 558.00 232.38 MacLine -53.50 232.38 57.00 232.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 237.88 558.00 237.88 MacLine -grestore -1.00 ps -561.50 237.38 558.00 237.38 MacLine -53.50 237.38 57.00 237.38 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 164.50 translate -90 rotate -(Force \( ) 0.00 0.00 55.25 WS -grestore -16.00 (_Helvetica) 0 F -gsave 12.38 109.25 translate -90 rotate -(N\)) 0.00 0.00 16.88 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 557.62 259.88 8.88 WS -1.00 ps -553.00 13.50 553.00 17.00 MacLine -553.00 242.50 553.00 239.00 MacLine -1 ps -1.00 ps -544.62 13.50 544.62 17.00 MacLine -544.62 242.50 544.62 239.00 MacLine -1 ps -1.00 ps -536.12 13.50 536.12 17.00 MacLine -536.12 242.50 536.12 239.00 MacLine -1 ps -1.00 ps -527.62 13.50 527.62 17.00 MacLine -527.62 242.50 527.62 239.00 MacLine -1 ps -1.00 ps -519.12 13.50 519.12 18.75 MacLine -519.12 242.50 519.12 237.25 MacLine -1 ps -1.00 ps -510.75 13.50 510.75 17.00 MacLine -510.75 242.50 510.75 239.00 MacLine -1 ps -1.00 ps -502.25 13.50 502.25 17.00 MacLine -502.25 242.50 502.25 239.00 MacLine -1 ps -1.00 ps -493.75 13.50 493.75 17.00 MacLine -493.75 242.50 493.75 239.00 MacLine -1 ps -1.00 ps -485.25 13.50 485.25 17.00 MacLine -485.25 242.50 485.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 473.00 259.88 8.88 WS -1.00 ps -468.38 13.50 468.38 17.00 MacLine -468.38 242.50 468.38 239.00 MacLine -1 ps -1.00 ps -459.88 13.50 459.88 17.00 MacLine -459.88 242.50 459.88 239.00 MacLine -1 ps -1.00 ps -451.38 13.50 451.38 17.00 MacLine -451.38 242.50 451.38 239.00 MacLine -1 ps -1.00 ps -443.00 13.50 443.00 17.00 MacLine -443.00 242.50 443.00 239.00 MacLine -1 ps -1.00 ps -434.50 13.50 434.50 18.75 MacLine -434.50 242.50 434.50 237.25 MacLine -1 ps -1.00 ps -426.00 13.50 426.00 17.00 MacLine -426.00 242.50 426.00 239.00 MacLine -1 ps -1.00 ps -417.62 13.50 417.62 17.00 MacLine -417.62 242.50 417.62 239.00 MacLine -1 ps -1.00 ps -409.12 13.50 409.12 17.00 MacLine -409.12 242.50 409.12 239.00 MacLine -1 ps -1.00 ps -400.62 13.50 400.62 17.00 MacLine -400.62 242.50 400.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -392.50 235.50 392.50 20.50 MacLine -grestore -1.00 ps -392.12 13.50 392.12 20.50 MacLine -392.12 242.50 392.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 388.25 259.88 8.88 WS -1.00 ps -383.75 13.50 383.75 17.00 MacLine -383.75 242.50 383.75 239.00 MacLine -1 ps -1.00 ps -375.25 13.50 375.25 17.00 MacLine -375.25 242.50 375.25 239.00 MacLine -1 ps -1.00 ps -366.75 13.50 366.75 17.00 MacLine -366.75 242.50 366.75 239.00 MacLine -1 ps -1.00 ps -358.25 13.50 358.25 17.00 MacLine -358.25 242.50 358.25 239.00 MacLine -1 ps -1.00 ps -349.88 13.50 349.88 18.75 MacLine -349.88 242.50 349.88 237.25 MacLine -1 ps -1.00 ps -341.38 13.50 341.38 17.00 MacLine -341.38 242.50 341.38 239.00 MacLine -1 ps -1.00 ps -332.88 13.50 332.88 17.00 MacLine -332.88 242.50 332.88 239.00 MacLine -1 ps -1.00 ps -324.38 13.50 324.38 17.00 MacLine -324.38 242.50 324.38 239.00 MacLine -1 ps -1.00 ps -316.00 13.50 316.00 17.00 MacLine -316.00 242.50 316.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(3) 303.62 259.88 8.88 WS -1.00 ps -299.00 13.50 299.00 17.00 MacLine -299.00 242.50 299.00 239.00 MacLine -1 ps -1.00 ps -290.62 13.50 290.62 17.00 MacLine -290.62 242.50 290.62 239.00 MacLine -1 ps -1.00 ps -282.12 13.50 282.12 17.00 MacLine -282.12 242.50 282.12 239.00 MacLine -1 ps -1.00 ps -273.62 13.50 273.62 17.00 MacLine -273.62 242.50 273.62 239.00 MacLine -1 ps -1.00 ps -265.12 13.50 265.12 18.75 MacLine -265.12 242.50 265.12 237.25 MacLine -1 ps -1.00 ps -256.75 13.50 256.75 17.00 MacLine -256.75 242.50 256.75 239.00 MacLine -1 ps -1.00 ps -248.25 13.50 248.25 17.00 MacLine -248.25 242.50 248.25 239.00 MacLine -1 ps -1.00 ps -239.75 13.50 239.75 17.00 MacLine -239.75 242.50 239.75 239.00 MacLine -1 ps -1.00 ps -231.25 13.50 231.25 17.00 MacLine -231.25 242.50 231.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 219.00 259.88 8.88 WS -1.00 ps -214.38 13.50 214.38 17.00 MacLine -214.38 242.50 214.38 239.00 MacLine -1 ps -1.00 ps -205.88 13.50 205.88 17.00 MacLine -205.88 242.50 205.88 239.00 MacLine -1 ps -1.00 ps -197.38 13.50 197.38 17.00 MacLine -197.38 242.50 197.38 239.00 MacLine -1 ps -1.00 ps -189.00 13.50 189.00 17.00 MacLine -189.00 242.50 189.00 239.00 MacLine -1 ps -1.00 ps -180.50 13.50 180.50 18.75 MacLine -180.50 242.50 180.50 237.25 MacLine -1 ps -1.00 ps -172.00 13.50 172.00 17.00 MacLine -172.00 242.50 172.00 239.00 MacLine -1 ps -1.00 ps -163.62 13.50 163.62 17.00 MacLine -163.62 242.50 163.62 239.00 MacLine -1 ps -1.00 ps -155.12 13.50 155.12 17.00 MacLine -155.12 242.50 155.12 239.00 MacLine -1 ps -1.00 ps -146.62 13.50 146.62 17.00 MacLine -146.62 242.50 146.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -138.50 235.50 138.50 20.50 MacLine -grestore -1.00 ps -138.12 13.50 138.12 20.50 MacLine -138.12 242.50 138.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1) 134.25 259.88 8.88 WS -1.00 ps -129.75 13.50 129.75 17.00 MacLine -129.75 242.50 129.75 239.00 MacLine -1 ps -1.00 ps -121.25 13.50 121.25 17.00 MacLine -121.25 242.50 121.25 239.00 MacLine -1 ps -1.00 ps -112.75 13.50 112.75 17.00 MacLine -112.75 242.50 112.75 239.00 MacLine -1 ps -1.00 ps -104.25 13.50 104.25 17.00 MacLine -104.25 242.50 104.25 239.00 MacLine -1 ps -1.00 ps -95.88 13.50 95.88 18.75 MacLine -95.88 242.50 95.88 237.25 MacLine -1 ps -1.00 ps -87.38 13.50 87.38 17.00 MacLine -87.38 242.50 87.38 239.00 MacLine -1 ps -1.00 ps -78.88 13.50 78.88 17.00 MacLine -78.88 242.50 78.88 239.00 MacLine -1 ps -1.00 ps -70.38 13.50 70.38 17.00 MacLine -70.38 242.50 70.38 239.00 MacLine -1 ps -1.00 ps -62.00 13.50 62.00 17.00 MacLine -62.00 242.50 62.00 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(10) 262.50 284.38 63.12 WS -11.25 (_Helvetica) 0 F -(-3) 325.62 276.00 10.00 WS -16.00 (_Helvetica) 0 F -( s\)) 335.62 284.38 17.88 WS -1.00 ps -newpath 62.50 228.00 M -70.88 213.62 L -79.38 199.88 L -87.88 186.75 L -96.25 174.25 L -104.75 162.38 L -113.25 151.12 L -121.75 140.38 L -130.12 130.38 L -138.62 120.88 L -147.12 112.00 L -155.62 103.75 L -164.00 96.12 L -172.50 89.12 L -181.00 82.75 L -189.50 76.88 L -197.88 71.75 L -206.38 67.12 L -214.88 63.12 L -223.38 59.88 L -231.75 57.12 L -240.25 54.88 L -248.75 53.38 L -257.25 52.50 L -265.62 52.12 L -274.12 52.50 L -282.62 53.38 L -291.12 54.88 L -299.50 57.12 L -308.00 59.88 L -316.50 63.12 L -325.00 67.12 L -333.38 71.75 L -341.88 76.88 L -350.38 82.75 L -358.88 89.12 L -367.25 96.12 L -375.75 103.75 L -384.25 112.00 L -392.75 120.88 L -401.12 130.38 L -409.62 140.38 L -418.12 151.12 L -426.62 162.38 L -435.00 174.25 L -443.50 186.75 L -452.00 199.88 L -460.50 213.62 L -468.88 228.00 L -477.38 243.00 L -477.38 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av5.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av5.gif deleted file mode 100755 index c9091a759..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av5.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av6.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av6.eps deleted file mode 100755 index 2fb695636..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av6.eps +++ /dev/null @@ -1,991 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_J6 -%%Creation Date: 14 May, 1996 12:56 PM -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(8000) 14.50 18.38 35.50 WS -gsave 0.125 ps [1] sd -57.00 19.75 558.00 19.75 MacLine -grestore -1.00 ps -561.50 19.25 558.00 19.25 MacLine -53.50 19.25 57.00 19.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 31.12 558.00 31.12 MacLine -grestore -1.00 ps -561.50 30.62 558.00 30.62 MacLine -53.50 30.62 57.00 30.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -58.75 42.62 556.25 42.62 MacLine -grestore -1.00 ps -561.50 42.12 556.25 42.12 MacLine -53.50 42.12 58.75 42.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 54.12 558.00 54.12 MacLine -grestore -1.00 ps -561.50 53.62 558.00 53.62 MacLine -53.50 53.62 57.00 53.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 65.50 558.00 65.50 MacLine -grestore -1.00 ps -561.50 65.00 558.00 65.00 MacLine -53.50 65.00 57.00 65.00 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -53.50 70.75 60.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6000) 14.50 75.62 35.50 WS -gsave 0.125 ps [1] sd -57.00 77.00 558.00 77.00 MacLine -grestore -1.00 ps -561.50 76.50 558.00 76.50 MacLine -53.50 76.50 57.00 76.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 88.38 558.00 88.38 MacLine -grestore -1.00 ps -561.50 87.88 558.00 87.88 MacLine -53.50 87.88 57.00 87.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -58.75 99.88 556.25 99.88 MacLine -grestore -1.00 ps -561.50 99.38 556.25 99.38 MacLine -53.50 99.38 58.75 99.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 111.38 558.00 111.38 MacLine -grestore -1.00 ps -561.50 110.88 558.00 110.88 MacLine -53.50 110.88 57.00 110.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 122.75 558.00 122.75 MacLine -grestore -1.00 ps -561.50 122.25 558.00 122.25 MacLine -53.50 122.25 57.00 122.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -53.50 128.00 60.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4000) 14.50 132.88 35.50 WS -gsave 0.125 ps [1] sd -57.00 134.25 558.00 134.25 MacLine -grestore -1.00 ps -561.50 133.75 558.00 133.75 MacLine -53.50 133.75 57.00 133.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 145.62 558.00 145.62 MacLine -grestore -1.00 ps -561.50 145.12 558.00 145.12 MacLine -53.50 145.12 57.00 145.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -58.75 157.12 556.25 157.12 MacLine -grestore -1.00 ps -561.50 156.62 556.25 156.62 MacLine -53.50 156.62 58.75 156.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 168.62 558.00 168.62 MacLine -grestore -1.00 ps -561.50 168.12 558.00 168.12 MacLine -53.50 168.12 57.00 168.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 180.00 558.00 180.00 MacLine -grestore -1.00 ps -561.50 179.50 558.00 179.50 MacLine -53.50 179.50 57.00 179.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -53.50 185.25 60.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2000) 14.50 190.12 35.50 WS -gsave 0.125 ps [1] sd -57.00 191.50 558.00 191.50 MacLine -grestore -1.00 ps -561.50 191.00 558.00 191.00 MacLine -53.50 191.00 57.00 191.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 202.88 558.00 202.88 MacLine -grestore -1.00 ps -561.50 202.38 558.00 202.38 MacLine -53.50 202.38 57.00 202.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -58.75 214.38 556.25 214.38 MacLine -grestore -1.00 ps -561.50 213.88 556.25 213.88 MacLine -53.50 213.88 58.75 213.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 225.88 558.00 225.88 MacLine -grestore -1.00 ps -561.50 225.38 558.00 225.38 MacLine -53.50 225.38 57.00 225.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 237.25 558.00 237.25 MacLine -grestore -1.00 ps -561.50 236.75 558.00 236.75 MacLine -53.50 236.75 57.00 236.75 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 164.50 translate -90 rotate -(Force \( ) 0.00 0.00 55.25 WS -grestore -16.00 (_Helvetica) 0 F -gsave 12.38 109.25 translate -90 rotate -(N\)) 0.00 0.00 16.88 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 557.62 259.88 8.88 WS -1.00 ps -553.00 13.50 553.00 17.00 MacLine -553.00 242.50 553.00 239.00 MacLine -1 ps -1.00 ps -544.62 13.50 544.62 17.00 MacLine -544.62 242.50 544.62 239.00 MacLine -1 ps -1.00 ps -536.12 13.50 536.12 17.00 MacLine -536.12 242.50 536.12 239.00 MacLine -1 ps -1.00 ps -527.62 13.50 527.62 17.00 MacLine -527.62 242.50 527.62 239.00 MacLine -1 ps -1.00 ps -519.12 13.50 519.12 18.75 MacLine -519.12 242.50 519.12 237.25 MacLine -1 ps -1.00 ps -510.75 13.50 510.75 17.00 MacLine -510.75 242.50 510.75 239.00 MacLine -1 ps -1.00 ps -502.25 13.50 502.25 17.00 MacLine -502.25 242.50 502.25 239.00 MacLine -1 ps -1.00 ps -493.75 13.50 493.75 17.00 MacLine -493.75 242.50 493.75 239.00 MacLine -1 ps -1.00 ps -485.25 13.50 485.25 17.00 MacLine -485.25 242.50 485.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -477.25 235.50 477.25 20.50 MacLine -grestore -1.00 ps -476.88 13.50 476.88 20.50 MacLine -476.88 242.50 476.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 473.00 259.88 8.88 WS -1.00 ps -468.38 13.50 468.38 17.00 MacLine -468.38 242.50 468.38 239.00 MacLine -1 ps -1.00 ps -459.88 13.50 459.88 17.00 MacLine -459.88 242.50 459.88 239.00 MacLine -1 ps -1.00 ps -451.38 13.50 451.38 17.00 MacLine -451.38 242.50 451.38 239.00 MacLine -1 ps -1.00 ps -443.00 13.50 443.00 17.00 MacLine -443.00 242.50 443.00 239.00 MacLine -1 ps -1.00 ps -434.50 13.50 434.50 18.75 MacLine -434.50 242.50 434.50 237.25 MacLine -1 ps -1.00 ps -426.00 13.50 426.00 17.00 MacLine -426.00 242.50 426.00 239.00 MacLine -1 ps -1.00 ps -417.62 13.50 417.62 17.00 MacLine -417.62 242.50 417.62 239.00 MacLine -1 ps -1.00 ps -409.12 13.50 409.12 17.00 MacLine -409.12 242.50 409.12 239.00 MacLine -1 ps -1.00 ps -400.62 13.50 400.62 17.00 MacLine -400.62 242.50 400.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -392.50 235.50 392.50 20.50 MacLine -grestore -1.00 ps -392.12 13.50 392.12 20.50 MacLine -392.12 242.50 392.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 388.25 259.88 8.88 WS -1.00 ps -383.75 13.50 383.75 17.00 MacLine -383.75 242.50 383.75 239.00 MacLine -1 ps -1.00 ps -375.25 13.50 375.25 17.00 MacLine -375.25 242.50 375.25 239.00 MacLine -1 ps -1.00 ps -366.75 13.50 366.75 17.00 MacLine -366.75 242.50 366.75 239.00 MacLine -1 ps -1.00 ps -358.25 13.50 358.25 17.00 MacLine -358.25 242.50 358.25 239.00 MacLine -1 ps -1.00 ps -349.88 13.50 349.88 18.75 MacLine -349.88 242.50 349.88 237.25 MacLine -1 ps -1.00 ps -341.38 13.50 341.38 17.00 MacLine -341.38 242.50 341.38 239.00 MacLine -1 ps -1.00 ps -332.88 13.50 332.88 17.00 MacLine -332.88 242.50 332.88 239.00 MacLine -1 ps -1.00 ps -324.38 13.50 324.38 17.00 MacLine -324.38 242.50 324.38 239.00 MacLine -1 ps -1.00 ps -316.00 13.50 316.00 17.00 MacLine -316.00 242.50 316.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(3) 303.62 259.88 8.88 WS -1.00 ps -299.00 13.50 299.00 17.00 MacLine -299.00 242.50 299.00 239.00 MacLine -1 ps -1.00 ps -290.62 13.50 290.62 17.00 MacLine -290.62 242.50 290.62 239.00 MacLine -1 ps -1.00 ps -282.12 13.50 282.12 17.00 MacLine -282.12 242.50 282.12 239.00 MacLine -1 ps -1.00 ps -273.62 13.50 273.62 17.00 MacLine -273.62 242.50 273.62 239.00 MacLine -1 ps -1.00 ps -265.12 13.50 265.12 18.75 MacLine -265.12 242.50 265.12 237.25 MacLine -1 ps -1.00 ps -256.75 13.50 256.75 17.00 MacLine -256.75 242.50 256.75 239.00 MacLine -1 ps -1.00 ps -248.25 13.50 248.25 17.00 MacLine -248.25 242.50 248.25 239.00 MacLine -1 ps -1.00 ps -239.75 13.50 239.75 17.00 MacLine -239.75 242.50 239.75 239.00 MacLine -1 ps -1.00 ps -231.25 13.50 231.25 17.00 MacLine -231.25 242.50 231.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -223.25 235.50 223.25 20.50 MacLine -grestore -1.00 ps -222.88 13.50 222.88 20.50 MacLine -222.88 242.50 222.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 219.00 259.88 8.88 WS -1.00 ps -214.38 13.50 214.38 17.00 MacLine -214.38 242.50 214.38 239.00 MacLine -1 ps -1.00 ps -205.88 13.50 205.88 17.00 MacLine -205.88 242.50 205.88 239.00 MacLine -1 ps -1.00 ps -197.38 13.50 197.38 17.00 MacLine -197.38 242.50 197.38 239.00 MacLine -1 ps -1.00 ps -189.00 13.50 189.00 17.00 MacLine -189.00 242.50 189.00 239.00 MacLine -1 ps -1.00 ps -180.50 13.50 180.50 18.75 MacLine -180.50 242.50 180.50 237.25 MacLine -1 ps -1.00 ps -172.00 13.50 172.00 17.00 MacLine -172.00 242.50 172.00 239.00 MacLine -1 ps -1.00 ps -163.62 13.50 163.62 17.00 MacLine -163.62 242.50 163.62 239.00 MacLine -1 ps -1.00 ps -155.12 13.50 155.12 17.00 MacLine -155.12 242.50 155.12 239.00 MacLine -1 ps -1.00 ps -146.62 13.50 146.62 17.00 MacLine -146.62 242.50 146.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -138.50 235.50 138.50 20.50 MacLine -grestore -1.00 ps -138.12 13.50 138.12 20.50 MacLine -138.12 242.50 138.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1) 134.25 259.88 8.88 WS -1.00 ps -129.75 13.50 129.75 17.00 MacLine -129.75 242.50 129.75 239.00 MacLine -1 ps -1.00 ps -121.25 13.50 121.25 17.00 MacLine -121.25 242.50 121.25 239.00 MacLine -1 ps -1.00 ps -112.75 13.50 112.75 17.00 MacLine -112.75 242.50 112.75 239.00 MacLine -1 ps -1.00 ps -104.25 13.50 104.25 17.00 MacLine -104.25 242.50 104.25 239.00 MacLine -1 ps -1.00 ps -95.88 13.50 95.88 18.75 MacLine -95.88 242.50 95.88 237.25 MacLine -1 ps -1.00 ps -87.38 13.50 87.38 17.00 MacLine -87.38 242.50 87.38 239.00 MacLine -1 ps -1.00 ps -78.88 13.50 78.88 17.00 MacLine -78.88 242.50 78.88 239.00 MacLine -1 ps -1.00 ps -70.38 13.50 70.38 17.00 MacLine -70.38 242.50 70.38 239.00 MacLine -1 ps -1.00 ps -62.00 13.50 62.00 17.00 MacLine -62.00 242.50 62.00 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(10) 262.50 284.38 63.12 WS -11.25 (_Helvetica) 0 F -(-3) 325.62 276.00 10.00 WS -16.00 (_Helvetica) 0 F -( s\)) 335.62 284.38 17.88 WS -1.00 ps -newpath 62.50 229.00 M -70.88 215.50 L -79.38 202.62 L -87.88 190.25 L -96.25 178.62 L -104.75 167.38 L -113.25 156.88 L -121.75 146.75 L -130.12 137.38 L -138.62 128.50 L -147.12 120.25 L -155.62 112.50 L -164.00 105.38 L -172.50 98.75 L -181.00 92.75 L -189.50 87.25 L -197.88 82.38 L -206.38 78.12 L -214.88 74.38 L -223.38 71.25 L -231.75 68.62 L -240.25 66.75 L -248.75 65.25 L -257.25 64.38 L -265.62 64.12 L -274.12 64.38 L -282.62 65.25 L -291.12 66.75 L -299.50 68.62 L -308.00 71.25 L -316.50 74.38 L -325.00 78.12 L -333.38 82.38 L -341.88 87.25 L -350.38 92.75 L -358.88 98.75 L -367.25 105.38 L -375.75 112.50 L -384.25 120.25 L -392.75 128.50 L -401.12 137.38 L -409.62 146.75 L -418.12 156.88 L -426.62 167.38 L -435.00 178.62 L -443.50 190.25 L -452.00 202.62 L -460.50 215.50 L -468.88 229.00 L -477.38 243.00 L -477.38 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av6.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av6.gif deleted file mode 100755 index 178931925..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av6.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av7.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av7.eps deleted file mode 100755 index 10cc653b9..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av7.eps +++ /dev/null @@ -1,936 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_J7 -%%Creation Date: 14 May, 1996 12:56 PM -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(8000) 14.50 18.38 35.50 WS -gsave 0.125 ps [1] sd -57.00 19.75 558.00 19.75 MacLine -grestore -1.00 ps -561.50 19.25 558.00 19.25 MacLine -53.50 19.25 57.00 19.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 31.12 558.00 31.12 MacLine -grestore -1.00 ps -561.50 30.62 558.00 30.62 MacLine -53.50 30.62 57.00 30.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -58.75 42.62 556.25 42.62 MacLine -grestore -1.00 ps -561.50 42.12 556.25 42.12 MacLine -53.50 42.12 58.75 42.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 54.12 558.00 54.12 MacLine -grestore -1.00 ps -561.50 53.62 558.00 53.62 MacLine -53.50 53.62 57.00 53.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 65.50 558.00 65.50 MacLine -grestore -1.00 ps -561.50 65.00 558.00 65.00 MacLine -53.50 65.00 57.00 65.00 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -53.50 70.75 60.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6000) 14.50 75.62 35.50 WS -gsave 0.125 ps [1] sd -57.00 77.00 558.00 77.00 MacLine -grestore -1.00 ps -561.50 76.50 558.00 76.50 MacLine -53.50 76.50 57.00 76.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 88.38 558.00 88.38 MacLine -grestore -1.00 ps -561.50 87.88 558.00 87.88 MacLine -53.50 87.88 57.00 87.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -58.75 99.88 556.25 99.88 MacLine -grestore -1.00 ps -561.50 99.38 556.25 99.38 MacLine -53.50 99.38 58.75 99.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 111.38 558.00 111.38 MacLine -grestore -1.00 ps -561.50 110.88 558.00 110.88 MacLine -53.50 110.88 57.00 110.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 122.75 558.00 122.75 MacLine -grestore -1.00 ps -561.50 122.25 558.00 122.25 MacLine -53.50 122.25 57.00 122.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -53.50 128.00 60.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4000) 14.50 132.88 35.50 WS -gsave 0.125 ps [1] sd -57.00 134.25 558.00 134.25 MacLine -grestore -1.00 ps -561.50 133.75 558.00 133.75 MacLine -53.50 133.75 57.00 133.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 145.62 558.00 145.62 MacLine -grestore -1.00 ps -561.50 145.12 558.00 145.12 MacLine -53.50 145.12 57.00 145.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -58.75 157.12 556.25 157.12 MacLine -grestore -1.00 ps -561.50 156.62 556.25 156.62 MacLine -53.50 156.62 58.75 156.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 168.62 558.00 168.62 MacLine -grestore -1.00 ps -561.50 168.12 558.00 168.12 MacLine -53.50 168.12 57.00 168.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 180.00 558.00 180.00 MacLine -grestore -1.00 ps -561.50 179.50 558.00 179.50 MacLine -53.50 179.50 57.00 179.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -53.50 185.25 60.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2000) 14.50 190.12 35.50 WS -gsave 0.125 ps [1] sd -57.00 191.50 558.00 191.50 MacLine -grestore -1.00 ps -561.50 191.00 558.00 191.00 MacLine -53.50 191.00 57.00 191.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 202.88 558.00 202.88 MacLine -grestore -1.00 ps -561.50 202.38 558.00 202.38 MacLine -53.50 202.38 57.00 202.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -58.75 214.38 556.25 214.38 MacLine -grestore -1.00 ps -561.50 213.88 556.25 213.88 MacLine -53.50 213.88 58.75 213.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 225.88 558.00 225.88 MacLine -grestore -1.00 ps -561.50 225.38 558.00 225.38 MacLine -53.50 225.38 57.00 225.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 237.25 558.00 237.25 MacLine -grestore -1.00 ps -561.50 236.75 558.00 236.75 MacLine -53.50 236.75 57.00 236.75 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 164.50 translate -90 rotate -(Force \( ) 0.00 0.00 55.25 WS -grestore -16.00 (_Helvetica) 0 F -gsave 12.38 109.25 translate -90 rotate -(N\)) 0.00 0.00 16.88 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 557.62 259.88 8.88 WS -1.00 ps -551.38 13.50 551.38 17.00 MacLine -551.38 242.50 551.38 239.00 MacLine -1 ps -1.00 ps -541.12 13.50 541.12 17.00 MacLine -541.12 242.50 541.12 239.00 MacLine -1 ps -1.00 ps -531.00 13.50 531.00 17.00 MacLine -531.00 242.50 531.00 239.00 MacLine -1 ps -1.00 ps -520.88 13.50 520.88 17.00 MacLine -520.88 242.50 520.88 239.00 MacLine -1 ps -1.00 ps -510.75 13.50 510.75 18.75 MacLine -510.75 242.50 510.75 237.25 MacLine -1 ps -1.00 ps -500.50 13.50 500.50 17.00 MacLine -500.50 242.50 500.50 239.00 MacLine -1 ps -1.00 ps -490.38 13.50 490.38 17.00 MacLine -490.38 242.50 490.38 239.00 MacLine -1 ps -1.00 ps -480.25 13.50 480.25 17.00 MacLine -480.25 242.50 480.25 239.00 MacLine -1 ps -1.00 ps -470.00 13.50 470.00 17.00 MacLine -470.00 242.50 470.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -460.25 235.50 460.25 20.50 MacLine -grestore -1.00 ps -459.88 13.50 459.88 20.50 MacLine -459.88 242.50 459.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 456.00 259.88 8.88 WS -1.00 ps -449.75 13.50 449.75 17.00 MacLine -449.75 242.50 449.75 239.00 MacLine -1 ps -1.00 ps -439.62 13.50 439.62 17.00 MacLine -439.62 242.50 439.62 239.00 MacLine -1 ps -1.00 ps -429.38 13.50 429.38 17.00 MacLine -429.38 242.50 429.38 239.00 MacLine -1 ps -1.00 ps -419.25 13.50 419.25 17.00 MacLine -419.25 242.50 419.25 239.00 MacLine -1 ps -1.00 ps -409.12 13.50 409.12 18.75 MacLine -409.12 242.50 409.12 237.25 MacLine -1 ps -1.00 ps -399.00 13.50 399.00 17.00 MacLine -399.00 242.50 399.00 239.00 MacLine -1 ps -1.00 ps -388.75 13.50 388.75 17.00 MacLine -388.75 242.50 388.75 239.00 MacLine -1 ps -1.00 ps -378.62 13.50 378.62 17.00 MacLine -378.62 242.50 378.62 239.00 MacLine -1 ps -1.00 ps -368.50 13.50 368.50 17.00 MacLine -368.50 242.50 368.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -358.62 235.50 358.62 20.50 MacLine -grestore -1.00 ps -358.25 13.50 358.25 20.50 MacLine -358.25 242.50 358.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(3) 354.38 259.88 8.88 WS -1.00 ps -348.12 13.50 348.12 17.00 MacLine -348.12 242.50 348.12 239.00 MacLine -1 ps -1.00 ps -338.00 13.50 338.00 17.00 MacLine -338.00 242.50 338.00 239.00 MacLine -1 ps -1.00 ps -327.88 13.50 327.88 17.00 MacLine -327.88 242.50 327.88 239.00 MacLine -1 ps -1.00 ps -317.62 13.50 317.62 17.00 MacLine -317.62 242.50 317.62 239.00 MacLine -1 ps -1.00 ps -307.50 13.50 307.50 18.75 MacLine -307.50 242.50 307.50 237.25 MacLine -1 ps -1.00 ps -297.38 13.50 297.38 17.00 MacLine -297.38 242.50 297.38 239.00 MacLine -1 ps -1.00 ps -287.12 13.50 287.12 17.00 MacLine -287.12 242.50 287.12 239.00 MacLine -1 ps -1.00 ps -277.00 13.50 277.00 17.00 MacLine -277.00 242.50 277.00 239.00 MacLine -1 ps -1.00 ps -266.88 13.50 266.88 17.00 MacLine -266.88 242.50 266.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -257.12 235.50 257.12 20.50 MacLine -grestore -1.00 ps -256.75 13.50 256.75 20.50 MacLine -256.75 242.50 256.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 252.88 259.88 8.88 WS -1.00 ps -246.50 13.50 246.50 17.00 MacLine -246.50 242.50 246.50 239.00 MacLine -1 ps -1.00 ps -236.38 13.50 236.38 17.00 MacLine -236.38 242.50 236.38 239.00 MacLine -1 ps -1.00 ps -226.25 13.50 226.25 17.00 MacLine -226.25 242.50 226.25 239.00 MacLine -1 ps -1.00 ps -216.00 13.50 216.00 17.00 MacLine -216.00 242.50 216.00 239.00 MacLine -1 ps -1.00 ps -205.88 13.50 205.88 18.75 MacLine -205.88 242.50 205.88 237.25 MacLine -1 ps -1.00 ps -195.75 13.50 195.75 17.00 MacLine -195.75 242.50 195.75 239.00 MacLine -1 ps -1.00 ps -185.62 13.50 185.62 17.00 MacLine -185.62 242.50 185.62 239.00 MacLine -1 ps -1.00 ps -175.38 13.50 175.38 17.00 MacLine -175.38 242.50 175.38 239.00 MacLine -1 ps -1.00 ps -165.25 13.50 165.25 17.00 MacLine -165.25 242.50 165.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -155.50 235.50 155.50 20.50 MacLine -grestore -1.00 ps -155.12 13.50 155.12 20.50 MacLine -155.12 242.50 155.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1) 151.25 259.88 8.88 WS -1.00 ps -145.00 13.50 145.00 17.00 MacLine -145.00 242.50 145.00 239.00 MacLine -1 ps -1.00 ps -134.75 13.50 134.75 17.00 MacLine -134.75 242.50 134.75 239.00 MacLine -1 ps -1.00 ps -124.62 13.50 124.62 17.00 MacLine -124.62 242.50 124.62 239.00 MacLine -1 ps -1.00 ps -114.50 13.50 114.50 17.00 MacLine -114.50 242.50 114.50 239.00 MacLine -1 ps -1.00 ps -104.25 13.50 104.25 18.75 MacLine -104.25 242.50 104.25 237.25 MacLine -1 ps -1.00 ps -94.12 13.50 94.12 17.00 MacLine -94.12 242.50 94.12 239.00 MacLine -1 ps -1.00 ps -84.00 13.50 84.00 17.00 MacLine -84.00 242.50 84.00 239.00 MacLine -1 ps -1.00 ps -73.88 13.50 73.88 17.00 MacLine -73.88 242.50 73.88 239.00 MacLine -1 ps -1.00 ps -63.62 13.50 63.62 17.00 MacLine -63.62 242.50 63.62 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(10) 262.50 284.38 63.12 WS -11.25 (_Helvetica) 0 F -(-3) 325.62 276.00 10.00 WS -16.00 (_Helvetica) 0 F -( s\)) 335.62 284.38 17.88 WS -1.00 ps -newpath 64.25 223.50 M -74.38 204.88 L -84.50 187.38 L -94.75 170.88 L -104.75 155.38 L -115.00 140.75 L -125.12 127.25 L -135.38 114.75 L -145.50 103.25 L -155.62 92.75 L -165.88 83.25 L -176.00 74.75 L -186.12 67.25 L -196.25 60.62 L -206.50 55.12 L -216.62 50.62 L -226.75 47.12 L -236.88 44.62 L -247.12 43.12 L -257.25 42.62 L -267.38 43.12 L -277.50 44.62 L -287.75 47.12 L -297.88 50.62 L -308.00 55.12 L -318.25 60.62 L -328.38 67.25 L -338.62 74.75 L -348.62 83.25 L -358.88 92.75 L -369.00 103.25 L -379.25 114.75 L -389.25 127.25 L -399.50 140.75 L -409.62 155.38 L -419.88 170.88 L -429.88 187.38 L -440.12 204.88 L -450.25 223.50 L -460.50 243.00 L -460.50 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av7.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av7.gif deleted file mode 100755 index def99bc18..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av7.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av8.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av8.eps deleted file mode 100755 index 09550d794..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av8.eps +++ /dev/null @@ -1,881 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_J8 -%%Creation Date: 14 May, 1996 12:56 PM -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(7000) 14.50 18.38 35.50 WS -gsave 0.125 ps [1] sd -57.00 20.50 558.00 20.50 MacLine -grestore -1.00 ps -561.50 20.00 558.00 20.00 MacLine -53.50 20.00 57.00 20.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 27.12 558.00 27.12 MacLine -grestore -1.00 ps -561.50 26.62 558.00 26.62 MacLine -53.50 26.62 57.00 26.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 33.62 558.00 33.62 MacLine -grestore -1.00 ps -561.50 33.12 558.00 33.12 MacLine -53.50 33.12 57.00 33.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 40.12 558.00 40.12 MacLine -grestore -1.00 ps -561.50 39.62 558.00 39.62 MacLine -53.50 39.62 57.00 39.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 46.62 554.50 46.62 MacLine -grestore -1.00 ps -561.50 46.25 554.50 46.25 MacLine -53.50 46.25 60.50 46.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6000) 14.50 51.12 35.50 WS -gsave 0.125 ps [1] sd -57.00 53.25 558.00 53.25 MacLine -grestore -1.00 ps -561.50 52.75 558.00 52.75 MacLine -53.50 52.75 57.00 52.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 66.38 558.00 66.38 MacLine -grestore -1.00 ps -561.50 65.88 558.00 65.88 MacLine -53.50 65.88 57.00 65.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 72.88 558.00 72.88 MacLine -grestore -1.00 ps -561.50 72.38 558.00 72.38 MacLine -53.50 72.38 57.00 72.38 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 79.25 554.50 79.25 MacLine -grestore -1.00 ps -561.50 78.88 554.50 78.88 MacLine -53.50 78.88 60.50 78.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5000) 14.50 83.75 35.50 WS -gsave 0.125 ps [1] sd -57.00 86.00 558.00 86.00 MacLine -grestore -1.00 ps -561.50 85.50 558.00 85.50 MacLine -53.50 85.50 57.00 85.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 92.50 558.00 92.50 MacLine -grestore -1.00 ps -561.50 92.00 558.00 92.00 MacLine -53.50 92.00 57.00 92.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 99.00 558.00 99.00 MacLine -grestore -1.00 ps -561.50 98.50 558.00 98.50 MacLine -53.50 98.50 57.00 98.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 112.00 554.50 112.00 MacLine -grestore -1.00 ps -561.50 111.62 554.50 111.62 MacLine -53.50 111.62 60.50 111.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4000) 14.50 116.50 35.50 WS -gsave 0.125 ps [1] sd -57.00 118.62 558.00 118.62 MacLine -grestore -1.00 ps -561.50 118.12 558.00 118.12 MacLine -53.50 118.12 57.00 118.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 125.25 558.00 125.25 MacLine -grestore -1.00 ps -561.50 124.75 558.00 124.75 MacLine -53.50 124.75 57.00 124.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 131.75 558.00 131.75 MacLine -grestore -1.00 ps -561.50 131.25 558.00 131.25 MacLine -53.50 131.25 57.00 131.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 138.38 558.00 138.38 MacLine -grestore -1.00 ps -561.50 137.88 558.00 137.88 MacLine -53.50 137.88 57.00 137.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 144.75 554.50 144.75 MacLine -grestore -1.00 ps -561.50 144.38 554.50 144.38 MacLine -53.50 144.38 60.50 144.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(3000) 14.50 149.25 35.50 WS -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 158.00 558.00 158.00 MacLine -grestore -1.00 ps -561.50 157.50 558.00 157.50 MacLine -53.50 157.50 57.00 157.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 164.50 558.00 164.50 MacLine -grestore -1.00 ps -561.50 164.00 558.00 164.00 MacLine -53.50 164.00 57.00 164.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 171.00 558.00 171.00 MacLine -grestore -1.00 ps -561.50 170.50 558.00 170.50 MacLine -53.50 170.50 57.00 170.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 177.50 554.50 177.50 MacLine -grestore -1.00 ps -561.50 177.12 554.50 177.12 MacLine -53.50 177.12 60.50 177.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2000) 14.50 182.00 35.50 WS -gsave 0.125 ps [1] sd -57.00 184.12 558.00 184.12 MacLine -grestore -1.00 ps -561.50 183.62 558.00 183.62 MacLine -53.50 183.62 57.00 183.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 190.62 558.00 190.62 MacLine -grestore -1.00 ps -561.50 190.12 558.00 190.12 MacLine -53.50 190.12 57.00 190.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 203.75 558.00 203.75 MacLine -grestore -1.00 ps -561.50 203.25 558.00 203.25 MacLine -53.50 203.25 57.00 203.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 210.12 554.50 210.12 MacLine -grestore -1.00 ps -561.50 209.75 554.50 209.75 MacLine -53.50 209.75 60.50 209.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1000) 14.50 214.62 35.50 WS -gsave 0.125 ps [1] sd -57.00 216.88 558.00 216.88 MacLine -grestore -1.00 ps -561.50 216.38 558.00 216.38 MacLine -53.50 216.38 57.00 216.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 223.38 558.00 223.38 MacLine -grestore -1.00 ps -561.50 222.88 558.00 222.88 MacLine -53.50 222.88 57.00 222.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 229.88 558.00 229.88 MacLine -grestore -1.00 ps -561.50 229.38 558.00 229.38 MacLine -53.50 229.38 57.00 229.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 236.50 558.00 236.50 MacLine -grestore -1.00 ps -561.50 236.00 558.00 236.00 MacLine -53.50 236.00 57.00 236.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 164.50 translate -90 rotate -(Force \( ) 0.00 0.00 55.25 WS -grestore -16.00 (_Helvetica) 0 F -gsave 12.38 109.25 translate -90 rotate -(N\)) 0.00 0.00 16.88 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 557.62 259.88 8.88 WS -1.00 ps -548.75 13.50 548.75 17.00 MacLine -548.75 242.50 548.75 239.00 MacLine -1 ps -1.00 ps -536.12 13.50 536.12 17.00 MacLine -536.12 242.50 536.12 239.00 MacLine -1 ps -1.00 ps -523.38 13.50 523.38 17.00 MacLine -523.38 242.50 523.38 239.00 MacLine -1 ps -1.00 ps -510.75 13.50 510.75 17.00 MacLine -510.75 242.50 510.75 239.00 MacLine -1 ps -1.00 ps -498.00 13.50 498.00 18.75 MacLine -498.00 242.50 498.00 237.25 MacLine -1 ps -1.00 ps -485.25 13.50 485.25 17.00 MacLine -485.25 242.50 485.25 239.00 MacLine -1 ps -1.00 ps -472.62 13.50 472.62 17.00 MacLine -472.62 242.50 472.62 239.00 MacLine -1 ps -1.00 ps -459.88 13.50 459.88 17.00 MacLine -459.88 242.50 459.88 239.00 MacLine -1 ps -1.00 ps -447.25 13.50 447.25 17.00 MacLine -447.25 242.50 447.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 430.62 259.88 8.88 WS -1.00 ps -421.75 13.50 421.75 17.00 MacLine -421.75 242.50 421.75 239.00 MacLine -1 ps -1.00 ps -409.12 13.50 409.12 17.00 MacLine -409.12 242.50 409.12 239.00 MacLine -1 ps -1.00 ps -396.38 13.50 396.38 17.00 MacLine -396.38 242.50 396.38 239.00 MacLine -1 ps -1.00 ps -383.75 13.50 383.75 17.00 MacLine -383.75 242.50 383.75 239.00 MacLine -1 ps -1.00 ps -371.00 13.50 371.00 18.75 MacLine -371.00 242.50 371.00 237.25 MacLine -1 ps -1.00 ps -358.25 13.50 358.25 17.00 MacLine -358.25 242.50 358.25 239.00 MacLine -1 ps -1.00 ps -345.62 13.50 345.62 17.00 MacLine -345.62 242.50 345.62 239.00 MacLine -1 ps -1.00 ps -332.88 13.50 332.88 17.00 MacLine -332.88 242.50 332.88 239.00 MacLine -1 ps -1.00 ps -320.25 13.50 320.25 17.00 MacLine -320.25 242.50 320.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 303.62 259.88 8.88 WS -1.00 ps -294.75 13.50 294.75 17.00 MacLine -294.75 242.50 294.75 239.00 MacLine -1 ps -1.00 ps -282.12 13.50 282.12 17.00 MacLine -282.12 242.50 282.12 239.00 MacLine -1 ps -1.00 ps -269.38 13.50 269.38 17.00 MacLine -269.38 242.50 269.38 239.00 MacLine -1 ps -1.00 ps -256.75 13.50 256.75 17.00 MacLine -256.75 242.50 256.75 239.00 MacLine -1 ps -1.00 ps -244.00 13.50 244.00 18.75 MacLine -244.00 242.50 244.00 237.25 MacLine -1 ps -1.00 ps -231.25 13.50 231.25 17.00 MacLine -231.25 242.50 231.25 239.00 MacLine -1 ps -1.00 ps -218.62 13.50 218.62 17.00 MacLine -218.62 242.50 218.62 239.00 MacLine -1 ps -1.00 ps -205.88 13.50 205.88 17.00 MacLine -205.88 242.50 205.88 239.00 MacLine -1 ps -1.00 ps -193.25 13.50 193.25 17.00 MacLine -193.25 242.50 193.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 176.62 259.88 8.88 WS -1.00 ps -167.75 13.50 167.75 17.00 MacLine -167.75 242.50 167.75 239.00 MacLine -1 ps -1.00 ps -155.12 13.50 155.12 17.00 MacLine -155.12 242.50 155.12 239.00 MacLine -1 ps -1.00 ps -142.38 13.50 142.38 17.00 MacLine -142.38 242.50 142.38 239.00 MacLine -1 ps -1.00 ps -129.75 13.50 129.75 17.00 MacLine -129.75 242.50 129.75 239.00 MacLine -1 ps -1.00 ps -117.00 13.50 117.00 18.75 MacLine -117.00 242.50 117.00 237.25 MacLine -1 ps -1.00 ps -104.25 13.50 104.25 17.00 MacLine -104.25 242.50 104.25 239.00 MacLine -1 ps -1.00 ps -91.62 13.50 91.62 17.00 MacLine -91.62 242.50 91.62 239.00 MacLine -1 ps -1.00 ps -78.88 13.50 78.88 17.00 MacLine -78.88 242.50 78.88 239.00 MacLine -1 ps -1.00 ps -66.25 13.50 66.25 17.00 MacLine -66.25 242.50 66.25 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(10) 262.50 284.38 63.12 WS -11.25 (_Helvetica) 0 F -(-3) 325.62 276.00 10.00 WS -16.00 (_Helvetica) 0 F -( s\)) 335.62 284.38 17.88 WS -1.00 ps -newpath 60.38 230.12 M -66.62 217.75 L -73.00 205.75 L -79.38 194.12 L -85.75 183.00 L -92.12 172.38 L -98.38 162.12 L -104.75 152.38 L -111.12 143.00 L -117.50 134.00 L -123.88 125.62 L -130.25 117.50 L -136.50 110.00 L -142.88 102.75 L -149.25 96.00 L -155.62 89.75 L -161.88 83.88 L -168.25 78.50 L -174.62 73.50 L -181.00 69.00 L -187.25 64.88 L -193.62 61.25 L -200.00 58.00 L -206.38 55.25 L -212.75 52.88 L -219.00 51.00 L -225.38 49.50 L -231.75 48.50 L -238.12 47.88 L -244.50 47.75 L -250.88 48.00 L -257.25 48.75 L -263.50 49.88 L -269.88 51.50 L -276.25 53.50 L -282.62 56.00 L -288.88 58.88 L -295.25 62.25 L -301.62 66.00 L -308.00 70.25 L -314.25 75.00 L -320.62 80.00 L -327.00 85.62 L -333.38 91.62 L -339.75 98.00 L -346.00 104.88 L -352.38 112.12 L -358.75 119.88 L -365.12 128.12 L -371.50 136.62 L -377.75 145.75 L -384.12 155.25 L -390.38 165.12 L -396.75 175.50 L -403.12 186.25 L -409.50 197.50 L -415.88 209.25 L -422.12 221.38 L -428.50 233.88 L -432.88 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av8.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av8.gif deleted file mode 100755 index b3eb118b4..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av8.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av9.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av9.eps deleted file mode 100755 index de16c179b..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av9.eps +++ /dev/null @@ -1,946 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_J9 -%%Creation Date: 14 May, 1996 12:57 PM -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 556.25 13.50 MacLine -53.50 13.50 58.75 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 19.12 558.00 19.12 MacLine -grestore -1.00 ps -561.50 18.62 558.00 18.62 MacLine -53.50 18.62 57.00 18.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 24.12 558.00 24.12 MacLine -grestore -1.00 ps -561.50 23.62 558.00 23.62 MacLine -53.50 23.62 57.00 23.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 29.25 558.00 29.25 MacLine -grestore -1.00 ps -561.50 28.75 558.00 28.75 MacLine -53.50 28.75 57.00 28.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 34.38 558.00 34.38 MacLine -grestore -1.00 ps -561.50 33.88 558.00 33.88 MacLine -53.50 33.88 57.00 33.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 39.38 554.50 39.38 MacLine -grestore -1.00 ps -561.50 39.00 554.50 39.00 MacLine -53.50 39.00 60.50 39.00 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(8000) 14.50 43.88 35.50 WS -gsave 0.125 ps [1] sd -57.00 44.50 558.00 44.50 MacLine -grestore -1.00 ps -561.50 44.00 558.00 44.00 MacLine -53.50 44.00 57.00 44.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 49.62 558.00 49.62 MacLine -grestore -1.00 ps -561.50 49.12 558.00 49.12 MacLine -53.50 49.12 57.00 49.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 54.75 558.00 54.75 MacLine -grestore -1.00 ps -561.50 54.25 558.00 54.25 MacLine -53.50 54.25 57.00 54.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -53.50 59.25 57.00 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -58.75 64.88 556.25 64.88 MacLine -grestore -1.00 ps -561.50 64.38 556.25 64.38 MacLine -53.50 64.38 58.75 64.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 70.00 558.00 70.00 MacLine -grestore -1.00 ps -561.50 69.50 558.00 69.50 MacLine -53.50 69.50 57.00 69.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 75.12 558.00 75.12 MacLine -grestore -1.00 ps -561.50 74.62 558.00 74.62 MacLine -53.50 74.62 57.00 74.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 80.12 558.00 80.12 MacLine -grestore -1.00 ps -561.50 79.62 558.00 79.62 MacLine -53.50 79.62 57.00 79.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 85.25 558.00 85.25 MacLine -grestore -1.00 ps -561.50 84.75 558.00 84.75 MacLine -53.50 84.75 57.00 84.75 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 90.25 554.50 90.25 MacLine -grestore -1.00 ps -561.50 89.88 554.50 89.88 MacLine -53.50 89.88 60.50 89.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6000) 14.50 94.75 35.50 WS -gsave 0.125 ps [1] sd -57.00 95.38 558.00 95.38 MacLine -grestore -1.00 ps -561.50 94.88 558.00 94.88 MacLine -53.50 94.88 57.00 94.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 100.50 558.00 100.50 MacLine -grestore -1.00 ps -561.50 100.00 558.00 100.00 MacLine -53.50 100.00 57.00 100.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -53.50 105.12 57.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 110.75 558.00 110.75 MacLine -grestore -1.00 ps -561.50 110.25 558.00 110.25 MacLine -53.50 110.25 57.00 110.25 MacLine -1 ps -gsave 0.125 ps [1] sd -58.75 115.75 556.25 115.75 MacLine -grestore -1.00 ps -561.50 115.25 556.25 115.25 MacLine -53.50 115.25 58.75 115.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 120.88 558.00 120.88 MacLine -grestore -1.00 ps -561.50 120.38 558.00 120.38 MacLine -53.50 120.38 57.00 120.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 126.00 558.00 126.00 MacLine -grestore -1.00 ps -561.50 125.50 558.00 125.50 MacLine -53.50 125.50 57.00 125.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 131.00 558.00 131.00 MacLine -grestore -1.00 ps -561.50 130.50 558.00 130.50 MacLine -53.50 130.50 57.00 130.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 136.12 558.00 136.12 MacLine -grestore -1.00 ps -561.50 135.62 558.00 135.62 MacLine -53.50 135.62 57.00 135.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 141.12 554.50 141.12 MacLine -grestore -1.00 ps -561.50 140.75 554.50 140.75 MacLine -53.50 140.75 60.50 140.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4000) 14.50 145.62 35.50 WS -gsave 0.125 ps [1] sd -57.00 146.25 558.00 146.25 MacLine -grestore -1.00 ps -561.50 145.75 558.00 145.75 MacLine -53.50 145.75 57.00 145.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -53.50 150.88 57.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 156.50 558.00 156.50 MacLine -grestore -1.00 ps -561.50 156.00 558.00 156.00 MacLine -53.50 156.00 57.00 156.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 161.62 558.00 161.62 MacLine -grestore -1.00 ps -561.50 161.12 558.00 161.12 MacLine -53.50 161.12 57.00 161.12 MacLine -1 ps -gsave 0.125 ps [1] sd -58.75 166.62 556.25 166.62 MacLine -grestore -1.00 ps -561.50 166.12 556.25 166.12 MacLine -53.50 166.12 58.75 166.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 171.75 558.00 171.75 MacLine -grestore -1.00 ps -561.50 171.25 558.00 171.25 MacLine -53.50 171.25 57.00 171.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 176.88 558.00 176.88 MacLine -grestore -1.00 ps -561.50 176.38 558.00 176.38 MacLine -53.50 176.38 57.00 176.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 181.88 558.00 181.88 MacLine -grestore -1.00 ps -561.50 181.38 558.00 181.38 MacLine -53.50 181.38 57.00 181.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 187.00 558.00 187.00 MacLine -grestore -1.00 ps -561.50 186.50 558.00 186.50 MacLine -53.50 186.50 57.00 186.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 192.00 554.50 192.00 MacLine -grestore -1.00 ps -561.50 191.62 554.50 191.62 MacLine -53.50 191.62 60.50 191.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2000) 14.50 196.50 35.50 WS -gsave 0.125 ps [1] sd -57.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -53.50 196.75 57.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 202.25 558.00 202.25 MacLine -grestore -1.00 ps -561.50 201.75 558.00 201.75 MacLine -53.50 201.75 57.00 201.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 207.38 558.00 207.38 MacLine -grestore -1.00 ps -561.50 206.88 558.00 206.88 MacLine -53.50 206.88 57.00 206.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 212.50 558.00 212.50 MacLine -grestore -1.00 ps -561.50 212.00 558.00 212.00 MacLine -53.50 212.00 57.00 212.00 MacLine -1 ps -gsave 0.125 ps [1] sd -58.75 217.50 556.25 217.50 MacLine -grestore -1.00 ps -561.50 217.00 556.25 217.00 MacLine -53.50 217.00 58.75 217.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 222.62 558.00 222.62 MacLine -grestore -1.00 ps -561.50 222.12 558.00 222.12 MacLine -53.50 222.12 57.00 222.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 227.75 558.00 227.75 MacLine -grestore -1.00 ps -561.50 227.25 558.00 227.25 MacLine -53.50 227.25 57.00 227.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 232.88 558.00 232.88 MacLine -grestore -1.00 ps -561.50 232.38 558.00 232.38 MacLine -53.50 232.38 57.00 232.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 237.88 558.00 237.88 MacLine -grestore -1.00 ps -561.50 237.38 558.00 237.38 MacLine -53.50 237.38 57.00 237.38 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 41.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 164.50 translate -90 rotate -(Force \( ) 0.00 0.00 55.25 WS -grestore -16.00 (_Helvetica) 0 F -gsave 12.38 109.25 translate -90 rotate -(N\)) 0.00 0.00 16.88 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 557.62 259.88 8.88 WS -1.00 ps -548.75 13.50 548.75 17.00 MacLine -548.75 242.50 548.75 239.00 MacLine -1 ps -1.00 ps -536.12 13.50 536.12 17.00 MacLine -536.12 242.50 536.12 239.00 MacLine -1 ps -1.00 ps -523.38 13.50 523.38 17.00 MacLine -523.38 242.50 523.38 239.00 MacLine -1 ps -1.00 ps -510.75 13.50 510.75 17.00 MacLine -510.75 242.50 510.75 239.00 MacLine -1 ps -1.00 ps -498.00 13.50 498.00 18.75 MacLine -498.00 242.50 498.00 237.25 MacLine -1 ps -1.00 ps -485.25 13.50 485.25 17.00 MacLine -485.25 242.50 485.25 239.00 MacLine -1 ps -1.00 ps -472.62 13.50 472.62 17.00 MacLine -472.62 242.50 472.62 239.00 MacLine -1 ps -1.00 ps -459.88 13.50 459.88 17.00 MacLine -459.88 242.50 459.88 239.00 MacLine -1 ps -1.00 ps -447.25 13.50 447.25 17.00 MacLine -447.25 242.50 447.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -434.88 235.50 434.88 20.50 MacLine -grestore -1.00 ps -434.50 13.50 434.50 20.50 MacLine -434.50 242.50 434.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 430.62 259.88 8.88 WS -1.00 ps -421.75 13.50 421.75 17.00 MacLine -421.75 242.50 421.75 239.00 MacLine -1 ps -1.00 ps -409.12 13.50 409.12 17.00 MacLine -409.12 242.50 409.12 239.00 MacLine -1 ps -1.00 ps -396.38 13.50 396.38 17.00 MacLine -396.38 242.50 396.38 239.00 MacLine -1 ps -1.00 ps -383.75 13.50 383.75 17.00 MacLine -383.75 242.50 383.75 239.00 MacLine -1 ps -1.00 ps -371.00 13.50 371.00 18.75 MacLine -371.00 242.50 371.00 237.25 MacLine -1 ps -1.00 ps -358.25 13.50 358.25 17.00 MacLine -358.25 242.50 358.25 239.00 MacLine -1 ps -1.00 ps -345.62 13.50 345.62 17.00 MacLine -345.62 242.50 345.62 239.00 MacLine -1 ps -1.00 ps -332.88 13.50 332.88 17.00 MacLine -332.88 242.50 332.88 239.00 MacLine -1 ps -1.00 ps -320.25 13.50 320.25 17.00 MacLine -320.25 242.50 320.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -307.88 235.50 307.88 20.50 MacLine -grestore -1.00 ps -307.50 13.50 307.50 20.50 MacLine -307.50 242.50 307.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 303.62 259.88 8.88 WS -1.00 ps -294.75 13.50 294.75 17.00 MacLine -294.75 242.50 294.75 239.00 MacLine -1 ps -1.00 ps -282.12 13.50 282.12 17.00 MacLine -282.12 242.50 282.12 239.00 MacLine -1 ps -1.00 ps -269.38 13.50 269.38 17.00 MacLine -269.38 242.50 269.38 239.00 MacLine -1 ps -1.00 ps -256.75 13.50 256.75 17.00 MacLine -256.75 242.50 256.75 239.00 MacLine -1 ps -1.00 ps -244.00 13.50 244.00 18.75 MacLine -244.00 242.50 244.00 237.25 MacLine -1 ps -1.00 ps -231.25 13.50 231.25 17.00 MacLine -231.25 242.50 231.25 239.00 MacLine -1 ps -1.00 ps -218.62 13.50 218.62 17.00 MacLine -218.62 242.50 218.62 239.00 MacLine -1 ps -1.00 ps -205.88 13.50 205.88 17.00 MacLine -205.88 242.50 205.88 239.00 MacLine -1 ps -1.00 ps -193.25 13.50 193.25 17.00 MacLine -193.25 242.50 193.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -180.88 235.50 180.88 20.50 MacLine -grestore -1.00 ps -180.50 13.50 180.50 20.50 MacLine -180.50 242.50 180.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 176.62 259.88 8.88 WS -1.00 ps -167.75 13.50 167.75 17.00 MacLine -167.75 242.50 167.75 239.00 MacLine -1 ps -1.00 ps -155.12 13.50 155.12 17.00 MacLine -155.12 242.50 155.12 239.00 MacLine -1 ps -1.00 ps -142.38 13.50 142.38 17.00 MacLine -142.38 242.50 142.38 239.00 MacLine -1 ps -1.00 ps -129.75 13.50 129.75 17.00 MacLine -129.75 242.50 129.75 239.00 MacLine -1 ps -1.00 ps -117.00 13.50 117.00 18.75 MacLine -117.00 242.50 117.00 237.25 MacLine -1 ps -1.00 ps -104.25 13.50 104.25 17.00 MacLine -104.25 242.50 104.25 239.00 MacLine -1 ps -1.00 ps -91.62 13.50 91.62 17.00 MacLine -91.62 242.50 91.62 239.00 MacLine -1 ps -1.00 ps -78.88 13.50 78.88 17.00 MacLine -78.88 242.50 78.88 239.00 MacLine -1 ps -1.00 ps -66.25 13.50 66.25 17.00 MacLine -66.25 242.50 66.25 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(10) 262.50 284.38 63.12 WS -11.25 (_Helvetica) 0 F -(-3) 325.62 276.00 10.00 WS -16.00 (_Helvetica) 0 F -( s\)) 335.62 284.38 17.88 WS -1.00 ps -newpath 60.38 230.50 M -66.62 218.38 L -73.00 206.75 L -79.38 195.50 L -85.75 184.62 L -92.12 174.25 L -98.38 164.25 L -104.75 154.75 L -111.12 145.62 L -117.50 136.88 L -123.88 128.62 L -130.25 120.75 L -136.50 113.38 L -142.88 106.25 L -149.25 99.75 L -155.62 93.50 L -161.88 87.75 L -168.25 82.38 L -174.62 77.50 L -181.00 73.00 L -187.25 69.00 L -193.62 65.38 L -200.00 62.12 L -206.38 59.38 L -212.75 56.88 L -219.00 55.00 L -225.38 53.50 L -231.75 52.38 L -238.12 51.62 L -244.50 51.38 L -250.88 51.62 L -257.25 52.12 L -263.50 53.12 L -269.88 54.62 L -276.25 56.38 L -282.62 58.75 L -288.88 61.38 L -295.25 64.50 L -301.62 68.12 L -308.00 72.00 L -314.25 76.38 L -320.62 81.25 L -327.00 86.50 L -333.38 92.12 L -339.75 98.12 L -346.00 104.62 L -352.38 111.62 L -358.75 119.00 L -365.12 126.62 L -371.50 134.88 L -377.75 143.50 L -384.12 152.50 L -390.38 161.88 L -396.75 171.75 L -403.12 182.12 L -409.50 192.88 L -415.88 204.00 L -422.12 215.50 L -428.50 227.50 L -434.88 239.88 L -436.38 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av9.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av9.gif deleted file mode 100755 index fd5f16fff..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob03av9.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v1.eps deleted file mode 100755 index f7e6119fd..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v1.eps +++ /dev/null @@ -1,886 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F1 -%%Creation Date: Mon, Oct 9, 1995 08:35 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -62.50 13.50 69.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2000) 23.50 18.38 35.50 WS -gsave 0.125 ps [1] sd -66.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -62.50 25.00 66.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -62.50 36.38 66.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -62.50 47.88 66.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -62.50 59.25 66.00 59.25 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -62.50 70.75 69.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1500) 23.50 75.62 35.50 WS -gsave 0.125 ps [1] sd -66.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -62.50 82.25 66.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -62.50 93.62 66.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -62.50 105.12 66.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -62.50 116.50 66.00 116.50 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -62.50 128.00 69.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1000) 23.50 132.88 35.50 WS -gsave 0.125 ps [1] sd -66.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -62.50 139.50 66.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -62.50 150.88 66.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -62.50 162.38 66.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -62.50 173.75 66.00 173.75 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -62.50 185.25 69.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(500) 32.38 190.12 26.62 WS -gsave 0.125 ps [1] sd -66.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -62.50 196.75 66.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -62.50 208.12 66.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -62.50 219.62 66.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -62.50 231.00 66.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -62.50 242.50 69.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 50.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 553.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -552.00 239.00 552.00 17.00 MacLine -grestore -1.00 ps -551.50 13.50 551.50 17.00 MacLine -551.50 242.50 551.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -542.00 239.00 542.00 17.00 MacLine -grestore -1.00 ps -541.50 13.50 541.50 17.00 MacLine -541.50 242.50 541.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -532.00 239.00 532.00 17.00 MacLine -grestore -1.00 ps -531.50 13.50 531.50 17.00 MacLine -531.50 242.50 531.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.12 239.00 522.12 17.00 MacLine -grestore -1.00 ps -521.62 13.50 521.62 17.00 MacLine -521.62 242.50 521.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.12 237.25 512.12 18.75 MacLine -grestore -1.00 ps -511.62 13.50 511.62 18.75 MacLine -511.62 242.50 511.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -502.12 239.00 502.12 17.00 MacLine -grestore -1.00 ps -501.62 13.50 501.62 17.00 MacLine -501.62 242.50 501.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -492.12 239.00 492.12 17.00 MacLine -grestore -1.00 ps -491.62 13.50 491.62 17.00 MacLine -491.62 242.50 491.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -482.12 239.00 482.12 17.00 MacLine -grestore -1.00 ps -481.62 13.50 481.62 17.00 MacLine -481.62 242.50 481.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.12 239.00 472.12 17.00 MacLine -grestore -1.00 ps -471.62 13.50 471.62 17.00 MacLine -471.62 242.50 471.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -462.12 235.50 462.12 20.50 MacLine -grestore -1.00 ps -461.75 13.50 461.75 20.50 MacLine -461.75 242.50 461.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 457.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -452.25 239.00 452.25 17.00 MacLine -grestore -1.00 ps -451.75 13.50 451.75 17.00 MacLine -451.75 242.50 451.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.25 239.00 442.25 17.00 MacLine -grestore -1.00 ps -441.75 13.50 441.75 17.00 MacLine -441.75 242.50 441.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -432.25 239.00 432.25 17.00 MacLine -grestore -1.00 ps -431.75 13.50 431.75 17.00 MacLine -431.75 242.50 431.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -422.25 239.00 422.25 17.00 MacLine -grestore -1.00 ps -421.75 13.50 421.75 17.00 MacLine -421.75 242.50 421.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -412.25 237.25 412.25 18.75 MacLine -grestore -1.00 ps -411.75 13.50 411.75 18.75 MacLine -411.75 242.50 411.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -402.38 239.00 402.38 17.00 MacLine -grestore -1.00 ps -401.88 13.50 401.88 17.00 MacLine -401.88 242.50 401.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.38 239.00 392.38 17.00 MacLine -grestore -1.00 ps -391.88 13.50 391.88 17.00 MacLine -391.88 242.50 391.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -382.38 239.00 382.38 17.00 MacLine -grestore -1.00 ps -381.88 13.50 381.88 17.00 MacLine -381.88 242.50 381.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -372.38 239.00 372.38 17.00 MacLine -grestore -1.00 ps -371.88 13.50 371.88 17.00 MacLine -371.88 242.50 371.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -362.25 235.50 362.25 20.50 MacLine -grestore -1.00 ps -361.88 13.50 361.88 20.50 MacLine -361.88 242.50 361.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 358.00 259.88 8.88 WS -gsave 0.125 ps [1] sd -352.38 239.00 352.38 17.00 MacLine -grestore -1.00 ps -351.88 13.50 351.88 17.00 MacLine -351.88 242.50 351.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.50 239.00 342.50 17.00 MacLine -grestore -1.00 ps -342.00 13.50 342.00 17.00 MacLine -342.00 242.50 342.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -332.50 239.00 332.50 17.00 MacLine -grestore -1.00 ps -332.00 13.50 332.00 17.00 MacLine -332.00 242.50 332.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -322.50 239.00 322.50 17.00 MacLine -grestore -1.00 ps -322.00 13.50 322.00 17.00 MacLine -322.00 242.50 322.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -312.50 237.25 312.50 18.75 MacLine -grestore -1.00 ps -312.00 13.50 312.00 18.75 MacLine -312.00 242.50 312.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -302.50 239.00 302.50 17.00 MacLine -grestore -1.00 ps -302.00 13.50 302.00 17.00 MacLine -302.00 242.50 302.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -292.50 239.00 292.50 17.00 MacLine -grestore -1.00 ps -292.00 13.50 292.00 17.00 MacLine -292.00 242.50 292.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -282.50 239.00 282.50 17.00 MacLine -grestore -1.00 ps -282.00 13.50 282.00 17.00 MacLine -282.00 242.50 282.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -272.62 239.00 272.62 17.00 MacLine -grestore -1.00 ps -272.12 13.50 272.12 17.00 MacLine -272.12 242.50 272.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -262.50 235.50 262.50 20.50 MacLine -grestore -1.00 ps -262.12 13.50 262.12 20.50 MacLine -262.12 242.50 262.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 258.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -252.62 239.00 252.62 17.00 MacLine -grestore -1.00 ps -252.12 13.50 252.12 17.00 MacLine -252.12 242.50 252.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -242.62 239.00 242.62 17.00 MacLine -grestore -1.00 ps -242.12 13.50 242.12 17.00 MacLine -242.12 242.50 242.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -232.62 239.00 232.62 17.00 MacLine -grestore -1.00 ps -232.12 13.50 232.12 17.00 MacLine -232.12 242.50 232.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.62 239.00 222.62 17.00 MacLine -grestore -1.00 ps -222.12 13.50 222.12 17.00 MacLine -222.12 242.50 222.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -212.75 237.25 212.75 18.75 MacLine -grestore -1.00 ps -212.25 13.50 212.25 18.75 MacLine -212.25 242.50 212.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -202.75 239.00 202.75 17.00 MacLine -grestore -1.00 ps -202.25 13.50 202.25 17.00 MacLine -202.25 242.50 202.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -192.75 239.00 192.75 17.00 MacLine -grestore -1.00 ps -192.25 13.50 192.25 17.00 MacLine -192.25 242.50 192.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -182.75 239.00 182.75 17.00 MacLine -grestore -1.00 ps -182.25 13.50 182.25 17.00 MacLine -182.25 242.50 182.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -172.75 239.00 172.75 17.00 MacLine -grestore -1.00 ps -172.25 13.50 172.25 17.00 MacLine -172.25 242.50 172.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -162.62 235.50 162.62 20.50 MacLine -grestore -1.00 ps -162.25 13.50 162.25 20.50 MacLine -162.25 242.50 162.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 158.38 259.88 8.88 WS -gsave 0.125 ps [1] sd -152.88 239.00 152.88 17.00 MacLine -grestore -1.00 ps -152.38 13.50 152.38 17.00 MacLine -152.38 242.50 152.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -142.88 239.00 142.88 17.00 MacLine -grestore -1.00 ps -142.38 13.50 142.38 17.00 MacLine -142.38 242.50 142.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -132.88 239.00 132.88 17.00 MacLine -grestore -1.00 ps -132.38 13.50 132.38 17.00 MacLine -132.38 242.50 132.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -122.88 239.00 122.88 17.00 MacLine -grestore -1.00 ps -122.38 13.50 122.38 17.00 MacLine -122.38 242.50 122.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -112.88 237.25 112.88 18.75 MacLine -grestore -1.00 ps -112.38 13.50 112.38 18.75 MacLine -112.38 242.50 112.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -102.88 239.00 102.88 17.00 MacLine -grestore -1.00 ps -102.38 13.50 102.38 17.00 MacLine -102.38 242.50 102.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -93.00 239.00 93.00 17.00 MacLine -grestore -1.00 ps -92.50 13.50 92.50 17.00 MacLine -92.50 242.50 92.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -83.00 239.00 83.00 17.00 MacLine -grestore -1.00 ps -82.50 13.50 82.50 17.00 MacLine -82.50 242.50 82.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -73.00 239.00 73.00 17.00 MacLine -grestore -1.00 ps -72.50 13.50 72.50 17.00 MacLine -72.50 242.50 72.50 239.00 MacLine -1 ps -1.00 ps -62.50 13.50 62.50 20.50 MacLine -62.50 242.50 62.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 58.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(ms\)) 276.50 284.38 72.12 WS -2.00 ps -newpath 63.00 243.00 M -113.00 105.62 L -312.50 105.62 L -562.00 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v1.gif deleted file mode 100755 index 3e4fd7441..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v10.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v10.eps deleted file mode 100755 index 181910900..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v10.eps +++ /dev/null @@ -1,886 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F10 -%%Creation Date: Mon, Oct 9, 1995 08:36 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -62.50 13.50 69.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2000) 23.50 18.38 35.50 WS -gsave 0.125 ps [1] sd -66.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -62.50 25.00 66.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -62.50 36.38 66.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -62.50 47.88 66.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -62.50 59.25 66.00 59.25 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -62.50 70.75 69.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1500) 23.50 75.62 35.50 WS -gsave 0.125 ps [1] sd -66.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -62.50 82.25 66.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -62.50 93.62 66.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -62.50 105.12 66.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -62.50 116.50 66.00 116.50 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -62.50 128.00 69.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1000) 23.50 132.88 35.50 WS -gsave 0.125 ps [1] sd -66.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -62.50 139.50 66.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -62.50 150.88 66.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -62.50 162.38 66.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -62.50 173.75 66.00 173.75 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -62.50 185.25 69.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(500) 32.38 190.12 26.62 WS -gsave 0.125 ps [1] sd -66.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -62.50 196.75 66.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -62.50 208.12 66.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -62.50 219.62 66.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -62.50 231.00 66.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -62.50 242.50 69.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 50.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 553.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -552.00 239.00 552.00 17.00 MacLine -grestore -1.00 ps -551.50 13.50 551.50 17.00 MacLine -551.50 242.50 551.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -542.00 239.00 542.00 17.00 MacLine -grestore -1.00 ps -541.50 13.50 541.50 17.00 MacLine -541.50 242.50 541.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -532.00 239.00 532.00 17.00 MacLine -grestore -1.00 ps -531.50 13.50 531.50 17.00 MacLine -531.50 242.50 531.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.12 239.00 522.12 17.00 MacLine -grestore -1.00 ps -521.62 13.50 521.62 17.00 MacLine -521.62 242.50 521.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.12 237.25 512.12 18.75 MacLine -grestore -1.00 ps -511.62 13.50 511.62 18.75 MacLine -511.62 242.50 511.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -502.12 239.00 502.12 17.00 MacLine -grestore -1.00 ps -501.62 13.50 501.62 17.00 MacLine -501.62 242.50 501.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -492.12 239.00 492.12 17.00 MacLine -grestore -1.00 ps -491.62 13.50 491.62 17.00 MacLine -491.62 242.50 491.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -482.12 239.00 482.12 17.00 MacLine -grestore -1.00 ps -481.62 13.50 481.62 17.00 MacLine -481.62 242.50 481.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.12 239.00 472.12 17.00 MacLine -grestore -1.00 ps -471.62 13.50 471.62 17.00 MacLine -471.62 242.50 471.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -462.12 235.50 462.12 20.50 MacLine -grestore -1.00 ps -461.75 13.50 461.75 20.50 MacLine -461.75 242.50 461.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 457.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -452.25 239.00 452.25 17.00 MacLine -grestore -1.00 ps -451.75 13.50 451.75 17.00 MacLine -451.75 242.50 451.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.25 239.00 442.25 17.00 MacLine -grestore -1.00 ps -441.75 13.50 441.75 17.00 MacLine -441.75 242.50 441.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -432.25 239.00 432.25 17.00 MacLine -grestore -1.00 ps -431.75 13.50 431.75 17.00 MacLine -431.75 242.50 431.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -422.25 239.00 422.25 17.00 MacLine -grestore -1.00 ps -421.75 13.50 421.75 17.00 MacLine -421.75 242.50 421.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -412.25 237.25 412.25 18.75 MacLine -grestore -1.00 ps -411.75 13.50 411.75 18.75 MacLine -411.75 242.50 411.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -402.38 239.00 402.38 17.00 MacLine -grestore -1.00 ps -401.88 13.50 401.88 17.00 MacLine -401.88 242.50 401.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.38 239.00 392.38 17.00 MacLine -grestore -1.00 ps -391.88 13.50 391.88 17.00 MacLine -391.88 242.50 391.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -382.38 239.00 382.38 17.00 MacLine -grestore -1.00 ps -381.88 13.50 381.88 17.00 MacLine -381.88 242.50 381.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -372.38 239.00 372.38 17.00 MacLine -grestore -1.00 ps -371.88 13.50 371.88 17.00 MacLine -371.88 242.50 371.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -362.25 235.50 362.25 20.50 MacLine -grestore -1.00 ps -361.88 13.50 361.88 20.50 MacLine -361.88 242.50 361.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 358.00 259.88 8.88 WS -gsave 0.125 ps [1] sd -352.38 239.00 352.38 17.00 MacLine -grestore -1.00 ps -351.88 13.50 351.88 17.00 MacLine -351.88 242.50 351.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.50 239.00 342.50 17.00 MacLine -grestore -1.00 ps -342.00 13.50 342.00 17.00 MacLine -342.00 242.50 342.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -332.50 239.00 332.50 17.00 MacLine -grestore -1.00 ps -332.00 13.50 332.00 17.00 MacLine -332.00 242.50 332.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -322.50 239.00 322.50 17.00 MacLine -grestore -1.00 ps -322.00 13.50 322.00 17.00 MacLine -322.00 242.50 322.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -312.50 237.25 312.50 18.75 MacLine -grestore -1.00 ps -312.00 13.50 312.00 18.75 MacLine -312.00 242.50 312.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -302.50 239.00 302.50 17.00 MacLine -grestore -1.00 ps -302.00 13.50 302.00 17.00 MacLine -302.00 242.50 302.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -292.50 239.00 292.50 17.00 MacLine -grestore -1.00 ps -292.00 13.50 292.00 17.00 MacLine -292.00 242.50 292.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -282.50 239.00 282.50 17.00 MacLine -grestore -1.00 ps -282.00 13.50 282.00 17.00 MacLine -282.00 242.50 282.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -272.62 239.00 272.62 17.00 MacLine -grestore -1.00 ps -272.12 13.50 272.12 17.00 MacLine -272.12 242.50 272.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -262.50 235.50 262.50 20.50 MacLine -grestore -1.00 ps -262.12 13.50 262.12 20.50 MacLine -262.12 242.50 262.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 258.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -252.62 239.00 252.62 17.00 MacLine -grestore -1.00 ps -252.12 13.50 252.12 17.00 MacLine -252.12 242.50 252.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -242.62 239.00 242.62 17.00 MacLine -grestore -1.00 ps -242.12 13.50 242.12 17.00 MacLine -242.12 242.50 242.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -232.62 239.00 232.62 17.00 MacLine -grestore -1.00 ps -232.12 13.50 232.12 17.00 MacLine -232.12 242.50 232.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.62 239.00 222.62 17.00 MacLine -grestore -1.00 ps -222.12 13.50 222.12 17.00 MacLine -222.12 242.50 222.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -212.75 237.25 212.75 18.75 MacLine -grestore -1.00 ps -212.25 13.50 212.25 18.75 MacLine -212.25 242.50 212.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -202.75 239.00 202.75 17.00 MacLine -grestore -1.00 ps -202.25 13.50 202.25 17.00 MacLine -202.25 242.50 202.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -192.75 239.00 192.75 17.00 MacLine -grestore -1.00 ps -192.25 13.50 192.25 17.00 MacLine -192.25 242.50 192.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -182.75 239.00 182.75 17.00 MacLine -grestore -1.00 ps -182.25 13.50 182.25 17.00 MacLine -182.25 242.50 182.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -172.75 239.00 172.75 17.00 MacLine -grestore -1.00 ps -172.25 13.50 172.25 17.00 MacLine -172.25 242.50 172.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -162.62 235.50 162.62 20.50 MacLine -grestore -1.00 ps -162.25 13.50 162.25 20.50 MacLine -162.25 242.50 162.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 158.38 259.88 8.88 WS -gsave 0.125 ps [1] sd -152.88 239.00 152.88 17.00 MacLine -grestore -1.00 ps -152.38 13.50 152.38 17.00 MacLine -152.38 242.50 152.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -142.88 239.00 142.88 17.00 MacLine -grestore -1.00 ps -142.38 13.50 142.38 17.00 MacLine -142.38 242.50 142.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -132.88 239.00 132.88 17.00 MacLine -grestore -1.00 ps -132.38 13.50 132.38 17.00 MacLine -132.38 242.50 132.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -122.88 239.00 122.88 17.00 MacLine -grestore -1.00 ps -122.38 13.50 122.38 17.00 MacLine -122.38 242.50 122.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -112.88 237.25 112.88 18.75 MacLine -grestore -1.00 ps -112.38 13.50 112.38 18.75 MacLine -112.38 242.50 112.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -102.88 239.00 102.88 17.00 MacLine -grestore -1.00 ps -102.38 13.50 102.38 17.00 MacLine -102.38 242.50 102.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -93.00 239.00 93.00 17.00 MacLine -grestore -1.00 ps -92.50 13.50 92.50 17.00 MacLine -92.50 242.50 92.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -83.00 239.00 83.00 17.00 MacLine -grestore -1.00 ps -82.50 13.50 82.50 17.00 MacLine -82.50 242.50 82.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -73.00 239.00 73.00 17.00 MacLine -grestore -1.00 ps -72.50 13.50 72.50 17.00 MacLine -72.50 242.50 72.50 239.00 MacLine -1 ps -1.00 ps -62.50 13.50 62.50 20.50 MacLine -62.50 242.50 62.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 58.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(ms\)) 276.50 284.38 72.12 WS -2.00 ps -newpath 63.00 243.00 M -312.50 36.88 L -512.00 36.88 L -562.00 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v10.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v10.gif deleted file mode 100755 index 0c4c29da1..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v10.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v2.eps deleted file mode 100755 index 7cd611fd0..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v2.eps +++ /dev/null @@ -1,886 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F2 -%%Creation Date: Mon, Oct 9, 1995 08:36 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -62.50 13.50 69.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2000) 23.50 18.38 35.50 WS -gsave 0.125 ps [1] sd -66.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -62.50 25.00 66.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -62.50 36.38 66.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -62.50 47.88 66.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -62.50 59.25 66.00 59.25 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -62.50 70.75 69.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1500) 23.50 75.62 35.50 WS -gsave 0.125 ps [1] sd -66.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -62.50 82.25 66.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -62.50 93.62 66.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -62.50 105.12 66.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -62.50 116.50 66.00 116.50 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -62.50 128.00 69.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1000) 23.50 132.88 35.50 WS -gsave 0.125 ps [1] sd -66.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -62.50 139.50 66.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -62.50 150.88 66.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -62.50 162.38 66.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -62.50 173.75 66.00 173.75 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -62.50 185.25 69.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(500) 32.38 190.12 26.62 WS -gsave 0.125 ps [1] sd -66.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -62.50 196.75 66.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -62.50 208.12 66.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -62.50 219.62 66.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -62.50 231.00 66.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -62.50 242.50 69.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 50.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 553.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -552.00 239.00 552.00 17.00 MacLine -grestore -1.00 ps -551.50 13.50 551.50 17.00 MacLine -551.50 242.50 551.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -542.00 239.00 542.00 17.00 MacLine -grestore -1.00 ps -541.50 13.50 541.50 17.00 MacLine -541.50 242.50 541.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -532.00 239.00 532.00 17.00 MacLine -grestore -1.00 ps -531.50 13.50 531.50 17.00 MacLine -531.50 242.50 531.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.12 239.00 522.12 17.00 MacLine -grestore -1.00 ps -521.62 13.50 521.62 17.00 MacLine -521.62 242.50 521.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.12 237.25 512.12 18.75 MacLine -grestore -1.00 ps -511.62 13.50 511.62 18.75 MacLine -511.62 242.50 511.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -502.12 239.00 502.12 17.00 MacLine -grestore -1.00 ps -501.62 13.50 501.62 17.00 MacLine -501.62 242.50 501.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -492.12 239.00 492.12 17.00 MacLine -grestore -1.00 ps -491.62 13.50 491.62 17.00 MacLine -491.62 242.50 491.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -482.12 239.00 482.12 17.00 MacLine -grestore -1.00 ps -481.62 13.50 481.62 17.00 MacLine -481.62 242.50 481.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.12 239.00 472.12 17.00 MacLine -grestore -1.00 ps -471.62 13.50 471.62 17.00 MacLine -471.62 242.50 471.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -462.12 235.50 462.12 20.50 MacLine -grestore -1.00 ps -461.75 13.50 461.75 20.50 MacLine -461.75 242.50 461.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 457.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -452.25 239.00 452.25 17.00 MacLine -grestore -1.00 ps -451.75 13.50 451.75 17.00 MacLine -451.75 242.50 451.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.25 239.00 442.25 17.00 MacLine -grestore -1.00 ps -441.75 13.50 441.75 17.00 MacLine -441.75 242.50 441.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -432.25 239.00 432.25 17.00 MacLine -grestore -1.00 ps -431.75 13.50 431.75 17.00 MacLine -431.75 242.50 431.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -422.25 239.00 422.25 17.00 MacLine -grestore -1.00 ps -421.75 13.50 421.75 17.00 MacLine -421.75 242.50 421.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -412.25 237.25 412.25 18.75 MacLine -grestore -1.00 ps -411.75 13.50 411.75 18.75 MacLine -411.75 242.50 411.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -402.38 239.00 402.38 17.00 MacLine -grestore -1.00 ps -401.88 13.50 401.88 17.00 MacLine -401.88 242.50 401.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.38 239.00 392.38 17.00 MacLine -grestore -1.00 ps -391.88 13.50 391.88 17.00 MacLine -391.88 242.50 391.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -382.38 239.00 382.38 17.00 MacLine -grestore -1.00 ps -381.88 13.50 381.88 17.00 MacLine -381.88 242.50 381.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -372.38 239.00 372.38 17.00 MacLine -grestore -1.00 ps -371.88 13.50 371.88 17.00 MacLine -371.88 242.50 371.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -362.25 235.50 362.25 20.50 MacLine -grestore -1.00 ps -361.88 13.50 361.88 20.50 MacLine -361.88 242.50 361.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 358.00 259.88 8.88 WS -gsave 0.125 ps [1] sd -352.38 239.00 352.38 17.00 MacLine -grestore -1.00 ps -351.88 13.50 351.88 17.00 MacLine -351.88 242.50 351.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.50 239.00 342.50 17.00 MacLine -grestore -1.00 ps -342.00 13.50 342.00 17.00 MacLine -342.00 242.50 342.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -332.50 239.00 332.50 17.00 MacLine -grestore -1.00 ps -332.00 13.50 332.00 17.00 MacLine -332.00 242.50 332.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -322.50 239.00 322.50 17.00 MacLine -grestore -1.00 ps -322.00 13.50 322.00 17.00 MacLine -322.00 242.50 322.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -312.50 237.25 312.50 18.75 MacLine -grestore -1.00 ps -312.00 13.50 312.00 18.75 MacLine -312.00 242.50 312.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -302.50 239.00 302.50 17.00 MacLine -grestore -1.00 ps -302.00 13.50 302.00 17.00 MacLine -302.00 242.50 302.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -292.50 239.00 292.50 17.00 MacLine -grestore -1.00 ps -292.00 13.50 292.00 17.00 MacLine -292.00 242.50 292.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -282.50 239.00 282.50 17.00 MacLine -grestore -1.00 ps -282.00 13.50 282.00 17.00 MacLine -282.00 242.50 282.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -272.62 239.00 272.62 17.00 MacLine -grestore -1.00 ps -272.12 13.50 272.12 17.00 MacLine -272.12 242.50 272.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -262.50 235.50 262.50 20.50 MacLine -grestore -1.00 ps -262.12 13.50 262.12 20.50 MacLine -262.12 242.50 262.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 258.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -252.62 239.00 252.62 17.00 MacLine -grestore -1.00 ps -252.12 13.50 252.12 17.00 MacLine -252.12 242.50 252.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -242.62 239.00 242.62 17.00 MacLine -grestore -1.00 ps -242.12 13.50 242.12 17.00 MacLine -242.12 242.50 242.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -232.62 239.00 232.62 17.00 MacLine -grestore -1.00 ps -232.12 13.50 232.12 17.00 MacLine -232.12 242.50 232.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.62 239.00 222.62 17.00 MacLine -grestore -1.00 ps -222.12 13.50 222.12 17.00 MacLine -222.12 242.50 222.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -212.75 237.25 212.75 18.75 MacLine -grestore -1.00 ps -212.25 13.50 212.25 18.75 MacLine -212.25 242.50 212.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -202.75 239.00 202.75 17.00 MacLine -grestore -1.00 ps -202.25 13.50 202.25 17.00 MacLine -202.25 242.50 202.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -192.75 239.00 192.75 17.00 MacLine -grestore -1.00 ps -192.25 13.50 192.25 17.00 MacLine -192.25 242.50 192.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -182.75 239.00 182.75 17.00 MacLine -grestore -1.00 ps -182.25 13.50 182.25 17.00 MacLine -182.25 242.50 182.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -172.75 239.00 172.75 17.00 MacLine -grestore -1.00 ps -172.25 13.50 172.25 17.00 MacLine -172.25 242.50 172.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -162.62 235.50 162.62 20.50 MacLine -grestore -1.00 ps -162.25 13.50 162.25 20.50 MacLine -162.25 242.50 162.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 158.38 259.88 8.88 WS -gsave 0.125 ps [1] sd -152.88 239.00 152.88 17.00 MacLine -grestore -1.00 ps -152.38 13.50 152.38 17.00 MacLine -152.38 242.50 152.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -142.88 239.00 142.88 17.00 MacLine -grestore -1.00 ps -142.38 13.50 142.38 17.00 MacLine -142.38 242.50 142.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -132.88 239.00 132.88 17.00 MacLine -grestore -1.00 ps -132.38 13.50 132.38 17.00 MacLine -132.38 242.50 132.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -122.88 239.00 122.88 17.00 MacLine -grestore -1.00 ps -122.38 13.50 122.38 17.00 MacLine -122.38 242.50 122.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -112.88 237.25 112.88 18.75 MacLine -grestore -1.00 ps -112.38 13.50 112.38 18.75 MacLine -112.38 242.50 112.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -102.88 239.00 102.88 17.00 MacLine -grestore -1.00 ps -102.38 13.50 102.38 17.00 MacLine -102.38 242.50 102.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -93.00 239.00 93.00 17.00 MacLine -grestore -1.00 ps -92.50 13.50 92.50 17.00 MacLine -92.50 242.50 92.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -83.00 239.00 83.00 17.00 MacLine -grestore -1.00 ps -82.50 13.50 82.50 17.00 MacLine -82.50 242.50 82.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -73.00 239.00 73.00 17.00 MacLine -grestore -1.00 ps -72.50 13.50 72.50 17.00 MacLine -72.50 242.50 72.50 239.00 MacLine -1 ps -1.00 ps -62.50 13.50 62.50 20.50 MacLine -62.50 242.50 62.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 58.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(ms\)) 276.50 284.38 72.12 WS -2.00 ps -newpath 63.00 243.00 M -113.00 151.38 L -462.12 151.38 L -562.00 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v2.gif deleted file mode 100755 index bb02c7cf7..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v3.eps deleted file mode 100755 index 5b3382638..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v3.eps +++ /dev/null @@ -1,886 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F3 -%%Creation Date: Mon, Oct 9, 1995 08:36 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -62.50 13.50 69.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2000) 23.50 18.38 35.50 WS -gsave 0.125 ps [1] sd -66.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -62.50 25.00 66.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -62.50 36.38 66.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -62.50 47.88 66.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -62.50 59.25 66.00 59.25 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -62.50 70.75 69.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1500) 23.50 75.62 35.50 WS -gsave 0.125 ps [1] sd -66.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -62.50 82.25 66.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -62.50 93.62 66.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -62.50 105.12 66.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -62.50 116.50 66.00 116.50 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -62.50 128.00 69.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1000) 23.50 132.88 35.50 WS -gsave 0.125 ps [1] sd -66.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -62.50 139.50 66.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -62.50 150.88 66.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -62.50 162.38 66.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -62.50 173.75 66.00 173.75 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -62.50 185.25 69.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(500) 32.38 190.12 26.62 WS -gsave 0.125 ps [1] sd -66.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -62.50 196.75 66.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -62.50 208.12 66.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -62.50 219.62 66.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -62.50 231.00 66.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -62.50 242.50 69.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 50.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 553.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -552.00 239.00 552.00 17.00 MacLine -grestore -1.00 ps -551.50 13.50 551.50 17.00 MacLine -551.50 242.50 551.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -542.00 239.00 542.00 17.00 MacLine -grestore -1.00 ps -541.50 13.50 541.50 17.00 MacLine -541.50 242.50 541.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -532.00 239.00 532.00 17.00 MacLine -grestore -1.00 ps -531.50 13.50 531.50 17.00 MacLine -531.50 242.50 531.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.12 239.00 522.12 17.00 MacLine -grestore -1.00 ps -521.62 13.50 521.62 17.00 MacLine -521.62 242.50 521.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.12 237.25 512.12 18.75 MacLine -grestore -1.00 ps -511.62 13.50 511.62 18.75 MacLine -511.62 242.50 511.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -502.12 239.00 502.12 17.00 MacLine -grestore -1.00 ps -501.62 13.50 501.62 17.00 MacLine -501.62 242.50 501.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -492.12 239.00 492.12 17.00 MacLine -grestore -1.00 ps -491.62 13.50 491.62 17.00 MacLine -491.62 242.50 491.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -482.12 239.00 482.12 17.00 MacLine -grestore -1.00 ps -481.62 13.50 481.62 17.00 MacLine -481.62 242.50 481.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.12 239.00 472.12 17.00 MacLine -grestore -1.00 ps -471.62 13.50 471.62 17.00 MacLine -471.62 242.50 471.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -462.12 235.50 462.12 20.50 MacLine -grestore -1.00 ps -461.75 13.50 461.75 20.50 MacLine -461.75 242.50 461.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 457.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -452.25 239.00 452.25 17.00 MacLine -grestore -1.00 ps -451.75 13.50 451.75 17.00 MacLine -451.75 242.50 451.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.25 239.00 442.25 17.00 MacLine -grestore -1.00 ps -441.75 13.50 441.75 17.00 MacLine -441.75 242.50 441.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -432.25 239.00 432.25 17.00 MacLine -grestore -1.00 ps -431.75 13.50 431.75 17.00 MacLine -431.75 242.50 431.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -422.25 239.00 422.25 17.00 MacLine -grestore -1.00 ps -421.75 13.50 421.75 17.00 MacLine -421.75 242.50 421.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -412.25 237.25 412.25 18.75 MacLine -grestore -1.00 ps -411.75 13.50 411.75 18.75 MacLine -411.75 242.50 411.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -402.38 239.00 402.38 17.00 MacLine -grestore -1.00 ps -401.88 13.50 401.88 17.00 MacLine -401.88 242.50 401.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.38 239.00 392.38 17.00 MacLine -grestore -1.00 ps -391.88 13.50 391.88 17.00 MacLine -391.88 242.50 391.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -382.38 239.00 382.38 17.00 MacLine -grestore -1.00 ps -381.88 13.50 381.88 17.00 MacLine -381.88 242.50 381.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -372.38 239.00 372.38 17.00 MacLine -grestore -1.00 ps -371.88 13.50 371.88 17.00 MacLine -371.88 242.50 371.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -362.25 235.50 362.25 20.50 MacLine -grestore -1.00 ps -361.88 13.50 361.88 20.50 MacLine -361.88 242.50 361.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 358.00 259.88 8.88 WS -gsave 0.125 ps [1] sd -352.38 239.00 352.38 17.00 MacLine -grestore -1.00 ps -351.88 13.50 351.88 17.00 MacLine -351.88 242.50 351.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.50 239.00 342.50 17.00 MacLine -grestore -1.00 ps -342.00 13.50 342.00 17.00 MacLine -342.00 242.50 342.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -332.50 239.00 332.50 17.00 MacLine -grestore -1.00 ps -332.00 13.50 332.00 17.00 MacLine -332.00 242.50 332.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -322.50 239.00 322.50 17.00 MacLine -grestore -1.00 ps -322.00 13.50 322.00 17.00 MacLine -322.00 242.50 322.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -312.50 237.25 312.50 18.75 MacLine -grestore -1.00 ps -312.00 13.50 312.00 18.75 MacLine -312.00 242.50 312.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -302.50 239.00 302.50 17.00 MacLine -grestore -1.00 ps -302.00 13.50 302.00 17.00 MacLine -302.00 242.50 302.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -292.50 239.00 292.50 17.00 MacLine -grestore -1.00 ps -292.00 13.50 292.00 17.00 MacLine -292.00 242.50 292.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -282.50 239.00 282.50 17.00 MacLine -grestore -1.00 ps -282.00 13.50 282.00 17.00 MacLine -282.00 242.50 282.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -272.62 239.00 272.62 17.00 MacLine -grestore -1.00 ps -272.12 13.50 272.12 17.00 MacLine -272.12 242.50 272.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -262.50 235.50 262.50 20.50 MacLine -grestore -1.00 ps -262.12 13.50 262.12 20.50 MacLine -262.12 242.50 262.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 258.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -252.62 239.00 252.62 17.00 MacLine -grestore -1.00 ps -252.12 13.50 252.12 17.00 MacLine -252.12 242.50 252.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -242.62 239.00 242.62 17.00 MacLine -grestore -1.00 ps -242.12 13.50 242.12 17.00 MacLine -242.12 242.50 242.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -232.62 239.00 232.62 17.00 MacLine -grestore -1.00 ps -232.12 13.50 232.12 17.00 MacLine -232.12 242.50 232.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.62 239.00 222.62 17.00 MacLine -grestore -1.00 ps -222.12 13.50 222.12 17.00 MacLine -222.12 242.50 222.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -212.75 237.25 212.75 18.75 MacLine -grestore -1.00 ps -212.25 13.50 212.25 18.75 MacLine -212.25 242.50 212.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -202.75 239.00 202.75 17.00 MacLine -grestore -1.00 ps -202.25 13.50 202.25 17.00 MacLine -202.25 242.50 202.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -192.75 239.00 192.75 17.00 MacLine -grestore -1.00 ps -192.25 13.50 192.25 17.00 MacLine -192.25 242.50 192.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -182.75 239.00 182.75 17.00 MacLine -grestore -1.00 ps -182.25 13.50 182.25 17.00 MacLine -182.25 242.50 182.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -172.75 239.00 172.75 17.00 MacLine -grestore -1.00 ps -172.25 13.50 172.25 17.00 MacLine -172.25 242.50 172.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -162.62 235.50 162.62 20.50 MacLine -grestore -1.00 ps -162.25 13.50 162.25 20.50 MacLine -162.25 242.50 162.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 158.38 259.88 8.88 WS -gsave 0.125 ps [1] sd -152.88 239.00 152.88 17.00 MacLine -grestore -1.00 ps -152.38 13.50 152.38 17.00 MacLine -152.38 242.50 152.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -142.88 239.00 142.88 17.00 MacLine -grestore -1.00 ps -142.38 13.50 142.38 17.00 MacLine -142.38 242.50 142.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -132.88 239.00 132.88 17.00 MacLine -grestore -1.00 ps -132.38 13.50 132.38 17.00 MacLine -132.38 242.50 132.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -122.88 239.00 122.88 17.00 MacLine -grestore -1.00 ps -122.38 13.50 122.38 17.00 MacLine -122.38 242.50 122.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -112.88 237.25 112.88 18.75 MacLine -grestore -1.00 ps -112.38 13.50 112.38 18.75 MacLine -112.38 242.50 112.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -102.88 239.00 102.88 17.00 MacLine -grestore -1.00 ps -102.38 13.50 102.38 17.00 MacLine -102.38 242.50 102.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -93.00 239.00 93.00 17.00 MacLine -grestore -1.00 ps -92.50 13.50 92.50 17.00 MacLine -92.50 242.50 92.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -83.00 239.00 83.00 17.00 MacLine -grestore -1.00 ps -82.50 13.50 82.50 17.00 MacLine -82.50 242.50 82.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -73.00 239.00 73.00 17.00 MacLine -grestore -1.00 ps -72.50 13.50 72.50 17.00 MacLine -72.50 242.50 72.50 239.00 MacLine -1 ps -1.00 ps -62.50 13.50 62.50 20.50 MacLine -62.50 242.50 62.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 58.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(ms\)) 276.50 284.38 72.12 WS -2.00 ps -newpath 63.00 243.00 M -162.88 174.25 L -312.50 174.25 L -562.00 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v3.gif deleted file mode 100755 index 7b3250e5d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v4.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v4.eps deleted file mode 100755 index 30c868973..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v4.eps +++ /dev/null @@ -1,886 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F4 -%%Creation Date: Mon, Oct 9, 1995 08:36 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -62.50 13.50 69.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2000) 23.50 18.38 35.50 WS -gsave 0.125 ps [1] sd -66.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -62.50 25.00 66.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -62.50 36.38 66.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -62.50 47.88 66.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -62.50 59.25 66.00 59.25 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -62.50 70.75 69.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1500) 23.50 75.62 35.50 WS -gsave 0.125 ps [1] sd -66.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -62.50 82.25 66.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -62.50 93.62 66.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -62.50 105.12 66.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -62.50 116.50 66.00 116.50 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -62.50 128.00 69.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1000) 23.50 132.88 35.50 WS -gsave 0.125 ps [1] sd -66.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -62.50 139.50 66.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -62.50 150.88 66.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -62.50 162.38 66.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -62.50 173.75 66.00 173.75 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -62.50 185.25 69.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(500) 32.38 190.12 26.62 WS -gsave 0.125 ps [1] sd -66.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -62.50 196.75 66.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -62.50 208.12 66.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -62.50 219.62 66.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -62.50 231.00 66.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -62.50 242.50 69.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 50.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 553.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -552.00 239.00 552.00 17.00 MacLine -grestore -1.00 ps -551.50 13.50 551.50 17.00 MacLine -551.50 242.50 551.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -542.00 239.00 542.00 17.00 MacLine -grestore -1.00 ps -541.50 13.50 541.50 17.00 MacLine -541.50 242.50 541.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -532.00 239.00 532.00 17.00 MacLine -grestore -1.00 ps -531.50 13.50 531.50 17.00 MacLine -531.50 242.50 531.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.12 239.00 522.12 17.00 MacLine -grestore -1.00 ps -521.62 13.50 521.62 17.00 MacLine -521.62 242.50 521.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.12 237.25 512.12 18.75 MacLine -grestore -1.00 ps -511.62 13.50 511.62 18.75 MacLine -511.62 242.50 511.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -502.12 239.00 502.12 17.00 MacLine -grestore -1.00 ps -501.62 13.50 501.62 17.00 MacLine -501.62 242.50 501.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -492.12 239.00 492.12 17.00 MacLine -grestore -1.00 ps -491.62 13.50 491.62 17.00 MacLine -491.62 242.50 491.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -482.12 239.00 482.12 17.00 MacLine -grestore -1.00 ps -481.62 13.50 481.62 17.00 MacLine -481.62 242.50 481.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.12 239.00 472.12 17.00 MacLine -grestore -1.00 ps -471.62 13.50 471.62 17.00 MacLine -471.62 242.50 471.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -462.12 235.50 462.12 20.50 MacLine -grestore -1.00 ps -461.75 13.50 461.75 20.50 MacLine -461.75 242.50 461.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 457.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -452.25 239.00 452.25 17.00 MacLine -grestore -1.00 ps -451.75 13.50 451.75 17.00 MacLine -451.75 242.50 451.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.25 239.00 442.25 17.00 MacLine -grestore -1.00 ps -441.75 13.50 441.75 17.00 MacLine -441.75 242.50 441.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -432.25 239.00 432.25 17.00 MacLine -grestore -1.00 ps -431.75 13.50 431.75 17.00 MacLine -431.75 242.50 431.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -422.25 239.00 422.25 17.00 MacLine -grestore -1.00 ps -421.75 13.50 421.75 17.00 MacLine -421.75 242.50 421.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -412.25 237.25 412.25 18.75 MacLine -grestore -1.00 ps -411.75 13.50 411.75 18.75 MacLine -411.75 242.50 411.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -402.38 239.00 402.38 17.00 MacLine -grestore -1.00 ps -401.88 13.50 401.88 17.00 MacLine -401.88 242.50 401.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.38 239.00 392.38 17.00 MacLine -grestore -1.00 ps -391.88 13.50 391.88 17.00 MacLine -391.88 242.50 391.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -382.38 239.00 382.38 17.00 MacLine -grestore -1.00 ps -381.88 13.50 381.88 17.00 MacLine -381.88 242.50 381.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -372.38 239.00 372.38 17.00 MacLine -grestore -1.00 ps -371.88 13.50 371.88 17.00 MacLine -371.88 242.50 371.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -362.25 235.50 362.25 20.50 MacLine -grestore -1.00 ps -361.88 13.50 361.88 20.50 MacLine -361.88 242.50 361.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 358.00 259.88 8.88 WS -gsave 0.125 ps [1] sd -352.38 239.00 352.38 17.00 MacLine -grestore -1.00 ps -351.88 13.50 351.88 17.00 MacLine -351.88 242.50 351.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.50 239.00 342.50 17.00 MacLine -grestore -1.00 ps -342.00 13.50 342.00 17.00 MacLine -342.00 242.50 342.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -332.50 239.00 332.50 17.00 MacLine -grestore -1.00 ps -332.00 13.50 332.00 17.00 MacLine -332.00 242.50 332.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -322.50 239.00 322.50 17.00 MacLine -grestore -1.00 ps -322.00 13.50 322.00 17.00 MacLine -322.00 242.50 322.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -312.50 237.25 312.50 18.75 MacLine -grestore -1.00 ps -312.00 13.50 312.00 18.75 MacLine -312.00 242.50 312.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -302.50 239.00 302.50 17.00 MacLine -grestore -1.00 ps -302.00 13.50 302.00 17.00 MacLine -302.00 242.50 302.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -292.50 239.00 292.50 17.00 MacLine -grestore -1.00 ps -292.00 13.50 292.00 17.00 MacLine -292.00 242.50 292.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -282.50 239.00 282.50 17.00 MacLine -grestore -1.00 ps -282.00 13.50 282.00 17.00 MacLine -282.00 242.50 282.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -272.62 239.00 272.62 17.00 MacLine -grestore -1.00 ps -272.12 13.50 272.12 17.00 MacLine -272.12 242.50 272.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -262.50 235.50 262.50 20.50 MacLine -grestore -1.00 ps -262.12 13.50 262.12 20.50 MacLine -262.12 242.50 262.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 258.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -252.62 239.00 252.62 17.00 MacLine -grestore -1.00 ps -252.12 13.50 252.12 17.00 MacLine -252.12 242.50 252.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -242.62 239.00 242.62 17.00 MacLine -grestore -1.00 ps -242.12 13.50 242.12 17.00 MacLine -242.12 242.50 242.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -232.62 239.00 232.62 17.00 MacLine -grestore -1.00 ps -232.12 13.50 232.12 17.00 MacLine -232.12 242.50 232.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.62 239.00 222.62 17.00 MacLine -grestore -1.00 ps -222.12 13.50 222.12 17.00 MacLine -222.12 242.50 222.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -212.75 237.25 212.75 18.75 MacLine -grestore -1.00 ps -212.25 13.50 212.25 18.75 MacLine -212.25 242.50 212.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -202.75 239.00 202.75 17.00 MacLine -grestore -1.00 ps -202.25 13.50 202.25 17.00 MacLine -202.25 242.50 202.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -192.75 239.00 192.75 17.00 MacLine -grestore -1.00 ps -192.25 13.50 192.25 17.00 MacLine -192.25 242.50 192.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -182.75 239.00 182.75 17.00 MacLine -grestore -1.00 ps -182.25 13.50 182.25 17.00 MacLine -182.25 242.50 182.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -172.75 239.00 172.75 17.00 MacLine -grestore -1.00 ps -172.25 13.50 172.25 17.00 MacLine -172.25 242.50 172.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -162.62 235.50 162.62 20.50 MacLine -grestore -1.00 ps -162.25 13.50 162.25 20.50 MacLine -162.25 242.50 162.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 158.38 259.88 8.88 WS -gsave 0.125 ps [1] sd -152.88 239.00 152.88 17.00 MacLine -grestore -1.00 ps -152.38 13.50 152.38 17.00 MacLine -152.38 242.50 152.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -142.88 239.00 142.88 17.00 MacLine -grestore -1.00 ps -142.38 13.50 142.38 17.00 MacLine -142.38 242.50 142.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -132.88 239.00 132.88 17.00 MacLine -grestore -1.00 ps -132.38 13.50 132.38 17.00 MacLine -132.38 242.50 132.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -122.88 239.00 122.88 17.00 MacLine -grestore -1.00 ps -122.38 13.50 122.38 17.00 MacLine -122.38 242.50 122.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -112.88 237.25 112.88 18.75 MacLine -grestore -1.00 ps -112.38 13.50 112.38 18.75 MacLine -112.38 242.50 112.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -102.88 239.00 102.88 17.00 MacLine -grestore -1.00 ps -102.38 13.50 102.38 17.00 MacLine -102.38 242.50 102.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -93.00 239.00 93.00 17.00 MacLine -grestore -1.00 ps -92.50 13.50 92.50 17.00 MacLine -92.50 242.50 92.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -83.00 239.00 83.00 17.00 MacLine -grestore -1.00 ps -82.50 13.50 82.50 17.00 MacLine -82.50 242.50 82.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -73.00 239.00 73.00 17.00 MacLine -grestore -1.00 ps -72.50 13.50 72.50 17.00 MacLine -72.50 242.50 72.50 239.00 MacLine -1 ps -1.00 ps -62.50 13.50 62.50 20.50 MacLine -62.50 242.50 62.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 58.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(ms\)) 276.50 284.38 72.12 WS -2.00 ps -newpath 63.00 243.00 M -162.88 105.62 L -512.00 105.62 L -562.00 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v4.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v4.gif deleted file mode 100755 index d856bfb9c..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v4.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v5.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v5.eps deleted file mode 100755 index 1f06e58f6..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v5.eps +++ /dev/null @@ -1,886 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F5 -%%Creation Date: Mon, Oct 9, 1995 08:36 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -62.50 13.50 69.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2000) 23.50 18.38 35.50 WS -gsave 0.125 ps [1] sd -66.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -62.50 25.00 66.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -62.50 36.38 66.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -62.50 47.88 66.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -62.50 59.25 66.00 59.25 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -62.50 70.75 69.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1500) 23.50 75.62 35.50 WS -gsave 0.125 ps [1] sd -66.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -62.50 82.25 66.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -62.50 93.62 66.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -62.50 105.12 66.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -62.50 116.50 66.00 116.50 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -62.50 128.00 69.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1000) 23.50 132.88 35.50 WS -gsave 0.125 ps [1] sd -66.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -62.50 139.50 66.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -62.50 150.88 66.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -62.50 162.38 66.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -62.50 173.75 66.00 173.75 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -62.50 185.25 69.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(500) 32.38 190.12 26.62 WS -gsave 0.125 ps [1] sd -66.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -62.50 196.75 66.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -62.50 208.12 66.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -62.50 219.62 66.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -62.50 231.00 66.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -62.50 242.50 69.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 50.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 553.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -552.00 239.00 552.00 17.00 MacLine -grestore -1.00 ps -551.50 13.50 551.50 17.00 MacLine -551.50 242.50 551.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -542.00 239.00 542.00 17.00 MacLine -grestore -1.00 ps -541.50 13.50 541.50 17.00 MacLine -541.50 242.50 541.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -532.00 239.00 532.00 17.00 MacLine -grestore -1.00 ps -531.50 13.50 531.50 17.00 MacLine -531.50 242.50 531.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.12 239.00 522.12 17.00 MacLine -grestore -1.00 ps -521.62 13.50 521.62 17.00 MacLine -521.62 242.50 521.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.12 237.25 512.12 18.75 MacLine -grestore -1.00 ps -511.62 13.50 511.62 18.75 MacLine -511.62 242.50 511.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -502.12 239.00 502.12 17.00 MacLine -grestore -1.00 ps -501.62 13.50 501.62 17.00 MacLine -501.62 242.50 501.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -492.12 239.00 492.12 17.00 MacLine -grestore -1.00 ps -491.62 13.50 491.62 17.00 MacLine -491.62 242.50 491.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -482.12 239.00 482.12 17.00 MacLine -grestore -1.00 ps -481.62 13.50 481.62 17.00 MacLine -481.62 242.50 481.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.12 239.00 472.12 17.00 MacLine -grestore -1.00 ps -471.62 13.50 471.62 17.00 MacLine -471.62 242.50 471.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -462.12 235.50 462.12 20.50 MacLine -grestore -1.00 ps -461.75 13.50 461.75 20.50 MacLine -461.75 242.50 461.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 457.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -452.25 239.00 452.25 17.00 MacLine -grestore -1.00 ps -451.75 13.50 451.75 17.00 MacLine -451.75 242.50 451.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.25 239.00 442.25 17.00 MacLine -grestore -1.00 ps -441.75 13.50 441.75 17.00 MacLine -441.75 242.50 441.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -432.25 239.00 432.25 17.00 MacLine -grestore -1.00 ps -431.75 13.50 431.75 17.00 MacLine -431.75 242.50 431.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -422.25 239.00 422.25 17.00 MacLine -grestore -1.00 ps -421.75 13.50 421.75 17.00 MacLine -421.75 242.50 421.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -412.25 237.25 412.25 18.75 MacLine -grestore -1.00 ps -411.75 13.50 411.75 18.75 MacLine -411.75 242.50 411.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -402.38 239.00 402.38 17.00 MacLine -grestore -1.00 ps -401.88 13.50 401.88 17.00 MacLine -401.88 242.50 401.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.38 239.00 392.38 17.00 MacLine -grestore -1.00 ps -391.88 13.50 391.88 17.00 MacLine -391.88 242.50 391.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -382.38 239.00 382.38 17.00 MacLine -grestore -1.00 ps -381.88 13.50 381.88 17.00 MacLine -381.88 242.50 381.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -372.38 239.00 372.38 17.00 MacLine -grestore -1.00 ps -371.88 13.50 371.88 17.00 MacLine -371.88 242.50 371.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -362.25 235.50 362.25 20.50 MacLine -grestore -1.00 ps -361.88 13.50 361.88 20.50 MacLine -361.88 242.50 361.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 358.00 259.88 8.88 WS -gsave 0.125 ps [1] sd -352.38 239.00 352.38 17.00 MacLine -grestore -1.00 ps -351.88 13.50 351.88 17.00 MacLine -351.88 242.50 351.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.50 239.00 342.50 17.00 MacLine -grestore -1.00 ps -342.00 13.50 342.00 17.00 MacLine -342.00 242.50 342.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -332.50 239.00 332.50 17.00 MacLine -grestore -1.00 ps -332.00 13.50 332.00 17.00 MacLine -332.00 242.50 332.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -322.50 239.00 322.50 17.00 MacLine -grestore -1.00 ps -322.00 13.50 322.00 17.00 MacLine -322.00 242.50 322.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -312.50 237.25 312.50 18.75 MacLine -grestore -1.00 ps -312.00 13.50 312.00 18.75 MacLine -312.00 242.50 312.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -302.50 239.00 302.50 17.00 MacLine -grestore -1.00 ps -302.00 13.50 302.00 17.00 MacLine -302.00 242.50 302.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -292.50 239.00 292.50 17.00 MacLine -grestore -1.00 ps -292.00 13.50 292.00 17.00 MacLine -292.00 242.50 292.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -282.50 239.00 282.50 17.00 MacLine -grestore -1.00 ps -282.00 13.50 282.00 17.00 MacLine -282.00 242.50 282.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -272.62 239.00 272.62 17.00 MacLine -grestore -1.00 ps -272.12 13.50 272.12 17.00 MacLine -272.12 242.50 272.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -262.50 235.50 262.50 20.50 MacLine -grestore -1.00 ps -262.12 13.50 262.12 20.50 MacLine -262.12 242.50 262.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 258.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -252.62 239.00 252.62 17.00 MacLine -grestore -1.00 ps -252.12 13.50 252.12 17.00 MacLine -252.12 242.50 252.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -242.62 239.00 242.62 17.00 MacLine -grestore -1.00 ps -242.12 13.50 242.12 17.00 MacLine -242.12 242.50 242.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -232.62 239.00 232.62 17.00 MacLine -grestore -1.00 ps -232.12 13.50 232.12 17.00 MacLine -232.12 242.50 232.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.62 239.00 222.62 17.00 MacLine -grestore -1.00 ps -222.12 13.50 222.12 17.00 MacLine -222.12 242.50 222.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -212.75 237.25 212.75 18.75 MacLine -grestore -1.00 ps -212.25 13.50 212.25 18.75 MacLine -212.25 242.50 212.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -202.75 239.00 202.75 17.00 MacLine -grestore -1.00 ps -202.25 13.50 202.25 17.00 MacLine -202.25 242.50 202.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -192.75 239.00 192.75 17.00 MacLine -grestore -1.00 ps -192.25 13.50 192.25 17.00 MacLine -192.25 242.50 192.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -182.75 239.00 182.75 17.00 MacLine -grestore -1.00 ps -182.25 13.50 182.25 17.00 MacLine -182.25 242.50 182.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -172.75 239.00 172.75 17.00 MacLine -grestore -1.00 ps -172.25 13.50 172.25 17.00 MacLine -172.25 242.50 172.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -162.62 235.50 162.62 20.50 MacLine -grestore -1.00 ps -162.25 13.50 162.25 20.50 MacLine -162.25 242.50 162.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 158.38 259.88 8.88 WS -gsave 0.125 ps [1] sd -152.88 239.00 152.88 17.00 MacLine -grestore -1.00 ps -152.38 13.50 152.38 17.00 MacLine -152.38 242.50 152.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -142.88 239.00 142.88 17.00 MacLine -grestore -1.00 ps -142.38 13.50 142.38 17.00 MacLine -142.38 242.50 142.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -132.88 239.00 132.88 17.00 MacLine -grestore -1.00 ps -132.38 13.50 132.38 17.00 MacLine -132.38 242.50 132.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -122.88 239.00 122.88 17.00 MacLine -grestore -1.00 ps -122.38 13.50 122.38 17.00 MacLine -122.38 242.50 122.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -112.88 237.25 112.88 18.75 MacLine -grestore -1.00 ps -112.38 13.50 112.38 18.75 MacLine -112.38 242.50 112.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -102.88 239.00 102.88 17.00 MacLine -grestore -1.00 ps -102.38 13.50 102.38 17.00 MacLine -102.38 242.50 102.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -93.00 239.00 93.00 17.00 MacLine -grestore -1.00 ps -92.50 13.50 92.50 17.00 MacLine -92.50 242.50 92.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -83.00 239.00 83.00 17.00 MacLine -grestore -1.00 ps -82.50 13.50 82.50 17.00 MacLine -82.50 242.50 82.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -73.00 239.00 73.00 17.00 MacLine -grestore -1.00 ps -72.50 13.50 72.50 17.00 MacLine -72.50 242.50 72.50 239.00 MacLine -1 ps -1.00 ps -62.50 13.50 62.50 20.50 MacLine -62.50 242.50 62.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 58.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(ms\)) 276.50 284.38 72.12 WS -2.00 ps -newpath 63.00 243.00 M -212.75 36.88 L -412.25 36.88 L -562.00 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v5.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v5.gif deleted file mode 100755 index 4fba34207..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v5.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v6.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v6.eps deleted file mode 100755 index 8bc738464..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v6.eps +++ /dev/null @@ -1,886 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F6 -%%Creation Date: Mon, Oct 9, 1995 08:36 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -62.50 13.50 69.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2000) 23.50 18.38 35.50 WS -gsave 0.125 ps [1] sd -66.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -62.50 25.00 66.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -62.50 36.38 66.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -62.50 47.88 66.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -62.50 59.25 66.00 59.25 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -62.50 70.75 69.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1500) 23.50 75.62 35.50 WS -gsave 0.125 ps [1] sd -66.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -62.50 82.25 66.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -62.50 93.62 66.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -62.50 105.12 66.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -62.50 116.50 66.00 116.50 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -62.50 128.00 69.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1000) 23.50 132.88 35.50 WS -gsave 0.125 ps [1] sd -66.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -62.50 139.50 66.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -62.50 150.88 66.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -62.50 162.38 66.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -62.50 173.75 66.00 173.75 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -62.50 185.25 69.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(500) 32.38 190.12 26.62 WS -gsave 0.125 ps [1] sd -66.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -62.50 196.75 66.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -62.50 208.12 66.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -62.50 219.62 66.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -62.50 231.00 66.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -62.50 242.50 69.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 50.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 553.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -552.00 239.00 552.00 17.00 MacLine -grestore -1.00 ps -551.50 13.50 551.50 17.00 MacLine -551.50 242.50 551.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -542.00 239.00 542.00 17.00 MacLine -grestore -1.00 ps -541.50 13.50 541.50 17.00 MacLine -541.50 242.50 541.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -532.00 239.00 532.00 17.00 MacLine -grestore -1.00 ps -531.50 13.50 531.50 17.00 MacLine -531.50 242.50 531.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.12 239.00 522.12 17.00 MacLine -grestore -1.00 ps -521.62 13.50 521.62 17.00 MacLine -521.62 242.50 521.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.12 237.25 512.12 18.75 MacLine -grestore -1.00 ps -511.62 13.50 511.62 18.75 MacLine -511.62 242.50 511.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -502.12 239.00 502.12 17.00 MacLine -grestore -1.00 ps -501.62 13.50 501.62 17.00 MacLine -501.62 242.50 501.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -492.12 239.00 492.12 17.00 MacLine -grestore -1.00 ps -491.62 13.50 491.62 17.00 MacLine -491.62 242.50 491.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -482.12 239.00 482.12 17.00 MacLine -grestore -1.00 ps -481.62 13.50 481.62 17.00 MacLine -481.62 242.50 481.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.12 239.00 472.12 17.00 MacLine -grestore -1.00 ps -471.62 13.50 471.62 17.00 MacLine -471.62 242.50 471.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -462.12 235.50 462.12 20.50 MacLine -grestore -1.00 ps -461.75 13.50 461.75 20.50 MacLine -461.75 242.50 461.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 457.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -452.25 239.00 452.25 17.00 MacLine -grestore -1.00 ps -451.75 13.50 451.75 17.00 MacLine -451.75 242.50 451.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.25 239.00 442.25 17.00 MacLine -grestore -1.00 ps -441.75 13.50 441.75 17.00 MacLine -441.75 242.50 441.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -432.25 239.00 432.25 17.00 MacLine -grestore -1.00 ps -431.75 13.50 431.75 17.00 MacLine -431.75 242.50 431.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -422.25 239.00 422.25 17.00 MacLine -grestore -1.00 ps -421.75 13.50 421.75 17.00 MacLine -421.75 242.50 421.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -412.25 237.25 412.25 18.75 MacLine -grestore -1.00 ps -411.75 13.50 411.75 18.75 MacLine -411.75 242.50 411.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -402.38 239.00 402.38 17.00 MacLine -grestore -1.00 ps -401.88 13.50 401.88 17.00 MacLine -401.88 242.50 401.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.38 239.00 392.38 17.00 MacLine -grestore -1.00 ps -391.88 13.50 391.88 17.00 MacLine -391.88 242.50 391.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -382.38 239.00 382.38 17.00 MacLine -grestore -1.00 ps -381.88 13.50 381.88 17.00 MacLine -381.88 242.50 381.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -372.38 239.00 372.38 17.00 MacLine -grestore -1.00 ps -371.88 13.50 371.88 17.00 MacLine -371.88 242.50 371.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -362.25 235.50 362.25 20.50 MacLine -grestore -1.00 ps -361.88 13.50 361.88 20.50 MacLine -361.88 242.50 361.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 358.00 259.88 8.88 WS -gsave 0.125 ps [1] sd -352.38 239.00 352.38 17.00 MacLine -grestore -1.00 ps -351.88 13.50 351.88 17.00 MacLine -351.88 242.50 351.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.50 239.00 342.50 17.00 MacLine -grestore -1.00 ps -342.00 13.50 342.00 17.00 MacLine -342.00 242.50 342.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -332.50 239.00 332.50 17.00 MacLine -grestore -1.00 ps -332.00 13.50 332.00 17.00 MacLine -332.00 242.50 332.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -322.50 239.00 322.50 17.00 MacLine -grestore -1.00 ps -322.00 13.50 322.00 17.00 MacLine -322.00 242.50 322.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -312.50 237.25 312.50 18.75 MacLine -grestore -1.00 ps -312.00 13.50 312.00 18.75 MacLine -312.00 242.50 312.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -302.50 239.00 302.50 17.00 MacLine -grestore -1.00 ps -302.00 13.50 302.00 17.00 MacLine -302.00 242.50 302.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -292.50 239.00 292.50 17.00 MacLine -grestore -1.00 ps -292.00 13.50 292.00 17.00 MacLine -292.00 242.50 292.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -282.50 239.00 282.50 17.00 MacLine -grestore -1.00 ps -282.00 13.50 282.00 17.00 MacLine -282.00 242.50 282.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -272.62 239.00 272.62 17.00 MacLine -grestore -1.00 ps -272.12 13.50 272.12 17.00 MacLine -272.12 242.50 272.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -262.50 235.50 262.50 20.50 MacLine -grestore -1.00 ps -262.12 13.50 262.12 20.50 MacLine -262.12 242.50 262.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 258.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -252.62 239.00 252.62 17.00 MacLine -grestore -1.00 ps -252.12 13.50 252.12 17.00 MacLine -252.12 242.50 252.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -242.62 239.00 242.62 17.00 MacLine -grestore -1.00 ps -242.12 13.50 242.12 17.00 MacLine -242.12 242.50 242.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -232.62 239.00 232.62 17.00 MacLine -grestore -1.00 ps -232.12 13.50 232.12 17.00 MacLine -232.12 242.50 232.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.62 239.00 222.62 17.00 MacLine -grestore -1.00 ps -222.12 13.50 222.12 17.00 MacLine -222.12 242.50 222.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -212.75 237.25 212.75 18.75 MacLine -grestore -1.00 ps -212.25 13.50 212.25 18.75 MacLine -212.25 242.50 212.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -202.75 239.00 202.75 17.00 MacLine -grestore -1.00 ps -202.25 13.50 202.25 17.00 MacLine -202.25 242.50 202.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -192.75 239.00 192.75 17.00 MacLine -grestore -1.00 ps -192.25 13.50 192.25 17.00 MacLine -192.25 242.50 192.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -182.75 239.00 182.75 17.00 MacLine -grestore -1.00 ps -182.25 13.50 182.25 17.00 MacLine -182.25 242.50 182.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -172.75 239.00 172.75 17.00 MacLine -grestore -1.00 ps -172.25 13.50 172.25 17.00 MacLine -172.25 242.50 172.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -162.62 235.50 162.62 20.50 MacLine -grestore -1.00 ps -162.25 13.50 162.25 20.50 MacLine -162.25 242.50 162.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 158.38 259.88 8.88 WS -gsave 0.125 ps [1] sd -152.88 239.00 152.88 17.00 MacLine -grestore -1.00 ps -152.38 13.50 152.38 17.00 MacLine -152.38 242.50 152.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -142.88 239.00 142.88 17.00 MacLine -grestore -1.00 ps -142.38 13.50 142.38 17.00 MacLine -142.38 242.50 142.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -132.88 239.00 132.88 17.00 MacLine -grestore -1.00 ps -132.38 13.50 132.38 17.00 MacLine -132.38 242.50 132.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -122.88 239.00 122.88 17.00 MacLine -grestore -1.00 ps -122.38 13.50 122.38 17.00 MacLine -122.38 242.50 122.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -112.88 237.25 112.88 18.75 MacLine -grestore -1.00 ps -112.38 13.50 112.38 18.75 MacLine -112.38 242.50 112.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -102.88 239.00 102.88 17.00 MacLine -grestore -1.00 ps -102.38 13.50 102.38 17.00 MacLine -102.38 242.50 102.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -93.00 239.00 93.00 17.00 MacLine -grestore -1.00 ps -92.50 13.50 92.50 17.00 MacLine -92.50 242.50 92.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -83.00 239.00 83.00 17.00 MacLine -grestore -1.00 ps -82.50 13.50 82.50 17.00 MacLine -82.50 242.50 82.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -73.00 239.00 73.00 17.00 MacLine -grestore -1.00 ps -72.50 13.50 72.50 17.00 MacLine -72.50 242.50 72.50 239.00 MacLine -1 ps -1.00 ps -62.50 13.50 62.50 20.50 MacLine -62.50 242.50 62.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 58.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(ms\)) 276.50 284.38 72.12 WS -2.00 ps -newpath 63.00 243.00 M -212.75 82.75 L -512.00 82.75 L -562.00 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v6.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v6.gif deleted file mode 100755 index a0f7d7184..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v6.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v7.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v7.eps deleted file mode 100755 index 6193e2038..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v7.eps +++ /dev/null @@ -1,886 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F7 -%%Creation Date: Mon, Oct 9, 1995 08:36 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -62.50 13.50 69.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2000) 23.50 18.38 35.50 WS -gsave 0.125 ps [1] sd -66.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -62.50 25.00 66.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -62.50 36.38 66.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -62.50 47.88 66.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -62.50 59.25 66.00 59.25 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -62.50 70.75 69.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1500) 23.50 75.62 35.50 WS -gsave 0.125 ps [1] sd -66.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -62.50 82.25 66.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -62.50 93.62 66.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -62.50 105.12 66.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -62.50 116.50 66.00 116.50 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -62.50 128.00 69.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1000) 23.50 132.88 35.50 WS -gsave 0.125 ps [1] sd -66.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -62.50 139.50 66.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -62.50 150.88 66.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -62.50 162.38 66.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -62.50 173.75 66.00 173.75 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -62.50 185.25 69.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(500) 32.38 190.12 26.62 WS -gsave 0.125 ps [1] sd -66.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -62.50 196.75 66.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -62.50 208.12 66.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -62.50 219.62 66.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -62.50 231.00 66.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -62.50 242.50 69.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 50.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 553.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -552.00 239.00 552.00 17.00 MacLine -grestore -1.00 ps -551.50 13.50 551.50 17.00 MacLine -551.50 242.50 551.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -542.00 239.00 542.00 17.00 MacLine -grestore -1.00 ps -541.50 13.50 541.50 17.00 MacLine -541.50 242.50 541.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -532.00 239.00 532.00 17.00 MacLine -grestore -1.00 ps -531.50 13.50 531.50 17.00 MacLine -531.50 242.50 531.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.12 239.00 522.12 17.00 MacLine -grestore -1.00 ps -521.62 13.50 521.62 17.00 MacLine -521.62 242.50 521.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.12 237.25 512.12 18.75 MacLine -grestore -1.00 ps -511.62 13.50 511.62 18.75 MacLine -511.62 242.50 511.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -502.12 239.00 502.12 17.00 MacLine -grestore -1.00 ps -501.62 13.50 501.62 17.00 MacLine -501.62 242.50 501.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -492.12 239.00 492.12 17.00 MacLine -grestore -1.00 ps -491.62 13.50 491.62 17.00 MacLine -491.62 242.50 491.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -482.12 239.00 482.12 17.00 MacLine -grestore -1.00 ps -481.62 13.50 481.62 17.00 MacLine -481.62 242.50 481.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.12 239.00 472.12 17.00 MacLine -grestore -1.00 ps -471.62 13.50 471.62 17.00 MacLine -471.62 242.50 471.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -462.12 235.50 462.12 20.50 MacLine -grestore -1.00 ps -461.75 13.50 461.75 20.50 MacLine -461.75 242.50 461.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 457.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -452.25 239.00 452.25 17.00 MacLine -grestore -1.00 ps -451.75 13.50 451.75 17.00 MacLine -451.75 242.50 451.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.25 239.00 442.25 17.00 MacLine -grestore -1.00 ps -441.75 13.50 441.75 17.00 MacLine -441.75 242.50 441.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -432.25 239.00 432.25 17.00 MacLine -grestore -1.00 ps -431.75 13.50 431.75 17.00 MacLine -431.75 242.50 431.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -422.25 239.00 422.25 17.00 MacLine -grestore -1.00 ps -421.75 13.50 421.75 17.00 MacLine -421.75 242.50 421.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -412.25 237.25 412.25 18.75 MacLine -grestore -1.00 ps -411.75 13.50 411.75 18.75 MacLine -411.75 242.50 411.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -402.38 239.00 402.38 17.00 MacLine -grestore -1.00 ps -401.88 13.50 401.88 17.00 MacLine -401.88 242.50 401.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.38 239.00 392.38 17.00 MacLine -grestore -1.00 ps -391.88 13.50 391.88 17.00 MacLine -391.88 242.50 391.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -382.38 239.00 382.38 17.00 MacLine -grestore -1.00 ps -381.88 13.50 381.88 17.00 MacLine -381.88 242.50 381.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -372.38 239.00 372.38 17.00 MacLine -grestore -1.00 ps -371.88 13.50 371.88 17.00 MacLine -371.88 242.50 371.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -362.25 235.50 362.25 20.50 MacLine -grestore -1.00 ps -361.88 13.50 361.88 20.50 MacLine -361.88 242.50 361.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 358.00 259.88 8.88 WS -gsave 0.125 ps [1] sd -352.38 239.00 352.38 17.00 MacLine -grestore -1.00 ps -351.88 13.50 351.88 17.00 MacLine -351.88 242.50 351.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.50 239.00 342.50 17.00 MacLine -grestore -1.00 ps -342.00 13.50 342.00 17.00 MacLine -342.00 242.50 342.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -332.50 239.00 332.50 17.00 MacLine -grestore -1.00 ps -332.00 13.50 332.00 17.00 MacLine -332.00 242.50 332.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -322.50 239.00 322.50 17.00 MacLine -grestore -1.00 ps -322.00 13.50 322.00 17.00 MacLine -322.00 242.50 322.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -312.50 237.25 312.50 18.75 MacLine -grestore -1.00 ps -312.00 13.50 312.00 18.75 MacLine -312.00 242.50 312.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -302.50 239.00 302.50 17.00 MacLine -grestore -1.00 ps -302.00 13.50 302.00 17.00 MacLine -302.00 242.50 302.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -292.50 239.00 292.50 17.00 MacLine -grestore -1.00 ps -292.00 13.50 292.00 17.00 MacLine -292.00 242.50 292.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -282.50 239.00 282.50 17.00 MacLine -grestore -1.00 ps -282.00 13.50 282.00 17.00 MacLine -282.00 242.50 282.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -272.62 239.00 272.62 17.00 MacLine -grestore -1.00 ps -272.12 13.50 272.12 17.00 MacLine -272.12 242.50 272.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -262.50 235.50 262.50 20.50 MacLine -grestore -1.00 ps -262.12 13.50 262.12 20.50 MacLine -262.12 242.50 262.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 258.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -252.62 239.00 252.62 17.00 MacLine -grestore -1.00 ps -252.12 13.50 252.12 17.00 MacLine -252.12 242.50 252.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -242.62 239.00 242.62 17.00 MacLine -grestore -1.00 ps -242.12 13.50 242.12 17.00 MacLine -242.12 242.50 242.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -232.62 239.00 232.62 17.00 MacLine -grestore -1.00 ps -232.12 13.50 232.12 17.00 MacLine -232.12 242.50 232.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.62 239.00 222.62 17.00 MacLine -grestore -1.00 ps -222.12 13.50 222.12 17.00 MacLine -222.12 242.50 222.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -212.75 237.25 212.75 18.75 MacLine -grestore -1.00 ps -212.25 13.50 212.25 18.75 MacLine -212.25 242.50 212.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -202.75 239.00 202.75 17.00 MacLine -grestore -1.00 ps -202.25 13.50 202.25 17.00 MacLine -202.25 242.50 202.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -192.75 239.00 192.75 17.00 MacLine -grestore -1.00 ps -192.25 13.50 192.25 17.00 MacLine -192.25 242.50 192.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -182.75 239.00 182.75 17.00 MacLine -grestore -1.00 ps -182.25 13.50 182.25 17.00 MacLine -182.25 242.50 182.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -172.75 239.00 172.75 17.00 MacLine -grestore -1.00 ps -172.25 13.50 172.25 17.00 MacLine -172.25 242.50 172.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -162.62 235.50 162.62 20.50 MacLine -grestore -1.00 ps -162.25 13.50 162.25 20.50 MacLine -162.25 242.50 162.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 158.38 259.88 8.88 WS -gsave 0.125 ps [1] sd -152.88 239.00 152.88 17.00 MacLine -grestore -1.00 ps -152.38 13.50 152.38 17.00 MacLine -152.38 242.50 152.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -142.88 239.00 142.88 17.00 MacLine -grestore -1.00 ps -142.38 13.50 142.38 17.00 MacLine -142.38 242.50 142.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -132.88 239.00 132.88 17.00 MacLine -grestore -1.00 ps -132.38 13.50 132.38 17.00 MacLine -132.38 242.50 132.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -122.88 239.00 122.88 17.00 MacLine -grestore -1.00 ps -122.38 13.50 122.38 17.00 MacLine -122.38 242.50 122.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -112.88 237.25 112.88 18.75 MacLine -grestore -1.00 ps -112.38 13.50 112.38 18.75 MacLine -112.38 242.50 112.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -102.88 239.00 102.88 17.00 MacLine -grestore -1.00 ps -102.38 13.50 102.38 17.00 MacLine -102.38 242.50 102.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -93.00 239.00 93.00 17.00 MacLine -grestore -1.00 ps -92.50 13.50 92.50 17.00 MacLine -92.50 242.50 92.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -83.00 239.00 83.00 17.00 MacLine -grestore -1.00 ps -82.50 13.50 82.50 17.00 MacLine -82.50 242.50 82.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -73.00 239.00 73.00 17.00 MacLine -grestore -1.00 ps -72.50 13.50 72.50 17.00 MacLine -72.50 242.50 72.50 239.00 MacLine -1 ps -1.00 ps -62.50 13.50 62.50 20.50 MacLine -62.50 242.50 62.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 58.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(ms\)) 276.50 284.38 72.12 WS -2.00 ps -newpath 63.00 243.00 M -262.62 128.50 L -312.50 128.50 L -562.00 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v7.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v7.gif deleted file mode 100755 index 10be505e8..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v7.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v7.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v7.pdf deleted file mode 100644 index 269d04a1e..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v7.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v8.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v8.eps deleted file mode 100755 index ca58f5abe..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v8.eps +++ /dev/null @@ -1,886 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F8 -%%Creation Date: Mon, Oct 9, 1995 08:36 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -62.50 13.50 69.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2000) 23.50 18.38 35.50 WS -gsave 0.125 ps [1] sd -66.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -62.50 25.00 66.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -62.50 36.38 66.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -62.50 47.88 66.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -62.50 59.25 66.00 59.25 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -62.50 70.75 69.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1500) 23.50 75.62 35.50 WS -gsave 0.125 ps [1] sd -66.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -62.50 82.25 66.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -62.50 93.62 66.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -62.50 105.12 66.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -62.50 116.50 66.00 116.50 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -62.50 128.00 69.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1000) 23.50 132.88 35.50 WS -gsave 0.125 ps [1] sd -66.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -62.50 139.50 66.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -62.50 150.88 66.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -62.50 162.38 66.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -62.50 173.75 66.00 173.75 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -62.50 185.25 69.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(500) 32.38 190.12 26.62 WS -gsave 0.125 ps [1] sd -66.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -62.50 196.75 66.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -62.50 208.12 66.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -62.50 219.62 66.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -62.50 231.00 66.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -62.50 242.50 69.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 50.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 553.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -552.00 239.00 552.00 17.00 MacLine -grestore -1.00 ps -551.50 13.50 551.50 17.00 MacLine -551.50 242.50 551.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -542.00 239.00 542.00 17.00 MacLine -grestore -1.00 ps -541.50 13.50 541.50 17.00 MacLine -541.50 242.50 541.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -532.00 239.00 532.00 17.00 MacLine -grestore -1.00 ps -531.50 13.50 531.50 17.00 MacLine -531.50 242.50 531.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.12 239.00 522.12 17.00 MacLine -grestore -1.00 ps -521.62 13.50 521.62 17.00 MacLine -521.62 242.50 521.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.12 237.25 512.12 18.75 MacLine -grestore -1.00 ps -511.62 13.50 511.62 18.75 MacLine -511.62 242.50 511.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -502.12 239.00 502.12 17.00 MacLine -grestore -1.00 ps -501.62 13.50 501.62 17.00 MacLine -501.62 242.50 501.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -492.12 239.00 492.12 17.00 MacLine -grestore -1.00 ps -491.62 13.50 491.62 17.00 MacLine -491.62 242.50 491.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -482.12 239.00 482.12 17.00 MacLine -grestore -1.00 ps -481.62 13.50 481.62 17.00 MacLine -481.62 242.50 481.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.12 239.00 472.12 17.00 MacLine -grestore -1.00 ps -471.62 13.50 471.62 17.00 MacLine -471.62 242.50 471.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -462.12 235.50 462.12 20.50 MacLine -grestore -1.00 ps -461.75 13.50 461.75 20.50 MacLine -461.75 242.50 461.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 457.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -452.25 239.00 452.25 17.00 MacLine -grestore -1.00 ps -451.75 13.50 451.75 17.00 MacLine -451.75 242.50 451.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.25 239.00 442.25 17.00 MacLine -grestore -1.00 ps -441.75 13.50 441.75 17.00 MacLine -441.75 242.50 441.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -432.25 239.00 432.25 17.00 MacLine -grestore -1.00 ps -431.75 13.50 431.75 17.00 MacLine -431.75 242.50 431.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -422.25 239.00 422.25 17.00 MacLine -grestore -1.00 ps -421.75 13.50 421.75 17.00 MacLine -421.75 242.50 421.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -412.25 237.25 412.25 18.75 MacLine -grestore -1.00 ps -411.75 13.50 411.75 18.75 MacLine -411.75 242.50 411.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -402.38 239.00 402.38 17.00 MacLine -grestore -1.00 ps -401.88 13.50 401.88 17.00 MacLine -401.88 242.50 401.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.38 239.00 392.38 17.00 MacLine -grestore -1.00 ps -391.88 13.50 391.88 17.00 MacLine -391.88 242.50 391.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -382.38 239.00 382.38 17.00 MacLine -grestore -1.00 ps -381.88 13.50 381.88 17.00 MacLine -381.88 242.50 381.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -372.38 239.00 372.38 17.00 MacLine -grestore -1.00 ps -371.88 13.50 371.88 17.00 MacLine -371.88 242.50 371.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -362.25 235.50 362.25 20.50 MacLine -grestore -1.00 ps -361.88 13.50 361.88 20.50 MacLine -361.88 242.50 361.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 358.00 259.88 8.88 WS -gsave 0.125 ps [1] sd -352.38 239.00 352.38 17.00 MacLine -grestore -1.00 ps -351.88 13.50 351.88 17.00 MacLine -351.88 242.50 351.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.50 239.00 342.50 17.00 MacLine -grestore -1.00 ps -342.00 13.50 342.00 17.00 MacLine -342.00 242.50 342.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -332.50 239.00 332.50 17.00 MacLine -grestore -1.00 ps -332.00 13.50 332.00 17.00 MacLine -332.00 242.50 332.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -322.50 239.00 322.50 17.00 MacLine -grestore -1.00 ps -322.00 13.50 322.00 17.00 MacLine -322.00 242.50 322.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -312.50 237.25 312.50 18.75 MacLine -grestore -1.00 ps -312.00 13.50 312.00 18.75 MacLine -312.00 242.50 312.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -302.50 239.00 302.50 17.00 MacLine -grestore -1.00 ps -302.00 13.50 302.00 17.00 MacLine -302.00 242.50 302.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -292.50 239.00 292.50 17.00 MacLine -grestore -1.00 ps -292.00 13.50 292.00 17.00 MacLine -292.00 242.50 292.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -282.50 239.00 282.50 17.00 MacLine -grestore -1.00 ps -282.00 13.50 282.00 17.00 MacLine -282.00 242.50 282.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -272.62 239.00 272.62 17.00 MacLine -grestore -1.00 ps -272.12 13.50 272.12 17.00 MacLine -272.12 242.50 272.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -262.50 235.50 262.50 20.50 MacLine -grestore -1.00 ps -262.12 13.50 262.12 20.50 MacLine -262.12 242.50 262.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 258.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -252.62 239.00 252.62 17.00 MacLine -grestore -1.00 ps -252.12 13.50 252.12 17.00 MacLine -252.12 242.50 252.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -242.62 239.00 242.62 17.00 MacLine -grestore -1.00 ps -242.12 13.50 242.12 17.00 MacLine -242.12 242.50 242.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -232.62 239.00 232.62 17.00 MacLine -grestore -1.00 ps -232.12 13.50 232.12 17.00 MacLine -232.12 242.50 232.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.62 239.00 222.62 17.00 MacLine -grestore -1.00 ps -222.12 13.50 222.12 17.00 MacLine -222.12 242.50 222.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -212.75 237.25 212.75 18.75 MacLine -grestore -1.00 ps -212.25 13.50 212.25 18.75 MacLine -212.25 242.50 212.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -202.75 239.00 202.75 17.00 MacLine -grestore -1.00 ps -202.25 13.50 202.25 17.00 MacLine -202.25 242.50 202.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -192.75 239.00 192.75 17.00 MacLine -grestore -1.00 ps -192.25 13.50 192.25 17.00 MacLine -192.25 242.50 192.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -182.75 239.00 182.75 17.00 MacLine -grestore -1.00 ps -182.25 13.50 182.25 17.00 MacLine -182.25 242.50 182.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -172.75 239.00 172.75 17.00 MacLine -grestore -1.00 ps -172.25 13.50 172.25 17.00 MacLine -172.25 242.50 172.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -162.62 235.50 162.62 20.50 MacLine -grestore -1.00 ps -162.25 13.50 162.25 20.50 MacLine -162.25 242.50 162.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 158.38 259.88 8.88 WS -gsave 0.125 ps [1] sd -152.88 239.00 152.88 17.00 MacLine -grestore -1.00 ps -152.38 13.50 152.38 17.00 MacLine -152.38 242.50 152.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -142.88 239.00 142.88 17.00 MacLine -grestore -1.00 ps -142.38 13.50 142.38 17.00 MacLine -142.38 242.50 142.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -132.88 239.00 132.88 17.00 MacLine -grestore -1.00 ps -132.38 13.50 132.38 17.00 MacLine -132.38 242.50 132.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -122.88 239.00 122.88 17.00 MacLine -grestore -1.00 ps -122.38 13.50 122.38 17.00 MacLine -122.38 242.50 122.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -112.88 237.25 112.88 18.75 MacLine -grestore -1.00 ps -112.38 13.50 112.38 18.75 MacLine -112.38 242.50 112.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -102.88 239.00 102.88 17.00 MacLine -grestore -1.00 ps -102.38 13.50 102.38 17.00 MacLine -102.38 242.50 102.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -93.00 239.00 93.00 17.00 MacLine -grestore -1.00 ps -92.50 13.50 92.50 17.00 MacLine -92.50 242.50 92.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -83.00 239.00 83.00 17.00 MacLine -grestore -1.00 ps -82.50 13.50 82.50 17.00 MacLine -82.50 242.50 82.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -73.00 239.00 73.00 17.00 MacLine -grestore -1.00 ps -72.50 13.50 72.50 17.00 MacLine -72.50 242.50 72.50 239.00 MacLine -1 ps -1.00 ps -62.50 13.50 62.50 20.50 MacLine -62.50 242.50 62.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 58.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(ms\)) 276.50 284.38 72.12 WS -2.00 ps -newpath 63.00 243.00 M -262.62 59.88 L -412.25 59.88 L -562.00 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v8.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v8.gif deleted file mode 100755 index 3b0baed67..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v8.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v9.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v9.eps deleted file mode 100755 index b1d54c3a5..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v9.eps +++ /dev/null @@ -1,886 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F9 -%%Creation Date: Mon, Oct 9, 1995 08:36 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -62.50 13.50 69.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2000) 23.50 18.38 35.50 WS -gsave 0.125 ps [1] sd -66.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -62.50 25.00 66.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -62.50 36.38 66.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -62.50 47.88 66.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -62.50 59.25 66.00 59.25 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -62.50 70.75 69.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1500) 23.50 75.62 35.50 WS -gsave 0.125 ps [1] sd -66.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -62.50 82.25 66.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -62.50 93.62 66.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -62.50 105.12 66.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -62.50 116.50 66.00 116.50 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -62.50 128.00 69.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1000) 23.50 132.88 35.50 WS -gsave 0.125 ps [1] sd -66.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -62.50 139.50 66.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -62.50 150.88 66.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -62.50 162.38 66.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -62.50 173.75 66.00 173.75 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -62.50 185.25 69.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(500) 32.38 190.12 26.62 WS -gsave 0.125 ps [1] sd -66.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -62.50 196.75 66.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -62.50 208.12 66.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -62.50 219.62 66.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -62.50 231.00 66.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -62.50 242.50 69.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 50.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 553.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -552.00 239.00 552.00 17.00 MacLine -grestore -1.00 ps -551.50 13.50 551.50 17.00 MacLine -551.50 242.50 551.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -542.00 239.00 542.00 17.00 MacLine -grestore -1.00 ps -541.50 13.50 541.50 17.00 MacLine -541.50 242.50 541.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -532.00 239.00 532.00 17.00 MacLine -grestore -1.00 ps -531.50 13.50 531.50 17.00 MacLine -531.50 242.50 531.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.12 239.00 522.12 17.00 MacLine -grestore -1.00 ps -521.62 13.50 521.62 17.00 MacLine -521.62 242.50 521.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.12 237.25 512.12 18.75 MacLine -grestore -1.00 ps -511.62 13.50 511.62 18.75 MacLine -511.62 242.50 511.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -502.12 239.00 502.12 17.00 MacLine -grestore -1.00 ps -501.62 13.50 501.62 17.00 MacLine -501.62 242.50 501.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -492.12 239.00 492.12 17.00 MacLine -grestore -1.00 ps -491.62 13.50 491.62 17.00 MacLine -491.62 242.50 491.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -482.12 239.00 482.12 17.00 MacLine -grestore -1.00 ps -481.62 13.50 481.62 17.00 MacLine -481.62 242.50 481.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.12 239.00 472.12 17.00 MacLine -grestore -1.00 ps -471.62 13.50 471.62 17.00 MacLine -471.62 242.50 471.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -462.12 235.50 462.12 20.50 MacLine -grestore -1.00 ps -461.75 13.50 461.75 20.50 MacLine -461.75 242.50 461.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 457.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -452.25 239.00 452.25 17.00 MacLine -grestore -1.00 ps -451.75 13.50 451.75 17.00 MacLine -451.75 242.50 451.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.25 239.00 442.25 17.00 MacLine -grestore -1.00 ps -441.75 13.50 441.75 17.00 MacLine -441.75 242.50 441.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -432.25 239.00 432.25 17.00 MacLine -grestore -1.00 ps -431.75 13.50 431.75 17.00 MacLine -431.75 242.50 431.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -422.25 239.00 422.25 17.00 MacLine -grestore -1.00 ps -421.75 13.50 421.75 17.00 MacLine -421.75 242.50 421.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -412.25 237.25 412.25 18.75 MacLine -grestore -1.00 ps -411.75 13.50 411.75 18.75 MacLine -411.75 242.50 411.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -402.38 239.00 402.38 17.00 MacLine -grestore -1.00 ps -401.88 13.50 401.88 17.00 MacLine -401.88 242.50 401.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.38 239.00 392.38 17.00 MacLine -grestore -1.00 ps -391.88 13.50 391.88 17.00 MacLine -391.88 242.50 391.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -382.38 239.00 382.38 17.00 MacLine -grestore -1.00 ps -381.88 13.50 381.88 17.00 MacLine -381.88 242.50 381.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -372.38 239.00 372.38 17.00 MacLine -grestore -1.00 ps -371.88 13.50 371.88 17.00 MacLine -371.88 242.50 371.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -362.25 235.50 362.25 20.50 MacLine -grestore -1.00 ps -361.88 13.50 361.88 20.50 MacLine -361.88 242.50 361.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 358.00 259.88 8.88 WS -gsave 0.125 ps [1] sd -352.38 239.00 352.38 17.00 MacLine -grestore -1.00 ps -351.88 13.50 351.88 17.00 MacLine -351.88 242.50 351.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.50 239.00 342.50 17.00 MacLine -grestore -1.00 ps -342.00 13.50 342.00 17.00 MacLine -342.00 242.50 342.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -332.50 239.00 332.50 17.00 MacLine -grestore -1.00 ps -332.00 13.50 332.00 17.00 MacLine -332.00 242.50 332.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -322.50 239.00 322.50 17.00 MacLine -grestore -1.00 ps -322.00 13.50 322.00 17.00 MacLine -322.00 242.50 322.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -312.50 237.25 312.50 18.75 MacLine -grestore -1.00 ps -312.00 13.50 312.00 18.75 MacLine -312.00 242.50 312.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -302.50 239.00 302.50 17.00 MacLine -grestore -1.00 ps -302.00 13.50 302.00 17.00 MacLine -302.00 242.50 302.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -292.50 239.00 292.50 17.00 MacLine -grestore -1.00 ps -292.00 13.50 292.00 17.00 MacLine -292.00 242.50 292.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -282.50 239.00 282.50 17.00 MacLine -grestore -1.00 ps -282.00 13.50 282.00 17.00 MacLine -282.00 242.50 282.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -272.62 239.00 272.62 17.00 MacLine -grestore -1.00 ps -272.12 13.50 272.12 17.00 MacLine -272.12 242.50 272.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -262.50 235.50 262.50 20.50 MacLine -grestore -1.00 ps -262.12 13.50 262.12 20.50 MacLine -262.12 242.50 262.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 258.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -252.62 239.00 252.62 17.00 MacLine -grestore -1.00 ps -252.12 13.50 252.12 17.00 MacLine -252.12 242.50 252.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -242.62 239.00 242.62 17.00 MacLine -grestore -1.00 ps -242.12 13.50 242.12 17.00 MacLine -242.12 242.50 242.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -232.62 239.00 232.62 17.00 MacLine -grestore -1.00 ps -232.12 13.50 232.12 17.00 MacLine -232.12 242.50 232.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.62 239.00 222.62 17.00 MacLine -grestore -1.00 ps -222.12 13.50 222.12 17.00 MacLine -222.12 242.50 222.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -212.75 237.25 212.75 18.75 MacLine -grestore -1.00 ps -212.25 13.50 212.25 18.75 MacLine -212.25 242.50 212.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -202.75 239.00 202.75 17.00 MacLine -grestore -1.00 ps -202.25 13.50 202.25 17.00 MacLine -202.25 242.50 202.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -192.75 239.00 192.75 17.00 MacLine -grestore -1.00 ps -192.25 13.50 192.25 17.00 MacLine -192.25 242.50 192.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -182.75 239.00 182.75 17.00 MacLine -grestore -1.00 ps -182.25 13.50 182.25 17.00 MacLine -182.25 242.50 182.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -172.75 239.00 172.75 17.00 MacLine -grestore -1.00 ps -172.25 13.50 172.25 17.00 MacLine -172.25 242.50 172.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -162.62 235.50 162.62 20.50 MacLine -grestore -1.00 ps -162.25 13.50 162.25 20.50 MacLine -162.25 242.50 162.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 158.38 259.88 8.88 WS -gsave 0.125 ps [1] sd -152.88 239.00 152.88 17.00 MacLine -grestore -1.00 ps -152.38 13.50 152.38 17.00 MacLine -152.38 242.50 152.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -142.88 239.00 142.88 17.00 MacLine -grestore -1.00 ps -142.38 13.50 142.38 17.00 MacLine -142.38 242.50 142.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -132.88 239.00 132.88 17.00 MacLine -grestore -1.00 ps -132.38 13.50 132.38 17.00 MacLine -132.38 242.50 132.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -122.88 239.00 122.88 17.00 MacLine -grestore -1.00 ps -122.38 13.50 122.38 17.00 MacLine -122.38 242.50 122.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -112.88 237.25 112.88 18.75 MacLine -grestore -1.00 ps -112.38 13.50 112.38 18.75 MacLine -112.38 242.50 112.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -102.88 239.00 102.88 17.00 MacLine -grestore -1.00 ps -102.38 13.50 102.38 17.00 MacLine -102.38 242.50 102.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -93.00 239.00 93.00 17.00 MacLine -grestore -1.00 ps -92.50 13.50 92.50 17.00 MacLine -92.50 242.50 92.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -83.00 239.00 83.00 17.00 MacLine -grestore -1.00 ps -82.50 13.50 82.50 17.00 MacLine -82.50 242.50 82.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -73.00 239.00 73.00 17.00 MacLine -grestore -1.00 ps -72.50 13.50 72.50 17.00 MacLine -72.50 242.50 72.50 239.00 MacLine -1 ps -1.00 ps -62.50 13.50 62.50 20.50 MacLine -62.50 242.50 62.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 58.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(ms\)) 276.50 284.38 72.12 WS -2.00 ps -newpath 63.00 243.00 M -312.50 82.75 L -462.12 82.75 L -562.00 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v9.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v9.gif deleted file mode 100755 index 69a794cec..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob04v9.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v1.eps deleted file mode 100755 index 7d0b87879..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v1.eps +++ /dev/null @@ -1,876 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F1 -%%Creation Date: Mon, Oct 9, 1995 08:40 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 553.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -551.88 239.00 551.88 17.00 MacLine -grestore -1.00 ps -551.38 13.50 551.38 17.00 MacLine -551.38 242.50 551.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -541.62 239.00 541.62 17.00 MacLine -grestore -1.00 ps -541.12 13.50 541.12 17.00 MacLine -541.12 242.50 541.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -531.50 239.00 531.50 17.00 MacLine -grestore -1.00 ps -531.00 13.50 531.00 17.00 MacLine -531.00 242.50 531.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -521.38 239.00 521.38 17.00 MacLine -grestore -1.00 ps -520.88 13.50 520.88 17.00 MacLine -520.88 242.50 520.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -511.25 237.25 511.25 18.75 MacLine -grestore -1.00 ps -510.75 13.50 510.75 18.75 MacLine -510.75 242.50 510.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -501.00 239.00 501.00 17.00 MacLine -grestore -1.00 ps -500.50 13.50 500.50 17.00 MacLine -500.50 242.50 500.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -490.88 239.00 490.88 17.00 MacLine -grestore -1.00 ps -490.38 13.50 490.38 17.00 MacLine -490.38 242.50 490.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.75 239.00 480.75 17.00 MacLine -grestore -1.00 ps -480.25 13.50 480.25 17.00 MacLine -480.25 242.50 480.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -470.50 239.00 470.50 17.00 MacLine -grestore -1.00 ps -470.00 13.50 470.00 17.00 MacLine -470.00 242.50 470.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -460.25 235.50 460.25 20.50 MacLine -grestore -1.00 ps -459.88 13.50 459.88 20.50 MacLine -459.88 242.50 459.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 456.00 259.88 8.88 WS -gsave 0.125 ps [1] sd -450.25 239.00 450.25 17.00 MacLine -grestore -1.00 ps -449.75 13.50 449.75 17.00 MacLine -449.75 242.50 449.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -440.12 239.00 440.12 17.00 MacLine -grestore -1.00 ps -439.62 13.50 439.62 17.00 MacLine -439.62 242.50 439.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -429.88 239.00 429.88 17.00 MacLine -grestore -1.00 ps -429.38 13.50 429.38 17.00 MacLine -429.38 242.50 429.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -419.75 239.00 419.75 17.00 MacLine -grestore -1.00 ps -419.25 13.50 419.25 17.00 MacLine -419.25 242.50 419.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -409.62 237.25 409.62 18.75 MacLine -grestore -1.00 ps -409.12 13.50 409.12 18.75 MacLine -409.12 242.50 409.12 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -399.50 239.00 399.50 17.00 MacLine -grestore -1.00 ps -399.00 13.50 399.00 17.00 MacLine -399.00 242.50 399.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -389.25 239.00 389.25 17.00 MacLine -grestore -1.00 ps -388.75 13.50 388.75 17.00 MacLine -388.75 242.50 388.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -379.12 239.00 379.12 17.00 MacLine -grestore -1.00 ps -378.62 13.50 378.62 17.00 MacLine -378.62 242.50 378.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -369.00 239.00 369.00 17.00 MacLine -grestore -1.00 ps -368.50 13.50 368.50 17.00 MacLine -368.50 242.50 368.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -358.62 235.50 358.62 20.50 MacLine -grestore -1.00 ps -358.25 13.50 358.25 20.50 MacLine -358.25 242.50 358.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 354.38 259.88 8.88 WS -gsave 0.125 ps [1] sd -348.62 239.00 348.62 17.00 MacLine -grestore -1.00 ps -348.12 13.50 348.12 17.00 MacLine -348.12 242.50 348.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -338.50 239.00 338.50 17.00 MacLine -grestore -1.00 ps -338.00 13.50 338.00 17.00 MacLine -338.00 242.50 338.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -328.38 239.00 328.38 17.00 MacLine -grestore -1.00 ps -327.88 13.50 327.88 17.00 MacLine -327.88 242.50 327.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -318.12 239.00 318.12 17.00 MacLine -grestore -1.00 ps -317.62 13.50 317.62 17.00 MacLine -317.62 242.50 317.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -308.00 237.25 308.00 18.75 MacLine -grestore -1.00 ps -307.50 13.50 307.50 18.75 MacLine -307.50 242.50 307.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -297.88 239.00 297.88 17.00 MacLine -grestore -1.00 ps -297.38 13.50 297.38 17.00 MacLine -297.38 242.50 297.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -287.62 239.00 287.62 17.00 MacLine -grestore -1.00 ps -287.12 13.50 287.12 17.00 MacLine -287.12 242.50 287.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -277.50 239.00 277.50 17.00 MacLine -grestore -1.00 ps -277.00 13.50 277.00 17.00 MacLine -277.00 242.50 277.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -267.38 239.00 267.38 17.00 MacLine -grestore -1.00 ps -266.88 13.50 266.88 17.00 MacLine -266.88 242.50 266.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -257.12 235.50 257.12 20.50 MacLine -grestore -1.00 ps -256.75 13.50 256.75 20.50 MacLine -256.75 242.50 256.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 252.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -247.00 239.00 247.00 17.00 MacLine -grestore -1.00 ps -246.50 13.50 246.50 17.00 MacLine -246.50 242.50 246.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -236.88 239.00 236.88 17.00 MacLine -grestore -1.00 ps -236.38 13.50 236.38 17.00 MacLine -236.38 242.50 236.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -226.75 239.00 226.75 17.00 MacLine -grestore -1.00 ps -226.25 13.50 226.25 17.00 MacLine -226.25 242.50 226.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -216.50 239.00 216.50 17.00 MacLine -grestore -1.00 ps -216.00 13.50 216.00 17.00 MacLine -216.00 242.50 216.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -206.38 237.25 206.38 18.75 MacLine -grestore -1.00 ps -205.88 13.50 205.88 18.75 MacLine -205.88 242.50 205.88 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -196.25 239.00 196.25 17.00 MacLine -grestore -1.00 ps -195.75 13.50 195.75 17.00 MacLine -195.75 242.50 195.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -186.12 239.00 186.12 17.00 MacLine -grestore -1.00 ps -185.62 13.50 185.62 17.00 MacLine -185.62 242.50 185.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -175.88 239.00 175.88 17.00 MacLine -grestore -1.00 ps -175.38 13.50 175.38 17.00 MacLine -175.38 242.50 175.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -165.75 239.00 165.75 17.00 MacLine -grestore -1.00 ps -165.25 13.50 165.25 17.00 MacLine -165.25 242.50 165.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -155.50 235.50 155.50 20.50 MacLine -grestore -1.00 ps -155.12 13.50 155.12 20.50 MacLine -155.12 242.50 155.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 151.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -145.50 239.00 145.50 17.00 MacLine -grestore -1.00 ps -145.00 13.50 145.00 17.00 MacLine -145.00 242.50 145.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -135.25 239.00 135.25 17.00 MacLine -grestore -1.00 ps -134.75 13.50 134.75 17.00 MacLine -134.75 242.50 134.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -125.12 239.00 125.12 17.00 MacLine -grestore -1.00 ps -124.62 13.50 124.62 17.00 MacLine -124.62 242.50 124.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -115.00 239.00 115.00 17.00 MacLine -grestore -1.00 ps -114.50 13.50 114.50 17.00 MacLine -114.50 242.50 114.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -104.75 237.25 104.75 18.75 MacLine -grestore -1.00 ps -104.25 13.50 104.25 18.75 MacLine -104.25 242.50 104.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -94.62 239.00 94.62 17.00 MacLine -grestore -1.00 ps -94.12 13.50 94.12 17.00 MacLine -94.12 242.50 94.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -84.50 239.00 84.50 17.00 MacLine -grestore -1.00 ps -84.00 13.50 84.00 17.00 MacLine -84.00 242.50 84.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -74.38 239.00 74.38 17.00 MacLine -grestore -1.00 ps -73.88 13.50 73.88 17.00 MacLine -73.88 242.50 73.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -64.12 239.00 64.12 17.00 MacLine -grestore -1.00 ps -63.62 13.50 63.62 17.00 MacLine -63.62 242.50 63.62 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(ms\)) 272.00 284.38 72.12 WS -2.00 ps -newpath 54.00 243.00 M -104.88 59.88 L -308.00 59.88 L -562.00 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v1.gif deleted file mode 100755 index 261ac3918..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v10.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v10.eps deleted file mode 100755 index 5d232b7f4..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v10.eps +++ /dev/null @@ -1,876 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F10 -%%Creation Date: Mon, Oct 9, 1995 08:40 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 553.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -551.88 239.00 551.88 17.00 MacLine -grestore -1.00 ps -551.38 13.50 551.38 17.00 MacLine -551.38 242.50 551.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -541.62 239.00 541.62 17.00 MacLine -grestore -1.00 ps -541.12 13.50 541.12 17.00 MacLine -541.12 242.50 541.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -531.50 239.00 531.50 17.00 MacLine -grestore -1.00 ps -531.00 13.50 531.00 17.00 MacLine -531.00 242.50 531.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -521.38 239.00 521.38 17.00 MacLine -grestore -1.00 ps -520.88 13.50 520.88 17.00 MacLine -520.88 242.50 520.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -511.25 237.25 511.25 18.75 MacLine -grestore -1.00 ps -510.75 13.50 510.75 18.75 MacLine -510.75 242.50 510.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -501.00 239.00 501.00 17.00 MacLine -grestore -1.00 ps -500.50 13.50 500.50 17.00 MacLine -500.50 242.50 500.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -490.88 239.00 490.88 17.00 MacLine -grestore -1.00 ps -490.38 13.50 490.38 17.00 MacLine -490.38 242.50 490.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.75 239.00 480.75 17.00 MacLine -grestore -1.00 ps -480.25 13.50 480.25 17.00 MacLine -480.25 242.50 480.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -470.50 239.00 470.50 17.00 MacLine -grestore -1.00 ps -470.00 13.50 470.00 17.00 MacLine -470.00 242.50 470.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -460.25 235.50 460.25 20.50 MacLine -grestore -1.00 ps -459.88 13.50 459.88 20.50 MacLine -459.88 242.50 459.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 456.00 259.88 8.88 WS -gsave 0.125 ps [1] sd -450.25 239.00 450.25 17.00 MacLine -grestore -1.00 ps -449.75 13.50 449.75 17.00 MacLine -449.75 242.50 449.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -440.12 239.00 440.12 17.00 MacLine -grestore -1.00 ps -439.62 13.50 439.62 17.00 MacLine -439.62 242.50 439.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -429.88 239.00 429.88 17.00 MacLine -grestore -1.00 ps -429.38 13.50 429.38 17.00 MacLine -429.38 242.50 429.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -419.75 239.00 419.75 17.00 MacLine -grestore -1.00 ps -419.25 13.50 419.25 17.00 MacLine -419.25 242.50 419.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -409.62 237.25 409.62 18.75 MacLine -grestore -1.00 ps -409.12 13.50 409.12 18.75 MacLine -409.12 242.50 409.12 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -399.50 239.00 399.50 17.00 MacLine -grestore -1.00 ps -399.00 13.50 399.00 17.00 MacLine -399.00 242.50 399.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -389.25 239.00 389.25 17.00 MacLine -grestore -1.00 ps -388.75 13.50 388.75 17.00 MacLine -388.75 242.50 388.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -379.12 239.00 379.12 17.00 MacLine -grestore -1.00 ps -378.62 13.50 378.62 17.00 MacLine -378.62 242.50 378.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -369.00 239.00 369.00 17.00 MacLine -grestore -1.00 ps -368.50 13.50 368.50 17.00 MacLine -368.50 242.50 368.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -358.62 235.50 358.62 20.50 MacLine -grestore -1.00 ps -358.25 13.50 358.25 20.50 MacLine -358.25 242.50 358.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 354.38 259.88 8.88 WS -gsave 0.125 ps [1] sd -348.62 239.00 348.62 17.00 MacLine -grestore -1.00 ps -348.12 13.50 348.12 17.00 MacLine -348.12 242.50 348.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -338.50 239.00 338.50 17.00 MacLine -grestore -1.00 ps -338.00 13.50 338.00 17.00 MacLine -338.00 242.50 338.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -328.38 239.00 328.38 17.00 MacLine -grestore -1.00 ps -327.88 13.50 327.88 17.00 MacLine -327.88 242.50 327.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -318.12 239.00 318.12 17.00 MacLine -grestore -1.00 ps -317.62 13.50 317.62 17.00 MacLine -317.62 242.50 317.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -308.00 237.25 308.00 18.75 MacLine -grestore -1.00 ps -307.50 13.50 307.50 18.75 MacLine -307.50 242.50 307.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -297.88 239.00 297.88 17.00 MacLine -grestore -1.00 ps -297.38 13.50 297.38 17.00 MacLine -297.38 242.50 297.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -287.62 239.00 287.62 17.00 MacLine -grestore -1.00 ps -287.12 13.50 287.12 17.00 MacLine -287.12 242.50 287.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -277.50 239.00 277.50 17.00 MacLine -grestore -1.00 ps -277.00 13.50 277.00 17.00 MacLine -277.00 242.50 277.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -267.38 239.00 267.38 17.00 MacLine -grestore -1.00 ps -266.88 13.50 266.88 17.00 MacLine -266.88 242.50 266.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -257.12 235.50 257.12 20.50 MacLine -grestore -1.00 ps -256.75 13.50 256.75 20.50 MacLine -256.75 242.50 256.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 252.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -247.00 239.00 247.00 17.00 MacLine -grestore -1.00 ps -246.50 13.50 246.50 17.00 MacLine -246.50 242.50 246.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -236.88 239.00 236.88 17.00 MacLine -grestore -1.00 ps -236.38 13.50 236.38 17.00 MacLine -236.38 242.50 236.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -226.75 239.00 226.75 17.00 MacLine -grestore -1.00 ps -226.25 13.50 226.25 17.00 MacLine -226.25 242.50 226.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -216.50 239.00 216.50 17.00 MacLine -grestore -1.00 ps -216.00 13.50 216.00 17.00 MacLine -216.00 242.50 216.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -206.38 237.25 206.38 18.75 MacLine -grestore -1.00 ps -205.88 13.50 205.88 18.75 MacLine -205.88 242.50 205.88 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -196.25 239.00 196.25 17.00 MacLine -grestore -1.00 ps -195.75 13.50 195.75 17.00 MacLine -195.75 242.50 195.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -186.12 239.00 186.12 17.00 MacLine -grestore -1.00 ps -185.62 13.50 185.62 17.00 MacLine -185.62 242.50 185.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -175.88 239.00 175.88 17.00 MacLine -grestore -1.00 ps -175.38 13.50 175.38 17.00 MacLine -175.38 242.50 175.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -165.75 239.00 165.75 17.00 MacLine -grestore -1.00 ps -165.25 13.50 165.25 17.00 MacLine -165.25 242.50 165.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -155.50 235.50 155.50 20.50 MacLine -grestore -1.00 ps -155.12 13.50 155.12 20.50 MacLine -155.12 242.50 155.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 151.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -145.50 239.00 145.50 17.00 MacLine -grestore -1.00 ps -145.00 13.50 145.00 17.00 MacLine -145.00 242.50 145.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -135.25 239.00 135.25 17.00 MacLine -grestore -1.00 ps -134.75 13.50 134.75 17.00 MacLine -134.75 242.50 134.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -125.12 239.00 125.12 17.00 MacLine -grestore -1.00 ps -124.62 13.50 124.62 17.00 MacLine -124.62 242.50 124.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -115.00 239.00 115.00 17.00 MacLine -grestore -1.00 ps -114.50 13.50 114.50 17.00 MacLine -114.50 242.50 114.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -104.75 237.25 104.75 18.75 MacLine -grestore -1.00 ps -104.25 13.50 104.25 18.75 MacLine -104.25 242.50 104.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -94.62 239.00 94.62 17.00 MacLine -grestore -1.00 ps -94.12 13.50 94.12 17.00 MacLine -94.12 242.50 94.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -84.50 239.00 84.50 17.00 MacLine -grestore -1.00 ps -84.00 13.50 84.00 17.00 MacLine -84.00 242.50 84.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -74.38 239.00 74.38 17.00 MacLine -grestore -1.00 ps -73.88 13.50 73.88 17.00 MacLine -73.88 242.50 73.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -64.12 239.00 64.12 17.00 MacLine -grestore -1.00 ps -63.62 13.50 63.62 17.00 MacLine -63.62 242.50 63.62 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(ms\)) 272.00 284.38 72.12 WS -2.00 ps -newpath 54.00 243.00 M -308.00 59.88 L -511.12 59.88 L -562.00 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v10.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v10.gif deleted file mode 100755 index 843337564..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v10.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v2.eps deleted file mode 100755 index c2e90628c..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v2.eps +++ /dev/null @@ -1,876 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F2 -%%Creation Date: Mon, Oct 9, 1995 08:40 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 553.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -551.88 239.00 551.88 17.00 MacLine -grestore -1.00 ps -551.38 13.50 551.38 17.00 MacLine -551.38 242.50 551.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -541.62 239.00 541.62 17.00 MacLine -grestore -1.00 ps -541.12 13.50 541.12 17.00 MacLine -541.12 242.50 541.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -531.50 239.00 531.50 17.00 MacLine -grestore -1.00 ps -531.00 13.50 531.00 17.00 MacLine -531.00 242.50 531.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -521.38 239.00 521.38 17.00 MacLine -grestore -1.00 ps -520.88 13.50 520.88 17.00 MacLine -520.88 242.50 520.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -511.25 237.25 511.25 18.75 MacLine -grestore -1.00 ps -510.75 13.50 510.75 18.75 MacLine -510.75 242.50 510.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -501.00 239.00 501.00 17.00 MacLine -grestore -1.00 ps -500.50 13.50 500.50 17.00 MacLine -500.50 242.50 500.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -490.88 239.00 490.88 17.00 MacLine -grestore -1.00 ps -490.38 13.50 490.38 17.00 MacLine -490.38 242.50 490.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.75 239.00 480.75 17.00 MacLine -grestore -1.00 ps -480.25 13.50 480.25 17.00 MacLine -480.25 242.50 480.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -470.50 239.00 470.50 17.00 MacLine -grestore -1.00 ps -470.00 13.50 470.00 17.00 MacLine -470.00 242.50 470.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -460.25 235.50 460.25 20.50 MacLine -grestore -1.00 ps -459.88 13.50 459.88 20.50 MacLine -459.88 242.50 459.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 456.00 259.88 8.88 WS -gsave 0.125 ps [1] sd -450.25 239.00 450.25 17.00 MacLine -grestore -1.00 ps -449.75 13.50 449.75 17.00 MacLine -449.75 242.50 449.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -440.12 239.00 440.12 17.00 MacLine -grestore -1.00 ps -439.62 13.50 439.62 17.00 MacLine -439.62 242.50 439.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -429.88 239.00 429.88 17.00 MacLine -grestore -1.00 ps -429.38 13.50 429.38 17.00 MacLine -429.38 242.50 429.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -419.75 239.00 419.75 17.00 MacLine -grestore -1.00 ps -419.25 13.50 419.25 17.00 MacLine -419.25 242.50 419.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -409.62 237.25 409.62 18.75 MacLine -grestore -1.00 ps -409.12 13.50 409.12 18.75 MacLine -409.12 242.50 409.12 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -399.50 239.00 399.50 17.00 MacLine -grestore -1.00 ps -399.00 13.50 399.00 17.00 MacLine -399.00 242.50 399.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -389.25 239.00 389.25 17.00 MacLine -grestore -1.00 ps -388.75 13.50 388.75 17.00 MacLine -388.75 242.50 388.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -379.12 239.00 379.12 17.00 MacLine -grestore -1.00 ps -378.62 13.50 378.62 17.00 MacLine -378.62 242.50 378.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -369.00 239.00 369.00 17.00 MacLine -grestore -1.00 ps -368.50 13.50 368.50 17.00 MacLine -368.50 242.50 368.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -358.62 235.50 358.62 20.50 MacLine -grestore -1.00 ps -358.25 13.50 358.25 20.50 MacLine -358.25 242.50 358.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 354.38 259.88 8.88 WS -gsave 0.125 ps [1] sd -348.62 239.00 348.62 17.00 MacLine -grestore -1.00 ps -348.12 13.50 348.12 17.00 MacLine -348.12 242.50 348.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -338.50 239.00 338.50 17.00 MacLine -grestore -1.00 ps -338.00 13.50 338.00 17.00 MacLine -338.00 242.50 338.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -328.38 239.00 328.38 17.00 MacLine -grestore -1.00 ps -327.88 13.50 327.88 17.00 MacLine -327.88 242.50 327.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -318.12 239.00 318.12 17.00 MacLine -grestore -1.00 ps -317.62 13.50 317.62 17.00 MacLine -317.62 242.50 317.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -308.00 237.25 308.00 18.75 MacLine -grestore -1.00 ps -307.50 13.50 307.50 18.75 MacLine -307.50 242.50 307.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -297.88 239.00 297.88 17.00 MacLine -grestore -1.00 ps -297.38 13.50 297.38 17.00 MacLine -297.38 242.50 297.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -287.62 239.00 287.62 17.00 MacLine -grestore -1.00 ps -287.12 13.50 287.12 17.00 MacLine -287.12 242.50 287.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -277.50 239.00 277.50 17.00 MacLine -grestore -1.00 ps -277.00 13.50 277.00 17.00 MacLine -277.00 242.50 277.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -267.38 239.00 267.38 17.00 MacLine -grestore -1.00 ps -266.88 13.50 266.88 17.00 MacLine -266.88 242.50 266.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -257.12 235.50 257.12 20.50 MacLine -grestore -1.00 ps -256.75 13.50 256.75 20.50 MacLine -256.75 242.50 256.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 252.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -247.00 239.00 247.00 17.00 MacLine -grestore -1.00 ps -246.50 13.50 246.50 17.00 MacLine -246.50 242.50 246.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -236.88 239.00 236.88 17.00 MacLine -grestore -1.00 ps -236.38 13.50 236.38 17.00 MacLine -236.38 242.50 236.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -226.75 239.00 226.75 17.00 MacLine -grestore -1.00 ps -226.25 13.50 226.25 17.00 MacLine -226.25 242.50 226.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -216.50 239.00 216.50 17.00 MacLine -grestore -1.00 ps -216.00 13.50 216.00 17.00 MacLine -216.00 242.50 216.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -206.38 237.25 206.38 18.75 MacLine -grestore -1.00 ps -205.88 13.50 205.88 18.75 MacLine -205.88 242.50 205.88 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -196.25 239.00 196.25 17.00 MacLine -grestore -1.00 ps -195.75 13.50 195.75 17.00 MacLine -195.75 242.50 195.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -186.12 239.00 186.12 17.00 MacLine -grestore -1.00 ps -185.62 13.50 185.62 17.00 MacLine -185.62 242.50 185.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -175.88 239.00 175.88 17.00 MacLine -grestore -1.00 ps -175.38 13.50 175.38 17.00 MacLine -175.38 242.50 175.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -165.75 239.00 165.75 17.00 MacLine -grestore -1.00 ps -165.25 13.50 165.25 17.00 MacLine -165.25 242.50 165.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -155.50 235.50 155.50 20.50 MacLine -grestore -1.00 ps -155.12 13.50 155.12 20.50 MacLine -155.12 242.50 155.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 151.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -145.50 239.00 145.50 17.00 MacLine -grestore -1.00 ps -145.00 13.50 145.00 17.00 MacLine -145.00 242.50 145.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -135.25 239.00 135.25 17.00 MacLine -grestore -1.00 ps -134.75 13.50 134.75 17.00 MacLine -134.75 242.50 134.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -125.12 239.00 125.12 17.00 MacLine -grestore -1.00 ps -124.62 13.50 124.62 17.00 MacLine -124.62 242.50 124.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -115.00 239.00 115.00 17.00 MacLine -grestore -1.00 ps -114.50 13.50 114.50 17.00 MacLine -114.50 242.50 114.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -104.75 237.25 104.75 18.75 MacLine -grestore -1.00 ps -104.25 13.50 104.25 18.75 MacLine -104.25 242.50 104.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -94.62 239.00 94.62 17.00 MacLine -grestore -1.00 ps -94.12 13.50 94.12 17.00 MacLine -94.12 242.50 94.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -84.50 239.00 84.50 17.00 MacLine -grestore -1.00 ps -84.00 13.50 84.00 17.00 MacLine -84.00 242.50 84.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -74.38 239.00 74.38 17.00 MacLine -grestore -1.00 ps -73.88 13.50 73.88 17.00 MacLine -73.88 242.50 73.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -64.12 239.00 64.12 17.00 MacLine -grestore -1.00 ps -63.62 13.50 63.62 17.00 MacLine -63.62 242.50 63.62 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(ms\)) 272.00 284.38 72.12 WS -2.00 ps -newpath 54.00 243.00 M -104.88 59.88 L -460.38 59.88 L -562.00 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v2.gif deleted file mode 100755 index 6c999d988..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v3.eps deleted file mode 100755 index 139401a7f..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v3.eps +++ /dev/null @@ -1,876 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F3 -%%Creation Date: Mon, Oct 9, 1995 08:40 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 553.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -551.88 239.00 551.88 17.00 MacLine -grestore -1.00 ps -551.38 13.50 551.38 17.00 MacLine -551.38 242.50 551.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -541.62 239.00 541.62 17.00 MacLine -grestore -1.00 ps -541.12 13.50 541.12 17.00 MacLine -541.12 242.50 541.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -531.50 239.00 531.50 17.00 MacLine -grestore -1.00 ps -531.00 13.50 531.00 17.00 MacLine -531.00 242.50 531.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -521.38 239.00 521.38 17.00 MacLine -grestore -1.00 ps -520.88 13.50 520.88 17.00 MacLine -520.88 242.50 520.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -511.25 237.25 511.25 18.75 MacLine -grestore -1.00 ps -510.75 13.50 510.75 18.75 MacLine -510.75 242.50 510.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -501.00 239.00 501.00 17.00 MacLine -grestore -1.00 ps -500.50 13.50 500.50 17.00 MacLine -500.50 242.50 500.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -490.88 239.00 490.88 17.00 MacLine -grestore -1.00 ps -490.38 13.50 490.38 17.00 MacLine -490.38 242.50 490.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.75 239.00 480.75 17.00 MacLine -grestore -1.00 ps -480.25 13.50 480.25 17.00 MacLine -480.25 242.50 480.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -470.50 239.00 470.50 17.00 MacLine -grestore -1.00 ps -470.00 13.50 470.00 17.00 MacLine -470.00 242.50 470.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -460.25 235.50 460.25 20.50 MacLine -grestore -1.00 ps -459.88 13.50 459.88 20.50 MacLine -459.88 242.50 459.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 456.00 259.88 8.88 WS -gsave 0.125 ps [1] sd -450.25 239.00 450.25 17.00 MacLine -grestore -1.00 ps -449.75 13.50 449.75 17.00 MacLine -449.75 242.50 449.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -440.12 239.00 440.12 17.00 MacLine -grestore -1.00 ps -439.62 13.50 439.62 17.00 MacLine -439.62 242.50 439.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -429.88 239.00 429.88 17.00 MacLine -grestore -1.00 ps -429.38 13.50 429.38 17.00 MacLine -429.38 242.50 429.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -419.75 239.00 419.75 17.00 MacLine -grestore -1.00 ps -419.25 13.50 419.25 17.00 MacLine -419.25 242.50 419.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -409.62 237.25 409.62 18.75 MacLine -grestore -1.00 ps -409.12 13.50 409.12 18.75 MacLine -409.12 242.50 409.12 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -399.50 239.00 399.50 17.00 MacLine -grestore -1.00 ps -399.00 13.50 399.00 17.00 MacLine -399.00 242.50 399.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -389.25 239.00 389.25 17.00 MacLine -grestore -1.00 ps -388.75 13.50 388.75 17.00 MacLine -388.75 242.50 388.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -379.12 239.00 379.12 17.00 MacLine -grestore -1.00 ps -378.62 13.50 378.62 17.00 MacLine -378.62 242.50 378.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -369.00 239.00 369.00 17.00 MacLine -grestore -1.00 ps -368.50 13.50 368.50 17.00 MacLine -368.50 242.50 368.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -358.62 235.50 358.62 20.50 MacLine -grestore -1.00 ps -358.25 13.50 358.25 20.50 MacLine -358.25 242.50 358.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 354.38 259.88 8.88 WS -gsave 0.125 ps [1] sd -348.62 239.00 348.62 17.00 MacLine -grestore -1.00 ps -348.12 13.50 348.12 17.00 MacLine -348.12 242.50 348.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -338.50 239.00 338.50 17.00 MacLine -grestore -1.00 ps -338.00 13.50 338.00 17.00 MacLine -338.00 242.50 338.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -328.38 239.00 328.38 17.00 MacLine -grestore -1.00 ps -327.88 13.50 327.88 17.00 MacLine -327.88 242.50 327.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -318.12 239.00 318.12 17.00 MacLine -grestore -1.00 ps -317.62 13.50 317.62 17.00 MacLine -317.62 242.50 317.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -308.00 237.25 308.00 18.75 MacLine -grestore -1.00 ps -307.50 13.50 307.50 18.75 MacLine -307.50 242.50 307.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -297.88 239.00 297.88 17.00 MacLine -grestore -1.00 ps -297.38 13.50 297.38 17.00 MacLine -297.38 242.50 297.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -287.62 239.00 287.62 17.00 MacLine -grestore -1.00 ps -287.12 13.50 287.12 17.00 MacLine -287.12 242.50 287.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -277.50 239.00 277.50 17.00 MacLine -grestore -1.00 ps -277.00 13.50 277.00 17.00 MacLine -277.00 242.50 277.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -267.38 239.00 267.38 17.00 MacLine -grestore -1.00 ps -266.88 13.50 266.88 17.00 MacLine -266.88 242.50 266.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -257.12 235.50 257.12 20.50 MacLine -grestore -1.00 ps -256.75 13.50 256.75 20.50 MacLine -256.75 242.50 256.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 252.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -247.00 239.00 247.00 17.00 MacLine -grestore -1.00 ps -246.50 13.50 246.50 17.00 MacLine -246.50 242.50 246.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -236.88 239.00 236.88 17.00 MacLine -grestore -1.00 ps -236.38 13.50 236.38 17.00 MacLine -236.38 242.50 236.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -226.75 239.00 226.75 17.00 MacLine -grestore -1.00 ps -226.25 13.50 226.25 17.00 MacLine -226.25 242.50 226.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -216.50 239.00 216.50 17.00 MacLine -grestore -1.00 ps -216.00 13.50 216.00 17.00 MacLine -216.00 242.50 216.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -206.38 237.25 206.38 18.75 MacLine -grestore -1.00 ps -205.88 13.50 205.88 18.75 MacLine -205.88 242.50 205.88 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -196.25 239.00 196.25 17.00 MacLine -grestore -1.00 ps -195.75 13.50 195.75 17.00 MacLine -195.75 242.50 195.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -186.12 239.00 186.12 17.00 MacLine -grestore -1.00 ps -185.62 13.50 185.62 17.00 MacLine -185.62 242.50 185.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -175.88 239.00 175.88 17.00 MacLine -grestore -1.00 ps -175.38 13.50 175.38 17.00 MacLine -175.38 242.50 175.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -165.75 239.00 165.75 17.00 MacLine -grestore -1.00 ps -165.25 13.50 165.25 17.00 MacLine -165.25 242.50 165.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -155.50 235.50 155.50 20.50 MacLine -grestore -1.00 ps -155.12 13.50 155.12 20.50 MacLine -155.12 242.50 155.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 151.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -145.50 239.00 145.50 17.00 MacLine -grestore -1.00 ps -145.00 13.50 145.00 17.00 MacLine -145.00 242.50 145.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -135.25 239.00 135.25 17.00 MacLine -grestore -1.00 ps -134.75 13.50 134.75 17.00 MacLine -134.75 242.50 134.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -125.12 239.00 125.12 17.00 MacLine -grestore -1.00 ps -124.62 13.50 124.62 17.00 MacLine -124.62 242.50 124.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -115.00 239.00 115.00 17.00 MacLine -grestore -1.00 ps -114.50 13.50 114.50 17.00 MacLine -114.50 242.50 114.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -104.75 237.25 104.75 18.75 MacLine -grestore -1.00 ps -104.25 13.50 104.25 18.75 MacLine -104.25 242.50 104.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -94.62 239.00 94.62 17.00 MacLine -grestore -1.00 ps -94.12 13.50 94.12 17.00 MacLine -94.12 242.50 94.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -84.50 239.00 84.50 17.00 MacLine -grestore -1.00 ps -84.00 13.50 84.00 17.00 MacLine -84.00 242.50 84.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -74.38 239.00 74.38 17.00 MacLine -grestore -1.00 ps -73.88 13.50 73.88 17.00 MacLine -73.88 242.50 73.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -64.12 239.00 64.12 17.00 MacLine -grestore -1.00 ps -63.62 13.50 63.62 17.00 MacLine -63.62 242.50 63.62 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(ms\)) 272.00 284.38 72.12 WS -2.00 ps -newpath 54.00 243.00 M -155.62 59.88 L -308.00 59.88 L -562.00 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v3.gif deleted file mode 100755 index 60a20b4a1..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v4.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v4.eps deleted file mode 100755 index 6b990f086..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v4.eps +++ /dev/null @@ -1,876 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F4 -%%Creation Date: Mon, Oct 9, 1995 08:40 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 553.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -551.88 239.00 551.88 17.00 MacLine -grestore -1.00 ps -551.38 13.50 551.38 17.00 MacLine -551.38 242.50 551.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -541.62 239.00 541.62 17.00 MacLine -grestore -1.00 ps -541.12 13.50 541.12 17.00 MacLine -541.12 242.50 541.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -531.50 239.00 531.50 17.00 MacLine -grestore -1.00 ps -531.00 13.50 531.00 17.00 MacLine -531.00 242.50 531.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -521.38 239.00 521.38 17.00 MacLine -grestore -1.00 ps -520.88 13.50 520.88 17.00 MacLine -520.88 242.50 520.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -511.25 237.25 511.25 18.75 MacLine -grestore -1.00 ps -510.75 13.50 510.75 18.75 MacLine -510.75 242.50 510.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -501.00 239.00 501.00 17.00 MacLine -grestore -1.00 ps -500.50 13.50 500.50 17.00 MacLine -500.50 242.50 500.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -490.88 239.00 490.88 17.00 MacLine -grestore -1.00 ps -490.38 13.50 490.38 17.00 MacLine -490.38 242.50 490.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.75 239.00 480.75 17.00 MacLine -grestore -1.00 ps -480.25 13.50 480.25 17.00 MacLine -480.25 242.50 480.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -470.50 239.00 470.50 17.00 MacLine -grestore -1.00 ps -470.00 13.50 470.00 17.00 MacLine -470.00 242.50 470.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -460.25 235.50 460.25 20.50 MacLine -grestore -1.00 ps -459.88 13.50 459.88 20.50 MacLine -459.88 242.50 459.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 456.00 259.88 8.88 WS -gsave 0.125 ps [1] sd -450.25 239.00 450.25 17.00 MacLine -grestore -1.00 ps -449.75 13.50 449.75 17.00 MacLine -449.75 242.50 449.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -440.12 239.00 440.12 17.00 MacLine -grestore -1.00 ps -439.62 13.50 439.62 17.00 MacLine -439.62 242.50 439.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -429.88 239.00 429.88 17.00 MacLine -grestore -1.00 ps -429.38 13.50 429.38 17.00 MacLine -429.38 242.50 429.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -419.75 239.00 419.75 17.00 MacLine -grestore -1.00 ps -419.25 13.50 419.25 17.00 MacLine -419.25 242.50 419.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -409.62 237.25 409.62 18.75 MacLine -grestore -1.00 ps -409.12 13.50 409.12 18.75 MacLine -409.12 242.50 409.12 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -399.50 239.00 399.50 17.00 MacLine -grestore -1.00 ps -399.00 13.50 399.00 17.00 MacLine -399.00 242.50 399.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -389.25 239.00 389.25 17.00 MacLine -grestore -1.00 ps -388.75 13.50 388.75 17.00 MacLine -388.75 242.50 388.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -379.12 239.00 379.12 17.00 MacLine -grestore -1.00 ps -378.62 13.50 378.62 17.00 MacLine -378.62 242.50 378.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -369.00 239.00 369.00 17.00 MacLine -grestore -1.00 ps -368.50 13.50 368.50 17.00 MacLine -368.50 242.50 368.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -358.62 235.50 358.62 20.50 MacLine -grestore -1.00 ps -358.25 13.50 358.25 20.50 MacLine -358.25 242.50 358.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 354.38 259.88 8.88 WS -gsave 0.125 ps [1] sd -348.62 239.00 348.62 17.00 MacLine -grestore -1.00 ps -348.12 13.50 348.12 17.00 MacLine -348.12 242.50 348.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -338.50 239.00 338.50 17.00 MacLine -grestore -1.00 ps -338.00 13.50 338.00 17.00 MacLine -338.00 242.50 338.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -328.38 239.00 328.38 17.00 MacLine -grestore -1.00 ps -327.88 13.50 327.88 17.00 MacLine -327.88 242.50 327.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -318.12 239.00 318.12 17.00 MacLine -grestore -1.00 ps -317.62 13.50 317.62 17.00 MacLine -317.62 242.50 317.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -308.00 237.25 308.00 18.75 MacLine -grestore -1.00 ps -307.50 13.50 307.50 18.75 MacLine -307.50 242.50 307.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -297.88 239.00 297.88 17.00 MacLine -grestore -1.00 ps -297.38 13.50 297.38 17.00 MacLine -297.38 242.50 297.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -287.62 239.00 287.62 17.00 MacLine -grestore -1.00 ps -287.12 13.50 287.12 17.00 MacLine -287.12 242.50 287.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -277.50 239.00 277.50 17.00 MacLine -grestore -1.00 ps -277.00 13.50 277.00 17.00 MacLine -277.00 242.50 277.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -267.38 239.00 267.38 17.00 MacLine -grestore -1.00 ps -266.88 13.50 266.88 17.00 MacLine -266.88 242.50 266.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -257.12 235.50 257.12 20.50 MacLine -grestore -1.00 ps -256.75 13.50 256.75 20.50 MacLine -256.75 242.50 256.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 252.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -247.00 239.00 247.00 17.00 MacLine -grestore -1.00 ps -246.50 13.50 246.50 17.00 MacLine -246.50 242.50 246.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -236.88 239.00 236.88 17.00 MacLine -grestore -1.00 ps -236.38 13.50 236.38 17.00 MacLine -236.38 242.50 236.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -226.75 239.00 226.75 17.00 MacLine -grestore -1.00 ps -226.25 13.50 226.25 17.00 MacLine -226.25 242.50 226.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -216.50 239.00 216.50 17.00 MacLine -grestore -1.00 ps -216.00 13.50 216.00 17.00 MacLine -216.00 242.50 216.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -206.38 237.25 206.38 18.75 MacLine -grestore -1.00 ps -205.88 13.50 205.88 18.75 MacLine -205.88 242.50 205.88 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -196.25 239.00 196.25 17.00 MacLine -grestore -1.00 ps -195.75 13.50 195.75 17.00 MacLine -195.75 242.50 195.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -186.12 239.00 186.12 17.00 MacLine -grestore -1.00 ps -185.62 13.50 185.62 17.00 MacLine -185.62 242.50 185.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -175.88 239.00 175.88 17.00 MacLine -grestore -1.00 ps -175.38 13.50 175.38 17.00 MacLine -175.38 242.50 175.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -165.75 239.00 165.75 17.00 MacLine -grestore -1.00 ps -165.25 13.50 165.25 17.00 MacLine -165.25 242.50 165.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -155.50 235.50 155.50 20.50 MacLine -grestore -1.00 ps -155.12 13.50 155.12 20.50 MacLine -155.12 242.50 155.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 151.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -145.50 239.00 145.50 17.00 MacLine -grestore -1.00 ps -145.00 13.50 145.00 17.00 MacLine -145.00 242.50 145.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -135.25 239.00 135.25 17.00 MacLine -grestore -1.00 ps -134.75 13.50 134.75 17.00 MacLine -134.75 242.50 134.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -125.12 239.00 125.12 17.00 MacLine -grestore -1.00 ps -124.62 13.50 124.62 17.00 MacLine -124.62 242.50 124.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -115.00 239.00 115.00 17.00 MacLine -grestore -1.00 ps -114.50 13.50 114.50 17.00 MacLine -114.50 242.50 114.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -104.75 237.25 104.75 18.75 MacLine -grestore -1.00 ps -104.25 13.50 104.25 18.75 MacLine -104.25 242.50 104.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -94.62 239.00 94.62 17.00 MacLine -grestore -1.00 ps -94.12 13.50 94.12 17.00 MacLine -94.12 242.50 94.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -84.50 239.00 84.50 17.00 MacLine -grestore -1.00 ps -84.00 13.50 84.00 17.00 MacLine -84.00 242.50 84.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -74.38 239.00 74.38 17.00 MacLine -grestore -1.00 ps -73.88 13.50 73.88 17.00 MacLine -73.88 242.50 73.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -64.12 239.00 64.12 17.00 MacLine -grestore -1.00 ps -63.62 13.50 63.62 17.00 MacLine -63.62 242.50 63.62 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(ms\)) 272.00 284.38 72.12 WS -2.00 ps -newpath 54.00 243.00 M -155.62 59.88 L -511.12 59.88 L -562.00 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v4.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v4.gif deleted file mode 100755 index 4946af5ac..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v4.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v5.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v5.eps deleted file mode 100755 index 5bceca58e..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v5.eps +++ /dev/null @@ -1,876 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F5 -%%Creation Date: Mon, Oct 9, 1995 08:40 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 553.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -551.88 239.00 551.88 17.00 MacLine -grestore -1.00 ps -551.38 13.50 551.38 17.00 MacLine -551.38 242.50 551.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -541.62 239.00 541.62 17.00 MacLine -grestore -1.00 ps -541.12 13.50 541.12 17.00 MacLine -541.12 242.50 541.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -531.50 239.00 531.50 17.00 MacLine -grestore -1.00 ps -531.00 13.50 531.00 17.00 MacLine -531.00 242.50 531.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -521.38 239.00 521.38 17.00 MacLine -grestore -1.00 ps -520.88 13.50 520.88 17.00 MacLine -520.88 242.50 520.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -511.25 237.25 511.25 18.75 MacLine -grestore -1.00 ps -510.75 13.50 510.75 18.75 MacLine -510.75 242.50 510.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -501.00 239.00 501.00 17.00 MacLine -grestore -1.00 ps -500.50 13.50 500.50 17.00 MacLine -500.50 242.50 500.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -490.88 239.00 490.88 17.00 MacLine -grestore -1.00 ps -490.38 13.50 490.38 17.00 MacLine -490.38 242.50 490.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.75 239.00 480.75 17.00 MacLine -grestore -1.00 ps -480.25 13.50 480.25 17.00 MacLine -480.25 242.50 480.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -470.50 239.00 470.50 17.00 MacLine -grestore -1.00 ps -470.00 13.50 470.00 17.00 MacLine -470.00 242.50 470.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -460.25 235.50 460.25 20.50 MacLine -grestore -1.00 ps -459.88 13.50 459.88 20.50 MacLine -459.88 242.50 459.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 456.00 259.88 8.88 WS -gsave 0.125 ps [1] sd -450.25 239.00 450.25 17.00 MacLine -grestore -1.00 ps -449.75 13.50 449.75 17.00 MacLine -449.75 242.50 449.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -440.12 239.00 440.12 17.00 MacLine -grestore -1.00 ps -439.62 13.50 439.62 17.00 MacLine -439.62 242.50 439.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -429.88 239.00 429.88 17.00 MacLine -grestore -1.00 ps -429.38 13.50 429.38 17.00 MacLine -429.38 242.50 429.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -419.75 239.00 419.75 17.00 MacLine -grestore -1.00 ps -419.25 13.50 419.25 17.00 MacLine -419.25 242.50 419.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -409.62 237.25 409.62 18.75 MacLine -grestore -1.00 ps -409.12 13.50 409.12 18.75 MacLine -409.12 242.50 409.12 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -399.50 239.00 399.50 17.00 MacLine -grestore -1.00 ps -399.00 13.50 399.00 17.00 MacLine -399.00 242.50 399.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -389.25 239.00 389.25 17.00 MacLine -grestore -1.00 ps -388.75 13.50 388.75 17.00 MacLine -388.75 242.50 388.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -379.12 239.00 379.12 17.00 MacLine -grestore -1.00 ps -378.62 13.50 378.62 17.00 MacLine -378.62 242.50 378.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -369.00 239.00 369.00 17.00 MacLine -grestore -1.00 ps -368.50 13.50 368.50 17.00 MacLine -368.50 242.50 368.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -358.62 235.50 358.62 20.50 MacLine -grestore -1.00 ps -358.25 13.50 358.25 20.50 MacLine -358.25 242.50 358.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 354.38 259.88 8.88 WS -gsave 0.125 ps [1] sd -348.62 239.00 348.62 17.00 MacLine -grestore -1.00 ps -348.12 13.50 348.12 17.00 MacLine -348.12 242.50 348.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -338.50 239.00 338.50 17.00 MacLine -grestore -1.00 ps -338.00 13.50 338.00 17.00 MacLine -338.00 242.50 338.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -328.38 239.00 328.38 17.00 MacLine -grestore -1.00 ps -327.88 13.50 327.88 17.00 MacLine -327.88 242.50 327.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -318.12 239.00 318.12 17.00 MacLine -grestore -1.00 ps -317.62 13.50 317.62 17.00 MacLine -317.62 242.50 317.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -308.00 237.25 308.00 18.75 MacLine -grestore -1.00 ps -307.50 13.50 307.50 18.75 MacLine -307.50 242.50 307.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -297.88 239.00 297.88 17.00 MacLine -grestore -1.00 ps -297.38 13.50 297.38 17.00 MacLine -297.38 242.50 297.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -287.62 239.00 287.62 17.00 MacLine -grestore -1.00 ps -287.12 13.50 287.12 17.00 MacLine -287.12 242.50 287.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -277.50 239.00 277.50 17.00 MacLine -grestore -1.00 ps -277.00 13.50 277.00 17.00 MacLine -277.00 242.50 277.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -267.38 239.00 267.38 17.00 MacLine -grestore -1.00 ps -266.88 13.50 266.88 17.00 MacLine -266.88 242.50 266.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -257.12 235.50 257.12 20.50 MacLine -grestore -1.00 ps -256.75 13.50 256.75 20.50 MacLine -256.75 242.50 256.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 252.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -247.00 239.00 247.00 17.00 MacLine -grestore -1.00 ps -246.50 13.50 246.50 17.00 MacLine -246.50 242.50 246.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -236.88 239.00 236.88 17.00 MacLine -grestore -1.00 ps -236.38 13.50 236.38 17.00 MacLine -236.38 242.50 236.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -226.75 239.00 226.75 17.00 MacLine -grestore -1.00 ps -226.25 13.50 226.25 17.00 MacLine -226.25 242.50 226.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -216.50 239.00 216.50 17.00 MacLine -grestore -1.00 ps -216.00 13.50 216.00 17.00 MacLine -216.00 242.50 216.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -206.38 237.25 206.38 18.75 MacLine -grestore -1.00 ps -205.88 13.50 205.88 18.75 MacLine -205.88 242.50 205.88 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -196.25 239.00 196.25 17.00 MacLine -grestore -1.00 ps -195.75 13.50 195.75 17.00 MacLine -195.75 242.50 195.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -186.12 239.00 186.12 17.00 MacLine -grestore -1.00 ps -185.62 13.50 185.62 17.00 MacLine -185.62 242.50 185.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -175.88 239.00 175.88 17.00 MacLine -grestore -1.00 ps -175.38 13.50 175.38 17.00 MacLine -175.38 242.50 175.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -165.75 239.00 165.75 17.00 MacLine -grestore -1.00 ps -165.25 13.50 165.25 17.00 MacLine -165.25 242.50 165.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -155.50 235.50 155.50 20.50 MacLine -grestore -1.00 ps -155.12 13.50 155.12 20.50 MacLine -155.12 242.50 155.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 151.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -145.50 239.00 145.50 17.00 MacLine -grestore -1.00 ps -145.00 13.50 145.00 17.00 MacLine -145.00 242.50 145.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -135.25 239.00 135.25 17.00 MacLine -grestore -1.00 ps -134.75 13.50 134.75 17.00 MacLine -134.75 242.50 134.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -125.12 239.00 125.12 17.00 MacLine -grestore -1.00 ps -124.62 13.50 124.62 17.00 MacLine -124.62 242.50 124.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -115.00 239.00 115.00 17.00 MacLine -grestore -1.00 ps -114.50 13.50 114.50 17.00 MacLine -114.50 242.50 114.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -104.75 237.25 104.75 18.75 MacLine -grestore -1.00 ps -104.25 13.50 104.25 18.75 MacLine -104.25 242.50 104.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -94.62 239.00 94.62 17.00 MacLine -grestore -1.00 ps -94.12 13.50 94.12 17.00 MacLine -94.12 242.50 94.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -84.50 239.00 84.50 17.00 MacLine -grestore -1.00 ps -84.00 13.50 84.00 17.00 MacLine -84.00 242.50 84.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -74.38 239.00 74.38 17.00 MacLine -grestore -1.00 ps -73.88 13.50 73.88 17.00 MacLine -73.88 242.50 73.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -64.12 239.00 64.12 17.00 MacLine -grestore -1.00 ps -63.62 13.50 63.62 17.00 MacLine -63.62 242.50 63.62 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(ms\)) 272.00 284.38 72.12 WS -2.00 ps -newpath 54.00 243.00 M -206.38 59.88 L -409.62 59.88 L -562.00 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v5.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v5.gif deleted file mode 100755 index f925d47b0..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v5.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v6.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v6.eps deleted file mode 100755 index 54ac18f75..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v6.eps +++ /dev/null @@ -1,876 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F6 -%%Creation Date: Mon, Oct 9, 1995 08:40 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 553.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -551.88 239.00 551.88 17.00 MacLine -grestore -1.00 ps -551.38 13.50 551.38 17.00 MacLine -551.38 242.50 551.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -541.62 239.00 541.62 17.00 MacLine -grestore -1.00 ps -541.12 13.50 541.12 17.00 MacLine -541.12 242.50 541.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -531.50 239.00 531.50 17.00 MacLine -grestore -1.00 ps -531.00 13.50 531.00 17.00 MacLine -531.00 242.50 531.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -521.38 239.00 521.38 17.00 MacLine -grestore -1.00 ps -520.88 13.50 520.88 17.00 MacLine -520.88 242.50 520.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -511.25 237.25 511.25 18.75 MacLine -grestore -1.00 ps -510.75 13.50 510.75 18.75 MacLine -510.75 242.50 510.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -501.00 239.00 501.00 17.00 MacLine -grestore -1.00 ps -500.50 13.50 500.50 17.00 MacLine -500.50 242.50 500.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -490.88 239.00 490.88 17.00 MacLine -grestore -1.00 ps -490.38 13.50 490.38 17.00 MacLine -490.38 242.50 490.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.75 239.00 480.75 17.00 MacLine -grestore -1.00 ps -480.25 13.50 480.25 17.00 MacLine -480.25 242.50 480.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -470.50 239.00 470.50 17.00 MacLine -grestore -1.00 ps -470.00 13.50 470.00 17.00 MacLine -470.00 242.50 470.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -460.25 235.50 460.25 20.50 MacLine -grestore -1.00 ps -459.88 13.50 459.88 20.50 MacLine -459.88 242.50 459.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 456.00 259.88 8.88 WS -gsave 0.125 ps [1] sd -450.25 239.00 450.25 17.00 MacLine -grestore -1.00 ps -449.75 13.50 449.75 17.00 MacLine -449.75 242.50 449.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -440.12 239.00 440.12 17.00 MacLine -grestore -1.00 ps -439.62 13.50 439.62 17.00 MacLine -439.62 242.50 439.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -429.88 239.00 429.88 17.00 MacLine -grestore -1.00 ps -429.38 13.50 429.38 17.00 MacLine -429.38 242.50 429.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -419.75 239.00 419.75 17.00 MacLine -grestore -1.00 ps -419.25 13.50 419.25 17.00 MacLine -419.25 242.50 419.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -409.62 237.25 409.62 18.75 MacLine -grestore -1.00 ps -409.12 13.50 409.12 18.75 MacLine -409.12 242.50 409.12 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -399.50 239.00 399.50 17.00 MacLine -grestore -1.00 ps -399.00 13.50 399.00 17.00 MacLine -399.00 242.50 399.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -389.25 239.00 389.25 17.00 MacLine -grestore -1.00 ps -388.75 13.50 388.75 17.00 MacLine -388.75 242.50 388.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -379.12 239.00 379.12 17.00 MacLine -grestore -1.00 ps -378.62 13.50 378.62 17.00 MacLine -378.62 242.50 378.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -369.00 239.00 369.00 17.00 MacLine -grestore -1.00 ps -368.50 13.50 368.50 17.00 MacLine -368.50 242.50 368.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -358.62 235.50 358.62 20.50 MacLine -grestore -1.00 ps -358.25 13.50 358.25 20.50 MacLine -358.25 242.50 358.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 354.38 259.88 8.88 WS -gsave 0.125 ps [1] sd -348.62 239.00 348.62 17.00 MacLine -grestore -1.00 ps -348.12 13.50 348.12 17.00 MacLine -348.12 242.50 348.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -338.50 239.00 338.50 17.00 MacLine -grestore -1.00 ps -338.00 13.50 338.00 17.00 MacLine -338.00 242.50 338.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -328.38 239.00 328.38 17.00 MacLine -grestore -1.00 ps -327.88 13.50 327.88 17.00 MacLine -327.88 242.50 327.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -318.12 239.00 318.12 17.00 MacLine -grestore -1.00 ps -317.62 13.50 317.62 17.00 MacLine -317.62 242.50 317.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -308.00 237.25 308.00 18.75 MacLine -grestore -1.00 ps -307.50 13.50 307.50 18.75 MacLine -307.50 242.50 307.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -297.88 239.00 297.88 17.00 MacLine -grestore -1.00 ps -297.38 13.50 297.38 17.00 MacLine -297.38 242.50 297.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -287.62 239.00 287.62 17.00 MacLine -grestore -1.00 ps -287.12 13.50 287.12 17.00 MacLine -287.12 242.50 287.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -277.50 239.00 277.50 17.00 MacLine -grestore -1.00 ps -277.00 13.50 277.00 17.00 MacLine -277.00 242.50 277.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -267.38 239.00 267.38 17.00 MacLine -grestore -1.00 ps -266.88 13.50 266.88 17.00 MacLine -266.88 242.50 266.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -257.12 235.50 257.12 20.50 MacLine -grestore -1.00 ps -256.75 13.50 256.75 20.50 MacLine -256.75 242.50 256.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 252.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -247.00 239.00 247.00 17.00 MacLine -grestore -1.00 ps -246.50 13.50 246.50 17.00 MacLine -246.50 242.50 246.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -236.88 239.00 236.88 17.00 MacLine -grestore -1.00 ps -236.38 13.50 236.38 17.00 MacLine -236.38 242.50 236.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -226.75 239.00 226.75 17.00 MacLine -grestore -1.00 ps -226.25 13.50 226.25 17.00 MacLine -226.25 242.50 226.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -216.50 239.00 216.50 17.00 MacLine -grestore -1.00 ps -216.00 13.50 216.00 17.00 MacLine -216.00 242.50 216.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -206.38 237.25 206.38 18.75 MacLine -grestore -1.00 ps -205.88 13.50 205.88 18.75 MacLine -205.88 242.50 205.88 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -196.25 239.00 196.25 17.00 MacLine -grestore -1.00 ps -195.75 13.50 195.75 17.00 MacLine -195.75 242.50 195.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -186.12 239.00 186.12 17.00 MacLine -grestore -1.00 ps -185.62 13.50 185.62 17.00 MacLine -185.62 242.50 185.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -175.88 239.00 175.88 17.00 MacLine -grestore -1.00 ps -175.38 13.50 175.38 17.00 MacLine -175.38 242.50 175.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -165.75 239.00 165.75 17.00 MacLine -grestore -1.00 ps -165.25 13.50 165.25 17.00 MacLine -165.25 242.50 165.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -155.50 235.50 155.50 20.50 MacLine -grestore -1.00 ps -155.12 13.50 155.12 20.50 MacLine -155.12 242.50 155.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 151.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -145.50 239.00 145.50 17.00 MacLine -grestore -1.00 ps -145.00 13.50 145.00 17.00 MacLine -145.00 242.50 145.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -135.25 239.00 135.25 17.00 MacLine -grestore -1.00 ps -134.75 13.50 134.75 17.00 MacLine -134.75 242.50 134.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -125.12 239.00 125.12 17.00 MacLine -grestore -1.00 ps -124.62 13.50 124.62 17.00 MacLine -124.62 242.50 124.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -115.00 239.00 115.00 17.00 MacLine -grestore -1.00 ps -114.50 13.50 114.50 17.00 MacLine -114.50 242.50 114.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -104.75 237.25 104.75 18.75 MacLine -grestore -1.00 ps -104.25 13.50 104.25 18.75 MacLine -104.25 242.50 104.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -94.62 239.00 94.62 17.00 MacLine -grestore -1.00 ps -94.12 13.50 94.12 17.00 MacLine -94.12 242.50 94.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -84.50 239.00 84.50 17.00 MacLine -grestore -1.00 ps -84.00 13.50 84.00 17.00 MacLine -84.00 242.50 84.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -74.38 239.00 74.38 17.00 MacLine -grestore -1.00 ps -73.88 13.50 73.88 17.00 MacLine -73.88 242.50 73.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -64.12 239.00 64.12 17.00 MacLine -grestore -1.00 ps -63.62 13.50 63.62 17.00 MacLine -63.62 242.50 63.62 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(ms\)) 272.00 284.38 72.12 WS -2.00 ps -newpath 54.00 243.00 M -206.38 59.88 L -511.12 59.88 L -562.00 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v6.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v6.gif deleted file mode 100755 index 995447cc3..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v6.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v7.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v7.eps deleted file mode 100755 index 3ecf5d4d0..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v7.eps +++ /dev/null @@ -1,876 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F7 -%%Creation Date: Mon, Oct 9, 1995 08:40 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 553.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -551.88 239.00 551.88 17.00 MacLine -grestore -1.00 ps -551.38 13.50 551.38 17.00 MacLine -551.38 242.50 551.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -541.62 239.00 541.62 17.00 MacLine -grestore -1.00 ps -541.12 13.50 541.12 17.00 MacLine -541.12 242.50 541.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -531.50 239.00 531.50 17.00 MacLine -grestore -1.00 ps -531.00 13.50 531.00 17.00 MacLine -531.00 242.50 531.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -521.38 239.00 521.38 17.00 MacLine -grestore -1.00 ps -520.88 13.50 520.88 17.00 MacLine -520.88 242.50 520.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -511.25 237.25 511.25 18.75 MacLine -grestore -1.00 ps -510.75 13.50 510.75 18.75 MacLine -510.75 242.50 510.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -501.00 239.00 501.00 17.00 MacLine -grestore -1.00 ps -500.50 13.50 500.50 17.00 MacLine -500.50 242.50 500.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -490.88 239.00 490.88 17.00 MacLine -grestore -1.00 ps -490.38 13.50 490.38 17.00 MacLine -490.38 242.50 490.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.75 239.00 480.75 17.00 MacLine -grestore -1.00 ps -480.25 13.50 480.25 17.00 MacLine -480.25 242.50 480.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -470.50 239.00 470.50 17.00 MacLine -grestore -1.00 ps -470.00 13.50 470.00 17.00 MacLine -470.00 242.50 470.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -460.25 235.50 460.25 20.50 MacLine -grestore -1.00 ps -459.88 13.50 459.88 20.50 MacLine -459.88 242.50 459.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 456.00 259.88 8.88 WS -gsave 0.125 ps [1] sd -450.25 239.00 450.25 17.00 MacLine -grestore -1.00 ps -449.75 13.50 449.75 17.00 MacLine -449.75 242.50 449.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -440.12 239.00 440.12 17.00 MacLine -grestore -1.00 ps -439.62 13.50 439.62 17.00 MacLine -439.62 242.50 439.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -429.88 239.00 429.88 17.00 MacLine -grestore -1.00 ps -429.38 13.50 429.38 17.00 MacLine -429.38 242.50 429.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -419.75 239.00 419.75 17.00 MacLine -grestore -1.00 ps -419.25 13.50 419.25 17.00 MacLine -419.25 242.50 419.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -409.62 237.25 409.62 18.75 MacLine -grestore -1.00 ps -409.12 13.50 409.12 18.75 MacLine -409.12 242.50 409.12 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -399.50 239.00 399.50 17.00 MacLine -grestore -1.00 ps -399.00 13.50 399.00 17.00 MacLine -399.00 242.50 399.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -389.25 239.00 389.25 17.00 MacLine -grestore -1.00 ps -388.75 13.50 388.75 17.00 MacLine -388.75 242.50 388.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -379.12 239.00 379.12 17.00 MacLine -grestore -1.00 ps -378.62 13.50 378.62 17.00 MacLine -378.62 242.50 378.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -369.00 239.00 369.00 17.00 MacLine -grestore -1.00 ps -368.50 13.50 368.50 17.00 MacLine -368.50 242.50 368.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -358.62 235.50 358.62 20.50 MacLine -grestore -1.00 ps -358.25 13.50 358.25 20.50 MacLine -358.25 242.50 358.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 354.38 259.88 8.88 WS -gsave 0.125 ps [1] sd -348.62 239.00 348.62 17.00 MacLine -grestore -1.00 ps -348.12 13.50 348.12 17.00 MacLine -348.12 242.50 348.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -338.50 239.00 338.50 17.00 MacLine -grestore -1.00 ps -338.00 13.50 338.00 17.00 MacLine -338.00 242.50 338.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -328.38 239.00 328.38 17.00 MacLine -grestore -1.00 ps -327.88 13.50 327.88 17.00 MacLine -327.88 242.50 327.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -318.12 239.00 318.12 17.00 MacLine -grestore -1.00 ps -317.62 13.50 317.62 17.00 MacLine -317.62 242.50 317.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -308.00 237.25 308.00 18.75 MacLine -grestore -1.00 ps -307.50 13.50 307.50 18.75 MacLine -307.50 242.50 307.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -297.88 239.00 297.88 17.00 MacLine -grestore -1.00 ps -297.38 13.50 297.38 17.00 MacLine -297.38 242.50 297.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -287.62 239.00 287.62 17.00 MacLine -grestore -1.00 ps -287.12 13.50 287.12 17.00 MacLine -287.12 242.50 287.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -277.50 239.00 277.50 17.00 MacLine -grestore -1.00 ps -277.00 13.50 277.00 17.00 MacLine -277.00 242.50 277.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -267.38 239.00 267.38 17.00 MacLine -grestore -1.00 ps -266.88 13.50 266.88 17.00 MacLine -266.88 242.50 266.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -257.12 235.50 257.12 20.50 MacLine -grestore -1.00 ps -256.75 13.50 256.75 20.50 MacLine -256.75 242.50 256.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 252.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -247.00 239.00 247.00 17.00 MacLine -grestore -1.00 ps -246.50 13.50 246.50 17.00 MacLine -246.50 242.50 246.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -236.88 239.00 236.88 17.00 MacLine -grestore -1.00 ps -236.38 13.50 236.38 17.00 MacLine -236.38 242.50 236.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -226.75 239.00 226.75 17.00 MacLine -grestore -1.00 ps -226.25 13.50 226.25 17.00 MacLine -226.25 242.50 226.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -216.50 239.00 216.50 17.00 MacLine -grestore -1.00 ps -216.00 13.50 216.00 17.00 MacLine -216.00 242.50 216.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -206.38 237.25 206.38 18.75 MacLine -grestore -1.00 ps -205.88 13.50 205.88 18.75 MacLine -205.88 242.50 205.88 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -196.25 239.00 196.25 17.00 MacLine -grestore -1.00 ps -195.75 13.50 195.75 17.00 MacLine -195.75 242.50 195.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -186.12 239.00 186.12 17.00 MacLine -grestore -1.00 ps -185.62 13.50 185.62 17.00 MacLine -185.62 242.50 185.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -175.88 239.00 175.88 17.00 MacLine -grestore -1.00 ps -175.38 13.50 175.38 17.00 MacLine -175.38 242.50 175.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -165.75 239.00 165.75 17.00 MacLine -grestore -1.00 ps -165.25 13.50 165.25 17.00 MacLine -165.25 242.50 165.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -155.50 235.50 155.50 20.50 MacLine -grestore -1.00 ps -155.12 13.50 155.12 20.50 MacLine -155.12 242.50 155.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 151.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -145.50 239.00 145.50 17.00 MacLine -grestore -1.00 ps -145.00 13.50 145.00 17.00 MacLine -145.00 242.50 145.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -135.25 239.00 135.25 17.00 MacLine -grestore -1.00 ps -134.75 13.50 134.75 17.00 MacLine -134.75 242.50 134.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -125.12 239.00 125.12 17.00 MacLine -grestore -1.00 ps -124.62 13.50 124.62 17.00 MacLine -124.62 242.50 124.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -115.00 239.00 115.00 17.00 MacLine -grestore -1.00 ps -114.50 13.50 114.50 17.00 MacLine -114.50 242.50 114.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -104.75 237.25 104.75 18.75 MacLine -grestore -1.00 ps -104.25 13.50 104.25 18.75 MacLine -104.25 242.50 104.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -94.62 239.00 94.62 17.00 MacLine -grestore -1.00 ps -94.12 13.50 94.12 17.00 MacLine -94.12 242.50 94.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -84.50 239.00 84.50 17.00 MacLine -grestore -1.00 ps -84.00 13.50 84.00 17.00 MacLine -84.00 242.50 84.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -74.38 239.00 74.38 17.00 MacLine -grestore -1.00 ps -73.88 13.50 73.88 17.00 MacLine -73.88 242.50 73.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -64.12 239.00 64.12 17.00 MacLine -grestore -1.00 ps -63.62 13.50 63.62 17.00 MacLine -63.62 242.50 63.62 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(ms\)) 272.00 284.38 72.12 WS -2.00 ps -newpath 54.00 243.00 M -257.25 59.88 L -308.00 59.88 L -562.00 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v7.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v7.gif deleted file mode 100755 index 67cd436ed..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v7.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v7.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v7.pdf deleted file mode 100644 index 0a4ec73e5..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v7.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v8.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v8.eps deleted file mode 100755 index 1459ec3ef..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v8.eps +++ /dev/null @@ -1,876 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F8 -%%Creation Date: Mon, Oct 9, 1995 08:40 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 553.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -551.88 239.00 551.88 17.00 MacLine -grestore -1.00 ps -551.38 13.50 551.38 17.00 MacLine -551.38 242.50 551.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -541.62 239.00 541.62 17.00 MacLine -grestore -1.00 ps -541.12 13.50 541.12 17.00 MacLine -541.12 242.50 541.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -531.50 239.00 531.50 17.00 MacLine -grestore -1.00 ps -531.00 13.50 531.00 17.00 MacLine -531.00 242.50 531.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -521.38 239.00 521.38 17.00 MacLine -grestore -1.00 ps -520.88 13.50 520.88 17.00 MacLine -520.88 242.50 520.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -511.25 237.25 511.25 18.75 MacLine -grestore -1.00 ps -510.75 13.50 510.75 18.75 MacLine -510.75 242.50 510.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -501.00 239.00 501.00 17.00 MacLine -grestore -1.00 ps -500.50 13.50 500.50 17.00 MacLine -500.50 242.50 500.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -490.88 239.00 490.88 17.00 MacLine -grestore -1.00 ps -490.38 13.50 490.38 17.00 MacLine -490.38 242.50 490.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.75 239.00 480.75 17.00 MacLine -grestore -1.00 ps -480.25 13.50 480.25 17.00 MacLine -480.25 242.50 480.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -470.50 239.00 470.50 17.00 MacLine -grestore -1.00 ps -470.00 13.50 470.00 17.00 MacLine -470.00 242.50 470.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -460.25 235.50 460.25 20.50 MacLine -grestore -1.00 ps -459.88 13.50 459.88 20.50 MacLine -459.88 242.50 459.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 456.00 259.88 8.88 WS -gsave 0.125 ps [1] sd -450.25 239.00 450.25 17.00 MacLine -grestore -1.00 ps -449.75 13.50 449.75 17.00 MacLine -449.75 242.50 449.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -440.12 239.00 440.12 17.00 MacLine -grestore -1.00 ps -439.62 13.50 439.62 17.00 MacLine -439.62 242.50 439.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -429.88 239.00 429.88 17.00 MacLine -grestore -1.00 ps -429.38 13.50 429.38 17.00 MacLine -429.38 242.50 429.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -419.75 239.00 419.75 17.00 MacLine -grestore -1.00 ps -419.25 13.50 419.25 17.00 MacLine -419.25 242.50 419.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -409.62 237.25 409.62 18.75 MacLine -grestore -1.00 ps -409.12 13.50 409.12 18.75 MacLine -409.12 242.50 409.12 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -399.50 239.00 399.50 17.00 MacLine -grestore -1.00 ps -399.00 13.50 399.00 17.00 MacLine -399.00 242.50 399.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -389.25 239.00 389.25 17.00 MacLine -grestore -1.00 ps -388.75 13.50 388.75 17.00 MacLine -388.75 242.50 388.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -379.12 239.00 379.12 17.00 MacLine -grestore -1.00 ps -378.62 13.50 378.62 17.00 MacLine -378.62 242.50 378.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -369.00 239.00 369.00 17.00 MacLine -grestore -1.00 ps -368.50 13.50 368.50 17.00 MacLine -368.50 242.50 368.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -358.62 235.50 358.62 20.50 MacLine -grestore -1.00 ps -358.25 13.50 358.25 20.50 MacLine -358.25 242.50 358.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 354.38 259.88 8.88 WS -gsave 0.125 ps [1] sd -348.62 239.00 348.62 17.00 MacLine -grestore -1.00 ps -348.12 13.50 348.12 17.00 MacLine -348.12 242.50 348.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -338.50 239.00 338.50 17.00 MacLine -grestore -1.00 ps -338.00 13.50 338.00 17.00 MacLine -338.00 242.50 338.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -328.38 239.00 328.38 17.00 MacLine -grestore -1.00 ps -327.88 13.50 327.88 17.00 MacLine -327.88 242.50 327.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -318.12 239.00 318.12 17.00 MacLine -grestore -1.00 ps -317.62 13.50 317.62 17.00 MacLine -317.62 242.50 317.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -308.00 237.25 308.00 18.75 MacLine -grestore -1.00 ps -307.50 13.50 307.50 18.75 MacLine -307.50 242.50 307.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -297.88 239.00 297.88 17.00 MacLine -grestore -1.00 ps -297.38 13.50 297.38 17.00 MacLine -297.38 242.50 297.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -287.62 239.00 287.62 17.00 MacLine -grestore -1.00 ps -287.12 13.50 287.12 17.00 MacLine -287.12 242.50 287.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -277.50 239.00 277.50 17.00 MacLine -grestore -1.00 ps -277.00 13.50 277.00 17.00 MacLine -277.00 242.50 277.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -267.38 239.00 267.38 17.00 MacLine -grestore -1.00 ps -266.88 13.50 266.88 17.00 MacLine -266.88 242.50 266.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -257.12 235.50 257.12 20.50 MacLine -grestore -1.00 ps -256.75 13.50 256.75 20.50 MacLine -256.75 242.50 256.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 252.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -247.00 239.00 247.00 17.00 MacLine -grestore -1.00 ps -246.50 13.50 246.50 17.00 MacLine -246.50 242.50 246.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -236.88 239.00 236.88 17.00 MacLine -grestore -1.00 ps -236.38 13.50 236.38 17.00 MacLine -236.38 242.50 236.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -226.75 239.00 226.75 17.00 MacLine -grestore -1.00 ps -226.25 13.50 226.25 17.00 MacLine -226.25 242.50 226.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -216.50 239.00 216.50 17.00 MacLine -grestore -1.00 ps -216.00 13.50 216.00 17.00 MacLine -216.00 242.50 216.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -206.38 237.25 206.38 18.75 MacLine -grestore -1.00 ps -205.88 13.50 205.88 18.75 MacLine -205.88 242.50 205.88 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -196.25 239.00 196.25 17.00 MacLine -grestore -1.00 ps -195.75 13.50 195.75 17.00 MacLine -195.75 242.50 195.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -186.12 239.00 186.12 17.00 MacLine -grestore -1.00 ps -185.62 13.50 185.62 17.00 MacLine -185.62 242.50 185.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -175.88 239.00 175.88 17.00 MacLine -grestore -1.00 ps -175.38 13.50 175.38 17.00 MacLine -175.38 242.50 175.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -165.75 239.00 165.75 17.00 MacLine -grestore -1.00 ps -165.25 13.50 165.25 17.00 MacLine -165.25 242.50 165.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -155.50 235.50 155.50 20.50 MacLine -grestore -1.00 ps -155.12 13.50 155.12 20.50 MacLine -155.12 242.50 155.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 151.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -145.50 239.00 145.50 17.00 MacLine -grestore -1.00 ps -145.00 13.50 145.00 17.00 MacLine -145.00 242.50 145.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -135.25 239.00 135.25 17.00 MacLine -grestore -1.00 ps -134.75 13.50 134.75 17.00 MacLine -134.75 242.50 134.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -125.12 239.00 125.12 17.00 MacLine -grestore -1.00 ps -124.62 13.50 124.62 17.00 MacLine -124.62 242.50 124.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -115.00 239.00 115.00 17.00 MacLine -grestore -1.00 ps -114.50 13.50 114.50 17.00 MacLine -114.50 242.50 114.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -104.75 237.25 104.75 18.75 MacLine -grestore -1.00 ps -104.25 13.50 104.25 18.75 MacLine -104.25 242.50 104.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -94.62 239.00 94.62 17.00 MacLine -grestore -1.00 ps -94.12 13.50 94.12 17.00 MacLine -94.12 242.50 94.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -84.50 239.00 84.50 17.00 MacLine -grestore -1.00 ps -84.00 13.50 84.00 17.00 MacLine -84.00 242.50 84.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -74.38 239.00 74.38 17.00 MacLine -grestore -1.00 ps -73.88 13.50 73.88 17.00 MacLine -73.88 242.50 73.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -64.12 239.00 64.12 17.00 MacLine -grestore -1.00 ps -63.62 13.50 63.62 17.00 MacLine -63.62 242.50 63.62 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(ms\)) 272.00 284.38 72.12 WS -2.00 ps -newpath 54.00 243.00 M -257.25 59.88 L -409.62 59.88 L -562.00 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v8.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v8.gif deleted file mode 100755 index 3ca332afc..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v8.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v9.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v9.eps deleted file mode 100755 index 6a574c669..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v9.eps +++ /dev/null @@ -1,876 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F9 -%%Creation Date: Mon, Oct 9, 1995 08:40 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.50 14.00 53.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -53.50 13.50 60.50 13.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -53.50 25.00 57.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -53.50 36.38 57.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -53.50 47.88 57.00 47.88 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 59.62 554.50 59.62 MacLine -grestore -1.00 ps -561.50 59.25 554.50 59.25 MacLine -53.50 59.25 60.50 59.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 71.25 558.00 71.25 MacLine -grestore -1.00 ps -561.50 70.75 558.00 70.75 MacLine -53.50 70.75 57.00 70.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -53.50 82.25 57.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -53.50 93.62 57.00 93.62 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 105.50 554.50 105.50 MacLine -grestore -1.00 ps -561.50 105.12 554.50 105.12 MacLine -53.50 105.12 60.50 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -53.50 116.50 57.00 116.50 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 128.50 558.00 128.50 MacLine -grestore -1.00 ps -561.50 128.00 558.00 128.00 MacLine -53.50 128.00 57.00 128.00 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -53.50 139.50 57.00 139.50 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 151.25 554.50 151.25 MacLine -grestore -1.00 ps -561.50 150.88 554.50 150.88 MacLine -53.50 150.88 60.50 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -53.50 162.38 57.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -53.50 173.75 57.00 173.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 185.75 558.00 185.75 MacLine -grestore -1.00 ps -561.50 185.25 558.00 185.25 MacLine -53.50 185.25 57.00 185.25 MacLine -1 ps -gsave 0.25 ps [1] sd -60.50 197.12 554.50 197.12 MacLine -grestore -1.00 ps -561.50 196.75 554.50 196.75 MacLine -53.50 196.75 60.50 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -53.50 208.12 57.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -53.50 219.62 57.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -57.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -53.50 231.00 57.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -53.50 242.50 60.50 242.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -53.50 242.50 561.50 242.50 MacLine -53.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 553.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -551.88 239.00 551.88 17.00 MacLine -grestore -1.00 ps -551.38 13.50 551.38 17.00 MacLine -551.38 242.50 551.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -541.62 239.00 541.62 17.00 MacLine -grestore -1.00 ps -541.12 13.50 541.12 17.00 MacLine -541.12 242.50 541.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -531.50 239.00 531.50 17.00 MacLine -grestore -1.00 ps -531.00 13.50 531.00 17.00 MacLine -531.00 242.50 531.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -521.38 239.00 521.38 17.00 MacLine -grestore -1.00 ps -520.88 13.50 520.88 17.00 MacLine -520.88 242.50 520.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -511.25 237.25 511.25 18.75 MacLine -grestore -1.00 ps -510.75 13.50 510.75 18.75 MacLine -510.75 242.50 510.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -501.00 239.00 501.00 17.00 MacLine -grestore -1.00 ps -500.50 13.50 500.50 17.00 MacLine -500.50 242.50 500.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -490.88 239.00 490.88 17.00 MacLine -grestore -1.00 ps -490.38 13.50 490.38 17.00 MacLine -490.38 242.50 490.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.75 239.00 480.75 17.00 MacLine -grestore -1.00 ps -480.25 13.50 480.25 17.00 MacLine -480.25 242.50 480.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -470.50 239.00 470.50 17.00 MacLine -grestore -1.00 ps -470.00 13.50 470.00 17.00 MacLine -470.00 242.50 470.00 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -460.25 235.50 460.25 20.50 MacLine -grestore -1.00 ps -459.88 13.50 459.88 20.50 MacLine -459.88 242.50 459.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 456.00 259.88 8.88 WS -gsave 0.125 ps [1] sd -450.25 239.00 450.25 17.00 MacLine -grestore -1.00 ps -449.75 13.50 449.75 17.00 MacLine -449.75 242.50 449.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -440.12 239.00 440.12 17.00 MacLine -grestore -1.00 ps -439.62 13.50 439.62 17.00 MacLine -439.62 242.50 439.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -429.88 239.00 429.88 17.00 MacLine -grestore -1.00 ps -429.38 13.50 429.38 17.00 MacLine -429.38 242.50 429.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -419.75 239.00 419.75 17.00 MacLine -grestore -1.00 ps -419.25 13.50 419.25 17.00 MacLine -419.25 242.50 419.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -409.62 237.25 409.62 18.75 MacLine -grestore -1.00 ps -409.12 13.50 409.12 18.75 MacLine -409.12 242.50 409.12 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -399.50 239.00 399.50 17.00 MacLine -grestore -1.00 ps -399.00 13.50 399.00 17.00 MacLine -399.00 242.50 399.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -389.25 239.00 389.25 17.00 MacLine -grestore -1.00 ps -388.75 13.50 388.75 17.00 MacLine -388.75 242.50 388.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -379.12 239.00 379.12 17.00 MacLine -grestore -1.00 ps -378.62 13.50 378.62 17.00 MacLine -378.62 242.50 378.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -369.00 239.00 369.00 17.00 MacLine -grestore -1.00 ps -368.50 13.50 368.50 17.00 MacLine -368.50 242.50 368.50 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -358.62 235.50 358.62 20.50 MacLine -grestore -1.00 ps -358.25 13.50 358.25 20.50 MacLine -358.25 242.50 358.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 354.38 259.88 8.88 WS -gsave 0.125 ps [1] sd -348.62 239.00 348.62 17.00 MacLine -grestore -1.00 ps -348.12 13.50 348.12 17.00 MacLine -348.12 242.50 348.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -338.50 239.00 338.50 17.00 MacLine -grestore -1.00 ps -338.00 13.50 338.00 17.00 MacLine -338.00 242.50 338.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -328.38 239.00 328.38 17.00 MacLine -grestore -1.00 ps -327.88 13.50 327.88 17.00 MacLine -327.88 242.50 327.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -318.12 239.00 318.12 17.00 MacLine -grestore -1.00 ps -317.62 13.50 317.62 17.00 MacLine -317.62 242.50 317.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -308.00 237.25 308.00 18.75 MacLine -grestore -1.00 ps -307.50 13.50 307.50 18.75 MacLine -307.50 242.50 307.50 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -297.88 239.00 297.88 17.00 MacLine -grestore -1.00 ps -297.38 13.50 297.38 17.00 MacLine -297.38 242.50 297.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -287.62 239.00 287.62 17.00 MacLine -grestore -1.00 ps -287.12 13.50 287.12 17.00 MacLine -287.12 242.50 287.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -277.50 239.00 277.50 17.00 MacLine -grestore -1.00 ps -277.00 13.50 277.00 17.00 MacLine -277.00 242.50 277.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -267.38 239.00 267.38 17.00 MacLine -grestore -1.00 ps -266.88 13.50 266.88 17.00 MacLine -266.88 242.50 266.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -257.12 235.50 257.12 20.50 MacLine -grestore -1.00 ps -256.75 13.50 256.75 20.50 MacLine -256.75 242.50 256.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 252.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -247.00 239.00 247.00 17.00 MacLine -grestore -1.00 ps -246.50 13.50 246.50 17.00 MacLine -246.50 242.50 246.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -236.88 239.00 236.88 17.00 MacLine -grestore -1.00 ps -236.38 13.50 236.38 17.00 MacLine -236.38 242.50 236.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -226.75 239.00 226.75 17.00 MacLine -grestore -1.00 ps -226.25 13.50 226.25 17.00 MacLine -226.25 242.50 226.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -216.50 239.00 216.50 17.00 MacLine -grestore -1.00 ps -216.00 13.50 216.00 17.00 MacLine -216.00 242.50 216.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -206.38 237.25 206.38 18.75 MacLine -grestore -1.00 ps -205.88 13.50 205.88 18.75 MacLine -205.88 242.50 205.88 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -196.25 239.00 196.25 17.00 MacLine -grestore -1.00 ps -195.75 13.50 195.75 17.00 MacLine -195.75 242.50 195.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -186.12 239.00 186.12 17.00 MacLine -grestore -1.00 ps -185.62 13.50 185.62 17.00 MacLine -185.62 242.50 185.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -175.88 239.00 175.88 17.00 MacLine -grestore -1.00 ps -175.38 13.50 175.38 17.00 MacLine -175.38 242.50 175.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -165.75 239.00 165.75 17.00 MacLine -grestore -1.00 ps -165.25 13.50 165.25 17.00 MacLine -165.25 242.50 165.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -155.50 235.50 155.50 20.50 MacLine -grestore -1.00 ps -155.12 13.50 155.12 20.50 MacLine -155.12 242.50 155.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 151.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -145.50 239.00 145.50 17.00 MacLine -grestore -1.00 ps -145.00 13.50 145.00 17.00 MacLine -145.00 242.50 145.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -135.25 239.00 135.25 17.00 MacLine -grestore -1.00 ps -134.75 13.50 134.75 17.00 MacLine -134.75 242.50 134.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -125.12 239.00 125.12 17.00 MacLine -grestore -1.00 ps -124.62 13.50 124.62 17.00 MacLine -124.62 242.50 124.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -115.00 239.00 115.00 17.00 MacLine -grestore -1.00 ps -114.50 13.50 114.50 17.00 MacLine -114.50 242.50 114.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -104.75 237.25 104.75 18.75 MacLine -grestore -1.00 ps -104.25 13.50 104.25 18.75 MacLine -104.25 242.50 104.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -94.62 239.00 94.62 17.00 MacLine -grestore -1.00 ps -94.12 13.50 94.12 17.00 MacLine -94.12 242.50 94.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -84.50 239.00 84.50 17.00 MacLine -grestore -1.00 ps -84.00 13.50 84.00 17.00 MacLine -84.00 242.50 84.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -74.38 239.00 74.38 17.00 MacLine -grestore -1.00 ps -73.88 13.50 73.88 17.00 MacLine -73.88 242.50 73.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -64.12 239.00 64.12 17.00 MacLine -grestore -1.00 ps -63.62 13.50 63.62 17.00 MacLine -63.62 242.50 63.62 239.00 MacLine -1 ps -1.00 ps -53.50 13.50 53.50 20.50 MacLine -53.50 242.50 53.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 49.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(ms\)) 272.00 284.38 72.12 WS -2.00 ps -newpath 54.00 243.00 M -308.00 59.88 L -460.38 59.88 L -562.00 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v9.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v9.gif deleted file mode 100755 index ba2374f55..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob05v9.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v1.eps deleted file mode 100755 index f379d5285..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v1.eps +++ /dev/null @@ -1,982 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F1 -%%Creation Date: Mon, Oct 9, 1995 08:53 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -62.50 13.50 69.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2000) 23.50 18.38 35.50 WS -gsave 0.125 ps [1] sd -66.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -62.50 25.00 66.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -62.50 36.38 66.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -62.50 47.88 66.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -62.50 59.25 66.00 59.25 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -62.50 70.75 69.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1500) 23.50 75.62 35.50 WS -gsave 0.125 ps [1] sd -66.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -62.50 82.25 66.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -62.50 93.62 66.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -62.50 105.12 66.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -62.50 116.50 66.00 116.50 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -62.50 128.00 69.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1000) 23.50 132.88 35.50 WS -gsave 0.125 ps [1] sd -66.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -62.50 139.50 66.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -62.50 150.88 66.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -62.50 162.38 66.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -62.50 173.75 66.00 173.75 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -62.50 185.25 69.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(500) 32.38 190.12 26.62 WS -gsave 0.125 ps [1] sd -66.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -62.50 196.75 66.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -62.50 208.12 66.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -62.50 219.62 66.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -62.50 231.00 66.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -62.50 242.50 69.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 50.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 553.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -552.00 239.00 552.00 17.00 MacLine -grestore -1.00 ps -551.50 13.50 551.50 17.00 MacLine -551.50 242.50 551.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -542.00 239.00 542.00 17.00 MacLine -grestore -1.00 ps -541.50 13.50 541.50 17.00 MacLine -541.50 242.50 541.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -532.00 239.00 532.00 17.00 MacLine -grestore -1.00 ps -531.50 13.50 531.50 17.00 MacLine -531.50 242.50 531.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.12 239.00 522.12 17.00 MacLine -grestore -1.00 ps -521.62 13.50 521.62 17.00 MacLine -521.62 242.50 521.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.12 237.25 512.12 18.75 MacLine -grestore -1.00 ps -511.62 13.50 511.62 18.75 MacLine -511.62 242.50 511.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -502.12 239.00 502.12 17.00 MacLine -grestore -1.00 ps -501.62 13.50 501.62 17.00 MacLine -501.62 242.50 501.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -492.12 239.00 492.12 17.00 MacLine -grestore -1.00 ps -491.62 13.50 491.62 17.00 MacLine -491.62 242.50 491.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -482.12 239.00 482.12 17.00 MacLine -grestore -1.00 ps -481.62 13.50 481.62 17.00 MacLine -481.62 242.50 481.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.12 239.00 472.12 17.00 MacLine -grestore -1.00 ps -471.62 13.50 471.62 17.00 MacLine -471.62 242.50 471.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -462.12 235.50 462.12 20.50 MacLine -grestore -1.00 ps -461.75 13.50 461.75 20.50 MacLine -461.75 242.50 461.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 457.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -452.25 239.00 452.25 17.00 MacLine -grestore -1.00 ps -451.75 13.50 451.75 17.00 MacLine -451.75 242.50 451.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.25 239.00 442.25 17.00 MacLine -grestore -1.00 ps -441.75 13.50 441.75 17.00 MacLine -441.75 242.50 441.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -432.25 239.00 432.25 17.00 MacLine -grestore -1.00 ps -431.75 13.50 431.75 17.00 MacLine -431.75 242.50 431.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -422.25 239.00 422.25 17.00 MacLine -grestore -1.00 ps -421.75 13.50 421.75 17.00 MacLine -421.75 242.50 421.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -412.25 237.25 412.25 18.75 MacLine -grestore -1.00 ps -411.75 13.50 411.75 18.75 MacLine -411.75 242.50 411.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -402.38 239.00 402.38 17.00 MacLine -grestore -1.00 ps -401.88 13.50 401.88 17.00 MacLine -401.88 242.50 401.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.38 239.00 392.38 17.00 MacLine -grestore -1.00 ps -391.88 13.50 391.88 17.00 MacLine -391.88 242.50 391.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -382.38 239.00 382.38 17.00 MacLine -grestore -1.00 ps -381.88 13.50 381.88 17.00 MacLine -381.88 242.50 381.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -372.38 239.00 372.38 17.00 MacLine -grestore -1.00 ps -371.88 13.50 371.88 17.00 MacLine -371.88 242.50 371.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -362.25 235.50 362.25 20.50 MacLine -grestore -1.00 ps -361.88 13.50 361.88 20.50 MacLine -361.88 242.50 361.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 358.00 259.88 8.88 WS -gsave 0.125 ps [1] sd -352.38 239.00 352.38 17.00 MacLine -grestore -1.00 ps -351.88 13.50 351.88 17.00 MacLine -351.88 242.50 351.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.50 239.00 342.50 17.00 MacLine -grestore -1.00 ps -342.00 13.50 342.00 17.00 MacLine -342.00 242.50 342.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -332.50 239.00 332.50 17.00 MacLine -grestore -1.00 ps -332.00 13.50 332.00 17.00 MacLine -332.00 242.50 332.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -322.50 239.00 322.50 17.00 MacLine -grestore -1.00 ps -322.00 13.50 322.00 17.00 MacLine -322.00 242.50 322.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -312.50 237.25 312.50 18.75 MacLine -grestore -1.00 ps -312.00 13.50 312.00 18.75 MacLine -312.00 242.50 312.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -302.50 239.00 302.50 17.00 MacLine -grestore -1.00 ps -302.00 13.50 302.00 17.00 MacLine -302.00 242.50 302.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -292.50 239.00 292.50 17.00 MacLine -grestore -1.00 ps -292.00 13.50 292.00 17.00 MacLine -292.00 242.50 292.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -282.50 239.00 282.50 17.00 MacLine -grestore -1.00 ps -282.00 13.50 282.00 17.00 MacLine -282.00 242.50 282.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -272.62 239.00 272.62 17.00 MacLine -grestore -1.00 ps -272.12 13.50 272.12 17.00 MacLine -272.12 242.50 272.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -262.50 235.50 262.50 20.50 MacLine -grestore -1.00 ps -262.12 13.50 262.12 20.50 MacLine -262.12 242.50 262.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 258.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -252.62 239.00 252.62 17.00 MacLine -grestore -1.00 ps -252.12 13.50 252.12 17.00 MacLine -252.12 242.50 252.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -242.62 239.00 242.62 17.00 MacLine -grestore -1.00 ps -242.12 13.50 242.12 17.00 MacLine -242.12 242.50 242.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -232.62 239.00 232.62 17.00 MacLine -grestore -1.00 ps -232.12 13.50 232.12 17.00 MacLine -232.12 242.50 232.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.62 239.00 222.62 17.00 MacLine -grestore -1.00 ps -222.12 13.50 222.12 17.00 MacLine -222.12 242.50 222.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -212.75 237.25 212.75 18.75 MacLine -grestore -1.00 ps -212.25 13.50 212.25 18.75 MacLine -212.25 242.50 212.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -202.75 239.00 202.75 17.00 MacLine -grestore -1.00 ps -202.25 13.50 202.25 17.00 MacLine -202.25 242.50 202.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -192.75 239.00 192.75 17.00 MacLine -grestore -1.00 ps -192.25 13.50 192.25 17.00 MacLine -192.25 242.50 192.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -182.75 239.00 182.75 17.00 MacLine -grestore -1.00 ps -182.25 13.50 182.25 17.00 MacLine -182.25 242.50 182.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -172.75 239.00 172.75 17.00 MacLine -grestore -1.00 ps -172.25 13.50 172.25 17.00 MacLine -172.25 242.50 172.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -162.62 235.50 162.62 20.50 MacLine -grestore -1.00 ps -162.25 13.50 162.25 20.50 MacLine -162.25 242.50 162.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 158.38 259.88 8.88 WS -gsave 0.125 ps [1] sd -152.88 239.00 152.88 17.00 MacLine -grestore -1.00 ps -152.38 13.50 152.38 17.00 MacLine -152.38 242.50 152.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -142.88 239.00 142.88 17.00 MacLine -grestore -1.00 ps -142.38 13.50 142.38 17.00 MacLine -142.38 242.50 142.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -132.88 239.00 132.88 17.00 MacLine -grestore -1.00 ps -132.38 13.50 132.38 17.00 MacLine -132.38 242.50 132.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -122.88 239.00 122.88 17.00 MacLine -grestore -1.00 ps -122.38 13.50 122.38 17.00 MacLine -122.38 242.50 122.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -112.88 237.25 112.88 18.75 MacLine -grestore -1.00 ps -112.38 13.50 112.38 18.75 MacLine -112.38 242.50 112.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -102.88 239.00 102.88 17.00 MacLine -grestore -1.00 ps -102.38 13.50 102.38 17.00 MacLine -102.38 242.50 102.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -93.00 239.00 93.00 17.00 MacLine -grestore -1.00 ps -92.50 13.50 92.50 17.00 MacLine -92.50 242.50 92.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -83.00 239.00 83.00 17.00 MacLine -grestore -1.00 ps -82.50 13.50 82.50 17.00 MacLine -82.50 242.50 82.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -73.00 239.00 73.00 17.00 MacLine -grestore -1.00 ps -72.50 13.50 72.50 17.00 MacLine -72.50 242.50 72.50 239.00 MacLine -1 ps -1.00 ps -62.50 13.50 62.50 20.50 MacLine -62.50 242.50 62.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 58.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(ms\)) 276.50 284.38 72.12 WS -2.00 ps -newpath 63.00 243.00 M -68.00 231.62 L -73.12 220.75 L -78.12 210.25 L -83.12 200.38 L -88.25 190.75 L -93.25 181.62 L -98.38 172.88 L -103.38 164.62 L -108.38 156.75 L -113.38 149.38 L -118.50 142.25 L -123.50 135.50 L -128.50 129.25 L -133.62 123.25 L -138.62 117.75 L -143.62 112.50 L -148.75 107.62 L -153.75 103.12 L -158.88 99.00 L -163.75 95.12 L -168.88 91.62 L -173.88 88.38 L -179.00 85.50 L -184.00 83.00 L -189.00 80.75 L -194.12 78.75 L -199.12 77.00 L -204.12 75.50 L -209.25 74.38 L -214.25 73.50 L -219.25 72.88 L -224.25 72.38 L -229.38 72.25 L -234.38 72.38 L -239.50 72.62 L -244.50 73.12 L -249.50 73.88 L -254.62 74.88 L -259.62 76.00 L -264.62 77.25 L -269.62 78.88 L -274.75 80.50 L -279.75 82.38 L -284.75 84.38 L -289.88 86.62 L -294.88 88.88 L -300.00 91.38 L -305.00 94.00 L -310.00 96.75 L -315.00 99.62 L -320.00 102.62 L -325.00 105.62 L -330.12 108.88 L -335.12 112.12 L -340.25 115.50 L -345.25 118.88 L -350.25 122.50 L -355.38 126.00 L -360.38 129.62 L -365.38 133.38 L -370.38 137.12 L -375.50 140.88 L -380.50 144.75 L -385.50 148.50 L -390.62 152.38 L -395.62 156.25 L -400.75 160.12 L -405.75 163.88 L -410.75 167.75 L -415.75 171.62 L -420.88 175.38 L -425.88 179.12 L -430.88 182.88 L -436.00 186.50 L -441.00 190.12 L -446.00 193.75 L -451.12 197.25 L -456.12 200.62 L -461.25 204.00 L -466.12 207.25 L -471.25 210.50 L -476.25 213.50 L -481.38 216.50 L -486.38 219.25 L -491.38 222.00 L -496.50 224.50 L -501.50 227.00 L -506.50 229.25 L -511.62 231.38 L -516.62 233.38 L -521.62 235.25 L -526.62 236.88 L -531.75 238.38 L -536.75 239.62 L -541.88 240.75 L -546.88 241.62 L -551.88 242.25 L -557.00 242.75 L -562.00 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v1.gif deleted file mode 100755 index 9b87de122..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v10.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v10.eps deleted file mode 100755 index 49c5de3c3..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v10.eps +++ /dev/null @@ -1,982 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F10 -%%Creation Date: Mon, Oct 9, 1995 08:54 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -62.50 13.50 69.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2000) 23.50 18.38 35.50 WS -gsave 0.125 ps [1] sd -66.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -62.50 25.00 66.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -62.50 36.38 66.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -62.50 47.88 66.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -62.50 59.25 66.00 59.25 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -62.50 70.75 69.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1500) 23.50 75.62 35.50 WS -gsave 0.125 ps [1] sd -66.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -62.50 82.25 66.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -62.50 93.62 66.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -62.50 105.12 66.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -62.50 116.50 66.00 116.50 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -62.50 128.00 69.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1000) 23.50 132.88 35.50 WS -gsave 0.125 ps [1] sd -66.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -62.50 139.50 66.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -62.50 150.88 66.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -62.50 162.38 66.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -62.50 173.75 66.00 173.75 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -62.50 185.25 69.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(500) 32.38 190.12 26.62 WS -gsave 0.125 ps [1] sd -66.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -62.50 196.75 66.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -62.50 208.12 66.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -62.50 219.62 66.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -62.50 231.00 66.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -62.50 242.50 69.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 50.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 553.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -552.00 239.00 552.00 17.00 MacLine -grestore -1.00 ps -551.50 13.50 551.50 17.00 MacLine -551.50 242.50 551.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -542.00 239.00 542.00 17.00 MacLine -grestore -1.00 ps -541.50 13.50 541.50 17.00 MacLine -541.50 242.50 541.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -532.00 239.00 532.00 17.00 MacLine -grestore -1.00 ps -531.50 13.50 531.50 17.00 MacLine -531.50 242.50 531.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.12 239.00 522.12 17.00 MacLine -grestore -1.00 ps -521.62 13.50 521.62 17.00 MacLine -521.62 242.50 521.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.12 237.25 512.12 18.75 MacLine -grestore -1.00 ps -511.62 13.50 511.62 18.75 MacLine -511.62 242.50 511.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -502.12 239.00 502.12 17.00 MacLine -grestore -1.00 ps -501.62 13.50 501.62 17.00 MacLine -501.62 242.50 501.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -492.12 239.00 492.12 17.00 MacLine -grestore -1.00 ps -491.62 13.50 491.62 17.00 MacLine -491.62 242.50 491.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -482.12 239.00 482.12 17.00 MacLine -grestore -1.00 ps -481.62 13.50 481.62 17.00 MacLine -481.62 242.50 481.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.12 239.00 472.12 17.00 MacLine -grestore -1.00 ps -471.62 13.50 471.62 17.00 MacLine -471.62 242.50 471.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -462.12 235.50 462.12 20.50 MacLine -grestore -1.00 ps -461.75 13.50 461.75 20.50 MacLine -461.75 242.50 461.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 457.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -452.25 239.00 452.25 17.00 MacLine -grestore -1.00 ps -451.75 13.50 451.75 17.00 MacLine -451.75 242.50 451.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.25 239.00 442.25 17.00 MacLine -grestore -1.00 ps -441.75 13.50 441.75 17.00 MacLine -441.75 242.50 441.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -432.25 239.00 432.25 17.00 MacLine -grestore -1.00 ps -431.75 13.50 431.75 17.00 MacLine -431.75 242.50 431.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -422.25 239.00 422.25 17.00 MacLine -grestore -1.00 ps -421.75 13.50 421.75 17.00 MacLine -421.75 242.50 421.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -412.25 237.25 412.25 18.75 MacLine -grestore -1.00 ps -411.75 13.50 411.75 18.75 MacLine -411.75 242.50 411.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -402.38 239.00 402.38 17.00 MacLine -grestore -1.00 ps -401.88 13.50 401.88 17.00 MacLine -401.88 242.50 401.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.38 239.00 392.38 17.00 MacLine -grestore -1.00 ps -391.88 13.50 391.88 17.00 MacLine -391.88 242.50 391.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -382.38 239.00 382.38 17.00 MacLine -grestore -1.00 ps -381.88 13.50 381.88 17.00 MacLine -381.88 242.50 381.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -372.38 239.00 372.38 17.00 MacLine -grestore -1.00 ps -371.88 13.50 371.88 17.00 MacLine -371.88 242.50 371.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -362.25 235.50 362.25 20.50 MacLine -grestore -1.00 ps -361.88 13.50 361.88 20.50 MacLine -361.88 242.50 361.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 358.00 259.88 8.88 WS -gsave 0.125 ps [1] sd -352.38 239.00 352.38 17.00 MacLine -grestore -1.00 ps -351.88 13.50 351.88 17.00 MacLine -351.88 242.50 351.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.50 239.00 342.50 17.00 MacLine -grestore -1.00 ps -342.00 13.50 342.00 17.00 MacLine -342.00 242.50 342.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -332.50 239.00 332.50 17.00 MacLine -grestore -1.00 ps -332.00 13.50 332.00 17.00 MacLine -332.00 242.50 332.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -322.50 239.00 322.50 17.00 MacLine -grestore -1.00 ps -322.00 13.50 322.00 17.00 MacLine -322.00 242.50 322.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -312.50 237.25 312.50 18.75 MacLine -grestore -1.00 ps -312.00 13.50 312.00 18.75 MacLine -312.00 242.50 312.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -302.50 239.00 302.50 17.00 MacLine -grestore -1.00 ps -302.00 13.50 302.00 17.00 MacLine -302.00 242.50 302.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -292.50 239.00 292.50 17.00 MacLine -grestore -1.00 ps -292.00 13.50 292.00 17.00 MacLine -292.00 242.50 292.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -282.50 239.00 282.50 17.00 MacLine -grestore -1.00 ps -282.00 13.50 282.00 17.00 MacLine -282.00 242.50 282.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -272.62 239.00 272.62 17.00 MacLine -grestore -1.00 ps -272.12 13.50 272.12 17.00 MacLine -272.12 242.50 272.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -262.50 235.50 262.50 20.50 MacLine -grestore -1.00 ps -262.12 13.50 262.12 20.50 MacLine -262.12 242.50 262.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 258.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -252.62 239.00 252.62 17.00 MacLine -grestore -1.00 ps -252.12 13.50 252.12 17.00 MacLine -252.12 242.50 252.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -242.62 239.00 242.62 17.00 MacLine -grestore -1.00 ps -242.12 13.50 242.12 17.00 MacLine -242.12 242.50 242.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -232.62 239.00 232.62 17.00 MacLine -grestore -1.00 ps -232.12 13.50 232.12 17.00 MacLine -232.12 242.50 232.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.62 239.00 222.62 17.00 MacLine -grestore -1.00 ps -222.12 13.50 222.12 17.00 MacLine -222.12 242.50 222.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -212.75 237.25 212.75 18.75 MacLine -grestore -1.00 ps -212.25 13.50 212.25 18.75 MacLine -212.25 242.50 212.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -202.75 239.00 202.75 17.00 MacLine -grestore -1.00 ps -202.25 13.50 202.25 17.00 MacLine -202.25 242.50 202.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -192.75 239.00 192.75 17.00 MacLine -grestore -1.00 ps -192.25 13.50 192.25 17.00 MacLine -192.25 242.50 192.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -182.75 239.00 182.75 17.00 MacLine -grestore -1.00 ps -182.25 13.50 182.25 17.00 MacLine -182.25 242.50 182.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -172.75 239.00 172.75 17.00 MacLine -grestore -1.00 ps -172.25 13.50 172.25 17.00 MacLine -172.25 242.50 172.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -162.62 235.50 162.62 20.50 MacLine -grestore -1.00 ps -162.25 13.50 162.25 20.50 MacLine -162.25 242.50 162.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 158.38 259.88 8.88 WS -gsave 0.125 ps [1] sd -152.88 239.00 152.88 17.00 MacLine -grestore -1.00 ps -152.38 13.50 152.38 17.00 MacLine -152.38 242.50 152.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -142.88 239.00 142.88 17.00 MacLine -grestore -1.00 ps -142.38 13.50 142.38 17.00 MacLine -142.38 242.50 142.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -132.88 239.00 132.88 17.00 MacLine -grestore -1.00 ps -132.38 13.50 132.38 17.00 MacLine -132.38 242.50 132.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -122.88 239.00 122.88 17.00 MacLine -grestore -1.00 ps -122.38 13.50 122.38 17.00 MacLine -122.38 242.50 122.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -112.88 237.25 112.88 18.75 MacLine -grestore -1.00 ps -112.38 13.50 112.38 18.75 MacLine -112.38 242.50 112.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -102.88 239.00 102.88 17.00 MacLine -grestore -1.00 ps -102.38 13.50 102.38 17.00 MacLine -102.38 242.50 102.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -93.00 239.00 93.00 17.00 MacLine -grestore -1.00 ps -92.50 13.50 92.50 17.00 MacLine -92.50 242.50 92.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -83.00 239.00 83.00 17.00 MacLine -grestore -1.00 ps -82.50 13.50 82.50 17.00 MacLine -82.50 242.50 82.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -73.00 239.00 73.00 17.00 MacLine -grestore -1.00 ps -72.50 13.50 72.50 17.00 MacLine -72.50 242.50 72.50 239.00 MacLine -1 ps -1.00 ps -62.50 13.50 62.50 20.50 MacLine -62.50 242.50 62.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 58.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(ms\)) 276.50 284.38 72.12 WS -2.00 ps -newpath 63.00 243.00 M -68.00 236.12 L -73.12 229.25 L -78.12 222.50 L -83.12 215.75 L -88.25 209.12 L -93.25 202.62 L -98.38 196.25 L -103.38 189.88 L -108.38 183.62 L -113.38 177.38 L -118.50 171.38 L -123.50 165.38 L -128.50 159.50 L -133.62 153.62 L -138.62 148.00 L -143.62 142.38 L -148.75 136.88 L -153.75 131.50 L -158.88 126.25 L -163.75 121.12 L -168.88 116.00 L -173.88 111.00 L -179.00 106.25 L -184.00 101.50 L -189.00 97.00 L -194.12 92.50 L -199.12 88.12 L -204.12 83.88 L -209.25 79.88 L -214.25 75.88 L -219.25 72.12 L -224.25 68.38 L -229.38 64.88 L -234.38 61.50 L -239.50 58.25 L -244.50 55.12 L -249.50 52.12 L -254.62 49.38 L -259.62 46.62 L -264.62 44.12 L -269.62 41.75 L -274.75 39.62 L -279.75 37.50 L -284.75 35.62 L -289.88 34.00 L -294.88 32.38 L -300.00 31.00 L -305.00 29.75 L -310.00 28.75 L -315.00 27.88 L -320.00 27.25 L -325.00 26.75 L -330.12 26.38 L -335.12 26.25 L -340.25 26.25 L -345.25 26.50 L -350.25 26.88 L -355.38 27.50 L -360.38 28.25 L -365.38 29.25 L -370.38 30.50 L -375.50 31.88 L -380.50 33.50 L -385.50 35.25 L -390.62 37.25 L -395.62 39.38 L -400.75 41.88 L -405.75 44.50 L -410.75 47.38 L -415.75 50.38 L -420.88 53.62 L -425.88 57.12 L -430.88 60.88 L -436.00 64.88 L -441.00 69.00 L -446.00 73.38 L -451.12 78.00 L -456.12 83.00 L -461.25 88.12 L -466.12 93.38 L -471.25 99.00 L -476.25 104.88 L -481.38 110.88 L -486.38 117.25 L -491.38 123.75 L -496.50 130.62 L -501.50 137.62 L -506.50 145.00 L -511.62 152.50 L -516.62 160.38 L -521.62 168.50 L -526.62 176.88 L -531.75 185.50 L -536.75 194.38 L -541.88 203.50 L -546.88 213.00 L -551.88 222.75 L -557.00 232.62 L -562.00 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v10.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v10.gif deleted file mode 100755 index b669b67a6..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v10.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v2.eps deleted file mode 100755 index c73262d22..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v2.eps +++ /dev/null @@ -1,982 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F2 -%%Creation Date: Mon, Oct 9, 1995 08:53 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -62.50 13.50 69.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2000) 23.50 18.38 35.50 WS -gsave 0.125 ps [1] sd -66.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -62.50 25.00 66.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -62.50 36.38 66.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -62.50 47.88 66.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -62.50 59.25 66.00 59.25 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -62.50 70.75 69.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1500) 23.50 75.62 35.50 WS -gsave 0.125 ps [1] sd -66.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -62.50 82.25 66.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -62.50 93.62 66.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -62.50 105.12 66.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -62.50 116.50 66.00 116.50 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -62.50 128.00 69.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1000) 23.50 132.88 35.50 WS -gsave 0.125 ps [1] sd -66.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -62.50 139.50 66.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -62.50 150.88 66.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -62.50 162.38 66.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -62.50 173.75 66.00 173.75 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -62.50 185.25 69.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(500) 32.38 190.12 26.62 WS -gsave 0.125 ps [1] sd -66.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -62.50 196.75 66.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -62.50 208.12 66.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -62.50 219.62 66.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -62.50 231.00 66.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -62.50 242.50 69.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 50.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 553.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -552.00 239.00 552.00 17.00 MacLine -grestore -1.00 ps -551.50 13.50 551.50 17.00 MacLine -551.50 242.50 551.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -542.00 239.00 542.00 17.00 MacLine -grestore -1.00 ps -541.50 13.50 541.50 17.00 MacLine -541.50 242.50 541.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -532.00 239.00 532.00 17.00 MacLine -grestore -1.00 ps -531.50 13.50 531.50 17.00 MacLine -531.50 242.50 531.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.12 239.00 522.12 17.00 MacLine -grestore -1.00 ps -521.62 13.50 521.62 17.00 MacLine -521.62 242.50 521.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.12 237.25 512.12 18.75 MacLine -grestore -1.00 ps -511.62 13.50 511.62 18.75 MacLine -511.62 242.50 511.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -502.12 239.00 502.12 17.00 MacLine -grestore -1.00 ps -501.62 13.50 501.62 17.00 MacLine -501.62 242.50 501.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -492.12 239.00 492.12 17.00 MacLine -grestore -1.00 ps -491.62 13.50 491.62 17.00 MacLine -491.62 242.50 491.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -482.12 239.00 482.12 17.00 MacLine -grestore -1.00 ps -481.62 13.50 481.62 17.00 MacLine -481.62 242.50 481.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.12 239.00 472.12 17.00 MacLine -grestore -1.00 ps -471.62 13.50 471.62 17.00 MacLine -471.62 242.50 471.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -462.12 235.50 462.12 20.50 MacLine -grestore -1.00 ps -461.75 13.50 461.75 20.50 MacLine -461.75 242.50 461.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 457.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -452.25 239.00 452.25 17.00 MacLine -grestore -1.00 ps -451.75 13.50 451.75 17.00 MacLine -451.75 242.50 451.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.25 239.00 442.25 17.00 MacLine -grestore -1.00 ps -441.75 13.50 441.75 17.00 MacLine -441.75 242.50 441.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -432.25 239.00 432.25 17.00 MacLine -grestore -1.00 ps -431.75 13.50 431.75 17.00 MacLine -431.75 242.50 431.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -422.25 239.00 422.25 17.00 MacLine -grestore -1.00 ps -421.75 13.50 421.75 17.00 MacLine -421.75 242.50 421.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -412.25 237.25 412.25 18.75 MacLine -grestore -1.00 ps -411.75 13.50 411.75 18.75 MacLine -411.75 242.50 411.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -402.38 239.00 402.38 17.00 MacLine -grestore -1.00 ps -401.88 13.50 401.88 17.00 MacLine -401.88 242.50 401.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.38 239.00 392.38 17.00 MacLine -grestore -1.00 ps -391.88 13.50 391.88 17.00 MacLine -391.88 242.50 391.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -382.38 239.00 382.38 17.00 MacLine -grestore -1.00 ps -381.88 13.50 381.88 17.00 MacLine -381.88 242.50 381.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -372.38 239.00 372.38 17.00 MacLine -grestore -1.00 ps -371.88 13.50 371.88 17.00 MacLine -371.88 242.50 371.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -362.25 235.50 362.25 20.50 MacLine -grestore -1.00 ps -361.88 13.50 361.88 20.50 MacLine -361.88 242.50 361.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 358.00 259.88 8.88 WS -gsave 0.125 ps [1] sd -352.38 239.00 352.38 17.00 MacLine -grestore -1.00 ps -351.88 13.50 351.88 17.00 MacLine -351.88 242.50 351.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.50 239.00 342.50 17.00 MacLine -grestore -1.00 ps -342.00 13.50 342.00 17.00 MacLine -342.00 242.50 342.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -332.50 239.00 332.50 17.00 MacLine -grestore -1.00 ps -332.00 13.50 332.00 17.00 MacLine -332.00 242.50 332.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -322.50 239.00 322.50 17.00 MacLine -grestore -1.00 ps -322.00 13.50 322.00 17.00 MacLine -322.00 242.50 322.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -312.50 237.25 312.50 18.75 MacLine -grestore -1.00 ps -312.00 13.50 312.00 18.75 MacLine -312.00 242.50 312.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -302.50 239.00 302.50 17.00 MacLine -grestore -1.00 ps -302.00 13.50 302.00 17.00 MacLine -302.00 242.50 302.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -292.50 239.00 292.50 17.00 MacLine -grestore -1.00 ps -292.00 13.50 292.00 17.00 MacLine -292.00 242.50 292.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -282.50 239.00 282.50 17.00 MacLine -grestore -1.00 ps -282.00 13.50 282.00 17.00 MacLine -282.00 242.50 282.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -272.62 239.00 272.62 17.00 MacLine -grestore -1.00 ps -272.12 13.50 272.12 17.00 MacLine -272.12 242.50 272.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -262.50 235.50 262.50 20.50 MacLine -grestore -1.00 ps -262.12 13.50 262.12 20.50 MacLine -262.12 242.50 262.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 258.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -252.62 239.00 252.62 17.00 MacLine -grestore -1.00 ps -252.12 13.50 252.12 17.00 MacLine -252.12 242.50 252.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -242.62 239.00 242.62 17.00 MacLine -grestore -1.00 ps -242.12 13.50 242.12 17.00 MacLine -242.12 242.50 242.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -232.62 239.00 232.62 17.00 MacLine -grestore -1.00 ps -232.12 13.50 232.12 17.00 MacLine -232.12 242.50 232.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.62 239.00 222.62 17.00 MacLine -grestore -1.00 ps -222.12 13.50 222.12 17.00 MacLine -222.12 242.50 222.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -212.75 237.25 212.75 18.75 MacLine -grestore -1.00 ps -212.25 13.50 212.25 18.75 MacLine -212.25 242.50 212.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -202.75 239.00 202.75 17.00 MacLine -grestore -1.00 ps -202.25 13.50 202.25 17.00 MacLine -202.25 242.50 202.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -192.75 239.00 192.75 17.00 MacLine -grestore -1.00 ps -192.25 13.50 192.25 17.00 MacLine -192.25 242.50 192.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -182.75 239.00 182.75 17.00 MacLine -grestore -1.00 ps -182.25 13.50 182.25 17.00 MacLine -182.25 242.50 182.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -172.75 239.00 172.75 17.00 MacLine -grestore -1.00 ps -172.25 13.50 172.25 17.00 MacLine -172.25 242.50 172.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -162.62 235.50 162.62 20.50 MacLine -grestore -1.00 ps -162.25 13.50 162.25 20.50 MacLine -162.25 242.50 162.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 158.38 259.88 8.88 WS -gsave 0.125 ps [1] sd -152.88 239.00 152.88 17.00 MacLine -grestore -1.00 ps -152.38 13.50 152.38 17.00 MacLine -152.38 242.50 152.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -142.88 239.00 142.88 17.00 MacLine -grestore -1.00 ps -142.38 13.50 142.38 17.00 MacLine -142.38 242.50 142.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -132.88 239.00 132.88 17.00 MacLine -grestore -1.00 ps -132.38 13.50 132.38 17.00 MacLine -132.38 242.50 132.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -122.88 239.00 122.88 17.00 MacLine -grestore -1.00 ps -122.38 13.50 122.38 17.00 MacLine -122.38 242.50 122.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -112.88 237.25 112.88 18.75 MacLine -grestore -1.00 ps -112.38 13.50 112.38 18.75 MacLine -112.38 242.50 112.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -102.88 239.00 102.88 17.00 MacLine -grestore -1.00 ps -102.38 13.50 102.38 17.00 MacLine -102.38 242.50 102.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -93.00 239.00 93.00 17.00 MacLine -grestore -1.00 ps -92.50 13.50 92.50 17.00 MacLine -92.50 242.50 92.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -83.00 239.00 83.00 17.00 MacLine -grestore -1.00 ps -82.50 13.50 82.50 17.00 MacLine -82.50 242.50 82.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -73.00 239.00 73.00 17.00 MacLine -grestore -1.00 ps -72.50 13.50 72.50 17.00 MacLine -72.50 242.50 72.50 239.00 MacLine -1 ps -1.00 ps -62.50 13.50 62.50 20.50 MacLine -62.50 242.50 62.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 58.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(ms\)) 276.50 284.38 72.12 WS -2.00 ps -newpath 63.00 243.00 M -68.00 238.75 L -73.12 234.62 L -78.12 230.38 L -83.12 226.12 L -88.25 222.00 L -93.25 217.75 L -98.38 213.50 L -103.38 209.25 L -108.38 205.00 L -113.38 200.75 L -118.50 196.62 L -123.50 192.38 L -128.50 188.25 L -133.62 184.12 L -138.62 179.88 L -143.62 175.88 L -148.75 171.75 L -153.75 167.75 L -158.88 163.75 L -163.75 159.75 L -168.88 155.88 L -173.88 152.00 L -179.00 148.12 L -184.00 144.38 L -189.00 140.62 L -194.12 137.00 L -199.12 133.38 L -204.12 129.75 L -209.25 126.38 L -214.25 123.00 L -219.25 119.62 L -224.25 116.38 L -229.38 113.25 L -234.38 110.12 L -239.50 107.12 L -244.50 104.25 L -249.50 101.38 L -254.62 98.75 L -259.62 96.12 L -264.62 93.62 L -269.62 91.25 L -274.75 88.88 L -279.75 86.75 L -284.75 84.62 L -289.88 82.75 L -294.88 80.88 L -300.00 79.25 L -305.00 77.62 L -310.00 76.25 L -315.00 74.88 L -320.00 73.75 L -325.00 72.75 L -330.12 71.88 L -335.12 71.12 L -340.25 70.50 L -345.25 70.12 L -350.25 69.88 L -355.38 69.75 L -360.38 69.75 L -365.38 70.00 L -370.38 70.38 L -375.50 71.00 L -380.50 71.75 L -385.50 72.62 L -390.62 73.75 L -395.62 75.00 L -400.75 76.50 L -405.75 78.25 L -410.75 80.12 L -415.75 82.12 L -420.88 84.38 L -425.88 86.88 L -430.88 89.62 L -436.00 92.50 L -441.00 95.62 L -446.00 98.88 L -451.12 102.50 L -456.12 106.25 L -461.25 110.25 L -466.12 114.50 L -471.25 119.00 L -476.25 123.62 L -481.38 128.62 L -486.38 133.75 L -491.38 139.25 L -496.50 144.88 L -501.50 150.88 L -506.50 157.00 L -511.62 163.50 L -516.62 170.12 L -521.62 177.12 L -526.62 184.38 L -531.75 192.00 L -536.75 199.75 L -541.88 207.75 L -546.88 216.12 L -551.88 224.75 L -557.00 233.75 L -562.00 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v2.gif deleted file mode 100755 index 5fa51a2d5..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v3.eps deleted file mode 100755 index cbe8adff0..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v3.eps +++ /dev/null @@ -1,982 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F3 -%%Creation Date: Mon, Oct 9, 1995 08:53 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -62.50 13.50 69.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2000) 23.50 18.38 35.50 WS -gsave 0.125 ps [1] sd -66.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -62.50 25.00 66.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -62.50 36.38 66.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -62.50 47.88 66.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -62.50 59.25 66.00 59.25 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -62.50 70.75 69.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1500) 23.50 75.62 35.50 WS -gsave 0.125 ps [1] sd -66.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -62.50 82.25 66.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -62.50 93.62 66.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -62.50 105.12 66.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -62.50 116.50 66.00 116.50 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -62.50 128.00 69.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1000) 23.50 132.88 35.50 WS -gsave 0.125 ps [1] sd -66.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -62.50 139.50 66.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -62.50 150.88 66.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -62.50 162.38 66.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -62.50 173.75 66.00 173.75 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -62.50 185.25 69.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(500) 32.38 190.12 26.62 WS -gsave 0.125 ps [1] sd -66.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -62.50 196.75 66.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -62.50 208.12 66.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -62.50 219.62 66.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -62.50 231.00 66.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -62.50 242.50 69.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 50.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 553.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -552.00 239.00 552.00 17.00 MacLine -grestore -1.00 ps -551.50 13.50 551.50 17.00 MacLine -551.50 242.50 551.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -542.00 239.00 542.00 17.00 MacLine -grestore -1.00 ps -541.50 13.50 541.50 17.00 MacLine -541.50 242.50 541.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -532.00 239.00 532.00 17.00 MacLine -grestore -1.00 ps -531.50 13.50 531.50 17.00 MacLine -531.50 242.50 531.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.12 239.00 522.12 17.00 MacLine -grestore -1.00 ps -521.62 13.50 521.62 17.00 MacLine -521.62 242.50 521.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.12 237.25 512.12 18.75 MacLine -grestore -1.00 ps -511.62 13.50 511.62 18.75 MacLine -511.62 242.50 511.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -502.12 239.00 502.12 17.00 MacLine -grestore -1.00 ps -501.62 13.50 501.62 17.00 MacLine -501.62 242.50 501.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -492.12 239.00 492.12 17.00 MacLine -grestore -1.00 ps -491.62 13.50 491.62 17.00 MacLine -491.62 242.50 491.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -482.12 239.00 482.12 17.00 MacLine -grestore -1.00 ps -481.62 13.50 481.62 17.00 MacLine -481.62 242.50 481.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.12 239.00 472.12 17.00 MacLine -grestore -1.00 ps -471.62 13.50 471.62 17.00 MacLine -471.62 242.50 471.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -462.12 235.50 462.12 20.50 MacLine -grestore -1.00 ps -461.75 13.50 461.75 20.50 MacLine -461.75 242.50 461.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 457.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -452.25 239.00 452.25 17.00 MacLine -grestore -1.00 ps -451.75 13.50 451.75 17.00 MacLine -451.75 242.50 451.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.25 239.00 442.25 17.00 MacLine -grestore -1.00 ps -441.75 13.50 441.75 17.00 MacLine -441.75 242.50 441.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -432.25 239.00 432.25 17.00 MacLine -grestore -1.00 ps -431.75 13.50 431.75 17.00 MacLine -431.75 242.50 431.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -422.25 239.00 422.25 17.00 MacLine -grestore -1.00 ps -421.75 13.50 421.75 17.00 MacLine -421.75 242.50 421.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -412.25 237.25 412.25 18.75 MacLine -grestore -1.00 ps -411.75 13.50 411.75 18.75 MacLine -411.75 242.50 411.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -402.38 239.00 402.38 17.00 MacLine -grestore -1.00 ps -401.88 13.50 401.88 17.00 MacLine -401.88 242.50 401.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.38 239.00 392.38 17.00 MacLine -grestore -1.00 ps -391.88 13.50 391.88 17.00 MacLine -391.88 242.50 391.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -382.38 239.00 382.38 17.00 MacLine -grestore -1.00 ps -381.88 13.50 381.88 17.00 MacLine -381.88 242.50 381.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -372.38 239.00 372.38 17.00 MacLine -grestore -1.00 ps -371.88 13.50 371.88 17.00 MacLine -371.88 242.50 371.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -362.25 235.50 362.25 20.50 MacLine -grestore -1.00 ps -361.88 13.50 361.88 20.50 MacLine -361.88 242.50 361.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 358.00 259.88 8.88 WS -gsave 0.125 ps [1] sd -352.38 239.00 352.38 17.00 MacLine -grestore -1.00 ps -351.88 13.50 351.88 17.00 MacLine -351.88 242.50 351.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.50 239.00 342.50 17.00 MacLine -grestore -1.00 ps -342.00 13.50 342.00 17.00 MacLine -342.00 242.50 342.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -332.50 239.00 332.50 17.00 MacLine -grestore -1.00 ps -332.00 13.50 332.00 17.00 MacLine -332.00 242.50 332.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -322.50 239.00 322.50 17.00 MacLine -grestore -1.00 ps -322.00 13.50 322.00 17.00 MacLine -322.00 242.50 322.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -312.50 237.25 312.50 18.75 MacLine -grestore -1.00 ps -312.00 13.50 312.00 18.75 MacLine -312.00 242.50 312.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -302.50 239.00 302.50 17.00 MacLine -grestore -1.00 ps -302.00 13.50 302.00 17.00 MacLine -302.00 242.50 302.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -292.50 239.00 292.50 17.00 MacLine -grestore -1.00 ps -292.00 13.50 292.00 17.00 MacLine -292.00 242.50 292.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -282.50 239.00 282.50 17.00 MacLine -grestore -1.00 ps -282.00 13.50 282.00 17.00 MacLine -282.00 242.50 282.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -272.62 239.00 272.62 17.00 MacLine -grestore -1.00 ps -272.12 13.50 272.12 17.00 MacLine -272.12 242.50 272.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -262.50 235.50 262.50 20.50 MacLine -grestore -1.00 ps -262.12 13.50 262.12 20.50 MacLine -262.12 242.50 262.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 258.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -252.62 239.00 252.62 17.00 MacLine -grestore -1.00 ps -252.12 13.50 252.12 17.00 MacLine -252.12 242.50 252.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -242.62 239.00 242.62 17.00 MacLine -grestore -1.00 ps -242.12 13.50 242.12 17.00 MacLine -242.12 242.50 242.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -232.62 239.00 232.62 17.00 MacLine -grestore -1.00 ps -232.12 13.50 232.12 17.00 MacLine -232.12 242.50 232.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.62 239.00 222.62 17.00 MacLine -grestore -1.00 ps -222.12 13.50 222.12 17.00 MacLine -222.12 242.50 222.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -212.75 237.25 212.75 18.75 MacLine -grestore -1.00 ps -212.25 13.50 212.25 18.75 MacLine -212.25 242.50 212.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -202.75 239.00 202.75 17.00 MacLine -grestore -1.00 ps -202.25 13.50 202.25 17.00 MacLine -202.25 242.50 202.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -192.75 239.00 192.75 17.00 MacLine -grestore -1.00 ps -192.25 13.50 192.25 17.00 MacLine -192.25 242.50 192.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -182.75 239.00 182.75 17.00 MacLine -grestore -1.00 ps -182.25 13.50 182.25 17.00 MacLine -182.25 242.50 182.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -172.75 239.00 172.75 17.00 MacLine -grestore -1.00 ps -172.25 13.50 172.25 17.00 MacLine -172.25 242.50 172.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -162.62 235.50 162.62 20.50 MacLine -grestore -1.00 ps -162.25 13.50 162.25 20.50 MacLine -162.25 242.50 162.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 158.38 259.88 8.88 WS -gsave 0.125 ps [1] sd -152.88 239.00 152.88 17.00 MacLine -grestore -1.00 ps -152.38 13.50 152.38 17.00 MacLine -152.38 242.50 152.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -142.88 239.00 142.88 17.00 MacLine -grestore -1.00 ps -142.38 13.50 142.38 17.00 MacLine -142.38 242.50 142.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -132.88 239.00 132.88 17.00 MacLine -grestore -1.00 ps -132.38 13.50 132.38 17.00 MacLine -132.38 242.50 132.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -122.88 239.00 122.88 17.00 MacLine -grestore -1.00 ps -122.38 13.50 122.38 17.00 MacLine -122.38 242.50 122.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -112.88 237.25 112.88 18.75 MacLine -grestore -1.00 ps -112.38 13.50 112.38 18.75 MacLine -112.38 242.50 112.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -102.88 239.00 102.88 17.00 MacLine -grestore -1.00 ps -102.38 13.50 102.38 17.00 MacLine -102.38 242.50 102.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -93.00 239.00 93.00 17.00 MacLine -grestore -1.00 ps -92.50 13.50 92.50 17.00 MacLine -92.50 242.50 92.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -83.00 239.00 83.00 17.00 MacLine -grestore -1.00 ps -82.50 13.50 82.50 17.00 MacLine -82.50 242.50 82.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -73.00 239.00 73.00 17.00 MacLine -grestore -1.00 ps -72.50 13.50 72.50 17.00 MacLine -72.50 242.50 72.50 239.00 MacLine -1 ps -1.00 ps -62.50 13.50 62.50 20.50 MacLine -62.50 242.50 62.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 58.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(ms\)) 276.50 284.38 72.12 WS -2.00 ps -newpath 63.00 243.00 M -68.00 235.50 L -73.12 228.25 L -78.12 221.25 L -83.12 214.38 L -88.25 207.88 L -93.25 201.50 L -98.38 195.50 L -103.38 189.62 L -108.38 184.00 L -113.38 178.62 L -118.50 173.38 L -123.50 168.38 L -128.50 163.62 L -133.62 159.12 L -138.62 154.75 L -143.62 150.62 L -148.75 146.75 L -153.75 143.00 L -158.88 139.38 L -163.75 136.12 L -168.88 133.00 L -173.88 130.00 L -179.00 127.25 L -184.00 124.62 L -189.00 122.25 L -194.12 120.00 L -199.12 117.88 L -204.12 116.00 L -209.25 114.25 L -214.25 112.75 L -219.25 111.25 L -224.25 110.12 L -229.38 109.00 L -234.38 108.12 L -239.50 107.25 L -244.50 106.62 L -249.50 106.25 L -254.62 105.88 L -259.62 105.62 L -264.62 105.62 L -269.62 105.62 L -274.75 105.88 L -279.75 106.25 L -284.75 106.62 L -289.88 107.25 L -294.88 108.00 L -300.00 108.75 L -305.00 109.75 L -310.00 110.75 L -315.00 111.88 L -320.00 113.12 L -325.00 114.50 L -330.12 116.00 L -335.12 117.62 L -340.25 119.25 L -345.25 121.00 L -350.25 122.88 L -355.38 124.75 L -360.38 126.75 L -365.38 128.88 L -370.38 131.00 L -375.50 133.25 L -380.50 135.62 L -385.50 138.00 L -390.62 140.38 L -395.62 142.88 L -400.75 145.50 L -405.75 148.12 L -410.75 150.75 L -415.75 153.50 L -420.88 156.38 L -425.88 159.12 L -430.88 162.12 L -436.00 165.00 L -441.00 167.88 L -446.00 170.88 L -451.12 174.00 L -456.12 177.00 L -461.25 180.12 L -466.12 183.12 L -471.25 186.38 L -476.25 189.50 L -481.38 192.62 L -486.38 195.75 L -491.38 199.00 L -496.50 202.12 L -501.50 205.38 L -506.50 208.50 L -511.62 211.75 L -516.62 215.00 L -521.62 218.12 L -526.62 221.25 L -531.75 224.50 L -536.75 227.62 L -541.88 230.75 L -546.88 233.88 L -551.88 236.88 L -557.00 240.00 L -562.00 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v3.gif deleted file mode 100755 index ff4b5c3af..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v4.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v4.eps deleted file mode 100755 index 9bdb62779..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v4.eps +++ /dev/null @@ -1,982 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F4 -%%Creation Date: Mon, Oct 9, 1995 08:53 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -62.50 13.50 69.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2000) 23.50 18.38 35.50 WS -gsave 0.125 ps [1] sd -66.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -62.50 25.00 66.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -62.50 36.38 66.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -62.50 47.88 66.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -62.50 59.25 66.00 59.25 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -62.50 70.75 69.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1500) 23.50 75.62 35.50 WS -gsave 0.125 ps [1] sd -66.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -62.50 82.25 66.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -62.50 93.62 66.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -62.50 105.12 66.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -62.50 116.50 66.00 116.50 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -62.50 128.00 69.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1000) 23.50 132.88 35.50 WS -gsave 0.125 ps [1] sd -66.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -62.50 139.50 66.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -62.50 150.88 66.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -62.50 162.38 66.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -62.50 173.75 66.00 173.75 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -62.50 185.25 69.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(500) 32.38 190.12 26.62 WS -gsave 0.125 ps [1] sd -66.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -62.50 196.75 66.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -62.50 208.12 66.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -62.50 219.62 66.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -62.50 231.00 66.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -62.50 242.50 69.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 50.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 553.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -552.00 239.00 552.00 17.00 MacLine -grestore -1.00 ps -551.50 13.50 551.50 17.00 MacLine -551.50 242.50 551.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -542.00 239.00 542.00 17.00 MacLine -grestore -1.00 ps -541.50 13.50 541.50 17.00 MacLine -541.50 242.50 541.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -532.00 239.00 532.00 17.00 MacLine -grestore -1.00 ps -531.50 13.50 531.50 17.00 MacLine -531.50 242.50 531.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.12 239.00 522.12 17.00 MacLine -grestore -1.00 ps -521.62 13.50 521.62 17.00 MacLine -521.62 242.50 521.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.12 237.25 512.12 18.75 MacLine -grestore -1.00 ps -511.62 13.50 511.62 18.75 MacLine -511.62 242.50 511.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -502.12 239.00 502.12 17.00 MacLine -grestore -1.00 ps -501.62 13.50 501.62 17.00 MacLine -501.62 242.50 501.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -492.12 239.00 492.12 17.00 MacLine -grestore -1.00 ps -491.62 13.50 491.62 17.00 MacLine -491.62 242.50 491.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -482.12 239.00 482.12 17.00 MacLine -grestore -1.00 ps -481.62 13.50 481.62 17.00 MacLine -481.62 242.50 481.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.12 239.00 472.12 17.00 MacLine -grestore -1.00 ps -471.62 13.50 471.62 17.00 MacLine -471.62 242.50 471.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -462.12 235.50 462.12 20.50 MacLine -grestore -1.00 ps -461.75 13.50 461.75 20.50 MacLine -461.75 242.50 461.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 457.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -452.25 239.00 452.25 17.00 MacLine -grestore -1.00 ps -451.75 13.50 451.75 17.00 MacLine -451.75 242.50 451.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.25 239.00 442.25 17.00 MacLine -grestore -1.00 ps -441.75 13.50 441.75 17.00 MacLine -441.75 242.50 441.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -432.25 239.00 432.25 17.00 MacLine -grestore -1.00 ps -431.75 13.50 431.75 17.00 MacLine -431.75 242.50 431.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -422.25 239.00 422.25 17.00 MacLine -grestore -1.00 ps -421.75 13.50 421.75 17.00 MacLine -421.75 242.50 421.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -412.25 237.25 412.25 18.75 MacLine -grestore -1.00 ps -411.75 13.50 411.75 18.75 MacLine -411.75 242.50 411.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -402.38 239.00 402.38 17.00 MacLine -grestore -1.00 ps -401.88 13.50 401.88 17.00 MacLine -401.88 242.50 401.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.38 239.00 392.38 17.00 MacLine -grestore -1.00 ps -391.88 13.50 391.88 17.00 MacLine -391.88 242.50 391.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -382.38 239.00 382.38 17.00 MacLine -grestore -1.00 ps -381.88 13.50 381.88 17.00 MacLine -381.88 242.50 381.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -372.38 239.00 372.38 17.00 MacLine -grestore -1.00 ps -371.88 13.50 371.88 17.00 MacLine -371.88 242.50 371.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -362.25 235.50 362.25 20.50 MacLine -grestore -1.00 ps -361.88 13.50 361.88 20.50 MacLine -361.88 242.50 361.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 358.00 259.88 8.88 WS -gsave 0.125 ps [1] sd -352.38 239.00 352.38 17.00 MacLine -grestore -1.00 ps -351.88 13.50 351.88 17.00 MacLine -351.88 242.50 351.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.50 239.00 342.50 17.00 MacLine -grestore -1.00 ps -342.00 13.50 342.00 17.00 MacLine -342.00 242.50 342.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -332.50 239.00 332.50 17.00 MacLine -grestore -1.00 ps -332.00 13.50 332.00 17.00 MacLine -332.00 242.50 332.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -322.50 239.00 322.50 17.00 MacLine -grestore -1.00 ps -322.00 13.50 322.00 17.00 MacLine -322.00 242.50 322.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -312.50 237.25 312.50 18.75 MacLine -grestore -1.00 ps -312.00 13.50 312.00 18.75 MacLine -312.00 242.50 312.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -302.50 239.00 302.50 17.00 MacLine -grestore -1.00 ps -302.00 13.50 302.00 17.00 MacLine -302.00 242.50 302.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -292.50 239.00 292.50 17.00 MacLine -grestore -1.00 ps -292.00 13.50 292.00 17.00 MacLine -292.00 242.50 292.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -282.50 239.00 282.50 17.00 MacLine -grestore -1.00 ps -282.00 13.50 282.00 17.00 MacLine -282.00 242.50 282.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -272.62 239.00 272.62 17.00 MacLine -grestore -1.00 ps -272.12 13.50 272.12 17.00 MacLine -272.12 242.50 272.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -262.50 235.50 262.50 20.50 MacLine -grestore -1.00 ps -262.12 13.50 262.12 20.50 MacLine -262.12 242.50 262.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 258.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -252.62 239.00 252.62 17.00 MacLine -grestore -1.00 ps -252.12 13.50 252.12 17.00 MacLine -252.12 242.50 252.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -242.62 239.00 242.62 17.00 MacLine -grestore -1.00 ps -242.12 13.50 242.12 17.00 MacLine -242.12 242.50 242.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -232.62 239.00 232.62 17.00 MacLine -grestore -1.00 ps -232.12 13.50 232.12 17.00 MacLine -232.12 242.50 232.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.62 239.00 222.62 17.00 MacLine -grestore -1.00 ps -222.12 13.50 222.12 17.00 MacLine -222.12 242.50 222.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -212.75 237.25 212.75 18.75 MacLine -grestore -1.00 ps -212.25 13.50 212.25 18.75 MacLine -212.25 242.50 212.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -202.75 239.00 202.75 17.00 MacLine -grestore -1.00 ps -202.25 13.50 202.25 17.00 MacLine -202.25 242.50 202.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -192.75 239.00 192.75 17.00 MacLine -grestore -1.00 ps -192.25 13.50 192.25 17.00 MacLine -192.25 242.50 192.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -182.75 239.00 182.75 17.00 MacLine -grestore -1.00 ps -182.25 13.50 182.25 17.00 MacLine -182.25 242.50 182.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -172.75 239.00 172.75 17.00 MacLine -grestore -1.00 ps -172.25 13.50 172.25 17.00 MacLine -172.25 242.50 172.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -162.62 235.50 162.62 20.50 MacLine -grestore -1.00 ps -162.25 13.50 162.25 20.50 MacLine -162.25 242.50 162.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 158.38 259.88 8.88 WS -gsave 0.125 ps [1] sd -152.88 239.00 152.88 17.00 MacLine -grestore -1.00 ps -152.38 13.50 152.38 17.00 MacLine -152.38 242.50 152.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -142.88 239.00 142.88 17.00 MacLine -grestore -1.00 ps -142.38 13.50 142.38 17.00 MacLine -142.38 242.50 142.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -132.88 239.00 132.88 17.00 MacLine -grestore -1.00 ps -132.38 13.50 132.38 17.00 MacLine -132.38 242.50 132.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -122.88 239.00 122.88 17.00 MacLine -grestore -1.00 ps -122.38 13.50 122.38 17.00 MacLine -122.38 242.50 122.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -112.88 237.25 112.88 18.75 MacLine -grestore -1.00 ps -112.38 13.50 112.38 18.75 MacLine -112.38 242.50 112.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -102.88 239.00 102.88 17.00 MacLine -grestore -1.00 ps -102.38 13.50 102.38 17.00 MacLine -102.38 242.50 102.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -93.00 239.00 93.00 17.00 MacLine -grestore -1.00 ps -92.50 13.50 92.50 17.00 MacLine -92.50 242.50 92.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -83.00 239.00 83.00 17.00 MacLine -grestore -1.00 ps -82.50 13.50 82.50 17.00 MacLine -82.50 242.50 82.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -73.00 239.00 73.00 17.00 MacLine -grestore -1.00 ps -72.50 13.50 72.50 17.00 MacLine -72.50 242.50 72.50 239.00 MacLine -1 ps -1.00 ps -62.50 13.50 62.50 20.50 MacLine -62.50 242.50 62.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 58.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(ms\)) 276.50 284.38 72.12 WS -2.00 ps -newpath 63.00 243.00 M -68.00 242.88 L -73.12 242.50 L -78.12 242.00 L -83.12 241.38 L -88.25 240.50 L -93.25 239.38 L -98.38 238.12 L -103.38 236.75 L -108.38 235.25 L -113.38 233.50 L -118.50 231.62 L -123.50 229.62 L -128.50 227.50 L -133.62 225.25 L -138.62 222.88 L -143.62 220.38 L -148.75 217.75 L -153.75 215.12 L -158.88 212.25 L -163.75 209.38 L -168.88 206.38 L -173.88 203.38 L -179.00 200.25 L -184.00 197.12 L -189.00 193.88 L -194.12 190.50 L -199.12 187.25 L -204.12 183.88 L -209.25 180.50 L -214.25 177.00 L -219.25 173.50 L -224.25 170.12 L -229.38 166.62 L -234.38 163.12 L -239.50 159.75 L -244.50 156.25 L -249.50 152.88 L -254.62 149.50 L -259.62 146.12 L -264.62 142.75 L -269.62 139.50 L -274.75 136.25 L -279.75 133.00 L -284.75 129.88 L -289.88 126.88 L -294.88 123.88 L -300.00 121.00 L -305.00 118.25 L -310.00 115.50 L -315.00 112.88 L -320.00 110.38 L -325.00 108.00 L -330.12 105.75 L -335.12 103.62 L -340.25 101.62 L -345.25 99.75 L -350.25 98.12 L -355.38 96.50 L -360.38 95.12 L -365.38 93.88 L -370.38 92.88 L -375.50 92.00 L -380.50 91.25 L -385.50 90.75 L -390.62 90.38 L -395.62 90.38 L -400.75 90.38 L -405.75 90.75 L -410.75 91.25 L -415.75 92.12 L -420.88 93.12 L -425.88 94.38 L -430.88 95.88 L -436.00 97.62 L -441.00 99.62 L -446.00 101.88 L -451.12 104.50 L -456.12 107.25 L -461.25 110.38 L -466.12 113.88 L -471.25 117.50 L -476.25 121.62 L -481.38 125.88 L -486.38 130.62 L -491.38 135.62 L -496.50 140.88 L -501.50 146.50 L -506.50 152.50 L -511.62 158.88 L -516.62 165.62 L -521.62 172.62 L -526.62 180.00 L -531.75 187.88 L -536.75 196.00 L -541.88 204.62 L -546.88 213.62 L -551.88 223.00 L -557.00 232.75 L -562.00 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v4.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v4.gif deleted file mode 100755 index 875ff9da9..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v4.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v5.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v5.eps deleted file mode 100755 index f7b2066f8..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v5.eps +++ /dev/null @@ -1,982 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F5 -%%Creation Date: Mon, Oct 9, 1995 08:53 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -62.50 13.50 69.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2000) 23.50 18.38 35.50 WS -gsave 0.125 ps [1] sd -66.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -62.50 25.00 66.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -62.50 36.38 66.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -62.50 47.88 66.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -62.50 59.25 66.00 59.25 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -62.50 70.75 69.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1500) 23.50 75.62 35.50 WS -gsave 0.125 ps [1] sd -66.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -62.50 82.25 66.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -62.50 93.62 66.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -62.50 105.12 66.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -62.50 116.50 66.00 116.50 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -62.50 128.00 69.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1000) 23.50 132.88 35.50 WS -gsave 0.125 ps [1] sd -66.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -62.50 139.50 66.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -62.50 150.88 66.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -62.50 162.38 66.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -62.50 173.75 66.00 173.75 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -62.50 185.25 69.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(500) 32.38 190.12 26.62 WS -gsave 0.125 ps [1] sd -66.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -62.50 196.75 66.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -62.50 208.12 66.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -62.50 219.62 66.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -62.50 231.00 66.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -62.50 242.50 69.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 50.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 553.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -552.00 239.00 552.00 17.00 MacLine -grestore -1.00 ps -551.50 13.50 551.50 17.00 MacLine -551.50 242.50 551.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -542.00 239.00 542.00 17.00 MacLine -grestore -1.00 ps -541.50 13.50 541.50 17.00 MacLine -541.50 242.50 541.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -532.00 239.00 532.00 17.00 MacLine -grestore -1.00 ps -531.50 13.50 531.50 17.00 MacLine -531.50 242.50 531.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.12 239.00 522.12 17.00 MacLine -grestore -1.00 ps -521.62 13.50 521.62 17.00 MacLine -521.62 242.50 521.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.12 237.25 512.12 18.75 MacLine -grestore -1.00 ps -511.62 13.50 511.62 18.75 MacLine -511.62 242.50 511.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -502.12 239.00 502.12 17.00 MacLine -grestore -1.00 ps -501.62 13.50 501.62 17.00 MacLine -501.62 242.50 501.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -492.12 239.00 492.12 17.00 MacLine -grestore -1.00 ps -491.62 13.50 491.62 17.00 MacLine -491.62 242.50 491.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -482.12 239.00 482.12 17.00 MacLine -grestore -1.00 ps -481.62 13.50 481.62 17.00 MacLine -481.62 242.50 481.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.12 239.00 472.12 17.00 MacLine -grestore -1.00 ps -471.62 13.50 471.62 17.00 MacLine -471.62 242.50 471.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -462.12 235.50 462.12 20.50 MacLine -grestore -1.00 ps -461.75 13.50 461.75 20.50 MacLine -461.75 242.50 461.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 457.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -452.25 239.00 452.25 17.00 MacLine -grestore -1.00 ps -451.75 13.50 451.75 17.00 MacLine -451.75 242.50 451.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.25 239.00 442.25 17.00 MacLine -grestore -1.00 ps -441.75 13.50 441.75 17.00 MacLine -441.75 242.50 441.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -432.25 239.00 432.25 17.00 MacLine -grestore -1.00 ps -431.75 13.50 431.75 17.00 MacLine -431.75 242.50 431.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -422.25 239.00 422.25 17.00 MacLine -grestore -1.00 ps -421.75 13.50 421.75 17.00 MacLine -421.75 242.50 421.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -412.25 237.25 412.25 18.75 MacLine -grestore -1.00 ps -411.75 13.50 411.75 18.75 MacLine -411.75 242.50 411.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -402.38 239.00 402.38 17.00 MacLine -grestore -1.00 ps -401.88 13.50 401.88 17.00 MacLine -401.88 242.50 401.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.38 239.00 392.38 17.00 MacLine -grestore -1.00 ps -391.88 13.50 391.88 17.00 MacLine -391.88 242.50 391.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -382.38 239.00 382.38 17.00 MacLine -grestore -1.00 ps -381.88 13.50 381.88 17.00 MacLine -381.88 242.50 381.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -372.38 239.00 372.38 17.00 MacLine -grestore -1.00 ps -371.88 13.50 371.88 17.00 MacLine -371.88 242.50 371.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -362.25 235.50 362.25 20.50 MacLine -grestore -1.00 ps -361.88 13.50 361.88 20.50 MacLine -361.88 242.50 361.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 358.00 259.88 8.88 WS -gsave 0.125 ps [1] sd -352.38 239.00 352.38 17.00 MacLine -grestore -1.00 ps -351.88 13.50 351.88 17.00 MacLine -351.88 242.50 351.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.50 239.00 342.50 17.00 MacLine -grestore -1.00 ps -342.00 13.50 342.00 17.00 MacLine -342.00 242.50 342.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -332.50 239.00 332.50 17.00 MacLine -grestore -1.00 ps -332.00 13.50 332.00 17.00 MacLine -332.00 242.50 332.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -322.50 239.00 322.50 17.00 MacLine -grestore -1.00 ps -322.00 13.50 322.00 17.00 MacLine -322.00 242.50 322.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -312.50 237.25 312.50 18.75 MacLine -grestore -1.00 ps -312.00 13.50 312.00 18.75 MacLine -312.00 242.50 312.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -302.50 239.00 302.50 17.00 MacLine -grestore -1.00 ps -302.00 13.50 302.00 17.00 MacLine -302.00 242.50 302.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -292.50 239.00 292.50 17.00 MacLine -grestore -1.00 ps -292.00 13.50 292.00 17.00 MacLine -292.00 242.50 292.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -282.50 239.00 282.50 17.00 MacLine -grestore -1.00 ps -282.00 13.50 282.00 17.00 MacLine -282.00 242.50 282.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -272.62 239.00 272.62 17.00 MacLine -grestore -1.00 ps -272.12 13.50 272.12 17.00 MacLine -272.12 242.50 272.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -262.50 235.50 262.50 20.50 MacLine -grestore -1.00 ps -262.12 13.50 262.12 20.50 MacLine -262.12 242.50 262.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 258.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -252.62 239.00 252.62 17.00 MacLine -grestore -1.00 ps -252.12 13.50 252.12 17.00 MacLine -252.12 242.50 252.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -242.62 239.00 242.62 17.00 MacLine -grestore -1.00 ps -242.12 13.50 242.12 17.00 MacLine -242.12 242.50 242.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -232.62 239.00 232.62 17.00 MacLine -grestore -1.00 ps -232.12 13.50 232.12 17.00 MacLine -232.12 242.50 232.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.62 239.00 222.62 17.00 MacLine -grestore -1.00 ps -222.12 13.50 222.12 17.00 MacLine -222.12 242.50 222.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -212.75 237.25 212.75 18.75 MacLine -grestore -1.00 ps -212.25 13.50 212.25 18.75 MacLine -212.25 242.50 212.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -202.75 239.00 202.75 17.00 MacLine -grestore -1.00 ps -202.25 13.50 202.25 17.00 MacLine -202.25 242.50 202.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -192.75 239.00 192.75 17.00 MacLine -grestore -1.00 ps -192.25 13.50 192.25 17.00 MacLine -192.25 242.50 192.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -182.75 239.00 182.75 17.00 MacLine -grestore -1.00 ps -182.25 13.50 182.25 17.00 MacLine -182.25 242.50 182.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -172.75 239.00 172.75 17.00 MacLine -grestore -1.00 ps -172.25 13.50 172.25 17.00 MacLine -172.25 242.50 172.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -162.62 235.50 162.62 20.50 MacLine -grestore -1.00 ps -162.25 13.50 162.25 20.50 MacLine -162.25 242.50 162.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 158.38 259.88 8.88 WS -gsave 0.125 ps [1] sd -152.88 239.00 152.88 17.00 MacLine -grestore -1.00 ps -152.38 13.50 152.38 17.00 MacLine -152.38 242.50 152.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -142.88 239.00 142.88 17.00 MacLine -grestore -1.00 ps -142.38 13.50 142.38 17.00 MacLine -142.38 242.50 142.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -132.88 239.00 132.88 17.00 MacLine -grestore -1.00 ps -132.38 13.50 132.38 17.00 MacLine -132.38 242.50 132.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -122.88 239.00 122.88 17.00 MacLine -grestore -1.00 ps -122.38 13.50 122.38 17.00 MacLine -122.38 242.50 122.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -112.88 237.25 112.88 18.75 MacLine -grestore -1.00 ps -112.38 13.50 112.38 18.75 MacLine -112.38 242.50 112.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -102.88 239.00 102.88 17.00 MacLine -grestore -1.00 ps -102.38 13.50 102.38 17.00 MacLine -102.38 242.50 102.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -93.00 239.00 93.00 17.00 MacLine -grestore -1.00 ps -92.50 13.50 92.50 17.00 MacLine -92.50 242.50 92.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -83.00 239.00 83.00 17.00 MacLine -grestore -1.00 ps -82.50 13.50 82.50 17.00 MacLine -82.50 242.50 82.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -73.00 239.00 73.00 17.00 MacLine -grestore -1.00 ps -72.50 13.50 72.50 17.00 MacLine -72.50 242.50 72.50 239.00 MacLine -1 ps -1.00 ps -62.50 13.50 62.50 20.50 MacLine -62.50 242.50 62.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 58.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(ms\)) 276.50 284.38 72.12 WS -2.00 ps -newpath 63.00 243.00 M -68.00 242.50 L -73.12 241.75 L -78.12 240.75 L -83.12 239.62 L -88.25 238.25 L -93.25 236.75 L -98.38 235.00 L -103.38 233.12 L -108.38 231.00 L -113.38 228.88 L -118.50 226.50 L -123.50 223.88 L -128.50 221.25 L -133.62 218.50 L -138.62 215.50 L -143.62 212.50 L -148.75 209.25 L -153.75 206.00 L -158.88 202.62 L -163.75 199.25 L -168.88 195.75 L -173.88 192.12 L -179.00 188.38 L -184.00 184.62 L -189.00 180.88 L -194.12 177.00 L -199.12 173.12 L -204.12 169.12 L -209.25 165.25 L -214.25 161.25 L -219.25 157.25 L -224.25 153.25 L -229.38 149.25 L -234.38 145.25 L -239.50 141.38 L -244.50 137.38 L -249.50 133.50 L -254.62 129.62 L -259.62 125.75 L -264.62 122.00 L -269.62 118.25 L -274.75 114.62 L -279.75 111.00 L -284.75 107.50 L -289.88 104.00 L -294.88 100.75 L -300.00 97.50 L -305.00 94.38 L -310.00 91.38 L -315.00 88.50 L -320.00 85.62 L -325.00 83.00 L -330.12 80.50 L -335.12 78.25 L -340.25 76.00 L -345.25 74.00 L -350.25 72.12 L -355.38 70.50 L -360.38 69.00 L -365.38 67.75 L -370.38 66.62 L -375.50 65.75 L -380.50 65.12 L -385.50 64.75 L -390.62 64.50 L -395.62 64.50 L -400.75 64.75 L -405.75 65.25 L -410.75 66.00 L -415.75 67.00 L -420.88 68.38 L -425.88 69.88 L -430.88 71.75 L -436.00 73.88 L -441.00 76.38 L -446.00 79.12 L -451.12 82.12 L -456.12 85.50 L -461.25 89.25 L -466.12 93.25 L -471.25 97.62 L -476.25 102.38 L -481.38 107.50 L -486.38 113.00 L -491.38 118.75 L -496.50 125.00 L -501.50 131.50 L -506.50 138.50 L -511.62 145.88 L -516.62 153.62 L -521.62 161.88 L -526.62 170.38 L -531.75 179.50 L -536.75 188.88 L -541.88 198.88 L -546.88 209.12 L -551.88 220.00 L -557.00 231.25 L -562.00 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v5.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v5.gif deleted file mode 100755 index b8f264575..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v5.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v6.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v6.eps deleted file mode 100755 index 71789189f..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v6.eps +++ /dev/null @@ -1,982 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F6 -%%Creation Date: Mon, Oct 9, 1995 08:54 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -62.50 13.50 69.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2000) 23.50 18.38 35.50 WS -gsave 0.125 ps [1] sd -66.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -62.50 25.00 66.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -62.50 36.38 66.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -62.50 47.88 66.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -62.50 59.25 66.00 59.25 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -62.50 70.75 69.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1500) 23.50 75.62 35.50 WS -gsave 0.125 ps [1] sd -66.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -62.50 82.25 66.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -62.50 93.62 66.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -62.50 105.12 66.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -62.50 116.50 66.00 116.50 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -62.50 128.00 69.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1000) 23.50 132.88 35.50 WS -gsave 0.125 ps [1] sd -66.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -62.50 139.50 66.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -62.50 150.88 66.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -62.50 162.38 66.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -62.50 173.75 66.00 173.75 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -62.50 185.25 69.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(500) 32.38 190.12 26.62 WS -gsave 0.125 ps [1] sd -66.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -62.50 196.75 66.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -62.50 208.12 66.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -62.50 219.62 66.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -62.50 231.00 66.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -62.50 242.50 69.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 50.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 553.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -552.00 239.00 552.00 17.00 MacLine -grestore -1.00 ps -551.50 13.50 551.50 17.00 MacLine -551.50 242.50 551.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -542.00 239.00 542.00 17.00 MacLine -grestore -1.00 ps -541.50 13.50 541.50 17.00 MacLine -541.50 242.50 541.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -532.00 239.00 532.00 17.00 MacLine -grestore -1.00 ps -531.50 13.50 531.50 17.00 MacLine -531.50 242.50 531.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.12 239.00 522.12 17.00 MacLine -grestore -1.00 ps -521.62 13.50 521.62 17.00 MacLine -521.62 242.50 521.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.12 237.25 512.12 18.75 MacLine -grestore -1.00 ps -511.62 13.50 511.62 18.75 MacLine -511.62 242.50 511.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -502.12 239.00 502.12 17.00 MacLine -grestore -1.00 ps -501.62 13.50 501.62 17.00 MacLine -501.62 242.50 501.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -492.12 239.00 492.12 17.00 MacLine -grestore -1.00 ps -491.62 13.50 491.62 17.00 MacLine -491.62 242.50 491.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -482.12 239.00 482.12 17.00 MacLine -grestore -1.00 ps -481.62 13.50 481.62 17.00 MacLine -481.62 242.50 481.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.12 239.00 472.12 17.00 MacLine -grestore -1.00 ps -471.62 13.50 471.62 17.00 MacLine -471.62 242.50 471.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -462.12 235.50 462.12 20.50 MacLine -grestore -1.00 ps -461.75 13.50 461.75 20.50 MacLine -461.75 242.50 461.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 457.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -452.25 239.00 452.25 17.00 MacLine -grestore -1.00 ps -451.75 13.50 451.75 17.00 MacLine -451.75 242.50 451.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.25 239.00 442.25 17.00 MacLine -grestore -1.00 ps -441.75 13.50 441.75 17.00 MacLine -441.75 242.50 441.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -432.25 239.00 432.25 17.00 MacLine -grestore -1.00 ps -431.75 13.50 431.75 17.00 MacLine -431.75 242.50 431.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -422.25 239.00 422.25 17.00 MacLine -grestore -1.00 ps -421.75 13.50 421.75 17.00 MacLine -421.75 242.50 421.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -412.25 237.25 412.25 18.75 MacLine -grestore -1.00 ps -411.75 13.50 411.75 18.75 MacLine -411.75 242.50 411.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -402.38 239.00 402.38 17.00 MacLine -grestore -1.00 ps -401.88 13.50 401.88 17.00 MacLine -401.88 242.50 401.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.38 239.00 392.38 17.00 MacLine -grestore -1.00 ps -391.88 13.50 391.88 17.00 MacLine -391.88 242.50 391.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -382.38 239.00 382.38 17.00 MacLine -grestore -1.00 ps -381.88 13.50 381.88 17.00 MacLine -381.88 242.50 381.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -372.38 239.00 372.38 17.00 MacLine -grestore -1.00 ps -371.88 13.50 371.88 17.00 MacLine -371.88 242.50 371.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -362.25 235.50 362.25 20.50 MacLine -grestore -1.00 ps -361.88 13.50 361.88 20.50 MacLine -361.88 242.50 361.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 358.00 259.88 8.88 WS -gsave 0.125 ps [1] sd -352.38 239.00 352.38 17.00 MacLine -grestore -1.00 ps -351.88 13.50 351.88 17.00 MacLine -351.88 242.50 351.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.50 239.00 342.50 17.00 MacLine -grestore -1.00 ps -342.00 13.50 342.00 17.00 MacLine -342.00 242.50 342.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -332.50 239.00 332.50 17.00 MacLine -grestore -1.00 ps -332.00 13.50 332.00 17.00 MacLine -332.00 242.50 332.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -322.50 239.00 322.50 17.00 MacLine -grestore -1.00 ps -322.00 13.50 322.00 17.00 MacLine -322.00 242.50 322.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -312.50 237.25 312.50 18.75 MacLine -grestore -1.00 ps -312.00 13.50 312.00 18.75 MacLine -312.00 242.50 312.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -302.50 239.00 302.50 17.00 MacLine -grestore -1.00 ps -302.00 13.50 302.00 17.00 MacLine -302.00 242.50 302.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -292.50 239.00 292.50 17.00 MacLine -grestore -1.00 ps -292.00 13.50 292.00 17.00 MacLine -292.00 242.50 292.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -282.50 239.00 282.50 17.00 MacLine -grestore -1.00 ps -282.00 13.50 282.00 17.00 MacLine -282.00 242.50 282.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -272.62 239.00 272.62 17.00 MacLine -grestore -1.00 ps -272.12 13.50 272.12 17.00 MacLine -272.12 242.50 272.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -262.50 235.50 262.50 20.50 MacLine -grestore -1.00 ps -262.12 13.50 262.12 20.50 MacLine -262.12 242.50 262.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 258.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -252.62 239.00 252.62 17.00 MacLine -grestore -1.00 ps -252.12 13.50 252.12 17.00 MacLine -252.12 242.50 252.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -242.62 239.00 242.62 17.00 MacLine -grestore -1.00 ps -242.12 13.50 242.12 17.00 MacLine -242.12 242.50 242.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -232.62 239.00 232.62 17.00 MacLine -grestore -1.00 ps -232.12 13.50 232.12 17.00 MacLine -232.12 242.50 232.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.62 239.00 222.62 17.00 MacLine -grestore -1.00 ps -222.12 13.50 222.12 17.00 MacLine -222.12 242.50 222.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -212.75 237.25 212.75 18.75 MacLine -grestore -1.00 ps -212.25 13.50 212.25 18.75 MacLine -212.25 242.50 212.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -202.75 239.00 202.75 17.00 MacLine -grestore -1.00 ps -202.25 13.50 202.25 17.00 MacLine -202.25 242.50 202.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -192.75 239.00 192.75 17.00 MacLine -grestore -1.00 ps -192.25 13.50 192.25 17.00 MacLine -192.25 242.50 192.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -182.75 239.00 182.75 17.00 MacLine -grestore -1.00 ps -182.25 13.50 182.25 17.00 MacLine -182.25 242.50 182.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -172.75 239.00 172.75 17.00 MacLine -grestore -1.00 ps -172.25 13.50 172.25 17.00 MacLine -172.25 242.50 172.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -162.62 235.50 162.62 20.50 MacLine -grestore -1.00 ps -162.25 13.50 162.25 20.50 MacLine -162.25 242.50 162.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 158.38 259.88 8.88 WS -gsave 0.125 ps [1] sd -152.88 239.00 152.88 17.00 MacLine -grestore -1.00 ps -152.38 13.50 152.38 17.00 MacLine -152.38 242.50 152.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -142.88 239.00 142.88 17.00 MacLine -grestore -1.00 ps -142.38 13.50 142.38 17.00 MacLine -142.38 242.50 142.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -132.88 239.00 132.88 17.00 MacLine -grestore -1.00 ps -132.38 13.50 132.38 17.00 MacLine -132.38 242.50 132.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -122.88 239.00 122.88 17.00 MacLine -grestore -1.00 ps -122.38 13.50 122.38 17.00 MacLine -122.38 242.50 122.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -112.88 237.25 112.88 18.75 MacLine -grestore -1.00 ps -112.38 13.50 112.38 18.75 MacLine -112.38 242.50 112.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -102.88 239.00 102.88 17.00 MacLine -grestore -1.00 ps -102.38 13.50 102.38 17.00 MacLine -102.38 242.50 102.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -93.00 239.00 93.00 17.00 MacLine -grestore -1.00 ps -92.50 13.50 92.50 17.00 MacLine -92.50 242.50 92.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -83.00 239.00 83.00 17.00 MacLine -grestore -1.00 ps -82.50 13.50 82.50 17.00 MacLine -82.50 242.50 82.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -73.00 239.00 73.00 17.00 MacLine -grestore -1.00 ps -72.50 13.50 72.50 17.00 MacLine -72.50 242.50 72.50 239.00 MacLine -1 ps -1.00 ps -62.50 13.50 62.50 20.50 MacLine -62.50 242.50 62.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 58.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(ms\)) 276.50 284.38 72.12 WS -2.00 ps -newpath 63.00 243.00 M -68.00 231.00 L -73.12 219.62 L -78.12 208.62 L -83.12 198.00 L -88.25 187.75 L -93.25 178.12 L -98.38 168.75 L -103.38 159.88 L -108.38 151.38 L -113.38 143.25 L -118.50 135.50 L -123.50 128.25 L -128.50 121.25 L -133.62 114.75 L -138.62 108.50 L -143.62 102.62 L -148.75 97.12 L -153.75 92.00 L -158.88 87.25 L -163.75 82.75 L -168.88 78.62 L -173.88 74.75 L -179.00 71.25 L -184.00 68.12 L -189.00 65.12 L -194.12 62.62 L -199.12 60.25 L -204.12 58.25 L -209.25 56.50 L -214.25 55.00 L -219.25 53.75 L -224.25 52.88 L -229.38 52.12 L -234.38 51.75 L -239.50 51.50 L -244.50 51.50 L -249.50 51.75 L -254.62 52.25 L -259.62 52.88 L -264.62 53.75 L -269.62 54.88 L -274.75 56.12 L -279.75 57.62 L -284.75 59.25 L -289.88 61.00 L -294.88 63.00 L -300.00 65.25 L -305.00 67.50 L -310.00 70.00 L -315.00 72.50 L -320.00 75.25 L -325.00 78.12 L -330.12 81.12 L -335.12 84.25 L -340.25 87.50 L -345.25 90.88 L -350.25 94.25 L -355.38 97.75 L -360.38 101.38 L -365.38 105.00 L -370.38 108.88 L -375.50 112.62 L -380.50 116.50 L -385.50 120.50 L -390.62 124.50 L -395.62 128.50 L -400.75 132.50 L -405.75 136.62 L -410.75 140.75 L -415.75 144.88 L -420.88 149.00 L -425.88 153.12 L -430.88 157.25 L -436.00 161.38 L -441.00 165.50 L -446.00 169.62 L -451.12 173.75 L -456.12 177.75 L -461.25 181.75 L -466.12 185.62 L -471.25 189.50 L -476.25 193.38 L -481.38 197.12 L -486.38 200.75 L -491.38 204.38 L -496.50 207.88 L -501.50 211.38 L -506.50 214.75 L -511.62 217.88 L -516.62 221.00 L -521.62 224.00 L -526.62 226.88 L -531.75 229.62 L -536.75 232.25 L -541.88 234.75 L -546.88 237.00 L -551.88 239.12 L -557.00 241.12 L -562.00 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v6.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v6.gif deleted file mode 100755 index 15d513854..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v6.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v7.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v7.eps deleted file mode 100755 index 206ccfd53..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v7.eps +++ /dev/null @@ -1,982 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F7 -%%Creation Date: Mon, Oct 9, 1995 08:54 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -62.50 13.50 69.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2000) 23.50 18.38 35.50 WS -gsave 0.125 ps [1] sd -66.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -62.50 25.00 66.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -62.50 36.38 66.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -62.50 47.88 66.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -62.50 59.25 66.00 59.25 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -62.50 70.75 69.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1500) 23.50 75.62 35.50 WS -gsave 0.125 ps [1] sd -66.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -62.50 82.25 66.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -62.50 93.62 66.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -62.50 105.12 66.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -62.50 116.50 66.00 116.50 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -62.50 128.00 69.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1000) 23.50 132.88 35.50 WS -gsave 0.125 ps [1] sd -66.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -62.50 139.50 66.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -62.50 150.88 66.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -62.50 162.38 66.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -62.50 173.75 66.00 173.75 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -62.50 185.25 69.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(500) 32.38 190.12 26.62 WS -gsave 0.125 ps [1] sd -66.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -62.50 196.75 66.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -62.50 208.12 66.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -62.50 219.62 66.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -62.50 231.00 66.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -62.50 242.50 69.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 50.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 553.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -552.00 239.00 552.00 17.00 MacLine -grestore -1.00 ps -551.50 13.50 551.50 17.00 MacLine -551.50 242.50 551.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -542.00 239.00 542.00 17.00 MacLine -grestore -1.00 ps -541.50 13.50 541.50 17.00 MacLine -541.50 242.50 541.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -532.00 239.00 532.00 17.00 MacLine -grestore -1.00 ps -531.50 13.50 531.50 17.00 MacLine -531.50 242.50 531.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.12 239.00 522.12 17.00 MacLine -grestore -1.00 ps -521.62 13.50 521.62 17.00 MacLine -521.62 242.50 521.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.12 237.25 512.12 18.75 MacLine -grestore -1.00 ps -511.62 13.50 511.62 18.75 MacLine -511.62 242.50 511.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -502.12 239.00 502.12 17.00 MacLine -grestore -1.00 ps -501.62 13.50 501.62 17.00 MacLine -501.62 242.50 501.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -492.12 239.00 492.12 17.00 MacLine -grestore -1.00 ps -491.62 13.50 491.62 17.00 MacLine -491.62 242.50 491.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -482.12 239.00 482.12 17.00 MacLine -grestore -1.00 ps -481.62 13.50 481.62 17.00 MacLine -481.62 242.50 481.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.12 239.00 472.12 17.00 MacLine -grestore -1.00 ps -471.62 13.50 471.62 17.00 MacLine -471.62 242.50 471.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -462.12 235.50 462.12 20.50 MacLine -grestore -1.00 ps -461.75 13.50 461.75 20.50 MacLine -461.75 242.50 461.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 457.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -452.25 239.00 452.25 17.00 MacLine -grestore -1.00 ps -451.75 13.50 451.75 17.00 MacLine -451.75 242.50 451.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.25 239.00 442.25 17.00 MacLine -grestore -1.00 ps -441.75 13.50 441.75 17.00 MacLine -441.75 242.50 441.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -432.25 239.00 432.25 17.00 MacLine -grestore -1.00 ps -431.75 13.50 431.75 17.00 MacLine -431.75 242.50 431.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -422.25 239.00 422.25 17.00 MacLine -grestore -1.00 ps -421.75 13.50 421.75 17.00 MacLine -421.75 242.50 421.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -412.25 237.25 412.25 18.75 MacLine -grestore -1.00 ps -411.75 13.50 411.75 18.75 MacLine -411.75 242.50 411.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -402.38 239.00 402.38 17.00 MacLine -grestore -1.00 ps -401.88 13.50 401.88 17.00 MacLine -401.88 242.50 401.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.38 239.00 392.38 17.00 MacLine -grestore -1.00 ps -391.88 13.50 391.88 17.00 MacLine -391.88 242.50 391.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -382.38 239.00 382.38 17.00 MacLine -grestore -1.00 ps -381.88 13.50 381.88 17.00 MacLine -381.88 242.50 381.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -372.38 239.00 372.38 17.00 MacLine -grestore -1.00 ps -371.88 13.50 371.88 17.00 MacLine -371.88 242.50 371.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -362.25 235.50 362.25 20.50 MacLine -grestore -1.00 ps -361.88 13.50 361.88 20.50 MacLine -361.88 242.50 361.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 358.00 259.88 8.88 WS -gsave 0.125 ps [1] sd -352.38 239.00 352.38 17.00 MacLine -grestore -1.00 ps -351.88 13.50 351.88 17.00 MacLine -351.88 242.50 351.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.50 239.00 342.50 17.00 MacLine -grestore -1.00 ps -342.00 13.50 342.00 17.00 MacLine -342.00 242.50 342.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -332.50 239.00 332.50 17.00 MacLine -grestore -1.00 ps -332.00 13.50 332.00 17.00 MacLine -332.00 242.50 332.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -322.50 239.00 322.50 17.00 MacLine -grestore -1.00 ps -322.00 13.50 322.00 17.00 MacLine -322.00 242.50 322.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -312.50 237.25 312.50 18.75 MacLine -grestore -1.00 ps -312.00 13.50 312.00 18.75 MacLine -312.00 242.50 312.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -302.50 239.00 302.50 17.00 MacLine -grestore -1.00 ps -302.00 13.50 302.00 17.00 MacLine -302.00 242.50 302.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -292.50 239.00 292.50 17.00 MacLine -grestore -1.00 ps -292.00 13.50 292.00 17.00 MacLine -292.00 242.50 292.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -282.50 239.00 282.50 17.00 MacLine -grestore -1.00 ps -282.00 13.50 282.00 17.00 MacLine -282.00 242.50 282.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -272.62 239.00 272.62 17.00 MacLine -grestore -1.00 ps -272.12 13.50 272.12 17.00 MacLine -272.12 242.50 272.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -262.50 235.50 262.50 20.50 MacLine -grestore -1.00 ps -262.12 13.50 262.12 20.50 MacLine -262.12 242.50 262.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 258.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -252.62 239.00 252.62 17.00 MacLine -grestore -1.00 ps -252.12 13.50 252.12 17.00 MacLine -252.12 242.50 252.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -242.62 239.00 242.62 17.00 MacLine -grestore -1.00 ps -242.12 13.50 242.12 17.00 MacLine -242.12 242.50 242.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -232.62 239.00 232.62 17.00 MacLine -grestore -1.00 ps -232.12 13.50 232.12 17.00 MacLine -232.12 242.50 232.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.62 239.00 222.62 17.00 MacLine -grestore -1.00 ps -222.12 13.50 222.12 17.00 MacLine -222.12 242.50 222.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -212.75 237.25 212.75 18.75 MacLine -grestore -1.00 ps -212.25 13.50 212.25 18.75 MacLine -212.25 242.50 212.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -202.75 239.00 202.75 17.00 MacLine -grestore -1.00 ps -202.25 13.50 202.25 17.00 MacLine -202.25 242.50 202.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -192.75 239.00 192.75 17.00 MacLine -grestore -1.00 ps -192.25 13.50 192.25 17.00 MacLine -192.25 242.50 192.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -182.75 239.00 182.75 17.00 MacLine -grestore -1.00 ps -182.25 13.50 182.25 17.00 MacLine -182.25 242.50 182.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -172.75 239.00 172.75 17.00 MacLine -grestore -1.00 ps -172.25 13.50 172.25 17.00 MacLine -172.25 242.50 172.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -162.62 235.50 162.62 20.50 MacLine -grestore -1.00 ps -162.25 13.50 162.25 20.50 MacLine -162.25 242.50 162.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 158.38 259.88 8.88 WS -gsave 0.125 ps [1] sd -152.88 239.00 152.88 17.00 MacLine -grestore -1.00 ps -152.38 13.50 152.38 17.00 MacLine -152.38 242.50 152.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -142.88 239.00 142.88 17.00 MacLine -grestore -1.00 ps -142.38 13.50 142.38 17.00 MacLine -142.38 242.50 142.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -132.88 239.00 132.88 17.00 MacLine -grestore -1.00 ps -132.38 13.50 132.38 17.00 MacLine -132.38 242.50 132.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -122.88 239.00 122.88 17.00 MacLine -grestore -1.00 ps -122.38 13.50 122.38 17.00 MacLine -122.38 242.50 122.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -112.88 237.25 112.88 18.75 MacLine -grestore -1.00 ps -112.38 13.50 112.38 18.75 MacLine -112.38 242.50 112.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -102.88 239.00 102.88 17.00 MacLine -grestore -1.00 ps -102.38 13.50 102.38 17.00 MacLine -102.38 242.50 102.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -93.00 239.00 93.00 17.00 MacLine -grestore -1.00 ps -92.50 13.50 92.50 17.00 MacLine -92.50 242.50 92.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -83.00 239.00 83.00 17.00 MacLine -grestore -1.00 ps -82.50 13.50 82.50 17.00 MacLine -82.50 242.50 82.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -73.00 239.00 73.00 17.00 MacLine -grestore -1.00 ps -72.50 13.50 72.50 17.00 MacLine -72.50 242.50 72.50 239.00 MacLine -1 ps -1.00 ps -62.50 13.50 62.50 20.50 MacLine -62.50 242.50 62.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 58.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(ms\)) 276.50 284.38 72.12 WS -2.00 ps -newpath 63.00 243.00 M -68.00 233.62 L -73.12 224.50 L -78.12 215.62 L -83.12 207.12 L -88.25 198.88 L -93.25 191.00 L -98.38 183.25 L -103.38 175.88 L -108.38 168.75 L -113.38 161.88 L -118.50 155.38 L -123.50 149.00 L -128.50 143.00 L -133.62 137.12 L -138.62 131.62 L -143.62 126.25 L -148.75 121.25 L -153.75 116.38 L -158.88 111.88 L -163.75 107.50 L -168.88 103.38 L -173.88 99.50 L -179.00 95.88 L -184.00 92.50 L -189.00 89.25 L -194.12 86.25 L -199.12 83.50 L -204.12 81.00 L -209.25 78.62 L -214.25 76.50 L -219.25 74.50 L -224.25 72.75 L -229.38 71.25 L -234.38 69.88 L -239.50 68.75 L -244.50 67.75 L -249.50 67.00 L -254.62 66.38 L -259.62 65.88 L -264.62 65.62 L -269.62 65.62 L -274.75 65.62 L -279.75 65.88 L -284.75 66.25 L -289.88 66.88 L -294.88 67.62 L -300.00 68.50 L -305.00 69.50 L -310.00 70.62 L -315.00 71.88 L -320.00 73.38 L -325.00 74.88 L -330.12 76.62 L -335.12 78.50 L -340.25 80.50 L -345.25 82.50 L -350.25 84.75 L -355.38 87.00 L -360.38 89.50 L -365.38 92.00 L -370.38 94.62 L -375.50 97.38 L -380.50 100.25 L -385.50 103.25 L -390.62 106.25 L -395.62 109.38 L -400.75 112.62 L -405.75 116.00 L -410.75 119.38 L -415.75 122.75 L -420.88 126.38 L -425.88 130.00 L -430.88 133.62 L -436.00 137.38 L -441.00 141.25 L -446.00 145.12 L -451.12 149.00 L -456.12 153.00 L -461.25 157.00 L -466.12 161.00 L -471.25 165.12 L -476.25 169.38 L -481.38 173.50 L -486.38 177.75 L -491.38 182.00 L -496.50 186.25 L -501.50 190.62 L -506.50 194.88 L -511.62 199.25 L -516.62 203.62 L -521.62 208.00 L -526.62 212.38 L -531.75 216.75 L -536.75 221.12 L -541.88 225.50 L -546.88 229.88 L -551.88 234.25 L -557.00 238.62 L -562.00 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v7.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v7.gif deleted file mode 100755 index 63374e868..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v7.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v7.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v7.pdf deleted file mode 100644 index 9010d02a3..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v7.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v8.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v8.eps deleted file mode 100755 index 3099bfbf5..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v8.eps +++ /dev/null @@ -1,982 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F8 -%%Creation Date: Mon, Oct 9, 1995 08:54 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -62.50 13.50 69.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2000) 23.50 18.38 35.50 WS -gsave 0.125 ps [1] sd -66.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -62.50 25.00 66.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -62.50 36.38 66.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -62.50 47.88 66.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -62.50 59.25 66.00 59.25 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -62.50 70.75 69.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1500) 23.50 75.62 35.50 WS -gsave 0.125 ps [1] sd -66.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -62.50 82.25 66.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -62.50 93.62 66.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -62.50 105.12 66.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -62.50 116.50 66.00 116.50 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -62.50 128.00 69.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1000) 23.50 132.88 35.50 WS -gsave 0.125 ps [1] sd -66.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -62.50 139.50 66.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -62.50 150.88 66.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -62.50 162.38 66.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -62.50 173.75 66.00 173.75 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -62.50 185.25 69.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(500) 32.38 190.12 26.62 WS -gsave 0.125 ps [1] sd -66.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -62.50 196.75 66.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -62.50 208.12 66.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -62.50 219.62 66.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -62.50 231.00 66.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -62.50 242.50 69.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 50.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 553.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -552.00 239.00 552.00 17.00 MacLine -grestore -1.00 ps -551.50 13.50 551.50 17.00 MacLine -551.50 242.50 551.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -542.00 239.00 542.00 17.00 MacLine -grestore -1.00 ps -541.50 13.50 541.50 17.00 MacLine -541.50 242.50 541.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -532.00 239.00 532.00 17.00 MacLine -grestore -1.00 ps -531.50 13.50 531.50 17.00 MacLine -531.50 242.50 531.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.12 239.00 522.12 17.00 MacLine -grestore -1.00 ps -521.62 13.50 521.62 17.00 MacLine -521.62 242.50 521.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.12 237.25 512.12 18.75 MacLine -grestore -1.00 ps -511.62 13.50 511.62 18.75 MacLine -511.62 242.50 511.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -502.12 239.00 502.12 17.00 MacLine -grestore -1.00 ps -501.62 13.50 501.62 17.00 MacLine -501.62 242.50 501.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -492.12 239.00 492.12 17.00 MacLine -grestore -1.00 ps -491.62 13.50 491.62 17.00 MacLine -491.62 242.50 491.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -482.12 239.00 482.12 17.00 MacLine -grestore -1.00 ps -481.62 13.50 481.62 17.00 MacLine -481.62 242.50 481.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.12 239.00 472.12 17.00 MacLine -grestore -1.00 ps -471.62 13.50 471.62 17.00 MacLine -471.62 242.50 471.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -462.12 235.50 462.12 20.50 MacLine -grestore -1.00 ps -461.75 13.50 461.75 20.50 MacLine -461.75 242.50 461.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 457.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -452.25 239.00 452.25 17.00 MacLine -grestore -1.00 ps -451.75 13.50 451.75 17.00 MacLine -451.75 242.50 451.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.25 239.00 442.25 17.00 MacLine -grestore -1.00 ps -441.75 13.50 441.75 17.00 MacLine -441.75 242.50 441.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -432.25 239.00 432.25 17.00 MacLine -grestore -1.00 ps -431.75 13.50 431.75 17.00 MacLine -431.75 242.50 431.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -422.25 239.00 422.25 17.00 MacLine -grestore -1.00 ps -421.75 13.50 421.75 17.00 MacLine -421.75 242.50 421.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -412.25 237.25 412.25 18.75 MacLine -grestore -1.00 ps -411.75 13.50 411.75 18.75 MacLine -411.75 242.50 411.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -402.38 239.00 402.38 17.00 MacLine -grestore -1.00 ps -401.88 13.50 401.88 17.00 MacLine -401.88 242.50 401.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.38 239.00 392.38 17.00 MacLine -grestore -1.00 ps -391.88 13.50 391.88 17.00 MacLine -391.88 242.50 391.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -382.38 239.00 382.38 17.00 MacLine -grestore -1.00 ps -381.88 13.50 381.88 17.00 MacLine -381.88 242.50 381.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -372.38 239.00 372.38 17.00 MacLine -grestore -1.00 ps -371.88 13.50 371.88 17.00 MacLine -371.88 242.50 371.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -362.25 235.50 362.25 20.50 MacLine -grestore -1.00 ps -361.88 13.50 361.88 20.50 MacLine -361.88 242.50 361.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 358.00 259.88 8.88 WS -gsave 0.125 ps [1] sd -352.38 239.00 352.38 17.00 MacLine -grestore -1.00 ps -351.88 13.50 351.88 17.00 MacLine -351.88 242.50 351.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.50 239.00 342.50 17.00 MacLine -grestore -1.00 ps -342.00 13.50 342.00 17.00 MacLine -342.00 242.50 342.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -332.50 239.00 332.50 17.00 MacLine -grestore -1.00 ps -332.00 13.50 332.00 17.00 MacLine -332.00 242.50 332.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -322.50 239.00 322.50 17.00 MacLine -grestore -1.00 ps -322.00 13.50 322.00 17.00 MacLine -322.00 242.50 322.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -312.50 237.25 312.50 18.75 MacLine -grestore -1.00 ps -312.00 13.50 312.00 18.75 MacLine -312.00 242.50 312.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -302.50 239.00 302.50 17.00 MacLine -grestore -1.00 ps -302.00 13.50 302.00 17.00 MacLine -302.00 242.50 302.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -292.50 239.00 292.50 17.00 MacLine -grestore -1.00 ps -292.00 13.50 292.00 17.00 MacLine -292.00 242.50 292.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -282.50 239.00 282.50 17.00 MacLine -grestore -1.00 ps -282.00 13.50 282.00 17.00 MacLine -282.00 242.50 282.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -272.62 239.00 272.62 17.00 MacLine -grestore -1.00 ps -272.12 13.50 272.12 17.00 MacLine -272.12 242.50 272.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -262.50 235.50 262.50 20.50 MacLine -grestore -1.00 ps -262.12 13.50 262.12 20.50 MacLine -262.12 242.50 262.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 258.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -252.62 239.00 252.62 17.00 MacLine -grestore -1.00 ps -252.12 13.50 252.12 17.00 MacLine -252.12 242.50 252.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -242.62 239.00 242.62 17.00 MacLine -grestore -1.00 ps -242.12 13.50 242.12 17.00 MacLine -242.12 242.50 242.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -232.62 239.00 232.62 17.00 MacLine -grestore -1.00 ps -232.12 13.50 232.12 17.00 MacLine -232.12 242.50 232.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.62 239.00 222.62 17.00 MacLine -grestore -1.00 ps -222.12 13.50 222.12 17.00 MacLine -222.12 242.50 222.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -212.75 237.25 212.75 18.75 MacLine -grestore -1.00 ps -212.25 13.50 212.25 18.75 MacLine -212.25 242.50 212.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -202.75 239.00 202.75 17.00 MacLine -grestore -1.00 ps -202.25 13.50 202.25 17.00 MacLine -202.25 242.50 202.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -192.75 239.00 192.75 17.00 MacLine -grestore -1.00 ps -192.25 13.50 192.25 17.00 MacLine -192.25 242.50 192.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -182.75 239.00 182.75 17.00 MacLine -grestore -1.00 ps -182.25 13.50 182.25 17.00 MacLine -182.25 242.50 182.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -172.75 239.00 172.75 17.00 MacLine -grestore -1.00 ps -172.25 13.50 172.25 17.00 MacLine -172.25 242.50 172.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -162.62 235.50 162.62 20.50 MacLine -grestore -1.00 ps -162.25 13.50 162.25 20.50 MacLine -162.25 242.50 162.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 158.38 259.88 8.88 WS -gsave 0.125 ps [1] sd -152.88 239.00 152.88 17.00 MacLine -grestore -1.00 ps -152.38 13.50 152.38 17.00 MacLine -152.38 242.50 152.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -142.88 239.00 142.88 17.00 MacLine -grestore -1.00 ps -142.38 13.50 142.38 17.00 MacLine -142.38 242.50 142.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -132.88 239.00 132.88 17.00 MacLine -grestore -1.00 ps -132.38 13.50 132.38 17.00 MacLine -132.38 242.50 132.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -122.88 239.00 122.88 17.00 MacLine -grestore -1.00 ps -122.38 13.50 122.38 17.00 MacLine -122.38 242.50 122.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -112.88 237.25 112.88 18.75 MacLine -grestore -1.00 ps -112.38 13.50 112.38 18.75 MacLine -112.38 242.50 112.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -102.88 239.00 102.88 17.00 MacLine -grestore -1.00 ps -102.38 13.50 102.38 17.00 MacLine -102.38 242.50 102.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -93.00 239.00 93.00 17.00 MacLine -grestore -1.00 ps -92.50 13.50 92.50 17.00 MacLine -92.50 242.50 92.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -83.00 239.00 83.00 17.00 MacLine -grestore -1.00 ps -82.50 13.50 82.50 17.00 MacLine -82.50 242.50 82.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -73.00 239.00 73.00 17.00 MacLine -grestore -1.00 ps -72.50 13.50 72.50 17.00 MacLine -72.50 242.50 72.50 239.00 MacLine -1 ps -1.00 ps -62.50 13.50 62.50 20.50 MacLine -62.50 242.50 62.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 58.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(ms\)) 276.50 284.38 72.12 WS -2.00 ps -newpath 63.00 243.00 M -68.00 240.62 L -73.12 238.12 L -78.12 235.62 L -83.12 233.00 L -88.25 230.25 L -93.25 227.50 L -98.38 224.75 L -103.38 221.88 L -108.38 218.88 L -113.38 215.88 L -118.50 212.75 L -123.50 209.75 L -128.50 206.50 L -133.62 203.38 L -138.62 200.12 L -143.62 196.88 L -148.75 193.62 L -153.75 190.25 L -158.88 187.00 L -163.75 183.62 L -168.88 180.38 L -173.88 177.00 L -179.00 173.62 L -184.00 170.38 L -189.00 167.00 L -194.12 163.75 L -199.12 160.38 L -204.12 157.12 L -209.25 153.88 L -214.25 150.62 L -219.25 147.50 L -224.25 144.38 L -229.38 141.25 L -234.38 138.12 L -239.50 135.12 L -244.50 132.25 L -249.50 129.25 L -254.62 126.50 L -259.62 123.75 L -264.62 121.00 L -269.62 118.38 L -274.75 115.88 L -279.75 113.38 L -284.75 111.00 L -289.88 108.75 L -294.88 106.62 L -300.00 104.62 L -305.00 102.62 L -310.00 100.75 L -315.00 99.00 L -320.00 97.38 L -325.00 95.88 L -330.12 94.50 L -335.12 93.38 L -340.25 92.25 L -345.25 91.25 L -350.25 90.50 L -355.38 89.75 L -360.38 89.25 L -365.38 88.88 L -370.38 88.75 L -375.50 88.62 L -380.50 88.88 L -385.50 89.12 L -390.62 89.62 L -395.62 90.38 L -400.75 91.25 L -405.75 92.25 L -410.75 93.50 L -415.75 95.00 L -420.88 96.62 L -425.88 98.50 L -430.88 100.50 L -436.00 102.88 L -441.00 105.38 L -446.00 108.12 L -451.12 111.00 L -456.12 114.25 L -461.25 117.75 L -466.12 121.38 L -471.25 125.38 L -476.25 129.50 L -481.38 133.88 L -486.38 138.62 L -491.38 143.62 L -496.50 148.75 L -501.50 154.25 L -506.50 160.12 L -511.62 166.12 L -516.62 172.38 L -521.62 179.00 L -526.62 186.00 L -531.75 193.25 L -536.75 200.75 L -541.88 208.50 L -546.88 216.62 L -551.88 225.12 L -557.00 233.88 L -562.00 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v8.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v8.gif deleted file mode 100755 index 25f2541f7..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v8.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v9.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v9.eps deleted file mode 100755 index 588dfeb00..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v9.eps +++ /dev/null @@ -1,982 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph_F9 -%%Creation Date: Mon, Oct 9, 1995 08:54 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -561.50 14.00 561.50 242.00 MacLine -1 ps -1.00 ps -561.50 13.50 554.50 13.50 MacLine -62.50 13.50 69.50 13.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2000) 23.50 18.38 35.50 WS -gsave 0.125 ps [1] sd -66.00 25.50 558.00 25.50 MacLine -grestore -1.00 ps -561.50 25.00 558.00 25.00 MacLine -62.50 25.00 66.00 25.00 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 36.88 558.00 36.88 MacLine -grestore -1.00 ps -561.50 36.38 558.00 36.38 MacLine -62.50 36.38 66.00 36.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 48.38 558.00 48.38 MacLine -grestore -1.00 ps -561.50 47.88 558.00 47.88 MacLine -62.50 47.88 66.00 47.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 59.75 558.00 59.75 MacLine -grestore -1.00 ps -561.50 59.25 558.00 59.25 MacLine -62.50 59.25 66.00 59.25 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 71.12 554.50 71.12 MacLine -grestore -1.00 ps -561.50 70.75 554.50 70.75 MacLine -62.50 70.75 69.50 70.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1500) 23.50 75.62 35.50 WS -gsave 0.125 ps [1] sd -66.00 82.75 558.00 82.75 MacLine -grestore -1.00 ps -561.50 82.25 558.00 82.25 MacLine -62.50 82.25 66.00 82.25 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 94.12 558.00 94.12 MacLine -grestore -1.00 ps -561.50 93.62 558.00 93.62 MacLine -62.50 93.62 66.00 93.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 105.62 558.00 105.62 MacLine -grestore -1.00 ps -561.50 105.12 558.00 105.12 MacLine -62.50 105.12 66.00 105.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 117.00 558.00 117.00 MacLine -grestore -1.00 ps -561.50 116.50 558.00 116.50 MacLine -62.50 116.50 66.00 116.50 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 128.38 554.50 128.38 MacLine -grestore -1.00 ps -561.50 128.00 554.50 128.00 MacLine -62.50 128.00 69.50 128.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1000) 23.50 132.88 35.50 WS -gsave 0.125 ps [1] sd -66.00 140.00 558.00 140.00 MacLine -grestore -1.00 ps -561.50 139.50 558.00 139.50 MacLine -62.50 139.50 66.00 139.50 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 151.38 558.00 151.38 MacLine -grestore -1.00 ps -561.50 150.88 558.00 150.88 MacLine -62.50 150.88 66.00 150.88 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 162.88 558.00 162.88 MacLine -grestore -1.00 ps -561.50 162.38 558.00 162.38 MacLine -62.50 162.38 66.00 162.38 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 174.25 558.00 174.25 MacLine -grestore -1.00 ps -561.50 173.75 558.00 173.75 MacLine -62.50 173.75 66.00 173.75 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 185.62 554.50 185.62 MacLine -grestore -1.00 ps -561.50 185.25 554.50 185.25 MacLine -62.50 185.25 69.50 185.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(500) 32.38 190.12 26.62 WS -gsave 0.125 ps [1] sd -66.00 197.25 558.00 197.25 MacLine -grestore -1.00 ps -561.50 196.75 558.00 196.75 MacLine -62.50 196.75 66.00 196.75 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 208.62 558.00 208.62 MacLine -grestore -1.00 ps -561.50 208.12 558.00 208.12 MacLine -62.50 208.12 66.00 208.12 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 220.12 558.00 220.12 MacLine -grestore -1.00 ps -561.50 219.62 558.00 219.62 MacLine -62.50 219.62 66.00 219.62 MacLine -1 ps -gsave 0.125 ps [1] sd -66.00 231.50 558.00 231.50 MacLine -grestore -1.00 ps -561.50 231.00 558.00 231.00 MacLine -62.50 231.00 66.00 231.00 MacLine -1 ps -1.00 ps -561.50 242.50 554.50 242.50 MacLine -62.50 242.50 69.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 50.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 146.75 translate -90 rotate -(F \(N\)) 0.00 0.00 36.50 WS -grestore -1.00 ps -62.50 242.50 561.50 242.50 MacLine -62.50 13.50 561.50 13.50 MacLine -1 ps -1.00 ps -561.50 13.50 561.50 20.50 MacLine -561.50 242.50 561.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 553.12 259.88 17.75 WS -gsave 0.125 ps [1] sd -552.00 239.00 552.00 17.00 MacLine -grestore -1.00 ps -551.50 13.50 551.50 17.00 MacLine -551.50 242.50 551.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -542.00 239.00 542.00 17.00 MacLine -grestore -1.00 ps -541.50 13.50 541.50 17.00 MacLine -541.50 242.50 541.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -532.00 239.00 532.00 17.00 MacLine -grestore -1.00 ps -531.50 13.50 531.50 17.00 MacLine -531.50 242.50 531.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -522.12 239.00 522.12 17.00 MacLine -grestore -1.00 ps -521.62 13.50 521.62 17.00 MacLine -521.62 242.50 521.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.12 237.25 512.12 18.75 MacLine -grestore -1.00 ps -511.62 13.50 511.62 18.75 MacLine -511.62 242.50 511.62 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -502.12 239.00 502.12 17.00 MacLine -grestore -1.00 ps -501.62 13.50 501.62 17.00 MacLine -501.62 242.50 501.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -492.12 239.00 492.12 17.00 MacLine -grestore -1.00 ps -491.62 13.50 491.62 17.00 MacLine -491.62 242.50 491.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -482.12 239.00 482.12 17.00 MacLine -grestore -1.00 ps -481.62 13.50 481.62 17.00 MacLine -481.62 242.50 481.62 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -472.12 239.00 472.12 17.00 MacLine -grestore -1.00 ps -471.62 13.50 471.62 17.00 MacLine -471.62 242.50 471.62 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -462.12 235.50 462.12 20.50 MacLine -grestore -1.00 ps -461.75 13.50 461.75 20.50 MacLine -461.75 242.50 461.75 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 457.88 259.88 8.88 WS -gsave 0.125 ps [1] sd -452.25 239.00 452.25 17.00 MacLine -grestore -1.00 ps -451.75 13.50 451.75 17.00 MacLine -451.75 242.50 451.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.25 239.00 442.25 17.00 MacLine -grestore -1.00 ps -441.75 13.50 441.75 17.00 MacLine -441.75 242.50 441.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -432.25 239.00 432.25 17.00 MacLine -grestore -1.00 ps -431.75 13.50 431.75 17.00 MacLine -431.75 242.50 431.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -422.25 239.00 422.25 17.00 MacLine -grestore -1.00 ps -421.75 13.50 421.75 17.00 MacLine -421.75 242.50 421.75 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -412.25 237.25 412.25 18.75 MacLine -grestore -1.00 ps -411.75 13.50 411.75 18.75 MacLine -411.75 242.50 411.75 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -402.38 239.00 402.38 17.00 MacLine -grestore -1.00 ps -401.88 13.50 401.88 17.00 MacLine -401.88 242.50 401.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.38 239.00 392.38 17.00 MacLine -grestore -1.00 ps -391.88 13.50 391.88 17.00 MacLine -391.88 242.50 391.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -382.38 239.00 382.38 17.00 MacLine -grestore -1.00 ps -381.88 13.50 381.88 17.00 MacLine -381.88 242.50 381.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -372.38 239.00 372.38 17.00 MacLine -grestore -1.00 ps -371.88 13.50 371.88 17.00 MacLine -371.88 242.50 371.88 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -362.25 235.50 362.25 20.50 MacLine -grestore -1.00 ps -361.88 13.50 361.88 20.50 MacLine -361.88 242.50 361.88 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 358.00 259.88 8.88 WS -gsave 0.125 ps [1] sd -352.38 239.00 352.38 17.00 MacLine -grestore -1.00 ps -351.88 13.50 351.88 17.00 MacLine -351.88 242.50 351.88 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.50 239.00 342.50 17.00 MacLine -grestore -1.00 ps -342.00 13.50 342.00 17.00 MacLine -342.00 242.50 342.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -332.50 239.00 332.50 17.00 MacLine -grestore -1.00 ps -332.00 13.50 332.00 17.00 MacLine -332.00 242.50 332.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -322.50 239.00 322.50 17.00 MacLine -grestore -1.00 ps -322.00 13.50 322.00 17.00 MacLine -322.00 242.50 322.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -312.50 237.25 312.50 18.75 MacLine -grestore -1.00 ps -312.00 13.50 312.00 18.75 MacLine -312.00 242.50 312.00 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -302.50 239.00 302.50 17.00 MacLine -grestore -1.00 ps -302.00 13.50 302.00 17.00 MacLine -302.00 242.50 302.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -292.50 239.00 292.50 17.00 MacLine -grestore -1.00 ps -292.00 13.50 292.00 17.00 MacLine -292.00 242.50 292.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -282.50 239.00 282.50 17.00 MacLine -grestore -1.00 ps -282.00 13.50 282.00 17.00 MacLine -282.00 242.50 282.00 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -272.62 239.00 272.62 17.00 MacLine -grestore -1.00 ps -272.12 13.50 272.12 17.00 MacLine -272.12 242.50 272.12 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -262.50 235.50 262.50 20.50 MacLine -grestore -1.00 ps -262.12 13.50 262.12 20.50 MacLine -262.12 242.50 262.12 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 258.25 259.88 8.88 WS -gsave 0.125 ps [1] sd -252.62 239.00 252.62 17.00 MacLine -grestore -1.00 ps -252.12 13.50 252.12 17.00 MacLine -252.12 242.50 252.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -242.62 239.00 242.62 17.00 MacLine -grestore -1.00 ps -242.12 13.50 242.12 17.00 MacLine -242.12 242.50 242.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -232.62 239.00 232.62 17.00 MacLine -grestore -1.00 ps -232.12 13.50 232.12 17.00 MacLine -232.12 242.50 232.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.62 239.00 222.62 17.00 MacLine -grestore -1.00 ps -222.12 13.50 222.12 17.00 MacLine -222.12 242.50 222.12 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -212.75 237.25 212.75 18.75 MacLine -grestore -1.00 ps -212.25 13.50 212.25 18.75 MacLine -212.25 242.50 212.25 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -202.75 239.00 202.75 17.00 MacLine -grestore -1.00 ps -202.25 13.50 202.25 17.00 MacLine -202.25 242.50 202.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -192.75 239.00 192.75 17.00 MacLine -grestore -1.00 ps -192.25 13.50 192.25 17.00 MacLine -192.25 242.50 192.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -182.75 239.00 182.75 17.00 MacLine -grestore -1.00 ps -182.25 13.50 182.25 17.00 MacLine -182.25 242.50 182.25 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -172.75 239.00 172.75 17.00 MacLine -grestore -1.00 ps -172.25 13.50 172.25 17.00 MacLine -172.25 242.50 172.25 239.00 MacLine -1 ps -gsave 0.25 ps [1] sd -162.62 235.50 162.62 20.50 MacLine -grestore -1.00 ps -162.25 13.50 162.25 20.50 MacLine -162.25 242.50 162.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 158.38 259.88 8.88 WS -gsave 0.125 ps [1] sd -152.88 239.00 152.88 17.00 MacLine -grestore -1.00 ps -152.38 13.50 152.38 17.00 MacLine -152.38 242.50 152.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -142.88 239.00 142.88 17.00 MacLine -grestore -1.00 ps -142.38 13.50 142.38 17.00 MacLine -142.38 242.50 142.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -132.88 239.00 132.88 17.00 MacLine -grestore -1.00 ps -132.38 13.50 132.38 17.00 MacLine -132.38 242.50 132.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -122.88 239.00 122.88 17.00 MacLine -grestore -1.00 ps -122.38 13.50 122.38 17.00 MacLine -122.38 242.50 122.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -112.88 237.25 112.88 18.75 MacLine -grestore -1.00 ps -112.38 13.50 112.38 18.75 MacLine -112.38 242.50 112.38 237.25 MacLine -1 ps -gsave 0.125 ps [1] sd -102.88 239.00 102.88 17.00 MacLine -grestore -1.00 ps -102.38 13.50 102.38 17.00 MacLine -102.38 242.50 102.38 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -93.00 239.00 93.00 17.00 MacLine -grestore -1.00 ps -92.50 13.50 92.50 17.00 MacLine -92.50 242.50 92.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -83.00 239.00 83.00 17.00 MacLine -grestore -1.00 ps -82.50 13.50 82.50 17.00 MacLine -82.50 242.50 82.50 239.00 MacLine -1 ps -gsave 0.125 ps [1] sd -73.00 239.00 73.00 17.00 MacLine -grestore -1.00 ps -72.50 13.50 72.50 17.00 MacLine -72.50 242.50 72.50 239.00 MacLine -1 ps -1.00 ps -62.50 13.50 62.50 20.50 MacLine -62.50 242.50 62.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 58.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(ms\)) 276.50 284.38 72.12 WS -2.00 ps -newpath 63.00 243.00 M -68.00 236.12 L -73.12 229.38 L -78.12 222.62 L -83.12 216.12 L -88.25 209.75 L -93.25 203.50 L -98.38 197.25 L -103.38 191.25 L -108.38 185.38 L -113.38 179.50 L -118.50 173.88 L -123.50 168.38 L -128.50 162.88 L -133.62 157.62 L -138.62 152.38 L -143.62 147.38 L -148.75 142.50 L -153.75 137.75 L -158.88 133.00 L -163.75 128.50 L -168.88 124.12 L -173.88 119.88 L -179.00 115.75 L -184.00 111.75 L -189.00 107.88 L -194.12 104.12 L -199.12 100.50 L -204.12 97.12 L -209.25 93.75 L -214.25 90.62 L -219.25 87.50 L -224.25 84.62 L -229.38 81.88 L -234.38 79.25 L -239.50 76.75 L -244.50 74.38 L -249.50 72.25 L -254.62 70.12 L -259.62 68.25 L -264.62 66.50 L -269.62 64.88 L -274.75 63.38 L -279.75 62.00 L -284.75 60.88 L -289.88 59.75 L -294.88 58.88 L -300.00 58.12 L -305.00 57.62 L -310.00 57.12 L -315.00 56.88 L -320.00 56.62 L -325.00 56.75 L -330.12 56.88 L -335.12 57.25 L -340.25 57.62 L -345.25 58.38 L -350.25 59.12 L -355.38 60.00 L -360.38 61.12 L -365.38 62.38 L -370.38 63.88 L -375.50 65.38 L -380.50 67.12 L -385.50 69.12 L -390.62 71.12 L -395.62 73.38 L -400.75 75.75 L -405.75 78.38 L -410.75 81.00 L -415.75 84.00 L -420.88 87.00 L -425.88 90.25 L -430.88 93.62 L -436.00 97.12 L -441.00 100.88 L -446.00 104.75 L -451.12 108.88 L -456.12 113.12 L -461.25 117.50 L -466.12 122.12 L -471.25 126.88 L -476.25 131.75 L -481.38 136.88 L -486.38 142.25 L -491.38 147.62 L -496.50 153.25 L -501.50 159.12 L -506.50 165.12 L -511.62 171.25 L -516.62 177.62 L -521.62 184.12 L -526.62 190.88 L -531.75 197.75 L -536.75 204.88 L -541.88 212.12 L -546.88 219.50 L -551.88 227.12 L -557.00 235.00 L -562.00 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v9.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v9.gif deleted file mode 100755 index d4358bebc..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob06v9.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob13.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob13.eps deleted file mode 100755 index 4c386f464..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob13.eps +++ /dev/null @@ -1,1200 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Title: SUPERMAN.EPS -%%Creator: DeskScan II - Hewlett-Packard Company -%%CreationDate: Wed Mar 13 7:50:9 1996 -%%BoundingBox: 0 0 110 170 -%%EndComments -%%EndProlog -save -15 dict begin -/xpoints 110 def -/ypoints 170 def -/xpixels 152 def -/ypixels 235 def -/rasterbytes 152 def -/bitspercomponent 8 def -/xunits xpixels xpoints div def -/yunits ypixels ypoints div def -/coords [xunits 0 0 yunits neg 0 ypixels] def -/picstr rasterbytes string def -/readimage { currentfile picstr readhexstring pop } def -xpixels ypixels bitspercomponent coords /readimage load -image -AE534463D0CCD5CFD1CABABFBABFC0C7CBCBC9C9C7AB37ADBBC2BA9BBFB39191B7B72E312F -9C898598A1B379B0B5A39A729CA9A26DB3A991769CA12C1F1A1C1F1C1A1C1A1A1D181A1A1A -181A1C1C1C1A1C1D1D1D1A1C1A1D1A1A1F1A1A1A1818181A1A1A1A1A221A1A1A1818161616 -18161A1618181A1818181C181A1A181A1A1C1A1F3C37A2672F1A1D722F1F1C1A181A1A1818 -18181A1C -98515757CED1D1BFBDAE9B76676590AAC1C4C7CDC99F397A9CB7BB9AB7BCB2A9908222291F -9BAB9F8882A29795A2A3AE7A89729859AAADA1A1886A1A160F0D1311111111110F0F110F13 -13110F0F0F0F11110F11110F11110F11111111110F0F0D0F0F0F110F16110F0F11110F0F13 -11110F110F11110F0F0F111111110D16111311111D279A7E161355371316111111110F0F11 -0F0F1116 -88536360CDC3851F1D1613131113181A1A226DB5C9A32FABB7B9B29098B0BAB7BBB41C1A1A -83A2B4AEB9B9AE7791AAB27AAD92A1A37777919FA29F1F110F0F110F11110D0D0F0D0F0D0F -0F0D0F0F0D0D110F0D0F0F0F110F0F0D0D0D0C0F0F110D0D0D0D110D0F0F0F0D0F110D0F0D -0F0F110F0F0D110F0F0F0D0F0F0F11110F130F131C2F9F9C2260130F11110F0F0F0F0F0D0F -0D0F0F11 -91595753C5531F1A1A0F111311110F1311161A6D9C982CB2BBB2BAB5B39795B3B9B9221D2E -897990ABB5B2BAADA67A7685A5A6A69CA6976F779CAB1A130D0F110D0D0D0D0D0D0D0D0F11 -0D0F0F0D0F0C0D0D0F0F110F0F0F0D0F0D0F0F0D0D0F0F0C110D110F0F110F0F0F110D0D0D -0D0D0C0C11110F0D0F0F110F0D0F110F0F0F11111C2E9AA14D24110F11110F0D0D0F0D0F0C -0D0C0F11 -906C536165222F131311131311131113111D18577C7C27B0B9BDBFB9BCBAB2578E9B1D311D -A2AB9A77A1B7B09FB3AAAA777997A2ABABABA5797C6C180F0F0D110F0F0F0D110D0D0D0D0D -0F0F0D0D0D0F16131316110F111F3134323237312F2C160D0D0D0F0F130F130D0D110D0D0D -0D0D0D0D0F0F0D0F0F0F0D0F0D0D0D0D0D0F110F1A2F9C856013110D0F130F110D0F0F0F0D -0D0D0D11 -88BA8DB0269BD5181A16161C1D1811130F40C0B5249A3A7E9AAEBDBABDBDB283AB7A241F22 -9AAE9798B7959292A5AAA6B29F8D779B9FA69C919C911C110D0F110D0D0F0D0D0C0C0D0D11 -1C31414045494D54504F310D131C4C595A5A605B615C58340F0F0D0F1C504F4B270F0D0F0D -0F2F29271A110D0F0F0F0F0F0F0D0F0D0D0D0F0F1829A29A24110D0D0F0F110D0D0D0D0D0D -0C0D0D0F -77A1B5221FE0E5551A429BCAC4AB60241641E3DC343E5CADAA9190A6B5A9B283B2AD1D1A18 -9C899085ADB0A68686A3ADA39AA29258839C977297401611111A222E323E3A1F0D0C0D0D13 -184858545855585A5757573E161118425B5C605A5961615949180F0F111F53675B40130D0F -0F2458635A34110F0F0F161A11110F0F0F0C0D0F182E8E89160F0D0F0F0D0F110D0F0D0F0D -0C0D0D0F -613B971C46C4D9416FDCE7E38342A5C9446D9765161CAAA3B4B4A27286B3B482B0A91A131C -2C2722267CA9ABAA976F88A1A99283454534292C591616424F55575C5558595A3A0F0F0F11 -11183A5B5B595B5A5A5A5C5B4C241318315961655C63655B5C53290F11131C496561512411 -13131C4F6C6049160F0F184953453C130F0D0F0F13379291130F0D0D0F0D0D110D0D0C0D0F -0D0C0F11 -63722C181824926FE1E9EAB2221C31C9D0392C2613134983ADABABA1AE868671974818243E -4F5153402459A9A6AE9783536F372624344244401C130F1D4B595A5B5A5C5C6055461C0F0F -1316162F545A615A5B5A5B5C5A543713131D4B63605B6360615C5C3B1111131A3460635C3A -1113131A406172582C0F13164661635A240F11111A1F6F9816110F0F0F0D0D0F0D0D0D0D0D -0D0D0D11 -7A9B1818131692E8ECEBE1241D89C5D15AD13713110F18AD7682A29CB2B2511F4858585C61 -5C5B5958584F221C3451544F1F16131D4C59595558512713131A3C5B5B605A5B605C5B553C -11111111131840595C5B615C596160584F2F1316245061656567676A6A5C31111113183B65 -6559311313131A4B636A481A111824556561481C112457441A0F1111110F0F0F0D0D0F0C0D -0D0D0D0F -764C181A1816D6E9E9CDC541183ACB5424597213130F13A39F9B7E82A550274F595A5A5B60 -595C595A5A57512E1C4D5859532613161F465855595754311313182E5459595B5B5B595B57 -46180F0F0F111631515A605B5A615A5A5A554616131A3C5B6160656A6C676A42180F161322 -55615B4216111318325861572E16161C426160582C131D4B532F11112C422C110D0D0F0D0D -0D0D0F11 -762718181322E6E8972F397E261A4561183EBA181313137AA591AE9A422257585858595B5C -5B5B59585A595759341D496057552E0F1618425A5A5958544216111624505B5B5A5B5C5C55 -554D240F110F13181D4B595B59605B5C5B5A5B502416162451676A6A6D6A6A60501F131113 -1A405A615424111313224F6360401313182E5767614016163A5946181124504D27110D0D0D -0F0D0D11 -7E1C1A131334CE2F1863321A456C1A1824C4D4161316135C9FA59B27244557595A595B5A5A -585B585B5958595A5555481A32555853421316162E545959585751271116183A575B5A5A58 -5A585951400F0F111313132C505A5C615C6160676059451D13182E555A59514F443B2F1311 -0F11131C2222271111111113262729180F1116164158585327181A3C5542181629504B270F -0F0D0D0F -771D1A16132FD23A1345A3241A537965A9E5C818161113837C7E571A1C404B555859595961 -5B5857595858585A5A55544D1D29575854491C111824535757585955371313162E545A5757 -595B59545346180F0F0F11131F4F5A5A595A606060615341111113181D22344657828E957A -260F111663C0C3C03413111622BDA99A6D130F13131D1D221D131616264D481A131C3E543C -110D0F11 -7C34161A161CD7C9261D619A1822CAE1E5E9A316161318C0A9861D1A451F3E4B535A575859 -5758585A58585758555857554F24265159544C221316224C5A585755584116131824505A59 -57555758575450290F110F0F11184059534D423A31241C24371113137AD3DBE1E0E2E1E2E0 -D639181AB0E2E2E2C516131683E2E2E0D91613161ABFCDCDBDB22C1816181C1D181616243A -2F0F0F11 -83B2181C161644E3E7901C1F132CD9EAEACD221316131C95A945163A1D1A421F3A454F5859 -5755585755555557575757585857552F1C44575354341116183C585A575955502C1316183E -59575757575053463A160F130F0F131AB7DADCDFE0E0E2E2E122181AC3E6E6E7E8E8E7E7E9 -E5E55A22BFE9E8E9E5B21C55E5E8E8E5DC1D181A3EE2E6E6E6E4CC1A181CBBE3E2DB1C1871 -DFDE7718 -8583221613131C98E6E56A1D1DBBE9E9DF461C221813506C79221816391C1841243A485358 -58575957595957585857554C45403C3E1C183B5757553C1316162F575759575A5534131318 -2F484239291F1F3149533A161311131ADAE0E3E4E5E5E5E3E2291C1DC4E5E7E7E9E7E8E9E7 -E7E6CC26C1E8E7EAE7E22CD2E7E9E9E5DD1D1A1C98E4E9E9E9E7E01C181CBCE6E4E5821D92 -E3E38318 -95B9501813222F31A2E3E04F8EE7E7D7553467C51318B9A18518161618321C184124394850 -585455595857585A482E1F1C263132241C161A3B57555545161316265059585854573E1113 -181629588EB9D1D8DDDBDBC23416161FDBE4E6E6E6E5E5E4E026181DCCE5E7E7D08E72CBE8 -E7E9DD26BFE9E9ECE8E7B4E7E8E8E9E6DC1F1A1FD6E6E9E7E9E7E3261A1DC4E7E7E7E226A9 -E6E6981A -7EE6C01D1AC0D5242C6FC3C0D0D3AE46261FE0DB3237589BA1161D181616341A183C22394D -4D54585A59574D2E1F58A1D0D9DBDCD9D4C34F32595A5A554F1A13161F50584F412F1C1113 -161CD1DDDDDEDEE1E2DEE2DCD11D161DDDE5E6E7E5E5E2D9C41D161DCBE6E7E7A326294CE7 -E7E9E127C3EAE9EAEAEAEAE9EAE9EBE7DC1F1A26E3E7EAA1E9E7E5481C1DC4E7E7E8E8A9C0 -E7E8881A -71C8D5601CCDE6C11A222C3A3E32241D165BC9C940BD3AA39216181D1616132F1D183B2734 -494C555859461D4BCBE2E2E5E2E2E3E3E3E0862E5C575B555B501F16161C241C2654979C1A -1A1CD7E0E1E2E4E4E3E2E5E4E0A61A22DEE5E7E6D189502F221C161DD0E7E7E7A91D2255E8 -E9E9DC27C4EAEAECEBECECEBECEBEAE9DD241D34E6E8E83EE7E9E7A51F1FCEEAE9EAEAE6D5 -E8E8891C -7155D7C13788DB271616181C1F1F181813182F5090772482981616181D1613112F1F183E27 -37494F594C1F88E0E2E2E6E7E7E7E6E6E6E58622555A5959513C1C1613161CC4D7DEDED518 -1D1FDEE2E5E5E5E5E4E6E6E6E5DE2224E0E6E6E59A27221C1A16131DCBE6EAE6A22651D7E9 -EAE9C727C5EBECECEDECEDEBECEBECEADE221D7AE7E9E431DFEAE9DB2422CEEBEBEBEBEAE9 -EAEA8E1A -6F535A53A5275A1C1313111611131113111C1C6FA3BD347263131613161A161616391F163C -2C324C4B1D6DE1E5E6E7E7E8E9E8E7E7E7E69B1D27493B241C2E761F131324E0E3E2E2D51A -1C1FDDE4E4E4E5E6E5E5E7E5E5E34124E1E7E6E6A31D1F375416131CCDE9EAEAE1D7E3E9E9 -E8E95927C5EBECEDEBEDECECE9DCEAEADE221DCDE9E9DB2FC9ECEBE52624D6EBECECECEBEB -EAE9851A -63414149B795AA671C131313111111133795A2C3C0B22297AA2E16161613131D181316311F -183B241FD9E3E7E6E8E9E9E9E9E9E8E9E7E78D18161AA6E2E4E5E539181A29E5E8E5E5D51A -1822E0E6E6E5D92F2E54E5E6E5E39826E1E7E7E8E5E3E0E2E01F1A22D4E9EAECECEBECEDEA -E24F2424CBECECE840E7EBE948CDEBEAE0242FE8ECEBEBE9EAECEBE87124DAEAEA45E2EDEF -EDEB891D -714C2F484B7CC5B09A61483A2E3C578DB4B5C2C0C0AB249FA6611816161613131D1813132F -22181A72E5E7E7E8E9E9E9E9EAE8E7E7E7E697181618BCE6E6E7E63E18182EE5E7E7E6D51D -1A24E1E6E6E4D1241D27E3E5E6E58D26DEE7E6E8E7E6E2E6E226181FD5EAECECECECECEDEA -CF271F22C5EAEAE62FBBE9D82FD1EAE9DC2663EAEDEDEBEDECECECE9C527DAEAE9446FECED -ECEA891F -5A313C447CABD0CCC3B7A3B4ADB4A1B2C7C2C0C5BDAD268EB471181A16131316161C181318 -2C1D1CDCE6E7E7E9E9E7E9EAE9E8E8E7E9E77E18181CC1E9E8E9E73B1A1829E6E6E7E6D41A -1824E0E5E7E3C91C1A29E3E6E7E57929E2E7E7E9E6E7E7E5DE22181FD4E9EAEAE5DBEBEDEC -E8371F26CCEBEBE6293BE65529CBEAEADC29BFE9EBEBE9E6E9ECECEAD82ED7E9E83E2EDEEC -ECE99726 -603C4D4FC4E0E3E2E3DEDFCD85BB5197B24C6DBABCAA279BAD925116161616181613161A16 -13189CE5E7E7E7E7E7E5E9D55B31272C29291F161618CBE7E6E6E639161A2FE5E7E6E6D31C -181FE1E5E5E5D486C9E2E3E6E6E12724DFE7E6E6AA2E26241F16161DD5E6E9E5712CBDEBEA -EAE73726D0EAE9E4221C1A1C1DC5E9E9DA2CE2E7E6B9492F2C76DFDEDB31C1D8D62F1D22B7 -CBCB4FD0 -5B545153C9EAE96FA189E7D36ABA61A6C755584DB5A924A6ABABA34B13161813131313131C -1A1AD0E6E7E5E6E9E6E6D23226221C1D1A1A1A131618C8E5E7E7E63418182EE5E6E6E5D41C -1624E2E6E7E5E3E3E2E4E5E6E4BF2224E0E6E5E57E1F1A1D2613131FD9E7E9E56A2234E6E9 -EAE7BC26D1E9E9E31D1813161A6AA183591D424F4F2F8691221D312E271D2229221C13181A -1F1F3737 -6157574FC9EAE2454F59EAD3718E9567C49A8540B9B2279AB0B2AD9B341618161311131618 -1C1CDFE5E7E5E6E9E6E53E1F1A131613131311131318CAE8E8E9E53218182EE5E7E7E6C91A -1622E2E8E9E7E7E6E6E5E6E4DE341D22E1E6E7E6925791C3D418161DD8E8E8E6581C22BFE8 -EAE7DB269BB08E5318110F0F11181D1C1A16181F1C4F9AAE261316181616111613110F1116 -1634B216 -60554C48CAEA7E3A4661EAD2C0BAADA6C1AEA6BBC1B53B92858D97B9B4A134131313161613 -161FE4E6E7E7E8E8E5DB22181616111111111313111AC9E8E9E9E62E181831E6E9E9E6CF1A -1622E3E7E9E9E7E7E7E4D86724181822E1E6E7E7E5E6E5E5E022181FD7E4DCC42F1113181D -221C1A16131311110F0F0C0D110F0F0F110F0F11136C7C9F29110D0D0F0F0D0F0D0C0F1111 -49A31613 -60555B48CBEAE8776D6CECD17ABF59429B634691B4B3299AB0AD987998A592241616161616 -1624E5E6E7E8E7E9E7E21D1616111111111313131618D0E9E9E7E52E18182CE6E9E8E7CA1A -1822E3E7E9E8E6E2CC862E1D1C161622E1E4E7E7E6E8E6E5DF1F161A85653422180F110F13 -131111110D0F0C110F0D0D0C0D0D0D0D0F110F0D166F6CA3270F0D0D0F0F0F0F0F0D0F1311 -CD161611 -5954544CC7EAE9E5E5E4EBD07E91537191797E3CB5AE27A3ABAEB09AA39589542616161618 -161DE3E6E9E8E9E9E7E53C1A1611111111131616131ACBE9EAE7E62F181634E9E9EAE7CC1A -1824E3E7E8E8D84927221C161113131FDFE5E6E6E7E6E6E4D51D13161A1D1A16110F0F0D0F -0F11111D7A600F0F0F0D0D0D0F0D0F0C0F0D0F11136079A6240F0F0C0D0D0D0F0D0F0F1372 -72131111 -6051594BCFE9DCDEDDCDDAD6B7A5BDB3BAA5A59ABFB72498B2B0B097B5BAAD906C1A131613 -131DE1E7E8E8E7E9E8E6D41C1613110F11131311111AD1E9EAEAE72F181A31E7E8E7E7C91C -1826E3E6E7E6C51F1811110F0F11161FE0E5E6E4E4D4B26A2F16131311110F0F0D0D0D0D11 -0F111398CBC834110F0D0D0D0D0D0D0D0F0F0F11135B677A27160D0F0D0D0F0F0D0F1613CF -16110F11 -59535A49CBE8D5E0EAC5DBD4B2BFA5B7BAAE8DBDC1B7245891AEAD90B2ABAEB0AB7E181616 -161CCFE6E9E8E8E9E7E6E5AB1A16131311161611131ACFE9EAE8E72E1A1631E5E7E8E5CB1A -1624E4E7E8E6C018110F110D0F11131DDEE0D6A6572C221D18130F110D0F0D0D110F110D0F -111118C5B5C4A213130D130F0F1A110D0D11181F13426DA3BFBF48110F0D0F133C5B676F61 -24130F11 -67575A4CCAE9EAE9E8E9E8D17A8D53B09755855AA9AE2488857A8385B3B4B3B4B2A21D1616 -161A6FE5E8E9E9E8E7E6E7E3B71C1616131813111318D5E8EAEAE72918183BE7E7E9E6CA1A -1824E3E6E7E6C4160F0F110F0F0F111A9C55291F1D18131111110F0D0D110D0D0D0F0F0F0F -0F112CC5295BBF161126B31F16B02C0F0F11B0BC18BB8D4C3CB7BF11131F111A91D1BA98B9 -BF411113 -654C5546D0CDCAC5CBC5BDBFBDB3BCBABFB3A192C4B42290A3A3986F7990A9B2AEA31F1613 -18182EE4E7E7E6E9E7E9E8E8E5C11F1816161611131AD4E6E9E9E62E181A3CE7E7E9E5C31A -1824E4E7E8E6C1160F0F0F0D0F0F0F11181C18160F0F0F0F110F0F0F110D0D0D0D0D0D0D0D -111144BF1C24C06F1126C41D1AC17E111113B4C518B2448E32B088163A5911131DCC3E221A -4BC31C13 -82B4BD54D1CBCBC9C4C0C4BCC8C5C9C9C7C5C7CDCABA1D86A6A6AEA9B5ADAB60726D1A1D13 -161A1842E5E9E7EAE9E9E8EBE9E7E5CC1D1813131318D8E9E9EBE8571A24D4E8EBEAE77E1A -1A22E2E6E7E5BC13110F0F0F0C0D0F0F0D0D0C0D0D0D0D0D0F0D0D0D0F0D0D0D0D0D0F0F0F -0F1140BF181683241118BD1A1ABDC72F0F18679B1A86453BB45A1616C0BD111116A6541311 -161DBA16 -6FBBBB51D5CBCDCEC5B4543C82C7C8CBC7C7C5C5CDB92E5B6591A9B3ADAEB36CABA31D1613 -13161D1C95E7E9E9E9EAE9EAEAE9E7E5B91A1813181ADCEAEAEAE9DB71C3E7EBE9EBE64018 -1824E3E6E1C24C13110F0D0F0D0D0C0D0D0F0C0F0D0D0D0D0D0D0D0D0D0D0C0D0F0F0F0F0F -0F0F32C11D1329160F16B41A1CB5C29813164D791A8242A38E181318A19A181141796C1111 -131DBB16 -86836F49D7CDCDD1BF4D26586FB5CDC8C5CBC9CBC9BD2C95886C76899FBCB57CABA61F1613 -1316181827C3E7EAE9E9EAEAE9EAE9E7E56A1816181DDCEAEBEAECEAE5E9E7ECECE9E22416 -181FD7A3441F180F0F0F0F0D0D0D0C0D0C0F0D0D0D0D0D0F0D0D0D0D0D0D0D0D0D0F0F0F0D -0D1126C2411111111113A31618AB67BD1C13496F1876BDC8983E13264B534013CE50951111 -11229F16 -A9A1C458D1CDC9CFC2319C98679FC8C9CBCFC9CACAB72F886A1C22467E9F885C85A3221116 -13131313161D32C7E8E9EAEAEAE9E9EBE9E57E1C161CC3EAEAEAEAECEAEBEBEBE9DE29160F -131113130F0D0D0D0D0D0C0C0C0D0D0F0C0C0C0C0D0D0D0C0D0C0D0D0D0D0D0D0D0F0F0D0F -0D0F139CA5160D0F0F119116169C1845A61F3A63186A44953EB718A5181DA3C81A2EA61311 -1AA21A13 -A5A9BD5BD4CECFD1C85BA9B988A1C7C5C8CBC8C8C9C179865B1A1C1A263C5567493A18132E -1311161313161C2EBAE7EAEBEAE9EAEAE9E7DB1D161A59E8EAEAECECE9E9E9E9E45A1D1313 -0F0F0F0D0D0D0C0D0D0C0C0C0C0C0D0D0D0D0C0C0C0C0C0D0D0C0D0D0C0D0D0F0F0F0F0F0F -0C0D134DB0320F0F0D119F1313A91A188E5B48671885459239A21AB43C3EA934181D9C1313 -60591611 -A392B758D5D1CBD0C5AD6ABF9289C4C5C5CBC7C4C9BDCFA2451C18181A2F2726262E2F4018 -311813131616181C27A3E7E9EAE9EAEAE9E9E52C451C26D5EAEAEBEAEAE9E7DE551D131311 -0F0D0D0D0D0D0C0C0D0C0C0D0D0C0C0C0D0C0D0D0D0F0D0C0D0D0C0D0C0D0D0D0D0F0F0D0D -0C11111CB482110F0D11A61613A6161842A54D8218834C8D5A583CB98E92B037161F951634 -981A1311 -ADBFBF51CDCCA167514C7EB79A4871A2BDC7C4C5C9BF329AB21818181818224F5A59575748 -461A2E180F131311162629C9EAEAEBEAEAEAE7BC2C771C1C378EAEBC8D481F1A130F0D0F0D -0D0D0D0C0C0C0C0C0D0D0C0D0D0D0D0D0C0D0D0D0D0D0D0D0D0D0D0D0C0D0F11276F590F0D -0D11111332B25A110F169A13169213111660A69718825C7A6318B2292CBD3191131D9F9050 -13131311 -BBBDC055CF9755452E48508965503A3785CAC7C5C9BF2C8D5B1A1A131618181D545A585959 -4646182E1C131116131A2C41E8E9EAECE9EBE8C72C921F11181D1F221F1A130F0D0D0D0F0F -0F1C0F0D0D0C0C0D0F0C0D0D0D0D0D0D0D0D1151570D0D0C0D0F0D0D0D113257BDC791130F -0D0F0F0F16A19F1311189116168D130F132FA5A11C929F8D1F37A61FC42424971C269F5713 -13111111 -ABBFBD54CC4929404C4951495A4D41323EC3CAC5CCC4497C4B18181616161A1A224F595958 -594D481A2F1D131313161A27E3EAE9EBEAEAE7D2278924110F111111110F0D0F0D0F551C0D -1DAB180F0D0D0D0D0D0D0F160D0C0C0D0D2260BD9A0D0D0D117A3C111153C2C8B7652C0F0D -0D0D0F0D1344A32E13228D1D1A89130F111D91951F95904541899C48A21A1C9134264C1A32 -48111111 -B489B555C7292F6765655B6065D0CD585A5BC7C7CBC288A24F18161818131618181D4D575B -595A4C4D1A341C1113161822E1EAEAEAEAEAEACD266D1F0F0D0F0F0F0F0F0C0D0F16B55111 -5ABD1C110D0D0D0F3E44859F6C0D0D0F729ABD7E31164C0D13BB4F131FB4C2511F1A13110F -0D0F0F0D1118A276131C4D1A134D130F0F16484C1D573E90444540C51A13132F1A11131627 -9A131111 -B49BA94CC91C446A6554484B636F6C6F5939C1C5C7C490B2581813181618161616181C4B58 -595A5C4C4C1C321A1116161DE4E9EAEBECEBE8BF3A721C0F0D0F0F0D0F0F0C0D0F16BA7C13 -60B7160F0D0F0D18BABFBFBDA5111341C088371A163CBC1A1AB9411DA9C4BB8E77450F110D -0F450F0D111676A2131311111111110F0F1313161A455B9744184263130F110F11110F110F -11130F11 -AD92BD51CC1D3A655A2F413E3C3EA17A4529BDC7C9BB88A35A161618161613161616181D4B -5B5A5B594C4B1F311C16182EE7EAEAEDECEAEA774B89270F0F0F0D0D0F0D0C0D0D13B4AE16 -6D8E183A6D861C24C08D39B43A132FB4C06150311361BD1D26BD2460C4C2B4B7C2A6110F0D -0F72440F0F113CA9240F110F0F0D110F0F0F1111133E404B3C2C261816110F0F0F0D0F0F11 -0F110F0F -BC97B958CB1C2263454D4861614B4B3E603BA3C7C78655889227181816161316131316161D -4B5B6160615351222F161AC7E9EBEBECEAEAE93B6C892411110F0D110F0D0D0D0F1385B018 -BF6131B9C0B0243EC53A67BD1D18ABC5C5BDC0B5166FC31A2CBF1F6A483E2748C42F0F0F0F -136590320F111DA5440F0D0D0F0D0F11182E464C5751444C2F7627130F0F0F0F0F0F0F0F0D -0F0D0D11 -9A7A92A9851C496D654C5C63654D605557513EC3B59F9598A188631D161616161616131118 -161A1C1F24221C1D45ADE6EAEBEBECECEBEABD326C57240F0F0D0F0F0F0F0D0D0F0F22C3B4 -C4229FBD6D864277C3C7C7511613341C1D63BF29187EC488C2C01F2F8DA1BD6118130D0F0D -11954F130D0D16957C111648677C674427181313166F54A2B23927402F5846343157272911 -0F0F0F11 -A1B490A5B51F396A6042634D3E466149592C2C6089C08982B2AA9F7C241616131813131316 -1632C5AA9AA1BDD6E3E7EAECEBECECECEAE83453A989260F0F0D0D0F0D0D0C0D0D0F16B4C4 -761CBDC4C7C34572C5B5BDC47C1627486CB548161679C5C5C5711824929C4D16130D0F0D0D -13A9400F0D0D13826D11116172401A1613110F0F1365577ABC1A26186F8D83577288981611 -0F0D0D11 -8EB479A2762E2760421F51604D5863485832456A728E719FAEAAA5A17E2916181816161618 -1A48E3E6E5E5E7E9E9EBECECEEEDECECE9C42C57AD9F2E110F0F0D0F0D0D0F0D0D0D16A1C5 -601ABAB06D591867C4222E85BD1871BFA33216111342AE5832161613181A130F0D0D0D0D0D -11904B0F0D0D118E5C0F13182E1313110D0F0F0F115A4DC5371622183E2E2234272F2E1813 -0F0F0D11 -8879A34F596763635C1A1C606C48896A593B4489C4C57CA18D7C88A6B0AD821F1818161816 -1A61E7E9EAEAECECECEAECECECEAEBE85C4886596C8E310F0F0D0F0D0D0C0F0D0D0F0F5767 -161DC0ADB4BF614542110F1311111113130F0D0D0C0D0F0F0D0D0D0D0D0D0C0D0C0D0C0D0D -11517C130D0F268D2C0F0F0F0F0F0F0F0F0F13111360D19048111A1A44424B9A412F541313 -110D0F11 -8E8DB24FC04451513218189ABD229C824B3AC0C4C5C979B2AAAA9A6F8D92A55C1D1616181A -1A65E6E7EBEBEBECECE9ECECECEBE998319FA29F987C220F0D0F0F0D0C0F0D0D0C0D0F1816 -131DBDBAA349161616110D0D0D0D0D0D0C0D0C0F0D0D0D0D0F0F0D0D0D0D0D0D0D0D0C0D0D -0F3B725113137282180F0F0D0F0D0D0D0F0F0F111A7EA99C44111D1C323937583C3B491313 -0F0F1113 -9183C254CB451D2E1D161D61441D1D1C1A44BFC7C5C177AEB3AAB085A9978E4F711F18181A -1C6DE7E9EAE9EBEAECE9EBEBECE7832771B3A2A2A99A2E0F0F0D0D0D0D0D0F0C0F0F0F110F -0F163B2E1A1A1111110D0D0D0D0C0D0D0D0C0C0D0D0C0D0F0D0D0F0C0D0D0C0D0D0D0D0D0F -0D187E725A5A8360110D0F0F0F0D0D0D0F0F0D111AC792A54B1616161353496CA186131113 -0F0F0F11 -836FB05ACC55161A3E1A3C4B291F18162C4876C5C4C15C79A1AEB279B0B2AEABB3AD241618 -1A71E7E7E9E8EBE7E9E5D38E8E50A9C1B49A6A67899A310F0F0D0C0C0D0C0D0D0C0C0D0C0C -0C0D0C0D0D0C0C0C0D0C0D0C0C0C0C0C0C0C0C0C0C0C0D0D0D0C0C0A0C0C0D0C0D0D0F0D0C -0D11163960613B130F0D0D0D110D0F0F0C0D1324BB657CA64911181313245CC55539110F13 -0D0D0D11 -8891BB50CD5A1A515C1A495355241616162951C7C1BA6C92A1897771ADB7AEB5B0A1261D18 -1849CFD2D9DBCDC39B542E3B86B0CAC0BDA29F5C775B220F0D0D0C0C0C0C0C0D0C0C0D0C0C -0C0C0C0C0F0D0C0C0D0D0C0D0D0C0C0C0C0C0D0C0C0A0C0C0C0C0C0A0D0C0D0D0F0D0C0C0C -0C0F0F11161611110C0F0D0F0D0D110F0F1111C01D6F79AD49131A1616C140C840C0111318 -110D0F13 -8382A555CE5B1C485C1D3C6167501616185555C0C2BD6C8DADB5B38E828DA5B7B2AA2C1C1A -242929292F2E2C29324B89BC829BBFCCADAAA260A69A340D0F0C0C0C0D0D0A0C0C0C0C0C0D -0C0D0C0C0F0C0C0A0D0C0A0A0D0D0C0A0D0C0C0A0C0C0D0C0D0C0C0A0C0C0C0C0D0F0C0C0C -0C0C0D0D0F0F0F0D0D0D0C0D0D0D0D0D0F114195186A6FA944131C13189CA2AEC177161316 -11110F13 -88B5BA4BC855244465263B6567492649276160B2C4C16390B7B7B2B3B2A39176899B2F1D27 -8392C83A5C71778592A5B4C1BDB7927E929BA16DA3A22E0F110F0C0C0D0C0C0C0D0C0C0C0C -0D0C0C0C0C0A0C0C0C0C0C0C0D0C0C0C0C0A0C0C0C0C0C0C0D0D0C0C0C0D0C0D0D0C0C0A0C -0D0C0C0D0D0C0D0D0C0C0C0C0D0D0D0D0F11C7181665729F4B1118131318C94FD018130F16 -11110F13 -8EBDBD59CA5831466A315165634845493B616179C3C3507C89A6AEADB2AAB06D917A2E261D -7EA5BFCB7C766A829BA1A5C4BFC0A99C9C6D674FA2A13C0F110D0D0D0D0D0C0D0C0C0A0C0C -0C0D0C0C0C0C0C0C0C0C0C0A0C0A0A0D0C0C0C0C0C0C0C0C0C0D0C0C0C0C0C0D0D0F0C0C0C -0F0C0C0D0C0C0C0D0D0D0D0D0C0D0C0F11615918117765A34B111F163132423E452E371618 -13111118 -83B9BF58C9583B49673961656545574940636153C5C063ABAD9B8290A3ABAD65A6A92F181C -85AEA6CEB5A39C86778695B5BDAB9F8EAA9B9783776F2C11110D0C0D0D0C0C0D0C0C0C0C0C -0C0C0A0C0C0C0C0C0C0C0C0C0C0C0C0C0D0C0C0C0C0C0A0C0C0D0C0C0C0C0F1F5A1A0D0D0D -0D0D0C0D0C0D0D0D0D0C0A0C0C0D0D0F18CB16161365659F46131C18986A6C897A464F131F -16182276 -85B0BA50CC544C456044676A6A4B445C465B614CADC05CAEADA6A67189859259A9A62C1A26 -5CA2B372DB97A1A5A2957A767E97A17AAB9A9C9598892E0F0F0D0D0D0D0C0D0C0C0C0C0C0C -0C0C0C0D0C0C0C0C0D0C0A0C0D0C0C0C0D0F0D0A0A0C0C0C0D0D0C0C0D0D29A1BF8D1F0D0D -0F0D0C0D0D0C0C0C0C0C0C0D0D0D11117E4C1313136C5AA141131A392F534F2C414939441F -2788D5E2 -959FB953CF5060496A5B6767674D51605C636560505C65ADB7A2B061ADABA2ADA383291A1F -7CA9AD9C9298D491A2AB9FAA6F929C897A6D959F95882C110F0D0D0F0D0D0D0C0C0C0C0C0C -0C0C0C0C0C0C0C0C0C0C0C0D0C0D0C0C0C0C0C0C0C0D0C0C0D0D0C161C5CBBBF7E83C26116 -110F0F0D0D0D0D0D0D0D0D0C0D0F11B02C130F0D13675A8E4D0F0F131313131313228ED7DC -AA3B1F1D -8D77BB5CCA556744656167656A445B4B65656560594F517A9AAAA5718EA2AAABA9A62C1A1D -7EA5ABAAA9A5BAC96A8DA29B83837C7A97957A5B6777310F0D0D0F0F0D0D0C0D0C0D0C0A0D -0C0D0C0C0C0C0C0C0C0C0C0D0D0D0C0C0D0C0C0C0C0D0D0C0D0F4B4F3EAD97C47E6DC7BC2C -110F0D0F0D0C0D0D0F0D0D0D0D112FA116110F0F116C549249110F110F13112788D5DDA232 -1D1A1616 -896FC058CD506A3B65616A6761485B4F616A6560584F58516385836D59A2A5A5ABA139181C -7AADB3AAA3AA98CDBD9077796A906C76979C925985631F0F0D0D110D0C0D0C0C0D0F0C0C0C -0D0C0C0C0C0C0C0D0D110C0D0F0D0D0D0D0C0C0D0D0D0D0C0D13834FA1AA8DC0BC55C4C8AD -3C0F110F0D0D0D0D0F0D0C0D0F11C21C110D0F0F116D4D9B4F110F1111247ED4D8A2311C1A -16131316 -83A39F55D14C6A31655865615B5B595B3B635B445B5853585A55A2B5A69B866A7E92322429 -6A9790728EA5A2A185DE88A69C9B976A5B7E82499292310F0C0D0D0D0C0D0C0D0C0D0D0C0D -0D0C0C0D0C0C0D1332243A3A3E240D0D0C0C0C0C0C0C0C0D0D131F83B36090371D3E273467 -C2B3160F0D0F0D0D0D0D0F0F13CB160F0D0D0D0D13633B9A502682D5D989291C1A18111113 -0F111313 -98C2BD58D04D672F614F6C61455C5C5C495C583A5C605A425B5A5AA6AAADAA7C957A34221A -6CA1A67C9786858288A2D5979BA69C7E92957253728D310F0D0F0F0D0C0C0C0C0D0C0C0D0C -0D0C0C0C0C182E26261816374B44160D0D0C0D0D0C0D0C0C0F111AA6B24224727A481F3CB0 -C09755130D0F0C0D0D0D0F135957160D0D0C0D0F116F378EA1D3D188311C181313130F0F13 -0F111316 -88BFC276CB4C673B5B45585849615B604F345153605C5A51585C5A83B0AEA667A6A5341A1C -79A1A67C98A6A6A27E77BFC7929B987A8E9C8E957C60240D0D0D0D0D0C0C0C0C0D0A0D0D0C -0C0C0C0D1D1A32222E11112745391D160D0C0D0D0D0D0D0D0C0F132E3944A9C5C4BA636D49 -869F97450F0F0D0F0F0F1116CD13110F0D0D0F0F135C92D5D583221A18130F0F110F0F0D0F -0F0F1F31 -7EBBC060CD53614F454F58324C5C5A5C405C5750595B54594859585B59829860A6A3321A1D -4C79976A9BA3AAA39FA1AB86DA72725789A198888995390F110D0F0C0D0D0C0C0D0C0F0D0C -0C0D0C2E2224111A1316391A51651D260F0D0F0C0D0D0D0D0F0F0F1A5AABC7C9AE49393C4D -85A1ADA28D2E0F0F0F1618C416110F11111C82D1C5AE76AD53160F11110C0F110D0C0D0D11 -0F2F1626 -8398A151CA58604C60574B3B3B5C5A59465853585957545859575A5B597E987285912F1F2F -65A3976C799AA2ADA1A59CA27EDB82857276728988A3260D0F0D0D0C0C0C0D0D0D0C0D0D0C -0D0F131D1122113C165A8D1DBFBD7616110D0D0D0D0F0D0F0D0D0F13633B556A261F1C4F6F -7A98A9ABA5902E11131DA137181111186DCCC3581D6C59A655110F0F0F0F110F0D0D0D0D11 -1A24161A -7158824FC459604B6C674254295A5A5A5C63535858554F5A5949595A5548B3A5A2862E1F1D -6DA2A6A99F92716D899C9FA289ABD386979189485B67160D0D0D0D0C0D0D0C0D0D0C0C0C0D -0D0C3116291A134C2CB2AB83C2C0BD1311110F0C0C0C0C0D0F0D0F11161818181613164C72 -7989A3AEA9AD951D1F29C316161C76CBBD541D1A1A5B51A553130F0F0F0F11110F0D0D0D0F -1113132F -77585944BD5861656563405B295B5A5363594C4D3A241F34543B574C2624A2A1A9AD321A1A -63AAB2A267A6919C776C677E8286BDBF85989054887A160F0D0D0D0C0D0D0C0C0D0D0D0D0C -0C0F11133A111331543A51B9C3C3BD18110D0F0D0D0D0C0D0F0D0C0D0D0F0F0F1111112777 -727E98AAB7AEA582C5BD392271CABD501C1A161311614BA65A0F0F0F0D0F110D0F110D0F0F -161C55BF -7A72674BB05A5A657A553B5A325A5B4D4F4942837C1C1D1F2439491C271C9855A1A6391C16 -49A5A597419C9F989A9A97866D5B5CCDA2919A559591180F0C0C0C0C0D0C0D0D0C0C0C0C0C -0C160D112711243489A3417AB4BCBF180F0D0D0F0C0C0C0C0D0D0C0D0D0F0F0D110D111A5C -777989ADB4AEB2C3D9DB7CCBBD551C1816130F0F11654FA65B110D0F0D0F110F0D0F0F112F -91D0DBA3 -8E9A5539A160504D533E375A3A5A5C42505953B0B53B514B1822453A552C773283A3371A1F -487C7C5ACE9FA29F979BA1979788775BD9888D508D89290F0D0C0C0D0C0D0C0C0C0C0C0D0A -0C1A0F0F11134557B04C53227E774C160F0D0C0D0D0D0C0D0C0C0D0C0D0D0F0F0D0D111331 -76778397AEB0AAAEDBDCCA541C1A18130F0F0D0F13674F9F57110F110F0F0F0F111645AED7 -D5D55124 -7E867C41865B375C5B584960545B4C4F4D5A57B7BD4455531A589F3E4289A549AA712E222E -347282AADE5B6F8E8E9A95988D8E887285D6514B6C85290D0D0D0D0D0C0C0D0D0C0C0C0C0C -0D290F0F0F1F3EB3BFB29F1CAA496F1D0D0C0D0C0D0C0C0D0D0C0D0C0C0D0D0D0F0D0F0F18 -67797A72ABB0B3B4C8D9A31C16110F0F0D0D0F0D11584CA25A130D0F0F11131F60C9DEB758 -D0971D1C -828E8E49611A1A54603E5C516DBBC3C3655B50BAC1B9325C6D89A6ADA5B09CC7E2E0D3DCE2 -E0E1E0E3E5E1E0C9BD956C657179957C9085C0AE8583390F0D0D0D0C0C0D0C0D0C0C0D0C0F -0F0D1A1F3E552298C3C5C251BA7AC02F110F0C0C0F0D0C0D0D0D0D0F0D0F0D0D0D0D0F1113 -4D7A77899CB2B4AAADC39F27110F0F0D0F0F0D0F0F6555B061181A4BB0D9C46724225CC927 -1A1D1C3C -7C6591518818184B5B396C6F9FA6BCC1865853B5C3BB2E3A4C6A6F7A607C7AE0E5E3E2E3E3 -E4E4E1E2D2A2DBD5DB61959B656A5C657C987ED1868E34110D0F0F0C0D0D0D0D0C0D0D0D0C -110D16164D551A2CC4C8C5BBBA7EC4260F0D0D0D0C0D0D0D0D0C0F0D0F0F0D0D0D0D0D1113 -42797A8389AEAEA3ABAD9172130F0F0D0F0D0D1111604BA56076C9D7AD481F1D1C92BA1F16 -1616314F -837A7954C14B313C6086BCA37E44B2C38D554BBBC0C0314B3C42466761CDDDE2E4E4E5E2E4 -D5A99C674479DA49D89198987988958577605C6DD77C3C110F0F0D0D0F0C0C0F0F0C0D0D0D -110D132F4F594822C4C8C5C7BAC7C51F0D0F0D0D0D0F0D0C0C0D0D0F0F0F0D0F0F0F0F0F13 -2C82767C88A2ADAEADAE9F9F1F110F0F0F0D0F11134F44ABD3D08931221A181AA5A91A1613 -224D7C5B -7C464C31616D67485B63635B635A575A4D44505454573C5951514949D2E1BFC78ECEDED1E3 -C985D3296340A939C1D5779172959195A19790588EB9BD130F0F0D0D0F0D0D0C0D0F0D0D0F -0D0F1D2F31544450866FB4CBD5A158130F0D0F0F0D0D0D0D0D0D0D0D0D0F0D0D0C0F0D0F0F -168683797C67AEB9AEAEAD9795131311131F5BC3DAC07CAB711D1313132EC56118160F131A -4871583B -85864B65513B373E5C4C6558455B76584C545B4C425A4648613927C0DEDCB4BF98BDDBBFE1 -DD48DBADDC65B9CBE0DA54605B86959BA3919063918DC78811110F0F0D0D0C0C0C0F0F0D0D -0D0F443B3B55543E85546D90B9AB3A0F0F0D0D0C0F0D0D0C0C0C0C0D0C0D0C0D0D0C0D0D0F -16548579796AA9B0ADADB2A6A526162992D3D391325A50B96A1813184CCB4D1816131F4B67 -55293141 -7A8D5C8386896A315C3E606C58516D7144535B5B4C4B58494D67494458D4BC716F9BA55AD9 -E134DC407145DDE3E1E2C96F595A5C7985988E659A8D4BD14C130D0D0C0D0D0D0A0F0D0F0C -0D0D504B4054553ABD92898D63C4260F0D0D0D0C0D0D0D0D0D0D0D0D0D0D0D0D0D0C0F0D0D -111D8D8257859AA9ADB2AEA9AA60AED8CD71291D1D5B53AA72161651CD3718182F555A4227 -27392C41 -79867E6A898D7C4560347A6C7E6F4F5050594F49575B4551604C4D5C32D0C1D5DCDBAAC598 -E0D7E0DED9C9CBBAC0C28DA29B9C9086929F887672612E1A6CC7130F0D0C0C0D0D0D0D0C0D -0D11513B3E182F584159CAC9C9C4180F0D0D0C0D0D0D0D0D0F0D0D0F0C0D0C0F0D0C0D0D0D -0F131C6C658D8E7991C5DDE0D0B0241D18161A8EC5C7D8C4619BC21F1A16292C262C263754 -83896C92 -8E8D796A889589535C497C7C857E617C6C71594837495B494F634C4B5550CFB3B7B0AADF71 -E0AB86B9C49FC7CDD8CD98A29C989C8892A598979A9031111CA397130F0D0D0C0D0D0F0D0D -0D134C2E502413182924A6C4C7BB130F0D0D0D0D0D0D0D0D0F0D0D0D0D0C0D0D0D0D111A1D -1A13295A6D6D95B7E0D9BFB2B2B23916131318AAC3DED0AECFC8BD491611131F343E6C8690 -919192B7 -7A8E7E618E8E8540493C838385835B72796A726F54594B4C3C4154494134C0DE7E88BFB2B2 -E1BCC0BDD3DFE2E1DAAD448279929C8D959A90959C983A0F1322C8590F0D0D0D0D0D0F0D0C -0D1F4D1A4D451113111822587C26110F0F0C0D0D0D0D0F0D0D0D0D0D0D0D0D0F11315C7272 -6D5B656A9BD0E0D5B47AB0ABB4A98D1611131AA2C5E3CAD8D5C8C4C516131324769191917C -B0CFE5E2 -6F3A53447A8883825744837A777A61826F6D717A4F676C616555323B416AD1CCA6CCDDDEE3 -E4D9E0E0E2E3E2E3AD8871716D776F657CA395979791340F111634D42F0F0D0D0D0C0F0D0D -0D345116557E34348698B0AD9B160D0D0C0C0D0D0D0D0C0F0D0D0D0D0F0F1118537C7C7C77 -7A77ABD7E2C9AEA29FB998ADB388A516111618A3C0D3D9B0CEC9DECB161313398D9A85A5D4 -E5DEC9AD -76221F1A26413A616A4B7C7A7E8250767776777145636C6A6C654939496C95C5DEE0E2E2E5 -E4E2CFCDE2A1B5DEBCA1A99C72A5A697887977768591310F0F0F1850D1160F0D0C0D0D0D0D -0F4655348DC7BA65B5BCC779C0130F0F0D0D0D0F110F0D0D0D0F0F1111111359777C7C7A79 -C0DED7C09FAA5972AB718EAEB36AA11613131A9F9FE0956F556FDECD1813183791C0E0E3D9 -C0AD97A1 -6D1D1D1A1D1A1A1A403A376C63724863726F6F7749606A67716C4D40545B53D8DCE3E3E2E5 -C5DA4B53D5606D76C591ABA6769F9FA19FA5974D61582C0F0D0D0F1A79C1110F0D0D164426 -138392B06FC7C565C7C7C99FC51D0F1A0F1A1D0F404D163B464B463E241348797C799FC9E1 -D5BFA3B4B9856DADB089B0ADB398541611131C9CDECBC44D729BE1D01C1C61C5E3E0CDB5A1 -9F9C6548 -8845261C1616181818273B291D423B4B677E6D77455C6C6F6D654F456F6A5BC75889E3E3D5 -3E423249468D90725C4D9BAA67A1A39CA59C9C549195340F0D0F0F131CB2A5221C224C5554 -22C3C7C7BACBC9C2BCCACAC4C948494045325326583B5C7E7A6F76766D376F77B0D7E0C4A5 -AEB7A1B5AD86AEABB0B5B3A2983A3213131671DBC0E2E05B657CE0CB86D1E2D7C9B7A5A992 -6134272E -8DDAD3B454261F1F1A1A181A1C1C1C1A1C1D24372C535767675B4D4857604F3E4D604FDE5A -4B556C604BA5A6A3919CA9A68E897A5C6D95925B92923B110F0F18131F5063D749263C5832 -55248E89CBCAC9CBC7CBCBC8CB63313C31272945374B717777797189C8E3CCB9AEBFB9BAB5 -723A9BB2B2B0ADADB09244274618181AB7B32477A16CD0D6D7E6E5D444221F3C92929A1D5B -3472673E -7A618DCAD9D6B354321A1A1C1A1818181D1C1C26261C1D26424F3E4B535B5C3B495957AE61 -4F506A715392A3A395A1ABAE98A2A1927A6F6C5177923E11113A504D49464B71D4513A2F49 -2E454C9CC7C959CBC9CDCFBCC7BD393A293C54322F6A777C7AB7D9DBC1A2AAB7BCBBBBAE57 -3CA3A597B3B2A2884424274B131322C9971C1D8291C2DBE7D4C0D7D2221A18348D98981C63 -326592CD -6F262C2E4272BDD8D8BB5C392C1D24181C1A18241F1A1C1A181A1A2F49494D404458632E5C -4858676A5961839F95A1AAA9A3A3A29A91A2A59A7C6029111A575757575A5353A5BB3C3739 -3E584049C5C749C7CABBCB90C790B42E503E4F72577A86BBDED5BD9AB0B5A3B3B0B3883C41 -A5A289B3B782491F1A374216162FCA721C1C34A6D3E4CBB4915ACDD01C1116327982921F55 -92D7DCC1 -77292927261C1F2227263161AAD2D9C07E3A1D1F291C1C1A13131316131613161A1D313140 -3A445C615B65A2A6A9AD958265768D9188A69FAD9FA9441F5853584641656F71613AD44F34 -5159605A65605159799788BDC9BB7741454C82D1DBC3A6ADB3AB9886AD9C51221F48A1A2AE -B9B29F6F7E572E3B1C16184CD74661C5E1CB7788C0DBD16D552CC3D41A16162685C5E0D4BF -495B3E27 -7127372C24271C1F161D2229272C59A6CDDDC59F4B1F161A1316161116161618161816161A -1A1C27485563ABA9AAADA2A2729C927E60718DA99F9C3A344B42465A7171717679618ED88E -8E9595919A91A29AAA9172588E2F86A5C5DBD5BA8E92AEB3ABAA60A1A37E416C92ADB2A3B2 -B49B9BA3453C3C13131671D5A2D2E0B54D272788CCE5E2DBC5A5D1D41F2671CBE2D5AD2E3C -273C5340 -7C1A1A1C1F27241A24221F1C1C1D2C2C2C4B90CADBCBA24B1C181318161611161318131813 -161834532F6FA6A6A9ABA6A679979FA197907763634F31324C726D6F726F71777954A2ABD4 -58614D5C5C60616167616F714885CBDBC8898592A1ABB089AE892E9B71609AADAEA685B3B7 -AAABB350424F13161A45D4E0DB9A3A1F1D1D1D85C7E5E0E4E3E2E0CB9CDBE0C8B49790224D -3177723C -7C2C1C1C1D1F241F1A1A1A1F181322161C221F242424223257A9D1CDBC5A2E1A131616161F -319F9FA6A2A3AB9B9182868263A39BA9A2A3A16F273259796F716F6D7682898695927C5BDA -CA9B5C5A425C5B9BD1D6DBD7D6A1915B6355615B5867AAA5402C26A3A6AAA67745A3AEB3A6 -723B58552E82CDDDBD53241D1A13161316161A7EBCE16782CDE6E4D13E1F1F318E978D1F5C -3A7A6A3C -8D605A4C3A26181A1D1D181D1616241F2F16161D221A1A1D1D22294F97D0D7C56A371F1D16 -329FAB9FA5B4AEA19BB0A2A28E7A7785959F9A294B346A6D6F716F7679929FA5A19B5967E1 -60D76F50715A63D4D9D9D3E3E3DFDAD057635C60C95B869B671A32A1A6A35553A5AEA67634 -274F55A3DCDECF371D1A1A13111113131313186DAAD5D5E6D4BFD3CD221A182F8E988D1C6A -3B553E85 -976D67635B554C4B2E1A1A1F1A18241C1A181A1F2216131816181D1F22264C85C7D5CB8641 -318390AEA6AAB39BA97C909FAAA59A9259604C4422636A6F716A778592A1AE9A9C9F60BCE0 -636FDBD5D0CCD492C5CFD9D9D4D5BAE2C9A9AA95D0AB54A27A18316D6A401D4F5A482F1D26 -7CBDDEC9A3D7481F181311110F11111113162FAADEE7E0D49C95D5D11D1116269298951D3B -3AA2DEE8 -98656D6D5B5C5954582C1F1A16181C1A181A181D1F1C181316131616161C34272F5C97C0D5 -D3C5B06A8285979AA3A6AA8DB0A19AA2769729244D65716D6F727C9CA5AEA6959B905B97DC -5961B2DFE09A6A656767636D776C408E9BC5CFDDE2DE5C7E91161C1C1A1A1616181C2465CA -DCA24579CE3E1D130F11110D0F0F13163EA9DEDFD8BBD8E5E6C0DDCF1C13132C929A82379F -DEE7E2B3 -916C616A6361555746371A1D18181F1A1A18181A1F18161A161313112F63481D7AA53B243B -95CDDCD6C9AB9B867C83899FA3B0AAA363831616456F6D6D71829AAAAAABA1679F914D5772 -4B4D95DED765635C5C676561635C4D6165656D9AD7E2655198181316131618182F90D1D083 -2F2282C9271813110F0F0F11111646C1E2D58537C9DED4CECBD9DCD01F13162791A1C0E0E6 -D5B2614C -9765676C6560555353371C1F1A131F181D2613221A161A1613111D3C88651A5797AA401C26 -53A6A39FCDDCDACEAE98A18E4F71829F655A18133E726F636367A2A38E91493491B09B6D4D -555753D289655A5A5B605A5C5A5B555B606061677CCA65509C1A1629323A60B3DBC261241A -22B0B51C16130D0F1111161A59C3E1C76A271D22245191BDDCD6C0DB1F161C55C7E6E6D1B3 -4586634C -976D6D6F6D675A5557372224181A221A1C1816181F1618181A34514D7E224C98A2AE3B161C -48AEAD76B4A2B4C5D8DAD4BD6A91866A5826161844726F5845274139261C1C1C51A9A6A19B -5B485A8E5C595C5B60605B5A5C5A55595C5C5B5C63614DA3915C423176CDD9A6421C1C1D22 -B9891A16130F0F0F111D7ACDDCAE411D1D181616185427263C65ABC12254C8E7E6DCBB2C6A -46856149 -9C6757636C675A5A4F3A2426181A1F161C16161D22316F9B9F9292322F979788657A31221A -4FAEB0A59C8691899CB5B5A66DBFCCDED590481C2957717288A1A59C9A161613183E79A3B0 -AAAEA19A57555998D5C761575976D4DFDBC259616757ABB9C3E2D05C221C1C18131639C84C -18161111133EABD7C977271D1C160F0F0D0F1111114D29B2926FCFE6E2B5402FA1A69B1F32 -1F59594B -9B6D6C5C555463554B3B2627181C22181A1C181A1F63859FA2A3462698A9AAA19CB0451A18 -4FA6ADBAA6B7B5A691897E865A9B9AAAB4BFD9D1C4A5838390A9A29F455B1A1616182265A5 -B7ABA6ADA390576063545C5B61616DDBE0DB57635BBBD8DFD1B0A2221A1313111650D04018 -13111348BBDDC4511C1C1813130F0D0F0F0F0D11114F46BCDBE6DCA53B1F1F22729F9F1F55 -407A5C49 -9B676C615B575B58583E1D271D1D22161F181A2679979177724B22639AABADADA3B4461618 -54AEB9B3B3B4A9B2A2B9B4B2A6716A6F97416D95BCD5DDD1C5AAA97E40831813161A1C1A49 -83A6B2A6AEA2AB77546061605C5C596F9C8967B0CCD9B744AA9BAE1D110F111363C92C1616 -1C63C4D79C3B1C1A18110F0D0F0F0F0D0D0D0F1627A5DFE6DE832C1D1A18181C829F97245C -39835A4C -9A715A63595C605850401A241A1A1D1818161A85A1A9ADB06F1F5B5377899597A2BC451618 -3490A1B0ABB4ABB29FB9ABB3AAABA6894B677A7977719AC5D9DDD7A5A33C1813167760181A -1D4491ABAAAAAB95905B585B5C3C554460BFDECCB9A591909F9F9F3A1313169ABC221A2783 -CED090271A1816110F110F0D0F0D110F0F112E9ADCE4D1B5981F1816110F131D92976A1F6C -3E83584F -9B61675C54655A44543B242418181F161C1C32ADADA59C91264FAA6CA9989789838E341D1C -4BA59565869890A6A3BCB9B2B4A6A1586C7672717A8598A9ABADBFD7DBC7833118579F4F2C -48323E7792ADA66A9BAB76575946C2CADEC09192B2ADA3A54F868650161CAAA61F3C9FD6C2 -611F1C181311110F0F0D0F0D0D0F0F1334B0DCE3C4924CAEA91811110F0F131A8E5A8E2465 -39673E46 -A260656359615A3B423C242618131C181A1A22777998892C429AAB71AB97ADABADAA411818 -4BB0B077B5AB9B838590A1B3A9B08265717172768391A6AEABA1AA9A497EC5D5CA9AB39F61 -A3915C9C9F9CA683A5A9A5A9AED4DABCD97955ADADB3AAAE54614C4D24C89146B9DAB0451D -1A1A13110D0F0D0F0D0F110F11133AA6E0E1B04B225C42AB9A130F0F0F0F111A5C88922442 -41587991 -A26C463B585B4F4848311C2716162F161D1D349582592C327CA3A665B2AAB2ABB4B2461A16 -48B0AA7AA9B29BB4A9AEA2916A6A63726D6D797A979FADADA24B954531506F729CC1D9D9B9 -BB9F97A997AAC9A2A9B3C9E1D2A96365AA6586ADB0B2AEA972462EC0D0C5C4D69A341C1C16 -11110D0F0F0F0D0F0F0F131A50C0E1DC9C3B1F1D1A5142AAA2160F0F0D0F111C8689905C85 -8E869197 -A2634C504F4C4F483C32221D1A2E891C1A1A2F83341D5598AAAEB0B3A57C829879A1461A1C -42827658899FB0AAB9B3B4A644576C6C6F7A97A2A9AAAB609BABA2A2226A76727E4FA28DA5 -AD89BFD5DBE1E5D9C3A6B3B2B4B2A59F6C98AEA3B7AEA983AE86C0DECB271D1816110F0F0D -0D0F0F0D0F0D131F77D1E3CE6D271D1A16110F0F13503EA9A2130F110D11111C7E89928871 -4D2F262C -A15C4F544C4D4542553E1F22162689131816292E22586397ABA9A6AD7A6A7CB7B28E4D1C18 -54A9B0A6A28883838DA1ADA23163676A728DAAA9A3A55982ABA3A37E1D5C71727671587C89 -A683A2AEB0DEDE98B0B4ADB4B3885A85A19B89889CB2A69C9AA1AEDCC122130F0D0F0F0F0D -0C0F0D0D112C8ED4E2C3591F1D18160F0F110F0F115434B09C160F0F0F0F11186A6185312F -275950BF -AD673C4F534D4D3E452C321A1A1C241818291C2C57546A89A1AAAB9C4F796FC3C0B286181A -53A6ABB0B0AAAB927A896F5A1C57656D7A9CA6A5AA505CA9AAAE9B2E1C3C767677834C5750 -4D76A1ABAECBD99FB4B3ADAE8E6C86A2A2A9A9899A9F9CAE8DA5464837310F0F0F0F11110D -110F1132A5DEE1BD491D1A16130F0F0F0D0F0D0F114D37A59F160F0F0F11111A6C6D90244C -71CBE5E3 -92604F504F504B4842326D541D1D401D271D1C85A99A9C86425A925B4F6A9795AE61B71813 -54A3B0AEA69741486772725527296A7988AEA39A4849A1A6ADA3541F162776717277489898 -545C88A39FAD72A1B0B4B2ADA2AAABA3ABABA1A9AA6F91ADADA5341D494B110D0D0D0F0F0D -113CABDED8983A1D1C16130F0F160F0D0D0F0F0F134834A39A130F0D0F0F111A7A837E82D1 -E7E0B34F -9F514D4C5149454949377A63272C951A181A29AAA3A26544393941585B4550A6AEA6BF2C1A -3772829C7C2F617971716C653B1C497AA2A16D2F34A295A6A3572234111A6077726D593E67 -5B5B6C95AA72AEB3B2ADAEADA2B2ADAAAEA6A6ABAD7A5590A6A32F13395811110D1111164C -BFE0D8892C1D1A16110F0F0F11490F0D0D0D0F11114837A595160F0F0F0F131A6AAEDEE5D7 -B0825B53 -974D4B4D4D4C484645327C612932951C18182C9A633A3B2C22225C6360374D5157BDC15A1C -4CA291533C77726C6F633E5C3B262C41463A1F2C926CA28E551F46411316347C716F607277 -39485A90AB89A9AEAD928EABADB3AEADA292A9ABAE9C3153A6A5221322571D0F0F1855C4E2 -D185391D1A16110D0D0D0F0D111D0D0F0F0F0F0F134434ABA618110F0D1639B3E1E9D8596A -42794C3C -A14D504C4D4B4449482E776A2E32A51818161F3E372F1816161A6A656A6D766044C3C35A18 -4DA5924B72716D6D543745775758221C1C1D2497794F3E242C4242483213186D776F4C797A -82264577AEABA6A99558A3A9ABB0A5A1A36AAAB0A6A6393CA57C18111859401854CBE1CD6F -3E3E46180F0F0F0D0D0C0F0F3E110F0F110F0F0F11453AB09C1613184DB9E3E2D7C1A22957 -2F40322F -98514F4F4949484840276F612F39AA1F1D16181622221F32393B2E63716C5563495182B46A -717276716F767C8392988E8E71779798A18D832F1A134248482E3E48453C1318447257717A -85922C3B5898954F2783A2A5AAA6AAA2A345AAAAADB0539A9A1D3A1D65CFDFB7491F1D1D26 -266F412E29110F0D0D1311491C0D0D110F0F110F113E3AA3B0D0E5D48E2C1D298E92902658 -3A76B3DE -95534D4C4D4C4644411F796A2F319F16181613133C866F3A371F2E606C6C726F6A4FADC290 -636A71717679929BA998A19F97A2989B7C7A241816134B4B3B1D46494B4B3B1A1A48505C72 -7C906C344055593A297C9CADAAABAAA35742ABAEB0AD57A69A3B83D1D79A7E421C16131318 -1C242C2922130F0D110F114B260D0D0F0F0C0F11163C9ADBE6CC6A261D1A181D8E918D3791 -D4E7E4C2 -91544F504D4948443E247A652C2FA21A1A16181661BD44312C1A1F406C726D606192C0B9B4 -49717E7C8391AAB0AAA9ADA5A1AB83884D1C1811111C4B4C2F1F484B4B4C49442418313E6F -657E855C65593422585057AAAAAEAE8E274F91B9AEAB48AAC7D9D47927265C5511160F1111 -111C131C130F0D0D1F11311F110F0F0F11111334A2DCE5D4C2271C181611111F799FC4DFE7 -D5C05C51 -8D57494B464946443E2F71422E343B1A162E1316181D182613135C4B577279797965C7A6B7 -4571A3ADB7A9AAA9ADA6AEA9A997441A13130F11114C5446295454554D4C4949464939131F -507177829B8988A6A16359ABB0A9A690A16DAAB9D1E3D0B372504F1D111349593944675924 -241D110F0F0F0F2711392F241311184DC4E3D5912E4842AEB21A131A4FB9E0E8DECFBF2E5A -344F292C -956D65394D49424137291D1A1A27372F2716181A1813111F131122603E7E76765A85C8ABC9 -86A5B3B0B2AAADADABADA6AA9B452E45131111111651543A3E535355554C484C4C48452216 -4C7171778EA57289A9A36FA9AEA5ABABA3A3D8E5C8A58DA66F3A4816111334585761637E6D -6F461316111111371C3242221F6AC5E2CA6F291D1F443CB39B3289CFE4E0B759AB9C98292C -2757494D -976F5A453A44462E241D18131313161F1D24276A7C1A131C1318555C86506D71A1C1B09FC7 -91B3B4B3AAAAAEB3A3927A533141449B131111133754542249575757575049494949453E18 -26727172829BA9889FA56AA5ADAAA9C0D6DDC9ADADB063A35918441611111A5B5C32376D7C -4F3C4D2F110F221C29774591D4E0C049221C1816163E31A9C7E2E7D4913126279195952455 -3C715154 -976D5C555126131A11110F11242C3724181122A99A1613131C90727AA2449165313A48BB6F -546A587CA2AE908D76491A44AB65AE370F13111654541F4B54575457544D4D42372F414831 -1655797276869AA23C9553C5DCD5BBA9A54DADB2B4A551A23A1C2E11130F164C5C59394D49 -7A316118131658B5DCDA85311D1A1613131851BBDEE4DBC5AA261D181313131A828689245C -41774F58 -9F6D4C461A130F0F0F0F13293EA94132241D49A6A93B461C5A6F727685854D77373B322E27 -29296F7A6753483E27316CADB776B51C1113131F574C1D5057595459574C3C221F3A464842 -131F7A72727E92AE6FB4DCCBB98E95978E6798B0AA836F9B391D2C111D2C132F5B5B454597 -51401C1841B7DECDADA1341A1813132990CFE1DDB4764DB0AA1C13110F0F1116717E892955 -3E763737 -97724D3116110F0F11112F343EBF5332291642AAA69F67558D2E7A92717E4872323C3A272C -6A9F9FC0BFAB6185A982B3B9B992881813131344572C26555A595758574218163148444649 -111850726F7692CBDEC976BFCECFCD8DC2BBB2A3B9716792322637133B3A161F5A5A573245 -4C5C53BFDEBC5437545C27131855B4DBE4CE8D3424493AA9A618110F0D0F131C8590902C34 -2C3B3A86 -92715C5B321311110F1631393C7A672C1D1631979898657E461A7189546C617724373254A9 -BD6DB4BDC0B53AB9917CAD915A2F1D1618111151551A5058585855554B1811294645454646 -32132C867ABDDCD7676377E2E2DEDBD5DEDC85AADCC75757412C3A1344242713595B5A484D -79CED8A1391D1F3C60713986D3E4D9AD5422221C163A2C8E9C16110F0F0F111A898E982C40 -4DBDDEE6 -9A6A6F6A5C2711110F162C32614B462F1A22399A7C51496F6727296D675A6A971F348DC1BF -9760BDC0BFB56AB96A57321F293A2C11291313534B2654575955543E1C112745454B484949 -4222C4D7DCC1D5E06F616FE2E3E2D0DEE0E0C7B7DFD25CA3AA37391F2E24161344605795D0 -D282261F1C18312E88C1E0E5CC7E2C1F1C1A1111111D223A3E18110D0F0F111A92928382CF -E6E3CE86 -91597167554D181111273732322E271F1A1841AD406085725772263B72B2467E2FAABDC5C2 -7182BAC1BB854F3C1F2C3A424B441C133C1118552F3B54585755411D1A2E45464B46494945 -5CC1D9D4D9DDE2E06D5961D4D9DED4BCE1E2DDC7E1D85CB4BC26371D44292413349FD7D29F -3C1F1A18162489CEE5DCA94C241D1A13130F0D0D0F1C22675C180F0D0F11111A7EC7DFE6E2 -B07C5455 -9F655C574576551D111C1D1F1F272E1118183BA31C4C865A89954D519C761F39B0BCBFC0C2 -8E98C19155242639444D42372C24131132112C541850575455492922455449494C4C416CC2 -CB77DAE0DCCBBAAE465C504D5C6A723E89AB6C5072915B92C3342C55B924349BDBC4856563 -5B1C1A4CAADDE5D4B02E1F1D1C130F0D110F0D0F112E1DA6A1160D0F111F71C9E5E9DC7677 -417E443E -9B676A5B676142632E131113111C31131D1A247E4D1FAEB07E5561541D1D298EBBBDBA9250 -2631444D46312E26313A414B533411114D134D394D545548373E535859555582CDC1765550 -42181F1D1C18242431323C414558595858514F4D494B4D4F545840DCDE9A2F241D345A6AB2 -DBE4D0822C221D2E1C160F0D0F0D0F0F0F0D0F0F11271D60616DC9E2E3C46F2E82858E4559 -6D8D8D90 -A96F6C6A577627405A3A131313181D4D16183E605A345BAA764C531D161C6CABA16A3A3145 -4B4532322E2F40496365533A2E1A0F18501351245154463C3A505858589CCFC76D4F4D4F4D -2413161311393E3B4F555A54545451424645464541464645455554C0DD2F1F1A2665CAE5DB -C7866F4F37402C271613110F11161D2727313941494D5A91D9E7DEC967454141423E443C48 -4F657E91 -A36C634D37552F1F88542E181A3E3B552C1C3E5A61915AC4B57C371C161860402E41484D39 -312E37404C5C616F6C552F1D2211161A481A4C4555595139515560B0D3C07E61584B4D4849 -180F0D0F0F1129445157515458544949494D4C5353504C4137575B49A32946B0DAE2CCAB6D -7167605B454157574C4441484D51545559595A597AC3E2E6D5AD857A615A5C59595B595A55 -50484242 -A32931131313181F6CA9A59C8EAEA55C1F1D1F8E5A4D894D1F82161D3A41493A2E323E4D60 -716F6C44445A6149292727311D0F39314531426CC46F61BAC99B5C5C5859585757464C4541 -11110D0D0F181816161C2E1F3239394049483E3A3B465355546DBDDBE1C763424B1D1C5558 -585B5C5A575B594045585C5A5C605B7EC4E3E5D1B983776A60605B605C605B5A5B5B595858 -5B5B585B -A22640161613111655A6AAA34682A32F22161A635C6D4518182C394B453A3237405A676D67 -616744496560483E3B3E3429161140444237B4DBDED6CB955B5B5C5A58555957514F4B4631 -11110D0F181C2E323A404145423C3E4044464D53543E4992CFE5D9BF7A6A592C3416163959 -59595B5A5B605B59503E515C60ABD9E5DDC288766C67655C5B5C5C5B585C605C5B5B5C555C -5A5A555C -AD403B261C130F1345A9AD9C585C86291811186C91532C1D3446413731414D6A5C6550454B -4D3E576154633B50555A2C2E11163C4C3231B5DEE07C5C574C4D4F54555758534C484D4B18 -111111324F4F545354555B5951555755575959556DB4DEE3CF6F34606A635B58270F0F1858 -58605A5B5B5C5B5C5B5965C1E2E3D0A37C776C6A5C605B5A5A5A5A595A5C605A5A5C5B5A5B -5A5B5A5A -BC322418182C292F131D7C6A5C7C261C1113182C41463A2C34446077777A61514140505165 -575C275851455A443945493411343A4D1C2658D2C3AE51341F2F445553554641343A483B11 -160F1113131113131A29444C51585571BDDFE0C7916D6D615A391C18585B595A595334132C -595A5A5C5A85C5E3E4D0A679766A4F404960605B5C5C59585760606060615C5B5C655B5A5B -5B60605C -B23C3E291F1D2726266A9265924F241C181F34423724394859584F6C6D79776A63586C7763 -535A51556A6146344965581F1F4839531A1A573945796D504F3C242E5350464C48484C2E2C -40345931130D0F0F11132F415590D0E5DABD67636163615C46791F163459595B5958572F16 -585B60AAD5E3D7BB95766D61655B5A5B503A49585A58555A5C6161636165635B5C61606167 -5B5C67AD -B424321A22221C263746A5263431321F2C3B2F223451655548413C605B85595C6D7267505C -5C5059655C5B4D326071BB1C185540511818551F29575B4B5854533E2445484B4B4B4C1D57 -1D555A277239160F0F1A5AC2DFE0BF60503C323E57595C4D89955A2C16515B5C585B58581F -79C3E2E3C59F796F6D616360616160605C604D37535A5351505755606063636159655C675C -8EC9E4E3 -BA1C1C1F1C1F1C31392C1C162239292C3418271D6D6A6D41544D396A718254777258585B76 -5C4D55556354587EC0B3583224534C541D165129183C55555558575A422E4C4B4C48412C2E -24673C54A391613290CDE3CC85322F4641484951585C6063A5A1A12C31295C5B5C5A5BA6D4 -E5D4BC85716C6D61615B5C5C5C5C605C6361655C4C3B5157554B504F495560605B636DABDB -E6D4B57C -B7263B3129261C222616131618271D2F29496D4B4B614B3B6554455C716072676C4C50715C -6D535B6F7EABC5AE716F394F41555055291D4D45161F4955585B595955443E514B46265826 -4277499BA2B9C9E0DCB0553A4B54545759585A59595C3BA6A6ADAA63422F4F5B83C5DFDCC7 -4F6F6A6C6760605B5C5B5B616360605A5B615A5B5A573E41575950464C4C50538EC4E0E2C5 -95726D59 -C029392F2F37221D2424161F1C181C484D3E264D7165535560544C55546C65766C443E4651 -575C5871909265516D581F4C515754542F2F445116222C4F58595A595559394D4F45186749 -6D838EC2DEE5D1BB972924295A5C5959595B5B5A5A5731A6B2A5A3A1614B9ADBE5D5A2836D -32605C5B5C5C605B605A595B6060595B5B63605A5A5959533B4C5A51505195D9E5D2BD856F -6C635C41 -BD8E2F273132181629371324349039373B3A297779725C715C546A656A5B6A726049483B46 -5A6D536D7C7763636546223A5555554F39403154322F3B40545758585859584B4B2F3A553C -9ACBE0DECCABADB0A5311F32575C5C595B58595A5A392EABABA9ABB9CDDFDEBA90716A655B -404F5A5B5C605C5B5C5C5B5B5C61615B5B615C615B5A5C585A514076BFDFDFC271515A6361 -605C5A41 -C4CF322213291137292611161D45294D616F778D775B5B6D5B4F5351676A4C5741316D796D -4B4C55616A5467674B1F50505955574846551D53542F555142575759585A584863B3DED5AA -9792AAB0B3AAAAA9AB6F5B415B60595C5B5B5B5A509790D4E3DFC5A29FAD4B513A5860615A -511C535C5C5B5C5B5A5B605C615C595A5C5B615B5C6382BCDEE3C89B6A4C63606163595357 -54595932 -CBC227371322182C291111131618186F726A617A6771596A656046505545452922536D5C6A -48423C4557406C5C60265155575957454C57294D574C4657505558585960ABD1DEC08E456C -97A5ABB4ADA6ABA5AE8388575B5A5A5C5C61606FB0DAE5D9C0B0B2B5AE9B634C482E575C5B -5918425A5C5B5B5B5A5A5B5C5A605C595B60656195D1E4D9BB7C6F6A6357405361605A5954 -575A6034 -C9821D2E11292C18130F164F42412255798358826C797A6F5C4940394C481D1C455459655A -31312C596D584D4657464D585955594850574C45545334555A595A7EC3DCD9AD4034793C7C -98AAAAB0ADAAA3ABAA908E9B545C5B605C8EC5E3DECCBAB4BAB7B0AEB09CA1414B462F4C5B -58162C60605B5A5C5B5A5C5B5B616061617CBFDAE2C59565676A6060615B59414D5B5C5A59 -46515B31 -CB32161313181111181F9B2E293C446183605551776A6376393C41371C18313A294B3C2716 -2E45273951634D582F53575A5755554953575534595872C3E0D4B7836A6559292E6F546788 -A3ABADA6AEB4A5AEB59CA59FA3C9E0D7B4835B49ADB2B598B0ADAEB2ABB9B29B3B4B481F1A -4F24184D605B5C5B605A5B6172B7DCE2CA9B6F6A65605C5B5B5C5B59534031262624575B60 -5B535A3E -CB2424130F110F111F24979295974D4879726060576C50593A3E401A13323A244448262224 -393C372F63543258495454585855554F57585857B3D6DCB78E6D63605C584F1A5771606D90 -A5ADB0A3B0A9AAAEA9B0CADCE2C3956A6A592944ABB5AA9AAEADB3B0B7B2B0B24451494216 -221C13425B5A5A5B606191C9E0DCB386726A6C60615C5C5A5B5C50321D1316161616405B60 -5A59593E -CB2E1A160F0F0F1C2F24616D7A973B777A65775B715A584D414D241D373B2229372C262922 -39343E506A51343E5555575755585754538DC4DDCEA579595761605B5759441C7277538595 -ADB2A6AAB0A9A6BFD1E4D7BF912E3A42442753376FADB298AEB4B0B5B3B4B4B0A2404B493E -161313345B5C6165ABD8E3C9A2726C6C6C6360605C5B5B5A583B161616130D0F162648615C -605C5C3A -C82216261C13311C132C228685883B675C5451515B5B4434516167673E4C2F40616A413437 -3245513E4F585350585758588EC8D9CB956C615B5459585753595754554D1A587676728D9B -ADABBDD5E3D7B99FB4B9B2B0AA2218274B4477796097AEAEA3B5B4B4B3B2B9B9B7905A584B -4D3A2786D5E0CD926C6C676563655C5C616060605C59411613130F113C4F57585B5A4F5B60 -615B592C -C71A1F1D1816181616161A24242424272924272C2E2E2E2C2E2F323739313132323A2C2929 -1D40463765544B575765AED3D5BF7E5451605B57585455585554585557481A6D726C7A83A6 -C9DCDCC5ABABB4B7ABB3B3AAA61F63867667587C727E9FABA1B3B2BAB2B7B9BAB3A948655B -6CB0DCD5BA766A676C5B616163615B5C5A5B5A5C5A3B1A160F11134058595C5A6559585B5B -5B5A5955 -CC3B4145424244494D464B504F50514D4D4D4D4C514B4B4F4B4D544F4C4C49492E2E292422 -261F1D1D27324986C1DBC89C655C5B4C46555955574C5558575155554C371F7176779CCAE2 -D4B9A5ADB5B3AEAEAAAEADB3953242767C7A617A7A7692AAA1B3B3B4B7B7B9B3BBB559A2D3 -E1C38D32596A5C606160605B5C5C5C5C5C5C635B321A2613111122595A5A6160604B5B5B5B -5B594D7E -CB5B5C555555535551545957535050514D504C4D4F504F4D504F4D51504C51423B37323B31 -2E3439344DA6D5D3BA7A5A5B5B59553E4258585857495757595A4F4F4B293286BDDADBC8AE -B0B4B5ADB7B5A9AA92A5AEB0504B2F275786827E7C71899292A2BDBCB5BDB7AABAD0E1D4C0 -714C4D4937616060655B5C6063636160635C5B3213131D1C110F3C5A59585B5C5C515A5C63 -5C603E8E -CE675C5A5C5557575455545753535451535151514F4D4D4F5150504D505550413A373A3439 -394288C9D5BA95655C54595958535439405557555850575757574F424961C0DBC9929C95B5 -AEB9B5AABAB3AE9BA6AEABAD2E4D4C22328883827C6F83776392BAB7BCB9CAD5E3D1B7536C -6A5A494C265A5C60606360615B605B5C5B60494D18272271161331555C5A5B5A50595A5A60 -5B5A6379 -D06F585C5C5554555754535055534F55544F4F4F54504D4F4D535153585051373C3A393B5B -B2D5C48542505C5B495559595854543C40575A5A575957585A584D9BD6CDAA7982929C9AAA -B5B2AEB2B3B0B090AEADAE54444C4B451C8E897E79777E7E4255A3B5CEE2D5C0AEBBBB9567 -605A544C29595C5B5C5C60605B635C61634C5057376C1C4C29131648595B5A594C5B605B5C -5C42A1CD -CF6060595C575759575953545150505051514D514C4F4F51514D4F535355493B37408EC5D0 -AB4F403E3153574F3755575757535540415755555957595992C4D4BD60327A7E8992A99CAD -B4AAAEA9ADABA28DABAEA22948464B451F3997837A79798555A2D9DFCCB5A3BFBABABAB055 -635A5A49224D60605960635A60605B5C583E585A53322E495122161F49595B59575C5B5B61 -5B6CC390 -CF6FC7C5BD65585559BAB95C545361B050504D4FA6B9504C50A6BF8267A9D1D2BDA56D3E39 -3E32342F3C54442957555558575353514C53517AC2D6C790675851391F4F71778EAEAAA1B4 -B4AAB4ADAAB486A2B0A3274B4D4D4B4C451D5390B3D2DEC09F5163A6B5BCBAB9B99CBBB758 -635B5B4B2F405B60605B61596161673A5150545B5954242E893213111D2F4941605B5B5C5C -272E424D -D098D6D9D7CE5753C3D5D0CB4C5786CC58515351C7CD514F8EC5C9D3D5C07E9288A3763239 -3231311D4D5029465557575855545554485CCAD1B37A595C5A4F4C481A6F717C97B0A6A2B3 -B0AEADAD9AB07EA5AB5B3E4C4B494D454644AAD7CFA64F7788715879A3B5B9BBBBA2BABC98 -595A6053343A5A5C5B5C605A6360594958595C60605B3731632E1627631C493A595A5C6044 -6F545450 -CEA2D7B49CD65765D1C4AACF895990D15B545051CBCB5155C4D7CFBA5B495CA3313737342F -39372E1D55403A55555359575355535337507A5A5C5C5755544C4C4B1A5C727C97AD9CAD98 -B4ADADAD98AA53A99A423E4D4D4B4465BCD6B27986863E5A7C8E717988B7B9B4BCA1B9B7B7 -495C6050412455605C5C5C6361613446464D535A605954247A72BDD4B51C272C5A595A5829 -6163856A -D1A2DAD4CDD757B9D55450C4CD549AD5585171B2DCD49155CB6D5A57553A659CB2B9343C2C -373226552751515A55575555545454533E4F4C5755575459554B49462261717C9CABA3AD83 -B0B3ABA9A98E51674F5985BFD6BD7C4D515045184589571F778697AEB59BA2B9B998BABCB0 -7C605C5B491A445B5A5C6160633B5B5C5A5B596CA5CECFA54F271C1A1811111641424B4FA6 -CED5BF7A -CDA2DCE0DBAD67C5D14F3ECAD154A6CD9CCDD5B7C8CB5751D0795151533977AD4F3E373729 -3C3E50414D54555755555557545455534D4C445453535558544D4C401D6571829B9B9BAD9F -B398A9ABAD775048A1D2CDA56C48504D4D4B45261865761A728292B0B9B3A6BBB0AABCB7B9 -98595C5B4B26395B5B5C5C6161375B5A6098CAD5BA82605854574F3E3222181A6DB2C9D5BD -71728288 -D097DAC9795961A9D4854DD0CD7AC7E0D6C46059D0CE5350CDC783C242377EB3505C503E34 -5153454C5455545A55555755555154545337515454575757534C4C391D5B7283A1AA799CC4 -98A6A6ABAE82C7D5BD7C5B635C51414C504B4B46162271266A7A8EA6B5B5B9B3B5BDBCB9B9 -A350615B4B442C575C5B5C5B3E1D6CC0D3C9AD6A6A6A60466561605B575492C3D7C1633A55 -60888682 -D192D7B4615972B5E2E0DFD5905BA1D2D5D38D58C9CA4F504FB4C4913C2F5B6C7A77423E76 -6757545755503A223B51515854535353554F534853575755554C4B241A54718298A9BBDBDD -C0CBDAC4AA496360605C595A5B5A59324B4C4B48481A161C44798590ADB3B4B9B4BAB4BAAE -AA3E5B5B4F4F1D42595C60592C57544065656C63605560548DC5DACC9F61616C6C63605B61 -615B4B4D -D579CDA1635AD7E1E0CCBD605A58637E7C6F5857595A544D505453513EC7B93C3A51A6D1C1 -675749505454534F3B1F2F4C53555553555144534051545353494C1D1D496D7E98A6AADCDE -D7B298AAA548585A5C5C5A575A5957553948484B463916163A767C889BB4B3B2B4B2B4B4B2 -AB3C615C514F2E42505B5B404B606C57586163618ECCDED7D6A97263656D61616063636160 -595B5B5C -CF6C6A58604FDCE2E09C4D5A5754595858575554544F50514F4F514276D9D867C0D0A34F34 -5455372244535154504C372E4C51535153534151464F5753504648181845597A779FBFDBDD -A6ABADA3A65059585A595959595B5B544242464C48441D1329657A8391B2B5B2B4B3B0AAB3 -AB345A5B554C3E2F465C5C2650636365405C6060DBDCD1886567655B6557AEC15C60605861 -61615963 -D57261605C5ACBD9CB9F545357575553515050505051514D4C4D4C3BCDDCDCD488443B3C29 -3155491A18374954515454452F4C4B5354534F4F533A575450484022162C4C7291AED4CDC4 -A5AAA1A38E5A59595859595B58585758573744484D483E161A457679889AB3AEAEAEB3A9A1 -AE375B61554C4B1845585B2F546161655B515C53BFBDBB6561615A46606CC5D16757CE9C65 -5083C9DE -D0766A615C5A6D5A46544C4450515753515153514F504C4D4D454937B2DCDBD7514037373A -31481D1116162642514C55535134544D53534F3E534F4C514C483C49131D5588A3D7978EA9 -AA9BA59F44555857545A595959585A5A5751374649444026131D65767A889FADADADB5AD63 -97405A60594C4B26395950344D61636D6C455C6360597C655C5B5B425C6560D3595AC1B3A9 -D8E3DCBB -D26F6561595B5C5C5858515351535753514F504844443E444246322632B3B3C97229293139 -321C2E180F11161D312F3E54514F50514F50504853543C4D484B1F551C2777A3D992A9A982 -A9A2A59B3A58595A58555A585A58595859594045454B4245161A4072778591A9AEB7B4B06F -6D4B60605A4F4B3A2C5145454F60656A63653E60616763655B61615B5C656AD05985C5E0E2 -DBB3B390 -D167655A585B5858535354554C4C53505042414C494D4B504D4B44343A2E413929272E343A -321F29321F1113161C1F1A4151535454505051513A5453374C41405B4B58A3D79AAAA2A390 -A9A2A55054585A5B5757545559575857585A57274844414832131A61767E859190B5B3AEB0 -6C57615C5A58484B224F4653596A676F67634B595B63605C605A63605C635CC2D1E4DECF7C -79D1CDA5 -D367615B5C5B5A5A57555155544F4B4F504D4C504F504C423A39322622181F2422262F3131 -3A322E343226111316444B2C1A39515153545153503954542E1A606A95D7A3AAAAA6A2A28E -92A2375555595A5957595758595859585955575527464441452E131324535B793C95A6B4AE -B2606161615A4B4846315560635A616561676A5A575C6161615872C0DFDFC398C56F6DD065 -5BD3BDD2 -CE6A635A5C585857545151504C49504F504D4F514D423A321D1313111311111311111C2726 -1F342F1F1F2C1A11161A4F502C18375153545151512E50544F3A5790D589AAAEA2A5A5A16A -54574559575B5859595A585859585958575759574142424246401313163A55513488AEAEB3 -B0656161605A534C4927545A61616565635C4837315B5C5A9ACEE1D9B56C7185CD6567C976 -60D04FD6 -D05C5A595B5B58595451514F4C494B544B504D4D3E3722111113131111111113110F0F0F18 -27242C1D1C342F11111826545024183951535353504D295455427AD78582A2A9A5A3A59B41 -291D58585559595A5A57585759575759555553555332424444481613132426242488A9AD98 -AB765C61595A544F4B40445B6365655B3E1C1A1A1A5CA9D5E0CB915C676C676A7E63659592 -63C2C7D3 -D15150515A5A5753535150454C4B4D494C4D3C391613110F11110F11110F0D110F0D111111 -11132916373A2E2F1F11131850514B1C18444D545555541F6FD4854458A1A5A3A29098823A -18415955575859595758585749311A1613111313163E3C4445453B3C8D67424F727791A5AA -839C4C605B5B65554C46463C42311A161F60C3DCCB9A6C60635957515157575A615C5C615C -6A636C67 -D15544485958545451504F484D494F484D393C131113110F0F110F111111160F0F0F11110F -111111262E342E342F0F13163E515148181F464F54535453D48260397AA3A1A598609F8D57 -1A3B5958555759575555542E1613110F0D0D0F0F111A2F454646451D9188717676448D88AA -89883B616060605C4C484C4C401C3289D1D9AB502C6367635C595958595B4C465B5A5A5C5C -5B606361 -D157293759544C4D514D494C4D494F484040161111111111110F0F0F0F110F0F0D0F11110F -11110F131D3432372F1C11131F5350503B1C314C54586DD550545A5571A19F9C9C8D9C911F -162C555455575A5758501D13110F0F0D0D0D0D0D0F0F29464542461C918E7C766A318671A9 -95763C60605C5B5B4D4B4C485AB3D7CB7C2E1D1F445C554C41292F343B484D54575B595B5B -65605B5B -D446375557535051514D4C4C514F4B3B3713111313111111110F0F13110F110F0D110F110F -0F0F0D0F1A243934312F1611111F545351534B536AD68257571F4257594C9589639B922411 -113254505554583E37110F0D0D0D0D0C0D0C0D0D0D1C3241414241401A9082715B2631A6A3 -9F6C6D5C5C675B6DA9D1D4B4533B261D131613444D2E26181311110F111111131626405B5A -615C5B61 -D44B295457585855513E534F4F4D4D3E161A18221F221313241F271D1A110C110F0F111111 -0F0D0F0F111A3732393927111116535354585776D58D5A5954461A5554545A4F9A984C270F -113B4C4B53554240440F0F130F1818110D0D0D0D0F323C44424849441A5986775C5831BB8E -92867C9F6186BCDBD17C595445421C13111327573E242722261F0F110F0F131111131A4B5A -605C5B61 -D257264D59555753504C4F4D4D49483B1C18291F1A1A2726272C27272E221A0F0D0F0F110F -0F0F0F0F1126313939372C1F0F134F5157596FD78253595553531C3457544483927A223716 -1337444950455383450F0F1345515146240D0D112C244241414246403722837A6F65BCD7BC -A2A2AAC2D0D7C4906D5954514D341A11131A4C3C2934372F29291F11110F110F0F16133458 -635A575A -D5494851585754554B504F4B4F503A1A1116161A323A312727262E2E2726261D11110D130F -0D0F110F0F242C34343229290F133E515563D788584D4C5754553A165355573C883140440F -1A2F40414B4C88853B110F3254555955514032423E4F4442424842454016487A5555D8D9BD -ADC9DBC5B27C6F656061514D4C3B29321D42513455605C5C5B5B5A41160F11111111131D4F -5A5A5959 -D3453C4F5455575145544C4F504B41110F131837512F27272E2E2C27272F2E271F0F0F1111 -0F11110F0F221D32312C26341A1327546FD5915759514654555851162C54574D421D493C18 -2734344450798D9037111145595958585457554F4F514441444942464029184C4FBDD8DBD9 -D9BFA372B5636A655C5B50504F534834325744445963606163596158341111130F0F131641 -595B545A -D5373A5358554D544D4C4F50504B2C111111374B4C2F262E2C2627292E2C3229241C0F110F -0D0D0F0F0F18163137372F3B2F132261D79558595551514D5159553E16485554422F463E16 -2E3A31458E8885832E1F1346585858595858544455574B45454544414240161F545AD8DBCD -A1928DA6AA5463605A5C5B4D4F574C27515532595C61616D63616A5B581D0F11110F0F1631 -58584950 -D445415459534F4B4C514F4F50421611131F4851462E272424222C2C262E24292629130F11 -0D110F0D0F11183131342C3A271345D38659585858545353444C5853161F5453532F48441C -29273E8688497A7E2C3C163C57595959585840585857584649494846444813182759D8D9B2 -A6A659ABB28D6360605C5B5050463149544B3A60606065656560675B5B46160F110F0F1324 -59555A57 -D6674B5959544F464F55504F532913111F494D4F2E2C292C1C1D262422241F26272E27110F -0D110F0F0F11183A37342E3748D4655555535455575053555349325450161A515553462F2C -1D3179723E2E8286343C131F55595557424D5554595855544845484649441F7C3CC2677A7E -60B07E82B0AB605C5A5B5A5A3A3C42554D2E606A594D50505B4D6D675C653C16110F0F1116 -4B5B5B5B -D365465A5953544F55584F5146181113404B573E2927271C2427242426261C2C2727271F11 -0D11110F0F0F1A322F343155D46026595353535157535455545041375129163C53554F2931 -2761777629277A863C2F1A1A4F58574C485955575A55545751424142454226884DD0797E9A -65AA9746B2B2AD595B61553A54324C504154635946615C60655B4863676C5B13110F0F1316 -485A5A63 -D658546C5A5B5053515053504513111A48423E312C29182926242427262C2C18292924290D -0D0D0D0D110F1632393249D76C1D3953515354545554575553534F3A424611164F54514D1D -296D88762E2F7C7E4F463A183954533E5558545557575858584D464245442285B06D728395 -A3A9AB31A6B3B354605331544D424454325959465C5B485B4F595A4B5B6D591C110F0F1111 -4C5C6055 -D7604060585448515150534C2211134B50342229261D2422291F1A1C242E2C27242C262F1F -0F0D0C0D0F111A2F55D3823C22224F535353545551555453535453534F423911164D515354 -4085865C4D3788863E867216244F4457555758555858555A555342414444278DAA79767A89 -A5AEAA888E6F506D3E4F4B533A394F394960485B4B88549B8E713E5A4163604B160F111113 -4D615C61 -D6513B55545345535051513A16111A4C504227311C2F271F183745392C1A222F26222C2724 -110F0F0D1111224FD7793B39163E5553535153515455555554515153504F3E111131535354 -532E863C4C3A82856C8555161A3A4F54575555575759545857513E44444831D46A76727985 -A2A5AEA68D4F5B4B424254483B44542F585753634B79A9A9A5655853406359551311111113 -4B595B61 -D4583A58535146535553503213112953544529242626221F44554548502F222C2F1C242E2C -130D0D0D111639D77C2C392F1645535151535451545457545150535353534D2C0F164F5354 -544D462E513E83447C863C22162751545554545855595857535341413E4544C57C71727683 -6C539BA5914D596026345439414C50375A495B535959ABAAA9A54B46575560591D0F0F1113 -49595A61 -D455465954534B4F504D481F11134B61555429342F2449423C4F53484F3C261D272C1D2637 -290F0F1132D68E403E1D34272E5153535353535153515354505154515051514F2911135051 -53534F324F4B3A839A573B3718345151545455575559555554554640413ED4398272726F58 -60635A6590594D4B2646464549584D5A5C55593C4CA1A15B6C44791D5744615B3E110F1116 -3E545B5C -D853535C5B584D4F494439131118575B615B3A5137185339555554575559261A2926272E32 -270F0F2ED5913439341C322434535355575154515453535153515051535354514B16133151 -535553444948799883273B392C27515557575555555855555555494141909B277C79764B59 -5B495C54515B4D5C3E4F40404B5740585A5A513C50A19C57A9A6511C4D535B654C1111161A -455A5B61 -D958485C59514F4C46413413131C5C60605B39533B44375B57515B515754221C1C342C2437 -2C1637D2952C2732321C2F1A4654555153545453545857515555545453535453502613224F -505455513158959F293C3B3B3A1854555555555754585557585450453CD74D31827C67535A -5757415C5060585A4B4C324255513B5750604D342E926A88B0A6851C4158595C57130F1322 -4B5A5A63 -DA544C6159484D4D4B413913132E606360654D55313C535A5A5559514F593C1F22292F1A32 -2F34D98E1D222937371F31184B545146413E3A41454D4C5355575857534D453234371F5C34 -53545753419091503A3B3B3B402E3A5557585458575857575855554857C23C1F6A83445B4F -6763544463605C5B5139404D584C4465466345391D4B53ADB2AD7C3239634D605B13111332 -585A5A5C -D7514B5C5B4B504844442C13112F656061545151223E595B5451573B4F5840161F2C342232 -42D8901F1626273434262E1F4B414144454134291F1316181F262727223C54553C453B7945 -4F53575854496A323C3C393A3E402E273A4B515355575857514F4539CC3E34373272545957 -5C5A535757515B575427464D5541545949594051181F4DAEB0A192274D583C615C16111140 -57575A5B -D972486A59574F4542441F131640635C5C4254451A4D835757485145264C46161A1D312749 -DC9A1F16112E2C32342C311F445155534D5351414D2E1C111316182E22638D834B3C406183 -3254555955502C403C42413C42423E3B3729262229272F2C2F313940C83934321C4060465B -6163486057496157492C50555534546142603C9A341F396C9732761D605C415C5B1A11113A -595A5C5B -DA77465958504B4640411613134059605C42532C2F57A1765B4C3B5A3E2442131C2E3740D9 -A939160F11272F2F2E293113555354534C535339424D322F0F112939321D67867C65444048 -3A5155545758373E3B404144413C39393A392E31343A3E40414041C44B3A342F243A585A5A -5C5A3B67605760594432555454295960495C42A2906F2C2F55582C55725837605A1A11133A -5A5C5C5A -DEBF486A5A5044403C3A1616134C5C5B575451321D27779F4C37556D595913185A50DFA92F -372E130F112234392E32371F515553415354535154413953531C3239343934314F6C8D828E -7E39535554593C3E4140413C3C3B3A3E393B24373B443B3C4441A18D323B3A37372F345C61 -5C55265C605C585A444F55573B41635C4C614F95A29C6AAA4B8D5C95795940605727131D4B -5B605C59 -DC774972594D4641441F1818185159584D5449713B5449A6894D585B635B183A60DAAE3C1F -2E290F0F0F1F34372C3432225555504B545354505029505153222F373934393B3127273B46 -40293B535457483C42413B393A3C3E3A3B3222393B3E3B3E3E3ED53739343B404B4D1D4D5A -5C541D595A5A585A454C595531425A5B4F5B4C92AE9B79B78E26639F835445535C29132E53 -5859555B -DA5B5B6D59424541421D1C181D3C4C4639463B545C6F39556050484644531C63DD9B29311C -3429130F0F1F3437263132185454485553555353532E5154392C323434393A32313931373E -393B1F535455494142413B393A3C3B3A3B311D3E3A443C40406DBD403937414B5451411C32 -44491A575A5C5758444C5B511F4D59574F6155A9B09871AD771D639B79594861612C164054 -51554F54 -DD5B5B61DEEAECEAEAEBEBEAECE9ECEBEBEBEAEAEBEAEAEAE9E9EADD4449DE985B4F39311F -2E3218111C2C39321C37341651545557575453533E50532F2934393434313934323C37393C -3937372C5555403A3B3B3B37343A3B3C3934293A3B3E3E3B49D1393C4C5155585755544D18 -131C18555458595941445534343A5A5B495949A3A3A357AD3B1C58917A5445585B26164B58 -5B595B5C -DD586361E1ECEDEDEDEFEFEFEDEFEFEEEFEDEDEFEDEDECEDECECEADE54DCB23A5A4D412E26 -29311A11222C343C1A323913485458545454555141534618342F3739323939343E39392F3A -32323A2F505529373A403E3B3C393A3A3A2431393B3A4040C85B404B58585455545458553B -1318245455575A584D3C57244D375857485939A9A2A94DB5855340576351406157241F5558 -615A605A -DA5C6060E2EDEFEFEFF0EDEEEBEBEEECECECECECECEBECEEEDEDEDE3DEA346376151513124 -2E2F1A0F27312F371D313A1342535354555553533E391A2234323B39373A393B3939393737 -3931373B395722393E3A4139393E3A403C183A393A393E3EDA424F4D51515354535353554D -184B5757595A595758324D274D405759445B42A99FAA45B29A61441D54553E585A1D245858 -61595C5C -DC5A5A60DEEDEEEEEEEFD055CB42E644A9AD37CE2EDBEAEBECEAEADF674F3A3A63604B3127 -2C291C0F221C181C1A1D2213184250545451514418111D1F1F1D24272424242422291D1F26 -29262424261C272927312F2E262C2E2E272F3434314449D7494D4C4D4B4C4D4F4D4B4B4F46 -3951585B5758585955222229242C53585061589F7EA96F714BB03C492E54454C542C4D544F -463E3724 -DE615A5CE0EDEFEDEEEF72D3E83CE546A3832CE327E7ECEBECEAEBE5593E3E376365482C29 -2C271C1127342F372F323213183C4C555555503111162E2E272931292C262C2C2726262229 -2426241F241C22242426242427292424262C313A3C4471C548424646494944484946464D49 -44395A5B5754595959222F1F1F22575553515A8272ADA22E60B040493C4C5A5A4D1A261F1C -26274B3E -DC615863E2EFEFEFEEEF59DCEA3EE7428D2E76E72EE9ECEDEDEAECE4293A463171654D2729 -2E2E1813292F2227262427161F3A515451544F29112E322F322C2F323A3A32342F322F2E2F -2E3431323437322F343A3B3C3A373A3A32393A445155D563554F5451535351555350545453 -502C585958575B5A541F1D16181A4659554B5C499CAA98375BB229184F3C5A574860677E46 -7A6C905A -DE5C5B61E0EFEFF0EFEEBA65D940D53CA19539E729EAECEDEEECECE52744572E6558463126 -2C29161C37392F372F313A1A2245545554533A261C3439323A323A34373C3232343732322F -2F323B32373737373934403E3A3C3A3937343940535AD854545353554F5753545753545457 -533E4D595A585A5A532216131118455A4F425C40B08E582E44412218533B5B573E83908858 -76658958 -DC5A5C5BE1EEEFF0F0EFE9594DBA3C57C0C553E646ECECEDEDEEECE42E326A346D5B442C26 -2C29131C3A3939343437321827495557544F2F13272F3B323A3734323A393B3A2F2E31322F -39323231322F37343B3C3E3B39393A37342F3C3B50C9925551515354535153535354555454 -554D40505A555B58491D111313133B6361485B51824B3C76ABA62C2655485B542E45404544 -443C4142 -DB535557DEF0F0F0EFF0EFEAE6EBE5E9E9EAE8EDE8ECEDEFEDEFEFE5405C5B446C50342E24 -2F2C111D373A373C39393B1A2E5353544F481C1131313234393B3A39323939323231313734 -34313131312F3437322F32342F292627292724273ADD39423C3B3C3E3C3A3231322E272726 -2622294454555950491D110F11132F5855584F60324624A9BDA92F464D5561543E9190928E -9A869297 -E1465453E1EFEFEFF0EFEEEDECEEECEBECEDEDEDEDEEEDEEEDEEEEE5633B26606544262F1D -2C2C131F3A3B34393139311342544F53514C1A1822272226262926221F1F1C1D1818161313 -181311131613131111110F0F0F0F1134494D4241ABC94C454641413E3E42373132312F2F32 -2C271C2F445551544B2C0F1111111F545C544561481F2FB7B467345540545A55659A9F9BA3 -A991B9CF -DE454645DDECEFF0EED045DA5CD395C7AE3AE785A29FE3EDEDEDEDE25C22265C5B441C2C1C -29227AD1CBCCD5CBBDCBCD3955554F4F48402ECBD4CCD0CDCDD3D1D0CD651313110F0F0D0D -0D0D0D0D0D0F0D0D0F0D0F0F0F112CC1C9CBCCC0D7CDCBC8C9CBCDCAC8CBC9C9D0CBCDD0C9 -B4BDA3223C3C53514939110F0F0F1631545561415B532C6D634C5A3C59595937AEB3C0DBE8 -E0DAD4D1 -DC40311DDCEDEDEDEC85CCEA32AE4585C729DE77328DD5ECEDEDECE35C1A1D4C5A5527291F -2624B7D2D4D1D7D3C0D8CD4154514954464B91D0D4D5D2D4D4D8D4D6D4C81A131311130F0D -0D0D0F0F0F0F0D0F0D0D0D0D0D1189B7BDBABADC7AAAA198ADAAA99CA99FA6A5A2A6A6B4AD -ADB0971A243E4B4641311311110F111F3257675A425953545560465B5C545991DBE6DCD6D0 -D4D4D4D5 -DB2E1F18D4EEEDECEDBF4DE9325B3755A985B96A4B6CDCECECECECE23C1A161A1D54312E29 -2722C7D9D0D8D3D4C2D0D14D50504F504550C5CFCED3CECBD1C8CBC7C3C24911130F13110D -0D0D0C0C0D0D0C0C0F0D0C0D0D0F1C1D1D2248DC221C1A1A22262C2E2E2F2C2F3446494C59 -545A5418163C4445412C1C110F0F11161C465B615A48505C4F45615889C4DEDBB59189A39F -9F9CA9A6 -DC1D131ADAEDEFEFEED385BFB441C9222C5C266AD726D8EDECECEDE06C321C13161A2C242C -2616181C1D1C1D1A18181A51514F4B50482213181A161816161316161311110F1C1D261D22 -130C0D0C0C0C0D0F0C0C0C0D0D0D0D0F111DDD24110D0D0D0D0D0D0D0C0D0F0D0D0D0D0D0F -0D0F0F0F111D4B57535B5B310F0D0F0F1A1C425A6A556C9AD3E5D4B3724D1D1A1613131311 -13131316 -DF1C1A18D9EEEDF0EFBD5CE6DEB3E6887AE983BDE29CE1EDEDEDEDE16A4F16131C242C1A26 -27111116130F1113110F11484C4C504F4F160D0F110F0F0D0D0F0D0D0F0C0C0F0D16181C1A -1A0F0D0D0C0D0C0C0F0D0F0C0C0D0F0D13AEBC180F0D0D0C0D0D0F0F0C0C0F0D0F0D0C0D0D -0F0F0C0F16315550585C5B571A0F0D1111222C5797CBE3DCC18E6065632713111111111111 -13111111 -DC241318DAEDF0F0F0EDEAEDEDECEDEAEAECE9EBECEAECEEEDEEEDE27E6318131D312C1D24 -260D0D0F0F0F0F0F0F0F113E4B4D4F4B3B180D0D0F0D0C0C0C0D0D0D0D0C0C0C0D110F1118 -11160F0C0C0D0C0D0C0C0C0D0D0D0D0F18DC2F130D0D0F0D0C0D0D0D0C0C0F0C0D0C0D0D0D -0D0C0D0D1D49604F5B5B5B58501611131C51B2DCDEBF977265715B604C1C3C22343C455159 -6F768389 -DC1C161AD6EFEED8E6DBE7EACEE9DBE9D7E0CCC9D2ECCCECEDECEDE26A2F1D1A242F26271A -130D0D0D0D0D0C0D0D0F4844454B4C452E160D0D0D0D0C0C0C0D0C0C0C0C0D0C0C0C0C0C0D -0C0D0C0D0D0C0C0D0D0D0C0C0D0F0F16D754160D0D0D0D0D0D0D0D0F0D0D0D0F0F1313181D -2C343732274255445A61615A9AC9DCC477311F312C3B50605761544BC1BFC2B7BDC5C9C8C8 -CACBC9CC -E01C181ACEEDEC41C544AB6A6A6C54BF61C52F514FE34FE7ECECECE3493E18222F2C292922 -110C0D0F0D0D0D0D0D0F514C465850413A130C0C0D0D0D0C0C0C0D0C0C0D0D0C0D0C0C0C0D -0C0C0D0D0C0C0F0C0C0D0D0D0D0D113EDA22181A222C2C3744404B555A596A6F7E88899592 -A29A9C4D32245445578DC0DBD9BC85391D1A18181C1F2C50463457BDC0C363C0B7C4C5CBCB -CAC9C4C4 -DD1A181CD3ECEB29712C6A2CE72E493B5AE049DE48D13AE5D8EAECE15829272C2F32241A1A -0F0C0D0C0D0F0D0D0D114F375055534D490F0D0F0C0C0C0F0C0C0D0D0D0D0D0D0F0D0D0D0F -0C0D0D0C0D0D0D0D0D0D0D0D0D0F13C7912F40545A6C6D7C83768E8D899097A197A6A29FA3 -9AA6A1392E326FAED6DBC7906C65635B27344B423229293A4F92BFBDC4C4BFC4BF8D6CC9C1 -BFCFDFE2 -DE1D1A16D4EAEA273C49312CE7293A5145E248DE492C24E042EAECE26A442E2C31311A2613 -0D0C0C0C0F0F0D0F0F11394D54535351290D11111618161C1F2424262E3239454441453A2C -1D110D0D0C0D0D0D0D0D0F0D0F0F1FE024130F1116243B48596A779B899C9FA2A5A1A6A6AA -A5A9A54D9CCDDCC791676A6367606059543CADB7BABABCBABFC0C5C9C7C9C4A3BCE6B2CAD7 -E4D3D0C2 -DE1A1A1AD1EAEA2F39A21D24E8263CC72CE448E149D434E6DEEBEDE2312F322C2926132F11 -0F110F13161C18182426395853555354243E444B515354595B58535A605B555A5C54616559 -5A544D413B37221C13110F0F0F16B7C51A110F110F131313131A222E4658637C91A3A3ADAA -88B7CFDBCBA16A61656D6A5B605C5C585A5B4DBFBFC4C2C1C3C7C7C5C9C895C1CDD6E6DED1 -C1BDA9B0 -DC1A181CD4ECE73B53D32634973453E327E64DE248DF3EDF60EAECDF3A3A2C262E13242E27 -2C444C4F4B514D53544155545457545334575C5B605C5B5C5C65576159606D6067616F6F61 -67765B67676C67675C57503E2722E046130F0F0F0F0D0F0F111111111616181C293B519BC8 -DEDBBA44516C6755615961605C5B5958605C6065C2C7C8C0C5C9C4C7C7C8C7C9C3ABD0CACC -CCCBCBCD -E2221A4CD2EDE9BCC8E6ADD189D7C7E9B2E9C0EAC7E9BAE9BDEDEDE4371F181C161F2E272F -37445759675C5B5B503A53545359535441585C6567676C616A6A60636365676D6A6C726572 -6F7C716F766D5A7A6F7C7E766DA1D74218130F0F0D0F0D0F0D0F0F0D0F0F111844A2D5DAB2 -5040652E456365594558595C60605B5B5B5B5B5B51B3C7C7CAC4C3C7C5CAC7C8CBC9CBCED0 -CDCCCFCB -E27CE0A2D8EEEFEFEEEFEEEFEFF0EDEFEDEFEDEFEEECEDEEEDEEEDE32E262C292E3232322C -3445446361615C6027575755575455534C6361636C6A6C63675C6063606C76776F67543B6A -6C6A72778279768679838E8590E16FA35885538282827E7976655979B9DACD852E1D1D1C18 -111311132C535C5C59341C274B5A58515355585A57554159BDC7C8CBC7CBC9C7CDCDC8CACC -CBCCD0C7 -E1E0A572DCEFF0EFEFF0DBEED4E2CFC0E5B2D0C5E5E5EEEEEFEDEDE33B3939322E312C271F -1F24344F5B6361464B5855555455534F463945595C616067655961676563716C6C725C456F -727979777E77797E88857C7CDAA289987A6F4D7E91988D859BC3DBD7BA989B95675C45372E -181A181F2737414446342E1D3C585B595358575A595B5B5C53BDCCC8C7C5CAC7CBCCC7CBCA -CACDC9CB -E2926D6FD7EFEFF0EFEFBDE957B29AD1E09CDB4B9AEAEDEDEEEDEEE33B2E1F1C1816161613 -160F13162E555A295557595758545540536763484D5C6C6C6C6158675A67776A6C6A7E6F77 -7A7182777683828282838979E5609085C05CBF6A8E8DBCD8DEC4A2A5A3ADA6A3B4AE9CA5A1 -9C9790979A766557454F42221D545A595B5C5A5C5A60595A6051C9CAC8CACAC7C9CBCAC9C9 -CBCBD1CA -DF868376D4EDEFEFF0EFE79F914C9A79DC53D12F9BEDEFF0EFECEDE35B605A3A1813161311 -1313110F131318485355585755575531617271656D5B6567656C67796C6F7C797C79777965 -8353797785798389889282E56C85508591DEDDE5BC9198A9A3ADB3ABB5B0BAB2B9B5BAC0BD -BDB2BFBFBCC0C2C0C1C0C0B7BD9B5832312F32343C39312C3161C5C8CBCACDC9CBCBCBCACB -CBD0D1CD -E17E866DD4EFEFF0F0EFEB41C96098E8E2C1EB3E46EDF0EEEFEDEEE6616D6F6A5127131311 -1111111111111353575757595857542C6A716A716F676C6A7A777779837C7977827982767E -82719877868383888991BADB857E888D90D292BC9BA9A6A3ABA3B3B5B0B7B4BDBDC1C0BBBF -BFBCC1BDBBC0C2C2C1C2C1C2C3C2BFBBAA9C908982899BAAC0C7C5C9C9CDCACDCBC9CCCDCD -D0CFD0CB -E0857A79D5EDF0F0EFF0EF3ADD9CAABFE079D54CA9E7EEEFF0EDEFE56A6A726F6776492F16 -13111113111137585855534D5857573B6F777E6D6A656D7C777E7A6F837C857E827A828576 -8879AE72837C8D8E909AE58695958D929798ABA6AAA6A5B0B0B4B0BAB9B3BDB5B7BDBFC2C0 -C2BBBDBDC2C3C5C4C1C5C7C1C3C7C7C5C8C3C4C4C2C4C5C8C7C8CBCAC9CACCC9CDCBCBCDD0 -D0D0D0CE -E17A7677D5EFF0F1F0F1F1EEF0EDEEEDEDECEDEFEFEFF0F0F1F0EFE6606771676C79657165 -67531F16184B504648493E4149505553717C838689908660715C768991858E8D89918E8383 -605C88B78E7A959595E0A9A297A292959B9CA59FA9A3A5AAB0AEB9B9BDBAC1BFC1C1C3C4C7 -C1C0C3C3C2C3C7C5C5C7C5C4C5C4C4C9C9C9C7C9C7CBC8C7C7C9C9CBBDC5CDCAC9CFC7CDD0 -CECDD1CE -E37A7777D3EFEFF1F0F1F1EFF0F0EFF0EEEFEEF0EFEFF0F0F0F0F0E8656A776F7C717C766C -6A676F1D3C54595857575855575A5855427E85868988828689827982829A928D8289908988 -86546F7CD1A3929A92E68395959295989AA5A5A5AA97ADB3B0B4BCC0BCBFC1BDC4C4C8C0BF -C4C0C0BFBFBCC5C7C4C3C7C4C4C7C7CAC9CAC4C5CBC5C9C9C7C9CBCCC7CFCEC7CBCBCCCDCD -CECFD0CC -E2777771D4EEEFF0EFF0E7959C9BEAD9BBD191E1A3EEF0F0F0F0F0E66D7177797C7C797C77 -717265454D57585A5854585858585B5C31888D7A8D9A8E8D91898D889295929A95A297929A -88898691A1BF6F90D6BF9BA298A2AAA3B3A3A6ADA5B3A9B0B3B2BCBFBFBFC1BCBFC5C7C1BB -C0C3C0BFC1C1C4C8C5C5C7C5C7C7C7C8C5C8C4C0C7C5C5C2C9C8CDC8C5CDC9CBCBCBCBCDCD -D1CCCECE -E2887A7ACFEDF0F0F0F0EFBBD26FD4AE5446DD8950F0F0F0F1F1F0E57A77716F7E86858576 -7A76724B3157595B5C58595C585758582E85918D82778E7A83887771919C838690868D8E83 -7A6D897C63D9D190DB7A92A1A1A6777EA99A717A987A7C9FB5917CA6BCBBBB59BFBDC7B090 -83888298859292959185B4B092BC83C0C7C4C24DC9C7C9C9919CC08872C78989AE8D9188A3 -7EB79890 -E4838379D6EFF0F1F0F1EFCDE0ABAA6A4C54E94F4BEFF0F0F0EFF0E66583797A82777A7783 -7C8676612F4559585B58595859575044375876767A5053908571729B4C5898956089537A46 -A3A54177A69FD3E19C6177559858B0AD6A51AD9846B0B46083A5C558BDBFA6546F79B7B097 -C5895C659B5C974D9CC86A7CCB54C4A6C4C0AA6CBBBDCBC57A5A95CDC0C46CCB49BF538695 -65ABCDAD -E0867785D4EFF1F0F1F0F1C8E3D17A5A8558EA4648EFEFF1F0F0EFE67A767A82828D7A8372 -83868683503432484D514F4D48464539679FC540C5837CA15945C5613A77A25A5BCB9BAD40 -C8513EB341C272779A76A64B95AB6DA16071894853BB4FC546CB5765BC58657E423E88B4CD -466C71A3C2A2BF51C1A55976D067C9A6AE4F5C856348C1C8766567AAC9B479C931B45992C4 -9FAECD60 -E47E867CD7F0F1F0F1F1F0D0E3E34291BF54EB5898EFEFF1F0F0EFE97C86838285958D8D8D -797A7E85796C503C32323739343E4D7C7E97B03AAB8888A66551C85A6176B45379C9C8AE45 -C99044B258C746585C82A94B88C557519F6FB98D54C5956A79C49092B5826188854DC0BBAD -BD606CC0C2C3CC63C8447A76C3B9CCADC4977C9761ADC7C48567635BC07279677AB957CDAB -C4AECEC0 -E58D7A7ACCEDF0EFF0EFF0ECEEEDE7E9ECE9D2EDE5F0F0F0EFEFEEE77A8271778682858983 -598983777E8679868586899C959295928E9C45C93E838597514F60B9604660D048CC58D145 -CB6544BC39C5638D8883B07242A99BB94F77AA5B4CC486BB467CBF5CB0BC485B59A3BFB99B -B395ADD25BC0B561BC7CC850BC76D3BCC5C059A657BFCA5BCD51CB6FA660795BB0BA5A8688 -6A9BCFBF -E48D8277D2EDEFF0F0EFF0EFF0F0EEEFEFEFECEFEEEFEFF0F0EFEDE07A778582797A71797A -4F866A71857A7E7E85888991979590858E7A3BA93A5B6CAD984DB2AE5C63BB85829F5BA145 -919B416C4D7E4589888571984B5AA189775386764C898E60798882ABBFBD92C0B491C9C086 -919ABF957171616063AB83636A8D8EBBC7B9C1C9C0BFC8A37EAE88B28882827A83857E77A3 -77B78692 -E5837982C9EEF0F0EFF0F0F0F1EFF0F0F1F0EFF0F0EFF0EFF0EFEFE07C797A7982766A7C7A -71777A726C766F83898D9888909A718E7C6C6A5A7E6F767A677E637791907789A38D8D8589 -857C867A857C7C8D9B89797A829588839B9B9195A29BA6B2AEABB0B4C0C0C4C1C0BFC3C3BF -C4C5BDC0C4C0C4C4C2C4C8C4C4CBC4C7CDC9C9C7CDCBCACCC8CDCACFC9CAD0CECCCBCCCAC8 -D0CACFCF -E27971726360726A61716A6A656F5C586D5A5B5C5C5C576A595C605C77767659597253657E -857A7277796F67546D7191869A908E7C7A5C678579989791909A909B91909CA19CA2A29B90 -8E898698959897989889889592A19B9C9F98A99FA3A3A3B2ABAEB3B7BDBFC0C2C3C5C1C1C5 -C5C8C5C8C7C4C8C5C5C4CCC7C7CBCBC7CCC8CBCACECACBCDCECECFD0C9CCD1CDCBD1D1CDCE -D4D0D0D3 -end -restore -%%Trailer diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob13.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob13.gif deleted file mode 100755 index 90c29e249..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob13.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob13.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob13.pdf deleted file mode 100644 index f8d7311d6..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype17/prob13.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob01a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob01a.eps deleted file mode 100755 index f167e14d5..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob01a.eps +++ /dev/null @@ -1,594 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Double_Pendulum.eps -%%CreationDate: 10/9/1995 -%%Pages: 0 -%%DocumentFonts: Symbol -%%+ Times-Roman -%%BoundingBox:179 462 387 656 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Symbol Symbol -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Symbol/Symbol 0 Z -%%EndEncoding -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -3350 2622 6475 2778 R -0 sg fill -gr -gs -3350.625 2622.625 6475.375 2778.375 R -1.25 slw 0 sg str -gr -gs -5850.625 2778.625 m -5850.625 5356.625 L -1.25 slw 0 sg str -gr -gs -5850.625 5356.625 m -5799.625 5355.625 L -1.25 slw 0 sg str -gr -gs -5746.625 5354.625 m -5707.625 5352.625 L -1.25 slw 0 sg str -gr -gs -5707.625 5352.625 m -5695.625 5351.625 L -1.25 slw 0 sg str -gr -gs -5642.625 5347.625 m -5635.625 5347.625 L -1.25 slw 0 sg str -gr -gs -5635.625 5347.625 m -5591.625 5343.625 L -1.25 slw 0 sg str -gr -gs -5538.625 5337.625 m -5493.625 5331.625 L -1.25 slw 0 sg str -gr -gs -5493.625 5331.625 m -5488.625 5330.625 L -1.25 slw 0 sg str -gr -gs -5435.625 5322.625 m -5422.625 5320.625 L -1.25 slw 0 sg str -gr -gs -5422.625 5320.625 m -5385.625 5313.625 L -1.25 slw 0 sg str -gr -gs -5333.625 5303.625 m -5283.625 5293.625 L -1.25 slw 0 sg str -gr -gs -5231.625 5281.625 m -5212.625 5276.625 L -1.25 slw 0 sg str -gr -gs -5212.625 5276.625 m -5182.625 5268.625 L -1.25 slw 0 sg str -gr -gs -5131.625 5253.625 m -5082.625 5238.625 L -1.25 slw 0 sg str -gr -gs -5031.625 5222.625 m -5006.625 5214.625 L -1.25 slw 0 sg str -gr -gs -5006.625 5214.625 m -4983.625 5206.625 L -1.25 slw 0 sg str -gr -gs -4933.625 5187.625 m -4886.625 5168.625 L -1.25 slw 0 sg str -gr -gs -4837.625 5148.625 m -4806.625 5135.625 L -1.25 slw 0 sg str -gr -gs -4806.625 5135.625 m -4790.625 5128.625 L -1.25 slw 0 sg str -gr -gs -4741.625 5105.625 m -4695.625 5082.625 L -1.25 slw 0 sg str -gr -gs -4648.625 5058.625 m -4613.625 5040.625 L -1.25 slw 0 sg str -gr -gs -4613.625 5040.625 m -4603.625 5034.625 L -1.25 slw 0 sg str -gr -gs -4557.625 5007.625 m -4551.625 5004.625 L -1.25 slw 0 sg str -gr -gs -4551.625 5004.625 m -4513.625 4982.625 L -1.25 slw 0 sg str -gr -gs -4468.625 4954.625 m -4429.625 4929.625 L -1.25 slw 0 sg str -gr -gs -4429.625 4929.625 m -4425.625 4926.625 L -1.25 slw 0 sg str -gr -gs -4381.625 4896.625 m -4370.625 4888.625 L -1.25 slw 0 sg str -gr -gs -4370.625 4888.625 m -4340.625 4866.625 L -1.25 slw 0 sg str -gr -gs -4297.625 4835.625 m -4256.625 4804.625 L -1.25 slw 0 sg str -gr -gs -4215.625 4771.625 m -4199.625 4758.625 L -1.25 slw 0 sg str -gr -gs -4199.625 4758.625 m -4176.625 4738.625 L -1.25 slw 0 sg str -gr -gs -4135.625 4703.625 m -4098.625 4669.625 L -1.25 slw 0 sg str -gr -gs -4059.625 4632.625 m -4040.625 4614.625 L -1.25 slw 0 sg str -gr -gs -4040.625 4614.625 m -4023.625 4597.625 L -1.25 slw 0 sg str -gr -gs -3985.625 4559.625 m -3951.625 4521.625 L -1.25 slw 0 sg str -gr -gs -3916.625 4481.625 m -3893.625 4456.625 L -1.25 slw 0 sg str -gr -gs -3893.625 4456.625 m -3882.625 4443.625 L -1.25 slw 0 sg str -gr -gs -3848.625 4402.625 m -3847.625 4401.625 L -1.25 slw 0 sg str -gr -gs -3847.625 4401.625 m -3816.625 4362.625 L -1.25 slw 0 sg str -gr -gs -3784.625 4320.625 m -3760.625 4287.625 L -1.25 slw 0 sg str -gr -gs -3760.625 4287.625 m -3754.625 4279.625 L -1.25 slw 0 sg str -gr -gs -3723.625 4235.625 m -3719.625 4229.625 L -1.25 slw 0 sg str -gr -gs -3719.625 4229.625 m -3695.625 4193.625 L -1.25 slw 0 sg str -gr -gs -3666.625 4148.625 m -3646.625 4116.625 L -1.25 slw 0 sg str -gr -gs -5850 3481 5775 3477 5738 3472 5701 3465 5665 3456 5629 3445 5594 3433 5559 3418 -5526 3402 5493 3384 5461 3364 5431 3342 5401 3319 5373 3295 5346 3268 5321 3241 -5297 3212 5275 3182 5254 3151 5254 3150 19 P -1.25 slw 0 sg str -gr -gs -5555 3038 5676 3299 R -1 sg fill -gr -/_Symbol ff [243 0 0 -243 0 0] mf sf -5555 3246 m 0 sg (q) show -gs -3888 3976 4062 4236 R -1 sg fill -gr -/_Times-Roman ff [243 0 0 -243 0 0] mf sf -3888 4184 m 0 sg (m) show -gs -6076 5226 6249 5486 R -1 sg fill -gr -6076 5434 m 2.43 slw 0 sg (m) show -gs -5850.625 2778.625 m -5850.625 5356.625 L -1.25 slw 0 sg str -gr -gs -3646.625 4116.625 m -5850.625 2778.625 L -1.25 slw 0 sg str -gr -gs -3506 3976 3786 4256 OV -0.75 sg fill -gr -gs -3506.625 3976.625 3786.375 4256.375 OV -1.25 slw 0 sg str -gr -gs -5710 5216 5990 5496 OV -0.25 sg fill -gr -gs -5710.625 5216.625 5990.375 5496.375 OV -1.25 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob01a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob01a.gif deleted file mode 100755 index 76f4049ed..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob01a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob01a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob01a.pdf deleted file mode 100644 index 36f54beba..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob01a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob02a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob02a.eps deleted file mode 100755 index 6c5823efc..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob02a.eps +++ /dev/null @@ -1,708 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Car_Crash.eps -%%CreationDate: 10/9/1995 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%BoundingBox:39 432 355 748 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -2786.625 1002.625 m -2786.625 2877.625 L -1.25 slw 0 sg str -gr -gs -2786.625 2877.625 m -911.625 2877.625 L -1.25 slw 0 sg str -gr -gs -911.625 4127.625 m -2786.625 4127.625 L -1.25 slw 0 sg str -gr -gs -2786.625 4127.625 m -2786.625 6002.625 L -1.25 slw 0 sg str -gr -gs -4036.625 6002.625 m -4036.625 4127.625 L -1.25 slw 0 sg str -gr -gs -4036.625 4127.625 m -5911.625 4127.625 L -1.25 slw 0 sg str -gr -gs -4036.625 1002.625 m -4036.625 2877.625 L -1.25 slw 0 sg str -gr -gs -4036.625 2877.625 m -5911.625 2877.625 L -1.25 slw 0 sg str -gr -gs -911 1002 2630 2721 R -0 0 0 1 1 1 [128 0 8 0 128 0 8 0] patfill -gr -gs -911.625 1002.625 2630.375 2721.375 R -1.25 slw 0 sg str -gr -gs -911 4283 2630 6002 R -0 0 0 1 1 1 [128 0 8 0 128 0 8 0] patfill -gr -gs -911.625 4283.625 2630.375 6002.375 R -1.25 slw 0 sg str -gr -gs -4192 4283 5911 6002 R -0 0 0 1 1 1 [128 0 8 0 128 0 8 0] patfill -gr -gs -4192.625 4283.625 5911.375 6002.375 R -1.25 slw 0 sg str -gr -gs -4192 1002 5911 2721 R -0 0 0 1 1 1 [128 0 8 0 128 0 8 0] patfill -gr -gs -4192.625 1002.625 5911.375 2721.375 R -1.25 slw 0 sg str -gr -gs -911.625 3502.625 m -1032.625 3502.625 L -1.25 slw 0 sg str -gr -gs -1085.625 3502.625 m -1205.625 3502.625 L -1.25 slw 0 sg str -gr -gs -1258.625 3502.625 m -1379.625 3502.625 L -1.25 slw 0 sg str -gr -gs -1432.625 3502.625 m -1552.625 3502.625 L -1.25 slw 0 sg str -gr -gs -1605.625 3502.625 m -1726.625 3502.625 L -1.25 slw 0 sg str -gr -gs -1779.625 3502.625 m -1900.625 3502.625 L -1.25 slw 0 sg str -gr -gs -1953.625 3502.625 m -2073.625 3502.625 L -1.25 slw 0 sg str -gr -gs -2126.625 3502.625 m -2247.625 3502.625 L -1.25 slw 0 sg str -gr -gs -2300.625 3502.625 m -2420.625 3502.625 L -1.25 slw 0 sg str -gr -gs -2473.625 3502.625 m -2594.625 3502.625 L -1.25 slw 0 sg str -gr -gs -2647.625 3502.625 m -2768.625 3502.625 L -1.25 slw 0 sg str -gr -gs -3411.625 4127.625 m -3411.625 4248.625 L -1.25 slw 0 sg str -gr -gs -3411.625 4301.625 m -3411.625 4421.625 L -1.25 slw 0 sg str -gr -gs -3411.625 4474.625 m -3411.625 4595.625 L -1.25 slw 0 sg str -gr -gs -3411.625 4648.625 m -3411.625 4768.625 L -1.25 slw 0 sg str -gr -gs -3411.625 4821.625 m -3411.625 4942.625 L -1.25 slw 0 sg str -gr -gs -3411.625 4995.625 m -3411.625 5116.625 L -1.25 slw 0 sg str -gr -gs -3411.625 5169.625 m -3411.625 5289.625 L -1.25 slw 0 sg str -gr -gs -3411.625 5342.625 m -3411.625 5463.625 L -1.25 slw 0 sg str -gr -gs -3411.625 5516.625 m -3411.625 5636.625 L -1.25 slw 0 sg str -gr -gs -3411.625 5689.625 m -3411.625 5810.625 L -1.25 slw 0 sg str -gr -gs -3411.625 5863.625 m -3411.625 5984.625 L -1.25 slw 0 sg str -gr -gs -3411.625 2877.625 m -3411.625 2756.625 L -1.25 slw 0 sg str -gr -gs -3411.625 2703.625 m -3411.625 2583.625 L -1.25 slw 0 sg str -gr -gs -3411.625 2530.625 m -3411.625 2409.625 L -1.25 slw 0 sg str -gr -gs -3411.625 2356.625 m -3411.625 2236.625 L -1.25 slw 0 sg str -gr -gs -3411.625 2183.625 m -3411.625 2062.625 L -1.25 slw 0 sg str -gr -gs -3411.625 2009.625 m -3411.625 1888.625 L -1.25 slw 0 sg str -gr -gs -3411.625 1835.625 m -3411.625 1715.625 L -1.25 slw 0 sg str -gr -gs -3411.625 1662.625 m -3411.625 1541.625 L -1.25 slw 0 sg str -gr -gs -3411.625 1488.625 m -3411.625 1368.625 L -1.25 slw 0 sg str -gr -gs -3411.625 1315.625 m -3411.625 1194.625 L -1.25 slw 0 sg str -gr -gs -3411.625 1141.625 m -3411.625 1020.625 L -1.25 slw 0 sg str -gr -gs -4036.625 3502.625 m -4157.625 3502.625 L -1.25 slw 0 sg str -gr -gs -4210.625 3502.625 m -4330.625 3502.625 L -1.25 slw 0 sg str -gr -gs -4383.625 3502.625 m -4504.625 3502.625 L -1.25 slw 0 sg str -gr -gs -4557.625 3502.625 m -4677.625 3502.625 L -1.25 slw 0 sg str -gr -gs -4730.625 3502.625 m -4851.625 3502.625 L -1.25 slw 0 sg str -gr -gs -4904.625 3502.625 m -5025.625 3502.625 L -1.25 slw 0 sg str -gr -gs -5078.625 3502.625 m -5198.625 3502.625 L -1.25 slw 0 sg str -gr -gs -5251.625 3502.625 m -5372.625 3502.625 L -1.25 slw 0 sg str -gr -gs -5425.625 3502.625 m -5545.625 3502.625 L -1.25 slw 0 sg str -gr -gs -5598.625 3502.625 m -5719.625 3502.625 L -1.25 slw 0 sg str -gr -gs -5772.625 3502.625 m -5893.625 3502.625 L -1.25 slw 0 sg str -gr -gs -4192 3033 5130 3346 R -0.5 sg fill -gr -gs -4192.625 3033.625 5130.375 3346.375 R -1.25 slw 0 sg str -gr -gs -4505 3033 4974 3346 R -1 sg fill -gr -gs -4505.625 3033.625 4974.375 3346.375 R -1.25 slw 0 sg str -gr -gs -4661 3033 4974 3346 R -0 sg fill -gr -gs -4661.625 3033.625 4974.375 3346.375 R -1.25 slw 0 sg str -gr -gs -2942 1080 3255 2330 R -0.75 sg fill -gr -gs -2942.625 1080.625 3255.375 2330.375 R -1.25 slw 0 sg str -gr -gs -2942 1236 3255 2018 R -1 sg fill -gr -gs -2942.625 1236.625 3255.375 2018.375 R -1.25 slw 0 sg str -gr -gs -2942 1393 3255 1861 R -0.5 sg fill -gr -gs -2942.625 1393.625 3255.375 1861.375 R -1.25 slw 0 sg str -gr -gs -3098 3033 3024 2875 3172 2875 2 P -0 sg fill -gr -gs -3098.625 2330.625 m -3098.625 3033.625 L -1.25 slw 0 sg str -gr -gs -3255 3189 3413 3115 3413 3263 2 P -0 sg fill -gr -gs -4192.625 3189.625 m -3255.625 3189.625 L -1.25 slw 0 sg str -gr -gs -4731 3059 4904 3320 R -1 sg fill -gr -/_Times-Roman ff [243 0 0 -243 0 0] mf sf -4731 3267 m 0 sg (A) show -gs -3020 1497 3177 1757 R -1 sg fill -gr -3020 1705 m 2.43 slw 0 sg (B) show -gs -5052 1314 5126 1472 4978 1472 2 P -0 sg fill -gr -gs -5052 2408 4978 2250 5126 2250 2 P -0 sg fill -gr -gs -5052.5 1314.5 m -5052.5 2408.5 L -35 slw 0 sg str -gr -gs -4505 1861 4663 1787 4663 1935 2 P -0 sg fill -gr -gs -5599 1861 5441 1935 5441 1787 2 P -0 sg fill -gr -gs -4505.5 1861.5 m -5599.5 1861.5 L -35 slw 0 sg str -gr -gs -4982 1045 5156 1306 R -1 sg fill -gr -4982 1253 m 2.43 slw 0 sg (N) show -gs -5646 1731 5785 1991 R -1 sg fill -gr -5646 1939 m 2.43 slw 0 sg (E) show -gs -5000 2452 5121 2712 R -1 sg fill -gr -5000 2660 m 2.43 slw 0 sg (S) show -gs -4236 1731 4461 1991 R -1 sg fill -gr -4236 1939 m 2.43 slw 0 sg (W) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob02a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob02a.gif deleted file mode 100755 index 11b6eba52..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob02a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob02a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob02a.pdf deleted file mode 100644 index 65fe57a57..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob02a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob03a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob03a.eps deleted file mode 100755 index cc28927b7..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob03a.eps +++ /dev/null @@ -1,578 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Pend_block.eps -%%CreationDate: 5/20/1996 -%%Pages: 0 -%%BoundingBox:203 507 401 660 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -3767 4731 6892 4887 R -0 0 0 1 1 1 [76 210 83 45 150 89 70 179] patfill -gr -gs -3767.625 4731.625 6892.375 4887.375 R -1.25 slw 0 sg str -gr -gs -5955 4106 6736 4731 R -0.75 sg fill -gr -gs -5955.625 4106.625 6736.375 4731.375 R -1.25 slw 0 sg str -gr -gs -3767 2543 4079 2856 OV -0.5 sg fill -gr -gs -3767.625 2543.625 4079.375 2856.375 OV -1.25 slw 0 sg str -gr -gs -5798 4575 5781 4574 5763 4571 5747 4566 5731 4559 5715 4551 5701 4541 5688 4529 -5676 4516 5666 4502 5658 4486 5651 4470 5646 4453 5643 4436 5642 4419 5643 4401 -5646 4384 5651 4367 5658 4351 5666 4335 5676 4321 5688 4308 5701 4296 5715 4286 -5731 4278 5747 4271 5763 4266 5781 4263 5798 4262 5816 4263 5833 4266 5850 4271 -5866 4278 5881 4286 5896 4296 5909 4308 5920 4321 5931 4335 5939 4351 5946 4367 -5951 4384 5954 4401 5955 4419 5954 4436 5951 4453 5946 4470 5939 4486 5931 4502 -5920 4516 5909 4529 5896 4541 5881 4551 5866 4559 5850 4566 5833 4571 5816 4574 -5798 4575 56 P closepath -1 sg fill -gr -gs -5798.625 4575.625 m -5781.625 4574.625 L -1.25 slw 0 sg str -gr -gs -5781.625 4574.625 m -5763.625 4571.625 L -1.25 slw 0 sg str -gr -gs -5763.625 4571.625 m -5748.625 4566.625 L -1.25 slw 0 sg str -gr -gs -5747.625 4566.625 m -5731.625 4559.625 L -1.25 slw 0 sg str -gr -gs -5701.625 4541.625 m -5688.625 4529.625 L -1.25 slw 0 sg str -gr -gs -5688.625 4529.625 m -5676.625 4516.625 L -1.25 slw 0 sg str -gr -gs -5676.625 4516.625 m -5667.625 4503.625 L -1.25 slw 0 sg str -gr -gs -5646.625 4454.625 m -5646.625 4453.625 L -1.25 slw 0 sg str -gr -gs -5646.625 4453.625 m -5643.625 4436.625 L -1.25 slw 0 sg str -gr -gs -5643.625 4436.625 m -5642.625 4419.625 L -1.25 slw 0 sg str -gr -gs -5642.625 4419.625 m -5643.625 4404.625 L -1.25 slw 0 sg str -gr -gs -5657.625 4353.625 m -5658.625 4351.625 L -1.25 slw 0 sg str -gr -gs -5658.625 4351.625 m -5666.625 4335.625 L -1.25 slw 0 sg str -gr -gs -5666.625 4335.625 m -5676.625 4321.625 L -1.25 slw 0 sg str -gr -gs -5676.625 4321.625 m -5685.625 4311.625 L -1.25 slw 0 sg str -gr -gs -5728.625 4280.625 m -5731.625 4278.625 L -1.25 slw 0 sg str -gr -gs -5731.625 4278.625 m -5747.625 4271.625 L -1.25 slw 0 sg str -gr -gs -5747.625 4271.625 m -5763.625 4266.625 L -1.25 slw 0 sg str -gr -gs -5763.625 4266.625 m -5776.625 4264.625 L -1.25 slw 0 sg str -gr -gs -5829.625 4265.625 m -5833.625 4266.625 L -1.25 slw 0 sg str -gr -gs -5833.625 4266.625 m -5850.625 4271.625 L -1.25 slw 0 sg str -gr -gs -5850.625 4271.625 m -5866.625 4278.625 L -1.25 slw 0 sg str -gr -gs -5866.625 4278.625 m -5876.625 4283.625 L -1.25 slw 0 sg str -gr -gs -5917.625 4317.625 m -5920.625 4321.625 L -1.25 slw 0 sg str -gr -gs -5920.625 4321.625 m -5931.625 4335.625 L -1.25 slw 0 sg str -gr -gs -5931.625 4335.625 m -5939.625 4351.625 L -1.25 slw 0 sg str -gr -gs -5939.625 4351.625 m -5943.625 4361.625 L -1.25 slw 0 sg str -gr -gs -5955.625 4412.625 m -5955.625 4419.625 L -1.25 slw 0 sg str -gr -gs -5955.625 4419.625 m -5954.625 4436.625 L -1.25 slw 0 sg str -gr -gs -5954.625 4436.625 m -5951.625 4453.625 L -1.25 slw 0 sg str -gr -gs -5951.625 4453.625 m -5948.625 4462.625 L -1.25 slw 0 sg str -gr -gs -5925.625 4510.625 m -5920.625 4516.625 L -1.25 slw 0 sg str -gr -gs -5920.625 4516.625 m -5909.625 4529.625 L -1.25 slw 0 sg str -gr -gs -5909.625 4529.625 m -5896.625 4541.625 L -1.25 slw 0 sg str -gr -gs -5896.625 4541.625 m -5889.625 4546.625 L -1.25 slw 0 sg str -gr -gs -5841.625 4569.625 m -5833.625 4571.625 L -1.25 slw 0 sg str -gr -gs -5833.625 4571.625 m -5816.625 4574.625 L -1.25 slw 0 sg str -gr -gs -5816.625 4574.625 m -5798.625 4575.625 L -1.25 slw 0 sg str -gr -gs -5746 2648 5850 2752 OV -0 sg fill -gr -gs -5798.625 2700.625 m -4079.625 2700.625 L -1.25 slw 0 sg str -gr -gs -5798.625 2700.625 m -5798.625 2751.625 L -1.25 slw 0 sg str -gr -gs -5798.625 2804.625 m -5798.625 2855.625 L -1.25 slw 0 sg str -gr -gs -5798.625 2908.625 m -5798.625 2959.625 L -1.25 slw 0 sg str -gr -gs -5798.625 3012.625 m -5798.625 3064.625 L -1.25 slw 0 sg str -gr -gs -5798.625 3117.625 m -5798.625 3168.625 L -1.25 slw 0 sg str -gr -gs -5798.625 3221.625 m -5798.625 3272.625 L -1.25 slw 0 sg str -gr -gs -5798.625 3325.625 m -5798.625 3376.625 L -1.25 slw 0 sg str -gr -gs -5798.625 3429.625 m -5798.625 3480.625 L -1.25 slw 0 sg str -gr -gs -5798.625 3533.625 m -5798.625 3584.625 L -1.25 slw 0 sg str -gr -gs -5798.625 3637.625 m -5798.625 3689.625 L -1.25 slw 0 sg str -gr -gs -5798.625 3742.625 m -5798.625 3793.625 L -1.25 slw 0 sg str -gr -gs -5798.625 3846.625 m -5798.625 3897.625 L -1.25 slw 0 sg str -gr -gs -5798.625 3950.625 m -5798.625 4001.625 L -1.25 slw 0 sg str -gr -gs -5798.625 4054.625 m -5798.625 4105.625 L -1.25 slw 0 sg str -gr -gs -5798.625 4158.625 m -5798.625 4209.625 L -1.25 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob03a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob03a.gif deleted file mode 100755 index c37a8ccae..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob03a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob03a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob03a.pdf deleted file mode 100644 index d5debccd2..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob03a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob04a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob04a.eps deleted file mode 100755 index 6d574eb00..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob04a.eps +++ /dev/null @@ -1,348 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Equil_coll.eps -%%CreationDate: 5/16/1996 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%BoundingBox:177 488 401 615 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -6267 4106 6892 4731 OV -0.5 sg fill -gr -gs -6267.625 4106.625 6892.375 4731.375 OV -1.25 slw 0 sg str -gr -gs -6267 3481 6892 4106 OV -0.5 sg fill -gr -gs -6267.625 3481.625 6892.375 4106.375 OV -1.25 slw 0 sg str -gr -gs -3142 3793 3767 4419 OV -0.5 sg fill -gr -gs -3142.625 3793.625 3767.375 4419.375 OV -1.25 slw 0 sg str -gr -gs -5173 4106 5005 4151 5005 4061 2 P -0 sg fill -gr -gs -3923.625 4106.625 m -5005.625 4106.625 L -1.25 slw 0 sg str -gr -gs -3376 3325 3533 3655 R -1 sg fill -gr -/_Times-Roman ff [312 0 0 -312 0 0] mf sf -3376 3568 m 0 sg (1) show -gs -6267 3160 6423 3490 R -1 sg fill -gr -6267 3403 m 3.12 slw 0 sg (2) show -gs -6267 4879 6423 5209 R -1 sg fill -gr -6267 5122 m 3.12 slw 0 sg (3) show -gs -4079 3793 4322 4054 R -1 sg fill -gr -/_Times-Roman ff [243 0 0 -243 0 0] mf sf -4079 3983 m 0 sg (v1) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob04a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob04a.gif deleted file mode 100755 index d096ecca1..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob04a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob04a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob04a.pdf deleted file mode 100644 index 3898e5aa9..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob04a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob05.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob05.eps deleted file mode 100755 index a6242bc22..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob05.eps +++ /dev/null @@ -1,471 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 - -%%Creator: MiniCad+ 4.0 - -%%Title: hw7p12f.eps - -%%CreationDate: 10/9/1994 - -%%Pages: 0 - -%%DocumentFonts: Times-Roman - -%%BoundingBox:145 433 416 697 - -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -3992.625 5512.625 m -4113.625 5512.625 L -1.25 slw 0 sg str -gr -gs -4166.625 5512.625 m -4286.625 5512.625 L -1.25 slw 0 sg str -gr -gs -4339.625 5512.625 m -4460.625 5512.625 L -1.25 slw 0 sg str -gr -gs -4513.625 5512.625 m -4633.625 5512.625 L -1.25 slw 0 sg str -gr -gs -4686.625 5512.625 m -4807.625 5512.625 L -1.25 slw 0 sg str -gr -gs -4860.625 5512.625 m -4981.625 5512.625 L -1.25 slw 0 sg str -gr -gs -5034.625 5512.625 m -5154.625 5512.625 L -1.25 slw 0 sg str -gr -gs -5207.625 5512.625 m -5328.625 5512.625 L -1.25 slw 0 sg str -gr -gs -5381.625 5512.625 m -5399.625 5512.625 L -1.25 slw 0 sg str -gr -gs -3055.625 5061.625 m -3176.625 5061.625 L -1.25 slw 0 sg str -gr -gs -3229.625 5061.625 m -3349.625 5061.625 L -1.25 slw 0 sg str -gr -gs -3402.625 5061.625 m -3523.625 5061.625 L -1.25 slw 0 sg str -gr -gs -3576.625 5061.625 m -3696.625 5061.625 L -1.25 slw 0 sg str -gr -gs -3749.625 5061.625 m -3870.625 5061.625 L -1.25 slw 0 sg str -gr -gs -3923.625 5061.625 m -4044.625 5061.625 L -1.25 slw 0 sg str -gr -gs -4097.625 5061.625 m -4217.625 5061.625 L -1.25 slw 0 sg str -gr -gs -4270.625 5061.625 m -4391.625 5061.625 L -1.25 slw 0 sg str -gr -gs -4444.625 5061.625 m -4564.625 5061.625 L -1.25 slw 0 sg str -gr -gs -4617.625 5061.625 m -4738.625 5061.625 L -1.25 slw 0 sg str -gr -gs -5076.75 2221.75 m -5076.75 5346.75 L -17.5 slw 0 sg str -gr -gs -4921 5347 5251 5677 OV -0.5 sg fill -gr -gs -4920.75 5346.75 5251.25 5677.25 OV -17.5 slw 0 sg str -gr -gs -5076.75 2221.75 m -3514.75 4930.75 L -17.5 slw 0 sg str -gr -gs -3289 4896 3619 5226 OV -0 sg fill -gr -gs -3288.75 4895.75 3619.25 5226.25 OV -17.5 slw 0 sg str -gr -gs -4452 5069 4505 4913 4452 4913 4401 4913 4452 5069 4 P closepath -0 sg fill -gr -gs -4443 5060 4496 4904 4443 4904 4392 4904 4443 5060 4 P closepath -17.5 slw 0 sg str -gr -gs -4452 5503 4505 5660 4452 5660 4401 5660 4452 5503 4 P closepath -0 sg fill -gr -gs -4443 5494 4496 5651 4443 5651 4392 5651 4443 5494 4 P closepath -17.5 slw 0 sg str -gr -gs -4409 5174 4513 5399 R -1 sg fill -gr -/_Times-Roman ff [208 0 0 -208 0 0] mf sf -4409 5330 m 0 sg (d) show -gs -2768 4948 3029 5174 R -1 sg fill -gr -2768 5104 m 2.08 slw 0 sg (m1) show -gs -5425 5399 5685 5625 R -1 sg fill -gr -5425 5555 m 2.08 slw 0 sg (m2) show -gs -4451.75 4912.75 m -4451.75 4565.75 L -17.5 slw 0 sg str -gr -gs -4451.75 6006.75 m -4451.75 5659.75 L -17.5 slw 0 sg str -gr -gs -3202 1910 6970 2240 R -0.5 sg fill -gr -gs -3201.75 1909.75 6970.25 2240.25 R -17.5 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob05.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob05.gif deleted file mode 100755 index f431b8db5..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob05.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob05.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob05.pdf deleted file mode 100644 index 93f577d76..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob05.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob07a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob07a.eps deleted file mode 100755 index 7964a1539..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob07a.eps +++ /dev/null @@ -1,544 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Blocks_Spring.eps -%%CreationDate: 10/21/1995 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%BoundingBox:126 488 406 685 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -2432 3151 6807 3307 R -0 0 0 1 1 1 [247 189 255 111 251 191 239 254] patfill -gr -gs -2432.625 3151.625 6807.375 3307.375 R -1.25 slw 0 sg str -gr -gs -4932 2526 5557 3151 R -0.93 sg fill -gr -gs -4932.625 2526.625 5557.375 3151.375 R -1.25 slw 0 sg str -gr -gs -3682 2213 3524 2287 3524 2139 2 P -0 sg fill -gr -gs -3057.625 2213.625 m -3682.625 2213.625 L -1.25 slw 0 sg str -gr -gs -4619 2213 4777 2139 4777 2287 2 P -0 sg fill -gr -gs -5245.625 2213.625 m -4619.625 2213.625 L -1.25 slw 0 sg str -gr -gs -2779 2101 3022 2326 R -1 sg fill -gr -/_Times-Roman ff [208 0 0 -208 0 0] mf sf -2779 2257 m 0 sg (Vo) show -gs -5279 2101 5522 2326 R -1 sg fill -gr -5279 2257 m 2.08 slw 0 sg (Vo) show -gs -4932.625 2838.625 m -4776.625 2838.625 L -1.25 slw 0 sg str -gr -gs -4698 2682 4854 2995 OV -1 sg fill -gr -gs -4698.625 2682.625 4854.375 2995.375 OV -1.25 slw 0 sg str -gr -gs -4619 2682 4776 2995 OV -1 sg fill -gr -gs -4619.625 2682.625 4776.375 2995.375 OV -1.25 slw 0 sg str -gr -gs -4541 2682 4698 2995 OV -1 sg fill -gr -gs -4541.625 2682.625 4698.375 2995.375 OV -1.25 slw 0 sg str -gr -gs -4463 2682 4619 2995 OV -1 sg fill -gr -gs -4463.625 2682.625 4619.375 2995.375 OV -1.25 slw 0 sg str -gr -gs -4389 2682 4541 2990 OV -1 sg fill -gr -gs -4389.625 2682.625 4541.375 2990.375 OV -1.25 slw 0 sg str -gr -gs -4307 2682 4463 2995 OV -1 sg fill -gr -gs -4307.625 2682.625 4463.375 2995.375 OV -1.25 slw 0 sg str -gr -gs -4229.625 2838.625 m -4385.625 2838.625 L -1.25 slw 0 sg str -gr -gs -4385.625 2838.625 m -4385.625 2995.625 L -1.25 slw 0 sg str -gr -gs -5106 2726 5383 2951 R -1 sg fill -gr -5106 2882 m 2.08 slw 0 sg (M2) show -gs -2744 2526 3369 3151 R -0 0 0 1 1 1 [8 66 0 144 4 64 16 1] patfill -gr -gs -2744.625 2526.625 3369.375 3151.375 R -1.25 slw 0 sg str -gr -gs -2918 2726 3196 2951 R -1 sg fill -gr -2918 2882 m 2.08 slw 0 sg (M1) show -gs -2432 4870 6807 5026 R -0 0 0 1 1 1 [247 189 255 111 251 191 239 254] patfill -gr -gs -2432.625 4870.625 6807.375 5026.375 R -1.25 slw 0 sg str -gr -gs -4424 4245 5049 4870 R -0 0 0 1 1 1 [8 66 0 144 4 64 16 1] patfill -gr -gs -4424.625 4245.625 5049.375 4870.375 R -1.25 slw 0 sg str -gr -gs -5557 4245 6182 4870 R -0.93 sg fill -gr -gs -5557.625 4245.625 6182.375 4870.375 R -1.25 slw 0 sg str -gr -gs -5362 4401 5440 4714 OV -1 sg fill -gr -gs -5362.625 4401.625 5440.375 4714.375 OV -1.25 slw 0 sg str -gr -gs -5323 4401 5401 4714 OV -1 sg fill -gr -gs -5323.625 4401.625 5401.375 4714.375 OV -1.25 slw 0 sg str -gr -gs -5284 4401 5362 4714 OV -1 sg fill -gr -gs -5284.625 4401.625 5362.375 4714.375 OV -1.25 slw 0 sg str -gr -gs -5245 4401 5323 4714 OV -1 sg fill -gr -gs -5245.625 4401.625 5323.375 4714.375 OV -1.25 slw 0 sg str -gr -gs -5205 4401 5284 4714 OV -1 sg fill -gr -gs -5205.625 4401.625 5284.375 4714.375 OV -1.25 slw 0 sg str -gr -gs -5166 4401 5245 4714 OV -1 sg fill -gr -gs -5166.625 4401.625 5245.375 4714.375 OV -1.25 slw 0 sg str -gr -gs -5205.625 4714.625 m -5205.625 4557.625 L -1.25 slw 0 sg str -gr -gs -5205.625 4557.625 m -5049.625 4557.625 L -1.25 slw 0 sg str -gr -gs -5440.625 4557.625 m -5557.625 4557.625 L -1.25 slw 0 sg str -gr -gs -5010 4088 4852 4162 4852 4014 2 P -0 sg fill -gr -gs -4619.625 4088.625 m -5010.625 4088.625 L -1.25 slw 0 sg str -gr -gs -4433 3976 4572 4201 R -1 sg fill -gr -4433 4132 m 2.08 slw 0 sg (V) show -gs -6143 4088 5985 4162 5985 4014 2 P -0 sg fill -gr -gs -5752.625 4088.625 m -6143.625 4088.625 L -1.25 slw 0 sg str -gr -gs -5566 3976 5704 4201 R -1 sg fill -gr -5566 4132 m 2.08 slw 0 sg (V) show -gs -4598 4444 4876 4670 R -1 sg fill -gr -4598 4600 m 2.08 slw 0 sg (M1) show -gs -5731 4444 6008 4670 R -1 sg fill -gr -5731 4600 m 2.08 slw 0 sg (M2) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob07a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob07a.gif deleted file mode 100755 index d9da023c4..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob07a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob07a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob07a.pdf deleted file mode 100644 index c707b0c34..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob07a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av1.eps deleted file mode 100755 index dfacf5d08..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av1.eps +++ /dev/null @@ -1,1461 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Thu, Oct 24, 1996 06:49 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/rx0 0 def /ry0 0 def /rx1 0 def /ry1 0 def -/tmp0 0 def /tmp1 0 def -/packedRed 0 def /packedGreen 0 def /packedBlue 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/setuserscreendict 22 dict def -setuserscreendict begin - -/tempctm matrix def -/temprot matrix def -/tempscale matrix def - -/concatprocs{ - /proc2 exch cvlit def - /proc1 exch cvlit def - /newproc proc1 length proc2 length add array def - newproc 0 proc1 putinterval - newproc proc1 length proc2 putinterval - newproc cvx -}def - -/resmatrix matrix def -/findresolution{ - 72 0 resmatrix defaultmatrix dtransform - /yres xdef /xres xdef - xres dup mul yres dup mul add sqrt -}def -end - -/setuserscreen{ - setuserscreendict begin - /spotfunction xdef - /screenangle xdef - /cellsize xdef - - /m tempctm currentmatrix def - /rm screenangle temprot rotate def - /sm cellsize dup tempscale scale def - - sm rm m m concatmatrix m concatmatrix pop - 1 0 m dtransform /y1 xdef /x1 xdef - /veclength x1 dup mul y1 dup mul add sqrt def - /frequency findresolution veclength div def - /newscreenangle y1 x1 atan def - m 2 get m 1 get mul m 0 get m 3 get mul sub 0 gt - { - { neg } /spotfunction load concatprocs - /spotfunction xdef - } if - frequency newscreenangle /spotfunction load setscreen - end -}def - -/setpatterndict 18 dict def -setpatterndict begin -/bitison{ - /ybit xdef /xbit xdef - /bytevalue bstring ybit bwidth mul xbit 8 idiv add get def - /mask 1 7 xbit 8 mod sub bitshift def - bytevalue mask and 0 ne -}def -end - -/bitpatternspotfunction{ - setpatterndict begin - /y xdef /x xdef - /xindex x 1 add 2 div bpside mul cvi def - /yindex y 1 add 2 div bpside mul cvi def - xindex yindex bitison - { /onbits onbits 1 add def 1 } - { /offbits offbits 1 add def 0 } - ifelse - end -}def - -/setpattern{ - setpatterndict begin - /cellsz xdef - /angle xdef - /bwidth xdef - /bpside xdef - /bstring xdef - - /onbits 0 def /offbits 0 def - cellsz angle /bitpatternspotfunction load setuserscreen - {} settransfer - offbits offbits onbits add div setgray - end -}def - -/FillPattern{ % patternstring -- - /pat xdef - gsave - pat 8 1 0 72 300 32 div div setpattern - fill - grestore -}def - - - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .5 sub round .5 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - - - - -% **** begin image stuff ***** -% The following are used for images. This has to be kept -% in synch with corresponding code in ImageDisp.c.In particular -% the expansion factor, 8, has to be in synch. -% packedcolor is (red*256+green)*256+blue - -/SetPackedColor{ % packedcolor SetPackedColor -- - dup 256 mod /tmp0 xdef % extract blue - 256 idiv - dup 256 mod /tmp1 xdef % extract green - 256 idiv % extract red - 255 div /packedRed xdef - tmp1 255 div /packedGreen xdef - tmp0 255 div /packedBlue xdef -}bdef - -/IR_FillRect{ - gsave - newpath - rx0 ry0 M - rx1 ry0 L - rx1 ry1 L - rx0 ry1 L - closepath - packedRed packedGreen packedBlue setrgbcolor - fill - grestore -}bdef - -/NewRectImageLine{ % x0 y0 x1 y1 packedcolor NewRectImageLine -- - SetPackedColor - - /ry1 xdef /rx1 xdef /ry0 xdef /rx0 xdef % remember starting rectange for following calls - - IR_FillRect -}bdef - -/rx{ % xdist rx -- - 8 div - dup 0 lt - { rx0 /rx1 xdef rx1 add /rx0 xdef } % neg delta steps left - { rx1 /rx0 xdef rx0 add /rx1 xdef } - ifelse - IR_FillRect -}bdef - -/ry{ % ydist rr -- - 8 div - dup 0 lt - { ry1 /ry0 xdef ry0 exch sub /ry1 xdef } % neg delta steps down - { ry0 /ry1 xdef ry1 exch sub /ry0 xdef } - ifelse - IR_FillRect -}bdef - - -/cx{ % xdist packedcolor cx -- - SetPackedColor - rx -}bdef - -/cy{ % ydist packedcolor cx -- - SetPackedColor - ry -}bdef - -% **** end image stuff ***** - - - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -45.50 10.00 45.50 249.00 MacLine -549.50 10.00 549.50 249.00 MacLine -1 ps -1.00 ps -549.50 249.50 542.50 249.50 MacLine -45.50 249.50 52.50 249.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(-2) 33.12 252.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 244.00 546.00 244.00 MacLine -grestore -1.00 ps -549.50 243.50 546.00 243.50 MacLine -45.50 243.50 49.00 243.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 238.00 546.00 238.00 MacLine -grestore -1.00 ps -549.50 237.50 546.00 237.50 MacLine -45.50 237.50 49.00 237.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 232.00 546.00 232.00 MacLine -grestore -1.00 ps -549.50 231.50 546.00 231.50 MacLine -45.50 231.50 49.00 231.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 226.00 546.00 226.00 MacLine -grestore -1.00 ps -549.50 225.50 546.00 225.50 MacLine -45.50 225.50 49.00 225.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 220.00 544.25 220.00 MacLine -grestore -1.00 ps -549.50 219.50 544.25 219.50 MacLine -45.50 219.50 50.75 219.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 214.00 546.00 214.00 MacLine -grestore -1.00 ps -549.50 213.50 546.00 213.50 MacLine -45.50 213.50 49.00 213.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 208.00 546.00 208.00 MacLine -grestore -1.00 ps -549.50 207.50 546.00 207.50 MacLine -45.50 207.50 49.00 207.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 202.00 546.00 202.00 MacLine -grestore -1.00 ps -549.50 201.50 546.00 201.50 MacLine -45.50 201.50 49.00 201.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 196.00 546.00 196.00 MacLine -grestore -1.00 ps -549.50 195.50 546.00 195.50 MacLine -45.50 195.50 49.00 195.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 189.88 542.50 189.88 MacLine -grestore -1.00 ps -549.50 189.50 542.50 189.50 MacLine -45.50 189.50 52.50 189.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-1) 33.12 192.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 184.00 546.00 184.00 MacLine -grestore -1.00 ps -549.50 183.50 546.00 183.50 MacLine -45.50 183.50 49.00 183.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 178.00 546.00 178.00 MacLine -grestore -1.00 ps -549.50 177.50 546.00 177.50 MacLine -45.50 177.50 49.00 177.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 172.00 546.00 172.00 MacLine -grestore -1.00 ps -549.50 171.50 546.00 171.50 MacLine -45.50 171.50 49.00 171.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 166.00 546.00 166.00 MacLine -grestore -1.00 ps -549.50 165.50 546.00 165.50 MacLine -45.50 165.50 49.00 165.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 160.00 544.25 160.00 MacLine -grestore -1.00 ps -549.50 159.50 544.25 159.50 MacLine -45.50 159.50 50.75 159.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 154.00 546.00 154.00 MacLine -grestore -1.00 ps -549.50 153.50 546.00 153.50 MacLine -45.50 153.50 49.00 153.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 148.00 546.00 148.00 MacLine -grestore -1.00 ps -549.50 147.50 546.00 147.50 MacLine -45.50 147.50 49.00 147.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 142.00 546.00 142.00 MacLine -grestore -1.00 ps -549.50 141.50 546.00 141.50 MacLine -45.50 141.50 49.00 141.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 136.00 546.00 136.00 MacLine -grestore -1.00 ps -549.50 135.50 546.00 135.50 MacLine -45.50 135.50 49.00 135.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 129.88 542.50 129.88 MacLine -grestore -1.00 ps -549.50 129.50 542.50 129.50 MacLine -45.50 129.50 52.50 129.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 36.50 132.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 124.00 546.00 124.00 MacLine -grestore -1.00 ps -549.50 123.50 546.00 123.50 MacLine -45.50 123.50 49.00 123.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 118.00 546.00 118.00 MacLine -grestore -1.00 ps -549.50 117.50 546.00 117.50 MacLine -45.50 117.50 49.00 117.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 112.00 546.00 112.00 MacLine -grestore -1.00 ps -549.50 111.50 546.00 111.50 MacLine -45.50 111.50 49.00 111.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 106.00 546.00 106.00 MacLine -grestore -1.00 ps -549.50 105.50 546.00 105.50 MacLine -45.50 105.50 49.00 105.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 100.00 544.25 100.00 MacLine -grestore -1.00 ps -549.50 99.50 544.25 99.50 MacLine -45.50 99.50 50.75 99.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 94.00 546.00 94.00 MacLine -grestore -1.00 ps -549.50 93.50 546.00 93.50 MacLine -45.50 93.50 49.00 93.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 88.00 546.00 88.00 MacLine -grestore -1.00 ps -549.50 87.50 546.00 87.50 MacLine -45.50 87.50 49.00 87.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 82.00 546.00 82.00 MacLine -grestore -1.00 ps -549.50 81.50 546.00 81.50 MacLine -45.50 81.50 49.00 81.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 76.00 546.00 76.00 MacLine -grestore -1.00 ps -549.50 75.50 546.00 75.50 MacLine -45.50 75.50 49.00 75.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 69.88 542.50 69.88 MacLine -grestore -1.00 ps -549.50 69.50 542.50 69.50 MacLine -45.50 69.50 52.50 69.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(1) 36.50 72.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 64.00 546.00 64.00 MacLine -grestore -1.00 ps -549.50 63.50 546.00 63.50 MacLine -45.50 63.50 49.00 63.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 58.00 546.00 58.00 MacLine -grestore -1.00 ps -549.50 57.50 546.00 57.50 MacLine -45.50 57.50 49.00 57.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 52.00 546.00 52.00 MacLine -grestore -1.00 ps -549.50 51.50 546.00 51.50 MacLine -45.50 51.50 49.00 51.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 46.00 546.00 46.00 MacLine -grestore -1.00 ps -549.50 45.50 546.00 45.50 MacLine -45.50 45.50 49.00 45.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 40.00 544.25 40.00 MacLine -grestore -1.00 ps -549.50 39.50 544.25 39.50 MacLine -45.50 39.50 50.75 39.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 34.00 546.00 34.00 MacLine -grestore -1.00 ps -549.50 33.50 546.00 33.50 MacLine -45.50 33.50 49.00 33.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 28.00 546.00 28.00 MacLine -grestore -1.00 ps -549.50 27.50 546.00 27.50 MacLine -45.50 27.50 49.00 27.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 22.00 546.00 22.00 MacLine -grestore -1.00 ps -549.50 21.50 546.00 21.50 MacLine -45.50 21.50 49.00 21.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 16.00 546.00 16.00 MacLine -grestore -1.00 ps -549.50 15.50 546.00 15.50 MacLine -45.50 15.50 49.00 15.50 MacLine -1 ps -1.00 ps -549.50 9.50 542.50 9.50 MacLine -45.50 9.50 52.50 9.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 36.50 12.75 5.50 WS -gsave 1.00 ps 46.50 130.00 549.50 130.00 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 148.12 translate -90 rotate -(y \(m\)) 0.00 0.00 36.38 WS -grestore -1.00 ps -46.00 249.50 549.00 249.50 MacLine -46.00 9.50 549.00 9.50 MacLine -1 ps -1.00 ps -45.50 9.50 45.50 16.50 MacLine -45.50 249.50 45.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-4) 41.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -52.25 246.00 52.25 13.00 MacLine -grestore -1.00 ps -51.75 9.50 51.75 13.00 MacLine -51.75 249.50 51.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -58.62 246.00 58.62 13.00 MacLine -grestore -1.00 ps -58.12 9.50 58.12 13.00 MacLine -58.12 249.50 58.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -64.88 246.00 64.88 13.00 MacLine -grestore -1.00 ps -64.38 9.50 64.38 13.00 MacLine -64.38 249.50 64.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -71.25 246.00 71.25 13.00 MacLine -grestore -1.00 ps -70.75 9.50 70.75 13.00 MacLine -70.75 249.50 70.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -77.50 244.25 77.50 14.75 MacLine -grestore -1.00 ps -77.00 9.50 77.00 14.75 MacLine -77.00 249.50 77.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -83.75 246.00 83.75 13.00 MacLine -grestore -1.00 ps -83.25 9.50 83.25 13.00 MacLine -83.25 249.50 83.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -90.12 246.00 90.12 13.00 MacLine -grestore -1.00 ps -89.62 9.50 89.62 13.00 MacLine -89.62 249.50 89.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -96.38 246.00 96.38 13.00 MacLine -grestore -1.00 ps -95.88 9.50 95.88 13.00 MacLine -95.88 249.50 95.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.75 246.00 102.75 13.00 MacLine -grestore -1.00 ps -102.25 9.50 102.25 13.00 MacLine -102.25 249.50 102.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -109.00 244.25 109.00 14.75 MacLine -grestore -1.00 ps -108.50 9.50 108.50 14.75 MacLine -108.50 249.50 108.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -115.25 246.00 115.25 13.00 MacLine -grestore -1.00 ps -114.75 9.50 114.75 13.00 MacLine -114.75 249.50 114.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -121.62 246.00 121.62 13.00 MacLine -grestore -1.00 ps -121.12 9.50 121.12 13.00 MacLine -121.12 249.50 121.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -127.88 246.00 127.88 13.00 MacLine -grestore -1.00 ps -127.38 9.50 127.38 13.00 MacLine -127.38 249.50 127.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -134.25 246.00 134.25 13.00 MacLine -grestore -1.00 ps -133.75 9.50 133.75 13.00 MacLine -133.75 249.50 133.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -140.50 244.25 140.50 14.75 MacLine -grestore -1.00 ps -140.00 9.50 140.00 14.75 MacLine -140.00 249.50 140.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -146.75 246.00 146.75 13.00 MacLine -grestore -1.00 ps -146.25 9.50 146.25 13.00 MacLine -146.25 249.50 146.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -153.12 246.00 153.12 13.00 MacLine -grestore -1.00 ps -152.62 9.50 152.62 13.00 MacLine -152.62 249.50 152.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.38 246.00 159.38 13.00 MacLine -grestore -1.00 ps -158.88 9.50 158.88 13.00 MacLine -158.88 249.50 158.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -165.75 246.00 165.75 13.00 MacLine -grestore -1.00 ps -165.25 9.50 165.25 13.00 MacLine -165.25 249.50 165.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -171.88 242.50 171.88 16.50 MacLine -grestore -1.00 ps -171.50 9.50 171.50 16.50 MacLine -171.50 249.50 171.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-2) 167.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -178.25 246.00 178.25 13.00 MacLine -grestore -1.00 ps -177.75 9.50 177.75 13.00 MacLine -177.75 249.50 177.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -184.62 246.00 184.62 13.00 MacLine -grestore -1.00 ps -184.12 9.50 184.12 13.00 MacLine -184.12 249.50 184.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -190.88 246.00 190.88 13.00 MacLine -grestore -1.00 ps -190.38 9.50 190.38 13.00 MacLine -190.38 249.50 190.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -197.25 246.00 197.25 13.00 MacLine -grestore -1.00 ps -196.75 9.50 196.75 13.00 MacLine -196.75 249.50 196.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -203.50 244.25 203.50 14.75 MacLine -grestore -1.00 ps -203.00 9.50 203.00 14.75 MacLine -203.00 249.50 203.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -209.75 246.00 209.75 13.00 MacLine -grestore -1.00 ps -209.25 9.50 209.25 13.00 MacLine -209.25 249.50 209.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -216.12 246.00 216.12 13.00 MacLine -grestore -1.00 ps -215.62 9.50 215.62 13.00 MacLine -215.62 249.50 215.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.38 246.00 222.38 13.00 MacLine -grestore -1.00 ps -221.88 9.50 221.88 13.00 MacLine -221.88 249.50 221.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -228.75 246.00 228.75 13.00 MacLine -grestore -1.00 ps -228.25 9.50 228.25 13.00 MacLine -228.25 249.50 228.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -235.00 244.25 235.00 14.75 MacLine -grestore -1.00 ps -234.50 9.50 234.50 14.75 MacLine -234.50 249.50 234.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -241.25 246.00 241.25 13.00 MacLine -grestore -1.00 ps -240.75 9.50 240.75 13.00 MacLine -240.75 249.50 240.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -247.62 246.00 247.62 13.00 MacLine -grestore -1.00 ps -247.12 9.50 247.12 13.00 MacLine -247.12 249.50 247.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -253.88 246.00 253.88 13.00 MacLine -grestore -1.00 ps -253.38 9.50 253.38 13.00 MacLine -253.38 249.50 253.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -260.25 246.00 260.25 13.00 MacLine -grestore -1.00 ps -259.75 9.50 259.75 13.00 MacLine -259.75 249.50 259.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.50 244.25 266.50 14.75 MacLine -grestore -1.00 ps -266.00 9.50 266.00 14.75 MacLine -266.00 249.50 266.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -272.75 246.00 272.75 13.00 MacLine -grestore -1.00 ps -272.25 9.50 272.25 13.00 MacLine -272.25 249.50 272.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -279.12 246.00 279.12 13.00 MacLine -grestore -1.00 ps -278.62 9.50 278.62 13.00 MacLine -278.62 249.50 278.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -285.38 246.00 285.38 13.00 MacLine -grestore -1.00 ps -284.88 9.50 284.88 13.00 MacLine -284.88 249.50 284.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -291.75 246.00 291.75 13.00 MacLine -grestore -1.00 ps -291.25 9.50 291.25 13.00 MacLine -291.25 249.50 291.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -297.88 242.50 297.88 16.50 MacLine -grestore -1.00 ps -297.50 9.50 297.50 16.50 MacLine -297.50 249.50 297.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 295.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -304.25 246.00 304.25 13.00 MacLine -grestore -1.00 ps -303.75 9.50 303.75 13.00 MacLine -303.75 249.50 303.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -310.62 246.00 310.62 13.00 MacLine -grestore -1.00 ps -310.12 9.50 310.12 13.00 MacLine -310.12 249.50 310.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.88 246.00 316.88 13.00 MacLine -grestore -1.00 ps -316.38 9.50 316.38 13.00 MacLine -316.38 249.50 316.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 246.00 323.25 13.00 MacLine -grestore -1.00 ps -322.75 9.50 322.75 13.00 MacLine -322.75 249.50 322.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -329.50 244.25 329.50 14.75 MacLine -grestore -1.00 ps -329.00 9.50 329.00 14.75 MacLine -329.00 249.50 329.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -335.75 246.00 335.75 13.00 MacLine -grestore -1.00 ps -335.25 9.50 335.25 13.00 MacLine -335.25 249.50 335.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.12 246.00 342.12 13.00 MacLine -grestore -1.00 ps -341.62 9.50 341.62 13.00 MacLine -341.62 249.50 341.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -348.38 246.00 348.38 13.00 MacLine -grestore -1.00 ps -347.88 9.50 347.88 13.00 MacLine -347.88 249.50 347.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -354.75 246.00 354.75 13.00 MacLine -grestore -1.00 ps -354.25 9.50 354.25 13.00 MacLine -354.25 249.50 354.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -361.00 244.25 361.00 14.75 MacLine -grestore -1.00 ps -360.50 9.50 360.50 14.75 MacLine -360.50 249.50 360.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -367.25 246.00 367.25 13.00 MacLine -grestore -1.00 ps -366.75 9.50 366.75 13.00 MacLine -366.75 249.50 366.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.62 246.00 373.62 13.00 MacLine -grestore -1.00 ps -373.12 9.50 373.12 13.00 MacLine -373.12 249.50 373.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -379.88 246.00 379.88 13.00 MacLine -grestore -1.00 ps -379.38 9.50 379.38 13.00 MacLine -379.38 249.50 379.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -386.25 246.00 386.25 13.00 MacLine -grestore -1.00 ps -385.75 9.50 385.75 13.00 MacLine -385.75 249.50 385.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.50 244.25 392.50 14.75 MacLine -grestore -1.00 ps -392.00 9.50 392.00 14.75 MacLine -392.00 249.50 392.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -398.75 246.00 398.75 13.00 MacLine -grestore -1.00 ps -398.25 9.50 398.25 13.00 MacLine -398.25 249.50 398.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -405.12 246.00 405.12 13.00 MacLine -grestore -1.00 ps -404.62 9.50 404.62 13.00 MacLine -404.62 249.50 404.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -411.38 246.00 411.38 13.00 MacLine -grestore -1.00 ps -410.88 9.50 410.88 13.00 MacLine -410.88 249.50 410.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -417.75 246.00 417.75 13.00 MacLine -grestore -1.00 ps -417.25 9.50 417.25 13.00 MacLine -417.25 249.50 417.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -423.88 242.50 423.88 16.50 MacLine -grestore -1.00 ps -423.50 9.50 423.50 16.50 MacLine -423.50 249.50 423.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 421.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -430.25 246.00 430.25 13.00 MacLine -grestore -1.00 ps -429.75 9.50 429.75 13.00 MacLine -429.75 249.50 429.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -436.62 246.00 436.62 13.00 MacLine -grestore -1.00 ps -436.12 9.50 436.12 13.00 MacLine -436.12 249.50 436.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.88 246.00 442.88 13.00 MacLine -grestore -1.00 ps -442.38 9.50 442.38 13.00 MacLine -442.38 249.50 442.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -449.25 246.00 449.25 13.00 MacLine -grestore -1.00 ps -448.75 9.50 448.75 13.00 MacLine -448.75 249.50 448.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -455.50 244.25 455.50 14.75 MacLine -grestore -1.00 ps -455.00 9.50 455.00 14.75 MacLine -455.00 249.50 455.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -461.75 246.00 461.75 13.00 MacLine -grestore -1.00 ps -461.25 9.50 461.25 13.00 MacLine -461.25 249.50 461.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -468.12 246.00 468.12 13.00 MacLine -grestore -1.00 ps -467.62 9.50 467.62 13.00 MacLine -467.62 249.50 467.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -474.38 246.00 474.38 13.00 MacLine -grestore -1.00 ps -473.88 9.50 473.88 13.00 MacLine -473.88 249.50 473.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.75 246.00 480.75 13.00 MacLine -grestore -1.00 ps -480.25 9.50 480.25 13.00 MacLine -480.25 249.50 480.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.00 244.25 487.00 14.75 MacLine -grestore -1.00 ps -486.50 9.50 486.50 14.75 MacLine -486.50 249.50 486.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -493.25 246.00 493.25 13.00 MacLine -grestore -1.00 ps -492.75 9.50 492.75 13.00 MacLine -492.75 249.50 492.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -499.62 246.00 499.62 13.00 MacLine -grestore -1.00 ps -499.12 9.50 499.12 13.00 MacLine -499.12 249.50 499.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -505.88 246.00 505.88 13.00 MacLine -grestore -1.00 ps -505.38 9.50 505.38 13.00 MacLine -505.38 249.50 505.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.25 246.00 512.25 13.00 MacLine -grestore -1.00 ps -511.75 9.50 511.75 13.00 MacLine -511.75 249.50 511.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -518.50 244.25 518.50 14.75 MacLine -grestore -1.00 ps -518.00 9.50 518.00 14.75 MacLine -518.00 249.50 518.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -524.75 246.00 524.75 13.00 MacLine -grestore -1.00 ps -524.25 9.50 524.25 13.00 MacLine -524.25 249.50 524.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -531.12 246.00 531.12 13.00 MacLine -grestore -1.00 ps -530.62 9.50 530.62 13.00 MacLine -530.62 249.50 530.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -537.38 246.00 537.38 13.00 MacLine -grestore -1.00 ps -536.88 9.50 536.88 13.00 MacLine -536.88 249.50 536.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -543.75 246.00 543.75 13.00 MacLine -grestore -1.00 ps -543.25 9.50 543.25 13.00 MacLine -543.25 249.50 543.25 246.00 MacLine -1 ps -1.00 ps -549.50 9.50 549.50 16.50 MacLine -549.50 249.50 549.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 547.25 262.25 5.50 WS -gsave 1.00 ps 298.00 249.50 298.00 10.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -(x \(m\)) 279.88 284.38 36.38 WS -0.50 ps -newpath 298.00 130.00 3.00 0 360 arc -0 StrokePath -296.62 128.62 299.50 131.50 2 CapLine -299.50 128.62 296.62 131.50 2 CapLine -newpath 346.12 121.88 3.00 0 360 arc -0 StrokePath -344.75 120.50 347.62 123.38 2 CapLine -347.62 120.50 344.75 123.38 2 CapLine -newpath 394.38 113.88 3.00 0 360 arc -0 StrokePath -393.00 112.50 395.88 115.38 2 CapLine -395.88 112.50 393.00 115.38 2 CapLine -newpath 442.50 105.75 3.00 0 360 arc -0 StrokePath -441.12 104.38 444.00 107.25 2 CapLine -444.00 104.38 441.12 107.25 2 CapLine -newpath 490.75 97.62 3.00 0 360 arc -0 StrokePath -489.38 96.25 492.25 99.12 2 CapLine -492.25 96.25 489.38 99.12 2 CapLine -newpath 538.88 89.50 3.00 0 360 arc -0 StrokePath -537.50 88.12 540.38 91.00 2 CapLine -540.38 88.12 537.50 91.00 2 CapLine -1 ps -0.50 ps -295.00 130.00 301.00 130.00 2 CapLine -298.00 127.00 298.00 133.00 2 CapLine -324.62 146.12 330.62 146.12 2 CapLine -327.62 143.12 327.62 149.12 2 CapLine -354.25 162.38 360.25 162.38 2 CapLine -357.25 159.38 357.25 165.38 2 CapLine -384.00 178.50 390.00 178.50 2 CapLine -387.00 175.50 387.00 181.50 2 CapLine -413.62 194.75 419.62 194.75 2 CapLine -416.62 191.75 416.62 197.75 2 CapLine -443.25 210.88 449.25 210.88 2 CapLine -446.25 207.88 446.25 213.88 2 CapLine -472.88 227.12 478.88 227.12 2 CapLine -475.88 224.12 475.88 230.12 2 CapLine -502.62 243.25 508.62 243.25 2 CapLine -505.62 240.25 505.62 246.25 2 CapLine -1 ps -0.50 ps -newpath 235.00 130.00 3.00 0 360 arc -0 StrokePath -233.62 128.62 236.50 131.50 2 CapLine -236.50 128.62 233.62 131.50 2 CapLine -newpath 172.00 130.00 3.00 0 360 arc -0 StrokePath -170.62 128.62 173.50 131.50 2 CapLine -173.50 128.62 170.62 131.50 2 CapLine -newpath 109.00 130.00 3.00 0 360 arc -0 StrokePath -107.62 128.62 110.50 131.50 2 CapLine -110.50 128.62 107.62 131.50 2 CapLine -newpath 46.00 130.00 3.00 0 360 arc -0 StrokePath -44.62 128.62 47.50 131.50 2 CapLine -47.50 128.62 44.62 131.50 2 CapLine -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av1.gif deleted file mode 100755 index a667df32a..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av10.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av10.eps deleted file mode 100755 index 1ad3dccb6..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av10.eps +++ /dev/null @@ -1,1455 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph9 -%%Creation Date: Thu, Oct 24, 1996 06:50 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/rx0 0 def /ry0 0 def /rx1 0 def /ry1 0 def -/tmp0 0 def /tmp1 0 def -/packedRed 0 def /packedGreen 0 def /packedBlue 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/setuserscreendict 22 dict def -setuserscreendict begin - -/tempctm matrix def -/temprot matrix def -/tempscale matrix def - -/concatprocs{ - /proc2 exch cvlit def - /proc1 exch cvlit def - /newproc proc1 length proc2 length add array def - newproc 0 proc1 putinterval - newproc proc1 length proc2 putinterval - newproc cvx -}def - -/resmatrix matrix def -/findresolution{ - 72 0 resmatrix defaultmatrix dtransform - /yres xdef /xres xdef - xres dup mul yres dup mul add sqrt -}def -end - -/setuserscreen{ - setuserscreendict begin - /spotfunction xdef - /screenangle xdef - /cellsize xdef - - /m tempctm currentmatrix def - /rm screenangle temprot rotate def - /sm cellsize dup tempscale scale def - - sm rm m m concatmatrix m concatmatrix pop - 1 0 m dtransform /y1 xdef /x1 xdef - /veclength x1 dup mul y1 dup mul add sqrt def - /frequency findresolution veclength div def - /newscreenangle y1 x1 atan def - m 2 get m 1 get mul m 0 get m 3 get mul sub 0 gt - { - { neg } /spotfunction load concatprocs - /spotfunction xdef - } if - frequency newscreenangle /spotfunction load setscreen - end -}def - -/setpatterndict 18 dict def -setpatterndict begin -/bitison{ - /ybit xdef /xbit xdef - /bytevalue bstring ybit bwidth mul xbit 8 idiv add get def - /mask 1 7 xbit 8 mod sub bitshift def - bytevalue mask and 0 ne -}def -end - -/bitpatternspotfunction{ - setpatterndict begin - /y xdef /x xdef - /xindex x 1 add 2 div bpside mul cvi def - /yindex y 1 add 2 div bpside mul cvi def - xindex yindex bitison - { /onbits onbits 1 add def 1 } - { /offbits offbits 1 add def 0 } - ifelse - end -}def - -/setpattern{ - setpatterndict begin - /cellsz xdef - /angle xdef - /bwidth xdef - /bpside xdef - /bstring xdef - - /onbits 0 def /offbits 0 def - cellsz angle /bitpatternspotfunction load setuserscreen - {} settransfer - offbits offbits onbits add div setgray - end -}def - -/FillPattern{ % patternstring -- - /pat xdef - gsave - pat 8 1 0 72 300 32 div div setpattern - fill - grestore -}def - - - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .5 sub round .5 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - - - - -% **** begin image stuff ***** -% The following are used for images. This has to be kept -% in synch with corresponding code in ImageDisp.c.In particular -% the expansion factor, 8, has to be in synch. -% packedcolor is (red*256+green)*256+blue - -/SetPackedColor{ % packedcolor SetPackedColor -- - dup 256 mod /tmp0 xdef % extract blue - 256 idiv - dup 256 mod /tmp1 xdef % extract green - 256 idiv % extract red - 255 div /packedRed xdef - tmp1 255 div /packedGreen xdef - tmp0 255 div /packedBlue xdef -}bdef - -/IR_FillRect{ - gsave - newpath - rx0 ry0 M - rx1 ry0 L - rx1 ry1 L - rx0 ry1 L - closepath - packedRed packedGreen packedBlue setrgbcolor - fill - grestore -}bdef - -/NewRectImageLine{ % x0 y0 x1 y1 packedcolor NewRectImageLine -- - SetPackedColor - - /ry1 xdef /rx1 xdef /ry0 xdef /rx0 xdef % remember starting rectange for following calls - - IR_FillRect -}bdef - -/rx{ % xdist rx -- - 8 div - dup 0 lt - { rx0 /rx1 xdef rx1 add /rx0 xdef } % neg delta steps left - { rx1 /rx0 xdef rx0 add /rx1 xdef } - ifelse - IR_FillRect -}bdef - -/ry{ % ydist rr -- - 8 div - dup 0 lt - { ry1 /ry0 xdef ry0 exch sub /ry1 xdef } % neg delta steps down - { ry0 /ry1 xdef ry1 exch sub /ry0 xdef } - ifelse - IR_FillRect -}bdef - - -/cx{ % xdist packedcolor cx -- - SetPackedColor - rx -}bdef - -/cy{ % ydist packedcolor cx -- - SetPackedColor - ry -}bdef - -% **** end image stuff ***** - - - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -45.50 10.00 45.50 249.00 MacLine -549.50 10.00 549.50 249.00 MacLine -1 ps -1.00 ps -549.50 249.50 542.50 249.50 MacLine -45.50 249.50 52.50 249.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(-2) 33.12 252.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 244.00 546.00 244.00 MacLine -grestore -1.00 ps -549.50 243.50 546.00 243.50 MacLine -45.50 243.50 49.00 243.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 238.00 546.00 238.00 MacLine -grestore -1.00 ps -549.50 237.50 546.00 237.50 MacLine -45.50 237.50 49.00 237.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 232.00 546.00 232.00 MacLine -grestore -1.00 ps -549.50 231.50 546.00 231.50 MacLine -45.50 231.50 49.00 231.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 226.00 546.00 226.00 MacLine -grestore -1.00 ps -549.50 225.50 546.00 225.50 MacLine -45.50 225.50 49.00 225.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 220.00 544.25 220.00 MacLine -grestore -1.00 ps -549.50 219.50 544.25 219.50 MacLine -45.50 219.50 50.75 219.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 214.00 546.00 214.00 MacLine -grestore -1.00 ps -549.50 213.50 546.00 213.50 MacLine -45.50 213.50 49.00 213.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 208.00 546.00 208.00 MacLine -grestore -1.00 ps -549.50 207.50 546.00 207.50 MacLine -45.50 207.50 49.00 207.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 202.00 546.00 202.00 MacLine -grestore -1.00 ps -549.50 201.50 546.00 201.50 MacLine -45.50 201.50 49.00 201.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 196.00 546.00 196.00 MacLine -grestore -1.00 ps -549.50 195.50 546.00 195.50 MacLine -45.50 195.50 49.00 195.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 189.88 542.50 189.88 MacLine -grestore -1.00 ps -549.50 189.50 542.50 189.50 MacLine -45.50 189.50 52.50 189.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-1) 33.12 192.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 184.00 546.00 184.00 MacLine -grestore -1.00 ps -549.50 183.50 546.00 183.50 MacLine -45.50 183.50 49.00 183.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 178.00 546.00 178.00 MacLine -grestore -1.00 ps -549.50 177.50 546.00 177.50 MacLine -45.50 177.50 49.00 177.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 172.00 546.00 172.00 MacLine -grestore -1.00 ps -549.50 171.50 546.00 171.50 MacLine -45.50 171.50 49.00 171.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 166.00 546.00 166.00 MacLine -grestore -1.00 ps -549.50 165.50 546.00 165.50 MacLine -45.50 165.50 49.00 165.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 160.00 544.25 160.00 MacLine -grestore -1.00 ps -549.50 159.50 544.25 159.50 MacLine -45.50 159.50 50.75 159.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 154.00 546.00 154.00 MacLine -grestore -1.00 ps -549.50 153.50 546.00 153.50 MacLine -45.50 153.50 49.00 153.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 148.00 546.00 148.00 MacLine -grestore -1.00 ps -549.50 147.50 546.00 147.50 MacLine -45.50 147.50 49.00 147.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 142.00 546.00 142.00 MacLine -grestore -1.00 ps -549.50 141.50 546.00 141.50 MacLine -45.50 141.50 49.00 141.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 136.00 546.00 136.00 MacLine -grestore -1.00 ps -549.50 135.50 546.00 135.50 MacLine -45.50 135.50 49.00 135.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 129.88 542.50 129.88 MacLine -grestore -1.00 ps -549.50 129.50 542.50 129.50 MacLine -45.50 129.50 52.50 129.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 36.50 132.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 124.00 546.00 124.00 MacLine -grestore -1.00 ps -549.50 123.50 546.00 123.50 MacLine -45.50 123.50 49.00 123.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 118.00 546.00 118.00 MacLine -grestore -1.00 ps -549.50 117.50 546.00 117.50 MacLine -45.50 117.50 49.00 117.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 112.00 546.00 112.00 MacLine -grestore -1.00 ps -549.50 111.50 546.00 111.50 MacLine -45.50 111.50 49.00 111.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 106.00 546.00 106.00 MacLine -grestore -1.00 ps -549.50 105.50 546.00 105.50 MacLine -45.50 105.50 49.00 105.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 100.00 544.25 100.00 MacLine -grestore -1.00 ps -549.50 99.50 544.25 99.50 MacLine -45.50 99.50 50.75 99.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 94.00 546.00 94.00 MacLine -grestore -1.00 ps -549.50 93.50 546.00 93.50 MacLine -45.50 93.50 49.00 93.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 88.00 546.00 88.00 MacLine -grestore -1.00 ps -549.50 87.50 546.00 87.50 MacLine -45.50 87.50 49.00 87.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 82.00 546.00 82.00 MacLine -grestore -1.00 ps -549.50 81.50 546.00 81.50 MacLine -45.50 81.50 49.00 81.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 76.00 546.00 76.00 MacLine -grestore -1.00 ps -549.50 75.50 546.00 75.50 MacLine -45.50 75.50 49.00 75.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 69.88 542.50 69.88 MacLine -grestore -1.00 ps -549.50 69.50 542.50 69.50 MacLine -45.50 69.50 52.50 69.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(1) 36.50 72.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 64.00 546.00 64.00 MacLine -grestore -1.00 ps -549.50 63.50 546.00 63.50 MacLine -45.50 63.50 49.00 63.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 58.00 546.00 58.00 MacLine -grestore -1.00 ps -549.50 57.50 546.00 57.50 MacLine -45.50 57.50 49.00 57.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 52.00 546.00 52.00 MacLine -grestore -1.00 ps -549.50 51.50 546.00 51.50 MacLine -45.50 51.50 49.00 51.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 46.00 546.00 46.00 MacLine -grestore -1.00 ps -549.50 45.50 546.00 45.50 MacLine -45.50 45.50 49.00 45.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 40.00 544.25 40.00 MacLine -grestore -1.00 ps -549.50 39.50 544.25 39.50 MacLine -45.50 39.50 50.75 39.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 34.00 546.00 34.00 MacLine -grestore -1.00 ps -549.50 33.50 546.00 33.50 MacLine -45.50 33.50 49.00 33.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 28.00 546.00 28.00 MacLine -grestore -1.00 ps -549.50 27.50 546.00 27.50 MacLine -45.50 27.50 49.00 27.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 22.00 546.00 22.00 MacLine -grestore -1.00 ps -549.50 21.50 546.00 21.50 MacLine -45.50 21.50 49.00 21.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 16.00 546.00 16.00 MacLine -grestore -1.00 ps -549.50 15.50 546.00 15.50 MacLine -45.50 15.50 49.00 15.50 MacLine -1 ps -1.00 ps -549.50 9.50 542.50 9.50 MacLine -45.50 9.50 52.50 9.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 36.50 12.75 5.50 WS -gsave 1.00 ps 46.50 130.00 549.50 130.00 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 148.12 translate -90 rotate -(y \(m\)) 0.00 0.00 36.38 WS -grestore -1.00 ps -46.00 249.50 549.00 249.50 MacLine -46.00 9.50 549.00 9.50 MacLine -1 ps -1.00 ps -45.50 9.50 45.50 16.50 MacLine -45.50 249.50 45.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-4) 41.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -52.25 246.00 52.25 13.00 MacLine -grestore -1.00 ps -51.75 9.50 51.75 13.00 MacLine -51.75 249.50 51.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -58.62 246.00 58.62 13.00 MacLine -grestore -1.00 ps -58.12 9.50 58.12 13.00 MacLine -58.12 249.50 58.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -64.88 246.00 64.88 13.00 MacLine -grestore -1.00 ps -64.38 9.50 64.38 13.00 MacLine -64.38 249.50 64.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -71.25 246.00 71.25 13.00 MacLine -grestore -1.00 ps -70.75 9.50 70.75 13.00 MacLine -70.75 249.50 70.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -77.50 244.25 77.50 14.75 MacLine -grestore -1.00 ps -77.00 9.50 77.00 14.75 MacLine -77.00 249.50 77.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -83.75 246.00 83.75 13.00 MacLine -grestore -1.00 ps -83.25 9.50 83.25 13.00 MacLine -83.25 249.50 83.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -90.12 246.00 90.12 13.00 MacLine -grestore -1.00 ps -89.62 9.50 89.62 13.00 MacLine -89.62 249.50 89.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -96.38 246.00 96.38 13.00 MacLine -grestore -1.00 ps -95.88 9.50 95.88 13.00 MacLine -95.88 249.50 95.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.75 246.00 102.75 13.00 MacLine -grestore -1.00 ps -102.25 9.50 102.25 13.00 MacLine -102.25 249.50 102.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -109.00 244.25 109.00 14.75 MacLine -grestore -1.00 ps -108.50 9.50 108.50 14.75 MacLine -108.50 249.50 108.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -115.25 246.00 115.25 13.00 MacLine -grestore -1.00 ps -114.75 9.50 114.75 13.00 MacLine -114.75 249.50 114.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -121.62 246.00 121.62 13.00 MacLine -grestore -1.00 ps -121.12 9.50 121.12 13.00 MacLine -121.12 249.50 121.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -127.88 246.00 127.88 13.00 MacLine -grestore -1.00 ps -127.38 9.50 127.38 13.00 MacLine -127.38 249.50 127.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -134.25 246.00 134.25 13.00 MacLine -grestore -1.00 ps -133.75 9.50 133.75 13.00 MacLine -133.75 249.50 133.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -140.50 244.25 140.50 14.75 MacLine -grestore -1.00 ps -140.00 9.50 140.00 14.75 MacLine -140.00 249.50 140.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -146.75 246.00 146.75 13.00 MacLine -grestore -1.00 ps -146.25 9.50 146.25 13.00 MacLine -146.25 249.50 146.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -153.12 246.00 153.12 13.00 MacLine -grestore -1.00 ps -152.62 9.50 152.62 13.00 MacLine -152.62 249.50 152.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.38 246.00 159.38 13.00 MacLine -grestore -1.00 ps -158.88 9.50 158.88 13.00 MacLine -158.88 249.50 158.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -165.75 246.00 165.75 13.00 MacLine -grestore -1.00 ps -165.25 9.50 165.25 13.00 MacLine -165.25 249.50 165.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -171.88 242.50 171.88 16.50 MacLine -grestore -1.00 ps -171.50 9.50 171.50 16.50 MacLine -171.50 249.50 171.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-2) 167.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -178.25 246.00 178.25 13.00 MacLine -grestore -1.00 ps -177.75 9.50 177.75 13.00 MacLine -177.75 249.50 177.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -184.62 246.00 184.62 13.00 MacLine -grestore -1.00 ps -184.12 9.50 184.12 13.00 MacLine -184.12 249.50 184.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -190.88 246.00 190.88 13.00 MacLine -grestore -1.00 ps -190.38 9.50 190.38 13.00 MacLine -190.38 249.50 190.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -197.25 246.00 197.25 13.00 MacLine -grestore -1.00 ps -196.75 9.50 196.75 13.00 MacLine -196.75 249.50 196.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -203.50 244.25 203.50 14.75 MacLine -grestore -1.00 ps -203.00 9.50 203.00 14.75 MacLine -203.00 249.50 203.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -209.75 246.00 209.75 13.00 MacLine -grestore -1.00 ps -209.25 9.50 209.25 13.00 MacLine -209.25 249.50 209.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -216.12 246.00 216.12 13.00 MacLine -grestore -1.00 ps -215.62 9.50 215.62 13.00 MacLine -215.62 249.50 215.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.38 246.00 222.38 13.00 MacLine -grestore -1.00 ps -221.88 9.50 221.88 13.00 MacLine -221.88 249.50 221.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -228.75 246.00 228.75 13.00 MacLine -grestore -1.00 ps -228.25 9.50 228.25 13.00 MacLine -228.25 249.50 228.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -235.00 244.25 235.00 14.75 MacLine -grestore -1.00 ps -234.50 9.50 234.50 14.75 MacLine -234.50 249.50 234.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -241.25 246.00 241.25 13.00 MacLine -grestore -1.00 ps -240.75 9.50 240.75 13.00 MacLine -240.75 249.50 240.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -247.62 246.00 247.62 13.00 MacLine -grestore -1.00 ps -247.12 9.50 247.12 13.00 MacLine -247.12 249.50 247.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -253.88 246.00 253.88 13.00 MacLine -grestore -1.00 ps -253.38 9.50 253.38 13.00 MacLine -253.38 249.50 253.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -260.25 246.00 260.25 13.00 MacLine -grestore -1.00 ps -259.75 9.50 259.75 13.00 MacLine -259.75 249.50 259.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.50 244.25 266.50 14.75 MacLine -grestore -1.00 ps -266.00 9.50 266.00 14.75 MacLine -266.00 249.50 266.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -272.75 246.00 272.75 13.00 MacLine -grestore -1.00 ps -272.25 9.50 272.25 13.00 MacLine -272.25 249.50 272.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -279.12 246.00 279.12 13.00 MacLine -grestore -1.00 ps -278.62 9.50 278.62 13.00 MacLine -278.62 249.50 278.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -285.38 246.00 285.38 13.00 MacLine -grestore -1.00 ps -284.88 9.50 284.88 13.00 MacLine -284.88 249.50 284.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -291.75 246.00 291.75 13.00 MacLine -grestore -1.00 ps -291.25 9.50 291.25 13.00 MacLine -291.25 249.50 291.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -297.88 242.50 297.88 16.50 MacLine -grestore -1.00 ps -297.50 9.50 297.50 16.50 MacLine -297.50 249.50 297.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 295.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -304.25 246.00 304.25 13.00 MacLine -grestore -1.00 ps -303.75 9.50 303.75 13.00 MacLine -303.75 249.50 303.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -310.62 246.00 310.62 13.00 MacLine -grestore -1.00 ps -310.12 9.50 310.12 13.00 MacLine -310.12 249.50 310.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.88 246.00 316.88 13.00 MacLine -grestore -1.00 ps -316.38 9.50 316.38 13.00 MacLine -316.38 249.50 316.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 246.00 323.25 13.00 MacLine -grestore -1.00 ps -322.75 9.50 322.75 13.00 MacLine -322.75 249.50 322.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -329.50 244.25 329.50 14.75 MacLine -grestore -1.00 ps -329.00 9.50 329.00 14.75 MacLine -329.00 249.50 329.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -335.75 246.00 335.75 13.00 MacLine -grestore -1.00 ps -335.25 9.50 335.25 13.00 MacLine -335.25 249.50 335.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.12 246.00 342.12 13.00 MacLine -grestore -1.00 ps -341.62 9.50 341.62 13.00 MacLine -341.62 249.50 341.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -348.38 246.00 348.38 13.00 MacLine -grestore -1.00 ps -347.88 9.50 347.88 13.00 MacLine -347.88 249.50 347.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -354.75 246.00 354.75 13.00 MacLine -grestore -1.00 ps -354.25 9.50 354.25 13.00 MacLine -354.25 249.50 354.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -361.00 244.25 361.00 14.75 MacLine -grestore -1.00 ps -360.50 9.50 360.50 14.75 MacLine -360.50 249.50 360.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -367.25 246.00 367.25 13.00 MacLine -grestore -1.00 ps -366.75 9.50 366.75 13.00 MacLine -366.75 249.50 366.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.62 246.00 373.62 13.00 MacLine -grestore -1.00 ps -373.12 9.50 373.12 13.00 MacLine -373.12 249.50 373.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -379.88 246.00 379.88 13.00 MacLine -grestore -1.00 ps -379.38 9.50 379.38 13.00 MacLine -379.38 249.50 379.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -386.25 246.00 386.25 13.00 MacLine -grestore -1.00 ps -385.75 9.50 385.75 13.00 MacLine -385.75 249.50 385.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.50 244.25 392.50 14.75 MacLine -grestore -1.00 ps -392.00 9.50 392.00 14.75 MacLine -392.00 249.50 392.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -398.75 246.00 398.75 13.00 MacLine -grestore -1.00 ps -398.25 9.50 398.25 13.00 MacLine -398.25 249.50 398.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -405.12 246.00 405.12 13.00 MacLine -grestore -1.00 ps -404.62 9.50 404.62 13.00 MacLine -404.62 249.50 404.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -411.38 246.00 411.38 13.00 MacLine -grestore -1.00 ps -410.88 9.50 410.88 13.00 MacLine -410.88 249.50 410.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -417.75 246.00 417.75 13.00 MacLine -grestore -1.00 ps -417.25 9.50 417.25 13.00 MacLine -417.25 249.50 417.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -423.88 242.50 423.88 16.50 MacLine -grestore -1.00 ps -423.50 9.50 423.50 16.50 MacLine -423.50 249.50 423.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 421.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -430.25 246.00 430.25 13.00 MacLine -grestore -1.00 ps -429.75 9.50 429.75 13.00 MacLine -429.75 249.50 429.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -436.62 246.00 436.62 13.00 MacLine -grestore -1.00 ps -436.12 9.50 436.12 13.00 MacLine -436.12 249.50 436.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.88 246.00 442.88 13.00 MacLine -grestore -1.00 ps -442.38 9.50 442.38 13.00 MacLine -442.38 249.50 442.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -449.25 246.00 449.25 13.00 MacLine -grestore -1.00 ps -448.75 9.50 448.75 13.00 MacLine -448.75 249.50 448.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -455.50 244.25 455.50 14.75 MacLine -grestore -1.00 ps -455.00 9.50 455.00 14.75 MacLine -455.00 249.50 455.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -461.75 246.00 461.75 13.00 MacLine -grestore -1.00 ps -461.25 9.50 461.25 13.00 MacLine -461.25 249.50 461.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -468.12 246.00 468.12 13.00 MacLine -grestore -1.00 ps -467.62 9.50 467.62 13.00 MacLine -467.62 249.50 467.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -474.38 246.00 474.38 13.00 MacLine -grestore -1.00 ps -473.88 9.50 473.88 13.00 MacLine -473.88 249.50 473.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.75 246.00 480.75 13.00 MacLine -grestore -1.00 ps -480.25 9.50 480.25 13.00 MacLine -480.25 249.50 480.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.00 244.25 487.00 14.75 MacLine -grestore -1.00 ps -486.50 9.50 486.50 14.75 MacLine -486.50 249.50 486.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -493.25 246.00 493.25 13.00 MacLine -grestore -1.00 ps -492.75 9.50 492.75 13.00 MacLine -492.75 249.50 492.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -499.62 246.00 499.62 13.00 MacLine -grestore -1.00 ps -499.12 9.50 499.12 13.00 MacLine -499.12 249.50 499.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -505.88 246.00 505.88 13.00 MacLine -grestore -1.00 ps -505.38 9.50 505.38 13.00 MacLine -505.38 249.50 505.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.25 246.00 512.25 13.00 MacLine -grestore -1.00 ps -511.75 9.50 511.75 13.00 MacLine -511.75 249.50 511.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -518.50 244.25 518.50 14.75 MacLine -grestore -1.00 ps -518.00 9.50 518.00 14.75 MacLine -518.00 249.50 518.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -524.75 246.00 524.75 13.00 MacLine -grestore -1.00 ps -524.25 9.50 524.25 13.00 MacLine -524.25 249.50 524.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -531.12 246.00 531.12 13.00 MacLine -grestore -1.00 ps -530.62 9.50 530.62 13.00 MacLine -530.62 249.50 530.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -537.38 246.00 537.38 13.00 MacLine -grestore -1.00 ps -536.88 9.50 536.88 13.00 MacLine -536.88 249.50 536.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -543.75 246.00 543.75 13.00 MacLine -grestore -1.00 ps -543.25 9.50 543.25 13.00 MacLine -543.25 249.50 543.25 246.00 MacLine -1 ps -1.00 ps -549.50 9.50 549.50 16.50 MacLine -549.50 249.50 549.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 547.25 262.25 5.50 WS -gsave 1.00 ps 298.00 249.50 298.00 10.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -(x \(m\)) 279.88 284.38 36.38 WS -0.50 ps -newpath 298.00 130.00 3.00 0 360 arc -0 StrokePath -296.62 128.62 299.50 131.50 2 CapLine -299.50 128.62 296.62 131.50 2 CapLine -newpath 324.62 104.62 3.00 0 360 arc -0 StrokePath -323.25 103.25 326.12 106.12 2 CapLine -326.12 103.25 323.25 106.12 2 CapLine -newpath 351.12 79.38 3.00 0 360 arc -0 StrokePath -349.75 78.00 352.62 80.88 2 CapLine -352.62 78.00 349.75 80.88 2 CapLine -newpath 377.75 54.00 3.00 0 360 arc -0 StrokePath -376.38 52.62 379.25 55.50 2 CapLine -379.25 52.62 376.38 55.50 2 CapLine -newpath 404.38 28.75 3.00 0 360 arc -0 StrokePath -403.00 27.38 405.88 30.25 2 CapLine -405.88 27.38 403.00 30.25 2 CapLine -1 ps -0.50 ps -295.00 130.00 301.00 130.00 2 CapLine -298.00 127.00 298.00 133.00 2 CapLine -323.00 149.50 329.00 149.50 2 CapLine -326.00 146.50 326.00 152.50 2 CapLine -351.00 169.00 357.00 169.00 2 CapLine -354.00 166.00 354.00 172.00 2 CapLine -379.00 188.38 385.00 188.38 2 CapLine -382.00 185.38 382.00 191.38 2 CapLine -407.00 207.88 413.00 207.88 2 CapLine -410.00 204.88 410.00 210.88 2 CapLine -435.12 227.38 441.12 227.38 2 CapLine -438.12 224.38 438.12 230.38 2 CapLine -463.12 246.88 469.12 246.88 2 CapLine -466.12 243.88 466.12 249.88 2 CapLine -1 ps -0.50 ps -newpath 235.00 130.00 3.00 0 360 arc -0 StrokePath -233.62 128.62 236.50 131.50 2 CapLine -236.50 128.62 233.62 131.50 2 CapLine -newpath 172.00 130.00 3.00 0 360 arc -0 StrokePath -170.62 128.62 173.50 131.50 2 CapLine -173.50 128.62 170.62 131.50 2 CapLine -newpath 109.00 130.00 3.00 0 360 arc -0 StrokePath -107.62 128.62 110.50 131.50 2 CapLine -110.50 128.62 107.62 131.50 2 CapLine -newpath 46.00 130.00 3.00 0 360 arc -0 StrokePath -44.62 128.62 47.50 131.50 2 CapLine -47.50 128.62 44.62 131.50 2 CapLine -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av10.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av10.gif deleted file mode 100755 index 24e710df9..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av10.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av11.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av11.eps deleted file mode 100755 index c36764873..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av11.eps +++ /dev/null @@ -1,1463 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph10 -%%Creation Date: Thu, Oct 24, 1996 06:50 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/rx0 0 def /ry0 0 def /rx1 0 def /ry1 0 def -/tmp0 0 def /tmp1 0 def -/packedRed 0 def /packedGreen 0 def /packedBlue 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/setuserscreendict 22 dict def -setuserscreendict begin - -/tempctm matrix def -/temprot matrix def -/tempscale matrix def - -/concatprocs{ - /proc2 exch cvlit def - /proc1 exch cvlit def - /newproc proc1 length proc2 length add array def - newproc 0 proc1 putinterval - newproc proc1 length proc2 putinterval - newproc cvx -}def - -/resmatrix matrix def -/findresolution{ - 72 0 resmatrix defaultmatrix dtransform - /yres xdef /xres xdef - xres dup mul yres dup mul add sqrt -}def -end - -/setuserscreen{ - setuserscreendict begin - /spotfunction xdef - /screenangle xdef - /cellsize xdef - - /m tempctm currentmatrix def - /rm screenangle temprot rotate def - /sm cellsize dup tempscale scale def - - sm rm m m concatmatrix m concatmatrix pop - 1 0 m dtransform /y1 xdef /x1 xdef - /veclength x1 dup mul y1 dup mul add sqrt def - /frequency findresolution veclength div def - /newscreenangle y1 x1 atan def - m 2 get m 1 get mul m 0 get m 3 get mul sub 0 gt - { - { neg } /spotfunction load concatprocs - /spotfunction xdef - } if - frequency newscreenangle /spotfunction load setscreen - end -}def - -/setpatterndict 18 dict def -setpatterndict begin -/bitison{ - /ybit xdef /xbit xdef - /bytevalue bstring ybit bwidth mul xbit 8 idiv add get def - /mask 1 7 xbit 8 mod sub bitshift def - bytevalue mask and 0 ne -}def -end - -/bitpatternspotfunction{ - setpatterndict begin - /y xdef /x xdef - /xindex x 1 add 2 div bpside mul cvi def - /yindex y 1 add 2 div bpside mul cvi def - xindex yindex bitison - { /onbits onbits 1 add def 1 } - { /offbits offbits 1 add def 0 } - ifelse - end -}def - -/setpattern{ - setpatterndict begin - /cellsz xdef - /angle xdef - /bwidth xdef - /bpside xdef - /bstring xdef - - /onbits 0 def /offbits 0 def - cellsz angle /bitpatternspotfunction load setuserscreen - {} settransfer - offbits offbits onbits add div setgray - end -}def - -/FillPattern{ % patternstring -- - /pat xdef - gsave - pat 8 1 0 72 300 32 div div setpattern - fill - grestore -}def - - - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .5 sub round .5 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - - - - -% **** begin image stuff ***** -% The following are used for images. This has to be kept -% in synch with corresponding code in ImageDisp.c.In particular -% the expansion factor, 8, has to be in synch. -% packedcolor is (red*256+green)*256+blue - -/SetPackedColor{ % packedcolor SetPackedColor -- - dup 256 mod /tmp0 xdef % extract blue - 256 idiv - dup 256 mod /tmp1 xdef % extract green - 256 idiv % extract red - 255 div /packedRed xdef - tmp1 255 div /packedGreen xdef - tmp0 255 div /packedBlue xdef -}bdef - -/IR_FillRect{ - gsave - newpath - rx0 ry0 M - rx1 ry0 L - rx1 ry1 L - rx0 ry1 L - closepath - packedRed packedGreen packedBlue setrgbcolor - fill - grestore -}bdef - -/NewRectImageLine{ % x0 y0 x1 y1 packedcolor NewRectImageLine -- - SetPackedColor - - /ry1 xdef /rx1 xdef /ry0 xdef /rx0 xdef % remember starting rectange for following calls - - IR_FillRect -}bdef - -/rx{ % xdist rx -- - 8 div - dup 0 lt - { rx0 /rx1 xdef rx1 add /rx0 xdef } % neg delta steps left - { rx1 /rx0 xdef rx0 add /rx1 xdef } - ifelse - IR_FillRect -}bdef - -/ry{ % ydist rr -- - 8 div - dup 0 lt - { ry1 /ry0 xdef ry0 exch sub /ry1 xdef } % neg delta steps down - { ry0 /ry1 xdef ry1 exch sub /ry0 xdef } - ifelse - IR_FillRect -}bdef - - -/cx{ % xdist packedcolor cx -- - SetPackedColor - rx -}bdef - -/cy{ % ydist packedcolor cx -- - SetPackedColor - ry -}bdef - -% **** end image stuff ***** - - - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -45.50 10.00 45.50 249.00 MacLine -549.50 10.00 549.50 249.00 MacLine -1 ps -1.00 ps -549.50 249.50 542.50 249.50 MacLine -45.50 249.50 52.50 249.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(-2) 33.12 252.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 244.00 546.00 244.00 MacLine -grestore -1.00 ps -549.50 243.50 546.00 243.50 MacLine -45.50 243.50 49.00 243.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 238.00 546.00 238.00 MacLine -grestore -1.00 ps -549.50 237.50 546.00 237.50 MacLine -45.50 237.50 49.00 237.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 232.00 546.00 232.00 MacLine -grestore -1.00 ps -549.50 231.50 546.00 231.50 MacLine -45.50 231.50 49.00 231.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 226.00 546.00 226.00 MacLine -grestore -1.00 ps -549.50 225.50 546.00 225.50 MacLine -45.50 225.50 49.00 225.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 220.00 544.25 220.00 MacLine -grestore -1.00 ps -549.50 219.50 544.25 219.50 MacLine -45.50 219.50 50.75 219.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 214.00 546.00 214.00 MacLine -grestore -1.00 ps -549.50 213.50 546.00 213.50 MacLine -45.50 213.50 49.00 213.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 208.00 546.00 208.00 MacLine -grestore -1.00 ps -549.50 207.50 546.00 207.50 MacLine -45.50 207.50 49.00 207.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 202.00 546.00 202.00 MacLine -grestore -1.00 ps -549.50 201.50 546.00 201.50 MacLine -45.50 201.50 49.00 201.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 196.00 546.00 196.00 MacLine -grestore -1.00 ps -549.50 195.50 546.00 195.50 MacLine -45.50 195.50 49.00 195.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 189.88 542.50 189.88 MacLine -grestore -1.00 ps -549.50 189.50 542.50 189.50 MacLine -45.50 189.50 52.50 189.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-1) 33.12 192.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 184.00 546.00 184.00 MacLine -grestore -1.00 ps -549.50 183.50 546.00 183.50 MacLine -45.50 183.50 49.00 183.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 178.00 546.00 178.00 MacLine -grestore -1.00 ps -549.50 177.50 546.00 177.50 MacLine -45.50 177.50 49.00 177.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 172.00 546.00 172.00 MacLine -grestore -1.00 ps -549.50 171.50 546.00 171.50 MacLine -45.50 171.50 49.00 171.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 166.00 546.00 166.00 MacLine -grestore -1.00 ps -549.50 165.50 546.00 165.50 MacLine -45.50 165.50 49.00 165.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 160.00 544.25 160.00 MacLine -grestore -1.00 ps -549.50 159.50 544.25 159.50 MacLine -45.50 159.50 50.75 159.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 154.00 546.00 154.00 MacLine -grestore -1.00 ps -549.50 153.50 546.00 153.50 MacLine -45.50 153.50 49.00 153.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 148.00 546.00 148.00 MacLine -grestore -1.00 ps -549.50 147.50 546.00 147.50 MacLine -45.50 147.50 49.00 147.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 142.00 546.00 142.00 MacLine -grestore -1.00 ps -549.50 141.50 546.00 141.50 MacLine -45.50 141.50 49.00 141.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 136.00 546.00 136.00 MacLine -grestore -1.00 ps -549.50 135.50 546.00 135.50 MacLine -45.50 135.50 49.00 135.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 129.88 542.50 129.88 MacLine -grestore -1.00 ps -549.50 129.50 542.50 129.50 MacLine -45.50 129.50 52.50 129.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 36.50 132.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 124.00 546.00 124.00 MacLine -grestore -1.00 ps -549.50 123.50 546.00 123.50 MacLine -45.50 123.50 49.00 123.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 118.00 546.00 118.00 MacLine -grestore -1.00 ps -549.50 117.50 546.00 117.50 MacLine -45.50 117.50 49.00 117.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 112.00 546.00 112.00 MacLine -grestore -1.00 ps -549.50 111.50 546.00 111.50 MacLine -45.50 111.50 49.00 111.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 106.00 546.00 106.00 MacLine -grestore -1.00 ps -549.50 105.50 546.00 105.50 MacLine -45.50 105.50 49.00 105.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 100.00 544.25 100.00 MacLine -grestore -1.00 ps -549.50 99.50 544.25 99.50 MacLine -45.50 99.50 50.75 99.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 94.00 546.00 94.00 MacLine -grestore -1.00 ps -549.50 93.50 546.00 93.50 MacLine -45.50 93.50 49.00 93.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 88.00 546.00 88.00 MacLine -grestore -1.00 ps -549.50 87.50 546.00 87.50 MacLine -45.50 87.50 49.00 87.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 82.00 546.00 82.00 MacLine -grestore -1.00 ps -549.50 81.50 546.00 81.50 MacLine -45.50 81.50 49.00 81.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 76.00 546.00 76.00 MacLine -grestore -1.00 ps -549.50 75.50 546.00 75.50 MacLine -45.50 75.50 49.00 75.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 69.88 542.50 69.88 MacLine -grestore -1.00 ps -549.50 69.50 542.50 69.50 MacLine -45.50 69.50 52.50 69.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(1) 36.50 72.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 64.00 546.00 64.00 MacLine -grestore -1.00 ps -549.50 63.50 546.00 63.50 MacLine -45.50 63.50 49.00 63.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 58.00 546.00 58.00 MacLine -grestore -1.00 ps -549.50 57.50 546.00 57.50 MacLine -45.50 57.50 49.00 57.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 52.00 546.00 52.00 MacLine -grestore -1.00 ps -549.50 51.50 546.00 51.50 MacLine -45.50 51.50 49.00 51.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 46.00 546.00 46.00 MacLine -grestore -1.00 ps -549.50 45.50 546.00 45.50 MacLine -45.50 45.50 49.00 45.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 40.00 544.25 40.00 MacLine -grestore -1.00 ps -549.50 39.50 544.25 39.50 MacLine -45.50 39.50 50.75 39.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 34.00 546.00 34.00 MacLine -grestore -1.00 ps -549.50 33.50 546.00 33.50 MacLine -45.50 33.50 49.00 33.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 28.00 546.00 28.00 MacLine -grestore -1.00 ps -549.50 27.50 546.00 27.50 MacLine -45.50 27.50 49.00 27.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 22.00 546.00 22.00 MacLine -grestore -1.00 ps -549.50 21.50 546.00 21.50 MacLine -45.50 21.50 49.00 21.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 16.00 546.00 16.00 MacLine -grestore -1.00 ps -549.50 15.50 546.00 15.50 MacLine -45.50 15.50 49.00 15.50 MacLine -1 ps -1.00 ps -549.50 9.50 542.50 9.50 MacLine -45.50 9.50 52.50 9.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 36.50 12.75 5.50 WS -gsave 1.00 ps 46.50 130.00 549.50 130.00 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 148.12 translate -90 rotate -(y \(m\)) 0.00 0.00 36.38 WS -grestore -1.00 ps -46.00 249.50 549.00 249.50 MacLine -46.00 9.50 549.00 9.50 MacLine -1 ps -1.00 ps -45.50 9.50 45.50 16.50 MacLine -45.50 249.50 45.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-4) 41.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -52.25 246.00 52.25 13.00 MacLine -grestore -1.00 ps -51.75 9.50 51.75 13.00 MacLine -51.75 249.50 51.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -58.62 246.00 58.62 13.00 MacLine -grestore -1.00 ps -58.12 9.50 58.12 13.00 MacLine -58.12 249.50 58.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -64.88 246.00 64.88 13.00 MacLine -grestore -1.00 ps -64.38 9.50 64.38 13.00 MacLine -64.38 249.50 64.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -71.25 246.00 71.25 13.00 MacLine -grestore -1.00 ps -70.75 9.50 70.75 13.00 MacLine -70.75 249.50 70.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -77.50 244.25 77.50 14.75 MacLine -grestore -1.00 ps -77.00 9.50 77.00 14.75 MacLine -77.00 249.50 77.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -83.75 246.00 83.75 13.00 MacLine -grestore -1.00 ps -83.25 9.50 83.25 13.00 MacLine -83.25 249.50 83.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -90.12 246.00 90.12 13.00 MacLine -grestore -1.00 ps -89.62 9.50 89.62 13.00 MacLine -89.62 249.50 89.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -96.38 246.00 96.38 13.00 MacLine -grestore -1.00 ps -95.88 9.50 95.88 13.00 MacLine -95.88 249.50 95.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.75 246.00 102.75 13.00 MacLine -grestore -1.00 ps -102.25 9.50 102.25 13.00 MacLine -102.25 249.50 102.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -109.00 244.25 109.00 14.75 MacLine -grestore -1.00 ps -108.50 9.50 108.50 14.75 MacLine -108.50 249.50 108.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -115.25 246.00 115.25 13.00 MacLine -grestore -1.00 ps -114.75 9.50 114.75 13.00 MacLine -114.75 249.50 114.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -121.62 246.00 121.62 13.00 MacLine -grestore -1.00 ps -121.12 9.50 121.12 13.00 MacLine -121.12 249.50 121.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -127.88 246.00 127.88 13.00 MacLine -grestore -1.00 ps -127.38 9.50 127.38 13.00 MacLine -127.38 249.50 127.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -134.25 246.00 134.25 13.00 MacLine -grestore -1.00 ps -133.75 9.50 133.75 13.00 MacLine -133.75 249.50 133.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -140.50 244.25 140.50 14.75 MacLine -grestore -1.00 ps -140.00 9.50 140.00 14.75 MacLine -140.00 249.50 140.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -146.75 246.00 146.75 13.00 MacLine -grestore -1.00 ps -146.25 9.50 146.25 13.00 MacLine -146.25 249.50 146.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -153.12 246.00 153.12 13.00 MacLine -grestore -1.00 ps -152.62 9.50 152.62 13.00 MacLine -152.62 249.50 152.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.38 246.00 159.38 13.00 MacLine -grestore -1.00 ps -158.88 9.50 158.88 13.00 MacLine -158.88 249.50 158.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -165.75 246.00 165.75 13.00 MacLine -grestore -1.00 ps -165.25 9.50 165.25 13.00 MacLine -165.25 249.50 165.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -171.88 242.50 171.88 16.50 MacLine -grestore -1.00 ps -171.50 9.50 171.50 16.50 MacLine -171.50 249.50 171.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-2) 167.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -178.25 246.00 178.25 13.00 MacLine -grestore -1.00 ps -177.75 9.50 177.75 13.00 MacLine -177.75 249.50 177.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -184.62 246.00 184.62 13.00 MacLine -grestore -1.00 ps -184.12 9.50 184.12 13.00 MacLine -184.12 249.50 184.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -190.88 246.00 190.88 13.00 MacLine -grestore -1.00 ps -190.38 9.50 190.38 13.00 MacLine -190.38 249.50 190.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -197.25 246.00 197.25 13.00 MacLine -grestore -1.00 ps -196.75 9.50 196.75 13.00 MacLine -196.75 249.50 196.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -203.50 244.25 203.50 14.75 MacLine -grestore -1.00 ps -203.00 9.50 203.00 14.75 MacLine -203.00 249.50 203.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -209.75 246.00 209.75 13.00 MacLine -grestore -1.00 ps -209.25 9.50 209.25 13.00 MacLine -209.25 249.50 209.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -216.12 246.00 216.12 13.00 MacLine -grestore -1.00 ps -215.62 9.50 215.62 13.00 MacLine -215.62 249.50 215.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.38 246.00 222.38 13.00 MacLine -grestore -1.00 ps -221.88 9.50 221.88 13.00 MacLine -221.88 249.50 221.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -228.75 246.00 228.75 13.00 MacLine -grestore -1.00 ps -228.25 9.50 228.25 13.00 MacLine -228.25 249.50 228.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -235.00 244.25 235.00 14.75 MacLine -grestore -1.00 ps -234.50 9.50 234.50 14.75 MacLine -234.50 249.50 234.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -241.25 246.00 241.25 13.00 MacLine -grestore -1.00 ps -240.75 9.50 240.75 13.00 MacLine -240.75 249.50 240.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -247.62 246.00 247.62 13.00 MacLine -grestore -1.00 ps -247.12 9.50 247.12 13.00 MacLine -247.12 249.50 247.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -253.88 246.00 253.88 13.00 MacLine -grestore -1.00 ps -253.38 9.50 253.38 13.00 MacLine -253.38 249.50 253.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -260.25 246.00 260.25 13.00 MacLine -grestore -1.00 ps -259.75 9.50 259.75 13.00 MacLine -259.75 249.50 259.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.50 244.25 266.50 14.75 MacLine -grestore -1.00 ps -266.00 9.50 266.00 14.75 MacLine -266.00 249.50 266.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -272.75 246.00 272.75 13.00 MacLine -grestore -1.00 ps -272.25 9.50 272.25 13.00 MacLine -272.25 249.50 272.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -279.12 246.00 279.12 13.00 MacLine -grestore -1.00 ps -278.62 9.50 278.62 13.00 MacLine -278.62 249.50 278.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -285.38 246.00 285.38 13.00 MacLine -grestore -1.00 ps -284.88 9.50 284.88 13.00 MacLine -284.88 249.50 284.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -291.75 246.00 291.75 13.00 MacLine -grestore -1.00 ps -291.25 9.50 291.25 13.00 MacLine -291.25 249.50 291.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -297.88 242.50 297.88 16.50 MacLine -grestore -1.00 ps -297.50 9.50 297.50 16.50 MacLine -297.50 249.50 297.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 295.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -304.25 246.00 304.25 13.00 MacLine -grestore -1.00 ps -303.75 9.50 303.75 13.00 MacLine -303.75 249.50 303.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -310.62 246.00 310.62 13.00 MacLine -grestore -1.00 ps -310.12 9.50 310.12 13.00 MacLine -310.12 249.50 310.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.88 246.00 316.88 13.00 MacLine -grestore -1.00 ps -316.38 9.50 316.38 13.00 MacLine -316.38 249.50 316.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 246.00 323.25 13.00 MacLine -grestore -1.00 ps -322.75 9.50 322.75 13.00 MacLine -322.75 249.50 322.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -329.50 244.25 329.50 14.75 MacLine -grestore -1.00 ps -329.00 9.50 329.00 14.75 MacLine -329.00 249.50 329.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -335.75 246.00 335.75 13.00 MacLine -grestore -1.00 ps -335.25 9.50 335.25 13.00 MacLine -335.25 249.50 335.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.12 246.00 342.12 13.00 MacLine -grestore -1.00 ps -341.62 9.50 341.62 13.00 MacLine -341.62 249.50 341.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -348.38 246.00 348.38 13.00 MacLine -grestore -1.00 ps -347.88 9.50 347.88 13.00 MacLine -347.88 249.50 347.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -354.75 246.00 354.75 13.00 MacLine -grestore -1.00 ps -354.25 9.50 354.25 13.00 MacLine -354.25 249.50 354.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -361.00 244.25 361.00 14.75 MacLine -grestore -1.00 ps -360.50 9.50 360.50 14.75 MacLine -360.50 249.50 360.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -367.25 246.00 367.25 13.00 MacLine -grestore -1.00 ps -366.75 9.50 366.75 13.00 MacLine -366.75 249.50 366.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.62 246.00 373.62 13.00 MacLine -grestore -1.00 ps -373.12 9.50 373.12 13.00 MacLine -373.12 249.50 373.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -379.88 246.00 379.88 13.00 MacLine -grestore -1.00 ps -379.38 9.50 379.38 13.00 MacLine -379.38 249.50 379.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -386.25 246.00 386.25 13.00 MacLine -grestore -1.00 ps -385.75 9.50 385.75 13.00 MacLine -385.75 249.50 385.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.50 244.25 392.50 14.75 MacLine -grestore -1.00 ps -392.00 9.50 392.00 14.75 MacLine -392.00 249.50 392.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -398.75 246.00 398.75 13.00 MacLine -grestore -1.00 ps -398.25 9.50 398.25 13.00 MacLine -398.25 249.50 398.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -405.12 246.00 405.12 13.00 MacLine -grestore -1.00 ps -404.62 9.50 404.62 13.00 MacLine -404.62 249.50 404.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -411.38 246.00 411.38 13.00 MacLine -grestore -1.00 ps -410.88 9.50 410.88 13.00 MacLine -410.88 249.50 410.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -417.75 246.00 417.75 13.00 MacLine -grestore -1.00 ps -417.25 9.50 417.25 13.00 MacLine -417.25 249.50 417.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -423.88 242.50 423.88 16.50 MacLine -grestore -1.00 ps -423.50 9.50 423.50 16.50 MacLine -423.50 249.50 423.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 421.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -430.25 246.00 430.25 13.00 MacLine -grestore -1.00 ps -429.75 9.50 429.75 13.00 MacLine -429.75 249.50 429.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -436.62 246.00 436.62 13.00 MacLine -grestore -1.00 ps -436.12 9.50 436.12 13.00 MacLine -436.12 249.50 436.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.88 246.00 442.88 13.00 MacLine -grestore -1.00 ps -442.38 9.50 442.38 13.00 MacLine -442.38 249.50 442.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -449.25 246.00 449.25 13.00 MacLine -grestore -1.00 ps -448.75 9.50 448.75 13.00 MacLine -448.75 249.50 448.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -455.50 244.25 455.50 14.75 MacLine -grestore -1.00 ps -455.00 9.50 455.00 14.75 MacLine -455.00 249.50 455.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -461.75 246.00 461.75 13.00 MacLine -grestore -1.00 ps -461.25 9.50 461.25 13.00 MacLine -461.25 249.50 461.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -468.12 246.00 468.12 13.00 MacLine -grestore -1.00 ps -467.62 9.50 467.62 13.00 MacLine -467.62 249.50 467.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -474.38 246.00 474.38 13.00 MacLine -grestore -1.00 ps -473.88 9.50 473.88 13.00 MacLine -473.88 249.50 473.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.75 246.00 480.75 13.00 MacLine -grestore -1.00 ps -480.25 9.50 480.25 13.00 MacLine -480.25 249.50 480.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.00 244.25 487.00 14.75 MacLine -grestore -1.00 ps -486.50 9.50 486.50 14.75 MacLine -486.50 249.50 486.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -493.25 246.00 493.25 13.00 MacLine -grestore -1.00 ps -492.75 9.50 492.75 13.00 MacLine -492.75 249.50 492.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -499.62 246.00 499.62 13.00 MacLine -grestore -1.00 ps -499.12 9.50 499.12 13.00 MacLine -499.12 249.50 499.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -505.88 246.00 505.88 13.00 MacLine -grestore -1.00 ps -505.38 9.50 505.38 13.00 MacLine -505.38 249.50 505.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.25 246.00 512.25 13.00 MacLine -grestore -1.00 ps -511.75 9.50 511.75 13.00 MacLine -511.75 249.50 511.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -518.50 244.25 518.50 14.75 MacLine -grestore -1.00 ps -518.00 9.50 518.00 14.75 MacLine -518.00 249.50 518.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -524.75 246.00 524.75 13.00 MacLine -grestore -1.00 ps -524.25 9.50 524.25 13.00 MacLine -524.25 249.50 524.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -531.12 246.00 531.12 13.00 MacLine -grestore -1.00 ps -530.62 9.50 530.62 13.00 MacLine -530.62 249.50 530.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -537.38 246.00 537.38 13.00 MacLine -grestore -1.00 ps -536.88 9.50 536.88 13.00 MacLine -536.88 249.50 536.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -543.75 246.00 543.75 13.00 MacLine -grestore -1.00 ps -543.25 9.50 543.25 13.00 MacLine -543.25 249.50 543.25 246.00 MacLine -1 ps -1.00 ps -549.50 9.50 549.50 16.50 MacLine -549.50 249.50 549.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 547.25 262.25 5.50 WS -gsave 1.00 ps 298.00 249.50 298.00 10.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -(x \(m\)) 279.88 284.38 36.38 WS -0.50 ps -newpath 298.00 130.00 3.00 0 360 arc -0 StrokePath -296.62 128.62 299.50 131.50 2 CapLine -299.50 128.62 296.62 131.50 2 CapLine -newpath 341.62 110.62 3.00 0 360 arc -0 StrokePath -340.25 109.25 343.12 112.12 2 CapLine -343.12 109.25 340.25 112.12 2 CapLine -newpath 385.12 91.25 3.00 0 360 arc -0 StrokePath -383.75 89.88 386.62 92.75 2 CapLine -386.62 89.88 383.75 92.75 2 CapLine -newpath 428.75 71.88 3.00 0 360 arc -0 StrokePath -427.38 70.50 430.25 73.38 2 CapLine -430.25 70.50 427.38 73.38 2 CapLine -newpath 472.38 52.62 3.00 0 360 arc -0 StrokePath -471.00 51.25 473.88 54.12 2 CapLine -473.88 51.25 471.00 54.12 2 CapLine -newpath 516.00 33.25 3.00 0 360 arc -0 StrokePath -514.62 31.88 517.50 34.75 2 CapLine -517.50 31.88 514.62 34.75 2 CapLine -1 ps -0.50 ps -295.00 130.00 301.00 130.00 2 CapLine -298.00 127.00 298.00 133.00 2 CapLine -308.88 143.88 314.88 143.88 2 CapLine -311.88 140.88 311.88 146.88 2 CapLine -322.75 157.62 328.75 157.62 2 CapLine -325.75 154.62 325.75 160.62 2 CapLine -336.62 171.50 342.62 171.50 2 CapLine -339.62 168.50 339.62 174.50 2 CapLine -350.50 185.25 356.50 185.25 2 CapLine -353.50 182.25 353.50 188.25 2 CapLine -364.38 199.12 370.38 199.12 2 CapLine -367.38 196.12 367.38 202.12 2 CapLine -378.12 213.00 384.12 213.00 2 CapLine -381.12 210.00 381.12 216.00 2 CapLine -392.00 226.75 398.00 226.75 2 CapLine -395.00 223.75 395.00 229.75 2 CapLine -405.88 240.62 411.88 240.62 2 CapLine -408.88 237.62 408.88 243.62 2 CapLine -1 ps -0.50 ps -newpath 235.00 130.00 3.00 0 360 arc -0 StrokePath -233.62 128.62 236.50 131.50 2 CapLine -236.50 128.62 233.62 131.50 2 CapLine -newpath 172.00 130.00 3.00 0 360 arc -0 StrokePath -170.62 128.62 173.50 131.50 2 CapLine -173.50 128.62 170.62 131.50 2 CapLine -newpath 109.00 130.00 3.00 0 360 arc -0 StrokePath -107.62 128.62 110.50 131.50 2 CapLine -110.50 128.62 107.62 131.50 2 CapLine -newpath 46.00 130.00 3.00 0 360 arc -0 StrokePath -44.62 128.62 47.50 131.50 2 CapLine -47.50 128.62 44.62 131.50 2 CapLine -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av11.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av11.gif deleted file mode 100755 index 8ddc15b6d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av11.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av12.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av12.eps deleted file mode 100755 index a4dcbd62e..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av12.eps +++ /dev/null @@ -1,1463 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph11 -%%Creation Date: Thu, Oct 24, 1996 06:50 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/rx0 0 def /ry0 0 def /rx1 0 def /ry1 0 def -/tmp0 0 def /tmp1 0 def -/packedRed 0 def /packedGreen 0 def /packedBlue 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/setuserscreendict 22 dict def -setuserscreendict begin - -/tempctm matrix def -/temprot matrix def -/tempscale matrix def - -/concatprocs{ - /proc2 exch cvlit def - /proc1 exch cvlit def - /newproc proc1 length proc2 length add array def - newproc 0 proc1 putinterval - newproc proc1 length proc2 putinterval - newproc cvx -}def - -/resmatrix matrix def -/findresolution{ - 72 0 resmatrix defaultmatrix dtransform - /yres xdef /xres xdef - xres dup mul yres dup mul add sqrt -}def -end - -/setuserscreen{ - setuserscreendict begin - /spotfunction xdef - /screenangle xdef - /cellsize xdef - - /m tempctm currentmatrix def - /rm screenangle temprot rotate def - /sm cellsize dup tempscale scale def - - sm rm m m concatmatrix m concatmatrix pop - 1 0 m dtransform /y1 xdef /x1 xdef - /veclength x1 dup mul y1 dup mul add sqrt def - /frequency findresolution veclength div def - /newscreenangle y1 x1 atan def - m 2 get m 1 get mul m 0 get m 3 get mul sub 0 gt - { - { neg } /spotfunction load concatprocs - /spotfunction xdef - } if - frequency newscreenangle /spotfunction load setscreen - end -}def - -/setpatterndict 18 dict def -setpatterndict begin -/bitison{ - /ybit xdef /xbit xdef - /bytevalue bstring ybit bwidth mul xbit 8 idiv add get def - /mask 1 7 xbit 8 mod sub bitshift def - bytevalue mask and 0 ne -}def -end - -/bitpatternspotfunction{ - setpatterndict begin - /y xdef /x xdef - /xindex x 1 add 2 div bpside mul cvi def - /yindex y 1 add 2 div bpside mul cvi def - xindex yindex bitison - { /onbits onbits 1 add def 1 } - { /offbits offbits 1 add def 0 } - ifelse - end -}def - -/setpattern{ - setpatterndict begin - /cellsz xdef - /angle xdef - /bwidth xdef - /bpside xdef - /bstring xdef - - /onbits 0 def /offbits 0 def - cellsz angle /bitpatternspotfunction load setuserscreen - {} settransfer - offbits offbits onbits add div setgray - end -}def - -/FillPattern{ % patternstring -- - /pat xdef - gsave - pat 8 1 0 72 300 32 div div setpattern - fill - grestore -}def - - - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .5 sub round .5 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - - - - -% **** begin image stuff ***** -% The following are used for images. This has to be kept -% in synch with corresponding code in ImageDisp.c.In particular -% the expansion factor, 8, has to be in synch. -% packedcolor is (red*256+green)*256+blue - -/SetPackedColor{ % packedcolor SetPackedColor -- - dup 256 mod /tmp0 xdef % extract blue - 256 idiv - dup 256 mod /tmp1 xdef % extract green - 256 idiv % extract red - 255 div /packedRed xdef - tmp1 255 div /packedGreen xdef - tmp0 255 div /packedBlue xdef -}bdef - -/IR_FillRect{ - gsave - newpath - rx0 ry0 M - rx1 ry0 L - rx1 ry1 L - rx0 ry1 L - closepath - packedRed packedGreen packedBlue setrgbcolor - fill - grestore -}bdef - -/NewRectImageLine{ % x0 y0 x1 y1 packedcolor NewRectImageLine -- - SetPackedColor - - /ry1 xdef /rx1 xdef /ry0 xdef /rx0 xdef % remember starting rectange for following calls - - IR_FillRect -}bdef - -/rx{ % xdist rx -- - 8 div - dup 0 lt - { rx0 /rx1 xdef rx1 add /rx0 xdef } % neg delta steps left - { rx1 /rx0 xdef rx0 add /rx1 xdef } - ifelse - IR_FillRect -}bdef - -/ry{ % ydist rr -- - 8 div - dup 0 lt - { ry1 /ry0 xdef ry0 exch sub /ry1 xdef } % neg delta steps down - { ry0 /ry1 xdef ry1 exch sub /ry0 xdef } - ifelse - IR_FillRect -}bdef - - -/cx{ % xdist packedcolor cx -- - SetPackedColor - rx -}bdef - -/cy{ % ydist packedcolor cx -- - SetPackedColor - ry -}bdef - -% **** end image stuff ***** - - - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -45.50 10.00 45.50 249.00 MacLine -549.50 10.00 549.50 249.00 MacLine -1 ps -1.00 ps -549.50 249.50 542.50 249.50 MacLine -45.50 249.50 52.50 249.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(-2) 33.12 252.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 244.00 546.00 244.00 MacLine -grestore -1.00 ps -549.50 243.50 546.00 243.50 MacLine -45.50 243.50 49.00 243.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 238.00 546.00 238.00 MacLine -grestore -1.00 ps -549.50 237.50 546.00 237.50 MacLine -45.50 237.50 49.00 237.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 232.00 546.00 232.00 MacLine -grestore -1.00 ps -549.50 231.50 546.00 231.50 MacLine -45.50 231.50 49.00 231.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 226.00 546.00 226.00 MacLine -grestore -1.00 ps -549.50 225.50 546.00 225.50 MacLine -45.50 225.50 49.00 225.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 220.00 544.25 220.00 MacLine -grestore -1.00 ps -549.50 219.50 544.25 219.50 MacLine -45.50 219.50 50.75 219.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 214.00 546.00 214.00 MacLine -grestore -1.00 ps -549.50 213.50 546.00 213.50 MacLine -45.50 213.50 49.00 213.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 208.00 546.00 208.00 MacLine -grestore -1.00 ps -549.50 207.50 546.00 207.50 MacLine -45.50 207.50 49.00 207.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 202.00 546.00 202.00 MacLine -grestore -1.00 ps -549.50 201.50 546.00 201.50 MacLine -45.50 201.50 49.00 201.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 196.00 546.00 196.00 MacLine -grestore -1.00 ps -549.50 195.50 546.00 195.50 MacLine -45.50 195.50 49.00 195.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 189.88 542.50 189.88 MacLine -grestore -1.00 ps -549.50 189.50 542.50 189.50 MacLine -45.50 189.50 52.50 189.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-1) 33.12 192.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 184.00 546.00 184.00 MacLine -grestore -1.00 ps -549.50 183.50 546.00 183.50 MacLine -45.50 183.50 49.00 183.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 178.00 546.00 178.00 MacLine -grestore -1.00 ps -549.50 177.50 546.00 177.50 MacLine -45.50 177.50 49.00 177.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 172.00 546.00 172.00 MacLine -grestore -1.00 ps -549.50 171.50 546.00 171.50 MacLine -45.50 171.50 49.00 171.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 166.00 546.00 166.00 MacLine -grestore -1.00 ps -549.50 165.50 546.00 165.50 MacLine -45.50 165.50 49.00 165.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 160.00 544.25 160.00 MacLine -grestore -1.00 ps -549.50 159.50 544.25 159.50 MacLine -45.50 159.50 50.75 159.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 154.00 546.00 154.00 MacLine -grestore -1.00 ps -549.50 153.50 546.00 153.50 MacLine -45.50 153.50 49.00 153.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 148.00 546.00 148.00 MacLine -grestore -1.00 ps -549.50 147.50 546.00 147.50 MacLine -45.50 147.50 49.00 147.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 142.00 546.00 142.00 MacLine -grestore -1.00 ps -549.50 141.50 546.00 141.50 MacLine -45.50 141.50 49.00 141.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 136.00 546.00 136.00 MacLine -grestore -1.00 ps -549.50 135.50 546.00 135.50 MacLine -45.50 135.50 49.00 135.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 129.88 542.50 129.88 MacLine -grestore -1.00 ps -549.50 129.50 542.50 129.50 MacLine -45.50 129.50 52.50 129.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 36.50 132.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 124.00 546.00 124.00 MacLine -grestore -1.00 ps -549.50 123.50 546.00 123.50 MacLine -45.50 123.50 49.00 123.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 118.00 546.00 118.00 MacLine -grestore -1.00 ps -549.50 117.50 546.00 117.50 MacLine -45.50 117.50 49.00 117.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 112.00 546.00 112.00 MacLine -grestore -1.00 ps -549.50 111.50 546.00 111.50 MacLine -45.50 111.50 49.00 111.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 106.00 546.00 106.00 MacLine -grestore -1.00 ps -549.50 105.50 546.00 105.50 MacLine -45.50 105.50 49.00 105.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 100.00 544.25 100.00 MacLine -grestore -1.00 ps -549.50 99.50 544.25 99.50 MacLine -45.50 99.50 50.75 99.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 94.00 546.00 94.00 MacLine -grestore -1.00 ps -549.50 93.50 546.00 93.50 MacLine -45.50 93.50 49.00 93.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 88.00 546.00 88.00 MacLine -grestore -1.00 ps -549.50 87.50 546.00 87.50 MacLine -45.50 87.50 49.00 87.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 82.00 546.00 82.00 MacLine -grestore -1.00 ps -549.50 81.50 546.00 81.50 MacLine -45.50 81.50 49.00 81.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 76.00 546.00 76.00 MacLine -grestore -1.00 ps -549.50 75.50 546.00 75.50 MacLine -45.50 75.50 49.00 75.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 69.88 542.50 69.88 MacLine -grestore -1.00 ps -549.50 69.50 542.50 69.50 MacLine -45.50 69.50 52.50 69.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(1) 36.50 72.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 64.00 546.00 64.00 MacLine -grestore -1.00 ps -549.50 63.50 546.00 63.50 MacLine -45.50 63.50 49.00 63.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 58.00 546.00 58.00 MacLine -grestore -1.00 ps -549.50 57.50 546.00 57.50 MacLine -45.50 57.50 49.00 57.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 52.00 546.00 52.00 MacLine -grestore -1.00 ps -549.50 51.50 546.00 51.50 MacLine -45.50 51.50 49.00 51.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 46.00 546.00 46.00 MacLine -grestore -1.00 ps -549.50 45.50 546.00 45.50 MacLine -45.50 45.50 49.00 45.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 40.00 544.25 40.00 MacLine -grestore -1.00 ps -549.50 39.50 544.25 39.50 MacLine -45.50 39.50 50.75 39.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 34.00 546.00 34.00 MacLine -grestore -1.00 ps -549.50 33.50 546.00 33.50 MacLine -45.50 33.50 49.00 33.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 28.00 546.00 28.00 MacLine -grestore -1.00 ps -549.50 27.50 546.00 27.50 MacLine -45.50 27.50 49.00 27.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 22.00 546.00 22.00 MacLine -grestore -1.00 ps -549.50 21.50 546.00 21.50 MacLine -45.50 21.50 49.00 21.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 16.00 546.00 16.00 MacLine -grestore -1.00 ps -549.50 15.50 546.00 15.50 MacLine -45.50 15.50 49.00 15.50 MacLine -1 ps -1.00 ps -549.50 9.50 542.50 9.50 MacLine -45.50 9.50 52.50 9.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 36.50 12.75 5.50 WS -gsave 1.00 ps 46.50 130.00 549.50 130.00 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 148.12 translate -90 rotate -(y \(m\)) 0.00 0.00 36.38 WS -grestore -1.00 ps -46.00 249.50 549.00 249.50 MacLine -46.00 9.50 549.00 9.50 MacLine -1 ps -1.00 ps -45.50 9.50 45.50 16.50 MacLine -45.50 249.50 45.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-4) 41.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -52.25 246.00 52.25 13.00 MacLine -grestore -1.00 ps -51.75 9.50 51.75 13.00 MacLine -51.75 249.50 51.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -58.62 246.00 58.62 13.00 MacLine -grestore -1.00 ps -58.12 9.50 58.12 13.00 MacLine -58.12 249.50 58.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -64.88 246.00 64.88 13.00 MacLine -grestore -1.00 ps -64.38 9.50 64.38 13.00 MacLine -64.38 249.50 64.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -71.25 246.00 71.25 13.00 MacLine -grestore -1.00 ps -70.75 9.50 70.75 13.00 MacLine -70.75 249.50 70.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -77.50 244.25 77.50 14.75 MacLine -grestore -1.00 ps -77.00 9.50 77.00 14.75 MacLine -77.00 249.50 77.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -83.75 246.00 83.75 13.00 MacLine -grestore -1.00 ps -83.25 9.50 83.25 13.00 MacLine -83.25 249.50 83.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -90.12 246.00 90.12 13.00 MacLine -grestore -1.00 ps -89.62 9.50 89.62 13.00 MacLine -89.62 249.50 89.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -96.38 246.00 96.38 13.00 MacLine -grestore -1.00 ps -95.88 9.50 95.88 13.00 MacLine -95.88 249.50 95.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.75 246.00 102.75 13.00 MacLine -grestore -1.00 ps -102.25 9.50 102.25 13.00 MacLine -102.25 249.50 102.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -109.00 244.25 109.00 14.75 MacLine -grestore -1.00 ps -108.50 9.50 108.50 14.75 MacLine -108.50 249.50 108.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -115.25 246.00 115.25 13.00 MacLine -grestore -1.00 ps -114.75 9.50 114.75 13.00 MacLine -114.75 249.50 114.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -121.62 246.00 121.62 13.00 MacLine -grestore -1.00 ps -121.12 9.50 121.12 13.00 MacLine -121.12 249.50 121.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -127.88 246.00 127.88 13.00 MacLine -grestore -1.00 ps -127.38 9.50 127.38 13.00 MacLine -127.38 249.50 127.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -134.25 246.00 134.25 13.00 MacLine -grestore -1.00 ps -133.75 9.50 133.75 13.00 MacLine -133.75 249.50 133.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -140.50 244.25 140.50 14.75 MacLine -grestore -1.00 ps -140.00 9.50 140.00 14.75 MacLine -140.00 249.50 140.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -146.75 246.00 146.75 13.00 MacLine -grestore -1.00 ps -146.25 9.50 146.25 13.00 MacLine -146.25 249.50 146.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -153.12 246.00 153.12 13.00 MacLine -grestore -1.00 ps -152.62 9.50 152.62 13.00 MacLine -152.62 249.50 152.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.38 246.00 159.38 13.00 MacLine -grestore -1.00 ps -158.88 9.50 158.88 13.00 MacLine -158.88 249.50 158.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -165.75 246.00 165.75 13.00 MacLine -grestore -1.00 ps -165.25 9.50 165.25 13.00 MacLine -165.25 249.50 165.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -171.88 242.50 171.88 16.50 MacLine -grestore -1.00 ps -171.50 9.50 171.50 16.50 MacLine -171.50 249.50 171.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-2) 167.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -178.25 246.00 178.25 13.00 MacLine -grestore -1.00 ps -177.75 9.50 177.75 13.00 MacLine -177.75 249.50 177.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -184.62 246.00 184.62 13.00 MacLine -grestore -1.00 ps -184.12 9.50 184.12 13.00 MacLine -184.12 249.50 184.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -190.88 246.00 190.88 13.00 MacLine -grestore -1.00 ps -190.38 9.50 190.38 13.00 MacLine -190.38 249.50 190.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -197.25 246.00 197.25 13.00 MacLine -grestore -1.00 ps -196.75 9.50 196.75 13.00 MacLine -196.75 249.50 196.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -203.50 244.25 203.50 14.75 MacLine -grestore -1.00 ps -203.00 9.50 203.00 14.75 MacLine -203.00 249.50 203.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -209.75 246.00 209.75 13.00 MacLine -grestore -1.00 ps -209.25 9.50 209.25 13.00 MacLine -209.25 249.50 209.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -216.12 246.00 216.12 13.00 MacLine -grestore -1.00 ps -215.62 9.50 215.62 13.00 MacLine -215.62 249.50 215.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.38 246.00 222.38 13.00 MacLine -grestore -1.00 ps -221.88 9.50 221.88 13.00 MacLine -221.88 249.50 221.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -228.75 246.00 228.75 13.00 MacLine -grestore -1.00 ps -228.25 9.50 228.25 13.00 MacLine -228.25 249.50 228.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -235.00 244.25 235.00 14.75 MacLine -grestore -1.00 ps -234.50 9.50 234.50 14.75 MacLine -234.50 249.50 234.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -241.25 246.00 241.25 13.00 MacLine -grestore -1.00 ps -240.75 9.50 240.75 13.00 MacLine -240.75 249.50 240.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -247.62 246.00 247.62 13.00 MacLine -grestore -1.00 ps -247.12 9.50 247.12 13.00 MacLine -247.12 249.50 247.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -253.88 246.00 253.88 13.00 MacLine -grestore -1.00 ps -253.38 9.50 253.38 13.00 MacLine -253.38 249.50 253.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -260.25 246.00 260.25 13.00 MacLine -grestore -1.00 ps -259.75 9.50 259.75 13.00 MacLine -259.75 249.50 259.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.50 244.25 266.50 14.75 MacLine -grestore -1.00 ps -266.00 9.50 266.00 14.75 MacLine -266.00 249.50 266.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -272.75 246.00 272.75 13.00 MacLine -grestore -1.00 ps -272.25 9.50 272.25 13.00 MacLine -272.25 249.50 272.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -279.12 246.00 279.12 13.00 MacLine -grestore -1.00 ps -278.62 9.50 278.62 13.00 MacLine -278.62 249.50 278.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -285.38 246.00 285.38 13.00 MacLine -grestore -1.00 ps -284.88 9.50 284.88 13.00 MacLine -284.88 249.50 284.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -291.75 246.00 291.75 13.00 MacLine -grestore -1.00 ps -291.25 9.50 291.25 13.00 MacLine -291.25 249.50 291.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -297.88 242.50 297.88 16.50 MacLine -grestore -1.00 ps -297.50 9.50 297.50 16.50 MacLine -297.50 249.50 297.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 295.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -304.25 246.00 304.25 13.00 MacLine -grestore -1.00 ps -303.75 9.50 303.75 13.00 MacLine -303.75 249.50 303.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -310.62 246.00 310.62 13.00 MacLine -grestore -1.00 ps -310.12 9.50 310.12 13.00 MacLine -310.12 249.50 310.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.88 246.00 316.88 13.00 MacLine -grestore -1.00 ps -316.38 9.50 316.38 13.00 MacLine -316.38 249.50 316.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 246.00 323.25 13.00 MacLine -grestore -1.00 ps -322.75 9.50 322.75 13.00 MacLine -322.75 249.50 322.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -329.50 244.25 329.50 14.75 MacLine -grestore -1.00 ps -329.00 9.50 329.00 14.75 MacLine -329.00 249.50 329.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -335.75 246.00 335.75 13.00 MacLine -grestore -1.00 ps -335.25 9.50 335.25 13.00 MacLine -335.25 249.50 335.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.12 246.00 342.12 13.00 MacLine -grestore -1.00 ps -341.62 9.50 341.62 13.00 MacLine -341.62 249.50 341.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -348.38 246.00 348.38 13.00 MacLine -grestore -1.00 ps -347.88 9.50 347.88 13.00 MacLine -347.88 249.50 347.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -354.75 246.00 354.75 13.00 MacLine -grestore -1.00 ps -354.25 9.50 354.25 13.00 MacLine -354.25 249.50 354.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -361.00 244.25 361.00 14.75 MacLine -grestore -1.00 ps -360.50 9.50 360.50 14.75 MacLine -360.50 249.50 360.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -367.25 246.00 367.25 13.00 MacLine -grestore -1.00 ps -366.75 9.50 366.75 13.00 MacLine -366.75 249.50 366.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.62 246.00 373.62 13.00 MacLine -grestore -1.00 ps -373.12 9.50 373.12 13.00 MacLine -373.12 249.50 373.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -379.88 246.00 379.88 13.00 MacLine -grestore -1.00 ps -379.38 9.50 379.38 13.00 MacLine -379.38 249.50 379.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -386.25 246.00 386.25 13.00 MacLine -grestore -1.00 ps -385.75 9.50 385.75 13.00 MacLine -385.75 249.50 385.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.50 244.25 392.50 14.75 MacLine -grestore -1.00 ps -392.00 9.50 392.00 14.75 MacLine -392.00 249.50 392.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -398.75 246.00 398.75 13.00 MacLine -grestore -1.00 ps -398.25 9.50 398.25 13.00 MacLine -398.25 249.50 398.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -405.12 246.00 405.12 13.00 MacLine -grestore -1.00 ps -404.62 9.50 404.62 13.00 MacLine -404.62 249.50 404.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -411.38 246.00 411.38 13.00 MacLine -grestore -1.00 ps -410.88 9.50 410.88 13.00 MacLine -410.88 249.50 410.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -417.75 246.00 417.75 13.00 MacLine -grestore -1.00 ps -417.25 9.50 417.25 13.00 MacLine -417.25 249.50 417.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -423.88 242.50 423.88 16.50 MacLine -grestore -1.00 ps -423.50 9.50 423.50 16.50 MacLine -423.50 249.50 423.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 421.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -430.25 246.00 430.25 13.00 MacLine -grestore -1.00 ps -429.75 9.50 429.75 13.00 MacLine -429.75 249.50 429.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -436.62 246.00 436.62 13.00 MacLine -grestore -1.00 ps -436.12 9.50 436.12 13.00 MacLine -436.12 249.50 436.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.88 246.00 442.88 13.00 MacLine -grestore -1.00 ps -442.38 9.50 442.38 13.00 MacLine -442.38 249.50 442.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -449.25 246.00 449.25 13.00 MacLine -grestore -1.00 ps -448.75 9.50 448.75 13.00 MacLine -448.75 249.50 448.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -455.50 244.25 455.50 14.75 MacLine -grestore -1.00 ps -455.00 9.50 455.00 14.75 MacLine -455.00 249.50 455.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -461.75 246.00 461.75 13.00 MacLine -grestore -1.00 ps -461.25 9.50 461.25 13.00 MacLine -461.25 249.50 461.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -468.12 246.00 468.12 13.00 MacLine -grestore -1.00 ps -467.62 9.50 467.62 13.00 MacLine -467.62 249.50 467.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -474.38 246.00 474.38 13.00 MacLine -grestore -1.00 ps -473.88 9.50 473.88 13.00 MacLine -473.88 249.50 473.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.75 246.00 480.75 13.00 MacLine -grestore -1.00 ps -480.25 9.50 480.25 13.00 MacLine -480.25 249.50 480.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.00 244.25 487.00 14.75 MacLine -grestore -1.00 ps -486.50 9.50 486.50 14.75 MacLine -486.50 249.50 486.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -493.25 246.00 493.25 13.00 MacLine -grestore -1.00 ps -492.75 9.50 492.75 13.00 MacLine -492.75 249.50 492.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -499.62 246.00 499.62 13.00 MacLine -grestore -1.00 ps -499.12 9.50 499.12 13.00 MacLine -499.12 249.50 499.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -505.88 246.00 505.88 13.00 MacLine -grestore -1.00 ps -505.38 9.50 505.38 13.00 MacLine -505.38 249.50 505.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.25 246.00 512.25 13.00 MacLine -grestore -1.00 ps -511.75 9.50 511.75 13.00 MacLine -511.75 249.50 511.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -518.50 244.25 518.50 14.75 MacLine -grestore -1.00 ps -518.00 9.50 518.00 14.75 MacLine -518.00 249.50 518.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -524.75 246.00 524.75 13.00 MacLine -grestore -1.00 ps -524.25 9.50 524.25 13.00 MacLine -524.25 249.50 524.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -531.12 246.00 531.12 13.00 MacLine -grestore -1.00 ps -530.62 9.50 530.62 13.00 MacLine -530.62 249.50 530.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -537.38 246.00 537.38 13.00 MacLine -grestore -1.00 ps -536.88 9.50 536.88 13.00 MacLine -536.88 249.50 536.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -543.75 246.00 543.75 13.00 MacLine -grestore -1.00 ps -543.25 9.50 543.25 13.00 MacLine -543.25 249.50 543.25 246.00 MacLine -1 ps -1.00 ps -549.50 9.50 549.50 16.50 MacLine -549.50 249.50 549.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 547.25 262.25 5.50 WS -gsave 1.00 ps 298.00 249.50 298.00 10.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -(x \(m\)) 279.88 284.38 36.38 WS -0.50 ps -newpath 298.00 130.00 3.00 0 360 arc -0 StrokePath -296.62 128.62 299.50 131.50 2 CapLine -299.50 128.62 296.62 131.50 2 CapLine -newpath 344.12 122.25 3.00 0 360 arc -0 StrokePath -342.75 120.88 345.62 123.75 2 CapLine -345.62 120.88 342.75 123.75 2 CapLine -newpath 390.25 114.50 3.00 0 360 arc -0 StrokePath -388.88 113.12 391.75 116.00 2 CapLine -391.75 113.12 388.88 116.00 2 CapLine -newpath 436.38 106.75 3.00 0 360 arc -0 StrokePath -435.00 105.38 437.88 108.25 2 CapLine -437.88 105.38 435.00 108.25 2 CapLine -newpath 482.50 99.00 3.00 0 360 arc -0 StrokePath -481.12 97.62 484.00 100.50 2 CapLine -484.00 97.62 481.12 100.50 2 CapLine -newpath 528.62 91.25 3.00 0 360 arc -0 StrokePath -527.25 89.88 530.12 92.75 2 CapLine -530.12 89.88 527.25 92.75 2 CapLine -1 ps -0.50 ps -295.00 130.00 301.00 130.00 2 CapLine -298.00 127.00 298.00 133.00 2 CapLine -323.12 142.88 329.12 142.88 2 CapLine -326.12 139.88 326.12 145.88 2 CapLine -351.25 155.88 357.25 155.88 2 CapLine -354.25 152.88 354.25 158.88 2 CapLine -379.38 168.75 385.38 168.75 2 CapLine -382.38 165.75 382.38 171.75 2 CapLine -407.50 181.62 413.50 181.62 2 CapLine -410.50 178.62 410.50 184.62 2 CapLine -435.62 194.50 441.62 194.50 2 CapLine -438.62 191.50 438.62 197.50 2 CapLine -463.75 207.50 469.75 207.50 2 CapLine -466.75 204.50 466.75 210.50 2 CapLine -491.88 220.38 497.88 220.38 2 CapLine -494.88 217.38 494.88 223.38 2 CapLine -520.00 233.25 526.00 233.25 2 CapLine -523.00 230.25 523.00 236.25 2 CapLine -1 ps -0.50 ps -newpath 235.00 130.00 3.00 0 360 arc -0 StrokePath -233.62 128.62 236.50 131.50 2 CapLine -236.50 128.62 233.62 131.50 2 CapLine -newpath 172.00 130.00 3.00 0 360 arc -0 StrokePath -170.62 128.62 173.50 131.50 2 CapLine -173.50 128.62 170.62 131.50 2 CapLine -newpath 109.00 130.00 3.00 0 360 arc -0 StrokePath -107.62 128.62 110.50 131.50 2 CapLine -110.50 128.62 107.62 131.50 2 CapLine -newpath 46.00 130.00 3.00 0 360 arc -0 StrokePath -44.62 128.62 47.50 131.50 2 CapLine -47.50 128.62 44.62 131.50 2 CapLine -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av12.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av12.gif deleted file mode 100755 index 08ec3d15c..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av12.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av13.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av13.eps deleted file mode 100755 index 812872b8b..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av13.eps +++ /dev/null @@ -1,1465 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph12 -%%Creation Date: Thu, Oct 24, 1996 06:50 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/rx0 0 def /ry0 0 def /rx1 0 def /ry1 0 def -/tmp0 0 def /tmp1 0 def -/packedRed 0 def /packedGreen 0 def /packedBlue 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/setuserscreendict 22 dict def -setuserscreendict begin - -/tempctm matrix def -/temprot matrix def -/tempscale matrix def - -/concatprocs{ - /proc2 exch cvlit def - /proc1 exch cvlit def - /newproc proc1 length proc2 length add array def - newproc 0 proc1 putinterval - newproc proc1 length proc2 putinterval - newproc cvx -}def - -/resmatrix matrix def -/findresolution{ - 72 0 resmatrix defaultmatrix dtransform - /yres xdef /xres xdef - xres dup mul yres dup mul add sqrt -}def -end - -/setuserscreen{ - setuserscreendict begin - /spotfunction xdef - /screenangle xdef - /cellsize xdef - - /m tempctm currentmatrix def - /rm screenangle temprot rotate def - /sm cellsize dup tempscale scale def - - sm rm m m concatmatrix m concatmatrix pop - 1 0 m dtransform /y1 xdef /x1 xdef - /veclength x1 dup mul y1 dup mul add sqrt def - /frequency findresolution veclength div def - /newscreenangle y1 x1 atan def - m 2 get m 1 get mul m 0 get m 3 get mul sub 0 gt - { - { neg } /spotfunction load concatprocs - /spotfunction xdef - } if - frequency newscreenangle /spotfunction load setscreen - end -}def - -/setpatterndict 18 dict def -setpatterndict begin -/bitison{ - /ybit xdef /xbit xdef - /bytevalue bstring ybit bwidth mul xbit 8 idiv add get def - /mask 1 7 xbit 8 mod sub bitshift def - bytevalue mask and 0 ne -}def -end - -/bitpatternspotfunction{ - setpatterndict begin - /y xdef /x xdef - /xindex x 1 add 2 div bpside mul cvi def - /yindex y 1 add 2 div bpside mul cvi def - xindex yindex bitison - { /onbits onbits 1 add def 1 } - { /offbits offbits 1 add def 0 } - ifelse - end -}def - -/setpattern{ - setpatterndict begin - /cellsz xdef - /angle xdef - /bwidth xdef - /bpside xdef - /bstring xdef - - /onbits 0 def /offbits 0 def - cellsz angle /bitpatternspotfunction load setuserscreen - {} settransfer - offbits offbits onbits add div setgray - end -}def - -/FillPattern{ % patternstring -- - /pat xdef - gsave - pat 8 1 0 72 300 32 div div setpattern - fill - grestore -}def - - - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .5 sub round .5 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - - - - -% **** begin image stuff ***** -% The following are used for images. This has to be kept -% in synch with corresponding code in ImageDisp.c.In particular -% the expansion factor, 8, has to be in synch. -% packedcolor is (red*256+green)*256+blue - -/SetPackedColor{ % packedcolor SetPackedColor -- - dup 256 mod /tmp0 xdef % extract blue - 256 idiv - dup 256 mod /tmp1 xdef % extract green - 256 idiv % extract red - 255 div /packedRed xdef - tmp1 255 div /packedGreen xdef - tmp0 255 div /packedBlue xdef -}bdef - -/IR_FillRect{ - gsave - newpath - rx0 ry0 M - rx1 ry0 L - rx1 ry1 L - rx0 ry1 L - closepath - packedRed packedGreen packedBlue setrgbcolor - fill - grestore -}bdef - -/NewRectImageLine{ % x0 y0 x1 y1 packedcolor NewRectImageLine -- - SetPackedColor - - /ry1 xdef /rx1 xdef /ry0 xdef /rx0 xdef % remember starting rectange for following calls - - IR_FillRect -}bdef - -/rx{ % xdist rx -- - 8 div - dup 0 lt - { rx0 /rx1 xdef rx1 add /rx0 xdef } % neg delta steps left - { rx1 /rx0 xdef rx0 add /rx1 xdef } - ifelse - IR_FillRect -}bdef - -/ry{ % ydist rr -- - 8 div - dup 0 lt - { ry1 /ry0 xdef ry0 exch sub /ry1 xdef } % neg delta steps down - { ry0 /ry1 xdef ry1 exch sub /ry0 xdef } - ifelse - IR_FillRect -}bdef - - -/cx{ % xdist packedcolor cx -- - SetPackedColor - rx -}bdef - -/cy{ % ydist packedcolor cx -- - SetPackedColor - ry -}bdef - -% **** end image stuff ***** - - - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -45.50 10.00 45.50 249.00 MacLine -549.50 10.00 549.50 249.00 MacLine -1 ps -1.00 ps -549.50 249.50 542.50 249.50 MacLine -45.50 249.50 52.50 249.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(-2) 33.12 252.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 244.00 546.00 244.00 MacLine -grestore -1.00 ps -549.50 243.50 546.00 243.50 MacLine -45.50 243.50 49.00 243.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 238.00 546.00 238.00 MacLine -grestore -1.00 ps -549.50 237.50 546.00 237.50 MacLine -45.50 237.50 49.00 237.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 232.00 546.00 232.00 MacLine -grestore -1.00 ps -549.50 231.50 546.00 231.50 MacLine -45.50 231.50 49.00 231.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 226.00 546.00 226.00 MacLine -grestore -1.00 ps -549.50 225.50 546.00 225.50 MacLine -45.50 225.50 49.00 225.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 220.00 544.25 220.00 MacLine -grestore -1.00 ps -549.50 219.50 544.25 219.50 MacLine -45.50 219.50 50.75 219.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 214.00 546.00 214.00 MacLine -grestore -1.00 ps -549.50 213.50 546.00 213.50 MacLine -45.50 213.50 49.00 213.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 208.00 546.00 208.00 MacLine -grestore -1.00 ps -549.50 207.50 546.00 207.50 MacLine -45.50 207.50 49.00 207.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 202.00 546.00 202.00 MacLine -grestore -1.00 ps -549.50 201.50 546.00 201.50 MacLine -45.50 201.50 49.00 201.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 196.00 546.00 196.00 MacLine -grestore -1.00 ps -549.50 195.50 546.00 195.50 MacLine -45.50 195.50 49.00 195.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 189.88 542.50 189.88 MacLine -grestore -1.00 ps -549.50 189.50 542.50 189.50 MacLine -45.50 189.50 52.50 189.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-1) 33.12 192.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 184.00 546.00 184.00 MacLine -grestore -1.00 ps -549.50 183.50 546.00 183.50 MacLine -45.50 183.50 49.00 183.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 178.00 546.00 178.00 MacLine -grestore -1.00 ps -549.50 177.50 546.00 177.50 MacLine -45.50 177.50 49.00 177.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 172.00 546.00 172.00 MacLine -grestore -1.00 ps -549.50 171.50 546.00 171.50 MacLine -45.50 171.50 49.00 171.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 166.00 546.00 166.00 MacLine -grestore -1.00 ps -549.50 165.50 546.00 165.50 MacLine -45.50 165.50 49.00 165.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 160.00 544.25 160.00 MacLine -grestore -1.00 ps -549.50 159.50 544.25 159.50 MacLine -45.50 159.50 50.75 159.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 154.00 546.00 154.00 MacLine -grestore -1.00 ps -549.50 153.50 546.00 153.50 MacLine -45.50 153.50 49.00 153.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 148.00 546.00 148.00 MacLine -grestore -1.00 ps -549.50 147.50 546.00 147.50 MacLine -45.50 147.50 49.00 147.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 142.00 546.00 142.00 MacLine -grestore -1.00 ps -549.50 141.50 546.00 141.50 MacLine -45.50 141.50 49.00 141.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 136.00 546.00 136.00 MacLine -grestore -1.00 ps -549.50 135.50 546.00 135.50 MacLine -45.50 135.50 49.00 135.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 129.88 542.50 129.88 MacLine -grestore -1.00 ps -549.50 129.50 542.50 129.50 MacLine -45.50 129.50 52.50 129.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 36.50 132.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 124.00 546.00 124.00 MacLine -grestore -1.00 ps -549.50 123.50 546.00 123.50 MacLine -45.50 123.50 49.00 123.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 118.00 546.00 118.00 MacLine -grestore -1.00 ps -549.50 117.50 546.00 117.50 MacLine -45.50 117.50 49.00 117.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 112.00 546.00 112.00 MacLine -grestore -1.00 ps -549.50 111.50 546.00 111.50 MacLine -45.50 111.50 49.00 111.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 106.00 546.00 106.00 MacLine -grestore -1.00 ps -549.50 105.50 546.00 105.50 MacLine -45.50 105.50 49.00 105.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 100.00 544.25 100.00 MacLine -grestore -1.00 ps -549.50 99.50 544.25 99.50 MacLine -45.50 99.50 50.75 99.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 94.00 546.00 94.00 MacLine -grestore -1.00 ps -549.50 93.50 546.00 93.50 MacLine -45.50 93.50 49.00 93.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 88.00 546.00 88.00 MacLine -grestore -1.00 ps -549.50 87.50 546.00 87.50 MacLine -45.50 87.50 49.00 87.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 82.00 546.00 82.00 MacLine -grestore -1.00 ps -549.50 81.50 546.00 81.50 MacLine -45.50 81.50 49.00 81.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 76.00 546.00 76.00 MacLine -grestore -1.00 ps -549.50 75.50 546.00 75.50 MacLine -45.50 75.50 49.00 75.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 69.88 542.50 69.88 MacLine -grestore -1.00 ps -549.50 69.50 542.50 69.50 MacLine -45.50 69.50 52.50 69.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(1) 36.50 72.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 64.00 546.00 64.00 MacLine -grestore -1.00 ps -549.50 63.50 546.00 63.50 MacLine -45.50 63.50 49.00 63.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 58.00 546.00 58.00 MacLine -grestore -1.00 ps -549.50 57.50 546.00 57.50 MacLine -45.50 57.50 49.00 57.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 52.00 546.00 52.00 MacLine -grestore -1.00 ps -549.50 51.50 546.00 51.50 MacLine -45.50 51.50 49.00 51.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 46.00 546.00 46.00 MacLine -grestore -1.00 ps -549.50 45.50 546.00 45.50 MacLine -45.50 45.50 49.00 45.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 40.00 544.25 40.00 MacLine -grestore -1.00 ps -549.50 39.50 544.25 39.50 MacLine -45.50 39.50 50.75 39.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 34.00 546.00 34.00 MacLine -grestore -1.00 ps -549.50 33.50 546.00 33.50 MacLine -45.50 33.50 49.00 33.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 28.00 546.00 28.00 MacLine -grestore -1.00 ps -549.50 27.50 546.00 27.50 MacLine -45.50 27.50 49.00 27.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 22.00 546.00 22.00 MacLine -grestore -1.00 ps -549.50 21.50 546.00 21.50 MacLine -45.50 21.50 49.00 21.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 16.00 546.00 16.00 MacLine -grestore -1.00 ps -549.50 15.50 546.00 15.50 MacLine -45.50 15.50 49.00 15.50 MacLine -1 ps -1.00 ps -549.50 9.50 542.50 9.50 MacLine -45.50 9.50 52.50 9.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 36.50 12.75 5.50 WS -gsave 1.00 ps 46.50 130.00 549.50 130.00 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 148.12 translate -90 rotate -(y \(m\)) 0.00 0.00 36.38 WS -grestore -1.00 ps -46.00 249.50 549.00 249.50 MacLine -46.00 9.50 549.00 9.50 MacLine -1 ps -1.00 ps -45.50 9.50 45.50 16.50 MacLine -45.50 249.50 45.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-4) 41.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -52.25 246.00 52.25 13.00 MacLine -grestore -1.00 ps -51.75 9.50 51.75 13.00 MacLine -51.75 249.50 51.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -58.62 246.00 58.62 13.00 MacLine -grestore -1.00 ps -58.12 9.50 58.12 13.00 MacLine -58.12 249.50 58.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -64.88 246.00 64.88 13.00 MacLine -grestore -1.00 ps -64.38 9.50 64.38 13.00 MacLine -64.38 249.50 64.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -71.25 246.00 71.25 13.00 MacLine -grestore -1.00 ps -70.75 9.50 70.75 13.00 MacLine -70.75 249.50 70.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -77.50 244.25 77.50 14.75 MacLine -grestore -1.00 ps -77.00 9.50 77.00 14.75 MacLine -77.00 249.50 77.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -83.75 246.00 83.75 13.00 MacLine -grestore -1.00 ps -83.25 9.50 83.25 13.00 MacLine -83.25 249.50 83.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -90.12 246.00 90.12 13.00 MacLine -grestore -1.00 ps -89.62 9.50 89.62 13.00 MacLine -89.62 249.50 89.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -96.38 246.00 96.38 13.00 MacLine -grestore -1.00 ps -95.88 9.50 95.88 13.00 MacLine -95.88 249.50 95.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.75 246.00 102.75 13.00 MacLine -grestore -1.00 ps -102.25 9.50 102.25 13.00 MacLine -102.25 249.50 102.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -109.00 244.25 109.00 14.75 MacLine -grestore -1.00 ps -108.50 9.50 108.50 14.75 MacLine -108.50 249.50 108.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -115.25 246.00 115.25 13.00 MacLine -grestore -1.00 ps -114.75 9.50 114.75 13.00 MacLine -114.75 249.50 114.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -121.62 246.00 121.62 13.00 MacLine -grestore -1.00 ps -121.12 9.50 121.12 13.00 MacLine -121.12 249.50 121.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -127.88 246.00 127.88 13.00 MacLine -grestore -1.00 ps -127.38 9.50 127.38 13.00 MacLine -127.38 249.50 127.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -134.25 246.00 134.25 13.00 MacLine -grestore -1.00 ps -133.75 9.50 133.75 13.00 MacLine -133.75 249.50 133.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -140.50 244.25 140.50 14.75 MacLine -grestore -1.00 ps -140.00 9.50 140.00 14.75 MacLine -140.00 249.50 140.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -146.75 246.00 146.75 13.00 MacLine -grestore -1.00 ps -146.25 9.50 146.25 13.00 MacLine -146.25 249.50 146.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -153.12 246.00 153.12 13.00 MacLine -grestore -1.00 ps -152.62 9.50 152.62 13.00 MacLine -152.62 249.50 152.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.38 246.00 159.38 13.00 MacLine -grestore -1.00 ps -158.88 9.50 158.88 13.00 MacLine -158.88 249.50 158.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -165.75 246.00 165.75 13.00 MacLine -grestore -1.00 ps -165.25 9.50 165.25 13.00 MacLine -165.25 249.50 165.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -171.88 242.50 171.88 16.50 MacLine -grestore -1.00 ps -171.50 9.50 171.50 16.50 MacLine -171.50 249.50 171.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-2) 167.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -178.25 246.00 178.25 13.00 MacLine -grestore -1.00 ps -177.75 9.50 177.75 13.00 MacLine -177.75 249.50 177.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -184.62 246.00 184.62 13.00 MacLine -grestore -1.00 ps -184.12 9.50 184.12 13.00 MacLine -184.12 249.50 184.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -190.88 246.00 190.88 13.00 MacLine -grestore -1.00 ps -190.38 9.50 190.38 13.00 MacLine -190.38 249.50 190.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -197.25 246.00 197.25 13.00 MacLine -grestore -1.00 ps -196.75 9.50 196.75 13.00 MacLine -196.75 249.50 196.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -203.50 244.25 203.50 14.75 MacLine -grestore -1.00 ps -203.00 9.50 203.00 14.75 MacLine -203.00 249.50 203.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -209.75 246.00 209.75 13.00 MacLine -grestore -1.00 ps -209.25 9.50 209.25 13.00 MacLine -209.25 249.50 209.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -216.12 246.00 216.12 13.00 MacLine -grestore -1.00 ps -215.62 9.50 215.62 13.00 MacLine -215.62 249.50 215.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.38 246.00 222.38 13.00 MacLine -grestore -1.00 ps -221.88 9.50 221.88 13.00 MacLine -221.88 249.50 221.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -228.75 246.00 228.75 13.00 MacLine -grestore -1.00 ps -228.25 9.50 228.25 13.00 MacLine -228.25 249.50 228.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -235.00 244.25 235.00 14.75 MacLine -grestore -1.00 ps -234.50 9.50 234.50 14.75 MacLine -234.50 249.50 234.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -241.25 246.00 241.25 13.00 MacLine -grestore -1.00 ps -240.75 9.50 240.75 13.00 MacLine -240.75 249.50 240.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -247.62 246.00 247.62 13.00 MacLine -grestore -1.00 ps -247.12 9.50 247.12 13.00 MacLine -247.12 249.50 247.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -253.88 246.00 253.88 13.00 MacLine -grestore -1.00 ps -253.38 9.50 253.38 13.00 MacLine -253.38 249.50 253.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -260.25 246.00 260.25 13.00 MacLine -grestore -1.00 ps -259.75 9.50 259.75 13.00 MacLine -259.75 249.50 259.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.50 244.25 266.50 14.75 MacLine -grestore -1.00 ps -266.00 9.50 266.00 14.75 MacLine -266.00 249.50 266.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -272.75 246.00 272.75 13.00 MacLine -grestore -1.00 ps -272.25 9.50 272.25 13.00 MacLine -272.25 249.50 272.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -279.12 246.00 279.12 13.00 MacLine -grestore -1.00 ps -278.62 9.50 278.62 13.00 MacLine -278.62 249.50 278.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -285.38 246.00 285.38 13.00 MacLine -grestore -1.00 ps -284.88 9.50 284.88 13.00 MacLine -284.88 249.50 284.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -291.75 246.00 291.75 13.00 MacLine -grestore -1.00 ps -291.25 9.50 291.25 13.00 MacLine -291.25 249.50 291.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -297.88 242.50 297.88 16.50 MacLine -grestore -1.00 ps -297.50 9.50 297.50 16.50 MacLine -297.50 249.50 297.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 295.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -304.25 246.00 304.25 13.00 MacLine -grestore -1.00 ps -303.75 9.50 303.75 13.00 MacLine -303.75 249.50 303.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -310.62 246.00 310.62 13.00 MacLine -grestore -1.00 ps -310.12 9.50 310.12 13.00 MacLine -310.12 249.50 310.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.88 246.00 316.88 13.00 MacLine -grestore -1.00 ps -316.38 9.50 316.38 13.00 MacLine -316.38 249.50 316.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 246.00 323.25 13.00 MacLine -grestore -1.00 ps -322.75 9.50 322.75 13.00 MacLine -322.75 249.50 322.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -329.50 244.25 329.50 14.75 MacLine -grestore -1.00 ps -329.00 9.50 329.00 14.75 MacLine -329.00 249.50 329.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -335.75 246.00 335.75 13.00 MacLine -grestore -1.00 ps -335.25 9.50 335.25 13.00 MacLine -335.25 249.50 335.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.12 246.00 342.12 13.00 MacLine -grestore -1.00 ps -341.62 9.50 341.62 13.00 MacLine -341.62 249.50 341.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -348.38 246.00 348.38 13.00 MacLine -grestore -1.00 ps -347.88 9.50 347.88 13.00 MacLine -347.88 249.50 347.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -354.75 246.00 354.75 13.00 MacLine -grestore -1.00 ps -354.25 9.50 354.25 13.00 MacLine -354.25 249.50 354.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -361.00 244.25 361.00 14.75 MacLine -grestore -1.00 ps -360.50 9.50 360.50 14.75 MacLine -360.50 249.50 360.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -367.25 246.00 367.25 13.00 MacLine -grestore -1.00 ps -366.75 9.50 366.75 13.00 MacLine -366.75 249.50 366.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.62 246.00 373.62 13.00 MacLine -grestore -1.00 ps -373.12 9.50 373.12 13.00 MacLine -373.12 249.50 373.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -379.88 246.00 379.88 13.00 MacLine -grestore -1.00 ps -379.38 9.50 379.38 13.00 MacLine -379.38 249.50 379.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -386.25 246.00 386.25 13.00 MacLine -grestore -1.00 ps -385.75 9.50 385.75 13.00 MacLine -385.75 249.50 385.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.50 244.25 392.50 14.75 MacLine -grestore -1.00 ps -392.00 9.50 392.00 14.75 MacLine -392.00 249.50 392.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -398.75 246.00 398.75 13.00 MacLine -grestore -1.00 ps -398.25 9.50 398.25 13.00 MacLine -398.25 249.50 398.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -405.12 246.00 405.12 13.00 MacLine -grestore -1.00 ps -404.62 9.50 404.62 13.00 MacLine -404.62 249.50 404.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -411.38 246.00 411.38 13.00 MacLine -grestore -1.00 ps -410.88 9.50 410.88 13.00 MacLine -410.88 249.50 410.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -417.75 246.00 417.75 13.00 MacLine -grestore -1.00 ps -417.25 9.50 417.25 13.00 MacLine -417.25 249.50 417.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -423.88 242.50 423.88 16.50 MacLine -grestore -1.00 ps -423.50 9.50 423.50 16.50 MacLine -423.50 249.50 423.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 421.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -430.25 246.00 430.25 13.00 MacLine -grestore -1.00 ps -429.75 9.50 429.75 13.00 MacLine -429.75 249.50 429.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -436.62 246.00 436.62 13.00 MacLine -grestore -1.00 ps -436.12 9.50 436.12 13.00 MacLine -436.12 249.50 436.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.88 246.00 442.88 13.00 MacLine -grestore -1.00 ps -442.38 9.50 442.38 13.00 MacLine -442.38 249.50 442.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -449.25 246.00 449.25 13.00 MacLine -grestore -1.00 ps -448.75 9.50 448.75 13.00 MacLine -448.75 249.50 448.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -455.50 244.25 455.50 14.75 MacLine -grestore -1.00 ps -455.00 9.50 455.00 14.75 MacLine -455.00 249.50 455.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -461.75 246.00 461.75 13.00 MacLine -grestore -1.00 ps -461.25 9.50 461.25 13.00 MacLine -461.25 249.50 461.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -468.12 246.00 468.12 13.00 MacLine -grestore -1.00 ps -467.62 9.50 467.62 13.00 MacLine -467.62 249.50 467.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -474.38 246.00 474.38 13.00 MacLine -grestore -1.00 ps -473.88 9.50 473.88 13.00 MacLine -473.88 249.50 473.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.75 246.00 480.75 13.00 MacLine -grestore -1.00 ps -480.25 9.50 480.25 13.00 MacLine -480.25 249.50 480.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.00 244.25 487.00 14.75 MacLine -grestore -1.00 ps -486.50 9.50 486.50 14.75 MacLine -486.50 249.50 486.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -493.25 246.00 493.25 13.00 MacLine -grestore -1.00 ps -492.75 9.50 492.75 13.00 MacLine -492.75 249.50 492.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -499.62 246.00 499.62 13.00 MacLine -grestore -1.00 ps -499.12 9.50 499.12 13.00 MacLine -499.12 249.50 499.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -505.88 246.00 505.88 13.00 MacLine -grestore -1.00 ps -505.38 9.50 505.38 13.00 MacLine -505.38 249.50 505.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.25 246.00 512.25 13.00 MacLine -grestore -1.00 ps -511.75 9.50 511.75 13.00 MacLine -511.75 249.50 511.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -518.50 244.25 518.50 14.75 MacLine -grestore -1.00 ps -518.00 9.50 518.00 14.75 MacLine -518.00 249.50 518.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -524.75 246.00 524.75 13.00 MacLine -grestore -1.00 ps -524.25 9.50 524.25 13.00 MacLine -524.25 249.50 524.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -531.12 246.00 531.12 13.00 MacLine -grestore -1.00 ps -530.62 9.50 530.62 13.00 MacLine -530.62 249.50 530.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -537.38 246.00 537.38 13.00 MacLine -grestore -1.00 ps -536.88 9.50 536.88 13.00 MacLine -536.88 249.50 536.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -543.75 246.00 543.75 13.00 MacLine -grestore -1.00 ps -543.25 9.50 543.25 13.00 MacLine -543.25 249.50 543.25 246.00 MacLine -1 ps -1.00 ps -549.50 9.50 549.50 16.50 MacLine -549.50 249.50 549.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 547.25 262.25 5.50 WS -gsave 1.00 ps 298.00 249.50 298.00 10.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -(x \(m\)) 279.88 284.38 36.38 WS -0.50 ps -newpath 298.00 130.00 3.00 0 360 arc -0 StrokePath -296.62 128.62 299.50 131.50 2 CapLine -299.50 128.62 296.62 131.50 2 CapLine -newpath 336.62 116.62 3.00 0 360 arc -0 StrokePath -335.25 115.25 338.12 118.12 2 CapLine -338.12 115.25 335.25 118.12 2 CapLine -newpath 375.25 103.25 3.00 0 360 arc -0 StrokePath -373.88 101.88 376.75 104.75 2 CapLine -376.75 101.88 373.88 104.75 2 CapLine -newpath 413.88 89.88 3.00 0 360 arc -0 StrokePath -412.50 88.50 415.38 91.38 2 CapLine -415.38 88.50 412.50 91.38 2 CapLine -newpath 452.50 76.50 3.00 0 360 arc -0 StrokePath -451.12 75.12 454.00 78.00 2 CapLine -454.00 75.12 451.12 78.00 2 CapLine -newpath 491.12 63.12 3.00 0 360 arc -0 StrokePath -489.75 61.75 492.62 64.62 2 CapLine -492.62 61.75 489.75 64.62 2 CapLine -newpath 529.75 49.62 3.00 0 360 arc -0 StrokePath -528.38 48.25 531.25 51.12 2 CapLine -531.25 48.25 528.38 51.12 2 CapLine -1 ps -0.50 ps -295.00 130.00 301.00 130.00 2 CapLine -298.00 127.00 298.00 133.00 2 CapLine -325.50 146.75 331.50 146.75 2 CapLine -328.50 143.75 328.50 149.75 2 CapLine -356.00 163.50 362.00 163.50 2 CapLine -359.00 160.50 359.00 166.50 2 CapLine -386.38 180.25 392.38 180.25 2 CapLine -389.38 177.25 389.38 183.25 2 CapLine -416.88 196.88 422.88 196.88 2 CapLine -419.88 193.88 419.88 199.88 2 CapLine -447.38 213.62 453.38 213.62 2 CapLine -450.38 210.62 450.38 216.62 2 CapLine -477.88 230.38 483.88 230.38 2 CapLine -480.88 227.38 480.88 233.38 2 CapLine -508.25 247.12 514.25 247.12 2 CapLine -511.25 244.12 511.25 250.12 2 CapLine -1 ps -0.50 ps -newpath 235.00 130.00 3.00 0 360 arc -0 StrokePath -233.62 128.62 236.50 131.50 2 CapLine -236.50 128.62 233.62 131.50 2 CapLine -newpath 172.00 130.00 3.00 0 360 arc -0 StrokePath -170.62 128.62 173.50 131.50 2 CapLine -173.50 128.62 170.62 131.50 2 CapLine -newpath 109.00 130.00 3.00 0 360 arc -0 StrokePath -107.62 128.62 110.50 131.50 2 CapLine -110.50 128.62 107.62 131.50 2 CapLine -newpath 46.00 130.00 3.00 0 360 arc -0 StrokePath -44.62 128.62 47.50 131.50 2 CapLine -47.50 128.62 44.62 131.50 2 CapLine -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av13.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av13.gif deleted file mode 100755 index ccd9e094f..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av13.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av13.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av13.pdf deleted file mode 100644 index 2bf97c586..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av13.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av14.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av14.eps deleted file mode 100755 index f576c752e..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av14.eps +++ /dev/null @@ -1,1469 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph13 -%%Creation Date: Thu, Oct 24, 1996 06:51 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/rx0 0 def /ry0 0 def /rx1 0 def /ry1 0 def -/tmp0 0 def /tmp1 0 def -/packedRed 0 def /packedGreen 0 def /packedBlue 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/setuserscreendict 22 dict def -setuserscreendict begin - -/tempctm matrix def -/temprot matrix def -/tempscale matrix def - -/concatprocs{ - /proc2 exch cvlit def - /proc1 exch cvlit def - /newproc proc1 length proc2 length add array def - newproc 0 proc1 putinterval - newproc proc1 length proc2 putinterval - newproc cvx -}def - -/resmatrix matrix def -/findresolution{ - 72 0 resmatrix defaultmatrix dtransform - /yres xdef /xres xdef - xres dup mul yres dup mul add sqrt -}def -end - -/setuserscreen{ - setuserscreendict begin - /spotfunction xdef - /screenangle xdef - /cellsize xdef - - /m tempctm currentmatrix def - /rm screenangle temprot rotate def - /sm cellsize dup tempscale scale def - - sm rm m m concatmatrix m concatmatrix pop - 1 0 m dtransform /y1 xdef /x1 xdef - /veclength x1 dup mul y1 dup mul add sqrt def - /frequency findresolution veclength div def - /newscreenangle y1 x1 atan def - m 2 get m 1 get mul m 0 get m 3 get mul sub 0 gt - { - { neg } /spotfunction load concatprocs - /spotfunction xdef - } if - frequency newscreenangle /spotfunction load setscreen - end -}def - -/setpatterndict 18 dict def -setpatterndict begin -/bitison{ - /ybit xdef /xbit xdef - /bytevalue bstring ybit bwidth mul xbit 8 idiv add get def - /mask 1 7 xbit 8 mod sub bitshift def - bytevalue mask and 0 ne -}def -end - -/bitpatternspotfunction{ - setpatterndict begin - /y xdef /x xdef - /xindex x 1 add 2 div bpside mul cvi def - /yindex y 1 add 2 div bpside mul cvi def - xindex yindex bitison - { /onbits onbits 1 add def 1 } - { /offbits offbits 1 add def 0 } - ifelse - end -}def - -/setpattern{ - setpatterndict begin - /cellsz xdef - /angle xdef - /bwidth xdef - /bpside xdef - /bstring xdef - - /onbits 0 def /offbits 0 def - cellsz angle /bitpatternspotfunction load setuserscreen - {} settransfer - offbits offbits onbits add div setgray - end -}def - -/FillPattern{ % patternstring -- - /pat xdef - gsave - pat 8 1 0 72 300 32 div div setpattern - fill - grestore -}def - - - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .5 sub round .5 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - - - - -% **** begin image stuff ***** -% The following are used for images. This has to be kept -% in synch with corresponding code in ImageDisp.c.In particular -% the expansion factor, 8, has to be in synch. -% packedcolor is (red*256+green)*256+blue - -/SetPackedColor{ % packedcolor SetPackedColor -- - dup 256 mod /tmp0 xdef % extract blue - 256 idiv - dup 256 mod /tmp1 xdef % extract green - 256 idiv % extract red - 255 div /packedRed xdef - tmp1 255 div /packedGreen xdef - tmp0 255 div /packedBlue xdef -}bdef - -/IR_FillRect{ - gsave - newpath - rx0 ry0 M - rx1 ry0 L - rx1 ry1 L - rx0 ry1 L - closepath - packedRed packedGreen packedBlue setrgbcolor - fill - grestore -}bdef - -/NewRectImageLine{ % x0 y0 x1 y1 packedcolor NewRectImageLine -- - SetPackedColor - - /ry1 xdef /rx1 xdef /ry0 xdef /rx0 xdef % remember starting rectange for following calls - - IR_FillRect -}bdef - -/rx{ % xdist rx -- - 8 div - dup 0 lt - { rx0 /rx1 xdef rx1 add /rx0 xdef } % neg delta steps left - { rx1 /rx0 xdef rx0 add /rx1 xdef } - ifelse - IR_FillRect -}bdef - -/ry{ % ydist rr -- - 8 div - dup 0 lt - { ry1 /ry0 xdef ry0 exch sub /ry1 xdef } % neg delta steps down - { ry0 /ry1 xdef ry1 exch sub /ry0 xdef } - ifelse - IR_FillRect -}bdef - - -/cx{ % xdist packedcolor cx -- - SetPackedColor - rx -}bdef - -/cy{ % ydist packedcolor cx -- - SetPackedColor - ry -}bdef - -% **** end image stuff ***** - - - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -45.50 10.00 45.50 249.00 MacLine -549.50 10.00 549.50 249.00 MacLine -1 ps -1.00 ps -549.50 249.50 542.50 249.50 MacLine -45.50 249.50 52.50 249.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(-2) 33.12 252.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 244.00 546.00 244.00 MacLine -grestore -1.00 ps -549.50 243.50 546.00 243.50 MacLine -45.50 243.50 49.00 243.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 238.00 546.00 238.00 MacLine -grestore -1.00 ps -549.50 237.50 546.00 237.50 MacLine -45.50 237.50 49.00 237.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 232.00 546.00 232.00 MacLine -grestore -1.00 ps -549.50 231.50 546.00 231.50 MacLine -45.50 231.50 49.00 231.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 226.00 546.00 226.00 MacLine -grestore -1.00 ps -549.50 225.50 546.00 225.50 MacLine -45.50 225.50 49.00 225.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 220.00 544.25 220.00 MacLine -grestore -1.00 ps -549.50 219.50 544.25 219.50 MacLine -45.50 219.50 50.75 219.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 214.00 546.00 214.00 MacLine -grestore -1.00 ps -549.50 213.50 546.00 213.50 MacLine -45.50 213.50 49.00 213.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 208.00 546.00 208.00 MacLine -grestore -1.00 ps -549.50 207.50 546.00 207.50 MacLine -45.50 207.50 49.00 207.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 202.00 546.00 202.00 MacLine -grestore -1.00 ps -549.50 201.50 546.00 201.50 MacLine -45.50 201.50 49.00 201.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 196.00 546.00 196.00 MacLine -grestore -1.00 ps -549.50 195.50 546.00 195.50 MacLine -45.50 195.50 49.00 195.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 189.88 542.50 189.88 MacLine -grestore -1.00 ps -549.50 189.50 542.50 189.50 MacLine -45.50 189.50 52.50 189.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-1) 33.12 192.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 184.00 546.00 184.00 MacLine -grestore -1.00 ps -549.50 183.50 546.00 183.50 MacLine -45.50 183.50 49.00 183.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 178.00 546.00 178.00 MacLine -grestore -1.00 ps -549.50 177.50 546.00 177.50 MacLine -45.50 177.50 49.00 177.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 172.00 546.00 172.00 MacLine -grestore -1.00 ps -549.50 171.50 546.00 171.50 MacLine -45.50 171.50 49.00 171.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 166.00 546.00 166.00 MacLine -grestore -1.00 ps -549.50 165.50 546.00 165.50 MacLine -45.50 165.50 49.00 165.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 160.00 544.25 160.00 MacLine -grestore -1.00 ps -549.50 159.50 544.25 159.50 MacLine -45.50 159.50 50.75 159.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 154.00 546.00 154.00 MacLine -grestore -1.00 ps -549.50 153.50 546.00 153.50 MacLine -45.50 153.50 49.00 153.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 148.00 546.00 148.00 MacLine -grestore -1.00 ps -549.50 147.50 546.00 147.50 MacLine -45.50 147.50 49.00 147.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 142.00 546.00 142.00 MacLine -grestore -1.00 ps -549.50 141.50 546.00 141.50 MacLine -45.50 141.50 49.00 141.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 136.00 546.00 136.00 MacLine -grestore -1.00 ps -549.50 135.50 546.00 135.50 MacLine -45.50 135.50 49.00 135.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 129.88 542.50 129.88 MacLine -grestore -1.00 ps -549.50 129.50 542.50 129.50 MacLine -45.50 129.50 52.50 129.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 36.50 132.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 124.00 546.00 124.00 MacLine -grestore -1.00 ps -549.50 123.50 546.00 123.50 MacLine -45.50 123.50 49.00 123.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 118.00 546.00 118.00 MacLine -grestore -1.00 ps -549.50 117.50 546.00 117.50 MacLine -45.50 117.50 49.00 117.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 112.00 546.00 112.00 MacLine -grestore -1.00 ps -549.50 111.50 546.00 111.50 MacLine -45.50 111.50 49.00 111.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 106.00 546.00 106.00 MacLine -grestore -1.00 ps -549.50 105.50 546.00 105.50 MacLine -45.50 105.50 49.00 105.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 100.00 544.25 100.00 MacLine -grestore -1.00 ps -549.50 99.50 544.25 99.50 MacLine -45.50 99.50 50.75 99.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 94.00 546.00 94.00 MacLine -grestore -1.00 ps -549.50 93.50 546.00 93.50 MacLine -45.50 93.50 49.00 93.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 88.00 546.00 88.00 MacLine -grestore -1.00 ps -549.50 87.50 546.00 87.50 MacLine -45.50 87.50 49.00 87.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 82.00 546.00 82.00 MacLine -grestore -1.00 ps -549.50 81.50 546.00 81.50 MacLine -45.50 81.50 49.00 81.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 76.00 546.00 76.00 MacLine -grestore -1.00 ps -549.50 75.50 546.00 75.50 MacLine -45.50 75.50 49.00 75.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 69.88 542.50 69.88 MacLine -grestore -1.00 ps -549.50 69.50 542.50 69.50 MacLine -45.50 69.50 52.50 69.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(1) 36.50 72.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 64.00 546.00 64.00 MacLine -grestore -1.00 ps -549.50 63.50 546.00 63.50 MacLine -45.50 63.50 49.00 63.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 58.00 546.00 58.00 MacLine -grestore -1.00 ps -549.50 57.50 546.00 57.50 MacLine -45.50 57.50 49.00 57.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 52.00 546.00 52.00 MacLine -grestore -1.00 ps -549.50 51.50 546.00 51.50 MacLine -45.50 51.50 49.00 51.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 46.00 546.00 46.00 MacLine -grestore -1.00 ps -549.50 45.50 546.00 45.50 MacLine -45.50 45.50 49.00 45.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 40.00 544.25 40.00 MacLine -grestore -1.00 ps -549.50 39.50 544.25 39.50 MacLine -45.50 39.50 50.75 39.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 34.00 546.00 34.00 MacLine -grestore -1.00 ps -549.50 33.50 546.00 33.50 MacLine -45.50 33.50 49.00 33.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 28.00 546.00 28.00 MacLine -grestore -1.00 ps -549.50 27.50 546.00 27.50 MacLine -45.50 27.50 49.00 27.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 22.00 546.00 22.00 MacLine -grestore -1.00 ps -549.50 21.50 546.00 21.50 MacLine -45.50 21.50 49.00 21.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 16.00 546.00 16.00 MacLine -grestore -1.00 ps -549.50 15.50 546.00 15.50 MacLine -45.50 15.50 49.00 15.50 MacLine -1 ps -1.00 ps -549.50 9.50 542.50 9.50 MacLine -45.50 9.50 52.50 9.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 36.50 12.75 5.50 WS -gsave 1.00 ps 46.50 130.00 549.50 130.00 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 148.12 translate -90 rotate -(y \(m\)) 0.00 0.00 36.38 WS -grestore -1.00 ps -46.00 249.50 549.00 249.50 MacLine -46.00 9.50 549.00 9.50 MacLine -1 ps -1.00 ps -45.50 9.50 45.50 16.50 MacLine -45.50 249.50 45.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-4) 41.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -52.25 246.00 52.25 13.00 MacLine -grestore -1.00 ps -51.75 9.50 51.75 13.00 MacLine -51.75 249.50 51.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -58.62 246.00 58.62 13.00 MacLine -grestore -1.00 ps -58.12 9.50 58.12 13.00 MacLine -58.12 249.50 58.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -64.88 246.00 64.88 13.00 MacLine -grestore -1.00 ps -64.38 9.50 64.38 13.00 MacLine -64.38 249.50 64.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -71.25 246.00 71.25 13.00 MacLine -grestore -1.00 ps -70.75 9.50 70.75 13.00 MacLine -70.75 249.50 70.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -77.50 244.25 77.50 14.75 MacLine -grestore -1.00 ps -77.00 9.50 77.00 14.75 MacLine -77.00 249.50 77.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -83.75 246.00 83.75 13.00 MacLine -grestore -1.00 ps -83.25 9.50 83.25 13.00 MacLine -83.25 249.50 83.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -90.12 246.00 90.12 13.00 MacLine -grestore -1.00 ps -89.62 9.50 89.62 13.00 MacLine -89.62 249.50 89.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -96.38 246.00 96.38 13.00 MacLine -grestore -1.00 ps -95.88 9.50 95.88 13.00 MacLine -95.88 249.50 95.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.75 246.00 102.75 13.00 MacLine -grestore -1.00 ps -102.25 9.50 102.25 13.00 MacLine -102.25 249.50 102.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -109.00 244.25 109.00 14.75 MacLine -grestore -1.00 ps -108.50 9.50 108.50 14.75 MacLine -108.50 249.50 108.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -115.25 246.00 115.25 13.00 MacLine -grestore -1.00 ps -114.75 9.50 114.75 13.00 MacLine -114.75 249.50 114.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -121.62 246.00 121.62 13.00 MacLine -grestore -1.00 ps -121.12 9.50 121.12 13.00 MacLine -121.12 249.50 121.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -127.88 246.00 127.88 13.00 MacLine -grestore -1.00 ps -127.38 9.50 127.38 13.00 MacLine -127.38 249.50 127.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -134.25 246.00 134.25 13.00 MacLine -grestore -1.00 ps -133.75 9.50 133.75 13.00 MacLine -133.75 249.50 133.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -140.50 244.25 140.50 14.75 MacLine -grestore -1.00 ps -140.00 9.50 140.00 14.75 MacLine -140.00 249.50 140.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -146.75 246.00 146.75 13.00 MacLine -grestore -1.00 ps -146.25 9.50 146.25 13.00 MacLine -146.25 249.50 146.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -153.12 246.00 153.12 13.00 MacLine -grestore -1.00 ps -152.62 9.50 152.62 13.00 MacLine -152.62 249.50 152.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.38 246.00 159.38 13.00 MacLine -grestore -1.00 ps -158.88 9.50 158.88 13.00 MacLine -158.88 249.50 158.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -165.75 246.00 165.75 13.00 MacLine -grestore -1.00 ps -165.25 9.50 165.25 13.00 MacLine -165.25 249.50 165.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -171.88 242.50 171.88 16.50 MacLine -grestore -1.00 ps -171.50 9.50 171.50 16.50 MacLine -171.50 249.50 171.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-2) 167.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -178.25 246.00 178.25 13.00 MacLine -grestore -1.00 ps -177.75 9.50 177.75 13.00 MacLine -177.75 249.50 177.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -184.62 246.00 184.62 13.00 MacLine -grestore -1.00 ps -184.12 9.50 184.12 13.00 MacLine -184.12 249.50 184.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -190.88 246.00 190.88 13.00 MacLine -grestore -1.00 ps -190.38 9.50 190.38 13.00 MacLine -190.38 249.50 190.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -197.25 246.00 197.25 13.00 MacLine -grestore -1.00 ps -196.75 9.50 196.75 13.00 MacLine -196.75 249.50 196.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -203.50 244.25 203.50 14.75 MacLine -grestore -1.00 ps -203.00 9.50 203.00 14.75 MacLine -203.00 249.50 203.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -209.75 246.00 209.75 13.00 MacLine -grestore -1.00 ps -209.25 9.50 209.25 13.00 MacLine -209.25 249.50 209.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -216.12 246.00 216.12 13.00 MacLine -grestore -1.00 ps -215.62 9.50 215.62 13.00 MacLine -215.62 249.50 215.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.38 246.00 222.38 13.00 MacLine -grestore -1.00 ps -221.88 9.50 221.88 13.00 MacLine -221.88 249.50 221.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -228.75 246.00 228.75 13.00 MacLine -grestore -1.00 ps -228.25 9.50 228.25 13.00 MacLine -228.25 249.50 228.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -235.00 244.25 235.00 14.75 MacLine -grestore -1.00 ps -234.50 9.50 234.50 14.75 MacLine -234.50 249.50 234.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -241.25 246.00 241.25 13.00 MacLine -grestore -1.00 ps -240.75 9.50 240.75 13.00 MacLine -240.75 249.50 240.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -247.62 246.00 247.62 13.00 MacLine -grestore -1.00 ps -247.12 9.50 247.12 13.00 MacLine -247.12 249.50 247.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -253.88 246.00 253.88 13.00 MacLine -grestore -1.00 ps -253.38 9.50 253.38 13.00 MacLine -253.38 249.50 253.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -260.25 246.00 260.25 13.00 MacLine -grestore -1.00 ps -259.75 9.50 259.75 13.00 MacLine -259.75 249.50 259.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.50 244.25 266.50 14.75 MacLine -grestore -1.00 ps -266.00 9.50 266.00 14.75 MacLine -266.00 249.50 266.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -272.75 246.00 272.75 13.00 MacLine -grestore -1.00 ps -272.25 9.50 272.25 13.00 MacLine -272.25 249.50 272.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -279.12 246.00 279.12 13.00 MacLine -grestore -1.00 ps -278.62 9.50 278.62 13.00 MacLine -278.62 249.50 278.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -285.38 246.00 285.38 13.00 MacLine -grestore -1.00 ps -284.88 9.50 284.88 13.00 MacLine -284.88 249.50 284.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -291.75 246.00 291.75 13.00 MacLine -grestore -1.00 ps -291.25 9.50 291.25 13.00 MacLine -291.25 249.50 291.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -297.88 242.50 297.88 16.50 MacLine -grestore -1.00 ps -297.50 9.50 297.50 16.50 MacLine -297.50 249.50 297.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 295.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -304.25 246.00 304.25 13.00 MacLine -grestore -1.00 ps -303.75 9.50 303.75 13.00 MacLine -303.75 249.50 303.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -310.62 246.00 310.62 13.00 MacLine -grestore -1.00 ps -310.12 9.50 310.12 13.00 MacLine -310.12 249.50 310.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.88 246.00 316.88 13.00 MacLine -grestore -1.00 ps -316.38 9.50 316.38 13.00 MacLine -316.38 249.50 316.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 246.00 323.25 13.00 MacLine -grestore -1.00 ps -322.75 9.50 322.75 13.00 MacLine -322.75 249.50 322.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -329.50 244.25 329.50 14.75 MacLine -grestore -1.00 ps -329.00 9.50 329.00 14.75 MacLine -329.00 249.50 329.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -335.75 246.00 335.75 13.00 MacLine -grestore -1.00 ps -335.25 9.50 335.25 13.00 MacLine -335.25 249.50 335.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.12 246.00 342.12 13.00 MacLine -grestore -1.00 ps -341.62 9.50 341.62 13.00 MacLine -341.62 249.50 341.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -348.38 246.00 348.38 13.00 MacLine -grestore -1.00 ps -347.88 9.50 347.88 13.00 MacLine -347.88 249.50 347.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -354.75 246.00 354.75 13.00 MacLine -grestore -1.00 ps -354.25 9.50 354.25 13.00 MacLine -354.25 249.50 354.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -361.00 244.25 361.00 14.75 MacLine -grestore -1.00 ps -360.50 9.50 360.50 14.75 MacLine -360.50 249.50 360.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -367.25 246.00 367.25 13.00 MacLine -grestore -1.00 ps -366.75 9.50 366.75 13.00 MacLine -366.75 249.50 366.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.62 246.00 373.62 13.00 MacLine -grestore -1.00 ps -373.12 9.50 373.12 13.00 MacLine -373.12 249.50 373.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -379.88 246.00 379.88 13.00 MacLine -grestore -1.00 ps -379.38 9.50 379.38 13.00 MacLine -379.38 249.50 379.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -386.25 246.00 386.25 13.00 MacLine -grestore -1.00 ps -385.75 9.50 385.75 13.00 MacLine -385.75 249.50 385.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.50 244.25 392.50 14.75 MacLine -grestore -1.00 ps -392.00 9.50 392.00 14.75 MacLine -392.00 249.50 392.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -398.75 246.00 398.75 13.00 MacLine -grestore -1.00 ps -398.25 9.50 398.25 13.00 MacLine -398.25 249.50 398.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -405.12 246.00 405.12 13.00 MacLine -grestore -1.00 ps -404.62 9.50 404.62 13.00 MacLine -404.62 249.50 404.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -411.38 246.00 411.38 13.00 MacLine -grestore -1.00 ps -410.88 9.50 410.88 13.00 MacLine -410.88 249.50 410.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -417.75 246.00 417.75 13.00 MacLine -grestore -1.00 ps -417.25 9.50 417.25 13.00 MacLine -417.25 249.50 417.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -423.88 242.50 423.88 16.50 MacLine -grestore -1.00 ps -423.50 9.50 423.50 16.50 MacLine -423.50 249.50 423.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 421.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -430.25 246.00 430.25 13.00 MacLine -grestore -1.00 ps -429.75 9.50 429.75 13.00 MacLine -429.75 249.50 429.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -436.62 246.00 436.62 13.00 MacLine -grestore -1.00 ps -436.12 9.50 436.12 13.00 MacLine -436.12 249.50 436.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.88 246.00 442.88 13.00 MacLine -grestore -1.00 ps -442.38 9.50 442.38 13.00 MacLine -442.38 249.50 442.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -449.25 246.00 449.25 13.00 MacLine -grestore -1.00 ps -448.75 9.50 448.75 13.00 MacLine -448.75 249.50 448.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -455.50 244.25 455.50 14.75 MacLine -grestore -1.00 ps -455.00 9.50 455.00 14.75 MacLine -455.00 249.50 455.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -461.75 246.00 461.75 13.00 MacLine -grestore -1.00 ps -461.25 9.50 461.25 13.00 MacLine -461.25 249.50 461.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -468.12 246.00 468.12 13.00 MacLine -grestore -1.00 ps -467.62 9.50 467.62 13.00 MacLine -467.62 249.50 467.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -474.38 246.00 474.38 13.00 MacLine -grestore -1.00 ps -473.88 9.50 473.88 13.00 MacLine -473.88 249.50 473.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.75 246.00 480.75 13.00 MacLine -grestore -1.00 ps -480.25 9.50 480.25 13.00 MacLine -480.25 249.50 480.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.00 244.25 487.00 14.75 MacLine -grestore -1.00 ps -486.50 9.50 486.50 14.75 MacLine -486.50 249.50 486.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -493.25 246.00 493.25 13.00 MacLine -grestore -1.00 ps -492.75 9.50 492.75 13.00 MacLine -492.75 249.50 492.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -499.62 246.00 499.62 13.00 MacLine -grestore -1.00 ps -499.12 9.50 499.12 13.00 MacLine -499.12 249.50 499.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -505.88 246.00 505.88 13.00 MacLine -grestore -1.00 ps -505.38 9.50 505.38 13.00 MacLine -505.38 249.50 505.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.25 246.00 512.25 13.00 MacLine -grestore -1.00 ps -511.75 9.50 511.75 13.00 MacLine -511.75 249.50 511.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -518.50 244.25 518.50 14.75 MacLine -grestore -1.00 ps -518.00 9.50 518.00 14.75 MacLine -518.00 249.50 518.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -524.75 246.00 524.75 13.00 MacLine -grestore -1.00 ps -524.25 9.50 524.25 13.00 MacLine -524.25 249.50 524.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -531.12 246.00 531.12 13.00 MacLine -grestore -1.00 ps -530.62 9.50 530.62 13.00 MacLine -530.62 249.50 530.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -537.38 246.00 537.38 13.00 MacLine -grestore -1.00 ps -536.88 9.50 536.88 13.00 MacLine -536.88 249.50 536.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -543.75 246.00 543.75 13.00 MacLine -grestore -1.00 ps -543.25 9.50 543.25 13.00 MacLine -543.25 249.50 543.25 246.00 MacLine -1 ps -1.00 ps -549.50 9.50 549.50 16.50 MacLine -549.50 249.50 549.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 547.25 262.25 5.50 WS -gsave 1.00 ps 298.00 249.50 298.00 10.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -(x \(m\)) 279.88 284.38 36.38 WS -0.50 ps -newpath 298.00 130.00 3.00 0 360 arc -0 StrokePath -296.62 128.62 299.50 131.50 2 CapLine -299.50 128.62 296.62 131.50 2 CapLine -newpath 341.50 114.88 3.00 0 360 arc -0 StrokePath -340.12 113.50 343.00 116.38 2 CapLine -343.00 113.50 340.12 116.38 2 CapLine -newpath 385.00 99.88 3.00 0 360 arc -0 StrokePath -383.62 98.50 386.50 101.38 2 CapLine -386.50 98.50 383.62 101.38 2 CapLine -newpath 428.62 84.75 3.00 0 360 arc -0 StrokePath -427.25 83.38 430.12 86.25 2 CapLine -430.12 83.38 427.25 86.25 2 CapLine -newpath 472.12 69.62 3.00 0 360 arc -0 StrokePath -470.75 68.25 473.62 71.12 2 CapLine -473.62 68.25 470.75 71.12 2 CapLine -newpath 515.62 54.62 3.00 0 360 arc -0 StrokePath -514.25 53.25 517.12 56.12 2 CapLine -517.12 53.25 514.25 56.12 2 CapLine -1 ps -0.50 ps -295.00 130.00 301.00 130.00 2 CapLine -298.00 127.00 298.00 133.00 2 CapLine -308.38 140.38 314.38 140.38 2 CapLine -311.38 137.38 311.38 143.38 2 CapLine -321.88 150.75 327.88 150.75 2 CapLine -324.88 147.75 324.88 153.75 2 CapLine -335.25 161.25 341.25 161.25 2 CapLine -338.25 158.25 338.25 164.25 2 CapLine -348.75 171.62 354.75 171.62 2 CapLine -351.75 168.62 351.75 174.62 2 CapLine -362.12 182.00 368.12 182.00 2 CapLine -365.12 179.00 365.12 185.00 2 CapLine -375.62 192.38 381.62 192.38 2 CapLine -378.62 189.38 378.62 195.38 2 CapLine -389.00 202.88 395.00 202.88 2 CapLine -392.00 199.88 392.00 205.88 2 CapLine -402.50 213.25 408.50 213.25 2 CapLine -405.50 210.25 405.50 216.25 2 CapLine -415.88 223.62 421.88 223.62 2 CapLine -418.88 220.62 418.88 226.62 2 CapLine -429.38 234.00 435.38 234.00 2 CapLine -432.38 231.00 432.38 237.00 2 CapLine -442.75 244.50 448.75 244.50 2 CapLine -445.75 241.50 445.75 247.50 2 CapLine -1 ps -0.50 ps -newpath 235.00 130.00 3.00 0 360 arc -0 StrokePath -233.62 128.62 236.50 131.50 2 CapLine -236.50 128.62 233.62 131.50 2 CapLine -newpath 172.00 130.00 3.00 0 360 arc -0 StrokePath -170.62 128.62 173.50 131.50 2 CapLine -173.50 128.62 170.62 131.50 2 CapLine -newpath 109.00 130.00 3.00 0 360 arc -0 StrokePath -107.62 128.62 110.50 131.50 2 CapLine -110.50 128.62 107.62 131.50 2 CapLine -newpath 46.00 130.00 3.00 0 360 arc -0 StrokePath -44.62 128.62 47.50 131.50 2 CapLine -47.50 128.62 44.62 131.50 2 CapLine -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av14.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av14.gif deleted file mode 100755 index a6ab8e271..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av14.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av15.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av15.eps deleted file mode 100755 index dafcd784a..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av15.eps +++ /dev/null @@ -1,1467 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph14 -%%Creation Date: Thu, Oct 24, 1996 06:51 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/rx0 0 def /ry0 0 def /rx1 0 def /ry1 0 def -/tmp0 0 def /tmp1 0 def -/packedRed 0 def /packedGreen 0 def /packedBlue 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/setuserscreendict 22 dict def -setuserscreendict begin - -/tempctm matrix def -/temprot matrix def -/tempscale matrix def - -/concatprocs{ - /proc2 exch cvlit def - /proc1 exch cvlit def - /newproc proc1 length proc2 length add array def - newproc 0 proc1 putinterval - newproc proc1 length proc2 putinterval - newproc cvx -}def - -/resmatrix matrix def -/findresolution{ - 72 0 resmatrix defaultmatrix dtransform - /yres xdef /xres xdef - xres dup mul yres dup mul add sqrt -}def -end - -/setuserscreen{ - setuserscreendict begin - /spotfunction xdef - /screenangle xdef - /cellsize xdef - - /m tempctm currentmatrix def - /rm screenangle temprot rotate def - /sm cellsize dup tempscale scale def - - sm rm m m concatmatrix m concatmatrix pop - 1 0 m dtransform /y1 xdef /x1 xdef - /veclength x1 dup mul y1 dup mul add sqrt def - /frequency findresolution veclength div def - /newscreenangle y1 x1 atan def - m 2 get m 1 get mul m 0 get m 3 get mul sub 0 gt - { - { neg } /spotfunction load concatprocs - /spotfunction xdef - } if - frequency newscreenangle /spotfunction load setscreen - end -}def - -/setpatterndict 18 dict def -setpatterndict begin -/bitison{ - /ybit xdef /xbit xdef - /bytevalue bstring ybit bwidth mul xbit 8 idiv add get def - /mask 1 7 xbit 8 mod sub bitshift def - bytevalue mask and 0 ne -}def -end - -/bitpatternspotfunction{ - setpatterndict begin - /y xdef /x xdef - /xindex x 1 add 2 div bpside mul cvi def - /yindex y 1 add 2 div bpside mul cvi def - xindex yindex bitison - { /onbits onbits 1 add def 1 } - { /offbits offbits 1 add def 0 } - ifelse - end -}def - -/setpattern{ - setpatterndict begin - /cellsz xdef - /angle xdef - /bwidth xdef - /bpside xdef - /bstring xdef - - /onbits 0 def /offbits 0 def - cellsz angle /bitpatternspotfunction load setuserscreen - {} settransfer - offbits offbits onbits add div setgray - end -}def - -/FillPattern{ % patternstring -- - /pat xdef - gsave - pat 8 1 0 72 300 32 div div setpattern - fill - grestore -}def - - - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .5 sub round .5 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - - - - -% **** begin image stuff ***** -% The following are used for images. This has to be kept -% in synch with corresponding code in ImageDisp.c.In particular -% the expansion factor, 8, has to be in synch. -% packedcolor is (red*256+green)*256+blue - -/SetPackedColor{ % packedcolor SetPackedColor -- - dup 256 mod /tmp0 xdef % extract blue - 256 idiv - dup 256 mod /tmp1 xdef % extract green - 256 idiv % extract red - 255 div /packedRed xdef - tmp1 255 div /packedGreen xdef - tmp0 255 div /packedBlue xdef -}bdef - -/IR_FillRect{ - gsave - newpath - rx0 ry0 M - rx1 ry0 L - rx1 ry1 L - rx0 ry1 L - closepath - packedRed packedGreen packedBlue setrgbcolor - fill - grestore -}bdef - -/NewRectImageLine{ % x0 y0 x1 y1 packedcolor NewRectImageLine -- - SetPackedColor - - /ry1 xdef /rx1 xdef /ry0 xdef /rx0 xdef % remember starting rectange for following calls - - IR_FillRect -}bdef - -/rx{ % xdist rx -- - 8 div - dup 0 lt - { rx0 /rx1 xdef rx1 add /rx0 xdef } % neg delta steps left - { rx1 /rx0 xdef rx0 add /rx1 xdef } - ifelse - IR_FillRect -}bdef - -/ry{ % ydist rr -- - 8 div - dup 0 lt - { ry1 /ry0 xdef ry0 exch sub /ry1 xdef } % neg delta steps down - { ry0 /ry1 xdef ry1 exch sub /ry0 xdef } - ifelse - IR_FillRect -}bdef - - -/cx{ % xdist packedcolor cx -- - SetPackedColor - rx -}bdef - -/cy{ % ydist packedcolor cx -- - SetPackedColor - ry -}bdef - -% **** end image stuff ***** - - - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -45.50 10.00 45.50 249.00 MacLine -549.50 10.00 549.50 249.00 MacLine -1 ps -1.00 ps -549.50 249.50 542.50 249.50 MacLine -45.50 249.50 52.50 249.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(-2) 33.12 252.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 244.00 546.00 244.00 MacLine -grestore -1.00 ps -549.50 243.50 546.00 243.50 MacLine -45.50 243.50 49.00 243.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 238.00 546.00 238.00 MacLine -grestore -1.00 ps -549.50 237.50 546.00 237.50 MacLine -45.50 237.50 49.00 237.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 232.00 546.00 232.00 MacLine -grestore -1.00 ps -549.50 231.50 546.00 231.50 MacLine -45.50 231.50 49.00 231.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 226.00 546.00 226.00 MacLine -grestore -1.00 ps -549.50 225.50 546.00 225.50 MacLine -45.50 225.50 49.00 225.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 220.00 544.25 220.00 MacLine -grestore -1.00 ps -549.50 219.50 544.25 219.50 MacLine -45.50 219.50 50.75 219.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 214.00 546.00 214.00 MacLine -grestore -1.00 ps -549.50 213.50 546.00 213.50 MacLine -45.50 213.50 49.00 213.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 208.00 546.00 208.00 MacLine -grestore -1.00 ps -549.50 207.50 546.00 207.50 MacLine -45.50 207.50 49.00 207.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 202.00 546.00 202.00 MacLine -grestore -1.00 ps -549.50 201.50 546.00 201.50 MacLine -45.50 201.50 49.00 201.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 196.00 546.00 196.00 MacLine -grestore -1.00 ps -549.50 195.50 546.00 195.50 MacLine -45.50 195.50 49.00 195.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 189.88 542.50 189.88 MacLine -grestore -1.00 ps -549.50 189.50 542.50 189.50 MacLine -45.50 189.50 52.50 189.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-1) 33.12 192.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 184.00 546.00 184.00 MacLine -grestore -1.00 ps -549.50 183.50 546.00 183.50 MacLine -45.50 183.50 49.00 183.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 178.00 546.00 178.00 MacLine -grestore -1.00 ps -549.50 177.50 546.00 177.50 MacLine -45.50 177.50 49.00 177.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 172.00 546.00 172.00 MacLine -grestore -1.00 ps -549.50 171.50 546.00 171.50 MacLine -45.50 171.50 49.00 171.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 166.00 546.00 166.00 MacLine -grestore -1.00 ps -549.50 165.50 546.00 165.50 MacLine -45.50 165.50 49.00 165.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 160.00 544.25 160.00 MacLine -grestore -1.00 ps -549.50 159.50 544.25 159.50 MacLine -45.50 159.50 50.75 159.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 154.00 546.00 154.00 MacLine -grestore -1.00 ps -549.50 153.50 546.00 153.50 MacLine -45.50 153.50 49.00 153.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 148.00 546.00 148.00 MacLine -grestore -1.00 ps -549.50 147.50 546.00 147.50 MacLine -45.50 147.50 49.00 147.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 142.00 546.00 142.00 MacLine -grestore -1.00 ps -549.50 141.50 546.00 141.50 MacLine -45.50 141.50 49.00 141.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 136.00 546.00 136.00 MacLine -grestore -1.00 ps -549.50 135.50 546.00 135.50 MacLine -45.50 135.50 49.00 135.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 129.88 542.50 129.88 MacLine -grestore -1.00 ps -549.50 129.50 542.50 129.50 MacLine -45.50 129.50 52.50 129.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 36.50 132.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 124.00 546.00 124.00 MacLine -grestore -1.00 ps -549.50 123.50 546.00 123.50 MacLine -45.50 123.50 49.00 123.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 118.00 546.00 118.00 MacLine -grestore -1.00 ps -549.50 117.50 546.00 117.50 MacLine -45.50 117.50 49.00 117.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 112.00 546.00 112.00 MacLine -grestore -1.00 ps -549.50 111.50 546.00 111.50 MacLine -45.50 111.50 49.00 111.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 106.00 546.00 106.00 MacLine -grestore -1.00 ps -549.50 105.50 546.00 105.50 MacLine -45.50 105.50 49.00 105.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 100.00 544.25 100.00 MacLine -grestore -1.00 ps -549.50 99.50 544.25 99.50 MacLine -45.50 99.50 50.75 99.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 94.00 546.00 94.00 MacLine -grestore -1.00 ps -549.50 93.50 546.00 93.50 MacLine -45.50 93.50 49.00 93.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 88.00 546.00 88.00 MacLine -grestore -1.00 ps -549.50 87.50 546.00 87.50 MacLine -45.50 87.50 49.00 87.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 82.00 546.00 82.00 MacLine -grestore -1.00 ps -549.50 81.50 546.00 81.50 MacLine -45.50 81.50 49.00 81.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 76.00 546.00 76.00 MacLine -grestore -1.00 ps -549.50 75.50 546.00 75.50 MacLine -45.50 75.50 49.00 75.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 69.88 542.50 69.88 MacLine -grestore -1.00 ps -549.50 69.50 542.50 69.50 MacLine -45.50 69.50 52.50 69.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(1) 36.50 72.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 64.00 546.00 64.00 MacLine -grestore -1.00 ps -549.50 63.50 546.00 63.50 MacLine -45.50 63.50 49.00 63.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 58.00 546.00 58.00 MacLine -grestore -1.00 ps -549.50 57.50 546.00 57.50 MacLine -45.50 57.50 49.00 57.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 52.00 546.00 52.00 MacLine -grestore -1.00 ps -549.50 51.50 546.00 51.50 MacLine -45.50 51.50 49.00 51.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 46.00 546.00 46.00 MacLine -grestore -1.00 ps -549.50 45.50 546.00 45.50 MacLine -45.50 45.50 49.00 45.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 40.00 544.25 40.00 MacLine -grestore -1.00 ps -549.50 39.50 544.25 39.50 MacLine -45.50 39.50 50.75 39.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 34.00 546.00 34.00 MacLine -grestore -1.00 ps -549.50 33.50 546.00 33.50 MacLine -45.50 33.50 49.00 33.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 28.00 546.00 28.00 MacLine -grestore -1.00 ps -549.50 27.50 546.00 27.50 MacLine -45.50 27.50 49.00 27.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 22.00 546.00 22.00 MacLine -grestore -1.00 ps -549.50 21.50 546.00 21.50 MacLine -45.50 21.50 49.00 21.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 16.00 546.00 16.00 MacLine -grestore -1.00 ps -549.50 15.50 546.00 15.50 MacLine -45.50 15.50 49.00 15.50 MacLine -1 ps -1.00 ps -549.50 9.50 542.50 9.50 MacLine -45.50 9.50 52.50 9.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 36.50 12.75 5.50 WS -gsave 1.00 ps 46.50 130.00 549.50 130.00 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 148.12 translate -90 rotate -(y \(m\)) 0.00 0.00 36.38 WS -grestore -1.00 ps -46.00 249.50 549.00 249.50 MacLine -46.00 9.50 549.00 9.50 MacLine -1 ps -1.00 ps -45.50 9.50 45.50 16.50 MacLine -45.50 249.50 45.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-4) 41.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -52.25 246.00 52.25 13.00 MacLine -grestore -1.00 ps -51.75 9.50 51.75 13.00 MacLine -51.75 249.50 51.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -58.62 246.00 58.62 13.00 MacLine -grestore -1.00 ps -58.12 9.50 58.12 13.00 MacLine -58.12 249.50 58.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -64.88 246.00 64.88 13.00 MacLine -grestore -1.00 ps -64.38 9.50 64.38 13.00 MacLine -64.38 249.50 64.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -71.25 246.00 71.25 13.00 MacLine -grestore -1.00 ps -70.75 9.50 70.75 13.00 MacLine -70.75 249.50 70.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -77.50 244.25 77.50 14.75 MacLine -grestore -1.00 ps -77.00 9.50 77.00 14.75 MacLine -77.00 249.50 77.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -83.75 246.00 83.75 13.00 MacLine -grestore -1.00 ps -83.25 9.50 83.25 13.00 MacLine -83.25 249.50 83.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -90.12 246.00 90.12 13.00 MacLine -grestore -1.00 ps -89.62 9.50 89.62 13.00 MacLine -89.62 249.50 89.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -96.38 246.00 96.38 13.00 MacLine -grestore -1.00 ps -95.88 9.50 95.88 13.00 MacLine -95.88 249.50 95.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.75 246.00 102.75 13.00 MacLine -grestore -1.00 ps -102.25 9.50 102.25 13.00 MacLine -102.25 249.50 102.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -109.00 244.25 109.00 14.75 MacLine -grestore -1.00 ps -108.50 9.50 108.50 14.75 MacLine -108.50 249.50 108.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -115.25 246.00 115.25 13.00 MacLine -grestore -1.00 ps -114.75 9.50 114.75 13.00 MacLine -114.75 249.50 114.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -121.62 246.00 121.62 13.00 MacLine -grestore -1.00 ps -121.12 9.50 121.12 13.00 MacLine -121.12 249.50 121.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -127.88 246.00 127.88 13.00 MacLine -grestore -1.00 ps -127.38 9.50 127.38 13.00 MacLine -127.38 249.50 127.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -134.25 246.00 134.25 13.00 MacLine -grestore -1.00 ps -133.75 9.50 133.75 13.00 MacLine -133.75 249.50 133.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -140.50 244.25 140.50 14.75 MacLine -grestore -1.00 ps -140.00 9.50 140.00 14.75 MacLine -140.00 249.50 140.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -146.75 246.00 146.75 13.00 MacLine -grestore -1.00 ps -146.25 9.50 146.25 13.00 MacLine -146.25 249.50 146.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -153.12 246.00 153.12 13.00 MacLine -grestore -1.00 ps -152.62 9.50 152.62 13.00 MacLine -152.62 249.50 152.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.38 246.00 159.38 13.00 MacLine -grestore -1.00 ps -158.88 9.50 158.88 13.00 MacLine -158.88 249.50 158.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -165.75 246.00 165.75 13.00 MacLine -grestore -1.00 ps -165.25 9.50 165.25 13.00 MacLine -165.25 249.50 165.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -171.88 242.50 171.88 16.50 MacLine -grestore -1.00 ps -171.50 9.50 171.50 16.50 MacLine -171.50 249.50 171.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-2) 167.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -178.25 246.00 178.25 13.00 MacLine -grestore -1.00 ps -177.75 9.50 177.75 13.00 MacLine -177.75 249.50 177.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -184.62 246.00 184.62 13.00 MacLine -grestore -1.00 ps -184.12 9.50 184.12 13.00 MacLine -184.12 249.50 184.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -190.88 246.00 190.88 13.00 MacLine -grestore -1.00 ps -190.38 9.50 190.38 13.00 MacLine -190.38 249.50 190.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -197.25 246.00 197.25 13.00 MacLine -grestore -1.00 ps -196.75 9.50 196.75 13.00 MacLine -196.75 249.50 196.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -203.50 244.25 203.50 14.75 MacLine -grestore -1.00 ps -203.00 9.50 203.00 14.75 MacLine -203.00 249.50 203.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -209.75 246.00 209.75 13.00 MacLine -grestore -1.00 ps -209.25 9.50 209.25 13.00 MacLine -209.25 249.50 209.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -216.12 246.00 216.12 13.00 MacLine -grestore -1.00 ps -215.62 9.50 215.62 13.00 MacLine -215.62 249.50 215.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.38 246.00 222.38 13.00 MacLine -grestore -1.00 ps -221.88 9.50 221.88 13.00 MacLine -221.88 249.50 221.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -228.75 246.00 228.75 13.00 MacLine -grestore -1.00 ps -228.25 9.50 228.25 13.00 MacLine -228.25 249.50 228.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -235.00 244.25 235.00 14.75 MacLine -grestore -1.00 ps -234.50 9.50 234.50 14.75 MacLine -234.50 249.50 234.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -241.25 246.00 241.25 13.00 MacLine -grestore -1.00 ps -240.75 9.50 240.75 13.00 MacLine -240.75 249.50 240.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -247.62 246.00 247.62 13.00 MacLine -grestore -1.00 ps -247.12 9.50 247.12 13.00 MacLine -247.12 249.50 247.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -253.88 246.00 253.88 13.00 MacLine -grestore -1.00 ps -253.38 9.50 253.38 13.00 MacLine -253.38 249.50 253.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -260.25 246.00 260.25 13.00 MacLine -grestore -1.00 ps -259.75 9.50 259.75 13.00 MacLine -259.75 249.50 259.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.50 244.25 266.50 14.75 MacLine -grestore -1.00 ps -266.00 9.50 266.00 14.75 MacLine -266.00 249.50 266.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -272.75 246.00 272.75 13.00 MacLine -grestore -1.00 ps -272.25 9.50 272.25 13.00 MacLine -272.25 249.50 272.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -279.12 246.00 279.12 13.00 MacLine -grestore -1.00 ps -278.62 9.50 278.62 13.00 MacLine -278.62 249.50 278.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -285.38 246.00 285.38 13.00 MacLine -grestore -1.00 ps -284.88 9.50 284.88 13.00 MacLine -284.88 249.50 284.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -291.75 246.00 291.75 13.00 MacLine -grestore -1.00 ps -291.25 9.50 291.25 13.00 MacLine -291.25 249.50 291.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -297.88 242.50 297.88 16.50 MacLine -grestore -1.00 ps -297.50 9.50 297.50 16.50 MacLine -297.50 249.50 297.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 295.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -304.25 246.00 304.25 13.00 MacLine -grestore -1.00 ps -303.75 9.50 303.75 13.00 MacLine -303.75 249.50 303.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -310.62 246.00 310.62 13.00 MacLine -grestore -1.00 ps -310.12 9.50 310.12 13.00 MacLine -310.12 249.50 310.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.88 246.00 316.88 13.00 MacLine -grestore -1.00 ps -316.38 9.50 316.38 13.00 MacLine -316.38 249.50 316.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 246.00 323.25 13.00 MacLine -grestore -1.00 ps -322.75 9.50 322.75 13.00 MacLine -322.75 249.50 322.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -329.50 244.25 329.50 14.75 MacLine -grestore -1.00 ps -329.00 9.50 329.00 14.75 MacLine -329.00 249.50 329.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -335.75 246.00 335.75 13.00 MacLine -grestore -1.00 ps -335.25 9.50 335.25 13.00 MacLine -335.25 249.50 335.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.12 246.00 342.12 13.00 MacLine -grestore -1.00 ps -341.62 9.50 341.62 13.00 MacLine -341.62 249.50 341.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -348.38 246.00 348.38 13.00 MacLine -grestore -1.00 ps -347.88 9.50 347.88 13.00 MacLine -347.88 249.50 347.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -354.75 246.00 354.75 13.00 MacLine -grestore -1.00 ps -354.25 9.50 354.25 13.00 MacLine -354.25 249.50 354.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -361.00 244.25 361.00 14.75 MacLine -grestore -1.00 ps -360.50 9.50 360.50 14.75 MacLine -360.50 249.50 360.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -367.25 246.00 367.25 13.00 MacLine -grestore -1.00 ps -366.75 9.50 366.75 13.00 MacLine -366.75 249.50 366.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.62 246.00 373.62 13.00 MacLine -grestore -1.00 ps -373.12 9.50 373.12 13.00 MacLine -373.12 249.50 373.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -379.88 246.00 379.88 13.00 MacLine -grestore -1.00 ps -379.38 9.50 379.38 13.00 MacLine -379.38 249.50 379.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -386.25 246.00 386.25 13.00 MacLine -grestore -1.00 ps -385.75 9.50 385.75 13.00 MacLine -385.75 249.50 385.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.50 244.25 392.50 14.75 MacLine -grestore -1.00 ps -392.00 9.50 392.00 14.75 MacLine -392.00 249.50 392.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -398.75 246.00 398.75 13.00 MacLine -grestore -1.00 ps -398.25 9.50 398.25 13.00 MacLine -398.25 249.50 398.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -405.12 246.00 405.12 13.00 MacLine -grestore -1.00 ps -404.62 9.50 404.62 13.00 MacLine -404.62 249.50 404.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -411.38 246.00 411.38 13.00 MacLine -grestore -1.00 ps -410.88 9.50 410.88 13.00 MacLine -410.88 249.50 410.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -417.75 246.00 417.75 13.00 MacLine -grestore -1.00 ps -417.25 9.50 417.25 13.00 MacLine -417.25 249.50 417.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -423.88 242.50 423.88 16.50 MacLine -grestore -1.00 ps -423.50 9.50 423.50 16.50 MacLine -423.50 249.50 423.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 421.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -430.25 246.00 430.25 13.00 MacLine -grestore -1.00 ps -429.75 9.50 429.75 13.00 MacLine -429.75 249.50 429.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -436.62 246.00 436.62 13.00 MacLine -grestore -1.00 ps -436.12 9.50 436.12 13.00 MacLine -436.12 249.50 436.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.88 246.00 442.88 13.00 MacLine -grestore -1.00 ps -442.38 9.50 442.38 13.00 MacLine -442.38 249.50 442.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -449.25 246.00 449.25 13.00 MacLine -grestore -1.00 ps -448.75 9.50 448.75 13.00 MacLine -448.75 249.50 448.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -455.50 244.25 455.50 14.75 MacLine -grestore -1.00 ps -455.00 9.50 455.00 14.75 MacLine -455.00 249.50 455.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -461.75 246.00 461.75 13.00 MacLine -grestore -1.00 ps -461.25 9.50 461.25 13.00 MacLine -461.25 249.50 461.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -468.12 246.00 468.12 13.00 MacLine -grestore -1.00 ps -467.62 9.50 467.62 13.00 MacLine -467.62 249.50 467.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -474.38 246.00 474.38 13.00 MacLine -grestore -1.00 ps -473.88 9.50 473.88 13.00 MacLine -473.88 249.50 473.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.75 246.00 480.75 13.00 MacLine -grestore -1.00 ps -480.25 9.50 480.25 13.00 MacLine -480.25 249.50 480.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.00 244.25 487.00 14.75 MacLine -grestore -1.00 ps -486.50 9.50 486.50 14.75 MacLine -486.50 249.50 486.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -493.25 246.00 493.25 13.00 MacLine -grestore -1.00 ps -492.75 9.50 492.75 13.00 MacLine -492.75 249.50 492.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -499.62 246.00 499.62 13.00 MacLine -grestore -1.00 ps -499.12 9.50 499.12 13.00 MacLine -499.12 249.50 499.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -505.88 246.00 505.88 13.00 MacLine -grestore -1.00 ps -505.38 9.50 505.38 13.00 MacLine -505.38 249.50 505.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.25 246.00 512.25 13.00 MacLine -grestore -1.00 ps -511.75 9.50 511.75 13.00 MacLine -511.75 249.50 511.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -518.50 244.25 518.50 14.75 MacLine -grestore -1.00 ps -518.00 9.50 518.00 14.75 MacLine -518.00 249.50 518.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -524.75 246.00 524.75 13.00 MacLine -grestore -1.00 ps -524.25 9.50 524.25 13.00 MacLine -524.25 249.50 524.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -531.12 246.00 531.12 13.00 MacLine -grestore -1.00 ps -530.62 9.50 530.62 13.00 MacLine -530.62 249.50 530.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -537.38 246.00 537.38 13.00 MacLine -grestore -1.00 ps -536.88 9.50 536.88 13.00 MacLine -536.88 249.50 536.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -543.75 246.00 543.75 13.00 MacLine -grestore -1.00 ps -543.25 9.50 543.25 13.00 MacLine -543.25 249.50 543.25 246.00 MacLine -1 ps -1.00 ps -549.50 9.50 549.50 16.50 MacLine -549.50 249.50 549.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 547.25 262.25 5.50 WS -gsave 1.00 ps 298.00 249.50 298.00 10.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -(x \(m\)) 279.88 284.38 36.38 WS -0.50 ps -newpath 298.00 130.00 3.00 0 360 arc -0 StrokePath -296.62 128.62 299.50 131.50 2 CapLine -299.50 128.62 296.62 131.50 2 CapLine -newpath 322.38 110.50 3.00 0 360 arc -0 StrokePath -321.00 109.12 323.88 112.00 2 CapLine -323.88 109.12 321.00 112.00 2 CapLine -newpath 346.75 91.12 3.00 0 360 arc -0 StrokePath -345.38 89.75 348.25 92.62 2 CapLine -348.25 89.75 345.38 92.62 2 CapLine -newpath 371.00 71.62 3.00 0 360 arc -0 StrokePath -369.62 70.25 372.50 73.12 2 CapLine -372.50 70.25 369.62 73.12 2 CapLine -newpath 395.38 52.12 3.00 0 360 arc -0 StrokePath -394.00 50.75 396.88 53.62 2 CapLine -396.88 50.75 394.00 53.62 2 CapLine -newpath 419.75 32.75 3.00 0 360 arc -0 StrokePath -418.38 31.38 421.25 34.25 2 CapLine -421.25 31.38 418.38 34.25 2 CapLine -newpath 444.12 13.25 3.00 0 360 arc -0 StrokePath -442.75 11.88 445.62 14.75 2 CapLine -445.62 11.88 442.75 14.75 2 CapLine -1 ps -0.50 ps -295.00 130.00 301.00 130.00 2 CapLine -298.00 127.00 298.00 133.00 2 CapLine -324.75 145.00 330.75 145.00 2 CapLine -327.75 142.00 327.75 148.00 2 CapLine -354.50 160.00 360.50 160.00 2 CapLine -357.50 157.00 357.50 163.00 2 CapLine -384.12 174.88 390.12 174.88 2 CapLine -387.12 171.88 387.12 177.88 2 CapLine -413.88 189.88 419.88 189.88 2 CapLine -416.88 186.88 416.88 192.88 2 CapLine -443.62 204.88 449.62 204.88 2 CapLine -446.62 201.88 446.62 207.88 2 CapLine -473.38 219.88 479.38 219.88 2 CapLine -476.38 216.88 476.38 222.88 2 CapLine -503.12 234.75 509.12 234.75 2 CapLine -506.12 231.75 506.12 237.75 2 CapLine -532.88 249.75 538.88 249.75 2 CapLine -535.88 246.75 535.88 252.75 2 CapLine -1 ps -0.50 ps -newpath 235.00 130.00 3.00 0 360 arc -0 StrokePath -233.62 128.62 236.50 131.50 2 CapLine -236.50 128.62 233.62 131.50 2 CapLine -newpath 172.00 130.00 3.00 0 360 arc -0 StrokePath -170.62 128.62 173.50 131.50 2 CapLine -173.50 128.62 170.62 131.50 2 CapLine -newpath 109.00 130.00 3.00 0 360 arc -0 StrokePath -107.62 128.62 110.50 131.50 2 CapLine -110.50 128.62 107.62 131.50 2 CapLine -newpath 46.00 130.00 3.00 0 360 arc -0 StrokePath -44.62 128.62 47.50 131.50 2 CapLine -47.50 128.62 44.62 131.50 2 CapLine -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av15.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av15.gif deleted file mode 100755 index 19f0d467f..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av15.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av16.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av16.eps deleted file mode 100755 index d63d5729b..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av16.eps +++ /dev/null @@ -1,1465 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph15 -%%Creation Date: Thu, Oct 24, 1996 06:51 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/rx0 0 def /ry0 0 def /rx1 0 def /ry1 0 def -/tmp0 0 def /tmp1 0 def -/packedRed 0 def /packedGreen 0 def /packedBlue 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/setuserscreendict 22 dict def -setuserscreendict begin - -/tempctm matrix def -/temprot matrix def -/tempscale matrix def - -/concatprocs{ - /proc2 exch cvlit def - /proc1 exch cvlit def - /newproc proc1 length proc2 length add array def - newproc 0 proc1 putinterval - newproc proc1 length proc2 putinterval - newproc cvx -}def - -/resmatrix matrix def -/findresolution{ - 72 0 resmatrix defaultmatrix dtransform - /yres xdef /xres xdef - xres dup mul yres dup mul add sqrt -}def -end - -/setuserscreen{ - setuserscreendict begin - /spotfunction xdef - /screenangle xdef - /cellsize xdef - - /m tempctm currentmatrix def - /rm screenangle temprot rotate def - /sm cellsize dup tempscale scale def - - sm rm m m concatmatrix m concatmatrix pop - 1 0 m dtransform /y1 xdef /x1 xdef - /veclength x1 dup mul y1 dup mul add sqrt def - /frequency findresolution veclength div def - /newscreenangle y1 x1 atan def - m 2 get m 1 get mul m 0 get m 3 get mul sub 0 gt - { - { neg } /spotfunction load concatprocs - /spotfunction xdef - } if - frequency newscreenangle /spotfunction load setscreen - end -}def - -/setpatterndict 18 dict def -setpatterndict begin -/bitison{ - /ybit xdef /xbit xdef - /bytevalue bstring ybit bwidth mul xbit 8 idiv add get def - /mask 1 7 xbit 8 mod sub bitshift def - bytevalue mask and 0 ne -}def -end - -/bitpatternspotfunction{ - setpatterndict begin - /y xdef /x xdef - /xindex x 1 add 2 div bpside mul cvi def - /yindex y 1 add 2 div bpside mul cvi def - xindex yindex bitison - { /onbits onbits 1 add def 1 } - { /offbits offbits 1 add def 0 } - ifelse - end -}def - -/setpattern{ - setpatterndict begin - /cellsz xdef - /angle xdef - /bwidth xdef - /bpside xdef - /bstring xdef - - /onbits 0 def /offbits 0 def - cellsz angle /bitpatternspotfunction load setuserscreen - {} settransfer - offbits offbits onbits add div setgray - end -}def - -/FillPattern{ % patternstring -- - /pat xdef - gsave - pat 8 1 0 72 300 32 div div setpattern - fill - grestore -}def - - - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .5 sub round .5 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - - - - -% **** begin image stuff ***** -% The following are used for images. This has to be kept -% in synch with corresponding code in ImageDisp.c.In particular -% the expansion factor, 8, has to be in synch. -% packedcolor is (red*256+green)*256+blue - -/SetPackedColor{ % packedcolor SetPackedColor -- - dup 256 mod /tmp0 xdef % extract blue - 256 idiv - dup 256 mod /tmp1 xdef % extract green - 256 idiv % extract red - 255 div /packedRed xdef - tmp1 255 div /packedGreen xdef - tmp0 255 div /packedBlue xdef -}bdef - -/IR_FillRect{ - gsave - newpath - rx0 ry0 M - rx1 ry0 L - rx1 ry1 L - rx0 ry1 L - closepath - packedRed packedGreen packedBlue setrgbcolor - fill - grestore -}bdef - -/NewRectImageLine{ % x0 y0 x1 y1 packedcolor NewRectImageLine -- - SetPackedColor - - /ry1 xdef /rx1 xdef /ry0 xdef /rx0 xdef % remember starting rectange for following calls - - IR_FillRect -}bdef - -/rx{ % xdist rx -- - 8 div - dup 0 lt - { rx0 /rx1 xdef rx1 add /rx0 xdef } % neg delta steps left - { rx1 /rx0 xdef rx0 add /rx1 xdef } - ifelse - IR_FillRect -}bdef - -/ry{ % ydist rr -- - 8 div - dup 0 lt - { ry1 /ry0 xdef ry0 exch sub /ry1 xdef } % neg delta steps down - { ry0 /ry1 xdef ry1 exch sub /ry0 xdef } - ifelse - IR_FillRect -}bdef - - -/cx{ % xdist packedcolor cx -- - SetPackedColor - rx -}bdef - -/cy{ % ydist packedcolor cx -- - SetPackedColor - ry -}bdef - -% **** end image stuff ***** - - - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -45.50 10.00 45.50 249.00 MacLine -549.50 10.00 549.50 249.00 MacLine -1 ps -1.00 ps -549.50 249.50 542.50 249.50 MacLine -45.50 249.50 52.50 249.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(-2) 33.12 252.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 244.00 546.00 244.00 MacLine -grestore -1.00 ps -549.50 243.50 546.00 243.50 MacLine -45.50 243.50 49.00 243.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 238.00 546.00 238.00 MacLine -grestore -1.00 ps -549.50 237.50 546.00 237.50 MacLine -45.50 237.50 49.00 237.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 232.00 546.00 232.00 MacLine -grestore -1.00 ps -549.50 231.50 546.00 231.50 MacLine -45.50 231.50 49.00 231.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 226.00 546.00 226.00 MacLine -grestore -1.00 ps -549.50 225.50 546.00 225.50 MacLine -45.50 225.50 49.00 225.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 220.00 544.25 220.00 MacLine -grestore -1.00 ps -549.50 219.50 544.25 219.50 MacLine -45.50 219.50 50.75 219.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 214.00 546.00 214.00 MacLine -grestore -1.00 ps -549.50 213.50 546.00 213.50 MacLine -45.50 213.50 49.00 213.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 208.00 546.00 208.00 MacLine -grestore -1.00 ps -549.50 207.50 546.00 207.50 MacLine -45.50 207.50 49.00 207.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 202.00 546.00 202.00 MacLine -grestore -1.00 ps -549.50 201.50 546.00 201.50 MacLine -45.50 201.50 49.00 201.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 196.00 546.00 196.00 MacLine -grestore -1.00 ps -549.50 195.50 546.00 195.50 MacLine -45.50 195.50 49.00 195.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 189.88 542.50 189.88 MacLine -grestore -1.00 ps -549.50 189.50 542.50 189.50 MacLine -45.50 189.50 52.50 189.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-1) 33.12 192.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 184.00 546.00 184.00 MacLine -grestore -1.00 ps -549.50 183.50 546.00 183.50 MacLine -45.50 183.50 49.00 183.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 178.00 546.00 178.00 MacLine -grestore -1.00 ps -549.50 177.50 546.00 177.50 MacLine -45.50 177.50 49.00 177.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 172.00 546.00 172.00 MacLine -grestore -1.00 ps -549.50 171.50 546.00 171.50 MacLine -45.50 171.50 49.00 171.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 166.00 546.00 166.00 MacLine -grestore -1.00 ps -549.50 165.50 546.00 165.50 MacLine -45.50 165.50 49.00 165.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 160.00 544.25 160.00 MacLine -grestore -1.00 ps -549.50 159.50 544.25 159.50 MacLine -45.50 159.50 50.75 159.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 154.00 546.00 154.00 MacLine -grestore -1.00 ps -549.50 153.50 546.00 153.50 MacLine -45.50 153.50 49.00 153.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 148.00 546.00 148.00 MacLine -grestore -1.00 ps -549.50 147.50 546.00 147.50 MacLine -45.50 147.50 49.00 147.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 142.00 546.00 142.00 MacLine -grestore -1.00 ps -549.50 141.50 546.00 141.50 MacLine -45.50 141.50 49.00 141.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 136.00 546.00 136.00 MacLine -grestore -1.00 ps -549.50 135.50 546.00 135.50 MacLine -45.50 135.50 49.00 135.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 129.88 542.50 129.88 MacLine -grestore -1.00 ps -549.50 129.50 542.50 129.50 MacLine -45.50 129.50 52.50 129.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 36.50 132.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 124.00 546.00 124.00 MacLine -grestore -1.00 ps -549.50 123.50 546.00 123.50 MacLine -45.50 123.50 49.00 123.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 118.00 546.00 118.00 MacLine -grestore -1.00 ps -549.50 117.50 546.00 117.50 MacLine -45.50 117.50 49.00 117.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 112.00 546.00 112.00 MacLine -grestore -1.00 ps -549.50 111.50 546.00 111.50 MacLine -45.50 111.50 49.00 111.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 106.00 546.00 106.00 MacLine -grestore -1.00 ps -549.50 105.50 546.00 105.50 MacLine -45.50 105.50 49.00 105.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 100.00 544.25 100.00 MacLine -grestore -1.00 ps -549.50 99.50 544.25 99.50 MacLine -45.50 99.50 50.75 99.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 94.00 546.00 94.00 MacLine -grestore -1.00 ps -549.50 93.50 546.00 93.50 MacLine -45.50 93.50 49.00 93.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 88.00 546.00 88.00 MacLine -grestore -1.00 ps -549.50 87.50 546.00 87.50 MacLine -45.50 87.50 49.00 87.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 82.00 546.00 82.00 MacLine -grestore -1.00 ps -549.50 81.50 546.00 81.50 MacLine -45.50 81.50 49.00 81.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 76.00 546.00 76.00 MacLine -grestore -1.00 ps -549.50 75.50 546.00 75.50 MacLine -45.50 75.50 49.00 75.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 69.88 542.50 69.88 MacLine -grestore -1.00 ps -549.50 69.50 542.50 69.50 MacLine -45.50 69.50 52.50 69.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(1) 36.50 72.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 64.00 546.00 64.00 MacLine -grestore -1.00 ps -549.50 63.50 546.00 63.50 MacLine -45.50 63.50 49.00 63.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 58.00 546.00 58.00 MacLine -grestore -1.00 ps -549.50 57.50 546.00 57.50 MacLine -45.50 57.50 49.00 57.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 52.00 546.00 52.00 MacLine -grestore -1.00 ps -549.50 51.50 546.00 51.50 MacLine -45.50 51.50 49.00 51.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 46.00 546.00 46.00 MacLine -grestore -1.00 ps -549.50 45.50 546.00 45.50 MacLine -45.50 45.50 49.00 45.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 40.00 544.25 40.00 MacLine -grestore -1.00 ps -549.50 39.50 544.25 39.50 MacLine -45.50 39.50 50.75 39.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 34.00 546.00 34.00 MacLine -grestore -1.00 ps -549.50 33.50 546.00 33.50 MacLine -45.50 33.50 49.00 33.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 28.00 546.00 28.00 MacLine -grestore -1.00 ps -549.50 27.50 546.00 27.50 MacLine -45.50 27.50 49.00 27.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 22.00 546.00 22.00 MacLine -grestore -1.00 ps -549.50 21.50 546.00 21.50 MacLine -45.50 21.50 49.00 21.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 16.00 546.00 16.00 MacLine -grestore -1.00 ps -549.50 15.50 546.00 15.50 MacLine -45.50 15.50 49.00 15.50 MacLine -1 ps -1.00 ps -549.50 9.50 542.50 9.50 MacLine -45.50 9.50 52.50 9.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 36.50 12.75 5.50 WS -gsave 1.00 ps 46.50 130.00 549.50 130.00 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 148.12 translate -90 rotate -(y \(m\)) 0.00 0.00 36.38 WS -grestore -1.00 ps -46.00 249.50 549.00 249.50 MacLine -46.00 9.50 549.00 9.50 MacLine -1 ps -1.00 ps -45.50 9.50 45.50 16.50 MacLine -45.50 249.50 45.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-4) 41.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -52.25 246.00 52.25 13.00 MacLine -grestore -1.00 ps -51.75 9.50 51.75 13.00 MacLine -51.75 249.50 51.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -58.62 246.00 58.62 13.00 MacLine -grestore -1.00 ps -58.12 9.50 58.12 13.00 MacLine -58.12 249.50 58.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -64.88 246.00 64.88 13.00 MacLine -grestore -1.00 ps -64.38 9.50 64.38 13.00 MacLine -64.38 249.50 64.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -71.25 246.00 71.25 13.00 MacLine -grestore -1.00 ps -70.75 9.50 70.75 13.00 MacLine -70.75 249.50 70.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -77.50 244.25 77.50 14.75 MacLine -grestore -1.00 ps -77.00 9.50 77.00 14.75 MacLine -77.00 249.50 77.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -83.75 246.00 83.75 13.00 MacLine -grestore -1.00 ps -83.25 9.50 83.25 13.00 MacLine -83.25 249.50 83.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -90.12 246.00 90.12 13.00 MacLine -grestore -1.00 ps -89.62 9.50 89.62 13.00 MacLine -89.62 249.50 89.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -96.38 246.00 96.38 13.00 MacLine -grestore -1.00 ps -95.88 9.50 95.88 13.00 MacLine -95.88 249.50 95.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.75 246.00 102.75 13.00 MacLine -grestore -1.00 ps -102.25 9.50 102.25 13.00 MacLine -102.25 249.50 102.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -109.00 244.25 109.00 14.75 MacLine -grestore -1.00 ps -108.50 9.50 108.50 14.75 MacLine -108.50 249.50 108.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -115.25 246.00 115.25 13.00 MacLine -grestore -1.00 ps -114.75 9.50 114.75 13.00 MacLine -114.75 249.50 114.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -121.62 246.00 121.62 13.00 MacLine -grestore -1.00 ps -121.12 9.50 121.12 13.00 MacLine -121.12 249.50 121.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -127.88 246.00 127.88 13.00 MacLine -grestore -1.00 ps -127.38 9.50 127.38 13.00 MacLine -127.38 249.50 127.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -134.25 246.00 134.25 13.00 MacLine -grestore -1.00 ps -133.75 9.50 133.75 13.00 MacLine -133.75 249.50 133.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -140.50 244.25 140.50 14.75 MacLine -grestore -1.00 ps -140.00 9.50 140.00 14.75 MacLine -140.00 249.50 140.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -146.75 246.00 146.75 13.00 MacLine -grestore -1.00 ps -146.25 9.50 146.25 13.00 MacLine -146.25 249.50 146.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -153.12 246.00 153.12 13.00 MacLine -grestore -1.00 ps -152.62 9.50 152.62 13.00 MacLine -152.62 249.50 152.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.38 246.00 159.38 13.00 MacLine -grestore -1.00 ps -158.88 9.50 158.88 13.00 MacLine -158.88 249.50 158.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -165.75 246.00 165.75 13.00 MacLine -grestore -1.00 ps -165.25 9.50 165.25 13.00 MacLine -165.25 249.50 165.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -171.88 242.50 171.88 16.50 MacLine -grestore -1.00 ps -171.50 9.50 171.50 16.50 MacLine -171.50 249.50 171.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-2) 167.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -178.25 246.00 178.25 13.00 MacLine -grestore -1.00 ps -177.75 9.50 177.75 13.00 MacLine -177.75 249.50 177.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -184.62 246.00 184.62 13.00 MacLine -grestore -1.00 ps -184.12 9.50 184.12 13.00 MacLine -184.12 249.50 184.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -190.88 246.00 190.88 13.00 MacLine -grestore -1.00 ps -190.38 9.50 190.38 13.00 MacLine -190.38 249.50 190.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -197.25 246.00 197.25 13.00 MacLine -grestore -1.00 ps -196.75 9.50 196.75 13.00 MacLine -196.75 249.50 196.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -203.50 244.25 203.50 14.75 MacLine -grestore -1.00 ps -203.00 9.50 203.00 14.75 MacLine -203.00 249.50 203.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -209.75 246.00 209.75 13.00 MacLine -grestore -1.00 ps -209.25 9.50 209.25 13.00 MacLine -209.25 249.50 209.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -216.12 246.00 216.12 13.00 MacLine -grestore -1.00 ps -215.62 9.50 215.62 13.00 MacLine -215.62 249.50 215.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.38 246.00 222.38 13.00 MacLine -grestore -1.00 ps -221.88 9.50 221.88 13.00 MacLine -221.88 249.50 221.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -228.75 246.00 228.75 13.00 MacLine -grestore -1.00 ps -228.25 9.50 228.25 13.00 MacLine -228.25 249.50 228.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -235.00 244.25 235.00 14.75 MacLine -grestore -1.00 ps -234.50 9.50 234.50 14.75 MacLine -234.50 249.50 234.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -241.25 246.00 241.25 13.00 MacLine -grestore -1.00 ps -240.75 9.50 240.75 13.00 MacLine -240.75 249.50 240.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -247.62 246.00 247.62 13.00 MacLine -grestore -1.00 ps -247.12 9.50 247.12 13.00 MacLine -247.12 249.50 247.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -253.88 246.00 253.88 13.00 MacLine -grestore -1.00 ps -253.38 9.50 253.38 13.00 MacLine -253.38 249.50 253.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -260.25 246.00 260.25 13.00 MacLine -grestore -1.00 ps -259.75 9.50 259.75 13.00 MacLine -259.75 249.50 259.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.50 244.25 266.50 14.75 MacLine -grestore -1.00 ps -266.00 9.50 266.00 14.75 MacLine -266.00 249.50 266.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -272.75 246.00 272.75 13.00 MacLine -grestore -1.00 ps -272.25 9.50 272.25 13.00 MacLine -272.25 249.50 272.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -279.12 246.00 279.12 13.00 MacLine -grestore -1.00 ps -278.62 9.50 278.62 13.00 MacLine -278.62 249.50 278.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -285.38 246.00 285.38 13.00 MacLine -grestore -1.00 ps -284.88 9.50 284.88 13.00 MacLine -284.88 249.50 284.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -291.75 246.00 291.75 13.00 MacLine -grestore -1.00 ps -291.25 9.50 291.25 13.00 MacLine -291.25 249.50 291.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -297.88 242.50 297.88 16.50 MacLine -grestore -1.00 ps -297.50 9.50 297.50 16.50 MacLine -297.50 249.50 297.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 295.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -304.25 246.00 304.25 13.00 MacLine -grestore -1.00 ps -303.75 9.50 303.75 13.00 MacLine -303.75 249.50 303.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -310.62 246.00 310.62 13.00 MacLine -grestore -1.00 ps -310.12 9.50 310.12 13.00 MacLine -310.12 249.50 310.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.88 246.00 316.88 13.00 MacLine -grestore -1.00 ps -316.38 9.50 316.38 13.00 MacLine -316.38 249.50 316.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 246.00 323.25 13.00 MacLine -grestore -1.00 ps -322.75 9.50 322.75 13.00 MacLine -322.75 249.50 322.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -329.50 244.25 329.50 14.75 MacLine -grestore -1.00 ps -329.00 9.50 329.00 14.75 MacLine -329.00 249.50 329.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -335.75 246.00 335.75 13.00 MacLine -grestore -1.00 ps -335.25 9.50 335.25 13.00 MacLine -335.25 249.50 335.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.12 246.00 342.12 13.00 MacLine -grestore -1.00 ps -341.62 9.50 341.62 13.00 MacLine -341.62 249.50 341.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -348.38 246.00 348.38 13.00 MacLine -grestore -1.00 ps -347.88 9.50 347.88 13.00 MacLine -347.88 249.50 347.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -354.75 246.00 354.75 13.00 MacLine -grestore -1.00 ps -354.25 9.50 354.25 13.00 MacLine -354.25 249.50 354.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -361.00 244.25 361.00 14.75 MacLine -grestore -1.00 ps -360.50 9.50 360.50 14.75 MacLine -360.50 249.50 360.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -367.25 246.00 367.25 13.00 MacLine -grestore -1.00 ps -366.75 9.50 366.75 13.00 MacLine -366.75 249.50 366.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.62 246.00 373.62 13.00 MacLine -grestore -1.00 ps -373.12 9.50 373.12 13.00 MacLine -373.12 249.50 373.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -379.88 246.00 379.88 13.00 MacLine -grestore -1.00 ps -379.38 9.50 379.38 13.00 MacLine -379.38 249.50 379.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -386.25 246.00 386.25 13.00 MacLine -grestore -1.00 ps -385.75 9.50 385.75 13.00 MacLine -385.75 249.50 385.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.50 244.25 392.50 14.75 MacLine -grestore -1.00 ps -392.00 9.50 392.00 14.75 MacLine -392.00 249.50 392.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -398.75 246.00 398.75 13.00 MacLine -grestore -1.00 ps -398.25 9.50 398.25 13.00 MacLine -398.25 249.50 398.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -405.12 246.00 405.12 13.00 MacLine -grestore -1.00 ps -404.62 9.50 404.62 13.00 MacLine -404.62 249.50 404.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -411.38 246.00 411.38 13.00 MacLine -grestore -1.00 ps -410.88 9.50 410.88 13.00 MacLine -410.88 249.50 410.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -417.75 246.00 417.75 13.00 MacLine -grestore -1.00 ps -417.25 9.50 417.25 13.00 MacLine -417.25 249.50 417.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -423.88 242.50 423.88 16.50 MacLine -grestore -1.00 ps -423.50 9.50 423.50 16.50 MacLine -423.50 249.50 423.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 421.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -430.25 246.00 430.25 13.00 MacLine -grestore -1.00 ps -429.75 9.50 429.75 13.00 MacLine -429.75 249.50 429.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -436.62 246.00 436.62 13.00 MacLine -grestore -1.00 ps -436.12 9.50 436.12 13.00 MacLine -436.12 249.50 436.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.88 246.00 442.88 13.00 MacLine -grestore -1.00 ps -442.38 9.50 442.38 13.00 MacLine -442.38 249.50 442.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -449.25 246.00 449.25 13.00 MacLine -grestore -1.00 ps -448.75 9.50 448.75 13.00 MacLine -448.75 249.50 448.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -455.50 244.25 455.50 14.75 MacLine -grestore -1.00 ps -455.00 9.50 455.00 14.75 MacLine -455.00 249.50 455.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -461.75 246.00 461.75 13.00 MacLine -grestore -1.00 ps -461.25 9.50 461.25 13.00 MacLine -461.25 249.50 461.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -468.12 246.00 468.12 13.00 MacLine -grestore -1.00 ps -467.62 9.50 467.62 13.00 MacLine -467.62 249.50 467.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -474.38 246.00 474.38 13.00 MacLine -grestore -1.00 ps -473.88 9.50 473.88 13.00 MacLine -473.88 249.50 473.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.75 246.00 480.75 13.00 MacLine -grestore -1.00 ps -480.25 9.50 480.25 13.00 MacLine -480.25 249.50 480.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.00 244.25 487.00 14.75 MacLine -grestore -1.00 ps -486.50 9.50 486.50 14.75 MacLine -486.50 249.50 486.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -493.25 246.00 493.25 13.00 MacLine -grestore -1.00 ps -492.75 9.50 492.75 13.00 MacLine -492.75 249.50 492.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -499.62 246.00 499.62 13.00 MacLine -grestore -1.00 ps -499.12 9.50 499.12 13.00 MacLine -499.12 249.50 499.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -505.88 246.00 505.88 13.00 MacLine -grestore -1.00 ps -505.38 9.50 505.38 13.00 MacLine -505.38 249.50 505.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.25 246.00 512.25 13.00 MacLine -grestore -1.00 ps -511.75 9.50 511.75 13.00 MacLine -511.75 249.50 511.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -518.50 244.25 518.50 14.75 MacLine -grestore -1.00 ps -518.00 9.50 518.00 14.75 MacLine -518.00 249.50 518.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -524.75 246.00 524.75 13.00 MacLine -grestore -1.00 ps -524.25 9.50 524.25 13.00 MacLine -524.25 249.50 524.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -531.12 246.00 531.12 13.00 MacLine -grestore -1.00 ps -530.62 9.50 530.62 13.00 MacLine -530.62 249.50 530.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -537.38 246.00 537.38 13.00 MacLine -grestore -1.00 ps -536.88 9.50 536.88 13.00 MacLine -536.88 249.50 536.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -543.75 246.00 543.75 13.00 MacLine -grestore -1.00 ps -543.25 9.50 543.25 13.00 MacLine -543.25 249.50 543.25 246.00 MacLine -1 ps -1.00 ps -549.50 9.50 549.50 16.50 MacLine -549.50 249.50 549.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 547.25 262.25 5.50 WS -gsave 1.00 ps 298.00 249.50 298.00 10.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -(x \(m\)) 279.88 284.38 36.38 WS -0.50 ps -newpath 298.00 130.00 3.00 0 360 arc -0 StrokePath -296.62 128.62 299.50 131.50 2 CapLine -299.50 128.62 296.62 131.50 2 CapLine -newpath 309.62 106.38 3.00 0 360 arc -0 StrokePath -308.25 105.00 311.12 107.88 2 CapLine -311.12 105.00 308.25 107.88 2 CapLine -newpath 321.12 82.75 3.00 0 360 arc -0 StrokePath -319.75 81.38 322.62 84.25 2 CapLine -322.62 81.38 319.75 84.25 2 CapLine -newpath 332.75 59.00 3.00 0 360 arc -0 StrokePath -331.38 57.62 334.25 60.50 2 CapLine -334.25 57.62 331.38 60.50 2 CapLine -newpath 344.38 35.38 3.00 0 360 arc -0 StrokePath -343.00 34.00 345.88 36.88 2 CapLine -345.88 34.00 343.00 36.88 2 CapLine -newpath 355.88 11.75 3.00 0 360 arc -0 StrokePath -354.50 10.38 357.38 13.25 2 CapLine -357.38 10.38 354.50 13.25 2 CapLine -1 ps -0.50 ps -295.00 130.00 301.00 130.00 2 CapLine -298.00 127.00 298.00 133.00 2 CapLine -320.75 141.88 326.75 141.88 2 CapLine -323.75 138.88 323.75 144.88 2 CapLine -346.38 153.62 352.38 153.62 2 CapLine -349.38 150.62 349.38 156.62 2 CapLine -372.12 165.50 378.12 165.50 2 CapLine -375.12 162.50 375.12 168.50 2 CapLine -397.88 177.25 403.88 177.25 2 CapLine -400.88 174.25 400.88 180.25 2 CapLine -423.50 189.12 429.50 189.12 2 CapLine -426.50 186.12 426.50 192.12 2 CapLine -449.25 201.00 455.25 201.00 2 CapLine -452.25 198.00 452.25 204.00 2 CapLine -475.00 212.75 481.00 212.75 2 CapLine -478.00 209.75 478.00 215.75 2 CapLine -500.62 224.62 506.62 224.62 2 CapLine -503.62 221.62 503.62 227.62 2 CapLine -526.38 236.50 532.38 236.50 2 CapLine -529.38 233.50 529.38 239.50 2 CapLine -1 ps -0.50 ps -newpath 235.00 130.00 3.00 0 360 arc -0 StrokePath -233.62 128.62 236.50 131.50 2 CapLine -236.50 128.62 233.62 131.50 2 CapLine -newpath 172.00 130.00 3.00 0 360 arc -0 StrokePath -170.62 128.62 173.50 131.50 2 CapLine -173.50 128.62 170.62 131.50 2 CapLine -newpath 109.00 130.00 3.00 0 360 arc -0 StrokePath -107.62 128.62 110.50 131.50 2 CapLine -110.50 128.62 107.62 131.50 2 CapLine -newpath 46.00 130.00 3.00 0 360 arc -0 StrokePath -44.62 128.62 47.50 131.50 2 CapLine -47.50 128.62 44.62 131.50 2 CapLine -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av16.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av16.gif deleted file mode 100755 index a1e88ab6b..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av16.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av17.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av17.eps deleted file mode 100755 index eaaf0c91b..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av17.eps +++ /dev/null @@ -1,1463 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph16 -%%Creation Date: Thu, Oct 24, 1996 06:51 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/rx0 0 def /ry0 0 def /rx1 0 def /ry1 0 def -/tmp0 0 def /tmp1 0 def -/packedRed 0 def /packedGreen 0 def /packedBlue 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/setuserscreendict 22 dict def -setuserscreendict begin - -/tempctm matrix def -/temprot matrix def -/tempscale matrix def - -/concatprocs{ - /proc2 exch cvlit def - /proc1 exch cvlit def - /newproc proc1 length proc2 length add array def - newproc 0 proc1 putinterval - newproc proc1 length proc2 putinterval - newproc cvx -}def - -/resmatrix matrix def -/findresolution{ - 72 0 resmatrix defaultmatrix dtransform - /yres xdef /xres xdef - xres dup mul yres dup mul add sqrt -}def -end - -/setuserscreen{ - setuserscreendict begin - /spotfunction xdef - /screenangle xdef - /cellsize xdef - - /m tempctm currentmatrix def - /rm screenangle temprot rotate def - /sm cellsize dup tempscale scale def - - sm rm m m concatmatrix m concatmatrix pop - 1 0 m dtransform /y1 xdef /x1 xdef - /veclength x1 dup mul y1 dup mul add sqrt def - /frequency findresolution veclength div def - /newscreenangle y1 x1 atan def - m 2 get m 1 get mul m 0 get m 3 get mul sub 0 gt - { - { neg } /spotfunction load concatprocs - /spotfunction xdef - } if - frequency newscreenangle /spotfunction load setscreen - end -}def - -/setpatterndict 18 dict def -setpatterndict begin -/bitison{ - /ybit xdef /xbit xdef - /bytevalue bstring ybit bwidth mul xbit 8 idiv add get def - /mask 1 7 xbit 8 mod sub bitshift def - bytevalue mask and 0 ne -}def -end - -/bitpatternspotfunction{ - setpatterndict begin - /y xdef /x xdef - /xindex x 1 add 2 div bpside mul cvi def - /yindex y 1 add 2 div bpside mul cvi def - xindex yindex bitison - { /onbits onbits 1 add def 1 } - { /offbits offbits 1 add def 0 } - ifelse - end -}def - -/setpattern{ - setpatterndict begin - /cellsz xdef - /angle xdef - /bwidth xdef - /bpside xdef - /bstring xdef - - /onbits 0 def /offbits 0 def - cellsz angle /bitpatternspotfunction load setuserscreen - {} settransfer - offbits offbits onbits add div setgray - end -}def - -/FillPattern{ % patternstring -- - /pat xdef - gsave - pat 8 1 0 72 300 32 div div setpattern - fill - grestore -}def - - - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .5 sub round .5 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - - - - -% **** begin image stuff ***** -% The following are used for images. This has to be kept -% in synch with corresponding code in ImageDisp.c.In particular -% the expansion factor, 8, has to be in synch. -% packedcolor is (red*256+green)*256+blue - -/SetPackedColor{ % packedcolor SetPackedColor -- - dup 256 mod /tmp0 xdef % extract blue - 256 idiv - dup 256 mod /tmp1 xdef % extract green - 256 idiv % extract red - 255 div /packedRed xdef - tmp1 255 div /packedGreen xdef - tmp0 255 div /packedBlue xdef -}bdef - -/IR_FillRect{ - gsave - newpath - rx0 ry0 M - rx1 ry0 L - rx1 ry1 L - rx0 ry1 L - closepath - packedRed packedGreen packedBlue setrgbcolor - fill - grestore -}bdef - -/NewRectImageLine{ % x0 y0 x1 y1 packedcolor NewRectImageLine -- - SetPackedColor - - /ry1 xdef /rx1 xdef /ry0 xdef /rx0 xdef % remember starting rectange for following calls - - IR_FillRect -}bdef - -/rx{ % xdist rx -- - 8 div - dup 0 lt - { rx0 /rx1 xdef rx1 add /rx0 xdef } % neg delta steps left - { rx1 /rx0 xdef rx0 add /rx1 xdef } - ifelse - IR_FillRect -}bdef - -/ry{ % ydist rr -- - 8 div - dup 0 lt - { ry1 /ry0 xdef ry0 exch sub /ry1 xdef } % neg delta steps down - { ry0 /ry1 xdef ry1 exch sub /ry0 xdef } - ifelse - IR_FillRect -}bdef - - -/cx{ % xdist packedcolor cx -- - SetPackedColor - rx -}bdef - -/cy{ % ydist packedcolor cx -- - SetPackedColor - ry -}bdef - -% **** end image stuff ***** - - - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -45.50 10.00 45.50 249.00 MacLine -549.50 10.00 549.50 249.00 MacLine -1 ps -1.00 ps -549.50 249.50 542.50 249.50 MacLine -45.50 249.50 52.50 249.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(-2) 33.12 252.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 244.00 546.00 244.00 MacLine -grestore -1.00 ps -549.50 243.50 546.00 243.50 MacLine -45.50 243.50 49.00 243.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 238.00 546.00 238.00 MacLine -grestore -1.00 ps -549.50 237.50 546.00 237.50 MacLine -45.50 237.50 49.00 237.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 232.00 546.00 232.00 MacLine -grestore -1.00 ps -549.50 231.50 546.00 231.50 MacLine -45.50 231.50 49.00 231.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 226.00 546.00 226.00 MacLine -grestore -1.00 ps -549.50 225.50 546.00 225.50 MacLine -45.50 225.50 49.00 225.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 220.00 544.25 220.00 MacLine -grestore -1.00 ps -549.50 219.50 544.25 219.50 MacLine -45.50 219.50 50.75 219.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 214.00 546.00 214.00 MacLine -grestore -1.00 ps -549.50 213.50 546.00 213.50 MacLine -45.50 213.50 49.00 213.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 208.00 546.00 208.00 MacLine -grestore -1.00 ps -549.50 207.50 546.00 207.50 MacLine -45.50 207.50 49.00 207.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 202.00 546.00 202.00 MacLine -grestore -1.00 ps -549.50 201.50 546.00 201.50 MacLine -45.50 201.50 49.00 201.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 196.00 546.00 196.00 MacLine -grestore -1.00 ps -549.50 195.50 546.00 195.50 MacLine -45.50 195.50 49.00 195.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 189.88 542.50 189.88 MacLine -grestore -1.00 ps -549.50 189.50 542.50 189.50 MacLine -45.50 189.50 52.50 189.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-1) 33.12 192.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 184.00 546.00 184.00 MacLine -grestore -1.00 ps -549.50 183.50 546.00 183.50 MacLine -45.50 183.50 49.00 183.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 178.00 546.00 178.00 MacLine -grestore -1.00 ps -549.50 177.50 546.00 177.50 MacLine -45.50 177.50 49.00 177.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 172.00 546.00 172.00 MacLine -grestore -1.00 ps -549.50 171.50 546.00 171.50 MacLine -45.50 171.50 49.00 171.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 166.00 546.00 166.00 MacLine -grestore -1.00 ps -549.50 165.50 546.00 165.50 MacLine -45.50 165.50 49.00 165.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 160.00 544.25 160.00 MacLine -grestore -1.00 ps -549.50 159.50 544.25 159.50 MacLine -45.50 159.50 50.75 159.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 154.00 546.00 154.00 MacLine -grestore -1.00 ps -549.50 153.50 546.00 153.50 MacLine -45.50 153.50 49.00 153.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 148.00 546.00 148.00 MacLine -grestore -1.00 ps -549.50 147.50 546.00 147.50 MacLine -45.50 147.50 49.00 147.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 142.00 546.00 142.00 MacLine -grestore -1.00 ps -549.50 141.50 546.00 141.50 MacLine -45.50 141.50 49.00 141.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 136.00 546.00 136.00 MacLine -grestore -1.00 ps -549.50 135.50 546.00 135.50 MacLine -45.50 135.50 49.00 135.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 129.88 542.50 129.88 MacLine -grestore -1.00 ps -549.50 129.50 542.50 129.50 MacLine -45.50 129.50 52.50 129.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 36.50 132.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 124.00 546.00 124.00 MacLine -grestore -1.00 ps -549.50 123.50 546.00 123.50 MacLine -45.50 123.50 49.00 123.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 118.00 546.00 118.00 MacLine -grestore -1.00 ps -549.50 117.50 546.00 117.50 MacLine -45.50 117.50 49.00 117.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 112.00 546.00 112.00 MacLine -grestore -1.00 ps -549.50 111.50 546.00 111.50 MacLine -45.50 111.50 49.00 111.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 106.00 546.00 106.00 MacLine -grestore -1.00 ps -549.50 105.50 546.00 105.50 MacLine -45.50 105.50 49.00 105.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 100.00 544.25 100.00 MacLine -grestore -1.00 ps -549.50 99.50 544.25 99.50 MacLine -45.50 99.50 50.75 99.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 94.00 546.00 94.00 MacLine -grestore -1.00 ps -549.50 93.50 546.00 93.50 MacLine -45.50 93.50 49.00 93.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 88.00 546.00 88.00 MacLine -grestore -1.00 ps -549.50 87.50 546.00 87.50 MacLine -45.50 87.50 49.00 87.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 82.00 546.00 82.00 MacLine -grestore -1.00 ps -549.50 81.50 546.00 81.50 MacLine -45.50 81.50 49.00 81.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 76.00 546.00 76.00 MacLine -grestore -1.00 ps -549.50 75.50 546.00 75.50 MacLine -45.50 75.50 49.00 75.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 69.88 542.50 69.88 MacLine -grestore -1.00 ps -549.50 69.50 542.50 69.50 MacLine -45.50 69.50 52.50 69.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(1) 36.50 72.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 64.00 546.00 64.00 MacLine -grestore -1.00 ps -549.50 63.50 546.00 63.50 MacLine -45.50 63.50 49.00 63.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 58.00 546.00 58.00 MacLine -grestore -1.00 ps -549.50 57.50 546.00 57.50 MacLine -45.50 57.50 49.00 57.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 52.00 546.00 52.00 MacLine -grestore -1.00 ps -549.50 51.50 546.00 51.50 MacLine -45.50 51.50 49.00 51.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 46.00 546.00 46.00 MacLine -grestore -1.00 ps -549.50 45.50 546.00 45.50 MacLine -45.50 45.50 49.00 45.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 40.00 544.25 40.00 MacLine -grestore -1.00 ps -549.50 39.50 544.25 39.50 MacLine -45.50 39.50 50.75 39.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 34.00 546.00 34.00 MacLine -grestore -1.00 ps -549.50 33.50 546.00 33.50 MacLine -45.50 33.50 49.00 33.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 28.00 546.00 28.00 MacLine -grestore -1.00 ps -549.50 27.50 546.00 27.50 MacLine -45.50 27.50 49.00 27.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 22.00 546.00 22.00 MacLine -grestore -1.00 ps -549.50 21.50 546.00 21.50 MacLine -45.50 21.50 49.00 21.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 16.00 546.00 16.00 MacLine -grestore -1.00 ps -549.50 15.50 546.00 15.50 MacLine -45.50 15.50 49.00 15.50 MacLine -1 ps -1.00 ps -549.50 9.50 542.50 9.50 MacLine -45.50 9.50 52.50 9.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 36.50 12.75 5.50 WS -gsave 1.00 ps 46.50 130.00 549.50 130.00 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 148.12 translate -90 rotate -(y \(m\)) 0.00 0.00 36.38 WS -grestore -1.00 ps -46.00 249.50 549.00 249.50 MacLine -46.00 9.50 549.00 9.50 MacLine -1 ps -1.00 ps -45.50 9.50 45.50 16.50 MacLine -45.50 249.50 45.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-4) 41.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -52.25 246.00 52.25 13.00 MacLine -grestore -1.00 ps -51.75 9.50 51.75 13.00 MacLine -51.75 249.50 51.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -58.62 246.00 58.62 13.00 MacLine -grestore -1.00 ps -58.12 9.50 58.12 13.00 MacLine -58.12 249.50 58.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -64.88 246.00 64.88 13.00 MacLine -grestore -1.00 ps -64.38 9.50 64.38 13.00 MacLine -64.38 249.50 64.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -71.25 246.00 71.25 13.00 MacLine -grestore -1.00 ps -70.75 9.50 70.75 13.00 MacLine -70.75 249.50 70.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -77.50 244.25 77.50 14.75 MacLine -grestore -1.00 ps -77.00 9.50 77.00 14.75 MacLine -77.00 249.50 77.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -83.75 246.00 83.75 13.00 MacLine -grestore -1.00 ps -83.25 9.50 83.25 13.00 MacLine -83.25 249.50 83.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -90.12 246.00 90.12 13.00 MacLine -grestore -1.00 ps -89.62 9.50 89.62 13.00 MacLine -89.62 249.50 89.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -96.38 246.00 96.38 13.00 MacLine -grestore -1.00 ps -95.88 9.50 95.88 13.00 MacLine -95.88 249.50 95.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.75 246.00 102.75 13.00 MacLine -grestore -1.00 ps -102.25 9.50 102.25 13.00 MacLine -102.25 249.50 102.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -109.00 244.25 109.00 14.75 MacLine -grestore -1.00 ps -108.50 9.50 108.50 14.75 MacLine -108.50 249.50 108.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -115.25 246.00 115.25 13.00 MacLine -grestore -1.00 ps -114.75 9.50 114.75 13.00 MacLine -114.75 249.50 114.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -121.62 246.00 121.62 13.00 MacLine -grestore -1.00 ps -121.12 9.50 121.12 13.00 MacLine -121.12 249.50 121.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -127.88 246.00 127.88 13.00 MacLine -grestore -1.00 ps -127.38 9.50 127.38 13.00 MacLine -127.38 249.50 127.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -134.25 246.00 134.25 13.00 MacLine -grestore -1.00 ps -133.75 9.50 133.75 13.00 MacLine -133.75 249.50 133.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -140.50 244.25 140.50 14.75 MacLine -grestore -1.00 ps -140.00 9.50 140.00 14.75 MacLine -140.00 249.50 140.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -146.75 246.00 146.75 13.00 MacLine -grestore -1.00 ps -146.25 9.50 146.25 13.00 MacLine -146.25 249.50 146.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -153.12 246.00 153.12 13.00 MacLine -grestore -1.00 ps -152.62 9.50 152.62 13.00 MacLine -152.62 249.50 152.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.38 246.00 159.38 13.00 MacLine -grestore -1.00 ps -158.88 9.50 158.88 13.00 MacLine -158.88 249.50 158.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -165.75 246.00 165.75 13.00 MacLine -grestore -1.00 ps -165.25 9.50 165.25 13.00 MacLine -165.25 249.50 165.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -171.88 242.50 171.88 16.50 MacLine -grestore -1.00 ps -171.50 9.50 171.50 16.50 MacLine -171.50 249.50 171.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-2) 167.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -178.25 246.00 178.25 13.00 MacLine -grestore -1.00 ps -177.75 9.50 177.75 13.00 MacLine -177.75 249.50 177.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -184.62 246.00 184.62 13.00 MacLine -grestore -1.00 ps -184.12 9.50 184.12 13.00 MacLine -184.12 249.50 184.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -190.88 246.00 190.88 13.00 MacLine -grestore -1.00 ps -190.38 9.50 190.38 13.00 MacLine -190.38 249.50 190.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -197.25 246.00 197.25 13.00 MacLine -grestore -1.00 ps -196.75 9.50 196.75 13.00 MacLine -196.75 249.50 196.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -203.50 244.25 203.50 14.75 MacLine -grestore -1.00 ps -203.00 9.50 203.00 14.75 MacLine -203.00 249.50 203.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -209.75 246.00 209.75 13.00 MacLine -grestore -1.00 ps -209.25 9.50 209.25 13.00 MacLine -209.25 249.50 209.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -216.12 246.00 216.12 13.00 MacLine -grestore -1.00 ps -215.62 9.50 215.62 13.00 MacLine -215.62 249.50 215.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.38 246.00 222.38 13.00 MacLine -grestore -1.00 ps -221.88 9.50 221.88 13.00 MacLine -221.88 249.50 221.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -228.75 246.00 228.75 13.00 MacLine -grestore -1.00 ps -228.25 9.50 228.25 13.00 MacLine -228.25 249.50 228.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -235.00 244.25 235.00 14.75 MacLine -grestore -1.00 ps -234.50 9.50 234.50 14.75 MacLine -234.50 249.50 234.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -241.25 246.00 241.25 13.00 MacLine -grestore -1.00 ps -240.75 9.50 240.75 13.00 MacLine -240.75 249.50 240.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -247.62 246.00 247.62 13.00 MacLine -grestore -1.00 ps -247.12 9.50 247.12 13.00 MacLine -247.12 249.50 247.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -253.88 246.00 253.88 13.00 MacLine -grestore -1.00 ps -253.38 9.50 253.38 13.00 MacLine -253.38 249.50 253.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -260.25 246.00 260.25 13.00 MacLine -grestore -1.00 ps -259.75 9.50 259.75 13.00 MacLine -259.75 249.50 259.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.50 244.25 266.50 14.75 MacLine -grestore -1.00 ps -266.00 9.50 266.00 14.75 MacLine -266.00 249.50 266.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -272.75 246.00 272.75 13.00 MacLine -grestore -1.00 ps -272.25 9.50 272.25 13.00 MacLine -272.25 249.50 272.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -279.12 246.00 279.12 13.00 MacLine -grestore -1.00 ps -278.62 9.50 278.62 13.00 MacLine -278.62 249.50 278.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -285.38 246.00 285.38 13.00 MacLine -grestore -1.00 ps -284.88 9.50 284.88 13.00 MacLine -284.88 249.50 284.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -291.75 246.00 291.75 13.00 MacLine -grestore -1.00 ps -291.25 9.50 291.25 13.00 MacLine -291.25 249.50 291.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -297.88 242.50 297.88 16.50 MacLine -grestore -1.00 ps -297.50 9.50 297.50 16.50 MacLine -297.50 249.50 297.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 295.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -304.25 246.00 304.25 13.00 MacLine -grestore -1.00 ps -303.75 9.50 303.75 13.00 MacLine -303.75 249.50 303.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -310.62 246.00 310.62 13.00 MacLine -grestore -1.00 ps -310.12 9.50 310.12 13.00 MacLine -310.12 249.50 310.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.88 246.00 316.88 13.00 MacLine -grestore -1.00 ps -316.38 9.50 316.38 13.00 MacLine -316.38 249.50 316.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 246.00 323.25 13.00 MacLine -grestore -1.00 ps -322.75 9.50 322.75 13.00 MacLine -322.75 249.50 322.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -329.50 244.25 329.50 14.75 MacLine -grestore -1.00 ps -329.00 9.50 329.00 14.75 MacLine -329.00 249.50 329.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -335.75 246.00 335.75 13.00 MacLine -grestore -1.00 ps -335.25 9.50 335.25 13.00 MacLine -335.25 249.50 335.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.12 246.00 342.12 13.00 MacLine -grestore -1.00 ps -341.62 9.50 341.62 13.00 MacLine -341.62 249.50 341.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -348.38 246.00 348.38 13.00 MacLine -grestore -1.00 ps -347.88 9.50 347.88 13.00 MacLine -347.88 249.50 347.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -354.75 246.00 354.75 13.00 MacLine -grestore -1.00 ps -354.25 9.50 354.25 13.00 MacLine -354.25 249.50 354.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -361.00 244.25 361.00 14.75 MacLine -grestore -1.00 ps -360.50 9.50 360.50 14.75 MacLine -360.50 249.50 360.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -367.25 246.00 367.25 13.00 MacLine -grestore -1.00 ps -366.75 9.50 366.75 13.00 MacLine -366.75 249.50 366.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.62 246.00 373.62 13.00 MacLine -grestore -1.00 ps -373.12 9.50 373.12 13.00 MacLine -373.12 249.50 373.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -379.88 246.00 379.88 13.00 MacLine -grestore -1.00 ps -379.38 9.50 379.38 13.00 MacLine -379.38 249.50 379.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -386.25 246.00 386.25 13.00 MacLine -grestore -1.00 ps -385.75 9.50 385.75 13.00 MacLine -385.75 249.50 385.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.50 244.25 392.50 14.75 MacLine -grestore -1.00 ps -392.00 9.50 392.00 14.75 MacLine -392.00 249.50 392.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -398.75 246.00 398.75 13.00 MacLine -grestore -1.00 ps -398.25 9.50 398.25 13.00 MacLine -398.25 249.50 398.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -405.12 246.00 405.12 13.00 MacLine -grestore -1.00 ps -404.62 9.50 404.62 13.00 MacLine -404.62 249.50 404.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -411.38 246.00 411.38 13.00 MacLine -grestore -1.00 ps -410.88 9.50 410.88 13.00 MacLine -410.88 249.50 410.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -417.75 246.00 417.75 13.00 MacLine -grestore -1.00 ps -417.25 9.50 417.25 13.00 MacLine -417.25 249.50 417.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -423.88 242.50 423.88 16.50 MacLine -grestore -1.00 ps -423.50 9.50 423.50 16.50 MacLine -423.50 249.50 423.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 421.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -430.25 246.00 430.25 13.00 MacLine -grestore -1.00 ps -429.75 9.50 429.75 13.00 MacLine -429.75 249.50 429.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -436.62 246.00 436.62 13.00 MacLine -grestore -1.00 ps -436.12 9.50 436.12 13.00 MacLine -436.12 249.50 436.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.88 246.00 442.88 13.00 MacLine -grestore -1.00 ps -442.38 9.50 442.38 13.00 MacLine -442.38 249.50 442.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -449.25 246.00 449.25 13.00 MacLine -grestore -1.00 ps -448.75 9.50 448.75 13.00 MacLine -448.75 249.50 448.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -455.50 244.25 455.50 14.75 MacLine -grestore -1.00 ps -455.00 9.50 455.00 14.75 MacLine -455.00 249.50 455.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -461.75 246.00 461.75 13.00 MacLine -grestore -1.00 ps -461.25 9.50 461.25 13.00 MacLine -461.25 249.50 461.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -468.12 246.00 468.12 13.00 MacLine -grestore -1.00 ps -467.62 9.50 467.62 13.00 MacLine -467.62 249.50 467.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -474.38 246.00 474.38 13.00 MacLine -grestore -1.00 ps -473.88 9.50 473.88 13.00 MacLine -473.88 249.50 473.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.75 246.00 480.75 13.00 MacLine -grestore -1.00 ps -480.25 9.50 480.25 13.00 MacLine -480.25 249.50 480.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.00 244.25 487.00 14.75 MacLine -grestore -1.00 ps -486.50 9.50 486.50 14.75 MacLine -486.50 249.50 486.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -493.25 246.00 493.25 13.00 MacLine -grestore -1.00 ps -492.75 9.50 492.75 13.00 MacLine -492.75 249.50 492.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -499.62 246.00 499.62 13.00 MacLine -grestore -1.00 ps -499.12 9.50 499.12 13.00 MacLine -499.12 249.50 499.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -505.88 246.00 505.88 13.00 MacLine -grestore -1.00 ps -505.38 9.50 505.38 13.00 MacLine -505.38 249.50 505.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.25 246.00 512.25 13.00 MacLine -grestore -1.00 ps -511.75 9.50 511.75 13.00 MacLine -511.75 249.50 511.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -518.50 244.25 518.50 14.75 MacLine -grestore -1.00 ps -518.00 9.50 518.00 14.75 MacLine -518.00 249.50 518.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -524.75 246.00 524.75 13.00 MacLine -grestore -1.00 ps -524.25 9.50 524.25 13.00 MacLine -524.25 249.50 524.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -531.12 246.00 531.12 13.00 MacLine -grestore -1.00 ps -530.62 9.50 530.62 13.00 MacLine -530.62 249.50 530.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -537.38 246.00 537.38 13.00 MacLine -grestore -1.00 ps -536.88 9.50 536.88 13.00 MacLine -536.88 249.50 536.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -543.75 246.00 543.75 13.00 MacLine -grestore -1.00 ps -543.25 9.50 543.25 13.00 MacLine -543.25 249.50 543.25 246.00 MacLine -1 ps -1.00 ps -549.50 9.50 549.50 16.50 MacLine -549.50 249.50 549.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 547.25 262.25 5.50 WS -gsave 1.00 ps 298.00 249.50 298.00 10.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -(x \(m\)) 279.88 284.38 36.38 WS -0.50 ps -newpath 298.00 130.00 3.00 0 360 arc -0 StrokePath -296.62 128.62 299.50 131.50 2 CapLine -299.50 128.62 296.62 131.50 2 CapLine -newpath 310.25 109.75 3.00 0 360 arc -0 StrokePath -308.88 108.38 311.75 111.25 2 CapLine -311.75 108.38 308.88 111.25 2 CapLine -newpath 322.50 89.50 3.00 0 360 arc -0 StrokePath -321.12 88.12 324.00 91.00 2 CapLine -324.00 88.12 321.12 91.00 2 CapLine -newpath 334.75 69.38 3.00 0 360 arc -0 StrokePath -333.38 68.00 336.25 70.88 2 CapLine -336.25 68.00 333.38 70.88 2 CapLine -newpath 347.00 49.12 3.00 0 360 arc -0 StrokePath -345.62 47.75 348.50 50.62 2 CapLine -348.50 47.75 345.62 50.62 2 CapLine -newpath 359.38 28.88 3.00 0 360 arc -0 StrokePath -358.00 27.50 360.88 30.38 2 CapLine -360.88 27.50 358.00 30.38 2 CapLine -1 ps -0.50 ps -295.00 130.00 301.00 130.00 2 CapLine -298.00 127.00 298.00 133.00 2 CapLine -323.12 141.25 329.12 141.25 2 CapLine -326.12 138.25 326.12 144.25 2 CapLine -351.38 152.50 357.38 152.50 2 CapLine -354.38 149.50 354.38 155.50 2 CapLine -379.50 163.75 385.50 163.75 2 CapLine -382.50 160.75 382.50 166.75 2 CapLine -407.75 175.00 413.75 175.00 2 CapLine -410.75 172.00 410.75 178.00 2 CapLine -435.88 186.25 441.88 186.25 2 CapLine -438.88 183.25 438.88 189.25 2 CapLine -464.12 197.38 470.12 197.38 2 CapLine -467.12 194.38 467.12 200.38 2 CapLine -492.25 208.62 498.25 208.62 2 CapLine -495.25 205.62 495.25 211.62 2 CapLine -520.50 219.88 526.50 219.88 2 CapLine -523.50 216.88 523.50 222.88 2 CapLine -1 ps -0.50 ps -newpath 235.00 130.00 3.00 0 360 arc -0 StrokePath -233.62 128.62 236.50 131.50 2 CapLine -236.50 128.62 233.62 131.50 2 CapLine -newpath 172.00 130.00 3.00 0 360 arc -0 StrokePath -170.62 128.62 173.50 131.50 2 CapLine -173.50 128.62 170.62 131.50 2 CapLine -newpath 109.00 130.00 3.00 0 360 arc -0 StrokePath -107.62 128.62 110.50 131.50 2 CapLine -110.50 128.62 107.62 131.50 2 CapLine -newpath 46.00 130.00 3.00 0 360 arc -0 StrokePath -44.62 128.62 47.50 131.50 2 CapLine -47.50 128.62 44.62 131.50 2 CapLine -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av17.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av17.gif deleted file mode 100755 index 0769fe464..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av17.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av18.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av18.eps deleted file mode 100755 index e4f1ff064..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av18.eps +++ /dev/null @@ -1,1471 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph17 -%%Creation Date: Thu, Oct 24, 1996 06:51 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/rx0 0 def /ry0 0 def /rx1 0 def /ry1 0 def -/tmp0 0 def /tmp1 0 def -/packedRed 0 def /packedGreen 0 def /packedBlue 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/setuserscreendict 22 dict def -setuserscreendict begin - -/tempctm matrix def -/temprot matrix def -/tempscale matrix def - -/concatprocs{ - /proc2 exch cvlit def - /proc1 exch cvlit def - /newproc proc1 length proc2 length add array def - newproc 0 proc1 putinterval - newproc proc1 length proc2 putinterval - newproc cvx -}def - -/resmatrix matrix def -/findresolution{ - 72 0 resmatrix defaultmatrix dtransform - /yres xdef /xres xdef - xres dup mul yres dup mul add sqrt -}def -end - -/setuserscreen{ - setuserscreendict begin - /spotfunction xdef - /screenangle xdef - /cellsize xdef - - /m tempctm currentmatrix def - /rm screenangle temprot rotate def - /sm cellsize dup tempscale scale def - - sm rm m m concatmatrix m concatmatrix pop - 1 0 m dtransform /y1 xdef /x1 xdef - /veclength x1 dup mul y1 dup mul add sqrt def - /frequency findresolution veclength div def - /newscreenangle y1 x1 atan def - m 2 get m 1 get mul m 0 get m 3 get mul sub 0 gt - { - { neg } /spotfunction load concatprocs - /spotfunction xdef - } if - frequency newscreenangle /spotfunction load setscreen - end -}def - -/setpatterndict 18 dict def -setpatterndict begin -/bitison{ - /ybit xdef /xbit xdef - /bytevalue bstring ybit bwidth mul xbit 8 idiv add get def - /mask 1 7 xbit 8 mod sub bitshift def - bytevalue mask and 0 ne -}def -end - -/bitpatternspotfunction{ - setpatterndict begin - /y xdef /x xdef - /xindex x 1 add 2 div bpside mul cvi def - /yindex y 1 add 2 div bpside mul cvi def - xindex yindex bitison - { /onbits onbits 1 add def 1 } - { /offbits offbits 1 add def 0 } - ifelse - end -}def - -/setpattern{ - setpatterndict begin - /cellsz xdef - /angle xdef - /bwidth xdef - /bpside xdef - /bstring xdef - - /onbits 0 def /offbits 0 def - cellsz angle /bitpatternspotfunction load setuserscreen - {} settransfer - offbits offbits onbits add div setgray - end -}def - -/FillPattern{ % patternstring -- - /pat xdef - gsave - pat 8 1 0 72 300 32 div div setpattern - fill - grestore -}def - - - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .5 sub round .5 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - - - - -% **** begin image stuff ***** -% The following are used for images. This has to be kept -% in synch with corresponding code in ImageDisp.c.In particular -% the expansion factor, 8, has to be in synch. -% packedcolor is (red*256+green)*256+blue - -/SetPackedColor{ % packedcolor SetPackedColor -- - dup 256 mod /tmp0 xdef % extract blue - 256 idiv - dup 256 mod /tmp1 xdef % extract green - 256 idiv % extract red - 255 div /packedRed xdef - tmp1 255 div /packedGreen xdef - tmp0 255 div /packedBlue xdef -}bdef - -/IR_FillRect{ - gsave - newpath - rx0 ry0 M - rx1 ry0 L - rx1 ry1 L - rx0 ry1 L - closepath - packedRed packedGreen packedBlue setrgbcolor - fill - grestore -}bdef - -/NewRectImageLine{ % x0 y0 x1 y1 packedcolor NewRectImageLine -- - SetPackedColor - - /ry1 xdef /rx1 xdef /ry0 xdef /rx0 xdef % remember starting rectange for following calls - - IR_FillRect -}bdef - -/rx{ % xdist rx -- - 8 div - dup 0 lt - { rx0 /rx1 xdef rx1 add /rx0 xdef } % neg delta steps left - { rx1 /rx0 xdef rx0 add /rx1 xdef } - ifelse - IR_FillRect -}bdef - -/ry{ % ydist rr -- - 8 div - dup 0 lt - { ry1 /ry0 xdef ry0 exch sub /ry1 xdef } % neg delta steps down - { ry0 /ry1 xdef ry1 exch sub /ry0 xdef } - ifelse - IR_FillRect -}bdef - - -/cx{ % xdist packedcolor cx -- - SetPackedColor - rx -}bdef - -/cy{ % ydist packedcolor cx -- - SetPackedColor - ry -}bdef - -% **** end image stuff ***** - - - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -45.50 10.00 45.50 249.00 MacLine -549.50 10.00 549.50 249.00 MacLine -1 ps -1.00 ps -549.50 249.50 542.50 249.50 MacLine -45.50 249.50 52.50 249.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(-2) 33.12 252.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 244.00 546.00 244.00 MacLine -grestore -1.00 ps -549.50 243.50 546.00 243.50 MacLine -45.50 243.50 49.00 243.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 238.00 546.00 238.00 MacLine -grestore -1.00 ps -549.50 237.50 546.00 237.50 MacLine -45.50 237.50 49.00 237.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 232.00 546.00 232.00 MacLine -grestore -1.00 ps -549.50 231.50 546.00 231.50 MacLine -45.50 231.50 49.00 231.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 226.00 546.00 226.00 MacLine -grestore -1.00 ps -549.50 225.50 546.00 225.50 MacLine -45.50 225.50 49.00 225.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 220.00 544.25 220.00 MacLine -grestore -1.00 ps -549.50 219.50 544.25 219.50 MacLine -45.50 219.50 50.75 219.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 214.00 546.00 214.00 MacLine -grestore -1.00 ps -549.50 213.50 546.00 213.50 MacLine -45.50 213.50 49.00 213.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 208.00 546.00 208.00 MacLine -grestore -1.00 ps -549.50 207.50 546.00 207.50 MacLine -45.50 207.50 49.00 207.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 202.00 546.00 202.00 MacLine -grestore -1.00 ps -549.50 201.50 546.00 201.50 MacLine -45.50 201.50 49.00 201.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 196.00 546.00 196.00 MacLine -grestore -1.00 ps -549.50 195.50 546.00 195.50 MacLine -45.50 195.50 49.00 195.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 189.88 542.50 189.88 MacLine -grestore -1.00 ps -549.50 189.50 542.50 189.50 MacLine -45.50 189.50 52.50 189.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-1) 33.12 192.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 184.00 546.00 184.00 MacLine -grestore -1.00 ps -549.50 183.50 546.00 183.50 MacLine -45.50 183.50 49.00 183.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 178.00 546.00 178.00 MacLine -grestore -1.00 ps -549.50 177.50 546.00 177.50 MacLine -45.50 177.50 49.00 177.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 172.00 546.00 172.00 MacLine -grestore -1.00 ps -549.50 171.50 546.00 171.50 MacLine -45.50 171.50 49.00 171.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 166.00 546.00 166.00 MacLine -grestore -1.00 ps -549.50 165.50 546.00 165.50 MacLine -45.50 165.50 49.00 165.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 160.00 544.25 160.00 MacLine -grestore -1.00 ps -549.50 159.50 544.25 159.50 MacLine -45.50 159.50 50.75 159.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 154.00 546.00 154.00 MacLine -grestore -1.00 ps -549.50 153.50 546.00 153.50 MacLine -45.50 153.50 49.00 153.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 148.00 546.00 148.00 MacLine -grestore -1.00 ps -549.50 147.50 546.00 147.50 MacLine -45.50 147.50 49.00 147.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 142.00 546.00 142.00 MacLine -grestore -1.00 ps -549.50 141.50 546.00 141.50 MacLine -45.50 141.50 49.00 141.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 136.00 546.00 136.00 MacLine -grestore -1.00 ps -549.50 135.50 546.00 135.50 MacLine -45.50 135.50 49.00 135.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 129.88 542.50 129.88 MacLine -grestore -1.00 ps -549.50 129.50 542.50 129.50 MacLine -45.50 129.50 52.50 129.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 36.50 132.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 124.00 546.00 124.00 MacLine -grestore -1.00 ps -549.50 123.50 546.00 123.50 MacLine -45.50 123.50 49.00 123.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 118.00 546.00 118.00 MacLine -grestore -1.00 ps -549.50 117.50 546.00 117.50 MacLine -45.50 117.50 49.00 117.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 112.00 546.00 112.00 MacLine -grestore -1.00 ps -549.50 111.50 546.00 111.50 MacLine -45.50 111.50 49.00 111.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 106.00 546.00 106.00 MacLine -grestore -1.00 ps -549.50 105.50 546.00 105.50 MacLine -45.50 105.50 49.00 105.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 100.00 544.25 100.00 MacLine -grestore -1.00 ps -549.50 99.50 544.25 99.50 MacLine -45.50 99.50 50.75 99.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 94.00 546.00 94.00 MacLine -grestore -1.00 ps -549.50 93.50 546.00 93.50 MacLine -45.50 93.50 49.00 93.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 88.00 546.00 88.00 MacLine -grestore -1.00 ps -549.50 87.50 546.00 87.50 MacLine -45.50 87.50 49.00 87.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 82.00 546.00 82.00 MacLine -grestore -1.00 ps -549.50 81.50 546.00 81.50 MacLine -45.50 81.50 49.00 81.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 76.00 546.00 76.00 MacLine -grestore -1.00 ps -549.50 75.50 546.00 75.50 MacLine -45.50 75.50 49.00 75.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 69.88 542.50 69.88 MacLine -grestore -1.00 ps -549.50 69.50 542.50 69.50 MacLine -45.50 69.50 52.50 69.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(1) 36.50 72.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 64.00 546.00 64.00 MacLine -grestore -1.00 ps -549.50 63.50 546.00 63.50 MacLine -45.50 63.50 49.00 63.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 58.00 546.00 58.00 MacLine -grestore -1.00 ps -549.50 57.50 546.00 57.50 MacLine -45.50 57.50 49.00 57.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 52.00 546.00 52.00 MacLine -grestore -1.00 ps -549.50 51.50 546.00 51.50 MacLine -45.50 51.50 49.00 51.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 46.00 546.00 46.00 MacLine -grestore -1.00 ps -549.50 45.50 546.00 45.50 MacLine -45.50 45.50 49.00 45.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 40.00 544.25 40.00 MacLine -grestore -1.00 ps -549.50 39.50 544.25 39.50 MacLine -45.50 39.50 50.75 39.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 34.00 546.00 34.00 MacLine -grestore -1.00 ps -549.50 33.50 546.00 33.50 MacLine -45.50 33.50 49.00 33.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 28.00 546.00 28.00 MacLine -grestore -1.00 ps -549.50 27.50 546.00 27.50 MacLine -45.50 27.50 49.00 27.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 22.00 546.00 22.00 MacLine -grestore -1.00 ps -549.50 21.50 546.00 21.50 MacLine -45.50 21.50 49.00 21.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 16.00 546.00 16.00 MacLine -grestore -1.00 ps -549.50 15.50 546.00 15.50 MacLine -45.50 15.50 49.00 15.50 MacLine -1 ps -1.00 ps -549.50 9.50 542.50 9.50 MacLine -45.50 9.50 52.50 9.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 36.50 12.75 5.50 WS -gsave 1.00 ps 46.50 130.00 549.50 130.00 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 148.12 translate -90 rotate -(y \(m\)) 0.00 0.00 36.38 WS -grestore -1.00 ps -46.00 249.50 549.00 249.50 MacLine -46.00 9.50 549.00 9.50 MacLine -1 ps -1.00 ps -45.50 9.50 45.50 16.50 MacLine -45.50 249.50 45.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-4) 41.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -52.25 246.00 52.25 13.00 MacLine -grestore -1.00 ps -51.75 9.50 51.75 13.00 MacLine -51.75 249.50 51.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -58.62 246.00 58.62 13.00 MacLine -grestore -1.00 ps -58.12 9.50 58.12 13.00 MacLine -58.12 249.50 58.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -64.88 246.00 64.88 13.00 MacLine -grestore -1.00 ps -64.38 9.50 64.38 13.00 MacLine -64.38 249.50 64.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -71.25 246.00 71.25 13.00 MacLine -grestore -1.00 ps -70.75 9.50 70.75 13.00 MacLine -70.75 249.50 70.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -77.50 244.25 77.50 14.75 MacLine -grestore -1.00 ps -77.00 9.50 77.00 14.75 MacLine -77.00 249.50 77.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -83.75 246.00 83.75 13.00 MacLine -grestore -1.00 ps -83.25 9.50 83.25 13.00 MacLine -83.25 249.50 83.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -90.12 246.00 90.12 13.00 MacLine -grestore -1.00 ps -89.62 9.50 89.62 13.00 MacLine -89.62 249.50 89.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -96.38 246.00 96.38 13.00 MacLine -grestore -1.00 ps -95.88 9.50 95.88 13.00 MacLine -95.88 249.50 95.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.75 246.00 102.75 13.00 MacLine -grestore -1.00 ps -102.25 9.50 102.25 13.00 MacLine -102.25 249.50 102.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -109.00 244.25 109.00 14.75 MacLine -grestore -1.00 ps -108.50 9.50 108.50 14.75 MacLine -108.50 249.50 108.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -115.25 246.00 115.25 13.00 MacLine -grestore -1.00 ps -114.75 9.50 114.75 13.00 MacLine -114.75 249.50 114.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -121.62 246.00 121.62 13.00 MacLine -grestore -1.00 ps -121.12 9.50 121.12 13.00 MacLine -121.12 249.50 121.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -127.88 246.00 127.88 13.00 MacLine -grestore -1.00 ps -127.38 9.50 127.38 13.00 MacLine -127.38 249.50 127.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -134.25 246.00 134.25 13.00 MacLine -grestore -1.00 ps -133.75 9.50 133.75 13.00 MacLine -133.75 249.50 133.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -140.50 244.25 140.50 14.75 MacLine -grestore -1.00 ps -140.00 9.50 140.00 14.75 MacLine -140.00 249.50 140.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -146.75 246.00 146.75 13.00 MacLine -grestore -1.00 ps -146.25 9.50 146.25 13.00 MacLine -146.25 249.50 146.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -153.12 246.00 153.12 13.00 MacLine -grestore -1.00 ps -152.62 9.50 152.62 13.00 MacLine -152.62 249.50 152.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.38 246.00 159.38 13.00 MacLine -grestore -1.00 ps -158.88 9.50 158.88 13.00 MacLine -158.88 249.50 158.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -165.75 246.00 165.75 13.00 MacLine -grestore -1.00 ps -165.25 9.50 165.25 13.00 MacLine -165.25 249.50 165.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -171.88 242.50 171.88 16.50 MacLine -grestore -1.00 ps -171.50 9.50 171.50 16.50 MacLine -171.50 249.50 171.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-2) 167.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -178.25 246.00 178.25 13.00 MacLine -grestore -1.00 ps -177.75 9.50 177.75 13.00 MacLine -177.75 249.50 177.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -184.62 246.00 184.62 13.00 MacLine -grestore -1.00 ps -184.12 9.50 184.12 13.00 MacLine -184.12 249.50 184.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -190.88 246.00 190.88 13.00 MacLine -grestore -1.00 ps -190.38 9.50 190.38 13.00 MacLine -190.38 249.50 190.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -197.25 246.00 197.25 13.00 MacLine -grestore -1.00 ps -196.75 9.50 196.75 13.00 MacLine -196.75 249.50 196.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -203.50 244.25 203.50 14.75 MacLine -grestore -1.00 ps -203.00 9.50 203.00 14.75 MacLine -203.00 249.50 203.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -209.75 246.00 209.75 13.00 MacLine -grestore -1.00 ps -209.25 9.50 209.25 13.00 MacLine -209.25 249.50 209.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -216.12 246.00 216.12 13.00 MacLine -grestore -1.00 ps -215.62 9.50 215.62 13.00 MacLine -215.62 249.50 215.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.38 246.00 222.38 13.00 MacLine -grestore -1.00 ps -221.88 9.50 221.88 13.00 MacLine -221.88 249.50 221.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -228.75 246.00 228.75 13.00 MacLine -grestore -1.00 ps -228.25 9.50 228.25 13.00 MacLine -228.25 249.50 228.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -235.00 244.25 235.00 14.75 MacLine -grestore -1.00 ps -234.50 9.50 234.50 14.75 MacLine -234.50 249.50 234.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -241.25 246.00 241.25 13.00 MacLine -grestore -1.00 ps -240.75 9.50 240.75 13.00 MacLine -240.75 249.50 240.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -247.62 246.00 247.62 13.00 MacLine -grestore -1.00 ps -247.12 9.50 247.12 13.00 MacLine -247.12 249.50 247.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -253.88 246.00 253.88 13.00 MacLine -grestore -1.00 ps -253.38 9.50 253.38 13.00 MacLine -253.38 249.50 253.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -260.25 246.00 260.25 13.00 MacLine -grestore -1.00 ps -259.75 9.50 259.75 13.00 MacLine -259.75 249.50 259.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.50 244.25 266.50 14.75 MacLine -grestore -1.00 ps -266.00 9.50 266.00 14.75 MacLine -266.00 249.50 266.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -272.75 246.00 272.75 13.00 MacLine -grestore -1.00 ps -272.25 9.50 272.25 13.00 MacLine -272.25 249.50 272.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -279.12 246.00 279.12 13.00 MacLine -grestore -1.00 ps -278.62 9.50 278.62 13.00 MacLine -278.62 249.50 278.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -285.38 246.00 285.38 13.00 MacLine -grestore -1.00 ps -284.88 9.50 284.88 13.00 MacLine -284.88 249.50 284.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -291.75 246.00 291.75 13.00 MacLine -grestore -1.00 ps -291.25 9.50 291.25 13.00 MacLine -291.25 249.50 291.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -297.88 242.50 297.88 16.50 MacLine -grestore -1.00 ps -297.50 9.50 297.50 16.50 MacLine -297.50 249.50 297.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 295.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -304.25 246.00 304.25 13.00 MacLine -grestore -1.00 ps -303.75 9.50 303.75 13.00 MacLine -303.75 249.50 303.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -310.62 246.00 310.62 13.00 MacLine -grestore -1.00 ps -310.12 9.50 310.12 13.00 MacLine -310.12 249.50 310.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.88 246.00 316.88 13.00 MacLine -grestore -1.00 ps -316.38 9.50 316.38 13.00 MacLine -316.38 249.50 316.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 246.00 323.25 13.00 MacLine -grestore -1.00 ps -322.75 9.50 322.75 13.00 MacLine -322.75 249.50 322.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -329.50 244.25 329.50 14.75 MacLine -grestore -1.00 ps -329.00 9.50 329.00 14.75 MacLine -329.00 249.50 329.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -335.75 246.00 335.75 13.00 MacLine -grestore -1.00 ps -335.25 9.50 335.25 13.00 MacLine -335.25 249.50 335.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.12 246.00 342.12 13.00 MacLine -grestore -1.00 ps -341.62 9.50 341.62 13.00 MacLine -341.62 249.50 341.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -348.38 246.00 348.38 13.00 MacLine -grestore -1.00 ps -347.88 9.50 347.88 13.00 MacLine -347.88 249.50 347.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -354.75 246.00 354.75 13.00 MacLine -grestore -1.00 ps -354.25 9.50 354.25 13.00 MacLine -354.25 249.50 354.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -361.00 244.25 361.00 14.75 MacLine -grestore -1.00 ps -360.50 9.50 360.50 14.75 MacLine -360.50 249.50 360.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -367.25 246.00 367.25 13.00 MacLine -grestore -1.00 ps -366.75 9.50 366.75 13.00 MacLine -366.75 249.50 366.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.62 246.00 373.62 13.00 MacLine -grestore -1.00 ps -373.12 9.50 373.12 13.00 MacLine -373.12 249.50 373.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -379.88 246.00 379.88 13.00 MacLine -grestore -1.00 ps -379.38 9.50 379.38 13.00 MacLine -379.38 249.50 379.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -386.25 246.00 386.25 13.00 MacLine -grestore -1.00 ps -385.75 9.50 385.75 13.00 MacLine -385.75 249.50 385.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.50 244.25 392.50 14.75 MacLine -grestore -1.00 ps -392.00 9.50 392.00 14.75 MacLine -392.00 249.50 392.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -398.75 246.00 398.75 13.00 MacLine -grestore -1.00 ps -398.25 9.50 398.25 13.00 MacLine -398.25 249.50 398.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -405.12 246.00 405.12 13.00 MacLine -grestore -1.00 ps -404.62 9.50 404.62 13.00 MacLine -404.62 249.50 404.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -411.38 246.00 411.38 13.00 MacLine -grestore -1.00 ps -410.88 9.50 410.88 13.00 MacLine -410.88 249.50 410.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -417.75 246.00 417.75 13.00 MacLine -grestore -1.00 ps -417.25 9.50 417.25 13.00 MacLine -417.25 249.50 417.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -423.88 242.50 423.88 16.50 MacLine -grestore -1.00 ps -423.50 9.50 423.50 16.50 MacLine -423.50 249.50 423.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 421.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -430.25 246.00 430.25 13.00 MacLine -grestore -1.00 ps -429.75 9.50 429.75 13.00 MacLine -429.75 249.50 429.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -436.62 246.00 436.62 13.00 MacLine -grestore -1.00 ps -436.12 9.50 436.12 13.00 MacLine -436.12 249.50 436.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.88 246.00 442.88 13.00 MacLine -grestore -1.00 ps -442.38 9.50 442.38 13.00 MacLine -442.38 249.50 442.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -449.25 246.00 449.25 13.00 MacLine -grestore -1.00 ps -448.75 9.50 448.75 13.00 MacLine -448.75 249.50 448.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -455.50 244.25 455.50 14.75 MacLine -grestore -1.00 ps -455.00 9.50 455.00 14.75 MacLine -455.00 249.50 455.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -461.75 246.00 461.75 13.00 MacLine -grestore -1.00 ps -461.25 9.50 461.25 13.00 MacLine -461.25 249.50 461.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -468.12 246.00 468.12 13.00 MacLine -grestore -1.00 ps -467.62 9.50 467.62 13.00 MacLine -467.62 249.50 467.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -474.38 246.00 474.38 13.00 MacLine -grestore -1.00 ps -473.88 9.50 473.88 13.00 MacLine -473.88 249.50 473.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.75 246.00 480.75 13.00 MacLine -grestore -1.00 ps -480.25 9.50 480.25 13.00 MacLine -480.25 249.50 480.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.00 244.25 487.00 14.75 MacLine -grestore -1.00 ps -486.50 9.50 486.50 14.75 MacLine -486.50 249.50 486.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -493.25 246.00 493.25 13.00 MacLine -grestore -1.00 ps -492.75 9.50 492.75 13.00 MacLine -492.75 249.50 492.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -499.62 246.00 499.62 13.00 MacLine -grestore -1.00 ps -499.12 9.50 499.12 13.00 MacLine -499.12 249.50 499.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -505.88 246.00 505.88 13.00 MacLine -grestore -1.00 ps -505.38 9.50 505.38 13.00 MacLine -505.38 249.50 505.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.25 246.00 512.25 13.00 MacLine -grestore -1.00 ps -511.75 9.50 511.75 13.00 MacLine -511.75 249.50 511.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -518.50 244.25 518.50 14.75 MacLine -grestore -1.00 ps -518.00 9.50 518.00 14.75 MacLine -518.00 249.50 518.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -524.75 246.00 524.75 13.00 MacLine -grestore -1.00 ps -524.25 9.50 524.25 13.00 MacLine -524.25 249.50 524.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -531.12 246.00 531.12 13.00 MacLine -grestore -1.00 ps -530.62 9.50 530.62 13.00 MacLine -530.62 249.50 530.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -537.38 246.00 537.38 13.00 MacLine -grestore -1.00 ps -536.88 9.50 536.88 13.00 MacLine -536.88 249.50 536.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -543.75 246.00 543.75 13.00 MacLine -grestore -1.00 ps -543.25 9.50 543.25 13.00 MacLine -543.25 249.50 543.25 246.00 MacLine -1 ps -1.00 ps -549.50 9.50 549.50 16.50 MacLine -549.50 249.50 549.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 547.25 262.25 5.50 WS -gsave 1.00 ps 298.00 249.50 298.00 10.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -(x \(m\)) 279.88 284.38 36.38 WS -0.50 ps -newpath 298.00 130.00 3.00 0 360 arc -0 StrokePath -296.62 128.62 299.50 131.50 2 CapLine -299.50 128.62 296.62 131.50 2 CapLine -newpath 335.38 120.50 3.00 0 360 arc -0 StrokePath -334.00 119.12 336.88 122.00 2 CapLine -336.88 119.12 334.00 122.00 2 CapLine -newpath 372.62 111.00 3.00 0 360 arc -0 StrokePath -371.25 109.62 374.12 112.50 2 CapLine -374.12 109.62 371.25 112.50 2 CapLine -newpath 410.00 101.38 3.00 0 360 arc -0 StrokePath -408.62 100.00 411.50 102.88 2 CapLine -411.50 100.00 408.62 102.88 2 CapLine -newpath 447.25 91.88 3.00 0 360 arc -0 StrokePath -445.88 90.50 448.75 93.38 2 CapLine -448.75 90.50 445.88 93.38 2 CapLine -newpath 484.62 82.38 3.00 0 360 arc -0 StrokePath -483.25 81.00 486.12 83.88 2 CapLine -486.12 81.00 483.25 83.88 2 CapLine -newpath 521.88 72.88 3.00 0 360 arc -0 StrokePath -520.50 71.50 523.38 74.38 2 CapLine -523.38 71.50 520.50 74.38 2 CapLine -1 ps -0.50 ps -295.00 130.00 301.00 130.00 2 CapLine -298.00 127.00 298.00 133.00 2 CapLine -318.38 138.62 324.38 138.62 2 CapLine -321.38 135.62 321.38 141.62 2 CapLine -341.75 147.25 347.75 147.25 2 CapLine -344.75 144.25 344.75 150.25 2 CapLine -365.00 156.00 371.00 156.00 2 CapLine -368.00 153.00 368.00 159.00 2 CapLine -388.38 164.62 394.38 164.62 2 CapLine -391.38 161.62 391.38 167.62 2 CapLine -411.75 173.25 417.75 173.25 2 CapLine -414.75 170.25 414.75 176.25 2 CapLine -435.12 181.88 441.12 181.88 2 CapLine -438.12 178.88 438.12 184.88 2 CapLine -458.50 190.62 464.50 190.62 2 CapLine -461.50 187.62 461.50 193.62 2 CapLine -481.75 199.25 487.75 199.25 2 CapLine -484.75 196.25 484.75 202.25 2 CapLine -505.12 207.88 511.12 207.88 2 CapLine -508.12 204.88 508.12 210.88 2 CapLine -528.50 216.50 534.50 216.50 2 CapLine -531.50 213.50 531.50 219.50 2 CapLine -1 ps -0.50 ps -newpath 235.00 130.00 3.00 0 360 arc -0 StrokePath -233.62 128.62 236.50 131.50 2 CapLine -236.50 128.62 233.62 131.50 2 CapLine -newpath 172.00 130.00 3.00 0 360 arc -0 StrokePath -170.62 128.62 173.50 131.50 2 CapLine -173.50 128.62 170.62 131.50 2 CapLine -newpath 109.00 130.00 3.00 0 360 arc -0 StrokePath -107.62 128.62 110.50 131.50 2 CapLine -110.50 128.62 107.62 131.50 2 CapLine -newpath 46.00 130.00 3.00 0 360 arc -0 StrokePath -44.62 128.62 47.50 131.50 2 CapLine -47.50 128.62 44.62 131.50 2 CapLine -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av18.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av18.gif deleted file mode 100755 index 1f0c4e99f..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av18.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av19.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av19.eps deleted file mode 100755 index ec3634ef9..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av19.eps +++ /dev/null @@ -1,1471 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph18 -%%Creation Date: Thu, Oct 24, 1996 06:51 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/rx0 0 def /ry0 0 def /rx1 0 def /ry1 0 def -/tmp0 0 def /tmp1 0 def -/packedRed 0 def /packedGreen 0 def /packedBlue 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/setuserscreendict 22 dict def -setuserscreendict begin - -/tempctm matrix def -/temprot matrix def -/tempscale matrix def - -/concatprocs{ - /proc2 exch cvlit def - /proc1 exch cvlit def - /newproc proc1 length proc2 length add array def - newproc 0 proc1 putinterval - newproc proc1 length proc2 putinterval - newproc cvx -}def - -/resmatrix matrix def -/findresolution{ - 72 0 resmatrix defaultmatrix dtransform - /yres xdef /xres xdef - xres dup mul yres dup mul add sqrt -}def -end - -/setuserscreen{ - setuserscreendict begin - /spotfunction xdef - /screenangle xdef - /cellsize xdef - - /m tempctm currentmatrix def - /rm screenangle temprot rotate def - /sm cellsize dup tempscale scale def - - sm rm m m concatmatrix m concatmatrix pop - 1 0 m dtransform /y1 xdef /x1 xdef - /veclength x1 dup mul y1 dup mul add sqrt def - /frequency findresolution veclength div def - /newscreenangle y1 x1 atan def - m 2 get m 1 get mul m 0 get m 3 get mul sub 0 gt - { - { neg } /spotfunction load concatprocs - /spotfunction xdef - } if - frequency newscreenangle /spotfunction load setscreen - end -}def - -/setpatterndict 18 dict def -setpatterndict begin -/bitison{ - /ybit xdef /xbit xdef - /bytevalue bstring ybit bwidth mul xbit 8 idiv add get def - /mask 1 7 xbit 8 mod sub bitshift def - bytevalue mask and 0 ne -}def -end - -/bitpatternspotfunction{ - setpatterndict begin - /y xdef /x xdef - /xindex x 1 add 2 div bpside mul cvi def - /yindex y 1 add 2 div bpside mul cvi def - xindex yindex bitison - { /onbits onbits 1 add def 1 } - { /offbits offbits 1 add def 0 } - ifelse - end -}def - -/setpattern{ - setpatterndict begin - /cellsz xdef - /angle xdef - /bwidth xdef - /bpside xdef - /bstring xdef - - /onbits 0 def /offbits 0 def - cellsz angle /bitpatternspotfunction load setuserscreen - {} settransfer - offbits offbits onbits add div setgray - end -}def - -/FillPattern{ % patternstring -- - /pat xdef - gsave - pat 8 1 0 72 300 32 div div setpattern - fill - grestore -}def - - - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .5 sub round .5 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - - - - -% **** begin image stuff ***** -% The following are used for images. This has to be kept -% in synch with corresponding code in ImageDisp.c.In particular -% the expansion factor, 8, has to be in synch. -% packedcolor is (red*256+green)*256+blue - -/SetPackedColor{ % packedcolor SetPackedColor -- - dup 256 mod /tmp0 xdef % extract blue - 256 idiv - dup 256 mod /tmp1 xdef % extract green - 256 idiv % extract red - 255 div /packedRed xdef - tmp1 255 div /packedGreen xdef - tmp0 255 div /packedBlue xdef -}bdef - -/IR_FillRect{ - gsave - newpath - rx0 ry0 M - rx1 ry0 L - rx1 ry1 L - rx0 ry1 L - closepath - packedRed packedGreen packedBlue setrgbcolor - fill - grestore -}bdef - -/NewRectImageLine{ % x0 y0 x1 y1 packedcolor NewRectImageLine -- - SetPackedColor - - /ry1 xdef /rx1 xdef /ry0 xdef /rx0 xdef % remember starting rectange for following calls - - IR_FillRect -}bdef - -/rx{ % xdist rx -- - 8 div - dup 0 lt - { rx0 /rx1 xdef rx1 add /rx0 xdef } % neg delta steps left - { rx1 /rx0 xdef rx0 add /rx1 xdef } - ifelse - IR_FillRect -}bdef - -/ry{ % ydist rr -- - 8 div - dup 0 lt - { ry1 /ry0 xdef ry0 exch sub /ry1 xdef } % neg delta steps down - { ry0 /ry1 xdef ry1 exch sub /ry0 xdef } - ifelse - IR_FillRect -}bdef - - -/cx{ % xdist packedcolor cx -- - SetPackedColor - rx -}bdef - -/cy{ % ydist packedcolor cx -- - SetPackedColor - ry -}bdef - -% **** end image stuff ***** - - - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -45.50 10.00 45.50 249.00 MacLine -549.50 10.00 549.50 249.00 MacLine -1 ps -1.00 ps -549.50 249.50 542.50 249.50 MacLine -45.50 249.50 52.50 249.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(-2) 33.12 252.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 244.00 546.00 244.00 MacLine -grestore -1.00 ps -549.50 243.50 546.00 243.50 MacLine -45.50 243.50 49.00 243.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 238.00 546.00 238.00 MacLine -grestore -1.00 ps -549.50 237.50 546.00 237.50 MacLine -45.50 237.50 49.00 237.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 232.00 546.00 232.00 MacLine -grestore -1.00 ps -549.50 231.50 546.00 231.50 MacLine -45.50 231.50 49.00 231.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 226.00 546.00 226.00 MacLine -grestore -1.00 ps -549.50 225.50 546.00 225.50 MacLine -45.50 225.50 49.00 225.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 220.00 544.25 220.00 MacLine -grestore -1.00 ps -549.50 219.50 544.25 219.50 MacLine -45.50 219.50 50.75 219.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 214.00 546.00 214.00 MacLine -grestore -1.00 ps -549.50 213.50 546.00 213.50 MacLine -45.50 213.50 49.00 213.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 208.00 546.00 208.00 MacLine -grestore -1.00 ps -549.50 207.50 546.00 207.50 MacLine -45.50 207.50 49.00 207.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 202.00 546.00 202.00 MacLine -grestore -1.00 ps -549.50 201.50 546.00 201.50 MacLine -45.50 201.50 49.00 201.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 196.00 546.00 196.00 MacLine -grestore -1.00 ps -549.50 195.50 546.00 195.50 MacLine -45.50 195.50 49.00 195.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 189.88 542.50 189.88 MacLine -grestore -1.00 ps -549.50 189.50 542.50 189.50 MacLine -45.50 189.50 52.50 189.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-1) 33.12 192.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 184.00 546.00 184.00 MacLine -grestore -1.00 ps -549.50 183.50 546.00 183.50 MacLine -45.50 183.50 49.00 183.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 178.00 546.00 178.00 MacLine -grestore -1.00 ps -549.50 177.50 546.00 177.50 MacLine -45.50 177.50 49.00 177.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 172.00 546.00 172.00 MacLine -grestore -1.00 ps -549.50 171.50 546.00 171.50 MacLine -45.50 171.50 49.00 171.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 166.00 546.00 166.00 MacLine -grestore -1.00 ps -549.50 165.50 546.00 165.50 MacLine -45.50 165.50 49.00 165.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 160.00 544.25 160.00 MacLine -grestore -1.00 ps -549.50 159.50 544.25 159.50 MacLine -45.50 159.50 50.75 159.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 154.00 546.00 154.00 MacLine -grestore -1.00 ps -549.50 153.50 546.00 153.50 MacLine -45.50 153.50 49.00 153.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 148.00 546.00 148.00 MacLine -grestore -1.00 ps -549.50 147.50 546.00 147.50 MacLine -45.50 147.50 49.00 147.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 142.00 546.00 142.00 MacLine -grestore -1.00 ps -549.50 141.50 546.00 141.50 MacLine -45.50 141.50 49.00 141.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 136.00 546.00 136.00 MacLine -grestore -1.00 ps -549.50 135.50 546.00 135.50 MacLine -45.50 135.50 49.00 135.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 129.88 542.50 129.88 MacLine -grestore -1.00 ps -549.50 129.50 542.50 129.50 MacLine -45.50 129.50 52.50 129.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 36.50 132.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 124.00 546.00 124.00 MacLine -grestore -1.00 ps -549.50 123.50 546.00 123.50 MacLine -45.50 123.50 49.00 123.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 118.00 546.00 118.00 MacLine -grestore -1.00 ps -549.50 117.50 546.00 117.50 MacLine -45.50 117.50 49.00 117.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 112.00 546.00 112.00 MacLine -grestore -1.00 ps -549.50 111.50 546.00 111.50 MacLine -45.50 111.50 49.00 111.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 106.00 546.00 106.00 MacLine -grestore -1.00 ps -549.50 105.50 546.00 105.50 MacLine -45.50 105.50 49.00 105.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 100.00 544.25 100.00 MacLine -grestore -1.00 ps -549.50 99.50 544.25 99.50 MacLine -45.50 99.50 50.75 99.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 94.00 546.00 94.00 MacLine -grestore -1.00 ps -549.50 93.50 546.00 93.50 MacLine -45.50 93.50 49.00 93.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 88.00 546.00 88.00 MacLine -grestore -1.00 ps -549.50 87.50 546.00 87.50 MacLine -45.50 87.50 49.00 87.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 82.00 546.00 82.00 MacLine -grestore -1.00 ps -549.50 81.50 546.00 81.50 MacLine -45.50 81.50 49.00 81.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 76.00 546.00 76.00 MacLine -grestore -1.00 ps -549.50 75.50 546.00 75.50 MacLine -45.50 75.50 49.00 75.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 69.88 542.50 69.88 MacLine -grestore -1.00 ps -549.50 69.50 542.50 69.50 MacLine -45.50 69.50 52.50 69.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(1) 36.50 72.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 64.00 546.00 64.00 MacLine -grestore -1.00 ps -549.50 63.50 546.00 63.50 MacLine -45.50 63.50 49.00 63.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 58.00 546.00 58.00 MacLine -grestore -1.00 ps -549.50 57.50 546.00 57.50 MacLine -45.50 57.50 49.00 57.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 52.00 546.00 52.00 MacLine -grestore -1.00 ps -549.50 51.50 546.00 51.50 MacLine -45.50 51.50 49.00 51.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 46.00 546.00 46.00 MacLine -grestore -1.00 ps -549.50 45.50 546.00 45.50 MacLine -45.50 45.50 49.00 45.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 40.00 544.25 40.00 MacLine -grestore -1.00 ps -549.50 39.50 544.25 39.50 MacLine -45.50 39.50 50.75 39.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 34.00 546.00 34.00 MacLine -grestore -1.00 ps -549.50 33.50 546.00 33.50 MacLine -45.50 33.50 49.00 33.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 28.00 546.00 28.00 MacLine -grestore -1.00 ps -549.50 27.50 546.00 27.50 MacLine -45.50 27.50 49.00 27.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 22.00 546.00 22.00 MacLine -grestore -1.00 ps -549.50 21.50 546.00 21.50 MacLine -45.50 21.50 49.00 21.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 16.00 546.00 16.00 MacLine -grestore -1.00 ps -549.50 15.50 546.00 15.50 MacLine -45.50 15.50 49.00 15.50 MacLine -1 ps -1.00 ps -549.50 9.50 542.50 9.50 MacLine -45.50 9.50 52.50 9.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 36.50 12.75 5.50 WS -gsave 1.00 ps 46.50 130.00 549.50 130.00 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 148.12 translate -90 rotate -(y \(m\)) 0.00 0.00 36.38 WS -grestore -1.00 ps -46.00 249.50 549.00 249.50 MacLine -46.00 9.50 549.00 9.50 MacLine -1 ps -1.00 ps -45.50 9.50 45.50 16.50 MacLine -45.50 249.50 45.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-4) 41.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -52.25 246.00 52.25 13.00 MacLine -grestore -1.00 ps -51.75 9.50 51.75 13.00 MacLine -51.75 249.50 51.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -58.62 246.00 58.62 13.00 MacLine -grestore -1.00 ps -58.12 9.50 58.12 13.00 MacLine -58.12 249.50 58.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -64.88 246.00 64.88 13.00 MacLine -grestore -1.00 ps -64.38 9.50 64.38 13.00 MacLine -64.38 249.50 64.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -71.25 246.00 71.25 13.00 MacLine -grestore -1.00 ps -70.75 9.50 70.75 13.00 MacLine -70.75 249.50 70.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -77.50 244.25 77.50 14.75 MacLine -grestore -1.00 ps -77.00 9.50 77.00 14.75 MacLine -77.00 249.50 77.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -83.75 246.00 83.75 13.00 MacLine -grestore -1.00 ps -83.25 9.50 83.25 13.00 MacLine -83.25 249.50 83.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -90.12 246.00 90.12 13.00 MacLine -grestore -1.00 ps -89.62 9.50 89.62 13.00 MacLine -89.62 249.50 89.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -96.38 246.00 96.38 13.00 MacLine -grestore -1.00 ps -95.88 9.50 95.88 13.00 MacLine -95.88 249.50 95.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.75 246.00 102.75 13.00 MacLine -grestore -1.00 ps -102.25 9.50 102.25 13.00 MacLine -102.25 249.50 102.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -109.00 244.25 109.00 14.75 MacLine -grestore -1.00 ps -108.50 9.50 108.50 14.75 MacLine -108.50 249.50 108.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -115.25 246.00 115.25 13.00 MacLine -grestore -1.00 ps -114.75 9.50 114.75 13.00 MacLine -114.75 249.50 114.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -121.62 246.00 121.62 13.00 MacLine -grestore -1.00 ps -121.12 9.50 121.12 13.00 MacLine -121.12 249.50 121.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -127.88 246.00 127.88 13.00 MacLine -grestore -1.00 ps -127.38 9.50 127.38 13.00 MacLine -127.38 249.50 127.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -134.25 246.00 134.25 13.00 MacLine -grestore -1.00 ps -133.75 9.50 133.75 13.00 MacLine -133.75 249.50 133.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -140.50 244.25 140.50 14.75 MacLine -grestore -1.00 ps -140.00 9.50 140.00 14.75 MacLine -140.00 249.50 140.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -146.75 246.00 146.75 13.00 MacLine -grestore -1.00 ps -146.25 9.50 146.25 13.00 MacLine -146.25 249.50 146.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -153.12 246.00 153.12 13.00 MacLine -grestore -1.00 ps -152.62 9.50 152.62 13.00 MacLine -152.62 249.50 152.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.38 246.00 159.38 13.00 MacLine -grestore -1.00 ps -158.88 9.50 158.88 13.00 MacLine -158.88 249.50 158.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -165.75 246.00 165.75 13.00 MacLine -grestore -1.00 ps -165.25 9.50 165.25 13.00 MacLine -165.25 249.50 165.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -171.88 242.50 171.88 16.50 MacLine -grestore -1.00 ps -171.50 9.50 171.50 16.50 MacLine -171.50 249.50 171.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-2) 167.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -178.25 246.00 178.25 13.00 MacLine -grestore -1.00 ps -177.75 9.50 177.75 13.00 MacLine -177.75 249.50 177.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -184.62 246.00 184.62 13.00 MacLine -grestore -1.00 ps -184.12 9.50 184.12 13.00 MacLine -184.12 249.50 184.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -190.88 246.00 190.88 13.00 MacLine -grestore -1.00 ps -190.38 9.50 190.38 13.00 MacLine -190.38 249.50 190.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -197.25 246.00 197.25 13.00 MacLine -grestore -1.00 ps -196.75 9.50 196.75 13.00 MacLine -196.75 249.50 196.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -203.50 244.25 203.50 14.75 MacLine -grestore -1.00 ps -203.00 9.50 203.00 14.75 MacLine -203.00 249.50 203.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -209.75 246.00 209.75 13.00 MacLine -grestore -1.00 ps -209.25 9.50 209.25 13.00 MacLine -209.25 249.50 209.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -216.12 246.00 216.12 13.00 MacLine -grestore -1.00 ps -215.62 9.50 215.62 13.00 MacLine -215.62 249.50 215.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.38 246.00 222.38 13.00 MacLine -grestore -1.00 ps -221.88 9.50 221.88 13.00 MacLine -221.88 249.50 221.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -228.75 246.00 228.75 13.00 MacLine -grestore -1.00 ps -228.25 9.50 228.25 13.00 MacLine -228.25 249.50 228.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -235.00 244.25 235.00 14.75 MacLine -grestore -1.00 ps -234.50 9.50 234.50 14.75 MacLine -234.50 249.50 234.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -241.25 246.00 241.25 13.00 MacLine -grestore -1.00 ps -240.75 9.50 240.75 13.00 MacLine -240.75 249.50 240.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -247.62 246.00 247.62 13.00 MacLine -grestore -1.00 ps -247.12 9.50 247.12 13.00 MacLine -247.12 249.50 247.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -253.88 246.00 253.88 13.00 MacLine -grestore -1.00 ps -253.38 9.50 253.38 13.00 MacLine -253.38 249.50 253.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -260.25 246.00 260.25 13.00 MacLine -grestore -1.00 ps -259.75 9.50 259.75 13.00 MacLine -259.75 249.50 259.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.50 244.25 266.50 14.75 MacLine -grestore -1.00 ps -266.00 9.50 266.00 14.75 MacLine -266.00 249.50 266.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -272.75 246.00 272.75 13.00 MacLine -grestore -1.00 ps -272.25 9.50 272.25 13.00 MacLine -272.25 249.50 272.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -279.12 246.00 279.12 13.00 MacLine -grestore -1.00 ps -278.62 9.50 278.62 13.00 MacLine -278.62 249.50 278.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -285.38 246.00 285.38 13.00 MacLine -grestore -1.00 ps -284.88 9.50 284.88 13.00 MacLine -284.88 249.50 284.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -291.75 246.00 291.75 13.00 MacLine -grestore -1.00 ps -291.25 9.50 291.25 13.00 MacLine -291.25 249.50 291.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -297.88 242.50 297.88 16.50 MacLine -grestore -1.00 ps -297.50 9.50 297.50 16.50 MacLine -297.50 249.50 297.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 295.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -304.25 246.00 304.25 13.00 MacLine -grestore -1.00 ps -303.75 9.50 303.75 13.00 MacLine -303.75 249.50 303.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -310.62 246.00 310.62 13.00 MacLine -grestore -1.00 ps -310.12 9.50 310.12 13.00 MacLine -310.12 249.50 310.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.88 246.00 316.88 13.00 MacLine -grestore -1.00 ps -316.38 9.50 316.38 13.00 MacLine -316.38 249.50 316.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 246.00 323.25 13.00 MacLine -grestore -1.00 ps -322.75 9.50 322.75 13.00 MacLine -322.75 249.50 322.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -329.50 244.25 329.50 14.75 MacLine -grestore -1.00 ps -329.00 9.50 329.00 14.75 MacLine -329.00 249.50 329.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -335.75 246.00 335.75 13.00 MacLine -grestore -1.00 ps -335.25 9.50 335.25 13.00 MacLine -335.25 249.50 335.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.12 246.00 342.12 13.00 MacLine -grestore -1.00 ps -341.62 9.50 341.62 13.00 MacLine -341.62 249.50 341.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -348.38 246.00 348.38 13.00 MacLine -grestore -1.00 ps -347.88 9.50 347.88 13.00 MacLine -347.88 249.50 347.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -354.75 246.00 354.75 13.00 MacLine -grestore -1.00 ps -354.25 9.50 354.25 13.00 MacLine -354.25 249.50 354.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -361.00 244.25 361.00 14.75 MacLine -grestore -1.00 ps -360.50 9.50 360.50 14.75 MacLine -360.50 249.50 360.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -367.25 246.00 367.25 13.00 MacLine -grestore -1.00 ps -366.75 9.50 366.75 13.00 MacLine -366.75 249.50 366.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.62 246.00 373.62 13.00 MacLine -grestore -1.00 ps -373.12 9.50 373.12 13.00 MacLine -373.12 249.50 373.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -379.88 246.00 379.88 13.00 MacLine -grestore -1.00 ps -379.38 9.50 379.38 13.00 MacLine -379.38 249.50 379.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -386.25 246.00 386.25 13.00 MacLine -grestore -1.00 ps -385.75 9.50 385.75 13.00 MacLine -385.75 249.50 385.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.50 244.25 392.50 14.75 MacLine -grestore -1.00 ps -392.00 9.50 392.00 14.75 MacLine -392.00 249.50 392.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -398.75 246.00 398.75 13.00 MacLine -grestore -1.00 ps -398.25 9.50 398.25 13.00 MacLine -398.25 249.50 398.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -405.12 246.00 405.12 13.00 MacLine -grestore -1.00 ps -404.62 9.50 404.62 13.00 MacLine -404.62 249.50 404.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -411.38 246.00 411.38 13.00 MacLine -grestore -1.00 ps -410.88 9.50 410.88 13.00 MacLine -410.88 249.50 410.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -417.75 246.00 417.75 13.00 MacLine -grestore -1.00 ps -417.25 9.50 417.25 13.00 MacLine -417.25 249.50 417.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -423.88 242.50 423.88 16.50 MacLine -grestore -1.00 ps -423.50 9.50 423.50 16.50 MacLine -423.50 249.50 423.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 421.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -430.25 246.00 430.25 13.00 MacLine -grestore -1.00 ps -429.75 9.50 429.75 13.00 MacLine -429.75 249.50 429.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -436.62 246.00 436.62 13.00 MacLine -grestore -1.00 ps -436.12 9.50 436.12 13.00 MacLine -436.12 249.50 436.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.88 246.00 442.88 13.00 MacLine -grestore -1.00 ps -442.38 9.50 442.38 13.00 MacLine -442.38 249.50 442.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -449.25 246.00 449.25 13.00 MacLine -grestore -1.00 ps -448.75 9.50 448.75 13.00 MacLine -448.75 249.50 448.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -455.50 244.25 455.50 14.75 MacLine -grestore -1.00 ps -455.00 9.50 455.00 14.75 MacLine -455.00 249.50 455.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -461.75 246.00 461.75 13.00 MacLine -grestore -1.00 ps -461.25 9.50 461.25 13.00 MacLine -461.25 249.50 461.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -468.12 246.00 468.12 13.00 MacLine -grestore -1.00 ps -467.62 9.50 467.62 13.00 MacLine -467.62 249.50 467.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -474.38 246.00 474.38 13.00 MacLine -grestore -1.00 ps -473.88 9.50 473.88 13.00 MacLine -473.88 249.50 473.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.75 246.00 480.75 13.00 MacLine -grestore -1.00 ps -480.25 9.50 480.25 13.00 MacLine -480.25 249.50 480.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.00 244.25 487.00 14.75 MacLine -grestore -1.00 ps -486.50 9.50 486.50 14.75 MacLine -486.50 249.50 486.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -493.25 246.00 493.25 13.00 MacLine -grestore -1.00 ps -492.75 9.50 492.75 13.00 MacLine -492.75 249.50 492.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -499.62 246.00 499.62 13.00 MacLine -grestore -1.00 ps -499.12 9.50 499.12 13.00 MacLine -499.12 249.50 499.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -505.88 246.00 505.88 13.00 MacLine -grestore -1.00 ps -505.38 9.50 505.38 13.00 MacLine -505.38 249.50 505.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.25 246.00 512.25 13.00 MacLine -grestore -1.00 ps -511.75 9.50 511.75 13.00 MacLine -511.75 249.50 511.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -518.50 244.25 518.50 14.75 MacLine -grestore -1.00 ps -518.00 9.50 518.00 14.75 MacLine -518.00 249.50 518.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -524.75 246.00 524.75 13.00 MacLine -grestore -1.00 ps -524.25 9.50 524.25 13.00 MacLine -524.25 249.50 524.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -531.12 246.00 531.12 13.00 MacLine -grestore -1.00 ps -530.62 9.50 530.62 13.00 MacLine -530.62 249.50 530.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -537.38 246.00 537.38 13.00 MacLine -grestore -1.00 ps -536.88 9.50 536.88 13.00 MacLine -536.88 249.50 536.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -543.75 246.00 543.75 13.00 MacLine -grestore -1.00 ps -543.25 9.50 543.25 13.00 MacLine -543.25 249.50 543.25 246.00 MacLine -1 ps -1.00 ps -549.50 9.50 549.50 16.50 MacLine -549.50 249.50 549.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 547.25 262.25 5.50 WS -gsave 1.00 ps 298.00 249.50 298.00 10.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -(x \(m\)) 279.88 284.38 36.38 WS -0.50 ps -newpath 298.00 130.00 3.00 0 360 arc -0 StrokePath -296.62 128.62 299.50 131.50 2 CapLine -299.50 128.62 296.62 131.50 2 CapLine -newpath 332.88 124.12 3.00 0 360 arc -0 StrokePath -331.50 122.75 334.38 125.62 2 CapLine -334.38 122.75 331.50 125.62 2 CapLine -newpath 367.88 118.25 3.00 0 360 arc -0 StrokePath -366.50 116.88 369.38 119.75 2 CapLine -369.38 116.88 366.50 119.75 2 CapLine -newpath 402.75 112.38 3.00 0 360 arc -0 StrokePath -401.38 111.00 404.25 113.88 2 CapLine -404.25 111.00 401.38 113.88 2 CapLine -newpath 437.62 106.50 3.00 0 360 arc -0 StrokePath -436.25 105.12 439.12 108.00 2 CapLine -439.12 105.12 436.25 108.00 2 CapLine -newpath 472.62 100.62 3.00 0 360 arc -0 StrokePath -471.25 99.25 474.12 102.12 2 CapLine -474.12 99.25 471.25 102.12 2 CapLine -newpath 507.50 94.88 3.00 0 360 arc -0 StrokePath -506.12 93.50 509.00 96.38 2 CapLine -509.00 93.50 506.12 96.38 2 CapLine -newpath 542.50 89.00 3.00 0 360 arc -0 StrokePath -541.12 87.62 544.00 90.50 2 CapLine -544.00 87.62 541.12 90.50 2 CapLine -1 ps -0.50 ps -295.00 130.00 301.00 130.00 2 CapLine -298.00 127.00 298.00 133.00 2 CapLine -323.12 135.88 329.12 135.88 2 CapLine -326.12 132.88 326.12 138.88 2 CapLine -351.12 141.75 357.12 141.75 2 CapLine -354.12 138.75 354.12 144.75 2 CapLine -379.25 147.62 385.25 147.62 2 CapLine -382.25 144.62 382.25 150.62 2 CapLine -407.38 153.50 413.38 153.50 2 CapLine -410.38 150.50 410.38 156.50 2 CapLine -435.38 159.38 441.38 159.38 2 CapLine -438.38 156.38 438.38 162.38 2 CapLine -463.50 165.12 469.50 165.12 2 CapLine -466.50 162.12 466.50 168.12 2 CapLine -491.50 171.00 497.50 171.00 2 CapLine -494.50 168.00 494.50 174.00 2 CapLine -519.62 176.88 525.62 176.88 2 CapLine -522.62 173.88 522.62 179.88 2 CapLine -1 ps -0.50 ps -newpath 235.00 130.00 3.00 0 360 arc -0 StrokePath -233.62 128.62 236.50 131.50 2 CapLine -236.50 128.62 233.62 131.50 2 CapLine -newpath 172.00 130.00 3.00 0 360 arc -0 StrokePath -170.62 128.62 173.50 131.50 2 CapLine -173.50 128.62 170.62 131.50 2 CapLine -newpath 109.00 130.00 3.00 0 360 arc -0 StrokePath -107.62 128.62 110.50 131.50 2 CapLine -110.50 128.62 107.62 131.50 2 CapLine -newpath 46.00 130.00 3.00 0 360 arc -0 StrokePath -44.62 128.62 47.50 131.50 2 CapLine -47.50 128.62 44.62 131.50 2 CapLine -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av19.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av19.gif deleted file mode 100755 index 1481cfc82..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av19.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av2.eps deleted file mode 100755 index 298f7e607..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av2.eps +++ /dev/null @@ -1,1469 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph1 -%%Creation Date: Thu, Oct 24, 1996 06:49 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/rx0 0 def /ry0 0 def /rx1 0 def /ry1 0 def -/tmp0 0 def /tmp1 0 def -/packedRed 0 def /packedGreen 0 def /packedBlue 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/setuserscreendict 22 dict def -setuserscreendict begin - -/tempctm matrix def -/temprot matrix def -/tempscale matrix def - -/concatprocs{ - /proc2 exch cvlit def - /proc1 exch cvlit def - /newproc proc1 length proc2 length add array def - newproc 0 proc1 putinterval - newproc proc1 length proc2 putinterval - newproc cvx -}def - -/resmatrix matrix def -/findresolution{ - 72 0 resmatrix defaultmatrix dtransform - /yres xdef /xres xdef - xres dup mul yres dup mul add sqrt -}def -end - -/setuserscreen{ - setuserscreendict begin - /spotfunction xdef - /screenangle xdef - /cellsize xdef - - /m tempctm currentmatrix def - /rm screenangle temprot rotate def - /sm cellsize dup tempscale scale def - - sm rm m m concatmatrix m concatmatrix pop - 1 0 m dtransform /y1 xdef /x1 xdef - /veclength x1 dup mul y1 dup mul add sqrt def - /frequency findresolution veclength div def - /newscreenangle y1 x1 atan def - m 2 get m 1 get mul m 0 get m 3 get mul sub 0 gt - { - { neg } /spotfunction load concatprocs - /spotfunction xdef - } if - frequency newscreenangle /spotfunction load setscreen - end -}def - -/setpatterndict 18 dict def -setpatterndict begin -/bitison{ - /ybit xdef /xbit xdef - /bytevalue bstring ybit bwidth mul xbit 8 idiv add get def - /mask 1 7 xbit 8 mod sub bitshift def - bytevalue mask and 0 ne -}def -end - -/bitpatternspotfunction{ - setpatterndict begin - /y xdef /x xdef - /xindex x 1 add 2 div bpside mul cvi def - /yindex y 1 add 2 div bpside mul cvi def - xindex yindex bitison - { /onbits onbits 1 add def 1 } - { /offbits offbits 1 add def 0 } - ifelse - end -}def - -/setpattern{ - setpatterndict begin - /cellsz xdef - /angle xdef - /bwidth xdef - /bpside xdef - /bstring xdef - - /onbits 0 def /offbits 0 def - cellsz angle /bitpatternspotfunction load setuserscreen - {} settransfer - offbits offbits onbits add div setgray - end -}def - -/FillPattern{ % patternstring -- - /pat xdef - gsave - pat 8 1 0 72 300 32 div div setpattern - fill - grestore -}def - - - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .5 sub round .5 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - - - - -% **** begin image stuff ***** -% The following are used for images. This has to be kept -% in synch with corresponding code in ImageDisp.c.In particular -% the expansion factor, 8, has to be in synch. -% packedcolor is (red*256+green)*256+blue - -/SetPackedColor{ % packedcolor SetPackedColor -- - dup 256 mod /tmp0 xdef % extract blue - 256 idiv - dup 256 mod /tmp1 xdef % extract green - 256 idiv % extract red - 255 div /packedRed xdef - tmp1 255 div /packedGreen xdef - tmp0 255 div /packedBlue xdef -}bdef - -/IR_FillRect{ - gsave - newpath - rx0 ry0 M - rx1 ry0 L - rx1 ry1 L - rx0 ry1 L - closepath - packedRed packedGreen packedBlue setrgbcolor - fill - grestore -}bdef - -/NewRectImageLine{ % x0 y0 x1 y1 packedcolor NewRectImageLine -- - SetPackedColor - - /ry1 xdef /rx1 xdef /ry0 xdef /rx0 xdef % remember starting rectange for following calls - - IR_FillRect -}bdef - -/rx{ % xdist rx -- - 8 div - dup 0 lt - { rx0 /rx1 xdef rx1 add /rx0 xdef } % neg delta steps left - { rx1 /rx0 xdef rx0 add /rx1 xdef } - ifelse - IR_FillRect -}bdef - -/ry{ % ydist rr -- - 8 div - dup 0 lt - { ry1 /ry0 xdef ry0 exch sub /ry1 xdef } % neg delta steps down - { ry0 /ry1 xdef ry1 exch sub /ry0 xdef } - ifelse - IR_FillRect -}bdef - - -/cx{ % xdist packedcolor cx -- - SetPackedColor - rx -}bdef - -/cy{ % ydist packedcolor cx -- - SetPackedColor - ry -}bdef - -% **** end image stuff ***** - - - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -45.50 10.00 45.50 249.00 MacLine -549.50 10.00 549.50 249.00 MacLine -1 ps -1.00 ps -549.50 249.50 542.50 249.50 MacLine -45.50 249.50 52.50 249.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(-2) 33.12 252.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 244.00 546.00 244.00 MacLine -grestore -1.00 ps -549.50 243.50 546.00 243.50 MacLine -45.50 243.50 49.00 243.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 238.00 546.00 238.00 MacLine -grestore -1.00 ps -549.50 237.50 546.00 237.50 MacLine -45.50 237.50 49.00 237.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 232.00 546.00 232.00 MacLine -grestore -1.00 ps -549.50 231.50 546.00 231.50 MacLine -45.50 231.50 49.00 231.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 226.00 546.00 226.00 MacLine -grestore -1.00 ps -549.50 225.50 546.00 225.50 MacLine -45.50 225.50 49.00 225.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 220.00 544.25 220.00 MacLine -grestore -1.00 ps -549.50 219.50 544.25 219.50 MacLine -45.50 219.50 50.75 219.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 214.00 546.00 214.00 MacLine -grestore -1.00 ps -549.50 213.50 546.00 213.50 MacLine -45.50 213.50 49.00 213.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 208.00 546.00 208.00 MacLine -grestore -1.00 ps -549.50 207.50 546.00 207.50 MacLine -45.50 207.50 49.00 207.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 202.00 546.00 202.00 MacLine -grestore -1.00 ps -549.50 201.50 546.00 201.50 MacLine -45.50 201.50 49.00 201.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 196.00 546.00 196.00 MacLine -grestore -1.00 ps -549.50 195.50 546.00 195.50 MacLine -45.50 195.50 49.00 195.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 189.88 542.50 189.88 MacLine -grestore -1.00 ps -549.50 189.50 542.50 189.50 MacLine -45.50 189.50 52.50 189.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-1) 33.12 192.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 184.00 546.00 184.00 MacLine -grestore -1.00 ps -549.50 183.50 546.00 183.50 MacLine -45.50 183.50 49.00 183.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 178.00 546.00 178.00 MacLine -grestore -1.00 ps -549.50 177.50 546.00 177.50 MacLine -45.50 177.50 49.00 177.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 172.00 546.00 172.00 MacLine -grestore -1.00 ps -549.50 171.50 546.00 171.50 MacLine -45.50 171.50 49.00 171.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 166.00 546.00 166.00 MacLine -grestore -1.00 ps -549.50 165.50 546.00 165.50 MacLine -45.50 165.50 49.00 165.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 160.00 544.25 160.00 MacLine -grestore -1.00 ps -549.50 159.50 544.25 159.50 MacLine -45.50 159.50 50.75 159.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 154.00 546.00 154.00 MacLine -grestore -1.00 ps -549.50 153.50 546.00 153.50 MacLine -45.50 153.50 49.00 153.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 148.00 546.00 148.00 MacLine -grestore -1.00 ps -549.50 147.50 546.00 147.50 MacLine -45.50 147.50 49.00 147.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 142.00 546.00 142.00 MacLine -grestore -1.00 ps -549.50 141.50 546.00 141.50 MacLine -45.50 141.50 49.00 141.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 136.00 546.00 136.00 MacLine -grestore -1.00 ps -549.50 135.50 546.00 135.50 MacLine -45.50 135.50 49.00 135.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 129.88 542.50 129.88 MacLine -grestore -1.00 ps -549.50 129.50 542.50 129.50 MacLine -45.50 129.50 52.50 129.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 36.50 132.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 124.00 546.00 124.00 MacLine -grestore -1.00 ps -549.50 123.50 546.00 123.50 MacLine -45.50 123.50 49.00 123.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 118.00 546.00 118.00 MacLine -grestore -1.00 ps -549.50 117.50 546.00 117.50 MacLine -45.50 117.50 49.00 117.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 112.00 546.00 112.00 MacLine -grestore -1.00 ps -549.50 111.50 546.00 111.50 MacLine -45.50 111.50 49.00 111.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 106.00 546.00 106.00 MacLine -grestore -1.00 ps -549.50 105.50 546.00 105.50 MacLine -45.50 105.50 49.00 105.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 100.00 544.25 100.00 MacLine -grestore -1.00 ps -549.50 99.50 544.25 99.50 MacLine -45.50 99.50 50.75 99.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 94.00 546.00 94.00 MacLine -grestore -1.00 ps -549.50 93.50 546.00 93.50 MacLine -45.50 93.50 49.00 93.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 88.00 546.00 88.00 MacLine -grestore -1.00 ps -549.50 87.50 546.00 87.50 MacLine -45.50 87.50 49.00 87.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 82.00 546.00 82.00 MacLine -grestore -1.00 ps -549.50 81.50 546.00 81.50 MacLine -45.50 81.50 49.00 81.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 76.00 546.00 76.00 MacLine -grestore -1.00 ps -549.50 75.50 546.00 75.50 MacLine -45.50 75.50 49.00 75.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 69.88 542.50 69.88 MacLine -grestore -1.00 ps -549.50 69.50 542.50 69.50 MacLine -45.50 69.50 52.50 69.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(1) 36.50 72.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 64.00 546.00 64.00 MacLine -grestore -1.00 ps -549.50 63.50 546.00 63.50 MacLine -45.50 63.50 49.00 63.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 58.00 546.00 58.00 MacLine -grestore -1.00 ps -549.50 57.50 546.00 57.50 MacLine -45.50 57.50 49.00 57.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 52.00 546.00 52.00 MacLine -grestore -1.00 ps -549.50 51.50 546.00 51.50 MacLine -45.50 51.50 49.00 51.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 46.00 546.00 46.00 MacLine -grestore -1.00 ps -549.50 45.50 546.00 45.50 MacLine -45.50 45.50 49.00 45.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 40.00 544.25 40.00 MacLine -grestore -1.00 ps -549.50 39.50 544.25 39.50 MacLine -45.50 39.50 50.75 39.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 34.00 546.00 34.00 MacLine -grestore -1.00 ps -549.50 33.50 546.00 33.50 MacLine -45.50 33.50 49.00 33.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 28.00 546.00 28.00 MacLine -grestore -1.00 ps -549.50 27.50 546.00 27.50 MacLine -45.50 27.50 49.00 27.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 22.00 546.00 22.00 MacLine -grestore -1.00 ps -549.50 21.50 546.00 21.50 MacLine -45.50 21.50 49.00 21.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 16.00 546.00 16.00 MacLine -grestore -1.00 ps -549.50 15.50 546.00 15.50 MacLine -45.50 15.50 49.00 15.50 MacLine -1 ps -1.00 ps -549.50 9.50 542.50 9.50 MacLine -45.50 9.50 52.50 9.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 36.50 12.75 5.50 WS -gsave 1.00 ps 46.50 130.00 549.50 130.00 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 148.12 translate -90 rotate -(y \(m\)) 0.00 0.00 36.38 WS -grestore -1.00 ps -46.00 249.50 549.00 249.50 MacLine -46.00 9.50 549.00 9.50 MacLine -1 ps -1.00 ps -45.50 9.50 45.50 16.50 MacLine -45.50 249.50 45.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-4) 41.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -52.25 246.00 52.25 13.00 MacLine -grestore -1.00 ps -51.75 9.50 51.75 13.00 MacLine -51.75 249.50 51.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -58.62 246.00 58.62 13.00 MacLine -grestore -1.00 ps -58.12 9.50 58.12 13.00 MacLine -58.12 249.50 58.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -64.88 246.00 64.88 13.00 MacLine -grestore -1.00 ps -64.38 9.50 64.38 13.00 MacLine -64.38 249.50 64.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -71.25 246.00 71.25 13.00 MacLine -grestore -1.00 ps -70.75 9.50 70.75 13.00 MacLine -70.75 249.50 70.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -77.50 244.25 77.50 14.75 MacLine -grestore -1.00 ps -77.00 9.50 77.00 14.75 MacLine -77.00 249.50 77.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -83.75 246.00 83.75 13.00 MacLine -grestore -1.00 ps -83.25 9.50 83.25 13.00 MacLine -83.25 249.50 83.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -90.12 246.00 90.12 13.00 MacLine -grestore -1.00 ps -89.62 9.50 89.62 13.00 MacLine -89.62 249.50 89.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -96.38 246.00 96.38 13.00 MacLine -grestore -1.00 ps -95.88 9.50 95.88 13.00 MacLine -95.88 249.50 95.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.75 246.00 102.75 13.00 MacLine -grestore -1.00 ps -102.25 9.50 102.25 13.00 MacLine -102.25 249.50 102.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -109.00 244.25 109.00 14.75 MacLine -grestore -1.00 ps -108.50 9.50 108.50 14.75 MacLine -108.50 249.50 108.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -115.25 246.00 115.25 13.00 MacLine -grestore -1.00 ps -114.75 9.50 114.75 13.00 MacLine -114.75 249.50 114.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -121.62 246.00 121.62 13.00 MacLine -grestore -1.00 ps -121.12 9.50 121.12 13.00 MacLine -121.12 249.50 121.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -127.88 246.00 127.88 13.00 MacLine -grestore -1.00 ps -127.38 9.50 127.38 13.00 MacLine -127.38 249.50 127.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -134.25 246.00 134.25 13.00 MacLine -grestore -1.00 ps -133.75 9.50 133.75 13.00 MacLine -133.75 249.50 133.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -140.50 244.25 140.50 14.75 MacLine -grestore -1.00 ps -140.00 9.50 140.00 14.75 MacLine -140.00 249.50 140.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -146.75 246.00 146.75 13.00 MacLine -grestore -1.00 ps -146.25 9.50 146.25 13.00 MacLine -146.25 249.50 146.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -153.12 246.00 153.12 13.00 MacLine -grestore -1.00 ps -152.62 9.50 152.62 13.00 MacLine -152.62 249.50 152.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.38 246.00 159.38 13.00 MacLine -grestore -1.00 ps -158.88 9.50 158.88 13.00 MacLine -158.88 249.50 158.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -165.75 246.00 165.75 13.00 MacLine -grestore -1.00 ps -165.25 9.50 165.25 13.00 MacLine -165.25 249.50 165.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -171.88 242.50 171.88 16.50 MacLine -grestore -1.00 ps -171.50 9.50 171.50 16.50 MacLine -171.50 249.50 171.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-2) 167.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -178.25 246.00 178.25 13.00 MacLine -grestore -1.00 ps -177.75 9.50 177.75 13.00 MacLine -177.75 249.50 177.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -184.62 246.00 184.62 13.00 MacLine -grestore -1.00 ps -184.12 9.50 184.12 13.00 MacLine -184.12 249.50 184.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -190.88 246.00 190.88 13.00 MacLine -grestore -1.00 ps -190.38 9.50 190.38 13.00 MacLine -190.38 249.50 190.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -197.25 246.00 197.25 13.00 MacLine -grestore -1.00 ps -196.75 9.50 196.75 13.00 MacLine -196.75 249.50 196.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -203.50 244.25 203.50 14.75 MacLine -grestore -1.00 ps -203.00 9.50 203.00 14.75 MacLine -203.00 249.50 203.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -209.75 246.00 209.75 13.00 MacLine -grestore -1.00 ps -209.25 9.50 209.25 13.00 MacLine -209.25 249.50 209.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -216.12 246.00 216.12 13.00 MacLine -grestore -1.00 ps -215.62 9.50 215.62 13.00 MacLine -215.62 249.50 215.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.38 246.00 222.38 13.00 MacLine -grestore -1.00 ps -221.88 9.50 221.88 13.00 MacLine -221.88 249.50 221.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -228.75 246.00 228.75 13.00 MacLine -grestore -1.00 ps -228.25 9.50 228.25 13.00 MacLine -228.25 249.50 228.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -235.00 244.25 235.00 14.75 MacLine -grestore -1.00 ps -234.50 9.50 234.50 14.75 MacLine -234.50 249.50 234.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -241.25 246.00 241.25 13.00 MacLine -grestore -1.00 ps -240.75 9.50 240.75 13.00 MacLine -240.75 249.50 240.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -247.62 246.00 247.62 13.00 MacLine -grestore -1.00 ps -247.12 9.50 247.12 13.00 MacLine -247.12 249.50 247.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -253.88 246.00 253.88 13.00 MacLine -grestore -1.00 ps -253.38 9.50 253.38 13.00 MacLine -253.38 249.50 253.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -260.25 246.00 260.25 13.00 MacLine -grestore -1.00 ps -259.75 9.50 259.75 13.00 MacLine -259.75 249.50 259.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.50 244.25 266.50 14.75 MacLine -grestore -1.00 ps -266.00 9.50 266.00 14.75 MacLine -266.00 249.50 266.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -272.75 246.00 272.75 13.00 MacLine -grestore -1.00 ps -272.25 9.50 272.25 13.00 MacLine -272.25 249.50 272.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -279.12 246.00 279.12 13.00 MacLine -grestore -1.00 ps -278.62 9.50 278.62 13.00 MacLine -278.62 249.50 278.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -285.38 246.00 285.38 13.00 MacLine -grestore -1.00 ps -284.88 9.50 284.88 13.00 MacLine -284.88 249.50 284.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -291.75 246.00 291.75 13.00 MacLine -grestore -1.00 ps -291.25 9.50 291.25 13.00 MacLine -291.25 249.50 291.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -297.88 242.50 297.88 16.50 MacLine -grestore -1.00 ps -297.50 9.50 297.50 16.50 MacLine -297.50 249.50 297.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 295.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -304.25 246.00 304.25 13.00 MacLine -grestore -1.00 ps -303.75 9.50 303.75 13.00 MacLine -303.75 249.50 303.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -310.62 246.00 310.62 13.00 MacLine -grestore -1.00 ps -310.12 9.50 310.12 13.00 MacLine -310.12 249.50 310.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.88 246.00 316.88 13.00 MacLine -grestore -1.00 ps -316.38 9.50 316.38 13.00 MacLine -316.38 249.50 316.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 246.00 323.25 13.00 MacLine -grestore -1.00 ps -322.75 9.50 322.75 13.00 MacLine -322.75 249.50 322.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -329.50 244.25 329.50 14.75 MacLine -grestore -1.00 ps -329.00 9.50 329.00 14.75 MacLine -329.00 249.50 329.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -335.75 246.00 335.75 13.00 MacLine -grestore -1.00 ps -335.25 9.50 335.25 13.00 MacLine -335.25 249.50 335.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.12 246.00 342.12 13.00 MacLine -grestore -1.00 ps -341.62 9.50 341.62 13.00 MacLine -341.62 249.50 341.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -348.38 246.00 348.38 13.00 MacLine -grestore -1.00 ps -347.88 9.50 347.88 13.00 MacLine -347.88 249.50 347.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -354.75 246.00 354.75 13.00 MacLine -grestore -1.00 ps -354.25 9.50 354.25 13.00 MacLine -354.25 249.50 354.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -361.00 244.25 361.00 14.75 MacLine -grestore -1.00 ps -360.50 9.50 360.50 14.75 MacLine -360.50 249.50 360.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -367.25 246.00 367.25 13.00 MacLine -grestore -1.00 ps -366.75 9.50 366.75 13.00 MacLine -366.75 249.50 366.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.62 246.00 373.62 13.00 MacLine -grestore -1.00 ps -373.12 9.50 373.12 13.00 MacLine -373.12 249.50 373.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -379.88 246.00 379.88 13.00 MacLine -grestore -1.00 ps -379.38 9.50 379.38 13.00 MacLine -379.38 249.50 379.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -386.25 246.00 386.25 13.00 MacLine -grestore -1.00 ps -385.75 9.50 385.75 13.00 MacLine -385.75 249.50 385.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.50 244.25 392.50 14.75 MacLine -grestore -1.00 ps -392.00 9.50 392.00 14.75 MacLine -392.00 249.50 392.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -398.75 246.00 398.75 13.00 MacLine -grestore -1.00 ps -398.25 9.50 398.25 13.00 MacLine -398.25 249.50 398.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -405.12 246.00 405.12 13.00 MacLine -grestore -1.00 ps -404.62 9.50 404.62 13.00 MacLine -404.62 249.50 404.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -411.38 246.00 411.38 13.00 MacLine -grestore -1.00 ps -410.88 9.50 410.88 13.00 MacLine -410.88 249.50 410.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -417.75 246.00 417.75 13.00 MacLine -grestore -1.00 ps -417.25 9.50 417.25 13.00 MacLine -417.25 249.50 417.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -423.88 242.50 423.88 16.50 MacLine -grestore -1.00 ps -423.50 9.50 423.50 16.50 MacLine -423.50 249.50 423.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 421.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -430.25 246.00 430.25 13.00 MacLine -grestore -1.00 ps -429.75 9.50 429.75 13.00 MacLine -429.75 249.50 429.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -436.62 246.00 436.62 13.00 MacLine -grestore -1.00 ps -436.12 9.50 436.12 13.00 MacLine -436.12 249.50 436.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.88 246.00 442.88 13.00 MacLine -grestore -1.00 ps -442.38 9.50 442.38 13.00 MacLine -442.38 249.50 442.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -449.25 246.00 449.25 13.00 MacLine -grestore -1.00 ps -448.75 9.50 448.75 13.00 MacLine -448.75 249.50 448.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -455.50 244.25 455.50 14.75 MacLine -grestore -1.00 ps -455.00 9.50 455.00 14.75 MacLine -455.00 249.50 455.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -461.75 246.00 461.75 13.00 MacLine -grestore -1.00 ps -461.25 9.50 461.25 13.00 MacLine -461.25 249.50 461.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -468.12 246.00 468.12 13.00 MacLine -grestore -1.00 ps -467.62 9.50 467.62 13.00 MacLine -467.62 249.50 467.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -474.38 246.00 474.38 13.00 MacLine -grestore -1.00 ps -473.88 9.50 473.88 13.00 MacLine -473.88 249.50 473.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.75 246.00 480.75 13.00 MacLine -grestore -1.00 ps -480.25 9.50 480.25 13.00 MacLine -480.25 249.50 480.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.00 244.25 487.00 14.75 MacLine -grestore -1.00 ps -486.50 9.50 486.50 14.75 MacLine -486.50 249.50 486.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -493.25 246.00 493.25 13.00 MacLine -grestore -1.00 ps -492.75 9.50 492.75 13.00 MacLine -492.75 249.50 492.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -499.62 246.00 499.62 13.00 MacLine -grestore -1.00 ps -499.12 9.50 499.12 13.00 MacLine -499.12 249.50 499.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -505.88 246.00 505.88 13.00 MacLine -grestore -1.00 ps -505.38 9.50 505.38 13.00 MacLine -505.38 249.50 505.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.25 246.00 512.25 13.00 MacLine -grestore -1.00 ps -511.75 9.50 511.75 13.00 MacLine -511.75 249.50 511.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -518.50 244.25 518.50 14.75 MacLine -grestore -1.00 ps -518.00 9.50 518.00 14.75 MacLine -518.00 249.50 518.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -524.75 246.00 524.75 13.00 MacLine -grestore -1.00 ps -524.25 9.50 524.25 13.00 MacLine -524.25 249.50 524.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -531.12 246.00 531.12 13.00 MacLine -grestore -1.00 ps -530.62 9.50 530.62 13.00 MacLine -530.62 249.50 530.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -537.38 246.00 537.38 13.00 MacLine -grestore -1.00 ps -536.88 9.50 536.88 13.00 MacLine -536.88 249.50 536.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -543.75 246.00 543.75 13.00 MacLine -grestore -1.00 ps -543.25 9.50 543.25 13.00 MacLine -543.25 249.50 543.25 246.00 MacLine -1 ps -1.00 ps -549.50 9.50 549.50 16.50 MacLine -549.50 249.50 549.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 547.25 262.25 5.50 WS -gsave 1.00 ps 298.00 249.50 298.00 10.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -(x \(m\)) 279.88 284.38 36.38 WS -0.50 ps -newpath 298.00 130.00 3.00 0 360 arc -0 StrokePath -296.62 128.62 299.50 131.50 2 CapLine -299.50 128.62 296.62 131.50 2 CapLine -newpath 330.25 118.88 3.00 0 360 arc -0 StrokePath -328.88 117.50 331.75 120.38 2 CapLine -331.75 117.50 328.88 120.38 2 CapLine -newpath 362.50 107.62 3.00 0 360 arc -0 StrokePath -361.12 106.25 364.00 109.12 2 CapLine -364.00 106.25 361.12 109.12 2 CapLine -newpath 394.75 96.50 3.00 0 360 arc -0 StrokePath -393.38 95.12 396.25 98.00 2 CapLine -396.25 95.12 393.38 98.00 2 CapLine -newpath 427.00 85.25 3.00 0 360 arc -0 StrokePath -425.62 83.88 428.50 86.75 2 CapLine -428.50 83.88 425.62 86.75 2 CapLine -newpath 459.25 74.12 3.00 0 360 arc -0 StrokePath -457.88 72.75 460.75 75.62 2 CapLine -460.75 72.75 457.88 75.62 2 CapLine -newpath 491.50 63.00 3.00 0 360 arc -0 StrokePath -490.12 61.62 493.00 64.50 2 CapLine -493.00 61.62 490.12 64.50 2 CapLine -newpath 523.75 51.75 3.00 0 360 arc -0 StrokePath -522.38 50.38 525.25 53.25 2 CapLine -525.25 50.38 522.38 53.25 2 CapLine -1 ps -0.50 ps -295.00 130.00 301.00 130.00 2 CapLine -298.00 127.00 298.00 133.00 2 CapLine -329.12 142.38 335.12 142.38 2 CapLine -332.12 139.38 332.12 145.38 2 CapLine -363.38 154.88 369.38 154.88 2 CapLine -366.38 151.88 366.38 157.88 2 CapLine -397.50 167.25 403.50 167.25 2 CapLine -400.50 164.25 400.50 170.25 2 CapLine -431.75 179.62 437.75 179.62 2 CapLine -434.75 176.62 434.75 182.62 2 CapLine -465.88 192.12 471.88 192.12 2 CapLine -468.88 189.12 468.88 195.12 2 CapLine -500.00 204.50 506.00 204.50 2 CapLine -503.00 201.50 503.00 207.50 2 CapLine -534.25 216.88 540.25 216.88 2 CapLine -537.25 213.88 537.25 219.88 2 CapLine -1 ps -0.50 ps -newpath 235.00 130.00 3.00 0 360 arc -0 StrokePath -233.62 128.62 236.50 131.50 2 CapLine -236.50 128.62 233.62 131.50 2 CapLine -newpath 172.00 130.00 3.00 0 360 arc -0 StrokePath -170.62 128.62 173.50 131.50 2 CapLine -173.50 128.62 170.62 131.50 2 CapLine -newpath 109.00 130.00 3.00 0 360 arc -0 StrokePath -107.62 128.62 110.50 131.50 2 CapLine -110.50 128.62 107.62 131.50 2 CapLine -newpath 46.00 130.00 3.00 0 360 arc -0 StrokePath -44.62 128.62 47.50 131.50 2 CapLine -47.50 128.62 44.62 131.50 2 CapLine -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av2.gif deleted file mode 100755 index 3edc5d8de..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av20.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av20.eps deleted file mode 100755 index c0ebf6144..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av20.eps +++ /dev/null @@ -1,1487 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph19 -%%Creation Date: Thu, Oct 24, 1996 06:51 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/rx0 0 def /ry0 0 def /rx1 0 def /ry1 0 def -/tmp0 0 def /tmp1 0 def -/packedRed 0 def /packedGreen 0 def /packedBlue 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/setuserscreendict 22 dict def -setuserscreendict begin - -/tempctm matrix def -/temprot matrix def -/tempscale matrix def - -/concatprocs{ - /proc2 exch cvlit def - /proc1 exch cvlit def - /newproc proc1 length proc2 length add array def - newproc 0 proc1 putinterval - newproc proc1 length proc2 putinterval - newproc cvx -}def - -/resmatrix matrix def -/findresolution{ - 72 0 resmatrix defaultmatrix dtransform - /yres xdef /xres xdef - xres dup mul yres dup mul add sqrt -}def -end - -/setuserscreen{ - setuserscreendict begin - /spotfunction xdef - /screenangle xdef - /cellsize xdef - - /m tempctm currentmatrix def - /rm screenangle temprot rotate def - /sm cellsize dup tempscale scale def - - sm rm m m concatmatrix m concatmatrix pop - 1 0 m dtransform /y1 xdef /x1 xdef - /veclength x1 dup mul y1 dup mul add sqrt def - /frequency findresolution veclength div def - /newscreenangle y1 x1 atan def - m 2 get m 1 get mul m 0 get m 3 get mul sub 0 gt - { - { neg } /spotfunction load concatprocs - /spotfunction xdef - } if - frequency newscreenangle /spotfunction load setscreen - end -}def - -/setpatterndict 18 dict def -setpatterndict begin -/bitison{ - /ybit xdef /xbit xdef - /bytevalue bstring ybit bwidth mul xbit 8 idiv add get def - /mask 1 7 xbit 8 mod sub bitshift def - bytevalue mask and 0 ne -}def -end - -/bitpatternspotfunction{ - setpatterndict begin - /y xdef /x xdef - /xindex x 1 add 2 div bpside mul cvi def - /yindex y 1 add 2 div bpside mul cvi def - xindex yindex bitison - { /onbits onbits 1 add def 1 } - { /offbits offbits 1 add def 0 } - ifelse - end -}def - -/setpattern{ - setpatterndict begin - /cellsz xdef - /angle xdef - /bwidth xdef - /bpside xdef - /bstring xdef - - /onbits 0 def /offbits 0 def - cellsz angle /bitpatternspotfunction load setuserscreen - {} settransfer - offbits offbits onbits add div setgray - end -}def - -/FillPattern{ % patternstring -- - /pat xdef - gsave - pat 8 1 0 72 300 32 div div setpattern - fill - grestore -}def - - - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .5 sub round .5 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - - - - -% **** begin image stuff ***** -% The following are used for images. This has to be kept -% in synch with corresponding code in ImageDisp.c.In particular -% the expansion factor, 8, has to be in synch. -% packedcolor is (red*256+green)*256+blue - -/SetPackedColor{ % packedcolor SetPackedColor -- - dup 256 mod /tmp0 xdef % extract blue - 256 idiv - dup 256 mod /tmp1 xdef % extract green - 256 idiv % extract red - 255 div /packedRed xdef - tmp1 255 div /packedGreen xdef - tmp0 255 div /packedBlue xdef -}bdef - -/IR_FillRect{ - gsave - newpath - rx0 ry0 M - rx1 ry0 L - rx1 ry1 L - rx0 ry1 L - closepath - packedRed packedGreen packedBlue setrgbcolor - fill - grestore -}bdef - -/NewRectImageLine{ % x0 y0 x1 y1 packedcolor NewRectImageLine -- - SetPackedColor - - /ry1 xdef /rx1 xdef /ry0 xdef /rx0 xdef % remember starting rectange for following calls - - IR_FillRect -}bdef - -/rx{ % xdist rx -- - 8 div - dup 0 lt - { rx0 /rx1 xdef rx1 add /rx0 xdef } % neg delta steps left - { rx1 /rx0 xdef rx0 add /rx1 xdef } - ifelse - IR_FillRect -}bdef - -/ry{ % ydist rr -- - 8 div - dup 0 lt - { ry1 /ry0 xdef ry0 exch sub /ry1 xdef } % neg delta steps down - { ry0 /ry1 xdef ry1 exch sub /ry0 xdef } - ifelse - IR_FillRect -}bdef - - -/cx{ % xdist packedcolor cx -- - SetPackedColor - rx -}bdef - -/cy{ % ydist packedcolor cx -- - SetPackedColor - ry -}bdef - -% **** end image stuff ***** - - - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -45.50 10.00 45.50 249.00 MacLine -549.50 10.00 549.50 249.00 MacLine -1 ps -1.00 ps -549.50 249.50 542.50 249.50 MacLine -45.50 249.50 52.50 249.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(-2) 33.12 252.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 244.00 546.00 244.00 MacLine -grestore -1.00 ps -549.50 243.50 546.00 243.50 MacLine -45.50 243.50 49.00 243.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 238.00 546.00 238.00 MacLine -grestore -1.00 ps -549.50 237.50 546.00 237.50 MacLine -45.50 237.50 49.00 237.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 232.00 546.00 232.00 MacLine -grestore -1.00 ps -549.50 231.50 546.00 231.50 MacLine -45.50 231.50 49.00 231.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 226.00 546.00 226.00 MacLine -grestore -1.00 ps -549.50 225.50 546.00 225.50 MacLine -45.50 225.50 49.00 225.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 220.00 544.25 220.00 MacLine -grestore -1.00 ps -549.50 219.50 544.25 219.50 MacLine -45.50 219.50 50.75 219.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 214.00 546.00 214.00 MacLine -grestore -1.00 ps -549.50 213.50 546.00 213.50 MacLine -45.50 213.50 49.00 213.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 208.00 546.00 208.00 MacLine -grestore -1.00 ps -549.50 207.50 546.00 207.50 MacLine -45.50 207.50 49.00 207.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 202.00 546.00 202.00 MacLine -grestore -1.00 ps -549.50 201.50 546.00 201.50 MacLine -45.50 201.50 49.00 201.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 196.00 546.00 196.00 MacLine -grestore -1.00 ps -549.50 195.50 546.00 195.50 MacLine -45.50 195.50 49.00 195.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 189.88 542.50 189.88 MacLine -grestore -1.00 ps -549.50 189.50 542.50 189.50 MacLine -45.50 189.50 52.50 189.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-1) 33.12 192.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 184.00 546.00 184.00 MacLine -grestore -1.00 ps -549.50 183.50 546.00 183.50 MacLine -45.50 183.50 49.00 183.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 178.00 546.00 178.00 MacLine -grestore -1.00 ps -549.50 177.50 546.00 177.50 MacLine -45.50 177.50 49.00 177.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 172.00 546.00 172.00 MacLine -grestore -1.00 ps -549.50 171.50 546.00 171.50 MacLine -45.50 171.50 49.00 171.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 166.00 546.00 166.00 MacLine -grestore -1.00 ps -549.50 165.50 546.00 165.50 MacLine -45.50 165.50 49.00 165.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 160.00 544.25 160.00 MacLine -grestore -1.00 ps -549.50 159.50 544.25 159.50 MacLine -45.50 159.50 50.75 159.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 154.00 546.00 154.00 MacLine -grestore -1.00 ps -549.50 153.50 546.00 153.50 MacLine -45.50 153.50 49.00 153.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 148.00 546.00 148.00 MacLine -grestore -1.00 ps -549.50 147.50 546.00 147.50 MacLine -45.50 147.50 49.00 147.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 142.00 546.00 142.00 MacLine -grestore -1.00 ps -549.50 141.50 546.00 141.50 MacLine -45.50 141.50 49.00 141.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 136.00 546.00 136.00 MacLine -grestore -1.00 ps -549.50 135.50 546.00 135.50 MacLine -45.50 135.50 49.00 135.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 129.88 542.50 129.88 MacLine -grestore -1.00 ps -549.50 129.50 542.50 129.50 MacLine -45.50 129.50 52.50 129.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 36.50 132.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 124.00 546.00 124.00 MacLine -grestore -1.00 ps -549.50 123.50 546.00 123.50 MacLine -45.50 123.50 49.00 123.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 118.00 546.00 118.00 MacLine -grestore -1.00 ps -549.50 117.50 546.00 117.50 MacLine -45.50 117.50 49.00 117.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 112.00 546.00 112.00 MacLine -grestore -1.00 ps -549.50 111.50 546.00 111.50 MacLine -45.50 111.50 49.00 111.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 106.00 546.00 106.00 MacLine -grestore -1.00 ps -549.50 105.50 546.00 105.50 MacLine -45.50 105.50 49.00 105.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 100.00 544.25 100.00 MacLine -grestore -1.00 ps -549.50 99.50 544.25 99.50 MacLine -45.50 99.50 50.75 99.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 94.00 546.00 94.00 MacLine -grestore -1.00 ps -549.50 93.50 546.00 93.50 MacLine -45.50 93.50 49.00 93.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 88.00 546.00 88.00 MacLine -grestore -1.00 ps -549.50 87.50 546.00 87.50 MacLine -45.50 87.50 49.00 87.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 82.00 546.00 82.00 MacLine -grestore -1.00 ps -549.50 81.50 546.00 81.50 MacLine -45.50 81.50 49.00 81.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 76.00 546.00 76.00 MacLine -grestore -1.00 ps -549.50 75.50 546.00 75.50 MacLine -45.50 75.50 49.00 75.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 69.88 542.50 69.88 MacLine -grestore -1.00 ps -549.50 69.50 542.50 69.50 MacLine -45.50 69.50 52.50 69.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(1) 36.50 72.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 64.00 546.00 64.00 MacLine -grestore -1.00 ps -549.50 63.50 546.00 63.50 MacLine -45.50 63.50 49.00 63.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 58.00 546.00 58.00 MacLine -grestore -1.00 ps -549.50 57.50 546.00 57.50 MacLine -45.50 57.50 49.00 57.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 52.00 546.00 52.00 MacLine -grestore -1.00 ps -549.50 51.50 546.00 51.50 MacLine -45.50 51.50 49.00 51.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 46.00 546.00 46.00 MacLine -grestore -1.00 ps -549.50 45.50 546.00 45.50 MacLine -45.50 45.50 49.00 45.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 40.00 544.25 40.00 MacLine -grestore -1.00 ps -549.50 39.50 544.25 39.50 MacLine -45.50 39.50 50.75 39.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 34.00 546.00 34.00 MacLine -grestore -1.00 ps -549.50 33.50 546.00 33.50 MacLine -45.50 33.50 49.00 33.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 28.00 546.00 28.00 MacLine -grestore -1.00 ps -549.50 27.50 546.00 27.50 MacLine -45.50 27.50 49.00 27.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 22.00 546.00 22.00 MacLine -grestore -1.00 ps -549.50 21.50 546.00 21.50 MacLine -45.50 21.50 49.00 21.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 16.00 546.00 16.00 MacLine -grestore -1.00 ps -549.50 15.50 546.00 15.50 MacLine -45.50 15.50 49.00 15.50 MacLine -1 ps -1.00 ps -549.50 9.50 542.50 9.50 MacLine -45.50 9.50 52.50 9.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 36.50 12.75 5.50 WS -gsave 1.00 ps 46.50 130.00 549.50 130.00 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 148.12 translate -90 rotate -(y \(m\)) 0.00 0.00 36.38 WS -grestore -1.00 ps -46.00 249.50 549.00 249.50 MacLine -46.00 9.50 549.00 9.50 MacLine -1 ps -1.00 ps -45.50 9.50 45.50 16.50 MacLine -45.50 249.50 45.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-4) 41.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -52.25 246.00 52.25 13.00 MacLine -grestore -1.00 ps -51.75 9.50 51.75 13.00 MacLine -51.75 249.50 51.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -58.62 246.00 58.62 13.00 MacLine -grestore -1.00 ps -58.12 9.50 58.12 13.00 MacLine -58.12 249.50 58.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -64.88 246.00 64.88 13.00 MacLine -grestore -1.00 ps -64.38 9.50 64.38 13.00 MacLine -64.38 249.50 64.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -71.25 246.00 71.25 13.00 MacLine -grestore -1.00 ps -70.75 9.50 70.75 13.00 MacLine -70.75 249.50 70.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -77.50 244.25 77.50 14.75 MacLine -grestore -1.00 ps -77.00 9.50 77.00 14.75 MacLine -77.00 249.50 77.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -83.75 246.00 83.75 13.00 MacLine -grestore -1.00 ps -83.25 9.50 83.25 13.00 MacLine -83.25 249.50 83.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -90.12 246.00 90.12 13.00 MacLine -grestore -1.00 ps -89.62 9.50 89.62 13.00 MacLine -89.62 249.50 89.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -96.38 246.00 96.38 13.00 MacLine -grestore -1.00 ps -95.88 9.50 95.88 13.00 MacLine -95.88 249.50 95.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.75 246.00 102.75 13.00 MacLine -grestore -1.00 ps -102.25 9.50 102.25 13.00 MacLine -102.25 249.50 102.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -109.00 244.25 109.00 14.75 MacLine -grestore -1.00 ps -108.50 9.50 108.50 14.75 MacLine -108.50 249.50 108.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -115.25 246.00 115.25 13.00 MacLine -grestore -1.00 ps -114.75 9.50 114.75 13.00 MacLine -114.75 249.50 114.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -121.62 246.00 121.62 13.00 MacLine -grestore -1.00 ps -121.12 9.50 121.12 13.00 MacLine -121.12 249.50 121.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -127.88 246.00 127.88 13.00 MacLine -grestore -1.00 ps -127.38 9.50 127.38 13.00 MacLine -127.38 249.50 127.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -134.25 246.00 134.25 13.00 MacLine -grestore -1.00 ps -133.75 9.50 133.75 13.00 MacLine -133.75 249.50 133.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -140.50 244.25 140.50 14.75 MacLine -grestore -1.00 ps -140.00 9.50 140.00 14.75 MacLine -140.00 249.50 140.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -146.75 246.00 146.75 13.00 MacLine -grestore -1.00 ps -146.25 9.50 146.25 13.00 MacLine -146.25 249.50 146.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -153.12 246.00 153.12 13.00 MacLine -grestore -1.00 ps -152.62 9.50 152.62 13.00 MacLine -152.62 249.50 152.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.38 246.00 159.38 13.00 MacLine -grestore -1.00 ps -158.88 9.50 158.88 13.00 MacLine -158.88 249.50 158.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -165.75 246.00 165.75 13.00 MacLine -grestore -1.00 ps -165.25 9.50 165.25 13.00 MacLine -165.25 249.50 165.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -171.88 242.50 171.88 16.50 MacLine -grestore -1.00 ps -171.50 9.50 171.50 16.50 MacLine -171.50 249.50 171.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-2) 167.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -178.25 246.00 178.25 13.00 MacLine -grestore -1.00 ps -177.75 9.50 177.75 13.00 MacLine -177.75 249.50 177.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -184.62 246.00 184.62 13.00 MacLine -grestore -1.00 ps -184.12 9.50 184.12 13.00 MacLine -184.12 249.50 184.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -190.88 246.00 190.88 13.00 MacLine -grestore -1.00 ps -190.38 9.50 190.38 13.00 MacLine -190.38 249.50 190.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -197.25 246.00 197.25 13.00 MacLine -grestore -1.00 ps -196.75 9.50 196.75 13.00 MacLine -196.75 249.50 196.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -203.50 244.25 203.50 14.75 MacLine -grestore -1.00 ps -203.00 9.50 203.00 14.75 MacLine -203.00 249.50 203.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -209.75 246.00 209.75 13.00 MacLine -grestore -1.00 ps -209.25 9.50 209.25 13.00 MacLine -209.25 249.50 209.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -216.12 246.00 216.12 13.00 MacLine -grestore -1.00 ps -215.62 9.50 215.62 13.00 MacLine -215.62 249.50 215.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.38 246.00 222.38 13.00 MacLine -grestore -1.00 ps -221.88 9.50 221.88 13.00 MacLine -221.88 249.50 221.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -228.75 246.00 228.75 13.00 MacLine -grestore -1.00 ps -228.25 9.50 228.25 13.00 MacLine -228.25 249.50 228.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -235.00 244.25 235.00 14.75 MacLine -grestore -1.00 ps -234.50 9.50 234.50 14.75 MacLine -234.50 249.50 234.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -241.25 246.00 241.25 13.00 MacLine -grestore -1.00 ps -240.75 9.50 240.75 13.00 MacLine -240.75 249.50 240.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -247.62 246.00 247.62 13.00 MacLine -grestore -1.00 ps -247.12 9.50 247.12 13.00 MacLine -247.12 249.50 247.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -253.88 246.00 253.88 13.00 MacLine -grestore -1.00 ps -253.38 9.50 253.38 13.00 MacLine -253.38 249.50 253.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -260.25 246.00 260.25 13.00 MacLine -grestore -1.00 ps -259.75 9.50 259.75 13.00 MacLine -259.75 249.50 259.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.50 244.25 266.50 14.75 MacLine -grestore -1.00 ps -266.00 9.50 266.00 14.75 MacLine -266.00 249.50 266.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -272.75 246.00 272.75 13.00 MacLine -grestore -1.00 ps -272.25 9.50 272.25 13.00 MacLine -272.25 249.50 272.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -279.12 246.00 279.12 13.00 MacLine -grestore -1.00 ps -278.62 9.50 278.62 13.00 MacLine -278.62 249.50 278.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -285.38 246.00 285.38 13.00 MacLine -grestore -1.00 ps -284.88 9.50 284.88 13.00 MacLine -284.88 249.50 284.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -291.75 246.00 291.75 13.00 MacLine -grestore -1.00 ps -291.25 9.50 291.25 13.00 MacLine -291.25 249.50 291.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -297.88 242.50 297.88 16.50 MacLine -grestore -1.00 ps -297.50 9.50 297.50 16.50 MacLine -297.50 249.50 297.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 295.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -304.25 246.00 304.25 13.00 MacLine -grestore -1.00 ps -303.75 9.50 303.75 13.00 MacLine -303.75 249.50 303.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -310.62 246.00 310.62 13.00 MacLine -grestore -1.00 ps -310.12 9.50 310.12 13.00 MacLine -310.12 249.50 310.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.88 246.00 316.88 13.00 MacLine -grestore -1.00 ps -316.38 9.50 316.38 13.00 MacLine -316.38 249.50 316.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 246.00 323.25 13.00 MacLine -grestore -1.00 ps -322.75 9.50 322.75 13.00 MacLine -322.75 249.50 322.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -329.50 244.25 329.50 14.75 MacLine -grestore -1.00 ps -329.00 9.50 329.00 14.75 MacLine -329.00 249.50 329.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -335.75 246.00 335.75 13.00 MacLine -grestore -1.00 ps -335.25 9.50 335.25 13.00 MacLine -335.25 249.50 335.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.12 246.00 342.12 13.00 MacLine -grestore -1.00 ps -341.62 9.50 341.62 13.00 MacLine -341.62 249.50 341.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -348.38 246.00 348.38 13.00 MacLine -grestore -1.00 ps -347.88 9.50 347.88 13.00 MacLine -347.88 249.50 347.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -354.75 246.00 354.75 13.00 MacLine -grestore -1.00 ps -354.25 9.50 354.25 13.00 MacLine -354.25 249.50 354.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -361.00 244.25 361.00 14.75 MacLine -grestore -1.00 ps -360.50 9.50 360.50 14.75 MacLine -360.50 249.50 360.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -367.25 246.00 367.25 13.00 MacLine -grestore -1.00 ps -366.75 9.50 366.75 13.00 MacLine -366.75 249.50 366.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.62 246.00 373.62 13.00 MacLine -grestore -1.00 ps -373.12 9.50 373.12 13.00 MacLine -373.12 249.50 373.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -379.88 246.00 379.88 13.00 MacLine -grestore -1.00 ps -379.38 9.50 379.38 13.00 MacLine -379.38 249.50 379.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -386.25 246.00 386.25 13.00 MacLine -grestore -1.00 ps -385.75 9.50 385.75 13.00 MacLine -385.75 249.50 385.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.50 244.25 392.50 14.75 MacLine -grestore -1.00 ps -392.00 9.50 392.00 14.75 MacLine -392.00 249.50 392.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -398.75 246.00 398.75 13.00 MacLine -grestore -1.00 ps -398.25 9.50 398.25 13.00 MacLine -398.25 249.50 398.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -405.12 246.00 405.12 13.00 MacLine -grestore -1.00 ps -404.62 9.50 404.62 13.00 MacLine -404.62 249.50 404.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -411.38 246.00 411.38 13.00 MacLine -grestore -1.00 ps -410.88 9.50 410.88 13.00 MacLine -410.88 249.50 410.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -417.75 246.00 417.75 13.00 MacLine -grestore -1.00 ps -417.25 9.50 417.25 13.00 MacLine -417.25 249.50 417.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -423.88 242.50 423.88 16.50 MacLine -grestore -1.00 ps -423.50 9.50 423.50 16.50 MacLine -423.50 249.50 423.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 421.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -430.25 246.00 430.25 13.00 MacLine -grestore -1.00 ps -429.75 9.50 429.75 13.00 MacLine -429.75 249.50 429.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -436.62 246.00 436.62 13.00 MacLine -grestore -1.00 ps -436.12 9.50 436.12 13.00 MacLine -436.12 249.50 436.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.88 246.00 442.88 13.00 MacLine -grestore -1.00 ps -442.38 9.50 442.38 13.00 MacLine -442.38 249.50 442.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -449.25 246.00 449.25 13.00 MacLine -grestore -1.00 ps -448.75 9.50 448.75 13.00 MacLine -448.75 249.50 448.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -455.50 244.25 455.50 14.75 MacLine -grestore -1.00 ps -455.00 9.50 455.00 14.75 MacLine -455.00 249.50 455.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -461.75 246.00 461.75 13.00 MacLine -grestore -1.00 ps -461.25 9.50 461.25 13.00 MacLine -461.25 249.50 461.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -468.12 246.00 468.12 13.00 MacLine -grestore -1.00 ps -467.62 9.50 467.62 13.00 MacLine -467.62 249.50 467.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -474.38 246.00 474.38 13.00 MacLine -grestore -1.00 ps -473.88 9.50 473.88 13.00 MacLine -473.88 249.50 473.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.75 246.00 480.75 13.00 MacLine -grestore -1.00 ps -480.25 9.50 480.25 13.00 MacLine -480.25 249.50 480.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.00 244.25 487.00 14.75 MacLine -grestore -1.00 ps -486.50 9.50 486.50 14.75 MacLine -486.50 249.50 486.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -493.25 246.00 493.25 13.00 MacLine -grestore -1.00 ps -492.75 9.50 492.75 13.00 MacLine -492.75 249.50 492.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -499.62 246.00 499.62 13.00 MacLine -grestore -1.00 ps -499.12 9.50 499.12 13.00 MacLine -499.12 249.50 499.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -505.88 246.00 505.88 13.00 MacLine -grestore -1.00 ps -505.38 9.50 505.38 13.00 MacLine -505.38 249.50 505.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.25 246.00 512.25 13.00 MacLine -grestore -1.00 ps -511.75 9.50 511.75 13.00 MacLine -511.75 249.50 511.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -518.50 244.25 518.50 14.75 MacLine -grestore -1.00 ps -518.00 9.50 518.00 14.75 MacLine -518.00 249.50 518.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -524.75 246.00 524.75 13.00 MacLine -grestore -1.00 ps -524.25 9.50 524.25 13.00 MacLine -524.25 249.50 524.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -531.12 246.00 531.12 13.00 MacLine -grestore -1.00 ps -530.62 9.50 530.62 13.00 MacLine -530.62 249.50 530.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -537.38 246.00 537.38 13.00 MacLine -grestore -1.00 ps -536.88 9.50 536.88 13.00 MacLine -536.88 249.50 536.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -543.75 246.00 543.75 13.00 MacLine -grestore -1.00 ps -543.25 9.50 543.25 13.00 MacLine -543.25 249.50 543.25 246.00 MacLine -1 ps -1.00 ps -549.50 9.50 549.50 16.50 MacLine -549.50 249.50 549.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 547.25 262.25 5.50 WS -gsave 1.00 ps 298.00 249.50 298.00 10.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -(x \(m\)) 279.88 284.38 36.38 WS -0.50 ps -newpath 298.00 130.00 3.00 0 360 arc -0 StrokePath -296.62 128.62 299.50 131.50 2 CapLine -299.50 128.62 296.62 131.50 2 CapLine -newpath 335.12 117.12 3.00 0 360 arc -0 StrokePath -333.75 115.75 336.62 118.62 2 CapLine -336.62 115.75 333.75 118.62 2 CapLine -newpath 372.12 104.25 3.00 0 360 arc -0 StrokePath -370.75 102.88 373.62 105.75 2 CapLine -373.62 102.88 370.75 105.75 2 CapLine -newpath 409.25 91.38 3.00 0 360 arc -0 StrokePath -407.88 90.00 410.75 92.88 2 CapLine -410.75 90.00 407.88 92.88 2 CapLine -newpath 446.38 78.62 3.00 0 360 arc -0 StrokePath -445.00 77.25 447.88 80.12 2 CapLine -447.88 77.25 445.00 80.12 2 CapLine -newpath 483.50 65.75 3.00 0 360 arc -0 StrokePath -482.12 64.38 485.00 67.25 2 CapLine -485.00 64.38 482.12 67.25 2 CapLine -newpath 520.50 52.88 3.00 0 360 arc -0 StrokePath -519.12 51.50 522.00 54.38 2 CapLine -522.00 51.50 519.12 54.38 2 CapLine -1 ps -0.50 ps -295.00 130.00 301.00 130.00 2 CapLine -298.00 127.00 298.00 133.00 2 CapLine -308.00 136.38 314.00 136.38 2 CapLine -311.00 133.38 311.00 139.38 2 CapLine -320.88 142.88 326.88 142.88 2 CapLine -323.88 139.88 323.88 145.88 2 CapLine -333.88 149.25 339.88 149.25 2 CapLine -336.88 146.25 336.88 152.25 2 CapLine -346.88 155.75 352.88 155.75 2 CapLine -349.88 152.75 349.88 158.75 2 CapLine -359.75 162.12 365.75 162.12 2 CapLine -362.75 159.12 362.75 165.12 2 CapLine -372.75 168.62 378.75 168.62 2 CapLine -375.75 165.62 375.75 171.62 2 CapLine -385.75 175.00 391.75 175.00 2 CapLine -388.75 172.00 388.75 178.00 2 CapLine -398.62 181.38 404.62 181.38 2 CapLine -401.62 178.38 401.62 184.38 2 CapLine -411.62 187.88 417.62 187.88 2 CapLine -414.62 184.88 414.62 190.88 2 CapLine -424.50 194.25 430.50 194.25 2 CapLine -427.50 191.25 427.50 197.25 2 CapLine -437.50 200.75 443.50 200.75 2 CapLine -440.50 197.75 440.50 203.75 2 CapLine -450.50 207.12 456.50 207.12 2 CapLine -453.50 204.12 453.50 210.12 2 CapLine -463.38 213.50 469.38 213.50 2 CapLine -466.38 210.50 466.38 216.50 2 CapLine -476.38 220.00 482.38 220.00 2 CapLine -479.38 217.00 479.38 223.00 2 CapLine -489.38 226.38 495.38 226.38 2 CapLine -492.38 223.38 492.38 229.38 2 CapLine -502.25 232.88 508.25 232.88 2 CapLine -505.25 229.88 505.25 235.88 2 CapLine -515.25 239.25 521.25 239.25 2 CapLine -518.25 236.25 518.25 242.25 2 CapLine -528.25 245.75 534.25 245.75 2 CapLine -531.25 242.75 531.25 248.75 2 CapLine -1 ps -0.50 ps -newpath 235.00 130.00 3.00 0 360 arc -0 StrokePath -233.62 128.62 236.50 131.50 2 CapLine -236.50 128.62 233.62 131.50 2 CapLine -newpath 172.00 130.00 3.00 0 360 arc -0 StrokePath -170.62 128.62 173.50 131.50 2 CapLine -173.50 128.62 170.62 131.50 2 CapLine -newpath 109.00 130.00 3.00 0 360 arc -0 StrokePath -107.62 128.62 110.50 131.50 2 CapLine -110.50 128.62 107.62 131.50 2 CapLine -newpath 46.00 130.00 3.00 0 360 arc -0 StrokePath -44.62 128.62 47.50 131.50 2 CapLine -47.50 128.62 44.62 131.50 2 CapLine -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av20.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av20.gif deleted file mode 100755 index 06a68f754..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av20.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av3.eps deleted file mode 100755 index d503679ba..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av3.eps +++ /dev/null @@ -1,1461 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph2 -%%Creation Date: Thu, Oct 24, 1996 06:50 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/rx0 0 def /ry0 0 def /rx1 0 def /ry1 0 def -/tmp0 0 def /tmp1 0 def -/packedRed 0 def /packedGreen 0 def /packedBlue 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/setuserscreendict 22 dict def -setuserscreendict begin - -/tempctm matrix def -/temprot matrix def -/tempscale matrix def - -/concatprocs{ - /proc2 exch cvlit def - /proc1 exch cvlit def - /newproc proc1 length proc2 length add array def - newproc 0 proc1 putinterval - newproc proc1 length proc2 putinterval - newproc cvx -}def - -/resmatrix matrix def -/findresolution{ - 72 0 resmatrix defaultmatrix dtransform - /yres xdef /xres xdef - xres dup mul yres dup mul add sqrt -}def -end - -/setuserscreen{ - setuserscreendict begin - /spotfunction xdef - /screenangle xdef - /cellsize xdef - - /m tempctm currentmatrix def - /rm screenangle temprot rotate def - /sm cellsize dup tempscale scale def - - sm rm m m concatmatrix m concatmatrix pop - 1 0 m dtransform /y1 xdef /x1 xdef - /veclength x1 dup mul y1 dup mul add sqrt def - /frequency findresolution veclength div def - /newscreenangle y1 x1 atan def - m 2 get m 1 get mul m 0 get m 3 get mul sub 0 gt - { - { neg } /spotfunction load concatprocs - /spotfunction xdef - } if - frequency newscreenangle /spotfunction load setscreen - end -}def - -/setpatterndict 18 dict def -setpatterndict begin -/bitison{ - /ybit xdef /xbit xdef - /bytevalue bstring ybit bwidth mul xbit 8 idiv add get def - /mask 1 7 xbit 8 mod sub bitshift def - bytevalue mask and 0 ne -}def -end - -/bitpatternspotfunction{ - setpatterndict begin - /y xdef /x xdef - /xindex x 1 add 2 div bpside mul cvi def - /yindex y 1 add 2 div bpside mul cvi def - xindex yindex bitison - { /onbits onbits 1 add def 1 } - { /offbits offbits 1 add def 0 } - ifelse - end -}def - -/setpattern{ - setpatterndict begin - /cellsz xdef - /angle xdef - /bwidth xdef - /bpside xdef - /bstring xdef - - /onbits 0 def /offbits 0 def - cellsz angle /bitpatternspotfunction load setuserscreen - {} settransfer - offbits offbits onbits add div setgray - end -}def - -/FillPattern{ % patternstring -- - /pat xdef - gsave - pat 8 1 0 72 300 32 div div setpattern - fill - grestore -}def - - - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .5 sub round .5 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - - - - -% **** begin image stuff ***** -% The following are used for images. This has to be kept -% in synch with corresponding code in ImageDisp.c.In particular -% the expansion factor, 8, has to be in synch. -% packedcolor is (red*256+green)*256+blue - -/SetPackedColor{ % packedcolor SetPackedColor -- - dup 256 mod /tmp0 xdef % extract blue - 256 idiv - dup 256 mod /tmp1 xdef % extract green - 256 idiv % extract red - 255 div /packedRed xdef - tmp1 255 div /packedGreen xdef - tmp0 255 div /packedBlue xdef -}bdef - -/IR_FillRect{ - gsave - newpath - rx0 ry0 M - rx1 ry0 L - rx1 ry1 L - rx0 ry1 L - closepath - packedRed packedGreen packedBlue setrgbcolor - fill - grestore -}bdef - -/NewRectImageLine{ % x0 y0 x1 y1 packedcolor NewRectImageLine -- - SetPackedColor - - /ry1 xdef /rx1 xdef /ry0 xdef /rx0 xdef % remember starting rectange for following calls - - IR_FillRect -}bdef - -/rx{ % xdist rx -- - 8 div - dup 0 lt - { rx0 /rx1 xdef rx1 add /rx0 xdef } % neg delta steps left - { rx1 /rx0 xdef rx0 add /rx1 xdef } - ifelse - IR_FillRect -}bdef - -/ry{ % ydist rr -- - 8 div - dup 0 lt - { ry1 /ry0 xdef ry0 exch sub /ry1 xdef } % neg delta steps down - { ry0 /ry1 xdef ry1 exch sub /ry0 xdef } - ifelse - IR_FillRect -}bdef - - -/cx{ % xdist packedcolor cx -- - SetPackedColor - rx -}bdef - -/cy{ % ydist packedcolor cx -- - SetPackedColor - ry -}bdef - -% **** end image stuff ***** - - - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -45.50 10.00 45.50 249.00 MacLine -549.50 10.00 549.50 249.00 MacLine -1 ps -1.00 ps -549.50 249.50 542.50 249.50 MacLine -45.50 249.50 52.50 249.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(-2) 33.12 252.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 244.00 546.00 244.00 MacLine -grestore -1.00 ps -549.50 243.50 546.00 243.50 MacLine -45.50 243.50 49.00 243.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 238.00 546.00 238.00 MacLine -grestore -1.00 ps -549.50 237.50 546.00 237.50 MacLine -45.50 237.50 49.00 237.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 232.00 546.00 232.00 MacLine -grestore -1.00 ps -549.50 231.50 546.00 231.50 MacLine -45.50 231.50 49.00 231.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 226.00 546.00 226.00 MacLine -grestore -1.00 ps -549.50 225.50 546.00 225.50 MacLine -45.50 225.50 49.00 225.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 220.00 544.25 220.00 MacLine -grestore -1.00 ps -549.50 219.50 544.25 219.50 MacLine -45.50 219.50 50.75 219.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 214.00 546.00 214.00 MacLine -grestore -1.00 ps -549.50 213.50 546.00 213.50 MacLine -45.50 213.50 49.00 213.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 208.00 546.00 208.00 MacLine -grestore -1.00 ps -549.50 207.50 546.00 207.50 MacLine -45.50 207.50 49.00 207.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 202.00 546.00 202.00 MacLine -grestore -1.00 ps -549.50 201.50 546.00 201.50 MacLine -45.50 201.50 49.00 201.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 196.00 546.00 196.00 MacLine -grestore -1.00 ps -549.50 195.50 546.00 195.50 MacLine -45.50 195.50 49.00 195.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 189.88 542.50 189.88 MacLine -grestore -1.00 ps -549.50 189.50 542.50 189.50 MacLine -45.50 189.50 52.50 189.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-1) 33.12 192.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 184.00 546.00 184.00 MacLine -grestore -1.00 ps -549.50 183.50 546.00 183.50 MacLine -45.50 183.50 49.00 183.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 178.00 546.00 178.00 MacLine -grestore -1.00 ps -549.50 177.50 546.00 177.50 MacLine -45.50 177.50 49.00 177.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 172.00 546.00 172.00 MacLine -grestore -1.00 ps -549.50 171.50 546.00 171.50 MacLine -45.50 171.50 49.00 171.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 166.00 546.00 166.00 MacLine -grestore -1.00 ps -549.50 165.50 546.00 165.50 MacLine -45.50 165.50 49.00 165.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 160.00 544.25 160.00 MacLine -grestore -1.00 ps -549.50 159.50 544.25 159.50 MacLine -45.50 159.50 50.75 159.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 154.00 546.00 154.00 MacLine -grestore -1.00 ps -549.50 153.50 546.00 153.50 MacLine -45.50 153.50 49.00 153.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 148.00 546.00 148.00 MacLine -grestore -1.00 ps -549.50 147.50 546.00 147.50 MacLine -45.50 147.50 49.00 147.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 142.00 546.00 142.00 MacLine -grestore -1.00 ps -549.50 141.50 546.00 141.50 MacLine -45.50 141.50 49.00 141.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 136.00 546.00 136.00 MacLine -grestore -1.00 ps -549.50 135.50 546.00 135.50 MacLine -45.50 135.50 49.00 135.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 129.88 542.50 129.88 MacLine -grestore -1.00 ps -549.50 129.50 542.50 129.50 MacLine -45.50 129.50 52.50 129.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 36.50 132.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 124.00 546.00 124.00 MacLine -grestore -1.00 ps -549.50 123.50 546.00 123.50 MacLine -45.50 123.50 49.00 123.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 118.00 546.00 118.00 MacLine -grestore -1.00 ps -549.50 117.50 546.00 117.50 MacLine -45.50 117.50 49.00 117.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 112.00 546.00 112.00 MacLine -grestore -1.00 ps -549.50 111.50 546.00 111.50 MacLine -45.50 111.50 49.00 111.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 106.00 546.00 106.00 MacLine -grestore -1.00 ps -549.50 105.50 546.00 105.50 MacLine -45.50 105.50 49.00 105.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 100.00 544.25 100.00 MacLine -grestore -1.00 ps -549.50 99.50 544.25 99.50 MacLine -45.50 99.50 50.75 99.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 94.00 546.00 94.00 MacLine -grestore -1.00 ps -549.50 93.50 546.00 93.50 MacLine -45.50 93.50 49.00 93.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 88.00 546.00 88.00 MacLine -grestore -1.00 ps -549.50 87.50 546.00 87.50 MacLine -45.50 87.50 49.00 87.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 82.00 546.00 82.00 MacLine -grestore -1.00 ps -549.50 81.50 546.00 81.50 MacLine -45.50 81.50 49.00 81.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 76.00 546.00 76.00 MacLine -grestore -1.00 ps -549.50 75.50 546.00 75.50 MacLine -45.50 75.50 49.00 75.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 69.88 542.50 69.88 MacLine -grestore -1.00 ps -549.50 69.50 542.50 69.50 MacLine -45.50 69.50 52.50 69.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(1) 36.50 72.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 64.00 546.00 64.00 MacLine -grestore -1.00 ps -549.50 63.50 546.00 63.50 MacLine -45.50 63.50 49.00 63.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 58.00 546.00 58.00 MacLine -grestore -1.00 ps -549.50 57.50 546.00 57.50 MacLine -45.50 57.50 49.00 57.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 52.00 546.00 52.00 MacLine -grestore -1.00 ps -549.50 51.50 546.00 51.50 MacLine -45.50 51.50 49.00 51.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 46.00 546.00 46.00 MacLine -grestore -1.00 ps -549.50 45.50 546.00 45.50 MacLine -45.50 45.50 49.00 45.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 40.00 544.25 40.00 MacLine -grestore -1.00 ps -549.50 39.50 544.25 39.50 MacLine -45.50 39.50 50.75 39.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 34.00 546.00 34.00 MacLine -grestore -1.00 ps -549.50 33.50 546.00 33.50 MacLine -45.50 33.50 49.00 33.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 28.00 546.00 28.00 MacLine -grestore -1.00 ps -549.50 27.50 546.00 27.50 MacLine -45.50 27.50 49.00 27.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 22.00 546.00 22.00 MacLine -grestore -1.00 ps -549.50 21.50 546.00 21.50 MacLine -45.50 21.50 49.00 21.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 16.00 546.00 16.00 MacLine -grestore -1.00 ps -549.50 15.50 546.00 15.50 MacLine -45.50 15.50 49.00 15.50 MacLine -1 ps -1.00 ps -549.50 9.50 542.50 9.50 MacLine -45.50 9.50 52.50 9.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 36.50 12.75 5.50 WS -gsave 1.00 ps 46.50 130.00 549.50 130.00 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 148.12 translate -90 rotate -(y \(m\)) 0.00 0.00 36.38 WS -grestore -1.00 ps -46.00 249.50 549.00 249.50 MacLine -46.00 9.50 549.00 9.50 MacLine -1 ps -1.00 ps -45.50 9.50 45.50 16.50 MacLine -45.50 249.50 45.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-4) 41.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -52.25 246.00 52.25 13.00 MacLine -grestore -1.00 ps -51.75 9.50 51.75 13.00 MacLine -51.75 249.50 51.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -58.62 246.00 58.62 13.00 MacLine -grestore -1.00 ps -58.12 9.50 58.12 13.00 MacLine -58.12 249.50 58.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -64.88 246.00 64.88 13.00 MacLine -grestore -1.00 ps -64.38 9.50 64.38 13.00 MacLine -64.38 249.50 64.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -71.25 246.00 71.25 13.00 MacLine -grestore -1.00 ps -70.75 9.50 70.75 13.00 MacLine -70.75 249.50 70.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -77.50 244.25 77.50 14.75 MacLine -grestore -1.00 ps -77.00 9.50 77.00 14.75 MacLine -77.00 249.50 77.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -83.75 246.00 83.75 13.00 MacLine -grestore -1.00 ps -83.25 9.50 83.25 13.00 MacLine -83.25 249.50 83.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -90.12 246.00 90.12 13.00 MacLine -grestore -1.00 ps -89.62 9.50 89.62 13.00 MacLine -89.62 249.50 89.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -96.38 246.00 96.38 13.00 MacLine -grestore -1.00 ps -95.88 9.50 95.88 13.00 MacLine -95.88 249.50 95.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.75 246.00 102.75 13.00 MacLine -grestore -1.00 ps -102.25 9.50 102.25 13.00 MacLine -102.25 249.50 102.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -109.00 244.25 109.00 14.75 MacLine -grestore -1.00 ps -108.50 9.50 108.50 14.75 MacLine -108.50 249.50 108.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -115.25 246.00 115.25 13.00 MacLine -grestore -1.00 ps -114.75 9.50 114.75 13.00 MacLine -114.75 249.50 114.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -121.62 246.00 121.62 13.00 MacLine -grestore -1.00 ps -121.12 9.50 121.12 13.00 MacLine -121.12 249.50 121.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -127.88 246.00 127.88 13.00 MacLine -grestore -1.00 ps -127.38 9.50 127.38 13.00 MacLine -127.38 249.50 127.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -134.25 246.00 134.25 13.00 MacLine -grestore -1.00 ps -133.75 9.50 133.75 13.00 MacLine -133.75 249.50 133.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -140.50 244.25 140.50 14.75 MacLine -grestore -1.00 ps -140.00 9.50 140.00 14.75 MacLine -140.00 249.50 140.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -146.75 246.00 146.75 13.00 MacLine -grestore -1.00 ps -146.25 9.50 146.25 13.00 MacLine -146.25 249.50 146.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -153.12 246.00 153.12 13.00 MacLine -grestore -1.00 ps -152.62 9.50 152.62 13.00 MacLine -152.62 249.50 152.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.38 246.00 159.38 13.00 MacLine -grestore -1.00 ps -158.88 9.50 158.88 13.00 MacLine -158.88 249.50 158.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -165.75 246.00 165.75 13.00 MacLine -grestore -1.00 ps -165.25 9.50 165.25 13.00 MacLine -165.25 249.50 165.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -171.88 242.50 171.88 16.50 MacLine -grestore -1.00 ps -171.50 9.50 171.50 16.50 MacLine -171.50 249.50 171.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-2) 167.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -178.25 246.00 178.25 13.00 MacLine -grestore -1.00 ps -177.75 9.50 177.75 13.00 MacLine -177.75 249.50 177.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -184.62 246.00 184.62 13.00 MacLine -grestore -1.00 ps -184.12 9.50 184.12 13.00 MacLine -184.12 249.50 184.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -190.88 246.00 190.88 13.00 MacLine -grestore -1.00 ps -190.38 9.50 190.38 13.00 MacLine -190.38 249.50 190.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -197.25 246.00 197.25 13.00 MacLine -grestore -1.00 ps -196.75 9.50 196.75 13.00 MacLine -196.75 249.50 196.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -203.50 244.25 203.50 14.75 MacLine -grestore -1.00 ps -203.00 9.50 203.00 14.75 MacLine -203.00 249.50 203.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -209.75 246.00 209.75 13.00 MacLine -grestore -1.00 ps -209.25 9.50 209.25 13.00 MacLine -209.25 249.50 209.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -216.12 246.00 216.12 13.00 MacLine -grestore -1.00 ps -215.62 9.50 215.62 13.00 MacLine -215.62 249.50 215.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.38 246.00 222.38 13.00 MacLine -grestore -1.00 ps -221.88 9.50 221.88 13.00 MacLine -221.88 249.50 221.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -228.75 246.00 228.75 13.00 MacLine -grestore -1.00 ps -228.25 9.50 228.25 13.00 MacLine -228.25 249.50 228.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -235.00 244.25 235.00 14.75 MacLine -grestore -1.00 ps -234.50 9.50 234.50 14.75 MacLine -234.50 249.50 234.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -241.25 246.00 241.25 13.00 MacLine -grestore -1.00 ps -240.75 9.50 240.75 13.00 MacLine -240.75 249.50 240.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -247.62 246.00 247.62 13.00 MacLine -grestore -1.00 ps -247.12 9.50 247.12 13.00 MacLine -247.12 249.50 247.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -253.88 246.00 253.88 13.00 MacLine -grestore -1.00 ps -253.38 9.50 253.38 13.00 MacLine -253.38 249.50 253.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -260.25 246.00 260.25 13.00 MacLine -grestore -1.00 ps -259.75 9.50 259.75 13.00 MacLine -259.75 249.50 259.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.50 244.25 266.50 14.75 MacLine -grestore -1.00 ps -266.00 9.50 266.00 14.75 MacLine -266.00 249.50 266.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -272.75 246.00 272.75 13.00 MacLine -grestore -1.00 ps -272.25 9.50 272.25 13.00 MacLine -272.25 249.50 272.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -279.12 246.00 279.12 13.00 MacLine -grestore -1.00 ps -278.62 9.50 278.62 13.00 MacLine -278.62 249.50 278.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -285.38 246.00 285.38 13.00 MacLine -grestore -1.00 ps -284.88 9.50 284.88 13.00 MacLine -284.88 249.50 284.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -291.75 246.00 291.75 13.00 MacLine -grestore -1.00 ps -291.25 9.50 291.25 13.00 MacLine -291.25 249.50 291.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -297.88 242.50 297.88 16.50 MacLine -grestore -1.00 ps -297.50 9.50 297.50 16.50 MacLine -297.50 249.50 297.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 295.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -304.25 246.00 304.25 13.00 MacLine -grestore -1.00 ps -303.75 9.50 303.75 13.00 MacLine -303.75 249.50 303.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -310.62 246.00 310.62 13.00 MacLine -grestore -1.00 ps -310.12 9.50 310.12 13.00 MacLine -310.12 249.50 310.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.88 246.00 316.88 13.00 MacLine -grestore -1.00 ps -316.38 9.50 316.38 13.00 MacLine -316.38 249.50 316.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 246.00 323.25 13.00 MacLine -grestore -1.00 ps -322.75 9.50 322.75 13.00 MacLine -322.75 249.50 322.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -329.50 244.25 329.50 14.75 MacLine -grestore -1.00 ps -329.00 9.50 329.00 14.75 MacLine -329.00 249.50 329.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -335.75 246.00 335.75 13.00 MacLine -grestore -1.00 ps -335.25 9.50 335.25 13.00 MacLine -335.25 249.50 335.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.12 246.00 342.12 13.00 MacLine -grestore -1.00 ps -341.62 9.50 341.62 13.00 MacLine -341.62 249.50 341.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -348.38 246.00 348.38 13.00 MacLine -grestore -1.00 ps -347.88 9.50 347.88 13.00 MacLine -347.88 249.50 347.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -354.75 246.00 354.75 13.00 MacLine -grestore -1.00 ps -354.25 9.50 354.25 13.00 MacLine -354.25 249.50 354.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -361.00 244.25 361.00 14.75 MacLine -grestore -1.00 ps -360.50 9.50 360.50 14.75 MacLine -360.50 249.50 360.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -367.25 246.00 367.25 13.00 MacLine -grestore -1.00 ps -366.75 9.50 366.75 13.00 MacLine -366.75 249.50 366.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.62 246.00 373.62 13.00 MacLine -grestore -1.00 ps -373.12 9.50 373.12 13.00 MacLine -373.12 249.50 373.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -379.88 246.00 379.88 13.00 MacLine -grestore -1.00 ps -379.38 9.50 379.38 13.00 MacLine -379.38 249.50 379.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -386.25 246.00 386.25 13.00 MacLine -grestore -1.00 ps -385.75 9.50 385.75 13.00 MacLine -385.75 249.50 385.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.50 244.25 392.50 14.75 MacLine -grestore -1.00 ps -392.00 9.50 392.00 14.75 MacLine -392.00 249.50 392.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -398.75 246.00 398.75 13.00 MacLine -grestore -1.00 ps -398.25 9.50 398.25 13.00 MacLine -398.25 249.50 398.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -405.12 246.00 405.12 13.00 MacLine -grestore -1.00 ps -404.62 9.50 404.62 13.00 MacLine -404.62 249.50 404.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -411.38 246.00 411.38 13.00 MacLine -grestore -1.00 ps -410.88 9.50 410.88 13.00 MacLine -410.88 249.50 410.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -417.75 246.00 417.75 13.00 MacLine -grestore -1.00 ps -417.25 9.50 417.25 13.00 MacLine -417.25 249.50 417.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -423.88 242.50 423.88 16.50 MacLine -grestore -1.00 ps -423.50 9.50 423.50 16.50 MacLine -423.50 249.50 423.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 421.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -430.25 246.00 430.25 13.00 MacLine -grestore -1.00 ps -429.75 9.50 429.75 13.00 MacLine -429.75 249.50 429.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -436.62 246.00 436.62 13.00 MacLine -grestore -1.00 ps -436.12 9.50 436.12 13.00 MacLine -436.12 249.50 436.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.88 246.00 442.88 13.00 MacLine -grestore -1.00 ps -442.38 9.50 442.38 13.00 MacLine -442.38 249.50 442.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -449.25 246.00 449.25 13.00 MacLine -grestore -1.00 ps -448.75 9.50 448.75 13.00 MacLine -448.75 249.50 448.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -455.50 244.25 455.50 14.75 MacLine -grestore -1.00 ps -455.00 9.50 455.00 14.75 MacLine -455.00 249.50 455.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -461.75 246.00 461.75 13.00 MacLine -grestore -1.00 ps -461.25 9.50 461.25 13.00 MacLine -461.25 249.50 461.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -468.12 246.00 468.12 13.00 MacLine -grestore -1.00 ps -467.62 9.50 467.62 13.00 MacLine -467.62 249.50 467.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -474.38 246.00 474.38 13.00 MacLine -grestore -1.00 ps -473.88 9.50 473.88 13.00 MacLine -473.88 249.50 473.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.75 246.00 480.75 13.00 MacLine -grestore -1.00 ps -480.25 9.50 480.25 13.00 MacLine -480.25 249.50 480.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.00 244.25 487.00 14.75 MacLine -grestore -1.00 ps -486.50 9.50 486.50 14.75 MacLine -486.50 249.50 486.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -493.25 246.00 493.25 13.00 MacLine -grestore -1.00 ps -492.75 9.50 492.75 13.00 MacLine -492.75 249.50 492.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -499.62 246.00 499.62 13.00 MacLine -grestore -1.00 ps -499.12 9.50 499.12 13.00 MacLine -499.12 249.50 499.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -505.88 246.00 505.88 13.00 MacLine -grestore -1.00 ps -505.38 9.50 505.38 13.00 MacLine -505.38 249.50 505.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.25 246.00 512.25 13.00 MacLine -grestore -1.00 ps -511.75 9.50 511.75 13.00 MacLine -511.75 249.50 511.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -518.50 244.25 518.50 14.75 MacLine -grestore -1.00 ps -518.00 9.50 518.00 14.75 MacLine -518.00 249.50 518.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -524.75 246.00 524.75 13.00 MacLine -grestore -1.00 ps -524.25 9.50 524.25 13.00 MacLine -524.25 249.50 524.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -531.12 246.00 531.12 13.00 MacLine -grestore -1.00 ps -530.62 9.50 530.62 13.00 MacLine -530.62 249.50 530.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -537.38 246.00 537.38 13.00 MacLine -grestore -1.00 ps -536.88 9.50 536.88 13.00 MacLine -536.88 249.50 536.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -543.75 246.00 543.75 13.00 MacLine -grestore -1.00 ps -543.25 9.50 543.25 13.00 MacLine -543.25 249.50 543.25 246.00 MacLine -1 ps -1.00 ps -549.50 9.50 549.50 16.50 MacLine -549.50 249.50 549.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 547.25 262.25 5.50 WS -gsave 1.00 ps 298.00 249.50 298.00 10.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -(x \(m\)) 279.88 284.38 36.38 WS -0.50 ps -newpath 298.00 130.00 3.00 0 360 arc -0 StrokePath -296.62 128.62 299.50 131.50 2 CapLine -299.50 128.62 296.62 131.50 2 CapLine -newpath 312.00 106.88 3.00 0 360 arc -0 StrokePath -310.62 105.50 313.50 108.38 2 CapLine -313.50 105.50 310.62 108.38 2 CapLine -newpath 326.00 83.75 3.00 0 360 arc -0 StrokePath -324.62 82.38 327.50 85.25 2 CapLine -327.50 82.38 324.62 85.25 2 CapLine -newpath 340.00 60.62 3.00 0 360 arc -0 StrokePath -338.62 59.25 341.50 62.12 2 CapLine -341.50 59.25 338.62 62.12 2 CapLine -newpath 354.12 37.50 3.00 0 360 arc -0 StrokePath -352.75 36.12 355.62 39.00 2 CapLine -355.62 36.12 352.75 39.00 2 CapLine -newpath 368.12 14.38 3.00 0 360 arc -0 StrokePath -366.75 13.00 369.62 15.88 2 CapLine -369.62 13.00 366.75 15.88 2 CapLine -1 ps -0.50 ps -295.00 130.00 301.00 130.00 2 CapLine -298.00 127.00 298.00 133.00 2 CapLine -327.62 145.38 333.62 145.38 2 CapLine -330.62 142.38 330.62 148.38 2 CapLine -360.25 160.88 366.25 160.88 2 CapLine -363.25 157.88 363.25 163.88 2 CapLine -393.00 176.25 399.00 176.25 2 CapLine -396.00 173.25 396.00 179.25 2 CapLine -425.62 191.62 431.62 191.62 2 CapLine -428.62 188.62 428.62 194.62 2 CapLine -458.25 207.12 464.25 207.12 2 CapLine -461.25 204.12 461.25 210.12 2 CapLine -490.88 222.50 496.88 222.50 2 CapLine -493.88 219.50 493.88 225.50 2 CapLine -523.62 237.88 529.62 237.88 2 CapLine -526.62 234.88 526.62 240.88 2 CapLine -1 ps -0.50 ps -newpath 235.00 130.00 3.00 0 360 arc -0 StrokePath -233.62 128.62 236.50 131.50 2 CapLine -236.50 128.62 233.62 131.50 2 CapLine -newpath 172.00 130.00 3.00 0 360 arc -0 StrokePath -170.62 128.62 173.50 131.50 2 CapLine -173.50 128.62 170.62 131.50 2 CapLine -newpath 109.00 130.00 3.00 0 360 arc -0 StrokePath -107.62 128.62 110.50 131.50 2 CapLine -110.50 128.62 107.62 131.50 2 CapLine -newpath 46.00 130.00 3.00 0 360 arc -0 StrokePath -44.62 128.62 47.50 131.50 2 CapLine -47.50 128.62 44.62 131.50 2 CapLine -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av3.gif deleted file mode 100755 index 53b41c958..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av4.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av4.eps deleted file mode 100755 index 3d1c92b74..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av4.eps +++ /dev/null @@ -1,1449 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph3 -%%Creation Date: Thu, Oct 24, 1996 06:50 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/rx0 0 def /ry0 0 def /rx1 0 def /ry1 0 def -/tmp0 0 def /tmp1 0 def -/packedRed 0 def /packedGreen 0 def /packedBlue 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/setuserscreendict 22 dict def -setuserscreendict begin - -/tempctm matrix def -/temprot matrix def -/tempscale matrix def - -/concatprocs{ - /proc2 exch cvlit def - /proc1 exch cvlit def - /newproc proc1 length proc2 length add array def - newproc 0 proc1 putinterval - newproc proc1 length proc2 putinterval - newproc cvx -}def - -/resmatrix matrix def -/findresolution{ - 72 0 resmatrix defaultmatrix dtransform - /yres xdef /xres xdef - xres dup mul yres dup mul add sqrt -}def -end - -/setuserscreen{ - setuserscreendict begin - /spotfunction xdef - /screenangle xdef - /cellsize xdef - - /m tempctm currentmatrix def - /rm screenangle temprot rotate def - /sm cellsize dup tempscale scale def - - sm rm m m concatmatrix m concatmatrix pop - 1 0 m dtransform /y1 xdef /x1 xdef - /veclength x1 dup mul y1 dup mul add sqrt def - /frequency findresolution veclength div def - /newscreenangle y1 x1 atan def - m 2 get m 1 get mul m 0 get m 3 get mul sub 0 gt - { - { neg } /spotfunction load concatprocs - /spotfunction xdef - } if - frequency newscreenangle /spotfunction load setscreen - end -}def - -/setpatterndict 18 dict def -setpatterndict begin -/bitison{ - /ybit xdef /xbit xdef - /bytevalue bstring ybit bwidth mul xbit 8 idiv add get def - /mask 1 7 xbit 8 mod sub bitshift def - bytevalue mask and 0 ne -}def -end - -/bitpatternspotfunction{ - setpatterndict begin - /y xdef /x xdef - /xindex x 1 add 2 div bpside mul cvi def - /yindex y 1 add 2 div bpside mul cvi def - xindex yindex bitison - { /onbits onbits 1 add def 1 } - { /offbits offbits 1 add def 0 } - ifelse - end -}def - -/setpattern{ - setpatterndict begin - /cellsz xdef - /angle xdef - /bwidth xdef - /bpside xdef - /bstring xdef - - /onbits 0 def /offbits 0 def - cellsz angle /bitpatternspotfunction load setuserscreen - {} settransfer - offbits offbits onbits add div setgray - end -}def - -/FillPattern{ % patternstring -- - /pat xdef - gsave - pat 8 1 0 72 300 32 div div setpattern - fill - grestore -}def - - - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .5 sub round .5 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - - - - -% **** begin image stuff ***** -% The following are used for images. This has to be kept -% in synch with corresponding code in ImageDisp.c.In particular -% the expansion factor, 8, has to be in synch. -% packedcolor is (red*256+green)*256+blue - -/SetPackedColor{ % packedcolor SetPackedColor -- - dup 256 mod /tmp0 xdef % extract blue - 256 idiv - dup 256 mod /tmp1 xdef % extract green - 256 idiv % extract red - 255 div /packedRed xdef - tmp1 255 div /packedGreen xdef - tmp0 255 div /packedBlue xdef -}bdef - -/IR_FillRect{ - gsave - newpath - rx0 ry0 M - rx1 ry0 L - rx1 ry1 L - rx0 ry1 L - closepath - packedRed packedGreen packedBlue setrgbcolor - fill - grestore -}bdef - -/NewRectImageLine{ % x0 y0 x1 y1 packedcolor NewRectImageLine -- - SetPackedColor - - /ry1 xdef /rx1 xdef /ry0 xdef /rx0 xdef % remember starting rectange for following calls - - IR_FillRect -}bdef - -/rx{ % xdist rx -- - 8 div - dup 0 lt - { rx0 /rx1 xdef rx1 add /rx0 xdef } % neg delta steps left - { rx1 /rx0 xdef rx0 add /rx1 xdef } - ifelse - IR_FillRect -}bdef - -/ry{ % ydist rr -- - 8 div - dup 0 lt - { ry1 /ry0 xdef ry0 exch sub /ry1 xdef } % neg delta steps down - { ry0 /ry1 xdef ry1 exch sub /ry0 xdef } - ifelse - IR_FillRect -}bdef - - -/cx{ % xdist packedcolor cx -- - SetPackedColor - rx -}bdef - -/cy{ % ydist packedcolor cx -- - SetPackedColor - ry -}bdef - -% **** end image stuff ***** - - - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -45.50 10.00 45.50 249.00 MacLine -549.50 10.00 549.50 249.00 MacLine -1 ps -1.00 ps -549.50 249.50 542.50 249.50 MacLine -45.50 249.50 52.50 249.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(-2) 33.12 252.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 244.00 546.00 244.00 MacLine -grestore -1.00 ps -549.50 243.50 546.00 243.50 MacLine -45.50 243.50 49.00 243.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 238.00 546.00 238.00 MacLine -grestore -1.00 ps -549.50 237.50 546.00 237.50 MacLine -45.50 237.50 49.00 237.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 232.00 546.00 232.00 MacLine -grestore -1.00 ps -549.50 231.50 546.00 231.50 MacLine -45.50 231.50 49.00 231.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 226.00 546.00 226.00 MacLine -grestore -1.00 ps -549.50 225.50 546.00 225.50 MacLine -45.50 225.50 49.00 225.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 220.00 544.25 220.00 MacLine -grestore -1.00 ps -549.50 219.50 544.25 219.50 MacLine -45.50 219.50 50.75 219.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 214.00 546.00 214.00 MacLine -grestore -1.00 ps -549.50 213.50 546.00 213.50 MacLine -45.50 213.50 49.00 213.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 208.00 546.00 208.00 MacLine -grestore -1.00 ps -549.50 207.50 546.00 207.50 MacLine -45.50 207.50 49.00 207.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 202.00 546.00 202.00 MacLine -grestore -1.00 ps -549.50 201.50 546.00 201.50 MacLine -45.50 201.50 49.00 201.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 196.00 546.00 196.00 MacLine -grestore -1.00 ps -549.50 195.50 546.00 195.50 MacLine -45.50 195.50 49.00 195.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 189.88 542.50 189.88 MacLine -grestore -1.00 ps -549.50 189.50 542.50 189.50 MacLine -45.50 189.50 52.50 189.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-1) 33.12 192.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 184.00 546.00 184.00 MacLine -grestore -1.00 ps -549.50 183.50 546.00 183.50 MacLine -45.50 183.50 49.00 183.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 178.00 546.00 178.00 MacLine -grestore -1.00 ps -549.50 177.50 546.00 177.50 MacLine -45.50 177.50 49.00 177.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 172.00 546.00 172.00 MacLine -grestore -1.00 ps -549.50 171.50 546.00 171.50 MacLine -45.50 171.50 49.00 171.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 166.00 546.00 166.00 MacLine -grestore -1.00 ps -549.50 165.50 546.00 165.50 MacLine -45.50 165.50 49.00 165.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 160.00 544.25 160.00 MacLine -grestore -1.00 ps -549.50 159.50 544.25 159.50 MacLine -45.50 159.50 50.75 159.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 154.00 546.00 154.00 MacLine -grestore -1.00 ps -549.50 153.50 546.00 153.50 MacLine -45.50 153.50 49.00 153.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 148.00 546.00 148.00 MacLine -grestore -1.00 ps -549.50 147.50 546.00 147.50 MacLine -45.50 147.50 49.00 147.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 142.00 546.00 142.00 MacLine -grestore -1.00 ps -549.50 141.50 546.00 141.50 MacLine -45.50 141.50 49.00 141.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 136.00 546.00 136.00 MacLine -grestore -1.00 ps -549.50 135.50 546.00 135.50 MacLine -45.50 135.50 49.00 135.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 129.88 542.50 129.88 MacLine -grestore -1.00 ps -549.50 129.50 542.50 129.50 MacLine -45.50 129.50 52.50 129.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 36.50 132.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 124.00 546.00 124.00 MacLine -grestore -1.00 ps -549.50 123.50 546.00 123.50 MacLine -45.50 123.50 49.00 123.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 118.00 546.00 118.00 MacLine -grestore -1.00 ps -549.50 117.50 546.00 117.50 MacLine -45.50 117.50 49.00 117.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 112.00 546.00 112.00 MacLine -grestore -1.00 ps -549.50 111.50 546.00 111.50 MacLine -45.50 111.50 49.00 111.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 106.00 546.00 106.00 MacLine -grestore -1.00 ps -549.50 105.50 546.00 105.50 MacLine -45.50 105.50 49.00 105.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 100.00 544.25 100.00 MacLine -grestore -1.00 ps -549.50 99.50 544.25 99.50 MacLine -45.50 99.50 50.75 99.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 94.00 546.00 94.00 MacLine -grestore -1.00 ps -549.50 93.50 546.00 93.50 MacLine -45.50 93.50 49.00 93.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 88.00 546.00 88.00 MacLine -grestore -1.00 ps -549.50 87.50 546.00 87.50 MacLine -45.50 87.50 49.00 87.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 82.00 546.00 82.00 MacLine -grestore -1.00 ps -549.50 81.50 546.00 81.50 MacLine -45.50 81.50 49.00 81.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 76.00 546.00 76.00 MacLine -grestore -1.00 ps -549.50 75.50 546.00 75.50 MacLine -45.50 75.50 49.00 75.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 69.88 542.50 69.88 MacLine -grestore -1.00 ps -549.50 69.50 542.50 69.50 MacLine -45.50 69.50 52.50 69.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(1) 36.50 72.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 64.00 546.00 64.00 MacLine -grestore -1.00 ps -549.50 63.50 546.00 63.50 MacLine -45.50 63.50 49.00 63.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 58.00 546.00 58.00 MacLine -grestore -1.00 ps -549.50 57.50 546.00 57.50 MacLine -45.50 57.50 49.00 57.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 52.00 546.00 52.00 MacLine -grestore -1.00 ps -549.50 51.50 546.00 51.50 MacLine -45.50 51.50 49.00 51.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 46.00 546.00 46.00 MacLine -grestore -1.00 ps -549.50 45.50 546.00 45.50 MacLine -45.50 45.50 49.00 45.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 40.00 544.25 40.00 MacLine -grestore -1.00 ps -549.50 39.50 544.25 39.50 MacLine -45.50 39.50 50.75 39.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 34.00 546.00 34.00 MacLine -grestore -1.00 ps -549.50 33.50 546.00 33.50 MacLine -45.50 33.50 49.00 33.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 28.00 546.00 28.00 MacLine -grestore -1.00 ps -549.50 27.50 546.00 27.50 MacLine -45.50 27.50 49.00 27.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 22.00 546.00 22.00 MacLine -grestore -1.00 ps -549.50 21.50 546.00 21.50 MacLine -45.50 21.50 49.00 21.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 16.00 546.00 16.00 MacLine -grestore -1.00 ps -549.50 15.50 546.00 15.50 MacLine -45.50 15.50 49.00 15.50 MacLine -1 ps -1.00 ps -549.50 9.50 542.50 9.50 MacLine -45.50 9.50 52.50 9.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 36.50 12.75 5.50 WS -gsave 1.00 ps 46.50 130.00 549.50 130.00 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 148.12 translate -90 rotate -(y \(m\)) 0.00 0.00 36.38 WS -grestore -1.00 ps -46.00 249.50 549.00 249.50 MacLine -46.00 9.50 549.00 9.50 MacLine -1 ps -1.00 ps -45.50 9.50 45.50 16.50 MacLine -45.50 249.50 45.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-4) 41.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -52.25 246.00 52.25 13.00 MacLine -grestore -1.00 ps -51.75 9.50 51.75 13.00 MacLine -51.75 249.50 51.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -58.62 246.00 58.62 13.00 MacLine -grestore -1.00 ps -58.12 9.50 58.12 13.00 MacLine -58.12 249.50 58.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -64.88 246.00 64.88 13.00 MacLine -grestore -1.00 ps -64.38 9.50 64.38 13.00 MacLine -64.38 249.50 64.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -71.25 246.00 71.25 13.00 MacLine -grestore -1.00 ps -70.75 9.50 70.75 13.00 MacLine -70.75 249.50 70.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -77.50 244.25 77.50 14.75 MacLine -grestore -1.00 ps -77.00 9.50 77.00 14.75 MacLine -77.00 249.50 77.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -83.75 246.00 83.75 13.00 MacLine -grestore -1.00 ps -83.25 9.50 83.25 13.00 MacLine -83.25 249.50 83.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -90.12 246.00 90.12 13.00 MacLine -grestore -1.00 ps -89.62 9.50 89.62 13.00 MacLine -89.62 249.50 89.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -96.38 246.00 96.38 13.00 MacLine -grestore -1.00 ps -95.88 9.50 95.88 13.00 MacLine -95.88 249.50 95.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.75 246.00 102.75 13.00 MacLine -grestore -1.00 ps -102.25 9.50 102.25 13.00 MacLine -102.25 249.50 102.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -109.00 244.25 109.00 14.75 MacLine -grestore -1.00 ps -108.50 9.50 108.50 14.75 MacLine -108.50 249.50 108.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -115.25 246.00 115.25 13.00 MacLine -grestore -1.00 ps -114.75 9.50 114.75 13.00 MacLine -114.75 249.50 114.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -121.62 246.00 121.62 13.00 MacLine -grestore -1.00 ps -121.12 9.50 121.12 13.00 MacLine -121.12 249.50 121.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -127.88 246.00 127.88 13.00 MacLine -grestore -1.00 ps -127.38 9.50 127.38 13.00 MacLine -127.38 249.50 127.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -134.25 246.00 134.25 13.00 MacLine -grestore -1.00 ps -133.75 9.50 133.75 13.00 MacLine -133.75 249.50 133.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -140.50 244.25 140.50 14.75 MacLine -grestore -1.00 ps -140.00 9.50 140.00 14.75 MacLine -140.00 249.50 140.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -146.75 246.00 146.75 13.00 MacLine -grestore -1.00 ps -146.25 9.50 146.25 13.00 MacLine -146.25 249.50 146.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -153.12 246.00 153.12 13.00 MacLine -grestore -1.00 ps -152.62 9.50 152.62 13.00 MacLine -152.62 249.50 152.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.38 246.00 159.38 13.00 MacLine -grestore -1.00 ps -158.88 9.50 158.88 13.00 MacLine -158.88 249.50 158.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -165.75 246.00 165.75 13.00 MacLine -grestore -1.00 ps -165.25 9.50 165.25 13.00 MacLine -165.25 249.50 165.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -171.88 242.50 171.88 16.50 MacLine -grestore -1.00 ps -171.50 9.50 171.50 16.50 MacLine -171.50 249.50 171.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-2) 167.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -178.25 246.00 178.25 13.00 MacLine -grestore -1.00 ps -177.75 9.50 177.75 13.00 MacLine -177.75 249.50 177.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -184.62 246.00 184.62 13.00 MacLine -grestore -1.00 ps -184.12 9.50 184.12 13.00 MacLine -184.12 249.50 184.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -190.88 246.00 190.88 13.00 MacLine -grestore -1.00 ps -190.38 9.50 190.38 13.00 MacLine -190.38 249.50 190.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -197.25 246.00 197.25 13.00 MacLine -grestore -1.00 ps -196.75 9.50 196.75 13.00 MacLine -196.75 249.50 196.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -203.50 244.25 203.50 14.75 MacLine -grestore -1.00 ps -203.00 9.50 203.00 14.75 MacLine -203.00 249.50 203.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -209.75 246.00 209.75 13.00 MacLine -grestore -1.00 ps -209.25 9.50 209.25 13.00 MacLine -209.25 249.50 209.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -216.12 246.00 216.12 13.00 MacLine -grestore -1.00 ps -215.62 9.50 215.62 13.00 MacLine -215.62 249.50 215.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.38 246.00 222.38 13.00 MacLine -grestore -1.00 ps -221.88 9.50 221.88 13.00 MacLine -221.88 249.50 221.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -228.75 246.00 228.75 13.00 MacLine -grestore -1.00 ps -228.25 9.50 228.25 13.00 MacLine -228.25 249.50 228.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -235.00 244.25 235.00 14.75 MacLine -grestore -1.00 ps -234.50 9.50 234.50 14.75 MacLine -234.50 249.50 234.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -241.25 246.00 241.25 13.00 MacLine -grestore -1.00 ps -240.75 9.50 240.75 13.00 MacLine -240.75 249.50 240.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -247.62 246.00 247.62 13.00 MacLine -grestore -1.00 ps -247.12 9.50 247.12 13.00 MacLine -247.12 249.50 247.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -253.88 246.00 253.88 13.00 MacLine -grestore -1.00 ps -253.38 9.50 253.38 13.00 MacLine -253.38 249.50 253.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -260.25 246.00 260.25 13.00 MacLine -grestore -1.00 ps -259.75 9.50 259.75 13.00 MacLine -259.75 249.50 259.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.50 244.25 266.50 14.75 MacLine -grestore -1.00 ps -266.00 9.50 266.00 14.75 MacLine -266.00 249.50 266.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -272.75 246.00 272.75 13.00 MacLine -grestore -1.00 ps -272.25 9.50 272.25 13.00 MacLine -272.25 249.50 272.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -279.12 246.00 279.12 13.00 MacLine -grestore -1.00 ps -278.62 9.50 278.62 13.00 MacLine -278.62 249.50 278.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -285.38 246.00 285.38 13.00 MacLine -grestore -1.00 ps -284.88 9.50 284.88 13.00 MacLine -284.88 249.50 284.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -291.75 246.00 291.75 13.00 MacLine -grestore -1.00 ps -291.25 9.50 291.25 13.00 MacLine -291.25 249.50 291.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -297.88 242.50 297.88 16.50 MacLine -grestore -1.00 ps -297.50 9.50 297.50 16.50 MacLine -297.50 249.50 297.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 295.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -304.25 246.00 304.25 13.00 MacLine -grestore -1.00 ps -303.75 9.50 303.75 13.00 MacLine -303.75 249.50 303.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -310.62 246.00 310.62 13.00 MacLine -grestore -1.00 ps -310.12 9.50 310.12 13.00 MacLine -310.12 249.50 310.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.88 246.00 316.88 13.00 MacLine -grestore -1.00 ps -316.38 9.50 316.38 13.00 MacLine -316.38 249.50 316.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 246.00 323.25 13.00 MacLine -grestore -1.00 ps -322.75 9.50 322.75 13.00 MacLine -322.75 249.50 322.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -329.50 244.25 329.50 14.75 MacLine -grestore -1.00 ps -329.00 9.50 329.00 14.75 MacLine -329.00 249.50 329.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -335.75 246.00 335.75 13.00 MacLine -grestore -1.00 ps -335.25 9.50 335.25 13.00 MacLine -335.25 249.50 335.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.12 246.00 342.12 13.00 MacLine -grestore -1.00 ps -341.62 9.50 341.62 13.00 MacLine -341.62 249.50 341.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -348.38 246.00 348.38 13.00 MacLine -grestore -1.00 ps -347.88 9.50 347.88 13.00 MacLine -347.88 249.50 347.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -354.75 246.00 354.75 13.00 MacLine -grestore -1.00 ps -354.25 9.50 354.25 13.00 MacLine -354.25 249.50 354.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -361.00 244.25 361.00 14.75 MacLine -grestore -1.00 ps -360.50 9.50 360.50 14.75 MacLine -360.50 249.50 360.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -367.25 246.00 367.25 13.00 MacLine -grestore -1.00 ps -366.75 9.50 366.75 13.00 MacLine -366.75 249.50 366.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.62 246.00 373.62 13.00 MacLine -grestore -1.00 ps -373.12 9.50 373.12 13.00 MacLine -373.12 249.50 373.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -379.88 246.00 379.88 13.00 MacLine -grestore -1.00 ps -379.38 9.50 379.38 13.00 MacLine -379.38 249.50 379.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -386.25 246.00 386.25 13.00 MacLine -grestore -1.00 ps -385.75 9.50 385.75 13.00 MacLine -385.75 249.50 385.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.50 244.25 392.50 14.75 MacLine -grestore -1.00 ps -392.00 9.50 392.00 14.75 MacLine -392.00 249.50 392.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -398.75 246.00 398.75 13.00 MacLine -grestore -1.00 ps -398.25 9.50 398.25 13.00 MacLine -398.25 249.50 398.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -405.12 246.00 405.12 13.00 MacLine -grestore -1.00 ps -404.62 9.50 404.62 13.00 MacLine -404.62 249.50 404.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -411.38 246.00 411.38 13.00 MacLine -grestore -1.00 ps -410.88 9.50 410.88 13.00 MacLine -410.88 249.50 410.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -417.75 246.00 417.75 13.00 MacLine -grestore -1.00 ps -417.25 9.50 417.25 13.00 MacLine -417.25 249.50 417.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -423.88 242.50 423.88 16.50 MacLine -grestore -1.00 ps -423.50 9.50 423.50 16.50 MacLine -423.50 249.50 423.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 421.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -430.25 246.00 430.25 13.00 MacLine -grestore -1.00 ps -429.75 9.50 429.75 13.00 MacLine -429.75 249.50 429.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -436.62 246.00 436.62 13.00 MacLine -grestore -1.00 ps -436.12 9.50 436.12 13.00 MacLine -436.12 249.50 436.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.88 246.00 442.88 13.00 MacLine -grestore -1.00 ps -442.38 9.50 442.38 13.00 MacLine -442.38 249.50 442.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -449.25 246.00 449.25 13.00 MacLine -grestore -1.00 ps -448.75 9.50 448.75 13.00 MacLine -448.75 249.50 448.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -455.50 244.25 455.50 14.75 MacLine -grestore -1.00 ps -455.00 9.50 455.00 14.75 MacLine -455.00 249.50 455.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -461.75 246.00 461.75 13.00 MacLine -grestore -1.00 ps -461.25 9.50 461.25 13.00 MacLine -461.25 249.50 461.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -468.12 246.00 468.12 13.00 MacLine -grestore -1.00 ps -467.62 9.50 467.62 13.00 MacLine -467.62 249.50 467.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -474.38 246.00 474.38 13.00 MacLine -grestore -1.00 ps -473.88 9.50 473.88 13.00 MacLine -473.88 249.50 473.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.75 246.00 480.75 13.00 MacLine -grestore -1.00 ps -480.25 9.50 480.25 13.00 MacLine -480.25 249.50 480.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.00 244.25 487.00 14.75 MacLine -grestore -1.00 ps -486.50 9.50 486.50 14.75 MacLine -486.50 249.50 486.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -493.25 246.00 493.25 13.00 MacLine -grestore -1.00 ps -492.75 9.50 492.75 13.00 MacLine -492.75 249.50 492.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -499.62 246.00 499.62 13.00 MacLine -grestore -1.00 ps -499.12 9.50 499.12 13.00 MacLine -499.12 249.50 499.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -505.88 246.00 505.88 13.00 MacLine -grestore -1.00 ps -505.38 9.50 505.38 13.00 MacLine -505.38 249.50 505.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.25 246.00 512.25 13.00 MacLine -grestore -1.00 ps -511.75 9.50 511.75 13.00 MacLine -511.75 249.50 511.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -518.50 244.25 518.50 14.75 MacLine -grestore -1.00 ps -518.00 9.50 518.00 14.75 MacLine -518.00 249.50 518.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -524.75 246.00 524.75 13.00 MacLine -grestore -1.00 ps -524.25 9.50 524.25 13.00 MacLine -524.25 249.50 524.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -531.12 246.00 531.12 13.00 MacLine -grestore -1.00 ps -530.62 9.50 530.62 13.00 MacLine -530.62 249.50 530.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -537.38 246.00 537.38 13.00 MacLine -grestore -1.00 ps -536.88 9.50 536.88 13.00 MacLine -536.88 249.50 536.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -543.75 246.00 543.75 13.00 MacLine -grestore -1.00 ps -543.25 9.50 543.25 13.00 MacLine -543.25 249.50 543.25 246.00 MacLine -1 ps -1.00 ps -549.50 9.50 549.50 16.50 MacLine -549.50 249.50 549.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 547.25 262.25 5.50 WS -gsave 1.00 ps 298.00 249.50 298.00 10.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -(x \(m\)) 279.88 284.38 36.38 WS -0.50 ps -newpath 298.00 130.00 3.00 0 360 arc -0 StrokePath -296.62 128.62 299.50 131.50 2 CapLine -299.50 128.62 296.62 131.50 2 CapLine -newpath 330.00 99.50 3.00 0 360 arc -0 StrokePath -328.62 98.12 331.50 101.00 2 CapLine -331.50 98.12 328.62 101.00 2 CapLine -newpath 362.00 69.12 3.00 0 360 arc -0 StrokePath -360.62 67.75 363.50 70.62 2 CapLine -363.50 67.75 360.62 70.62 2 CapLine -newpath 394.00 38.62 3.00 0 360 arc -0 StrokePath -392.62 37.25 395.50 40.12 2 CapLine -395.50 37.25 392.62 40.12 2 CapLine -1 ps -0.50 ps -295.00 130.00 301.00 130.00 2 CapLine -298.00 127.00 298.00 133.00 2 CapLine -318.88 153.38 324.88 153.38 2 CapLine -321.88 150.38 321.88 156.38 2 CapLine -342.75 176.88 348.75 176.88 2 CapLine -345.75 173.88 345.75 179.88 2 CapLine -366.62 200.25 372.62 200.25 2 CapLine -369.62 197.25 369.62 203.25 2 CapLine -390.50 223.75 396.50 223.75 2 CapLine -393.50 220.75 393.50 226.75 2 CapLine -414.25 247.12 420.25 247.12 2 CapLine -417.25 244.12 417.25 250.12 2 CapLine -1 ps -0.50 ps -newpath 235.00 130.00 3.00 0 360 arc -0 StrokePath -233.62 128.62 236.50 131.50 2 CapLine -236.50 128.62 233.62 131.50 2 CapLine -newpath 172.00 130.00 3.00 0 360 arc -0 StrokePath -170.62 128.62 173.50 131.50 2 CapLine -173.50 128.62 170.62 131.50 2 CapLine -newpath 109.00 130.00 3.00 0 360 arc -0 StrokePath -107.62 128.62 110.50 131.50 2 CapLine -110.50 128.62 107.62 131.50 2 CapLine -newpath 46.00 130.00 3.00 0 360 arc -0 StrokePath -44.62 128.62 47.50 131.50 2 CapLine -47.50 128.62 44.62 131.50 2 CapLine -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av4.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av4.gif deleted file mode 100755 index 76c9f44b1..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av4.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av5.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av5.eps deleted file mode 100755 index 39f69845d..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av5.eps +++ /dev/null @@ -1,1453 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph4 -%%Creation Date: Thu, Oct 24, 1996 06:50 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/rx0 0 def /ry0 0 def /rx1 0 def /ry1 0 def -/tmp0 0 def /tmp1 0 def -/packedRed 0 def /packedGreen 0 def /packedBlue 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/setuserscreendict 22 dict def -setuserscreendict begin - -/tempctm matrix def -/temprot matrix def -/tempscale matrix def - -/concatprocs{ - /proc2 exch cvlit def - /proc1 exch cvlit def - /newproc proc1 length proc2 length add array def - newproc 0 proc1 putinterval - newproc proc1 length proc2 putinterval - newproc cvx -}def - -/resmatrix matrix def -/findresolution{ - 72 0 resmatrix defaultmatrix dtransform - /yres xdef /xres xdef - xres dup mul yres dup mul add sqrt -}def -end - -/setuserscreen{ - setuserscreendict begin - /spotfunction xdef - /screenangle xdef - /cellsize xdef - - /m tempctm currentmatrix def - /rm screenangle temprot rotate def - /sm cellsize dup tempscale scale def - - sm rm m m concatmatrix m concatmatrix pop - 1 0 m dtransform /y1 xdef /x1 xdef - /veclength x1 dup mul y1 dup mul add sqrt def - /frequency findresolution veclength div def - /newscreenangle y1 x1 atan def - m 2 get m 1 get mul m 0 get m 3 get mul sub 0 gt - { - { neg } /spotfunction load concatprocs - /spotfunction xdef - } if - frequency newscreenangle /spotfunction load setscreen - end -}def - -/setpatterndict 18 dict def -setpatterndict begin -/bitison{ - /ybit xdef /xbit xdef - /bytevalue bstring ybit bwidth mul xbit 8 idiv add get def - /mask 1 7 xbit 8 mod sub bitshift def - bytevalue mask and 0 ne -}def -end - -/bitpatternspotfunction{ - setpatterndict begin - /y xdef /x xdef - /xindex x 1 add 2 div bpside mul cvi def - /yindex y 1 add 2 div bpside mul cvi def - xindex yindex bitison - { /onbits onbits 1 add def 1 } - { /offbits offbits 1 add def 0 } - ifelse - end -}def - -/setpattern{ - setpatterndict begin - /cellsz xdef - /angle xdef - /bwidth xdef - /bpside xdef - /bstring xdef - - /onbits 0 def /offbits 0 def - cellsz angle /bitpatternspotfunction load setuserscreen - {} settransfer - offbits offbits onbits add div setgray - end -}def - -/FillPattern{ % patternstring -- - /pat xdef - gsave - pat 8 1 0 72 300 32 div div setpattern - fill - grestore -}def - - - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .5 sub round .5 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - - - - -% **** begin image stuff ***** -% The following are used for images. This has to be kept -% in synch with corresponding code in ImageDisp.c.In particular -% the expansion factor, 8, has to be in synch. -% packedcolor is (red*256+green)*256+blue - -/SetPackedColor{ % packedcolor SetPackedColor -- - dup 256 mod /tmp0 xdef % extract blue - 256 idiv - dup 256 mod /tmp1 xdef % extract green - 256 idiv % extract red - 255 div /packedRed xdef - tmp1 255 div /packedGreen xdef - tmp0 255 div /packedBlue xdef -}bdef - -/IR_FillRect{ - gsave - newpath - rx0 ry0 M - rx1 ry0 L - rx1 ry1 L - rx0 ry1 L - closepath - packedRed packedGreen packedBlue setrgbcolor - fill - grestore -}bdef - -/NewRectImageLine{ % x0 y0 x1 y1 packedcolor NewRectImageLine -- - SetPackedColor - - /ry1 xdef /rx1 xdef /ry0 xdef /rx0 xdef % remember starting rectange for following calls - - IR_FillRect -}bdef - -/rx{ % xdist rx -- - 8 div - dup 0 lt - { rx0 /rx1 xdef rx1 add /rx0 xdef } % neg delta steps left - { rx1 /rx0 xdef rx0 add /rx1 xdef } - ifelse - IR_FillRect -}bdef - -/ry{ % ydist rr -- - 8 div - dup 0 lt - { ry1 /ry0 xdef ry0 exch sub /ry1 xdef } % neg delta steps down - { ry0 /ry1 xdef ry1 exch sub /ry0 xdef } - ifelse - IR_FillRect -}bdef - - -/cx{ % xdist packedcolor cx -- - SetPackedColor - rx -}bdef - -/cy{ % ydist packedcolor cx -- - SetPackedColor - ry -}bdef - -% **** end image stuff ***** - - - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -45.50 10.00 45.50 249.00 MacLine -549.50 10.00 549.50 249.00 MacLine -1 ps -1.00 ps -549.50 249.50 542.50 249.50 MacLine -45.50 249.50 52.50 249.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(-2) 33.12 252.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 244.00 546.00 244.00 MacLine -grestore -1.00 ps -549.50 243.50 546.00 243.50 MacLine -45.50 243.50 49.00 243.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 238.00 546.00 238.00 MacLine -grestore -1.00 ps -549.50 237.50 546.00 237.50 MacLine -45.50 237.50 49.00 237.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 232.00 546.00 232.00 MacLine -grestore -1.00 ps -549.50 231.50 546.00 231.50 MacLine -45.50 231.50 49.00 231.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 226.00 546.00 226.00 MacLine -grestore -1.00 ps -549.50 225.50 546.00 225.50 MacLine -45.50 225.50 49.00 225.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 220.00 544.25 220.00 MacLine -grestore -1.00 ps -549.50 219.50 544.25 219.50 MacLine -45.50 219.50 50.75 219.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 214.00 546.00 214.00 MacLine -grestore -1.00 ps -549.50 213.50 546.00 213.50 MacLine -45.50 213.50 49.00 213.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 208.00 546.00 208.00 MacLine -grestore -1.00 ps -549.50 207.50 546.00 207.50 MacLine -45.50 207.50 49.00 207.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 202.00 546.00 202.00 MacLine -grestore -1.00 ps -549.50 201.50 546.00 201.50 MacLine -45.50 201.50 49.00 201.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 196.00 546.00 196.00 MacLine -grestore -1.00 ps -549.50 195.50 546.00 195.50 MacLine -45.50 195.50 49.00 195.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 189.88 542.50 189.88 MacLine -grestore -1.00 ps -549.50 189.50 542.50 189.50 MacLine -45.50 189.50 52.50 189.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-1) 33.12 192.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 184.00 546.00 184.00 MacLine -grestore -1.00 ps -549.50 183.50 546.00 183.50 MacLine -45.50 183.50 49.00 183.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 178.00 546.00 178.00 MacLine -grestore -1.00 ps -549.50 177.50 546.00 177.50 MacLine -45.50 177.50 49.00 177.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 172.00 546.00 172.00 MacLine -grestore -1.00 ps -549.50 171.50 546.00 171.50 MacLine -45.50 171.50 49.00 171.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 166.00 546.00 166.00 MacLine -grestore -1.00 ps -549.50 165.50 546.00 165.50 MacLine -45.50 165.50 49.00 165.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 160.00 544.25 160.00 MacLine -grestore -1.00 ps -549.50 159.50 544.25 159.50 MacLine -45.50 159.50 50.75 159.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 154.00 546.00 154.00 MacLine -grestore -1.00 ps -549.50 153.50 546.00 153.50 MacLine -45.50 153.50 49.00 153.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 148.00 546.00 148.00 MacLine -grestore -1.00 ps -549.50 147.50 546.00 147.50 MacLine -45.50 147.50 49.00 147.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 142.00 546.00 142.00 MacLine -grestore -1.00 ps -549.50 141.50 546.00 141.50 MacLine -45.50 141.50 49.00 141.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 136.00 546.00 136.00 MacLine -grestore -1.00 ps -549.50 135.50 546.00 135.50 MacLine -45.50 135.50 49.00 135.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 129.88 542.50 129.88 MacLine -grestore -1.00 ps -549.50 129.50 542.50 129.50 MacLine -45.50 129.50 52.50 129.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 36.50 132.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 124.00 546.00 124.00 MacLine -grestore -1.00 ps -549.50 123.50 546.00 123.50 MacLine -45.50 123.50 49.00 123.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 118.00 546.00 118.00 MacLine -grestore -1.00 ps -549.50 117.50 546.00 117.50 MacLine -45.50 117.50 49.00 117.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 112.00 546.00 112.00 MacLine -grestore -1.00 ps -549.50 111.50 546.00 111.50 MacLine -45.50 111.50 49.00 111.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 106.00 546.00 106.00 MacLine -grestore -1.00 ps -549.50 105.50 546.00 105.50 MacLine -45.50 105.50 49.00 105.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 100.00 544.25 100.00 MacLine -grestore -1.00 ps -549.50 99.50 544.25 99.50 MacLine -45.50 99.50 50.75 99.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 94.00 546.00 94.00 MacLine -grestore -1.00 ps -549.50 93.50 546.00 93.50 MacLine -45.50 93.50 49.00 93.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 88.00 546.00 88.00 MacLine -grestore -1.00 ps -549.50 87.50 546.00 87.50 MacLine -45.50 87.50 49.00 87.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 82.00 546.00 82.00 MacLine -grestore -1.00 ps -549.50 81.50 546.00 81.50 MacLine -45.50 81.50 49.00 81.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 76.00 546.00 76.00 MacLine -grestore -1.00 ps -549.50 75.50 546.00 75.50 MacLine -45.50 75.50 49.00 75.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 69.88 542.50 69.88 MacLine -grestore -1.00 ps -549.50 69.50 542.50 69.50 MacLine -45.50 69.50 52.50 69.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(1) 36.50 72.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 64.00 546.00 64.00 MacLine -grestore -1.00 ps -549.50 63.50 546.00 63.50 MacLine -45.50 63.50 49.00 63.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 58.00 546.00 58.00 MacLine -grestore -1.00 ps -549.50 57.50 546.00 57.50 MacLine -45.50 57.50 49.00 57.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 52.00 546.00 52.00 MacLine -grestore -1.00 ps -549.50 51.50 546.00 51.50 MacLine -45.50 51.50 49.00 51.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 46.00 546.00 46.00 MacLine -grestore -1.00 ps -549.50 45.50 546.00 45.50 MacLine -45.50 45.50 49.00 45.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 40.00 544.25 40.00 MacLine -grestore -1.00 ps -549.50 39.50 544.25 39.50 MacLine -45.50 39.50 50.75 39.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 34.00 546.00 34.00 MacLine -grestore -1.00 ps -549.50 33.50 546.00 33.50 MacLine -45.50 33.50 49.00 33.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 28.00 546.00 28.00 MacLine -grestore -1.00 ps -549.50 27.50 546.00 27.50 MacLine -45.50 27.50 49.00 27.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 22.00 546.00 22.00 MacLine -grestore -1.00 ps -549.50 21.50 546.00 21.50 MacLine -45.50 21.50 49.00 21.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 16.00 546.00 16.00 MacLine -grestore -1.00 ps -549.50 15.50 546.00 15.50 MacLine -45.50 15.50 49.00 15.50 MacLine -1 ps -1.00 ps -549.50 9.50 542.50 9.50 MacLine -45.50 9.50 52.50 9.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 36.50 12.75 5.50 WS -gsave 1.00 ps 46.50 130.00 549.50 130.00 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 148.12 translate -90 rotate -(y \(m\)) 0.00 0.00 36.38 WS -grestore -1.00 ps -46.00 249.50 549.00 249.50 MacLine -46.00 9.50 549.00 9.50 MacLine -1 ps -1.00 ps -45.50 9.50 45.50 16.50 MacLine -45.50 249.50 45.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-4) 41.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -52.25 246.00 52.25 13.00 MacLine -grestore -1.00 ps -51.75 9.50 51.75 13.00 MacLine -51.75 249.50 51.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -58.62 246.00 58.62 13.00 MacLine -grestore -1.00 ps -58.12 9.50 58.12 13.00 MacLine -58.12 249.50 58.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -64.88 246.00 64.88 13.00 MacLine -grestore -1.00 ps -64.38 9.50 64.38 13.00 MacLine -64.38 249.50 64.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -71.25 246.00 71.25 13.00 MacLine -grestore -1.00 ps -70.75 9.50 70.75 13.00 MacLine -70.75 249.50 70.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -77.50 244.25 77.50 14.75 MacLine -grestore -1.00 ps -77.00 9.50 77.00 14.75 MacLine -77.00 249.50 77.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -83.75 246.00 83.75 13.00 MacLine -grestore -1.00 ps -83.25 9.50 83.25 13.00 MacLine -83.25 249.50 83.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -90.12 246.00 90.12 13.00 MacLine -grestore -1.00 ps -89.62 9.50 89.62 13.00 MacLine -89.62 249.50 89.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -96.38 246.00 96.38 13.00 MacLine -grestore -1.00 ps -95.88 9.50 95.88 13.00 MacLine -95.88 249.50 95.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.75 246.00 102.75 13.00 MacLine -grestore -1.00 ps -102.25 9.50 102.25 13.00 MacLine -102.25 249.50 102.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -109.00 244.25 109.00 14.75 MacLine -grestore -1.00 ps -108.50 9.50 108.50 14.75 MacLine -108.50 249.50 108.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -115.25 246.00 115.25 13.00 MacLine -grestore -1.00 ps -114.75 9.50 114.75 13.00 MacLine -114.75 249.50 114.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -121.62 246.00 121.62 13.00 MacLine -grestore -1.00 ps -121.12 9.50 121.12 13.00 MacLine -121.12 249.50 121.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -127.88 246.00 127.88 13.00 MacLine -grestore -1.00 ps -127.38 9.50 127.38 13.00 MacLine -127.38 249.50 127.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -134.25 246.00 134.25 13.00 MacLine -grestore -1.00 ps -133.75 9.50 133.75 13.00 MacLine -133.75 249.50 133.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -140.50 244.25 140.50 14.75 MacLine -grestore -1.00 ps -140.00 9.50 140.00 14.75 MacLine -140.00 249.50 140.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -146.75 246.00 146.75 13.00 MacLine -grestore -1.00 ps -146.25 9.50 146.25 13.00 MacLine -146.25 249.50 146.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -153.12 246.00 153.12 13.00 MacLine -grestore -1.00 ps -152.62 9.50 152.62 13.00 MacLine -152.62 249.50 152.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.38 246.00 159.38 13.00 MacLine -grestore -1.00 ps -158.88 9.50 158.88 13.00 MacLine -158.88 249.50 158.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -165.75 246.00 165.75 13.00 MacLine -grestore -1.00 ps -165.25 9.50 165.25 13.00 MacLine -165.25 249.50 165.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -171.88 242.50 171.88 16.50 MacLine -grestore -1.00 ps -171.50 9.50 171.50 16.50 MacLine -171.50 249.50 171.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-2) 167.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -178.25 246.00 178.25 13.00 MacLine -grestore -1.00 ps -177.75 9.50 177.75 13.00 MacLine -177.75 249.50 177.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -184.62 246.00 184.62 13.00 MacLine -grestore -1.00 ps -184.12 9.50 184.12 13.00 MacLine -184.12 249.50 184.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -190.88 246.00 190.88 13.00 MacLine -grestore -1.00 ps -190.38 9.50 190.38 13.00 MacLine -190.38 249.50 190.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -197.25 246.00 197.25 13.00 MacLine -grestore -1.00 ps -196.75 9.50 196.75 13.00 MacLine -196.75 249.50 196.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -203.50 244.25 203.50 14.75 MacLine -grestore -1.00 ps -203.00 9.50 203.00 14.75 MacLine -203.00 249.50 203.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -209.75 246.00 209.75 13.00 MacLine -grestore -1.00 ps -209.25 9.50 209.25 13.00 MacLine -209.25 249.50 209.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -216.12 246.00 216.12 13.00 MacLine -grestore -1.00 ps -215.62 9.50 215.62 13.00 MacLine -215.62 249.50 215.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.38 246.00 222.38 13.00 MacLine -grestore -1.00 ps -221.88 9.50 221.88 13.00 MacLine -221.88 249.50 221.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -228.75 246.00 228.75 13.00 MacLine -grestore -1.00 ps -228.25 9.50 228.25 13.00 MacLine -228.25 249.50 228.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -235.00 244.25 235.00 14.75 MacLine -grestore -1.00 ps -234.50 9.50 234.50 14.75 MacLine -234.50 249.50 234.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -241.25 246.00 241.25 13.00 MacLine -grestore -1.00 ps -240.75 9.50 240.75 13.00 MacLine -240.75 249.50 240.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -247.62 246.00 247.62 13.00 MacLine -grestore -1.00 ps -247.12 9.50 247.12 13.00 MacLine -247.12 249.50 247.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -253.88 246.00 253.88 13.00 MacLine -grestore -1.00 ps -253.38 9.50 253.38 13.00 MacLine -253.38 249.50 253.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -260.25 246.00 260.25 13.00 MacLine -grestore -1.00 ps -259.75 9.50 259.75 13.00 MacLine -259.75 249.50 259.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.50 244.25 266.50 14.75 MacLine -grestore -1.00 ps -266.00 9.50 266.00 14.75 MacLine -266.00 249.50 266.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -272.75 246.00 272.75 13.00 MacLine -grestore -1.00 ps -272.25 9.50 272.25 13.00 MacLine -272.25 249.50 272.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -279.12 246.00 279.12 13.00 MacLine -grestore -1.00 ps -278.62 9.50 278.62 13.00 MacLine -278.62 249.50 278.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -285.38 246.00 285.38 13.00 MacLine -grestore -1.00 ps -284.88 9.50 284.88 13.00 MacLine -284.88 249.50 284.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -291.75 246.00 291.75 13.00 MacLine -grestore -1.00 ps -291.25 9.50 291.25 13.00 MacLine -291.25 249.50 291.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -297.88 242.50 297.88 16.50 MacLine -grestore -1.00 ps -297.50 9.50 297.50 16.50 MacLine -297.50 249.50 297.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 295.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -304.25 246.00 304.25 13.00 MacLine -grestore -1.00 ps -303.75 9.50 303.75 13.00 MacLine -303.75 249.50 303.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -310.62 246.00 310.62 13.00 MacLine -grestore -1.00 ps -310.12 9.50 310.12 13.00 MacLine -310.12 249.50 310.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.88 246.00 316.88 13.00 MacLine -grestore -1.00 ps -316.38 9.50 316.38 13.00 MacLine -316.38 249.50 316.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 246.00 323.25 13.00 MacLine -grestore -1.00 ps -322.75 9.50 322.75 13.00 MacLine -322.75 249.50 322.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -329.50 244.25 329.50 14.75 MacLine -grestore -1.00 ps -329.00 9.50 329.00 14.75 MacLine -329.00 249.50 329.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -335.75 246.00 335.75 13.00 MacLine -grestore -1.00 ps -335.25 9.50 335.25 13.00 MacLine -335.25 249.50 335.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.12 246.00 342.12 13.00 MacLine -grestore -1.00 ps -341.62 9.50 341.62 13.00 MacLine -341.62 249.50 341.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -348.38 246.00 348.38 13.00 MacLine -grestore -1.00 ps -347.88 9.50 347.88 13.00 MacLine -347.88 249.50 347.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -354.75 246.00 354.75 13.00 MacLine -grestore -1.00 ps -354.25 9.50 354.25 13.00 MacLine -354.25 249.50 354.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -361.00 244.25 361.00 14.75 MacLine -grestore -1.00 ps -360.50 9.50 360.50 14.75 MacLine -360.50 249.50 360.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -367.25 246.00 367.25 13.00 MacLine -grestore -1.00 ps -366.75 9.50 366.75 13.00 MacLine -366.75 249.50 366.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.62 246.00 373.62 13.00 MacLine -grestore -1.00 ps -373.12 9.50 373.12 13.00 MacLine -373.12 249.50 373.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -379.88 246.00 379.88 13.00 MacLine -grestore -1.00 ps -379.38 9.50 379.38 13.00 MacLine -379.38 249.50 379.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -386.25 246.00 386.25 13.00 MacLine -grestore -1.00 ps -385.75 9.50 385.75 13.00 MacLine -385.75 249.50 385.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.50 244.25 392.50 14.75 MacLine -grestore -1.00 ps -392.00 9.50 392.00 14.75 MacLine -392.00 249.50 392.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -398.75 246.00 398.75 13.00 MacLine -grestore -1.00 ps -398.25 9.50 398.25 13.00 MacLine -398.25 249.50 398.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -405.12 246.00 405.12 13.00 MacLine -grestore -1.00 ps -404.62 9.50 404.62 13.00 MacLine -404.62 249.50 404.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -411.38 246.00 411.38 13.00 MacLine -grestore -1.00 ps -410.88 9.50 410.88 13.00 MacLine -410.88 249.50 410.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -417.75 246.00 417.75 13.00 MacLine -grestore -1.00 ps -417.25 9.50 417.25 13.00 MacLine -417.25 249.50 417.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -423.88 242.50 423.88 16.50 MacLine -grestore -1.00 ps -423.50 9.50 423.50 16.50 MacLine -423.50 249.50 423.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 421.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -430.25 246.00 430.25 13.00 MacLine -grestore -1.00 ps -429.75 9.50 429.75 13.00 MacLine -429.75 249.50 429.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -436.62 246.00 436.62 13.00 MacLine -grestore -1.00 ps -436.12 9.50 436.12 13.00 MacLine -436.12 249.50 436.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.88 246.00 442.88 13.00 MacLine -grestore -1.00 ps -442.38 9.50 442.38 13.00 MacLine -442.38 249.50 442.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -449.25 246.00 449.25 13.00 MacLine -grestore -1.00 ps -448.75 9.50 448.75 13.00 MacLine -448.75 249.50 448.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -455.50 244.25 455.50 14.75 MacLine -grestore -1.00 ps -455.00 9.50 455.00 14.75 MacLine -455.00 249.50 455.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -461.75 246.00 461.75 13.00 MacLine -grestore -1.00 ps -461.25 9.50 461.25 13.00 MacLine -461.25 249.50 461.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -468.12 246.00 468.12 13.00 MacLine -grestore -1.00 ps -467.62 9.50 467.62 13.00 MacLine -467.62 249.50 467.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -474.38 246.00 474.38 13.00 MacLine -grestore -1.00 ps -473.88 9.50 473.88 13.00 MacLine -473.88 249.50 473.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.75 246.00 480.75 13.00 MacLine -grestore -1.00 ps -480.25 9.50 480.25 13.00 MacLine -480.25 249.50 480.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.00 244.25 487.00 14.75 MacLine -grestore -1.00 ps -486.50 9.50 486.50 14.75 MacLine -486.50 249.50 486.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -493.25 246.00 493.25 13.00 MacLine -grestore -1.00 ps -492.75 9.50 492.75 13.00 MacLine -492.75 249.50 492.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -499.62 246.00 499.62 13.00 MacLine -grestore -1.00 ps -499.12 9.50 499.12 13.00 MacLine -499.12 249.50 499.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -505.88 246.00 505.88 13.00 MacLine -grestore -1.00 ps -505.38 9.50 505.38 13.00 MacLine -505.38 249.50 505.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.25 246.00 512.25 13.00 MacLine -grestore -1.00 ps -511.75 9.50 511.75 13.00 MacLine -511.75 249.50 511.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -518.50 244.25 518.50 14.75 MacLine -grestore -1.00 ps -518.00 9.50 518.00 14.75 MacLine -518.00 249.50 518.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -524.75 246.00 524.75 13.00 MacLine -grestore -1.00 ps -524.25 9.50 524.25 13.00 MacLine -524.25 249.50 524.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -531.12 246.00 531.12 13.00 MacLine -grestore -1.00 ps -530.62 9.50 530.62 13.00 MacLine -530.62 249.50 530.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -537.38 246.00 537.38 13.00 MacLine -grestore -1.00 ps -536.88 9.50 536.88 13.00 MacLine -536.88 249.50 536.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -543.75 246.00 543.75 13.00 MacLine -grestore -1.00 ps -543.25 9.50 543.25 13.00 MacLine -543.25 249.50 543.25 246.00 MacLine -1 ps -1.00 ps -549.50 9.50 549.50 16.50 MacLine -549.50 249.50 549.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 547.25 262.25 5.50 WS -gsave 1.00 ps 298.00 249.50 298.00 10.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -(x \(m\)) 279.88 284.38 36.38 WS -0.50 ps -newpath 298.00 130.00 3.00 0 360 arc -0 StrokePath -296.62 128.62 299.50 131.50 2 CapLine -299.50 128.62 296.62 131.50 2 CapLine -newpath 335.50 105.00 3.00 0 360 arc -0 StrokePath -334.12 103.62 337.00 106.50 2 CapLine -337.00 103.62 334.12 106.50 2 CapLine -newpath 373.00 80.00 3.00 0 360 arc -0 StrokePath -371.62 78.62 374.50 81.50 2 CapLine -374.50 78.62 371.62 81.50 2 CapLine -newpath 410.62 55.00 3.00 0 360 arc -0 StrokePath -409.25 53.62 412.12 56.50 2 CapLine -412.12 53.62 409.25 56.50 2 CapLine -newpath 448.12 29.88 3.00 0 360 arc -0 StrokePath -446.75 28.50 449.62 31.38 2 CapLine -449.62 28.50 446.75 31.38 2 CapLine -1 ps -0.50 ps -295.00 130.00 301.00 130.00 2 CapLine -298.00 127.00 298.00 133.00 2 CapLine -319.25 153.88 325.25 153.88 2 CapLine -322.25 150.88 322.25 156.88 2 CapLine -343.50 177.62 349.50 177.62 2 CapLine -346.50 174.62 346.50 180.62 2 CapLine -367.75 201.50 373.75 201.50 2 CapLine -370.75 198.50 370.75 204.50 2 CapLine -392.00 225.38 398.00 225.38 2 CapLine -395.00 222.38 395.00 228.38 2 CapLine -416.38 249.12 422.38 249.12 2 CapLine -419.38 246.12 419.38 252.12 2 CapLine -1 ps -0.50 ps -newpath 235.00 130.00 3.00 0 360 arc -0 StrokePath -233.62 128.62 236.50 131.50 2 CapLine -236.50 128.62 233.62 131.50 2 CapLine -newpath 172.00 130.00 3.00 0 360 arc -0 StrokePath -170.62 128.62 173.50 131.50 2 CapLine -173.50 128.62 170.62 131.50 2 CapLine -newpath 109.00 130.00 3.00 0 360 arc -0 StrokePath -107.62 128.62 110.50 131.50 2 CapLine -110.50 128.62 107.62 131.50 2 CapLine -newpath 46.00 130.00 3.00 0 360 arc -0 StrokePath -44.62 128.62 47.50 131.50 2 CapLine -47.50 128.62 44.62 131.50 2 CapLine -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av5.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av5.gif deleted file mode 100755 index 73963f936..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av5.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av6.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av6.eps deleted file mode 100755 index c41af443e..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av6.eps +++ /dev/null @@ -1,1459 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph5 -%%Creation Date: Thu, Oct 24, 1996 06:50 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/rx0 0 def /ry0 0 def /rx1 0 def /ry1 0 def -/tmp0 0 def /tmp1 0 def -/packedRed 0 def /packedGreen 0 def /packedBlue 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/setuserscreendict 22 dict def -setuserscreendict begin - -/tempctm matrix def -/temprot matrix def -/tempscale matrix def - -/concatprocs{ - /proc2 exch cvlit def - /proc1 exch cvlit def - /newproc proc1 length proc2 length add array def - newproc 0 proc1 putinterval - newproc proc1 length proc2 putinterval - newproc cvx -}def - -/resmatrix matrix def -/findresolution{ - 72 0 resmatrix defaultmatrix dtransform - /yres xdef /xres xdef - xres dup mul yres dup mul add sqrt -}def -end - -/setuserscreen{ - setuserscreendict begin - /spotfunction xdef - /screenangle xdef - /cellsize xdef - - /m tempctm currentmatrix def - /rm screenangle temprot rotate def - /sm cellsize dup tempscale scale def - - sm rm m m concatmatrix m concatmatrix pop - 1 0 m dtransform /y1 xdef /x1 xdef - /veclength x1 dup mul y1 dup mul add sqrt def - /frequency findresolution veclength div def - /newscreenangle y1 x1 atan def - m 2 get m 1 get mul m 0 get m 3 get mul sub 0 gt - { - { neg } /spotfunction load concatprocs - /spotfunction xdef - } if - frequency newscreenangle /spotfunction load setscreen - end -}def - -/setpatterndict 18 dict def -setpatterndict begin -/bitison{ - /ybit xdef /xbit xdef - /bytevalue bstring ybit bwidth mul xbit 8 idiv add get def - /mask 1 7 xbit 8 mod sub bitshift def - bytevalue mask and 0 ne -}def -end - -/bitpatternspotfunction{ - setpatterndict begin - /y xdef /x xdef - /xindex x 1 add 2 div bpside mul cvi def - /yindex y 1 add 2 div bpside mul cvi def - xindex yindex bitison - { /onbits onbits 1 add def 1 } - { /offbits offbits 1 add def 0 } - ifelse - end -}def - -/setpattern{ - setpatterndict begin - /cellsz xdef - /angle xdef - /bwidth xdef - /bpside xdef - /bstring xdef - - /onbits 0 def /offbits 0 def - cellsz angle /bitpatternspotfunction load setuserscreen - {} settransfer - offbits offbits onbits add div setgray - end -}def - -/FillPattern{ % patternstring -- - /pat xdef - gsave - pat 8 1 0 72 300 32 div div setpattern - fill - grestore -}def - - - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .5 sub round .5 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - - - - -% **** begin image stuff ***** -% The following are used for images. This has to be kept -% in synch with corresponding code in ImageDisp.c.In particular -% the expansion factor, 8, has to be in synch. -% packedcolor is (red*256+green)*256+blue - -/SetPackedColor{ % packedcolor SetPackedColor -- - dup 256 mod /tmp0 xdef % extract blue - 256 idiv - dup 256 mod /tmp1 xdef % extract green - 256 idiv % extract red - 255 div /packedRed xdef - tmp1 255 div /packedGreen xdef - tmp0 255 div /packedBlue xdef -}bdef - -/IR_FillRect{ - gsave - newpath - rx0 ry0 M - rx1 ry0 L - rx1 ry1 L - rx0 ry1 L - closepath - packedRed packedGreen packedBlue setrgbcolor - fill - grestore -}bdef - -/NewRectImageLine{ % x0 y0 x1 y1 packedcolor NewRectImageLine -- - SetPackedColor - - /ry1 xdef /rx1 xdef /ry0 xdef /rx0 xdef % remember starting rectange for following calls - - IR_FillRect -}bdef - -/rx{ % xdist rx -- - 8 div - dup 0 lt - { rx0 /rx1 xdef rx1 add /rx0 xdef } % neg delta steps left - { rx1 /rx0 xdef rx0 add /rx1 xdef } - ifelse - IR_FillRect -}bdef - -/ry{ % ydist rr -- - 8 div - dup 0 lt - { ry1 /ry0 xdef ry0 exch sub /ry1 xdef } % neg delta steps down - { ry0 /ry1 xdef ry1 exch sub /ry0 xdef } - ifelse - IR_FillRect -}bdef - - -/cx{ % xdist packedcolor cx -- - SetPackedColor - rx -}bdef - -/cy{ % ydist packedcolor cx -- - SetPackedColor - ry -}bdef - -% **** end image stuff ***** - - - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -45.50 10.00 45.50 249.00 MacLine -549.50 10.00 549.50 249.00 MacLine -1 ps -1.00 ps -549.50 249.50 542.50 249.50 MacLine -45.50 249.50 52.50 249.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(-2) 33.12 252.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 244.00 546.00 244.00 MacLine -grestore -1.00 ps -549.50 243.50 546.00 243.50 MacLine -45.50 243.50 49.00 243.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 238.00 546.00 238.00 MacLine -grestore -1.00 ps -549.50 237.50 546.00 237.50 MacLine -45.50 237.50 49.00 237.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 232.00 546.00 232.00 MacLine -grestore -1.00 ps -549.50 231.50 546.00 231.50 MacLine -45.50 231.50 49.00 231.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 226.00 546.00 226.00 MacLine -grestore -1.00 ps -549.50 225.50 546.00 225.50 MacLine -45.50 225.50 49.00 225.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 220.00 544.25 220.00 MacLine -grestore -1.00 ps -549.50 219.50 544.25 219.50 MacLine -45.50 219.50 50.75 219.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 214.00 546.00 214.00 MacLine -grestore -1.00 ps -549.50 213.50 546.00 213.50 MacLine -45.50 213.50 49.00 213.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 208.00 546.00 208.00 MacLine -grestore -1.00 ps -549.50 207.50 546.00 207.50 MacLine -45.50 207.50 49.00 207.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 202.00 546.00 202.00 MacLine -grestore -1.00 ps -549.50 201.50 546.00 201.50 MacLine -45.50 201.50 49.00 201.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 196.00 546.00 196.00 MacLine -grestore -1.00 ps -549.50 195.50 546.00 195.50 MacLine -45.50 195.50 49.00 195.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 189.88 542.50 189.88 MacLine -grestore -1.00 ps -549.50 189.50 542.50 189.50 MacLine -45.50 189.50 52.50 189.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-1) 33.12 192.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 184.00 546.00 184.00 MacLine -grestore -1.00 ps -549.50 183.50 546.00 183.50 MacLine -45.50 183.50 49.00 183.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 178.00 546.00 178.00 MacLine -grestore -1.00 ps -549.50 177.50 546.00 177.50 MacLine -45.50 177.50 49.00 177.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 172.00 546.00 172.00 MacLine -grestore -1.00 ps -549.50 171.50 546.00 171.50 MacLine -45.50 171.50 49.00 171.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 166.00 546.00 166.00 MacLine -grestore -1.00 ps -549.50 165.50 546.00 165.50 MacLine -45.50 165.50 49.00 165.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 160.00 544.25 160.00 MacLine -grestore -1.00 ps -549.50 159.50 544.25 159.50 MacLine -45.50 159.50 50.75 159.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 154.00 546.00 154.00 MacLine -grestore -1.00 ps -549.50 153.50 546.00 153.50 MacLine -45.50 153.50 49.00 153.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 148.00 546.00 148.00 MacLine -grestore -1.00 ps -549.50 147.50 546.00 147.50 MacLine -45.50 147.50 49.00 147.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 142.00 546.00 142.00 MacLine -grestore -1.00 ps -549.50 141.50 546.00 141.50 MacLine -45.50 141.50 49.00 141.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 136.00 546.00 136.00 MacLine -grestore -1.00 ps -549.50 135.50 546.00 135.50 MacLine -45.50 135.50 49.00 135.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 129.88 542.50 129.88 MacLine -grestore -1.00 ps -549.50 129.50 542.50 129.50 MacLine -45.50 129.50 52.50 129.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 36.50 132.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 124.00 546.00 124.00 MacLine -grestore -1.00 ps -549.50 123.50 546.00 123.50 MacLine -45.50 123.50 49.00 123.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 118.00 546.00 118.00 MacLine -grestore -1.00 ps -549.50 117.50 546.00 117.50 MacLine -45.50 117.50 49.00 117.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 112.00 546.00 112.00 MacLine -grestore -1.00 ps -549.50 111.50 546.00 111.50 MacLine -45.50 111.50 49.00 111.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 106.00 546.00 106.00 MacLine -grestore -1.00 ps -549.50 105.50 546.00 105.50 MacLine -45.50 105.50 49.00 105.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 100.00 544.25 100.00 MacLine -grestore -1.00 ps -549.50 99.50 544.25 99.50 MacLine -45.50 99.50 50.75 99.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 94.00 546.00 94.00 MacLine -grestore -1.00 ps -549.50 93.50 546.00 93.50 MacLine -45.50 93.50 49.00 93.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 88.00 546.00 88.00 MacLine -grestore -1.00 ps -549.50 87.50 546.00 87.50 MacLine -45.50 87.50 49.00 87.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 82.00 546.00 82.00 MacLine -grestore -1.00 ps -549.50 81.50 546.00 81.50 MacLine -45.50 81.50 49.00 81.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 76.00 546.00 76.00 MacLine -grestore -1.00 ps -549.50 75.50 546.00 75.50 MacLine -45.50 75.50 49.00 75.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 69.88 542.50 69.88 MacLine -grestore -1.00 ps -549.50 69.50 542.50 69.50 MacLine -45.50 69.50 52.50 69.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(1) 36.50 72.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 64.00 546.00 64.00 MacLine -grestore -1.00 ps -549.50 63.50 546.00 63.50 MacLine -45.50 63.50 49.00 63.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 58.00 546.00 58.00 MacLine -grestore -1.00 ps -549.50 57.50 546.00 57.50 MacLine -45.50 57.50 49.00 57.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 52.00 546.00 52.00 MacLine -grestore -1.00 ps -549.50 51.50 546.00 51.50 MacLine -45.50 51.50 49.00 51.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 46.00 546.00 46.00 MacLine -grestore -1.00 ps -549.50 45.50 546.00 45.50 MacLine -45.50 45.50 49.00 45.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 40.00 544.25 40.00 MacLine -grestore -1.00 ps -549.50 39.50 544.25 39.50 MacLine -45.50 39.50 50.75 39.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 34.00 546.00 34.00 MacLine -grestore -1.00 ps -549.50 33.50 546.00 33.50 MacLine -45.50 33.50 49.00 33.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 28.00 546.00 28.00 MacLine -grestore -1.00 ps -549.50 27.50 546.00 27.50 MacLine -45.50 27.50 49.00 27.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 22.00 546.00 22.00 MacLine -grestore -1.00 ps -549.50 21.50 546.00 21.50 MacLine -45.50 21.50 49.00 21.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 16.00 546.00 16.00 MacLine -grestore -1.00 ps -549.50 15.50 546.00 15.50 MacLine -45.50 15.50 49.00 15.50 MacLine -1 ps -1.00 ps -549.50 9.50 542.50 9.50 MacLine -45.50 9.50 52.50 9.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 36.50 12.75 5.50 WS -gsave 1.00 ps 46.50 130.00 549.50 130.00 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 148.12 translate -90 rotate -(y \(m\)) 0.00 0.00 36.38 WS -grestore -1.00 ps -46.00 249.50 549.00 249.50 MacLine -46.00 9.50 549.00 9.50 MacLine -1 ps -1.00 ps -45.50 9.50 45.50 16.50 MacLine -45.50 249.50 45.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-4) 41.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -52.25 246.00 52.25 13.00 MacLine -grestore -1.00 ps -51.75 9.50 51.75 13.00 MacLine -51.75 249.50 51.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -58.62 246.00 58.62 13.00 MacLine -grestore -1.00 ps -58.12 9.50 58.12 13.00 MacLine -58.12 249.50 58.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -64.88 246.00 64.88 13.00 MacLine -grestore -1.00 ps -64.38 9.50 64.38 13.00 MacLine -64.38 249.50 64.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -71.25 246.00 71.25 13.00 MacLine -grestore -1.00 ps -70.75 9.50 70.75 13.00 MacLine -70.75 249.50 70.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -77.50 244.25 77.50 14.75 MacLine -grestore -1.00 ps -77.00 9.50 77.00 14.75 MacLine -77.00 249.50 77.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -83.75 246.00 83.75 13.00 MacLine -grestore -1.00 ps -83.25 9.50 83.25 13.00 MacLine -83.25 249.50 83.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -90.12 246.00 90.12 13.00 MacLine -grestore -1.00 ps -89.62 9.50 89.62 13.00 MacLine -89.62 249.50 89.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -96.38 246.00 96.38 13.00 MacLine -grestore -1.00 ps -95.88 9.50 95.88 13.00 MacLine -95.88 249.50 95.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.75 246.00 102.75 13.00 MacLine -grestore -1.00 ps -102.25 9.50 102.25 13.00 MacLine -102.25 249.50 102.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -109.00 244.25 109.00 14.75 MacLine -grestore -1.00 ps -108.50 9.50 108.50 14.75 MacLine -108.50 249.50 108.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -115.25 246.00 115.25 13.00 MacLine -grestore -1.00 ps -114.75 9.50 114.75 13.00 MacLine -114.75 249.50 114.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -121.62 246.00 121.62 13.00 MacLine -grestore -1.00 ps -121.12 9.50 121.12 13.00 MacLine -121.12 249.50 121.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -127.88 246.00 127.88 13.00 MacLine -grestore -1.00 ps -127.38 9.50 127.38 13.00 MacLine -127.38 249.50 127.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -134.25 246.00 134.25 13.00 MacLine -grestore -1.00 ps -133.75 9.50 133.75 13.00 MacLine -133.75 249.50 133.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -140.50 244.25 140.50 14.75 MacLine -grestore -1.00 ps -140.00 9.50 140.00 14.75 MacLine -140.00 249.50 140.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -146.75 246.00 146.75 13.00 MacLine -grestore -1.00 ps -146.25 9.50 146.25 13.00 MacLine -146.25 249.50 146.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -153.12 246.00 153.12 13.00 MacLine -grestore -1.00 ps -152.62 9.50 152.62 13.00 MacLine -152.62 249.50 152.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.38 246.00 159.38 13.00 MacLine -grestore -1.00 ps -158.88 9.50 158.88 13.00 MacLine -158.88 249.50 158.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -165.75 246.00 165.75 13.00 MacLine -grestore -1.00 ps -165.25 9.50 165.25 13.00 MacLine -165.25 249.50 165.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -171.88 242.50 171.88 16.50 MacLine -grestore -1.00 ps -171.50 9.50 171.50 16.50 MacLine -171.50 249.50 171.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-2) 167.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -178.25 246.00 178.25 13.00 MacLine -grestore -1.00 ps -177.75 9.50 177.75 13.00 MacLine -177.75 249.50 177.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -184.62 246.00 184.62 13.00 MacLine -grestore -1.00 ps -184.12 9.50 184.12 13.00 MacLine -184.12 249.50 184.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -190.88 246.00 190.88 13.00 MacLine -grestore -1.00 ps -190.38 9.50 190.38 13.00 MacLine -190.38 249.50 190.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -197.25 246.00 197.25 13.00 MacLine -grestore -1.00 ps -196.75 9.50 196.75 13.00 MacLine -196.75 249.50 196.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -203.50 244.25 203.50 14.75 MacLine -grestore -1.00 ps -203.00 9.50 203.00 14.75 MacLine -203.00 249.50 203.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -209.75 246.00 209.75 13.00 MacLine -grestore -1.00 ps -209.25 9.50 209.25 13.00 MacLine -209.25 249.50 209.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -216.12 246.00 216.12 13.00 MacLine -grestore -1.00 ps -215.62 9.50 215.62 13.00 MacLine -215.62 249.50 215.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.38 246.00 222.38 13.00 MacLine -grestore -1.00 ps -221.88 9.50 221.88 13.00 MacLine -221.88 249.50 221.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -228.75 246.00 228.75 13.00 MacLine -grestore -1.00 ps -228.25 9.50 228.25 13.00 MacLine -228.25 249.50 228.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -235.00 244.25 235.00 14.75 MacLine -grestore -1.00 ps -234.50 9.50 234.50 14.75 MacLine -234.50 249.50 234.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -241.25 246.00 241.25 13.00 MacLine -grestore -1.00 ps -240.75 9.50 240.75 13.00 MacLine -240.75 249.50 240.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -247.62 246.00 247.62 13.00 MacLine -grestore -1.00 ps -247.12 9.50 247.12 13.00 MacLine -247.12 249.50 247.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -253.88 246.00 253.88 13.00 MacLine -grestore -1.00 ps -253.38 9.50 253.38 13.00 MacLine -253.38 249.50 253.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -260.25 246.00 260.25 13.00 MacLine -grestore -1.00 ps -259.75 9.50 259.75 13.00 MacLine -259.75 249.50 259.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.50 244.25 266.50 14.75 MacLine -grestore -1.00 ps -266.00 9.50 266.00 14.75 MacLine -266.00 249.50 266.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -272.75 246.00 272.75 13.00 MacLine -grestore -1.00 ps -272.25 9.50 272.25 13.00 MacLine -272.25 249.50 272.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -279.12 246.00 279.12 13.00 MacLine -grestore -1.00 ps -278.62 9.50 278.62 13.00 MacLine -278.62 249.50 278.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -285.38 246.00 285.38 13.00 MacLine -grestore -1.00 ps -284.88 9.50 284.88 13.00 MacLine -284.88 249.50 284.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -291.75 246.00 291.75 13.00 MacLine -grestore -1.00 ps -291.25 9.50 291.25 13.00 MacLine -291.25 249.50 291.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -297.88 242.50 297.88 16.50 MacLine -grestore -1.00 ps -297.50 9.50 297.50 16.50 MacLine -297.50 249.50 297.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 295.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -304.25 246.00 304.25 13.00 MacLine -grestore -1.00 ps -303.75 9.50 303.75 13.00 MacLine -303.75 249.50 303.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -310.62 246.00 310.62 13.00 MacLine -grestore -1.00 ps -310.12 9.50 310.12 13.00 MacLine -310.12 249.50 310.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.88 246.00 316.88 13.00 MacLine -grestore -1.00 ps -316.38 9.50 316.38 13.00 MacLine -316.38 249.50 316.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 246.00 323.25 13.00 MacLine -grestore -1.00 ps -322.75 9.50 322.75 13.00 MacLine -322.75 249.50 322.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -329.50 244.25 329.50 14.75 MacLine -grestore -1.00 ps -329.00 9.50 329.00 14.75 MacLine -329.00 249.50 329.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -335.75 246.00 335.75 13.00 MacLine -grestore -1.00 ps -335.25 9.50 335.25 13.00 MacLine -335.25 249.50 335.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.12 246.00 342.12 13.00 MacLine -grestore -1.00 ps -341.62 9.50 341.62 13.00 MacLine -341.62 249.50 341.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -348.38 246.00 348.38 13.00 MacLine -grestore -1.00 ps -347.88 9.50 347.88 13.00 MacLine -347.88 249.50 347.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -354.75 246.00 354.75 13.00 MacLine -grestore -1.00 ps -354.25 9.50 354.25 13.00 MacLine -354.25 249.50 354.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -361.00 244.25 361.00 14.75 MacLine -grestore -1.00 ps -360.50 9.50 360.50 14.75 MacLine -360.50 249.50 360.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -367.25 246.00 367.25 13.00 MacLine -grestore -1.00 ps -366.75 9.50 366.75 13.00 MacLine -366.75 249.50 366.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.62 246.00 373.62 13.00 MacLine -grestore -1.00 ps -373.12 9.50 373.12 13.00 MacLine -373.12 249.50 373.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -379.88 246.00 379.88 13.00 MacLine -grestore -1.00 ps -379.38 9.50 379.38 13.00 MacLine -379.38 249.50 379.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -386.25 246.00 386.25 13.00 MacLine -grestore -1.00 ps -385.75 9.50 385.75 13.00 MacLine -385.75 249.50 385.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.50 244.25 392.50 14.75 MacLine -grestore -1.00 ps -392.00 9.50 392.00 14.75 MacLine -392.00 249.50 392.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -398.75 246.00 398.75 13.00 MacLine -grestore -1.00 ps -398.25 9.50 398.25 13.00 MacLine -398.25 249.50 398.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -405.12 246.00 405.12 13.00 MacLine -grestore -1.00 ps -404.62 9.50 404.62 13.00 MacLine -404.62 249.50 404.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -411.38 246.00 411.38 13.00 MacLine -grestore -1.00 ps -410.88 9.50 410.88 13.00 MacLine -410.88 249.50 410.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -417.75 246.00 417.75 13.00 MacLine -grestore -1.00 ps -417.25 9.50 417.25 13.00 MacLine -417.25 249.50 417.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -423.88 242.50 423.88 16.50 MacLine -grestore -1.00 ps -423.50 9.50 423.50 16.50 MacLine -423.50 249.50 423.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 421.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -430.25 246.00 430.25 13.00 MacLine -grestore -1.00 ps -429.75 9.50 429.75 13.00 MacLine -429.75 249.50 429.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -436.62 246.00 436.62 13.00 MacLine -grestore -1.00 ps -436.12 9.50 436.12 13.00 MacLine -436.12 249.50 436.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.88 246.00 442.88 13.00 MacLine -grestore -1.00 ps -442.38 9.50 442.38 13.00 MacLine -442.38 249.50 442.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -449.25 246.00 449.25 13.00 MacLine -grestore -1.00 ps -448.75 9.50 448.75 13.00 MacLine -448.75 249.50 448.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -455.50 244.25 455.50 14.75 MacLine -grestore -1.00 ps -455.00 9.50 455.00 14.75 MacLine -455.00 249.50 455.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -461.75 246.00 461.75 13.00 MacLine -grestore -1.00 ps -461.25 9.50 461.25 13.00 MacLine -461.25 249.50 461.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -468.12 246.00 468.12 13.00 MacLine -grestore -1.00 ps -467.62 9.50 467.62 13.00 MacLine -467.62 249.50 467.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -474.38 246.00 474.38 13.00 MacLine -grestore -1.00 ps -473.88 9.50 473.88 13.00 MacLine -473.88 249.50 473.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.75 246.00 480.75 13.00 MacLine -grestore -1.00 ps -480.25 9.50 480.25 13.00 MacLine -480.25 249.50 480.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.00 244.25 487.00 14.75 MacLine -grestore -1.00 ps -486.50 9.50 486.50 14.75 MacLine -486.50 249.50 486.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -493.25 246.00 493.25 13.00 MacLine -grestore -1.00 ps -492.75 9.50 492.75 13.00 MacLine -492.75 249.50 492.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -499.62 246.00 499.62 13.00 MacLine -grestore -1.00 ps -499.12 9.50 499.12 13.00 MacLine -499.12 249.50 499.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -505.88 246.00 505.88 13.00 MacLine -grestore -1.00 ps -505.38 9.50 505.38 13.00 MacLine -505.38 249.50 505.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.25 246.00 512.25 13.00 MacLine -grestore -1.00 ps -511.75 9.50 511.75 13.00 MacLine -511.75 249.50 511.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -518.50 244.25 518.50 14.75 MacLine -grestore -1.00 ps -518.00 9.50 518.00 14.75 MacLine -518.00 249.50 518.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -524.75 246.00 524.75 13.00 MacLine -grestore -1.00 ps -524.25 9.50 524.25 13.00 MacLine -524.25 249.50 524.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -531.12 246.00 531.12 13.00 MacLine -grestore -1.00 ps -530.62 9.50 530.62 13.00 MacLine -530.62 249.50 530.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -537.38 246.00 537.38 13.00 MacLine -grestore -1.00 ps -536.88 9.50 536.88 13.00 MacLine -536.88 249.50 536.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -543.75 246.00 543.75 13.00 MacLine -grestore -1.00 ps -543.25 9.50 543.25 13.00 MacLine -543.25 249.50 543.25 246.00 MacLine -1 ps -1.00 ps -549.50 9.50 549.50 16.50 MacLine -549.50 249.50 549.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 547.25 262.25 5.50 WS -gsave 1.00 ps 298.00 249.50 298.00 10.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -(x \(m\)) 279.88 284.38 36.38 WS -0.50 ps -newpath 298.00 130.00 3.00 0 360 arc -0 StrokePath -296.62 128.62 299.50 131.50 2 CapLine -299.50 128.62 296.62 131.50 2 CapLine -newpath 343.88 104.75 3.00 0 360 arc -0 StrokePath -342.50 103.38 345.38 106.25 2 CapLine -345.38 103.38 342.50 106.25 2 CapLine -newpath 389.75 79.50 3.00 0 360 arc -0 StrokePath -388.38 78.12 391.25 81.00 2 CapLine -391.25 78.12 388.38 81.00 2 CapLine -newpath 435.62 54.38 3.00 0 360 arc -0 StrokePath -434.25 53.00 437.12 55.88 2 CapLine -437.12 53.00 434.25 55.88 2 CapLine -newpath 481.50 29.12 3.00 0 360 arc -0 StrokePath -480.12 27.75 483.00 30.62 2 CapLine -483.00 27.75 480.12 30.62 2 CapLine -1 ps -0.50 ps -295.00 130.00 301.00 130.00 2 CapLine -298.00 127.00 298.00 133.00 2 CapLine -304.75 144.38 310.75 144.38 2 CapLine -307.75 141.38 307.75 147.38 2 CapLine -314.62 158.88 320.62 158.88 2 CapLine -317.62 155.88 317.62 161.88 2 CapLine -324.38 173.25 330.38 173.25 2 CapLine -327.38 170.25 327.38 176.25 2 CapLine -334.12 187.62 340.12 187.62 2 CapLine -337.12 184.62 337.12 190.62 2 CapLine -344.00 202.00 350.00 202.00 2 CapLine -347.00 199.00 347.00 205.00 2 CapLine -353.75 216.50 359.75 216.50 2 CapLine -356.75 213.50 356.75 219.50 2 CapLine -363.50 230.88 369.50 230.88 2 CapLine -366.50 227.88 366.50 233.88 2 CapLine -373.25 245.25 379.25 245.25 2 CapLine -376.25 242.25 376.25 248.25 2 CapLine -1 ps -0.50 ps -newpath 235.00 130.00 3.00 0 360 arc -0 StrokePath -233.62 128.62 236.50 131.50 2 CapLine -236.50 128.62 233.62 131.50 2 CapLine -newpath 172.00 130.00 3.00 0 360 arc -0 StrokePath -170.62 128.62 173.50 131.50 2 CapLine -173.50 128.62 170.62 131.50 2 CapLine -newpath 109.00 130.00 3.00 0 360 arc -0 StrokePath -107.62 128.62 110.50 131.50 2 CapLine -110.50 128.62 107.62 131.50 2 CapLine -newpath 46.00 130.00 3.00 0 360 arc -0 StrokePath -44.62 128.62 47.50 131.50 2 CapLine -47.50 128.62 44.62 131.50 2 CapLine -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av6.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av6.gif deleted file mode 100755 index e5da427cc..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av6.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av7.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av7.eps deleted file mode 100755 index 0503288e3..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av7.eps +++ /dev/null @@ -1,1457 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph6 -%%Creation Date: Thu, Oct 24, 1996 06:50 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/rx0 0 def /ry0 0 def /rx1 0 def /ry1 0 def -/tmp0 0 def /tmp1 0 def -/packedRed 0 def /packedGreen 0 def /packedBlue 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/setuserscreendict 22 dict def -setuserscreendict begin - -/tempctm matrix def -/temprot matrix def -/tempscale matrix def - -/concatprocs{ - /proc2 exch cvlit def - /proc1 exch cvlit def - /newproc proc1 length proc2 length add array def - newproc 0 proc1 putinterval - newproc proc1 length proc2 putinterval - newproc cvx -}def - -/resmatrix matrix def -/findresolution{ - 72 0 resmatrix defaultmatrix dtransform - /yres xdef /xres xdef - xres dup mul yres dup mul add sqrt -}def -end - -/setuserscreen{ - setuserscreendict begin - /spotfunction xdef - /screenangle xdef - /cellsize xdef - - /m tempctm currentmatrix def - /rm screenangle temprot rotate def - /sm cellsize dup tempscale scale def - - sm rm m m concatmatrix m concatmatrix pop - 1 0 m dtransform /y1 xdef /x1 xdef - /veclength x1 dup mul y1 dup mul add sqrt def - /frequency findresolution veclength div def - /newscreenangle y1 x1 atan def - m 2 get m 1 get mul m 0 get m 3 get mul sub 0 gt - { - { neg } /spotfunction load concatprocs - /spotfunction xdef - } if - frequency newscreenangle /spotfunction load setscreen - end -}def - -/setpatterndict 18 dict def -setpatterndict begin -/bitison{ - /ybit xdef /xbit xdef - /bytevalue bstring ybit bwidth mul xbit 8 idiv add get def - /mask 1 7 xbit 8 mod sub bitshift def - bytevalue mask and 0 ne -}def -end - -/bitpatternspotfunction{ - setpatterndict begin - /y xdef /x xdef - /xindex x 1 add 2 div bpside mul cvi def - /yindex y 1 add 2 div bpside mul cvi def - xindex yindex bitison - { /onbits onbits 1 add def 1 } - { /offbits offbits 1 add def 0 } - ifelse - end -}def - -/setpattern{ - setpatterndict begin - /cellsz xdef - /angle xdef - /bwidth xdef - /bpside xdef - /bstring xdef - - /onbits 0 def /offbits 0 def - cellsz angle /bitpatternspotfunction load setuserscreen - {} settransfer - offbits offbits onbits add div setgray - end -}def - -/FillPattern{ % patternstring -- - /pat xdef - gsave - pat 8 1 0 72 300 32 div div setpattern - fill - grestore -}def - - - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .5 sub round .5 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - - - - -% **** begin image stuff ***** -% The following are used for images. This has to be kept -% in synch with corresponding code in ImageDisp.c.In particular -% the expansion factor, 8, has to be in synch. -% packedcolor is (red*256+green)*256+blue - -/SetPackedColor{ % packedcolor SetPackedColor -- - dup 256 mod /tmp0 xdef % extract blue - 256 idiv - dup 256 mod /tmp1 xdef % extract green - 256 idiv % extract red - 255 div /packedRed xdef - tmp1 255 div /packedGreen xdef - tmp0 255 div /packedBlue xdef -}bdef - -/IR_FillRect{ - gsave - newpath - rx0 ry0 M - rx1 ry0 L - rx1 ry1 L - rx0 ry1 L - closepath - packedRed packedGreen packedBlue setrgbcolor - fill - grestore -}bdef - -/NewRectImageLine{ % x0 y0 x1 y1 packedcolor NewRectImageLine -- - SetPackedColor - - /ry1 xdef /rx1 xdef /ry0 xdef /rx0 xdef % remember starting rectange for following calls - - IR_FillRect -}bdef - -/rx{ % xdist rx -- - 8 div - dup 0 lt - { rx0 /rx1 xdef rx1 add /rx0 xdef } % neg delta steps left - { rx1 /rx0 xdef rx0 add /rx1 xdef } - ifelse - IR_FillRect -}bdef - -/ry{ % ydist rr -- - 8 div - dup 0 lt - { ry1 /ry0 xdef ry0 exch sub /ry1 xdef } % neg delta steps down - { ry0 /ry1 xdef ry1 exch sub /ry0 xdef } - ifelse - IR_FillRect -}bdef - - -/cx{ % xdist packedcolor cx -- - SetPackedColor - rx -}bdef - -/cy{ % ydist packedcolor cx -- - SetPackedColor - ry -}bdef - -% **** end image stuff ***** - - - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -45.50 10.00 45.50 249.00 MacLine -549.50 10.00 549.50 249.00 MacLine -1 ps -1.00 ps -549.50 249.50 542.50 249.50 MacLine -45.50 249.50 52.50 249.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(-2) 33.12 252.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 244.00 546.00 244.00 MacLine -grestore -1.00 ps -549.50 243.50 546.00 243.50 MacLine -45.50 243.50 49.00 243.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 238.00 546.00 238.00 MacLine -grestore -1.00 ps -549.50 237.50 546.00 237.50 MacLine -45.50 237.50 49.00 237.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 232.00 546.00 232.00 MacLine -grestore -1.00 ps -549.50 231.50 546.00 231.50 MacLine -45.50 231.50 49.00 231.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 226.00 546.00 226.00 MacLine -grestore -1.00 ps -549.50 225.50 546.00 225.50 MacLine -45.50 225.50 49.00 225.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 220.00 544.25 220.00 MacLine -grestore -1.00 ps -549.50 219.50 544.25 219.50 MacLine -45.50 219.50 50.75 219.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 214.00 546.00 214.00 MacLine -grestore -1.00 ps -549.50 213.50 546.00 213.50 MacLine -45.50 213.50 49.00 213.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 208.00 546.00 208.00 MacLine -grestore -1.00 ps -549.50 207.50 546.00 207.50 MacLine -45.50 207.50 49.00 207.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 202.00 546.00 202.00 MacLine -grestore -1.00 ps -549.50 201.50 546.00 201.50 MacLine -45.50 201.50 49.00 201.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 196.00 546.00 196.00 MacLine -grestore -1.00 ps -549.50 195.50 546.00 195.50 MacLine -45.50 195.50 49.00 195.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 189.88 542.50 189.88 MacLine -grestore -1.00 ps -549.50 189.50 542.50 189.50 MacLine -45.50 189.50 52.50 189.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-1) 33.12 192.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 184.00 546.00 184.00 MacLine -grestore -1.00 ps -549.50 183.50 546.00 183.50 MacLine -45.50 183.50 49.00 183.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 178.00 546.00 178.00 MacLine -grestore -1.00 ps -549.50 177.50 546.00 177.50 MacLine -45.50 177.50 49.00 177.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 172.00 546.00 172.00 MacLine -grestore -1.00 ps -549.50 171.50 546.00 171.50 MacLine -45.50 171.50 49.00 171.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 166.00 546.00 166.00 MacLine -grestore -1.00 ps -549.50 165.50 546.00 165.50 MacLine -45.50 165.50 49.00 165.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 160.00 544.25 160.00 MacLine -grestore -1.00 ps -549.50 159.50 544.25 159.50 MacLine -45.50 159.50 50.75 159.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 154.00 546.00 154.00 MacLine -grestore -1.00 ps -549.50 153.50 546.00 153.50 MacLine -45.50 153.50 49.00 153.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 148.00 546.00 148.00 MacLine -grestore -1.00 ps -549.50 147.50 546.00 147.50 MacLine -45.50 147.50 49.00 147.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 142.00 546.00 142.00 MacLine -grestore -1.00 ps -549.50 141.50 546.00 141.50 MacLine -45.50 141.50 49.00 141.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 136.00 546.00 136.00 MacLine -grestore -1.00 ps -549.50 135.50 546.00 135.50 MacLine -45.50 135.50 49.00 135.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 129.88 542.50 129.88 MacLine -grestore -1.00 ps -549.50 129.50 542.50 129.50 MacLine -45.50 129.50 52.50 129.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 36.50 132.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 124.00 546.00 124.00 MacLine -grestore -1.00 ps -549.50 123.50 546.00 123.50 MacLine -45.50 123.50 49.00 123.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 118.00 546.00 118.00 MacLine -grestore -1.00 ps -549.50 117.50 546.00 117.50 MacLine -45.50 117.50 49.00 117.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 112.00 546.00 112.00 MacLine -grestore -1.00 ps -549.50 111.50 546.00 111.50 MacLine -45.50 111.50 49.00 111.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 106.00 546.00 106.00 MacLine -grestore -1.00 ps -549.50 105.50 546.00 105.50 MacLine -45.50 105.50 49.00 105.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 100.00 544.25 100.00 MacLine -grestore -1.00 ps -549.50 99.50 544.25 99.50 MacLine -45.50 99.50 50.75 99.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 94.00 546.00 94.00 MacLine -grestore -1.00 ps -549.50 93.50 546.00 93.50 MacLine -45.50 93.50 49.00 93.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 88.00 546.00 88.00 MacLine -grestore -1.00 ps -549.50 87.50 546.00 87.50 MacLine -45.50 87.50 49.00 87.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 82.00 546.00 82.00 MacLine -grestore -1.00 ps -549.50 81.50 546.00 81.50 MacLine -45.50 81.50 49.00 81.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 76.00 546.00 76.00 MacLine -grestore -1.00 ps -549.50 75.50 546.00 75.50 MacLine -45.50 75.50 49.00 75.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 69.88 542.50 69.88 MacLine -grestore -1.00 ps -549.50 69.50 542.50 69.50 MacLine -45.50 69.50 52.50 69.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(1) 36.50 72.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 64.00 546.00 64.00 MacLine -grestore -1.00 ps -549.50 63.50 546.00 63.50 MacLine -45.50 63.50 49.00 63.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 58.00 546.00 58.00 MacLine -grestore -1.00 ps -549.50 57.50 546.00 57.50 MacLine -45.50 57.50 49.00 57.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 52.00 546.00 52.00 MacLine -grestore -1.00 ps -549.50 51.50 546.00 51.50 MacLine -45.50 51.50 49.00 51.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 46.00 546.00 46.00 MacLine -grestore -1.00 ps -549.50 45.50 546.00 45.50 MacLine -45.50 45.50 49.00 45.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 40.00 544.25 40.00 MacLine -grestore -1.00 ps -549.50 39.50 544.25 39.50 MacLine -45.50 39.50 50.75 39.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 34.00 546.00 34.00 MacLine -grestore -1.00 ps -549.50 33.50 546.00 33.50 MacLine -45.50 33.50 49.00 33.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 28.00 546.00 28.00 MacLine -grestore -1.00 ps -549.50 27.50 546.00 27.50 MacLine -45.50 27.50 49.00 27.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 22.00 546.00 22.00 MacLine -grestore -1.00 ps -549.50 21.50 546.00 21.50 MacLine -45.50 21.50 49.00 21.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 16.00 546.00 16.00 MacLine -grestore -1.00 ps -549.50 15.50 546.00 15.50 MacLine -45.50 15.50 49.00 15.50 MacLine -1 ps -1.00 ps -549.50 9.50 542.50 9.50 MacLine -45.50 9.50 52.50 9.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 36.50 12.75 5.50 WS -gsave 1.00 ps 46.50 130.00 549.50 130.00 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 148.12 translate -90 rotate -(y \(m\)) 0.00 0.00 36.38 WS -grestore -1.00 ps -46.00 249.50 549.00 249.50 MacLine -46.00 9.50 549.00 9.50 MacLine -1 ps -1.00 ps -45.50 9.50 45.50 16.50 MacLine -45.50 249.50 45.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-4) 41.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -52.25 246.00 52.25 13.00 MacLine -grestore -1.00 ps -51.75 9.50 51.75 13.00 MacLine -51.75 249.50 51.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -58.62 246.00 58.62 13.00 MacLine -grestore -1.00 ps -58.12 9.50 58.12 13.00 MacLine -58.12 249.50 58.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -64.88 246.00 64.88 13.00 MacLine -grestore -1.00 ps -64.38 9.50 64.38 13.00 MacLine -64.38 249.50 64.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -71.25 246.00 71.25 13.00 MacLine -grestore -1.00 ps -70.75 9.50 70.75 13.00 MacLine -70.75 249.50 70.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -77.50 244.25 77.50 14.75 MacLine -grestore -1.00 ps -77.00 9.50 77.00 14.75 MacLine -77.00 249.50 77.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -83.75 246.00 83.75 13.00 MacLine -grestore -1.00 ps -83.25 9.50 83.25 13.00 MacLine -83.25 249.50 83.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -90.12 246.00 90.12 13.00 MacLine -grestore -1.00 ps -89.62 9.50 89.62 13.00 MacLine -89.62 249.50 89.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -96.38 246.00 96.38 13.00 MacLine -grestore -1.00 ps -95.88 9.50 95.88 13.00 MacLine -95.88 249.50 95.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.75 246.00 102.75 13.00 MacLine -grestore -1.00 ps -102.25 9.50 102.25 13.00 MacLine -102.25 249.50 102.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -109.00 244.25 109.00 14.75 MacLine -grestore -1.00 ps -108.50 9.50 108.50 14.75 MacLine -108.50 249.50 108.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -115.25 246.00 115.25 13.00 MacLine -grestore -1.00 ps -114.75 9.50 114.75 13.00 MacLine -114.75 249.50 114.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -121.62 246.00 121.62 13.00 MacLine -grestore -1.00 ps -121.12 9.50 121.12 13.00 MacLine -121.12 249.50 121.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -127.88 246.00 127.88 13.00 MacLine -grestore -1.00 ps -127.38 9.50 127.38 13.00 MacLine -127.38 249.50 127.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -134.25 246.00 134.25 13.00 MacLine -grestore -1.00 ps -133.75 9.50 133.75 13.00 MacLine -133.75 249.50 133.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -140.50 244.25 140.50 14.75 MacLine -grestore -1.00 ps -140.00 9.50 140.00 14.75 MacLine -140.00 249.50 140.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -146.75 246.00 146.75 13.00 MacLine -grestore -1.00 ps -146.25 9.50 146.25 13.00 MacLine -146.25 249.50 146.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -153.12 246.00 153.12 13.00 MacLine -grestore -1.00 ps -152.62 9.50 152.62 13.00 MacLine -152.62 249.50 152.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.38 246.00 159.38 13.00 MacLine -grestore -1.00 ps -158.88 9.50 158.88 13.00 MacLine -158.88 249.50 158.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -165.75 246.00 165.75 13.00 MacLine -grestore -1.00 ps -165.25 9.50 165.25 13.00 MacLine -165.25 249.50 165.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -171.88 242.50 171.88 16.50 MacLine -grestore -1.00 ps -171.50 9.50 171.50 16.50 MacLine -171.50 249.50 171.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-2) 167.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -178.25 246.00 178.25 13.00 MacLine -grestore -1.00 ps -177.75 9.50 177.75 13.00 MacLine -177.75 249.50 177.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -184.62 246.00 184.62 13.00 MacLine -grestore -1.00 ps -184.12 9.50 184.12 13.00 MacLine -184.12 249.50 184.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -190.88 246.00 190.88 13.00 MacLine -grestore -1.00 ps -190.38 9.50 190.38 13.00 MacLine -190.38 249.50 190.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -197.25 246.00 197.25 13.00 MacLine -grestore -1.00 ps -196.75 9.50 196.75 13.00 MacLine -196.75 249.50 196.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -203.50 244.25 203.50 14.75 MacLine -grestore -1.00 ps -203.00 9.50 203.00 14.75 MacLine -203.00 249.50 203.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -209.75 246.00 209.75 13.00 MacLine -grestore -1.00 ps -209.25 9.50 209.25 13.00 MacLine -209.25 249.50 209.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -216.12 246.00 216.12 13.00 MacLine -grestore -1.00 ps -215.62 9.50 215.62 13.00 MacLine -215.62 249.50 215.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.38 246.00 222.38 13.00 MacLine -grestore -1.00 ps -221.88 9.50 221.88 13.00 MacLine -221.88 249.50 221.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -228.75 246.00 228.75 13.00 MacLine -grestore -1.00 ps -228.25 9.50 228.25 13.00 MacLine -228.25 249.50 228.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -235.00 244.25 235.00 14.75 MacLine -grestore -1.00 ps -234.50 9.50 234.50 14.75 MacLine -234.50 249.50 234.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -241.25 246.00 241.25 13.00 MacLine -grestore -1.00 ps -240.75 9.50 240.75 13.00 MacLine -240.75 249.50 240.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -247.62 246.00 247.62 13.00 MacLine -grestore -1.00 ps -247.12 9.50 247.12 13.00 MacLine -247.12 249.50 247.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -253.88 246.00 253.88 13.00 MacLine -grestore -1.00 ps -253.38 9.50 253.38 13.00 MacLine -253.38 249.50 253.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -260.25 246.00 260.25 13.00 MacLine -grestore -1.00 ps -259.75 9.50 259.75 13.00 MacLine -259.75 249.50 259.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.50 244.25 266.50 14.75 MacLine -grestore -1.00 ps -266.00 9.50 266.00 14.75 MacLine -266.00 249.50 266.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -272.75 246.00 272.75 13.00 MacLine -grestore -1.00 ps -272.25 9.50 272.25 13.00 MacLine -272.25 249.50 272.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -279.12 246.00 279.12 13.00 MacLine -grestore -1.00 ps -278.62 9.50 278.62 13.00 MacLine -278.62 249.50 278.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -285.38 246.00 285.38 13.00 MacLine -grestore -1.00 ps -284.88 9.50 284.88 13.00 MacLine -284.88 249.50 284.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -291.75 246.00 291.75 13.00 MacLine -grestore -1.00 ps -291.25 9.50 291.25 13.00 MacLine -291.25 249.50 291.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -297.88 242.50 297.88 16.50 MacLine -grestore -1.00 ps -297.50 9.50 297.50 16.50 MacLine -297.50 249.50 297.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 295.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -304.25 246.00 304.25 13.00 MacLine -grestore -1.00 ps -303.75 9.50 303.75 13.00 MacLine -303.75 249.50 303.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -310.62 246.00 310.62 13.00 MacLine -grestore -1.00 ps -310.12 9.50 310.12 13.00 MacLine -310.12 249.50 310.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.88 246.00 316.88 13.00 MacLine -grestore -1.00 ps -316.38 9.50 316.38 13.00 MacLine -316.38 249.50 316.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 246.00 323.25 13.00 MacLine -grestore -1.00 ps -322.75 9.50 322.75 13.00 MacLine -322.75 249.50 322.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -329.50 244.25 329.50 14.75 MacLine -grestore -1.00 ps -329.00 9.50 329.00 14.75 MacLine -329.00 249.50 329.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -335.75 246.00 335.75 13.00 MacLine -grestore -1.00 ps -335.25 9.50 335.25 13.00 MacLine -335.25 249.50 335.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.12 246.00 342.12 13.00 MacLine -grestore -1.00 ps -341.62 9.50 341.62 13.00 MacLine -341.62 249.50 341.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -348.38 246.00 348.38 13.00 MacLine -grestore -1.00 ps -347.88 9.50 347.88 13.00 MacLine -347.88 249.50 347.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -354.75 246.00 354.75 13.00 MacLine -grestore -1.00 ps -354.25 9.50 354.25 13.00 MacLine -354.25 249.50 354.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -361.00 244.25 361.00 14.75 MacLine -grestore -1.00 ps -360.50 9.50 360.50 14.75 MacLine -360.50 249.50 360.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -367.25 246.00 367.25 13.00 MacLine -grestore -1.00 ps -366.75 9.50 366.75 13.00 MacLine -366.75 249.50 366.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.62 246.00 373.62 13.00 MacLine -grestore -1.00 ps -373.12 9.50 373.12 13.00 MacLine -373.12 249.50 373.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -379.88 246.00 379.88 13.00 MacLine -grestore -1.00 ps -379.38 9.50 379.38 13.00 MacLine -379.38 249.50 379.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -386.25 246.00 386.25 13.00 MacLine -grestore -1.00 ps -385.75 9.50 385.75 13.00 MacLine -385.75 249.50 385.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.50 244.25 392.50 14.75 MacLine -grestore -1.00 ps -392.00 9.50 392.00 14.75 MacLine -392.00 249.50 392.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -398.75 246.00 398.75 13.00 MacLine -grestore -1.00 ps -398.25 9.50 398.25 13.00 MacLine -398.25 249.50 398.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -405.12 246.00 405.12 13.00 MacLine -grestore -1.00 ps -404.62 9.50 404.62 13.00 MacLine -404.62 249.50 404.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -411.38 246.00 411.38 13.00 MacLine -grestore -1.00 ps -410.88 9.50 410.88 13.00 MacLine -410.88 249.50 410.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -417.75 246.00 417.75 13.00 MacLine -grestore -1.00 ps -417.25 9.50 417.25 13.00 MacLine -417.25 249.50 417.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -423.88 242.50 423.88 16.50 MacLine -grestore -1.00 ps -423.50 9.50 423.50 16.50 MacLine -423.50 249.50 423.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 421.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -430.25 246.00 430.25 13.00 MacLine -grestore -1.00 ps -429.75 9.50 429.75 13.00 MacLine -429.75 249.50 429.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -436.62 246.00 436.62 13.00 MacLine -grestore -1.00 ps -436.12 9.50 436.12 13.00 MacLine -436.12 249.50 436.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.88 246.00 442.88 13.00 MacLine -grestore -1.00 ps -442.38 9.50 442.38 13.00 MacLine -442.38 249.50 442.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -449.25 246.00 449.25 13.00 MacLine -grestore -1.00 ps -448.75 9.50 448.75 13.00 MacLine -448.75 249.50 448.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -455.50 244.25 455.50 14.75 MacLine -grestore -1.00 ps -455.00 9.50 455.00 14.75 MacLine -455.00 249.50 455.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -461.75 246.00 461.75 13.00 MacLine -grestore -1.00 ps -461.25 9.50 461.25 13.00 MacLine -461.25 249.50 461.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -468.12 246.00 468.12 13.00 MacLine -grestore -1.00 ps -467.62 9.50 467.62 13.00 MacLine -467.62 249.50 467.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -474.38 246.00 474.38 13.00 MacLine -grestore -1.00 ps -473.88 9.50 473.88 13.00 MacLine -473.88 249.50 473.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.75 246.00 480.75 13.00 MacLine -grestore -1.00 ps -480.25 9.50 480.25 13.00 MacLine -480.25 249.50 480.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.00 244.25 487.00 14.75 MacLine -grestore -1.00 ps -486.50 9.50 486.50 14.75 MacLine -486.50 249.50 486.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -493.25 246.00 493.25 13.00 MacLine -grestore -1.00 ps -492.75 9.50 492.75 13.00 MacLine -492.75 249.50 492.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -499.62 246.00 499.62 13.00 MacLine -grestore -1.00 ps -499.12 9.50 499.12 13.00 MacLine -499.12 249.50 499.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -505.88 246.00 505.88 13.00 MacLine -grestore -1.00 ps -505.38 9.50 505.38 13.00 MacLine -505.38 249.50 505.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.25 246.00 512.25 13.00 MacLine -grestore -1.00 ps -511.75 9.50 511.75 13.00 MacLine -511.75 249.50 511.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -518.50 244.25 518.50 14.75 MacLine -grestore -1.00 ps -518.00 9.50 518.00 14.75 MacLine -518.00 249.50 518.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -524.75 246.00 524.75 13.00 MacLine -grestore -1.00 ps -524.25 9.50 524.25 13.00 MacLine -524.25 249.50 524.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -531.12 246.00 531.12 13.00 MacLine -grestore -1.00 ps -530.62 9.50 530.62 13.00 MacLine -530.62 249.50 530.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -537.38 246.00 537.38 13.00 MacLine -grestore -1.00 ps -536.88 9.50 536.88 13.00 MacLine -536.88 249.50 536.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -543.75 246.00 543.75 13.00 MacLine -grestore -1.00 ps -543.25 9.50 543.25 13.00 MacLine -543.25 249.50 543.25 246.00 MacLine -1 ps -1.00 ps -549.50 9.50 549.50 16.50 MacLine -549.50 249.50 549.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 547.25 262.25 5.50 WS -gsave 1.00 ps 298.00 249.50 298.00 10.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -(x \(m\)) 279.88 284.38 36.38 WS -0.50 ps -newpath 298.00 130.00 3.00 0 360 arc -0 StrokePath -296.62 128.62 299.50 131.50 2 CapLine -299.50 128.62 296.62 131.50 2 CapLine -newpath 345.50 113.50 3.00 0 360 arc -0 StrokePath -344.12 112.12 347.00 115.00 2 CapLine -347.00 112.12 344.12 115.00 2 CapLine -newpath 393.00 97.12 3.00 0 360 arc -0 StrokePath -391.62 95.75 394.50 98.62 2 CapLine -394.50 95.75 391.62 98.62 2 CapLine -newpath 440.50 80.62 3.00 0 360 arc -0 StrokePath -439.12 79.25 442.00 82.12 2 CapLine -442.00 79.25 439.12 82.12 2 CapLine -newpath 488.00 64.12 3.00 0 360 arc -0 StrokePath -486.62 62.75 489.50 65.62 2 CapLine -489.50 62.75 486.62 65.62 2 CapLine -newpath 535.50 47.62 3.00 0 360 arc -0 StrokePath -534.12 46.25 537.00 49.12 2 CapLine -537.00 46.25 534.12 49.12 2 CapLine -1 ps -0.50 ps -295.00 130.00 301.00 130.00 2 CapLine -298.00 127.00 298.00 133.00 2 CapLine -315.62 152.00 321.62 152.00 2 CapLine -318.62 149.00 318.62 155.00 2 CapLine -336.38 173.88 342.38 173.88 2 CapLine -339.38 170.88 339.38 176.88 2 CapLine -357.00 195.88 363.00 195.88 2 CapLine -360.00 192.88 360.00 198.88 2 CapLine -377.62 217.88 383.62 217.88 2 CapLine -380.62 214.88 380.62 220.88 2 CapLine -398.25 239.75 404.25 239.75 2 CapLine -401.25 236.75 401.25 242.75 2 CapLine -1 ps -0.50 ps -newpath 235.00 130.00 3.00 0 360 arc -0 StrokePath -233.62 128.62 236.50 131.50 2 CapLine -236.50 128.62 233.62 131.50 2 CapLine -newpath 172.00 130.00 3.00 0 360 arc -0 StrokePath -170.62 128.62 173.50 131.50 2 CapLine -173.50 128.62 170.62 131.50 2 CapLine -newpath 109.00 130.00 3.00 0 360 arc -0 StrokePath -107.62 128.62 110.50 131.50 2 CapLine -110.50 128.62 107.62 131.50 2 CapLine -newpath 46.00 130.00 3.00 0 360 arc -0 StrokePath -44.62 128.62 47.50 131.50 2 CapLine -47.50 128.62 44.62 131.50 2 CapLine -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av7.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av7.gif deleted file mode 100755 index 50d4a1914..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av7.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av8.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av8.eps deleted file mode 100755 index 4b8a069d2..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av8.eps +++ /dev/null @@ -1,1459 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph7 -%%Creation Date: Thu, Oct 24, 1996 06:50 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/rx0 0 def /ry0 0 def /rx1 0 def /ry1 0 def -/tmp0 0 def /tmp1 0 def -/packedRed 0 def /packedGreen 0 def /packedBlue 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/setuserscreendict 22 dict def -setuserscreendict begin - -/tempctm matrix def -/temprot matrix def -/tempscale matrix def - -/concatprocs{ - /proc2 exch cvlit def - /proc1 exch cvlit def - /newproc proc1 length proc2 length add array def - newproc 0 proc1 putinterval - newproc proc1 length proc2 putinterval - newproc cvx -}def - -/resmatrix matrix def -/findresolution{ - 72 0 resmatrix defaultmatrix dtransform - /yres xdef /xres xdef - xres dup mul yres dup mul add sqrt -}def -end - -/setuserscreen{ - setuserscreendict begin - /spotfunction xdef - /screenangle xdef - /cellsize xdef - - /m tempctm currentmatrix def - /rm screenangle temprot rotate def - /sm cellsize dup tempscale scale def - - sm rm m m concatmatrix m concatmatrix pop - 1 0 m dtransform /y1 xdef /x1 xdef - /veclength x1 dup mul y1 dup mul add sqrt def - /frequency findresolution veclength div def - /newscreenangle y1 x1 atan def - m 2 get m 1 get mul m 0 get m 3 get mul sub 0 gt - { - { neg } /spotfunction load concatprocs - /spotfunction xdef - } if - frequency newscreenangle /spotfunction load setscreen - end -}def - -/setpatterndict 18 dict def -setpatterndict begin -/bitison{ - /ybit xdef /xbit xdef - /bytevalue bstring ybit bwidth mul xbit 8 idiv add get def - /mask 1 7 xbit 8 mod sub bitshift def - bytevalue mask and 0 ne -}def -end - -/bitpatternspotfunction{ - setpatterndict begin - /y xdef /x xdef - /xindex x 1 add 2 div bpside mul cvi def - /yindex y 1 add 2 div bpside mul cvi def - xindex yindex bitison - { /onbits onbits 1 add def 1 } - { /offbits offbits 1 add def 0 } - ifelse - end -}def - -/setpattern{ - setpatterndict begin - /cellsz xdef - /angle xdef - /bwidth xdef - /bpside xdef - /bstring xdef - - /onbits 0 def /offbits 0 def - cellsz angle /bitpatternspotfunction load setuserscreen - {} settransfer - offbits offbits onbits add div setgray - end -}def - -/FillPattern{ % patternstring -- - /pat xdef - gsave - pat 8 1 0 72 300 32 div div setpattern - fill - grestore -}def - - - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .5 sub round .5 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - - - - -% **** begin image stuff ***** -% The following are used for images. This has to be kept -% in synch with corresponding code in ImageDisp.c.In particular -% the expansion factor, 8, has to be in synch. -% packedcolor is (red*256+green)*256+blue - -/SetPackedColor{ % packedcolor SetPackedColor -- - dup 256 mod /tmp0 xdef % extract blue - 256 idiv - dup 256 mod /tmp1 xdef % extract green - 256 idiv % extract red - 255 div /packedRed xdef - tmp1 255 div /packedGreen xdef - tmp0 255 div /packedBlue xdef -}bdef - -/IR_FillRect{ - gsave - newpath - rx0 ry0 M - rx1 ry0 L - rx1 ry1 L - rx0 ry1 L - closepath - packedRed packedGreen packedBlue setrgbcolor - fill - grestore -}bdef - -/NewRectImageLine{ % x0 y0 x1 y1 packedcolor NewRectImageLine -- - SetPackedColor - - /ry1 xdef /rx1 xdef /ry0 xdef /rx0 xdef % remember starting rectange for following calls - - IR_FillRect -}bdef - -/rx{ % xdist rx -- - 8 div - dup 0 lt - { rx0 /rx1 xdef rx1 add /rx0 xdef } % neg delta steps left - { rx1 /rx0 xdef rx0 add /rx1 xdef } - ifelse - IR_FillRect -}bdef - -/ry{ % ydist rr -- - 8 div - dup 0 lt - { ry1 /ry0 xdef ry0 exch sub /ry1 xdef } % neg delta steps down - { ry0 /ry1 xdef ry1 exch sub /ry0 xdef } - ifelse - IR_FillRect -}bdef - - -/cx{ % xdist packedcolor cx -- - SetPackedColor - rx -}bdef - -/cy{ % ydist packedcolor cx -- - SetPackedColor - ry -}bdef - -% **** end image stuff ***** - - - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -45.50 10.00 45.50 249.00 MacLine -549.50 10.00 549.50 249.00 MacLine -1 ps -1.00 ps -549.50 249.50 542.50 249.50 MacLine -45.50 249.50 52.50 249.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(-2) 33.12 252.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 244.00 546.00 244.00 MacLine -grestore -1.00 ps -549.50 243.50 546.00 243.50 MacLine -45.50 243.50 49.00 243.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 238.00 546.00 238.00 MacLine -grestore -1.00 ps -549.50 237.50 546.00 237.50 MacLine -45.50 237.50 49.00 237.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 232.00 546.00 232.00 MacLine -grestore -1.00 ps -549.50 231.50 546.00 231.50 MacLine -45.50 231.50 49.00 231.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 226.00 546.00 226.00 MacLine -grestore -1.00 ps -549.50 225.50 546.00 225.50 MacLine -45.50 225.50 49.00 225.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 220.00 544.25 220.00 MacLine -grestore -1.00 ps -549.50 219.50 544.25 219.50 MacLine -45.50 219.50 50.75 219.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 214.00 546.00 214.00 MacLine -grestore -1.00 ps -549.50 213.50 546.00 213.50 MacLine -45.50 213.50 49.00 213.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 208.00 546.00 208.00 MacLine -grestore -1.00 ps -549.50 207.50 546.00 207.50 MacLine -45.50 207.50 49.00 207.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 202.00 546.00 202.00 MacLine -grestore -1.00 ps -549.50 201.50 546.00 201.50 MacLine -45.50 201.50 49.00 201.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 196.00 546.00 196.00 MacLine -grestore -1.00 ps -549.50 195.50 546.00 195.50 MacLine -45.50 195.50 49.00 195.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 189.88 542.50 189.88 MacLine -grestore -1.00 ps -549.50 189.50 542.50 189.50 MacLine -45.50 189.50 52.50 189.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-1) 33.12 192.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 184.00 546.00 184.00 MacLine -grestore -1.00 ps -549.50 183.50 546.00 183.50 MacLine -45.50 183.50 49.00 183.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 178.00 546.00 178.00 MacLine -grestore -1.00 ps -549.50 177.50 546.00 177.50 MacLine -45.50 177.50 49.00 177.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 172.00 546.00 172.00 MacLine -grestore -1.00 ps -549.50 171.50 546.00 171.50 MacLine -45.50 171.50 49.00 171.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 166.00 546.00 166.00 MacLine -grestore -1.00 ps -549.50 165.50 546.00 165.50 MacLine -45.50 165.50 49.00 165.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 160.00 544.25 160.00 MacLine -grestore -1.00 ps -549.50 159.50 544.25 159.50 MacLine -45.50 159.50 50.75 159.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 154.00 546.00 154.00 MacLine -grestore -1.00 ps -549.50 153.50 546.00 153.50 MacLine -45.50 153.50 49.00 153.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 148.00 546.00 148.00 MacLine -grestore -1.00 ps -549.50 147.50 546.00 147.50 MacLine -45.50 147.50 49.00 147.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 142.00 546.00 142.00 MacLine -grestore -1.00 ps -549.50 141.50 546.00 141.50 MacLine -45.50 141.50 49.00 141.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 136.00 546.00 136.00 MacLine -grestore -1.00 ps -549.50 135.50 546.00 135.50 MacLine -45.50 135.50 49.00 135.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 129.88 542.50 129.88 MacLine -grestore -1.00 ps -549.50 129.50 542.50 129.50 MacLine -45.50 129.50 52.50 129.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 36.50 132.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 124.00 546.00 124.00 MacLine -grestore -1.00 ps -549.50 123.50 546.00 123.50 MacLine -45.50 123.50 49.00 123.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 118.00 546.00 118.00 MacLine -grestore -1.00 ps -549.50 117.50 546.00 117.50 MacLine -45.50 117.50 49.00 117.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 112.00 546.00 112.00 MacLine -grestore -1.00 ps -549.50 111.50 546.00 111.50 MacLine -45.50 111.50 49.00 111.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 106.00 546.00 106.00 MacLine -grestore -1.00 ps -549.50 105.50 546.00 105.50 MacLine -45.50 105.50 49.00 105.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 100.00 544.25 100.00 MacLine -grestore -1.00 ps -549.50 99.50 544.25 99.50 MacLine -45.50 99.50 50.75 99.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 94.00 546.00 94.00 MacLine -grestore -1.00 ps -549.50 93.50 546.00 93.50 MacLine -45.50 93.50 49.00 93.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 88.00 546.00 88.00 MacLine -grestore -1.00 ps -549.50 87.50 546.00 87.50 MacLine -45.50 87.50 49.00 87.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 82.00 546.00 82.00 MacLine -grestore -1.00 ps -549.50 81.50 546.00 81.50 MacLine -45.50 81.50 49.00 81.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 76.00 546.00 76.00 MacLine -grestore -1.00 ps -549.50 75.50 546.00 75.50 MacLine -45.50 75.50 49.00 75.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 69.88 542.50 69.88 MacLine -grestore -1.00 ps -549.50 69.50 542.50 69.50 MacLine -45.50 69.50 52.50 69.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(1) 36.50 72.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 64.00 546.00 64.00 MacLine -grestore -1.00 ps -549.50 63.50 546.00 63.50 MacLine -45.50 63.50 49.00 63.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 58.00 546.00 58.00 MacLine -grestore -1.00 ps -549.50 57.50 546.00 57.50 MacLine -45.50 57.50 49.00 57.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 52.00 546.00 52.00 MacLine -grestore -1.00 ps -549.50 51.50 546.00 51.50 MacLine -45.50 51.50 49.00 51.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 46.00 546.00 46.00 MacLine -grestore -1.00 ps -549.50 45.50 546.00 45.50 MacLine -45.50 45.50 49.00 45.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 40.00 544.25 40.00 MacLine -grestore -1.00 ps -549.50 39.50 544.25 39.50 MacLine -45.50 39.50 50.75 39.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 34.00 546.00 34.00 MacLine -grestore -1.00 ps -549.50 33.50 546.00 33.50 MacLine -45.50 33.50 49.00 33.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 28.00 546.00 28.00 MacLine -grestore -1.00 ps -549.50 27.50 546.00 27.50 MacLine -45.50 27.50 49.00 27.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 22.00 546.00 22.00 MacLine -grestore -1.00 ps -549.50 21.50 546.00 21.50 MacLine -45.50 21.50 49.00 21.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 16.00 546.00 16.00 MacLine -grestore -1.00 ps -549.50 15.50 546.00 15.50 MacLine -45.50 15.50 49.00 15.50 MacLine -1 ps -1.00 ps -549.50 9.50 542.50 9.50 MacLine -45.50 9.50 52.50 9.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 36.50 12.75 5.50 WS -gsave 1.00 ps 46.50 130.00 549.50 130.00 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 148.12 translate -90 rotate -(y \(m\)) 0.00 0.00 36.38 WS -grestore -1.00 ps -46.00 249.50 549.00 249.50 MacLine -46.00 9.50 549.00 9.50 MacLine -1 ps -1.00 ps -45.50 9.50 45.50 16.50 MacLine -45.50 249.50 45.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-4) 41.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -52.25 246.00 52.25 13.00 MacLine -grestore -1.00 ps -51.75 9.50 51.75 13.00 MacLine -51.75 249.50 51.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -58.62 246.00 58.62 13.00 MacLine -grestore -1.00 ps -58.12 9.50 58.12 13.00 MacLine -58.12 249.50 58.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -64.88 246.00 64.88 13.00 MacLine -grestore -1.00 ps -64.38 9.50 64.38 13.00 MacLine -64.38 249.50 64.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -71.25 246.00 71.25 13.00 MacLine -grestore -1.00 ps -70.75 9.50 70.75 13.00 MacLine -70.75 249.50 70.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -77.50 244.25 77.50 14.75 MacLine -grestore -1.00 ps -77.00 9.50 77.00 14.75 MacLine -77.00 249.50 77.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -83.75 246.00 83.75 13.00 MacLine -grestore -1.00 ps -83.25 9.50 83.25 13.00 MacLine -83.25 249.50 83.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -90.12 246.00 90.12 13.00 MacLine -grestore -1.00 ps -89.62 9.50 89.62 13.00 MacLine -89.62 249.50 89.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -96.38 246.00 96.38 13.00 MacLine -grestore -1.00 ps -95.88 9.50 95.88 13.00 MacLine -95.88 249.50 95.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.75 246.00 102.75 13.00 MacLine -grestore -1.00 ps -102.25 9.50 102.25 13.00 MacLine -102.25 249.50 102.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -109.00 244.25 109.00 14.75 MacLine -grestore -1.00 ps -108.50 9.50 108.50 14.75 MacLine -108.50 249.50 108.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -115.25 246.00 115.25 13.00 MacLine -grestore -1.00 ps -114.75 9.50 114.75 13.00 MacLine -114.75 249.50 114.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -121.62 246.00 121.62 13.00 MacLine -grestore -1.00 ps -121.12 9.50 121.12 13.00 MacLine -121.12 249.50 121.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -127.88 246.00 127.88 13.00 MacLine -grestore -1.00 ps -127.38 9.50 127.38 13.00 MacLine -127.38 249.50 127.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -134.25 246.00 134.25 13.00 MacLine -grestore -1.00 ps -133.75 9.50 133.75 13.00 MacLine -133.75 249.50 133.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -140.50 244.25 140.50 14.75 MacLine -grestore -1.00 ps -140.00 9.50 140.00 14.75 MacLine -140.00 249.50 140.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -146.75 246.00 146.75 13.00 MacLine -grestore -1.00 ps -146.25 9.50 146.25 13.00 MacLine -146.25 249.50 146.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -153.12 246.00 153.12 13.00 MacLine -grestore -1.00 ps -152.62 9.50 152.62 13.00 MacLine -152.62 249.50 152.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.38 246.00 159.38 13.00 MacLine -grestore -1.00 ps -158.88 9.50 158.88 13.00 MacLine -158.88 249.50 158.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -165.75 246.00 165.75 13.00 MacLine -grestore -1.00 ps -165.25 9.50 165.25 13.00 MacLine -165.25 249.50 165.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -171.88 242.50 171.88 16.50 MacLine -grestore -1.00 ps -171.50 9.50 171.50 16.50 MacLine -171.50 249.50 171.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-2) 167.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -178.25 246.00 178.25 13.00 MacLine -grestore -1.00 ps -177.75 9.50 177.75 13.00 MacLine -177.75 249.50 177.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -184.62 246.00 184.62 13.00 MacLine -grestore -1.00 ps -184.12 9.50 184.12 13.00 MacLine -184.12 249.50 184.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -190.88 246.00 190.88 13.00 MacLine -grestore -1.00 ps -190.38 9.50 190.38 13.00 MacLine -190.38 249.50 190.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -197.25 246.00 197.25 13.00 MacLine -grestore -1.00 ps -196.75 9.50 196.75 13.00 MacLine -196.75 249.50 196.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -203.50 244.25 203.50 14.75 MacLine -grestore -1.00 ps -203.00 9.50 203.00 14.75 MacLine -203.00 249.50 203.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -209.75 246.00 209.75 13.00 MacLine -grestore -1.00 ps -209.25 9.50 209.25 13.00 MacLine -209.25 249.50 209.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -216.12 246.00 216.12 13.00 MacLine -grestore -1.00 ps -215.62 9.50 215.62 13.00 MacLine -215.62 249.50 215.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.38 246.00 222.38 13.00 MacLine -grestore -1.00 ps -221.88 9.50 221.88 13.00 MacLine -221.88 249.50 221.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -228.75 246.00 228.75 13.00 MacLine -grestore -1.00 ps -228.25 9.50 228.25 13.00 MacLine -228.25 249.50 228.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -235.00 244.25 235.00 14.75 MacLine -grestore -1.00 ps -234.50 9.50 234.50 14.75 MacLine -234.50 249.50 234.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -241.25 246.00 241.25 13.00 MacLine -grestore -1.00 ps -240.75 9.50 240.75 13.00 MacLine -240.75 249.50 240.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -247.62 246.00 247.62 13.00 MacLine -grestore -1.00 ps -247.12 9.50 247.12 13.00 MacLine -247.12 249.50 247.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -253.88 246.00 253.88 13.00 MacLine -grestore -1.00 ps -253.38 9.50 253.38 13.00 MacLine -253.38 249.50 253.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -260.25 246.00 260.25 13.00 MacLine -grestore -1.00 ps -259.75 9.50 259.75 13.00 MacLine -259.75 249.50 259.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.50 244.25 266.50 14.75 MacLine -grestore -1.00 ps -266.00 9.50 266.00 14.75 MacLine -266.00 249.50 266.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -272.75 246.00 272.75 13.00 MacLine -grestore -1.00 ps -272.25 9.50 272.25 13.00 MacLine -272.25 249.50 272.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -279.12 246.00 279.12 13.00 MacLine -grestore -1.00 ps -278.62 9.50 278.62 13.00 MacLine -278.62 249.50 278.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -285.38 246.00 285.38 13.00 MacLine -grestore -1.00 ps -284.88 9.50 284.88 13.00 MacLine -284.88 249.50 284.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -291.75 246.00 291.75 13.00 MacLine -grestore -1.00 ps -291.25 9.50 291.25 13.00 MacLine -291.25 249.50 291.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -297.88 242.50 297.88 16.50 MacLine -grestore -1.00 ps -297.50 9.50 297.50 16.50 MacLine -297.50 249.50 297.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 295.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -304.25 246.00 304.25 13.00 MacLine -grestore -1.00 ps -303.75 9.50 303.75 13.00 MacLine -303.75 249.50 303.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -310.62 246.00 310.62 13.00 MacLine -grestore -1.00 ps -310.12 9.50 310.12 13.00 MacLine -310.12 249.50 310.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.88 246.00 316.88 13.00 MacLine -grestore -1.00 ps -316.38 9.50 316.38 13.00 MacLine -316.38 249.50 316.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 246.00 323.25 13.00 MacLine -grestore -1.00 ps -322.75 9.50 322.75 13.00 MacLine -322.75 249.50 322.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -329.50 244.25 329.50 14.75 MacLine -grestore -1.00 ps -329.00 9.50 329.00 14.75 MacLine -329.00 249.50 329.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -335.75 246.00 335.75 13.00 MacLine -grestore -1.00 ps -335.25 9.50 335.25 13.00 MacLine -335.25 249.50 335.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.12 246.00 342.12 13.00 MacLine -grestore -1.00 ps -341.62 9.50 341.62 13.00 MacLine -341.62 249.50 341.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -348.38 246.00 348.38 13.00 MacLine -grestore -1.00 ps -347.88 9.50 347.88 13.00 MacLine -347.88 249.50 347.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -354.75 246.00 354.75 13.00 MacLine -grestore -1.00 ps -354.25 9.50 354.25 13.00 MacLine -354.25 249.50 354.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -361.00 244.25 361.00 14.75 MacLine -grestore -1.00 ps -360.50 9.50 360.50 14.75 MacLine -360.50 249.50 360.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -367.25 246.00 367.25 13.00 MacLine -grestore -1.00 ps -366.75 9.50 366.75 13.00 MacLine -366.75 249.50 366.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.62 246.00 373.62 13.00 MacLine -grestore -1.00 ps -373.12 9.50 373.12 13.00 MacLine -373.12 249.50 373.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -379.88 246.00 379.88 13.00 MacLine -grestore -1.00 ps -379.38 9.50 379.38 13.00 MacLine -379.38 249.50 379.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -386.25 246.00 386.25 13.00 MacLine -grestore -1.00 ps -385.75 9.50 385.75 13.00 MacLine -385.75 249.50 385.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.50 244.25 392.50 14.75 MacLine -grestore -1.00 ps -392.00 9.50 392.00 14.75 MacLine -392.00 249.50 392.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -398.75 246.00 398.75 13.00 MacLine -grestore -1.00 ps -398.25 9.50 398.25 13.00 MacLine -398.25 249.50 398.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -405.12 246.00 405.12 13.00 MacLine -grestore -1.00 ps -404.62 9.50 404.62 13.00 MacLine -404.62 249.50 404.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -411.38 246.00 411.38 13.00 MacLine -grestore -1.00 ps -410.88 9.50 410.88 13.00 MacLine -410.88 249.50 410.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -417.75 246.00 417.75 13.00 MacLine -grestore -1.00 ps -417.25 9.50 417.25 13.00 MacLine -417.25 249.50 417.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -423.88 242.50 423.88 16.50 MacLine -grestore -1.00 ps -423.50 9.50 423.50 16.50 MacLine -423.50 249.50 423.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 421.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -430.25 246.00 430.25 13.00 MacLine -grestore -1.00 ps -429.75 9.50 429.75 13.00 MacLine -429.75 249.50 429.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -436.62 246.00 436.62 13.00 MacLine -grestore -1.00 ps -436.12 9.50 436.12 13.00 MacLine -436.12 249.50 436.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.88 246.00 442.88 13.00 MacLine -grestore -1.00 ps -442.38 9.50 442.38 13.00 MacLine -442.38 249.50 442.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -449.25 246.00 449.25 13.00 MacLine -grestore -1.00 ps -448.75 9.50 448.75 13.00 MacLine -448.75 249.50 448.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -455.50 244.25 455.50 14.75 MacLine -grestore -1.00 ps -455.00 9.50 455.00 14.75 MacLine -455.00 249.50 455.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -461.75 246.00 461.75 13.00 MacLine -grestore -1.00 ps -461.25 9.50 461.25 13.00 MacLine -461.25 249.50 461.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -468.12 246.00 468.12 13.00 MacLine -grestore -1.00 ps -467.62 9.50 467.62 13.00 MacLine -467.62 249.50 467.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -474.38 246.00 474.38 13.00 MacLine -grestore -1.00 ps -473.88 9.50 473.88 13.00 MacLine -473.88 249.50 473.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.75 246.00 480.75 13.00 MacLine -grestore -1.00 ps -480.25 9.50 480.25 13.00 MacLine -480.25 249.50 480.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.00 244.25 487.00 14.75 MacLine -grestore -1.00 ps -486.50 9.50 486.50 14.75 MacLine -486.50 249.50 486.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -493.25 246.00 493.25 13.00 MacLine -grestore -1.00 ps -492.75 9.50 492.75 13.00 MacLine -492.75 249.50 492.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -499.62 246.00 499.62 13.00 MacLine -grestore -1.00 ps -499.12 9.50 499.12 13.00 MacLine -499.12 249.50 499.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -505.88 246.00 505.88 13.00 MacLine -grestore -1.00 ps -505.38 9.50 505.38 13.00 MacLine -505.38 249.50 505.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.25 246.00 512.25 13.00 MacLine -grestore -1.00 ps -511.75 9.50 511.75 13.00 MacLine -511.75 249.50 511.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -518.50 244.25 518.50 14.75 MacLine -grestore -1.00 ps -518.00 9.50 518.00 14.75 MacLine -518.00 249.50 518.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -524.75 246.00 524.75 13.00 MacLine -grestore -1.00 ps -524.25 9.50 524.25 13.00 MacLine -524.25 249.50 524.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -531.12 246.00 531.12 13.00 MacLine -grestore -1.00 ps -530.62 9.50 530.62 13.00 MacLine -530.62 249.50 530.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -537.38 246.00 537.38 13.00 MacLine -grestore -1.00 ps -536.88 9.50 536.88 13.00 MacLine -536.88 249.50 536.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -543.75 246.00 543.75 13.00 MacLine -grestore -1.00 ps -543.25 9.50 543.25 13.00 MacLine -543.25 249.50 543.25 246.00 MacLine -1 ps -1.00 ps -549.50 9.50 549.50 16.50 MacLine -549.50 249.50 549.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 547.25 262.25 5.50 WS -gsave 1.00 ps 298.00 249.50 298.00 10.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -(x \(m\)) 279.88 284.38 36.38 WS -0.50 ps -newpath 298.00 130.00 3.00 0 360 arc -0 StrokePath -296.62 128.62 299.50 131.50 2 CapLine -299.50 128.62 296.62 131.50 2 CapLine -newpath 350.88 121.12 3.00 0 360 arc -0 StrokePath -349.50 119.75 352.38 122.62 2 CapLine -352.38 119.75 349.50 122.62 2 CapLine -newpath 403.75 112.25 3.00 0 360 arc -0 StrokePath -402.38 110.88 405.25 113.75 2 CapLine -405.25 110.88 402.38 113.75 2 CapLine -newpath 456.62 103.38 3.00 0 360 arc -0 StrokePath -455.25 102.00 458.12 104.88 2 CapLine -458.12 102.00 455.25 104.88 2 CapLine -newpath 509.50 94.50 3.00 0 360 arc -0 StrokePath -508.12 93.12 511.00 96.00 2 CapLine -511.00 93.12 508.12 96.00 2 CapLine -1 ps -0.50 ps -295.00 130.00 301.00 130.00 2 CapLine -298.00 127.00 298.00 133.00 2 CapLine -310.50 143.62 316.50 143.62 2 CapLine -313.50 140.62 313.50 146.62 2 CapLine -326.12 157.38 332.12 157.38 2 CapLine -329.12 154.38 329.12 160.38 2 CapLine -341.62 171.00 347.62 171.00 2 CapLine -344.62 168.00 344.62 174.00 2 CapLine -357.25 184.62 363.25 184.62 2 CapLine -360.25 181.62 360.25 187.62 2 CapLine -372.75 198.38 378.75 198.38 2 CapLine -375.75 195.38 375.75 201.38 2 CapLine -388.38 212.00 394.38 212.00 2 CapLine -391.38 209.00 391.38 215.00 2 CapLine -403.88 225.62 409.88 225.62 2 CapLine -406.88 222.62 406.88 228.62 2 CapLine -419.50 239.25 425.50 239.25 2 CapLine -422.50 236.25 422.50 242.25 2 CapLine -1 ps -0.50 ps -newpath 235.00 130.00 3.00 0 360 arc -0 StrokePath -233.62 128.62 236.50 131.50 2 CapLine -236.50 128.62 233.62 131.50 2 CapLine -newpath 172.00 130.00 3.00 0 360 arc -0 StrokePath -170.62 128.62 173.50 131.50 2 CapLine -173.50 128.62 170.62 131.50 2 CapLine -newpath 109.00 130.00 3.00 0 360 arc -0 StrokePath -107.62 128.62 110.50 131.50 2 CapLine -110.50 128.62 107.62 131.50 2 CapLine -newpath 46.00 130.00 3.00 0 360 arc -0 StrokePath -44.62 128.62 47.50 131.50 2 CapLine -47.50 128.62 44.62 131.50 2 CapLine -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av8.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av8.gif deleted file mode 100755 index 89d14e368..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av8.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av9.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av9.eps deleted file mode 100755 index a14474ff8..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av9.eps +++ /dev/null @@ -1,1455 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 576 288 -%%Creator: Igor -%%Title: Graph8 -%%Creation Date: Thu, Oct 24, 1996 06:50 -%%DocumentFonts: (atend) -%%EndComments -0 288 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/rx0 0 def /ry0 0 def /rx1 0 def /ry1 0 def -/tmp0 0 def /tmp1 0 def -/packedRed 0 def /packedGreen 0 def /packedBlue 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/setuserscreendict 22 dict def -setuserscreendict begin - -/tempctm matrix def -/temprot matrix def -/tempscale matrix def - -/concatprocs{ - /proc2 exch cvlit def - /proc1 exch cvlit def - /newproc proc1 length proc2 length add array def - newproc 0 proc1 putinterval - newproc proc1 length proc2 putinterval - newproc cvx -}def - -/resmatrix matrix def -/findresolution{ - 72 0 resmatrix defaultmatrix dtransform - /yres xdef /xres xdef - xres dup mul yres dup mul add sqrt -}def -end - -/setuserscreen{ - setuserscreendict begin - /spotfunction xdef - /screenangle xdef - /cellsize xdef - - /m tempctm currentmatrix def - /rm screenangle temprot rotate def - /sm cellsize dup tempscale scale def - - sm rm m m concatmatrix m concatmatrix pop - 1 0 m dtransform /y1 xdef /x1 xdef - /veclength x1 dup mul y1 dup mul add sqrt def - /frequency findresolution veclength div def - /newscreenangle y1 x1 atan def - m 2 get m 1 get mul m 0 get m 3 get mul sub 0 gt - { - { neg } /spotfunction load concatprocs - /spotfunction xdef - } if - frequency newscreenangle /spotfunction load setscreen - end -}def - -/setpatterndict 18 dict def -setpatterndict begin -/bitison{ - /ybit xdef /xbit xdef - /bytevalue bstring ybit bwidth mul xbit 8 idiv add get def - /mask 1 7 xbit 8 mod sub bitshift def - bytevalue mask and 0 ne -}def -end - -/bitpatternspotfunction{ - setpatterndict begin - /y xdef /x xdef - /xindex x 1 add 2 div bpside mul cvi def - /yindex y 1 add 2 div bpside mul cvi def - xindex yindex bitison - { /onbits onbits 1 add def 1 } - { /offbits offbits 1 add def 0 } - ifelse - end -}def - -/setpattern{ - setpatterndict begin - /cellsz xdef - /angle xdef - /bwidth xdef - /bpside xdef - /bstring xdef - - /onbits 0 def /offbits 0 def - cellsz angle /bitpatternspotfunction load setuserscreen - {} settransfer - offbits offbits onbits add div setgray - end -}def - -/FillPattern{ % patternstring -- - /pat xdef - gsave - pat 8 1 0 72 300 32 div div setpattern - fill - grestore -}def - - - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .5 sub round .5 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - - - - -% **** begin image stuff ***** -% The following are used for images. This has to be kept -% in synch with corresponding code in ImageDisp.c.In particular -% the expansion factor, 8, has to be in synch. -% packedcolor is (red*256+green)*256+blue - -/SetPackedColor{ % packedcolor SetPackedColor -- - dup 256 mod /tmp0 xdef % extract blue - 256 idiv - dup 256 mod /tmp1 xdef % extract green - 256 idiv % extract red - 255 div /packedRed xdef - tmp1 255 div /packedGreen xdef - tmp0 255 div /packedBlue xdef -}bdef - -/IR_FillRect{ - gsave - newpath - rx0 ry0 M - rx1 ry0 L - rx1 ry1 L - rx0 ry1 L - closepath - packedRed packedGreen packedBlue setrgbcolor - fill - grestore -}bdef - -/NewRectImageLine{ % x0 y0 x1 y1 packedcolor NewRectImageLine -- - SetPackedColor - - /ry1 xdef /rx1 xdef /ry0 xdef /rx0 xdef % remember starting rectange for following calls - - IR_FillRect -}bdef - -/rx{ % xdist rx -- - 8 div - dup 0 lt - { rx0 /rx1 xdef rx1 add /rx0 xdef } % neg delta steps left - { rx1 /rx0 xdef rx0 add /rx1 xdef } - ifelse - IR_FillRect -}bdef - -/ry{ % ydist rr -- - 8 div - dup 0 lt - { ry1 /ry0 xdef ry0 exch sub /ry1 xdef } % neg delta steps down - { ry0 /ry1 xdef ry1 exch sub /ry0 xdef } - ifelse - IR_FillRect -}bdef - - -/cx{ % xdist packedcolor cx -- - SetPackedColor - rx -}bdef - -/cy{ % ydist packedcolor cx -- - SetPackedColor - ry -}bdef - -% **** end image stuff ***** - - - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -45.50 10.00 45.50 249.00 MacLine -549.50 10.00 549.50 249.00 MacLine -1 ps -1.00 ps -549.50 249.50 542.50 249.50 MacLine -45.50 249.50 52.50 249.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(-2) 33.12 252.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 244.00 546.00 244.00 MacLine -grestore -1.00 ps -549.50 243.50 546.00 243.50 MacLine -45.50 243.50 49.00 243.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 238.00 546.00 238.00 MacLine -grestore -1.00 ps -549.50 237.50 546.00 237.50 MacLine -45.50 237.50 49.00 237.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 232.00 546.00 232.00 MacLine -grestore -1.00 ps -549.50 231.50 546.00 231.50 MacLine -45.50 231.50 49.00 231.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 226.00 546.00 226.00 MacLine -grestore -1.00 ps -549.50 225.50 546.00 225.50 MacLine -45.50 225.50 49.00 225.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 220.00 544.25 220.00 MacLine -grestore -1.00 ps -549.50 219.50 544.25 219.50 MacLine -45.50 219.50 50.75 219.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 214.00 546.00 214.00 MacLine -grestore -1.00 ps -549.50 213.50 546.00 213.50 MacLine -45.50 213.50 49.00 213.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 208.00 546.00 208.00 MacLine -grestore -1.00 ps -549.50 207.50 546.00 207.50 MacLine -45.50 207.50 49.00 207.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 202.00 546.00 202.00 MacLine -grestore -1.00 ps -549.50 201.50 546.00 201.50 MacLine -45.50 201.50 49.00 201.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 196.00 546.00 196.00 MacLine -grestore -1.00 ps -549.50 195.50 546.00 195.50 MacLine -45.50 195.50 49.00 195.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 189.88 542.50 189.88 MacLine -grestore -1.00 ps -549.50 189.50 542.50 189.50 MacLine -45.50 189.50 52.50 189.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-1) 33.12 192.75 8.88 WS -gsave 0.125 ps [1] sd -49.00 184.00 546.00 184.00 MacLine -grestore -1.00 ps -549.50 183.50 546.00 183.50 MacLine -45.50 183.50 49.00 183.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 178.00 546.00 178.00 MacLine -grestore -1.00 ps -549.50 177.50 546.00 177.50 MacLine -45.50 177.50 49.00 177.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 172.00 546.00 172.00 MacLine -grestore -1.00 ps -549.50 171.50 546.00 171.50 MacLine -45.50 171.50 49.00 171.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 166.00 546.00 166.00 MacLine -grestore -1.00 ps -549.50 165.50 546.00 165.50 MacLine -45.50 165.50 49.00 165.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 160.00 544.25 160.00 MacLine -grestore -1.00 ps -549.50 159.50 544.25 159.50 MacLine -45.50 159.50 50.75 159.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 154.00 546.00 154.00 MacLine -grestore -1.00 ps -549.50 153.50 546.00 153.50 MacLine -45.50 153.50 49.00 153.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 148.00 546.00 148.00 MacLine -grestore -1.00 ps -549.50 147.50 546.00 147.50 MacLine -45.50 147.50 49.00 147.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 142.00 546.00 142.00 MacLine -grestore -1.00 ps -549.50 141.50 546.00 141.50 MacLine -45.50 141.50 49.00 141.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 136.00 546.00 136.00 MacLine -grestore -1.00 ps -549.50 135.50 546.00 135.50 MacLine -45.50 135.50 49.00 135.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 129.88 542.50 129.88 MacLine -grestore -1.00 ps -549.50 129.50 542.50 129.50 MacLine -45.50 129.50 52.50 129.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 36.50 132.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 124.00 546.00 124.00 MacLine -grestore -1.00 ps -549.50 123.50 546.00 123.50 MacLine -45.50 123.50 49.00 123.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 118.00 546.00 118.00 MacLine -grestore -1.00 ps -549.50 117.50 546.00 117.50 MacLine -45.50 117.50 49.00 117.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 112.00 546.00 112.00 MacLine -grestore -1.00 ps -549.50 111.50 546.00 111.50 MacLine -45.50 111.50 49.00 111.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 106.00 546.00 106.00 MacLine -grestore -1.00 ps -549.50 105.50 546.00 105.50 MacLine -45.50 105.50 49.00 105.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 100.00 544.25 100.00 MacLine -grestore -1.00 ps -549.50 99.50 544.25 99.50 MacLine -45.50 99.50 50.75 99.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 94.00 546.00 94.00 MacLine -grestore -1.00 ps -549.50 93.50 546.00 93.50 MacLine -45.50 93.50 49.00 93.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 88.00 546.00 88.00 MacLine -grestore -1.00 ps -549.50 87.50 546.00 87.50 MacLine -45.50 87.50 49.00 87.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 82.00 546.00 82.00 MacLine -grestore -1.00 ps -549.50 81.50 546.00 81.50 MacLine -45.50 81.50 49.00 81.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 76.00 546.00 76.00 MacLine -grestore -1.00 ps -549.50 75.50 546.00 75.50 MacLine -45.50 75.50 49.00 75.50 MacLine -1 ps -gsave 0.25 ps [1] sd -52.50 69.88 542.50 69.88 MacLine -grestore -1.00 ps -549.50 69.50 542.50 69.50 MacLine -45.50 69.50 52.50 69.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(1) 36.50 72.75 5.50 WS -gsave 0.125 ps [1] sd -49.00 64.00 546.00 64.00 MacLine -grestore -1.00 ps -549.50 63.50 546.00 63.50 MacLine -45.50 63.50 49.00 63.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 58.00 546.00 58.00 MacLine -grestore -1.00 ps -549.50 57.50 546.00 57.50 MacLine -45.50 57.50 49.00 57.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 52.00 546.00 52.00 MacLine -grestore -1.00 ps -549.50 51.50 546.00 51.50 MacLine -45.50 51.50 49.00 51.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 46.00 546.00 46.00 MacLine -grestore -1.00 ps -549.50 45.50 546.00 45.50 MacLine -45.50 45.50 49.00 45.50 MacLine -1 ps -gsave 0.125 ps [1] sd -50.75 40.00 544.25 40.00 MacLine -grestore -1.00 ps -549.50 39.50 544.25 39.50 MacLine -45.50 39.50 50.75 39.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 34.00 546.00 34.00 MacLine -grestore -1.00 ps -549.50 33.50 546.00 33.50 MacLine -45.50 33.50 49.00 33.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 28.00 546.00 28.00 MacLine -grestore -1.00 ps -549.50 27.50 546.00 27.50 MacLine -45.50 27.50 49.00 27.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 22.00 546.00 22.00 MacLine -grestore -1.00 ps -549.50 21.50 546.00 21.50 MacLine -45.50 21.50 49.00 21.50 MacLine -1 ps -gsave 0.125 ps [1] sd -49.00 16.00 546.00 16.00 MacLine -grestore -1.00 ps -549.50 15.50 546.00 15.50 MacLine -45.50 15.50 49.00 15.50 MacLine -1 ps -1.00 ps -549.50 9.50 542.50 9.50 MacLine -45.50 9.50 52.50 9.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 36.50 12.75 5.50 WS -gsave 1.00 ps 46.50 130.00 549.50 130.00 2 CapLine grestore -16.00 (_Helvetica) 0 F -gsave 12.38 148.12 translate -90 rotate -(y \(m\)) 0.00 0.00 36.38 WS -grestore -1.00 ps -46.00 249.50 549.00 249.50 MacLine -46.00 9.50 549.00 9.50 MacLine -1 ps -1.00 ps -45.50 9.50 45.50 16.50 MacLine -45.50 249.50 45.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-4) 41.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -52.25 246.00 52.25 13.00 MacLine -grestore -1.00 ps -51.75 9.50 51.75 13.00 MacLine -51.75 249.50 51.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -58.62 246.00 58.62 13.00 MacLine -grestore -1.00 ps -58.12 9.50 58.12 13.00 MacLine -58.12 249.50 58.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -64.88 246.00 64.88 13.00 MacLine -grestore -1.00 ps -64.38 9.50 64.38 13.00 MacLine -64.38 249.50 64.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -71.25 246.00 71.25 13.00 MacLine -grestore -1.00 ps -70.75 9.50 70.75 13.00 MacLine -70.75 249.50 70.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -77.50 244.25 77.50 14.75 MacLine -grestore -1.00 ps -77.00 9.50 77.00 14.75 MacLine -77.00 249.50 77.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -83.75 246.00 83.75 13.00 MacLine -grestore -1.00 ps -83.25 9.50 83.25 13.00 MacLine -83.25 249.50 83.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -90.12 246.00 90.12 13.00 MacLine -grestore -1.00 ps -89.62 9.50 89.62 13.00 MacLine -89.62 249.50 89.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -96.38 246.00 96.38 13.00 MacLine -grestore -1.00 ps -95.88 9.50 95.88 13.00 MacLine -95.88 249.50 95.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -102.75 246.00 102.75 13.00 MacLine -grestore -1.00 ps -102.25 9.50 102.25 13.00 MacLine -102.25 249.50 102.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -109.00 244.25 109.00 14.75 MacLine -grestore -1.00 ps -108.50 9.50 108.50 14.75 MacLine -108.50 249.50 108.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -115.25 246.00 115.25 13.00 MacLine -grestore -1.00 ps -114.75 9.50 114.75 13.00 MacLine -114.75 249.50 114.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -121.62 246.00 121.62 13.00 MacLine -grestore -1.00 ps -121.12 9.50 121.12 13.00 MacLine -121.12 249.50 121.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -127.88 246.00 127.88 13.00 MacLine -grestore -1.00 ps -127.38 9.50 127.38 13.00 MacLine -127.38 249.50 127.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -134.25 246.00 134.25 13.00 MacLine -grestore -1.00 ps -133.75 9.50 133.75 13.00 MacLine -133.75 249.50 133.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -140.50 244.25 140.50 14.75 MacLine -grestore -1.00 ps -140.00 9.50 140.00 14.75 MacLine -140.00 249.50 140.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -146.75 246.00 146.75 13.00 MacLine -grestore -1.00 ps -146.25 9.50 146.25 13.00 MacLine -146.25 249.50 146.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -153.12 246.00 153.12 13.00 MacLine -grestore -1.00 ps -152.62 9.50 152.62 13.00 MacLine -152.62 249.50 152.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -159.38 246.00 159.38 13.00 MacLine -grestore -1.00 ps -158.88 9.50 158.88 13.00 MacLine -158.88 249.50 158.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -165.75 246.00 165.75 13.00 MacLine -grestore -1.00 ps -165.25 9.50 165.25 13.00 MacLine -165.25 249.50 165.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -171.88 242.50 171.88 16.50 MacLine -grestore -1.00 ps -171.50 9.50 171.50 16.50 MacLine -171.50 249.50 171.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-2) 167.62 262.25 8.88 WS -gsave 0.125 ps [1] sd -178.25 246.00 178.25 13.00 MacLine -grestore -1.00 ps -177.75 9.50 177.75 13.00 MacLine -177.75 249.50 177.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -184.62 246.00 184.62 13.00 MacLine -grestore -1.00 ps -184.12 9.50 184.12 13.00 MacLine -184.12 249.50 184.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -190.88 246.00 190.88 13.00 MacLine -grestore -1.00 ps -190.38 9.50 190.38 13.00 MacLine -190.38 249.50 190.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -197.25 246.00 197.25 13.00 MacLine -grestore -1.00 ps -196.75 9.50 196.75 13.00 MacLine -196.75 249.50 196.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -203.50 244.25 203.50 14.75 MacLine -grestore -1.00 ps -203.00 9.50 203.00 14.75 MacLine -203.00 249.50 203.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -209.75 246.00 209.75 13.00 MacLine -grestore -1.00 ps -209.25 9.50 209.25 13.00 MacLine -209.25 249.50 209.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -216.12 246.00 216.12 13.00 MacLine -grestore -1.00 ps -215.62 9.50 215.62 13.00 MacLine -215.62 249.50 215.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -222.38 246.00 222.38 13.00 MacLine -grestore -1.00 ps -221.88 9.50 221.88 13.00 MacLine -221.88 249.50 221.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -228.75 246.00 228.75 13.00 MacLine -grestore -1.00 ps -228.25 9.50 228.25 13.00 MacLine -228.25 249.50 228.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -235.00 244.25 235.00 14.75 MacLine -grestore -1.00 ps -234.50 9.50 234.50 14.75 MacLine -234.50 249.50 234.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -241.25 246.00 241.25 13.00 MacLine -grestore -1.00 ps -240.75 9.50 240.75 13.00 MacLine -240.75 249.50 240.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -247.62 246.00 247.62 13.00 MacLine -grestore -1.00 ps -247.12 9.50 247.12 13.00 MacLine -247.12 249.50 247.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -253.88 246.00 253.88 13.00 MacLine -grestore -1.00 ps -253.38 9.50 253.38 13.00 MacLine -253.38 249.50 253.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -260.25 246.00 260.25 13.00 MacLine -grestore -1.00 ps -259.75 9.50 259.75 13.00 MacLine -259.75 249.50 259.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -266.50 244.25 266.50 14.75 MacLine -grestore -1.00 ps -266.00 9.50 266.00 14.75 MacLine -266.00 249.50 266.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -272.75 246.00 272.75 13.00 MacLine -grestore -1.00 ps -272.25 9.50 272.25 13.00 MacLine -272.25 249.50 272.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -279.12 246.00 279.12 13.00 MacLine -grestore -1.00 ps -278.62 9.50 278.62 13.00 MacLine -278.62 249.50 278.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -285.38 246.00 285.38 13.00 MacLine -grestore -1.00 ps -284.88 9.50 284.88 13.00 MacLine -284.88 249.50 284.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -291.75 246.00 291.75 13.00 MacLine -grestore -1.00 ps -291.25 9.50 291.25 13.00 MacLine -291.25 249.50 291.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -297.88 242.50 297.88 16.50 MacLine -grestore -1.00 ps -297.50 9.50 297.50 16.50 MacLine -297.50 249.50 297.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 295.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -304.25 246.00 304.25 13.00 MacLine -grestore -1.00 ps -303.75 9.50 303.75 13.00 MacLine -303.75 249.50 303.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -310.62 246.00 310.62 13.00 MacLine -grestore -1.00 ps -310.12 9.50 310.12 13.00 MacLine -310.12 249.50 310.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -316.88 246.00 316.88 13.00 MacLine -grestore -1.00 ps -316.38 9.50 316.38 13.00 MacLine -316.38 249.50 316.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -323.25 246.00 323.25 13.00 MacLine -grestore -1.00 ps -322.75 9.50 322.75 13.00 MacLine -322.75 249.50 322.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -329.50 244.25 329.50 14.75 MacLine -grestore -1.00 ps -329.00 9.50 329.00 14.75 MacLine -329.00 249.50 329.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -335.75 246.00 335.75 13.00 MacLine -grestore -1.00 ps -335.25 9.50 335.25 13.00 MacLine -335.25 249.50 335.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -342.12 246.00 342.12 13.00 MacLine -grestore -1.00 ps -341.62 9.50 341.62 13.00 MacLine -341.62 249.50 341.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -348.38 246.00 348.38 13.00 MacLine -grestore -1.00 ps -347.88 9.50 347.88 13.00 MacLine -347.88 249.50 347.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -354.75 246.00 354.75 13.00 MacLine -grestore -1.00 ps -354.25 9.50 354.25 13.00 MacLine -354.25 249.50 354.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -361.00 244.25 361.00 14.75 MacLine -grestore -1.00 ps -360.50 9.50 360.50 14.75 MacLine -360.50 249.50 360.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -367.25 246.00 367.25 13.00 MacLine -grestore -1.00 ps -366.75 9.50 366.75 13.00 MacLine -366.75 249.50 366.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -373.62 246.00 373.62 13.00 MacLine -grestore -1.00 ps -373.12 9.50 373.12 13.00 MacLine -373.12 249.50 373.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -379.88 246.00 379.88 13.00 MacLine -grestore -1.00 ps -379.38 9.50 379.38 13.00 MacLine -379.38 249.50 379.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -386.25 246.00 386.25 13.00 MacLine -grestore -1.00 ps -385.75 9.50 385.75 13.00 MacLine -385.75 249.50 385.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -392.50 244.25 392.50 14.75 MacLine -grestore -1.00 ps -392.00 9.50 392.00 14.75 MacLine -392.00 249.50 392.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -398.75 246.00 398.75 13.00 MacLine -grestore -1.00 ps -398.25 9.50 398.25 13.00 MacLine -398.25 249.50 398.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -405.12 246.00 405.12 13.00 MacLine -grestore -1.00 ps -404.62 9.50 404.62 13.00 MacLine -404.62 249.50 404.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -411.38 246.00 411.38 13.00 MacLine -grestore -1.00 ps -410.88 9.50 410.88 13.00 MacLine -410.88 249.50 410.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -417.75 246.00 417.75 13.00 MacLine -grestore -1.00 ps -417.25 9.50 417.25 13.00 MacLine -417.25 249.50 417.25 246.00 MacLine -1 ps -gsave 0.25 ps [1] sd -423.88 242.50 423.88 16.50 MacLine -grestore -1.00 ps -423.50 9.50 423.50 16.50 MacLine -423.50 249.50 423.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 421.25 262.25 5.50 WS -gsave 0.125 ps [1] sd -430.25 246.00 430.25 13.00 MacLine -grestore -1.00 ps -429.75 9.50 429.75 13.00 MacLine -429.75 249.50 429.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -436.62 246.00 436.62 13.00 MacLine -grestore -1.00 ps -436.12 9.50 436.12 13.00 MacLine -436.12 249.50 436.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -442.88 246.00 442.88 13.00 MacLine -grestore -1.00 ps -442.38 9.50 442.38 13.00 MacLine -442.38 249.50 442.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -449.25 246.00 449.25 13.00 MacLine -grestore -1.00 ps -448.75 9.50 448.75 13.00 MacLine -448.75 249.50 448.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -455.50 244.25 455.50 14.75 MacLine -grestore -1.00 ps -455.00 9.50 455.00 14.75 MacLine -455.00 249.50 455.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -461.75 246.00 461.75 13.00 MacLine -grestore -1.00 ps -461.25 9.50 461.25 13.00 MacLine -461.25 249.50 461.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -468.12 246.00 468.12 13.00 MacLine -grestore -1.00 ps -467.62 9.50 467.62 13.00 MacLine -467.62 249.50 467.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -474.38 246.00 474.38 13.00 MacLine -grestore -1.00 ps -473.88 9.50 473.88 13.00 MacLine -473.88 249.50 473.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -480.75 246.00 480.75 13.00 MacLine -grestore -1.00 ps -480.25 9.50 480.25 13.00 MacLine -480.25 249.50 480.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -487.00 244.25 487.00 14.75 MacLine -grestore -1.00 ps -486.50 9.50 486.50 14.75 MacLine -486.50 249.50 486.50 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -493.25 246.00 493.25 13.00 MacLine -grestore -1.00 ps -492.75 9.50 492.75 13.00 MacLine -492.75 249.50 492.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -499.62 246.00 499.62 13.00 MacLine -grestore -1.00 ps -499.12 9.50 499.12 13.00 MacLine -499.12 249.50 499.12 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -505.88 246.00 505.88 13.00 MacLine -grestore -1.00 ps -505.38 9.50 505.38 13.00 MacLine -505.38 249.50 505.38 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -512.25 246.00 512.25 13.00 MacLine -grestore -1.00 ps -511.75 9.50 511.75 13.00 MacLine -511.75 249.50 511.75 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -518.50 244.25 518.50 14.75 MacLine -grestore -1.00 ps -518.00 9.50 518.00 14.75 MacLine -518.00 249.50 518.00 244.25 MacLine -1 ps -gsave 0.125 ps [1] sd -524.75 246.00 524.75 13.00 MacLine -grestore -1.00 ps -524.25 9.50 524.25 13.00 MacLine -524.25 249.50 524.25 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -531.12 246.00 531.12 13.00 MacLine -grestore -1.00 ps -530.62 9.50 530.62 13.00 MacLine -530.62 249.50 530.62 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -537.38 246.00 537.38 13.00 MacLine -grestore -1.00 ps -536.88 9.50 536.88 13.00 MacLine -536.88 249.50 536.88 246.00 MacLine -1 ps -gsave 0.125 ps [1] sd -543.75 246.00 543.75 13.00 MacLine -grestore -1.00 ps -543.25 9.50 543.25 13.00 MacLine -543.25 249.50 543.25 246.00 MacLine -1 ps -1.00 ps -549.50 9.50 549.50 16.50 MacLine -549.50 249.50 549.50 242.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 547.25 262.25 5.50 WS -gsave 1.00 ps 298.00 249.50 298.00 10.50 2 CapLine grestore -16.00 (_Helvetica) 0 F -(x \(m\)) 279.88 284.38 36.38 WS -0.50 ps -newpath 298.00 130.00 3.00 0 360 arc -0 StrokePath -296.62 128.62 299.50 131.50 2 CapLine -299.50 128.62 296.62 131.50 2 CapLine -newpath 311.88 101.62 3.00 0 360 arc -0 StrokePath -310.50 100.25 313.38 103.12 2 CapLine -313.38 100.25 310.50 103.12 2 CapLine -newpath 325.75 73.38 3.00 0 360 arc -0 StrokePath -324.38 72.00 327.25 74.88 2 CapLine -327.25 72.00 324.38 74.88 2 CapLine -newpath 339.62 45.00 3.00 0 360 arc -0 StrokePath -338.25 43.62 341.12 46.50 2 CapLine -341.12 43.62 338.25 46.50 2 CapLine -newpath 353.50 16.75 3.00 0 360 arc -0 StrokePath -352.12 15.38 355.00 18.25 2 CapLine -355.00 15.38 352.12 18.25 2 CapLine -1 ps -0.50 ps -295.00 130.00 301.00 130.00 2 CapLine -298.00 127.00 298.00 133.00 2 CapLine -324.75 147.12 330.75 147.12 2 CapLine -327.75 144.12 327.75 150.12 2 CapLine -354.50 164.38 360.50 164.38 2 CapLine -357.50 161.38 357.50 167.38 2 CapLine -384.38 181.50 390.38 181.50 2 CapLine -387.38 178.50 387.38 184.50 2 CapLine -414.12 198.62 420.12 198.62 2 CapLine -417.12 195.62 417.12 201.62 2 CapLine -443.88 215.88 449.88 215.88 2 CapLine -446.88 212.88 446.88 218.88 2 CapLine -473.62 233.00 479.62 233.00 2 CapLine -476.62 230.00 476.62 236.00 2 CapLine -1 ps -0.50 ps -newpath 235.00 130.00 3.00 0 360 arc -0 StrokePath -233.62 128.62 236.50 131.50 2 CapLine -236.50 128.62 233.62 131.50 2 CapLine -newpath 172.00 130.00 3.00 0 360 arc -0 StrokePath -170.62 128.62 173.50 131.50 2 CapLine -173.50 128.62 170.62 131.50 2 CapLine -newpath 109.00 130.00 3.00 0 360 arc -0 StrokePath -107.62 128.62 110.50 131.50 2 CapLine -110.50 128.62 107.62 131.50 2 CapLine -newpath 46.00 130.00 3.00 0 360 arc -0 StrokePath -44.62 128.62 47.50 131.50 2 CapLine -47.50 128.62 44.62 131.50 2 CapLine -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av9.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av9.gif deleted file mode 100755 index fa5fd7167..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob09av9.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob11a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob11a.eps deleted file mode 100755 index 6fba594f4..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob11a.eps +++ /dev/null @@ -1,490 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: pool table.eps -%%CreationDate: 3/20/1996 -%%Pages: 0 -%%DocumentFonts: Symbol -%%BoundingBox:55 416 522 694 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Symbol Symbol -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Symbol/Symbol 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -1033 1762 9002 6450 R -0 0 0 1 1 1 [76 210 83 45 150 89 70 179] patfill -gr -gs -1033.625 1762.625 9002.375 6450.375 R -1.25 slw 0 sg str -gr -gs -1033 1762 1658 2387 OV -0.25 sg fill -gr -gs -1033.625 1762.625 1658.375 2387.375 OV -1.25 slw 0 sg str -gr -gs -4705 1762 5330 2387 OV -0.25 sg fill -gr -gs -4705.625 1762.625 5330.375 2387.375 OV -1.25 slw 0 sg str -gr -gs -8377 1762 9002 2387 OV -0.25 sg fill -gr -gs -8377.625 1762.625 9002.375 2387.375 OV -1.25 slw 0 sg str -gr -gs -8377 5825 9002 6450 OV -0.25 sg fill -gr -gs -8377.625 5825.625 9002.375 6450.375 OV -1.25 slw 0 sg str -gr -gs -4705 5825 5330 6450 OV -0.25 sg fill -gr -gs -4705.625 5825.625 5330.375 6450.375 OV -1.25 slw 0 sg str -gr -gs -1033 5825 1658 6450 OV -0.25 sg fill -gr -gs -1033.625 5825.625 1658.375 6450.375 OV -1.25 slw 0 sg str -gr -gs -1345 2074 8689 6137 R -0.75 sg fill -gr -gs -1345.625 2074.625 8689.375 6137.375 R -1.25 slw 0 sg str -gr -gs -2595 3949 2908 4262 OV -1 sg fill -gr -gs -2595.625 3949.625 2908.375 4262.375 OV -1.25 slw 0 sg str -gr -gs -5564.625 3910.625 5877.375 4223.375 OV -1.25 slw 0 sg str -gr -gs -4314 4106 4079 4169 4079 4043 2 P -0 sg fill -gr -gs -2908.5 4106.5 m -4079.5 4106.5 L -35 slw 0 sg str -gr -gs -5720.5 4106.5 m -8220.5 2387.5 L -35 slw 0 sg str -gr -gs -8064 2231 8377 2543 OV -0 sg fill -gr -gs -5720.5 4106.5 m -6814.5 5668.5 L -35 slw 0 sg str -gr -gs -4314.5 4106.5 m -5720.5 4106.5 L -35 slw 0 sg str -gr -gs -5720.5 4106.5 m -5820.5 4106.5 L -35 slw 0 sg str -gr -gs -5928.5 4106.5 m -6028.5 4106.5 L -35 slw 0 sg str -gr -gs -6137.5 4106.5 m -6237.5 4106.5 L -35 slw 0 sg str -gr -gs -6345.5 4106.5 m -6445.5 4106.5 L -35 slw 0 sg str -gr -gs -6553.5 4106.5 m -6653.5 4106.5 L -35 slw 0 sg str -gr -gs -6762.5 4106.5 m -6862.5 4106.5 L -35 slw 0 sg str -gr -gs -6970.5 4106.5 m -7070.5 4106.5 L -35 slw 0 sg str -gr -gs -7178.5 4106.5 m -7278.5 4106.5 L -35 slw 0 sg str -gr -gs -7387.5 4106.5 m -7487.5 4106.5 L -35 slw 0 sg str -gr -gs -7595.5 4106.5 m -7695.5 4106.5 L -35 slw 0 sg str -gr -gs -7803.5 4106.5 m -7830.5 4106.5 L -35 slw 0 sg str -gr -gs -6658 5512 6970 5825 OV -1 sg fill -gr -gs -6658.625 5512.625 6970.375 5825.375 OV -1.25 slw 0 sg str -gr -gs -7205 3090 7046 3273 6975 3169 2 P -0 sg fill -gr -gs -6267 4887 6081 4731 6184 4659 2 P -0 sg fill -gr -gs -6672 3430 6710 3489 6734 3531 6756 3574 6777 3618 6795 3663 6812 3708 6826 3754 -6839 3801 6850 3848 6859 3896 6866 3944 6871 3992 6874 4040 6875 4089 14 P -35 slw 0 sg str -gr -gs -6367 4089 6365 4144 6361 4180 6355 4216 6347 4252 6337 4287 6325 4322 6311 4355 -6296 4389 6278 4421 6259 4452 6238 4482 6216 4511 6192 4539 6166 4565 6139 4590 -6111 4613 6082 4634 6081 4635 18 P -35 slw 0 sg str -gr -gs -6931 3459 7140 3997 R -1 sg fill -gr -/_Symbol ff [417 0 0 -417 0 0] mf sf -6931 3858 m 0 sg (q) show -gs -6384 4279 6593 4818 R -1 sg fill -gr -6384 4678 m 4.17 slw 0 sg (f) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob11a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob11a.gif deleted file mode 100755 index c584c92cc..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob11a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob11a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob11a.pdf deleted file mode 100644 index 0de97d781..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob11a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob13a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob13a.eps deleted file mode 100755 index c1524f7e5..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob13a.eps +++ /dev/null @@ -1,402 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 - -%%Creator: MiniCad+ 4.0 - -%%Title: mdt3p5f.eps - -%%CreationDate: 11/7/1994 - -%%Pages: 0 - -%%DocumentFonts: Times-Roman - -%%BoundingBox:45 487 415 623 - -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -4625 4106 4627 4077 4631 4056 4637 4036 4645 4016 4654 3998 4666 3980 4679 3963 -4693 3948 4709 3934 4726 3922 4744 3911 4764 3903 4783 3896 4804 3891 4825 3888 -4846 3887 4867 3888 4887 3891 4908 3896 4928 3903 4947 3911 4965 3922 4982 3934 -4998 3948 5013 3963 5026 3980 5037 3998 5047 4016 5054 4036 5060 4056 5064 4077 -5066 4098 5066 4118 5064 4139 5060 4160 5054 4180 5047 4200 5037 4218 5026 4236 -5013 4253 5002 4264 41 P -1.25 slw 0 sg str -gr -gs -0 slc -newpath -4937.625 3887.625 5379.375 4329.375 315 225 A -1.25 slw 0 sg str -gr -gs -0 slc -newpath -5250.625 3887.625 5692.375 4329.375 315 225 A -1.25 slw 0 sg str -gr -gs -0 slc -newpath -5562.625 3887.625 6004.375 4329.375 315 225 A -1.25 slw 0 sg str -gr -gs -5939 4264 5916 4236 5904 4218 5895 4200 5887 4180 5881 4160 5877 4139 5875 4118 -5875 4098 5877 4077 5881 4056 5887 4036 5895 4016 5904 3998 5916 3980 5929 3963 -5943 3948 5959 3934 5976 3922 5994 3911 6014 3903 6033 3896 6054 3891 6075 3888 -6096 3887 6117 3888 6137 3891 6158 3896 6178 3903 6197 3911 6215 3922 6232 3934 -6248 3948 6263 3963 6276 3980 6287 3998 6297 4016 6304 4036 6310 4056 6314 4077 -6316 4098 6317 4106 41 P -1.25 slw 0 sg str -gr -gs -6317.625 4106.625 m -6643.625 4106.625 L -1.25 slw 0 sg str -gr -gs -4625.625 4106.625 m -4299.625 4106.625 L -1.25 slw 0 sg str -gr -gs -2580 4421 2422 4495 2422 4347 2 P -0 sg fill -gr -gs -1955.625 4421.625 m -2580.625 4421.625 L -1.25 slw 0 sg str -gr -gs -2632 4308 2840 4533 R -1 sg fill -gr -/_Times-Roman ff [208 0 0 -208 0 0] mf sf -2632 4464 m 0 sg (v1) show -gs -5419 4282 5523 4507 R -1 sg fill -gr -5419 4438 m 0 sg (k) show -gs -3205 3639 4299 4733 R -0.75 sg fill -gr -gs -3205.625 3639.625 4299.375 4733.375 R -1.25 slw 0 sg str -gr -gs -3622 4073 3882 4299 R -1 sg fill -gr -3622 4229 m 0 sg (m2) show -gs -1330 4108 1955 4733 R -0.87 sg fill -gr -gs -1330.625 4108.625 1955.375 4733.375 R -1.25 slw 0 sg str -gr -gs -1512 4308 1773 4533 R -1 sg fill -gr -1512 4464 m 0 sg (m1) show -gs -1330 4733 1017 4733 1017 5046 6955 5046 6955 3170 6643 3170 6643 4733 1330 4733 -7 P closepath -0 0 0 1 1 1 [247 189 255 111 251 191 239 254] patfill -gr -gs -1330 4733 1017 4733 1017 5046 6955 5046 6955 3170 6643 3170 6643 4733 1330 4733 -7 P closepath -1.25 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob13a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob13a.gif deleted file mode 100755 index af17a8fc1..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob13a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob13a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob13a.pdf deleted file mode 100644 index 4d1b57cbc..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob13a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob19.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob19.eps deleted file mode 100755 index 38af8de07..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob19.eps +++ /dev/null @@ -1,520 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: Untitled1.create -%%Creator: Create -%%CreationDate: Mon Mar 3 12:13:45 1997 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 185 501 361 725 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(#QYW'!d`2lj$o*PW!`VG'+N/d164edrJrC@/i!'1!reLUq@XF)T>] -% QZS[p3nc*&\R+@s#Ni+Tnr7S06/BAO$;Qk"m98A[#Tu;c\V2h'J=W!*`WX(snQ\o*&3f?hYS -% 45,ETS-P>:N*LJt\#:!/%OF3MhNWRWr:T.O%po.F(4,k&d+nk>.!\DYJ[*S5f%ZC -% _s&CM#\+.7ph^6iV2Pb?2b'UQj)o5+ol:+aP\2e*5IA`0d)"`Kh=&W"c$rbZUBVXNG)OQ-X$ -% gASLeN"8rN`M7_fcpe//DrWH'GV20)g/rIPpVbQ!*]\CnIpEV -% &QBWOR/fd8Y%X)L\S%;Xq306!^&gA0+b_PQ#m12RTE$@$U8tGKIC0I@]9j5DBr>Pqpt?j088 -% n`f!%`^%&;(g.b:je-6H;5S^cAHc^sT]%!J#V#^aTX2L5HDYp)(T+WXrkiP%,nsD^>^+&jQI -% +/-,1*!c(@]!!Zg,DPjKeXJs)H!WrK((^!-W0c59.c3G>LYY>2'hDTDV-JOsZb/`e$8eWp(R -% m>4e*_AkbL)?ZU\)E>dJ]ci#;@*H0"Tq"4'iYHi\U,'>+MgVor9h4_#iNkN$>d"5^]+Khg;& -% [EkAIp=/*M*(:dZeM&JSH.Z,Raoi\ALuB1DH1A`js[b:^i^[Z>@]/2uBH+5epU5nBNRifg\! -% 39X!cCaI!>QS(/GK32t_em!@sFkF"B:3MLBT7'>c!Na!3be;&VZ]]LH(5Un%)pWY%#;e/')K -% LeQ7T/GM@K<-;\OQW^huUc%BePu\=2@!(+PR$n(m%:U!bp7&kc'D5(f1T(!l+gH`/[l>!hZ% -% Qe0E`O@M:/_:1hf6SQ,@p2S'a\!sCkS"/ZBU7Y?q7P3,"88l/H!;AbmH0fTFETS">Vh55(41 -% (lpoJLFLVTbokB+4,/>%CK*,$\_?hAVLG5#nM#]Ag"]fl"KR/1O"^D0;!il,[FKn94i4.Sc%Oh6^Yn@o$N+fr8SInALL#/1(Yd/$O -% ,5s#[79OPafjiJsIdWk)ls/Y?[:gOr9'eWl:C;6Qfx -% EndEmbeddedGraphics N 1256 4e8 E b6 S 20e18 R 97eae8e6 -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -185 501 176 224 rectclip -0 0 2 1 10 SU -294 532 T -N -2 L -0.15862 nxsetgray -0 182 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -207.336609 552.886536 T -N -2 L -0.15862 nxsetgray -86.326782 160.22699 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -[2] 0 setdash -[1 0 0 -1 237 771] concat -[1 0 0 -1 1 113] concat -N -2 L -0 nxsetgray -N -56 56 56 -90 -116.565048 arcn -s -0 0 T -grestore -0 0 2 1 10 SU -[1 0 0 -1 186 557] concat -[1 0 0 1 1 1] concat -N -0.565523 nxsetgray -gsave -28 28 0 0 oval fill -grestore -2 L -0.15862 nxsetgray -gsave -28 28 0 0 oval 0.035714 0.035714 S s -grestore -0 0 T -grestore -0 0 2 1 10 SU -[1 0 0 -1 279 533] concat -[1 0 0 1 1 1] concat -N -0.565523 nxsetgray -gsave -28 28 0 0 oval fill -grestore -2 L -0.15862 nxsetgray -gsave -28 28 0 0 oval 0.035714 0.035714 S s -grestore -0 0 T -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 193 533] concat -0 0 2 1 10 SU -gsave -/Helvetica findfont 12 scalefont [1 0 0 -1 0 0] makefont -12 -exch -defineuserobject -12 execuserobject setfont -1 4 T -11 flipV -6 5.5 T --5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(M) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -/Helvetica findfont 11 scalefont [1 0 0 -1 0 0] makefont -41 -exch -defineuserobject -41 execuserobject setfont -11 1 T -10 flipV -4.5 5 T --3.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(1) show -0 0 T -grestore -grestore -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 285 508] concat -0 0 0.15 1 10 SU -gsave -12 execuserobject setfont -1 5 T -11 flipV -6 5.5 T --5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(M) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -41 execuserobject setfont -12 1 T -10 flipV -4.5 5 T --3.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(2) show -0 0 T -grestore -grestore -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 279 686] concat -gsave -/Symbol findfont 18 scalefont [1 0 0 -1 0 0] makefont -228 -exch -defineuserobject -228 execuserobject setfont -8 7.5 T --7 6 T -N 0 0 m -0 nxsetgray -0 0 m -(q ) show -0 0 T -grestore -grestore -0 0 2 1 10 SU -322 518 T -N -2 L -0 nxsetgray -0 70 0 0 line --90 0 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 317 610] concat -gsave -/Helvetica findfont 18 scalefont [1 0 0 -1 0 0] makefont -233 -exch -defineuserobject -233 execuserobject setfont -6.5 7.5 T --5.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(L) show -0 0 T -grestore -grestore -0 0 2 1 10 SU -322 616 T -N -2 L -0 nxsetgray -0 98 0 0 line -90 0 98 arrow -0 0 T -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Symbol -%%+ Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob19.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob19.gif deleted file mode 100755 index 2a7579d83..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob19.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob19.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob19.pdf deleted file mode 100644 index b655356b0..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob19.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob20.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob20.eps deleted file mode 100755 index f0d71b6ae..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob20.eps +++ /dev/null @@ -1,604 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: Untitled2.create -%%Creator: Create -%%CreationDate: Mon Mar 3 15:42:52 1997 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 88 212 546 644 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(2u_n\R%AdlucPUa3d7)4a[1P$AG#dcraNuT@fr_fmu943[:R5GXS#nh>nd -% 6KU;/ne.;:700lNV::iM++9T#TQObA/9#bZN<&(I8+o<-bObR'L"X(2e(IJ?-=6]Lr!D' -% Bh:^KB6'SCqcYRlK(+CN=n"mH`f0_`D:'KdE9<35o#AXTDuT8!=H)$L9P(c1;j-NHibYf@T@5`0pXQ!tg8VN;A@.8?I -% U@"JQXnmI+a)KK13;,('@EPQ[p4a)ae^AW\Y2RHTDeg,UPgf1-_k`56oSCof4ATjGMO^i,^O)dq-F)","X)1A=X -% osQ3`YMTU-3^8>1_dA-`3k*mOrKSWVVD*2S)gC8n)%EZ-0+1Y-e\N]SHE,EP5)Gq+uV0$.X> -% Y!tE_PuhS.V64*Ql)U2s"nH7JE<7:NRPctL`"W?.OiA8PcuG0eAK4-9!DNu-E)3!'Jc_@L!" -% ]DF!X&K(SZG#4XD<+`^oVF@b,4NAYBsIgtK#X3i^uUcUocoaa0[$Dpj1f*C'`iLV#%\YHj>_cC">'o9>M*5 -% ]e;!+>%R^@c?6e=\rlp10mk7Cc0=JR2f_Z>gj\n%UmC?G$3oB@!8/'gNTIIrW(3ud"E*=!h$ -% PhHpGY"g`73O;=@d7jAkYc?Jntagj($7#EV:3WfG8Ic&_%roAkZ%>WLPVB3klNEX,JQ=[n4M -% ETnM<*N7&K@a1Xu`?-1P&[]`oqX%jd/\-)=Y:Zg%Di[`-(Le[t-cZ8Oh0dMI8'h&(KM.:'p" -% ;"T.dl.7pn807$TYsA5! -% #MeVF>8I.$mk\]^U6UYW_6J!RE.`p.IMtNbM?JmkeA'T!_Q7o:iuWTd(cdtKd -% (kaAj+91VQ)T]ilg**^pL -% uj=ePTu#u3#LjJ$]B;#d7-2I(2n($S;r4%)(BdLi)/P89c-28j=gcr/1^c1_Z6)10U3L]!!u -% 0r.9c4Ob[nVo4+X'E-/s-sq;F#6"dfY9N.AS_IZ^=4m,*!gYmD,kF@m7973sQOVJf"A8V(i6 -% `8mpt8D/'EQ%CJ)6p]AWXR;)b,SN/'30amnd&!oSU@,`c2u_n\R%AdlucPU[hqBr7kt5huJEEZos$$UP;WB\f[G8Wp4W!WWc -% n(4b)EKHP5>bBA]pY\3"=NG)pcVG%kT6lZjciZ%rir,iA+$*_1/.g=JJXNNHYdh!WEUB"4Ki+;'t?l&KR_Z$PC(c/$PJ4^=\&_^4+ -% 5UHf6S^q(jYH^":DQa'PgKf*8-Q$:&Q'L9YB8Jr[>cAa1S--tq#G#r:;!6.QgqcDp.H?[pML -% %Ij(F"P$"W!ISp/Nku+bk)j*)og5AX/;P?(t;=bOen:$_!H-iG,Jh#TJ[33f$la!dq:\BVP` -% eg6-(dfUJ'364)\)[eZ\fP@%KAiE7&d\6L0$4\&e6dZ%?QJH2?6?3)Q3fOB2;eeXlB1kp6^I -% TQ@Ni,\rtLnL(?^:)s9;3#qaKP>HU@/q2M_BGEjc7'ro,tb,6MCc>@WJlM]G[laq(-0p-5S> -% 7d!m0P5UfC"Gq.Pt"L?[m$L.th4Q(jD\ka$"-#qVI-2AiBhc17a#R_,tqgm`;43*i)NEbB-E -% I&76aR=`^d,GP)bWo\c]!WZr=_GWF3R?o7fBslZ@g7b#ZNdBluHhKIhWqR!,W/`dqW+3!B[S -% Z:ladj&aYF?=&XHV&[G&OW8;/%>+ahF7L>k80S0sQ;kqqAd;)X$7thU39D\D%USWh0Ql$_P" -% bihp.qs-]r6ar=-do#E?&bN?4$pA8R5U4PJrM<#SfhRSB;gM5*=4rfBtZi534X[<:jai-dM8 -% tjC:qHTo&,@d^SC!=0e--("L9l6]P@U%ViST5Za^fHeZFi!4S.(@(Z%c(L>bJL;=i(jj+[$a -% Yo*js32dTlIi=.=>I\NFpR,NN5o]]7^W97/Y:JUG;BY8Y.bD;R("S64Sn=+2og](<&7g_"!* -% oAH.a$nB'MP-2=Z=Z=&ElO:*]q4`+%'s;]pm8bKV/6eB9-DX_BL;5\.:gICf`A_J5 -% I7/%G67,:$8H,+Q_D`Ed'Hj`0h=II_=)\0r*Z6Ia2Fa8E.MU]TbKKl_%l5CI8`44oX:-n%&. -% Wl2XFfg)[X!J3"L+#Nr5l -% `lAM*R:,3@.54";oK62P!a/!MgtJ3?5lb`#WEba.Q`G4ibH0ep#rXFM=U5-Q!h`F.iY,*D'L:"*kJ9bU5X3 -% (u-7=n]Jg)aR!S,\a]M]&7D6D8O.MU&b#Bq9NY[A%'-j:iKOFTVF,8:<[VZl=P:NFiY(&f2r -% .dXqX6+A&UnJ6/QpVtu_4"%+JeStk^c?rG$nIh]%AamG4-#=V%qMuKLY6V)hL`Xpn"0Ja9.5YbF!TNb?$aL>-NQaH84\X]'VE -% #8YI!!H+#jf\9S3\/!eUH@9mEP>T%-JW9sD"LqWN>:'C?UJXC!_C'EQ]5[m7$#_3:F -% 5R%Z.nYL8/R>aT42_%k5\2tm(!+*GA0sm=+mK8#t"OMZ9HNM,ZStCENG%4@+1(^7_Y"'nR87)]ZK"(23^O_tOc!ZpO:2-ix -% EndEmbeddedGraphics N 1927 787 E a7 S 36763 R 5335b62 -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -41 495 527 176 rectclip -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 48 503] concat -0 0 2 1 10 SU -[1 0 0 -1 256 97] concat -N -1 nxsetgray -0 0 56 42 rectfill -2 L -0 nxsetgray -0 0 56 42 rectstroke -0 0 T -grestore -0 0 0 1 10 SU -gsave -/Helvetica-Bold findfont 18 scalefont [1 0 0 -1 0 0] makefont -157 -exch -defineuserobject -157 execuserobject setfont -276 67.999939 T -15 flipV -8.5 7.5 T --7.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(M) show -0 0 T -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 7 7] concat -0 0 2 1 10 SU -[1 0 0 -1 452 145] concat -N -0.331034 nxsetgray -0 0 28 98 rectfill -2 L -0.331034 nxsetgray -0 0 28 98 rectstroke -0 0 T -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 7 7] concat -0 0 2 1 10 SU -[1 0 0 -1 11 39] concat -N -0.331034 nxsetgray -0 0 462 28 rectfill -2 L -0.331034 nxsetgray -0 0 462 28 rectstroke -0 0 T -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[-1 0 0 1 58.727875 53.687744] concat -[0.157779 0 0 0.157779 0 0] concat -0 0 0.15 1 11 SU -[1 0 0 -1 2 58] concat -N -0 nxsetgray -gsave -53 56 0 0 oval fill -grestore -0.15 L -0 nxsetgray -gsave -53 56 0 0 oval 0.018868 0.017857 S s -grestore -0 0 T -grestore -0 0 0.15 1 11 SU -[1 0 0 -1 28 59] concat -N -0 nxsetgray -0 0 125 56 rectfill -0.15 L -0 nxsetgray -0 0 125 56 rectstroke -0 0 T -grestore -grestore -grestore -0 0 0 1 10 SU -gsave -/Times-Roman findfont 18 scalefont [1 0 0 -1 0 0] makefont -156 -exch -defineuserobject -156 execuserobject setfont -43 69 T -11 flipV -5.5 5.5 T --4.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(v) show -0 0 T -grestore -grestore -0 0 2 1 10 SU -25 67 T -N -2 L -0 nxsetgray -42 0 0 0 line -0 42 0 arrow -0 0 T -grestore -0 0 0 1 10 SU -gsave -157 execuserobject setfont -37 41 T -12 flipV -9.5 6 T --8.5 5 T -N 0 0 m -0 nxsetgray -0 0 m -(m) show -0 0 T -grestore -grestore -grestore -grestore -grestore -grestore -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 387 558] concat -0 0 0.15 1 10 SU -18 9 T -N -0.15 L -0 nxsetgray -9 -27 0 27 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 9 T -N -0.15 L -0 nxsetgray -9 27 0 0 line -0 0 T -grestore -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 369 558] concat -0 0 0.15 1 10 SU -18 9 T -N -0.15 L -0 nxsetgray -9 -27 0 27 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 9 T -N -0.15 L -0 nxsetgray -9 27 0 0 line -0 0 T -grestore -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 351 558] concat -0 0 0.15 1 10 SU -18 9 T -N -0.15 L -0 nxsetgray -9 -27 0 27 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 9 T -N -0.15 L -0 nxsetgray -9 27 0 0 line -0 0 T -grestore -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 405 558] concat -0 0 0.15 1 10 SU -18 9 T -N -0.15 L -0 nxsetgray -9 -27 0 27 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 9 T -N -0.15 L -0 nxsetgray -9 27 0 0 line -0 0 T -grestore -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 423 558] concat -0 0 0.15 1 10 SU -18 9 T -N -0.15 L -0 nxsetgray -9 -27 0 27 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 9 T -N -0.15 L -0 nxsetgray -9 27 0 0 line -0 0 T -grestore -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 441 558] concat -0 0 0.15 1 10 SU -18 9 T -N -0.15 L -0 nxsetgray -9 -27 0 27 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 9 T -N -0.15 L -0 nxsetgray -9 27 0 0 line -0 0 T -grestore -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 459 558] concat -0 0 0.15 1 10 SU -18 9 T -N -0.15 L -0 nxsetgray -9 -27 0 27 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 9 T -N -0.15 L -0 nxsetgray -9 27 0 0 line -0 0 T -grestore -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 477 558] concat -0 0 0.15 1 10 SU -18 9 T -N -0.15 L -0 nxsetgray -9 -27 0 27 line -0 0 T -grestore -0 0 0.15 1 10 SU -9 9 T -N -0.15 L -0 nxsetgray -9 27 0 0 line -0 0 T -grestore -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Times-Roman -%%+ Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob26a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob26a.gif deleted file mode 100755 index 5b65fd980..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob26a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob26a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob26a.pdf deleted file mode 100644 index e0320a4a6..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob26a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob27.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob27.eps deleted file mode 100755 index 2c12dd94a..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob27.eps +++ /dev/null @@ -1,956 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: pssc7cq8.13.create -%%Creator: Create -%%CreationDate: Tue Nov 19 17:01:02 1996 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 31 39 577 769 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(5_srYVe/2i#kUDJTPFT72&O3T@fr_foCl;C)F6C3ib"-=rsT -% R?eAFg/G/J>TYbc-G,Z=#AaDSFGh:;>BY=eqb&B'(?3J;Il$4#3'85)M$.E6_>]2f(<[`WAS -% 80^tLJOfRm`WBY*)[JE:R5huGjk_.>iPg?b<:l3 -% OE0L1&a%kV`:6pa=bJKuelQ,H-X%g\%3botcO;N6+DT\>TdT:k&]>e8^`l/X!f`0^`0"NXC>+TdTW#$RQOjck]:`'mr?@rt!>+Tnq\UEBWVQ,&A3ePIM+Bs^aW*/5$ -% q8Q*K'VUI-geTY%tq!!RkBuqsYS8/23=eLC"NoFGM&8!['!We*%`#pIIJA[*^IMe(d9TV5AR -% u!3TU0M;q6DKO;n-HfY6'd5I&?.AJA-&],BdK(R"i&oWp-Ck`Xdn)a=%"\Qh$OehI*G=$0-TSCB,=Eoq*! -% Yq@UrWqI`BU^hVP?"8q,E:S&A[>;LApM!B?m%18II-mFG8=&[cnST]Y"PC"-!8 -% 'uO/VaStfn0?!5T]=FZoj=*b'D@'<2Bjc*?#WK%bn>HVR6)smNi#O\Il[]hI)t(W@Bn$lHas -% -^^2TC%PbCR%IW.U5.&gR&CeK#%"p>@:hW3lK;\ulaJ.g>/:l4OJ-0KU& -% dNSg%;Bb`H&)NR1.Y7PB?5].Z,\:hEGm05BYkGh&r&65!=a.\L_Q1EP:!65%+@hk.4BfL%Kl -% icT#$r2dUK*I"YG/(M&;rm[)`'JMM3)[5b3iF#UWXWNtY0S+Gkn9!&t;g2JRpG)Si,(V6"2T -% P>ihNOJPu',uU/0ULc,=Y!V7UFp=,c#mhKd6YN$fW<-5tPL*$rW6\@K<@9`;jGpMkKV^pr)pPI.C.+kb9F[;0^DH= -% ]A`]Un@UqQ,!:2UORpk?NA2N:a70+R7SY(/0JW&L-B^+&\VQV2qYs-jp-QgP[+U;RDS`E[#j -% j2TaYXK6QGBQLP,(>&6ToFQTd'rQ#],@TI<57NhM>3bb@hDLso8EOcFV'@k5B@Y'H%H@KW_K -% S4&"N>NR[S]6n-l+plke*Y=M=cm0ueGtaFt,CuUHCEQHQauaoj9Pb/H>%Cc3Nn0Ar*t?I=)_ -% $;DneIP94(-*d3AP+`(9u.A*9+?Ic-0/Y,_RR7;LUnL-r;&uNW;ej67>;U&9J67"QC@#3 -% 'rYK5i@=4KnaQ;e) -% @qE#FNj;OX8Zb_HM*a"sUFnD/Wpe\#Y\Y\FkdtFN;R1l#nA@fH%^k>6EgkT6IsREUS:i]&-W -% 9=:qA[@Y*-pi6*tPf)_afL-+1'&Pp[,M+7$1%DirSZ^Sn--8hfS4DS0eRao2#[a^D`CoK^ig -% />gH\%tdVF>JKnj,MohG.KRO`,M[?68^]e!s2mQZG5)F@64W5W:Me=*3#ZFA%rTh% -% kCVVD7'UC/X1)_;XESuOiuTYr> -% *\\]W=i"APu/5dDWS589S*oMnqV/7M&*2g -% ("T'F8cE8nh9@_Zkk8-:4=L8-+m$L9u>bZrrFM=97o+_['@reO^AU8r%OuMT&[;cqDu8;.8Z -% rNYkh8GWp0c(ZO(MNb+5`VL<=%IBCnK\<^TTY_A;$>0E.G=f>fY`/sSH(/KZKpD>$IP>8$n: -% (,uTMMR7N=FArW;7>\$0%;tt'0LIU:jTWp!-_Fk3'De:4f(,o(0$)'Q&)QpL)(Y3'hF6e=-? -% j5P4MU:QDd$8GZ(!?;POG3!XX`t+]C3t#*i4iW45d-kW6WOMET'$ZM9V/q*(b.HqL5n:">.` -% oSZYuPf">P0r[R]fMtnXN*)lEc=i)B'TLRD8)uXl^6O\up/]ti55%lBBTXqpGuo8[NW?VFkd -% X4L=BN#O9Vb&^d0Pg(k^#?OJNcY[hH5\k3Jj_i=.JATqZ^5N-u3^5>*F5nd):XAV-(:d*p=. -% 8?r-lqp4`,ER%8;\KGfW?8RZfX#S^Y]NZ\>3fpFB@OIB-S.nCL([S2NhR7RE+g!hpiV*qlY; -% \dEBlJn<.=Bp\s@Hrpl]H@1a:l_F[>lg@FZW89tH#&Z_NUi2<)A!/Z7KM9.A/Jm=Sb\);(7s -% Gt=.?T*!hc1.=\8&GSFG4#-jEC06Xt[T@kH8n.:sHbTc'@tNj.V)aj<,85n4O,R>Zl64Z5A% -% .NP14L;lIr%=r59[Z`!EMuSWpE@@,Rp-O#^&'D+(J"R!+n7?#dAg.kHM:.\C1mc8R[EZ5Z&W6Rj%T^HPVGtC6E+!5IbZ -% s-A>>Ioq`_\T#Ug@)BlZ4<4nScBc0pdfTHTqV -% b*[a>a:7U`JeshW-AUuH:\tl:lY?tB/BrPRRP"_OL1U+lBp$X=FA)JLc(g&KW= -% S+=FSqo_"F5uqO'VeS?mNC[;)/\Q`J5jn!;?e9Xg_\ra=?s.P-cukbiW`g -% ->eZ<)nU<2fsY`.piN^[I(`[ZjdL?0GZgqfMaU-e+%U=uB6Ldg0kofhdn3:W6]f#cE%_lR1< -% ;6_-ZM*/GO!4tKI;9<#D@orIO.L;of!0NLP.8bF#&Mr2&Cd=aE'ZqK`mcneTQ$HU3''FY:]m -% !joTnDaX.g[1!6MIU.LXl#^mg4YTq5-"e0[D3fqZjOH]KlF;KSi7tZ->F5rU>J]EE1a#-)+2 -% &iU(6Wf#%GD,dYKM1NY::P@BpiBA)F=G53=*P?,`W.1)OGm[/PT^c@@22mA[f?C.x -% EndEmbeddedGraphics N 3677 e5d E c3 S 67a4b R 8f53baec -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -31 39 546 730 rectclip -0 nxsetgray -0 0 0.2676 1 10 SU -gsave -[1 0 0 1 32 41] concat -0 nxsetgray -0 0 0.2676 1 10 SU -gsave -[1 0 0 1 12 1] concat -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 -1 4 97] concat -[1.784 0 0 0.663551 0 0] concat -0 0 2 1 10 SU -11 144 T -N -2 L -0 nxsetgray -10.571722 -41.367603 m -28.943956 -41.907959 28.943956 -90.540344 29.484322 -99.186104 c -32.186123 -131.067322 38 -141 51 -140 c -s -grestore -0 0 2 1 10 SU -70 144 T -N -2 L -0 nxsetgray -32.627762 -41.367603 m -14.255526 -41.907959 14.255526 -90.540344 13.71516 -99.186104 c -11.013359 -131.067322 5.199482 -141 -7.800518 -140 c -s -grestore -grestore -grestore -0 0 2 1 10 SU -25 28 T -N -2 L -0 nxsetgray -0 168 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -25 28 T -N -1 nxsetgray -168 0 0 0 line -2 L -0 nxsetgray -168 0 0 0 line -0 0 T -grestore -0 0 0 1 10 SU -gsave -/Times-Bold findfont 18 scalefont [1 0 0 -1 0 0] makefont -748 -exch -defineuserobject -748 execuserobject setfont -1 66 T -111 flipV -9.5 55.5 T --90 R --54.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(kinetic energy) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -748 execuserobject setfont -91 1 T -15 flipV -18 7.5 T --17 6 T -N 0 0 m -0 nxsetgray -0 0 m -(time) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -748 execuserobject setfont -12 14 T -15 flipV -5.5 7.5 T --4.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(0) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -748 execuserobject setfont -100 184 T -15 flipV -7.5 7.5 T --6.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(E) show -0 0 T -grestore -grestore -grestore -grestore -0 nxsetgray -0 0 0.2676 1 10 SU -gsave -[1 0 0 1 1 251] concat -0 nxsetgray -0 0 0.2676 1 10 SU -gsave -[1 0 0 1 11 266] concat -0 0 2 1 10 SU -26 141 T -N -2 L -0 nxsetgray -20 0 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -190 142 T -N -2 L -0 nxsetgray -14 0 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -488 96 T -N -2 L -0 nxsetgray -21 0 0 0 line -0 0 T -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 1 1] concat -0 0 2 1 10 SU -24 28 T -N -2 L -0 nxsetgray -0 168 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -24 28 T -N -1 nxsetgray -168 0 0 0 line -2 L -0 nxsetgray -168 0 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -gsave -748 execuserobject setfont -1 66 T -111 flipV -9.5 55.5 T --90 R --54.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(kinetic energy) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -748 execuserobject setfont -90 1 T -15 flipV -18 7.5 T --17 6 T -N 0 0 m -0 nxsetgray -0 0 m -(time) show -0 0 T -grestore -grestore -0 0 2 1 10 SU -gsave -748 execuserobject setfont -11 14 T -15 flipV -5.5 7.5 T --4.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(0) show -0 0 T -grestore -grestore -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 297 1] concat -0 0 2 1 10 SU -24 28 T -N -2 L -0 nxsetgray -0 168 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -24 28 T -N -1 nxsetgray -168 0 0 0 line -2 L -0 nxsetgray -168 0 0 0 line -0 0 T -grestore -0 0 0 1 10 SU -gsave -748 execuserobject setfont -1 66 T -111 flipV -9.5 55.5 T --90 R --54.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(kinetic energy) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -748 execuserobject setfont -90 1 T -15 flipV -18 7.5 T --17 6 T -N 0 0 m -0 nxsetgray -0 0 m -(time) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -748 execuserobject setfont -11 14 T -15 flipV -5.5 7.5 T --4.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(0) show -0 0 T -grestore -grestore -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 7 73] concat -[1.784 0 0 0.663551 0 0] concat -0 0 2 1 10 SU -11 144 T -N -2 L -0 nxsetgray -10.571722 -41.367603 m -28.943956 -41.907959 28.943956 -90.540344 29.484322 -99.186104 c -32.186123 -131.067322 38 -141 51 -140 c -s -grestore -0 0 2 1 10 SU -70 144 T -N -2 L -0 nxsetgray -32.627762 -41.367603 m -14.255526 -41.907959 14.255526 -90.540344 13.71516 -99.186104 c -11.013359 -131.067322 5.199482 -141 -7.800518 -140 c -s -grestore -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 305 27] concat -[1.784 0 0 0.663551 0 0] concat -0 0 2 1 10 SU -11 144 T -N -2 L -0 nxsetgray -10.571722 -41.367603 m -28.943956 -41.907959 28.943956 -90.540344 29.484322 -99.186104 c -32.186123 -131.067322 38 -141 51 -140 c -s -grestore -0 0 2 1 10 SU -70 144 T -N -2 L -0 nxsetgray -32.627762 -41.367603 m -14.255526 -41.907959 14.255526 -90.540344 13.71516 -99.186104 c -11.013359 -131.067322 5.199482 -141 -7.800518 -140 c -s -grestore -grestore -grestore -0 0 2 1 10 SU -321 95 T -N -2 L -0 nxsetgray -23 0 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -gsave -748 execuserobject setfont -105 168 T -15 flipV -7.5 7.5 T --6.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(A) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -748 execuserobject setfont -405 170 T -15 flipV -7.5 7.5 T --6.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(B) show -0 0 T -grestore -grestore -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 1 1] concat -0 0 2 1 10 SU -328 141 T -N -2 L -0 nxsetgray -169 0 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -107 89 T -N -2 L -0 nxsetgray -1 -1 m -51 -3 37 -1 59 3 c -76 6 69 10 100 9 c -s -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 305 1] concat -0 0 2 1 10 SU -24 28 T -N -2 L -0 nxsetgray -0 168 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -24 28 T -N -1 nxsetgray -168 0 0 0 line -2 L -0 nxsetgray -168 0 0 0 line -0 0 T -grestore -0 0 0 1 10 SU -gsave -748 execuserobject setfont -1 66 T -111 flipV -9.5 55.5 T --90 R --54.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(kinetic energy) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -748 execuserobject setfont -90 1 T -15 flipV -18 7.5 T --17 6 T -N 0 0 m -0 nxsetgray -0 0 m -(time) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -748 execuserobject setfont -11 14 T -15 flipV -5.5 7.5 T --4.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(0) show -0 0 T -grestore -grestore -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 11 1] concat -0 0 2 1 10 SU -24 28 T -N -2 L -0 nxsetgray -0 168 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -24 28 T -N -1 nxsetgray -168 0 0 0 line -2 L -0 nxsetgray -168 0 0 0 line -0 0 T -grestore -0 0 0 1 10 SU -gsave -748 execuserobject setfont -1 66 T -111 flipV -9.5 55.5 T --90 R --54.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(kinetic energy) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -748 execuserobject setfont -90 1 T -15 flipV -18 7.5 T --17 6 T -N 0 0 m -0 nxsetgray -0 0 m -(time) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -748 execuserobject setfont -11 14 T -15 flipV -5.5 7.5 T --4.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(0) show -0 0 T -grestore -grestore -grestore -grestore -0 nxsetgray -0 0 0.081054 1 10 SU -gsave -[1 0 0 1 1 85] concat -[1.681159 0 0 0.698113 0 0] concat -0 0 2 1 10 SU -11 143 T -N -2 L -0 nxsetgray -10.571724 -41.367599 m -28.943956 -41.907959 28.943956 -90.540344 29.484322 -99.186104 c -32.186123 -131.067322 53.800518 -139.172729 53.800518 -139.172729 c -s -grestore -grestore -grestore -0 0 0.15 1 10 SU -gsave -748 execuserobject setfont -112 183 T -15 flipV -7.5 7.5 T --6.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(C) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -748 execuserobject setfont -414 182 T -15 flipV -7.5 7.5 T --6.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(D) show -0 0 T -grestore -grestore -grestore -grestore -grestore -grestore -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Times-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob27.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob27.gif deleted file mode 100755 index 287307b4b..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob27.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob27.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob27.pdf deleted file mode 100644 index 31b329349..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob27.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob28v1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob28v1.eps deleted file mode 100755 index 839d8c3f3..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob28v1.eps +++ /dev/null @@ -1,4587 +0,0 @@ -%!PS-Adobe-3.0 EPSF-3.0 -%%Creator: Adobe Photoshop Version 3.0 -%%Title: MidAircollision.eps -%%CreationDate: 3/17/97 10:57 AM -%%BoundingBox: 0 0 201 330 -%%HiResBoundingBox: 0 0 200.64 330.24 -%%SuppressDotGainCompensation -%%DocumentProcessColors: Black -%%EndComments -%%BeginProlog -%%EndProlog -%%BeginSetup -%%EndSetup -%ImageData: 836 1376 1 1 0 105 2 "beginimage" -%BeginPhotoshop: 220 -%3842494D03E900000000007800030000004800480000000002D80228FFE1FFE2 -%02F902460347052803FC00020000004800480000000002D80228000100000064 -%000000010003030300000001270F000100010000000000000000000000006808 -%0019019000000000000000000000000000000000000000000000000000000000 -%000000003842494D03ED000000000010012C000000010001012C000000010001 -%3842494D03F300000000000800000000000000003842494D271000000000000A -%000100000000000000023842494D03FD000000000006000000000000 -%EndPhotoshop -gsave -40 dict begin -/_image systemdict /image get def -/_setgray systemdict /setgray get def -/_currentgray systemdict /currentgray get def -/_settransfer systemdict /settransfer get def -/_currenttransfer systemdict /currenttransfer get def -/blank 0 _currenttransfer exec -1 _currenttransfer exec eq def -/negative blank -{0 _currenttransfer exec 0.5 lt} -{0 _currenttransfer exec 1 _currenttransfer exec gt} -ifelse def -/inverted? negative def -/level2 systemdict /languagelevel known -{languagelevel 2 ge} {false} ifelse def -gsave -/rows 1376 def -/cols 836 def -72 65536 mul 19660800 div dup cols mul exch rows mul scale -level2 { -/DeviceGray -setcolorspace} if -/picstr1 105 string def -/readdata {currentfile exch readhexstring pop} def -/image2 level2 {/image load def} {{begin -Width Height BitsPerComponent ImageMatrix -/DataSource load image end} def} ifelse -/beginimage { -image2 -} def -12 dict begin -/ImageType 1 def -/Width cols def -/Height rows def -/ImageMatrix [cols 0 0 rows neg 0 rows] def -/BitsPerComponent 1 def -/Decode [0 1] def -/DataSource {picstr1 readdata} def -currentdict end -%%BeginBinary: 293490 -beginimage -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF2FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF6FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF87FFFFFFFFF87FFF1FFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFF87FFF1FFFFFFFFFFFFFFFFFF -FFFFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFF87FFE1 -FFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F87FFFFFFFFFCFFFE1FFFFFFFFFF1FFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFE1FFFFFFFFFF1FFFFFFFFFFFFC3FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFE1FFFFFFFFFE -0FFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FF0FFF8 -3FFFF021FE07FFC3FC07FFFE07FBC3FC103FF01FC63F01FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF87C003FC00F87C000F801F000F801FFF801F000FC001FC007C03C00 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF4FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF87C001F8007878000F000F0007801FFF000E0 -007C000FC0078038007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF878000F8007078001E0 -00F0003803FFF000E0003C000781038038383FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8 -781E0F07838707C1E1F060783E0FFFF0F0E07C3C0F0707C381F07C3FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF8783F0F0FC3870FC1C1F060FC3E0FFFF0F8E0FC1C1F8707 -C183F0FC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8783F0E0FE7860FE1C0E060FC3E1F -FFF03FE0FE1C1F8701C183F0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8783F0E1FFF -860FE1C00070FC1E1FFFF003E0FE1C3F87000183F0001FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF8783F0E1FFF860FE1C00070FC1F1FFFF001E1FE1C3F87000187F0001F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF8787F0E1FFF860FE1C00070FE1F1FFFFC00E1FE -1C3F87000387F0003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8787F0E1FFF860FE1C1FD -F0FE3F1FFFFF0060FE1C3F8707FF87F07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF878 -7F0E1FEF860FE0C3FCF0FE1F1FFFFFF060FE1C3F870FE387F0FE3FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF8787F0F0FC3870FE1C1F8E0FE1F0FFFF1F060FC1C3F870FC3 -87F0FC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8787F0F0FC38707C1C1F0E0FE3F0FFF -E0F0607C3C3F8787C387F87C3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8787F0F030787 -8301E060F1FE3F03FFF00060303C3F87800387F8003FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF87C7F0F80078F8001F001F1FE3F03FFF000E0007C3F87C007C7FC007FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF8FC7F8FC00F8FE001F803F1FE3F83FFF801E000FE -3FC7E00FC7FE01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFF9FFFE0FFF -FFFFFFFFFE07E003FFFFFFF83FFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFC001F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFF -FFFFFFFFFFFFF80003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF3FFFFFFFFFFFFFFFFFFE00001FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000E007FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFE -000007C03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F7FFFFFFFFFFFFFFFC000300F01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF4FFFFFFFFFFFFFFF81FFF00FC0FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFE007E03 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFF -FFFFFFF87FFC003F01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF3FFFFFFFFFFFFFFF87FFC001F80FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFE0007E07FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1F -FF0003F81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB -FFFFFFFFFFFFFFFE0FFF8001FC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFC000FF07FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFF83FFE0003F83 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFC1FFF0001FC1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFE07FF8000FE0FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFC0003F03FFFFFFFFF -FFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFC1F -FE0001F81FFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFE07FF8000FE0FFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFC0007F07FFFFFFFFFFFFFFFFFF -FFFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFC1FFE0003F81 -FFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFF -FFFFFFE0FFF0000FC0FFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF03FFC0007F07FFFFFFFFFFFFFFFFFFFFFFFFC0F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFE0003F83FFFFFFFFF -FFFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFE0F -FF0001FC0FFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF07FF80007F07FFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFC0003F83FFFFFFFFFFFFFFFFFF -FFFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFF0001FC1 -FFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFF -FFFFFFF07FF80007E07FFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF1FFFFFFFFFFFFFFFFFFFFF83FFC0003F03FFFFFFFFFFFFFFFFFFFFC0FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFF0001F81FFFFFFFFF -FFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07 -FF8000FE0FFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFF -FFFFFFFFFFFFFFFF83FFC0003F07FFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFC1FFE0001F81FFFFFFFFFFFFFFFFFF -C1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FF0000FE0 -FFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF03FFC0007F03FFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F3FFFFFFFFFFFFFFFFFFFFFFFC1FFE0003F81FFFFFFFFFFFFFFFFC0FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFE0FFF0003FE0FFFFFFFFF -FFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFF07 -FFC001FF07FFFFFFFFFFFFFFF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFF -FFFFFFFFFFFFFFFF83FFC000FF83FFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFC0FFE000FFC1FFFFFFFFFFFFFFC1FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFF07FF000FFF0 -7FFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF83FF8007FF83FFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9 -FFFFFFFFFFFFFFFFFFFFFFFFFC0FFC0079FC1FFFFFFFFFFFFC0FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FF00787F0FFFFFFFFF -FFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFF83 -FFC0783F87FFFFFFFFFFF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFC1FFF0381FC1FFFFFFFFFFE07FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFF8380FE0FFFFFFFFFFC0FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF2FFFFFFFFFFFFFFFFFFFFFFFFFFF07FFC1803F0 -7FFFFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFC1FFF0001F83FFFFFFFFF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FFFFFFFFFFFFFFFF3FFF -FFFFFFFC7FFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FF -FFFFFFFFFFFFFFFFFFFFFFFFFE0FFF80007C0FFFFFFFFE07FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC003FF -FFFFFFFFFFFFFE1FFFFFFFFFFC3FFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFC0003E07FFFFFFFC -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF8001FFFFFFFFFFFFFFFE1FFFFFFFFFFC3FFF0FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFC1 -FFE0001F83FFFFFC703FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000FFFFFFFFFFFFFFFE1FFFFFFFFFFC3F -FF8FFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0FFF0000FC1FFFFFC007FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03E07F1FFFFFFFFF -FFFE1FFFFFFFFFFC3FFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFC0003E07FFFF800FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FF0FF07E1FFFFFFFFFFFFE1FFFFFFFFFFC3FFFFFFFFFFFFFC1FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFE0001F8 -3FFFF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE0FF8FE1FFFFFFFFFFFFE1FFFFFFF8FFC39FFFFF07FF8 -3F80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFE0FFF0000FC0FFFF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFF807C079FF3FC03E1F8FFF -FC01FC003F8FC00FE00F003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF07FF80007E0000F003FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF003 -8030FE3F801E1F0FFFF8007C001F8F800FC007003FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFC0003F00000001FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF00FFF0038030FE1F000E1E0FFFF0007C000F0F00078003007FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1 -FFF0000F80000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF801FF8078070FE1E0F0E1C1FFFE0783C0E07 -07078303C3C1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0FFF8000780000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8003FE1F81F0FE1E1F -8E003FFFE0FC1C1F070E0F8307C3C1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFC000380FF0001FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E001FE1F83F0FE1C1F8E007FFFE1FC1C3F870E0F830FE7C1FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFE000003 -FF000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF800FE1F83F0FE1C1FFE00FFFFC1FE1C3F830600030FFF -C1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFE0FFF000007FF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807E1F87F0FE1C3FFE00FFFFC1 -FE1C3F830600030FFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF07FF80000FFE007FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07E1F87 -F0FE1C3FFE00FFFFC1FE1C3F830E00030FFFE1FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF2FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFC0000FFC007FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF83E1F87F0FE1C3FFE007FFFC1FE1C3F83060FFF0FFFE1FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 -FFE0000FFC087FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF1FF83E1F87F0FE1C3FFE007FFFE1FC1C3F8306 -0FE70FE3E1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF07FF0000FF83C3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FF83E1F87F0FC1E1F8E -083FFFE1FC1C3F87060FC707E3E1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFC001FF8FC3FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0F -F07E1F87F07C1E1F861C1FFFE0F83C1F07070F8787C3E1FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFF001FFF -FC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF07E07E0F87F8781E0F0E1C0FFFF0703C0E0F0703078103E0 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF0FFF801FFFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000FE0387F8001F000E1F0FFFF000 -7C000F078007C007E03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF87FFC01FFFFC3FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000FF0387FC -001F001E1F07FFF800FC001F07C01FE007F03FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFE00FFFFC3FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFC003FF83CFFE023FC03F3F87FFFE01FE703F0FF03FF01FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 -FFF00FFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF007FFFFFFFFDFFFFFFFFFFFFFFFDFFFFFFF0FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF07FFC07FFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFC03FFF07FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFE01FFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF07FF807FC0DFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFC1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF83FFC01C0087FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFE0000183FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FF9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -7FF8000181FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF83FFC0000C07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFC0000603FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0001FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFF000038 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFE0001FFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF83FF80000C0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFE0001FFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFC1FFC0000603FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0001FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFE0000301FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0003FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -7FF8000180FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF80003FFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFC3FFC0000607FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF80007FFFFFFFFFFFFFFFFFFFFFFFFFFFF4FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFF0000301FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80007FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FF80001C -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF83FFC0000E07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFE0FFE0000701FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FF0000380FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0001FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8 -3FF80001E07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -0003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFC1FFE0000F03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FF0000380FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0003FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF4FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FF80001E -07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0003FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFC1FFE0000F03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF80007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFE0FFF0000780FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF80007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFC0003E07FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC -1FFE0003F03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFE0FFF0003F80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFE0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FF8001FC07FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFE0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF6FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFC0007F -03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0001FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFC0FFF0007F80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0003FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFE07FF8003FC07FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFC0003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFC003FE03FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF80003FFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFF -FFFFFFFFFFFFFFFFF4FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC -1FFE003FF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000FFFFFFFFFFFFFFFF -FFFFFFFFFFFC00FFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFE0FFF003FFC07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -07FFFFFFFFFFFFFFFFFFFFFFFFFFC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FF8017FE03FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFF -FFFFFFFFFFFFFF0000FFFFFFFFFFFFFFFFFFFFFFFFFFF80000FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFC001FF -01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FF03FFFFFFFFFFFFFFFFFFFFFFFFFFE0000FFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -0000FFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFE0FFE000FFC07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFE0001FFFFFFFFFFFF -FFFFFFFFFFFFFFFC000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF07FF8007FE03FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFFFFFF -E0003FFFFFFFFFFFFFFFFFFFFFFFFFFF80000007FFFFFFFFFFFFFFFFFFFFF8FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFE000FF01FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFF -FFFFFFFFFFFFFFFFFC0003FFFFFFFFFFFFFFFFFFFFFFFFFFF80000007FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -0FFF0007F80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF03FFFFFFFFFFFFFFFFFFFFFFF80003FFFFFFFFFFFFFFFFFFFFFFFFF -FF0000001FFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF07FF8003FE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFFFFF80007FFFFFFFF -FFFFFFFFFFFFFFFFFFF0000001FFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFE001FF01FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFF -FFFF80007FFFFFFFFFFFFFFFFFFFFFFFFFFC0000003FFFFFFFFFFFFFFFFFFFFF -FFFFF5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFF0007F -C0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81 -FFFFFFFFFFFFFFFFFFFFF0000FFFFFFFFFFFFFFFFFFFFFFFFFFFE0000003FFFF -FFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFE07FF8003FE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF03FFFFFFFFFFFFFFFFFFFF00007FFFFFFFFFFFFFFFFFFFFF -FFFFFC0000007FFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF03FFC001FF01FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFE0000FFFFF -FFFFFFFFFFFFFFFFFFFFFFC000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFE000FFC0FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFF -FFFFFFFE0001FFFFFFFFFFFFFFFFFFFFFFFFFFFC000000FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -07FF0007FF07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF81FFFFFFFFFFFFFFFFFC0003FFFFFFFFFFFFFFFFFFFFFFFFFFF8000001F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF07FF8003FF83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFFFFFFC0001FFFFFFFFFFFFFFFFFF -FFFFFFFFF0000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFE000FFC0FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFF80007F -FFFFFFFFFFFFFFFFFFFFFFFFFF0000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFF0007F -E07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFF -FFFFFFFFFFF00007FFFFFFFFFFFFFFFFFFFFFFFFFFF0000001FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF07FF8003FF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF81FFFFFFFFFFFFFE0000FFFFFFFFFFFFFFFFFFFFFFFFFFFE0000 -003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF83FFC000FFC1FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFFF00007FFFFFFFFFFFFFF -FFFFFFFFFFFFE0000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFF0007FE07FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFE00 -00FFFFFFFFFFFFFFFFFFFFFFFFFFFC0000003FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -07FF8003FF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC0FFFFFFFFFFFE0000FFFFFFFFFFFFFFFFFFFFFFFFFFF80000007FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF83FFC001FF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF83FFFFFFFFFFE0001FFFFFFFFFFFFFFFFFFFFFFFFFFF8 -000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFE000FFE0FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFC0000FFFFFFFFFFF -FFFFFFFFFFFFFFFF8000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FF0003F -F03FFFFFC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFF -FC0003FFFFFFFFFFFFFFFFFFFFFFFFFFF8000001FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF03FF8000FF81FFFFC00000FFFFFFFFFFFFFFFFF000FFFFFFFFFFFFF -FFFFFFFF81FFFFFFFFC0003FFFFFFFFFFFFFFFFFFFFFFFFFFF0000003FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF81FFE0007FC07FF000000007FFFFFFFFFFFFF -C000007FFFFFFFFFFFFFFFFFFF03FFFFFFF80007FFFFFFFFFFFFFFFFFFFFFFFF -FFF0000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFF0001FF01F00001 -C0000FFFFFFFFFFFFE00000007FFFFFFFFFFFFFFFFFE03FFFFFFC0007FFFFFFF -FFFFFFFFFFFFFFFFFFFE0000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -03FF8000FF8000003FFF0001FFFFFFFFFFF800000001FFFFFFFFFFFFFFFFFC07 -FFFFF80007FFFFFFFFFFFFFFFFFFFFFFFFFFF000000FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF81FFC0007FE00001FFFFF0003FFFFFFFFFE007FFFC007F -FFFFFFFFFFFFFFF80FFFFF80007FFFFFFFFFFFFFFFFFFFFFFFFFFE000000FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFF0003FF8001FFFFFFE0001FF -FFFFFF807FFFFFC01FFFFFFFFFFFFFFFF03FFFF0000FFFFFFFFFFFFFFFFFFFFF -FFFFFFC000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FF8001F -FC003FFFFFFFE0003FFFFFFE01FFFFFFF80FFFFFFFFFFFFFFFE07FFF0001FFFF -FFFFFFFFFFFFFFFFFFFFFFFC000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF83FFC0007FF000FFFFFFFFE0003FFFFF807FFFFFFFE03FFFFFFFFFF -FFFFC07FE0001FFFFFFFFFFFFFFFFFFFFFFFFFFF80000007FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFF0007FFC003FFFFFFFFC0007FFFF01FFF -FFFFFF81FFFFFFFFFFFFFF80FC0000FFFFFFFFFFFFFFFFFFFFFFFFFFFC000000 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FF800307F0003FFF -FFFFFC0007FFE07FFFFFFFFFC0FFFFFFFFFFFFFF0000001FFFFFFFFFFFFFFFFF -FFFFFFFFFF0000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -03FFE00000FF000FFFFFFFFF8000FFC1FFFFFFFFFFF07FFFFFFFFFFFFE000003 -FFFFFFFFFFFFFFFFFFFFFFFFFFF0000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF81FFF000000FE000FFFFFFFFF0000F03FFFFFFFFFFF83F -FFFFFFFFFFFC00003FFFFFFFFFFFFFFFFFFFFFFFFFFF8000001FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FFC000001F8001FFFFFFFFF00 -0007FFFFFFFFFFFC1FFFFFFFFFFFE00007FFFFFFFFFFFFFFFFFFFFFFFFFFE000 -0003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0001FFF8000 -003F0003FFFFFFFFF0000FFFFFC007FFFE0FFFFFFFFFFE00007FFFFFFFFFFFFF -FFFFFFFFFFFFFC0000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF80000FFFC0000007E0007FFFFFFFFE001FFFF80001FFFF07FFFFFFFFE0 -0007FFFFFFFFFFFFFFFFFFFFFFFFFF80000007FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF000E03FFFC000001FF0007FFFFFFFFC03FFFE000 -00FFFF83FFFFFFFE00007FFFFFFFFFFFFFFFFFFFFFFFFFFC000000FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FF00FFFF8000001FC000 -FFFFFFFFF07FFF8000003FFFC3FFFFFFE00001FFFFFFFFFFFFFFFFFFFFFFFFFF -8000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFF -C03FFFF0000003FC000FFFFFFFF07FFE00FFF01FFFC1FFFFFC000003FFFFFFFF -FFFFFFFFFFFFFFFFE0000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF87FFFF007FFFE0000007F8001FFFFFFE0FFFC01FFFC0FFFE0FF -FFC0000007FFFFFFFFFFFFFFFFFFFFFFFE0000003FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2FFFFFFFFF807FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFC007FFFE0000007F8003FFFFFE1 -FFF800FFFE07FFF0FFFC0000000FFFFFFFFFFFFFFFFFFFFFFFC0000003FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFF -FFFFFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFF000FFFFC -000000FF0003FFFFE1FFF0001FFF07FFF87F80001F000FFFFFFFFFFFFFFFFFFF -FFFC0000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF8FFFFFFFFFF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF1FFFFFFE001FFFF8000001FE0003FFFE1FFE00003FF83FFF8000003FF0007 -FFFFFFFFFFFFFFFFFFFFC000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF1FFFFFFFC001FFFF0000001FC0007FFC3FFC1C0007F -C3FFFC00003FFF0007FFFFFFFFFFFFFFFFFFF8000000FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFC00 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFF8003FFFE0000003F -C000FFC3FFC3F80007C3FFFC0007FFFE000FFFFFFFFFFFFFFFFFFF8000001FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFEFFFFFFFFFFFF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFF -FFF8007FFFC0000007F8000FC1FF87FF800001FFFC01FFFFFC001FFFFFFFFFFF -FFFFFFE0000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF83FFFFFFFFF000FFFF0000000FF8001C1FF87FFF80001FFFE0FFF -FFFC00FFFFFFFFFFFFFFFFFE0000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFE007FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FFFFFFFFE001FFFFC000001FF800007E -0FFFFE0001FFFE3FFFFFF803FFFFFFFFFFFFFFFFE0000003FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFF -FFFFFFFFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFFC003F -FFF0000003FF0000000FFFFFF8007FFE3FFFFFF80FFFFFFFFFFFFFFFFE000000 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FF800FFFFFFFFFC001FFFE0000007FF000001FFFFFFF000FFE3FFFFFF01FFFFF -FFFFFFFFFFC0000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF003FFFFFFFFFC003FFFC0000007FF00001FFFFFFFE0 -01FE3FFFFFF07FFFFFFFFFFFFFFE0000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFF -E007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFFF8007FFFC0000 -01FFE0001FFFFFFFFC007E3FFFFFE1FFFFFFFFFFFFFFC000000FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFF -F7FFFFFFFFFFFFFFFFFC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FF -FFFFFFF000FFFF0000001FFC000FFFFFFFFF801E3FFFFFE3FFFFFFFFFFFFFC00 -0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -7FFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFF003FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF800FFFFFFFFFF000FFFE0000003FFC003FFFFFFFFFC063FF83F -EFFFFFFFFFFFFF8000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF8007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFFFF001FFF80000007FF800 -7FFFFFFFFE023FC003FFFFFFFFFFFFF8000001FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000FFFFFFFFFFFFFFFFFFFBFFFFFFFF -FFFFFFFFFFFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE001FFFFFFFFFC -003FFF8000000FFF000FFFFFFFFF803F8000FFFFFFFFFFFF8000003FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000FFFFFFFFFFF -FFFFFFFFF7FFFFFFFFFFFFFFFFFFFF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFC003FFFFFFFFF8007FFE0000001FFC001FFFFFFFFC03E00007FFFFFFFFF -F0000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC000FFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFF803FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFC001FFFFFFFFF8007FFE0000001FF8003FFFFFFF -E03C07C01FFFFFFFFF0000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC003FFFFFFFFF0007FFC0 -000003FF8007FFFFFFE0383FFC0FFFFFFFE0000003FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0007FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFE01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -07FFFFFFFFF000FFF80000003FE000FFFFFFE0187FFE0FFFFFFF0000003FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0007FFFFFF -FFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFF803FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF800FFFFFFFFFE001FFFC000000FFE001FFFFFC010FFFF07 -FFFFF0000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFC0007FFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFF007F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFFFC003FFF0000001FF -C003FFFF8001FFFF87FFFF0000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFE00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE001FFFFFF -FFF8003FFE0000003FF8007FFE0001FFFFC7FFF0000007FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000FFFFFFFFFFFFFFFFFFFF -FFFFFFFD -FFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FE001FFFFFFFFF0007FFE0000003FF800FE00001FFFFC3FF0000007FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0007FFFFFFFFFF -FFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFF803FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF8001FFFFFFFFE0007FF80000007FF000000401FFFFC3 -FC000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFE0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8003FFFFFFFFC001FFF000000 -0FFC00000E01FFFFC3F800007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFE00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8007FF -FFFFFFC001FFF0000001FFE0003C01FFFFC0F8000FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80007FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF4FFFFFFFFE7FFFFFFFFFFFFFFFFFFC01FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF0007FFFFFFFF8003FFE0010003FF0007C30FFFF807801FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0007FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFC07FFFFFFFFFFFFFFFFFF803FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFF0003FFC0180007FE007C -307FFF00181FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFE0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFC00FFFFFFFFF -FFFFFFFFFF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000FFFFFFFFF0 -007FF8180001FF807E383FFE0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFC0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FF -FFFFFFC001FFFFFFFFFFFFFFFFFFE01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFE0001FFFFFFFFF000FFFFC00000FF03E3C0FF80E01FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF8FFFFFFFFC0003FFFFFFFFFFFFFFFFFF801FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFC00001FFFFFFFFE001FFFE000007F83E3E00001F80 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFC00007FFFFFFFFFFFFFFFF -FF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000003FFFFFFFFE001FFF80 -0000F81E3F00007FC03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFF000 -01FFFFFFFFFFFFFFFFFFE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80001F80 -07FFFFFFFFC007FFE0000078003F8000FFF01FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFE0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFC00003FFFFFFFFFFFFFFFFFFC01FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF80007FFF0007FFFFFFFF8007FF8000020001FC003FFFC07FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFC00007FFFFFFFFFFFFFFFFFF801FFF -FFFFFFFFFFFFFFFFFFFFFFFFFF80003FFFFE000FFFFFFFFC001FFF000000000F -C007FFFE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFF80000FFFFFF -FFFFFFFFFFFFF007FFFFFFFFFFFFFFFFFFFFFFFFFFF0000FFFFFFFC001FFFFFF -F00001FFC000000001C107FFFF80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFF -FFFFFFFF80001FFFFFFFFFFFFFFFFFFE00FFFFFFFFFFFFFFFFFFFFFFFFFF0000 -FFFFFFFFFC001FFFFFC000003FF00001F0000387FFFFC07FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0007FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF0FFFFFFFFFFFFF00003FFFFFFFFFFFFFFFFFF800FFFFFFFFFFF -FFFFFFFFFFFFE0000FFFFFFFFFFFC000FFFF00078007F0000FFF000387FFFFF0 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0007FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFC00007FFFFFFFFFFFFF -FFFFF803FFFFFFFFFFFFFFFFFFFFFE0000FFFFFFFFFFFFF8001FC0007FF000E0 -003FFFF00387FFFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FE0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFF -80000FFFFFFFFFFFFFFFFFFF007FFFFFFFFFFFFFFFFFFFC0001FFFFFFFFFFFFF -FF00000003FFFE000000FFFFFE0387FFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFE0037FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFAFFFFFFFFFFFFFFF00001FFFFFFFFFFFFFFFFFFE01FFFFFFFFFFFFFFFFFF8 -0003FFFFFFFFFFFFFFFFF000003FFFFFE00001FFFFFF8383FFFFFF03FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0007FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF4FFFFFFFFFFFFFFFE00003FFFFFFFFFFFFFFFFFF81F -FFFFFFFFFFFFFFFF80007FFFFFFFFFFFFFFFFFFE0000FFFFFFF80003FFFFFFC3 -81FFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0007FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4FFFFFFFFFFFFFFFFC0000FFF -FFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFF00007FFFFFFFFFFFFFFFFFFFFF80FFF -FEFFFE0000FFFFFFC300FFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFF -FFFFFFFFFFF80000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000FFFFFFFFFF -FFFFFFFFFFFFFFFFFFC03FFFE0001FFFFFC000FFFFFFFBFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFE0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF2FFFFFFFFFFFFFFFFFF80001FFFFFFFFFFFFFFFFFFFF0FFFFFFFF -FFE0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFF0003FFFFE0007FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0003FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFF00001FFFFFFFFFF -FFFFFFFFF01FFFFFFFFE0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFE0003FFFE7E0 -007FFFE0003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0007FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFF -FFFE00003FFFFFFFFFFFFFFFFFF007FFFFFFC0003FFFFFFFFFFFFFFFFFFFFFFF -FFFFF000003FFFE07C0007FFE0083FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFC00007FFFFFFFFFFFFFFFFFE00FFFFF80007FFFFFF -FFFFFFFFFFFFFFFFFFFFFF0000003FFFE003E0007FF03C3FFFFFFFF9FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFF80001FFFFFFFFFFFFFFFFFF -801FFF00003FFFFFFFFFFFFFFFFFFFFFFFFFFFE00000007FFFF001FC000FFFFC -1FFFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0007FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000 -3FFFFFFFFFFFFFFFFFF001F00007FFFFFFFFFFFFFFFFFFFFFFFFFFFC00000003 -FFFFFC003F8001FFF81FFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFF -FFFFFFFFFFFFFFE00007FFFFFFFFFFFFFFFFFE0000007FFFFFFFFFFFFFFFFFFF -FFFFFFFFE00000003FFFFFFF0003F8001FF81FFFFFFFFC1FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFE0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFC0000FFFFFFFFFFFFFFFFFFE0001FFF -FFFFFFFFFFFFFFFFFFFFFFFFFC00000003FFFFFFFFC0007F0001C00FFFFFFFFE -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF6FFFFFFFFFFFFFFFFFFFFFFFF00001FFFFFFF -FFFFFFFFFFF000FFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000FFFFFFFFFE000 -1FC000000FFFFFFFFF03FFFFFFFFFFFFFFFFFFFFFFFFFFFE0007FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFF -FFFFFFE00003FFFFFFFFFFFFFFFFF80FFFFFFFFFFFFFFFFFFFFFFFFFFFF80000 -00000FFFFFFFFFE18003F800000FFFFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFFFF -E0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2 -FFFFFFFFFFFFFFFFFFFFFFFFFC00007FFFFFFFFFFFFFFFFC3FFFFFFFFFFFFFFF -FFFFFFFFFFFF80000001F00FFFFFFFFFE1E0003F00000FFFFFFFFFC0FFFFFFFF -FFFFFFFFFFFFFFFFFE0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFF80001FFFFFFFFFFFFFFF -FC3FFFFFFFFFFFFFFFFFFFFFFFFFF00000003FF00FFFFFFFFFE3F00003FC0007 -FFFFFFFFF07FFFFFFFFFFFFFFFFFFFFFFFE0003FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4FFFFFFFFFFFFFFFFFFFFFFFFFFF8 -0003FFFFFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFFE0000000FFFF00FFFFF -FFFFE3F06000FFE007FFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFE0007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFF -FFFFFFFFFFFFFFFFFE00007FFFFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFF80 -000000FFFFF00FFFFFFFFFE3F0F8000E0007FFFFFFFFFC1FFFFFFFFFFFFFFFFF -FFFFE0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000FFFFFFFFFFFFFFC3FFFFFFF -FFFFFFFFFFFFFFF80000000FFFFFF00FFFFFFFFFE3F0FC00000007FFFFFFFFFE -0FFFFFFFFFFFFFFFFFFFFE0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFF80001FFFF -FFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFF00000001FFFFFFF09FFFFFFFFFE3F0FC -00000007FFFFFFFFFF07FFFFFFFFFFFFFFFFFFE0007FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF00007FFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFF00000007FFFFFFF -F0FFFFFFFFFFE3F0FC00000107FFFFFFFFFF83FFFFFFFFFFFFFFFFFF0007FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFC00007FFFFFFFFFFFC3FFFFFFFFFFFFFFFFF -FE0000000FFFFFFFFFF0FFFFFFFFFFE3F8FE003FFE07FFFFFFFFFFC1FFFFFFFF -FFFFFFFFF0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80001FFFFFFFFFFFC -3FFFFFFFFFFFFFFFFFC0000000FFFFFFFFFFF0DFFFFFFFFFE3F8FE000FF80FFF -FFFFFFFFF0FFFFFFFFFFFFFFFF0003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FF80001FFFFFFFFFFC3FFFFFFFFFFFFFFFF80000001FFFFFFFFFFFF09FFFFFFF -FFE3F8FE1800000FFFFFFFFFFFF87FFFFFFFFFFFFFE0007FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFE00003FFFFFFFFFC3FFFFFFFFFFFFFFF80000003FFFF -FFFFFFFFF08FFFFFFFFFE3F8FE1C00001FFFFFFFFFFFFC3FFFFFFFFFFFFE0007 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000FFFFFFFFFC3FFFFFFFFF -FFFFE00000003FFFFFFFFFFFFFF08FFFFFFFFFE3F8FE1E00007FFFFFFFFFFFFE -1FFFFFFFFFFFF0003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0001F -FFFFFFFC3FFFFFFFFFFFFE0000000FFFFFFFFFFFFFFFF09FFFFFFFFFE3F8FE1F -0000FFFFFFFFFFFFFF0FFFFFFFFFFF0003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF00003FFFFFFFC3FFFFFFFFFFF80000001FFFFFFFFFFFFFFFFF0 -9FFFFFFFFFE3F8FE1F8040FFFFFFFFFFFFFF87FFFFFFFFF0003FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00007FFFFFFC3FFFFFFFFFF80000003F -FFFFFFFFFFFFFFFFF0FFFFFFFFFFE3F8FE1FC3E0FFFFFFFFFFFFFFC3FFFFFFFF -0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80001FFFFFFC3F -FFFFFFFF00000007FFFFFFFFFFFFFFFFFFF0FFFFFFFFFFE3F8FE1FC3E0FFFFFF -FFFFFFFFE1FFFFFFF0003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC00001FFFFFC3FFFFFFFF00000003FFFFFFFFFFFFFFFFFFFF0FFFFFFFFFF -E3F8FE1FE1F07FFFFFFFFFFFFFF1FFFFFF0003FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFE000007FFFFC3FFFFFFC0000000FFFFFFFFFFFFFFF -FFFFFFF0FFFFFFFFFFE3F8FE1FE1F07FFFFFFFFFFFFFFFFFFFF0003FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE180000FFFFC3FFFFFC00000 -00FFFFFFFFFFFFFFFFFFFFFFF08FFFFFFFFFE3F8FE1FE1F07FFFFFFFFFFFFFFF -FFFE0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF2FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1F800 -00FFFC3FFFF80000001FFFFFFFFFFFFFFFFFFFFFFFF08FFFFFFFFFE3F8FE1FE1 -F07FFFFFFFFFFFFFFFFFF0003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFE3FE00001FFC3FFF00000000FFFFFFFFFFFFFFFFFFFFFFFFF88F -FFFFFFFFE3FFFE1FF1F07FFFFFFFFFFFFFFF8E0007FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFC00003FC3FE00000001FFFFFFFFFFF -FFFFFFFFFFFFFFF8DFFFFFFFFFE3FFFE1FF1F07FFFFFFFFFFFFFFF00003FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFF800003C1000 -000003FFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFE3FFFE1FF1F07FFFFFFF -FFFFFFFF0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFE1FFFE000000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFE3 -FFFE1FF1F0FFFFFFFFFFFFFFF0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFE3FFFFC0000000000000FFFFFFFFFFFFFFFFFFFFFFFF -FFFFF8FFFFFFFFFFE3FFFE1FF1F0FFFFFFFFFFFFFF80007FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFF8000000000060FFFFFF -FFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFE3FEFE1FF1F0FFFFFFFFFFFFF00000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFE -000000000FE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFF8CFFFFFFFFFE3FE7E1FE1F0 -FFFFFFFFFFFF0001F83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE1FFFFFF8000000FFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFF88FFF -FFFFFFE3FC7E1FE1E0FFFFFFFFFFF0003FFC1FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFC00001FFFFF1FFFFFFFFFFFFFFFF -FFFFFFFFFFFFF8CFFFFFFFFFE3FC7E3FE1E1FFFFFFFFFF0007FFFE0FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFC1000FFFFF -F1FFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFE3FC7E3FE0E1FFFFFFFFE0 -001FFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF6FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F1FFFFFFC3E1FFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFE3F8 -7E3FE001FFFFFFFF0001FFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF1FFFFFFC3FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFF -FFF8CFFFFFFFFFE3F87E3FF001FFFFFFF8001FFFFFFFC3FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC3FFFFFFFFF1FFFFF8FF -FFFFFFFFFFFFFFFFFFFFF88FFFFFFFFFC3F87C3FF807FFFFFF0001FFFFFFFFE1 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC3 -FFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFF887FFFFFFFFC3F87C3FFC0FFF -FFF8003FFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF1FFFFFFC3FFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FFFF -FFFFC3F87C3FFFFFFFFF0001FFFFFFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC3FFFFFFFFF0FFFFFFFFFFFFFFFFFF -FFFFFFFFFFF807FFFFFFFFC3F87C7FFFFFFFF0001FFFFFFFFFFFFC3FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC3FFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FFFFFFFFC3F8F87FFFFFFF0001FFFFFF -FFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1 -FFFFFFC7FFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FFFFFFFF87F8F8 -7FFFFFF0003FFFFFFFFFFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFF -E007FFFFFFFF87F8F0FFFFFF0001FFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFFF0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFC003FFFFFFFF0FF8F0FFFFF0001FFFFFFFFFFFFFFFFF87 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF2FFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFE7FF -FFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFF8001FFFFFFFE0FF8F1FFFF0001FF -FFFFFFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5FFFFFC1FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF1FFFFFFE3FFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFF0001FFFFFF -FC1FF8E1FFF0001FFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFE03FFFF -FFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFE3FFFFFFFFF0FFFFFFFFFFFFFFFFFFFF -FFFFFFFF0000FFFFFFF83FF8E1FF0001FFFFFFFFFFFFFFFFFFFFE1FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF0FFFFFF80FFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFE3FFFFFFFFF0FF -FFFFFFFFFFFFFFFFFFFFFFFFFF0000FFFFFFF07FF8C3F8001FFFFFFFFFFFFFFF -FFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF0FFFFFFE01FFFFFFFFFFFFFFFFFFFFFFFFFFFF1FF -FFFFE3FFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFE00007FFFFFC0FFF80300 -01FFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFC07FFFFFFFFFFFF -FFFFFFFFFFFFFFF1FFFFFFE3FFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -003FFFFF01FFF800001FFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFF -FFFF00FFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFE3FFFFFFFFF0FFFFFFFFFFFF -FFFFFFFFFFFFFFFE083C0FFFF807FFF80001FFFFFFFFFFFFFFFFFFFFFFFFFE3F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF0FFFFFFFFC01FFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFE3FFFF -FFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFC007FC01FFFF8081FFFFFFFFFFF -FFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFF807FFFFFFFFFFFFFFFFFFFF -FFFFF1FFFFFFE3FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFE0000007F -FFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFF00FF -FFFFFFFFFFFFFFFFFFFFFFF1FFFFFFE3FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFF -FFFFFE3FFE000001FFFFF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF0FFFFFFFFFFC01FFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFE3FFFFFFFFF0FFFF -FFFFFFFFFFFFFFFFFFFFFFFE3FFE00000FFFFFF03FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFF807FFFFFFFFFFFFFFFFFFFFFFF8FFFF -FFE3FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFE1FF3FFFFFFF07FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4FFFFFFFFFFFF01FFFFFFFFFF -FFFFFFFFFFFFF8FFFFFFE3FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFF -1FFFFFFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFF -FFFFFFC01FFFFFFFFFFFFFFFFFFFFFF8FFFFFFE3FFFFFFFFF8FFFFFFFFFFFFFF -FFFFFFFFFFFFFE3FFF1FFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF8FFFFFFFFFFFFF803FFFFFFFFFFFFFFFFFFFFF8FFFFFFE3FFFFFF -FFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFE1FFFFFFFFF80FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFE00FFFFFFFFFFFFFFFFFF -FFF8FFFFFFF3FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFE1FFFFFFFFF -00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFE0 -1FFFFFFFFFFFFFFFFFFFF8FFFFFFF3FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFF -FFFE3FFE1FFFFFFFFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF803FFFFFFFFFFFFFFFFFFF8FFFFFFF3FFFFFFFFF8FFFFFF -FFFFFFFFFFFFFFFFFFFFFE3FFE1FFFFFFFF010FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFFFFFFFFFFFFFFFFF8FFFFFF -F3FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFE1FFFFFFFE070FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFC01FFFFFFF -FFFFFFFFFFF8FFFFFFF3FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFC0F -FFFFFF80F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFF -FFFFFFFFF803FFFFFFFFFFFFFFFFF8FFFFFFF3FFFFFFFFF8FFFFFFFFFFFFFFFF -FFFFFFFFFFFE3FF803FFFFFE03F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF8FFFFFFFFFFFFFFFFFF00FFFFFFFFFFFFFFFFF8FFFFFFF3FFFFFFFF -F8FFFFFFFFFFFFFFFFFFFFFFFFFFFC1FF0000FFFF007F8FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFFFFFFFFFFFF -F8FFFFFFF3FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFC07E00001FF001FF8 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFF -F807FFFFFFFFFFFFFFF8FFFFFFF3FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFF -E0000000000000FFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFF00FFFFFFFFFFFFFFF8FFFFFFF1FFFFFFFFF8FFFFFFFF -FFFFFFFFFFFFFFFFFE000000FE000007FFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFE01FFFFFFFFFFFFFF8FFFFFFF1 -FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFF0000003FFE0007FFFF8FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFC03FFFF -FFFFFFFFF8FFFFFFF1FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFF0001E007FFFF -FFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF80FFFFFFFFFFFFF8FFFFFFF1FFFFFFFFF8FFFFFFFFFFFFFFFFFF -FFFFF0001FE01FFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF0FFFFFFFFFFFFFFFFFFFFFFE01FFFFFFFFFFFF8FFFFFFF1FFFFFFFFF8 -7FFFFFFFFFFFFFFFFFFFFF8001FFF01FFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFFFF8 -FFFFFFF1FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFF8001FFFF01FFFFFFFFFFFF8FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFF -FFFF00FFFFFFFFFFF8FFFFFFF1FFFFFFFFF8FFFFFFFFFFFFFFFFFFFF0001FFFF -F01FFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FF -FFFFFFFFFFFFFFFFFFFFFFE01FFFFFFFFFF8FFFFFFF1FFFFFFFFF8FFFFFFFFFF -FFFFFFFFF8001FFFFFF01FFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF4FFFFFFFFFFFFFFFFFFFFFFFFF803FFFFFFFFF8FFFFFFF1FF -FFFFFFF8FFFFFFFFFFFFFFFFFF8001FFFFFFF01FFFFFFFFFFFF8FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFF00FF -FFFFFFF8FFFFFFF1FFFFFFFFF8FFFFFFFFFFFFFFFFF8000FFFFFFFF01FFFFFFF -FFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFF -FFFFFFFFFFFFFFE01FFFFFFFF8FFFFFFF1FFFFFFFFF8FFFFFFFFFFFFFFFF8001 -FFFFFFFFF01FFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFF803FFFFFFF87FFFFFF1FFFFFFFFFCFF -FFFFFFFFFFFFF8001FFFFFFFFFF01FFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF5FFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFF87F -FFFFF1FFFFFFFFFC7FFFFFFFFFFFFF8000FFFFFFFFFFF01FFFFFFFFFFFF8FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFF -FFFFFFC01FFFFFFC7FFFFFF1FFFFFFFFFC7FFFFFFFFFFFFC001FFFFFFFFFFFF1 -BFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF803FFFFFC7FFFFFF1FFFFFFFFFC7FFFFFFFFFFF -C000FFFFFFFFFFFFF1FFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFFFC7FFFFFF1FFFF -FFFFFC7FFFFFFFFFFC001FFFFFFFFFFFFFF1FFFFFFFFFFFFF8FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 -1FFFFC7FFFFFF1FFFFFFFFFC7FFFFFFFFFC001FFFFFFFFFFFFFFF1BFFFFFFFFF -FFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFC03FFFC7FFFFFF1FFFFFFFFFC7FFFFFFFF8001FFFFFFFFF -FFFFFFF01FFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF4FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FFC7FFFFFF1FFFFFFFFFC7FFF -FFFFC001FFFFFFFFFFFFFFFFF01FFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFC7FFF -FFF1FFFFFFFFFC7FFFFFF8001FFFFFFFFFFFFFFFFFF01FFFFFFFFFFFF8FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF801FC7FFFFFF1FFFFFFFFFC7FFFFF8000FFFFFFFFFFF03FFFFFF1BF -FFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF007C7FFFFFF1FFFFFFFFFC7FFFF8001FFFFF -FFFFFFC001FFFFF1FFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0007FFFFFF1FFFFFF -FFFC7FFF0000FFFFFFFFFFFF80003FFFF1FFFFFFFFFFFFF8FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F8007FFFFFF1FFFFFFFFFC7FF8000FFFFFFFFFFFFF03E003FFF1FFFFFFFFFFFF -F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE007FFFFFF1FFFFFFFFFC7F0000FFFFFFFFFFFFFF0FF8 -003FE19FFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFF1FFFFFFFFFC78000F -FFFFFFFFFFFFFE1FFF00038087FFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFF -F1FFFFFFFFFC0000FFFFFFFFFFFFFFFE3FFFF0000001FFFFFFFFFFF8FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFC7FFFFFF1FFFFFFFFFC0007FFFFFFFFFFFFFFFE3FFFFC000000FF -FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF1FFFFFFFFFC00FFFFFFFFFFFFFF -FFFE3FFFFF801000FFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF1FFFFFFFF -FC07FFFFFFFFFFFFFFFFFF3FE0FFF038007FFFFFFFFFF8FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC7FFFFFF1FFFFFFFFFC3FFFFFFFFFFFFFFFFFFF1FC01FF87C183FFFFFFFFFF8 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC7FFFFFF1FFFFFFFFFC7FFFFFFFFFFFFFFFFFFF1FE001 -F8FF383FFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF9FFFFFFFFFC7FFFFFFF -FFFFFFFFFFFF8FE00000FFF80FFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF9 -FFFFFFFFFC7FFFFFFFFFFFFFFFFFFF87C00000FFF000FFFFFFFFF8FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC3FFFFFF9FFFFFFFFFC7FFFFFFFFFFFFFFFFFFFC001F000FFF0001F -FFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFF9FFFFFFFFFC7FFFFFFFFFFFFFFFFF -FFE003FE00FFE0F003FFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFF9FFFFFFFFFC -7FFFFFFFFFFFFFFFFFFFF80FFFC0FFE1FC003FFFFFF8FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC -3FFFFFF8FFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFF87FE1FF0007FFFFF8FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFE7FFFFFF8FFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFF8 -7FE0FFE0007FFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF8FFFFFFFFFC7FFFFFFFFF -FFFFFFFFFFFFFFFFFC3FE03FFC000FFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF8FF -FFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFE1FE00FFFE0003FF87FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFE3FFFFFF8FFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFF07E007FFF8 -000FF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF8FFFFFFFFFC7FFFFFFFFFFFFFFFFFFF -FFFFFFFF8000003FFF0007F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF8FFFFFFFFFC7F -FFFFFFFFFFFFFFFFFFFFFFFFFFC001C001FFFF83F8FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3F -FFFFF8FFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFE007FC003FFFC3F8FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFE3FFFFFF8FFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFF0007DFE1F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF8FFFFFFFFFC7FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFE0000FE1F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF8FFFF -FFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000FF1F8FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFE3FFFFFF8FFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00F -E1F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF8FFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF80FE1F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF8FFFFFFFFFE7FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FE1F8FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFF -FFF8FFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FC1F8FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFE3FFFFFF8FFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF8F83F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF8FFFFFFFFFC3FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF8003F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF8FFFFFF -FFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8007F8FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFE3FFFFFF8FFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01F -F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFE3FFFFFFCFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFCFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFCFFFFFFFFFE3FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFF -F8FFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFE3FFFFFFCFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFCFFFFFFFFFE3FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFCFFFFFFFF -FE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FE3FFFFFFCFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE1FFFFFFC7FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFC7FFFFFFFFE3FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFC -7FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF3FFFFFFC7FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFCFFFFFFFFFE3FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF4FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFCFFFFFFFFFE -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -1FFFFFFCFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFFE3FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF2FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7F -FFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF1FFFFFFC7FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFFE3FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFFE3F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF4FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1F -FFFFFC7FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFFE3FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFF -FFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF1FFFFFFC7FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFFF1FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFF -FFFE7FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF1FFFFFFC7FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFFF1FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFF -FFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFF1FFFFFFC7FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFF9FFFFFFE7FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFE7FFFFFFFFF1FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFF -FE7FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF8FFFFFFE7FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFE7FFFFFFFFF1FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFE7FFFFFFF -FF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FF8FFFFFFE7FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF8FFFFFFE7FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFE7FFFFFFFFF1FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFE -3FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF8FFFFFFE3FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFE3FFFFFFFFF1FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFE3FFFFFFFFF -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -8FFFFFFE3FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF8FFFFFFE3FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFE3FFFFFFFFF1FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFE3F -FFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF8FFFFFFE3FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFE3FFFFFFFFF1FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFE3FFFFFFFFF1F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCF -FFFFFE3FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFCFFFFFFE3FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFE3FFFFFFFFF1FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFE3FFF -FFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFC7FFFFFE3FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFE3FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFE3FFFFFFFFF0FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FF -FFFE3FFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFC7FFFFFE3FFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFE3FFFFFFFFF8FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFE3FFFFF -FFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC7FFFFFE3FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFC7FFFFFE3FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFE3FFFFFFFFF8FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFF -FF3FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFC7FFFFFF3FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF3FFFFFFFFF8FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF3FFFFFFF -FF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC7FFFFFF3FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFC7FFFFFF3FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF3FFFFFFFFF8FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF -3FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFC7FFFFFF3FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF3FFFFFFFFF8FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF1FFFFFFFFF -8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C7FFFFFF1FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFC7FFFFFF1FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF1FFFFFFFFF8FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF1F -FFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFC7FFFFFF1FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF1FFFFFFFFF8FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF1FFFFFFFFF8F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF4FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7 -FFFFFF1FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFC7FFFFFF1FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF1FFFFFFFFF87FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF1FFF -FFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFC7FFFFFF1FFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF1FFFFFFFFFC7FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF1FFFFFFFFFC7FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FF -FFFF1FFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFE7FFFFFF1FFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFF1FFFFFFFFFC7FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF9FFFFF -FFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFE3FFFFFF9FFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFE3FFFFFF9FFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF9FFFFFFFFFC7FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFF -FF9FFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFE3FFFFFF9FFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF9FFFFFFFFFC7FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF9FFFFFFF -FFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFE3FFFFFF9FFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFE3FFFFFF9FFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF8FFFFFFFFFC7FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF -8FFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE3FFFFFF8FFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF8FFFFFFFFFC7FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF4FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF8FFFFFFFFF -C7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F3FFFFFF8FFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF3FFFFFF8FFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFF8FFFFFFFFFC7FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFF8F -FFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF3FFFFFF8FFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFF8FFFFFFFFFC7FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFCFFFFFFFFFE7 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1 -FFFFFF8FFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF3FFFFFF8FFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFCFFFFFFFFFE7FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFCFFF -FFFFFFE7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF3FFFFFFCFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFCFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFCFFFFFFFFFE3FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FF -FFFFCFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF3FFFFFFCFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFCFFFFFFFFFE3FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFCFFFFF -FFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF3FFFFFFC7FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFFE3FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFF -FFC7FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF1FFFFFFC7FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFFE3FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFF -FFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF1FFFFFFC7FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFFE3FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFF -C7FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF1FFFFFFC7FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFFE3FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF2 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFFE3FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFF -C7FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF1FFFFFFE7FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFE7FFFFFFFFE3FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFF -E3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F1FFFFFFC7FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFFE3FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFE7 -FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF1FFFFFFE7FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFE7FFFFFFFFE3FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFE7FFFFFFFFE3 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9 -FFFFFFE7FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF9FFFFFFE3FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFE3FFFFFFFFE3FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFE3FF -FFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF8FFFFFFE3FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFE3FFFFFFFFE3FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFE3FFFFFFFFE3FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FF -FFFFE3FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF8FFFFFFE3FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFE3FFFFFFFFE3FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFE3FFFF -FFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF8FFFFFFE3FFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF8FFFFFFE3FFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFE3FFFFFFFFE1FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFF -FFE3FFFFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF8FFFFFFE3FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFE3FFFFFFFFF1FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF2FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFE3FFFFFF -FFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF8FFFFFFE3FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF8FFFFFFE3FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFE3FFFFFFFFF1FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFF -F3FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFCFFFFFFF3FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFF3FFFFFFFFF1FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF6FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFF3FFFFFFFF -F1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FCFFFFFFF3FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFCFFFFFFF3FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF3FFFFFFFFF1FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF3 -FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFF -FFFFFFFFE7FFFFFF9F1FFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC7FFFFFF3FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFCFF8003F8FFFFFFFFFFFFC3FFFFFF0F0FFFFFFFFFFFFFFFFFFFFFFFFFFE -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF3FFFFFFFFF1FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFCFF8001F0FFFFFFFFFFFFC3FFFFFF0F0FFFFFFFFF -FFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF1FFFFFFFFF1 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFF8000F0FFFFFFFFFFFFC3 -FFFFFF0F1FFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC -7FFFFFF1FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFF80 -0070FFFFFFFFFFFFC3FFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFC7FFFFFF1FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFCFF87F070FFFFFFFFFFFFC3FFFFFF0FFFFFFFFFFFFFFFFFFFFF -FFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF1FFFFFFFFF1FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFF87F830FFFFFFFFFFFFC3FFFFFF0FFF -FFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF1FF -FFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFF87F830FFFFFF -787E0FC003FFFF0F9F181FF807FFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFC7FFFFFF1FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFC7F87F870F1FE3E001807C001FFFF0F0E0007E003FFFFFFFFFFFFFFFFFF1F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF1FFFFFFFFF1FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFC7F87F070F0FE3E000003C000FFFF0F0E0007E001FF -FFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF1FFFFFFFFF1FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7F83E070F0FE3E000001C070 -7FFF0F0E0003C1E1FFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7F -FFFFF1FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7F8000 -F0F0FE1E0F03C1C0F87FFF0F0E078383E0FFFFFFFFFFFFFFFFFF8FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFC7FFFFFF1FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFC7F8000F0F0FC1E1F83E1C1F83FFF0F0E0FC383E0FFFFFFFFFFFF -FFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF1FFFFFFFFF1FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7F8001F0F0FC3E1F87E1C3FC3FFF0F0E0F -C38000FFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF1FFFF -FFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7F8007F0F0FC3E1F -87E1C3FC3FFF0F0E0FC38000FFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFC7FFFFFF1FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC7F83FFF0F0FC3E1F87E1C3FC3FFF0F0E1FC38000FFFFFFFFFFFFFFFFFFC7FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF1FFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC7F87FFF0F0FC1E1F87E1C3FC3FFF0F0E1FC38001FFFF -FFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFF1FFFFFFFFF0FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7F87FFF0F0FC1E1F87E1C3FC3F -FF0F0E1FC387FFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFF -FFF1FFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7F87FFF8 -F0FC1E1F87E1C1FC3FFF0F0E1FC187F1FFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFE7FFFFFF1FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC7F87FFF8F0FC1E1F87E1C1F83FFF0F0E1FC3C3F1FFFFFFFFFFFFFF -FFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF9FFFFFFFFF8FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFC7F87FFF8F0781E1F87E1C0F07FFF0F0E1FC3 -C1E1FFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFF9FFFFFF -FFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7F87FFF8F8003E1F87 -E1C0007FFF0F0E1FE3E001FFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFE7FFFFFF9FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC -7F87FFF8F8003E3F87F1C000FFFF8F1F1FE3F003FFFFFFFFFFFFFFFFFFE3FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFC7FFFFFF9FFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFC7F87FFF8FC003E3FCFF1E003FFFF9F9F3FE3F80FFFFFFF -FFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF9FFFFFFFFF8FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFF0F7FFFFFFFFFDFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFF -F9FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFC3FFFFFF9FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFF9FFFFFFFFF8FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFF9FFFFFFFF -F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FE3FFFFFF9FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE3FFFFFF9FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF8FFFFFFFFF8FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF8 -FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE3FFFFFF8FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF8FFFFFFFFF8FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF8FFFFFFFFF8 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -3FFFFFF8FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFE3FFFFFF8FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF8FFFFFFFFF8FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF8FF -FFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFE3FFFFFF8FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF8FFFFFFFFF8FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF8FFFFFFFFF8FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3F -FFFFFCFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFE3FFFFFFCFFFFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFCFFFFFFFFF87FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFCFFFF -FFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF4FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFE3FFFFFFCFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFCFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFCFFFFFFFFFCFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFF -FFFCFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFE3FFFFFFC7FFFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFCFFFFFFFFF87FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFCFFFFFF -FFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFE3FFFFFFC7FFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFC7FFFFFFFFC7FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFF -FC7FFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF1FFFFFFC7FFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFFC7FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFF -FC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FF1FFFFFFC7FFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFFC7FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC -7FFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF1FFFFFFC7FFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFFC7FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFFC -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -1FFFFFFC7FFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFFC7FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7F -FFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF1FFFFFFC7FFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFFC7FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFE7FFFFFFFFC7F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1F -FFFFFC7FFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF1FFFFFFE7FFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFE7FFFFFFFFC7FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFE7FFF -FFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF1FFFFFFE7FFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFE3FFFFFFFFC3FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFE3FFFFFFFFE3FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF4FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFF -FFFE3FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF9FFFFFFE3FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFE3FFFFFFFFE3FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFE3FFFFF -FFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFF8FFFFFFE3FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFF8FFFFFFE3FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFE3FFFFFFFFE3FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFF -FF3FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF8FFFFFFE3FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFE3FFFFFFFFE3FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFE3FFFFFFF -FE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FF8FFFFFFE3FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF8FFFFFFE3FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFE3FFFFFFFFE3FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFF -3FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF8FFFFFFF3FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFE7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFF3FFFFFFFFE3FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFF1FFFFFFFFE -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -8FFFFFFF1FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF8FFFFFFF1FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFF1FFFFFFFFE3FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFF1F -FFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF8FFFFFFF1FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFF1FFFFFFFFE3FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFF1FFFFFFFFE3F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8F -FFFFFF1FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF8FFFFFFF1FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFF1FFFFFFFFE3FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFF1FFF -FFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFCFFFFFFF1FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFF1FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFF1FFFFFFFFE3FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFF -FFFF1FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFC7FFFFFF1FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF9FFFFFFFFE3FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF9FFFFF -FFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC7FFFFFF9FFFFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFC7FFFFFF9FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF9FFFFFFFFF1FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFF -FF9FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFC7FFFFFF9FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF8FFFFFFFFE1FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF8FFFFFFF -FE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF2FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC7FFFFFF8FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFC7FFFFFF8FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF8FFFFFFFFF1FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF -8FFFFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFC7FFFFFF8FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF8FFFFFFFFF1FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF8FFFFFFFFF -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C7FFFFFF8FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFC7FFFFFF8FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF8FFFFFFFFF1FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFF8F -FFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFC3FFFFFF8FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFF8FFFFFFFFF1FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF8FFFFFFFFF1F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3 -FFFFFF8FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE7FFFFFF8FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF8FFFFFFFFF1FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF2FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF8FFF -FFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFE3FFFFFF8FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF8FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFCFFFFFFFFF1FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FF -FFFFCFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFE3FFFFFF8FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF8FFFFFFFFF1FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF8FFFFF -FFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFE3FFFFFF8FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFE3FFFFFFCFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFCFFFFFFFFF1FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFF -FFCFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFE3FFFFFFCFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFCFFFFFFFFF1FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFCFFFFFFF -FF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFE3FFFFFFCFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFE3FFFFFFCFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFCFFFFFFFFF1FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFF -CFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE1FFFFFFCFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFCFFFFFFFFF0FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFCFFFFFFFFF -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E1FFFFFFCFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFF0FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7 -FFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF1FFFFFFC7FFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFF8FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFF8F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1 -FFFFFFC7FFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFF8FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF4FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FF -FFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF1FFFFFFC7FFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFF8FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFF8FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FF -FFFFC7FFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFF8FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF6FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFF -FFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF1FFFFFFE7FFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF1FFFFFFE7FFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFF8FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF4FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFF -FFE7FFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF1FFFFFFE7FFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFE7FFFFFFFF8FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFE7FFFFFF -FF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF1FFFFFFE7FFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF1FFFFFFE7FFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFE7FFFFFFFF8FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFF -E7FFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF0FFFFFFE7FFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFE7FFFFFFFF8FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFE3FFFFFFFF -8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F0FFFFFFE3FFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF8FFFFFFE3FFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFE3FFFFFFFF8FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFE3 -FFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF8FFFFFFE3FFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFE3FFFFFFFF8FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFE3FFFFFFFF8F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8 -FFFFFFE3FFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF8FFFFFFE3FFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFE3FFFFFFFF8FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFE3FF -FFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF8FFFFFFE3FFFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFE3FFFFFFFF8FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFE3FFFFFFFF87FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FF -FFFFE3FFFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF8FFFFFFE3FFFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFE3FFFFFFFF87FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFE3FFFF -FFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF8FFFFFFE3FFFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF8FFFFFFE3FFFFFFFF87FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFE3FFFFFFFF87FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFF -FFE3FFFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFC7FFFFFF3FFFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFF3FFFFFFFFC7FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFE3FFFFFF -FFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFC7FFFFFE3FFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFC7FFFFFF1FFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF1FFFFFFFFC7FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFF -E1FFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFC7FFFFFF1FFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF1FFFFFFFFC7FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF1FFFFFFFF -C7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC7FFFFFF1FFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC7FFFFFF3FFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF3FFFFFFFFC7FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF3 -FFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC7FFFFFF1FFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF1FFFFFFFFC7FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF1FFFFFFFFC7 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC -7FFFFFF1FFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFC7FFFFFF1FFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF1FFFFFFFFC7FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF1FF -FFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFC7FFFFFF1FFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF1FFFFFFFFC7FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF1FFFFFFFFC7FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7F -FFFFF1FFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFC7FFFFFF1FFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF1FFFFFFFFC7FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF1FFFF -FFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFE7FFFFFF1FFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFE7FFFFFF1FFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFF1FFFFFFFFC7FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFF -FFF1FFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFC7FFFFFF1FFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFF1FFFFFFFFC7FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFD -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFF1FFFFFFFFC7FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFF -FFF1FFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFC7FFFFFF1FFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFF1FFFFFFFFC7FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF4FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFF1FFFFFF -FFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFE3FFFFFF1FFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFE3FFFFFF9FFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF1FFFFFFFFE3FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFF -F1FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFE3FFFFFF1FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF9FFFFFFFFE3FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF9FFFFFFFF -E3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FE3FFFFFF9FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE3FFFFFF8FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF8FFFFFFFFE3FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF9 -FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE3FFFFFF9FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF8FFFFFFFFE3FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF8FFFFFFFFE3 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF4FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -3FFFFFF8FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFE3FFFFFF8FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF8FFFFFFFFE3FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF2FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF8FF -FFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFE3FFFFFF8FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF8FFFFFFFFE3FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF8FFFFFFFFE3FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3F -FFFFF8FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFE3FFFFFF8FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF8FFFFFFFFE3FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF8FFFF -FFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF6FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFE3FFFFFF8FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF8FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFF8FFFFFFFFE3FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFF -8003FFFFC07FFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFF -FFF8FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFF -FFFFFFFFFFFFFFFFFE0000FFFF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF3FFFFFF8FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFE000001FF8000FFFFFFFFFFFFFFFFF -FFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFF8FFFFFFFFE3FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFF80000007C000 -03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFCFFFFFF -FFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFF -FFFFF800000000001F007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFF1FFFFFFCFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7F -FFFFFFFFFFFFFFFFFFFFFFC00000000000FFC01FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFF1FFFFFFCFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFF00000000001FFFF007FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFCFFFFFFFFE1FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFF0000000 -00007FFFFC01FFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFF -FCFFFFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFF -FFFFFFFFFFC00000000003FFFFFF807FFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF1FFFFFF8FFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFC7FFFFFFFFFFFFFFFFFFFFE00000000001FFFFFFFE00FFFFFFFFFFFFFFF -FFFFFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFCFFFFFFFFE3FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFF000000000007FFFFFFF -F803FFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFF -E3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFF00 -0000000003FFFFFFFFFE00FFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FF1FFFFFFCFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFF -FFFFFFFFFFFFFFF800000000001FFFFFFFFFFF801FFFFFFFFFFFFFFFFFFFFFFE -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF1FFFFFFCFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFC00000000001FFFFFFFFFFFFF007FFFF -FFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFCFFFFFFFFE3FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFE00000000000FFF -FFFFFFFFFFFC01FFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFF8 -FFFFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFF -FFF000000000003FFFFFFFFFFFFFFF007FFFFFFFFFFFFFFFFFFFFF1FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF1FFFFFF87FFFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFC7FFFFFFFFFFFFFFFC00000000001FFFFFFFFFFFFFFFFC01FFFFFFFFFFFFF -FFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFE1FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFC00000000001FFFFFFFFFFFFFFF -FFF007FFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFF09FFFFFFFFFFFFFFFFFFFFFFFF -FFF5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFC7FFFFFFFE1 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFE000000000 -007FFFFFFFFFFFFFFFFFFE01FFFFFFFFFFFFFFFFFFFF1FFFFFFFFFF80007FFFF -FFFFFFFFFFFFFFFFFFFFF2FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -1FFFFFF87FFFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFF -FFFFFFFF000000000003FFFFFFFFFFFFFFFFFFFF803FFFFFFFFFFFFFFFFFFF1F -FFFFFFFFE00001FFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF0FFFFFF87FFFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFC7FFFFFFFFFFFF800000000001FFFFFFFFFFFFFFFFFFFFFE00FFF -FFFFFFFFFFFFFFFF0FFFFFFFFFC000007FFFFFFFFFFFFFFFFFFFFFFFF8FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFF87FFFFFFFE1FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFC00000000000FFFFFFFFFF -FFFFFFFFFFFFFC01FFFFFFFFFFFFFFFFFF0FFFFFFFFF007FC03FFFFFFFFFFFFF -FFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFC7F -FFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFE0000 -00000007FFFFFFFFFFFFFFFFFFFFFFFE00FFFFFFFFFFFFFFFFFF0FFFFFFFFE07 -FFF80FFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF0FFFFFFC7FFFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F83FFFFFFFFFF000000000003FFFFFFFFFFFFFFFFFFFFFFFFFC03FFFFFFFFFFF -FFFFFF0FFFFFFFFE0FFFFE07FFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFC7FFFFFFFE1FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFC01FFFFFFFFF800000000001FFFFFFFFFFFFFFFFFFFFFF -FFFFF007FFFFFFFFFFFFFFFF0FFFFFFFFC3FFFFF87FFFFFFFFFFFFFFFFFFFFFF -F0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFC7FFFFFFFE1FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFC00000000001FFFFF -FFFFFFFFFFFFFFFFFFFFFFFC01FFFFFFFFFFFFFFFF0FFFFFFFFC7FFFFFC3FFFF -FFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8F -FFFFFC7FFFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0001FFFFFF -E00000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FFFFFFFFFFFFFFF0FFF -FFFFF87FFFFFE3FFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF8FFFFFFC7FFFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFC0F80FFFFFF000000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01F -FFFFFFFFFFFFFF0FFFFFFFF87FFFFFE1FFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFC7FFFFFFFE1FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF87FE07FFFF800000000001FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF803FFFFFFFFFFFFFF0FFFFFFFF87FFFFFE1FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFC7FFF -FFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFF83FFFC00000000000 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFFFFFFFFFFFF0FFFFFFFF87FFF -FFE0FFFFFFFFFFFFFFFFFFFFFFF6FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF8FFFFFFC7FFFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FF -FC3FFE000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FFFFFFFFF -FFFF8FFFFFFFF83FFFFFE07FFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFC7FFFFFFFE1FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFE3FFFE1FF000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF007FFFFFFFFFFFF8FFFFFFFF81FFFFFC03FFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFC7FFFFFFFF1FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFF0F800000000001FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFC03FFFFFFFFFFFF8FFFFFFFF00FFFFF801FFFFF -FFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFF -FFFC7FFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFF00000000 -00000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FFFFFFFFFFF8FFFFF -FFC003FFFE000FFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF8FFFFFFC7FFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC3FFFF0000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 -1FFFFFFFFFFF8FFFFFFF0000FFF00E07FFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFC7FFFFFFFF1FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFC3FFFF800000000003FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF807FFFFFFFFFF8FFFFFFC07C000003F83FFFFFFFFFFFFFF -FFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFC7FFFFF -FFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFF80000000000FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFFFFFFFF8FFFFFF80FF80000 -7FC1FFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFF8FFFFFFC7FFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFF -8000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FFFFFFF -FF8FFFFFF03FFE0001FFE0FFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFF8FFFFFFC7FFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFE3FFFF0000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF00FFFFFFFFF87FFFFE03FFFE0BFFFE07FFFFFFFFFFFFFFFFFFFF0FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFC7FFFFFFFF1FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFF000000001FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFC01FFFFFFFF87FFFFE07FFFFFFFFFF07FFFFF -FFFFFFFFFFFFFFF2FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFF -FC7FFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFF00000001FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FFFFFFF87FFFFC0 -FFFFFFFFFFF03FFFFFFFFFFFFFFFFFFFF5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF87FFFFFC7FFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFE1FFFE00000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E01FFFFFFF87FFFFC0FFFFFFFFFFE03FFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFC7FFFFFFFF1FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFC1FFFE0000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF807FFFFFF87FFFF807FFFFFFFFFE01FFFFFFFFFFFFFFF -FFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFC7FFFFFFF -F1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFC000001FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFFFFCFFFFF803FFFFFFFFF -C01FFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FF87FFFFFC3FFFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8007FF800 -000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFFFF -EFFFFF801FFFFFFFFF830FFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF87FFFFFC3FFFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFC0001FE000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF00FFFFFFFFFFF8407FFFFFFFF078FFFFFFFFFFFFFFFFFFFF9FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFC3FFFFFFFE1FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFE000000000003FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FFFFFFFFFF8603FFFFFFFC078FFFFFFF -FFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFC -3FFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000001FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FFFFFFFFF8780 -7FFFFFF00F8FFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFC03FFFFC3FFFFFFE01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000 -00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC01FFFFFFFFF87C01FFFFF803F8FFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFFC3FFFFFF003FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFC000000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF803FFFFFFFF87F801FFF0007FCFFFFFFFFFFFFFFFFF -FFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FFFC3FFFFF0007 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000000000001FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFC7FFFF87FC00000003FF -8FFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FE007FFC3FFFF8003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000001FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FC7 -FFFF87FF8000001FFF8FFFFFFFFFFFFFFFFFFFF4FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF801FFC3FFFC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F8000000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFE00FC7FFFF87FFF80000FFFF8FFFFFFFFFFFFFFFFFFFFEFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FC3FFE000FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFC000000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803C7FFFF87FFFFFFFFFFFF8FFFFFFFFF -FFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00FC3F -F0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000000000003FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0003FFFF87FFFF -FFFFFFFF8FFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF003C3F8003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000000 -003FFF87FF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC003FFFF87FFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00C3E001FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFC000000000007C3FFF83FE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF003FFFF87FFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFE000000000007FC3FFF81FC1FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FFFF87FFFFFFFFFFFF8F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFC00000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000003FFC3FFFC1F8 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007F -FF87FFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFF00007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000 -000001FFFC3FFFE0F83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF801FFF87FFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFF8FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFC00000000000FFFFC3FFFF0707FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FF87FFFFFFFFFFFF8FFFFFFFFFFF -FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFC000000000007FFFFC7FFFF000FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000FF87FFFFFF -FFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000000000000FFFFFC -7FFFF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC1003F87FFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8 -000000000001FFFFFC7FFFFC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFC3E00F87FFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF80000000000000FFFFFC3FFFFC03FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3F80307FFFFFFFFFFFF8FFF -FFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000000000003803FFFFC3FFFFE03FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FE00 -0FFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000000000003F -E01FFFFC3FFFFE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFE3FF8007FFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFF800000000001FFF807FFF83FFFFC03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFE007FFFFFFFFFFFF8FFFFFFFFFFFFF -FFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFE00000000000FFFFE01FFE01FFFFC01FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFE3FFF807FFFFFFFF -FFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000000000007FFFFF807F800F -FFF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFF -FFE3FFFF07FFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000 -0003FFFFFFF01F0007FFF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFE3FFFFFFFFFFFFFFFFE3FFFF87FFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFF3FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF800000000001FFFFFFFFC020003FFF0707FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFF8FFFFFFFFFFFFF8FFFFF -FFFFFFFFFFFFFFF4FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF800000000000FFFFFFFFFF000001FFE0F03FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFF87 -FFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000000000007FFFFFFFF -FFC00001FFC1F83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE3FFFF8FFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000 -000000003FFFFFFFFFFFE00000FFC1FC1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFF87FFFFFFFFFFFF8FFFFFFFFFFFFFFF -FFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF000000000001FFFFFFFFFFFFF80000FF83FE0FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFF87FFFFFFFFFF -FF8FFFFFFFFFFFFFFFFFFFF5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000000000007FFFFFFFFFFFFFC0000FF -87FE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E3FFFF87FFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000000000003FFF -FFFFFFFFFFFC0000FF0FFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFE3FFFFC7FFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFEFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FE000000000001FFFFFFFFFFFFFFFC0000FF9FFFCFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFC7FFFFFFFFFFFF8FFFFFFF -FFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF000000000000FFFFFFFFFFFFFFFFC0000FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFC7FF -FFFFFFFFFF8FFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000000000007FFFFFFFFFFFFFFF -FE00007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFE1FFFFC7FFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000000000 -03FFFFFFFFFFFFFFFFFE00003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFC3FFFFFFFFFFFF0FFFFFFFFFFFFFFFFF -FFF4FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFE000000000001FFFFFFFFFFFFFFFFFFF00000FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFE3FFFFFFFFFFFE -1FFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFE000000000000FFFFFFFFFFFFFFFFFFFF800003FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1 -FFFFE1FFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000007FFFFFFFFFF -FFFFFFFFFFC00601FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF1FFFFE1FFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFEFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000 -0000007FFFFFFFFFFFFFFFFFFFFFF01F807FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFF0FFFFFFFFFFF83FFFFFFFFF -FFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFE000000000001FFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFF07FFF -FFFFFFF07FFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000FFFFFFFFFFFFFFFFFFFFFFF -FFFFFC07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF1FFFFF81FFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFF4FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000000000007FFFFF -FFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFC0FFFFFFFFF81FFFFFFFFFFFFFFFFFFFF -F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC -000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFE03FFFFFFFF01FF -FFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FF -FFFF80FFFFFFFC00FFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFC07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFC01FFFFFE0003FFFFFFFFFFFFFFFFFFFF1FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFF00001FFFFFFFFFFF -FFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC000000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000 -C000E003FFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFC000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF00000003FC00FFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000003FFF003FFFFFFFFFFFFFFFFFF4 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000 -00007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000FFFFFC00F -FFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF8000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFF -FFFF001FFFFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFE000000000001FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF1FFFFFFFC00FFFFFFFFFE00FFFFFFFFFFFFFFFFF0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000000000000FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFE003FFFFFFFFFFC01FFFFFFFFF -FFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -0000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFF01FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFF801FFFFF -FFFFFFF007FFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF8000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFF -FFFFFFFFC07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF0FFFFFE00FFFFFFFFFFFFFC01FFFFFFFFFFFFFFF2FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000000000001FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF007FFFFFFFFFFFFF01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF0FFFFF007FFFFFFFFFFFFFF007FFFFFFFFFFFFFF0FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000000000000FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFFFFFFFE07FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFF801FFFFFFFFFFFFFFFC0 -0FFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FF0000000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFFFFFFFF -81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFE00 -FFFFFFFFFFFFFFFFF803FFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF8000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E003FFFFFFFFFFFFFFE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF8FFF007FFFFFFFFFFFFFFFFFE00FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000000000001FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF0FE003FFFFFFFFFFFFFFF00FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FF803FFFFFFFFFFFFFFFFFFF803FFFFFFF -FFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000000000 -00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07E003FFFFFFFFFFFFFFFE03FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FE01FFFFFFFFFFFF -FFFFFFFFE00FFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFE0000000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07E007FFFFFF -FFFFFFFFFF80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F0F807FFFFFFFFFFFFFFFFFFFFF803FFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF0000000000001FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFC03F007FFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF0003FFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFFFF0FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000000000001FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFC03F80FFFFFFFFFFFFFFFFFF80FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFFFFFFFFFFFFFFFFFF -801FFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000 -0000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FF7FFFFFFFFFFFFFFFFF -FE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFF -FFFFFFFFFFFFFFFFFFF007FFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFC0000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801FF -FFFFFFFFFFFFFFFFFFFF80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFC01FFFFFFFFFFFFFFFFFFFFFFFFFFC01FFFFFFFFFEFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000001FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF861FFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFFFFFFFFFFFFFFFFFFFFF007FFFFF -FFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE8000000000000FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF060FFFFFFFFFFFFFFFFFFFFFFF80FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFFFFFFFFFFFF -FFFFFFFFFFC03FFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -0000000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0F0FFFFFFFFFFFF -FFFFFFFFFFFE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFC0000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF0F07FFFFFFFFFFFFFFFFFFFFFFF80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFE00F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFF1FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000000000001FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFE0F07FFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807F8FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FE7FFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1F87FFFFFFFFFFFFFFFFFFFFF -FFF80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FF8FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC0000000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1F83FFF -FFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FE00FFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFE0000000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFC0003FFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF807FFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFC0001FFFFFFFFFFFFFFFFFFFFFFFFFE03FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FFFF8FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000000 -00000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80001FFFFFFFFFFFFF -FFFFFFFFFFFFF80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFF8FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE0000000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -80001FFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF807FFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFE000000000003FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF03FE0FFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFC01FFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000000000FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FF0FFFFFFFFFFFFFFFFFFFFFFF -FFFFE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFFFFF8FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -00000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFF07FFFF -FFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FF -FFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF8000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF0FFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFC01FFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000000007FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF1FFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000007 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFCFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FFFFFFFFFC7FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE00000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFFFFFFFFFFFFFFFFFFFFF -E01FFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFFFFFFF -FFFFFFFFFFFFFFFFFF00FFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF4FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000003FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFC07FFFFFFFFFFFFFFFFFFFFFFFFFF803FFFFFFFFFFFC7FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F00000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFFFFFF -FFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC00000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFFFFFFFFFFF -FFFFFF007FFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000001FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01 -FFFFFFFFFFFFFFFFFFFFFFFC03FFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF2FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF807FFFFFFFFFFFFFFFFFFFFFE01FFFFFFFFFFFFFFCFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE00000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFFFFFFFFFFFFFFFFFF007FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFF -FFFFFFFFFFFC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF01FFFFFFFFFFFFFFFFFFE00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF4FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FF80000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF807FFFFFFFFFFFFFFFFF007FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFE00000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFE1FFFFFFFFFFC -03FFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000001FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC -07FFF007FFFFFFFFE00FFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000000 -07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFE01FFC001FFFFFFFF003FFFFFFFFFFFFFFFFFFC7FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF00000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07F00007FFFFFFC01FFFFFFFFFF -FFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000007FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01C00C01F -FFFFE00FFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000001FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF80007F807FFFF807FFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFC0000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFC001FFE01FFFC01FFFFFFFFFFFFFFFFFFFFFC -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFF00000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00FFFF807FE00FFFFF -FFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000001FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -03FFFFE01F003FFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000 -003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE01FFFFFF80001FFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF80000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFFFFFE0007FFFFFFFFFFFFFFFF -FFFFFFFC3FFFFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000007FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF80007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFC0 -1FFFFFFFFFFFFFFFFFFFFFFFFC3FFFF8001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000001FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00001FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFE03FFFFFFFE00FFFFFFFFFFFFFFFFFFFFFFFFC3FFFF8000FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC00000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00400FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF00FFFFFFFF807FFFFFFFFFFFFFFFFFFFFFFFC3F -FFF8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF00000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF80FFC07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFE01FFFFFFFF -FFFFFFFFFFFFFFFC3FFFF87E07FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000007FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF07FFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01 -FFFFFFFF803FFFFFFFFFFFFFFFFFFFFFFE3FFFF87F07FFFFFFFFFFFFFFFFFFFF -FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000 -0003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFE1FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF807FFFFFFFE01FFFFFFFFFFFFFFFFFFFFFFC3FFFF87F07FF -FFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF80000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFF1 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFF807FFFFFFFFFFFFFFFF -FFFFFC3FFFF87F07FFFFFFFFFFFFFFFFFFFFFFFFFFFFF5FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000003FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFC3FFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FFFFFFFC -03FFFFFFFFFFFFFFFFFFFFFC1FFFF87F07FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFE01FFFFFFFF01FFFFFFFFFFFFFFFFFFFFFC1FFFF81C07FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFE00000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFF8FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFE03FFFFFFFFFFFFFFFFFFFFE003FF -F8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF80000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C7FFFFF83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC001FFFFFF807FFFFFFFF -FFFFFFFFFFFF80007FF8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000007FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFC3FFFFF01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -07FFFFE01FFFFFFFFFFFFFFFFFFFFE00001FF8000FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -00001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFF00FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFC00E01FFFF803FFFFFFFFFFFFFFFFFFFFC00000FF80007FFFF -FFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFE00000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFE007 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007F807FFC00FFFFFFFFFFFFFFFFFFFF -F8000007F87F07FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000001FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF007FFFC181FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FFE01FF001FF -FFFFFFFFFFFFFFFFFFF8000003F87F83FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000000FFFF -FFFFFFFFFFF3FFFFFFFFFFFFFE001FFF03C1FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFE00FFFF807C001FFFFFFFFFFFFFFFFFFFFF0000003F87FC3FFFFFFFFFFFFFF -FFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF00000001FFFFFFFFFFFFFC3FFFFFFFFFFFFFC0C000007E0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF007FFFFC0000007FFFFFFFFFFFFFFFFFFFF0000003F8 -7FC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFF2FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFC0000000FFFFFFFFFFFFF07FFFFFFFFFFFFF83F -00000FF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FFFFFF8003C01FFFFFFFFFFF -FFFFFFFFF0000003F87F83FFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000003FFFFFFFFFFFC -07FFFFFFFFFFFFF07FC0003FFC1FFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFFFFF -E00FF807FFFFFFFFFFFFFFFFFFF0000003F87F83FFFFFFFFFFFFFFFFFFFFFFFF -FFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -000000FFFFFFFFFFF00FFFFFFFFFFFFFF0FFF000FFFE0FFFFFFFFFFFFFFFFFFF -FFFFFFFF007FFFFFFFF83FFE01FFFFFFFFFFFFFFFFFFF8000003F80007FFFFFF -FFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF00000003FFFFFFFFF801FFFFFFFFFFFFFE1FFFFFFFFFF07 -FFFFFFFFFFFFFFFFFFFFFFFFFC03FFFFFFFFFFFFFF807FFFFFFFFFFFFFFFFFFC -000007F80007FFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000FFFFFFFFE001FFFFFFFFF -FFFFC3FFFFFFFFFF03FFFFFFFFFFFFFFFFFFFFFFFFE00FFFFFFFFFFFFFFFE01F -FFFFFFFFFFFFFFFFFE00000FF8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000003FF -FFFFF8003FFFFFFFFFFFFF87FFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF007F -FFFFFFFFFFFFFFFC07FFFFFFFFFFFFFFFFFF00001FF8003FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF00000001FFFFFFF8007FFFFFFFFFFFFF0FFFFFFFFFFFE0FFFFFFFFFF -FFFFFFFFFFFFFC01FFFFFFFFFFFFFFFFFE01FFFFFFFFFFFFFFFFFFC0007FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFE00000007FFFFFF800FFFFFFFFFFFFFE0FFFFF -FFFFFFE07FFFFFFFFFFFFFFFFFFFFFE00FFFFFFFFFFFFFFFFFFFC07FFFFFFFFF -FFFFFFFFFE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000001FFFFFFC00FF -FFFFFFFFFFFC1FFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFF807FFFFFFFFFFFFF -FFFFFFE01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC -00000007FFFFFC01FFFFFFFFFFFFF81FFFFFFFFFFFF03FFFFFFFFFFFFFFFFFFF -FC03FFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF00000001FFFFF801FFFFFFFFFFFFF01FFFFFFFFFFFF03F -FFFFFFFFFFFFFFFFFFF00FFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000007FFFF003FFFFFFFFFFFF -F01FFFFFFFFFFFF01FFFFFFFFFFFFFFFFFFF807FFFFFFFFFFFFFFFFFFFFFFF80 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000003F -FFE003FFFFFFFFFFFFE01FFFFFFFFFFFE01FFFFFFFFFFFFFFFFFFC01FFFFFFFF -FFFFFFFFFFFFFFFFE01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF80000000FFFC007FFFFFFFFFFFFE00FFFFFFFFFFFC01FFFFFFFFFFF -FFFFFFE00FFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFE00000003FF81CFFFFFFFFFFFFFE107FFFFFF -FFFF821FFFFFFFFFFFFFFFFF807FFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000FF03FFFFFF -FFFFFFFFC381FFFFFFFFFF070FFFFFFFFFFFFFFFFC01FFFFFFFFFFFFFFFFFFFF -FFFFFFFFC07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E00000003C07FFFFFFFFFFFFFFE3C07FFFFFFFFC0F0FFFFFFFFFFFFFFFE007FF -FFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF0000000000FFFFFFFFFFFFFFFE3E00FFFFFFFF03F0FFF -FFFFFFFFFFFF803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000000001FFFFFFFFFFFFFFFE3 -F801FFFFFF007F0FFFFFFFFFFFFFFC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000000 -3FFFFFFFFFFFFFFFE3FE0007FFE001FF0FFFFFFFFFFFFFF00FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFC07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFC00000003FFFFFFFFFFFFFFFE3FF8000000007FF8FFFFFFFFFFFFF -803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000001FFFFFFFFFFFFFFFE3FFF8000000 -7FFF8FFFFFFFFFFFFC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000007FFFFFFFF -FFFFFFE3FFFFC00003FFFF8FFFFFFFFFFFE00FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FF00000001FFFFFFFFFFFFFFE3FFFFFFFFFFFFFF8FFFFFFFFFFF803FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFC0000000FFFFFFFFFFFFFFE3FFFFFFFFFFFFFF8FFFFF -FFFFFE00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000003FFFFFFFFFFFFFE3FF -FFFFFFFFFFFF8FFFFFFFFFF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000000 -0FFFFFFFFFFFFFE3FFFFFFFFFFFFFF8FFFFFFFFFC01FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFE00000003FFFFFFFFFFFFE3FFFFFFFFFFFFFF8FFFFFFFFC00FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000001FFFFFFFFFFFFE3FFFFFFFFFFFF -FF8FFFFFFFF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000000007FFFFFFF -FFFFE3FFFFFFFFFFFFFF8FFFFFFF803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC000000001FFFFFFFFFFFE3FFFFFFFFFFFFFF8FFFFFFE01FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF80C00000007FFFFFFFFFFE3FFFFFFFFFFFFFF8FFFFFF0 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03F00000003FFFFFFFFFFE3FFFF -FFFFFFFFFF8FFFFF803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FC00000 -007FFFFFFFFFE3FFFFFFFFFFFFFF8FFFFE01FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFC0FFE00000003FFFFFFFFFE3FFFFFFFFFFFFFF8FFFE007FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF4FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF81FFFC0000000FFFFFFFFFE3FFFFFFFFFFFFFF -8FFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFE00000003FFFFFF -FFE3FFFFFFFFFFFFFF8FFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0F -FFFF80000000FFFFFFFFE3FFFFFFFFFFFFFF8FE007FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFF800FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF81FFFFFC00000003FFFFFFFE3FFFFFFFFFFFFFF87001FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFFFFFF0 -0003FFFFFFFFFFFFFFFFFFFFFFFFFFFAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFF00000000FFFFFFFE3FFFFFF -FFFFFFFF8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFE03FFFFFFFFF0000007FFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFC0000 -0003FFFFFFE3FFFFFFFFFFFFFF8003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF80FFFFFFFF80007003FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC0FFFFFFFF80000000FFFFFFE3FFFFFFFFFFFFFF801FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFC0063FF80FFFFF -FFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFE00000003FFFFFE3FFFFFFFFFFFFFF80 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FF -FFFF001FFFFC07FFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFF00000001FFFFF -E3FFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFE03FFFFC01FE3FFF03FFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFF -FFFFFC00000007FFFFE3FFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFF807FE3FFF81FFFFFFFFFFFFFF -FFFFFFFFFFF5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF81FFFFFFFFFFF00000001FFFFE3FFFFFFFFFFFFFF8FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFE007FF3F -FBC0FFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFF800000007FFFE3FFFFFFFF -FFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFC0FF8007FFFFF9E0FFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFE000 -00001FFFE3FFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF03F03CF7FCE79F07FFFFFFFFFFFFFFFFFFFFFFF -F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0FFFFFFFFFFFFF80000000FFFE3FFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80E07FE3FCE7FF87FFFFF -FFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFE00000001FFE3FFFFFFFFFFFFFF8FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -0FFE3FFE7F783FFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFFFF80000000FFE3 -FFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF800FFF7FFFFF3C3FFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFF -FFFFFFE00000001FE3FFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC003FFFF3FFF3C3FFFFFFFFFFFFFFF -FFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF81FFFFFFFFFFFFFFFF80000000FE3FFFFFFFFFFFFFF8FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC003FFFF3FFF -FE3FFFFFFFFFFFFFFFFFFFFFFFFAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFFFFFFC00000003E3FFFFFFFFFF -FFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF8001FF9F3F3FFE1FFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFF00 -000000C3FFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF00007F9FFF3FFE1FFFFFFFFFFFFFFFFFFFFFFFF4 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FF -FFFFFFFFFFFFFFFFC000000003FFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07801F9FFF7FFC1FFFFFFF -FFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFF000000003FFFFFFFFFFFFFF8FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0F80 -0FFFFFFBFC1FFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFFFFFFC00000003FF -FFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFE1FF003FFFFF1F83FFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFF -FFFFFFFE00000001FFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FF800FFFFF1F83FFFFFFFFFFFFFFFFF -FFFFFFF4FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF81FFFFFFFFFFFFFFFFFFFFFC0000001FFFFFFFFFFFFFE0FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3DFC201FCFF3F8 -3FFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFFFFFFFFFFFE0000001FFFFFFFFFFFF -FE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFC387C380F87FFF83FFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFFFFFC -0000007FFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFC387E7F0187FF007FFFFFFFFFFFFFFFFFFFFFFFF0FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFF -FFFFFFFFFFFFFFFFFE0000003FFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0C7FFF8007FC00FFFFFFFFFF -FFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF03FFFFFFFFFFFFFFFFFFFFFFFF8000001FFFFFFFFFFFF07FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFF -000FE001FFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFC000000FFF -FFFFFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFE03FFFE18078003FFFFFFFFFFFFFFFFFFFFFFFFF6FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFF -FFFFFFFFF8000003FFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000FFE1C00000FFFFFFFFFFFFFFFFFFFFF -FFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8 -1FFFFFFFFFFFFFFFFFFFFFFFFFFE000001FFFFFFFFFF01FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007073E00003FFF -FFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF03FFFFFFFFFFFFFFFFFFFFFFFFFFF8000003FFFFFFFFC03 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FF800003F00003FFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFF -C000000FFFFFFFF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF800000000003FFFFFFFFFFFFFFFFFFFFFFFFFFF2FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFF0000001FFFFFFC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000000001FFFFFFFFFFFFFF -FFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000003FFFF8007FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000 -3F807FFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000 -000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFE0003FFFF01FFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFC000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFFFFFFFFFFFFFFFFFF -FFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000003FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFF -FFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000003FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -1FFFFFFFFFFF80FFFFFFFFFFFFFFFFFFFFFFFFF4FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FE000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF8003FFFFFFFFFFF01FFFFFFFFFFFFFFFFFFFFFFFFCFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF800000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8001FFFFFFFFFFF807FFFFFFFFFFFF -FFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FF83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000000FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000FFFFFFFF -FFFF01FFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000000 -03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF07C0FFFFFFFFFFFFC07FFFFFFFFFFFFFFFFFFFFFF4FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFE00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF07F07FFFFFFFFFFFF01FFFFFFFFFFFFFFFFFFFFF -F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000007FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FF07FFFFFFFFFFFFC07FF -FFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000001FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FF0 -7FFFFFFFFFFFFF01FFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF07F07FFFFFFFFFFFFF807FFFFFFFFFFFFFFFFFFFF4FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFC00000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07E0FFFFFFFFFFFFFFF01FFFFFFFFFFF -FFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000007FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0100FFFFFFFFFF -FFFFFC07FFFFFFFFFFFFFFFFFFF3FFFFFFFFFC0000FFFFFFFFFFFE1FFFFFFFFF -FFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000 -001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFF0000FFFFFFFFFFFFFFFF03FFFFFFFFFFFFFFFFFFF0FFFFFFFFFC0000FFFF -FFFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFE00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFF0001FFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFF0 -FFFFFFFFFC0000FFFFFFFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000001FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFFFFFFFFFFF01F -FFFFFFFFFFFFFFFFFFFFFFFFFFFE0001FFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000000FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FFF -FFFFFFFFFFFFFFFC07FFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFF800000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFFFFFFF0FFFFFFFFFF -F87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFC00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFF80FFFFFFFFFF -FFFFFFF2 -FFFFFFFFFFF87FFFFFC1FFF8FFFFFC3FFC3DFFFFBC1FF807F301FF007E21FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000003FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFF0 -1FFFFFFFFFFFFFFFFEFFFFFFFFFFF87FF10F007FC03F1E000FF000FFFF000FE0 -03E000FE003E01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000000FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFF -FFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFF0FFFFFFFFFFF87FE00E003F001E1E -0007E0007FFE0007E001E0007C001C01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFFFFF0FFFFFFFFFF -F87FE00C001E000E1E0007C0007FFE0003C1C1E0703C1C1C03FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFC00000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFF -FFFFFFFBFFFFFFFFFFF87FE03C3C1E0F0E1E0783C3E07FFE0781C3E1E0F8383E -0C0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000007FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFF -FFFFFFFFF01FFFFFFFFFFFFFFCFFFFFFFFFFF87FE0FE7E1E1F8E1E0FC387F07F -FE0FC1E7E1E1FC383E0C1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FF1FFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFFFFFF6FFFFFFFFFFF87FE0FFFC -1C1FDE1E1FC387F87FFE0FE1FC01E1FC18000C1FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFFFFFF -FFFFFFFFF87FE1FF001C3FFE1E1FC387F87FFE1FE1F001E1FC18000C3FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000001FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -807FFFFFFFFFFFF7FFFFFFFFFFF87FE1FE001C3FFE1E1FC387F87FFE1FE1C001 -E1FE18000C3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000007FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFE00FFFFFFFFFFFF6FFFFFFFFFFF87FE1FC001C3FFE1E1F -C387F87FFE1FE1C001E1FE18001C3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF800000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FFFFFFFFFFFCFFFFFFFFFFF8 -7FE1FC1E1C3FFE1E1FC387F07FFE1FE183E1E1FC187FFC3FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFE00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFFF -FFFFF0FFFFFFFFFFF87FE1F83E1C3FFE1E1FC387F07FFE0FE183E1E1FC187F1C -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000003FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF807FFFFFFFFFFFFFFFFFFFFFF87FE1F87E1E1F8E1E1FC383E07FFE -0FC187E1E0FC383E1C3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 -0000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFE001FFFFFFFFFFFFFFFFFFFFF87FE1F87C1E -1F8E1E1FC3C1C07FFE07C183C1E0F83C1E1C3FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF800000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFFFFFFFF -FFFFFFF87FE1F8381E0E0E1E1FC3C0007FFE03038001E0007C001C3FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000000FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F800FFFFFFFFFFFFFFFFFFFFF87FE1FC001F000F1E1FC3E0007FFF0007C001E0 -007E003E3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000007F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF000FFFFFFFFFFFFFFFFFFFFF87FF1FE001F801F1F1FE3 -F0007FFE000FE001E001FF007E7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFC00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000FFFFFFFFFFFFFFFFFFFFFCFF -F3FF011FC07FFFFFFFFFF07FFE081FF87FE187FFC3FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000FFFFFF -FFF5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3F0FFFE1FFFFFFFE1FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000001FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFC0000FFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3F0FFFE1F -FFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF00000FFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFC1C0FFFF1FFFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF800000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000FFFFFFFFF4FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFE001FFFF1FFFFFFFE3FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000000FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000 -00FFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFF1FFFFFFFF3FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000001 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF8000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000000FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF800000001FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000FFFFFFFF -F0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000000FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FE00000000FFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF800000000FFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000000000FFFFFFFFFEFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000003FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000 -FFFFFFFFF2FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000000 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFC0000000003FFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFE0000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000000FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000003FFFFFFFFFFD -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000003FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000 -000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FF800000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF80000000007FFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFE000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000000001FFFFFFFFFFFF8FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000001FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000007FFFFF -FFFFFFF6FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000000 -007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC0000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFE00000000007FFFFFFFFFFFFF2FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000000007FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000001FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000001FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000000000 -FFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF8000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF80000000003FFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFF000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFC0000000001FFFFFFFFFFFFFFFF9FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000000FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000007FFFFFFFFFFF -FFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000 -0003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000 -000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFC1F800000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFE0000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF00001FE000000003FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000003FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00001FF800000000FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000000000FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -07FFC000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F00000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFE0001FFFF000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFC0000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0003FFFFC000000007FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000007FFFFFFFFFFFFFFFFF -FFFAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000FFFFFE0000 -00001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000001 -FFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF80001FFFFFF8000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFE00000000007FFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFC00003FFFFFFE000000001FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF80000000001FFFFFFFFFFFFFFFFFFFFFF7FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000C0FFFFFFFF8000000007FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000000000FFFFFFFFFFFF -FFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8007C1FFF -FFFFFE000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000 -000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFE003FE3FFFFFFFFF8000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF80000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFFFFFFFC000000001FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000000007FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800FFFFFFFFFFFFFFF000 -000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000001FFFFFF -FFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC003 -FFFFFFFFFFFFFFFC000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C00000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF001FFFFFFFFFFFFFFFFF000000000FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFE00000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00FFFFFFFFFFFFFFFFFFC000000003FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000FFFFFFFFFFFFFFFFFF -FFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFFFFFF -FFFFFFF000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000000003 -FFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FF001FFFFFFFFFFFFFFFFFFFFC000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF80000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF8007FFFFFFFFFFFFFFFFFFFFF000000000FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFC00000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFFFFFFFFFFFFFFFF80 -00000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000001FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFF -FFFFFFFFFFFFFFFFE000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000 -000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFC007FFFFFFFFFFFFFFFFFFFFFFFF8000000007FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFE00000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFFFFFFFFFFFFFFFFFFFC000000001F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801FFFFFFFFFFFFFFFFFFF -FFFFFFFF0000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000000007FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007F -FFFFFFFFFFFFFFFFFFFFFFFFFFC000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFE -00000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000000007FFFFFFFFF -FFFFFFFFFFFFFFFFFC00000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8 -000000001FFFFFFFFFFFFFFFFFFFFFFFFFE00000000001FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFE0000000007FFFFFFFFFFFFFFFFFFFFFFFF800000000007 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000000001FFFFFFFFFFFFFFFFFF -FFFFFE00000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000000000 -FFFFFFFFFFFFFFFFFFFFFFF000000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF8000000003FFFFFFFFFFFFFFFFFFFFFC00000000003FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFE000000000FFFFFFFFFFFFFFFFFFFFF000000 -00000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000000001FFFFFFFF -FFFFFFFFFFFC00000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFF7FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFC003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C000000000FFFFFFFFFFFFFFFFFFF00000000000FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800FFFFFFFFE -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF0000000003FFFFFFFFFFFFFFFFF800000000003FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFE0007FFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000000000FFFFFFFFFFFFFFFFE -00000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFE0003FFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFC007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000 -03FFFFFFFFFFFFFFF800000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1F81FFFFFFFC3FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFC000000001FFFFFFFFFFFFFFC00000000001FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FE1 -FFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000007FFFFFFFFFFFFE000000000007 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF83FE1FFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8 -007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000000001FFFFFFF -FFFFF000000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFF807F3CC103FFC0FF9C1FFFFEF0F -FE03FDE0FFE03FCC7003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FF0000000007FFFFFFFFFFC000000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFF003F00C00 -1FE003F0007FFFC003F800F8003FC00F80600FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF8000000001FFFFFFFFFF000000000001FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF4FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF07FFFE001E00C000FC001F0003FFFC001F80078001F800F80607FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000000000FFFFFFFFF8000000 -00000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF07FFFE1E1E00C0607C1C0F0103FFFC040F070780C0F -07070063FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000000 -003FFFFFFFE000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFE3E1E07C0F8783F0F07C -1FFFC1F070F8783E0F0F8703FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFC000000000FFFFFFF000000000000FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFF -E0E0FC1F8387F0F07E1FFFC3F879F8783F0E0FC307FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000000003FFFFFC000000000007FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF07FFFFF00E0FC3FC307F870FE1FFFC3F87FC0787F06038307FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000000000FFFFE0 -00000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFF000E1FC3FC307F870FE1FFFC3F87C -00787F86000307FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF0000000003FFF0000000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFE000E1FC3FC3 -07F870FE1FFFC7F87800787F86000387FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFC000000000FFC000000000001FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F87FFFC000E1FC3FC30FF870FE1FFFC7F87000787F8600078FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000003F000000000000F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF87FF7C3E0E1FC3FC307F870FE1FFFC7F860F8787F861F -FF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000 -00000000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FE183E0E1FC3FC387F870FE1F -FFC3F861F8787F061FC78FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFE000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FC187E1 -E1FC1F8387F0F0FE1FFFC3F861F8787F0E1FC78FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000000000000000007FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC0F8183C1E1FC1F0783E0F0FE1FFFC1F060F0783E0F0F878FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000000000000 -00001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFE0003C001E1FC0007C000F0FE1FFFC0E0E000 -78081F00078FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFF8000000000000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007C001E1FC000FE0 -01F0FE1FFFC001F00078001F800F8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFE00000000000000003FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -800FE001F1FE001FF007F9FF3FFFC003F80078003FC01F8FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF03FFC7FFFFFF8FFFE1FFFFFFFFFC20FFE1FF840FFF0FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000 -00000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C7FFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF00000000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFC7FFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000000000007FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFF87FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000000000001F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFF8 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF800000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFC7FFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFE0000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000000FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000 -00007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF8000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000007FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80001FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFC03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF4FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF2FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF2FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -%%EndBinary -grestore end -grestore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob28v1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob28v1.gif deleted file mode 100755 index 7bc88b91e..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob28v1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob28v1.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob28v1.pdf deleted file mode 100644 index 0733f9d2f..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob28v1.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob28v2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob28v2.eps deleted file mode 100755 index fa1a67b2c..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob28v2.eps +++ /dev/null @@ -1,463 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: Untitled1.create -%%Creator: Create -%%CreationDate: Mon Mar 17 09:25:04 1997 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 214 309 399 470 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(0AM@q#&25E_+2Eu5pFSTnB%<#+J0MJj5d[&? -% ak\*j@sEuEo0Ih1^tX:V9G#e-Xs_LmH]t1+G3."9,-H,jMmdC2(#+aX)G+WK=dE716(f\":3 -% 's5Y/\X0lK2U^j7!0YlQl!;sXJ!h7+cQ\ -% 03.\/1'p76"CX(HMbgA.1YX+=IQ!#T%0KJPcIQVa2I1+@6KWcP.>6-)r="-FsRK/fASXQRJ -% $#"A"*[etmj'6l\\gOWp7]UZ\)"[#?pM,0:d!2IB:;=Z2RPueIietu\a)s4RqGR -% L[CW3Q`e-C#^H8IG_^&VqS7W[QK#_nfFm]U]W*Vlgn<63)0cGXt[69h[iL(hoLk"s"Mj;9"" -% u(!o@p5<"9f,mJ%G_#aWsT^KmMd;#son?0tcAQ->L(QZB*(]]YKT]-\FD)ia+VjA`H/Z2^=@ -% @R<#6mln_NHm!Z,nIdmMT_G>OF[KW/)9f%;VQMuKXi!`n),]WaS!5nJZXc1l84KDA-Z$PgtK -% rZ!k6sBe*W4P!)s#NhN\MrpB!;WY32ligKO:*3&5r\j+M_1q:G_TIWjjgbJeE$T#^foh#>gj -% Aa63%YW;c'4=rNtm:JN5m%N$K]t9?K)L6"I9HFJmd/T\\VSZ\E4QmPIQMfsi1LQ"^Scl9;`u -% feW&g=&M@fHU"n3[2IQ92Yl:3MGO=8!Pb2'(XN:Uc8*mK.qD!=7&"dgFsKeG$N6L$jAb1Yqu -% )_]Sm]!^Hf2OT+AIx -% EndEmbeddedGraphics N 992 3e0 E b2 S 1bfda R f1b5a187 -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -214 309 185 161 rectclip -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 221 317] concat -0 0 2 1 10 SU -[2] 0 setdash -23 68 T -N -2 L -0 nxsetgray -126 0 0 0 line -0 126 0 arrow -0 0 T -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[0.5 -0.866025 0.866025 0.5 6.476296 73.274994] concat -0 0 2 1 10 SU -11 11 T -N -2 L -0 nxsetgray -0 -112 0 112 line -89.997345 0 112 arrow -0 0 T -grestore -0 0 2 1 10 SU -11 11 T -N -2 L -0 nxsetgray -56 0 0 0 line -0 56 0 arrow -0 0 T -grestore -0 0 2 1 10 SU -11 25 T -N -2 L -0 nxsetgray -14 0 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -25 11 T -N -2 L -0 nxsetgray -0 14 0 0 line -0 0 T -grestore -grestore -grestore -0 0 0 1 10 SU -gsave -/Helvetica-BoldOblique findfont 12 scalefont [1 0 0 -1 0 0] makefont -167 -exch -defineuserobject -167 execuserobject setfont -119 123 T -11 flipV -6 5.5 T --4.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(B) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -167 execuserobject setfont -49 11 T -11 flipV -5.5 5.5 T --4.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(A) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -167 execuserobject setfont -8 63 T -11 flipV -6.5 5.5 T --4.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(X) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -167 execuserobject setfont -151 63 T -11 flipV -6 5.5 T --4.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(P) show -0 0 T -grestore -grestore -grestore -grestore -0 0 2 1 10 SU -[1 0 0 -1 228 369] concat -gsave -/Helvetica-Bold findfont 24 scalefont [1 0 0 -1 0 0] makefont -286 -exch -defineuserobject -286 execuserobject setfont -10 10 T --9 9 T -N 0 0 m -0 nxsetgray -0 0 m -(A) show -0 0 T -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Helvetica-BoldOblique -%%+ Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob28v2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob28v2.gif deleted file mode 100755 index c34e5664a..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob28v2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob28v2.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob28v2.pdf deleted file mode 100644 index 44df5991e..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob28v2.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob28v3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob28v3.eps deleted file mode 100755 index 285db3add..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob28v3.eps +++ /dev/null @@ -1,439 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: Untitled1.create -%%Creator: Create -%%CreationDate: Mon Mar 17 09:25:19 1997 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 198 596 382 709 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(0AM@q#&25E_+2Eu5pFSTnB%<#+J0MJj5d[&? -% ak\*j@sEuEo0Ih1^tX:ji``OPd#!I1 -% 93;1OaY0k9'd!e;"GL:o4K`#-rl#b_98NXHK(2aN&^3Og:__o@^6T4&/U/i\?lq-d0X"/5g9"= -% pa.@tc)2iI]5c64+-># -% >b5&(R8#*U5;rb#]OIF!1]ISRQe0j>QLnL=XS)Z2PqjoPs? -% JL-'^1BT-XKU^q^#.::XbbQU1sCUkMNXk@DU+kZ4QU5%s%#@$GWHBqQ#i7#gq7YsE34-",K5 -% VQ-UDRr0"GB;klm_SBKS5[he8k+/eaHgcq++!J-HTZI3h1]XVS"Ofg+UOF@j+h>cSBW7`Q=p -% ETcn=TbHCtW\f#R.BD!:Dc)::_C5k,+U8]$n1t0,F01H`qd<^isQ?$>>U@!=K;eUm$f3fW;s -% 4_Wn@<#t?K4>LSa)8WA6k0L0HW.I_>ujGnWQE$hcGEkCe[ -% =@#3LBAs4K3)^#-2[fG4#"X&=,"LNFF%XHfPY$\[Nbm`$b.>*\;@tI+="5oA-:I.0%p;cF$h -% nEt71!lE@XC]/3!,*9=^rkJ!A2[+(1 -% 93;1OaY0k9'd!e;"G#/2_!`#-s7#b_98NXHK82aN&^3Og:__o@^6T4&/U/CbQN3;i-.cdJFY['-528&aKoT1,i*UoG"U\KRJf'r+!!XViJHkBdR> -% Uus10fD2LnYl1=IF0!!!Gh/fnGRaj4Gd.!Dj(*nnh9]"/G5qM$?4Fn-'_M?WMPIPYit))Eltms! -% NG"U,Aq6Wp1'2L$m=FRPq_-g"p"i^L&_W5^u\fE1<(=>l]Xa>0*2eaQFpp -% Z5a<=#gZ\/U1Vi4,DI\h:4dU'iWc6Ad[W!%W"C.jGe5k*cALqMM;WK+99uT`d%'CgO`1B -% OZH'2eg/aAeImdi4$)\VmqW4Y$HX%`8m>B+;a`[GIM(#\cErp-/!2Dj(ra&-:^iC=8>gMCj?nkmn%'2oGV7N,p46&0m`2.^:u,R,ZI*s$a=Qc;js.lFqtC:G`uEH4b.M#S?Q31p -% 6bReF"CjqoMsNr"t2OG4SRx -% EndEmbeddedGraphics N 824 338 E 7d S 16977 R 5408b175 -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -131 578 214 111 rectclip -0 0 2 1 10 SU -[2] 0 setdash -154 616 T -N -2 L -0 nxsetgray -126 0 0 0 line -0 126 0 arrow -0 0 T -grestore -0 0 2 1 10 SU -[1 0 0 -1 324 681] concat -gsave -/Helvetica-BoldOblique findfont 12 scalefont [1 0 0 -1 0 0] makefont -167 -exch -defineuserobject -167 execuserobject setfont -6 5.5 T --4.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(B) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 219 608] concat -gsave -167 execuserobject setfont -5.5 5.5 T --4.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(A) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 139 622] concat -gsave -167 execuserobject setfont -6.5 5.5 T --4.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(X) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 282 622] concat -gsave -167 execuserobject setfont -6 5.5 T --4.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(P) show -0 0 T -grestore -grestore -0 0 2 1 10 SU -154.568283 600.657715 T -N -2 L -0 nxsetgray -60.863373 -14.685059 0 14.685059 line --13.565408 60.863373 0 arrow -0 0 T -grestore -0 0 2 1 10 SU -154 616 T -N -2 L -0 nxsetgray -168 56 0 0 line -18.435492 168 56 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 143 608] concat -gsave -/Helvetica-Bold findfont 24 scalefont [1 0 0 -1 0 0] makefont -286 -exch -defineuserobject -286 execuserobject setfont -10 10.5 T --9 9 T -N 0 0 m -0 nxsetgray -0 0 m -(C) show -0 0 T -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Helvetica-BoldOblique -%%+ Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob28v4.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob28v4.gif deleted file mode 100755 index 90b771ec5..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob28v4.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob28v4.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob28v4.pdf deleted file mode 100644 index cbb158ff3..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob28v4.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob29av1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob29av1.eps deleted file mode 100755 index 3bb2ee34b..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob29av1.eps +++ /dev/null @@ -1,489 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: pssc7cq8.6.create -%%Creator: Create -%%CreationDate: Tue Nov 19 09:01:24 1996 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 27 576 542 754 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(Z!.KDhWOWO0H6))5bNTFqC+: -% niMWoN]b=%%T)-hoHCm$jqG?qSGo'Z0Z(bt"/M1] -% 0gFlPu20nZY,f_q<->dB#"_#;E`\nqG4!2*A*mR-Z\J.)Sm,/>%*T[cV79HaZB=pHUd`=6=!&I'6u'Jp@E"0cd<+9]bs5Q -% Vkdclj$5Y[N<"7"o'j9FWg5"[QRmE<[>'>i\?l7T!,M'1*>R'.9%jO@^S#"@,EV,h,;V>]o; -% NRs/rXV\`_4'm<\g]D5LZ>\JtGV0-g4pEVUsYp'15S_+04SV2tXi,r^qU*,(]20GPl.Gd)IE -% JO?W==Fl7#JlCh<._oLYY]Uq"'2^!Q^23N=e1nsKc)4[>k4k+Fh"tB#Sj+Bdi&Jr<1k95<]C -% 0!+PA_q_gI4TAtM;6mV//_$PpPASH,$t@9FMgcs[Qc#U4e(#pbT>N&&g@L5gjSHGG_l"FpIl -% %qKujQIMVM,ljTig$>U&G'_`=^SNF:+T/%p95B(EE'Y%fKE-oglJ7Om&A/qECS#lZ#lq4=*] -% p($BK\W09/Uf.KGelr+U89?]YT>ZF/8>\)pqDb,qGi#nZCpHNLuLJ5K+Y#:H#YT"m6Hm%;9U8hg;W>TAA**=>Yu)/g2lZH+;\N -% 3]h?>)Vdk0m?hn!Dh,F!!s$@WjA*VHhn].U(/3IdAS7;0,+lFn7o&2>2]Is\aCs4YJC^YFg2 -% Q,]Bi]Ram^jgE3Ch%bM$tU.05i-5f0A[Y*iM*K%EH$cjCGGlBV"5WAnWXe=[,`Yf]!4Xg[5h -% X4?kt/?DtcGE(t@!OP2)aoS_/GNq,5;TSp,QllP=!G#p\i3^PJY&NeY$ubP(VRbg!A\!Xc+I -% WR$5+Zt-Xu5iVP>e.^8!l_&WY1@:K_GW=,R=N/W-],0g5Ia^:qgSd>3d\Pd-mQSN$q9L'm0: -% n^8Zg$#u>8JsQt/e9PV'2t_2R0IXT6=S"Y/.O??&]$_r=gVbf$J9H$XB`>X3T8NSj)F"p`YA -% lrZKoL@iF3!sq8"$F>e+>N0mN#,X7b3I.KN)BcJ/ZVYVc_)1h'[Joq4.S#a-0QYel&-38O%& -% HLi526oUZTELjL:)@33+!!+hh5_oDMN,_lG=>?'`"D8aZe.t!%d7"moJ5FTXKFGX#Jq=Q\Rf -% Nh3R"L/bPei(pT+Mfm+Yu"&`"W?.OiA8PcuG0eAJdj5!DNu*,Ysq0P!C@Fa:\Ij!K^\nJ`*A -% )h/D2A-!Xc'eRo_.MXcuOE*S:K)dR"Y+DGgcB:r6,l!=i@[*F6;MG34!U&gsQDeTKQCRb$TojrdW^JrOOg(f8%p"Ba -% Ug&;+NRbRO1fC=mt6m)eF-Ikk+kUNciJ$AN).(k[T8TH]0l]d8b*.P]4Nits]f,3],)ndtj' -% E'0dBDObV?WHFnhkpr`=H>44qBVMma5H4G;)B_+H&B#\7^nT)"2^B#(YK-UA-_FKVgEt0Z4oHS2a"WDn$rB[:EEuXc,*b@:Q*u(m)iI$1qYDQCi=mf"/Z)>MQj -% )QMTF:6ea]Z+MN4)`-V?Qn?3C2e3gIV#V23RYRD0Qkcp.?$igDFa'aOT6Bkou)[1KqZH+;\4 -% DhLXB%un"hH!MSPdCEU_?-.bS?BNp!oW[K5mL/,W^`lj70>E_.P%W%3:O,S]T*?#YQS]X/B# -% [dX-QC65TB+F.EB^([bXPJ5UI,*JEaU[cD<=`>n.?d_Et/(+MDS<4pV]WB_$)CZOTn!Xh!k' -% [=&Dn>F*03-gPmTXc/9\!%Q0O3f]e21-d0583oQBR^W%dc@H?eS@]*Fb;8&VTLsR#DaL:W!9 -% <7!kN,i2^\++O,$\Onjetd:M@eSW!0eT;!!Q%"&ca=em,k%Fo\$BqKmOpp3d\Pd-mQSN$q9L'm0: -% n^8Zg$#u>8JsQt/e9PV'2t_2R0IXT6=S"Y/.O??&]$_r=gVbf$J9H$XB`>X3T8NSj)F"p`YA -% lrZKoL@iF3!sq8"$F>e+>N0mN#,X7b3I.KN)BcJ/ZVYVc_)1h'[Joq4.S#a-0QYel&-38O%& -% HLi526oUZTELjL:)@33+!!+hh5_oDMN,_lG=>?'`"D8aZe.t!%d7"moJ5FTXKFGX#Jq=Q\Rf -% Nh3R"L/bPei(pT+Mfm+Yu"&`"W?.OiA8PcuG0eAJdj5!DNu*,Ysq0P!C@Fa:\Ij!K^\nJ`*A -% )h/D2A-!Xc'eRo_.MXcuOE*S:K)dR"Y+DGgcB:r6,l!=i@[*F6;MG34!U&gsQDeTKQCRb$TojrdW^JrOOg(f8%p"Ba -% Ug&;+NRbRO1fC=mt6m)eF-Ikk+kUNciJ$AN).(k[T8TH]0l]d8b*.P]4Nits]f,3],)ndtj' -% E'0dBDObV?WHFnhkpr`=H>44qBVMma5H4G;)B_+H&B#\7^nT)"2^B#(YK-UA-_FKVgEt0Z4oHS2a"WDn$rB[:EEuXc,*b@:Q*u(m)iI$1qYDQCi=mf"/Z)>MQj -% )QMTF:6ea]Z+MN4)`-V?Qn?3C2e3gIV#V23RYRD0Qkcp.?$igDFa'aOT6Bkou)[1KqZH+;\4 -% DhLXB%un"hH!MSPdCEU_?-.bS?BNp!oW[K5mL/,W^`lj70>E_.P%W%3:O,S]T*?#YQS]X/B# -% [dX-QC65TB+F.EB^([bXPJ5UI,*JEaU[cD<=`>n.?d_Et/(+MDS<4pV]WB_$)CZOTn!Xh!k' -% [=&Dn>F*03-gPmTXc/9\!%Q0O3f]e21-d0583oQBR^W%dc@H?eS@]*Fb;8&VTLsR#DaL:W!9 -% <7!kN,i2^\++O,$\Onjetd:M@eSW!0eT;!!Q%"&ca=em,k%Fo\$BqKmOppi"/M -% r!"Th),t&NOdp^^7qG,G>2u_n\R%AdlucPU\P0Br7kt,Crr##\7bO-ieo=%,&dGCQ]rL!sAT -% XQ7RQmB*Aiud'^"1+_ScgNB?lN6o0HPA]ipUig:i#k5b#4Y>Z!.KDhWORD@pM*&;4dBJP9LQ -% o&I&d(/A;bYa6$RW.uUPN%0@Aa"dR3je*J9U-6$$7%.;QiJBgR4VVYXaj,cHe4h3.IURbL(P -% (oSf#!,\oR0nGjBK&h7:0K!LU!-l2q's3s@u&ShM;k:=D9>bC481QYGHW+[A:^!N'Jg$QsDS -% q=;H&Qm]ZdA+U!k,nLn[;Z]o$_&?0?fapCrPoqb"/-1]KJ-3@hpY9]'%6%O3HL^*(@>?]f,' -% NAT0Zo9dBpZpaVg?l04@)l8`UD -% #-&T..S7]2-eC5Pmib2#uQcq5_j[V)<.n$,`CH`S2tk-F>!Q>>lZXk&P,-r9f -% V"/hh!=1PQdG[?[i1l7[U0R+ujKe!mCj7!!u=&#lsno2I)j[+"HcQb5#POZY2YjTpQ7,(C1d -% TeKS$:/!ia\@GnS<0r_#e`ts6'Fr[/>+&FE^E83 -% :NppS%aA#Hf^U]Bn.i"HW=Z'-"LIb`p\Ir+''Oe83.G -% #Bn^>t]%$1cW"QBRdkX,j18$'o8ChCC3'Yp0%0Rs2n)c(ECO5.PP-OrHK@&O;FXbasX+>8@P -% `)tPN#QZ["^]msT65e#:L4ZYWNGt+,*G<>D(;;;#D__Fqx -% EndEmbeddedGraphics N 1187 4a3 E 88 S 20434 R d1d46371 -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -64 420 496 177 rectclip -0 0 0.15 1 10 SU -[1 0 0 -1 118 574] concat -gsave -/Helvetica-Bold findfont 16 scalefont [1 0 0 -1 0 0] makefont -177 -exch -defineuserobject -177 execuserobject setfont -62.5 7.5 T --61.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(Before Collision) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 439 576] concat -gsave -177 execuserobject setfont -56 7.5 T --55 6 T -N 0 0 m -0 nxsetgray -0 0 m -(After Collision) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 236.268005 516.028015] concat -gsave -/Helvetica findfont 16 scalefont [1 0 0 -1 0 0] makefont -51 -exch -defineuserobject -51 execuserobject setfont -17 6 T -0.717702 0.841848 S --22.5 5 T -N 0 0 m -0 nxsetgray -0 0 m -(at rest) show -0 0 T -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 -1 71 590] concat -0 0 0.15 1 10 SU -[1 0 0 -1 2 99] concat -N -0.15 L -0 nxsetgray -gsave -36 36 0 0 oval 0.027778 0.027778 S s -grestore -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 164 99] concat -N -0.15 L -0 nxsetgray -gsave -36 36 0 0 oval 0.027778 0.027778 S s -grestore -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 416 99] concat -N -0.15 L -0 nxsetgray -gsave -36 36 0 0 oval 0.027778 0.027778 S s -grestore -0 0 T -grestore -0 0 0.15 1 10 SU -[4] 0 setdash -272 9 T -N -0.15 L -0 nxsetgray -0 144 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -38 81 T -N -2 L -0 nxsetgray -36 0 0 0 line -0 36 0 arrow -0 0 T -grestore -0 0 2 1 10 SU -gsave -177 execuserobject setfont -18 35 T -14 flipV -3.5 7 T --2.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(I) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -177 execuserobject setfont -180 35 T -14 flipV -5.5 7 T --4.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(II) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -177 execuserobject setfont -432 35 T -14 flipV -3.5 7 T --2.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(I) show -0 0 T -grestore -grestore -0 0 2 1 10 SU -434 99 T -N -2 L -0 nxsetgray -0 36 0 0 line -90 0 36 arrow -0 0 T -grestore -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Helvetica-Bold -%%+ Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob29av4.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob29av4.gif deleted file mode 100755 index fdf635243..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob29av4.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob29av4.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob29av4.pdf deleted file mode 100644 index 5cafc6e00..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob29av4.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob29av5.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob29av5.eps deleted file mode 100755 index e14fc02ce..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob29av5.eps +++ /dev/null @@ -1,486 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: pssc7cq8.6.create -%%Creator: Create -%%CreationDate: Tue Nov 19 09:11:48 1996 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 43 420 533 597 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(i"/M -% r!"Th),t&NOdp^^7qG,G>2u_n\R%AdlucPU\P0Br7kt,Crr##\7bO-ieo=%,&dGCQ]rL!sAT -% XQ7RQmB*Aiud'^"1+_ScgNE[086o0HPA]ipUig:i#k5b#4Y>Z!.KDhWORD@pM*&;4dBJP9LQ -% o&I&d(/A;bYa6$RW.uUPN%0@Aa"dR3je*J9U-6$$7%.;QiJBgR4VW%m3]DcK;7OmGHVOpL^> -% ;%r4@/l\Ru4'GjBKfguiZ-!LU!-l2q's3s@u&ShM;k:=D9>bC481QYGHW+[A:^!N'Jg$QsD3 -% \amZ;Qm]ZdA+U!k,nLn[;Z]o$_&?0?fapCrPoqb"/-1]KJ-3CUk*uFdOl`*P!"c%E?iCd`(i -% ptJ-.c7oZriZPctD5b"u7JH"E?F -% ;_\cZ)6-'%B`$^?@E@&ua90$sJ6lBgnO]kUj./6@["jBFD!$a&1Til&W(a=&RSn4X99!1]eL -% k.`-,De3o2[C*,e=\%I4p#GP"$mWHA/EUo$[4q.Z$fnel"e -% V&H:I>cK%m/"'q9Be,ZjdK-7tRoD..-72,H63&%sl)1f,%]X>c.MCNAU3/$pW4t1#&P,-r9f -% V"/hhEU5WM]%6hm*4pAh'eddT_P.ZU#-f!`MAd5ejrgG1/%,0U -% $SM]Gq`P6+#,Inq&o`FY$5GghI=^%eQS&`WT!ep*s_iV%m]$Vk#*`B\ZJ9fF'd+OV5PI;n/G/Z_N3KgN -% <^#'&0ZRX2L]b#6j*OBM)el47^YO'Xm,pEfg6*^^ni0@JIZ7Q!sjYN"u_-K%V^0?)qIHYGMu -% /#]$d/NAs7tKfWYlH9HUN](T>QkcZ_d)Q4Y-kNsX<&7ne$a+G9`LH;N"H=B#e$1<@E`H1]Q+`76N@)dx -% EndEmbeddedGraphics N 1182 49e E 36 S 1f76e R 2d86366d -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -43 420 490 177 rectclip -0 0 0.15 1 10 SU -[1 0 0 -1 361 589] concat -gsave -/Helvetica-Bold findfont 16 scalefont [1 0 0 -1 0 0] makefont -177 -exch -defineuserobject -177 execuserobject setfont -62.5 7.5 T --61.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(Before Collision) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 51 589] concat -gsave -177 execuserobject setfont -56 7.5 T --55 6 T -N 0 0 m -0 nxsetgray -0 0 m -(After Collision) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 326.268005 515.028015] concat -gsave -/Helvetica findfont 16 scalefont [1 0 0 -1 0 0] makefont -51 -exch -defineuserobject -51 execuserobject setfont -17 6 T -0.717702 0.841848 S --22.5 5 T -N 0 0 m -0 nxsetgray -0 0 m -(at rest) show -0 0 T -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[-1 0 0 -1 525 590] concat -0 0 0.15 1 10 SU -[1 0 0 -1 2 99] concat -N -0.15 L -0 nxsetgray -gsave -36 36 0 0 oval 0.027778 0.027778 S s -grestore -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 164 99] concat -N -0.15 L -0 nxsetgray -gsave -36 36 0 0 oval 0.027778 0.027778 S s -grestore -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 416 99] concat -N -0.15 L -0 nxsetgray -gsave -36 36 0 0 oval 0.027778 0.027778 S s -grestore -0 0 T -grestore -0 0 0.15 1 10 SU -[4] 0 setdash -272 9 T -N -0.15 L -0 nxsetgray -0 144 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -38 81 T -N -2 L -0 nxsetgray -36 0 0 0 line -0 36 0 arrow -0 0 T -grestore -0 0 2 1 10 SU -gsave -177 execuserobject setfont -18 35 T -14 flipV -3.5 7 T --2.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(I) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -177 execuserobject setfont -180 35 T -14 flipV -5.5 7 T --4.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(II) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -177 execuserobject setfont -432 35 T -14 flipV -3.5 7 T --2.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(I) show -0 0 T -grestore -grestore -0 0 2 1 10 SU -434 99 T -N -2 L -0 nxsetgray -0 36 0 0 line -90 0 36 arrow -0 0 T -grestore -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Helvetica-Bold -%%+ Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob29av5.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob29av5.gif deleted file mode 100755 index 4ab19e7e2..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob29av5.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob29av6.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob29av6.eps deleted file mode 100755 index dfc6ce221..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob29av6.eps +++ /dev/null @@ -1,486 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: pssc7cq8.6.create -%%Creator: Create -%%CreationDate: Tue Nov 19 09:14:11 1996 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 41 419 533 598 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(i"/M -% r!"Th),t&NOdp^^7qG,G>2u_n\R%AdlucPU\P0Br7kt,Crl!#\7bO-ieo=%,&dGCQ]rL!sAT -% XQ7RQmB*Aiud'^"1+_Scg79^OE6o0HPA]ipUig:i#k5b#4Y>Z!.KDhWORD@pM*&;4dBJP9LQ -% o&I&d(/A;bYa6$RW.uUPN%0@Aa"dR3je*J9U-6$$7%.;QiJBgR4VW%mA@D,kK`1RGHVOpL^> -% ;%r&a[Y\Ru4'GjBKf>iE=G!LU!-l2q's3s@u&ShM;k:=D9>bC481QYGHW+[A:^!N'Jg$QsD3 -% \amZ;Qm]ZdA+U!k,nLn[;Z]o$_&?0?fapCrPoqb"/-1]KJ-3CU(7YB>Ol`*P!"c%E?iCd`(i -% ps3k8jVuZtS#ng1<#F'r,.m`#p0>&:kCF&7C2:5R`g81H,H!@X7s7d[j]TPsV*kV\mL>Hk=6 -% X=:A\]OTZg0YS!KM!lU?h@kZrj,nadn@7P'$Kq[EPPnYnk/HCa6!/E@:2]%:caZ*OF.'E>PE -% rL_?.$QF.=BCK75g_h+48/GZOB+=PKTSeTBkUr82>Q,KSAHA[pfAELI"mAa^X!2e,,m)9p5l_3b"UP//o1%`T,78)QE?IL#-]%t%]5ms -% `##JeP=A2_Q=Fn+ihSk/1gRcE_RR3q`r2H,@@>'bjhua2R3esu)0Hp?fgG(G_VJDc)bCj+>F$Ts-IEV0il58XP'r:dS]TrWP*!l+g -% VF+Z*!JIWeNa?XK?[/_$D=1Y,m]tS]@9Z/%b57df7*md)\r<[_#RU9M:7Q3f%Y!nHK`Y4L8, -% ^42-!^mkn#[j>8+Pe.P6(m-IS(GK_S-r?]En(8,Z@s.FTM%R)"!,N,#7q=&%;ZU)*7F<\2n8 -% 0So%I*WH8VTm(go7.R#2CWcj(W'moVi>OUr&B,%VX3J<7Xg,[R`#GAuRC;%s'Kl=!+4C/Hur -% 7%=Lu#XVTYJ;c4e6'm7$"uEoc+Duk-*9h-,>JU]%oAZ%*$ip>.x -% EndEmbeddedGraphics N 1190 4a6 E 85 S 1ff3f R 9d45e90d -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -41 419 492 179 rectclip -0 0 0.15 1 10 SU -[1 0 0 -1 350 589] concat -gsave -/Helvetica-Bold findfont 16 scalefont [1 0 0 -1 0 0] makefont -177 -exch -defineuserobject -177 execuserobject setfont -62.5 7.5 T --61.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(Before Collision) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 49 590] concat -gsave -177 execuserobject setfont -56 7.5 T --55 6 T -N 0 0 m -0 nxsetgray -0 0 m -(After Collision) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 326.268005 515.028015] concat -gsave -/Helvetica findfont 16 scalefont [1 0 0 -1 0 0] makefont -51 -exch -defineuserobject -51 execuserobject setfont -17 6 T -0.717702 0.841848 S --22.5 5 T -N 0 0 m -0 nxsetgray -0 0 m -(at rest) show -0 0 T -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[-1 0 0 1 525 427] concat -0 0 0.15 1 10 SU -[1 0 0 -1 2 99] concat -N -0.15 L -0 nxsetgray -gsave -36 36 0 0 oval 0.027778 0.027778 S s -grestore -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 164 99] concat -N -0.15 L -0 nxsetgray -gsave -36 36 0 0 oval 0.027778 0.027778 S s -grestore -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 416 99] concat -N -0.15 L -0 nxsetgray -gsave -36 36 0 0 oval 0.027778 0.027778 S s -grestore -0 0 T -grestore -0 0 0.15 1 10 SU -[4] 0 setdash -272 9 T -N -0.15 L -0 nxsetgray -0 144 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -38 81 T -N -2 L -0 nxsetgray -36 0 0 0 line -0 36 0 arrow -0 0 T -grestore -0 0 2 1 10 SU -gsave -177 execuserobject setfont -18 35 T -14 flipV -3.5 7 T --2.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(I) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -177 execuserobject setfont -180 35 T -14 flipV -5.5 7 T --4.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(II) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -177 execuserobject setfont -432 35 T -14 flipV -3.5 7 T --2.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(I) show -0 0 T -grestore -grestore -0 0 2 1 10 SU -434 99 T -N -2 L -0 nxsetgray -0 36 0 0 line -90 0 36 arrow -0 0 T -grestore -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Helvetica-Bold -%%+ Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob29av6.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob29av6.gif deleted file mode 100755 index 541930d95..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob29av6.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob29av7.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob29av7.eps deleted file mode 100755 index 0b2bf637e..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob29av7.eps +++ /dev/null @@ -1,556 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: pssc7cq8.6II.create -%%Creator: Create -%%CreationDate: Tue Nov 19 11:50:17 1996 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 215 395 397 602 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(6Y[r@+u-*+JWh2#YIC!)[V8&R,J,0g5Ia^:qgSd>3d\P`LRQT/I"9L'm0: -% n^8Zg$#u>8JsQt/e9PV'2p1dR@\)2i'7rZ[:e"sfJGOqh7B-Ko(?u^ET,c3C#?'d[k&[,EPZ -% f=rYe$J!1=&-Oon=t+=IZ*"W?B^)NO4u%H#oGHF -% D'uGZd0IKm9>*/O(J#)m!#tM9,/@Fi,Z%kY#9m"L)g6Tu<#C?$Z:Q>[AF`4u%m8d=D70I!>A -% _UCVH[Eh)2;74/[AKE.*T[(>]cn]!Pf8!@,jojed8Rt&_l-'8.ak,BO5,B]N8?AUtCH0.K0? -% Ub(+)pEWdj%6C:"f(1O6$(`[j(#mQfFhuX"_2(,;Z_U2@.!4hJ#UQ[J0k)XI5:5S"M3^P3b) -% us(GJcS#:pP0Y,J1"ZeIWfb'5>b&K>*\gsJ0b3qD)p2s7Y(<-=V6gB@>8l?f\qT%A.j\D!-l -% mVS1*+!U0/oTQfi6@`X$7pL>.S)U,Ya8tuhPO>"R\crg(1F51 -% Wg_TjR]fb$5pckb_:jaakuq`'\,EmNV0ibGBX,V3Q0]WD<&2:5cN7T^GM`iBhR.`7$Dj!+!l -% 4&chf9UM.7B,QlBl.glDg9fAC[:Vl&U>CqB(" -% ."0-/Pc$>j`8lOjs!!;qnEW.B1kUJ<;%[l=)49>WsX9/WAI)A!QfO+YH.):Y\AeP?LS]a"?! -% XI-ZK!CH2^ZK"3$:*M\5Z3=h!'l3'";-=d"/*P(ppoO@Y#DH9iUU="qeJ:eNW#U!;!.'FmKmWJq*"K375`'?b2/lOTbc0u:(63'RZ1I)2,p=RDOr%X:C -% *1F=k@l4+Zd=mKhUC=J.M$Ls2IY2$[2%4XK+G@WnTF`9^KIB)V&s-0e7-$1p=;]aW;(Y]$=p -% 5?mM&LaC8.%Te(C-'q!:H#"TemqV,hB(rY#/kgC#]UF&B>&e_?4?l5lc3kVlg1:J].K8S;?d -% XhCVZ,r/_7L!hdhTQB@C[1o2*h$-pDh12j:BAL=?p#C`sWA[FNE4;h;GH,?GMaJ'l#![32r- -% pRe1oI'51H:EI[dXgCg,rl9O_Zs_h%-_$[+FSN'`O5&UnMI*fOX[hf#(d+\fk3N@.*<3hZiJ -% r.k\n=`d/Ua3NXf1T$QM4VG"2,$'?sf-M8dq(;/f#FXbngR63<:0Ee&@,.S?2q**:GH!)4:s -% )WWRV2R"h7mL)9,KFe;#R,F[I\Z5#G_DnYuoU'@WQSNbA"=]G*X@1U9)7bUDgRT%5Cc-khrZ -% eJB9Vj4?#t.hnUKIQsx -% EndEmbeddedGraphics N 1510 5e6 E f S 29e85 R de042634 -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -215 395 182 207 rectclip -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 222 403] concat -0 0 0.15 1 10 SU -[-1 0 0 -1 103 118] concat -N -0.15 L -0 nxsetgray -gsave -36 36 0 0 oval 0.027778 0.027778 S s -grestore -0 0 T -grestore -0 0 2 1 10 SU -84 47 T -N -2 L -0 nxsetgray -0 36 0 0 line --90 0 0 arrow -0 0 T -grestore -0 0 2 1 10 SU -102 101 T -N -2 L -0 nxsetgray -36 0 0 0 line -0 36 0 arrow -0 0 T -grestore -0 0 2 1 10 SU -84 119 T -N -2 L -0 nxsetgray -0 36 0 0 line -90 0 36 arrow -0 0 T -grestore -0 0 2 1 10 SU -30 101 T -N -2 L -0 nxsetgray -36 0 0 0 line -180 0 0 arrow -0 0 T -grestore -0 0 2 1 10 SU -96.418549 112.62561 T -N -2 L -0 nxsetgray -26.162903 24.748779 0 0 line -43.41024 26.162903 24.748779 arrow -0 0 T -grestore -0 0 2 1 10 SU -45.636475 61.399231 T -N -2 L -0 nxsetgray -25.727051 25.201599 0 0 line -224.410187 0 0 arrow -0 0 T -grestore -0 0 2 1 10 SU -48.125641 111.918579 T -N -2 L -0 nxsetgray -24.748718 -26.162964 0 26.162964 line -133.407455 0 26.162964 arrow -0 0 T -grestore -0 0 2 1 10 SU -98.12561 60.918518 T -N -2 L -0 nxsetgray -24.748779 -26.162964 0 26.162964 line --46.59248 24.748779 0 arrow -0 0 T -grestore -0 0 2 1 10 SU -gsave -/Helvetica-Bold findfont 16 scalefont [1 0 0 -1 0 0] makefont -177 -exch -defineuserobject -177 execuserobject setfont -79 8 T -14 flipV -5.5 7 T --4.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(II) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -177 execuserobject setfont -79 170 T -14 flipV -7 7 T --6 6 T -N 0 0 m -0 nxsetgray -0 0 m -(A) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -177 execuserobject setfont -33 140 T -14 flipV -7 7 T --6 6 T -N 0 0 m -0 nxsetgray -0 0 m -(B) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -177 execuserobject setfont -125 141 T -15 flipV -7 7.5 T --6 6 T -N 0 0 m -0 nxsetgray -0 0 m -(C) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -177 execuserobject setfont -8 95 T -14 flipV -7 7 T --6 6 T -N 0 0 m -0 nxsetgray -0 0 m -(D) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -177 execuserobject setfont -146 94 T -14 flipV -6.5 7 T --5.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(E) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -177 execuserobject setfont -31 46 T -14 flipV -6 7 T --5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(F) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -177 execuserobject setfont -127 45 T -15 flipV -7.5 7.5 T --6.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(G) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -177 execuserobject setfont -79 26 T -14 flipV -7 7 T --6 6 T -N 0 0 m -0 nxsetgray -0 0 m -(H) show -0 0 T -grestore -grestore -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob29av7.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob29av7.gif deleted file mode 100755 index 80c9ab112..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob29av7.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob29av7.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob29av7.pdf deleted file mode 100644 index 2f1cb5cba..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob29av7.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob30a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob30a.eps deleted file mode 100755 index 1abbc40c9..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob30a.eps +++ /dev/null @@ -1,666 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: Untitled3.create -%%Creator: Create -%%CreationDate: Fri Mar 7 09:24:52 1997 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: -98 391 669 530 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(2u_n\R%AdlucPU`5DBr7kt5jn[U65C]*.f_pB2&O3T@fr_fmMi,VI"R5>RR#nh>nd -% 6KU;/ne.;:700lNV::ia\4#l'OFJ[F>g8S\XVTmVE:-n+AJ7ZpaCN70Q4n7C!W&;Q4S\X?b$ -% M^%A4>a9S5SAckg4(N#A[rTA(/LaR)ZPK)G<_CbR"9:=D9FbFYe/A=g>[ -% "SpVV??K)$\lRZCN;aEj%J.*pmP!N-p -% )i.@mq3+2ieA@Q''KNqDH)4?Eu#V,lX_4#^jd?Yu'1q&e+DDM'SVa%W+nNeinfQN;YRf&g\, -% nRaH"(Z!FO_+SMM"#"lZ_:JGN<%W,igqhF3e/\:*RM_9Bui"5)eC#.8L6;Xl@8u#RT1d:F(1 -% U&GFS:AUTUlHlIp#4Sg^Y"!XQRA"%XK!XHH8o$,Dbt)IWVhY"'R$7U?kM[hjAl:qq -% YJqJ.?+".A.A",ff^"DE!YB1E_`h^bZ,i6_D3@OIfc%6kYu9tsm:NutPTE_u5SI%GjI$s"TW -% 2`Q0r3KQ$l#(U,-@3_M(?2o\\%C8C!B:P]pT/a!"9Jc]C0/+[eDG>"UJp]\(D16E4724dRaG -% "7d=iYQ2H_8&!554nZ:u$llsMsl?]CZ0A->n.@'CaaTO+RJABU9=^%,pFKM$K+RpEq1>-cDA -% b'e[kstg_$lIpnZ8'gB(;MdVNC,#tHsjhNcG!mkdjn&Y8Kb`DEOg%*bBr[>3[+P*$)&lm -% 0Bmi4Hog1/X$6;MKRhhB\E,J0Hs4$5B6MQVOq"tVgJb-4]uT!C]YD^\me;jlZYmIWY\LpmpV -% M>c0Wu^FXSKDsHVUio-bAumXF1+r?d?$d3hCU&CD@5m`A2$iVKFG6++k[8`0\%*ThK#K;]j5 -% Nk9T4>E.8:dSfrIc1o/NL#)'%1$o3AgYCR-g(\D#<_)Ia*@BO-#MVE2a:k?37OBLp#U&/`)_ -% %\)PKo]D9Rt_-A,\3VX(O3^t-KVbE$ikdad9lP@8#%C7M`*SAc6*Z0!+pH\!)se)FZf2S-WD -% GrYRlD23+Y@g.5=FnW`!(?'8$?tTh?"J$\cHn+V&c'6qB:B(:RtO8prFLq:jm-AlM5ZSag6) -% dEs(eJ,h9&#EEgE"=&ZY26[6'gUI=?tr6(ceH.ncq9SR7^J^15)?hM%#e#73 -% EXK'mL!L%%<9S-0HO;["pGOLp>2ee1h=uWX4,f#F95*)&KX8Wa36@1!,D6Q47##!-#-%B8V!71.CpLIO*#X&;82+HV+=@ -% &#:N"Mc>(kHmCD(fgBF!03F*=n6EUQ%4C?bQNPT0d%&'#XA\_qRCcYn7a -% 6bkVj+#(`Ydf(R94GGg[1S%2^2f7.hpc!4o6#_$a?d'I%d8+Fl]_,61fA.1'Xt7"UEGM*.iW -% "$?]d(B?5k#m^O).OZZ,cM3T%\lPO/;[pME!l -% 0>fqR)kbje4nd-s.T)[OaHH"Bbh8Mm;>9H&XuF+8ZgV'Mc(s3[Fo.=ceICjE7Z6lRPPfC/WH -% B(6*sCQWU3uLrARYXcDMto9spYb3HDJ/*O*8Z-$,f%TeFZh..&nVp_fDp,U>[CK_U67+jbi[ -% Vh'C>Uc.HW2^sR>3)bt^RN@7^2pq,9J.a>RgC[Nf!WkIYB3S8f':hq&h3$]8'NcSr>HE``>. -% iTakOY\"u$_79l(q#4B(t)e6*0^D1`cu?d##@^CLU'2CdKffR3CbrXJ(G")M0&'%k"%Q17rh -% m)Siq=0aBsXY57F=eH,P>>RGt4nC*).TXClRA^2h-pYW%9_68.c#Hh*gIW=f&M9_F!%Z^\*H -% 7+U!nHh[-PTFK&Sr[(HYcb7;,#.u@N[;,&:uMLR=N<NPL+$a@iSNkn:nB]g\6i!)tLV#=#L,70&B!1s9G_Q>`Q8m -% Vdj[]AYN/jccT[NZ&)*MJEW/&9*`H+Q>NH3o;sD+kq)&!6I#qr:uXE(c5P40T/=P]$Y#4[*P -% >=9P+LGR::\%x -% EndEmbeddedGraphics N 1968 7b0 E c8 S 376fa R 39fdc0f9 -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave --98 391 767 139 rectclip -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 -91 399] concat -[1.405608 0 0 1 0 0] concat -0 0 0 1 10 SU -gsave -/Helvetica-Bold findfont 24 scalefont [1 0 0 -1 0 0] makefont -636 -exch -defineuserobject -636 execuserobject setfont -430 15 T -20 flipV -10 10 T --9 9 T -N 0 0 m -0 nxsetgray -0 0 m -(A) show -0 0 T -grestore -grestore -0 0 2 1 10 SU -354 43 T -N -2 L -0 nxsetgray -150 0 0 0 line -0 150 0 arrow -180 0 0 arrow -0 0 T -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 7 7] concat -0 0 0 1 10 SU -gsave -636 execuserobject setfont -117 8 T -20 flipV -10 10 T --9 9 T -N 0 0 m -0 nxsetgray -0 0 m -(B) show -0 0 T -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 7 27] concat -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 1 12] concat -0 0 1 1 10 SU -15 15 T -N -1 L -0 nxsetgray -474 0 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -9 9 T -N -1 L -0 nxsetgray -486 0 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -15 15 T -N -1 L -0 nxsetgray -0 12 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -9 27 T -N -1 L -0 nxsetgray -6 0 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -9 9 T -N -1 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -489 15 T -N -1 L -0 nxsetgray -0 12 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -495 9 T -N -1 L -0 nxsetgray -0 18 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -489 27 T -N -1 L -0 nxsetgray -6 0 0 0 line -0 0 T -grestore -grestore -grestore -0 0 0 1 10 SU -16 9 T -N -0 nxsetgray -216 0 0 0 line -0 216 0 arrow -180 0 0 arrow -0 0 T -grestore -grestore -grestore -grestore -grestore -grestore -grestore -0 nxsetgray -0 0 0.226316 1 10 SU -gsave -[1 0 0 1 239 456] concat -0 0 0 1 10 SU -gsave -/Times-Bold findfont 18 scalefont [1 0 0 -1 0 0] makefont -637 -exch -defineuserobject -637 execuserobject setfont -13 23 T -15 flipV -7.5 7.5 T --6.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(X) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -637 execuserobject setfont -101 23 T -15 flipV -7.5 7.5 T --6.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(Y) show -0 0 T -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 1 1] concat -[1.508772 0 0 1.203704 0 0] concat -0 0 1 1 10 SU -[1 0 0 -1 51 27] concat -N -1 L -0 nxsetgray -0 0 12 6 rectstroke -0 0 T -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 61 1] concat -0 0 1 1 10 SU -[1 0 0 -1 2 32] concat -N -1 L -0 nxsetgray -0 0 48 18 rectstroke -0 0 T -grestore -0 0 1 1 10 SU -[1 0 0 -1 2 14] concat -N -1 L -0 nxsetgray -gsave -12 12 0 0 oval 0.083333 0.083333 S s -grestore -0 0 T -grestore -0 0 1 1 10 SU -[1 0 0 -1 38 14] concat -N -1 L -0 nxsetgray -gsave -12 12 0 0 oval 0.083333 0.083333 S s -grestore -0 0 T -grestore -0 0 1 1 10 SU -[1 0 0 -1 8 38] concat -N -0.331034 nxsetgray -0 0 36 6 rectfill -1 L -0 nxsetgray -0 0 36 6 rectstroke -0 0 T -grestore -0 0 1 1 10 SU -[1 0 0 -1 14 44] concat -N -0.462065 nxsetgray -0 0 24 6 rectfill -1 L -0 nxsetgray -0 0 24 6 rectstroke -0 0 T -grestore -0 0 1 1 10 SU -[1 0 0 -1 20 50] concat -N -0.531037 nxsetgray -0 0 12 6 rectfill -1 L -0 nxsetgray -0 0 12 6 rectstroke -0 0 T -grestore -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 1 1] concat -0 0 1 1 10 SU -[1 0 0 -1 2 32] concat -N -1 L -0 nxsetgray -0 0 48 18 rectstroke -0 0 T -grestore -0 0 1 1 10 SU -[1 0 0 -1 38 14] concat -N -1 L -0 nxsetgray -gsave -12 12 0 0 oval 0.083333 0.083333 S s -grestore -0 0 T -grestore -0 0 1 1 10 SU -[1 0 0 -1 2 14] concat -N -1 L -0 nxsetgray -gsave -12 12 0 0 oval 0.083333 0.083333 S s -grestore -0 0 T -grestore -grestore -grestore -grestore -grestore -0 0 0.15 1 10 SU -gsave -637 execuserobject setfont -121 20 T -19 flipV -23.5 9.5 T --22.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(\(1 kg\)) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -637 execuserobject setfont -30 20 T -19 flipV -23.5 9.5 T --22.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(\(1 kg\)) show -0 0 T -grestore -grestore -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Times-Bold -%%+ Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob30a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob30a.gif deleted file mode 100755 index 2ee43d3dd..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob30a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob30a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob30a.pdf deleted file mode 100644 index ab8f2032d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype18/prob30a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype19/prob04.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype19/prob04.eps deleted file mode 100755 index a7360386c..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype19/prob04.eps +++ /dev/null @@ -1,384 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 - -%%Creator: MiniCad+ 4.0 - -%%Title: hw8q6f.eps - -%%CreationDate: 10/24/1994 - -%%Pages: 0 - -%%DocumentFonts: Times-Roman - -%%BoundingBox:88 465 444 639 - -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -1771 3619 2847 4696 OV -0.93 sg fill -gr -gs -1771.25 3619.25 2847.75 4696.75 OV -52.5 slw 0 sg str -gr -gs -4930 2907 7465 5442 OV -0.93 sg fill -gr -gs -4930.25 2907.25 7465.75 5442.75 OV -52.5 slw 0 sg str -gr -gs -2344 3897 2413 4122 R -1 sg fill -gr -/_Times-Roman ff [208 0 0 -208 0 0] mf sf -2344 4053 m 0 sg (r) show -gs -2396 3984 2500 4157 R -1 sg fill -gr -/_Times-Roman ff [156 0 0 -156 0 0] mf sf -2396 4122 m 0 sg (A) show -gs -6285 3801 6354 4027 R -1 sg fill -gr -/_Times-Roman ff [208 0 0 -208 0 0] mf sf -6285 3957 m 0 sg (r) show -gs -6354 3905 6458 4079 R -1 sg fill -gr -/_Times-Roman ff [156 0 0 -156 0 0] mf sf -6354 4043 m 0 sg (C) show -gs -3003 4114 3142 4340 R -1 sg fill -gr -/_Times-Roman ff [208 0 0 -208 0 0] mf sf -3003 4270 m 0 sg (A) show -gs -4722 4114 4861 4340 R -1 sg fill -gr -4722 4270 m 0 sg (C) show -gs -3941 4739 4080 4965 R -1 sg fill -gr -3941 4895 m 0 sg (B) show -gs -2309.625 3619.625 m -6198.625 2907.625 L -1.25 slw 0 sg str -gr -gs -2309.625 4696.625 m -6198.625 5442.625 L -1.25 slw 0 sg str -gr -gs -6198 2907 6272 3065 6124 3065 2 P -0 sg fill -gr -gs -6198.625 4175.625 m -6198.625 2907.625 L -1.25 slw 0 sg str -gr -gs -2309 3619 2383 3777 2235 3777 2 P -0 sg fill -gr -gs -2309.625 4157.625 m -2309.625 3619.625 L -1.25 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype19/prob04.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype19/prob04.gif deleted file mode 100755 index c9bef265a..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype19/prob04.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype19/prob04.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype19/prob04.pdf deleted file mode 100644 index 08db24192..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype19/prob04.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype19/prob06.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype19/prob06.eps deleted file mode 100755 index 2d04c2940..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype19/prob06.eps +++ /dev/null @@ -1,338 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Wheel_Arrow.eps -%%CreationDate: 10/14/1995 -%%Pages: 0 -%%BoundingBox:212 539 488 747 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -5095 1015 8221 4141 OV -0.75 sg fill -gr -gs -5095.5 1015.5 8221.5 4141.5 OV -35 slw 0 sg str -gr -gs -5252 1172 8064 3984 OV -1 sg fill -gr -gs -5252.5 1172.5 8064.5 3984.5 OV -35 slw 0 sg str -gr -gs -6658.5 1015.5 m -6658.5 4141.5 L -35 slw 0 sg str -gr -gs -5564.5 1484.5 m -7752.5 3672.5 L -35 slw 0 sg str -gr -gs -5095.5 2578.5 m -8221.5 2578.5 L -35 slw 0 sg str -gr -gs -5564.5 3672.5 m -7752.5 1484.5 L -35 slw 0 sg str -gr -gs -6345 2265 6971 2891 OV -0.5 sg fill -gr -gs -6345.5 2265.5 6971.5 2891.5 OV -35 slw 0 sg str -gr -gs -5751 2891 5572 3147 5440 2918 2 P -0 sg fill -gr -gs -4127.625 3828.625 m -5751.625 2891.625 L -1.25 slw 0 sg str -gr -gs -4127 3828 4070 4041 4611 3729 4669 3516 4127 3828 4 P closepath -0 0 0 1 1 1 [17 34 68 136 17 34 68 136] patfill -gr -gs -4127 3828 4070 4041 4611 3729 4669 3516 4127 3828 4 P closepath -1.25 slw 0 sg str -gr -gs -4127 3828 3914 3771 4455 3458 4669 3516 4127 3828 4 P closepath -0 0 0 1 1 1 [136 68 34 17 136 68 34 17] patfill -gr -gs -4127 3828 3914 3771 4455 3458 4669 3516 4127 3828 4 P closepath -1.25 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype19/prob06.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype19/prob06.gif deleted file mode 100755 index fef1fb7b0..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype19/prob06.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype19/prob06.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype19/prob06.pdf deleted file mode 100644 index 1495ec453..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype19/prob06.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype19/prob07a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype19/prob07a.eps deleted file mode 100755 index 80a566140..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype19/prob07a.eps +++ /dev/null @@ -1,513 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Stick_Pendulum.eps -%%CreationDate: 11/25/1995 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%BoundingBox:155 413 356 695 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -4669 1953 4982 6328 R -0.75 sg fill -gr -gs -4669.625 1953.625 4982.375 6328.375 R -1.25 slw 0 sg str -gr -gs -4748 2031 4904 2187 OV -1 sg fill -gr -gs -4748.625 2031.625 4904.375 2187.375 OV -1.25 slw 0 sg str -gr -gs -4982.625 1953.625 m -5033.625 1953.625 L -1.25 slw 0 sg str -gr -gs -5086.625 1953.625 m -5137.625 1953.625 L -1.25 slw 0 sg str -gr -gs -5190.625 1953.625 m -5241.625 1953.625 L -1.25 slw 0 sg str -gr -gs -5294.625 1953.625 m -5346.625 1953.625 L -1.25 slw 0 sg str -gr -gs -5399.625 1953.625 m -5450.625 1953.625 L -1.25 slw 0 sg str -gr -gs -5503.625 1953.625 m -5554.625 1953.625 L -1.25 slw 0 sg str -gr -gs -5607.625 1953.625 m -5658.625 1953.625 L -1.25 slw 0 sg str -gr -gs -5711.625 1953.625 m -5762.625 1953.625 L -1.25 slw 0 sg str -gr -gs -5815.625 1953.625 m -5866.625 1953.625 L -1.25 slw 0 sg str -gr -gs -5919.625 1953.625 m -5920.625 1953.625 L -1.25 slw 0 sg str -gr -gs -4982.625 6328.625 m -5033.625 6328.625 L -1.25 slw 0 sg str -gr -gs -5086.625 6328.625 m -5137.625 6328.625 L -1.25 slw 0 sg str -gr -gs -5190.625 6328.625 m -5241.625 6328.625 L -1.25 slw 0 sg str -gr -gs -5294.625 6328.625 m -5346.625 6328.625 L -1.25 slw 0 sg str -gr -gs -5399.625 6328.625 m -5450.625 6328.625 L -1.25 slw 0 sg str -gr -gs -5503.625 6328.625 m -5554.625 6328.625 L -1.25 slw 0 sg str -gr -gs -5607.625 6328.625 m -5658.625 6328.625 L -1.25 slw 0 sg str -gr -gs -5711.625 6328.625 m -5762.625 6328.625 L -1.25 slw 0 sg str -gr -gs -5815.625 6328.625 m -5866.625 6328.625 L -1.25 slw 0 sg str -gr -gs -5919.625 6328.625 m -5920.625 6328.625 L -1.25 slw 0 sg str -gr -gs -5815 1953 5889 2111 5741 2111 2 P -0 sg fill -gr -gs -5815 6328 5741 6170 5889 6170 2 P -0 sg fill -gr -gs -5815.625 1953.625 m -5815.625 6328.625 L -1.25 slw 0 sg str -gr -gs -5312 1953 5386 2111 5238 2111 2 P -0 sg fill -gr -gs -5312 5078 5238 4920 5386 4920 2 P -0 sg fill -gr -gs -5312.625 1953.625 m -5312.625 5078.625 L -1.25 slw 0 sg str -gr -gs -4982.625 5078.625 m -5033.625 5078.625 L -1.25 slw 0 sg str -gr -gs -5086.625 5078.625 m -5137.625 5078.625 L -1.25 slw 0 sg str -gr -gs -5190.625 5078.625 m -5241.625 5078.625 L -1.25 slw 0 sg str -gr -gs -5294.625 5078.625 m -5346.625 5078.625 L -1.25 slw 0 sg str -gr -gs -5399.625 5078.625 m -5450.625 5078.625 L -1.25 slw 0 sg str -gr -gs -5503.625 5078.625 m -5554.625 5078.625 L -1.25 slw 0 sg str -gr -gs -5607.625 5078.625 m -dot -1.25 slw 0 sg str -gr -gs -3029 5000 3185 5156 OV -0 sg fill -gr -gs -3029.625 5000.625 3185.375 5156.375 OV -1.25 slw 0 sg str -gr -gs -4357 5078 4199 5152 4199 5004 2 P -0 sg fill -gr -gs -3263.625 5078.625 m -4357.625 5078.625 L -1.25 slw 0 sg str -gr -gs -2768 4931 2977 5226 R -1 sg fill -gr -/_Times-Roman ff [278 0 0 -278 0 0] mf sf -2768 5139 m 0 sg (m) show -gs -3975 4774 4114 5069 R -1 sg fill -gr -3975 4982 m 2.78 slw 0 sg (v) show -gs -4314 3602 4557 3897 R -1 sg fill -gr -4314 3810 m 2.78 slw 0 sg (M) show -gs -5242 3368 5381 3663 R -1 sg fill -gr -5242 3576 m 2.78 slw 0 sg (x) show -gs -5737 3993 5894 4288 R -1 sg fill -gr -5737 4201 m 2.78 slw 0 sg (L) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype19/prob07a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype19/prob07a.gif deleted file mode 100755 index 52be54322..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype19/prob07a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype19/prob07a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype19/prob07a.pdf deleted file mode 100644 index cf1131eda..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype19/prob07a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob01.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob01.eps deleted file mode 100755 index bf885e6f8..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob01.eps +++ /dev/null @@ -1,831 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Title: emily.eps -%%Creator: Canvas 3.0 -%%For: Jim -%%CreationDate: Wed, Oct 18, 1995 1:02 PM -%%BoundingBox:31 80 232 250 -%%DocumentProcSets: CanvasDict -%%DocumentSuppliedProcSets: CanvasDict -%%Copyright ©1988-91 Deneba Systems, Inc. - All Rights Reserved Worldwide -%%EndComments -%%BeginProcSet:CanvasDict -/CanvasDict where not{/CanvasDict 250 dict def}{pop}ifelse -CanvasDict begin -systemdict/setpacking known{/origpack currentpacking def true setpacking}if -/bdf{bind def}bind def -/xdf{exch bind def}bdf -/min{2 copy gt{exch}if pop}bdf -/edf{exch def}bdf -/max{2 copy lt{exch}if pop}bdf -/cvmtx matrix def -/tpmx matrix def -/currot 0 def -/rotmtx matrix def -/origmtx matrix def -/cvangle{360 exch sub 90 add 360 mod}bdf -/setrot{/currot edf rotmtx currentmatrix pop 2 copy translate currot rotate neg exch neg exch translate}bdf -/endrot{rotmtx setmatrix}bdf -/i systemdict/image get def/T true def/F false def/dbg F def -/ncolors 0 def/st0 ()def/st1 ()def/proc0 {}def -/penh 1 def/penv 1 def/penv2 0 def/penh2 0 def/samplesize 0 def/width 0 def/height 0 def -/setcmykcolor where not{/setcmykcolor{/b edf 3{b add 1.0 exch sub 0.0 max 1.0 min 3 1 roll}repeat systemdict begin setrgbcolor end}bdf}{pop}ifelse -/doeoclip{closepath{eoclip}stopped{currentflat dup 2 mul setflat eoclip setflat}if}bdf -/SpaceExtra 0 def/LetterSpace 0 def/StringLength 0 def/NumSpaces 0 def/JustOffset 0 def -/f0/fill load def -/s0{1 setlinewidth cvmtx currentmatrix pop penh penv scale stroke cvmtx setmatrix}bdf -/f1{_bp _fp impat}def -/s1{cvmtx currentmatrix pop 1 setlinewidth penh penv scale -{strokepath}stopped{currentflat dup 2 mul setflat strokepath setflat}if -_bp -cvmtx setmatrix _fp impat}def -/filltype 0 def -/stroketype 0 def -/f{filltype 0 eq{f0}{f1}ifelse}bdf -/s{stroketype 0 eq{s0}{s1}ifelse}bdf -/_fp{}def -/_bp{}def -/_fg 1 def -/_pg 0 def -/_bkg 1 def -/_frg 0 def -/_frgb 3 array def -/_frrgb [0 0 0] def -/_fcmyk 4 array def -/_frcmyk [0 0 0 1] def -/_prgb 3 array def -/_pcmyk 4 array def -/_bkrgb [1 1 1] def -/_bkcmyk [0 0 0 0] def -/fg{/_fg exch def /filltype 0 def/fills{_fg setgray}def}def -/frgb{_frgb astore pop /filltype 0 def/fills{_frgb aload pop setrgbcolor}def}def -/fcmyk{_fcmyk astore pop /filltype 0 def/fills{_fcmyk aload pop setcmykcolor}def}def -/pg{/_pg exch def /stroketype 0 def/pens{_pg setgray}def}def -/prgb{_prgb astore pop /stroketype 0 def/pens{_prgb aload pop setrgbcolor}def}def -/pcmyk{_pcmyk astore pop /stroketype 0 def/pens{_pcmyk aload pop setcmykcolor}def}def -/fpat{/fstr edf/filltype 1 def/fills{/patstr fstr def}bdf}bdf -/ppat{/sstr edf/stroketype 1 def/pens{/patstr sstr def}bdf}bdf -/bkg{ /_bkg exch def /_bp{gsave _bkg setgray fill grestore}def}def -/bkrgb{_bkrgb astore pop/_bp{gsave _bkrgb aload pop setrgbcolor fill grestore}def}def -/bkcmyk{_bkcmyk astore pop/_bp{gsave _bkcmyk aload pop setcmykcolor fill grestore}def}def -/frg{ /_frg exch def /_fp{_frg setgray}def}def -/frrgb{_frrgb astore pop/_fp{_frrgb aload pop setrgbcolor}def}def -/frcmyk{_frcmyk astore pop/_fp{_frcmyk aload pop setcmykcolor}def}def -/icomp{/ncolors edf -ncolors 1 gt{/proc0 edf -dup dup 0 get ncolors div cvi exch 0 3 -1 roll put -4 -1 roll ncolors div cvi 4 1 roll{proc0 dup/st0 edf -0 exch ncolors exch length -dup ncolors sub exch ncolors div cvi string/st1 edf -{dup 0 exch dup 1 exch -2 add{st0 exch get add}bind for -3 div ncolors 4 eq{exch dup 3 1 roll 3 add st0 exch get add 255 exch sub dup 0 lt{pop 0}if}if cvi -dup 255 gt{pop 255}if -exch ncolors div cvi exch -st1 3 1 roll put}bind for -st1}}if i}bdf -/ci -{/colorimage where -{pop false exch colorimage} -{icomp} -ifelse}bdf -/impat -{/cnt 0 def -/MySave save def -currot 0 ne{currot neg rotate}if -clip -flattenpath -pathbbox -3 -1 roll -8 div floor 8 mul dup/starty edf -sub abs 8 div ceiling 8 mul cvi/height edf -exch 8 div floor 8 mul dup/startx edf -sub abs 8 div ceiling 8 mul cvi/width edf -startx starty translate -width height scale -/height height 8 mul def -/st0 width string def -width height T [width 0 0 height neg 0 height] -{patstr -cnt 8 mod -get/st1 edf -0 1 -st0 length 1 sub dup 0 le{pop 1}if -{st0 exch -st1 -put}bind for/cnt cnt 1 add def -st0}bind -imagemask -MySave restore -newpath}bdf -/cm{/ncolors edf -translate -scale/height edf/colorimage where -{pop} -{ncolors mul}ifelse/width edf -/tbitstr width string def -width height 8 [width 0 0 height neg 0 height] -{currentfile tbitstr readhexstring pop}bind -ncolors -dup 3 eq {ci}{icomp}ifelse}bdf -/im{translate -scale -/height edf -/width edf -/tbitstr width 7 add 8 div cvi string def -width height 1 [width 0 0 height neg 0 height] -{currentfile tbitstr readhexstring pop}bind -i}bdf -/imk{/invFlag edf -translate -scale -/height edf -/width edf -/tbitstr width 7 add 8 div cvi string def -width height invFlag [width 0 0 height neg 0 height] -{currentfile tbitstr readhexstring pop}bind -imagemask}bdf -/BeginEPSF -{/MySave save def -/dict_count countdictstack def -/op_count count 1 sub def -userdict begin -/showpage {} def -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -10 setmiterlimit [] 0 setdash newpath -/languagelevel where -{pop languagelevel 1 ne{false setstrokeadjust false setoverprint}if}if -}bdf -/EndEPSF -{count op_count sub {pop}repeat -countdictstack dict_count sub {end}repeat -MySave restore}bdf -/rectpath {/cv_r edf/cv_b edf/cv_l edf/cv_t edf -cv_l cv_t moveto cv_r cv_t lineto cv_r cv_b lineto cv_l cv_b lineto cv_l cv_t lineto closepath}bdf -/setpen{/penh edf/penv edf/penv2 penv 2 div def/penh2 penh 2 div def}bdf -/dostroke{not pens 1.0 currentgray ne or {s}{newpath}ifelse}bdf -/dodashfill{not fills 1.0 currentgray ne or -{gsave f grestore gsave [] 0 setdash -stroketype/stroketype filltype def -s/stroketype edf grestore}{newpath}ifelse}bdf -/dofill{not fills 1.0 currentgray ne or {f}{newpath}ifelse}bdf -/dofillsave{not fills 1.0 currentgray ne or {gsave f grestore}if}bdf -/doline{not pens 1.0 currentgray ne or {filltype/filltype stroketype def f/filltype edf}{newpath}ifelse}bdf -/spx{SpaceExtra 0 32 4 -1 roll widthshow}bdf -/lsx{SpaceExtra 0 32 LetterSpace 0 6 -1 roll awidthshow}bdf -/Rjust{stringwidth pop JustOffset exch sub /JustOffset edf}bdf -/Cjust{stringwidth pop 2 div JustOffset exch sub /JustOffset edf}bdf -/adjfit{stringwidth pop LetterSpace StringLength 1 sub mul add SpaceExtra NumSpaces mul add dup /pw edf JustOffset exch -sub dup /wdif edf StringLength div dup abs 1.0 gt{pop 0}if LetterSpace add /LetterSpace edf}bdf -/ulb{currentpoint pop /underlinpt edf}bdf -/ule{gsave currentpoint newpath moveto currentfont dup /ft1 known{dup /ft1 get begin /FontMatrix get FontMatrix tpmx concatmatrix pop} -{begin FontMatrix tpmx copy pop}ifelse FontInfo begin UnderlinePosition UnderlineThickness end end dup tpmx -dtransform pop setlinewidth dup tpmx dtransform pop 0 exch rmoveto underlinpt currentpoint pop sub 0 rlineto stroke grestore}bdf -/fittext{ /SpaceExtra edf /LetterSpace edf /StringLength edf /NumSpaces edf /JustOffset edf not 1 currentgray ne or -{dup {ulb}if exch -dup adjfit -lsx {ule}if}{pop pop}ifelse}bdf -/cvRecFont{/encod edf FontDirectory 2 index known{cleartomark}{findfont dup length 1 add dict begin -{1 index/FID ne{def}{pop pop}ifelse}forall encod{/Encoding CVvec def}if -currentdict end definefont cleartomark}ifelse}bdf -/wrk1 ( ) def/wdict 16 dict def -/Work75 75 string def /Nmk{Work75 cvs dup}bdf /Npt{put cvn}bdf /dhOdh{Nmk 2 79 Npt}bdf /dhodh{Nmk 2 111 Npt}bdf /dhSdh{Nmk 2 83 Npt}bdf -/sfWidth{gsave 0 0 moveto 0 0 lineto 0 0 lineto 0 0 lineto closepath clip stringwidth grestore}bdf -/MakOF{dup dhodh FontDirectory 1 index known{exch pop}{exch findfont dup length 1 add dict begin -{1 index/FID ne 2 index /UniqueID ne and{def}{pop pop}ifelse}forall -/PaintType 2 def -/StrokeWidth .24 1000 mul ftSize div dup 12 lt{pop 12}if def -dup currentdict end definefont pop}ifelse}bdf -/fts{dup/ftSize edf}def -/mkFT{/tempFT 11 dict def tempFT begin -/FontMatrix [1 0 0 1 0 0] def/FontType 3 def -FontDirectory 3 index get /Encoding get/Encoding exch def -/proc2 edf/ft2 exch findfont def/ft1 exch findfont def/FontBBox [0 0 1 1] def -/BuildChar{wdict begin/chr edf/ftdt edf/chrst wrk1 dup 0 chr put def ftdt/proc2 get exec end}def -end tempFT definefont pop}bdf -/OLFt{dup dhOdh FontDirectory 1 index known{exch pop} -{dup 3 -1 roll dup MakOF {outproc} mkFT}ifelse}bdf -/mshw{moveto show}bdf -/outproc{ftdt/ft1 get setfont gsave chrst sfWidth grestore setcharwidth dblsh}bdf -/dblsh{currentgray 1 setgray chrst 0 0 mshw setgray ftdt/ft2 get setfont chrst 0 0 mshw}bdf -/ShadChar{ftdt/ft1 get setfont gsave chrst sfWidth 1 index 0 ne{exch .05 add exch}if grestore setcharwidth -chrst .06 0 mshw 0 .05 translate dblsh}bdf -/ShFt{dup dhSdh FontDirectory 1 index known{exch pop} -{dup 3 -1 roll dup MakOF {ShadChar} mkFT}ifelse}bdf -/LswUnits{72 75 div dup scale}bdf -/erasefill{_bp}def -/CVvec 256 array def -/NUL/SOH/STX/ETX/EOT/ENQ/ACK/BEL/BS/HT/LF/VT/FF/CR/SO/SI/DLE/DC1/DC2/DC3/DC4/NAK/SYN/ETB/CAN/EM/SUB/ESC/FS/GS/RS/US -CVvec 0 32 getinterval astore pop -CVvec 32/Times-Roman findfont/Encoding get -32 96 getinterval putinterval CVvec dup 39/quotesingle put 96/grave put -/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis/Udieresis/aacute -/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute/egrave -/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde/oacute -/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex/udieresis -/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/notequal/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdiff/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta/guillemotleft -/guillemotright/ellipsis/blank/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide/lozenge -/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright/fi/fl -/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand/Acircumflex/Ecircumflex/Aacute -/Edieresis/Egrave/Iacute/Icircumflex/Idieresis/Igrave/Oacute/Ocircumflex -/apple/Ograve/Uacute/Ucircumflex/Ugrave/dotlessi/circumflex/tilde -/macron/breve/dotaccent/ring/cedilla/hungarumlaut/ogonek/caron -CVvec 128 128 getinterval astore pop -end -%%EndProcSet -%%BeginSetup -CanvasDict begin -0 setlinecap -0 setlinejoin -4 setmiterlimit -/currot 0 def -origmtx currentmatrix pop -[] 0 setdash -1 1 setpen -1 fg -0 pg -0 frg -1 bkg -newpath -/dbg F def -%%EndSetup -% ---- Object #1:10 Obj Type: 55 -save /MySave edf -249 33 81 231 rectpath -doeoclip newpath -198 168 198 168 33 81 3 cm -777777666666777777777777777777777777777777777777777777777777777777777777777777777777777777888888AAAAAABBBBBBAAAAAA888888666666666666666666666666666666777777666666444444777777444444555555777777777777777777888888888888BBBBBBBBBBBB999999888888777777555555666666444444333333333333555555555555444444444444444444444444555555666666AAAAAABBBBBBCCCCCCCCCCCCBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBCCCCCCCCCCCCDDDDDDDDDDDDCCCCCCDDDDDDDDDDDDBBBBBB999999999999AAAAAAAAAAAAAAAAAA999999999999666666AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999AAAAAAAAAAAABBBBBBCCCCCCCCCCCCBBBBBBCCCCCCBBBBBB999999777777555555555555666666555555666666777777888888BBBBBBAAAAAA888888555555555555444444333333222222222222222222222222222222222222333333333333444444444444444444444444444444444444444444444444444444555555555555666666777777AAAAAABBBBBBAAAAAA999999999999999999999999AAAAAABBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999AAAAAAAAAAAA999999999999999999999999888888777777777777666666555555555555555555555555444444444444333333333333444444333333333333333333333333333333333333333333444444444444555555444444444444555555666666666666555555555555 -777777777777777777777777777777777777777777777777777777777777777777777777777777777777999999AAAAAABBBBBBAAAAAA888888666666555555555555666666777777444444555555555555555555777777222222555555888888777777777777777777888888BBBBBBAAAAAA999999888888777777555555666666555555333333555555777777555555444444444444444444555555999999AAAAAABBBBBBBBBBBBCCCCCCBBBBBBBBBBBBCCCCCCDDDDDDCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCDDDDDDEEEEEEDDDDDDBBBBBBDDDDDDDDDDDDBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBB666666999999999999888888888888888888888888999999999999999999AAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBDDDDDDDDDDDDBBBBBB888888666666666666777777666666666666777777888888AAAAAAAAAAAA777777777777777777666666555555444444333333333333333333222222222222222222333333444444444444444444555555555555555555555555555555555555555555555555555555666666999999AAAAAAAAAAAA888888888888888888999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999999999999999999999999999999999999999999999999999888888888888777777666666666666555555444444444444444444333333333333333333444444444444444444333333333333333333333333333333333333444444444444444444444444555555666666555555555555555555 -777777777777777777777777777777777777777777777777777777777777777777777777777777888888BBBBBBBBBBBBAAAAAA888888666666444444444444555555777777666666444444555555555555555555444444666666888888999999999999888888777777888888AAAAAA999999888888666666666666777777555555666666555555777777999999555555555555888888888888555555666666666666BBBBBBDDDDDDCCCCCCBBBBBBCCCCCCCCCCCCDDDDDDDDDDDDCCCCCCBBBBBBBBBBBBAAAAAABBBBBBCCCCCCDDDDDDCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBCCCCCCDDDDDDAAAAAA999999999999999999777777444444888888777777777777666666777777777777888888888888888888999999AAAAAABBBBBBBBBBBBBBBBBBAAAAAABBBBBBEEEEEEDDDDDDAAAAAA888888888888888888888888777777777777999999AAAAAA999999777777888888999999888888777777555555444444444444444444333333333333444444333333333333444444444444444444444444555555555555555555666666777777888888777777777777888888888888888888888888888888888888999999AAAAAABBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAABBBBBBAAAAAABBBBBBBBBBBBBBBBBB999999999999999999999999AAAAAAAAAAAAAAAAAA999999999999999999999999999999999999888888888888888888666666555555555555444444444444444444444444333333333333444444555555555555444444333333333333333333333333333333333333444444333333444444444444555555555555555555555555 -777777777777777777777777777777777777777777777777777777777777777777777777888888999999BBBBBBBBBBBB999999666666555555555555555555666666666666444444333333555555666666444444777777999999AAAAAAAAAAAA999999999999888888888888AAAAAA999999444444666666666666888888666666777777777777888888999999AAAAAA999999888888888888999999555555444444888888EEEEEEEEEEEECCCCCCCCCCCCDDDDDDCCCCCCCCCCCCDDDDDDBBBBBBAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAABBBBBBCCCCCCDDDDDDAAAAAAAAAAAA888888888888666666888888555555555555666666666666666666666666777777888888888888AAAAAABBBBBBBBBBBBCCCCCCBBBBBBAAAAAACCCCCCEEEEEEBBBBBBAAAAAA999999999999888888888888888888AAAAAA999999999999888888888888888888999999888888666666444444444444555555555555666666666666666666555555666666555555444444444444555555555555666666666666777777888888888888888888999999999999888888777777888888888888999999AAAAAACCCCCCBBBBBBBBBBBBAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBAAAAAAAAAAAAAAAAAA999999888888888888888888888888888888888888777777555555555555555555555555444444333333333333333333333333444444444444444444444444444444333333333333444444444444444444333333333333444444555555555555555555555555 -777777777777777777777777777777777777777777777777777777777777777777888888AAAAAA999999777777777777666666666666666666777777777777777777222222333333777777555555555555777777888888AAAAAAAAAAAA999999999999999999999999999999888888666666111111444444888888999999888888666666999999AAAAAABBBBBBAAAAAAAAAAAA555555555555666666666666777777777777888888333333666666AAAAAADDDDDDEEEEEEBBBBBBAAAAAABBBBBBBBBBBBBBBBBBBBBBBBAAAAAA999999888888999999888888999999AAAAAABBBBBBCCCCCCBBBBBBBBBBBB555555444444666666444444555555777777666666555555666666555555666666666666777777888888AAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCDDDDDDBBBBBBAAAAAAAAAAAAAAAAAA999999999999999999AAAAAAAAAAAA999999999999999999999999888888777777555555444444444444555555444444444444555555555555555555444444555555555555666666666666777777666666777777888888888888999999AAAAAAAAAAAAAAAAAA999999999999888888888888999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAA999999888888888888888888888888888888777777666666777777666666444444444444444444444444333333444444444444444444333333333333333333333333333333333333333333444444444444444444444444666666666666555555444444 -777777777777777777777777777777777777777777777777777777777777888888999999999999888888888888888888777777777777777777777777777777666666222222333333555555555555777777777777888888777777888888AAAAAAAAAAAABBBBBBAAAAAA999999888888888888444444444444888888888888777777666666AAAAAAAAAAAABBBBBBCCCCCCBBBBBB999999888888777777AAAAAADDDDDD999999888888CCCCCCFFFFFFEEEEEEDDDDDDEEEEEEDDDDDDAAAAAACCCCCCCCCCCCBBBBBBBBBBBBAAAAAAAAAAAAAAAAAA999999999999999999AAAAAABBBBBBBBBBBBBBBBBBAAAAAA999999999999777777777777666666777777777777666666555555666666666666666666666666777777999999999999AAAAAAAAAAAABBBBBBAAAAAABBBBBBBBBBBBCCCCCCCCCCCCBBBBBBBBBBBBAAAAAA999999999999999999999999999999999999999999BBBBBBAAAAAA999999999999999999888888888888777777666666666666555555555555444444444444444444444444444444555555555555666666777777888888888888999999999999999999999999AAAAAABBBBBBAAAAAA999999AAAAAABBBBBBCCCCCCBBBBBBAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAA999999999999999999999999999999999999999999999999777777666666555555555555555555444444333333333333333333333333333333333333333333333333333333333333333333444444333333444444444444555555666666666666 -777777777777777777777777777777777777777777777777777777777777888888888888777777777777888888888888888888888888888888888888888888777777222222222222666666888888777777666666666666777777888888AAAAAABBBBBBBBBBBBAAAAAA999999999999AAAAAA555555555555999999888888666666555555AAAAAABBBBBBCCCCCCDDDDDDBBBBBBDDDDDD888888777777BBBBBBDDDDDDCCCCCCAAAAAACCCCCCEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEAAAAAAAAAAAABBBBBBBBBBBBAAAAAABBBBBBBBBBBBBBBBBBAAAAAA999999999999AAAAAABBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAA888888888888666666666666777777777777666666666666777777777777666666666666777777888888999999999999AAAAAAAAAAAAAAAAAABBBBBBCCCCCCDDDDDDCCCCCCBBBBBBBBBBBBAAAAAAAAAAAA999999AAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBAAAAAA999999888888888888777777777777777777777777777777666666666666555555555555444444333333444444555555777777888888888888999999999999999999AAAAAAAAAAAAAAAAAAAAAAAA999999AAAAAACCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAA999999999999999999888888888888888888999999999999999999999999888888999999777777777777666666333333333333333333333333333333333333333333333333333333333333333333333333333333444444444444444444444444555555666666 -777777777777777777777777777777777777777777777777888888888888888888777777777777777777777777777777777777888888888888999999999999777777666666333333444444777777777777666666999999888888888888AAAAAABBBBBBAAAAAA999999999999999999999999666666555555777777888888888888777777888888BBBBBBDDDDDDCCCCCC666666999999AAAAAADDDDDDCCCCCCDDDDDDEEEEEECCCCCCCCCCCCCCCCCCDDDDDDEEEEEEDDDDDDDDDDDDBBBBBBAAAAAAAAAAAAAAAAAAAAAAAABBBBBBDDDDDDCCCCCCBBBBBBAAAAAA999999999999AAAAAABBBBBBAAAAAAAAAAAA999999999999999999888888666666777777777777777777666666666666666666666666666666666666666666777777888888888888999999999999999999AAAAAACCCCCCDDDDDDDDDDDDCCCCCCBBBBBBAAAAAABBBBBBAAAAAAAAAAAAAAAAAABBBBBBBBBBBBCCCCCCBBBBBBAAAAAABBBBBBBBBBBBAAAAAA999999888888888888888888888888999999999999888888888888888888777777666666555555666666777777888888888888888888888888888888999999AAAAAAAAAAAABBBBBB999999999999AAAAAABBBBBBCCCCCCCCCCCCCCCCCCBBBBBBAAAAAABBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAA999999999999999999888888888888888888888888888888888888888888888888777777777777777777666666444444444444444444444444444444333333333333333333333333333333333333444444444444444444444444444444555555666666 -777777777777666666777777777777777777777777777777888888888888888888777777888888777777777777777777777777777777888888888888888888555555777777555555777777888888999999444444999999666666888888BBBBBBAAAAAAAAAAAAAAAAAA999999888888999999999999777777666666666666888888999999777777999999DDDDDDDDDDDDAAAAAA999999EEEEEEDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEDDDDDDCCCCCCBBBBBBCCCCCCEEEEEECCCCCCEEEEEECCCCCC999999999999999999BBBBBBDDDDDDEEEEEECCCCCCAAAAAA999999999999999999999999AAAAAA999999888888888888666666222222666666888888777777777777555555555555555555666666777777777777777777777777777777888888888888888888999999999999AAAAAABBBBBBCCCCCCCCCCCCBBBBBBAAAAAABBBBBBAAAAAAAAAAAAAAAAAAAAAAAABBBBBBCCCCCCBBBBBBAAAAAABBBBBBCCCCCCBBBBBBAAAAAAAAAAAA999999999999999999999999AAAAAAAAAAAA999999999999999999999999999999AAAAAA999999888888888888888888777777777777888888999999999999AAAAAAAAAAAA999999999999999999AAAAAACCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAA999999999999999999AAAAAABBBBBBAAAAAAAAAAAAAAAAAABBBBBBAAAAAAAAAAAAAAAAAA999999888888777777888888888888888888777777777777777777777777888888888888555555555555777777777777555555444444333333333333333333333333333333333333444444444444444444444444555555666666 -777777777777777777777777777777777777888888888888888888888888777777666666777777777777777777777777777777888888999999999999777777444444666666666666888888AAAAAA888888777777555555999999777777888888AAAAAA999999BBBBBB888888999999999999999999888888777777555555777777888888CCCCCCAAAAAABBBBBBDDDDDDDDDDDD999999BBBBBBBBBBBBDDDDDDDDDDDDDDDDDDEEEEEEEEEEEECCCCCCBBBBBBBBBBBBBBBBBBCCCCCCBBBBBBCCCCCCCCCCCCBBBBBBAAAAAAAAAAAABBBBBBDDDDDDDDDDDDAAAAAA999999999999888888999999AAAAAAAAAAAA666666444444444444444444555555888888777777666666555555444444444444555555666666777777777777777777666666777777888888888888999999AAAAAAAAAAAAAAAAAACCCCCCCCCCCCAAAAAAAAAAAAAAAAAA999999999999999999888888999999AAAAAABBBBBBBBBBBBBBBBBBCCCCCCBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBB999999999999999999999999AAAAAAAAAAAAAAAAAAAAAAAA999999999999888888888888777777888888999999999999AAAAAAAAAAAAAAAAAAAAAAAA999999AAAAAAAAAAAABBBBBBBBBBBBCCCCCCBBBBBBBBBBBBBBBBBBAAAAAA999999999999999999AAAAAAAAAAAA999999999999AAAAAABBBBBBAAAAAAAAAAAA999999999999888888888888888888888888777777777777666666666666777777888888888888888888888888888888666666555555444444444444333333333333333333333333333333444444444444444444444444555555555555 -777777777777777777777777777777888888888888888888888888888888777777666666888888888888888888777777888888999999AAAAAA999999999999666666333333666666666666555555555555777777888888BBBBBB999999777777CCCCCCBBBBBB666666666666888888999999888888888888999999777777555555777777999999CCCCCC777777EEEEEEDDDDDDCCCCCC444444666666AAAAAAEEEEEEDDDDDDDDDDDDDDDDDD888888BBBBBB555555888888CCCCCCBBBBBBBBBBBBCCCCCCDDDDDDDDDDDDAAAAAA999999CCCCCCCCCCCC999999999999999999999999999999999999888888888888777777666666444444555555888888888888777777666666444444333333333333555555666666777777777777666666777777777777888888999999AAAAAAAAAAAA999999AAAAAABBBBBBAAAAAA999999999999999999999999888888888888888888999999999999AAAAAAAAAAAABBBBBBAAAAAA999999999999999999AAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAABBBBBBCCCCCCBBBBBBAAAAAAAAAAAA999999999999888888999999AAAAAA999999888888999999BBBBBBCCCCCCBBBBBBAAAAAA999999999999AAAAAABBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAA999999999999AAAAAA999999999999999999999999AAAAAA999999AAAAAA999999888888888888999999888888888888777777777777666666666666777777888888888888888888999999999999666666444444444444444444444444333333333333333333444444444444333333333333333333444444444444 -777777777777777777777777777777888888888888888888888888777777666666777777777777888888888888888888888888888888999999AAAAAA999999666666444444555555666666555555888888AAAAAACCCCCC999999999999999999999999999999666666444444777777777777777777777777888888AAAAAAAAAAAA888888888888AAAAAAAAAAAADDDDDDDDDDDDDDDDDD888888999999AAAAAAAAAAAADDDDDDDDDDDD888888777777999999666666999999AAAAAACCCCCCBBBBBBBBBBBBBBBBBBDDDDDDDDDDDDAAAAAABBBBBBBBBBBB999999888888999999AAAAAAAAAAAAAAAAAA999999777777777777444444444444999999999999888888888888666666444444444444444444555555666666666666666666777777777777777777777777999999AAAAAA999999999999AAAAAABBBBBBAAAAAA999999888888999999999999999999888888888888999999888888999999AAAAAAAAAAAA999999888888888888999999999999AAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAACCCCCCBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAA999999AAAAAAAAAAAA999999999999AAAAAABBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999888888888888888888999999999999888888888888888888888888888888888888888888777777777777666666666666777777888888777777777777888888777777777777666666555555444444444444444444444444444444555555555555555555444444444444444444444444 -777777777777777777777777888888888888888888888888777777666666666666777777777777777777777777888888888888999999999999AAAAAA999999888888777777777777777777999999BBBBBBBBBBBBBBBBBB888888888888CCCCCC888888555555444444444444777777777777666666666666888888AAAAAACCCCCCBBBBBB888888777777888888CCCCCCCCCCCCCCCCCCDDDDDDAAAAAACCCCCC777777999999CCCCCCAAAAAA999999777777888888999999999999AAAAAAAAAAAA999999999999BBBBBBCCCCCCBBBBBBBBBBBBCCCCCC999999777777888888888888999999AAAAAAAAAAAA999999999999555555888888999999888888666666666666666666555555555555666666666666666666777777777777777777777777888888888888999999AAAAAAAAAAAA999999AAAAAABBBBBBAAAAAA999999888888888888999999888888888888888888999999888888888888999999888888888888888888888888888888888888888888999999AAAAAABBBBBBBBBBBBCCCCCCCCCCCCBBBBBBAAAAAAAAAAAACCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAA999999AAAAAA999999999999AAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999888888888888888888888888888888888888888888888888888888888888888888888888888888777777666666666666777777888888666666666666666666666666777777777777555555444444444444444444444444444444555555666666666666444444444444444444444444 -777777777777777777777777888888888888777777777777666666777777777777777777777777777777888888888888999999999999AAAAAA999999888888888888888888888888999999999999AAAAAAAAAAAA999999BBBBBB999999777777999999999999666666777777777777666666666666777777999999BBBBBBBBBBBBCCCCCCCCCCCCAAAAAA888888BBBBBBBBBBBBDDDDDDEEEEEECCCCCC777777AAAAAA888888888888AAAAAAAAAAAA777777AAAAAABBBBBBAAAAAA888888888888999999888888999999AAAAAAAAAAAA999999BBBBBBAAAAAA888888888888888888999999AAAAAA999999999999888888333333777777888888777777777777666666666666777777777777777777777777888888888888999999999999999999AAAAAAAAAAAAAAAAAABBBBBBAAAAAAAAAAAAAAAAAABBBBBBBBBBBBAAAAAA999999999999999999999999999999888888888888888888888888999999888888888888888888888888777777888888888888888888999999AAAAAAAAAAAABBBBBBBBBBBBCCCCCCBBBBBBAAAAAACCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBAAAAAAAAAAAA999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAABBBBBBBBBBBBAAAAAAAAAAAA999999999999888888888888888888888888888888888888888888888888888888777777777777666666666666555555666666777777777777666666555555555555555555888888888888777777666666555555444444444444444444555555666666555555444444444444444444444444 -777777777777888888888888888888888888777777777777666666666666777777777777777777888888888888999999AAAAAA999999888888999999777777777777777777888888999999999999AAAAAAAAAAAAAAAAAABBBBBBAAAAAA888888777777999999AAAAAA777777555555666666999999666666777777999999CCCCCCCCCCCCCCCCCCBBBBBB777777BBBBBBDDDDDDEEEEEEDDDDDDDDDDDDCCCCCC999999CCCCCC888888999999BBBBBBCCCCCC444444666666DDDDDDBBBBBB999999888888888888888888888888777777777777888888999999999999999999AAAAAAAAAAAA666666666666666666666666777777888888888888888888777777888888888888888888888888888888999999999999999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBAAAAAAAAAAAA999999AAAAAAAAAAAAAAAAAA999999999999999999AAAAAA999999888888888888888888777777666666777777888888777777888888888888AAAAAAAAAAAAAAAAAABBBBBBBBBBBBAAAAAABBBBBBBBBBBBCCCCCCBBBBBBBBBBBBBBBBBBAAAAAAAAAAAA999999999999AAAAAABBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAA999999999999888888888888888888888888888888777777777777777777777777777777777777777777666666666666555555555555555555777777666666555555555555666666666666777777AAAAAA999999666666666666555555555555555555555555666666888888666666555555 -777777777777777777888888888888888888888888777777777777666666666666777777777777777777888888AAAAAAAAAAAA999999999999999999888888888888777777888888888888888888999999888888AAAAAACCCCCCBBBBBBAAAAAA666666777777888888888888999999AAAAAABBBBBBCCCCCCCCCCCC999999AAAAAACCCCCC666666999999999999999999DDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCAAAAAA444444777777CCCCCC999999666666CCCCCCDDDDDDEEEEEEBBBBBB888888888888888888888888888888777777888888999999999999999999888888888888555555888888666666333333999999888888999999999999999999888888888888888888999999999999999999999999999999999999999999AAAAAAAAAAAABBBBBBAAAAAAAAAAAABBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBB999999888888888888888888777777777777777777888888888888888888999999AAAAAAAAAAAA999999AAAAAABBBBBBAAAAAAAAAAAABBBBBBBBBBBBBBBBBBAAAAAABBBBBBAAAAAAAAAAAA999999999999AAAAAABBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAABBBBBBBBBBBBAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAA999999999999888888888888999999999999777777666666666666666666666666666666666666666666666666666666555555555555555555777777666666555555555555444444444444666666AAAAAA999999555555666666666666555555555555666666666666555555555555666666 -777777777777888888888888888888888888777777777777777777888888777777555555666666555555888888AAAAAA999999999999999999AAAAAA888888888888777777777777888888999999777777555555444444666666BBBBBBBBBBBBAAAAAA888888999999777777777777888888777777777777777777BBBBBB666666444444666666777777CCCCCCBBBBBBAAAAAADDDDDDDDDDDDDDDDDDCCCCCCAAAAAA999999999999AAAAAABBBBBB777777777777888888777777CCCCCCDDDDDDAAAAAA999999777777888888888888888888888888999999999999888888777777666666666666888888444444666666888888999999999999999999999999999999999999888888999999999999999999999999999999999999AAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAABBBBBBAAAAAA999999999999AAAAAAAAAAAAAAAAAAAAAAAABBBBBBAAAAAA999999888888888888888888888888888888888888999999999999999999999999AAAAAAAAAAAA999999999999AAAAAAAAAAAAAAAAAABBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999888888999999AAAAAABBBBBBBBBBBBBBBBBBBBBBBBAAAAAABBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBAAAAAABBBBBBAAAAAA999999999999888888888888888888888888777777777777666666666666555555444444444444444444444444444444444444444444555555666666555555555555555555555555444444333333444444555555666666777777777777666666555555555555444444555555777777777777 -777777777777888888888888888888777777777777777777888888999999888888666666555555666666888888999999999999999999AAAAAAAAAAAA888888888888777777777777888888888888AAAAAAAAAAAA888888555555555555777777999999999999999999999999777777888888BBBBBBBBBBBB888888AAAAAAAAAAAA888888AAAAAA999999BBBBBBBBBBBBAAAAAADDDDDDCCCCCCCCCCCCAAAAAAAAAAAA999999999999555555888888666666888888888888888888999999DDDDDDCCCCCC999999888888888888777777888888888888999999999999777777555555555555777777777777333333777777888888999999999999999999999999999999999999999999999999999999999999AAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBAAAAAA999999999999999999AAAAAAAAAAAAAAAAAABBBBBBAAAAAA999999888888888888888888888888888888888888999999888888888888888888888888888888999999999999999999999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999888888999999AAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAABBBBBBAAAAAAAAAAAABBBBBBAAAAAAAAAAAA999999888888888888888888888888777777777777666666666666666666555555555555444444444444333333444444444444555555555555555555666666777777555555333333333333444444555555777777777777666666555555555555555555555555666666888888888888 -888888888888888888888888777777777777888888888888999999999999888888555555555555777777888888888888999999AAAAAAAAAAAA999999888888888888777777888888888888999999AAAAAAAAAAAAAAAAAA999999888888444444555555AAAAAAAAAAAABBBBBBCCCCCCBBBBBBBBBBBBBBBBBBDDDDDDAAAAAAAAAAAACCCCCCBBBBBBCCCCCCAAAAAA666666BBBBBBBBBBBBBBBBBB999999888888888888999999999999444444444444999999BBBBBB777777777777777777DDDDDDEEEEEEAAAAAA999999999999888888888888888888999999888888444444666666777777888888444444666666888888888888999999999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCBBBBBBBBBBBBCCCCCCCCCCCCBBBBBBBBBBBBAAAAAA999999999999999999999999AAAAAAAAAAAAAAAAAA999999888888888888888888888888777777777777777777777777777777777777666666666666666666777777888888888888888888AAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999999999999999999999AAAAAAAAAAAABBBBBBBBBBBBBBBBBBCCCCCCBBBBBBBBBBBBAAAAAAAAAAAABBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999888888777777777777777777666666777777666666666666555555444444444444444444444444555555555555555555666666666666444444333333333333444444555555666666777777555555555555555555555555666666666666666666666666 -888888888888888888888888777777777777888888888888999999888888777777666666777777777777777777888888AAAAAAAAAAAAAAAAAA999999999999888888777777888888999999999999999999999999999999999999999999999999555555777777BBBBBBCCCCCCDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCC555555888888CCCCCCCCCCCCCCCCCC999999888888BBBBBB999999888888888888888888888888777777666666777777999999AAAAAA999999888888CCCCCCDDDDDDDDDDDDCCCCCC999999888888888888888888888888888888888888444444777777888888555555444444888888999999999999999999AAAAAAAAAAAABBBBBBAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAA999999999999999999999999AAAAAAAAAAAAAAAAAA999999888888888888888888777777777777777777777777777777777777666666666666666666555555666666777777888888888888999999999999AAAAAAAAAAAA999999999999AAAAAAAAAAAA999999999999999999999999999999AAAAAABBBBBBBBBBBBBBBBBBBBBBBBCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999999999888888777777777777666666666666666666666666555555555555444444444444444444444444555555555555555555444444333333333333333333333333444444444444555555444444555555555555666666777777666666555555555555 -777777777777777777666666777777888888888888888888777777777777777777666666777777777777777777888888999999AAAAAAAAAAAA999999888888777777888888999999AAAAAA999999999999999999999999999999999999AAAAAA666666555555999999DDDDDDCCCCCCDDDDDDEEEEEEEEEEEEDDDDDDAAAAAA888888777777888888AAAAAABBBBBBBBBBBBAAAAAAAAAAAAAAAAAA999999888888777777666666333333111111555555999999666666888888AAAAAAAAAAAACCCCCCEEEEEEDDDDDD999999888888777777888888888888888888555555666666888888666666444444999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBCCCCCCCCCCCCBBBBBBAAAAAAAAAAAA999999999999999999999999999999999999999999888888888888888888888888777777777777888888777777777777666666666666666666555555666666666666777777888888888888888888999999AAAAAA999999999999999999AAAAAA999999999999999999999999999999999999BBBBBBBBBBBBAAAAAAAAAAAABBBBBBCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAA999999999999999999888888999999888888888888777777666666666666555555666666666666555555555555444444444444555555555555555555444444333333333333444444333333333333333333333333333333444444444444444444666666666666666666555555555555 -888888888888777777666666777777888888888888888888888888777777888888777777777777777777888888999999AAAAAABBBBBB999999888888777777777777888888999999999999999999999999888888999999999999999999AAAAAA888888666666888888AAAAAADDDDDDDDDDDDDDDDDDDDDDDDDDDDDDBBBBBB999999AAAAAA666666666666666666999999999999AAAAAA999999777777777777777777888888777777333333666666888888333333777777999999666666777777888888999999AAAAAA888888777777888888888888666666777777888888777777333333777777AAAAAAAAAAAABBBBBBBBBBBBAAAAAAAAAAAABBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDEEEEEEDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBAAAAAAAAAAAAAAAAAA999999999999888888888888888888888888999999999999888888888888888888888888888888777777666666666666666666666666555555666666888888888888888888888888999999999999999999999999999999999999999999999999999999999999999999999999BBBBBBBBBBBBBBBBBBAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAA999999999999999999888888888888888888888888888888777777555555555555555555666666666666666666555555444444555555555555555555444444444444444444444444444444333333333333333333444444444444444444444444555555666666555555444444444444 -888888888888777777777777888888888888888888888888888888777777777777888888888888888888888888AAAAAAAAAAAAAAAAAA999999888888777777777777888888888888888888888888888888888888999999AAAAAAAAAAAABBBBBBBBBBBBBBBBBB999999888888CCCCCCDDDDDDDDDDDDCCCCCCBBBBBBAAAAAABBBBBBCCCCCCBBBBBBBBBBBB999999888888666666555555777777777777888888AAAAAABBBBBBCCCCCCBBBBBBAAAAAA999999777777888888888888AAAAAA666666555555888888999999888888888888777777777777666666999999AAAAAA444444444444BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAABBBBBBCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCBBBBBBAAAAAAAAAAAA999999999999888888888888888888888888888888888888999999999999999999999999999999999999888888777777666666666666555555555555666666888888888888888888888888888888999999999999888888888888888888888888999999999999999999999999999999AAAAAABBBBBBBBBBBBAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAABBBBBBBBBBBBAAAAAAAAAAAA999999999999888888888888777777777777777777888888777777666666555555555555555555555555555555555555555555555555444444444444444444444444444444444444333333333333333333333333444444444444444444444444555555555555444444444444 -888888777777777777777777777777888888777777777777888888777777777777777777888888888888999999AAAAAAAAAAAAAAAAAA888888777777777777888888999999888888888888888888888888888888AAAAAAAAAAAABBBBBBBBBBBBBBBBBBDDDDDDAAAAAA888888999999EEEEEECCCCCCCCCCCCBBBBBBAAAAAABBBBBBCCCCCCCCCCCCBBBBBBAAAAAAAAAAAA999999777777666666AAAAAABBBBBBCCCCCCBBBBBBBBBBBBCCCCCCCCCCCCBBBBBBAAAAAAAAAAAAAAAAAA999999666666555555BBBBBBAAAAAA999999888888777777888888777777999999888888666666888888CCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBCCCCCCDDDDDDEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCBBBBBBAAAAAA999999888888888888888888999999999999999999999999AAAAAABBBBBBBBBBBBAAAAAAAAAAAAAAAAAA999999888888888888777777777777555555555555666666777777888888999999999999999999888888888888888888888888888888888888999999999999999999999999AAAAAABBBBBBAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAABBBBBBBBBBBBAAAAAA999999999999888888888888777777777777888888888888888888888888666666555555555555555555444444444444444444444444444444444444444444444444444444444444444444444444333333333333444444333333333333444444444444444444444444555555 -888888888888888888888888888888888888888888888888777777666666555555555555777777888888999999AAAAAAAAAAAA999999888888888888888888888888AAAAAA888888888888888888888888999999AAAAAAAAAAAAAAAAAAAAAAAACCCCCCDDDDDDDDDDDD999999AAAAAABBBBBBDDDDDDCCCCCCBBBBBB999999AAAAAABBBBBBCCCCCCBBBBBBAAAAAA999999666666999999999999DDDDDDDDDDDDCCCCCCCCCCCCBBBBBBBBBBBBCCCCCCCCCCCCBBBBBBBBBBBBAAAAAA999999AAAAAA777777666666BBBBBBAAAAAA999999999999777777777777999999777777AAAAAACCCCCCCCCCCCDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCBBBBBBBBBBBBAAAAAA999999999999999999999999AAAAAAAAAAAABBBBBBCCCCCCDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCBBBBBB999999999999999999888888777777666666666666666666777777888888888888888888888888777777777777888888888888777777888888999999999999999999AAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAA999999888888888888888888888888888888777777888888888888777777666666666666666666666666555555555555444444444444444444444444444444444444444444444444444444444444555555555555444444444444444444444444444444444444555555 -888888888888888888888888999999999999999999999999777777666666666666666666666666888888999999AAAAAAAAAAAA999999888888888888888888888888999999777777777777888888999999999999AAAAAAAAAAAAAAAAAAAAAAAADDDDDDEEEEEEDDDDDD999999888888999999999999CCCCCCCCCCCCAAAAAABBBBBBBBBBBBAAAAAAAAAAAAAAAAAA999999666666666666777777CCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAABBBBBBAAAAAA999999777777444444777777AAAAAAAAAAAAAAAAAA888888666666BBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDCCCCCCCCCCCCBBBBBBAAAAAAAAAAAAAAAAAA999999AAAAAABBBBBBCCCCCCCCCCCCDDDDDDEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDCCCCCCBBBBBBBBBBBBAAAAAA999999888888777777666666666666777777888888888888888888888888888888888888888888888888888888888888888888888888888888999999AAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCBBBBBBAAAAAAAAAAAAAAAAAA999999888888777777777777888888777777777777888888777777555555555555555555666666555555666666555555555555444444444444555555555555444444444444444444444444444444555555555555444444444444444444444444444444555555 -777777777777888888888888999999AAAAAA999999999999888888777777555555555555666666777777999999999999999999999999888888888888888888777777777777777777777777888888999999999999AAAAAAAAAAAABBBBBBCCCCCCEEEEEEEEEEEEDDDDDDCCCCCCAAAAAA777777666666888888666666999999AAAAAABBBBBBBBBBBBBBBBBBCCCCCCCCCCCC777777AAAAAAAAAAAAAAAAAABBBBBBBBBBBBAAAAAABBBBBBBBBBBBAAAAAAAAAAAA999999999999777777666666888888888888AAAAAA999999AAAAAABBBBBB888888AAAAAABBBBBBCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAABBBBBBCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCBBBBBB999999888888777777666666777777888888888888888888888888888888888888888888888888888888888888888888888888888888888888AAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCBBBBBBCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBAAAAAAAAAAAA999999888888888888777777777777666666666666666666666666555555555555555555555555555555555555555555666666555555555555555555666666666666666666555555444444444444555555555555555555444444444444444444444444444444 -777777777777888888888888999999AAAAAABBBBBBAAAAAA999999888888555555444444666666666666888888999999888888888888888888888888888888888888777777777777888888888888AAAAAAAAAAAA999999999999BBBBBBDDDDDDEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDCCCCCC888888777777999999888888AAAAAAAAAAAABBBBBBBBBBBBAAAAAABBBBBB777777BBBBBBCCCCCCAAAAAAAAAAAAAAAAAAAAAAAABBBBBBCCCCCCBBBBBBAAAAAA999999999999777777888888AAAAAAAAAAAAAAAAAAAAAAAABBBBBB999999999999DDDDDDCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCAAAAAA999999999999888888888888888888999999888888888888777777777777888888888888888888888888888888888888888888999999AAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBCCCCCCBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBAAAAAAAAAAAA999999999999888888888888777777666666555555555555555555555555555555555555444444444444444444444444555555555555555555555555555555555555666666555555555555555555555555555555555555555555555555555555444444333333 -777777777777888888888888888888AAAAAABBBBBBBBBBBB999999999999777777444444555555666666888888999999999999888888888888777777777777777777888888888888999999999999BBBBBBBBBBBB999999AAAAAACCCCCCDDDDDDEEEEEEDDDDDDDDDDDDCCCCCCCCCCCCDDDDDDDDDDDDBBBBBB666666777777666666999999888888AAAAAA999999BBBBBB666666999999CCCCCCCCCCCCBBBBBBAAAAAABBBBBBCCCCCCCCCCCCBBBBBBBBBBBBAAAAAA999999666666999999AAAAAABBBBBBBBBBBBCCCCCCBBBBBB888888DDDDDDDDDDDDDDDDDDCCCCCCCCCCCCDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEEEEEEEDDDDDDDDDDDDCCCCCCBBBBBBAAAAAA999999999999999999999999999999999999888888777777888888888888888888999999999999888888888888999999999999AAAAAAAAAAAABBBBBBCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBAAAAAA999999999999888888777777888888888888666666555555444444444444555555555555444444444444555555444444444444444444444444555555555555555555555555555555555555666666666666666666555555666666666666666666555555444444 -777777777777888888888888888888888888AAAAAACCCCCCAAAAAA999999888888444444444444666666888888888888888888888888777777777777777777777777888888888888AAAAAABBBBBBBBBBBB999999999999AAAAAACCCCCCCCCCCCCCCCCCCCCCCCBBBBBBAAAAAABBBBBBBBBBBBBBBBBBBBBBBBAAAAAA777777555555777777666666888888999999999999888888CCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCBBBBBB888888666666888888BBBBBBBBBBBBBBBBBBCCCCCCCCCCCC999999CCCCCCEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999888888777777888888777777888888888888888888888888888888999999999999888888999999AAAAAABBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAA999999999999999999999999888888666666555555444444444444444444333333333333444444444444333333444444444444444444555555555555666666555555555555555555444444555555555555555555444444333333333333444444 -777777888888888888888888888888888888AAAAAABBBBBBBBBBBBBBBBBB999999555555555555555555777777888888888888888888777777888888777777888888AAAAAABBBBBBBBBBBBBBBBBBBBBBBBAAAAAABBBBBBCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCBBBBBBAAAAAA999999999999AAAAAAAAAAAAAAAAAA777777666666777777888888BBBBBBAAAAAAEEEEEEEEEEEEDDDDDDCCCCCCBBBBBBBBBBBBBBBBBBAAAAAABBBBBBCCCCCCBBBBBB444444CCCCCCBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCBBBBBB888888EEEEEEDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBAAAAAAAAAAAAAAAAAABBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDBBBBBBAAAAAABBBBBBBBBBBBAAAAAA888888888888888888888888777777777777888888888888999999999999888888888888888888999999AAAAAAAAAAAAAAAAAABBBBBBCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBAAAAAA999999999999888888777777666666555555444444333333333333444444333333444444444444555555555555555555555555666666555555555555555555444444444444444444444444444444444444333333333333 -777777777777888888888888888888999999AAAAAABBBBBBBBBBBBAAAAAA888888666666444444555555777777888888999999888888888888888888888888999999BBBBBBCCCCCCCCCCCCBBBBBBAAAAAAAAAAAABBBBBBCCCCCCCCCCCCCCCCCCEEEEEEEEEEEECCCCCCCCCCCCBBBBBB999999999999999999999999AAAAAAAAAAAABBBBBBDDDDDDDDDDDDAAAAAAAAAAAA999999BBBBBBEEEEEEDDDDDDCCCCCCCCCCCCBBBBBBAAAAAAAAAAAAAAAAAA888888555555CCCCCCCCCCCCCCCCCCAAAAAA999999DDDDDDAAAAAA999999EEEEEEDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBCCCCCCCCCCCCDDDDDDDDDDDDCCCCCCDDDDDDDDDDDDDDDDDDCCCCCCDDDDDDDDDDDDDDDDDDCCCCCCBBBBBBBBBBBBBBBBBBAAAAAA999999999999888888777777666666777777888888888888888888888888888888888888999999999999AAAAAAAAAAAAAAAAAABBBBBBBBBBBBCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBB999999999999888888777777777777777777666666555555444444333333333333333333333333444444444444444444555555555555555555555555444444444444444444444444444444444444444444555555444444444444 -777777888888888888888888999999BBBBBBBBBBBBBBBBBBBBBBBB999999999999666666444444444444666666888888888888888888888888888888999999AAAAAABBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAABBBBBBBBBBBBDDDDDDCCCCCCBBBBBBBBBBBB999999BBBBBBAAAAAA888888999999AAAAAABBBBBBCCCCCCCCCCCCCCCCCCBBBBBB444444777777888888999999DDDDDDDDDDDDDDDDDDCCCCCCBBBBBBBBBBBB999999999999777777BBBBBBCCCCCCCCCCCCDDDDDD999999666666BBBBBB888888CCCCCCEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFEEEEEEEEEEEEFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCBBBBBBBBBBBBAAAAAAAAAAAA999999999999999999AAAAAABBBBBBBBBBBBBBBBBBCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCBBBBBBAAAAAAAAAAAA999999888888777777666666777777888888888888888888888888888888888888999999999999AAAAAAAAAAAAAAAAAABBBBBBBBBBBBCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAA999999999999AAAAAABBBBBBBBBBBB999999999999888888777777666666666666777777666666555555444444333333222222333333333333333333444444444444555555555555444444555555555555444444444444555555555555444444444444444444444444 -888888888888888888888888999999CCCCCCBBBBBBCCCCCCBBBBBBAAAAAAAAAAAA666666555555555555666666777777888888888888999999888888888888BBBBBBBBBBBBAAAAAA999999AAAAAAAAAAAA999999AAAAAABBBBBBCCCCCCDDDDDDCCCCCCCCCCCCCCCCCC555555777777999999999999999999AAAAAACCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDBBBBBBAAAAAA777777BBBBBBDDDDDDDDDDDDCCCCCCBBBBBBBBBBBBAAAAAA999999444444999999CCCCCCCCCCCC777777777777AAAAAAAAAAAADDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999AAAAAAAAAAAAAAAAAABBBBBBCCCCCCBBBBBBCCCCCCDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDCCCCCCCCCCCCBBBBBBAAAAAA999999999999888888888888888888777777777777888888888888888888888888999999999999999999AAAAAAAAAAAABBBBBBCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAA999999999999999999999999AAAAAAAAAAAA999999888888777777777777666666666666666666666666666666666666666666555555444444444444444444333333444444444444444444444444555555555555555555555555555555555555555555555555555555444444 -777777777777888888888888888888AAAAAAAAAAAACCCCCCBBBBBBBBBBBBAAAAAA888888666666555555555555777777777777888888888888999999AAAAAABBBBBBBBBBBB999999888888999999999999999999AAAAAACCCCCCDDDDDDCCCCCCDDDDDDDDDDDDCCCCCCAAAAAA666666888888EEEEEECCCCCCBBBBBBCCCCCCDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDAAAAAAAAAAAACCCCCCDDDDDDDDDDDDBBBBBBAAAAAABBBBBB999999777777BBBBBBCCCCCCAAAAAAAAAAAACCCCCCBBBBBBDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCBBBBBBAAAAAAAAAAAAAAAAAABBBBBBBBBBBBAAAAAABBBBBBBBBBBBAAAAAABBBBBBCCCCCCBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDCCCCCCBBBBBBAAAAAAAAAAAA999999999999888888888888888888777777888888888888888888888888888888999999999999AAAAAAAAAAAABBBBBBCCCCCCCCCCCCBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAA999999999999888888999999999999999999999999888888777777777777777777666666555555555555555555555555666666666666666666666666555555444444444444333333333333444444444444444444444444555555444444555555555555555555444444444444 -777777777777888888888888888888888888999999CCCCCCBBBBBBBBBBBBAAAAAA888888777777555555777777888888888888888888888888999999BBBBBBBBBBBBAAAAAA888888999999999999999999999999AAAAAACCCCCCDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCAAAAAAAAAAAA777777BBBBBBDDDDDDFFFFFFEEEEEEEEEEEEEEEEEEEEEEEE999999AAAAAAEEEEEEDDDDDDBBBBBB999999BBBBBBCCCCCCCCCCCCBBBBBBAAAAAABBBBBB888888999999CCCCCCBBBBBB888888DDDDDDBBBBBB555555AAAAAAEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCBBBBBBAAAAAAAAAAAABBBBBBCCCCCCCCCCCCBBBBBBCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDCCCCCCCCCCCCBBBBBBCCCCCCDDDDDDCCCCCCCCCCCCCCCCCCBBBBBBAAAAAA999999999999999999888888888888888888888888888888888888888888888888999999999999AAAAAABBBBBBCCCCCCDDDDDDCCCCCCCCCCCCBBBBBBAAAAAA999999999999999999999999999999999999888888777777777777777777777777888888777777777777777777666666666666666666555555444444444444555555555555555555444444444444333333444444444444444444444444555555555555555555555555555555555555444444 -777777777777777777777777999999999999999999CCCCCCBBBBBBBBBBBBAAAAAA888888777777666666777777888888888888888888999999AAAAAAAAAAAA999999777777AAAAAABBBBBBAAAAAA999999AAAAAABBBBBBCCCCCCDDDDDDCCCCCCBBBBBBCCCCCCCCCCCCAAAAAAAAAAAABBBBBB888888AAAAAAEEEEEEFFFFFFEEEEEEEEEEEECCCCCC555555777777666666AAAAAADDDDDDAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB999999AAAAAACCCCCC999999AAAAAAEEEEEEDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCBBBBBBAAAAAAAAAAAABBBBBBCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDCCCCCCDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCBBBBBBBBBBBBCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCBBBBBB999999999999888888888888888888888888999999888888888888888888888888999999999999AAAAAABBBBBBCCCCCCDDDDDDCCCCCCBBBBBBBBBBBBAAAAAA999999999999999999999999999999888888777777666666666666777777777777777777777777666666666666666666666666666666555555555555555555555555555555444444444444333333333333444444444444444444555555555555666666666666666666555555444444 -777777777777777777777777888888999999AAAAAACCCCCCBBBBBBBBBBBBAAAAAA888888888888777777777777888888888888888888AAAAAABBBBBBAAAAAA888888999999888888999999999999999999999999CCCCCCDDDDDDEEEEEEDDDDDDDDDDDDDDDDDDCCCCCC999999AAAAAABBBBBBCCCCCC888888999999EEEEEEFFFFFFEEEEEEDDDDDDAAAAAACCCCCCAAAAAA777777999999999999CCCCCCAAAAAABBBBBBBBBBBBCCCCCCAAAAAA777777CCCCCCCCCCCC888888FFFFFFDDDDDDBBBBBBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCBBBBBBAAAAAAAAAAAABBBBBBCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCDDDDDDCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCBBBBBBAAAAAABBBBBBCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDCCCCCCBBBBBBAAAAAAAAAAAA999999888888777777888888888888888888888888888888999999999999AAAAAABBBBBBCCCCCCDDDDDDCCCCCCBBBBBBBBBBBBAAAAAA999999999999999999999999999999999999888888777777666666777777777777777777777777777777666666666666777777666666555555666666555555444444444444444444444444444444444444444444444444444444444444555555555555666666666666666666555555 -777777777777777777777777888888888888AAAAAACCCCCCBBBBBBBBBBBBAAAAAA888888999999888888888888888888777777888888BBBBBBBBBBBBAAAAAA888888666666555555666666666666555555666666AAAAAAAAAAAA777777BBBBBBDDDDDDCCCCCC888888999999BBBBBBBBBBBBDDDDDDBBBBBB999999999999BBBBBBFFFFFFEEEEEE777777999999DDDDDDCCCCCC999999999999BBBBBBBBBBBBBBBBBBCCCCCCDDDDDD666666777777EEEEEECCCCCC888888FFFFFFCCCCCCDDDDDDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDEEEEEEDDDDDDDDDDDDCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDCCCCCCDDDDDDCCCCCCCCCCCCDDDDDDCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDBBBBBBAAAAAAAAAAAAAAAAAABBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBAAAAAA999999999999999999AAAAAAAAAAAA999999999999999999AAAAAABBBBBBCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAA999999999999888888777777777777777777777777666666777777777777777777777777777777666666555555555555444444444444444444555555555555555555444444555555444444444444444444555555555555555555666666666666555555 -777777777777777777888888888888999999BBBBBBCCCCCCBBBBBBAAAAAA999999999999999999999999888888888888888888888888BBBBBBAAAAAA888888777777888888666666666666777777666666999999666666555555666666888888BBBBBB999999555555AAAAAAAAAAAABBBBBBDDDDDDDDDDDDAAAAAABBBBBB888888AAAAAABBBBBBAAAAAA888888CCCCCCCCCCCCCCCCCCBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCDDDDDD888888CCCCCCEEEEEEBBBBBBAAAAAAAAAAAAEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDCCCCCCBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCDDDDDDDDDDDDCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCBBBBBBAAAAAABBBBBBBBBBBBBBBBBBCCCCCCCCCCCCBBBBBBCCCCCCDDDDDDDDDDDDCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCBBBBBBAAAAAAAAAAAAAAAAAABBBBBBCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAA999999999999888888777777777777777777777777777777777777777777888888888888888888777777555555444444444444444444444444444444444444333333444444666666555555444444444444444444444444444444444444333333 -777777777777777777888888888888999999CCCCCCBBBBBBBBBBBBBBBBBB999999999999999999999999888888888888888888999999AAAAAAAAAAAA888888888888888888888888999999888888BBBBBBCCCCCCBBBBBBBBBBBBCCCCCC777777777777999999777777666666999999AAAAAAAAAAAACCCCCCDDDDDDCCCCCCAAAAAA666666999999AAAAAAAAAAAADDDDDDCCCCCCBBBBBBBBBBBBBBBBBBCCCCCCDDDDDDDDDDDDEEEEEE888888CCCCCCEEEEEE999999999999666666EEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDEEEEEEDDDDDDEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCDDDDDDCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCDDDDDDBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAA999999888888888888888888888888777777666666777777777777777777777777777777666666444444333333444444444444444444333333333333444444444444444444444444444444444444444444333333333333333333 -777777777777777777777777888888888888BBBBBBCCCCCCBBBBBBBBBBBB999999888888888888888888888888888888999999AAAAAABBBBBB999999888888999999888888888888888888999999BBBBBBCCCCCCCCCCCCCCCCCCFFFFFFBBBBBB999999BBBBBB999999777777666666777777555555888888CCCCCCCCCCCCCCCCCCCCCCCC999999999999888888BBBBBBCCCCCCBBBBBBBBBBBBCCCCCCCCCCCCDDDDDDEEEEEEFFFFFF999999777777FFFFFF666666AAAAAAAAAAAAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDCCCCCCBBBBBBBBBBBBCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAA999999888888888888888888888888777777777777777777666666666666666666666666444444333333333333333333444444444444444444555555444444444444555555555555444444444444444444444444333333 -777777777777777777888888888888888888BBBBBBCCCCCCBBBBBBBBBBBB999999888888888888777777777777888888AAAAAABBBBBBBBBBBB999999888888888888888888888888888888999999CCCCCCCCCCCCCCCCCCDDDDDDEEEEEEEEEEEEDDDDDDBBBBBBAAAAAA999999777777888888777777999999888888CCCCCCBBBBBBBBBBBBCCCCCCEEEEEE777777555555999999BBBBBBBBBBBBCCCCCCDDDDDDEEEEEEEEEEEEEEEEEEFFFFFFDDDDDDAAAAAA888888FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEDDDDDDEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEDDDDDDCCCCCCDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBCCCCCCDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCDDDDDDCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAA999999999999888888888888888888777777777777666666555555555555666666555555444444333333333333333333444444444444444444333333444444444444444444444444333333333333333333444444 -777777777777888888888888888888888888BBBBBBCCCCCCBBBBBBCCCCCC999999999999888888666666777777999999BBBBBBCCCCCCCCCCCC999999888888777777777777888888999999BBBBBBCCCCCCCCCCCCCCCCCCDDDDDDEEEEEEDDDDDDCCCCCCBBBBBBBBBBBBCCCCCCAAAAAA999999AAAAAA666666888888CCCCCCCCCCCCCCCCCCCCCCCCDDDDDDCCCCCCAAAAAA555555AAAAAACCCCCCCCCCCCDDDDDDEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFBBBBBB888888FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999888888777777777777777777777777777777666666555555444444444444444444333333333333333333333333333333333333444444444444444444444444333333333333 -777777777777777777777777888888999999BBBBBBCCCCCCBBBBBBBBBBBBBBBBBB999999888888777777777777AAAAAACCCCCCDDDDDDBBBBBB999999888888888888777777888888AAAAAACCCCCCCCCCCCCCCCCCDDDDDDEEEEEEDDDDDDCCCCCCBBBBBBAAAAAA999999AAAAAADDDDDDEEEEEECCCCCC888888DDDDDD888888BBBBBBDDDDDDDDDDDDCCCCCCDDDDDDAAAAAA444444777777CCCCCCEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAA999999999999999999999999999999999999999999999999888888888888888888888888777777666666555555555555555555444444444444444444444444333333333333333333333333444444444444444444444444 -666666666666777777777777888888999999AAAAAABBBBBBBBBBBBBBBBBBBBBBBB888888888888777777888888CCCCCCCCCCCCCCCCCCCCCCCC999999888888888888888888999999BBBBBBCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDBBBBBBAAAAAA999999999999AAAAAADDDDDDDDDDDDCCCCCC888888DDDDDDCCCCCC888888999999CCCCCCCCCCCCCCCCCCBBBBBBCCCCCC777777CCCCCCEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEDDDDDDDDDDDDDDDDDDCCCCCCDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBAAAAAAAAAAAA999999AAAAAAAAAAAABBBBBBCCCCCCBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAA999999999999999999888888999999999999888888999999999999888888888888888888888888777777666666666666666666555555444444444444444444444444333333333333333333333333333333333333333333333333 -555555666666777777888888888888888888AAAAAABBBBBBBBBBBBBBBBBBBBBBBB999999888888999999BBBBBBCCCCCCDDDDDDBBBBBBAAAAAA999999888888888888999999AAAAAACCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDCCCCCCAAAAAA999999888888AAAAAACCCCCCEEEEEEDDDDDDDDDDDDCCCCCC777777888888FFFFFFBBBBBB777777CCCCCCCCCCCCBBBBBB999999777777FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFEEEEEEEEEEEEFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAABBBBBBCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCBBBBBBAAAAAA999999999999999999888888888888999999999999999999999999999999888888888888888888888888777777777777666666555555555555555555555555555555555555444444444444444444333333222222333333333333 -666666777777777777888888888888888888AAAAAABBBBBBBBBBBBBBBBBBBBBBBB999999888888999999BBBBBBBBBBBBCCCCCCAAAAAA888888888888888888888888AAAAAAAAAAAABBBBBBCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDCCCCCCAAAAAA999999999999AAAAAABBBBBBFFFFFFFFFFFFEEEEEEDDDDDDDDDDDD999999BBBBBBCCCCCC999999777777888888777777888888999999FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBAAAAAAAAAAAABBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBAAAAAA999999999999999999888888888888888888999999999999999999999999999999999999999999888888888888888888666666666666666666666666777777777777777777777777444444333333444444333333444444444444 -666666666666777777777777888888888888999999BBBBBBBBBBBBAAAAAABBBBBB999999999999AAAAAAAAAAAAAAAAAACCCCCCAAAAAA999999999999888888999999AAAAAAAAAAAACCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBB999999999999999999999999AAAAAAEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDBBBBBBDDDDDDDDDDDDDDDDDDEEEEEE999999999999999999DDDDDDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFEEEEEEDDDDDDEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBCCCCCCCCCCCCBBBBBBCCCCCCBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBAAAAAA999999999999999999999999888888888888999999999999999999999999999999999999999999999999888888888888777777555555555555555555666666666666555555777777666666555555555555555555444444444444 -666666777777777777777777888888888888999999AAAAAABBBBBBBBBBBBBBBBBBAAAAAA999999999999999999AAAAAABBBBBBAAAAAA999999999999888888AAAAAAAAAAAABBBBBBCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBAAAAAA999999999999999999999999AAAAAAEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDEEEEEEBBBBBBCCCCCCDDDDDDDDDDDDCCCCCC777777FFFFFFDDDDDD999999999999999999999999999999AAAAAAEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFEEEEEEEEEEEEDDDDDDEEEEEEFFFFFFFFFFFFFFFFFFEEEEEEDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDCCCCCCDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDCCCCCCCCCCCCBBBBBBBBBBBBAAAAAA999999999999999999888888888888888888999999999999999999999999999999999999999999999999888888777777666666666666666666666666666666888888888888777777777777888888777777555555444444 -777777777777777777888888888888888888999999999999AAAAAABBBBBBBBBBBBAAAAAA999999888888888888AAAAAAAAAAAAAAAAAA999999777777888888AAAAAAAAAAAABBBBBBCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBAAAAAA999999999999999999AAAAAABBBBBBDDDDDDDDDDDDEEEEEEFFFFFFEEEEEEEEEEEEAAAAAA666666AAAAAABBBBBBBBBBBB999999777777FFFFFFFFFFFFFFFFFFEEEEEEDDDDDDEEEEEEEEEEEEEEEEEEBBBBBBDDDDDDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEEEEEEEDDDDDDCCCCCCCCCCCCEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCBBBBBBAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDCCCCCCBBBBBBAAAAAAAAAAAA999999999999999999999999888888888888888888999999999999AAAAAA999999999999999999999999999999888888777777555555555555555555555555555555666666888888777777666666777777666666666666 -777777777777777777888888888888888888888888888888999999AAAAAABBBBBBAAAAAA888888888888999999AAAAAAAAAAAAAAAAAA888888666666888888AAAAAABBBBBBCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCAAAAAA999999AAAAAABBBBBBEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDCCCCCCDDDDDDEEEEEEFFFFFFEEEEEE555555BBBBBBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEECCCCCCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFEEEEEEDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFEEEEEEDDDDDDCCCCCCDDDDDDEEEEEEDDDDDDCCCCCCCCCCCCEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDEEEEEEDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCBBBBBBBBBBBBAAAAAAAAAAAABBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBAAAAAA999999999999999999999999888888888888888888888888888888999999AAAAAA999999999999999999999999999999888888777777555555555555666666666666555555555555777777777777777777666666666666777777 -777777777777888888888888888888777777888888888888888888AAAAAABBBBBBAAAAAA888888888888999999999999AAAAAA888888666666666666999999BBBBBBCCCCCCCCCCCCCCCCCCBBBBBBCCCCCCBBBBBBAAAAAA999999BBBBBBDDDDDDCCCCCCAAAAAAAAAAAABBBBBBEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCCCCCCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCBBBBBBEEEEEEFFFFFFFFFFFFEEEEEEDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEEEEEEEDDDDDDCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBAAAAAABBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBAAAAAAAAAAAA999999999999999999888888888888888888777777777777888888999999999999999999999999999999999999999999888888666666555555555555666666666666666666555555666666888888777777777777666666 -777777888888888888888888888888888888888888888888999999AAAAAABBBBBBAAAAAA999999888888888888999999999999888888666666666666999999BBBBBBCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBAAAAAA999999999999CCCCCCDDDDDDCCCCCCBBBBBBBBBBBBBBBBBBDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCCCCCCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFEEEEEEDDDDDDEEEEEEFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCEEEEEEFFFFFFFFFFFFEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEDDDDDDCCCCCCDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBAAAAAA999999999999999999999999888888888888777777777777777777777777999999999999999999999999999999999999999999777777555555555555666666777777666666666666777777777777777777777777555555 -777777777777777777888888888888888888888888888888999999AAAAAAAAAAAA999999888888888888777777777777888888777777666666777777AAAAAABBBBBBCCCCCCCCCCCCCCCCCCCCCCCCAAAAAA999999888888888888CCCCCCEEEEEEEEEEEECCCCCCCCCCCCCCCCCCEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF666666555555FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDCCCCCCEEEEEEFFFFFFFFFFFFEEEEEEEEEEEEDDDDDDCCCCCCEEEEEEEEEEEEEEEEEEFFFFFFEEEEEEDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBCCCCCCBBBBBBBBBBBBBBBBBBAAAAAA999999999999999999999999999999888888777777666666666666777777777777999999999999999999AAAAAAAAAAAA999999888888777777666666666666666666666666666666777777888888999999888888777777 -666666666666666666777777777777777777888888888888888888AAAAAAAAAAAA999999999999999999888888777777666666666666666666777777999999BBBBBBCCCCCCDDDDDDDDDDDDCCCCCCAAAAAA888888777777777777888888AAAAAADDDDDDFFFFFFFFFFFFDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEDDDDDD666666FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFEEEEEEDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEDDDDDDEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCBBBBBBBBBBBBCCCCCCBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999888888777777777777777777777777888888999999999999AAAAAAAAAAAAAAAAAA999999888888777777777777666666666666555555666666777777777777888888888888 -666666777777666666777777555555666666777777888888777777888888AAAAAA999999999999888888888888888888666666666666666666777777999999AAAAAACCCCCCDDDDDDDDDDDDDDDDDDAAAAAA888888666666666666888888AAAAAAEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF999999EEEEEE888888FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFDDDDDDDDDDDDDDDDDDEEEEEEFFFFFFFFFFFFFFFFFFDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCBBBBBBBBBBBBCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAA999999999999999999999999999999999999777777666666666666777777999999999999999999AAAAAAAAAAAAAAAAAA999999777777777777777777666666555555555555555555666666777777888888777777 -444444333333444444666666888888888888888888777777888888999999AAAAAA999999888888777777888888888888666666666666666666777777999999BBBBBBCCCCCCCCCCCCCCCCCCCCCCCCBBBBBB888888666666666666999999DDDDDDEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDDDDDDEEEEEE999999AAAAAA888888EEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEDDDDDDFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFEEEEEEDDDDDDCCCCCCEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCBBBBBBBBBBBBCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAA999999999999999999999999999999888888777777777777777777888888999999999999999999AAAAAAAAAAAA999999888888666666666666666666555555444444444444555555666666888888888888 -444444444444444444444444555555777777666666444444666666AAAAAABBBBBB999999888888777777777777888888666666666666555555777777AAAAAABBBBBBCCCCCCCCCCCCBBBBBBCCCCCC999999777777777777777777BBBBBBFFFFFFEEEEEEFFFFFFEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEE888888AAAAAAAAAAAA555555999999FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDCCCCCCDDDDDDEEEEEEFFFFFFFFFFFFFFFFFFEEEEEEDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEDDDDDDEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEDDDDDDCCCCCCCCCCCCBBBBBBBBBBBBCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAA999999999999999999AAAAAAAAAAAA999999888888777777777777777777888888999999999999AAAAAAAAAAAA999999888888777777555555555555555555444444333333333333444444444444666666 -666666777777666666666666444444666666666666666666666666666666777777888888777777888888999999888888666666555555555555777777BBBBBBCCCCCCCCCCCCBBBBBBAAAAAABBBBBB888888777777777777BBBBBBEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAAAAAACCCCCCCCCCCC888888999999FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEDDDDDDEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDCCCCCCCCCCCCBBBBBBBBBBBBCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBAAAAAA999999999999999999AAAAAA999999888888888888777777777777888888888888999999999999AAAAAA999999888888777777666666555555555555444444444444444444333333333333333333 -666666777777777777777777666666555555555555555555555555666666333333222222777777999999BBBBBB888888666666555555555555888888BBBBBBCCCCCCCCCCCCBBBBBBAAAAAAAAAAAA999999888888AAAAAADDDDDDDDDDDDDDDDDDFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCCCCCCFFFFFFAAAAAA999999999999FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDCCCCCCEEEEEEEEEEEEFFFFFFFFFFFFEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEECCCCCCCCCCCCBBBBBBBBBBBBCCCCCCCCCCCCBBBBBBBBBBBBAAAAAABBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCAAAAAAAAAAAA999999999999AAAAAAAAAAAA999999888888777777777777777777888888999999999999AAAAAAAAAAAA888888777777666666444444555555444444444444444444444444444444444444 -666666777777777777888888888888777777888888999999999999999999888888777777999999999999AAAAAA888888666666777777888888999999BBBBBBCCCCCCCCCCCCAAAAAAAAAAAAAAAAAA999999888888CCCCCCEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBBBBBB888888DDDDDDDDDDDD444444EEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBAAAAAAAAAAAABBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBAAAAAA999999999999999999AAAAAA999999888888777777777777777777888888888888999999AAAAAAAAAAAA999999888888777777444444444444444444333333333333444444444444444444 -666666777777777777777777777777777777888888888888888888777777888888888888999999999999999999666666666666888888AAAAAABBBBBBCCCCCCCCCCCCBBBBBB999999999999BBBBBB999999AAAAAAEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFEEEEEEDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF999999666666888888777777999999FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFEEEEEEDDDDDDCCCCCCDDDDDDEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDCCCCCCCCCCCCDDDDDDDDDDDDCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBB999999999999888888999999999999999999888888777777777777777777888888888888999999999999AAAAAAAAAAAA999999777777444444333333333333333333333333444444444444444444 -666666777777777777777777777777888888888888888888888888777777777777888888999999999999888888666666777777999999AAAAAABBBBBBCCCCCCBBBBBBAAAAAA888888888888BBBBBBAAAAAAAAAAAACCCCCCDDDDDDDDDDDDEEEEEEFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEE777777888888888888888888FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEDDDDDDCCCCCCDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCAAAAAA999999888888888888888888999999999999999999777777777777777777888888888888888888999999999999AAAAAA999999888888666666444444333333333333333333333333444444444444 -777777666666777777777777777777888888777777777777888888777777777777888888999999888888888888777777999999BBBBBBBBBBBBCCCCCCBBBBBBBBBBBBAAAAAA888888777777AAAAAA999999999999CCCCCCCCCCCCDDDDDDFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEDDDDDDEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFF999999EEEEEE666666FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEDDDDDDDDDDDDCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBAAAAAA999999888888888888999999999999999999777777777777777777888888888888888888888888888888999999AAAAAA888888777777555555444444444444444444333333333333444444 -777777777777888888777777777777888888777777777777888888888888777777777777888888777777888888777777999999BBBBBBCCCCCCCCCCCCBBBBBBBBBBBBAAAAAA999999888888999999999999999999BBBBBBCCCCCCDDDDDDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEE888888AAAAAAFFFFFFEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEE666666999999EEEEEEFFFFFFFFFFFFFFFFFF666666CCCCCCCCCCCCFFFFFF666666FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBAAAAAA999999888888888888888888999999999999888888777777777777888888888888888888999999888888888888999999999999888888666666555555555555444444444444444444444444 -777777777777777777777777777777777777888888777777888888999999888888777777777777777777888888888888AAAAAACCCCCCCCCCCCCCCCCCCCCCCCBBBBBBAAAAAA999999888888999999AAAAAABBBBBBCCCCCCEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEFFFFFF888888BBBBBBFFFFFFEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEE999999AAAAAABBBBBBFFFFFFFFFFFFDDDDDD666666BBBBBBFFFFFF999999BBBBBBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEDDDDDDEEEEEEEEEEEEDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEDDDDDDDDDDDDCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBAAAAAAAAAAAAAAAAAA999999999999888888888888999999999999888888888888777777888888888888999999999999888888888888999999999999999999777777555555555555555555444444444444444444 -777777777777777777888888777777777777777777777777999999999999888888777777777777888888888888999999BBBBBBCCCCCCCCCCCCCCCCCCCCCCCCBBBBBB999999888888999999CCCCCCDDDDDDDDDDDDFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEFFFFFF999999AAAAAAFFFFFFEEEEEEEEEEEEFFFFFFFFFFFFEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFEEEEEEBBBBBBBBBBBBBBBBBBEEEEEEFFFFFFCCCCCC888888AAAAAADDDDDD666666EEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEDDDDDDEEEEEEFFFFFFEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBAAAAAAAAAAAAAAAAAA999999999999999999888888999999999999999999888888888888777777888888999999999999888888999999999999999999999999888888666666555555555555444444444444444444 -777777777777888888888888888888888888777777777777888888AAAAAA777777777777777777888888888888999999BBBBBBCCCCCCBBBBBBCCCCCCCCCCCCBBBBBBBBBBBBAAAAAACCCCCCEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDD777777AAAAAAFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFEEEEEE888888AAAAAAFFFFFFFFFFFFFFFFFF666666AAAAAAFFFFFFFFFFFFFFFFFFCCCCCCFFFFFF888888AAAAAA999999AAAAAA999999EEEEEE777777777777FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEDDDDDDEEEEEEFFFFFFFFFFFFEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBAAAAAA999999999999999999999999999999999999999999999999888888888888777777888888999999999999888888999999999999999999999999888888777777666666555555444444444444444444 -777777777777888888888888888888888888777777666666777777888888777777777777888888888888888888999999AAAAAABBBBBBCCCCCCCCCCCCCCCCCCAAAAAABBBBBBCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDEEEEEEFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFEEEEEEDDDDDD777777AAAAAAFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFBBBBBB666666888888DDDDDDEEEEEEEEEEEE888888BBBBBBDDDDDDDDDDDDBBBBBBBBBBBBFFFFFFBBBBBB777777AAAAAABBBBBBAAAAAAEEEEEE777777FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBAAAAAAAAAAAA999999999999999999999999999999999999999999888888888888888888888888888888999999999999999999888888888888888888888888888888777777666666555555555555444444 -777777777777888888999999888888888888777777666666777777777777666666777777999999888888888888777777999999BBBBBBCCCCCCDDDDDDCCCCCCAAAAAAAAAAAACCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFEEEEEE999999CCCCCCEEEEEEFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCCCCCC777777888888999999888888888888BBBBBBEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEE999999DDDDDDDDDDDD666666FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBAAAAAA999999999999999999999999888888888888888888999999999999888888777777888888999999999999888888888888888888888888888888888888777777777777666666666666555555 -777777777777888888999999999999777777777777777777666666666666666666888888AAAAAA888888666666666666999999BBBBBBCCCCCCDDDDDDCCCCCCAAAAAAAAAAAABBBBBBDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFBBBBBB999999CCCCCCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEECCCCCCCCCCCC888888DDDDDDFFFFFFBBBBBBCCCCCCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCCCCCCBBBBBBEEEEEE999999AAAAAADDDDDDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBAAAAAA999999888888888888888888888888888888888888888888888888888888888888999999888888888888888888999999888888888888888888888888777777666666555555444444 -777777777777888888888888888888888888888888777777666666666666666666888888BBBBBBAAAAAA888888666666999999BBBBBBDDDDDDCCCCCCCCCCCCAAAAAAAAAAAAAAAAAACCCCCCDDDDDDCCCCCCDDDDDDEEEEEEDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFBBBBBB888888888888AAAAAAFFFFFFFFFFFFEEEEEEAAAAAAEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCCCCCC888888AAAAAAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBAAAAAA999999888888888888888888888888888888888888888888888888888888888888999999888888888888888888888888888888888888888888888888777777666666555555444444 -777777888888888888888888888888888888888888999999666666666666777777777777AAAAAA999999999999777777AAAAAABBBBBBCCCCCCCCCCCCBBBBBBAAAAAA999999AAAAAACCCCCCEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEFFFFFFCCCCCCDDDDDDDDDDDD999999CCCCCCDDDDDDBBBBBBCCCCCCEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDDDDDD888888BBBBBBDDDDDDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBAAAAAA999999888888888888888888777777888888888888888888888888888888888888999999888888888888888888888888888888888888888888888888888888666666555555444444 -888888888888888888888888888888888888888888888888777777888888777777777777CCCCCC999999777777999999AAAAAABBBBBBBBBBBBAAAAAABBBBBBAAAAAAAAAAAAAAAAAACCCCCCEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFBBBBBBEEEEEEFFFFFFEEEEEECCCCCCAAAAAA999999999999999999999999EEEEEECCCCCC999999999999EEEEEEFFFFFFFFFFFFEEEEEE777777CCCCCCFFFFFFFFFFFFEEEEEE666666CCCCCCFFFFFFFFFFFFEEEEEEBBBBBB999999FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBAAAAAA999999888888888888888888888888888888888888888888888888888888999999999999888888888888888888888888888888888888888888777777666666555555444444 -777777888888888888888888888888888888888888888888888888888888666666888888AAAAAA777777888888999999BBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCCCCCEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAAAAAACCCCCCCCCCCCAAAAAA999999BBBBBBEEEEEEFFFFFFFFFFFF999999999999888888BBBBBBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF666666CCCCCCFFFFFFDDDDDD999999AAAAAABBBBBBFFFFFFCCCCCC999999DDDDDD999999BBBBBBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBAAAAAAAAAAAA888888888888888888888888888888888888888888888888888888999999999999888888888888888888888888888888888888888888777777777777555555555555 -777777777777777777888888888888777777999999888888888888777777666666666666CCCCCC888888888888999999AAAAAACCCCCCAAAAAAAAAAAA999999999999AAAAAAAAAAAADDDDDDEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEDDDDDDEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBBBBBBDDDDDDCCCCCCDDDDDD888888FFFFFFDDDDDD999999FFFFFF999999CCCCCCDDDDDD666666FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBAAAAAA999999888888888888888888888888888888999999999999888888888888999999999999999999888888888888888888888888888888888888888888777777666666666666 -777777777777777777888888888888777777888888888888888888777777555555666666999999888888888888999999AAAAAABBBBBBAAAAAA999999999999999999AAAAAAAAAAAACCCCCCEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCCCCCCBBBBBBEEEEEE999999FFFFFFCCCCCCFFFFFFFFFFFFBBBBBBCCCCCCEEEEEE777777999999999999CCCCCCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFEEEEEEEEEEEEFFFFFFEEEEEEEEEEEEFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCDDDDDDCCCCCCCCCCCCCCCCCCBBBBBBAAAAAA999999888888888888888888888888999999999999999999999999999999999999999999888888888888888888888888888888888888888888888888777777666666555555 -666666777777777777888888777777888888888888888888888888777777666666777777888888888888888888999999AAAAAAAAAAAAAAAAAA999999999999999999AAAAAABBBBBBCCCCCCDDDDDDEEEEEEDDDDDDEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDDDDDDAAAAAAEEEEEE999999FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBBBBBBFFFFFFCCCCCCCCCCCCCCCCCC666666CCCCCCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBAAAAAA999999888888888888999999999999999999999999AAAAAA999999999999999999999999999999888888888888888888888888888888888888777777666666555555 -777777777777777777888888888888888888888888888888888888777777666666777777888888999999777777888888999999999999999999999999888888999999999999BBBBBBCCCCCCDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF999999666666DDDDDD999999FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBBBBBBFFFFFFFFFFFFFFFFFFFFFFFFAAAAAA888888EEEEEEFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCDDDDDDCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBAAAAAA999999888888999999999999999999999999999999AAAAAAAAAAAA999999999999999999999999888888888888888888888888888888888888888888777777555555 -777777777777888888888888888888888888888888888888777777777777888888888888777777999999666666888888888888999999AAAAAAAAAAAA888888999999999999BBBBBBDDDDDDDDDDDDEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAAAAAA999999CCCCCCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCCCCCCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAAAAAA888888FFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEDDDDDDDDDDDDEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBAAAAAA999999999999999999AAAAAA999999999999999999999999AAAAAAAAAAAAAAAAAA999999999999999999888888888888888888888888888888888888777777666666 -777777777777777777888888999999888888888888888888888888888888888888999999999999999999888888999999888888888888AAAAAAAAAAAA888888999999999999BBBBBBDDDDDDEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF888888888888666666999999FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF888888BBBBBBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCCCCCC555555FFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDDDDDDCCCCCCCCCCCCEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBAAAAAAAAAAAA999999AAAAAA999999999999999999999999999999999999999999AAAAAAAAAAAAAAAAAA999999888888888888888888888888888888888888777777666666 -777777777777777777999999999999888888888888888888888888888888888888999999888888AAAAAABBBBBBBBBBBBCCCCCCBBBBBB999999AAAAAA999999999999AAAAAAAAAAAACCCCCCEEEEEEEEEEEEDDDDDDEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBBBBBBDDDDDDEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDDDDDD999999FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEE555555CCCCCCFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDDDDDDBBBBBBAAAAAADDDDDDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999999999999999999999999999999999999999999999888888888888888888888888888888777777666666 -777777777777777777888888888888888888888888888888888888888888888888888888999999AAAAAABBBBBBCCCCCCBBBBBB999999888888AAAAAA999999888888999999AAAAAABBBBBBEEEEEEEEEEEEDDDDDDEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF777777999999DDDDDDBBBBBBEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF888888777777FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDDDDDD999999999999DDDDDDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBAAAAAAAAAAAA999999AAAAAAAAAAAAAAAAAAAAAAAA999999999999888888999999999999999999999999999999888888888888888888888888888888777777 -777777777777777777777777888888888888888888888888888888888888BBBBBB888888999999999999BBBBBBCCCCCCAAAAAA999999AAAAAAAAAAAA999999888888999999AAAAAAAAAAAACCCCCCEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF888888BBBBBB999999EEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF666666999999FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDDDDDD999999888888CCCCCCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBAAAAAA999999AAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999999999999999999999999999888888888888888888888888777777 -777777777777777777888888666666777777777777888888777777888888AAAAAA888888999999AAAAAABBBBBBCCCCCC999999999999CCCCCCBBBBBBAAAAAA888888999999AAAAAABBBBBBCCCCCCEEEEEEDDDDDDDDDDDD888888EEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDDDDDDCCCCCCBBBBBBBBBBBB999999FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEAAAAAACCCCCCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDDDDDD666666EEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDD888888888888999999CCCCCCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999999999999999888888999999888888888888888888777777777777 -777777777777666666777777666666666666777777888888888888777777AAAAAA888888888888AAAAAADDDDDDDDDDDDAAAAAA888888BBBBBBBBBBBBAAAAAA999999999999AAAAAABBBBBBCCCCCCEEEEEEDDDDDDDDDDDD666666555555CCCCCCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDDDDDDCCCCCC999999999999CCCCCCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF777777DDDDDDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEE666666EEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEFFFFFFEEEEEEDDDDDD999999777777888888999999DDDDDDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFEEEEEEEEEEEEFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDCCCCCCCCCCCCBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999999999999999999999888888999999888888888888777777666666 -777777777777777777777777888888666666777777888888777777777777888888888888888888AAAAAADDDDDDDDDDDDBBBBBB999999BBBBBBBBBBBBAAAAAA999999888888999999AAAAAACCCCCCDDDDDDDDDDDDCCCCCCCCCCCC999999666666555555888888CCCCCCAAAAAAFFFFFFDDDDDDDDDDDDCCCCCC999999EEEEEECCCCCCFFFFFFFFFFFF999999FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF999999DDDDDDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCCCCCC888888FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEFFFFFFEEEEEEDDDDDDAAAAAA777777777777999999BBBBBBEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCBBBBBBAAAAAAAAAAAABBBBBBAAAAAAAAAAAAAAAAAA999999999999999999999999888888888888999999999999999999888888888888888888777777777777 -777777777777777777777777777777777777777777777777888888888888888888777777888888AAAAAACCCCCCCCCCCCDDDDDDAAAAAAAAAAAACCCCCCAAAAAA999999888888888888AAAAAACCCCCCDDDDDDDDDDDDCCCCCCDDDDDDDDDDDDCCCCCCDDDDDDBBBBBBCCCCCC999999AAAAAA999999999999999999888888EEEEEE888888CCCCCCBBBBBB666666999999FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEE888888AAAAAAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAAAAAA888888FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEDDDDDD999999888888777777888888999999CCCCCCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCBBBBBBBBBBBBAAAAAABBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAA999999999999888888888888999999999999999999888888888888888888777777777777 -777777777777777777888888666666777777777777777777888888999999999999777777777777999999BBBBBBCCCCCCCCCCCCBBBBBB888888999999888888888888888888888888999999AAAAAACCCCCCCCCCCCCCCCCCCCCCCCDDDDDDEEEEEEFFFFFFFFFFFFDDDDDDAAAAAA888888EEEEEEFFFFFFEEEEEEBBBBBBDDDDDDFFFFFF999999DDDDDDBBBBBB555555888888CCCCCCEEEEEEDDDDDDFFFFFFFFFFFFEEEEEEAAAAAACCCCCCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAAAAAA888888FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEDDDDDDAAAAAA999999888888666666777777AAAAAADDDDDDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAA999999888888888888888888999999999999999999999999888888777777666666666666 -777777888888888888888888777777777777777777888888777777888888777777888888999999AAAAAACCCCCCCCCCCCDDDDDDCCCCCC999999888888777777777777888888888888999999AAAAAABBBBBBCCCCCCBBBBBBCCCCCCEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFEEEEEEDDDDDD999999888888AAAAAAEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFDDDDDD888888CCCCCCCCCCCC999999AAAAAA999999999999999999EEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAAAAAA888888FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDAAAAAA999999888888555555666666AAAAAACCCCCCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBAAAAAABBBBBBBBBBBBAAAAAAAAAAAA999999888888888888777777888888999999999999888888888888888888777777555555555555 -888888888888888888888888777777777777777777999999888888999999777777888888777777999999CCCCCCCCCCCCDDDDDDDDDDDD999999999999555555777777888888888888888888999999BBBBBBCCCCCCBBBBBBCCCCCCDDDDDDEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDDDDDDDDDDDDCCCCCCCCCCCC999999BBBBBBFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFDDDDDDDDDDDDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF777777EEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEDDDDDDCCCCCCAAAAAA999999999999666666777777AAAAAABBBBBBDDDDDDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBAAAAAABBBBBBBBBBBBBBBBBBAAAAAA999999888888888888888888999999999999999999999999888888888888666666555555555555 -777777888888888888777777777777777777888888888888888888BBBBBBAAAAAA888888888888999999CCCCCCAAAAAADDDDDDEEEEEEEEEEEE888888444444666666888888777777888888888888AAAAAACCCCCCCCCCCCCCCCCCDDDDDDEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEBBBBBBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCCCCCC999999888888FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEDDDDDDCCCCCCAAAAAAAAAAAA999999999999999999AAAAAABBBBBBCCCCCCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAA999999888888888888999999999999999999999999888888888888777777666666666666666666 -888888777777888888777777777777777777888888777777999999BBBBBB999999999999999999777777BBBBBBAAAAAACCCCCCEEEEEEDDDDDD999999666666666666888888777777777777888888999999BBBBBBDDDDDDCCCCCCCCCCCCDDDDDDEEEEEEFFFFFFEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEDDDDDDCCCCCCBBBBBBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCCCCCCBBBBBB777777888888AAAAAABBBBBBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEDDDDDDAAAAAAAAAAAA999999999999999999888888AAAAAABBBBBBEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBAAAAAA999999999999999999999999AAAAAAAAAAAA999999888888888888777777777777666666666666666666 -777777888888777777777777777777777777777777777777888888BBBBBB888888666666999999888888999999AAAAAAEEEEEEEEEEEEAAAAAA888888666666555555888888888888888888888888999999AAAAAACCCCCCDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFDDDDDDAAAAAA777777555555EEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFAAAAAA555555999999EEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEBBBBBBBBBBBBAAAAAAAAAAAA999999666666999999CCCCCCDDDDDDEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBAAAAAAAAAAAAAAAAAAAAAAAA999999AAAAAABBBBBBBBBBBB999999888888888888777777777777666666666666666666 -777777777777777777777777777777777777777777777777777777999999BBBBBB777777AAAAAA777777777777888888CCCCCCEEEEEEBBBBBB999999555555555555999999999999999999999999AAAAAABBBBBBBBBBBBCCCCCCDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFDDDDDD888888BBBBBBBBBBBBEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAAAAAA999999777777CCCCCCBBBBBBEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEECCCCCCBBBBBBAAAAAA999999999999888888AAAAAACCCCCCDDDDDDEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBAAAAAA888888777777777777777777666666666666777777 -777777777777777777777777777777777777777777888888666666777777BBBBBB999999BBBBBB777777777777888888888888DDDDDDFFFFFFBBBBBB777777777777AAAAAAAAAAAA999999AAAAAACCCCCCCCCCCC666666777777DDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEBBBBBBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCCCCCCAAAAAA555555EEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEECCCCCCBBBBBBAAAAAAAAAAAAAAAAAAAAAAAABBBBBBCCCCCCDDDDDDEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCAAAAAA999999999999999999AAAAAABBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAA999999777777777777777777777777777777777777 -777777777777777777777777777777777777777777777777777777777777CCCCCC777777777777777777777777777777777777AAAAAAEEEEEECCCCCC999999888888888888AAAAAAAAAAAABBBBBBCCCCCCCCCCCCCCCCCC888888999999EEEEEEFFFFFFEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFEEEEEEAAAAAABBBBBBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBBBBBB444444CCCCCCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEDDDDDDCCCCCCBBBBBBCCCCCCBBBBBBAAAAAABBBBBBDDDDDDEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCBBBBBBAAAAAA999999999999999999AAAAAABBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAA999999888888888888777777777777777777777777777777 -777777777777777777777777777777777777666666777777666666777777AAAAAAAAAAAA999999888888777777777777888888888888CCCCCCDDDDDD999999AAAAAA555555666666888888AAAAAACCCCCCCCCCCCDDDDDDEEEEEE777777777777CCCCCCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDDDDDDAAAAAAEEEEEEFFFFFFFFFFFFEEEEEE777777FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBBBBBB555555DDDDDDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEDDDDDDDDDDDDCCCCCCCCCCCCDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBAAAAAA999999999999999999999999AAAAAABBBBBBBBBBBBAAAAAAAAAAAAAAAAAA999999999999999999888888777777666666777777777777777777 -777777777777777777777777777777666666777777777777777777666666999999AAAAAAEEEEEE888888777777777777888888888888AAAAAADDDDDDCCCCCCDDDDDD888888777777888888999999BBBBBBBBBBBBCCCCCCEEEEEECCCCCC777777BBBBBBBBBBBBDDDDDDFFFFFFEEEEEECCCCCCAAAAAAEEEEEEFFFFFFEEEEEECCCCCCBBBBBBBBBBBB999999FFFFFFDDDDDDBBBBBBFFFFFFFFFFFFFFFFFFFFFFFFCCCCCC888888CCCCCCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEDDDDDDEEEEEEDDDDDDEEEEEEEEEEEEEEEEEEFFFFFFEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBAAAAAAAAAAAA999999999999AAAAAAAAAAAABBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999888888777777666666666666777777777777 -777777666666666666777777777777777777777777777777888888777777777777BBBBBBEEEEEE999999555555777777888888888888AAAAAAEEEEEEEEEEEECCCCCC999999888888999999AAAAAAAAAAAABBBBBBCCCCCCDDDDDDDDDDDD888888CCCCCCEEEEEE999999999999999999FFFFFFFFFFFF999999CCCCCCBBBBBB888888AAAAAABBBBBBCCCCCCCCCCCC666666999999999999FFFFFFFFFFFFFFFFFFCCCCCCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBAAAAAAAAAAAAAAAAAA999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999888888888888777777666666666666666666 -777777777777777777777777777777777777777777777777777777777777888888999999BBBBBBBBBBBB888888777777999999888888888888BBBBBBDDDDDDBBBBBBBBBBBBBBBBBBAAAAAA999999AAAAAABBBBBBCCCCCCDDDDDDEEEEEEFFFFFFAAAAAABBBBBBBBBBBB999999FFFFFFEEEEEEBBBBBBDDDDDDCCCCCCAAAAAAFFFFFFEEEEEE999999CCCCCCCCCCCCDDDDDDCCCCCCBBBBBBCCCCCCCCCCCCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999888888888888777777666666777777777777 -777777777777777777777777666666777777777777777777666666777777777777777777CCCCCCCCCCCCCCCCCC999999777777888888777777888888BBBBBBDDDDDDBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCCCCCEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDBBBBBB888888AAAAAAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCCCCCCEEEEEEAAAAAA666666EEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999AAAAAA999999888888888888777777777777777777777777 -777777666666777777777777777777777777666666666666777777777777777777777777DDDDDDFFFFFFDDDDDD999999666666888888888888888888CCCCCCDDDDDDDDDDDDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDDDDDDCCCCCCBBBBBB777777777777EEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBAAAAAA999999999999999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999AAAAAAAAAAAA888888888888777777777777777777777777 -666666666666666666777777777777777777666666777777777777777777777777777777999999CCCCCCBBBBBB888888AAAAAA999999BBBBBB444444999999CCCCCCDDDDDDCCCCCCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBCCCCCCDDDDDDEEEEEEEEEEEEDDDDDDDDDDDDCCCCCCBBBBBBDDDDDDBBBBBBBBBBBBDDDDDDFFFFFFFFFFFFBBBBBBBBBBBB888888777777EEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBB999999999999999999999999999999999999AAAAAAAAAAAA999999999999999999999999999999999999888888777777777777777777777777 -777777777777777777888888777777777777777777666666666666666666777777777777777777999999DDDDDDBBBBBBAAAAAA888888999999DDDDDDAAAAAABBBBBBDDDDDDCCCCCCAAAAAAAAAAAA777777888888AAAAAAAAAAAABBBBBBCCCCCCDDDDDDEEEEEEEEEEEEDDDDDD333333CCCCCC999999AAAAAABBBBBB999999FFFFFFBBBBBBEEEEEE888888EEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCAAAAAA999999AAAAAAAAAAAA999999999999AAAAAAAAAAAA999999999999999999AAAAAAAAAAAA999999888888777777777777777777777777 -888888666666666666666666777777777777777777666666666666666666666666666666999999BBBBBBEEEEEECCCCCC888888AAAAAA444444666666888888AAAAAABBBBBBBBBBBBAAAAAAAAAAAA555555444444999999999999999999BBBBBBCCCCCC888888777777666666666666888888AAAAAA777777EEEEEE999999888888DDDDDD777777777777FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCAAAAAAAAAAAAAAAAAAAAAAAA999999AAAAAAAAAAAA999999999999999999999999AAAAAAAAAAAA999999888888888888777777777777777777 -777777777777777777666666777777888888777777777777666666666666666666666666666666999999DDDDDDBBBBBB777777777777555555444444777777BBBBBB999999777777777777666666555555555555444444444444333333333333333333333333777777999999888888999999DDDDDD555555777777DDDDDDFFFFFFBBBBBB777777FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEDDDDDDCCCCCCCCCCCCDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999999999999999999999999999999999888888888888777777777777666666 -777777777777666666777777777777777777777777666666666666666666777777666666777777999999BBBBBBBBBBBB888888666666888888999999888888777777777777666666555555333333AAAAAABBBBBB111111111111333333777777AAAAAAAAAAAADDDDDDDDDDDDDDDDDDDDDDDDDDDDDD999999555555555555DDDDDD777777EEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBAAAAAAAAAAAAAAAAAA999999999999999999999999888888999999999999999999999999999999999999888888777777777777666666 -888888888888666666666666777777666666666666777777666666666666777777777777888888777777999999999999AAAAAA666666555555444444777777777777777777666666666666666666888888999999666666777777888888999999AAAAAABBBBBBBBBBBBCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDEEEEEEAAAAAA222222AAAAAAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDCCCCCCCCCCCCDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAA999999999999999999999999999999999999999999888888999999999999999999888888888888888888777777777777 -777777888888666666666666666666777777666666777777777777777777777777777777888888666666888888999999999999888888222222333333666666AAAAAA666666555555888888666666666666777777777777888888888888888888999999BBBBBBAAAAAABBBBBBCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDBBBBBB777777EEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBAAAAAAAAAAAAAAAAAA999999999999999999999999999999999999AAAAAA999999999999999999999999999999999999888888888888888888888888888888 -666666888888666666555555777777777777777777777777777777666666666666666666666666777777666666666666555555888888444444333333666666666666888888999999999999888888555555555555888888777777666666777777777777888888AAAAAABBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAA999999AAAAAAAAAAAA999999999999AAAAAAAAAAAAAAAAAA999999999999999999999999999999888888888888888888888888888888888888 -666666888888666666666666666666666666777777666666666666666666777777666666777777666666444444333333444444333333333333222222222222888888777777666666888888999999777777333333666666666666666666666666777777888888999999AAAAAABBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFEEEEEEEEEEEEFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999AAAAAAAAAAAA999999999999999999999999999999999999888888888888777777777777777777777777 -666666777777666666555555555555666666666666666666666666666666666666666666333333333333333333444444222222111111111111111111555555777777222222333333666666777777999999777777666666666666666666666666777777888888888888999999BBBBBBBBBBBBBBBBBBBBBBBBDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999AAAAAA999999999999AAAAAA999999999999888888777777777777777777777777 -777777666666888888555555555555666666777777777777777777666666777777333333111111111111111111222222333333222222111111333333666666333333111111111111222222333333666666999999777777777777777777777777777777888888888888999999BBBBBBBBBBBBBBBBBBBBBBBBCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAA999999999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999AAAAAA999999999999999999888888777777777777888888777777 -666666666666777777666666555555666666666666777777666666666666555555111111111111222222111111444444666666555555444444555555666666333333111111111111111111222222222222444444555555666666666666666666888888888888888888AAAAAACCCCCCCCCCCCDDDDDDCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAA999999999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999AAAAAA999999999999999999888888888888888888888888777777 -666666666666666666777777666666555555666666666666666666666666333333111111111111111111111111111111333333555555444444555555444444222222222222222222111111222222444444222222444444555555666666777777777777888888888888999999CCCCCCDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999AAAAAA999999888888888888888888888888 -666666666666666666666666666666555555666666666666555555444444111111111111111111111111111111111111111111222222333333666666444444222222111111111111111111111111222222666666555555666666777777777777888888888888999999AAAAAACCCCCCDDDDDDEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAABBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999888888999999AAAAAA999999888888888888888888888888 -666666666666666666666666666666444444666666666666444444111111111111111111111111111111111111111111111111111111333333444444555555555555111111111111111111111111111111444444777777666666777777777777888888888888999999BBBBBBCCCCCCCCCCCCDDDDDDDDDDDDEEEEEEEEEEEEDDDDDDDDDDDDCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999999999999999888888777777888888888888 -777777777777666666666666666666444444555555666666222222111111111111111111111111111111111111111111111111111111222222333333444444555555444444111111111111222222222222333333777777AAAAAA888888888888888888888888888888999999BBBBBBBBBBBBCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDCCCCCCCCCCCCBBBBBBBBBBBBCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999888888888888888888888888 -666666777777666666666666666666666666555555444444111111111111111111111111111111111111111111111111111111111111111111111111333333444444555555222222222222333333333333444444666666999999999999888888888888888888888888888888888888999999BBBBBBAAAAAABBBBBBCCCCCCDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAABBBBBBAAAAAABBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBAAAAAAAAAAAA999999999999999999999999999999999999888888777777888888888888 -666666777777777777555555666666444444555555444444111111111111111111111111111111111111111111111111111111111111111111111111111111222222444444444444222222333333666666666666666666777777999999999999888888888888888888888888888888888888999999AAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999888888777777777777777777888888 -666666555555666666555555555555222222555555333333111111111111111111111111111111111111111111111111111111111111111111111111111111111111333333555555444444444444666666666666666666777777777777888888888888888888888888999999888888888888999999999999999999999999999999AAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCDDDDDDDDDDDDEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBAAAAAAAAAAAAAAAAAA999999999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999888888666666666666777777888888 -666666555555666666666666666666222222333333111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111333333555555444444666666666666666666666666777777777777888888888888888888888888888888999999999999888888888888999999999999999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBCCCCCCBBBBBBBBBBBBBBBBBBAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999888888777777777777777777888888 -555555666666666666777777555555111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222222222555555777777666666666666666666555555666666777777888888888888888888999999AAAAAABBBBBBAAAAAA999999888888999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCBBBBBBCCCCCCBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999999999999999888888999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBAAAAAAAAAAAAAAAAAA999999888888888888777777777777777777777777 -555555555555555555444444222222111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222333333444444777777888888666666555555666666666666777777888888999999999999999999AAAAAABBBBBBBBBBBBAAAAAA999999999999999999AAAAAABBBBBBAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCBBBBBBBBBBBBCCCCCCBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999999999888888888888999999888888999999AAAAAAAAAAAABBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999888888777777777777777777777777 -111111111111222222222222333333222222111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222333333555555888888777777777777666666666666777777888888888888888888999999CCCCCCCCCCCCCCCCCCBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCBBBBBBCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAA999999999999999999999999999999999999999999888888888888999999999999999999AAAAAABBBBBBAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999888888777777777777777777777777 -111111111111111111111111222222222222111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222444444444444444444666666777777888888777777666666888888888888888888888888BBBBBBBBBBBBCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCBBBBBBCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAA999999999999999999999999999999999999999999999999999999999999999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999999999888888777777777777777777 -111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222222222444444444444555555555555555555666666888888888888888888777777888888999999AAAAAAAAAAAAAAAAAAAAAAAACCCCCCCCCCCCCCCCCCBBBBBBCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBCCCCCCDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCBBBBBBCCCCCCBBBBBBBBBBBBCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999999999999999999999999999AAAAAAAAAAAA999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999888888888888888888777777777777 -111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222222222333333444444444444555555666666555555555555777777888888888888999999999999999999999999999999888888999999BBBBBBBBBBBBBBBBBBBBBBBBCCCCCCBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999888888999999999999999999999999AAAAAAAAAAAAAAAAAAAAAAAA999999AAAAAAAAAAAAAAAAAA999999999999999999999999888888888888888888888888888888777777 -111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222222222333333444444555555555555555555666666666666777777AAAAAAAAAAAABBBBBBBBBBBBBBBBBB999999999999999999AAAAAAAAAAAABBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAABBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDCCCCCCBBBBBBCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBAAAAAAAAAAAABBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999888888888888888888888888888888888888999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999888888888888888888888888888888888888888888888888 -111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222111111111111111111111111111111111111111111111111111111222222222222333333333333444444444444444444555555555555666666777777AAAAAABBBBBBBBBBBBBBBBBBAAAAAA999999999999888888999999AAAAAAAAAAAABBBBBBCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBCCCCCCBBBBBBAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999999999999999999999999999999999999999999999888888888888888888AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999888888888888888888888888888888888888888888888888888888 -111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222222222111111111111111111111111111111111111111111111111111111111111222222222222222222333333444444444444555555555555666666888888CCCCCCCCCCCCBBBBBBBBBBBBAAAAAAAAAAAA999999999999999999AAAAAAAAAAAABBBBBBBBBBBBCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999888888888888999999888888888888999999999999888888888888888888999999AAAAAAAAAAAAAAAAAA999999999999999999999999999999999999888888888888888888888888888888888888888888888888888888 -111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222111111111111111111111111111111111111111111111111111111111111111111111111222222333333444444444444444444555555777777888888AAAAAABBBBBBBBBBBBAAAAAAAAAAAA999999999999999999888888999999999999AAAAAABBBBBBAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDCCCCCCBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAABBBBBBBBBBBBAAAAAAAAAAAABBBBBBBBBBBBAAAAAAAAAAAABBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBAAAAAAAAAAAAAAAAAA999999999999999999999999999999888888888888888888888888888888888888888888888888888888777777888888888888AAAAAAAAAAAA999999999999888888888888888888888888999999999999888888888888888888888888888888888888888888888888 -111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222111111111111111111111111111111111111111111111111111111111111111111222222222222333333444444444444444444555555555555777777888888999999888888888888888888999999999999888888888888999999999999999999AAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBAAAAAAAAAAAABBBBBBBBBBBBAAAAAAAAAAAABBBBBBAAAAAAAAAAAAAAAAAAAAAAAABBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBAAAAAAAAAAAAAAAAAA999999999999999999999999999999888888888888888888888888888888888888888888888888888888777777777777888888999999999999999999999999999999888888888888888888888888888888888888888888888888888888888888888888888888888888 -111111111111111111111111111111111111111111111111111111111111111111111111222222222222222222222222222222222222111111111111111111111111111111111111111111111111111111111111111111222222333333333333444444444444444444444444555555666666666666555555666666777777888888999999AAAAAA999999AAAAAAAAAAAAAAAAAA999999AAAAAAAAAAAABBBBBBBBBBBBAAAAAAAAAAAABBBBBBCCCCCCCCCCCCBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDCCCCCCDDDDDDDDDDDDDDDDDDCCCCCCBBBBBBBBBBBBBBBBBBCCCCCCBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAABBBBBBBBBBBBAAAAAABBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBAAAAAAAAAAAAAAAAAA999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999999999888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888777777777777888888888888888888888888888888777777 -111111111111111111111111111111111111111111111111111111111111111111111111222222222222222222222222222222222222222222222222111111111111111111111111111111111111111111111111111111222222222222222222333333444444444444444444555555555555444444444444666666666666666666777777999999BBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBAAAAAAAAAAAAAAAAAAAAAAAABBBBBBCCCCCCBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCDDDDDDDDDDDDCCCCCCDDDDDDCCCCCCCCCCCCDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEDDDDDDCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999AAAAAA999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999888888888888888888888888888888888888888888888888888888777777888888999999999999888888888888888888888888888888888888888888888888888888888888777777777777777777666666777777888888999999888888888888777777777777 -111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222222222222222222222222222111111111111111111111111111111222222222222222222111111111111111111222222222222333333444444555555555555555555444444555555555555666666666666666666777777777777888888888888888888999999999999999999AAAAAA999999999999AAAAAAAAAAAACCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEDDDDDDDDDDDDEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCBBBBBBBBBBBBCCCCCCCCCCCCBBBBBBAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999888888888888888888888888888888888888888888777777777777777777888888999999AAAAAA999999888888888888888888888888888888888888888888888888888888888888777777777777777777777777888888888888888888888888777777777777 -111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222222222222222222222222222111111111111111111111111111111222222222222222222222222222222222222222222222222444444444444555555555555555555555555666666666666666666666666777777666666666666777777777777888888888888888888888888888888999999999999AAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCDDDDDDDDDDDDCCCCCCBBBBBBBBBBBBBBBBBBCCCCCCBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999888888888888888888888888888888888888888888777777777777777777888888999999AAAAAAAAAAAA999999999999999999888888888888777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777 -111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222222222222222222222222222222222222222111111111111222222222222111111111111111111111111222222222222444444555555444444555555555555555555555555666666666666666666666666666666666666666666777777777777777777777777888888888888888888999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999AAAAAAAAAAAABBBBBBAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999888888888888888888888888888888888888888888777777777777777777888888999999AAAAAAAAAAAAAAAAAA888888888888888888777777777777666666666666777777777777777777777777777777777777777777777777666666666666666666555555 -111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222222222222222111111111111222222222222222222222222111111111111111111111111111111111111111111444444444444444444555555555555555555666666777777777777777777666666555555666666666666777777777777777777777777888888777777888888888888999999999999999999999999999999999999999999999999999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999888888888888888888888888888888888888888888777777777777777777777777888888888888999999AAAAAAAAAAAA888888888888888888777777777777666666666666777777777777777777666666666666666666666666666666666666666666555555555555 -111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222222222111111111111222222333333444444333333222222222222111111111111111111111111222222333333333333444444555555555555666666777777777777777777666666666666666666666666666666777777777777777777777777777777888888888888888888888888888888888888999999999999999999999999999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBAAAAAA999999999999AAAAAAAAAAAA999999999999999999999999999999999999AAAAAAAAAAAAAAAAAAAAAAAA999999999999888888888888888888888888888888888888888888888888888888777777777777777777777777777777888888888888999999999999999999888888777777777777666666666666666666666666666666666666666666555555555555444444444444555555555555555555555555444444 -111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222222222111111111111111111111111111111111111111111222222222222222222111111444444555555222222222222222222111111111111111111111111222222333333444444555555555555555555666666666666666666666666666666666666666666777777777777777777777777777777777777777777888888888888888888888888888888888888888888888888999999999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAABBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999999999999999999999999999999999999999AAAAAA999999999999999999888888888888888888888888888888888888888888777777777777777777777777666666777777777777888888999999999999999999999999999999777777666666555555555555555555555555666666666666555555555555555555555555444444555555555555555555444444444444 -111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222222222222222222222111111111111111111111111111111111111111111222222111111222222222222222222222222222222111111111111111111222222333333333333444444555555555555555555555555555555555555666666777777777777777777777777777777777777777777777777777777777777777777777777888888888888888888888888888888999999999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBAAAAAAAAAAAAAAAAAA999999999999AAAAAA999999999999999999999999999999999999999999999999999999999999999999888888888888888888888888888888888888888888777777777777777777777777777777777777777777777777888888888888888888888888999999888888888888666666444444444444444444444444555555555555555555444444444444555555555555555555555555444444444444333333 -111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222222222222222222222222222222222111111111111222222222222222222222222111111111111222222222222222222222222111111111111111111111111222222333333444444444444444444444444444444555555555555666666666666777777777777777777666666666666666666666666777777777777777777777777777777777777888888888888888888888888999999999999999999999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCDDDDDDCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBAAAAAAAAAAAA999999999999999999AAAAAAAAAAAA999999999999999999999999999999999999999999999999999999999999888888888888888888888888888888888888777777777777777777666666666666777777777777777777777777888888888888888888888888888888888888888888666666555555444444444444444444444444555555555555555555444444444444444444444444555555444444444444444444 -111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222222222222222222222222222222222222222222222222222222222222222222222111111111111111111111111111111222222222222444444444444333333333333444444444444444444555555777777777777666666555555555555666666666666666666777777777777666666666666666666777777777777888888888888888888999999999999999999999999999999999999999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDCCCCCCDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999AAAAAAAAAAAAAAAAAA999999999999999999999999999999999999999999999999888888888888888888888888777777777777777777777777777777666666666666777777777777777777888888888888888888888888777777888888888888888888666666444444333333333333444444444444444444555555555555444444333333333333444444444444444444444444333333 -111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222222222222222222222222222222222222222222222222222222222222222222222222222222222111111111111111111222222222222333333333333333333333333444444333333444444555555666666666666555555555555555555666666666666666666777777666666666666666666666666777777777777888888888888888888888888888888888888999999999999999999AAAAAAAAAAAA999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBAAAAAA999999999999AAAAAA999999999999999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999AAAAAA999999AAAAAAAAAAAAAAAAAA999999999999999999999999999999999999999999888888888888888888888888888888777777777777777777777777666666666666666666666666777777777777888888888888888888888888777777888888777777777777666666444444333333333333444444555555444444444444444444444444333333333333333333333333444444333333333333 -111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222222222222222111111222222222222222222222222222222222222222222222222222222222222222222222222111111111111222222222222222222222222222222333333444444333333555555555555555555555555555555555555555555666666666666666666777777666666666666777777777777888888888888888888888888888888888888999999999999999999999999999999AAAAAAAAAAAAAAAAAAAAAAAA999999AAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBCCCCCCDDDDDDDDDDDDEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCDDDDDDCCCCCCBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBAAAAAAAAAAAAAAAAAA999999999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999AAAAAA999999AAAAAAAAAAAAAAAAAA999999999999999999999999999999999999999999888888888888888888888888777777777777777777777777777777666666666666777777777777777777777777888888888888888888888888777777777777666666666666666666555555444444333333444444444444555555444444444444444444333333333333333333333333333333333333333333 -111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222111111111111222222222222222222333333444444333333333333555555555555555555555555555555444444666666666666777777666666666666666666666666666666777777888888888888888888888888888888888888888888888888999999999999999999999999999999999999999999999999999999AAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBCCCCCCDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAA999999999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999AAAAAAAAAAAA999999999999AAAAAAAAAAAA999999999999999999888888888888999999999999999999888888888888888888888888777777777777777777777777777777777777777777777777777777777777777777888888888888888888888888777777777777555555555555666666555555444444333333333333333333444444555555555555444444444444444444333333333333222222333333333333 -111111111111111111111111111111111111111111111111111111111111111111111111222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222111111111111111111111111111111222222333333333333333333333333333333444444555555666666555555555555555555444444666666666666666666666666666666666666777777777777777777888888888888888888888888888888777777777777888888888888888888999999999999999999888888888888999999999999999999AAAAAAAAAAAABBBBBBCCCCCCCCCCCCDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999AAAAAAAAAAAA999999999999AAAAAA999999999999999999888888888888999999999999888888888888888888888888777777777777777777777777777777777777777777777777777777888888888888888888888888888888888888888888777777777777666666555555555555555555444444444444444444333333333333444444555555555555444444444444333333333333222222333333333333 -111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222222222222222222222222222222222222222222222222222222222222222222222222222111111111111111111111111111111111111111111111111222222222222222222333333333333555555888888777777777777777777555555555555666666666666666666666666777777777777777777777777888888777777777777777777777777777777777777777777888888888888888888888888888888888888888888888888888888999999999999999999AAAAAABBBBBBCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEDDDDDDCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999AAAAAAAAAAAAAAAAAAAAAAAA999999AAAAAA999999999999AAAAAA999999999999999999999999999999888888888888888888888888888888888888888888888888888888777777777777777777777777777777777777777777777777777777888888888888888888888888888888888888888888777777777777666666555555555555555555444444444444444444444444444444444444555555555555555555444444333333333333333333333333333333 -222222111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222111111222222111111222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222111111111111111111111111111111111111222222222222333333333333444444555555666666666666555555555555555555666666555555666666777777777777777777777777777777666666666666555555666666666666777777777777777777777777888888888888888888888888888888888888888888888888999999999999999999BBBBBBCCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999999999999999999999999999888888888888888888888888888888888888888888888888777777777777777777666666666666666666777777777777777777777777888888888888888888888888888888777777888888888888777777666666666666555555555555444444444444444444555555555555555555555555555555555555444444444444444444333333333333333333 -111111111111111111222222111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222222222222222222222222222222222222222222222222222222222222222222222111111111111111111111111111111111111111111111111222222222222333333333333333333444444444444555555555555666666555555555555666666666666777777888888777777777777777777555555555555666666666666777777777777777777888888888888888888888888888888888888888888999999999999999999999999999999BBBBBBBBBBBBBBBBBBCCCCCCDDDDDDDDDDDDEEEEEEDDDDDDDDDDDDDDDDDDCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBAAAAAAAAAAAABBBBBBAAAAAAAAAAAAAAAAAAAAAAAA999999999999AAAAAA999999999999BBBBBBCCCCCCDDDDDDCCCCCCBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999999999999999999999999999999999999999888888888888888888888888888888888888888888777777777777777777666666666666666666666666666666777777777777777777888888888888888888888888888888888888888888888888777777777777666666555555555555555555444444444444555555555555555555555555444444444444555555555555444444444444333333333333 -111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222222222222222222222222222111111111111111111111111111111111111111111111111111111222222222222222222333333333333444444555555555555555555555555666666666666666666888888888888888888777777666666555555666666666666666666777777777777888888888888888888888888888888888888888888888888888888999999999999999999AAAAAAAAAAAABBBBBBCCCCCCDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAABBBBBBAAAAAABBBBBBBBBBBBBBBBBBCCCCCCBBBBBBAAAAAAAAAAAAAAAAAA999999999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999AAAAAAAAAAAAAAAAAAAAAAAACCCCCCDDDDDDCCCCCCBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999999999999999999999999999999999999999888888888888888888888888888888888888888888888888777777777777777777666666666666666666666666666666777777777777777777888888888888888888888888888888777777888888888888777777666666666666666666555555555555555555555555555555555555444444444444444444444444444444444444555555555555444444333333 -111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222222222222222222222222222222222222222222222111111111111111111111111111111222222111111111111111111111111111111111111111111111111111111111111111111111111222222222222222222333333333333222222333333444444555555555555555555666666666666666666888888666666555555555555444444444444444444555555777777777777777777777777777777777777888888888888888888888888888888999999AAAAAAAAAAAABBBBBBCCCCCCDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDCCCCCCBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAA999999999999999999999999999999999999999999AAAAAAAAAAAAAAAAAA999999999999AAAAAAAAAAAABBBBBBBBBBBBCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999999999999999999999999999888888888888888888888888888888888888777777777777777777777777777777666666666666666666666666666666666666666666777777777777777777777777888888777777777777777777777777777777888888888888666666555555555555555555555555555555444444555555555555444444333333333333333333333333333333333333444444444444444444 -111111111111111111111111111111111111111111111111111111111111111111111111111111222222222222222222222222222222222222222222222222222222222222222222222222222222222222111111111111111111111111111111222222222222222222222222111111111111111111111111111111111111111111111111222222222222222222222222222222222222333333444444666666666666555555555555555555666666777777555555555555444444444444444444444444444444666666777777777777777777777777777777777777999999999999888888999999BBBBBBCCCCCCDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEECCCCCCBBBBBBCCCCCCCCCCCCDDDDDDDDDDDDCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAABBBBBBCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBAAAAAAAAAAAA999999AAAAAAAAAAAAAAAAAA999999999999999999999999999999999999999999999999AAAAAAAAAAAAAAAAAABBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999999999999999888888999999999999888888888888888888888888888888777777777777777777666666666666666666666666555555666666666666777777888888777777777777888888888888888888888888888888777777777777777777888888888888777777777777666666555555555555555555444444444444444444333333333333333333333333222222333333333333333333444444333333 -111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222222222222222222222222222222222222222222222111111111111222222111111111111111111111111111111111111111111111111111111111111111111222222111111111111111111111111222222222222222222222222222222222222222222333333333333555555444444444444444444666666777777666666555555444444444444444444555555555555444444555555666666666666666666777777777777888888888888999999AAAAAABBBBBBCCCCCCDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEDDDDDDDDDDDDCCCCCCAAAAAAAAAAAAAAAAAABBBBBBCCCCCCCCCCCCBBBBBBBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAA999999AAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBAAAAAA999999999999999999AAAAAAAAAAAAAAAAAA999999999999AAAAAAAAAAAA999999999999999999AAAAAAAAAAAABBBBBBBBBBBBDDDDDDEEEEEEDDDDDDBBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999999999999999999999999999999999999999888888888888888888888888888888888888888888888888777777666666666666666666666666666666666666666666666666666666777777777777888888888888777777777777888888777777777777777777777777666666777777888888888888888888777777555555555555555555444444444444333333333333333333333333333333333333333333333333333333222222333333333333 -111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222222222222222222222111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222333333222222222222222222222222222222222222222222333333333333333333333333555555666666666666555555444444444444333333444444444444444444444444444444444444555555555555555555666666777777777777999999BBBBBBBBBBBBAAAAAAAAAAAAAAAAAABBBBBBCCCCCCCCCCCCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999AAAAAAAAAAAA999999999999AAAAAA999999999999999999999999AAAAAABBBBBBAAAAAAAAAAAABBBBBBAAAAAA999999999999999999999999AAAAAAAAAAAAAAAAAAAAAAAA999999AAAAAAAAAAAAAAAAAAAAAAAA999999AAAAAAAAAAAABBBBBBCCCCCCCCCCCCDDDDDDCCCCCCBBBBBBAAAAAAAAAAAA999999999999999999999999999999999999999999999999888888888888999999999999999999888888888888888888888888888888888888888888888888777777777777666666666666666666666666666666666666666666666666666666777777777777888888888888777777777777777777777777777777777777777777666666666666888888888888777777777777555555444444444444444444333333333333333333333333333333333333333333222222333333333333222222222222222222 -111111111111111111111111111111111111111111111111111111111111111111111111222222222222222222222222222222222222222222222222222222111111222222222222111111111111111111222222111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222333333222222222222222222222222222222222222222222333333333333333333444444444444555555555555444444333333333333333333555555555555555555444444444444444444444444444444555555666666666666777777999999BBBBBBBBBBBBAAAAAA999999AAAAAABBBBBBBBBBBBAAAAAA999999BBBBBBAAAAAA999999999999999999999999999999999999999999AAAAAAAAAAAA999999AAAAAAAAAAAA999999999999999999999999AAAAAABBBBBBAAAAAAAAAAAABBBBBBAAAAAA999999999999999999999999AAAAAA999999999999999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBCCCCCCCCCCCCCCCCCCBBBBBBBBBBBBAAAAAAAAAAAA999999999999999999999999999999999999888888888888888888888888999999999999888888888888888888888888888888888888888888888888777777777777666666666666666666666666666666666666666666777777777777666666777777888888888888888888777777777777777777777777777777777777666666666666777777888888888888777777777777666666555555444444444444333333333333333333333333333333333333333333333333333333333333333333222222222222 -111111222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222111111111111111111111111111111111111111111111111111111111111111111111111111111222222222222333333222222222222222222222222222222222222333333222222333333333333444444444444444444444444333333222222333333333333333333222222222222333333444444444444444444444444444444555555666666777777999999CCCCCCBBBBBBAAAAAA999999BBBBBBDDDDDDDDDDDDBBBBBB999999BBBBBBBBBBBBAAAAAA999999999999888888888888999999999999AAAAAAAAAAAAAAAAAAAAAAAA999999999999999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBB999999999999999999999999999999999999999999999999999999999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999888888888888999999888888888888888888888888888888888888888888888888888888888888888888888888888888888888777777666666666666666666666666666666666666666666666666777777888888777777777777777777888888888888777777777777777777777777666666666666666666666666777777888888888888777777666666666666555555444444333333333333333333222222222222333333333333333333333333222222333333333333222222222222 -111111222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222111111111111111111111111111111111111111111111111111111111111111111111111222222222222333333222222222222222222222222222222222222222222333333333333333333444444444444444444333333333333222222222222222222222222222222222222333333333333333333444444444444444444555555777777999999CCCCCCDDDDDDCCCCCCCCCCCCCCCCCCEEEEEEEEEEEEEEEEEEBBBBBB999999BBBBBBBBBBBBAAAAAA999999999999999999888888888888999999AAAAAAAAAAAAAAAAAA999999999999999999AAAAAAAAAAAABBBBBBAAAAAAAAAAAAAAAAAABBBBBBAAAAAA888888888888999999999999999999999999999999999999999999999999999999999999AAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBAAAAAA999999AAAAAAAAAAAAAAAAAAAAAAAA999999999999999999888888888888888888888888888888888888888888888888888888888888888888777777777777777777777777777777777777777777777777666666666666666666666666666666666666666666666666777777777777888888777777777777777777777777777777777777777777777777777777666666666666777777888888777777777777666666666666666666555555444444333333333333333333333333333333333333333333333333333333333333222222222222333333333333 -222222222222222222222222222222111111111111222222222222111111222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222111111111111111111111111111111111111111111111111111111111111111111222222222222333333333333222222222222111111222222222222222222222222222222333333333333333333333333444444333333222222222222222222222222222222222222222222333333333333333333444444666666999999999999BBBBBBCCCCCCEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEECCCCCCBBBBBBAAAAAAAAAAAA999999999999999999999999888888888888AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999AAAAAAAAAAAAAAAAAA999999999999AAAAAAAAAAAAAAAAAA888888888888888888999999999999999999999999999999999999999999999999999999AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA999999999999999999999999999999999999999999999999888888888888888888888888888888888888888888888888888888888888888888777777777777777777777777777777777777777777777777666666666666666666666666666666666666666666666666666666666666777777777777777777777777777777777777666666666666777777777777666666555555666666888888888888777777777777666666666666666666555555444444444444333333333333333333333333222222333333333333333333333333222222222222222222222222 -111111111111111111111111111111111111111111111111111111111111111111111111222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222111111222222111111222222222222222222111111111111111111111111111111222222222222222222222222222222222222111111222222222222222222222222222222333333333333333333333333333333333333222222222222222222222222222222222222222222333333444444555555999999BBBBBBAAAAAAAAAAAABBBBBBDDDDDDEEEEEEDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEECCCCCCAAAAAA999999999999999999999999999999999999999999999999999999999999AAAAAA999999999999999999999999999999888888999999999999999999999999999999999999888888888888888888888888888888888888888888999999999999999999999999999999999999999999999999AAAAAAAAAAAA999999999999999999999999999999999999999999888888888888888888888888888888888888888888888888888888888888888888888888777777777777777777777777777777777777777777777777666666666666666666666666666666666666666666666666777777666666777777777777777777777777777777777777777777666666666666777777666666666666555555777777888888777777777777666666666666555555444444444444444444444444333333333333333333333333333333222222333333333333333333333333333333333333333333 -111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222111111111111111111111111111111222222222222222222222222222222222222222222222222222222222222222222222222333333333333333333333333333333333333222222222222222222222222222222333333333333333333444444666666777777777777888888AAAAAACCCCCCEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDEEEEEECCCCCC999999888888888888999999999999AAAAAAAAAAAABBBBBBAAAAAA999999999999888888888888777777777777888888888888888888999999999999888888888888888888999999999999999999888888888888888888888888888888888888999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999888888888888888888888888888888777777888888888888888888888888777777777777777777777777777777666666777777666666666666666666666666666666666666666666666666777777777777777777777777777777777777777777777777777777777777666666666666666666777777777777666666666666666666777777888888777777666666666666555555444444444444444444444444444444333333333333333333333333333333333333333333333333333333333333333333333333222222 -111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222111111111111111111111111222222222222111111111111222222222222222222222222222222222222222222222222222222222222222222222222333333333333333333333333333333333333222222222222222222222222333333333333333333444444555555444444555555777777AAAAAACCCCCCDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDEEEEEEEEEEEEBBBBBB999999777777777777888888999999CCCCCCCCCCCCCCCCCCAAAAAA888888888888888888777777777777777777777777777777999999999999777777777777777777777777888888888888999999888888888888888888888888888888888888999999999999999999888888888888999999999999999999999999999999999999888888888888999999888888888888888888888888888888777777777777777777777777777777777777777777777777777777666666666666666666666666666666666666666666666666666666666666666666777777777777777777777777777777777777777777777777666666777777666666666666666666666666666666777777666666666666666666666666888888888888666666666666555555444444444444444444444444444444444444444444333333333333333333333333333333333333333333333333333333444444333333333333 -111111111111111111111111111111111111111111111111111111111111111111111111222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222111111111111222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222333333333333333333333333222222222222222222333333333333333333555555666666666666666666777777999999CCCCCCDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDEEEEEEEEEEEEDDDDDDDDDDDDAAAAAA888888666666888888999999999999AAAAAAAAAAAA999999999999888888777777888888777777777777777777777777888888888888777777777777777777777777777777777777777777888888888888888888888888888888888888999999999999999999999999888888888888999999999999999999999999888888888888888888888888888888888888888888888888888888777777777777777777777777777777777777777777777777777777666666666666666666666666777777666666666666555555666666666666666666777777777777777777777777777777777777777777777777777777666666666666666666666666666666666666666666666666666666666666666666777777888888777777666666555555555555444444444444444444444444444444444444444444444444444444333333222222222222333333333333333333333333333333333333333333 -111111111111111111111111111111111111111111111111111111111111111111222222222222222222222222222222222222222222222222222222222222222222222222222222222222111111111111111111222222111111111111111111222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222333333222222222222222222222222333333333333333333222222222222333333333333333333555555888888888888777777999999BBBBBBCCCCCCDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDDDDDDDDDDDDDDDDDDCCCCCCDDDDDDAAAAAA666666666666777777888888777777777777777777777777777777777777777777777777777777777777777777777777777777888888777777777777777777777777777777777777777777888888888888888888888888888888888888888888999999999999888888888888888888999999999999999999888888888888888888888888888888888888888888888888888888777777777777777777777777777777777777777777777777666666666666666666666666666666777777777777666666666666666666555555666666777777777777777777777777777777777777777777777777777777777777777777777777666666666666555555555555666666666666666666666666666666666666888888777777666666555555555555444444444444444444444444444444555555555555555555444444333333222222222222222222333333333333333333333333333333333333 -111111111111111111111111222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222111111111111111111111111111111222222222222222222222222222222222222222222222222222222222222222222222222222222222222333333222222222222222222222222222222222222222222333333333333333333222222222222333333333333222222222222333333333333333333333333555555555555666666777777999999BBBBBBBBBBBBAAAAAA999999AAAAAACCCCCCDDDDDDCCCCCCBBBBBBCCCCCCAAAAAA999999999999999999888888666666666666666666666666555555666666666666666666666666666666666666666666666666666666777777777777777777777777777777777777777777777777777777777777777777777777777777777777888888888888888888888888888888888888888888888888888888888888888888888888888888888888777777777777777777777777777777777777777777777777777777777777777777777777777777666666666666666666666666666666666666666666777777777777666666666666666666666666777777777777888888777777777777777777777777777777777777777777777777666666666666777777666666555555555555555555666666555555666666777777777777777777777777666666666666555555555555555555555555555555555555555555555555555555444444333333333333222222222222333333333333333333333333333333333333 -MySave restore -% ---- Object #2:6 Obj Type: 7 -1.2578 1.8867 setpen -0 setlinecap -gsave -newpath -76.2700 137.2275 moveto -76.3950 137.4576 lineto -76.6567 137.9109 lineto -76.9340 138.3548 lineto -77.2271 138.7893 lineto -77.5349 139.2129 lineto -77.8571 139.6254 lineto -78.1936 140.0264 lineto -78.5438 140.4154 lineto -78.9078 140.7924 lineto -79.2843 141.1560 lineto -79.6733 141.5062 lineto -80.0743 141.8427 lineto -80.4867 142.1649 lineto -80.9102 142.4726 lineto -81.3449 142.7658 lineto -81.7888 143.0432 lineto -82.2420 143.3049 lineto -82.7042 143.5507 lineto -83.1746 143.7802 lineto -83.6528 143.9931 lineto -83.8954 144.0935 lineto -89.5144 130.1858 lineto -76.2700 137.2275 lineto -closepath -F doline -grestore -80.9327 140.6318 moveto -80.5305 141.3136 lineto -79.7619 142.6983 lineto -79.0421 144.1089 lineto -78.3718 145.5444 lineto -77.7515 147.0037 lineto -77.1834 148.4818 lineto -76.6672 149.9787 lineto -76.2037 151.4928 lineto -75.7933 153.0221 lineto -75.4366 154.5647 lineto -75.1337 156.1209 lineto -74.8855 157.6853 lineto -74.6923 159.2567 lineto -74.5541 160.8339 lineto -74.4711 162.4149 lineto -74.4434 164 lineto -74.4710 165.5830 lineto -74.5540 167.1640 lineto -74.6921 168.7412 lineto -74.8852 170.3127 lineto -75.1332 171.8764 lineto -75.4362 173.4333 lineto -75.7928 174.9759 lineto -76.2031 176.5052 lineto -76.6666 178.0193 lineto -77.1827 179.5163 lineto -77.7507 180.9944 lineto -78.3709 182.4537 lineto -79.0409 183.8886 lineto -79.7606 185.2993 lineto -80.5295 186.6846 lineto -81.3460 188.0417 lineto -82.2105 189.3713 lineto -83.1198 190.6682 lineto -84.0739 191.9326 lineto -85.0716 193.1630 lineto -86.1116 194.3579 lineto -87.1927 195.5159 lineto -88.3155 196.6372 lineto -89.4750 197.7170 lineto -90.6715 198.7557 lineto -91.9035 199.7521 lineto -93.1695 200.7050 lineto -94.4681 201.6131 lineto -95.7994 202.4766 lineto -97.1583 203.2920 lineto -98.5448 204.0596 lineto -99.9574 204.7784 lineto -101.3948 205.4479 lineto -102.8560 206.0673 lineto -104.3361 206.6347 lineto -105.8350 207.1502 lineto -107.3511 207.6131 lineto -108.8824 208.0229 lineto -110.4271 208.3792 lineto -111.9853 208.6817 lineto -113.5518 208.9295 lineto -115.1254 209.1225 lineto -116.7047 209.2605 lineto -118.2878 209.3434 lineto -119.8750 209.3711 lineto -121.4622 209.3434 lineto -123.0453 209.2605 lineto -124.6246 209.1225 lineto -126.1981 208.9295 lineto -127.7646 208.6817 lineto -129.3229 208.3792 lineto -130.8676 208.0229 lineto -132.3989 207.6131 lineto -133.9150 207.1502 lineto -135.4139 206.6347 lineto -136.8940 206.0673 lineto -138.3552 205.4479 lineto -139.7926 204.7784 lineto -141.2052 204.0596 lineto -142.5917 203.2920 lineto -143.9506 202.4766 lineto -145.2819 201.6131 lineto -146.5805 200.7050 lineto -147.8465 199.7521 lineto -149.0785 198.7557 lineto -150.2750 197.7170 lineto -151.4344 196.6372 lineto -152.5572 195.5159 lineto -153.6384 194.3579 lineto -154.6784 193.1630 lineto -155.6761 191.9326 lineto -156.6302 190.6682 lineto -157.5395 189.3713 lineto -158.4040 188.0417 lineto -159.2205 186.6846 lineto -159.9894 185.2993 lineto -160.7091 183.8886 lineto -161.3791 182.4537 lineto -161.9993 180.9944 lineto -162.5673 179.5163 lineto -163.0834 178.0193 lineto -163.5469 176.5052 lineto -163.9572 174.9759 lineto -164.3138 173.4333 lineto -164.6168 171.8764 lineto -164.8647 170.3127 lineto -165.0579 168.7412 lineto -165.1960 167.1640 lineto -165.2790 165.5830 lineto -165.3066 164 lineto -165.2790 162.4170 lineto -165.1960 160.8360 lineto -165.0579 159.2588 lineto -164.8647 157.6873 lineto -164.6168 156.1236 lineto -164.3138 154.5667 lineto -163.9572 153.0241 lineto -163.5469 151.4948 lineto -163.0834 149.9807 lineto -162.5673 148.4837 lineto -161.9993 147.0056 lineto -161.3791 145.5463 lineto -160.7091 144.1114 lineto -159.9894 142.7007 lineto -159.2205 141.3154 lineto -158.4040 139.9583 lineto -157.5395 138.6287 lineto -156.6302 137.3318 lineto -155.6761 136.0674 lineto -154.6784 134.8370 lineto -153.6384 133.6421 lineto -152.5572 132.4841 lineto -151.4344 131.3627 lineto -150.2750 130.2830 lineto -149.0785 129.2443 lineto -147.8465 128.2479 lineto -146.5805 127.2950 lineto -145.2819 126.3869 lineto -143.9506 125.5234 lineto -142.5917 124.7080 lineto -141.2052 123.9404 lineto -139.7926 123.2216 lineto -138.3552 122.5521 lineto -136.8940 121.9326 lineto -135.4139 121.3653 lineto -133.9150 120.8498 lineto -132.3989 120.3869 lineto -130.8676 119.9770 lineto -129.3229 119.6208 lineto -127.7646 119.3183 lineto -126.1981 119.0705 lineto -124.6246 118.8775 lineto -123.0453 118.7395 lineto -121.4622 118.6566 lineto -119.8750 118.6289 lineto -F dostroke -% ---- Object #3:5 Obj Type: 99 -% ---- Object #4:7 Obj Type: 3 -2 setlinecap -gsave -newpath -130.2344 124.6400 moveto -130.3429 124.8783 lineto -130.5724 125.3487 lineto -130.8181 125.8109 lineto -131.0798 126.2642 lineto -131.3572 126.7081 lineto -131.6502 127.1426 lineto -131.9580 127.5662 lineto -132.2803 127.9787 lineto -132.6167 128.3797 lineto -132.9669 128.7687 lineto -133.3310 129.1457 lineto -133.7075 129.5093 lineto -134.0965 129.8595 lineto -134.4974 130.1960 lineto -134.9099 130.5182 lineto -135.3333 130.8259 lineto -135.7680 131.1192 lineto -136.2119 131.3965 lineto -136.6652 131.6582 lineto -137.1273 131.9040 lineto -137.3615 132.0207 lineto -143.9376 118.5391 lineto -130.2344 124.6400 lineto -closepath -F doline -grestore -gsave -newpath -111.3084 150.0487 moveto -133.3273 128.7853 lineto -F dostroke -grestore -% ---- Object #5:8 Obj Type: 3 -2 setlinecap -gsave -newpath -106.3222 116.2028 moveto -106.4308 116.4411 lineto -106.6602 116.9115 lineto -106.9060 117.3737 lineto -107.1677 117.8270 lineto -107.4450 118.2709 lineto -107.7381 118.7054 lineto -108.0459 119.1291 lineto -108.3681 119.5415 lineto -108.7046 119.9425 lineto -109.0548 120.3315 lineto -109.4188 120.7085 lineto -109.7954 121.0721 lineto -110.1843 121.4223 lineto -110.5853 121.7588 lineto -110.9978 122.0811 lineto -111.4212 122.3887 lineto -111.8559 122.6820 lineto -112.2998 122.9593 lineto -112.7531 123.2210 lineto -113.2152 123.4668 lineto -113.4493 123.5835 lineto -120.0255 110.1019 lineto -106.3222 116.2028 lineto -closepath -F doline -grestore -gsave -newpath -95.5536 133.7341 moveto -109.4152 120.3481 lineto -F dostroke -grestore -% ---- Object #6:9 Obj Type: 3 -2 setlinecap -gsave -newpath -82.4101 107.7657 moveto -82.5187 108.0039 lineto -82.7481 108.4744 lineto -82.9938 108.9365 lineto -83.2555 109.3898 lineto -83.5329 109.8337 lineto -83.8260 110.2682 lineto -84.1338 110.6919 lineto -84.4560 111.1044 lineto -84.7925 111.5053 lineto -85.1427 111.8943 lineto -85.5067 112.2713 lineto -85.8832 112.6349 lineto -86.2722 112.9852 lineto -86.6732 113.3216 lineto -87.0856 113.6439 lineto -87.5091 113.9516 lineto -87.9438 114.2448 lineto -88.3876 114.5222 lineto -88.8409 114.7839 lineto -89.3031 115.0296 lineto -89.5372 115.1464 lineto -96.1133 101.6647 lineto -82.4101 107.7657 lineto -closepath -F doline -grestore -gsave -newpath -79.7987 117.4195 moveto -85.5031 111.9109 lineto -F dostroke -grestore -% ---- Object #7:11 Obj Type: 3 -1.2578 1.2578 setpen -2 setlinecap -gsave -newpath -123.1858 158.2060 moveto -123.1858 156.0118 121.3800 154.2060 119.1858 154.2060 curveto -116.9916 154.2060 115.1858 156.0118 115.1858 158.2060 curveto -115.1858 160.4001 116.9916 162.2060 119.1858 162.2060 curveto -121.3800 162.2060 123.1858 160.4001 123.1858 158.2060 curveto -closepath -F doline -grestore -gsave -newpath -116.5808 155.5085 moveto -64.0439 101.1050 lineto -F dostroke -grestore -% ---- Object #8:12 Obj Type: 2 -0 0 setpen -save -0 setgray -mark /|___Helvetica /Helvetica T cvRecFont -24 fts /|___Helvetica findfont exch scalefont setfont -save /MySave edf -111.6547 102 94.2760 184 rectpath -doeoclip newpath -328 69 82 17.3787 102 94.2760 false imk -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07 -C0FFFFC0FFFFC1F03FFFFFFFFFFFFFFFF03FFFFF80003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07 -C0FFFFC0FFFFC1F03FFFFFFFFFFFFFFFF03FFFFE00000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07 -E07FFF807FFF83F03FFFFFFFFFFFFFFFF03FFFFC000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07 -E07FFF807FFF83F03FFFFFFFFFFFFFFFF03FFFF8000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07 -E07FFF807FFF83F03FFFFFFFFFFFFFFFF03FFFF007F803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07 -E07FFF007FFF83F03FFFFFFFFFFFFFFFF03FFFE01FFF01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07 -E03FFF003FFF03FFFFFFFFFFFFFFFFFFF03FFFE03FFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07 -F03FFF003FFF07FFFFFFFFFFFFFFFFFFF03FFFE07FFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07 -F03FFF083FFF07FFFFFFFFFFFFFFFFFFF03FFFC07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07 -F03FFE0C3FFF07FFFFFFFFFFFFFFFFFFF03FFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07 -F03FFE0C1FFF07FFFFFFFFFFFFFFFFFFF03FFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07 -F01FFE0C1FFE07FFFFFFFFFFFFFFFFFFF03FFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07 -F81FFC0C1FFE0FFFFFFFFE03FFFFFC07F03FFFC0FFFFFFFFFFE03FFFFFF80FFFFFFF01FFFFFF80FE07 -F81FFC1E0FFE0FF03FC0F800FFFFE000F03FFFC07FFFFFFC0F800FFFFFC001FFFFF8003FFFFC001E07 -F81FFC1E0FFE0FF03FC0E0003FFFC000703FFFC07FFFFFFC0E0003FFFF00007FFFE0000FFFF8000E07 -F81FFC1E0FFE0FF03FC0C0001FFF8000303FFFE03FFFFFFC0C0001FFFE00003FFFC00007FFF0000607 -FC0FF83E0FFC1FF03FC080001FFF0000103FFFE01FFFFFFC080000FFFC00001FFF800003FFE0000207 -FC0FF83F07FC1FF03FC083E00FFE00FC103FFFF007FFFFFC083F007FF807E00FFF00FC01FFC01F8207 -FC0FF83F07FC1FF03FC00FF80FFE03FF003FFFF801FFFFFC00FFC07FF01FF80FFE03FF01FFC07FE007 -FC0FF03F07FC1FF03FC01FFC0FFC07FF803FFFF8007FFFFC01FFE03FF03FFC07FE07FF80FF80FFF007 -FC07F07F07F81FF03FC03FFC07FC0FFFC03FFFFE001FFFFC03FFF03FE07FFE07FC0FFFC0FF81FFF807 -FE07F07F83F83FF03FC03FFE07F80FFFC03FFFFF0003FFFC03FFF01FE07FFE07FC0FFFC0FF01FFF807 -FE07F07F83F83FF03FC07FFE07F81FFFE03FFFFFC000FFFC07FFF81FC0FFFF03F81FFFE07F03FFFC07 -FE07E0FF83F83FF03FC07FFE07F81FFFE03FFFFFF0003FFC07FFF81FC0FFFF03F81FFFE07F03FFFC07 -FE07E0FF83F83FF03FC07FFE07F01FFFE03FFFFFFC001FFC07FFFC0FC1FFFF03F83FFFE07E03FFFC07 -FF03E0FFC1F07FF03FC0FFFE07F03FFFF03FFFFFFF000FFC0FFFFC0F80000003F00000007E07FFFE07 -FF03C0FFC1F07FF03FC0FFFE07F03FFFF03FFFFFFFE007FC0FFFFC0F80000003F00000007E07FFFE07 -FF03C1FFC1F07FF03FC0FFFE07F03FFFF03FFFFFFFF803FC0FFFFC0F80000003F00000007E07FFFE07 -FF03C1FFC1F07FF03FC0FFFE07F03FFFF03FFFFFFFFE01FC0FFFFC0F80000003F00000007E07FFFE07 -FF01C1FFE0E07FF03FC0FFFE07F03FFFF03FFFFFFFFF01FC0FFFFC0F80000003F00000007E07FFFE07 -FF8183FFE0E0FFF03FC0FFFE07F03FFFF03FFFFFFFFF81FC0FFFFC0F81FFFFFFF03FFFFFFE07FFFE07 -FF8183FFE0E0FFF03FC0FFFE07F03FFFF03FFFFFFFFF80FC0FFFFC0F81FFFFFFF03FFFFFFE07FFFE07 -FF8183FFE0E0FFF03FC0FFFE07F03FFFF03FFFFFFFFFC0FC0FFFFC0F81FFFFFFF03FFFFFFE07FFFE07 -FF8183FFF060FFF03FC0FFFE07F03FFFF03FFFFFFFFFC0FC0FFFFC0F81FFFFFFF03FFFFFFE07FFFE07 -FF8087FFF040FFF03FC0FFFE07F03FFFE03FFFFFFFFFC0FC07FFF80F80FFFFFFF01FFFFFFE07FFFC07 -FFC007FFF041FFF03FC0FFFE07F81FFFE03FFF81FFFFC0FC07FFF81FC0FFFFFFF81FFFFFFF03FFFC07 -FFC007FFF841FFF03FC0FFFE07F81FFFE03FFF81FFFFC0FC07FFF81FC0FFFFFFF81FFFFFFF03FFFC07 -FFC00FFFF841FFF03FC0FFFE07F81FFFC03FFF81FFFF81FC03FFF01FC07FFF03F80FFFE07F03FFF807 -FFC00FFFF801FFF03FC0FFFE07FC0FFFC03FFF80FFFF81FC03FFF03FE03FFF03FC07FFE07F81FFF807 -FFE00FFFF803FFF03FC0FFFE07FC07FF803FFFC0FFFF01FC01FFE03FE01FFE03FC03FFC07F80FFF007 -FFE00FFFFC03FFF03FC0FFFE07FE03FF003FFFC03FFC03FC00FFC07FF00FFC07FE01FF80FFC07FE007 -FFE01FFFFC03FFF03FC0FFFE07FE00FC103FFFE00FF003FC083F007FF803F807FF007F00FFC01F8207 -FFE01FFFFC03FFF03FC0FFFE07FF0000103FFFE0000007FC080000FFFC00000FFF800001FFE0000207 -FFE01FFFFC03FFF03FC0FFFE07FF8000303FFFF000000FFC0C0001FFFE00001FFFC00003FFF0000607 -FFF03FFFFE07FFF03FC0FFFE07FFC000703FFFFC00001FFC0E0003FFFF00003FFFE00007FFF8000E07 -FFF03FFFFE07FFF03FC0FFFE07FFF000F03FFFFE00007FFC0F8007FFFFC000FFFFF8001FFFFE001E07 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFE003FFFC0FE03FFFFFF007FFFFFE00FFFFFF80FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -MySave restore -restore -origmtx setmatrix -systemdict /setpacking known {origpack setpacking} if end -showpage -%%EndDocument: diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob01.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob01.gif deleted file mode 100755 index 240353058..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob01.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob01.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob01.pdf deleted file mode 100644 index 8dda548b3..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob01.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob02.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob02.eps deleted file mode 100755 index b18bc8f33..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob02.eps +++ /dev/null @@ -1,384 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Uniform_Plate.eps -%%CreationDate: 2/26/1996 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%BoundingBox:119 470 363 750 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -4184.625 981.625 m -4184.625 4731.625 L -1.25 slw 0 sg str -gr -gs -2934 1606 3090 2190 3246 2697 3402 3126 3559 3477 3715 3750 3871 3945 4027 4062 -4184 4101 4340 4062 4496 3945 4652 3750 4809 3477 4965 3126 5121 2697 5277 2190 -5434 1606 16 P -0 0 0 1 1 1 [8 66 0 144 4 64 16 1] patfill -gr -gs -2934 1606 3090 2190 3246 2697 3402 3126 3559 3477 3715 3750 3871 3945 4027 4062 -4184 4101 4340 4062 4496 3945 4652 3750 4809 3477 4965 3126 5121 2697 5277 2190 -5434 1606 16 P -1.25 slw 0 sg str -gr -gs -2309.625 4106.625 m -6059.625 4106.625 L -1.25 slw 0 sg str -gr -gs -2934.625 1606.625 m -5434.625 1606.625 L -1.25 slw 0 sg str -gr -gs -5399 4158 5972 4418 R -1 sg fill -gr -/_Times-Roman ff [243 0 0 -243 0 0] mf sf -5399 4366 m 0 sg (x axis) show -gs -4340 1033 4913 1293 R -1 sg fill -gr -4340 1241 m 2.43 slw 0 sg (y axis) show -gs -5434.625 1606.625 m -5485.625 1606.625 L -1.25 slw 0 sg str -gr -gs -5538.625 1606.625 m -5589.625 1606.625 L -1.25 slw 0 sg str -gr -gs -5642.625 1606.625 m -5693.625 1606.625 L -1.25 slw 0 sg str -gr -gs -5746.625 1606.625 m -5798.625 1606.625 L -1.25 slw 0 sg str -gr -gs -5851.625 1606.625 m -5902.625 1606.625 L -1.25 slw 0 sg str -gr -gs -5955.625 1606.625 m -6006.625 1606.625 L -1.25 slw 0 sg str -gr -gs -6059.625 1606.625 m -dot -1.25 slw 0 sg str -gr -gs -5825 1606 5928 1826 5722 1826 2 P -0 sg fill -gr -gs -5825 4106 5722 3886 5928 3886 2 P -0 sg fill -gr -gs -5825.625 1606.625 m -5825.625 4106.625 L -1.25 slw 0 sg str -gr -gs -5747 2743 5920 3003 R -1 sg fill -gr -5747 2951 m 2.43 slw 0 sg (H) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob02.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob02.gif deleted file mode 100755 index 5ff2087fb..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob02.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob02.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob02.pdf deleted file mode 100644 index e46523c1d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob02.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob04.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob04.eps deleted file mode 100755 index 7f71cfbee..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob04.eps +++ /dev/null @@ -1,378 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Rectangle.eps -%%CreationDate: 3/6/1996 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%BoundingBox:139 475 427 719 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -2647.625 3854.625 m -6397.625 1979.625 L -1.25 slw 0 sg str -gr -gs -2647 3854 4522 4479 7022 3229 5147 2604 2647 3854 4 P closepath -0.5 sg fill -gr -gs -2647 3854 4522 4479 7022 3229 5147 2604 2647 3854 4 P closepath -1.25 slw 0 sg str -gr -gs -2647.625 1510.625 m -2647.625 5260.625 L -1.25 slw 0 sg str -gr -gs -4522.625 4635.625 m -4522.625 4948.625 L -1.25 slw 0 sg str -gr -gs -2647 4166 2820 4145 2774 4285 2 P -0 sg fill -gr -gs -4522 4791 4349 4812 4395 4672 2 P -0 sg fill -gr -gs -2647.625 4166.625 m -4522.625 4791.625 L -1.25 slw 0 sg str -gr -gs -3315 4505 3541 4765 R -1 sg fill -gr -/_Times-Roman ff [243 0 0 -243 0 0] mf sf -3315 4713 m 0 sg (W) show -gs -2647.625 3854.625 m -6397.625 5104.625 L -1.25 slw 0 sg str -gr -gs -6579 4974 7152 5234 R -1 sg fill -gr -6579 5182 m 0 sg (x axis) show -gs -6579 1692 7152 1953 R -1 sg fill -gr -6579 1900 m 0 sg (y axis) show -gs -2838 1536 3393 1796 R -1 sg fill -gr -2838 1744 m 0 sg (z axis) show -gs -5147.625 2447.625 m -5147.625 2135.625 L -1.25 slw 0 sg str -gr -gs -5147 2291 5037 2426 4973 2294 2 P -0 sg fill -gr -gs -2647 3541 2757 3406 2821 3538 2 P -0 sg fill -gr -gs -5147.625 2291.625 m -2647.625 3541.625 L -1.25 slw 0 sg str -gr -gs -3671 2630 3810 2890 R -1 sg fill -gr -3671 2838 m 0 sg (L) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob04.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob04.gif deleted file mode 100755 index 260b35296..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob04.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob04.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob04.pdf deleted file mode 100644 index f9a28883c..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob04.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob05a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob05a.eps deleted file mode 100755 index d1812a208..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob05a.eps +++ /dev/null @@ -1,366 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Atwood.eps -%%CreationDate: 10/14/1995 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%BoundingBox:186 393 358 690 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -3481 2013 5981 2169 R -0 sg fill -gr -gs -3481.625 2013.625 5981.375 2169.375 R -1.25 slw 0 sg str -gr -gs -4106 2638 5356 3888 OV -0.87 sg fill -gr -gs -4106.25 2638.25 5356.75 3888.75 OV -52.5 slw 0 sg str -gr -gs -4730.75 2168.75 m -4730.75 3262.75 L -87.5 slw 0 sg str -gr -gs -4106.625 3263.625 m -4106.625 5763.625 L -1.25 slw 0 sg str -gr -gs -5356.625 3263.625 m -5356.625 4826.625 L -1.25 slw 0 sg str -gr -gs -3793 5763 4418 6388 R -0 0 0 1 1 1 [247 189 255 111 251 191 239 254] patfill -gr -gs -3793.625 5763.625 4418.375 6388.375 R -1.25 slw 0 sg str -gr -gs -5044 4826 5669 5451 R -0.75 sg fill -gr -gs -5044.625 4826.625 5669.375 5451.375 R -1.25 slw 0 sg str -gr -gs -3941 6414 4271 6675 R -1 sg fill -gr -/_Times-Roman ff [243 0 0 -243 0 0] mf sf -3941 6622 m 0 sg (M1) show -gs -5191 5477 5521 5737 R -1 sg fill -gr -5191 5685 m 2.43 slw 0 sg (M2) show -gs -5477 3133 5547 3393 R -1 sg fill -gr -5477 3341 m 2.43 slw 0 sg (I) show -gs -4227 4400 4488 4660 R -1 sg fill -gr -4227 4608 m 2.43 slw 0 sg (T1) show -gs -5477 4400 5738 4660 R -1 sg fill -gr -5477 4608 m 2.43 slw 0 sg (T2) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob05a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob05a.gif deleted file mode 100755 index 95ed11c27..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob05a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob05a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob05a.pdf deleted file mode 100644 index daa508a50..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob05a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob06a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob06a.eps deleted file mode 100755 index bbe888469..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob06a.eps +++ /dev/null @@ -1,417 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Uniform_Stick.eps -%%CreationDate: 11/25/1995 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%BoundingBox:96 525 482 650 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -1892 3481 8142 3793 R -0.75 sg fill -gr -gs -1892.625 3481.625 8142.375 3793.375 R -1.25 slw 0 sg str -gr -gs -1970 3559 2126 3715 OV -1 sg fill -gr -gs -1970.625 3559.625 2126.375 3715.375 OV -1.25 slw 0 sg str -gr -gs -1892.625 3793.625 m -1892.625 3844.625 L -1.25 slw 0 sg str -gr -gs -1892.625 3897.625 m -1892.625 3948.625 L -1.25 slw 0 sg str -gr -gs -1892.625 4001.625 m -1892.625 4052.625 L -1.25 slw 0 sg str -gr -gs -1892.625 4105.625 m -1892.625 4157.625 L -1.25 slw 0 sg str -gr -gs -1892.625 4210.625 m -1892.625 4261.625 L -1.25 slw 0 sg str -gr -gs -1892.625 4314.625 m -1892.625 4365.625 L -1.25 slw 0 sg str -gr -gs -1892.625 4418.625 m -dot -1.25 slw 0 sg str -gr -gs -8142.625 3793.625 m -8142.625 3844.625 L -1.25 slw 0 sg str -gr -gs -8142.625 3897.625 m -8142.625 3948.625 L -1.25 slw 0 sg str -gr -gs -8142.625 4001.625 m -8142.625 4052.625 L -1.25 slw 0 sg str -gr -gs -8142.625 4105.625 m -8142.625 4157.625 L -1.25 slw 0 sg str -gr -gs -8142.625 4210.625 m -8142.625 4261.625 L -1.25 slw 0 sg str -gr -gs -8142.625 4314.625 m -8142.625 4365.625 L -1.25 slw 0 sg str -gr -gs -8142.625 4418.625 m -dot -1.25 slw 0 sg str -gr -gs -1892 4106 2050 4032 2050 4180 2 P -0 sg fill -gr -gs -8142 4106 7984 4180 7984 4032 2 P -0 sg fill -gr -gs -1892.625 4106.625 m -8142.625 4106.625 L -1.25 slw 0 sg str -gr -gs -2048 2856 2122 3014 1974 3014 2 P -0 sg fill -gr -gs -2048.625 3559.625 m -2048.625 2856.625 L -1.25 slw 0 sg str -gr -gs -1909 2552 2187 2847 R -1 sg fill -gr -/_Times-Roman ff [278 0 0 -278 0 0] mf sf -1909 2760 m 0 sg (Fo) show -gs -4939 4193 5095 4488 R -1 sg fill -gr -4939 4401 m 0 sg (L) show -gs -4896 3099 5138 3394 R -1 sg fill -gr -4896 3307 m 0 sg (M) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob06a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob06a.gif deleted file mode 100755 index 29376185f..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob06a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob06a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob06a.pdf deleted file mode 100644 index 95da3da63..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob06a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob07a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob07a.eps deleted file mode 100755 index 08ebb5f1a..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob07a.eps +++ /dev/null @@ -1,418 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Inclined_plane.eps -%%CreationDate: 4/9/1995 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%+ Symbol -%%BoundingBox:128 480 426 668 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -%%BeginEncoding: _Symbol Symbol -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Symbol/Symbol 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -3559 3585 3715 3811 R -1 sg fill -gr -/_Times-Roman ff [208 0 0 -208 0 0] mf sf -3559 3741 m 0 sg (m) show -gs -5590 3580 6254 3229 6254 3580 5590 3580 3 P closepath -0 sg fill -gr -gs -5590 3580 6254 3229 6254 3580 5590 3580 3 P closepath -1.25 slw 0 sg str -gr -gs -2465 5182 6215 3307 6215 5182 2465 5182 3 P closepath -0.93 sg fill -gr -gs -2465 5182 6215 3307 6215 5182 2465 5182 3 P closepath -1.25 slw 0 sg str -gr -gs -6307 2774 6748 3215 OV -0.5 sg fill -gr -gs -6307.625 2774.625 6748.375 3215.375 OV -1.25 slw 0 sg str -gr -gs -6417 2884 6638 3105 OV -1 sg fill -gr -gs -6417.625 2884.625 6638.375 3105.375 OV -1.25 slw 0 sg str -gr -gs -6527.75 2993.75 m -6214.75 3306.75 L -87.5 slw 0 sg str -gr -gs -6428.625 2797.625 m -4184.625 3932.625 L -1.25 slw 0 sg str -gr -gs -4340 4245 4027 3619 3402 3932 3715 4557 4340 4245 4 P closepath -0 0 0 1 1 1 [76 210 83 45 150 89 70 179] patfill -gr -gs -4340 4245 4027 3619 3402 3932 3715 4557 4340 4245 4 P closepath -1.25 slw 0 sg str -gr -gs -3024 4902 3045 4949 3057 4982 3067 5016 3076 5050 3082 5085 3087 5120 3089 5155 -3090 5182 8 P -1.25 slw 0 sg str -gr -gs -3194 4839 3298 5134 R -1 sg fill -gr -/_Symbol ff [208 0 0 -208 0 0] mf sf -3194 5064 m 0 sg (q) show -gs -6748.625 2877.625 m -6748.625 2448.625 L -1.25 slw 0 sg str -gr -gs -6528.625 2721.625 m -6528.625 2448.625 L -1.25 slw 0 sg str -gr -gs -6528 2526 6370 2600 6370 2452 2 P -0 sg fill -gr -gs -6528.625 2526.625 m -6137.625 2526.625 L -1.25 slw 0 sg str -gr -gs -6762 2526 6920 2452 6920 2600 2 P -0 sg fill -gr -gs -6762.625 2526.625 m -7153.625 2526.625 L -1.25 slw 0 sg str -gr -gs -5950 2413 6089 2639 R -1 sg fill -gr -/_Times-Roman ff [208 0 0 -208 0 0] mf sf -5950 2569 m 0 sg (R) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob07a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob07a.gif deleted file mode 100755 index 0954c8af8..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob07a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob07a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob07a.pdf deleted file mode 100644 index ba1913cc7..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob07a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob08a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob08a.eps deleted file mode 100755 index 1963207c0..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob08a.eps +++ /dev/null @@ -1,368 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: hw8q9f.eps -%%CreationDate: 10/23/1994 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%BoundingBox:68 442 407 684 -%%EndComments -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -6059 2795 6354 3020 R -1 sg fill -gr -/_Times-Roman ff [208 0 0 -208 0 0] mf sf -6059 2951 m 0 sg (R, I) show -gs -5478 2855 6103 3480 OV -0.93 sg fill -gr -gs -5478.5 2855.5 6103.5 3480.5 OV -35 slw 0 sg str -gr -gs -2665 2369 3620 3324 R -0 sg fill -gr -gs -2664.75 2368.75 3620.25 3324.25 R -17.5 slw 0 sg str -gr -gs -5165 3619 5165 3081 5877 3081 5877 3237 5321 3237 5321 3619 5165 3619 6 P closepath -1 sg fill -gr -gs -5156 3610 5156 3072 5868 3072 5868 3228 5312 3228 5312 3610 5156 3610 6 P closepath -17.5 slw 0 sg str -gr -gs -5634 4557 6589 5512 R -0 sg fill -gr -gs -5633.75 4556.75 6589.25 5512.25 R -17.5 slw 0 sg str -gr -gs -6111.625 4557.625 m -6111.625 3168.625 L -1.25 slw 0 sg str -gr -gs -3620.625 2847.625 m -5790.625 2847.625 L -1.25 slw 0 sg str -gr -gs -1415 3307 5182 5824 R -0 0 0 1 1 1 [8 66 0 144 4 64 16 1] patfill -gr -gs -1414.75 3306.75 5182.25 5824.25 R -17.5 slw 0 sg str -gr -gs -3064 2117 3220 2343 R -1 sg fill -gr -3064 2273 m 2.08 slw 0 sg (m) show -gs -4592 2586 4818 2812 R -1 sg fill -gr -4592 2742 m 2.08 slw 0 sg (T2) show -gs -6146 3749 6372 3975 R -1 sg fill -gr -6146 3905 m 2.08 slw 0 sg (T1) show -gs -6649 4921 6806 5147 R -1 sg fill -gr -6649 5077 m 2.08 slw 0 sg (m) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob08a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob08a.gif deleted file mode 100755 index c24fdd920..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob08a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob08a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob08a.pdf deleted file mode 100644 index c5b2d388d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob08a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob09.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob09.eps deleted file mode 100755 index 05fe47728..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob09.eps +++ /dev/null @@ -1,621 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Cylinder.eps -%%CreationDate: 10/14/1995 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%BoundingBox:145 447 466 691 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -4942 2305 6818 4181 OV -1 sg fill -gr -gs -4942.5 2305.5 6818.5 4181.5 OV -35 slw 0 sg str -gr -gs -2755 3243 2975 3140 2975 3346 2 P -0 sg fill -gr -gs -4942.5 3243.5 m -2755.5 3243.5 L -35 slw 0 sg str -gr -gs -4630 2305 4850 2202 4850 2408 2 P -0 sg fill -gr -gs -5880.5 2305.5 m -4630.5 2305.5 L -35 slw 0 sg str -gr -gs -4942.625 3243.625 m -4993.625 3243.625 L -1.25 slw 0 sg str -gr -gs -5046.625 3243.625 m -5097.625 3243.625 L -1.25 slw 0 sg str -gr -gs -5150.625 3243.625 m -5201.625 3243.625 L -1.25 slw 0 sg str -gr -gs -5254.625 3243.625 m -5306.625 3243.625 L -1.25 slw 0 sg str -gr -gs -5359.625 3243.625 m -5410.625 3243.625 L -1.25 slw 0 sg str -gr -gs -5463.625 3243.625 m -5514.625 3243.625 L -1.25 slw 0 sg str -gr -gs -5567.625 3243.625 m -5618.625 3243.625 L -1.25 slw 0 sg str -gr -gs -5671.625 3243.625 m -5722.625 3243.625 L -1.25 slw 0 sg str -gr -gs -5775.625 3243.625 m -5826.625 3243.625 L -1.25 slw 0 sg str -gr -gs -5879.625 3243.625 m -5880.625 3243.625 L -1.25 slw 0 sg str -gr -gs -5880.625 3243.625 m -5880.625 3192.625 L -1.25 slw 0 sg str -gr -gs -5880.625 3139.625 m -5880.625 3088.625 L -1.25 slw 0 sg str -gr -gs -5880.625 3035.625 m -5880.625 2984.625 L -1.25 slw 0 sg str -gr -gs -5880.625 2931.625 m -5880.625 2879.625 L -1.25 slw 0 sg str -gr -gs -5880.625 2826.625 m -5880.625 2775.625 L -1.25 slw 0 sg str -gr -gs -5880.625 2722.625 m -5880.625 2671.625 L -1.25 slw 0 sg str -gr -gs -5880.625 2618.625 m -5880.625 2567.625 L -1.25 slw 0 sg str -gr -gs -5880.625 2514.625 m -5880.625 2463.625 L -1.25 slw 0 sg str -gr -gs -5880.625 2410.625 m -5880.625 2359.625 L -1.25 slw 0 sg str -gr -gs -5880.625 3243.625 m -5931.625 3243.625 L -1.25 slw 0 sg str -gr -gs -5984.625 3243.625 m -6035.625 3243.625 L -1.25 slw 0 sg str -gr -gs -6088.625 3243.625 m -6139.625 3243.625 L -1.25 slw 0 sg str -gr -gs -6192.625 3243.625 m -6244.625 3243.625 L -1.25 slw 0 sg str -gr -gs -6297.625 3243.625 m -6348.625 3243.625 L -1.25 slw 0 sg str -gr -gs -6349.625 3243.625 m -6349.625 3294.625 L -1.25 slw 0 sg str -gr -gs -6349.625 3347.625 m -6349.625 3398.625 L -1.25 slw 0 sg str -gr -gs -6349.625 3451.625 m -6349.625 3502.625 L -1.25 slw 0 sg str -gr -gs -6349.625 3555.625 m -6349.625 3607.625 L -1.25 slw 0 sg str -gr -gs -6349.625 3660.625 m -6349.625 3711.625 L -1.25 slw 0 sg str -gr -gs -6349.625 3764.625 m -6349.625 3815.625 L -1.25 slw 0 sg str -gr -gs -6349.625 3868.625 m -6349.625 3919.625 L -1.25 slw 0 sg str -gr -gs -6349.625 3972.625 m -6349.625 4023.625 L -1.25 slw 0 sg str -gr -gs -6349 5743 6246 5523 6452 5523 2 P -0 sg fill -gr -gs -6349.5 4024.5 m -6349.5 5743.5 L -35 slw 0 sg str -gr -gs -7833 3868 7669 3808 7773 3704 2 P -0 sg fill -gr -gs -6583.5 2618.5 m -7833.5 3868.5 L -35 slw 0 sg str -gr -gs -5880.625 3243.625 m -5918.625 3209.625 L -1.25 slw 0 sg str -gr -gs -5958.625 3174.625 m -5996.625 3140.625 L -1.25 slw 0 sg str -gr -gs -6036.625 3105.625 m -6074.625 3071.625 L -1.25 slw 0 sg str -gr -gs -6114.625 3035.625 m -6152.625 3001.625 L -1.25 slw 0 sg str -gr -gs -6191.625 2966.625 m -6230.625 2932.625 L -1.25 slw 0 sg str -gr -gs -6269.625 2897.625 m -6307.625 2863.625 L -1.25 slw 0 sg str -gr -gs -6347.625 2828.625 m -6385.625 2794.625 L -1.25 slw 0 sg str -gr -gs -6425.625 2759.625 m -6463.625 2725.625 L -1.25 slw 0 sg str -gr -gs -6503.625 2689.625 m -6541.625 2655.625 L -1.25 slw 0 sg str -gr -gs -6581.625 2620.625 m -6583.625 2618.625 L -1.25 slw 0 sg str -gr -gs -5880.625 2462.625 m -5724.625 2462.625 L -1.25 slw 0 sg str -gr -gs -5724.625 2305.625 m -5724.625 2462.625 L -1.25 slw 0 sg str -gr -gs -6193.625 3243.625 m -6193.625 3399.625 L -1.25 slw 0 sg str -gr -gs -6193.625 3399.625 m -6349.625 3399.625 L -1.25 slw 0 sg str -gr -gs -6473.625 2722.625 m -6583.625 2833.625 L -1.25 slw 0 sg str -gr -gs -6583.625 2833.625 m -6694.625 2722.625 L -1.25 slw 0 sg str -gr -gs -5860 3223 5900 3263 OV -0 sg fill -gr -gs -5860.625 3223.625 5900.375 3263.375 OV -1.25 slw 0 sg str -gr -gs -5637 2976 5810 3236 R -1 sg fill -gr -/_Times-Roman ff [243 0 0 -243 0 0] mf sf -5637 3184 m 0 sg (O) show -gs -5917 2585 6195 2846 R -1 sg fill -gr -5917 2793 m 2.43 slw 0 sg (R1) show -gs -5897 3289 6175 3549 R -1 sg fill -gr -5897 3497 m 2.43 slw 0 sg (R3) show -gs -3376 2937 3619 3197 R -1 sg fill -gr -3376 3145 m 2.43 slw 0 sg (F4) show -gs -5251 1999 5494 2260 R -1 sg fill -gr -5251 2207 m 2.43 slw 0 sg (F1) show -gs -6486 4914 6729 5174 R -1 sg fill -gr -6486 5122 m 2.43 slw 0 sg (F3) show -gs -7438 3171 7681 3432 R -1 sg fill -gr -7438 3379 m 2.43 slw 0 sg (F2) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob09.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob09.gif deleted file mode 100755 index 564582489..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob09.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob09.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob09.pdf deleted file mode 100644 index 3f6c0866d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob09.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob10.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob10.eps deleted file mode 100755 index bb8d7ac4c..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob10.eps +++ /dev/null @@ -1,405 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Balance.eps -%%CreationDate: 5/16/1996 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%BoundingBox:123 498 455 628 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -3116 3116 3168 3377 R -1 sg fill -gr -/_Times-Roman ff [243 0 0 -243 0 0] mf sf -3116 3306 m 0 sg (l) show -gs -3220 3229 3307 3438 R -1 sg fill -gr -/_Times-Roman ff [174 0 0 -174 0 0] mf sf -3220 3385 m 0 sg (1) show -gs -5633 3100 5686 3360 R -1 sg fill -gr -/_Times-Roman ff [243 0 0 -243 0 0] mf sf -5633 3290 m 0 sg (l) show -gs -5738 3221 5824 3429 R -1 sg fill -gr -/_Times-Roman ff [174 0 0 -174 0 0] mf sf -5738 3377 m 0 sg (2) show -gs -2517 3403 7517 3481 R -0 0 0 1 1 1 [76 210 83 45 150 89 70 179] patfill -gr -gs -2517.625 3403.625 7517.375 3481.375 R -1.25 slw 0 sg str -gr -gs -2517.625 3481.625 m -2517.625 4419.625 L -1.25 slw 0 sg str -gr -gs -7517.625 3481.625 m -7517.625 4419.625 L -1.25 slw 0 sg str -gr -gs -2204 4419 2829 5044 R -0.5 sg fill -gr -gs -2204.625 4419.625 2829.375 5044.375 R -1.25 slw 0 sg str -gr -gs -7205 4419 7830 5044 R -0.5 sg fill -gr -gs -7205.625 4419.625 7830.375 5044.375 R -1.25 slw 0 sg str -gr -gs -3767 3793 4079 3793 3923 3481 3767 3793 3 P closepath -0 sg fill -gr -gs -3767 3793 4079 3793 3923 3481 3767 3793 3 P closepath -1.25 slw 0 sg str -gr -gs -3923.625 3247.625 m -5408.625 3247.625 L -1.25 slw 0 sg str -gr -gs -6033.625 3247.625 m -7517.625 3247.625 L -1.25 slw 0 sg str -gr -gs -3923.625 3247.625 m -3454.625 3247.625 L -1.25 slw 0 sg str -gr -gs -2986.625 3247.625 m -2517.625 3247.625 L -1.25 slw 0 sg str -gr -gs -2517.625 3090.625 m -2517.625 3403.625 L -1.25 slw 0 sg str -gr -gs -3923.625 3090.625 m -3923.625 3481.625 L -1.25 slw 0 sg str -gr -gs -7517.625 3090.625 m -7517.625 3403.625 L -1.25 slw 0 sg str -gr -gs -7439 4601 7613 4861 R -1 sg fill -gr -/_Times-Roman ff [243 0 0 -243 0 0] mf sf -7439 4791 m 0 sg (m) show -gs -2430 4601 2604 4861 R -1 sg fill -gr -2430 4791 m 2.43 slw 0 sg (m) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob10.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob10.gif deleted file mode 100755 index 04521d39d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob10.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob10.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob10.pdf deleted file mode 100644 index 2c4738520..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob10.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob12.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob12.eps deleted file mode 100755 index 388b7a1be..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob12.eps +++ /dev/null @@ -1,421 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Balance.eps -%%CreationDate: 8/13/1996 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%BoundingBox:123 498 455 630 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -2517 3403 7517 3481 R -0 0 0 1 1 1 [76 210 83 45 150 89 70 179] patfill -gr -gs -2517.625 3403.625 7517.375 3481.375 R -1.25 slw 0 sg str -gr -gs -2517.625 3481.625 m -2517.625 4419.625 L -1.25 slw 0 sg str -gr -gs -7517.625 3481.625 m -7517.625 4419.625 L -1.25 slw 0 sg str -gr -gs -7205 4419 7830 5044 R -0.5 sg fill -gr -gs -7205.625 4419.625 7830.375 5044.375 R -1.25 slw 0 sg str -gr -gs -5876 3793 6189 3793 6033 3481 5876 3793 3 P closepath -0 sg fill -gr -gs -5876 3793 6189 3793 6033 3481 5876 3793 3 P closepath -1.25 slw 0 sg str -gr -gs -6111.625 3247.625 m -4626.625 3247.625 L -1.25 slw 0 sg str -gr -gs -4001.625 3247.625 m -2517.625 3247.625 L -1.25 slw 0 sg str -gr -gs -6111.625 3247.625 m -6580.625 3247.625 L -1.25 slw 0 sg str -gr -gs -7048.625 3247.625 m -7517.625 3247.625 L -1.25 slw 0 sg str -gr -gs -7517.625 3090.625 m -7517.625 3403.625 L -1.25 slw 0 sg str -gr -gs -6033.625 3051.625 m -6033.625 3442.625 L -1.25 slw 0 sg str -gr -gs -2517.625 3090.625 m -2517.625 3403.625 L -1.25 slw 0 sg str -gr -gs -4236 3077 4288 3338 R -1 sg fill -gr -/_Times-Roman ff [243 0 0 -243 0 0] mf sf -4236 3267 m 0 sg (l) show -gs -4340 3190 4426 3399 R -1 sg fill -gr -/_Times-Roman ff [174 0 0 -174 0 0] mf sf -4340 3346 m 0 sg (1) show -gs -6735 3073 6787 3334 R -1 sg fill -gr -/_Times-Roman ff [243 0 0 -243 0 0] mf sf -6735 3263 m 0 sg (l) show -gs -6840 3194 6927 3403 R -1 sg fill -gr -/_Times-Roman ff [174 0 0 -174 0 0] mf sf -6840 3350 m 0 sg (2) show -gs -7380 4594 7654 4868 R -1 sg fill -gr -gs -7380.625 4594.625 7654.375 4868.375 R -1.25 slw 1 sg str -gr -gs -2204 4419 2829 5044 R -0.5 sg fill -gr -gs -2204.625 4419.625 2829.375 5044.375 R -1.25 slw 0 sg str -gr -gs -2380 4594 2654 4868 R -1 sg fill -gr -gs -2380.625 4594.625 2654.375 4868.375 R -1.25 slw 1 sg str -gr -gs -2430 4601 2604 4861 R -1 sg fill -gr -/_Times-Roman ff [243 0 0 -243 0 0] mf sf -2430 4791 m 0 sg (m) show -gs -7430 4601 7604 4861 R -1 sg fill -gr -7430 4791 m 2.43 slw 0 sg (m) olshow -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob12.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob12.gif deleted file mode 100755 index be97faf37..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob12.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob12.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob12.pdf deleted file mode 100644 index 908f64727..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob12.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob13a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob13a.eps deleted file mode 100755 index 2ffbdfeb2..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob13a.eps +++ /dev/null @@ -1,415 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: mdt3p3f.eps -%%CreationDate: 11/7/1994 -%%Pages: 0 -%%DocumentFonts: Times-Italic -%%BoundingBox:181 432 410 630 -%%EndComments -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Italic Times-Italic -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Italic/Times-Italic 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -3437 3064 6875 3376 R -0 sg fill -gr -gs -3437.625 3064.625 6875.375 3376.375 R -1.25 slw 0 sg str -gr -gs -3906.625 3376.625 m -3906.625 5252.625 L -1.25 slw 0 sg str -gr -gs -6406.625 3376.625 m -6406.625 5252.625 L -1.25 slw 0 sg str -gr -gs -3906 5252 6406 5408 R -0 0 0 1 1 1 [76 210 83 45 150 89 70 179] patfill -gr -gs -3906.625 5252.625 6406.375 5408.375 R -1.25 slw 0 sg str -gr -gs -3437.625 5252.625 m -3750.625 5252.625 L -1.25 slw 0 sg str -gr -gs -3593 5252 3519 5094 3667 5094 2 P -0 sg fill -gr -gs -3593 3376 3667 3534 3519 3534 2 P -0 sg fill -gr -gs -3593.625 5252.625 m -3593.625 3376.625 L -1.25 slw 0 sg str -gr -gs -3906.625 5564.625 m -3906.625 5877.625 L -1.25 slw 0 sg str -gr -gs -6406.625 5564.625 m -6406.625 5877.625 L -1.25 slw 0 sg str -gr -gs -6406 5720 6248 5794 6248 5646 2 P -0 sg fill -gr -gs -3906 5720 4064 5646 4064 5794 2 P -0 sg fill -gr -gs -6406.625 5720.625 m -3906.625 5720.625 L -1.25 slw 0 sg str -gr -gs -4002 4982 4123 5208 R -1 sg fill -gr -/_Times-Italic ff [208 0 0 -208 0 0] mf sf -4002 5138 m 0 sg (A) show -gs -6189 4982 6310 5208 R -1 sg fill -gr -6189 5138 m 0 sg (B) show -gs -5104 5790 5208 6016 R -1 sg fill -gr -5104 5946 m 0 sg (L) show -gs -3385 4201 3489 4427 R -1 sg fill -gr -3385 4357 m 0 sg (d) show -gs -0 slc -newpath -6718.5 3689 m -6498 3468 6939 3910 205 295 A -1 sg fill -gr -gs -0 slc -newpath -6498.625 3468.625 6939.375 3910.375 205 295 A -1.25 slw 0 sg str -gr -gs -6812.625 3889.625 m -6078.625 3622.625 L -1.25 slw 0 sg str -gr -gs -6518 3729 6538 3694 6552 3677 6566 3662 6582 3648 6599 3636 6617 3626 6636 3617 -6656 3610 6677 3605 6697 3602 6719 3601 6740 3602 6760 3605 6781 3610 6801 3617 -6812 3622 6719 3822 17 P -1 sg fill -gr -gs -6518 3729 6538 3694 6552 3677 6566 3662 6582 3648 6599 3636 6617 3626 6636 3617 -6656 3610 6677 3605 6697 3602 6719 3601 6740 3602 6760 3605 6781 3610 6801 3617 -6812 3622 16 P -1.25 slw 0 sg str -gr -gs -6812.625 3622.625 m -6078.625 3889.625 L -1.25 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob13a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob13a.gif deleted file mode 100755 index 5410d77d6..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob13a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob13a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob13a.pdf deleted file mode 100644 index 7c24de2a4..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob13a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob13b.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob13b.eps deleted file mode 100755 index 4041fbd0b..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob13b.eps +++ /dev/null @@ -1,463 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: mdt3p4f.eps -%%CreationDate: 11/7/1994 -%%Pages: 0 -%%DocumentFonts: Times-Italic -%%+ Times-Roman -%%BoundingBox:143 510 372 697 -%%EndComments -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Italic Times-Italic -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Italic/Times-Italic 0 Z -%%EndEncoding -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -2777 1900 6215 2212 R -0 sg fill -gr -gs -2777.625 1900.625 6215.375 2212.375 R -1.25 slw 0 sg str -gr -gs -3246.625 2212.625 m -3246.625 4088.625 L -1.25 slw 0 sg str -gr -gs -2777.625 4088.625 m -3090.625 4088.625 L -1.25 slw 0 sg str -gr -gs -2933 4088 2859 3930 3007 3930 2 P -0 sg fill -gr -gs -2933 2212 3007 2370 2859 2370 2 P -0 sg fill -gr -gs -2933.625 4088.625 m -2933.625 2212.625 L -1.25 slw 0 sg str -gr -gs -3342 3740 3463 3966 R -1 sg fill -gr -/_Times-Italic ff [208 0 0 -208 0 0] mf sf -3342 3896 m 0 sg (A) show -gs -5607 2959 5729 3185 R -1 sg fill -gr -5607 3115 m 0 sg (B) show -gs -4678 4053 4782 4279 R -1 sg fill -gr -4678 4209 m 0 sg (L) show -gs -2725 3037 2829 3263 R -1 sg fill -gr -2725 3193 m 0 sg (d) show -gs -0 slc -newpath -5867.5 2432 m -5647 2211 6088 2653 205 295 A -1 sg fill -gr -gs -0 slc -newpath -5647.625 2211.625 6088.375 2653.375 205 295 A -1.25 slw 0 sg str -gr -gs -5961.625 2632.625 m -5227.625 2364.625 L -1.25 slw 0 sg str -gr -gs -5667 2471 5687 2436 5701 2420 5715 2405 5731 2391 5748 2379 5766 2368 5785 2360 -5805 2353 5826 2348 5846 2345 5867 2344 5889 2345 5909 2348 5930 2353 5950 2360 -5961 2364 5867 2565 17 P -1 sg fill -gr -gs -5667 2471 5687 2436 5701 2420 5715 2405 5731 2391 5748 2379 5766 2368 5785 2360 -5805 2353 5826 2348 5846 2345 5867 2344 5889 2345 5909 2348 5930 2353 5950 2360 -5961 2364 16 P -1.25 slw 0 sg str -gr -gs -5961.625 2364.625 m -5227.625 2632.625 L -1.25 slw 0 sg str -gr -gs -3246 4086 5564 3150 5623 3295 3304 4231 3246 4086 4 P closepath -0 0 0 1 1 1 [76 210 83 45 150 89 70 179] patfill -gr -gs -3246 4086 5564 3150 5623 3295 3304 4231 3246 4086 4 P closepath -1.25 slw 0 sg str -gr -gs -3363.625 4376.625 m -3480.625 4666.625 L -1.25 slw 0 sg str -gr -gs -5681.625 3439.625 m -5798.625 3729.625 L -1.25 slw 0 sg str -gr -gs -5740 3585 5621 3712 5566 3576 2 P -0 sg fill -gr -gs -3422 4521 3541 4394 3596 4530 2 P -0 sg fill -gr -gs -5740.625 3585.625 m -3422.625 4521.625 L -1.25 slw 0 sg str -gr -gs -5564.625 3150.625 m -5564.625 2212.625 L -1.25 slw 0 sg str -gr -gs -5433.625 3150.625 m -4965.625 3150.625 L -1.25 slw 0 sg str -gr -gs -5121 3150 5047 2992 5195 2992 2 P -0 sg fill -gr -gs -5121 2212 5195 2370 5047 2370 2 P -0 sg fill -gr -gs -5121.625 3150.625 m -5121.625 2212.625 L -1.25 slw 0 sg str -gr -gs -4756 2568 5017 2794 R -1 sg fill -gr -/_Times-Italic ff [208 0 0 -208 0 0] mf sf -4756 2724 m 0 sg (d/2) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob13b.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob13b.gif deleted file mode 100755 index 61a0e6a93..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob13b.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob13b.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob13b.pdf deleted file mode 100644 index 1fbbebace..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob13b.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob14a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob14a.eps deleted file mode 100755 index 392c24cd2..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob14a.eps +++ /dev/null @@ -1,479 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Blob.eps -%%CreationDate: 5/3/1996 -%%Pages: 0 -%%DocumentFonts: Helvetica -%%BoundingBox:183 479 393 644 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica/Helvetica 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -4149 3290 4125 3311 4106 3338 4090 3370 4078 3409 4070 3452 4066 3502 4065 3557 -4068 3618 4074 3684 4085 3756 4099 3834 4117 3917 4138 4006 4164 4101 4193 4201 -4226 4307 4261 4410 4297 4505 4334 4589 4373 4664 4412 4729 4453 4785 4494 4831 -4537 4868 4580 4894 4625 4912 4670 4919 4717 4917 4764 4905 4813 4884 4863 4853 -4914 4813 4965 4769 5016 4729 5067 4691 5117 4658 5168 4627 5218 4600 5268 4576 -5318 4555 5367 4537 5417 4523 5466 4512 5515 4504 5564 4500 5612 4498 5660 4500 -5709 4506 5754 4510 5795 4509 5832 4504 5863 4493 5890 4477 5912 4456 5930 4430 -5943 4399 5951 4363 5954 4321 5953 4275 5947 4223 5936 4167 5921 4105 5900 4038 -5876 3967 5848 3896 5819 3833 5790 3778 5760 3730 5729 3690 5697 3658 5664 3634 -5631 3618 5596 3609 5561 3607 5525 3614 5488 3628 5450 3650 5411 3680 5372 3717 -5332 3763 5291 3808 5250 3846 5209 3878 5169 3902 5128 3920 5087 3930 5046 3934 -5006 3930 4965 3919 4924 3902 4883 3877 4842 3845 4801 3807 4760 3761 4719 3708 -4678 3649 4637 3588 4597 3532 4558 3481 4521 3436 4484 3396 4448 3360 4414 3330 -4380 3305 4348 3285 4316 3271 4286 3261 4256 3256 4228 3257 4200 3263 4174 3274 -4149 3290 112 P closepath -0.75 sg fill -gr -gs -4132 3273 4108 3294 4089 3321 4073 3353 4061 3392 4053 3435 4049 3485 4048 3540 -4051 3601 4057 3667 4068 3739 4082 3817 4100 3900 4121 3989 4147 4084 4176 4184 -4209 4290 4244 4393 4280 4488 4317 4572 4356 4647 4395 4712 4436 4768 4477 4814 -4520 4851 4563 4877 4608 4895 4653 4902 4700 4900 4747 4888 4796 4867 4846 4836 -4897 4796 4948 4752 4999 4712 5050 4674 5100 4641 5151 4610 5201 4583 5251 4559 -5301 4538 5350 4520 5400 4506 5449 4495 5498 4487 5547 4483 5595 4481 5643 4483 -5692 4489 5737 4493 5778 4492 5815 4487 5846 4476 5873 4460 5895 4439 5913 4413 -5926 4382 5934 4346 5937 4304 5936 4258 5930 4206 5919 4150 5904 4088 5883 4021 -5859 3950 5831 3879 5802 3816 5773 3761 5743 3713 5712 3673 5680 3641 5647 3617 -5614 3601 5579 3592 5544 3590 5508 3597 5471 3611 5433 3633 5394 3663 5355 3700 -5315 3746 5274 3791 5233 3829 5192 3861 5152 3885 5111 3903 5070 3913 5029 3917 -4989 3913 4948 3902 4907 3885 4866 3860 4825 3828 4784 3790 4743 3744 4702 3691 -4661 3632 4620 3571 4580 3515 4541 3464 4504 3419 4467 3379 4431 3343 4397 3313 -4363 3288 4331 3268 4299 3254 4269 3244 4239 3239 4211 3240 4183 3246 4157 3257 -4132 3273 112 P closepath -35 slw 0 sg str -gr -gs -4329 3809 4465 4067 R -1 sg fill -gr -gs -4537 2837 4582 3005 4492 3005 2 P -0 sg fill -gr -gs -4537.625 3005.625 m -4537.625 5181.625 L -1.25 slw 0 sg str -gr -gs -6568 4399 6400 4444 6400 4354 2 P -0 sg fill -gr -gs -3443.625 4399.625 m -6400.625 4399.625 L -1.25 slw 0 sg str -gr -gs -6275 3930 6107 3975 6107 3885 2 P -0 sg fill -gr -gs -5631.25 3930.25 m -6107.25 3930.25 L -52.5 slw 0 sg str -gr -gs -6039 3594 6160 3837 R -1 sg fill -gr -/_Helvetica ff [208 0 0 -208 0 0] mf sf -6039 3767 m 0 sg (F) show -gs -5631.625 3930.625 m -5631.625 3981.625 L -1.25 slw 0 sg str -gr -gs -5631.625 4034.625 m -5631.625 4085.625 L -1.25 slw 0 sg str -gr -gs -5631.625 4138.625 m -5631.625 4189.625 L -1.25 slw 0 sg str -gr -gs -5631.625 4242.625 m -5631.625 4294.625 L -1.25 slw 0 sg str -gr -gs -5631.625 4347.625 m -5631.625 4398.625 L -1.25 slw 0 sg str -gr -gs -5631.625 3930.625 m -5580.625 3930.625 L -1.25 slw 0 sg str -gr -gs -5527.625 3930.625 m -5476.625 3930.625 L -1.25 slw 0 sg str -gr -gs -5423.625 3930.625 m -5372.625 3930.625 L -1.25 slw 0 sg str -gr -gs -5319.625 3930.625 m -5267.625 3930.625 L -1.25 slw 0 sg str -gr -gs -5214.625 3930.625 m -5163.625 3930.625 L -1.25 slw 0 sg str -gr -gs -5110.625 3930.625 m -5059.625 3930.625 L -1.25 slw 0 sg str -gr -gs -5006.625 3930.625 m -4955.625 3930.625 L -1.25 slw 0 sg str -gr -gs -4902.625 3930.625 m -4851.625 3930.625 L -1.25 slw 0 sg str -gr -gs -4798.625 3930.625 m -4747.625 3930.625 L -1.25 slw 0 sg str -gr -gs -4694.625 3930.625 m -4642.625 3930.625 L -1.25 slw 0 sg str -gr -gs -4589.625 3930.625 m -4538.625 3930.625 L -1.25 slw 0 sg str -gr -gs -4381 2993 4485 3236 R -1 sg fill -gr -4381 3166 m 2.08 slw 0 sg (y) show -gs -6204 4434 6308 4677 R -1 sg fill -gr -6204 4607 m 2.08 slw 0 sg (x) show -4329 3982 m 0 sg (y) show -/_Helvetica ff [104 0 0 -104 0 0] mf sf -4413 4053 m 0 sg (0) show -gs -5520 4454 5624 4696 R -1 sg fill -gr -/_Helvetica ff [208 0 0 -208 0 0] mf sf -5520 4627 m 0 sg (x) show -gs -5631 4595 5683 4716 R -1 sg fill -gr -/_Helvetica ff [104 0 0 -104 0 0] mf sf -5631 4681 m 0 sg (0) show -gs -4498 4360 4576 4438 OV -0 sg fill -gr -gs -4498.625 4360.625 4576.375 4438.375 OV -1.25 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob14a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob14a.gif deleted file mode 100755 index cbe38b4a5..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob14a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob14a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob14a.pdf deleted file mode 100644 index 8c836df8e..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob14a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob15a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob15a.eps deleted file mode 100755 index 4ba1dbd18..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob15a.eps +++ /dev/null @@ -1,443 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: atwood.eps -%%CreationDate: 3/26/1996 -%%Pages: 0 -%%DocumentFonts: Helvetica -%%BoundingBox:240 458 448 706 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica/Helvetica 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -5337 1961 6735 3359 OV -0.5 sg fill -gr -gs -5337.5 1961.5 6735.5 3359.5 OV -35 slw 0 sg str -gr -gs -4473 1566 7598 1878 R -0.25 sg fill -gr -gs -4473.625 1566.625 7598.375 1878.375 R -1.25 slw 0 sg str -gr -gs -5411 1878 5879 2972 6192 2972 6661 1878 5411 1878 4 P closepath -0 0 0 1 1 1 [8 66 0 144 4 64 16 1] patfill -gr -gs -5411 1878 5879 2972 6192 2972 6661 1878 5411 1878 4 P closepath -1.25 slw 0 sg str -gr -gs -5919 2543 6153 2777 OV -0.5 sg fill -gr -gs -5919.625 2543.625 6153.375 2777.375 OV -1.25 slw 0 sg str -gr -gs -6735.5 2660.5 m -6735.5 4066.5 L -35 slw 0 sg str -gr -gs -6834 2321 7112 2686 R -1 sg fill -gr -/_Helvetica ff [347 0 0 -347 0 0] mf sf -6834 2581 m 0 sg (M) show -gs -7225 4196 7694 4561 R -1 sg fill -gr -7225 4456 m 3.47 slw 0 sg (m2) show -gs -6407 4027 7032 4730 R -0 0 0 1 1 1 [8 66 0 144 4 64 16 1] patfill -gr -gs -6407.625 4027.625 7032.375 4730.375 R -1.25 slw 0 sg str -gr -gs -6837 4027 6915 4730 R -0.96 sg fill -gr -gs -6407 4027 6524 4730 R -0.5 sg fill -gr -gs -6563.625 4027.625 m -6563.625 4730.625 L -1.25 slw 0 sg str -gr -gs -6680.625 4027.625 m -6680.625 4730.625 L -1.25 slw 0 sg str -gr -gs -6993.625 4027.625 m -6993.625 4730.625 L -1.25 slw 0 sg str -gr -gs -6465.625 4027.625 m -6465.625 4730.625 L -1.25 slw 0 sg str -gr -gs -6407.625 4027.625 m -6407.625 4730.625 L -1.25 slw 0 sg str -gr -gs -6407.625 4027.625 m -7032.625 4027.625 L -1.25 slw 0 sg str -gr -gs -5337.5 2660.5 m -5337.5 4535.5 L -35 slw 0 sg str -gr -gs -4399 4925 4868 5290 R -1 sg fill -gr -4399 5185 m 0 sg (m1) show -gs -5009 4535 5634 5550 R -0 0 0 1 1 1 [8 66 0 144 4 64 16 1] patfill -gr -gs -5009.625 4535.625 5634.375 5550.375 R -1.25 slw 0 sg str -gr -gs -5439 4535 5517 5550 R -0.96 sg fill -gr -gs -5009 4535 5126 5550 R -0.5 sg fill -gr -gs -5165.625 4535.625 m -5165.625 5550.625 L -1.25 slw 0 sg str -gr -gs -5283.625 4535.625 m -5283.625 5550.625 L -1.25 slw 0 sg str -gr -gs -5595.625 4535.625 m -5595.625 5550.625 L -1.25 slw 0 sg str -gr -gs -5068.625 4535.625 m -5068.625 5550.625 L -1.25 slw 0 sg str -gr -gs -5009.625 4535.625 m -5009.625 5550.625 L -1.25 slw 0 sg str -gr -gs -5009.625 4535.625 m -5634.625 4535.625 L -1.25 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob15a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob15a.gif deleted file mode 100755 index 26fe455b2..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob15a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob15a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob15a.pdf deleted file mode 100644 index 27529620a..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob15a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob16a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob16a.eps deleted file mode 100755 index 3f178c73d..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob16a.eps +++ /dev/null @@ -1,356 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: mdt3p1f.eps -%%CreationDate: 11/7/1994 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%BoundingBox:167 438 270 660 -%%EndComments -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -3142 3133 4392 4383 OV -0.75 sg fill -gr -gs -3142.5 3133.5 4392.5 4383.5 OV -35 slw 0 sg str -gr -gs -3611 3602 3923 3914 OV -1 sg fill -gr -gs -3611.625 3602.625 3923.375 3914.375 OV -1.25 slw 0 sg str -gr -gs -4392 5633 4318 5475 4466 5475 2 P -0 sg fill -gr -gs -4392.625 3758.625 m -4392.625 5633.625 L -1.25 slw 0 sg str -gr -gs -4340 5676 4444 5902 R -1 sg fill -gr -/_Times-Roman ff [208 0 0 -208 0 0] mf sf -4340 5832 m 0 sg (F) show -gs -3680 4426 3854 4652 R -1 sg fill -gr -3680 4582 m 0 sg (M) show -gs -4010 2551 4149 2777 R -1 sg fill -gr -4010 2707 m 0 sg (R) show -gs -3767.625 2977.625 m -3767.625 2664.625 L -1.25 slw 0 sg str -gr -gs -4392.625 3445.625 m -4392.625 2664.625 L -1.25 slw 0 sg str -gr -gs -3767 2820 3925 2746 3925 2894 2 P -0 sg fill -gr -gs -4392 2820 4234 2894 4234 2746 2 P -0 sg fill -gr -gs -3767.625 2820.625 m -4392.625 2820.625 L -1.25 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob16a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob16a.gif deleted file mode 100755 index dcaae4e54..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob16a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob16a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob16a.pdf deleted file mode 100644 index 571eee871..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob16a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob16b.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob16b.eps deleted file mode 100755 index 6aa4e6375..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob16b.eps +++ /dev/null @@ -1,360 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: mdt3p2f.eps -%%CreationDate: 11/7/1994 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%BoundingBox:167 422 285 628 -%%EndComments -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -3142 3689 4392 4939 OV -0.75 sg fill -gr -gs -3142.5 3689.5 4392.5 4939.5 OV -35 slw 0 sg str -gr -gs -3611 4158 3923 4470 OV -1 sg fill -gr -gs -3611.625 4158.625 3923.375 4470.375 OV -1.25 slw 0 sg str -gr -gs -4392.625 4314.625 m -4392.625 6189.625 L -1.25 slw 0 sg str -gr -gs -3680 4982 3854 5208 R -1 sg fill -gr -/_Times-Roman ff [208 0 0 -208 0 0] mf sf -3680 5138 m 0 sg (M) show -gs -4010 3107 4149 3333 R -1 sg fill -gr -4010 3263 m 0 sg (R) show -gs -3767.625 3533.625 m -3767.625 3220.625 L -1.25 slw 0 sg str -gr -gs -4392.625 4001.625 m -4392.625 3220.625 L -1.25 slw 0 sg str -gr -gs -3767 3376 3925 3302 3925 3450 2 P -0 sg fill -gr -gs -4392 3376 4234 3450 4234 3302 2 P -0 sg fill -gr -gs -3767.625 3376.625 m -4392.625 3376.625 L -1.25 slw 0 sg str -gr -gs -4079 5564 4704 6189 R -0.93 sg fill -gr -gs -4079.625 5564.625 4704.375 6189.375 R -1.25 slw 0 sg str -gr -gs -4314 5764 4470 5989 R -1 sg fill -gr -4314 5920 m 0 sg (m) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob16b.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob16b.gif deleted file mode 100755 index 2b79241d3..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob16b.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob16b.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob16b.pdf deleted file mode 100644 index 030ec4156..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob16b.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob21.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob21.eps deleted file mode 100755 index 3214d1384..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob21.eps +++ /dev/null @@ -1,2186 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 2059 2087 2612 2538 -%%Creator: CorelDRAW! -%%Title: BACKBONE.EPS from CorelDRAW! -%%CreationDate: Fri Oct 27 09:44:36 1995 -%%DocumentProcessColors: Cyan Magenta Yellow Black -%%DocumentFonts: Symbol -%%EndComments -%%BeginSetup -/AutoFlatness true def -% Options: Emulsion Up -% Options: Print Positive Output -/SepsColor false def -/ATraps false def -%%EndSetup -%%BeginProlog -/Corelreg true def -% Copyright (c)1992, 1993 Corel Corporation. All rights reserved. -/wCorel4Dict 300 dict def wCorel4Dict begin/bd{bind def}bind def/ld{load def} -bd/xd{exch def}bd/_ null def/rp{{pop}repeat}bd/@cp/closepath ld/@gs/gsave ld -/@gr/grestore ld/@np/newpath ld/Tl/translate ld/$sv 0 def/@sv{/$sv save def}bd -/@rs{$sv restore}bd/spg/showpage ld/showpage{}bd currentscreen/@dsp xd/$dsp -/@dsp def/$dsa xd/$dsf xd/$sdf false def/$SDF false def/$Scra 0 def/SetScr -/setscreen ld/setscreen{3 rp}bd/@ss{2 index 0 eq{$dsf 3 1 roll 4 -1 roll pop} -if exch $Scra add exch load SetScr}bd/SepMode where{pop}{/SepMode 0 def}ifelse -/CurrentInkName where{pop}{/CurrentInkName(Composite)def}ifelse/$ink where -{pop}{/$ink -1 def}ifelse/$c 0 def/$m 0 def/$y 0 def/$k 0 def/$t 1 def/$n _ def -/$o 0 def/$fil 0 def/$C 0 def/$M 0 def/$Y 0 def/$K 0 def/$T 1 def/$N _ def/$O 0 -def/$PF false def/s1c 0 def/s1m 0 def/s1y 0 def/s1k 0 def/s1t 0 def/s1n _ def -/$bkg false def/SK 0 def/SM 0 def/SY 0 def/SC 0 def/$op false def matrix -currentmatrix/$ctm xd/$ptm matrix def/$ttm matrix def/$stm matrix def/$fst 128 -def/$pad 0 def/$rox 0 def/$roy 0 def/$ffpnt true def/CorelDrawReencodeVect[ -16#0/grave 16#5/breve 16#6/dotaccent 16#8/ring 16#A/hungarumlaut 16#B/ogonek -16#C/caron 16#D/dotlessi -16#82/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl -16#88/circumflex/perthousand/Scaron/guilsinglleft/OE -16#91/quoteleft/quoteright/quotedblleft/quotedblright/bullet/endash/emdash -16#98/tilde/trademark/scaron/guilsinglright/oe 16#9F/Ydieresis -16#A1/exclamdown/cent/sterling/currency/yen/brokenbar/section -16#a8/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/minus/registered/macron -16#b0/degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered -16#b8/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown -16#c0/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla -16#c8/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -16#d0/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply -16#d8/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls -16#e0/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla -16#e8/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis -16#f0/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide -16#f8/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis]def -AutoFlatness{/@ifl{dup currentflat exch sub 10 gt{ -([Error: PathTooComplex; OffendingCommand: AnyPaintingOperator]\n)print flush -@np exit}{currentflat 2 add setflat}ifelse}bd/@fill/fill ld/fill{currentflat{ -{@fill}stopped{@ifl}{exit}ifelse}bind loop setflat}bd/@eofill/eofill ld/eofill -{currentflat{{@eofill}stopped{@ifl}{exit}ifelse}bind loop setflat}bd/@clip -/clip ld/clip{currentflat{{@clip}stopped{@ifl}{exit}ifelse}bind loop setflat} -bd/@eoclip/eoclip ld/eoclip{currentflat{{@eoclip}stopped{@ifl}{exit}ifelse} -bind loop setflat}bd/@stroke/stroke ld/stroke{currentflat{{@stroke}stopped -{@ifl}{exit}ifelse}bind loop setflat}bd}if/d/setdash ld/j/setlinejoin ld/J -/setlinecap ld/M/setmiterlimit ld/w/setlinewidth ld/O{/$o xd}bd/R{/$O xd}bd/W -/eoclip ld/c/curveto ld/C/c ld/l/lineto ld/L/l ld/rl/rlineto ld/m/moveto ld/n -/newpath ld/N/newpath ld/P{11 rp}bd/u{}bd/U{}bd/A{pop}bd/q/@gs ld/Q/@gr ld/` -{}bd/~{}bd/@{}bd/&{}bd/@j{@sv @np}bd/@J{@rs}bd/g{1 exch sub/$k xd/$c 0 def/$m 0 -def/$y 0 def/$t 1 def/$n _ def/$fil 0 def}bd/G{1 sub neg/$K xd _ 1 0 0 0/$C xd -/$M xd/$Y xd/$T xd/$N xd}bd/k{1 index type/stringtype eq{/$t xd/$n xd}{/$t 0 -def/$n _ def}ifelse/$k xd/$y xd/$m xd/$c xd/$fil 0 def}bd/K{1 index type -/stringtype eq{/$T xd/$N xd}{/$T 0 def/$N _ def}ifelse/$K xd/$Y xd/$M xd/$C xd -}bd/x/k ld/X/K ld/sf{1 index type/stringtype eq{/s1t xd/s1n xd}{/s1t 0 def/s1n -_ def}ifelse/s1k xd/s1y xd/s1m xd/s1c xd}bd/i{dup 0 ne{setflat}{pop}ifelse}bd -/v{4 -2 roll 2 copy 6 -2 roll c}bd/V/v ld/y{2 copy c}bd/Y/y ld/@w{matrix rotate -/$ptm xd matrix scale $ptm dup concatmatrix/$ptm xd 1 eq{$ptm exch dup -concatmatrix/$ptm xd}if 1 w}bd/@g{1 eq dup/$sdf xd{/$scp xd/$sca xd/$scf xd}if -}bd/@G{1 eq dup/$SDF xd{/$SCP xd/$SCA xd/$SCF xd}if}bd/@D{2 index 0 eq{$dsf 3 1 -roll 4 -1 roll pop}if 3 copy exch $Scra add exch load SetScr/$dsp xd/$dsa xd -/$dsf xd}bd/$ngx{$SDF{$SCF SepMode 0 eq{$SCA}{$dsa}ifelse $SCP @ss}if}bd/p{ -/$pm xd 7 rp/$pyf xd/$pxf xd/$pn xd/$fil 1 def}bd/@MN{2 copy le{pop}{exch pop} -ifelse}bd/@MX{2 copy ge{pop}{exch pop}ifelse}bd/InRange{3 -1 roll @MN @MX}bd -/wDstChck{2 1 roll dup 3 -1 roll eq{1 add}if}bd/@dot{dup mul exch dup mul add 1 -exch sub}bd/@lin{exch pop abs 1 exch sub}bd/cmyk2rgb{3{dup 5 -1 roll add 1 exch -sub dup 0 lt{pop 0}if exch}repeat pop}bd/rgb2cmyk{3{1 exch sub 3 1 roll}repeat -3 copy @MN @MN 3{dup 5 -1 roll sub neg exch}repeat}bd/rgb2g{2 index .299 mul 2 -index .587 mul add 1 index .114 mul add 4 1 roll 3 rp}bd/WaldoColor where{pop} -{/SetRgb/setrgbcolor ld/GetRgb/currentrgbcolor ld/SetGry/setgray ld/GetGry -/currentgray ld/SetRgb2 systemdict/setrgbcolor get def/GetRgb2 systemdict -/currentrgbcolor get def/SetHsb systemdict/sethsbcolor get def/GetHsb -systemdict/currenthsbcolor get def/rgb2hsb{SetRgb2 GetHsb}bd/hsb2rgb{3 -1 roll -dup floor sub 3 1 roll SetHsb GetRgb2}bd/setcmykcolor where{pop/SetCmyk -/setcmykcolor ld}{/SetCmyk{cmyk2rgb SetRgb}bd}ifelse/currentcmykcolor where{ -pop/GetCmyk/currentcmykcolor ld}{/GetCmyk{GetRgb rgb2cmyk}bd}ifelse -/setoverprint where{pop}{/setoverprint{/$op xd}bd}ifelse/currentoverprint where -{pop}{/currentoverprint{$op}bd}ifelse/@tc{5 -1 roll dup 1 ge{pop}{4{dup 6 -1 -roll mul exch}repeat pop}ifelse}bd/@trp{exch pop 5 1 roll @tc}bd -/setprocesscolor{SepMode 0 eq{SetCmyk}{0 4 $ink sub index exch pop 5 1 roll 4 -rp SepsColor true eq{$ink 3 gt{1 sub neg SetGry}{0 0 0 4 $ink roll SetCmyk} -ifelse}{1 sub neg SetGry}ifelse}ifelse}bd/findcmykcustomcolor where{pop}{ -/findcmykcustomcolor{5 array astore}bd}ifelse/setcustomcolor where{pop}{ -/setcustomcolor{exch aload pop SepMode 0 eq{pop @tc setprocesscolor}{ -CurrentInkName eq{4 index}{0}ifelse 6 1 roll 5 rp 1 sub neg SetGry}ifelse}bd} -ifelse/@scc{dup type/booleantype eq{setoverprint}{1 eq setoverprint}ifelse dup -_ eq{pop setprocesscolor pop}{findcmykcustomcolor exch setcustomcolor}ifelse -SepMode 0 eq{true}{GetGry 1 eq currentoverprint and not}ifelse}bd/colorimage -where{pop/ColorImage/colorimage ld}{/ColorImage{/ncolors xd pop/dataaq xd{ -dataaq ncolors dup 3 eq{/$dat xd 0 1 $dat length 3 div 1 sub{dup 3 mul $dat 1 -index get 255 div $dat 2 index 1 add get 255 div $dat 3 index 2 add get 255 div -rgb2g 255 mul cvi exch pop $dat 3 1 roll put}for $dat 0 $dat length 3 idiv -getinterval pop}{4 eq{/$dat xd 0 1 $dat length 4 div 1 sub{dup 4 mul $dat 1 -index get 255 div $dat 2 index 1 add get 255 div $dat 3 index 2 add get 255 div -$dat 4 index 3 add get 255 div cmyk2rgb rgb2g 255 mul cvi exch pop $dat 3 1 -roll put}for $dat 0 $dat length ncolors idiv getinterval}if}ifelse}image}bd -}ifelse/setcmykcolor{1 5 1 roll _ currentoverprint @scc/$ffpnt xd}bd -/currentcmykcolor{0 0 0 0}bd/setrgbcolor{rgb2cmyk setcmykcolor}bd -/currentrgbcolor{currentcmykcolor cmyk2rgb}bd/sethsbcolor{hsb2rgb setrgbcolor} -bd/currenthsbcolor{currentrgbcolor rgb2hsb}bd/setgray{dup dup setrgbcolor}bd -/currentgray{currentrgbcolor rgb2g}bd}ifelse/WaldoColor true def/@sft{$tllx -$pxf add dup $tllx gt{$pwid sub}if/$tx xd $tury $pyf sub dup $tury lt{$phei -add}if/$ty xd}bd/@stb{pathbbox/$ury xd/$urx xd/$lly xd/$llx xd}bd/@ep{{cvx exec -}forall}bd/@tp{@sv/$in true def 2 copy dup $lly le{/$in false def}if $phei sub -$ury ge{/$in false def}if dup $urx ge{/$in false def}if $pwid add $llx le{/$in -false def}if $in{@np 2 copy m $pwid 0 rl 0 $phei neg rl $pwid neg 0 rl 0 $phei -rl clip @np $pn cvlit load aload pop 7 -1 roll 5 index sub 7 -1 roll 3 index -sub Tl matrix currentmatrix/$ctm xd @ep 4 rp}{2 rp}ifelse @rs}bd/@th{@sft 0 1 -$tly 1 sub{dup $psx mul $tx add{dup $llx gt{$pwid sub}{exit}ifelse}loop exch -$phei mul $ty exch sub 0 1 $tlx 1 sub{$pwid mul 3 copy 3 -1 roll add exch @tp -pop}for 2 rp}for}bd/@tv{@sft 0 1 $tlx 1 sub{dup $pwid mul $tx add exch $psy mul -$ty exch sub{dup $ury lt{$phei add}{exit}ifelse}loop 0 1 $tly 1 sub{$phei mul 3 -copy sub @tp pop}for 2 rp}for}bd/@pf{@gs $ctm setmatrix $pm concat @stb eoclip -Bburx Bbury $pm itransform/$tury xd/$turx xd Bbllx Bblly $pm itransform/$tlly -xd/$tllx xd/$wid $turx $tllx sub def/$hei $tury $tlly sub def @gs $vectpat{1 0 -0 0 0 _ $o @scc{eofill}if}{$t $c $m $y $k $n $o @scc{SepMode 0 eq $pfrg or{ -$tllx $tlly Tl $wid $hei scale <00> 8 1 false[8 0 0 1 0 0]{}imagemask}{/$bkg -true def}ifelse}if}ifelse @gr $wid 0 gt $hei 0 gt and{$pn cvlit load aload pop -/$pd xd 3 -1 roll sub/$phei xd exch sub/$pwid xd $wid $pwid div ceiling 1 add -/$tlx xd $hei $phei div ceiling 1 add/$tly xd $psx 0 eq{@tv}{@th}ifelse}if @gr -@np/$bkg false def}bd/@dlt{$fse $fss sub/nff xd $frb dup 1 eq exch 2 eq or{ -$frt dup $frc $frm $fry $frk @tc 4 copy cmyk2rgb rgb2hsb 3 copy/myb xd/mys xd -/myh xd $tot $toc $tom $toy $tok @tc cmyk2rgb rgb2hsb 3 1 roll 4 1 roll 5 1 -roll sub neg nff div/kdb xd sub neg nff div/kds xd sub neg dup 0 eq{pop $frb 2 -eq{.99}{-.99}ifelse}if dup $frb 2 eq exch 0 lt and{1 add}if dup $frb 1 eq exch -0 gt and{1 sub}if nff div/kdh xd}{$frt dup $frc $frm $fry $frk @tc 5 copy $tot -dup $toc $tom $toy $tok @tc 5 1 roll 6 1 roll 7 1 roll 8 1 roll 9 1 roll sub -neg nff dup 1 gt{1 sub}if div/$dk xd sub neg nff dup 1 gt{1 sub}if div/$dy xd -sub neg nff dup 1 gt{1 sub}if div/$dm xd sub neg nff dup 1 gt{1 sub}if div/$dc -xd sub neg nff dup 1 gt{1 sub}if div/$dt xd}ifelse}bd/ffcol{5 copy $fsit 0 eq{ -setcmykcolor pop}{SepMode 0 ne{$frn findcmykcustomcolor exch setcustomcolor}{4 -rp $frc $frm $fry $frk $frn findcmykcustomcolor exch setcustomcolor}ifelse} -ifelse}bd/@ftl{1 index 4 index sub dup $pad mul dup/$pdw xd 2 mul sub $fst div -/$wid xd 2 index sub/$hei xd pop Tl @dlt $fss 0 eq{ffcol n 0 0 m 0 $hei l $pdw -$hei l $pdw 0 l @cp $ffpnt{fill}{@np}ifelse}if $fss $wid mul $pdw add 0 Tl nff -{ffcol n 0 0 m 0 $hei l $wid $hei l $wid 0 l @cp $ffpnt{fill}{@np}ifelse $wid 0 -Tl $frb dup 1 eq exch 2 eq or{4 rp myh mys myb kdb add 3 1 roll kds add 3 1 -roll kdh add 3 1 roll 3 copy/myb xd/mys xd/myh xd hsb2rgb rgb2cmyk}{$dk add 5 1 -roll $dy add 5 1 roll $dm add 5 1 roll $dc add 5 1 roll $dt add 5 1 roll} -ifelse}repeat 5 rp $tot dup $toc $tom $toy $tok @tc ffcol n 0 0 m 0 $hei l $pdw -$hei l $pdw 0 l @cp $ffpnt{fill}{@np}ifelse 5 rp}bd/@ftr{1 index 4 index sub -dup $rox mul/$row xd 2 div 1 index 4 index sub dup $roy mul/$roh xd 2 div 2 -copy dup mul exch dup mul add sqrt $row dup mul $roh dup mul add sqrt add dup -/$hei xd $fst div/$wid xd 4 index add $roh add exch 5 index add $row add exch -Tl 4 rp @dlt $fss 0 eq{ffcol $wid 0 m 0 0 $hei 0 360 arc $ffpnt{fill}{@np} -ifelse}if 1.0 $pad 2 mul sub dup scale $hei $fss $wid mul sub/$hei xd nff{ -ffcol n $wid 0 m 0 0 $hei 0 360 arc $ffpnt{fill}{@np}ifelse/$hei $hei $wid sub -def $frb dup 1 eq exch 2 eq or{4 rp myh mys myb kdb add 3 1 roll kds add 3 1 -roll kdh add 3 1 roll 3 copy/myb xd/mys xd/myh xd hsb2rgb rgb2cmyk}{$dk add 5 1 -roll $dy add 5 1 roll $dm add 5 1 roll $dc add 5 1 roll $dt add 5 1 roll} -ifelse}repeat 5 rp}bd/@ftc{1 index 4 index sub dup $rox mul/$row xd 2 div 1 -index 4 index sub dup $roy mul/$roh xd 2 div 2 copy dup mul exch dup mul add -sqrt $row dup mul $roh dup mul add sqrt add dup/$hei xd $fst div/$wid xd 4 -index add $roh add exch 5 index add $row add exch Tl 4 rp @dlt $fss 0 eq{ffcol -$ffpnt{fill}{@np}ifelse}{n}ifelse/$dang 180 $fst 1 sub div def/$sang $dang -2 -div 180 add def/$eang $dang 2 div 180 add def/$sang $sang $dang $fss mul add -def/$eang $eang $dang $fss mul add def/$sang $eang $dang sub def nff{ffcol n -$wid 0 m 0 0 $hei $sang $fan add $eang $fan add arc $ffpnt{fill}{@np}ifelse -$wid 0 m 0 0 $hei $eang neg $fan add $sang neg $fan add arc $ffpnt{fill}{@np} -ifelse/$sang $eang def/$eang $eang $dang add def $frb dup 1 eq exch 2 eq or{4 -rp myh mys myb kdb add 3 1 roll kds add 3 1 roll kdh add 3 1 roll 3 copy/myb xd -/mys xd/myh xd hsb2rgb rgb2cmyk}{$dk add 5 1 roll $dy add 5 1 roll $dm add 5 1 -roll $dc add 5 1 roll $dt add 5 1 roll}ifelse}repeat 5 rp}bd/@ff{/$fss 0 def $o -1 eq setoverprint 1 1 $fsc 1 sub{dup 1 sub $fsit 0 eq{$fsa exch 5 mul 5 -getinterval aload 2 rp/$frk xd/$fry xd/$frm xd/$frc xd/$frn _ def/$frt 1 def -$fsa exch 5 mul 5 getinterval aload pop $fss add/$fse xd/$tok xd/$toy xd/$tom -xd/$toc xd/$ton _ def/$tot 1 def}{$fsa exch 7 mul 7 getinterval aload 2 rp -/$frt xd/$frn xd/$frk xd/$fry xd/$frm xd/$frc xd $fsa exch 7 mul 7 getinterval -aload pop $fss add/$fse xd/$tot xd/$ton xd/$tok xd/$toy xd/$tom xd/$toc xd} -ifelse $fsit 0 eq SepMode 0 eq or dup not CurrentInkName $frn eq and or{@sv -$ctm setmatrix eoclip Bbllx Bblly Bburx Bbury $fty 2 eq{@ftc}{$fty 1 eq{1 index -3 index m 2 copy l 3 index 1 index l 3 index 3 index l @cp @ftr}{1 index 3 -index m 2 copy l 3 index 1 index l 3 index 3 index l @cp 4 rp $fan rotate -pathbbox @ftl}ifelse}ifelse @rs/$fss $fse def}{1 0 0 0 0 _ $o @scc{fill}if} -ifelse}for @np}bd/@Pf{@sv SepMode 0 eq $ink 3 eq or{0 J 0 j[]0 d $t $c $m $y $k -$n $o @scc pop $ctm setmatrix 72 1000 div dup matrix scale dup concat dup Bburx -exch Bbury exch itransform ceiling cvi/Bbury xd ceiling cvi/Bburx xd Bbllx exch -Bblly exch itransform floor cvi/Bblly xd floor cvi/Bbllx xd $Prm aload pop $Psn -load exec}{1 SetGry eofill}ifelse @rs @np}bd/F{matrix currentmatrix $sdf{$scf -$sca $scp @ss}if $fil 1 eq{@pf}{$fil 2 eq{@ff}{$fil 3 eq{@Pf}{$t $c $m $y $k $n -$o @scc{eofill}{@np}ifelse}ifelse}ifelse}ifelse $sdf{$dsf $dsa $dsp @ss}if -setmatrix}bd/f{@cp F}bd/S{matrix currentmatrix $ctm setmatrix $SDF{$SCF $SCA -$SCP @ss}if $T $C $M $Y $K $N $O @scc{matrix currentmatrix $ptm concat stroke -setmatrix}{@np}ifelse $SDF{$dsf $dsa $dsp @ss}if setmatrix}bd/s{@cp S}bd/B{@gs -F @gr S}bd/b{@cp B}bd/E{5 array astore exch cvlit xd}bd/@cc{currentfile $dat -readhexstring pop}bd/@sm{/$ctm $ctm currentmatrix def}bd/@E{/Bbury xd/Bburx xd -/Bblly xd/Bbllx xd}bd/@c{@cp}bd/@p{/$fil 1 def 1 eq dup/$vectpat xd{/$pfrg true -def}{@gs $t $c $m $y $k $n $o @scc/$pfrg xd @gr}ifelse/$pm xd/$psy xd/$psx xd -/$pyf xd/$pxf xd/$pn xd}bd/@P{/$fil 3 def/$Psn xd array astore/$Prm xd}bd/@k{ -/$fil 2 def/$roy xd/$rox xd/$pad xd/$fty xd/$fan xd $fty 1 eq{/$fan 0 def}if -/$frb xd/$fst xd/$fsc xd/$fsa xd/$fsit 0 def}bd/@x{/$fil 2 def/$roy xd/$rox xd -/$pad xd/$fty xd/$fan xd $fty 1 eq{/$fan 0 def}if/$frb xd/$fst xd/$fsc xd/$fsa -xd/$fsit 1 def}bd/@ii{concat 3 index 3 index m 3 index 1 index l 2 copy l 1 -index 3 index l 3 index 3 index l clip 4 rp}bd/tcc{@cc}def/@i{@sm @gs @ii 6 -index 1 ne{/$frg true def 2 rp}{1 eq{s1t s1c s1m s1y s1k s1n $O @scc/$frg xd}{ -/$frg false def}ifelse 1 eq{@gs $ctm setmatrix F @gr}if}ifelse @np/$ury xd -/$urx xd/$lly xd/$llx xd/$bts xd/$hei xd/$wid xd/$dat $wid $bts mul 8 div -ceiling cvi string def $bkg $frg or{$SDF{$SCF $SCA $SCP @ss}if $llx $lly Tl -$urx $llx sub $ury $lly sub scale $bkg{$t $c $m $y $k $n $o @scc pop}if $wid -$hei abs $bts 1 eq{$bkg}{$bts}ifelse[$wid 0 0 $hei neg 0 $hei 0 -gt{$hei}{0}ifelse]/tcc load $bts 1 eq{imagemask}{image}ifelse $SDF{$dsf $dsa -$dsp @ss}if}{$hei abs{tcc pop}repeat}ifelse @gr $ctm setmatrix}bd/@M{@sv}bd/@N -{/@cc{}def 1 eq{12 -1 roll neg 12 1 roll @I}{13 -1 roll neg 13 1 roll @i} -ifelse @rs}bd/@I{@sm @gs @ii @np/$ury xd/$urx xd/$lly xd/$llx xd/$ncl xd/$bts -xd/$hei xd/$wid xd/$dat $wid $bts mul $ncl mul 8 div ceiling cvi string def -$ngx $llx $lly Tl $urx $llx sub $ury $lly sub scale $wid $hei abs $bts[$wid 0 0 -$hei neg 0 $hei 0 gt{$hei}{0}ifelse]/@cc load false $ncl ColorImage $SDF{$dsf -$dsa $dsp @ss}if @gr $ctm setmatrix}bd/z{exch findfont exch scalefont setfont} -bd/ZB{9 dict dup begin 4 1 roll/FontType 3 def/FontMatrix xd/FontBBox xd -/Encoding 256 array def 0 1 255{Encoding exch/.notdef put}for/CharStrings 256 -dict def CharStrings/.notdef{}put/Metrics 256 dict def Metrics/.notdef 3 -1 -roll put/BuildChar{exch dup/$char exch/Encoding get 3 index get def dup -/Metrics get $char get aload pop setcachedevice begin Encoding exch get -CharStrings exch get end exec}def end definefont pop}bd/ZBAddChar{findfont -begin dup 4 1 roll dup 6 1 roll Encoding 3 1 roll put CharStrings 3 1 roll put -Metrics 3 1 roll put end}bd/Z{findfont dup maxlength 2 add dict exch dup{1 -index/FID ne{3 index 3 1 roll put}{2 rp}ifelse}forall pop dup dup/Encoding get -256 array copy dup/$fe xd/Encoding exch put dup/Fontname 3 index put 3 -1 roll -dup length 0 ne{0 exch{dup type 0 type eq{exch pop}{$fe exch 2 index exch put 1 -add}ifelse}forall pop}if dup 256 dict dup/$met xd/Metrics exch put dup -/FontMatrix get 0 get 1000 mul 1 exch div 3 index length 256 eq{0 1 255{dup $fe -exch get dup/.notdef eq{2 rp}{5 index 3 -1 roll get 2 index mul $met 3 1 roll -put}ifelse}for}if pop definefont pop pop}bd/@ftx{{currentpoint 3 -1 roll(0)dup -3 -1 roll 0 exch put dup @gs true charpath $ctm setmatrix @@txt @gr @np -stringwidth pop 3 -1 roll add exch moveto}forall}bd/@ft{matrix currentmatrix -exch $sdf{$scf $sca $scp @ss}if $fil 1 eq{/@@txt/@pf ld @ftx}{$fil 2 eq{/@@txt -/@ff ld @ftx}{$fil 3 eq{/@@txt/@Pf ld @ftx}{$t $c $m $y $k $n $o @scc{show} -{pop}ifelse}ifelse}ifelse}ifelse $sdf{$dsf $dsa $dsp @ss}if setmatrix}bd/@st{ -matrix currentmatrix exch $SDF{$SCF $SCA $SCP @ss}if $T $C $M $Y $K $N $O @scc -{{currentpoint 3 -1 roll(0)dup 3 -1 roll 0 exch put dup @gs true charpath $ctm -setmatrix $ptm concat stroke @gr @np stringwidth pop 3 -1 roll add exch moveto -}forall}{pop}ifelse $SDF{$dsf $dsa $dsp @ss}if setmatrix}bd/@te{@ft}bd/@tr{@st -}bd/@ta{dup @gs @ft @gr @st}bd/@t@a{dup @gs @st @gr @ft}bd/@tm{@sm concat}bd/e -{/t{@te}def}bd/r{/t{@tr}def}bd/o{/t{pop}def}bd/a{/t{@ta}def}bd/@a{/t{@t@a}def} -bd/t{@te}def/T{@np $ctm setmatrix/$ttm matrix def}bd/ddt{t}def/@t{/$stm $stm -currentmatrix def 3 1 roll moveto $ttm concat ddt $stm setmatrix}bd/@n{/$ttm -exch matrix rotate def}bd/@s{}bd/@l{}bd/@B{@gs S @gr F}bd/@b{@cp @B}bd/@sep{ -CurrentInkName(Composite)eq{/$ink -1 def}{CurrentInkName(Cyan)eq{/$ink 0 def}{ -CurrentInkName(Magenta)eq{/$ink 1 def}{CurrentInkName(Yellow)eq{/$ink 2 def}{ -CurrentInkName(Black)eq{/$ink 3 def}{/$ink 4 def}ifelse}ifelse}ifelse}ifelse} -ifelse}bd/@whi{@gs -72000 dup moveto -72000 72000 lineto 72000 dup lineto 72000 --72000 lineto @cp 1 SetGry fill @gr}bd/@neg{[{1 exch sub}/exec cvx -currenttransfer/exec cvx]cvx settransfer @whi}bd/currentscale{1 0 dtransform -matrix defaultmatrix idtransform dup mul exch dup mul add sqrt 0 1 dtransform -matrix defaultmatrix idtransform dup mul exch dup mul add sqrt}bd/@unscale{ -currentscale 1 exch div exch 1 exch div exch scale}bd/@square{dup 0 rlineto dup -0 exch rlineto neg 0 rlineto @cp}bd/corelsym{@gs @np Tl -90 rotate 7{45 rotate --.75 2 moveto 1.5 @square fill}repeat @gr}bd/@reg Corelreg{{@gs @np Tl -6 -6 -moveto 12 @square @gs 1 GetGry sub SetGry fill @gr 4{90 rotate 0 4 m 0 4 rl} -repeat stroke 0 0 corelsym @gr}bd}{{@gs @np Tl .3 setlinewidth 0 0 5 0 360 arc -@cp @gs 1 GetGry sub SetGry fill @gr 4{90 rotate 0 0 m 0 8 rl}repeat stroke @gr -}bd}ifelse/$corelmeter[1 .95 .75 .50 .25 .05 0]def/@colormeter{@gs @np 0 SetGry -0.3 setlinewidth/Courier findfont 5 scalefont setfont/yy xd/xx xd 0 1 6{xx 20 -sub yy m 20 @square @gs $corelmeter exch get dup SetGry fill @gr stroke xx 2 -add yy 8 add moveto 100 mul 100 exch sub cvi 20 string cvs show/yy yy 20 add -def}for @gr}bd/@crop{@gs .3 setlinewidth 0 SetGry Tl rotate 0 0 m 0 -24 rl -4 --24 m 8 @square -4 -20 m 8 0 rl stroke @gr}bd/@colorbox{@gs @np Tl 100 exch sub -100 div SetGry -8 -8 moveto 16 @square fill 0 SetGry 10 -2 moveto show @gr}bd -/deflevel 0 def/@sax{/deflevel deflevel 1 add def}bd/@eax{/deflevel deflevel -dup 0 gt{1 sub}if def deflevel 0 gt{/eax load}{eax}ifelse}bd/eax{{exec}forall} -bd/@rax{deflevel 0 eq{@rs @sv}if}bd/@daq{dup type/arraytype eq{{}forall}if}bd -/@BMP{/@cc xd 11 index 1 eq{12 -1 roll pop @i}{7 -2 roll 2 rp @I}ifelse}bd end - -%%EndProlog -wCorel4Dict begin -%%BeginSetup -11.4737 setmiterlimit -1.00 setflat -/$fst 20 def -%%EndSetup - -%StartPage -@sv -/$ctm matrix currentmatrix def -@sv -%StartColorLayer (COMPOSITE) -%StartTile -/$ctm matrix currentmatrix def -@sv @sv -@rax %%Note: Object -2144.88 2440.37 2478.31 2484.94 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 7.992 7.992 0.000 @w -2144.88 2440.37 m -2478.31 2440.37 L -2360.81 2443.61 L -2213.14 2484.94 L -S - -@rax %%Note: Object -2140.99 2422.87 2159.21 2437.20 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2147.33 2436.41 m -2147.33 2435.62 2146.54 2433.24 2144.95 2433.24 C -2144.16 2429.28 L -2143.37 2429.28 L -2143.37 2427.70 L -2141.78 2427.70 2143.37 2426.90 2141.78 2426.90 C -2141.78 2425.25 L -2140.99 2425.25 L -2140.99 2423.66 L -2142.58 2423.66 L -2142.58 2422.87 L -2156.83 2422.87 L -2156.83 2423.66 L -2159.21 2423.66 L -2156.83 2423.66 2159.21 2423.66 2159.21 2425.25 C -2157.62 2425.25 2157.62 2426.90 2156.83 2426.90 C -2157.62 2425.25 2157.62 2426.90 2156.83 2428.49 C -2157.62 2425.25 2157.62 2426.90 2155.25 2428.49 C -2154.46 2429.28 L -2153.66 2430.07 L -2154.46 2429.28 2153.66 2430.07 2153.66 2431.66 C -2152.87 2432.45 L -2153.66 2431.66 2152.87 2432.45 2151.29 2432.45 C -2153.66 2431.66 2152.87 2432.45 2151.29 2434.03 C -2150.50 2434.82 L -2149.70 2435.62 L -2148.12 2435.62 2148.12 2437.20 2147.33 2436.41 C -@c -S - -@rax %%Note: Object -2132.28 2402.14 2164.75 2496.10 @E -0 J 0 j [2 10 ] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2164.75 2496.10 m -2152.08 2457.07 2132.28 2402.14 2146.54 2440.37 C -S -@j -0.00 0.00 0.00 1.00 K -0.00 0.00 0.00 1.00 k -0 @g -0 @G -[] 0 d 0 J 0 j -0 R 0 O -0 1.01 1.01 0 @w -2166.12 2492.21 m -2164.90 2496.82 L -2161.22 2493.86 L -S -@J - -@rax %%Note: Object -2552.90 2400.62 2556.07 2414.95 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2552.90 2401.99 m -2552.90 2411.71 L -2554.49 2411.71 L -2554.49 2413.37 2552.90 2414.95 2556.07 2414.95 C -S -@j -0.00 0.00 0.00 1.00 K -0.00 0.00 0.00 1.00 k -0 @g -0 @G -[] 0 d 0 J 0 j -0 R 0 O -0 1.01 1.01 0 @w -2550.31 2405.23 m -2552.90 2401.20 L -2555.50 2405.23 L -S -@J - -@rax %%Note: Object -2565.58 2494.37 2567.16 2494.66 @E -0 J 0 j [2 10 ] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2566.94 2494.51 m -2567.16 2494.51 L -S -@j -0.00 0.00 0.00 1.00 K -0.00 0.00 0.00 1.00 k -0 @g -0 @G -[] 0 d 0 J 0 j -0 R 0 O -0 1.01 1.01 0 @w -2570.18 2497.10 m -2566.15 2494.51 L -2570.18 2491.92 L -S -@J - -@rax %%Note: Object -2400.55 2241.50 2481.48 2481.77 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2457.65 2247.84 m -2457.65 2251.01 2459.23 2273.26 2460.82 2276.50 C -2462.40 2276.50 L -2465.57 2281.25 2460.82 2297.16 2463.98 2301.91 C -2465.57 2301.91 L -2471.90 2311.49 2463.98 2333.74 2468.74 2343.31 C -2470.32 2343.31 L -2471.90 2344.90 2470.32 2356.06 2470.32 2359.22 C -2473.56 2359.22 2470.32 2360.81 2473.56 2360.81 C -2473.56 2365.56 2476.73 2371.97 2476.73 2376.72 C -2481.48 2376.72 2479.90 2424.46 2478.31 2429.28 c -2475.14 2437.20 2475.14 2454.70 2471.90 2461.10 C -2470.32 2461.10 L -2470.32 2464.27 2468.74 2464.27 2470.32 2464.27 C -2468.74 2464.27 L -2468.74 2464.27 2467.15 2467.44 2467.15 2473.85 C -2465.64 2472.26 2462.47 2473.85 2462.47 2473.85 C -2456.14 2473.85 L -2456.14 2477.02 2451.38 2477.02 2449.80 2477.02 C -2449.80 2478.60 L -2438.64 2481.77 2419.63 2477.02 2408.47 2477.02 C -2406.89 2475.43 L -2406.89 2472.26 L -2405.30 2472.26 L -2402.14 2467.51 2400.55 2426.11 2403.72 2421.36 C -2405.30 2421.36 L -2406.89 2418.19 2408.47 2410.20 2410.13 2407.03 C -2411.71 2407.03 L -2411.71 2403.86 L -2414.88 2403.86 2411.71 2402.28 2414.88 2402.28 C -2414.88 2397.53 2418.05 2391.12 2418.05 2386.37 C -2422.80 2386.37 2425.97 2364.05 2425.97 2360.88 c -2432.30 2341.80 2424.38 2311.56 2430.72 2292.48 c -2433.89 2284.49 2427.55 2266.99 2432.30 2259.00 C -2433.89 2259.00 L -2435.47 2255.83 2432.30 2243.09 2432.30 2241.50 C -2435.47 2241.50 L -2435.47 2243.09 L -2449.80 2243.09 L -S -@j -0.00 0.00 0.00 1.00 K -0.00 0.00 0.00 1.00 k -0 @g -0 @G -[] 0 d 0 J 0 j -0 R 0 O -0 1.01 1.01 0 @w -2455.06 2251.08 m -2457.65 2247.05 L -2460.24 2251.08 L -S -@J - -@rax %%Note: Object -2344.97 2201.69 2519.57 2290.75 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2465.57 2290.75 m -2471.90 2290.75 2476.73 2287.58 2483.06 2287.58 C -2484.65 2286.00 2490.98 2284.42 2494.15 2284.42 C -2497.32 2281.25 2510.06 2276.50 2510.06 2271.67 C -2519.57 2265.34 2514.82 2235.10 2514.82 2223.94 C -2511.65 2222.35 2508.48 2217.60 2505.31 2216.02 C -2505.31 2212.78 2497.32 2208.02 2495.74 2206.44 C -2414.81 2201.69 L -2414.81 2203.27 2386.22 2211.19 2383.06 2211.19 c -2376.65 2212.78 2349.72 2220.77 2349.72 2230.27 C -2344.97 2230.27 2348.14 2231.93 2344.97 2231.93 C -2344.97 2243.02 2349.72 2255.76 2349.72 2263.75 C -2356.06 2263.75 2367.14 2274.84 2375.06 2274.84 C -2375.06 2284.42 2425.90 2279.66 2425.90 2284.42 C -S -@j -0.00 0.00 0.00 1.00 K -0.00 0.00 0.00 1.00 k -0 @g -0 @G -[] 0 d 0 J 0 j -0 R 0 O -0 1.01 1.01 0 @w -2468.81 2293.34 m -2464.78 2290.75 L -2468.81 2288.16 L -S -@J - -@rax %%Note: Object -2478.31 2426.04 2510.06 2427.70 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2479.68 2426.04 m -2510.06 2427.70 L -S -@j -0.00 0.00 0.00 1.00 K -0.00 0.00 0.00 1.00 k -0 @g -0 @G -[] 0 d 0 J 0 j -0 R 0 O -0 1.01 1.01 0 @w -2482.78 2428.85 m -2478.89 2426.04 L -2482.99 2423.74 L -S -@J - -@rax %%Note: Object -2197.30 2391.05 2413.22 2414.95 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2413.22 2397.46 m -2411.64 2397.46 2406.82 2394.22 2406.82 2392.63 C -2402.06 2392.63 2384.64 2391.05 2381.47 2392.63 C -2381.47 2394.22 L -2378.30 2394.22 L -2378.30 2397.46 2376.65 2394.22 2376.65 2397.46 C -2371.90 2397.46 L -2368.73 2400.62 2365.56 2399.04 2363.98 2400.62 C -2363.98 2402.21 L -2357.64 2406.96 2340.14 2402.21 2333.81 2406.96 C -2333.81 2408.54 L -2325.89 2410.13 l -2302.06 2414.95 2271.89 2408.54 2248.06 2408.54 c -2238.55 2408.54 2209.97 2410.13 2202.05 2405.38 C -2202.05 2403.79 L -2197.30 2403.79 L -S -@j -0.00 0.00 0.00 1.00 K -0.00 0.00 0.00 1.00 k -0 @g -0 @G -[] 0 d 0 J 0 j -0 R 0 O -0 1.01 1.01 0 @w -2409.98 2394.86 m -2414.02 2397.46 L -2409.98 2400.05 L -S -@J - -@rax %%Note: Object -2073.46 2088.65 2214.72 2427.70 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2182.97 2424.46 m -2186.21 2419.70 2189.38 2410.13 2190.96 2405.38 C -2192.54 2405.38 L -2192.54 2399.04 L -2198.88 2399.04 2197.30 2344.90 2197.30 2336.98 C -2194.13 2336.98 2194.13 2330.57 2194.13 2328.98 C -2192.54 2328.98 L -2192.54 2320.99 L -2190.96 2320.99 L -2186.21 2311.49 2187.79 2293.99 2182.97 2284.42 C -2181.38 2284.42 L -2178.22 2278.08 2182.97 2251.01 2182.97 2244.60 c -2182.97 2241.43 2182.97 2225.52 2184.55 2223.94 C -2186.21 2223.94 L -2189.38 2217.60 2184.55 2182.54 2181.38 2177.78 C -2179.80 2177.78 L -2171.88 2165.04 2173.46 2130.05 2173.46 2114.14 C -2175.05 2114.14 2178.22 2109.31 2178.22 2107.73 C -2179.80 2106.14 L -2184.55 2106.14 L -2184.55 2104.56 L -2194.13 2099.81 2211.55 2114.14 2211.55 2098.22 C -2214.72 2098.22 2211.55 2096.64 2214.72 2096.64 C -2211.55 2096.64 L -2211.55 2094.98 L -2203.63 2094.98 L -2203.63 2093.40 L -2194.13 2088.65 2170.30 2099.81 2160.79 2099.81 C -2156.04 2104.56 2136.96 2098.22 2129.04 2101.39 C -2129.04 2102.98 L -2124.29 2102.98 L -2122.70 2104.56 L -2122.70 2106.14 2121.12 2107.73 2121.12 2109.31 C -2117.88 2109.31 2121.12 2110.97 2117.88 2110.97 C -2117.88 2117.30 L -2121.12 2117.30 2117.88 2118.89 2121.12 2118.89 C -2121.12 2117.30 2117.88 2118.89 2121.12 2122.06 C -2122.70 2123.64 L -2124.29 2123.64 2125.87 2125.22 2127.46 2125.22 C -2127.46 2126.88 2129.04 2130.05 2129.04 2131.63 C -2132.21 2131.63 2129.04 2133.22 2132.21 2133.22 C -2132.21 2136.38 2144.88 2174.62 2135.38 2174.62 C -2135.38 2176.20 2130.62 2182.54 2129.04 2182.54 C -2129.04 2187.36 2121.12 2196.86 2121.12 2201.69 c -2119.46 2209.61 2121.12 2258.93 2132.21 2258.93 C -2132.21 2260.51 2144.88 2295.58 2135.38 2295.58 C -2135.38 2300.33 2132.21 2306.74 2130.62 2309.90 C -2129.04 2309.90 L -2127.46 2313.07 2127.46 2316.24 2124.29 2317.82 C -2124.29 2320.99 2121.12 2327.40 2117.88 2327.40 C -2116.30 2328.98 L -2117.88 2327.40 2116.30 2328.98 2116.30 2332.15 C -2114.71 2332.15 2109.96 2338.56 2109.96 2340.14 C -2108.38 2341.73 L -2095.70 2341.73 2089.37 2384.71 2084.54 2392.63 C -2082.96 2392.63 L -2081.38 2395.80 2081.38 2405.38 2079.79 2408.54 C -2078.21 2408.54 L -2078.21 2416.54 L -2076.62 2416.54 L -2076.62 2418.12 2076.62 2424.46 2073.46 2424.46 C -2076.62 2418.12 2076.62 2424.46 2073.46 2427.70 C -S -@j -0.00 0.00 0.00 1.00 K -0.00 0.00 0.00 1.00 k -0 @g -0 @G -[] 0 d 0 J 0 j -0 R 0 O -0 1.01 1.01 0 @w -2186.93 2423.23 m -2182.61 2425.03 L -2182.68 2420.28 L -S -@J - -@rax %%Note: Object -2517.98 2399.04 2521.15 2411.71 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2517.98 2399.04 m -2517.98 2403.79 2521.15 2406.96 2521.15 2411.71 C -S -@j -0.00 0.00 0.00 1.00 K -0.00 0.00 0.00 1.00 k -0 @g -0 @G -[] 0 d 0 J 0 j -0 R 0 O -0 1.01 1.01 0 @w -2515.39 2402.28 m -2517.98 2398.25 L -2520.58 2402.28 L -S -@J - -@rax %%Note: Object -2548.15 2413.37 2554.49 2422.87 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2548.15 2421.29 m -2549.74 2421.29 2552.90 2422.87 2554.49 2422.87 C -2554.49 2414.95 L -2551.32 2414.95 2554.49 2413.37 2551.32 2413.37 C -S -@j -0.00 0.00 0.00 1.00 K -0.00 0.00 0.00 1.00 k -0 @g -0 @G -[] 0 d 0 J 0 j -0 R 0 O -0 1.01 1.01 0 @w -2551.39 2423.88 m -2547.36 2421.29 L -2551.39 2418.70 L -S -@J - -@rax %%Note: Object -2529.07 2445.19 2556.07 2457.94 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2529.07 2445.19 m -2530.66 2446.78 2537.06 2451.53 2537.06 2454.70 C -2538.65 2456.28 L -2541.82 2456.28 2548.15 2457.94 2551.32 2457.94 C -2551.32 2454.70 L -2552.90 2454.70 L -2552.90 2451.53 L -2554.49 2449.94 L -2556.07 2448.36 L -S -@j -0.00 0.00 0.00 1.00 K -0.00 0.00 0.00 1.00 k -0 @g -0 @G -[] 0 d 0 J 0 j -0 R 0 O -0 1.01 1.01 0 @w -2529.58 2449.30 m -2528.57 2444.69 L -2533.18 2445.70 L -S -@J - -@rax %%Note: Object -2603.74 2405.38 2608.49 2406.96 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2608.49 2406.96 m -2606.90 2406.96 2603.74 2405.38 2608.49 2406.96 C -@c -S - -@rax %%Note: Object -2468.74 2395.80 2611.66 2513.59 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2582.86 2434.03 m -2592.58 2434.03 L -2592.58 2454.70 L -2554.49 2454.70 2510.06 2472.19 2475.14 2472.19 C -2475.14 2475.43 L -2473.56 2475.43 L -2473.56 2478.60 2471.90 2478.60 2473.56 2478.60 C -2471.90 2478.60 L -2471.90 2481.77 2470.32 2481.77 2471.90 2481.77 C -2470.32 2481.77 L -2468.74 2483.35 2470.32 2496.10 2470.32 2499.26 C -2471.90 2499.26 2473.56 2497.68 2476.73 2497.68 C -2476.73 2496.10 2479.90 2494.51 2481.48 2494.51 C -2483.06 2492.93 L -2483.06 2489.76 2484.65 2488.18 2483.06 2489.76 C -2484.65 2488.18 L -2486.23 2488.18 2487.82 2486.52 2489.40 2486.52 C -2489.40 2483.35 2490.98 2486.52 2490.98 2483.35 C -2494.15 2483.35 L -2494.15 2481.77 L -2497.32 2480.18 2505.31 2483.35 2508.48 2483.35 C -2508.48 2484.94 2510.06 2486.52 2510.06 2488.18 C -2514.82 2488.18 2514.82 2492.93 2514.82 2494.51 C -2516.40 2494.51 L -2516.40 2497.68 L -2519.57 2497.68 2516.40 2499.26 2519.57 2499.26 C -2519.57 2500.85 2521.15 2504.09 2521.15 2505.67 C -2525.90 2507.26 L -2525.90 2508.84 L -2532.24 2513.59 2549.74 2513.59 2559.24 2513.59 C -2559.24 2510.42 2562.41 2510.42 2563.99 2510.42 C -2568.74 2505.67 2575.15 2499.26 2578.32 2494.51 C -2579.90 2494.51 L -2579.90 2492.93 2583.07 2488.18 2584.66 2488.18 C -2587.82 2484.94 2590.99 2481.77 2584.66 2484.94 C -2587.82 2484.94 2590.99 2481.77 2590.99 2478.60 C -2592.58 2478.60 2594.16 2477.02 2595.74 2477.02 C -2597.33 2475.43 L -2597.33 2472.19 2602.15 2470.61 2603.74 2470.61 C -2603.74 2469.02 2605.32 2465.86 2606.90 2465.86 C -2606.90 2457.94 L -2605.32 2457.94 2598.91 2438.78 2600.50 2435.62 C -2602.15 2435.62 L -2602.15 2432.45 2603.74 2432.45 2602.15 2432.45 C -2603.74 2432.45 L -2603.74 2427.70 L -2605.32 2427.70 L -2611.66 2416.54 2603.74 2405.38 2597.33 2395.80 C -2589.48 2399.04 2592.65 2400.62 2589.48 2400.62 C -2589.48 2399.04 2592.65 2400.62 2589.48 2403.79 C -2586.31 2403.79 2584.73 2406.96 2584.73 2410.13 C -2578.39 2410.13 2576.81 2430.86 2567.23 2430.86 C -2567.23 2435.62 2564.06 2446.78 2564.06 2451.53 C -2562.48 2451.53 2560.90 2454.70 2559.31 2454.70 C -2559.31 2457.94 2554.56 2461.10 2552.98 2461.10 C -S -@j -0.00 0.00 0.00 1.00 K -0.00 0.00 0.00 1.00 k -0 @g -0 @G -[] 0 d 0 J 0 j -0 R 0 O -0 1.01 1.01 0 @w -2586.10 2436.62 m -2582.06 2434.03 L -2586.10 2431.44 L -S -@J - -@rax %%Note: Object -2540.23 2459.52 2597.33 2491.34 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2540.23 2491.34 m -2544.98 2489.76 2567.16 2477.02 2570.40 2477.02 C -2570.40 2475.43 2571.98 2472.19 2571.98 2470.61 C -2575.15 2470.61 2571.98 2469.02 2576.74 2469.02 C -2575.15 2470.61 2571.98 2469.02 2576.74 2465.86 C -2583.07 2465.86 2590.99 2461.10 2597.33 2459.52 C -S -@j -0.00 0.00 0.00 1.00 K -0.00 0.00 0.00 1.00 k -0 @g -0 @G -[] 0 d 0 J 0 j -0 R 0 O -0 1.01 1.01 0 @w -2544.12 2492.78 m -2539.51 2491.56 L -2542.46 2487.89 L -S -@J - -@rax %%Note: Object -2511.65 2456.28 2583.07 2481.77 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2511.65 2481.77 m -2530.66 2481.77 2565.58 2481.77 2581.49 2470.61 C -2581.49 2467.44 2581.49 2456.28 2583.07 2456.28 C -S - -@rax %%Note: Object -2549.74 2437.20 2589.41 2469.02 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2549.74 2469.02 m -2563.99 2469.02 2576.74 2457.94 2587.82 2457.94 C -2587.82 2453.11 2589.41 2443.61 2589.41 2437.20 C -S -@j -0.00 0.00 0.00 1.00 K -0.00 0.00 0.00 1.00 k -0 @g -0 @G -[] 0 d 0 J 0 j -0 R 0 O -0 1.01 1.01 0 @w -2552.98 2471.62 m -2548.94 2469.02 L -2552.98 2466.43 L -S -@J - -@rax %%Note: Object -2575.15 2421.29 2594.16 2446.78 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2575.15 2446.78 m -2576.74 2443.61 2587.82 2427.70 2587.82 2422.87 C -2589.41 2422.87 2590.99 2421.29 2594.16 2421.29 C -S -@j -0.00 0.00 0.00 1.00 K -0.00 0.00 0.00 1.00 k -0 @g -0 @G -[] 0 d 0 J 0 j -0 R 0 O -0 1.01 1.01 0 @w -2578.90 2445.05 m -2574.86 2447.50 L -2574.29 2442.74 L -S -@J - -@rax %%Note: Object -2537.06 2427.70 2598.91 2507.26 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2598.12 2428.78 m -2537.06 2507.26 L -S -@j -0.00 0.00 0.00 1.00 K -0.00 0.00 0.00 1.00 k -0 @g -0 @G -[] 0 d 0 J 0 j -0 R 0 O -0 1.01 1.01 0 @w -2594.09 2429.71 m -2598.55 2428.20 L -2598.12 2432.88 L -S -@J - -@rax %%Note: Object -2556.07 2484.94 2568.74 2502.43 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2556.07 2502.43 m -2560.82 2496.10 2560.82 2489.76 2568.74 2484.94 C -S -@j -0.00 0.00 0.00 1.00 K -0.00 0.00 0.00 1.00 k -0 @g -0 @G -[] 0 d 0 J 0 j -0 R 0 O -0 1.01 1.01 0 @w -2560.10 2501.42 m -2555.64 2503.01 L -2555.93 2498.33 L -S -@J - -@rax %%Note: Object -2519.57 2470.61 2537.06 2477.02 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2519.57 2477.02 m -2525.90 2472.19 2529.07 2470.61 2537.06 2470.61 C -S -@j -0.00 0.00 0.00 1.00 K -0.00 0.00 0.00 1.00 k -0 @g -0 @G -[] 0 d 0 J 0 j -0 R 0 O -0 1.01 1.01 0 @w -2523.67 2477.09 m -2518.99 2477.45 L -2520.58 2472.98 L -S -@J - -@rax %%Note: Object -2533.82 2472.19 2567.16 2497.68 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2533.82 2497.68 m -2546.57 2489.76 2556.07 2483.35 2567.16 2472.19 C -S -@j -0.00 0.00 0.00 1.00 K -0.00 0.00 0.00 1.00 k -0 @g -0 @G -[] 0 d 0 J 0 j -0 R 0 O -0 1.01 1.01 0 @w -2537.93 2498.18 m -2533.18 2498.11 L -2535.19 2493.79 L -S -@J - -@rax %%Note: Object -2552.90 2492.93 2562.41 2508.84 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2553.84 2507.90 m -2560.82 2500.85 L -2560.82 2499.26 2562.41 2494.51 2562.41 2492.93 C -S -@j -0.00 0.00 0.00 1.00 K -0.00 0.00 0.00 1.00 k -0 @g -0 @G -[] 0 d 0 J 0 j -0 R 0 O -0 1.01 1.01 0 @w -2557.94 2507.40 m -2553.34 2508.41 L -2554.27 2503.80 L -S -@J - -@rax %%Note: Object -2594.16 2451.53 2600.50 2464.27 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2594.16 2464.27 m -2598.91 2461.10 2600.50 2457.94 2600.50 2451.53 C -S -@j -0.00 0.00 0.00 1.00 K -0.00 0.00 0.00 1.00 k -0 @g -0 @G -[] 0 d 0 J 0 j -0 R 0 O -0 1.01 1.01 0 @w -2598.34 2464.63 m -2593.58 2464.63 L -2595.46 2460.31 L -S -@J - -@rax %%Note: Object -2433.82 2190.53 2475.14 2236.68 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2436.98 2236.68 m -2436.98 2235.10 2438.57 2228.69 2436.98 2227.10 C -2435.40 2227.10 L -2433.82 2223.94 2435.40 2201.69 2436.98 2200.03 C -2438.57 2200.03 L -2438.57 2193.70 L -2440.15 2193.70 2446.56 2190.53 2449.73 2190.53 C -2449.73 2193.70 2462.40 2196.86 2465.57 2198.45 C -2465.57 2200.03 L -2467.15 2201.69 2471.90 2204.86 2475.14 2206.44 C -2467.15 2201.69 2471.90 2204.86 2475.14 2209.61 C -2473.56 2211.19 L -2471.90 2211.19 2467.15 2214.36 2465.57 2214.36 C -2465.57 2217.60 2463.98 2222.35 2460.82 2222.35 C -2459.23 2231.93 L -2457.65 2231.93 L -2457.65 2233.51 2459.23 2235.10 2456.06 2235.10 C -S -@j -0.00 0.00 0.00 1.00 K -0.00 0.00 0.00 1.00 k -0 @g -0 @G -[] 0 d 0 J 0 j -0 R 0 O -0 1.01 1.01 0 @w -2439.58 2233.44 m -2436.98 2237.47 L -2434.39 2233.44 L -S -@J - -@rax %%Note: Object -2514.82 2227.10 2541.82 2265.34 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2516.18 2265.34 m -2530.66 2265.34 L -2530.66 2263.75 2533.82 2258.93 2533.82 2255.76 C -2535.41 2254.18 L -2533.82 2255.76 2535.41 2254.18 2538.65 2254.18 C -2538.65 2247.84 2541.82 2239.85 2541.82 2231.93 C -2535.41 2231.93 L -2535.41 2230.27 L -2530.66 2230.27 L -2530.66 2228.69 L -2530.66 2230.27 2530.66 2228.69 2527.49 2228.69 C -2527.49 2227.10 L -2525.90 2227.10 2517.98 2227.10 2517.98 2228.69 C -S -@j -0.00 0.00 0.00 1.00 K -0.00 0.00 0.00 1.00 k -0 @g -0 @G -[] 0 d 0 J 0 j -0 R 0 O -0 1.01 1.01 0 @w -2519.42 2267.93 m -2515.39 2265.34 L -2519.42 2262.74 L -S -@J - -@rax %%Note: Object -2333.81 2233.51 2349.72 2266.92 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2349.72 2252.59 m -2348.14 2252.59 2344.97 2255.76 2343.31 2255.76 C -2343.31 2262.17 L -2341.73 2262.17 L -2341.73 2265.34 L -2338.56 2265.34 2341.73 2266.92 2338.56 2266.92 C -2338.56 2263.75 L -2336.98 2263.75 L -2333.81 2258.93 2336.98 2239.85 2336.98 2233.51 C -2340.14 2233.51 2344.97 2235.10 2346.55 2235.10 C -2348.14 2236.68 L -S -@j -0.00 0.00 0.00 1.00 K -0.00 0.00 0.00 1.00 k -0 @g -0 @G -[] 0 d 0 J 0 j -0 R 0 O -0 1.01 1.01 0 @w -2346.48 2250.00 m -2350.51 2252.59 L -2346.48 2255.18 L -S -@J - -@rax 2206.80 2452.82 2218.32 2469.82 @E -[0.07199 0.00000 0.00000 0.07199 2206.79980 2453.18384] @tm - 0 O 0 @g -0.00 0.00 0.00 1.00 k -e -/Symbol 333.00 z -0 0 (q) @t -T -@rax %%Note: Object -2235.38 2422.80 2246.47 2477.02 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2246.47 2477.02 m -2241.72 2464.27 2235.38 2422.80 2236.97 2440.37 C -S -@j -0.00 0.00 0.00 1.00 K -0.00 0.00 0.00 1.00 k -0 @g -0 @G -[] 0 d 0 J 0 j -0 R 0 O -0 1.01 1.01 0 @w -2247.70 2473.06 m -2246.69 2477.66 L -2242.87 2474.86 L -S -@J - -@rax 2136.96 2459.52 2147.98 2471.47 @E -[0.07199 0.00000 0.00000 0.07199 2136.95996 2459.51978] @tm - 0 O 0 @g -0.00 0.00 0.00 1.00 k -e - -% FontChange:/_R7106-BookmanOldStyle 333.00 z -% CHAR: 0 0 (r) @t -84 166 m -84 143 L -93 152 101 158 107 161 c -113 164 119 166 125 166 c -130 166 135 165 139 163 c -144 160 147 157 149 152 c -152 147 153 143 153 137 c -153 131 151 124 146 119 c -142 113 135 111 127 111 c -125 111 123 111 122 111 c -120 111 116 113 111 114 c -108 115 106 116 104 116 c -101 116 96 114 90 110 C -90 47 l -90 41 90 38 91 36 c -92 34 93 33 95 33 c -97 32 101 31 107 31 c -114 31 L -114 0 L -14 0 L -14 31 L -22 31 l -28 31 32 32 33 32 c -35 33 36 34 37 36 c -38 37 38 41 38 47 c -38 121 L -14 121 L -14 153 L -32 153 50 158 69 166 C -84 166 L -@c - F T -@rax 2083.75 2513.59 2100.53 2530.44 @E -[0.07199 0.00000 0.00000 0.07199 2083.75195 2513.59180] @tm - 0 O 0 @g -0.00 0.00 0.00 1.00 k -e - -% FontChange:/_R7106-BookmanOldStyle 333.00 z -% CHAR: 0 0 (T) @t -28 234 m -50 234 L -52 227 L -180 227 L -183 234 L -204 234 L -233 155 L -202 144 L -196 158 191 166 188 170 c -182 178 175 184 168 189 c -162 192 157 194 151 194 c -149 194 147 193 146 192 c -145 191 144 188 144 184 c -144 53 l -144 46 145 41 145 39 c -146 37 147 35 148 34 c -149 33 151 32 153 32 c -156 32 162 31 172 31 C -172 0 L -61 0 L -61 31 L -68 31 l -75 31 80 32 82 33 c -84 34 86 35 87 38 c -88 40 88 45 88 52 c -88 186 l -88 189 88 192 87 193 c -86 194 84 194 81 194 c -76 194 69 192 63 188 c -56 184 49 178 44 170 c -42 167 37 158 30 144 C -0 155 L -28 234 L -@c - F T -@rax %%Note: Object -2114.71 2478.53 2233.73 2515.18 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 2.016 2.016 0.000 @w -2114.71 2515.18 m -2135.38 2505.67 2233.73 2478.53 2213.14 2484.94 C -S -@j -0.00 0.00 0.00 1.00 K -0.00 0.00 0.00 1.00 k -0 @g -0 @G -[] 0 d 0 J 0 j -0 R 0 O -0 2.09 2.09 0 @w -2103.77 2520.22 m -2118.02 2520.65 L -2112.70 2509.06 L -2103.77 2520.22 L -f -@J - -@rax %%Note: Object -2336.98 2373.55 2338.56 2437.20 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2338.56 2437.20 m -2338.56 2402.21 2336.98 2373.55 2336.98 2373.55 C -S -@j -0.00 0.00 0.00 1.00 K -0.00 0.00 0.00 1.00 k -0 @g -0 @G -[] 0 d 0 J 0 j -0 R 0 O -0 1.01 1.01 0 @w -2338.56 2443.03 m -2341.66 2436.84 L -2335.46 2436.84 L -2338.56 2443.03 L -f -@J - -@rax %%Note: Object -2476.73 2149.13 2478.31 2236.68 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2476.73 2236.68 m -2476.73 2158.70 2478.31 2149.13 2478.31 2149.13 C -S -@j -0.00 0.00 0.00 1.00 K -0.00 0.00 0.00 1.00 k -0 @g -0 @G -[] 0 d 0 J 0 j -0 R 0 O -0 1.01 1.01 0 @w -2476.73 2242.51 m -2479.82 2236.32 L -2473.63 2236.32 L -2476.73 2242.51 L -f -@J - -@rax 2309.98 2360.52 2370.82 2377.15 @E -[0.07199 0.00000 0.00000 0.07199 2309.97583 2360.80786] @tm - 0 O 0 @g -0.00 0.00 0.00 1.00 k -e - -% FontChange:/_R7106-BookmanOldStyle 333.00 z -% CHAR: 0 0 (M) @t -13 227 m -115 227 L -155 89 L -196 227 L -300 227 L -300 195 L -289 195 l -283 195 279 194 276 192 c -274 189 273 184 273 177 c -273 48 l -273 43 273 39 274 38 c -275 36 276 34 278 33 c -280 32 283 31 287 31 c -300 31 L -300 0 L -191 0 L -191 31 L -200 31 l -206 31 210 32 212 33 c -214 34 216 35 217 37 c -218 39 218 43 218 48 c -218 188 L -163 0 L -132 0 L -78 182 L -78 44 l -78 41 79 38 80 37 c -81 35 83 34 85 33 c -87 32 90 31 95 31 c -106 31 L -106 0 L -13 0 L -13 31 L -22 31 l -28 31 32 32 34 33 c -36 34 38 36 39 38 c -40 40 40 44 40 50 c -40 177 l -40 183 40 187 39 189 c -38 191 36 193 34 194 c -33 195 29 195 25 195 c -13 195 L -13 227 L -@c - F % CHAR: 313 0 (a) @t -424 98 m -424 110 l -424 118 423 123 422 125 c -421 128 419 130 415 132 c -412 134 408 135 404 135 c -400 135 397 134 394 133 c -391 132 389 130 387 128 c -385 127 383 123 381 118 c -378 111 374 106 371 103 c -366 100 362 99 356 99 c -349 99 343 101 339 105 c -335 109 332 115 332 121 c -332 128 335 135 339 141 c -345 148 354 154 366 159 c -378 164 392 166 407 166 c -422 166 435 164 445 159 c -456 154 463 148 467 141 c -472 135 474 124 474 110 c -474 52 l -474 45 474 40 475 39 c -476 37 477 35 480 33 c -482 32 485 31 488 31 c -491 31 495 32 500 33 C -500 2 L -491 -1 482 -3 474 -3 c -464 -3 455 -1 448 2 c -441 6 435 10 431 17 C -420 10 410 5 401 2 c -392 -1 384 -3 375 -3 c -360 -3 347 2 338 10 c -328 19 324 30 324 43 c -324 50 325 57 328 63 c -332 69 337 74 343 79 c -350 83 360 87 374 91 c -387 94 404 97 424 98 C -@c -424 71 m -410 69 400 67 394 65 c -388 63 384 60 381 57 c -379 54 377 51 377 47 c -377 43 379 39 382 36 c -386 33 390 32 395 32 c -399 32 403 33 408 35 c -413 37 418 39 424 43 C -424 71 L -@c - F % CHAR: 506 0 (s) @t -629 162 m -650 162 L -663 117 L -633 105 L -627 114 619 122 611 127 c -602 132 593 135 584 135 c -579 135 574 134 571 132 c -569 130 567 128 567 125 c -567 123 568 121 570 119 c -572 117 576 115 583 113 c -627 97 l -635 94 643 90 650 86 c -657 82 663 77 666 71 c -670 64 672 57 672 49 c -672 34 666 22 655 13 c -642 2 625 -4 606 -4 c -589 -4 574 0 561 9 C -557 0 L -535 0 L -515 53 L -546 66 L -553 54 563 45 574 38 c -586 31 596 28 605 28 c -611 28 616 29 620 32 c -623 34 625 36 625 39 c -625 42 623 44 621 47 c -619 49 613 51 605 54 c -570 66 l -551 73 538 80 531 88 c -524 96 520 105 520 116 c -520 129 526 141 537 150 c -549 161 565 166 583 166 c -599 166 613 162 625 155 C -629 162 L -@c - F % CHAR: 679 0 (s) @t -802 162 m -823 162 L -836 117 L -806 105 L -800 114 792 122 784 127 c -775 132 766 135 757 135 c -752 135 747 134 744 132 c -742 130 740 128 740 125 c -740 123 741 121 743 119 c -745 117 749 115 756 113 c -800 97 l -808 94 816 90 823 86 c -830 82 836 77 839 71 c -843 64 845 57 845 49 c -845 34 839 22 828 13 c -815 2 798 -4 779 -4 c -762 -4 747 0 734 9 C -730 0 L -708 0 L -688 53 L -719 66 L -726 54 736 45 747 38 c -759 31 769 28 778 28 c -784 28 789 29 793 32 c -796 34 798 36 798 39 c -798 42 796 44 794 47 c -792 49 786 51 778 54 c -743 66 l -724 73 711 80 704 88 c -697 96 693 105 693 116 c -693 129 699 141 710 150 c -722 161 738 166 756 166 c -772 166 786 162 798 155 C -802 162 L -@c - F T -@rax 2313.22 2336.69 2376.50 2352.67 @E -[0.07199 0.00000 0.00000 0.07199 2313.21582 2336.97583] @tm - 0 O 0 @g -0.00 0.00 0.00 1.00 k -e - -% FontChange:/_R7106-BookmanOldStyle 333.00 z -% CHAR: 0 0 (t) @t -86 218 m -86 162 L -138 162 L -138 128 L -86 128 L -86 71 l -86 58 86 50 87 47 c -89 43 92 40 95 38 c -100 35 106 33 112 33 c -123 33 134 37 145 44 C -145 9 L -136 5 127 2 120 0 c -112 -2 104 -3 95 -3 c -85 -3 76 -1 68 1 c -60 4 54 7 48 12 c -43 17 39 22 37 27 c -35 32 34 40 34 50 c -34 128 L -9 128 L -9 159 L -18 162 25 166 32 171 c -38 176 43 183 46 190 c -50 197 53 207 54 218 C -86 218 L -@c - F % CHAR: 153 0 (o) @t -256 166 m -274 166 291 162 304 155 c -318 148 329 138 336 126 c -343 113 347 98 347 82 c -347 56 339 36 322 20 c -306 4 284 -4 256 -4 c -228 -4 206 4 189 20 c -173 35 165 56 165 82 c -165 99 169 113 176 126 c -184 138 194 148 208 155 c -222 162 238 166 256 166 c -@c -256 131 m -250 131 244 129 239 125 c -234 121 229 116 226 109 c -224 102 222 93 222 81 c -222 70 223 61 226 53 c -229 46 233 40 238 37 c -244 33 249 31 255 31 c -265 31 273 35 280 43 c -287 51 290 64 290 81 c -290 97 287 110 281 118 c -274 126 266 131 256 131 c -@c - F % CHAR: 359 0 (r) @t -443 166 m -443 143 L -452 152 460 158 466 161 c -472 164 478 166 484 166 c -489 166 494 165 498 163 c -503 160 506 157 508 152 c -511 147 512 143 512 137 c -512 131 510 124 505 119 c -501 113 494 111 486 111 c -484 111 482 111 481 111 c -479 111 475 113 470 114 c -467 115 465 116 463 116 c -460 116 455 114 449 110 C -449 47 l -449 41 449 38 450 36 c -451 34 452 33 454 33 c -456 32 460 31 466 31 c -473 31 L -473 0 L -373 0 L -373 31 L -381 31 l -387 31 391 32 392 32 c -394 33 395 34 396 36 c -397 37 397 41 397 47 c -397 121 L -373 121 L -373 153 L -391 153 409 158 428 166 C -443 166 L -@c - F % CHAR: 512 0 (s) @t -635 162 m -656 162 L -669 117 L -639 105 L -633 114 625 122 617 127 c -608 132 599 135 590 135 c -585 135 580 134 577 132 c -575 130 573 128 573 125 c -573 123 574 121 576 119 c -578 117 582 115 589 113 c -633 97 l -641 94 649 90 656 86 c -663 82 669 77 672 71 c -676 64 678 57 678 49 c -678 34 672 22 661 13 c -648 2 631 -4 612 -4 c -595 -4 580 0 567 9 C -563 0 L -541 0 L -521 53 L -552 66 L -559 54 569 45 580 38 c -592 31 602 28 611 28 c -617 28 622 29 626 32 c -629 34 631 36 631 39 c -631 42 629 44 627 47 c -625 49 619 51 611 54 c -576 66 l -557 73 544 80 537 88 c -530 96 526 105 526 116 c -526 129 532 141 543 150 c -555 161 571 166 589 166 c -605 166 619 162 631 155 C -635 162 L -@c - F % CHAR: 685 0 (o) @t -788 166 m -806 166 823 162 836 155 c -850 148 861 138 868 126 c -875 113 879 98 879 82 c -879 56 871 36 854 20 c -838 4 816 -4 788 -4 c -760 -4 738 4 721 20 c -705 35 697 56 697 82 c -697 99 701 113 708 126 c -716 138 726 148 740 155 c -754 162 770 166 788 166 c -@c -788 131 m -782 131 776 129 771 125 c -766 121 761 116 758 109 c -756 102 754 93 754 81 c -754 70 755 61 758 53 c -761 46 765 40 770 37 c -776 33 781 31 787 31 c -797 31 805 35 812 43 c -819 51 822 64 822 81 c -822 97 819 110 813 118 c -806 126 798 131 788 131 c -@c - F T -@rax 2436.98 2132.93 2497.82 2149.56 @E -[0.07199 0.00000 0.00000 0.07199 2436.98389 2133.21582] @tm - 0 O 0 @g -0.00 0.00 0.00 1.00 k -e - -% FontChange:/_R7106-BookmanOldStyle 333.00 z -% CHAR: 0 0 (M) @t -13 227 m -115 227 L -155 89 L -196 227 L -300 227 L -300 195 L -289 195 l -283 195 279 194 276 192 c -274 189 273 184 273 177 c -273 48 l -273 43 273 39 274 38 c -275 36 276 34 278 33 c -280 32 283 31 287 31 c -300 31 L -300 0 L -191 0 L -191 31 L -200 31 l -206 31 210 32 212 33 c -214 34 216 35 217 37 c -218 39 218 43 218 48 c -218 188 L -163 0 L -132 0 L -78 182 L -78 44 l -78 41 79 38 80 37 c -81 35 83 34 85 33 c -87 32 90 31 95 31 c -106 31 L -106 0 L -13 0 L -13 31 L -22 31 l -28 31 32 32 34 33 c -36 34 38 36 39 38 c -40 40 40 44 40 50 c -40 177 l -40 183 40 187 39 189 c -38 191 36 193 34 194 c -33 195 29 195 25 195 c -13 195 L -13 227 L -@c - F % CHAR: 313 0 (a) @t -424 98 m -424 110 l -424 118 423 123 422 125 c -421 128 419 130 415 132 c -412 134 408 135 404 135 c -400 135 397 134 394 133 c -391 132 389 130 387 128 c -385 127 383 123 381 118 c -378 111 374 106 371 103 c -366 100 362 99 356 99 c -349 99 343 101 339 105 c -335 109 332 115 332 121 c -332 128 335 135 339 141 c -345 148 354 154 366 159 c -378 164 392 166 407 166 c -422 166 435 164 445 159 c -456 154 463 148 467 141 c -472 135 474 124 474 110 c -474 52 l -474 45 474 40 475 39 c -476 37 477 35 480 33 c -482 32 485 31 488 31 c -491 31 495 32 500 33 C -500 2 L -491 -1 482 -3 474 -3 c -464 -3 455 -1 448 2 c -441 6 435 10 431 17 C -420 10 410 5 401 2 c -392 -1 384 -3 375 -3 c -360 -3 347 2 338 10 c -328 19 324 30 324 43 c -324 50 325 57 328 63 c -332 69 337 74 343 79 c -350 83 360 87 374 91 c -387 94 404 97 424 98 C -@c -424 71 m -410 69 400 67 394 65 c -388 63 384 60 381 57 c -379 54 377 51 377 47 c -377 43 379 39 382 36 c -386 33 390 32 395 32 c -399 32 403 33 408 35 c -413 37 418 39 424 43 C -424 71 L -@c - F % CHAR: 506 0 (s) @t -629 162 m -650 162 L -663 117 L -633 105 L -627 114 619 122 611 127 c -602 132 593 135 584 135 c -579 135 574 134 571 132 c -569 130 567 128 567 125 c -567 123 568 121 570 119 c -572 117 576 115 583 113 c -627 97 l -635 94 643 90 650 86 c -657 82 663 77 666 71 c -670 64 672 57 672 49 c -672 34 666 22 655 13 c -642 2 625 -4 606 -4 c -589 -4 574 0 561 9 C -557 0 L -535 0 L -515 53 L -546 66 L -553 54 563 45 574 38 c -586 31 596 28 605 28 c -611 28 616 29 620 32 c -623 34 625 36 625 39 c -625 42 623 44 621 47 c -619 49 613 51 605 54 c -570 66 l -551 73 538 80 531 88 c -524 96 520 105 520 116 c -520 129 526 141 537 150 c -549 161 565 166 583 166 c -599 166 613 162 625 155 C -629 162 L -@c - F % CHAR: 679 0 (s) @t -802 162 m -823 162 L -836 117 L -806 105 L -800 114 792 122 784 127 c -775 132 766 135 757 135 c -752 135 747 134 744 132 c -742 130 740 128 740 125 c -740 123 741 121 743 119 c -745 117 749 115 756 113 c -800 97 l -808 94 816 90 823 86 c -830 82 836 77 839 71 c -843 64 845 57 845 49 c -845 34 839 22 828 13 c -815 2 798 -4 779 -4 c -762 -4 747 0 734 9 C -730 0 L -708 0 L -688 53 L -719 66 L -726 54 736 45 747 38 c -759 31 769 28 778 28 c -784 28 789 29 793 32 c -796 34 798 36 798 39 c -798 42 796 44 794 47 c -792 49 786 51 778 54 c -743 66 l -724 73 711 80 704 88 c -697 96 693 105 693 116 c -693 129 699 141 710 150 c -722 161 738 166 756 166 c -772 166 786 162 798 155 C -802 162 L -@c - F T -@rax 2441.81 2102.33 2499.26 2124.94 @E -[0.07199 0.00000 0.00000 0.07199 2441.80786 2107.72803] @tm - 0 O 0 @g -0.00 0.00 0.00 1.00 k -e - -% FontChange:/_R7106-BookmanOldStyle 333.00 z -% CHAR: 0 0 (b) @t -76 239 m -76 151 L -85 157 93 161 100 163 c -107 165 114 166 121 166 c -139 166 154 159 166 146 c -180 130 187 110 187 84 c -187 57 180 36 166 20 c -152 4 135 -4 115 -4 c -107 -4 99 -2 92 0 c -84 3 76 7 68 14 C -60 0 L -24 0 L -24 193 L -0 193 L -0 225 L -21 226 41 231 60 239 C -76 239 L -@c -76 116 m -76 66 l -76 56 76 49 78 46 c -80 42 82 39 86 36 c -90 34 95 33 100 33 c -109 33 116 36 122 44 c -128 53 132 66 132 82 c -132 97 129 109 123 117 c -119 124 112 127 105 127 c -100 127 96 127 91 125 c -86 123 81 120 76 116 C -@c - F % CHAR: 200 0 (a) @t -311 98 m -311 110 l -311 118 310 123 309 125 c -308 128 306 130 302 132 c -299 134 295 135 291 135 c -287 135 284 134 281 133 c -278 132 276 130 274 128 c -272 127 270 123 268 118 c -265 111 261 106 258 103 c -253 100 249 99 243 99 c -236 99 230 101 226 105 c -222 109 219 115 219 121 c -219 128 222 135 226 141 c -232 148 241 154 253 159 c -265 164 279 166 294 166 c -309 166 322 164 332 159 c -343 154 350 148 354 141 c -359 135 361 124 361 110 c -361 52 l -361 45 361 40 362 39 c -363 37 364 35 367 33 c -369 32 372 31 375 31 c -378 31 382 32 387 33 C -387 2 L -378 -1 369 -3 361 -3 c -351 -3 342 -1 335 2 c -328 6 322 10 318 17 C -307 10 297 5 288 2 c -279 -1 271 -3 262 -3 c -247 -3 234 2 225 10 c -215 19 211 30 211 43 c -211 50 212 57 215 63 c -219 69 224 74 230 79 c -237 83 247 87 261 91 c -274 94 291 97 311 98 C -@c -311 71 m -297 69 287 67 281 65 c -275 63 271 60 268 57 c -266 54 264 51 264 47 c -264 43 266 39 269 36 c -273 33 277 32 282 32 c -286 32 290 33 295 35 c -300 37 305 39 311 43 C -311 71 L -@c - F % CHAR: 393 0 (b) @t -469 239 m -469 151 L -478 157 486 161 493 163 c -500 165 507 166 514 166 c -532 166 547 159 559 146 c -573 130 580 110 580 84 c -580 57 573 36 559 20 c -545 4 528 -4 508 -4 c -500 -4 492 -2 485 0 c -477 3 469 7 461 14 C -453 0 L -417 0 L -417 193 L -393 193 L -393 225 L -414 226 434 231 453 239 C -469 239 L -@c -469 116 m -469 66 l -469 56 469 49 471 46 c -473 42 475 39 479 36 c -483 34 488 33 493 33 c -502 33 509 36 515 44 c -521 53 525 66 525 82 c -525 97 522 109 516 117 c -512 124 505 127 498 127 c -493 127 489 127 484 125 c -479 123 474 120 469 116 C -@c - F % CHAR: 593 0 (y) @t -596 162 m -697 162 L -697 131 L -690 131 l -684 131 680 130 679 130 c -677 129 676 127 676 126 c -676 125 678 121 680 116 c -704 57 L -730 116 l -732 120 733 124 733 126 c -733 127 732 129 730 129 c -729 130 725 131 719 131 c -710 131 L -710 162 L -798 162 L -798 131 L -790 131 785 130 784 130 c -782 130 781 129 779 128 c -778 127 776 123 774 118 c -700 -33 l -693 -49 684 -60 675 -66 c -666 -72 655 -75 642 -75 c -630 -75 620 -72 612 -66 c -605 -59 601 -52 601 -43 c -601 -37 603 -31 607 -27 c -612 -22 618 -20 624 -20 c -628 -20 633 -21 637 -23 c -639 -24 642 -27 645 -30 c -646 -32 648 -33 649 -34 c -650 -35 651 -35 652 -35 c -654 -35 657 -34 659 -32 c -662 -28 666 -22 670 -13 c -676 0 L -621 116 l -618 122 616 126 614 127 c -613 128 611 130 609 130 c -608 131 603 131 596 131 C -596 162 L -@c - F T -@rax 2233.80 2373.34 2244.24 2389.25 @E -[0.07199 0.00000 0.00000 0.07199 2233.79980 2373.55200] @tm - 0 O 0 @g -0.00 0.00 0.00 1.00 k -e - -% FontChange:/_R7106-BookmanOldStyle 333.00 z -% CHAR: 0 0 (t) @t -86 218 m -86 162 L -138 162 L -138 128 L -86 128 L -86 71 l -86 58 86 50 87 47 c -89 43 92 40 95 38 c -100 35 106 33 112 33 c -123 33 134 37 145 44 C -145 9 L -136 5 127 2 120 0 c -112 -2 104 -3 95 -3 c -85 -3 76 -1 68 1 c -60 4 54 7 48 12 c -43 17 39 22 37 27 c -35 32 34 40 34 50 c -34 128 L -9 128 L -9 159 L -18 162 25 166 32 171 c -38 176 43 183 46 190 c -50 197 53 207 54 218 C -86 218 L -@c - F T -@rax 2303.64 2169.50 2317.10 2187.00 @E -[0.07199 0.00000 0.00000 0.07199 2303.63989 2169.79199] @tm - 0 O 0 @g -0.00 0.00 0.00 1.00 k -e - -% FontChange:/_R7106-BookmanOldStyle 333.00 z -% CHAR: 0 0 (b) @t -76 239 m -76 151 L -85 157 93 161 100 163 c -107 165 114 166 121 166 c -139 166 154 159 166 146 c -180 130 187 110 187 84 c -187 57 180 36 166 20 c -152 4 135 -4 115 -4 c -107 -4 99 -2 92 0 c -84 3 76 7 68 14 C -60 0 L -24 0 L -24 193 L -0 193 L -0 225 L -21 226 41 231 60 239 C -76 239 L -@c -76 116 m -76 66 l -76 56 76 49 78 46 c -80 42 82 39 86 36 c -90 34 95 33 100 33 c -109 33 116 36 122 44 c -128 53 132 66 132 82 c -132 97 129 109 123 117 c -119 124 112 127 105 127 c -100 127 96 127 91 125 c -86 123 81 120 76 116 C -@c - F T -@rax %%Note: Object -2159.21 2192.11 2475.14 2196.86 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 2.016 2.016 0.000 @w -2159.21 2196.86 m -2197.30 2196.86 2475.14 2192.11 2475.14 2192.11 C -S -@j -0.00 0.00 0.00 1.00 K -0.00 0.00 0.00 1.00 k -0 @g -0 @G -[] 0 d 0 J 0 j -0 R 0 O -0 2.02 2.02 0 @w -2147.54 2196.86 m -2159.86 2203.06 L -2159.86 2190.67 L -2147.54 2196.86 L -f -@J -@j -0.00 0.00 0.00 1.00 K -0.00 0.00 0.00 1.00 k -0 @g -0 @G -[] 0 d 0 J 0 j -0 R 0 O -0 2.02 2.02 0 @w -2482.20 2192.04 m -2468.23 2198.30 L -2470.18 2194.27 2470.10 2190.24 2468.02 2186.21 C -2482.20 2192.04 L -f -@J - -@rax %%Note: Object -2151.22 2387.88 2335.39 2391.05 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 2.016 2.016 0.000 @w -2151.22 2387.88 m -2205.22 2387.88 2335.39 2391.05 2335.39 2391.05 C -S -@j -0.00 0.00 0.00 1.00 K -0.00 0.00 0.00 1.00 k -0 @g -0 @G -[] 0 d 0 J 0 j -0 R 0 O -0 2.02 2.02 0 @w -2139.55 2387.88 m -2151.86 2394.07 L -2151.86 2381.69 L -2139.55 2387.88 L -f -@J -@j -0.00 0.00 0.00 1.00 K -0.00 0.00 0.00 1.00 k -0 @g -0 @G -[] 0 d 0 J 0 j -0 R 0 O -0 2.02 2.02 0 @w -2342.45 2391.19 m -2328.19 2396.88 L -2330.28 2392.92 2330.42 2388.89 2328.48 2384.78 C -2342.45 2391.19 L -f -@J - -@rax %%Note: Object -2060.78 2426.04 2468.74 2537.50 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2075.04 2426.04 m -2065.54 2430.86 2073.46 2427.70 2070.29 2432.45 C -2068.70 2432.45 L -2068.70 2434.03 2070.29 2438.78 2065.54 2438.78 C -2065.54 2443.61 L -2063.95 2443.61 L -2060.78 2448.36 2063.95 2469.02 2063.95 2475.43 C -2067.12 2475.43 2063.95 2477.02 2067.12 2477.02 C -2067.12 2481.77 2070.29 2488.18 2070.29 2492.93 C -2073.46 2492.93 2073.46 2496.10 2073.46 2497.68 C -2075.04 2497.68 L -2075.04 2505.67 L -2076.62 2505.67 L -2076.62 2508.84 L -2079.79 2508.84 2079.79 2512.01 2081.38 2512.01 C -2081.38 2516.76 L -2082.96 2518.42 L -2081.38 2516.76 2082.96 2518.42 2086.13 2518.42 C -2087.71 2520.00 L -2087.71 2523.17 2094.12 2523.17 2094.12 2526.34 C -2095.70 2526.34 2105.21 2529.50 2106.79 2529.50 C -2106.79 2531.09 L -2111.54 2531.09 L -2111.54 2532.67 2117.88 2534.33 2119.46 2534.33 C -2119.46 2537.50 2121.12 2534.33 2121.12 2537.50 C -2136.96 2537.50 2156.04 2534.33 2170.30 2534.33 C -2171.88 2531.09 L -2176.63 2531.09 L -2176.63 2527.92 2178.22 2531.09 2178.22 2527.92 C -2182.97 2527.92 L -2182.97 2521.58 2241.72 2516.76 2248.06 2515.18 c -2279.81 2507.26 2322.72 2520.00 2354.47 2513.59 c -2375.06 2510.42 2411.64 2512.01 2430.65 2502.43 C -2430.65 2500.85 L -2435.40 2500.85 L -2436.98 2499.26 2438.57 2497.68 2441.81 2497.68 C -2443.39 2496.10 L -2443.39 2494.51 2452.90 2486.52 2454.48 2486.52 C -2456.06 2484.94 L -2454.48 2486.52 2456.06 2484.94 2456.06 2481.77 C -2457.65 2481.77 2462.40 2477.02 2462.40 2475.43 C -2463.98 2473.85 L -2467.15 2473.85 2467.15 2470.61 2468.74 2470.61 C -S - -@rax %%Note: Object -2506.90 2392.63 2583.07 2443.61 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2517.98 2443.61 m -2517.98 2441.95 2514.82 2432.45 2514.82 2430.86 C -2513.23 2430.86 L -2513.23 2426.04 L -2510.06 2426.04 2513.23 2424.46 2510.06 2424.46 C -2510.06 2418.12 L -2508.48 2418.12 L -2506.90 2416.54 2508.48 2405.38 2508.48 2402.21 C -2530.66 2402.21 L -2530.66 2400.62 2532.24 2397.46 2533.82 2397.46 C -2530.66 2400.62 2532.24 2397.46 2533.82 2394.22 C -2535.41 2392.63 L -2543.40 2392.63 L -2544.98 2394.22 L -2543.40 2392.63 2544.98 2394.22 2544.98 2397.46 C -2546.57 2397.46 2546.57 2400.62 2549.74 2400.62 C -2551.32 2402.21 L -2549.74 2400.62 2551.32 2402.21 2551.32 2405.38 C -2554.49 2405.38 L -2554.49 2406.96 L -2575.15 2408.54 L -2575.15 2406.96 L -2583.07 2406.96 L -S - -@rs @rs -/$ctm matrix currentmatrix def -%EndTile -%EndColorLayer -@rs -@rs -%EndPage -%%Trailer -end diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob21.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob21.gif deleted file mode 100755 index c8d3ff8bf..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob21.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob21.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob21.pdf deleted file mode 100644 index 0b5d6d08c..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob21.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob22.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob22.eps deleted file mode 100755 index 29c1e4a47..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob22.eps +++ /dev/null @@ -1,544 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Wire_Spool.eps -%%CreationDate: 12/15/1995 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%BoundingBox:221 484 357 710 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -4079 1657 5954 3532 OV -0.96 sg fill -gr -gs -4079.5 1657.5 5954.5 3532.5 OV -35 slw 0 sg str -gr -gs -4704 2282 5329 2907 OV -0.87 sg fill -gr -gs -4704.25 2282.25 5329.75 2907.75 OV -52.5 slw 0 sg str -gr -gs -4977 2556 5056 2634 OV -1 sg fill -gr -gs -4977.625 2556.625 5056.375 2634.375 OV -1.25 slw 0 sg str -gr -gs -4079 2595 4237 2521 4237 2669 2 P -0 sg fill -gr -gs -5016.625 2595.625 m -4079.625 2595.625 L -1.25 slw 0 sg str -gr -/_Times-Roman ff [243 0 0 -243 0 0] mf sf -4383 2538 m 0 sg (R) show -5090 2577 m 0 sg (r) show -gs -5016 2282 5090 2440 4942 2440 2 P -0 sg fill -gr -gs -5016.625 2595.625 m -5016.625 2282.625 L -1.25 slw 0 sg str -gr -gs -5329.625 2595.625 m -5329.625 3845.625 L -1.25 slw 0 sg str -gr -gs -5016 3836 5641 4149 R -0 0 0 1 1 1 [8 66 0 144 4 64 16 1] patfill -gr -gs -5016.625 3836.625 5641.375 4149.375 R -1.25 slw 0 sg str -gr -gs -5016 4783 5641 5095 R -0 0 0 1 1 1 [8 66 0 144 4 64 16 1] patfill -gr -gs -5016.625 4783.625 m -5067.625 4783.625 L -1.25 slw 0 sg str -gr -gs -5120.625 4783.625 m -5171.625 4783.625 L -1.25 slw 0 sg str -gr -gs -5224.625 4783.625 m -5275.625 4783.625 L -1.25 slw 0 sg str -gr -gs -5328.625 4783.625 m -5380.625 4783.625 L -1.25 slw 0 sg str -gr -gs -5433.625 4783.625 m -5484.625 4783.625 L -1.25 slw 0 sg str -gr -gs -5537.625 4783.625 m -5588.625 4783.625 L -1.25 slw 0 sg str -gr -gs -5641.625 4783.625 m -dot -1.25 slw 0 sg str -gr -gs -5641.625 4783.625 m -5641.625 4834.625 L -1.25 slw 0 sg str -gr -gs -5641.625 4887.625 m -5641.625 4938.625 L -1.25 slw 0 sg str -gr -gs -5641.625 4991.625 m -5641.625 5042.625 L -1.25 slw 0 sg str -gr -gs -5641.625 5095.625 m -5589.625 5095.625 L -1.25 slw 0 sg str -gr -gs -5536.625 5095.625 m -5485.625 5095.625 L -1.25 slw 0 sg str -gr -gs -5432.625 5095.625 m -5381.625 5095.625 L -1.25 slw 0 sg str -gr -gs -5328.625 5095.625 m -5277.625 5095.625 L -1.25 slw 0 sg str -gr -gs -5224.625 5095.625 m -5173.625 5095.625 L -1.25 slw 0 sg str -gr -gs -5120.625 5095.625 m -5069.625 5095.625 L -1.25 slw 0 sg str -gr -gs -5016.625 5095.625 m -5016.625 5044.625 L -1.25 slw 0 sg str -gr -gs -5016.625 4990.625 m -5016.625 4939.625 L -1.25 slw 0 sg str -gr -gs -5016.625 4886.625 m -5016.625 4835.625 L -1.25 slw 0 sg str -gr -gs -5329.625 4158.625 m -5329.625 4209.625 L -1.25 slw 0 sg str -gr -gs -5329.625 4262.625 m -5329.625 4313.625 L -1.25 slw 0 sg str -gr -gs -5329.625 4366.625 m -5329.625 4417.625 L -1.25 slw 0 sg str -gr -gs -5329.625 4470.625 m -5329.625 4522.625 L -1.25 slw 0 sg str -gr -gs -5329.625 4575.625 m -5329.625 4626.625 L -1.25 slw 0 sg str -gr -gs -5329.625 4679.625 m -5329.625 4730.625 L -1.25 slw 0 sg str -gr -gs -5329.625 4783.625 m -dot -1.25 slw 0 sg str -gr -gs -4938.625 4001.625 m -4887.625 4001.625 L -1.25 slw 0 sg str -gr -gs -4834.625 4001.625 m -4783.625 4001.625 L -1.25 slw 0 sg str -gr -gs -4730.625 4001.625 m -4679.625 4001.625 L -1.25 slw 0 sg str -gr -gs -4626.625 4001.625 m -4574.625 4001.625 L -1.25 slw 0 sg str -gr -gs -4938.625 4939.625 m -4887.625 4939.625 L -1.25 slw 0 sg str -gr -gs -4834.625 4939.625 m -4783.625 4939.625 L -1.25 slw 0 sg str -gr -gs -4730.625 4939.625 m -4679.625 4939.625 L -1.25 slw 0 sg str -gr -gs -4626.625 4939.625 m -4574.625 4939.625 L -1.25 slw 0 sg str -gr -gs -4738 4001 4812 4159 4664 4159 2 P -0 sg fill -gr -gs -4738 4939 4664 4781 4812 4781 2 P -0 sg fill -gr -gs -4738.625 4001.625 m -4738.625 4939.625 L -1.25 slw 0 sg str -gr -gs -4669 4357 4843 4617 R -1 sg fill -gr -4669 4565 m 0 sg (D) show -5225 4070 m 0 sg (M) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob22.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob22.gif deleted file mode 100755 index bfa2bffd7..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob22.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob22.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob22.pdf deleted file mode 100644 index 69926dee5..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob22.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob23.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob23.eps deleted file mode 100755 index 93d2be9e9..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob23.eps +++ /dev/null @@ -1,547 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Sun Oct 1 13:13:42 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 219 496 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def /dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def /crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /rpath { - newpath moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} bind def /rfpath { - /rad3 exch def /hh3 exch def /ww3 exch def /yy1 exch def /xx1 exch def /xx2 xx1 ww3 add def /yy2 yy1 hh3 add def newpath xx1 yy1 rad3 hh3 0 gt { - add - } { - sub - } ifelse moveto xx1 yy1 xx2 yy1 rad3 arcto 4 { - pop - } repeat xx2 yy1 xx2 yy2 rad3 arcto 4 { - pop - } repeat xx2 yy2 xx1 yy2 rad3 arcto 4 { - pop - } repeat xx1 yy2 xx1 yy1 rad3 arcto 4 { - pop - } repeat closepath -} bind def /rfill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - 4 2 roll rpath crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - rectfill pop - } ifelse grestore -} bind def /rstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse 4 2 roll rpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /rffill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse rfpath filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /rfstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse rfpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /mkrpath { - dodrawctm rpath unpagectm -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /estroke { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /efill { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath unpagectm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /apstroke { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc pie chord or { - closepath - } if crlinalph setalpha pie not chord not and { - crfrtarw { - 2 copy crlinw exch gsave newpath angle1 1 add cos radius mul radius add angle1 1 add sin radius mul radius add moveto angle1 cos radius mul radius add angle1 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if crendarw { - 2 copy crlinw exch gsave newpath angle2 1 sub cos radius mul radius add angle2 1 sub sin radius mul radius add moveto angle2 cos radius mul radius add angle2 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if - } if crlincp setlinecap crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /apfill { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup 5 -2 roll arc pie chord or { - closepath - } if 1 xscale div 1 yscale div scale crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /mkepath { - dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def /closed exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc closed pie or chord or { - closepath - } if unpagectm -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 218.59201 495.100006 rectclip --125 -261.899994 translate -125 261.899994 218.59201 495.100006 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 2.6 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 3 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [4 4] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -/esave save def 1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 90 180 162 505 1.009346 1 53.5 false false 1 0 0 1 0 0 sc5mt astore apstroke esave restore -/esave save def 1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 90 180 270 505 -1.009346 1 53.5 false false 1 0 0 1 0 0 sc5mt astore apstroke esave restore -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -126 162 558 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -216 270 558 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 126 432 72 -72 1 0 0 1 0 0 sc6mt astore rstroke -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 234 342 72 -36 1 0 0 1 0 0 sc6mt astore rstroke -/crlinw 2.1 def -/crfilalph 0.5 def -/crfilred 0.5 def /crfilgrn 0.5 def /crfilblu 0.5 def /filinclr true def -0.97 0 0 0.97 14.601593 16.761597 sc6mt astore 45 1 -1 306 594 1.164 0 0 1.164 -192.529083 -81.007614 sc5mt astore efill -0.97 0 0 0.97 14.601593 16.761597 sc4mt astore 0.97 0 0 0.97 14.601593 16.761597 sc6mt astore 45 1 -1 306 594 1.164 0 0 1.164 -192.529083 -81.007614 sc5mt astore estroke -/crlinw 2.8 def -0.97 0 0 0.97 14.601593 16.761597 sc6mt astore 2.5 1 -1 486 307 0.97 0 0 0.97 -257.338409 262.1716 sc5mt astore efill -0.97 0 0 0.97 14.601593 16.761597 sc4mt astore 0.97 0 0 0.97 14.601593 16.761597 sc6mt astore 2.5 1 -1 486 307 0.97 0 0 0.97 -257.338409 262.1716 sc5mt astore estroke -/crlinw 2.6 def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -180 216 738 1 0 0 1 0 0 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(M ) [29.988007 0 0 0] 416 478 /Helvetica [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 -272.395996 -95] dotx -(m ) [29.988007 0 0 0] 434 276 /Helvetica [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 -182.339996 38.631989] dotx -( ) [0 0] 302 271 /Helvetica [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 0 0] dotx -(T ) [21.996002 0 0 0] 425 580 /Helvetica [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 -200.492004 74.151978] dotx -(T ) [21.996002 0 0 0] 429 508 /Helvetica [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 -258 -46] dotx -(T) [0 0] 519 447 /Helvetica [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 -244 -53] dotx -/txtdraw true def -/txlndraw true def -( ) [0 0] 540.995972 447 /Helvetica [ 24 1 mul 0 0 24 0 0 ] [1 0 0 1 -244 -53] dotx -(1 ) [13.343994 0 0 0] 372 714 /Helvetica [ 24 1 mul 0 0 24 0 0 ] [1 0 0 1 -92 -404] dotx -(2 ) [13.343994 0 0 0] 477 701 /Helvetica [ 24 1 mul 0 0 24 0 0 ] [1 0 0 1 -290 -248] dotx -(3 ) [13.343994 0 0 0] 496 660 /Helvetica [ 24 1 mul 0 0 24 0 0 ] [1 0 0 1 -253.528015 -13.544006] dotx -(2 ) [13.343994 0 0 0] 450 624 /Helvetica [ 24 1 mul 0 0 24 0 0 ] [1 0 0 1 -278 -248] dotx -(1 ) [13.343994 0 0 0] 442 524 /Helvetica [ 24 1 mul 0 0 24 0 0 ] [1 0 0 1 -152 -136] dotx -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 72 0 396 684 1 0 0 1 -216 54 sc6mt astore ssl -/crlinw 1.8 def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -18 -18 414 702 1 0 0 1 -216 54 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -18 -18 450 702 1 0 0 1 -216 54 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -18 -18 432 702 1 0 0 1 -216 54 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -18 -18 468 702 1 0 0 1 -216 54 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -18 -18 486 702 1 0 0 1 -216 54 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(M ) [29.988007 0 0 0] 416 478 /Helvetica [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 -123.395996 78] dotx -/txtdraw true def -/txlndraw true def -(p ) [13.343994 0 0 0] 450 624 /Helvetica [ 24 1 mul 0 0 24 0 0 ] [1 0 0 1 -127 -71] dotx -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob23.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob23.gif deleted file mode 100755 index 15f2ecd40..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob23.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob23.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob23.pdf deleted file mode 100644 index f1aa2b6f0..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob23.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob24.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob24.eps deleted file mode 100755 index bd6049bb8..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob24.eps +++ /dev/null @@ -1,9 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: mdt2p2f.eps -%%CreationDate: 10/18/1994 -%%Pages: 0 -%%DocumentFonts: Symbol -%%+ Times-Roman -%%BoundingBox:153 442 469 627 -%%EndComments save % Basic Definitions /gs {gsave} def /gr {grestore} def /t {translate} def /sc {scale} def /sg {setgray} def /srgb {setrgbcolor} def /ff {findfont} def /mf {makefont} def /sf {setfont} def /slw {setlinewidth} def /str {stroke} def /slc {setlinecap} def % Polyline operators /pl % x y pl x y { transform 0.25 sub round 0.25 add exch 0.25 sub round 0.25 add exch itransform } def /setstrokeadjust where { pop true setstrokeadjust /c % x1 y1 x2 y2 x3 y3 c - {curveto} def /C /c load def /v % x2 y2 x3 y3 v - {currentpoint 6 2 roll curveto} def /V /v load def /y % x1 y1 x2 y2 y - {2 copy curveto} def /Y /y load def /l % x y l - {lineto} def /L /l load def /m % x y m - {moveto} def /dot {currentpoint transform exch 1 add exch itransform lineto} def } {%else /c {pl curveto} def /C /c load def /v {currentpoint 6 2 roll pl curveto} def /V /v load def /y {pl 2 copy curveto} def /Y /y load def /l {pl lineto} def /L /l load def /m {pl moveto} def /dot {currentpoint transform exch 1 add exch itransform lineto} def }ifelse % Rectangle: left top right bottom R - /rectangleDict 4 dict def /R {rectangleDict begin /bottom exch def /right exch def /top exch def /left exch def right bottom m right top L left top L left bottom L right bottom L closepath end} bind def % Oval: left top right bottom OV - /ovalDict 10 dict def /OV {ovalDict begin /bottom exch def /right exch def /top exch def /left exch def /yrad bottom top sub 2 div def /xrad right left sub 2 div def /y yrad top add def /x xrad left add def x y t xrad yrad sc newpath 0 0 1 0 360 arc closepath 1 xrad div 1 yrad div sc % Reverse scaling. end} bind def % Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - /rRectangleDict 10 dict def /RR { rRectangleDict begin 2 div /hvy exch def 2 div /hvx exch def /bottom exch def /right exch def /top exch def /left exch def /nleft hvx left add hvx div def /ntop hvy top add hvy div def /nright right hvx sub hvx div def /nbottom bottom hvy sub hvy div def hvx hvy sc newpath nright nbottom 1 90 0 arcn nright ntop 1 360 270 arcn nleft ntop 1 270 180 arcn nleft nbottom 1 180 90 arcn closepath 1 hvx div 1 hvy div sc end } bind def % Arc: left top right bottom startangle endangle A - /arcDict 12 dict def /A { arcDict begin /endangle exch def /startangle exch def /bottom exch def /right exch def /top exch def /left exch def /yrad bottom top sub 2 div def /y yrad top add def /xrad right left sub 2 div def /x xrad left add def x y t xrad yrad neg sc 0 0 1 startangle endangle arc 1 xrad div 1 yrad neg div sc % Reverse scaling. end } bind def % Polygon: xn yn ... x1 y1 n-1 P - /polyDict 1 dict def /P { polyDict begin /numOfPoints exch def m numOfPoints {L} repeat end } bind def % Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - /fillDict 11 dict def /patfill { fillDict begin gs /fa exch def % Grab pattern. srgb % Set background color. 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. flattenpath pathbbox % Get path bounding box. /ury exch def /urx exch def /lly exch def /llx exch def % Get edges. clip newpath llx lly m llx ury L urx ury L urx lly L closepath fill % Fill in background color. srgb % Set foreground color. /w urx llx sub ceiling cvi def /h ury lly sub ceiling cvi def /bytes w 8 div ceiling cvi def /patstr bytes 8 mul string def /row 0 def /patproc { 0 1 7 { /row exch def row bytes mul 1 row 1 add bytes mul 1 sub {patstr exch fa row 8 mod get put} for } for patstr } def llx lly t w h sc w h true [w 0 0 h 0 0] patproc imagemask gr end } bind def % Outline string show: string olshow - /outlinedict 1 dict def /olshow { outlinedict begin /cs 1 string def { cs 0 3 -1 roll put % Stuff the char into the string cs. gs 1 sg cs show gr % Paint the char white and move back. cs true charpath currentpoint str m % Draw char outline. } forall end } bind def % Shadow string show: string shadow-x shadow-y shshow - /shadowdict 3 dict def /shshow { shadowdict begin /shady exch def /shadx exch def /cs 1 string def { cs 0 3 -1 roll put % Stuff the char into the string cs. currentpoint shadx shady rmoveto % Draw shadow. cs show m gs 1 sg cs show gr % Paint char white. cs true charpath currentpoint str m % Draw char outline. shadx 0 rmoveto % Move to next char position. } forall end } bind def % Text Encoding Procedure /Z % array literal literal direction Z - { pop findfont begin currentdict dup length 1 add dict begin {1 index /FID ne {def} {pop pop} ifelse} forall /FontName exch def dup length 0 ne { /Encoding Encoding 256 array copy def 0 exch { dup type /nametype eq {Encoding 2 index 2 index put pop 1 add} {exch pop} ifelse } forall } if pop currentdict dup end end /FontName get exch definefont pop } def %%EndProlog %%BeginEncoding: _Symbol Symbol [ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis /Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute /egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde /oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex /udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls /registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash /infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation /product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash /questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta /guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe /endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide /lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright /fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand /Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex /Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex /Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla /hungarumlaut/ogonek/caron ] /_Symbol/Symbol 0 Z %%EndEncoding %%BeginEncoding: _Times-Roman Times-Roman [ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis /Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute /egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde /oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex /udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls /registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash /infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation /product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash /questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta /guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe /endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide /lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright /fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand /Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex /Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex /Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla /hungarumlaut/ogonek/caron ] /_Times-Roman/Times-Roman 0 Z %%EndEncoding gs 0 792 t 0.058 -0.058 sc 2 slc gs 4470 3636 5564 4574 R 0.87 sg fill gr gs 4470.625 3636.625 5564.375 4574.375 R 1.25 slw 0 sg str gr gs 7127 3949 7439 4261 OV 0 sg fill gr gs 7127.625 3949.625 7439.375 4261.375 OV 1.25 slw 0 sg str gr gs 6970.5 3793.5 7595.5 4418.5 OV 35 slw 0 sg str gr gs 3064.25 4574.25 m 6814.25 4574.25 L 52.5 slw 0 sg str gr gs 6814.25 4574.25 m 6814.25 5824.25 L 52.5 slw 0 sg str gr gs 6501 4574 7283 4105 6814 4887 6814 4574 6501 4574 4 P closepath 0.75 sg fill gr gs 6501 4574 7283 4105 6814 4887 6814 4574 6501 4574 4 P closepath 1.25 slw 0 sg str gr gs 7595.625 4105.625 m 7595.625 4887.625 L 1.25 slw 0 sg str gr gs 7283.625 3793.625 m 5564.625 3793.625 L 1.25 slw 0 sg str gr gs 7283 4887 7908 5824 R 0.93 sg fill gr gs 7283.625 4887.625 7908.375 5824.375 R 1.25 slw 0 sg str gr gs 3064 3324 3238 3336 3166 3465 2 P 0 sg fill gr gs 4470.625 4105.625 m 3064.625 3324.625 L 1.25 slw 0 sg str gr gs 4470.625 4105.625 m dot 1.25 slw 0 sg str gr gs 4418.625 4105.625 m dot 1.25 slw 0 sg str gr gs 4366.625 4105.625 m dot 1.25 slw 0 sg str gr gs 4314.625 4105.625 m dot 1.25 slw 0 sg str gr gs 4262.625 4105.625 m dot 1.25 slw 0 sg str gr gs 4210.625 4105.625 m dot 1.25 slw 0 sg str gr gs 4158.625 4105.625 m dot 1.25 slw 0 sg str gr gs 4106.625 4105.625 m dot 1.25 slw 0 sg str gr gs 4053.625 4105.625 m dot 1.25 slw 0 sg str gr gs 4001.625 4105.625 m dot 1.25 slw 0 sg str gr gs 3949.625 4105.625 m dot 1.25 slw 0 sg str gr gs 3897.625 4105.625 m dot 1.25 slw 0 sg str gr gs 3845.625 4105.625 m dot 1.25 slw 0 sg str gr gs 3793.625 4105.625 m dot 1.25 slw 0 sg str gr gs 3741.625 4105.625 m dot 1.25 slw 0 sg str gr gs 3689.625 4105.625 m dot 1.25 slw 0 sg str gr gs 3637.625 4105.625 m dot 1.25 slw 0 sg str gr gs 3585.625 4105.625 m dot 1.25 slw 0 sg str gr gs 3533.625 4105.625 m dot 1.25 slw 0 sg str gr gs 3481.625 4105.625 m dot 1.25 slw 0 sg str gr gs 3429.625 4105.625 m dot 1.25 slw 0 sg str gr gs 3377.625 4105.625 m dot 1.25 slw 0 sg str gr gs 3324.625 4105.625 m dot 1.25 slw 0 sg str gr gs 3272.625 4105.625 m dot 1.25 slw 0 sg str gr gs 3220.625 4105.625 m dot 1.25 slw 0 sg str gr gs 3168.625 4105.625 m dot 1.25 slw 0 sg str gr gs 3116.625 4105.625 m dot 1.25 slw 0 sg str gr gs 3845 4105 3848 4044 3853 4009 3859 3974 3868 3939 3878 3905 3890 3872 3904 3840 3920 3808 3924 3802 9 P 1.25 slw 0 sg str gr gs 3533 3706 3637 4001 R 1 sg fill gr /_Symbol ff [208 0 0 -208 0 0] mf sf 3533 3931 m 0 sg (q) show gs 2914 3094 3018 3320 R 1 sg fill gr /_Times-Roman ff [208 0 0 -208 0 0] mf sf 2914 3250 m 0 sg (F) show gs 4887 3992 5147 4218 R 1 sg fill gr 4887 4148 m 2.08 slw 0 sg (m1) show gs 7465 5242 7726 5468 R 1 sg fill gr 7465 5398 m 2.08 slw 0 sg (m2) show gr %%Trailer restore \ No newline at end of file diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob24.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob24.gif deleted file mode 100755 index 99449efed..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob24.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob24.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob24.pdf deleted file mode 100644 index b9de6f457..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob24.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob26.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob26.eps deleted file mode 100755 index a646d6e87..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob26.eps +++ /dev/null @@ -1,764 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Tue Oct 25 10:29:10 1994 -%%For: wolfe -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 287 391 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def /dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def /crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /rpath { - newpath moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} bind def /rfpath { - /rad3 exch def /hh3 exch def /ww3 exch def /yy1 exch def /xx1 exch def /xx2 xx1 ww3 add def /yy2 yy1 hh3 add def newpath xx1 yy1 rad3 hh3 0 gt { - add - } { - sub - } ifelse moveto xx1 yy1 xx2 yy1 rad3 arcto 4 { - pop - } repeat xx2 yy1 xx2 yy2 rad3 arcto 4 { - pop - } repeat xx2 yy2 xx1 yy2 rad3 arcto 4 { - pop - } repeat xx1 yy2 xx1 yy1 rad3 arcto 4 { - pop - } repeat closepath -} bind def /rfill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - 4 2 roll rpath crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - rectfill pop - } ifelse grestore -} bind def /rstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse 4 2 roll rpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /rffill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse rfpath filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /rfstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse rfpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /mkrpath { - dodrawctm rpath unpagectm -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /arwlen 6 def /arw 4 def /arow { - gsave newpath moveto lineto unpagectm concat { - - } { - - } { - - } { - - } pathforall newpath 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath crlinalph setalpha strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - crstrpat findfont exch strwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /arwpath { - sc7mt currentmatrix pop gsave newpath moveto lineto unpagectm dup concat { - - } { - - } { - - } { - - } pathforall grestore unpagectm 5 -1 roll concat 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath sc7mt setmatrix -} bind def end -TopDrawDict begin /estroke { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /efill { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath unpagectm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /apstroke { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc pie chord or { - closepath - } if crlinalph setalpha pie not chord not and { - crfrtarw { - 2 copy crlinw exch gsave newpath angle1 1 add cos radius mul radius add angle1 1 add sin radius mul radius add moveto angle1 cos radius mul radius add angle1 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if crendarw { - 2 copy crlinw exch gsave newpath angle2 1 sub cos radius mul radius add angle2 1 sub sin radius mul radius add moveto angle2 cos radius mul radius add angle2 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if - } if crlincp setlinecap crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /apfill { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup 5 -2 roll arc pie chord or { - closepath - } if 1 xscale div 1 yscale div scale crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /mkepath { - dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def /closed exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc closed pie or chord or { - closepath - } if unpagectm -} bind def end -TopDrawDict begin /defpat { - 7 dict begin /FontDict 9 dict def FontDict begin /cache exch def /key exch def /proc exch cvx def /mtx exch matrix invertmatrix def /height exch def /width exch def /ctm matrix currentmatrix def /ptm matrix identmatrix def /str (12345678901234567890123456789012) def end /FontBBox [ 0 0 FontDict /width get FontDict /height get ] def /FontMatrix FontDict /mtx get def /Encoding StandardEncoding def /FontType 3 def /BuildChar { - pop begin FontDict begin width 0 cache { - 0 0 width height setcachedevice - } { - setcharwidth - } ifelse 0 0 moveto width 0 lineto width height lineto 0 height lineto closepath clip newpath gsave proc grestore end end - } def FontDict /key get currentdict definefont end -} bind def /patpath { - dup type /dicttype eq { - begin unpagectm - } { - exch begin unpagectm concat - } ifelse currentdict setfont FontDict begin FontMatrix concat width 0 dtransform round width div exch round width div exch 0 height dtransform round height div exch round height div exch 0 0 transform round exch round exch ptm astore setmatrix errordict begin /*undefinedresult /undefinedresult load def /undefinedresult { - pop 43 - } bind def end 42 pathbbox errordict begin /undefinedresult /*undefinedresult load def end dup 43 ne { - 5 -1 roll - } if 42 eq { - height div ceiling height mul 4 1 roll width div ceiling width mul 4 1 roll height div floor height mul 4 1 roll width div floor width mul 4 1 roll 2 index sub height div ceiling cvi exch 3 index sub width div ceiling cvi exch 4 2 roll moveto FontMatrix ptm invertmatrix pop { - gsave ptm concat dup str length idiv { - str show - } repeat dup str length mod str exch 0 exch getinterval show grestore 0 height rmoveto - } repeat pop - } { - pop - } ifelse end end -} bind def /patfil { - gsave clip patpath grestore newpath -} bind def /trpatfil { - patfil -} bind def /oppatfil { - gsave 1 setgray 1 setalpha fill grestore patfil -} bind def /trpateofil { - pateofil -} bind def /oppateofil { - gsave 1 setgray 1 setalpha fill grestore pateofil -} bind def /pateofil { - gsave eoclip patpath grestore newpath -} bind def /patstrk { - gsave strokepath clip patpath grestore newpath -} bind def /trpatstrk { - patstrk -} bind def /oppatstrk { - gsave 1 setgray 1 setalpha stroke grestore patstrk -} bind def /patashow { - (0) exch { - 2 copy 0 exch put pop dup false charpath currentpoint 5 index type /dicttype eq { - 5 index patfil - } { - 6 index 6 index patfil - } ifelse moveto 3 copy pop rmoveto - } forall pop pop pop dup type /dicttype ne { - pop - } if pop -} bind def /patshow { - 0 exch 0 exch patashow -} bind def /rpatfil { - gsave setalpha pop setrgbcolor rpath tpatstr cvs cvn invpats { - piddict exch get - } { - ipiddict exch get - } ifelse findfont oppatfil grestore -} bind def /tpatstr 10 string def /getpat { - tpatstr cvs cvn invpats { - piddict exch get - } { - ipiddict exch get - } ifelse -} bind def end -TopDrawDict begin 8 8 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 8 2 rectfill -} bind /hline1 true defpat pop 16 16 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 16 8 rectfill -} bind /hline2 true defpat pop 32 32 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 32 16 rectfill -} bind /hline3 true defpat pop 8 8 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 2 8 rectfill -} bind /vline1 true defpat pop 16 16 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 8 16 rectfill -} bind /vline2 true defpat pop 32 32 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 16 32 rectfill -} bind /vline3 true defpat pop 15 15 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 1 setlinewidth stroke -} bind /rdline1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 2 scale 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 3 setlinewidth stroke -} bind /rdline2 true defpat pop 60 60 [ 300 72 div 0 0 300 72 div 0 0 ] { - 4 4 scale 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 4 setlinewidth stroke -} bind /rdline3 true defpat pop 15 15 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 1 setlinewidth stroke -} bind /ldline1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 2 scale 2 setlinecap 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 3 setlinewidth stroke -} bind /ldline2 true defpat pop 60 60 [ 300 72 div 0 0 300 72 div 0 0 ] { - 4 4 scale 2 setlinecap 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 4 setlinewidth stroke -} bind /ldline3 true defpat pop 7 7 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 4 0 moveto 4 7 lineto 0 4 moveto 7 4 lineto 0.5 setlinewidth stroke -} bind /gray1 true defpat pop 11 11 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 6 0 moveto 6 11 lineto 0 6 moveto 11 6 lineto 0.5 setlinewidth stroke -} bind /gray2 true defpat pop 15 15 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 8 0 moveto 8 15 lineto 0 8 moveto 15 8 lineto 0.5 setlinewidth stroke -} bind /gray3 true defpat pop 19 19 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 10 0 moveto 10 19 lineto 0 10 moveto 19 10 lineto 0.5 setlinewidth stroke -} bind /gray4 true defpat pop 23 23 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 12 0 moveto 12 23 lineto 0 12 moveto 23 12 lineto 0.5 setlinewidth stroke -} bind /gray5 true defpat pop 31 31 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 16 0 moveto 16 31 lineto 0 16 moveto 31 16 lineto 0.5 setlinewidth stroke -} bind /gray6 true defpat pop 20 20 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 10 0 moveto 20 10 lineto 0 10 moveto 10 20 lineto 10 0 moveto 0 10 lineto 20 10 moveto 10 20 lineto 0.25 setlinewidth stroke -} bind /xhatch1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 2 scale 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 0.5 setlinewidth stroke -} bind /xhatch2 true defpat pop 60 60 [ 300 72 div 0 0 300 72 div 0 0 ] { - 4 4 scale 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 2 setlinewidth stroke -} bind /xhatch3 true defpat pop 20 20 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 10 10 4 0 360 arc closepath fill -} bind /dots1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 15 15 8 0 360 arc closepath fill -} bind /dots2 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 25 25 20 0 360 arc closepath fill -} bind /dots3 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 0 26 moveto 50 0 rlineto 0 1 moveto 50 0 rlineto 26 50 moveto 0 -25 rlineto 1 25 moveto 0 -25 rlineto 1 setlinewidth stroke -} bind /bricks true defpat pop 25 25 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0.5 0.5 scale 0 0 25 25 rectfill 25 25 25 25 rectfill -} bind /check1 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 25 25 rectfill 25 25 25 25 rectfill -} bind /check2 true defpat pop 80 80 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 40 40 rectfill 40 40 40 40 rectfill -} bind /check3 true defpat pop 20 20 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 10 0 moveto 20 10 lineto 10 20 lineto 0 10 lineto closepath fill -} bind /diamond1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 15 0 moveto 30 15 lineto 15 30 lineto 0 15 lineto closepath fill -} bind /diamond2 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 25 0 moveto 50 25 lineto 25 50 lineto 0 25 lineto closepath fill -} bind /diamond3 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 10 10 30 30 rectfill 0 0 moveto 50 50 lineto 0 50 moveto 50 0 lineto 1 setlinewidth stroke -} bind /weave true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 25 25 22 0 360 arc closepath 1 setlinewidth stroke -} bind /donut true defpat pop 100 100 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap -20 0 moveto 25 25 rlineto -25 25 rlineto 25 25 rlineto -25 25 rlineto 5 0 moveto 25 25 rlineto -25 25 rlineto 25 25 rlineto -25 25 rlineto 30 0 moveto 25 25 rlineto -25 25 rlineto 25 25 rlineto -25 25 rlineto 55 0 moveto 25 25 rlineto -25 25 rlineto 25 25 rlineto -25 25 rlineto 80 0 moveto 25 25 rlineto -25 25 rlineto 25 25 rlineto -25 25 rlineto 1 setlinewidth stroke -} bind /ziggy true defpat pop 100 100 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 0 -20 moveto 25 25 rlineto 25 -25 rlineto 25 25 rlineto 25 -25 rlineto 0 5 moveto 25 25 rlineto 25 -25 rlineto 25 25 rlineto 25 -25 rlineto 0 30 moveto 25 25 rlineto 25 -25 rlineto 25 25 rlineto 25 -25 rlineto 0 55 moveto 25 25 rlineto 25 -25 rlineto 25 25 rlineto 25 -25 rlineto 0 80 moveto 25 25 rlineto 25 -25 rlineto 25 25 rlineto 25 -25 rlineto 1 setlinewidth stroke -} bind /zaggy true defpat pop 80 80 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 0 0 moveto 0 40 lineto 40 40 lineto 40 80 lineto 80 80 lineto 0 60 moveto 20 60 lineto 20 80 lineto 20 0 moveto 20 20 lineto 60 20 lineto 60 60 lineto 80 60 lineto 1 setlinewidth stroke -} bind /zaggyd true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 0 12.5 moveto 6.25 0 rlineto 0 37.5 moveto 31.25 0 rlineto 50 12.5 moveto -31.25 0 rlineto 50 37.5 moveto -6.25 0 rlineto 12.5 0 moveto 0 6.25 rlineto 37.5 0 moveto 0 31.25 rlineto 12.5 50 moveto 0 -31.25 rlineto 37.5 50 moveto 0 -6.25 rlineto 1 setlinewidth stroke -} bind /plusses true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 0 10 moveto 10 0 rlineto 0 -10 rlineto 0 40 moveto 10 0 rlineto 0 10 rlineto 50 10 moveto -10 0 rlineto 0 -10 rlineto 50 40 moveto -10 0 rlineto 0 10 rlineto 7 7 moveto 36 0 rlineto 0 36 rlineto -36 0 rlineto closepath 1 setlinewidth stroke -} bind /boxes true defpat pop 100 100 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 50 50 40 0 360 arc closepath 40 60 moveto 0 8 rlineto 60 60 moveto 0 8 rlineto 50 45 moveto 0 8 rlineto 35 35 moveto 35 21 65 21 65 35 curveto 1 setlinewidth stroke -} bind /smiley true defpat pop /piddict 256 dict def piddict begin /1 /gray3 def /2 /gray2 def /3 /gray1 def /4 /gray6 def /5 /gray5 def /6 /gray4 def /7 /hline3 def /8 /hline2 def /9 /hline1 def /10 /vline3 def /11 /vline2 def /12 /vline1 def /13 /rdline3 def /14 /rdline2 def /15 /rdline1 def /16 /ldline3 def /17 /ldline2 def /18 /ldline1 def /19 /check3 def /20 /check2 def /21 /check1 def /22 /xhatch3 def /23 /xhatch2 def /24 /xhatch1 def /25 /dots3 def /26 /dots2 def /27 /dots1 def /28 /zaggyd def /29 /zaggy def /30 /ziggy def /31 /diamond3 def /32 /diamond2 def /33 /diamond1 def /34 /donut def /35 /weave def /36 /bricks def /37 /plusses def /38 /boxes def /39 /smiley def end /invpats true def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 287 390.343933 rectclip --149 -217 translate -149 217 287 390.343933 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 1.8 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 9 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -0.636396 0.636396 -0.636396 0.636396 367.941345 -62.841232 sc4mt astore -0.636396 0.636396 0.636396 0.636396 317.354706 -62.841232 sc5mt astore 341 251 19 307 -0.292571 0.292571 0.636396 0.636396 128.710388 -26.996941 sc6mt astore rstroke -/crfilred 0.666662 def /crfilgrn 0.666662 def /crfilblu 0.666662 def /filinclr true def -/filwpat true def -0.636396 0.636396 -0.636396 0.636396 367.941345 -62.841232 sc6mt astore 1.802773 1 -1.000004 247 416 -0.636396 0.636396 0.636396 0.636396 177.114685 -89.556396 sc5mt astore efill -0.636396 0.636396 -0.636396 0.636396 367.941345 -62.841232 sc4mt astore -0.636396 0.636396 0.636396 0.636396 317.354706 -62.841232 sc6mt astore 1.802773 1 -1.000004 247 416 -0.636396 0.636396 0.636396 0.636396 177.114685 -89.556396 sc5mt astore estroke -/crlinw 4.6 def -0.18 0 0 0.18 202.031952 251.668793 sc4mt astore -0.18 0 0 0.18 483.264069 251.668793 sc5mt astore 53 -52 363 299 -0.18 0 0 0.18 266.24408 189.168793 sc6mt astore ssl -0.18 0 0 0.18 202.031952 251.668793 sc6mt astore 8.01561 -1 -1 414 254 -0.18 0 0 0.18 265.524109 188.448792 sc5mt astore efill -0.18 0 0 0.18 202.031952 251.668793 sc4mt astore -0.18 0 0 0.18 483.264069 251.668793 sc6mt astore 8.01561 -1 -1 414 254 -0.18 0 0 0.18 265.524109 188.448792 sc5mt astore estroke -0.18 0 0 0.18 202.031952 251.668793 sc4mt astore -0.18 0 0 0.18 483.264069 251.668793 sc5mt astore -64 0 408 240 -0.18 0 0 0.18 266.604065 188.268799 sc6mt astore ssl -/crlinw 1.9 def -0.9 0 0 0.9 18 53.640015 sc4mt astore -0.9 0 0 0.9 667.296021 53.640015 sc5mt astore 312.440063 0 143 439 0.9 0 0 0.9 24.900002 -164.559982 sc6mt astore ssl -0.9 0 0 0.9 18 53.640015 sc4mt astore -0.9 0 0 0.9 667.296021 53.640015 sc5mt astore -13 -12 199 294 -0.9 0 0 0.9 595.896057 -35.859985 sc6mt astore ssl -0.9 0 0 0.9 18 53.640015 sc4mt astore -0.9 0 0 0.9 667.296021 53.640015 sc5mt astore -13 -12 234 294 -0.9 0 0 0.9 595.896057 -35.859985 sc6mt astore ssl -0.9 0 0 0.9 18 53.640015 sc4mt astore -0.9 0 0 0.9 667.296021 53.640015 sc5mt astore -13 -12 270 294 -0.9 0 0 0.9 595.896057 -35.859985 sc6mt astore ssl -0.9 0 0 0.9 18 53.640015 sc4mt astore -0.9 0 0 0.9 667.296021 53.640015 sc5mt astore -13 -12 306 294 -0.9 0 0 0.9 595.896057 -35.859985 sc6mt astore ssl -0.9 0 0 0.9 18 53.640015 sc4mt astore -0.9 0 0 0.9 667.296021 53.640015 sc5mt astore -13 -12 342 294 -0.9 0 0 0.9 595.896057 -35.859985 sc6mt astore ssl -0.9 0 0 0.9 18 53.640015 sc4mt astore -0.9 0 0 0.9 667.296021 53.640015 sc5mt astore -13 -12 378 294 -0.9 0 0 0.9 595.896057 -35.859985 sc6mt astore ssl -0.9 0 0 0.9 18 53.640015 sc4mt astore -0.9 0 0 0.9 667.296021 53.640015 sc5mt astore -13 -12 414 294 -0.9 0 0 0.9 595.896057 -35.859985 sc6mt astore ssl -0.9 0 0 0.9 18 53.640015 sc4mt astore -0.9 0 0 0.9 667.296021 53.640015 sc5mt astore -13 -12 450 294 -0.9 0 0 0.9 595.896057 -35.859985 sc6mt astore ssl -0.9 0 0 0.9 18 53.640015 sc4mt astore -0.9 0 0 0.9 667.296021 53.640015 sc5mt astore -13 -12 485 294 -0.9 0 0 0.9 595.896057 -35.859985 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(CM ) [17.328003 0 19.992004 0 0 0] 386 512 /Helvetica [ 24 1 mul 0 0 24 0 0 ] [0.9 0 0 0.9 -106.499992 -118.659988] dotx -/crfrtarw true def -/esave save def 0.9 0 0 0.9 18 53.640015 sc4mt astore -0.9 0 0 0.9 667.296021 53.640015 sc6mt astore 134.554031 180 91 295 1.040462 1 86.5 false false -0.9 0 0 0.9 369.996033 -109.659988 sc5mt astore apstroke esave restore -/txtdraw true def -/txlndraw true def -(q ) [18.755997 0 0 0] 54 273 /Symbol [ 36 1 mul 0 0 36 0 0 ] [-0.9 0 0 0.9 315.996033 1.040009] dotx -/crlinw 1.8 def -/crfrtarw false def -0.636396 0.636396 -0.636396 0.636396 376.149353 -96.825241 sc4mt astore -0.636396 0.636396 0.636396 0.636396 325.562714 -96.825241 sc5mt astore 341 251 19 307 -0.271928 0.271928 0.404221 0.404221 175.67218 266.217041 sc6mt astore rstroke -0.636396 0.636396 -0.636396 0.636396 376.149353 -96.825241 sc6mt astore 1.802773 1 -1.000004 247 416 -0.636396 0.636396 0.636396 0.636396 138.922699 102.692886 sc5mt astore efill -0.636396 0.636396 -0.636396 0.636396 376.149353 -96.825241 sc4mt astore -0.636396 0.636396 0.636396 0.636396 325.562714 -96.825241 sc6mt astore 1.802773 1 -1.000004 247 416 -0.636396 0.636396 0.636396 0.636396 138.922699 102.692886 sc5mt astore estroke -/crlinw 4.6 def -0.18 0 0 0.18 210.23996 217.684784 sc4mt astore -0.18 0 0 0.18 491.472076 217.684784 sc5mt astore 53 -52 363 299 -0.18 0 0 0.18 262.052063 416.984772 sc6mt astore ssl -0.18 0 0 0.18 210.23996 217.684784 sc6mt astore 8.01561 -1 -1 414 254 -0.18 0 0 0.18 261.332092 416.264771 sc5mt astore efill -0.18 0 0 0.18 210.23996 217.684784 sc4mt astore -0.18 0 0 0.18 491.472076 217.684784 sc6mt astore 8.01561 -1 -1 414 254 -0.18 0 0 0.18 261.332092 416.264771 sc5mt astore estroke -0.18 0 0 0.18 210.23996 217.684784 sc4mt astore -0.18 0 0 0.18 491.472076 217.684784 sc5mt astore -64 0 408 240 -0.18 0 0 0.18 262.412048 416.084778 sc6mt astore ssl -/crlinw 1.9 def -0.9 0 0 0.9 26.208008 19.656006 sc4mt astore -0.9 0 0 0.9 675.504028 19.656006 sc5mt astore 317.440063 0 145 111 0.9 0 0 0.9 19.408005 358.455994 sc6mt astore ssl -0.9 0 0 0.9 26.208008 19.656006 sc4mt astore -0.9 0 0 0.9 675.504028 19.656006 sc5mt astore -13 -12 199 294 -0.9 0 0 0.9 596.704041 191.955994 sc6mt astore ssl -0.9 0 0 0.9 26.208008 19.656006 sc4mt astore -0.9 0 0 0.9 675.504028 19.656006 sc5mt astore -13 -12 234 294 -0.9 0 0 0.9 596.704041 191.955994 sc6mt astore ssl -0.9 0 0 0.9 26.208008 19.656006 sc4mt astore -0.9 0 0 0.9 675.504028 19.656006 sc5mt astore -13 -12 270 294 -0.9 0 0 0.9 596.704041 191.955994 sc6mt astore ssl -0.9 0 0 0.9 26.208008 19.656006 sc4mt astore -0.9 0 0 0.9 675.504028 19.656006 sc5mt astore -13 -12 306 294 -0.9 0 0 0.9 596.704041 191.955994 sc6mt astore ssl -0.9 0 0 0.9 26.208008 19.656006 sc4mt astore -0.9 0 0 0.9 675.504028 19.656006 sc5mt astore -13 -12 342 294 -0.9 0 0 0.9 596.704041 191.955994 sc6mt astore ssl -0.9 0 0 0.9 26.208008 19.656006 sc4mt astore -0.9 0 0 0.9 675.504028 19.656006 sc5mt astore -13 -12 378 294 -0.9 0 0 0.9 596.704041 191.955994 sc6mt astore ssl -0.9 0 0 0.9 26.208008 19.656006 sc4mt astore -0.9 0 0 0.9 675.504028 19.656006 sc5mt astore -13 -12 414 294 -0.9 0 0 0.9 596.704041 191.955994 sc6mt astore ssl -0.9 0 0 0.9 26.208008 19.656006 sc4mt astore -0.9 0 0 0.9 675.504028 19.656006 sc5mt astore -13 -12 450 294 -0.9 0 0 0.9 596.704041 191.955994 sc6mt astore ssl -0.9 0 0 0.9 26.208008 19.656006 sc4mt astore -0.9 0 0 0.9 675.504028 19.656006 sc5mt astore -13 -12 485 294 -0.9 0 0 0.9 596.704041 191.955994 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(CM ) [17.328003 0 19.992004 0 0 0] 386 512 /Helvetica [ 24 1 mul 0 0 24 0 0 ] [0.9 0 0 0.9 -131.391998 82.156006] dotx -/crfrtarw true def -/esave save def 0.9 0 0 0.9 26.208008 19.656006 sc4mt astore -0.9 0 0 0.9 675.504028 19.656006 sc6mt astore 134.554031 180 91 295 1.040462 1 86.5 false false -0.9 0 0 0.9 365.804077 118.156006 sc5mt astore apstroke esave restore -/txtdraw true def -/txlndraw true def -(q ) [18.755997 0 0 0] 54 273 /Symbol [ 36 1 mul 0 0 36 0 0 ] [-0.9 0 0 0.9 311.804077 228.856003] dotx -/txtdraw true def -/txlndraw true def -(B ) [24.012001 0 0 0] 50 648 /Helvetica [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 359 -404] dotx -(A ) [24.012001 0 0 0] 58 626 /Helvetica [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 350 -155] dotx -/crlinw 1 def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -30 144 589 1 0 0 1 220 -20 sc6mt astore ssl -/crendarw true def -/crfrtarw false def --4.37113e-08 1 -1 -4.37113e-08 720.719971 396.720001 sc4mt astore -4.37113e-08 1 -1 -4.37113e-08 720.719971 396.720001 sc5mt astore 0 -30 162 577 -4.37113e-08 1 -1 -4.37113e-08 940.719971 376.720001 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(x ) [12 0 0 0] 137 629 /Helvetica [ 24 1 mul 0 0 24 0 0 ] [0.759917 0 0 1 304.954803 -93] dotx -(y ) [12 0 0 0] 114 671 /Helvetica [ 24 1 mul 0 0 24 0 0 ] [1 0 0 1 245 -88] dotx -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica -%%+ Symbol -%%BoundingBox: 0.000000 0.000000 287.000000 390.343933 diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob26.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob26.gif deleted file mode 100755 index 9bada5b38..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob26.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob26.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob26.pdf deleted file mode 100644 index 8645be75e..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob26.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob27.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob27.eps deleted file mode 100755 index 8f4f99869..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob27.eps +++ /dev/null @@ -1,390 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Rod_and_Masses.eps -%%CreationDate: 12/15/1995 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%+ Symbol -%%BoundingBox:122 416 451 687 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -%%BeginEncoding: _Symbol Symbol -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Symbol/Symbol 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -6562 2535 6910 2830 R -1 sg fill -gr -/_Times-Roman ff [278 0 0 -278 0 0] mf sf -6562 2743 m 0 sg (m2) show -gs -2812 5035 3160 5330 R -1 sg fill -gr -2812 5243 m 0 sg (m1) show -gs -4861 2526 4964 2746 4758 2746 2 P -0 sg fill -gr -gs -4861.625 2526.625 m -4861.625 6276.625 L -1.25 slw 0 sg str -gr -gs -7361 4401 7141 4504 7141 4298 2 P -0 sg fill -gr -gs -2361.625 4401.625 m -7361.625 4401.625 L -1.25 slw 0 sg str -gr -gs -2985.75 5650.75 m -6735.75 3150.75 L -87.5 slw 0 sg str -gr -gs -2673 5339 3298 5964 OV -0.5 sg fill -gr -gs -2673.5 5339.5 3298.5 5964.5 OV -35 slw 0 sg str -gr -gs -6424 2838 7049 3463 OV -0.5 sg fill -gr -gs -6424.5 2838.5 7049.5 3463.5 OV -35 slw 0 sg str -gr -gs -5901 3708 5939 3769 5964 3812 5986 3857 6007 3903 6026 3949 6044 3996 6059 4043 -6072 4092 6084 4140 6093 4190 6100 4239 6106 4289 6109 4338 6111 4388 6111 4401 -15 P -1.25 slw 0 sg str -gr -gs -5712 4036 5851 4331 R -1 sg fill -gr -/_Symbol ff [278 0 0 -278 0 0] mf sf -5712 4226 m 0 sg (q) show -gs -7448 4253 7587 4548 R -1 sg fill -gr -/_Times-Roman ff [278 0 0 -278 0 0] mf sf -7448 4461 m 0 sg (x) show -gs -4792 2066 4931 2361 R -1 sg fill -gr -4792 2274 m 0 sg (y) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob27.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob27.gif deleted file mode 100755 index d426cc535..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob27.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob27.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob27.pdf deleted file mode 100644 index 0034b91ab..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob27.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob28.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob28.eps deleted file mode 100755 index 4f6a5e7b8..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob28.eps +++ /dev/null @@ -1,475 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Tue Oct 18 21:41:33 1994 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 175 95 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /arwlen 6 def /arw 4 def /arow { - gsave newpath moveto lineto unpagectm concat { - - } { - - } { - - } { - - } pathforall newpath 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath crlinalph setalpha strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - crstrpat findfont exch strwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /arwpath { - sc7mt currentmatrix pop gsave newpath moveto lineto unpagectm dup concat { - - } { - - } { - - } { - - } pathforall grestore unpagectm 5 -1 roll concat 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath sc7mt setmatrix -} bind def end -TopDrawDict begin /estroke { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /efill { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath unpagectm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /apstroke { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc pie chord or { - closepath - } if crlinalph setalpha pie not chord not and { - crfrtarw { - 2 copy crlinw exch gsave newpath angle1 1 add cos radius mul radius add angle1 1 add sin radius mul radius add moveto angle1 cos radius mul radius add angle1 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if crendarw { - 2 copy crlinw exch gsave newpath angle2 1 sub cos radius mul radius add angle2 1 sub sin radius mul radius add moveto angle2 cos radius mul radius add angle2 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if - } if crlincp setlinecap crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /apfill { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup 5 -2 roll arc pie chord or { - closepath - } if 1 xscale div 1 yscale div scale crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /mkepath { - dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def /closed exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc closed pie or chord or { - closepath - } if unpagectm -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 174.392273 94.041016 rectclip --143.33316 -591.43396 translate -143.33316 591.43396 174.392273 94.041016 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 0.7 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 0 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 4] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -161 -1 305 595 1 0 0 1 0 0 sc6mt astore ssl -/crlinw 2.8 def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 161 -71 144 666 1 0 0 1 0 0 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(q) [0 0] 289 456 /Symbol [ 24 1 mul 0 0 24 0 0 ] [1 0 0 1 -58 145] dotx -/txtdraw true def -/txlndraw true def -( ) [0 0] 301.503998 456 /Times-Italic [ 24 1 mul 0 0 24 0 0 ] [1 0 0 1 -58 145] dotx -(L ) [13.344002 0 0 0] 82 124 /Times-Italic [ 24 1 mul 0 0 24 0 0 ] [1 0 0 1 146 519] dotx -/crlinw 1.9 def -/esave save def 1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 90 180 250 577 1 4.875 4 false false 1 0 0 1 0 0 sc5mt astore apstroke esave restore -/usedash true def -/crfrtarw true def -0.45 0 0 0.45 141.625443 368.774994 sc4mt astore 0.45 0 0 0.45 141.625443 368.774994 sc5mt astore 150.569229 -66.400085 187.430771 701.400085 0.45 0 0 0.45 76.625443 367.774994 sc6mt astore ssl -/crendarw true def -/crfrtarw false def -0.45 0 0 0.45 151.525436 358.875 sc4mt astore 0.45 0 0 0.45 151.525436 358.875 sc5mt astore 150.569244 -66.400085 195 688 0.45 0 0 0.45 157.525436 335.875 sc6mt astore ssl -/crlinw 0.7 def -/usedash false def -/crendarw false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 3.605545 1.000002 -1 149 518 1 0 0 1 152 81 sc5mt astore estroke -end -grestore -grestore -%%Trailer -%%DocumentFonts: Symbol -%%+ Times-Italic diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob28.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob28.gif deleted file mode 100755 index 1c59a1310..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob28.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob28.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob28.pdf deleted file mode 100644 index 70bbde19a..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob28.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob29.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob29.eps deleted file mode 100755 index af93d7a38..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob29.eps +++ /dev/null @@ -1,363 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: Untitled1.create -%%Creator: Create -%%CreationDate: Mon Jul 15 15:06:49 1996 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 203 346 443 733 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(T@fr_fmMY]NNtQno[]`oa.)c6^2L":TEC#dDFM\"m9%58d8d7%*?r.S4!)7+NOqfZp;d?YNl#OYAf12`HScT -% 5`;Y]`hhnXlf78&HQgTOk3cOIZO5U?Du!b%:-]68_bLXGuDUqisVVdnbN27k])rA4W_aC*6A -% N;`Zf22>:TrX;8P!+Us"+97Zh?jIpF<'l+O\97aT+qO"Z=&:q7QG`\pQZ9-@iKn$!a=*K;jqha$L)A -% ?qQVgIWeQ%02F_e)Zx -% EndEmbeddedGraphics N 531 213 E fc S eade R 8c0abf7a -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -203 346 240 387 rectclip -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 204 348] concat -0 0 6 1 10 SU -12 84 T -N -0 nxsetgray -0 216 0 0 line -0 0 T -grestore -0 0 6 1 10 SU -12 300 T -N -0 nxsetgray -216 0 0 0 line -0 0 T -grestore -0 0 6 1 10 SU -228 84 T -N -0 nxsetgray -0 216 0 0 line -0 0 T -grestore -0 0 6 1 10 SU -12 84 T -N -0 nxsetgray -216 0 0 0 line -0 0 T -grestore -2 0 4 1 10 SU -[4] 0 setdash -12 12 T -N -4 L -0 nxsetgray -0 360 0 0 line -0 0 T -grestore -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob29.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob29.gif deleted file mode 100755 index 8a2798003..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob29.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob29.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob29.pdf deleted file mode 100644 index 1ec31dde5..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob29.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob34.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob34.eps deleted file mode 100755 index d1000d2aa..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob34.eps +++ /dev/null @@ -1,1783 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: hecht8.38.create -%%Creator: Create -%%CreationDate: Thu Feb 20 15:47:07 1997 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 149 417 380 684 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(@ITs6BTUq-t -% 2>d.3ll-+;Ou+&L*;^acIYHJc]nZ`f/=r0l,nSi^/1T>QR$4.!PbKN>joX'UAb3!sIMK1M[2$8D#V]1i3)]=Ze[`? -% 6MYlhuU(dL'nik6\FkJ>4`4B/nEH[%78'nc_Y&lfo'Fa9K9.g\@>Cg`f1fm$tlhN#.KO./o9 -% %9OWt'i]m]oIOn3/nLcl*`PW@c*!K>DKFsC(ihLlcs_\D>)8l,.CmgaLBn*A>R[-GlJma`[clqMOj9oaNLngr,EIQC$)EZY&]rgj8M2 -% G^P>=Z)AsFKD.A)oBE2dJh?[`gRP%:#lX.!/!q8SnDc<67""edsCIf93]TSS45L`?g`j<0)K -% Mn2^eKK$u&6`H:#=D=K8b$_$$Rt@-4U9TSK/np?g+>:>`g5)N(48.kfF0L*?X-(FXl/Wd[8k -% C\B^M_^NZ!c-DAsm:,h!:DN3")jEEmdN2Sc\$j*1tmcb&(Ri-$Q9sM)+j/UE.>S0Vob8#bn1 -% ARY[]0TFU?3KG*]X,HghM;A%V\:m[#0.p_\"R!0p]T^X"jt"5QGh6-l;'?-1RDE -% MikL\3YiNI44$+%goZUP?XN-T_Fpp+@_P6L7*a]>%Fl!(0kp2:^.tNTE,*3AXK.k+d5l'(J6 -% Nce<0l-80M=WDOeO4))l7ta9#'e)9*8"_L]^2WDdm=ls[t14&2#>Emdfs$mLH8]jsRP*D0k] -% _'ZX%KuY2LGh'T*e5P8R:ItNtJG)WQ^XW!gjA6o5*%KFBQTrG -% ufgLbg4X;@Ec*(rR&QY_jM*0F*UT`",>R4nWqn-qb]d"3?82T:!rU9;r$o633?dA-E1DBL37 -% SOFU43,9h1/J-f*3%mhZEGVBQ_!"1al"=d4J!YC7`G*7S$VL\^MTKiO$@[%oD_L:nu^f"43_ -% I0U0&-<]d(mYF-6P*]?^>kk4/.mMB$j%8JW5T8OZ,KmWKbJV@5nHGX_[E?&J_Yl#"p#9#,l4 -% /J^bA4Vp=I(Z"gEc]0]4(hYQ.0EY^m8m$MmNV7L*[iK1dA<(L]"MJ,FhM9O+8U;DAGBNffEX -% `*jScTF)eKE>:ukT+@1=6r^PA+0;-0'sSSU%[)GQajWis`&NS72/a&,:k]h@\39;SmsB")jt -% RlY7oePGO'L$Rs83*e!>84jjM6i\9$pIM6U!!lD@_?`f5://%cRPj`9.-4#m;qa$m8R,^tpDHU=qP3JoA<$BLqamW:CB5QDr-SZ'I764o#n!$Di*&-*+[5g8jP;ZOoBWVS)j`uqmTKr&`= -% !*E?[5\OXU#2$e4E%m#!m"#Oba:\ok5e8tOiNHk'OA*U."tl9OY\'9?*AGo$,a[V@gatVSqQ?E[GL]J:n-O2D -% GJIZq'6&1JY#Q@DV\M6pGE05Je">P+*4(<*%?m#R=hV^67V*TqBMd.1YJC]dS=_(ZNVlq:=.,pPl8'q,\Z&UiL3&A@H"8$]YioR"5R9:C"m@+-!c[C'B#4e*B -% Eg8[E(;8[@M:.l@3ANg%o)aS_%BP\'b.8HY$0hcbQtuerXe=V;S(9rQ7H4Zm12sE>,2f@o`b -% Mp!;O!W_jtL^Ri@!Of!)`rMM=R+!1e;#2ll9#^jE7oeiM@UXo6Xc?JElZ^_Si5Q&TTk-_ -% .(BD`C0(cii*f.1KoT"!'"GkLq5i#u!i0:,l+-'6)JI2p(#!0&B<^:R'l_eo\GK$?C6d>LZb -% >Gl[9*np8d7jY1VL$Jdc7IOF7>!71JVQ/.!UnD3OupLtop?q"*q_?=+dAK[9NPX#3M!*l.YP7&!<< -% H8&0V;cLqNRRThMk3psPtbK&t,1d4p$Ue!co(W/Im,E(#3^$2B(oA*SHhc]e"rN]HCjmVfbI -% ?LKs72EFl%j`KPPao]Q[.LgB`T>k`:-dn&-1B"HEGb=i+ -% IAqB5@EGI]A'B!ge?>kC2^:IXq`R[aP@HO9T`U*`"G*3V!DihDJ:GX>I)a3 -% VG*IBtk@"B:#97[cJi!]qpjD6_J5U7V0?YLoRCsAJ -% Tk1HH$=hD`s/92Ch!0g$76.GJ:`?V!P8R<'gMmL&;-b-FWjb;@&Iod(-j:p#>u[83[]Sl7t_ -% d-C)Gt(G/np3[s,hmL7:/W*N3AJ:^JG`\M\#Ts*R^f%>r;XIS?=#c&8(Nps9O'['[?q?$DaH'JlP%Qb!.0oo<&I@b8!9ol4)+T=^ -% \<@EE630I[hf&gPA-d)[L]SEXqe(Riab"#jNn``_E&e2E$($]T;t#NrPj"+fB8jY"Kuqu(=D -% > -matrix makepattern /staggered_bricks exch def -%%EndSetup -gsave -149 417 231 267 rectclip -0 0 4 1 10 SU -198 431 T -N -gsave N -0 0 m 0 88 l -clip -N -0 setlinewidth -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -N -grestore -4 L -0.117237 nxsetgray -0 88 0 0 line -270.002655 0 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 195.000015 556] concat -[-4.23237e-08 -0.968254 0.968254 -4.23237e-08 0.999986 62.000011] concat -N -gsave N -63 63 0 0 ovalPath -clip -N -0 setlinewidth -0.63448 nxsetgray -0 0 63 1.26 rectfill -0.63448 nxsetgray -0 1.26 63 1.26 rectfill -0.63448 nxsetgray -0 2.52 63 1.26 rectfill -0.63448 nxsetgray -0 3.78 63 1.26 rectfill -0.63448 nxsetgray -0 5.04 63 1.26 rectfill -0.63448 nxsetgray -0 6.3 63 1.26 rectfill -0.63448 nxsetgray -0 7.56 63 1.26 rectfill -0.63448 nxsetgray -0 8.820001 63 1.26 rectfill -0.63448 nxsetgray -0 10.080001 63 1.26 rectfill -0.63448 nxsetgray -0 11.340001 63 1.26 rectfill -0.63448 nxsetgray -0 12.600001 63 1.26 rectfill -0.63448 nxsetgray -0 13.860002 63 1.26 rectfill -0.63448 nxsetgray -0 15.120002 63 1.26 rectfill -0.63448 nxsetgray -0 16.380001 63 1.26 rectfill -0.63448 nxsetgray -0 17.640001 63 1.26 rectfill -0.63448 nxsetgray -0 18.900002 63 1.26 rectfill -0.63448 nxsetgray -0 20.160002 63 1.26 rectfill -0.63448 nxsetgray -0 21.420002 63 1.26 rectfill -0.63448 nxsetgray -0 22.680002 63 1.26 rectfill -0.63448 nxsetgray -0 23.940002 63 1.26 rectfill -0.63448 nxsetgray -0 25.200003 63 1.26 rectfill -0.63448 nxsetgray -0 26.460003 63 1.26 rectfill -0.63448 nxsetgray -0 27.720003 63 1.26 rectfill -0.63448 nxsetgray -0 28.980003 63 1.26 rectfill -0.63448 nxsetgray -0 30.240004 63 1.26 rectfill -0.63448 nxsetgray -0 31.500004 63 1.26 rectfill -0.63448 nxsetgray -0 32.760002 63 1.26 rectfill -0.63448 nxsetgray -0 34.02 63 1.26 rectfill -0.63448 nxsetgray -0 35.279999 63 1.26 rectfill -0.63448 nxsetgray -0 36.539997 63 1.26 rectfill -0.63448 nxsetgray -0 37.799995 63 1.26 rectfill -0.63448 nxsetgray -0 39.059994 63 1.26 rectfill -0.63448 nxsetgray -0 40.319992 63 1.26 rectfill -0.63448 nxsetgray -0 41.57999 63 1.26 rectfill -0.63448 nxsetgray -0 42.839989 63 1.26 rectfill -0.63448 nxsetgray -0 44.099987 63 1.26 rectfill -0.63448 nxsetgray -0 45.359985 63 1.26 rectfill -0.63448 nxsetgray -0 46.619984 63 1.26 rectfill -0.63448 nxsetgray -0 47.879982 63 1.26 rectfill -0.63448 nxsetgray -0 49.13998 63 1.26 rectfill -0.63448 nxsetgray -0 50.399979 63 1.26 rectfill -0.63448 nxsetgray -0 51.659977 63 1.26 rectfill -0.63448 nxsetgray -0 52.919975 63 1.26 rectfill -0.63448 nxsetgray -0 54.179974 63 1.26 rectfill -0.63448 nxsetgray -0 55.439972 63 1.26 rectfill -0.63448 nxsetgray -0 56.69997 63 1.26 rectfill -0.63448 nxsetgray -0 57.959969 63 1.26 rectfill -0.63448 nxsetgray -0 59.219967 63 1.26 rectfill -0.63448 nxsetgray -0 60.479965 63 1.26 rectfill -0.63448 nxsetgray -0 61.739964 63 1.26 rectfill -N -grestore -0.15 L -0 nxsetgray -gsave -63 63 0 0 oval 0.015873 0.015873 S s -grestore -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 222 530] concat -[-4.37113e-08 -1 1 -4.37113e-08 1 10] concat -N -gsave N -9 9 0 0 ovalPath -clip -N -0 setlinewidth -0.63448 nxsetgray -0 0 9 0.18 rectfill -0.63448 nxsetgray -0 0.18 9 0.18 rectfill -0.63448 nxsetgray -0 0.36 9 0.18 rectfill -0.63448 nxsetgray -0 0.54 9 0.18 rectfill -0.63448 nxsetgray -0 0.72 9 0.18 rectfill -0.63448 nxsetgray -0 0.9 9 0.18 rectfill -0.63448 nxsetgray -0 1.08 9 0.18 rectfill -0.63448 nxsetgray -0 1.26 9 0.18 rectfill -0.63448 nxsetgray -0 1.44 9 0.18 rectfill -0.63448 nxsetgray -0 1.62 9 0.18 rectfill -0.63448 nxsetgray -0 1.8 9 0.18 rectfill -0.63448 nxsetgray -0 1.98 9 0.18 rectfill -0.63448 nxsetgray -0 2.16 9 0.18 rectfill -0.63448 nxsetgray -0 2.34 9 0.18 rectfill -0.63448 nxsetgray -0 2.52 9 0.18 rectfill -0.63448 nxsetgray -0 2.700001 9 0.18 rectfill -0.63448 nxsetgray -0 2.880001 9 0.18 rectfill -0.63448 nxsetgray -0 3.060001 9 0.18 rectfill -0.63448 nxsetgray -0 3.240001 9 0.18 rectfill -0.63448 nxsetgray -0 3.420001 9 0.18 rectfill -0.63448 nxsetgray -0 3.600001 9 0.18 rectfill -0.63448 nxsetgray -0 3.780001 9 0.18 rectfill -0.63448 nxsetgray -0 3.960001 9 0.18 rectfill -0.63448 nxsetgray -0 4.140001 9 0.18 rectfill -0.63448 nxsetgray -0 4.320001 9 0.18 rectfill -0.63448 nxsetgray -0 4.5 9 0.18 rectfill -0.63448 nxsetgray -0 4.68 9 0.18 rectfill -0.63448 nxsetgray -0 4.86 9 0.18 rectfill -0.63448 nxsetgray -0 5.04 9 0.18 rectfill -0.63448 nxsetgray -0 5.22 9 0.18 rectfill -0.63448 nxsetgray -0 5.4 9 0.18 rectfill -0.63448 nxsetgray -0 5.579999 9 0.18 rectfill -0.63448 nxsetgray -0 5.759999 9 0.18 rectfill -0.63448 nxsetgray -0 5.939999 9 0.18 rectfill -0.63448 nxsetgray -0 6.119999 9 0.18 rectfill -0.63448 nxsetgray -0 6.299999 9 0.18 rectfill -0.63448 nxsetgray -0 6.479999 9 0.18 rectfill -0.63448 nxsetgray -0 6.659998 9 0.18 rectfill -0.63448 nxsetgray -0 6.839998 9 0.18 rectfill -0.63448 nxsetgray -0 7.019998 9 0.18 rectfill -0.63448 nxsetgray -0 7.199998 9 0.18 rectfill -0.63448 nxsetgray -0 7.379998 9 0.18 rectfill -0.63448 nxsetgray -0 7.559998 9 0.18 rectfill -0.63448 nxsetgray -0 7.739997 9 0.18 rectfill -0.63448 nxsetgray -0 7.919997 9 0.18 rectfill -0.63448 nxsetgray -0 8.099998 9 0.18 rectfill -0.63448 nxsetgray -0 8.279998 9 0.18 rectfill -0.63448 nxsetgray -0 8.459998 9 0.18 rectfill -0.63448 nxsetgray -0 8.639998 9 0.18 rectfill -0.63448 nxsetgray -0 8.819999 9 0.18 rectfill -N -grestore -0.15 L -0 nxsetgray -gsave -9 9 0 0 oval 0.111111 0.111111 S s -grestore -0 0 T -grestore -0 0 4 1 10 SU -213 533 T -N -gsave N -0 0 m 65 99 l -clip -N -0 setlinewidth -0.496551 nxsetgray -0 0 65 1.98 rectfill -0.496551 nxsetgray -0 1.98 65 1.98 rectfill -0.496551 nxsetgray -0 3.96 65 1.98 rectfill -0.496551 nxsetgray -0 5.94 65 1.98 rectfill -0.496551 nxsetgray -0 7.92 65 1.98 rectfill -0.496551 nxsetgray -0 9.9 65 1.98 rectfill -0.496551 nxsetgray -0 11.879999 65 1.98 rectfill -0.496551 nxsetgray -0 13.859999 65 1.98 rectfill -0.496551 nxsetgray -0 15.839998 65 1.98 rectfill -0.496551 nxsetgray -0 17.819998 65 1.98 rectfill -0.496551 nxsetgray -0 19.799997 65 1.98 rectfill -0.496551 nxsetgray -0 21.779997 65 1.98 rectfill -0.496551 nxsetgray -0 23.759996 65 1.98 rectfill -0.496551 nxsetgray -0 25.739996 65 1.98 rectfill -0.496551 nxsetgray -0 27.719995 65 1.98 rectfill -0.496551 nxsetgray -0 29.699995 65 1.98 rectfill -0.496551 nxsetgray -0 31.679995 65 1.98 rectfill -0.496551 nxsetgray -0 33.659996 65 1.98 rectfill -0.496551 nxsetgray -0 35.639996 65 1.98 rectfill -0.496551 nxsetgray -0 37.619995 65 1.98 rectfill -0.496551 nxsetgray -0 39.599995 65 1.98 rectfill -0.496551 nxsetgray -0 41.579994 65 1.98 rectfill -0.496551 nxsetgray -0 43.559994 65 1.98 rectfill -0.496551 nxsetgray -0 45.539993 65 1.98 rectfill -0.496551 nxsetgray -0 47.519993 65 1.98 rectfill -0.496551 nxsetgray -0 49.499992 65 1.98 rectfill -0.496551 nxsetgray -0 51.479992 65 1.98 rectfill -0.496551 nxsetgray -0 53.459991 65 1.98 rectfill -0.496551 nxsetgray -0 55.439991 65 1.98 rectfill -0.496551 nxsetgray -0 57.419991 65 1.98 rectfill -0.496551 nxsetgray -0 59.39999 65 1.98 rectfill -0.496551 nxsetgray -0 61.37999 65 1.98 rectfill -0.496551 nxsetgray -0 63.359989 65 1.98 rectfill -0.496551 nxsetgray -0 65.339989 65 1.98 rectfill -0.496551 nxsetgray -0 67.319992 65 1.98 rectfill -0.496551 nxsetgray -0 69.299995 65 1.98 rectfill -0.496551 nxsetgray -0 71.279999 65 1.98 rectfill -0.496551 nxsetgray -0 73.260002 65 1.98 rectfill -0.496551 nxsetgray -0 75.240005 65 1.98 rectfill -0.496551 nxsetgray -0 77.220009 65 1.98 rectfill -0.496551 nxsetgray -0 79.200012 65 1.98 rectfill -0.496551 nxsetgray -0 81.180016 65 1.98 rectfill -0.496551 nxsetgray -0 83.160019 65 1.98 rectfill -0.496551 nxsetgray -0 85.140022 65 1.98 rectfill -0.496551 nxsetgray -0 87.120026 65 1.98 rectfill -0.496551 nxsetgray -0 89.100029 65 1.98 rectfill -0.496551 nxsetgray -0 91.080032 65 1.98 rectfill -0.496551 nxsetgray -0 93.060036 65 1.98 rectfill -0.496551 nxsetgray -0 95.040039 65 1.98 rectfill -0.496551 nxsetgray -0 97.020042 65 1.98 rectfill -N -grestore -4 L -0.117237 nxsetgray -65 99 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 270 647] concat -[1 0 0 1 1 1] concat -N -gsave N -63 63 0 0 ovalPath -clip -N -0 setlinewidth -0.63448 nxsetgray -0 0 63 1.26 rectfill -0.63448 nxsetgray -0 1.26 63 1.26 rectfill -0.63448 nxsetgray -0 2.52 63 1.26 rectfill -0.63448 nxsetgray -0 3.78 63 1.26 rectfill -0.63448 nxsetgray -0 5.04 63 1.26 rectfill -0.63448 nxsetgray -0 6.3 63 1.26 rectfill -0.63448 nxsetgray -0 7.56 63 1.26 rectfill -0.63448 nxsetgray -0 8.820001 63 1.26 rectfill -0.63448 nxsetgray -0 10.080001 63 1.26 rectfill -0.63448 nxsetgray -0 11.340001 63 1.26 rectfill -0.63448 nxsetgray -0 12.600001 63 1.26 rectfill -0.63448 nxsetgray -0 13.860002 63 1.26 rectfill -0.63448 nxsetgray -0 15.120002 63 1.26 rectfill -0.63448 nxsetgray -0 16.380001 63 1.26 rectfill -0.63448 nxsetgray -0 17.640001 63 1.26 rectfill -0.63448 nxsetgray -0 18.900002 63 1.26 rectfill -0.63448 nxsetgray -0 20.160002 63 1.26 rectfill -0.63448 nxsetgray -0 21.420002 63 1.26 rectfill -0.63448 nxsetgray -0 22.680002 63 1.26 rectfill -0.63448 nxsetgray -0 23.940002 63 1.26 rectfill -0.63448 nxsetgray -0 25.200003 63 1.26 rectfill -0.63448 nxsetgray -0 26.460003 63 1.26 rectfill -0.63448 nxsetgray -0 27.720003 63 1.26 rectfill -0.63448 nxsetgray -0 28.980003 63 1.26 rectfill -0.63448 nxsetgray -0 30.240004 63 1.26 rectfill -0.63448 nxsetgray -0 31.500004 63 1.26 rectfill -0.63448 nxsetgray -0 32.760002 63 1.26 rectfill -0.63448 nxsetgray -0 34.02 63 1.26 rectfill -0.63448 nxsetgray -0 35.279999 63 1.26 rectfill -0.63448 nxsetgray -0 36.539997 63 1.26 rectfill -0.63448 nxsetgray -0 37.799995 63 1.26 rectfill -0.63448 nxsetgray -0 39.059994 63 1.26 rectfill -0.63448 nxsetgray -0 40.319992 63 1.26 rectfill -0.63448 nxsetgray -0 41.57999 63 1.26 rectfill -0.63448 nxsetgray -0 42.839989 63 1.26 rectfill -0.63448 nxsetgray -0 44.099987 63 1.26 rectfill -0.63448 nxsetgray -0 45.359985 63 1.26 rectfill -0.63448 nxsetgray -0 46.619984 63 1.26 rectfill -0.63448 nxsetgray -0 47.879982 63 1.26 rectfill -0.63448 nxsetgray -0 49.13998 63 1.26 rectfill -0.63448 nxsetgray -0 50.399979 63 1.26 rectfill -0.63448 nxsetgray -0 51.659977 63 1.26 rectfill -0.63448 nxsetgray -0 52.919975 63 1.26 rectfill -0.63448 nxsetgray -0 54.179974 63 1.26 rectfill -0.63448 nxsetgray -0 55.439972 63 1.26 rectfill -0.63448 nxsetgray -0 56.69997 63 1.26 rectfill -0.63448 nxsetgray -0 57.959969 63 1.26 rectfill -0.63448 nxsetgray -0 59.219967 63 1.26 rectfill -0.63448 nxsetgray -0 60.479965 63 1.26 rectfill -0.63448 nxsetgray -0 61.739964 63 1.26 rectfill -N -grestore -0.15 L -0 nxsetgray -gsave -63 63 0 0 oval 0.015873 0.015873 S s -grestore -0 0 T -grestore -0 0 4 1 10 SU -318 506 T -N -gsave N -0 106 m 0 0 l -clip -N -0 setlinewidth -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -0.496551 nxsetgray -N -grestore -4 L -0.117237 nxsetgray -0 -106 0 106 line -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 283 633.5] concat -[0.822222 0 0 0.8 1 0.5] concat -N -gsave N -45 45 0 0 ovalPath -clip -N -0 setlinewidth -0.63448 nxsetgray -0 0 45 0.9 rectfill -0.63448 nxsetgray -0 0.9 45 0.9 rectfill -0.63448 nxsetgray -0 1.8 45 0.9 rectfill -0.63448 nxsetgray -0 2.7 45 0.9 rectfill -0.63448 nxsetgray -0 3.6 45 0.9 rectfill -0.63448 nxsetgray -0 4.5 45 0.9 rectfill -0.63448 nxsetgray -0 5.4 45 0.9 rectfill -0.63448 nxsetgray -0 6.3 45 0.9 rectfill -0.63448 nxsetgray -0 7.2 45 0.9 rectfill -0.63448 nxsetgray -0 8.1 45 0.9 rectfill -0.63448 nxsetgray -0 9 45 0.9 rectfill -0.63448 nxsetgray -0 9.9 45 0.9 rectfill -0.63448 nxsetgray -0 10.799999 45 0.9 rectfill -0.63448 nxsetgray -0 11.699999 45 0.9 rectfill -0.63448 nxsetgray -0 12.599998 45 0.9 rectfill -0.63448 nxsetgray -0 13.499998 45 0.9 rectfill -0.63448 nxsetgray -0 14.399998 45 0.9 rectfill -0.63448 nxsetgray -0 15.299997 45 0.9 rectfill -0.63448 nxsetgray -0 16.199997 45 0.9 rectfill -0.63448 nxsetgray -0 17.099997 45 0.9 rectfill -0.63448 nxsetgray -0 17.999996 45 0.9 rectfill -0.63448 nxsetgray -0 18.899996 45 0.9 rectfill -0.63448 nxsetgray -0 19.799995 45 0.9 rectfill -0.63448 nxsetgray -0 20.699995 45 0.9 rectfill -0.63448 nxsetgray -0 21.599995 45 0.9 rectfill -0.63448 nxsetgray -0 22.499994 45 0.9 rectfill -0.63448 nxsetgray -0 23.399994 45 0.9 rectfill -0.63448 nxsetgray -0 24.299994 45 0.9 rectfill -0.63448 nxsetgray -0 25.199993 45 0.9 rectfill -0.63448 nxsetgray -0 26.099993 45 0.9 rectfill -0.63448 nxsetgray -0 26.999992 45 0.9 rectfill -0.63448 nxsetgray -0 27.899992 45 0.9 rectfill -0.63448 nxsetgray -0 28.799992 45 0.9 rectfill -0.63448 nxsetgray -0 29.699991 45 0.9 rectfill -0.63448 nxsetgray -0 30.599991 45 0.9 rectfill -0.63448 nxsetgray -0 31.49999 45 0.9 rectfill -0.63448 nxsetgray -0 32.39999 45 0.9 rectfill -0.63448 nxsetgray -0 33.299992 45 0.9 rectfill -0.63448 nxsetgray -0 34.199993 45 0.9 rectfill -0.63448 nxsetgray -0 35.099995 45 0.9 rectfill -0.63448 nxsetgray -0 35.999996 45 0.9 rectfill -0.63448 nxsetgray -0 36.899998 45 0.9 rectfill -0.63448 nxsetgray -0 37.799999 45 0.9 rectfill -0.63448 nxsetgray -0 38.700001 45 0.9 rectfill -0.63448 nxsetgray -0 39.600002 45 0.9 rectfill -0.63448 nxsetgray -0 40.500004 45 0.9 rectfill -0.63448 nxsetgray -0 41.400005 45 0.9 rectfill -0.63448 nxsetgray -0 42.300007 45 0.9 rectfill -0.63448 nxsetgray -0 43.200008 45 0.9 rectfill -0.63448 nxsetgray -0 44.10001 45 0.9 rectfill -N -grestore -0.15 L -0 nxsetgray -gsave -45 45 0 0 oval 0.021622 0.022222 S s -grestore -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 208.000015 543] concat -[-3.39977e-08 -0.777778 0.777778 -3.39977e-08 0.999999 36] concat -N -gsave N -45 45 0 0 ovalPath -clip -N -0 setlinewidth -0.63448 nxsetgray -0 0 45 0.9 rectfill -0.63448 nxsetgray -0 0.9 45 0.9 rectfill -0.63448 nxsetgray -0 1.8 45 0.9 rectfill -0.63448 nxsetgray -0 2.7 45 0.9 rectfill -0.63448 nxsetgray -0 3.6 45 0.9 rectfill -0.63448 nxsetgray -0 4.5 45 0.9 rectfill -0.63448 nxsetgray -0 5.4 45 0.9 rectfill -0.63448 nxsetgray -0 6.3 45 0.9 rectfill -0.63448 nxsetgray -0 7.2 45 0.9 rectfill -0.63448 nxsetgray -0 8.1 45 0.9 rectfill -0.63448 nxsetgray -0 9 45 0.9 rectfill -0.63448 nxsetgray -0 9.9 45 0.9 rectfill -0.63448 nxsetgray -0 10.799999 45 0.9 rectfill -0.63448 nxsetgray -0 11.699999 45 0.9 rectfill -0.63448 nxsetgray -0 12.599998 45 0.9 rectfill -0.63448 nxsetgray -0 13.499998 45 0.9 rectfill -0.63448 nxsetgray -0 14.399998 45 0.9 rectfill -0.63448 nxsetgray -0 15.299997 45 0.9 rectfill -0.63448 nxsetgray -0 16.199997 45 0.9 rectfill -0.63448 nxsetgray -0 17.099997 45 0.9 rectfill -0.63448 nxsetgray -0 17.999996 45 0.9 rectfill -0.63448 nxsetgray -0 18.899996 45 0.9 rectfill -0.63448 nxsetgray -0 19.799995 45 0.9 rectfill -0.63448 nxsetgray -0 20.699995 45 0.9 rectfill -0.63448 nxsetgray -0 21.599995 45 0.9 rectfill -0.63448 nxsetgray -0 22.499994 45 0.9 rectfill -0.63448 nxsetgray -0 23.399994 45 0.9 rectfill -0.63448 nxsetgray -0 24.299994 45 0.9 rectfill -0.63448 nxsetgray -0 25.199993 45 0.9 rectfill -0.63448 nxsetgray -0 26.099993 45 0.9 rectfill -0.63448 nxsetgray -0 26.999992 45 0.9 rectfill -0.63448 nxsetgray -0 27.899992 45 0.9 rectfill -0.63448 nxsetgray -0 28.799992 45 0.9 rectfill -0.63448 nxsetgray -0 29.699991 45 0.9 rectfill -0.63448 nxsetgray -0 30.599991 45 0.9 rectfill -0.63448 nxsetgray -0 31.49999 45 0.9 rectfill -0.63448 nxsetgray -0 32.39999 45 0.9 rectfill -0.63448 nxsetgray -0 33.299992 45 0.9 rectfill -0.63448 nxsetgray -0 34.199993 45 0.9 rectfill -0.63448 nxsetgray -0 35.099995 45 0.9 rectfill -0.63448 nxsetgray -0 35.999996 45 0.9 rectfill -0.63448 nxsetgray -0 36.899998 45 0.9 rectfill -0.63448 nxsetgray -0 37.799999 45 0.9 rectfill -0.63448 nxsetgray -0 38.700001 45 0.9 rectfill -0.63448 nxsetgray -0 39.600002 45 0.9 rectfill -0.63448 nxsetgray -0 40.500004 45 0.9 rectfill -0.63448 nxsetgray -0 41.400005 45 0.9 rectfill -0.63448 nxsetgray -0 42.300007 45 0.9 rectfill -0.63448 nxsetgray -0 43.200008 45 0.9 rectfill -0.63448 nxsetgray -0 44.10001 45 0.9 rectfill -N -grestore -0.15 L -0 nxsetgray -gsave -45 45 0 0 oval 0.022222 0.022222 S s -grestore -0 0 T -grestore -0 0 1 1 10 SU -[1 0 0 -1 168 529] concat -[-4.37113e-08 -1 1 -4.37113e-08 1 10.000001] concat -N -gsave N -9 63 0 0 acsRect -clip -N -0 setlinewidth -0.620685 nxsetgray -0 0 0.18 63 rectfill -0.620685 nxsetgray -0.18 0 0.18 63 rectfill -0.620685 nxsetgray -0.36 0 0.18 63 rectfill -0.620685 nxsetgray -0.54 0 0.18 63 rectfill -0.620685 nxsetgray -0.72 0 0.18 63 rectfill -0.620685 nxsetgray -0.9 0 0.18 63 rectfill -0.620685 nxsetgray -1.08 0 0.18 63 rectfill -0.620685 nxsetgray -1.26 0 0.18 63 rectfill -0.620685 nxsetgray -1.44 0 0.18 63 rectfill -0.620685 nxsetgray -1.62 0 0.18 63 rectfill -0.620685 nxsetgray -1.8 0 0.18 63 rectfill -0.620685 nxsetgray -1.98 0 0.18 63 rectfill -0.620685 nxsetgray -2.16 0 0.18 63 rectfill -0.620685 nxsetgray -2.34 0 0.18 63 rectfill -0.620685 nxsetgray -2.52 0 0.18 63 rectfill -0.620685 nxsetgray -2.700001 0 0.18 63 rectfill -0.620685 nxsetgray -2.880001 0 0.18 63 rectfill -0.620685 nxsetgray -3.060001 0 0.18 63 rectfill -0.620685 nxsetgray -3.240001 0 0.18 63 rectfill -0.620685 nxsetgray -3.420001 0 0.18 63 rectfill -0.620685 nxsetgray -3.600001 0 0.18 63 rectfill -0.620685 nxsetgray -3.780001 0 0.18 63 rectfill -0.620685 nxsetgray -3.960001 0 0.18 63 rectfill -0.620685 nxsetgray -4.140001 0 0.18 63 rectfill -0.620685 nxsetgray -4.320001 0 0.18 63 rectfill -0.620685 nxsetgray -4.5 0 0.18 63 rectfill -0.620685 nxsetgray -4.68 0 0.18 63 rectfill -0.620685 nxsetgray -4.86 0 0.18 63 rectfill -0.620685 nxsetgray -5.04 0 0.18 63 rectfill -0.620685 nxsetgray -5.22 0 0.18 63 rectfill -0.620685 nxsetgray -5.4 0 0.18 63 rectfill -0.620685 nxsetgray -5.579999 0 0.18 63 rectfill -0.620685 nxsetgray -5.759999 0 0.18 63 rectfill -0.620685 nxsetgray -5.939999 0 0.18 63 rectfill -0.620685 nxsetgray -6.119999 0 0.18 63 rectfill -0.620685 nxsetgray -6.299999 0 0.18 63 rectfill -0.620685 nxsetgray -6.479999 0 0.18 63 rectfill -0.620685 nxsetgray -6.659998 0 0.18 63 rectfill -0.620685 nxsetgray -6.839998 0 0.18 63 rectfill -0.620685 nxsetgray -7.019998 0 0.18 63 rectfill -0.620685 nxsetgray -7.199998 0 0.18 63 rectfill -0.620685 nxsetgray -7.379998 0 0.18 63 rectfill -0.620685 nxsetgray -7.559998 0 0.18 63 rectfill -0.620685 nxsetgray -7.739997 0 0.18 63 rectfill -0.620685 nxsetgray -7.919997 0 0.18 63 rectfill -0.620685 nxsetgray -8.099998 0 0.18 63 rectfill -0.620685 nxsetgray -8.279998 0 0.18 63 rectfill -0.620685 nxsetgray -8.459998 0 0.18 63 rectfill -0.620685 nxsetgray -8.639998 0 0.18 63 rectfill -0.620685 nxsetgray -8.819999 0 0.18 63 rectfill -N -grestore -1 L -0 nxsetgray -0 0 9 63 rectstroke -0 0 T -grestore -0 0 1 1 10 SU -[1 0 0 -1 297 619.5] concat -[-3.88545e-08 -0.888889 1 -4.37113e-08 1 8.500001] concat -N -gsave N -9 63 0 0 acsRect -clip -N -0 setlinewidth -0.620685 nxsetgray -0 0 0.18 63 rectfill -0.620685 nxsetgray -0.18 0 0.18 63 rectfill -0.620685 nxsetgray -0.36 0 0.18 63 rectfill -0.620685 nxsetgray -0.54 0 0.18 63 rectfill -0.620685 nxsetgray -0.72 0 0.18 63 rectfill -0.620685 nxsetgray -0.9 0 0.18 63 rectfill -0.620685 nxsetgray -1.08 0 0.18 63 rectfill -0.620685 nxsetgray -1.26 0 0.18 63 rectfill -0.620685 nxsetgray -1.44 0 0.18 63 rectfill -0.620685 nxsetgray -1.62 0 0.18 63 rectfill -0.620685 nxsetgray -1.8 0 0.18 63 rectfill -0.620685 nxsetgray -1.98 0 0.18 63 rectfill -0.620685 nxsetgray -2.16 0 0.18 63 rectfill -0.620685 nxsetgray -2.34 0 0.18 63 rectfill -0.620685 nxsetgray -2.52 0 0.18 63 rectfill -0.620685 nxsetgray -2.700001 0 0.18 63 rectfill -0.620685 nxsetgray -2.880001 0 0.18 63 rectfill -0.620685 nxsetgray -3.060001 0 0.18 63 rectfill -0.620685 nxsetgray -3.240001 0 0.18 63 rectfill -0.620685 nxsetgray -3.420001 0 0.18 63 rectfill -0.620685 nxsetgray -3.600001 0 0.18 63 rectfill -0.620685 nxsetgray -3.780001 0 0.18 63 rectfill -0.620685 nxsetgray -3.960001 0 0.18 63 rectfill -0.620685 nxsetgray -4.140001 0 0.18 63 rectfill -0.620685 nxsetgray -4.320001 0 0.18 63 rectfill -0.620685 nxsetgray -4.5 0 0.18 63 rectfill -0.620685 nxsetgray -4.68 0 0.18 63 rectfill -0.620685 nxsetgray -4.86 0 0.18 63 rectfill -0.620685 nxsetgray -5.04 0 0.18 63 rectfill -0.620685 nxsetgray -5.22 0 0.18 63 rectfill -0.620685 nxsetgray -5.4 0 0.18 63 rectfill -0.620685 nxsetgray -5.579999 0 0.18 63 rectfill -0.620685 nxsetgray -5.759999 0 0.18 63 rectfill -0.620685 nxsetgray -5.939999 0 0.18 63 rectfill -0.620685 nxsetgray -6.119999 0 0.18 63 rectfill -0.620685 nxsetgray -6.299999 0 0.18 63 rectfill -0.620685 nxsetgray -6.479999 0 0.18 63 rectfill -0.620685 nxsetgray -6.659998 0 0.18 63 rectfill -0.620685 nxsetgray -6.839998 0 0.18 63 rectfill -0.620685 nxsetgray -7.019998 0 0.18 63 rectfill -0.620685 nxsetgray -7.199998 0 0.18 63 rectfill -0.620685 nxsetgray -7.379998 0 0.18 63 rectfill -0.620685 nxsetgray -7.559998 0 0.18 63 rectfill -0.620685 nxsetgray -7.739997 0 0.18 63 rectfill -0.620685 nxsetgray -7.919997 0 0.18 63 rectfill -0.620685 nxsetgray -8.099998 0 0.18 63 rectfill -0.620685 nxsetgray -8.279998 0 0.18 63 rectfill -0.620685 nxsetgray -8.459998 0 0.18 63 rectfill -0.620685 nxsetgray -8.639998 0 0.18 63 rectfill -0.620685 nxsetgray -8.819999 0 0.18 63 rectfill -N -grestore -1 L -0 nxsetgray -0 0 9 63 rectstroke -0 0 T -grestore -0 0 1 1 10 SU -168 459 T -N -gsave N -0 0 m 0 128 l -clip -N -0 setlinewidth -0.496551 nxsetgray -0 0 1 2.56 rectfill -0.496551 nxsetgray -0 2.56 1 2.56 rectfill -0.496551 nxsetgray -0 5.12 1 2.56 rectfill -0.496551 nxsetgray -0 7.68 1 2.56 rectfill -0.496551 nxsetgray -0 10.24 1 2.56 rectfill -0.496551 nxsetgray -0 12.799999 1 2.56 rectfill -0.496551 nxsetgray -0 15.359999 1 2.56 rectfill -0.496551 nxsetgray -0 17.919998 1 2.56 rectfill -0.496551 nxsetgray -0 20.479998 1 2.56 rectfill -0.496551 nxsetgray -0 23.039997 1 2.56 rectfill -0.496551 nxsetgray -0 25.599997 1 2.56 rectfill -0.496551 nxsetgray -0 28.159996 1 2.56 rectfill -0.496551 nxsetgray -0 30.719995 1 2.56 rectfill -0.496551 nxsetgray -0 33.279995 1 2.56 rectfill -0.496551 nxsetgray -0 35.839996 1 2.56 rectfill -0.496551 nxsetgray -0 38.399998 1 2.56 rectfill -0.496551 nxsetgray -0 40.959999 1 2.56 rectfill -0.496551 nxsetgray -0 43.52 1 2.56 rectfill -0.496551 nxsetgray -0 46.080002 1 2.56 rectfill -0.496551 nxsetgray -0 48.640003 1 2.56 rectfill -0.496551 nxsetgray -0 51.200005 1 2.56 rectfill -0.496551 nxsetgray -0 53.760006 1 2.56 rectfill -0.496551 nxsetgray -0 56.320007 1 2.56 rectfill -0.496551 nxsetgray -0 58.880009 1 2.56 rectfill -0.496551 nxsetgray -0 61.44001 1 2.56 rectfill -0.496551 nxsetgray -0 64.000008 1 2.56 rectfill -0.496551 nxsetgray -0 66.560005 1 2.56 rectfill -0.496551 nxsetgray -0 69.120003 1 2.56 rectfill -0.496551 nxsetgray -0 71.68 1 2.56 rectfill -0.496551 nxsetgray -0 74.239998 1 2.56 rectfill -0.496551 nxsetgray -0 76.799995 1 2.56 rectfill -0.496551 nxsetgray -0 79.359993 1 2.56 rectfill -0.496551 nxsetgray -0 81.919991 1 2.56 rectfill -0.496551 nxsetgray -0 84.479988 1 2.56 rectfill -0.496551 nxsetgray -0 87.039986 1 2.56 rectfill -0.496551 nxsetgray -0 89.599983 1 2.56 rectfill -0.496551 nxsetgray -0 92.159981 1 2.56 rectfill -0.496551 nxsetgray -0 94.719978 1 2.56 rectfill -0.496551 nxsetgray -0 97.279976 1 2.56 rectfill -0.496551 nxsetgray -0 99.839973 1 2.56 rectfill -0.496551 nxsetgray -0 102.399971 1 2.56 rectfill -0.496551 nxsetgray -0 104.959969 1 2.56 rectfill -0.496551 nxsetgray -0 107.519966 1 2.56 rectfill -0.496551 nxsetgray -0 110.079964 1 2.56 rectfill -0.496551 nxsetgray -0 112.639961 1 2.56 rectfill -0.496551 nxsetgray -0 115.199959 1 2.56 rectfill -0.496551 nxsetgray -0 117.759956 1 2.56 rectfill -0.496551 nxsetgray -0 120.319954 1 2.56 rectfill -0.496551 nxsetgray -0 122.879951 1 2.56 rectfill -0.496551 nxsetgray -0 125.439949 1 2.56 rectfill -N -grestore -1 L -0 nxsetgray -0 128 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -361 556 T -N -gsave N -0 0 m 0 119 l -clip -N -0 setlinewidth -0.496551 nxsetgray -0 0 1 2.38 rectfill -0.496551 nxsetgray -0 2.38 1 2.38 rectfill -0.496551 nxsetgray -0 4.76 1 2.38 rectfill -0.496551 nxsetgray -0 7.14 1 2.38 rectfill -0.496551 nxsetgray -0 9.52 1 2.38 rectfill -0.496551 nxsetgray -0 11.900001 1 2.38 rectfill -0.496551 nxsetgray -0 14.280001 1 2.38 rectfill -0.496551 nxsetgray -0 16.66 1 2.38 rectfill -0.496551 nxsetgray -0 19.040001 1 2.38 rectfill -0.496551 nxsetgray -0 21.420002 1 2.38 rectfill -0.496551 nxsetgray -0 23.800003 1 2.38 rectfill -0.496551 nxsetgray -0 26.180004 1 2.38 rectfill -0.496551 nxsetgray -0 28.560005 1 2.38 rectfill -0.496551 nxsetgray -0 30.940006 1 2.38 rectfill -0.496551 nxsetgray -0 33.320007 1 2.38 rectfill -0.496551 nxsetgray -0 35.700008 1 2.38 rectfill -0.496551 nxsetgray -0 38.080009 1 2.38 rectfill -0.496551 nxsetgray -0 40.460011 1 2.38 rectfill -0.496551 nxsetgray -0 42.840012 1 2.38 rectfill -0.496551 nxsetgray -0 45.220013 1 2.38 rectfill -0.496551 nxsetgray -0 47.600014 1 2.38 rectfill -0.496551 nxsetgray -0 49.980015 1 2.38 rectfill -0.496551 nxsetgray -0 52.360016 1 2.38 rectfill -0.496551 nxsetgray -0 54.740017 1 2.38 rectfill -0.496551 nxsetgray -0 57.120018 1 2.38 rectfill -0.496551 nxsetgray -0 59.500019 1 2.38 rectfill -0.496551 nxsetgray -0 61.88002 1 2.38 rectfill -0.496551 nxsetgray -0 64.260017 1 2.38 rectfill -0.496551 nxsetgray -0 66.640015 1 2.38 rectfill -0.496551 nxsetgray -0 69.020012 1 2.38 rectfill -0.496551 nxsetgray -0 71.400009 1 2.38 rectfill -0.496551 nxsetgray -0 73.780006 1 2.38 rectfill -0.496551 nxsetgray -0 76.160004 1 2.38 rectfill -0.496551 nxsetgray -0 78.540001 1 2.38 rectfill -0.496551 nxsetgray -0 80.919998 1 2.38 rectfill -0.496551 nxsetgray -0 83.299995 1 2.38 rectfill -0.496551 nxsetgray -0 85.679993 1 2.38 rectfill -0.496551 nxsetgray -0 88.05999 1 2.38 rectfill -0.496551 nxsetgray -0 90.439987 1 2.38 rectfill -0.496551 nxsetgray -0 92.819984 1 2.38 rectfill -0.496551 nxsetgray -0 95.199982 1 2.38 rectfill -0.496551 nxsetgray -0 97.579979 1 2.38 rectfill -0.496551 nxsetgray -0 99.959976 1 2.38 rectfill -0.496551 nxsetgray -0 102.339973 1 2.38 rectfill -0.496551 nxsetgray -0 104.719971 1 2.38 rectfill -0.496551 nxsetgray -0 107.099968 1 2.38 rectfill -0.496551 nxsetgray -0 109.479965 1 2.38 rectfill -0.496551 nxsetgray -0 111.859962 1 2.38 rectfill -0.496551 nxsetgray -0 114.23996 1 2.38 rectfill -0.496551 nxsetgray -0 116.619957 1 2.38 rectfill -N -grestore -1 L -0 nxsetgray -0 119 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -[1 0 0 -1 359 675] concat -[1 0 0 1 1 1] concat -N -gsave N -staggered_bricks setpattern -0 0 17 118 rectfill -grestore -1 L -1 nxsetgray -0 0 17 118 rectstroke -0 0 T -grestore -0 0 1 1 10 SU -[1 0 0 -1 150 587] concat -[1 0 0 1 1 1] concat -N -gsave N -staggered_bricks setpattern -0 0 17 125 rectfill -grestore -1 L -1 nxsetgray -0 0 17 125 rectstroke -0 0 T -grestore -0 0 1 1 10 SU -[1 0 0 -1 286 511] concat -[1 0 0 1 1 1] concat -N -gsave N -staggered_bricks setpattern -0 0 66 55 rectfill -grestore -1 L -1 nxsetgray -0 0 66 55 rectstroke -0 0 T -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -/Helvetica findfont 12 scalefont [1 0 0 -1 0 0] makefont -10 -exch -defineuserobject -10 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1155] concat -10 execuserobject setfont -0 nxsetgray -184 582 moveto (Pulley 1) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -10 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1301] concat -10 execuserobject setfont -0 nxsetgray -229 655 moveto (Pulley 2) show -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob34.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob34.gif deleted file mode 100755 index 2486605c7..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob34.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob34.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob34.pdf deleted file mode 100644 index 9c8a7faa1..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype20/prob34.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob03.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob03.eps deleted file mode 100755 index 2b8a3b956..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob03.eps +++ /dev/null @@ -1,914 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Inel_rod.eps -%%CreationDate: 5/16/1996 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%+ Symbol -%%BoundingBox:121 447 390 671 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -%%BeginEncoding: _Symbol Symbol -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Symbol/Symbol 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -4279 3545 4185 3541 4137 3537 4090 3530 4044 3521 3997 3510 3952 3497 3907 3483 -3862 3466 3818 3447 3776 3427 3733 3405 3692 3382 3652 3356 3624 3337 4279 2413 -15 P -1 sg fill -gr -gs -4279 3545 4185 3541 4137 3537 4090 3530 4044 3521 3997 3510 3952 3497 3907 3483 -3862 3466 3818 3447 3776 3427 3733 3405 3692 3382 3652 3356 3624 3337 14 P -1.25 slw 0 sg str -gr -gs -4263 2288 4391 2377 2420 5193 2292 5103 4263 2288 4 P closepath -0.93 sg fill -gr -gs -4263.625 2288.625 m -4305.625 2317.625 L -1.25 slw 0 sg str -gr -gs -4349.625 2347.625 m -4390.625 2377.625 L -1.25 slw 0 sg str -gr -gs -4391.625 2377.625 m -4391.625 2376.625 L -1.25 slw 0 sg str -gr -gs -4361.625 2420.625 m -4332.625 2462.625 L -1.25 slw 0 sg str -gr -gs -4301.625 2505.625 m -4272.625 2547.625 L -1.25 slw 0 sg str -gr -gs -4241.625 2591.625 m -4212.625 2632.625 L -1.25 slw 0 sg str -gr -gs -4182.625 2676.625 m -4152.625 2718.625 L -1.25 slw 0 sg str -gr -gs -4122.625 2761.625 m -4093.625 2803.625 L -1.25 slw 0 sg str -gr -gs -4062.625 2847.625 m -4033.625 2888.625 L -1.25 slw 0 sg str -gr -gs -4003.625 2932.625 m -3973.625 2974.625 L -1.25 slw 0 sg str -gr -gs -3943.625 3017.625 m -3914.625 3059.625 L -1.25 slw 0 sg str -gr -gs -3883.625 3103.625 m -3854.625 3144.625 L -1.25 slw 0 sg str -gr -gs -3823.625 3188.625 m -3794.625 3230.625 L -1.25 slw 0 sg str -gr -gs -3764.625 3273.625 m -3734.625 3315.625 L -1.25 slw 0 sg str -gr -gs -3704.625 3359.625 m -3675.625 3400.625 L -1.25 slw 0 sg str -gr -gs -3644.625 3444.625 m -3615.625 3486.625 L -1.25 slw 0 sg str -gr -gs -3584.625 3529.625 m -3555.625 3571.625 L -1.25 slw 0 sg str -gr -gs -3525.625 3615.625 m -3495.625 3656.625 L -1.25 slw 0 sg str -gr -gs -3465.625 3700.625 m -3436.625 3742.625 L -1.25 slw 0 sg str -gr -gs -3405.625 3785.625 m -3376.625 3827.625 L -1.25 slw 0 sg str -gr -gs -3346.625 3871.625 m -3316.625 3912.625 L -1.25 slw 0 sg str -gr -gs -3286.625 3956.625 m -3257.625 3998.625 L -1.25 slw 0 sg str -gr -gs -3226.625 4041.625 m -3197.625 4083.625 L -1.25 slw 0 sg str -gr -gs -3166.625 4127.625 m -3137.625 4168.625 L -1.25 slw 0 sg str -gr -gs -3107.625 4212.625 m -3077.625 4254.625 L -1.25 slw 0 sg str -gr -gs -3047.625 4297.625 m -3018.625 4339.625 L -1.25 slw 0 sg str -gr -gs -2987.625 4383.625 m -2958.625 4424.625 L -1.25 slw 0 sg str -gr -gs -2927.625 4468.625 m -2898.625 4510.625 L -1.25 slw 0 sg str -gr -gs -2868.625 4553.625 m -2838.625 4595.625 L -1.25 slw 0 sg str -gr -gs -2808.625 4639.625 m -2779.625 4680.625 L -1.25 slw 0 sg str -gr -gs -2748.625 4724.625 m -2719.625 4766.625 L -1.25 slw 0 sg str -gr -gs -2689.625 4809.625 m -2659.625 4851.625 L -1.25 slw 0 sg str -gr -gs -2629.625 4895.625 m -2600.625 4936.625 L -1.25 slw 0 sg str -gr -gs -2569.625 4980.625 m -2540.625 5022.625 L -1.25 slw 0 sg str -gr -gs -2509.625 5065.625 m -2480.625 5107.625 L -1.25 slw 0 sg str -gr -gs -2450.625 5151.625 m -2420.625 5192.625 L -1.25 slw 0 sg str -gr -gs -2420.625 5193.625 m -2421.625 5193.625 L -1.25 slw 0 sg str -gr -gs -2377.625 5163.625 m -2335.625 5133.625 L -1.25 slw 0 sg str -gr -gs -2292.625 5103.625 m -2321.625 5061.625 L -1.25 slw 0 sg str -gr -gs -2352.625 5018.625 m -2381.625 4976.625 L -1.25 slw 0 sg str -gr -gs -2412.625 4932.625 m -2441.625 4890.625 L -1.25 slw 0 sg str -gr -gs -2471.625 4847.625 m -2501.625 4805.625 L -1.25 slw 0 sg str -gr -gs -2531.625 4762.625 m -2560.625 4720.625 L -1.25 slw 0 sg str -gr -gs -2591.625 4676.625 m -2620.625 4634.625 L -1.25 slw 0 sg str -gr -gs -2651.625 4591.625 m -2680.625 4549.625 L -1.25 slw 0 sg str -gr -gs -2710.625 4506.625 m -2740.625 4464.625 L -1.25 slw 0 sg str -gr -gs -2770.625 4420.625 m -2799.625 4378.625 L -1.25 slw 0 sg str -gr -gs -2830.625 4335.625 m -2859.625 4293.625 L -1.25 slw 0 sg str -gr -gs -2889.625 4250.625 m -2919.625 4208.625 L -1.25 slw 0 sg str -gr -gs -2949.625 4164.625 m -2979.625 4122.625 L -1.25 slw 0 sg str -gr -gs -3009.625 4079.625 m -3038.625 4037.625 L -1.25 slw 0 sg str -gr -gs -3069.625 3994.625 m -3098.625 3952.625 L -1.25 slw 0 sg str -gr -gs -3128.625 3908.625 m -3158.625 3867.625 L -1.25 slw 0 sg str -gr -gs -3188.625 3823.625 m -3218.625 3781.625 L -1.25 slw 0 sg str -gr -gs -3248.625 3738.625 m -3277.625 3696.625 L -1.25 slw 0 sg str -gr -gs -3308.625 3652.625 m -3337.625 3611.625 L -1.25 slw 0 sg str -gr -gs -3367.625 3567.625 m -3397.625 3525.625 L -1.25 slw 0 sg str -gr -gs -3427.625 3482.625 m -3456.625 3440.625 L -1.25 slw 0 sg str -gr -gs -3487.625 3396.625 m -3516.625 3355.625 L -1.25 slw 0 sg str -gr -gs -3547.625 3311.625 m -3576.625 3269.625 L -1.25 slw 0 sg str -gr -gs -3606.625 3226.625 m -3636.625 3184.625 L -1.25 slw 0 sg str -gr -gs -3666.625 3140.625 m -3695.625 3099.625 L -1.25 slw 0 sg str -gr -gs -3726.625 3055.625 m -3755.625 3013.625 L -1.25 slw 0 sg str -gr -gs -3786.625 2970.625 m -3815.625 2928.625 L -1.25 slw 0 sg str -gr -gs -3845.625 2884.625 m -3875.625 2843.625 L -1.25 slw 0 sg str -gr -gs -3905.625 2799.625 m -3934.625 2757.625 L -1.25 slw 0 sg str -gr -gs -3965.625 2714.625 m -3994.625 2672.625 L -1.25 slw 0 sg str -gr -gs -4025.625 2628.625 m -4054.625 2587.625 L -1.25 slw 0 sg str -gr -gs -4084.625 2543.625 m -4114.625 2501.625 L -1.25 slw 0 sg str -gr -gs -4144.625 2458.625 m -4173.625 2416.625 L -1.25 slw 0 sg str -gr -gs -4204.625 2373.625 m -4233.625 2331.625 L -1.25 slw 0 sg str -gr -gs -0 slc -newpath -4826 4522 m -3576 3272 6076 5772 270 360 A -1 sg fill -gr -gs -0 slc -newpath -3576.5 3272.5 6076.5 5772.5 270 360 A -35 slw 0 sg str -gr -gs -5724 4366 6037 4678 R -0.5 sg fill -gr -gs -5724.625 4366.625 6037.375 4678.375 R -1.25 slw 0 sg str -gr -gs -2326.625 5772.625 m -6545.625 5772.625 L -1.25 slw 0 sg str -gr -gs -6389.625 5772.625 m -6389.625 5303.625 L -1.25 slw 0 sg str -gr -gs -6389.625 4991.625 m -6389.625 4522.625 L -1.25 slw 0 sg str -gr -gs -6076.625 4522.625 m -6545.625 4522.625 L -1.25 slw 0 sg str -gr -gs -4201 2334 4357 5772 R -0.5 sg fill -gr -gs -4201.625 2334.625 4357.375 5772.375 R -1.25 slw 0 sg str -gr -gs -4240 2374 4318 2452 OV -0 sg fill -gr -gs -4240.625 2374.625 4318.375 2452.375 OV -1.25 slw 0 sg str -gr -gs -4514 5460 4826 5772 R -0.87 sg fill -gr -gs -4514.625 5460.625 m -4565.625 5460.625 L -1.25 slw 0 sg str -gr -gs -4618.625 5460.625 m -4669.625 5460.625 L -1.25 slw 0 sg str -gr -gs -4722.625 5460.625 m -4773.625 5460.625 L -1.25 slw 0 sg str -gr -gs -4826.625 5460.625 m -4826.625 5512.625 L -1.25 slw 0 sg str -gr -gs -4826.625 5565.625 m -4826.625 5616.625 L -1.25 slw 0 sg str -gr -gs -4826.625 5669.625 m -4826.625 5720.625 L -1.25 slw 0 sg str -gr -gs -4825.625 5772.625 m -4774.625 5772.625 L -1.25 slw 0 sg str -gr -gs -4721.625 5772.625 m -4670.625 5772.625 L -1.25 slw 0 sg str -gr -gs -4617.625 5772.625 m -4566.625 5772.625 L -1.25 slw 0 sg str -gr -gs -4514.625 5771.625 m -4514.625 5719.625 L -1.25 slw 0 sg str -gr -gs -4514.625 5666.625 m -4514.625 5615.625 L -1.25 slw 0 sg str -gr -gs -4514.625 5562.625 m -4514.625 5511.625 L -1.25 slw 0 sg str -gr -gs -5842 4991 5810 5054 5787 5095 5762 5135 5735 5174 5707 5211 5677 5248 5645 5283 -5613 5317 5579 5350 5543 5380 5506 5410 5468 5438 5429 5464 5389 5488 5385 5491 -4826 4522 16 P -1 sg fill -gr -gs -5842 4991 5810 5054 5787 5095 5762 5135 5735 5174 5707 5211 5677 5248 5645 5283 -5613 5317 5579 5350 5543 5380 5523 5396 11 P -1.25 slw 0 sg str -gr -gs -5385 5490 5544 5419 5487 5349 2 P -0 sg fill -gr -gs -2600 4930 2856 5109 2677 5365 2421 5186 2600 4930 4 P closepath -0.87 sg fill -gr -gs -2600.625 4930.625 m -2642.625 4959.625 L -1.25 slw 0 sg str -gr -gs -2685.625 4990.625 m -2727.625 5019.625 L -1.25 slw 0 sg str -gr -gs -2771.625 5049.625 m -2813.625 5079.625 L -1.25 slw 0 sg str -gr -gs -2856.625 5109.625 m -2827.625 5151.625 L -1.25 slw 0 sg str -gr -gs -2796.625 5194.625 m -2767.625 5236.625 L -1.25 slw 0 sg str -gr -gs -2737.625 5280.625 m -2707.625 5322.625 L -1.25 slw 0 sg str -gr -gs -2677.625 5365.625 m -2635.625 5336.625 L -1.25 slw 0 sg str -gr -gs -2591.625 5305.625 m -2550.625 5276.625 L -1.25 slw 0 sg str -gr -gs -2506.625 5245.625 m -2464.625 5216.625 L -1.25 slw 0 sg str -gr -gs -2421.625 5186.625 m -2450.625 5144.625 L -1.25 slw 0 sg str -gr -gs -2481.625 5100.625 m -2510.625 5058.625 L -1.25 slw 0 sg str -gr -gs -2541.625 5015.625 m -2570.625 4973.625 L -1.25 slw 0 sg str -gr -gs -4427 2178 4600 2439 R -1 sg fill -gr -/_Times-Roman ff [243 0 0 -243 0 0] mf sf -4427 2368 m 0 sg (O) show -gs -5521 4392 5694 4652 R -1 sg fill -gr -5521 4582 m 2.43 slw 0 sg (m) show -gs -6328 5017 6449 5277 R -1 sg fill -gr -6328 5207 m 2.43 slw 0 sg (h) show -gs -4513 3400 4843 3661 R -1 sg fill -gr -4513 3590 m 2.43 slw 0 sg (M,l) show -gs -3806 3532 3928 3793 R -1 sg fill -gr -/_Symbol ff [243 0 0 -243 0 0] mf sf -3806 3740 m 0 sg (q) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob03.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob03.gif deleted file mode 100755 index 2f7cc5052..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob03.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob03.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob03.pdf deleted file mode 100644 index 2b2390b23..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob03.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob04.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob04.eps deleted file mode 100755 index c67d93baf..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob04.eps +++ /dev/null @@ -1,465 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Inclined_Plane.eps -%%CreationDate: 11/26/1995 -%%Pages: 0 -%%DocumentFonts: Symbol -%%+ Times-Roman -%%BoundingBox:172 487 486 603 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Symbol Symbol -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Symbol/Symbol 0 Z -%%EndEncoding -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -3211.625 5060.625 m -8211.625 5060.625 L -1.25 slw 0 sg str -gr -gs -5711 5060 8211 3810 8211 5060 5711 5060 3 P closepath -0 0 0 1 1 1 [128 0 8 0 128 0 8 0] patfill -gr -gs -5711 5060 8211 3810 8211 5060 5711 5060 3 P closepath -1.25 slw 0 sg str -gr -gs -6270 4780 6291 4827 6303 4860 6313 4894 6322 4928 6328 4963 6333 4998 6335 5033 -6336 5060 8 P -1.25 slw 0 sg str -gr -gs -6432 4773 6553 5034 R -1 sg fill -gr -/_Symbol ff [243 0 0 -243 0 0] mf sf -6432 4981 m 0 sg (q) show -gs -3680 4747 3992 5060 OV -0 sg fill -gr -gs -3680.625 4747.625 3992.375 5060.375 OV -1.25 slw 0 sg str -gr -gs -7352 3830 7664 4142 OV -0 sg fill -gr -gs -7352.625 3830.625 7664.375 4142.375 OV -1.25 slw 0 sg str -gr -gs -7586.625 4122.625 m -7563.625 4076.625 L -1.25 slw 0 sg str -gr -gs -7539.625 4029.625 m -7517.625 3983.625 L -1.25 slw 0 sg str -gr -gs -7493.625 3936.625 m -7470.625 3890.625 L -1.25 slw 0 sg str -gr -gs -7446.625 3842.625 m -7424.625 3797.625 L -1.25 slw 0 sg str -gr -gs -7400.625 3749.625 m -7377.625 3704.625 L -1.25 slw 0 sg str -gr -gs -7353.625 3656.625 m -7331.625 3610.625 L -1.25 slw 0 sg str -gr -gs -7307.625 3563.625 m -7284.625 3517.625 L -1.25 slw 0 sg str -gr -gs -5711.625 5060.625 m -5688.625 5014.625 L -1.25 slw 0 sg str -gr -gs -5664.625 4967.625 m -5641.625 4921.625 L -1.25 slw 0 sg str -gr -gs -5618.625 4874.625 m -5595.625 4828.625 L -1.25 slw 0 sg str -gr -gs -5571.625 4781.625 m -5548.625 4735.625 L -1.25 slw 0 sg str -gr -gs -5524.625 4687.625 m -5502.625 4642.625 L -1.25 slw 0 sg str -gr -gs -5478.625 4594.625 m -5455.625 4549.625 L -1.25 slw 0 sg str -gr -gs -5431.625 4501.625 m -5408.625 4456.625 L -1.25 slw 0 sg str -gr -gs -4773 4904 4615 4978 4615 4830 2 P -0 sg fill -gr -gs -4070.625 4904.625 m -4773.625 4904.625 L -1.25 slw 0 sg str -gr -gs -4843 4773 5016 5034 R -1 sg fill -gr -/_Times-Roman ff [243 0 0 -243 0 0] mf sf -4843 4981 m 0 sg (V) show -gs -5477 4591 5587 4456 5651 4588 2 P -0 sg fill -gr -gs -7352 3654 7242 3789 7178 3657 2 P -0 sg fill -gr -gs -5477.625 4591.625 m -7352.625 3654.625 L -1.25 slw 0 sg str -gr -gs -6275 3836 6397 4096 R -1 sg fill -gr -6275 4044 m 2.43 slw 0 sg (d) show -gs -3419 4773 3628 5034 R -1 sg fill -gr -3419 4981 m 2.43 slw 0 sg (M) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob04.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob04.gif deleted file mode 100755 index d5e2be82d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob04.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob04.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob04.pdf deleted file mode 100644 index b8e7cc1e9..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob04.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob05.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob05.eps deleted file mode 100755 index e6b98afc7..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob05.eps +++ /dev/null @@ -1,382 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Ballistic_pendulum.eps -%%CreationDate: 4/9/1995 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%+ Symbol -%%BoundingBox:137 488 381 626 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -%%BeginEncoding: _Symbol Symbol -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Symbol/Symbol 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -0 slc -newpath -5582.625 3089.625 7144.375 4651.375 180 225 A -1.25 slw 0 sg str -gr -gs -2613 3792 6363 3948 R -0.93 sg fill -gr -gs -2613.625 3792.625 6363.375 3948.375 R -1.25 slw 0 sg str -gr -gs -4449 3831 4527 3909 OV -0 sg fill -gr -gs -4449.625 3831.625 4527.375 3909.375 OV -1.25 slw 0 sg str -gr -gs -4449 3831 4285 3771 4389 3667 2 P -0 sg fill -gr -gs -4449.625 3831.625 m -3863.625 3245.625 L -1.25 slw 0 sg str -gr -gs -2969 3132 3351 3358 R -1 sg fill -gr -/_Times-Roman ff [208 0 0 -208 0 0] mf sf -2969 3288 m 0 sg (Axis) show -gs -3863.625 3245.625 m -3390.625 3245.625 L -1.25 slw 0 sg str -gr -gs -6207 4026 6147 4190 6043 4086 2 P -0 sg fill -gr -gs -6207.625 4026.625 m -5426.625 4808.625 L -1.25 slw 0 sg str -gr -gs -5391 4842 5309 4869 5198 4980 5253 5035 5364 4925 5391 4842 5 P closepath -0.5 sg fill -gr -gs -5391 4842 5309 4869 5198 4980 5253 5035 5364 4925 5391 4842 5 P closepath -1.25 slw 0 sg str -gr -gs -5764 3996 5868 4291 R -1 sg fill -gr -/_Symbol ff [208 0 0 -208 0 0] mf sf -5764 4221 m 0 sg (q) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob05.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob05.gif deleted file mode 100755 index 7bcb5e440..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob05.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob05.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob05.pdf deleted file mode 100644 index e10214f2c..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob05.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob06a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob06a.eps deleted file mode 100755 index 3f5b4f9e7..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob06a.eps +++ /dev/null @@ -1,492 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Ball_from_Roof.eps -%%CreationDate: 10/14/1995 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%+ Symbol -%%BoundingBox:185 447 393 664 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -%%BeginEncoding: _Symbol Symbol -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Symbol/Symbol 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -3454 5590 6579 5746 R -0 sg fill -gr -gs -3454.625 5590.625 6579.375 5746.375 R -1.25 slw 0 sg str -gr -gs -4704 3715 6579 5590 R -0 0 0 1 1 1 [255 128 128 128 255 8 8 8] patfill -gr -gs -4704.625 3715.625 6579.375 5590.375 R -1.25 slw 0 sg str -gr -gs -5173 4340 6110 4965 R -1 sg fill -gr -gs -5173.5 4340.5 6110.5 4965.5 R -35 slw 0 sg str -gr -gs -4860 4340 5173 4965 R -0.5 sg fill -gr -gs -4860.5 4340.5 5173.5 4965.5 R -35 slw 0 sg str -gr -gs -6110 4340 6423 4965 R -0.5 sg fill -gr -gs -6110.5 4340.5 6423.5 4965.5 R -35 slw 0 sg str -gr -gs -5173.625 4653.625 m -6110.625 4653.625 L -1.25 slw 0 sg str -gr -gs -5641.625 4340.625 m -5641.625 4965.625 L -1.25 slw 0 sg str -gr -gs -4079 3715 6579 2465 6579 3715 4079 3715 3 P closepath -0.96 sg fill -gr -gs -4062 3698 6562 2448 6562 3698 4062 3698 3 P closepath -35 slw 0 sg str -gr -gs -4078.75 3714.75 m -6578.75 2464.75 L -87.5 slw 0 sg str -gr -gs -5076 2759 5425 3108 OV -1 sg fill -gr -gs -5076.5 2759.5 5425.5 3108.5 OV -35 slw 0 sg str -gr -gs -4079.625 3715.625 m -4056.625 3669.625 L -1.25 slw 0 sg str -gr -gs -4032.625 3622.625 m -4009.625 3576.625 L -1.25 slw 0 sg str -gr -gs -3986.625 3529.625 m -3963.625 3483.625 L -1.25 slw 0 sg str -gr -gs -3939.625 3436.625 m -3916.625 3390.625 L -1.25 slw 0 sg str -gr -gs -3892.625 3342.625 m -3870.625 3297.625 L -1.25 slw 0 sg str -gr -gs -3846.625 3249.625 m -3823.625 3204.625 L -1.25 slw 0 sg str -gr -gs -3799.625 3156.625 m -3776.625 3111.625 L -1.25 slw 0 sg str -gr -gs -5016.625 2465.625 m -5039.625 2511.625 L -1.25 slw 0 sg str -gr -gs -5063.625 2558.625 m -5086.625 2604.625 L -1.25 slw 0 sg str -gr -gs -5110.625 2651.625 m -5133.625 2697.625 L -1.25 slw 0 sg str -gr -gs -5156.625 2744.625 m -5173.625 2777.625 L -1.25 slw 0 sg str -gr -gs -3845 3246 3955 3111 4019 3243 2 P -0 sg fill -gr -gs -5095 2621 4985 2756 4921 2624 2 P -0 sg fill -gr -gs -3845.625 3246.625 m -5095.625 2621.625 L -1.25 slw 0 sg str -gr -gs -4400 2803 4539 3064 R -1 sg fill -gr -/_Times-Roman ff [243 0 0 -243 0 0] mf sf -4400 3011 m 0 sg (L) show -gs -4638 3435 4659 3482 4671 3515 4681 3549 4690 3583 4696 3618 4701 3653 4703 3688 -4704 3715 8 P -1.25 slw 0 sg str -gr -gs -4721 3428 4843 3689 R -1 sg fill -gr -/_Symbol ff [243 0 0 -243 0 0] mf sf -4721 3636 m 0 sg (q) show -gs -4235 3715 4309 3873 4161 3873 2 P -0 sg fill -gr -gs -4235 5590 4161 5432 4309 5432 2 P -0 sg fill -gr -gs -4235.625 3715.625 m -4235.625 5590.625 L -1.25 slw 0 sg str -gr -gs -4175 4522 4296 4783 R -1 sg fill -gr -/_Times-Roman ff [243 0 0 -243 0 0] mf sf -4175 4730 m 0 sg (h) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob06a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob06a.gif deleted file mode 100755 index 5021d0339..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob06a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob06a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob06a.pdf deleted file mode 100644 index 05f2f55e2..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob06a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob07.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob07.eps deleted file mode 100755 index 9af304e5b..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob07.eps +++ /dev/null @@ -1,600 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Ballistic_cylinder.eps -%%CreationDate: 11/6/1995 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%+ Symbol -%%BoundingBox:178 534 422 692 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -%%BeginEncoding: _Symbol Symbol -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Symbol/Symbol 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -3988 1988 4318 2283 R -1 sg fill -gr -/_Times-Roman ff [278 0 0 -278 0 0] mf sf -3988 2196 m 0 sg (Vo) show -gs -3732 2457 3871 2752 R -1 sg fill -gr -3732 2665 m 0 sg (d) show -gs -5260 2965 5781 3260 R -1 sg fill -gr -5260 3173 m 0 sg (Axis) show -gs -3333.625 2917.625 m -3384.625 2917.625 L -1.25 slw 0 sg str -gr -gs -3437.625 2917.625 m -3488.625 2917.625 L -1.25 slw 0 sg str -gr -gs -3541.625 2917.625 m -3592.625 2917.625 L -1.25 slw 0 sg str -gr -gs -3645.625 2917.625 m -3697.625 2917.625 L -1.25 slw 0 sg str -gr -gs -3750.625 2917.625 m -3801.625 2917.625 L -1.25 slw 0 sg str -gr -gs -3854.625 2917.625 m -3905.625 2917.625 L -1.25 slw 0 sg str -gr -gs -3958.625 2917.625 m -4009.625 2917.625 L -1.25 slw 0 sg str -gr -gs -4062.625 2917.625 m -4113.625 2917.625 L -1.25 slw 0 sg str -gr -gs -4166.625 2917.625 m -4217.625 2917.625 L -1.25 slw 0 sg str -gr -gs -4270.625 2917.625 m -4322.625 2917.625 L -1.25 slw 0 sg str -gr -gs -4375.625 2917.625 m -4426.625 2917.625 L -1.25 slw 0 sg str -gr -gs -4479.625 2917.625 m -4530.625 2917.625 L -1.25 slw 0 sg str -gr -gs -4583.625 2917.625 m -4634.625 2917.625 L -1.25 slw 0 sg str -gr -gs -4687.625 2917.625 m -4738.625 2917.625 L -1.25 slw 0 sg str -gr -gs -4791.625 2917.625 m -4842.625 2917.625 L -1.25 slw 0 sg str -gr -gs -4895.625 2917.625 m -4946.625 2917.625 L -1.25 slw 0 sg str -gr -gs -5000.625 2917.625 m -5051.625 2917.625 L -1.25 slw 0 sg str -gr -gs -5104.625 2917.625 m -5155.625 2917.625 L -1.25 slw 0 sg str -gr -gs -5208.625 2917.625 m -5259.625 2917.625 L -1.25 slw 0 sg str -gr -gs -5312.625 2917.625 m -5363.625 2917.625 L -1.25 slw 0 sg str -gr -gs -5416.625 2917.625 m -5467.625 2917.625 L -1.25 slw 0 sg str -gr -gs -5520.625 2917.625 m -5571.625 2917.625 L -1.25 slw 0 sg str -gr -gs -5625.625 2917.625 m -5676.625 2917.625 L -1.25 slw 0 sg str -gr -gs -5729.625 2917.625 m -5780.625 2917.625 L -1.25 slw 0 sg str -gr -gs -5833.625 2917.625 m -5884.625 2917.625 L -1.25 slw 0 sg str -gr -gs -5937.625 2917.625 m -5988.625 2917.625 L -1.25 slw 0 sg str -gr -gs -6041.625 2917.625 m -6092.625 2917.625 L -1.25 slw 0 sg str -gr -gs -6145.625 2917.625 m -6196.625 2917.625 L -1.25 slw 0 sg str -gr -gs -6249.625 2917.625 m -6301.625 2917.625 L -1.25 slw 0 sg str -gr -gs -6354.625 2917.625 m -6405.625 2917.625 L -1.25 slw 0 sg str -gr -gs -6458.625 2917.625 m -6509.625 2917.625 L -1.25 slw 0 sg str -gr -gs -6562.625 2917.625 m -6613.625 2917.625 L -1.25 slw 0 sg str -gr -gs -6666.625 2917.625 m -6717.625 2917.625 L -1.25 slw 0 sg str -gr -gs -6770.625 2917.625 m -6821.625 2917.625 L -1.25 slw 0 sg str -gr -gs -6874.625 2917.625 m -6926.625 2917.625 L -1.25 slw 0 sg str -gr -gs -6979.625 2917.625 m -7030.625 2917.625 L -1.25 slw 0 sg str -gr -gs -7083.625 2917.625 m -dot -1.25 slw 0 sg str -gr -gs -4583.625 1979.625 6458.375 3855.375 OV -1.25 slw 0 sg str -gr -gs -5481 2878 5560 2956 OV -0 0 0 1 1 1 [247 189 255 111 251 191 239 254] patfill -gr -gs -5481.625 2878.625 5560.375 2956.375 OV -1.25 slw 0 sg str -gr -gs -5520 2917 5446 2759 5594 2759 2 P -0 sg fill -gr -gs -5520 1979 5594 2137 5446 2137 2 P -0 sg fill -gr -gs -5520.625 2917.625 m -5520.625 1979.625 L -1.25 slw 0 sg str -gr -gs -3333 2253 3411 2331 OV -0 sg fill -gr -gs -3333.625 2253.625 3411.375 2331.375 OV -1.25 slw 0 sg str -gr -gs -6458 3542 6408 3612 6378 3648 6346 3684 6313 3718 6279 3750 6243 3782 6206 3811 -6167 3840 6128 3866 6087 3891 6046 3914 6003 3935 5960 3955 5916 3972 5871 3988 -5825 4002 5780 4013 5733 4024 5686 4032 5639 4037 5592 4042 5544 4043 5520 4044 -23 P -1.25 slw 0 sg str -gr -gs -5501 4050 5721 3947 5721 4153 2 P -0 sg fill -gr -gs -5501.625 4050.625 m -5540.625 4050.625 L -1.25 slw 0 sg str -gr -gs -3645 2292 3719 2450 3571 2450 2 P -0 sg fill -gr -gs -3645 2917 3571 2759 3719 2759 2 P -0 sg fill -gr -gs -3645.625 2292.625 m -3645.625 2917.625 L -1.25 slw 0 sg str -gr -gs -4583 2292 4363 2395 4363 2189 2 P -0 sg fill -gr -gs -3489.625 2292.625 m -4583.625 2292.625 L -1.25 slw 0 sg str -gr -gs -5592 2301 5683 2596 R -1 sg fill -gr -5592 2509 m 0 sg (r) show -gs -5238 3941 5412 4237 R -1 sg fill -gr -/_Symbol ff [278 0 0 -278 0 0] mf sf -5238 4131 m 0 sg (w) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob07.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob07.gif deleted file mode 100755 index 18976a5bc..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob07.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob07.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob07.pdf deleted file mode 100644 index d547421f4..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob07.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob09a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob09a.eps deleted file mode 100755 index 194acf1e7..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob09a.eps +++ /dev/null @@ -1,404 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Inertia.eps -%%CreationDate: 5/19/1996 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%+ Symbol -%%BoundingBox:210 500 377 612 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -%%BeginEncoding: _Symbol Symbol -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Symbol/Symbol 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -5935 3874 6056 4100 R -1 sg fill -gr -/_Times-Roman ff [208 0 0 -208 0 0] mf sf -5935 4030 m 0 sg (L) show -gs -4860 3299 4923 3336 4974 3369 5025 3404 5074 3441 5122 3479 5169 3519 5214 3560 -5258 3602 5301 3646 5342 3692 5382 3739 5420 3787 5456 3836 5491 3887 5525 3938 -5556 3991 3932 4928 17 P -1 sg fill -gr -gs -5002 3388 5074 3441 5122 3479 5169 3519 5214 3560 5258 3602 5301 3646 5342 3692 -5382 3739 5420 3787 5456 3836 5491 3887 5525 3938 5556 3991 13 P -1.25 slw 0 sg str -gr -gs -4860 3299 5022 3361 4970 3434 2 P -0 sg fill -gr -gs -5174 4189 6257 3564 6276 3598 5194 4223 5174 4189 4 P closepath -1 sg fill -gr -gs -5174 4189 6257 3564 6276 3598 5194 4223 5174 4189 4 P closepath -1.25 slw 0 sg str -gr -gs -3940 4902 5022 4278 5041 4311 3959 4936 3940 4902 4 P closepath -1 sg fill -gr -gs -3940 4902 5022 4278 5041 4311 3959 4936 3940 4902 4 P closepath -1.25 slw 0 sg str -gr -gs -4999 4128 5234 4362 OV -0.75 sg fill -gr -gs -4999.625 4128.625 5234.375 4362.375 OV -1.25 slw 0 sg str -gr -gs -6251 3405 6485 3639 OV -0.75 sg fill -gr -gs -6251.625 3405.625 6485.375 3639.375 OV -1.25 slw 0 sg str -gr -gs -3874 4870 3991 4987 OV -0 sg fill -gr -gs -3874.625 4870.625 3991.375 4987.375 OV -1.25 slw 0 sg str -gr -gs -3708 4779 3812 5004 R -1 sg fill -gr -3708 4935 m 2.08 slw 0 sg (P) show -gs -4804 4034 4960 4260 R -1 sg fill -gr -4804 4190 m 2.08 slw 0 sg (m) show -gs -6054 3327 6210 3553 R -1 sg fill -gr -6054 3483 m 2.08 slw 0 sg (m) show -gs -4687 4601 4808 4827 R -1 sg fill -gr -4687 4757 m 2.08 slw 0 sg (L) show -gs -5214 3216 5353 3511 R -1 sg fill -gr -/_Symbol ff [208 0 0 -208 0 0] mf sf -5214 3441 m 0 sg (w) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob09a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob09a.gif deleted file mode 100755 index 6ea64ee7e..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob09a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob09a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob09a.pdf deleted file mode 100644 index 69bba66fe..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob09a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob11a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob11a.eps deleted file mode 100755 index d4c41f79d..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob11a.eps +++ /dev/null @@ -1,706 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Particle_P.eps -%%CreationDate: 11/5/1995 -%%Pages: 0 -%%DocumentFonts: Symbol -%%+ Times-Roman -%%+ Times-Bold -%%BoundingBox:144 402 388 646 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Symbol Symbol -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Symbol/Symbol 0 Z -%%EndEncoding -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -%%BeginEncoding: _Times-Bold Times-Bold -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Bold/Times-Bold 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -4956 3975 5077 4235 R -1 sg fill -gr -/_Symbol ff [243 0 0 -243 0 0] mf sf -4956 4183 m 0 sg (q) show -gs -2847 3037 2968 3298 R -1 sg fill -gr -/_Times-Roman ff [243 0 0 -243 0 0] mf sf -2847 3245 m 0 sg (y) show -gs -5182 3115 5321 3376 R -1 sg fill -gr -/_Times-Bold ff [243 0 0 -243 0 0] mf sf -5182 3323 m 0 sg (F) show -gs -3706 3897 3827 4157 R -1 sg fill -gr -3706 4105 m 2.43 slw 0 sg (v) show -gs -3793 5459 3897 5720 R -1 sg fill -gr -3793 5667 m 2.43 slw 0 sg (r) show -gs -4097 4522 4218 4782 R -1 sg fill -gr -/_Symbol ff [243 0 0 -243 0 0] mf sf -4097 4730 m 0 sg (f) show -gs -2751 2777 2854 2997 2648 2997 2 P -0 sg fill -gr -gs -2751.625 2777.625 m -2751.625 6527.625 L -1.25 slw 0 sg str -gr -gs -6501 6527 6281 6630 6281 6424 2 P -0 sg fill -gr -gs -2751.625 6527.625 m -6501.625 6527.625 L -1.25 slw 0 sg str -gr -gs -2751.625 6527.625 m -2787.625 6491.625 L -1.25 slw 0 sg str -gr -gs -2825.625 6453.625 m -2861.625 6417.625 L -1.25 slw 0 sg str -gr -gs -2898.625 6380.625 m -2934.625 6344.625 L -1.25 slw 0 sg str -gr -gs -2972.625 6306.625 m -3008.625 6270.625 L -1.25 slw 0 sg str -gr -gs -3046.625 6232.625 m -3082.625 6196.625 L -1.25 slw 0 sg str -gr -gs -3119.625 6159.625 m -3155.625 6123.625 L -1.25 slw 0 sg str -gr -gs -3193.625 6085.625 m -3229.625 6049.625 L -1.25 slw 0 sg str -gr -gs -3267.625 6011.625 m -3303.625 5975.625 L -1.25 slw 0 sg str -gr -gs -3340.625 5938.625 m -3376.625 5902.625 L -1.25 slw 0 sg str -gr -gs -3414.625 5864.625 m -3450.625 5828.625 L -1.25 slw 0 sg str -gr -gs -3488.625 5790.625 m -3524.625 5754.625 L -1.25 slw 0 sg str -gr -gs -3561.625 5717.625 m -3597.625 5681.625 L -1.25 slw 0 sg str -gr -gs -3635.625 5643.625 m -3671.625 5607.625 L -1.25 slw 0 sg str -gr -gs -3708.625 5570.625 m -3745.625 5533.625 L -1.25 slw 0 sg str -gr -gs -3782.625 5496.625 m -3818.625 5460.625 L -1.25 slw 0 sg str -gr -gs -3856.625 5422.625 m -3892.625 5386.625 L -1.25 slw 0 sg str -gr -gs -3929.625 5349.625 m -3966.625 5312.625 L -1.25 slw 0 sg str -gr -gs -4003.625 5275.625 m -4039.625 5239.625 L -1.25 slw 0 sg str -gr -gs -4077.625 5201.625 m -4113.625 5165.625 L -1.25 slw 0 sg str -gr -gs -4150.625 5128.625 m -4187.625 5091.625 L -1.25 slw 0 sg str -gr -gs -4224.625 5054.625 m -4260.625 5018.625 L -1.25 slw 0 sg str -gr -gs -4298.625 4980.625 m -4334.625 4944.625 L -1.25 slw 0 sg str -gr -gs -4371.625 4907.625 m -4407.625 4871.625 L -1.25 slw 0 sg str -gr -gs -4445.625 4833.625 m -4481.625 4797.625 L -1.25 slw 0 sg str -gr -gs -4519.625 4759.625 m -4555.625 4723.625 L -1.25 slw 0 sg str -gr -gs -4592.625 4686.625 m -4628.625 4650.625 L -1.25 slw 0 sg str -gr -gs -4666.625 4612.625 m -4702.625 4576.625 L -1.25 slw 0 sg str -gr -gs -4740.625 4538.625 m -4776.625 4502.625 L -1.25 slw 0 sg str -gr -gs -4813.625 4465.625 m -4849.625 4429.625 L -1.25 slw 0 sg str -gr -gs -4887.625 4391.625 m -4923.625 4355.625 L -1.25 slw 0 sg str -gr -gs -4961.625 4317.625 m -4997.625 4281.625 L -1.25 slw 0 sg str -gr -gs -5034.625 4244.625 m -5070.625 4208.625 L -1.25 slw 0 sg str -gr -gs -5108.625 4170.625 m -5144.625 4134.625 L -1.25 slw 0 sg str -gr -gs -5182.625 4096.625 m -5218.625 4060.625 L -1.25 slw 0 sg str -gr -gs -5255.625 4023.625 m -5291.625 3987.625 L -1.25 slw 0 sg str -gr -gs -5329.625 3949.625 m -5365.625 3913.625 L -1.25 slw 0 sg str -gr -gs -5402.625 3876.625 m -5439.625 3839.625 L -1.25 slw 0 sg str -gr -gs -5476.625 3802.625 m -5512.625 3766.625 L -1.25 slw 0 sg str -gr -gs -5550.625 3728.625 m -5586.625 3692.625 L -1.25 slw 0 sg str -gr -gs -5623.625 3655.625 m -5660.625 3618.625 L -1.25 slw 0 sg str -gr -gs -5697.625 3581.625 m -5733.625 3545.625 L -1.25 slw 0 sg str -gr -gs -5771.625 3507.625 m -5807.625 3471.625 L -1.25 slw 0 sg str -gr -gs -5844.625 3434.625 m -5881.625 3397.625 L -1.25 slw 0 sg str -gr -gs -5918.625 3360.625 m -5954.625 3324.625 L -1.25 slw 0 sg str -gr -gs -5992.625 3286.625 m -6028.625 3250.625 L -1.25 slw 0 sg str -gr -gs -6065.625 3213.625 m -6101.625 3177.625 L -1.25 slw 0 sg str -gr -gs -6139.625 3139.625 m -6175.625 3103.625 L -1.25 slw 0 sg str -gr -gs -6213.625 3065.625 m -6249.625 3029.625 L -1.25 slw 0 sg str -gr -gs -6286.625 2992.625 m -6322.625 2956.625 L -1.25 slw 0 sg str -gr -gs -6360.625 2918.625 m -6396.625 2882.625 L -1.25 slw 0 sg str -gr -gs -6434.625 2844.625 m -6470.625 2808.625 L -1.25 slw 0 sg str -gr -gs -4594 4463 4815 4684 OV -0 sg fill -gr -gs -4594.625 4463.625 4815.375 4684.375 OV -1.25 slw 0 sg str -gr -gs -4626 4652 4543 4880 4398 4735 2 P -0 sg fill -gr -gs -2751.625 6527.625 m -4626.625 4652.625 L -1.25 slw 0 sg str -gr -gs -5251 2777 5285 3018 5088 2958 2 P -0 sg fill -gr -gs -4704.625 4574.625 m -5251.625 2777.625 L -1.25 slw 0 sg str -gr -gs -3376 4027 3619 4014 3542 4205 2 P -0 sg fill -gr -gs -4704.625 4574.625 m -3376.625 4027.625 L -1.25 slw 0 sg str -gr -gs -4929 3834 4973 3849 5009 3863 5045 3880 5079 3898 5113 3918 5146 3939 5177 3962 -5208 3987 5237 4013 5251 4027 10 P -1.25 slw 0 sg str -gr -gs -4157 5121 4117 5078 4093 5047 4069 5016 4048 4983 4028 4949 4010 4914 3993 4879 -3979 4842 3966 4806 3956 4768 3947 4730 3940 4691 3935 4652 3932 4613 3931 4574 -3932 4535 3935 4496 3940 4457 3947 4418 3956 4380 3966 4342 3979 4305 3989 4279 -23 P -1.25 slw 0 sg str -gr -gs -6050 6163 6171 6423 R -1 sg fill -gr -/_Times-Roman ff [243 0 0 -243 0 0] mf sf -6050 6371 m 0 sg (x) show -gs -4878 4522 4999 4782 R -1 sg fill -gr -4878 4730 m 2.43 slw 0 sg (P) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob11a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob11a.gif deleted file mode 100755 index c74342cbc..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob11a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob11a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob11a.pdf deleted file mode 100644 index ec2cd13e3..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob11a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob12a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob12a.eps deleted file mode 100755 index e226fce7a..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob12a.eps +++ /dev/null @@ -1,359 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Putty_rod.eps -%%CreationDate: 6/16/1996 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%BoundingBox:159 532 401 609 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -2986 4236 6736 4314 R -1 sg fill -gr -gs -2986.625 4236.625 6736.375 4314.375 R -1.25 slw 0 sg str -gr -gs -4802 4216 4920 4334 OV -0 sg fill -gr -gs -4802.625 4216.625 4920.375 4334.375 OV -1.25 slw 0 sg str -gr -gs -2830 4119 3142 4431 OV -0.5 sg fill -gr -gs -2830.625 4119.625 3142.375 4431.375 OV -1.25 slw 0 sg str -gr -gs -6580 4119 6892 4431 OV -0.5 sg fill -gr -gs -6580.625 4119.625 6892.375 4431.375 OV -1.25 slw 0 sg str -gr -gs -6673 3361 6647 3346 6637 3316 6666 3306 6686 3286 6706 3266 6736 3256 6756 3236 -6786 3246 6806 3266 6826 3286 6816 3316 6835 3336 6826 3386 6806 3435 6796 3465 -6786 3495 6776 3465 6756 3445 6736 3416 6706 3425 6686 3445 6676 3416 6666 3386 -6647 3366 24 P -0 0 0 1 1 1 [76 210 83 45 150 89 70 179] patfill -gr -gs -6673 3361 6647 3346 6637 3316 6666 3306 6686 3286 6706 3266 6736 3256 6756 3236 -6786 3246 6806 3266 6826 3286 6816 3316 6835 3336 6826 3386 6806 3435 6796 3465 -6786 3495 6776 3465 6756 3445 6736 3416 6706 3425 6686 3445 6676 3416 6666 3386 -6647 3366 24 P -1.25 slw 0 sg str -gr -gs -6736 4041 6691 3873 6781 3873 2 P -0 sg fill -gr -gs -6736.625 3572.625 m -6736.625 3873.625 L -1.25 slw 0 sg str -gr -gs -5664 3264 6480 3489 R -1 sg fill -gr -/_Times-Roman ff [208 0 0 -208 0 0] mf sf -5664 3420 m 0 sg (putty wad) show -gs -4670 3889 5052 4114 R -1 sg fill -gr -4670 4045 m 2.08 slw 0 sg (Axis) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob12a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob12a.gif deleted file mode 100755 index 7b539723b..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob12a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob12a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob12a.pdf deleted file mode 100644 index 959a31d43..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob12a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob13a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob13a.eps deleted file mode 100755 index 7ab05f29f..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob13a.eps +++ /dev/null @@ -1,351 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Three_balls.eps -%%CreationDate: 11/5/1995 -%%Pages: 0 -%%DocumentFonts: Symbol -%%BoundingBox:248 384 504 640 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Symbol Symbol -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Symbol/Symbol 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -4652.625 6744.625 m -8402.625 2994.625 L -1.25 slw 0 sg str -gr -gs -5792 5384 6012 5604 OV -0 sg fill -gr -gs -5792.625 5384.625 6012.375 5604.375 OV -1.25 slw 0 sg str -gr -gs -7042 4134 7262 4354 OV -0 sg fill -gr -gs -7042.625 4134.625 7262.375 4354.375 OV -1.25 slw 0 sg str -gr -gs -8292 2884 8512 3104 OV -0 sg fill -gr -gs -8292.625 2884.625 8512.375 3104.375 OV -1.25 slw 0 sg str -gr -gs -4542 6634 4762 6854 OV -1 sg fill -gr -gs -4542.625 6634.625 4762.375 6854.375 OV -1.25 slw 0 sg str -gr -gs -0 slc -newpath -2000.625 4092.625 7304.375 9396.375 45 90 A -1.25 slw 0 sg str -gr -gs -4652 4088 4872 3985 4872 4191 2 P -0 sg fill -gr -gs -4652.625 4088.625 m -4730.625 4088.625 L -1.25 slw 0 sg str -gr -gs -5290 4418 5498 4852 R -1 sg fill -gr -/_Symbol ff [312 0 0 -312 0 0] mf sf -5290 4730 m 0 sg (w) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob13a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob13a.gif deleted file mode 100755 index 5059aee62..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob13a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob13a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob13a.pdf deleted file mode 100644 index 008b70406..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob13a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob14a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob14a.eps deleted file mode 100755 index d8b8af92c..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob14a.eps +++ /dev/null @@ -1,12113 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Title: SPIN.EPS -%%Creator: DeskScan II - Hewlett-Packard Company -%%CreationDate: Tue Apr 9 20:44:8 1996 -%%BoundingBox: 0 0 498 363 -%%EndComments -%%EndProlog -save -15 dict begin -/xpoints 498 def -/ypoints 363 def -/xpixels 2074 def -/ypixels 1511 def -/rasterbytes 260 def -/bitspercomponent 1 def -/xunits xpixels xpoints div def -/yunits ypixels ypoints div def -/coords [xunits 0 0 yunits neg 0 ypixels] def -/picstr rasterbytes string def -/readimage { currentfile picstr readhexstring pop } def -xpixels ypixels bitspercomponent coords /readimage load -image -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -1FFFFFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -1FFFFFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -0FFFFFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000 -0FFFFFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03C -03FFFFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03C -07FFFFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07F -03FFFFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8007FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FD -81FFFFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0003FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FF -81FFFFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0003FFFFFFF -FFC03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FF -C0FFFFFFFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0001FFFFFFF -FFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FF -C0FFFFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0001FFFFFFF -FF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FF -E07FFFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000FFFFFFF -FF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FF -E03FFFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80780FFFFFFF -FF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FF -F81FFFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007C07FFFFFF -FF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFF -F01FFFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FC03FFFFFF -FF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFF -FC0FFFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FE03FFFFFF -FF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFF -FE0FFFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FF01FFFFFF -FF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFF -FE0FFFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FF81FFFFFF -FF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFF -FE07FFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFC0FFFFFF -FFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFF -FF03FFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFC0FFFFFF -FF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFF -FF03FFFFFF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FF407FFFFF -FF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFF -FF81FFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFE07FFFFF -FF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFF -FF80FFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFE01FFFFF -FF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFF -FFC0FFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFF01FFFFF -FF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFF -FFE07FFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFC1FFFFF -FF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFF -FFE07FFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FFFFC0FFFFF -FF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFF -FFF03FFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFC0FFFFF -FF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFF -FFF83FFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FFFFE07FFFF -FF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFF -FFF81FFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFFFE07FFFF -FF804FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFF -FFFC1FFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFFF03FFFF -FF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFF -FFFA0FFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FFFFFF01FFFF -FF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFF -FFFE0FFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFFFFF81FFFF -FF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFF -FFFF07FFFF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FFFFFFC0FFFF -FFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFF -FFFF07FFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FFFFFFE0FFFF -FFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFFFF -FFFF83FFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFFFFFE07FFF -FF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFFFF -FFFF83FFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFE07FFF -FF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FFFFF -FFFF81FFFF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFF03FFF -FF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FFFFF -FFFF04FFFF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFFFFF03FFF -FF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001AE01A -DED0007FFF0002087FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFFFFFFF81FFF -FF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000 -0000027FFF0000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFFFFFFF81FFF -FF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000000 -0000007FFF0000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFC0FFF -FF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000000 -0000007FFF0000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FFFFFFFFE07FF -FF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000000 -000000FFFF0000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FFFFFFFF607FF -FFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000000 -000001FFFF0000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFFFFFFFA07FF -FF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00178000 -017AFFFFFF0000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FFFFFFFFC03FF -FF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -0FBFFFFFFF0000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0034DFFFFFF801FF -FF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -1FFFFFFFFF8000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000000200001FF -FF8003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -1FFFFFFFFFFFDFBBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000000000001FF -FF8000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF400 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000001000000FF -FF80000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000000000000FF -FF80000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000000000001FF -FF80000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000000003FF -FF80000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FE0003FFFFFFF -FFC0000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0007FFFFFFF -FFC0000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFF -FFC0000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEC00 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFF -FFE800000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0007FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0007FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0007FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF400 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00BFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF400 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00BFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00BFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF400 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFD552D7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFB2A04000005FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFC42000080000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FF000000000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FE000000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD40FFFFFFFFFFFFFFFFFFE00BFFFFFFFF -FE000000000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE80007FFFFFFFFFFFFFFFFFE003FFFFFFFF -FF000000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE8000007FFFFFFFFFFFFFFFFFE007FFFFFFFF -FF800000000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000007FFFFFFFFFFFFFFFFFE003FFFFFFFF -FF800000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE400000000FFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFF80000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF400000001FFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFC0000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000000002FFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFE0000000000002FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF400 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF100000006FFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFE0000000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF40000003F7FFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFF78000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000003FFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFF0000000000002FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000FEFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFF80000000000213FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF8800003FFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFF00000000000017FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFC000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFC0000000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF9000002FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFF00000000000005FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFA000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFC00000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF8000017FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFF00000001F80000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF400 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF800000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFF80000001FF00003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF00000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFE0000007FFE0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF900007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFE000007FFFF0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF00007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFFFD00000FFFFFE0003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFF00001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFFFFC0000FFFFFFE002FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFE0002FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFE0000FFFFFFF8007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFFFFFC000FFFFFFFE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFE0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFF001FFFFFFFF8003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFFFFFFC01FFFFFFFFF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF800BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFF87FFFFFFFFFC007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFEFFFFFFFFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC005FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFEE01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFFFFF03FFFCFFFFFE9FFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFE01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFFFFC27FFFC7FFFE01FFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFC03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFFFFFC0FFFFC3FFFD00FFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFF01FEFFC3FFF801FFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFF01F83FE1FFF800FFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFE03F03FE1FFF801FFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF00BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFE03F01FE0FFF071FFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFC07E01FE1FFF0DFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFC0FE01FC0FFE1FFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFF81FE01FC0FFC1FFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFF817E03FC0FFC3FFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF400 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFF81FE03FC0FF01FFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFF83FE07FC0FF81FFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFF03FA07FC0FE003FFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFF83FE07FC0F8001FFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFF83FC07F80F8001FFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFF83FE0FE00F8001FFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFF03F80FE01F801FFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFF81F00FE00FE07FFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFF81F00F801FE07FFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFF800003003FE0FFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFFFFC0000000FFC0FFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFFFFC0008001FFC1FFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFE00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFFFE0038003FFC1FFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF47FFF9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFF00FF007FFC1FFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF807FFFFFFFC1FFC3FFFC1FFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFF8FFFEBFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFF87FF83FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFC007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03F8FF07FFC0FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF803FFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07E03F87FF81FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807E07F83FFC1FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFC01FFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FC03F87FFC1FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFE001FFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FC03FC1FFEFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFC007FFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01F003F83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFC0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03F803F81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFE0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF0001FFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03F803F83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFC0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFE000FFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01F807F01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFE0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF8001FFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07F807F01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFE0003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFE0007FFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03F807F01FF7FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF00007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFE8003FFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03F80FF01F00FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFA0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFE00007FFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFD5FFFFFFFFFFFFFFFFFFC03F81FE03E007FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFC00007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFFFFFFFFFFFFF80007FFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFF0027FFFFFFFFFFFFFFFFC03F81FE03F007FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF000047FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFFFFFFFFFFFF80001FFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFF000053FFFFFFFFFFFFFFC03F00FC03F00FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFC00000BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFFFFFFFFFFFC00005FFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -FFFFFFFFFFFFFE0000014FFFFFFFFFFFFFE03F01F803F00FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFC001027FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFFFFFFFFFFC00001FFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFE0000000097FFFFFFFFFFE01E007007F80FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF800001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFFFFFFFFFE00000FFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFE00000000004BFFFFFFFFF000000007F81FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFE0000007FFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFFFFFFFFE000007FFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFE0000000000009FFFFFFFF80000000FF01FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFE000010FFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFFFFFFF8000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -FFFFFFFFFFFFFE00000000000001FFFFFFF80038000FF01FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000010FFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFFFFFF00000037FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFE000000000000003FFFFFFC00F8007FF03FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFBF00000017FFFFFFFFFFFFFFFFFFFFFFFE00FFFFFFFFF -FFFFFFFFFFFC0000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -FFFFFFFFFFFFFE000000000000003FFFFFFD07FE017FE03FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000057FFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFFE00000002FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -FFFFFFFFFFFFFE000000000000007FFFFFFFF7FFEFFFF03FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000004FFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFA00000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFF800 -FFFFFFFFFFFFFE000000000000003FFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4000000204FFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFF0000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0157FFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFE000000000000007FFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000000057FFFFFFFFFFFFFFFE007FFFFFFFF -FFFE00000000005FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00049FFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFC00000000000000FFFFFFFFFFFFFFFFC07FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000000000024A7FFFFFFFFFFFE00FFFFFFFFF -1000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000026FFFFFFFFFFFFFFFFFF800 -FFFFFFFFFFFF800000000000000BFFFFFFFFFFFFFFFF806BFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF400000000000010BDF7FFFFF4007FFEA4800 -000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000000025FFFFFFFFFFFFFFFF800 -7FFFFFFFFF5000000000000000BFFFFFFFFFFFFFFFFF8047FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE8000000000000000000004000020000000 -00000000015FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000000000115FFFFFFFFFFFF000 -7FFFFFFFE80000000000000001FFFFFFFFFFFFFFFFFF8003FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA00000000000000000000000004000000 -000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE8000000000000427FFFFFFFF000 -7F552A40000000000000000007FFFFFFFFFFFFFFFFFF8003FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7000000000000000000000000000000 -000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000000000000000000000000 -0000000000000000000000003FFFFFFFFFFFFFFFFFFF8007FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD8000000000000000000000000000 -0003FFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FC00000000000000000000000 -000000000000000000000000FFFFFFFFFFFFFFFFFFFF000FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE80000000000000000000001 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF400000000000000000000 -000000000000000000000003FFFFFFFFFFFFFFFFFFFF801FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFD000000000000005F7FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA800000000000000000 -000000000095FF000000003FFFFFFFFFFFFFFFFFFFFFC03FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF78007FFFFDFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7D40000000000000 -00000017FFFFFF000000007FFFFFFFFFFFFFFFFFFFFFC03FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6000000A000 -03FFFFFFFFFFFF00000007FFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FDFFFFDFFFFFF0000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFF800001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFF80001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFF80003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFF8002FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -FFFFFFFFFFFFFFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE800 -7FFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE001 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE001 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE8000FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE800000 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000001FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000000 -07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000007FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000 -02FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000000005FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000000000 -001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000000000005FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000000000 -0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000000000003FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000 -0042FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000000000000001FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000000 -0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000000107FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000000000 -00003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000000000000003FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000 -00001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000000002FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000000000000 -00001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000000000000000007FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000 -000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000000000000000003FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000000000000 -000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000000000001FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000000000000 -000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000000000000000000FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000000 -000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000000000000000000003FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000000000 -0000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000000000000000000003FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000000000000 -000000BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000000001FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000000000000 -0000203FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000000000000000000002FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000000E0000000 -0000005FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000000000000000000003F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000F0000000 -0000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00003800000000000000005F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000000 -0BF80007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80003FF000000000001F0000F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00003C000000000 -3FFF0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00007FFE0000000000FFE001F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0003FF800000007 -FFFF8001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0003FFFFF000000003FFF800F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0003FFF8000006F -FFFFC003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000FFFFFFC0000003EFFE800F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE001FFFFF94001FF -FFFFE001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000FFFFFFFF40001FFFFFC007 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FFFFFF7FFFFF -FFFFE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FFFFFFFFFD07FFFFFFC007 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00FFFFFFFFFFFFF -FFFFE0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FFFFFFFFFFFFFFFFFFC007 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800FFFFFFFFFFFFF -FFFFE0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8007FFFFFFFFFFFFFFFFFFC00F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800FFFFFFFFFFFFF -FFFFF0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00FFFFFFFFFFFFFFFFFFFC007 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800FFFFFFFFFFFFF -FFFFF0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800FFFFFFFFFFFFFFFFFFFE007 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800FFFFFFFFFFFFF -FFFFF8003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801FFFFFFFFFFFFFFFFFFFC007 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800FFFFFFFFFFFFF -FFFFE8003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800FFFFFFFFFFFFFFFFFFFE007 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFFFFFFF -FFFFF8001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800FFFFFFFFFFFFFFFFFFFE007 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801FFFFFFFFFFFFF -FFFFF8005FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFFFFFFFFFFFFFE007 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFFFFFFF -FFFFF8001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFFFFFFFFFFFFFC003 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFFFFFFF -FFFFF8003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFFFFFFFFFFFFFE007 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE001FFFFFFFFFFFFF -FFFFF8001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFFFFFFFFFFFFFC007 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE001FFFFFFFFFFFFF -FFFFF8003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFFFFFFFFFFFFFE007 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE001FFFFFFFFFFFFF -FFFFFC003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFFFFFFFFFFFFFF003 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000FFFFFFFFFFFFF -FFFFF4007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFFFFFFFFFFFFFE003 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE001FFFFFFFFFFFFF -FFFFFC003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFFFFFFFFFFFFFF007 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000FFFFFFFFFFFFF -FFFFFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFFFFFFFFFFFFFF007 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE001FFFFFFFFFFFFF -FFFFFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFFFFFFFFFFFFFF007 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE001FFFFFFFFFFFFF -FFFFFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFFFFFFFFFFFFFF007 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFFFFFFF -FFFFFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFFFFFFFFFFFFFF807 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801FFFFFFFFFFFFF -FFFFFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD001FFFFFFFFFFFFFFFFFFFF807 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801FFFFFFFFFFFFF -FFFFFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFA20027FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFFFFFFFFFFFFFF807 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FFFFFFFFFFFFF -FFFFFC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF2000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFFFFFFFFFFFFFE80F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FFFFFFFFFFFFF -FFFFFC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFC800000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801FFFFFFFFFFFFFFFFFFFF80F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FFFFFFFFFFFFF -FFFFFC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFE0000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801FFFFFFFFFFFFFFFFFFFF80F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FFFFFFFFFFFFF -FFFFFC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFE00000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801FFFFFFFFFFFFFFFFFFFF80F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FFFFFFFFFFFFF -FFFFFC03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF000000002001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801FFFFFFFFFFFFFFFFFFFF00F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFFFFFFFFFFFF -FFFFFC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF8000000207000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800FFFFFFFFFFFFFFFFFFFF80F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFFFFFFFFFFFF -FFFFFE01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFC0000100205000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801FFFFFFFFFFFFFFFFFFFF01F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFF -FFFFFE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFC00000280103000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FFFFFFFFFFFFFFFFFFFF81F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFF -FFFFFE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE000010380187800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FFFFFFFFFFFFFFFFFFFF81F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFF -FFFFFE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC0008081001018007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FFFFFFFFFFFFFFFFFFFF01F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFF -FFFFFE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFE0001C1C1801C18007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FFFFFFFFFFFFFFFFFFFF03F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFF -FFFFFE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFC0001C040801408003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FFFFFFFFFFFFFFFFFFFF83F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFF -FFFFFE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF00003C0C080001C007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FFFFFFFFFFFFFFFFFFFF83F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFF -FFFFFE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFE00F81E0A0C00408003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFFFFFFFFFFFFFFFFF03F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFF -FFFFFF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF801FC1E0E0C0040E003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFFFFFFFFFFFFFFFFF83F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FFFB1BFFFFFFF -FFFFFE01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF00EFC1E060E0020F001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFFFFFFFFFFFFFFFFFF41F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FE00000FFFFF8 -000FFE01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFC03FFC1D02060000F003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00FFFFFFFFFFFFFFFFFFFF00F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FC000003FFF00 -0007FC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFC07FFE0F07060020D001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00FFE003FFFFFFFFFFFFFF00F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFE000003FFE00 -0007FE01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFA1FFFF0E830600007001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800FF00003FFFFFFF403FFE007 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFA00003FF800 -000FFE00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF83FFFF0F818208207001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF400FF000007FFFFF0000FFF003 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAA53FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFF00003FF000 -001FFA01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF87FFFF0F830300107000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FF000003FFFF800007FD003 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF400004FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00FFFE00003FF000 -001FFF80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF8FFFFF8FC18304105800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC003FFE00001FFFF00000FFF001 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000000045FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE06FFFC00007FF000 -001FFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF87FFFF8FC18304187801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FFFF00001FFFE00001FFF943 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000003FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFF80000FFE000 -001FFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF8FFFFF87C18100001800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFFF00000FFFC00007FFFFC1 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000004017FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFF80007FFE000 -001FFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF87FFFFC7C083800838007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFF600000FFFC00003FFFFE1 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFF0000015FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFC203FFFE000 -003FFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF83FFFFC7E0C1820018007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFC00000FFF000003FFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFC0000003FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFCFFFFE000 -01FFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF03FFFF47E0A1800C1C00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF40FFFFC00001FFF000001FFFFE2 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFC0000008FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFE0FE -05FFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF83FFFFC7E0E182060C007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFEF80FBFFF000003FFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFF800000001FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFE0FF -9FFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF81FFFFC7F0C180100C003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFF3FFFFF07E07FFFFFE1 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFC00020000FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFE0FF -FFFFFFE8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF81FFFFEFF060C0020C003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFFFFFFFE03F8FFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFF8000200043FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFE0FF -FFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF81FFFFFFF070C0020C001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFFFFFFFF0FFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFF4000608000BFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFE0FF -FFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFC1FFFFFFF070C00006001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFFFFFFFF0FFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFF000070A0003FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFE0FF -FFFFFFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFC1FFFFFFF070400006005FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFFFFFFFE0FFFFFFFFFE1 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFF800060C0000FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFE0FF -FFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFC1FFFFFFF010C00007000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFFFFFFFF0FFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFF000140C10007FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFE0FF -FFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFC0FFFFFFF038600003001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFFFFFFFE0FFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFF0000E1C08001FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFE0FF -FFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFC0FFFFFFFC38400005000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFFFFFFFF0FFFFFFFFFE0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFF0000E1C10201FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFE0FF -FFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFC0FFFFFFF838700007800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFFFFFFFF0FFFFFFFFFC1 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFF0000E1C102007FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFE0FF -FFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFE0FFFFFFFC186000038007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FFFFFFFFFFFE0FFFFFFFFFC1 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFF0030A1C50200FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFE0FF -FFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFE07FFFFFFC1C300003800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FFFFFFFFFFFE0FFFFFFFFFC1 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFF0820C08306007FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFE0FF -FFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFE07FFFFFFE0C202083C007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFFFFF0FFFFFFFFFC1 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFE0821C10706007FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFC0FF -FFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFE07FFFFFFE0C382003C007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FFFFFFFFFFFE0FFFFFFFFFC1 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFE0020C30706007FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFE07F -FFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFE07FFFFFFE0C3810818007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFFFFFFFFFFF07FFFFFFFFC1 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFE0001C3050600FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFE07F -FFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF07FFFFFFE0C2C1041C007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFFFFFFFFFFE17FFFFFFFFC3 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFE000183060E007FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFE07F -FFFFFF83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF03FFFFFFE0A141040E003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFFFFFFFFFFF0FFFFFFFFFC1 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFE0041C1062E007FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFE07F -FFFFFF83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF83FFFFFFE060C1001E007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFFFFFFFFFFF07FFFFFFFF01 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFE1041C30A1C107FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFE03F -FFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF03FFFFFFF060C18006003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFFFFFFFFF07FFFFFFFF83 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFE0041C20C1C107FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFE03F -FFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF83FFFFFFF060C08106003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFF07FFFFFFFF03 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFE3043820C2C007FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFF03F -FFFFFC07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFC3FFFFFFF060618107003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD01FFFFFFFFFFFF07FFFFFFFE03 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFF7043860C3C00FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFFC07F -FFFFFC07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFC3FFFFFFF06060C006001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFFFFFFF07FFFFFFFE07 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFF0838A043C007FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFF07803F -FFFFF80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFC1FFFFFFF8F0618002001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFFFFFFF0FFFFFFFFC07 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFD0838E0C3C00FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFF00007F -FFFFF80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFC1FFFFFFFFF0400000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFFFFFFFFFF0FFFFFFFFC0F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFF1830E1C3820FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFF8000FF -FFFFF01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFE1FFFFFFFFF0000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FFFFFFFFFFFEFFFFFFFF80F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE87FFFFFFF1872C083C20FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFE007FF -FFFFF01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFE1FFFFFFFFF0000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FFFFFFFFFFFFFFFFFFFF00F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFF7871C183820FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFF87FFF -FFFFF01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFE0FFFFFFFFE0000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFFFFF03FE7FFFFFFC00F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFF7871C187820FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFFF -FFFFF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFE0FFFFFFFE80000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFFFFFE00003FFFFFFC01F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFF071C107040FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFF -FFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF0FFFFFFF9000000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFFFFFE00003FFFFFF801F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFF0E3C1070E1FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFFF -FFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF07FFFFFA000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFFFFFF80007FFFFFF003F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFF062C3060C1FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFF -FFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF07FFFFF00000000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFF003FFFFFFF007F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFF0E3C3060C1FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFF -FFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF07FFFFC00000000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFFEBFFFFFFF007F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFF163870D1C1FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFEFFFF -FFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF03FFFE00000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFEFFFFFFFFF01FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFF1E3870C1C3FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFA020000 -7FFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF83FFF000000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFF03FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFF1E38D0C141FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFF80000000 -7FFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF81FFC000000000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFE03FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFF1E30F0C1C1FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFF80000000 -FFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF81FF0000000000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFFFFF07FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFF3C78F0C101FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFF80000007 -FFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF81FC0000000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFE07FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFF3E70E2C003FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFB00000FF -FFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF80F00000000000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFFFFE07FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFE7C71E1C003FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFEFFA1FFF -FFFFC07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFC080000000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFFFFE07FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFF7CE0E38003FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFFF -FFFFC1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF8000000000000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFFFFE0FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFCE1E18007FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFDFFFFF -FFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFC000000001C00000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFF82000000FFFFE0FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFCE1C78007FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFFF -FFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFC00000000160000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFE00000000FFFFE0FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFCE1E5800FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFFF -FFFF807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFC000000001F8000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFE00000003FFFFE1FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF804403FFFFFF8E187800FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFD87F -FFFF00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFE000000001FC00000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFF0000015FFFFFE0FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000003FFF8A3C30007FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFFFFFE0003F -FFFF00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFE000000001FF00003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFFBFFFFFFFFFFFC0FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000000000DF8C387000FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFFFFFC0007F -FFFF00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFE000000001FF8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFFFFE1FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000C107000FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FFFFFFE001FF -FFFE00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF0000000017FC007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFFFFFFFFFFFFFFE0FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000000304000FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FFFFFFE80FFF -FFFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFE000000000FFF00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFFFFFFFC1FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000000304000FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFFFFFF -FFFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF000000000FFF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFFFFFFFFFFFFFFC1FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000000004002FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFFFFFF -FFF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF000000000FFFC07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFFFFFFFFFFFFFFFC1FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000000000001FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFFFFFF -FFF000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC00000000FFFC07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFFFFFF00BFFFFFF81FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000000000001FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFFFFF -FFF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE00000000FFFF07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFFFFFC000FFFFFF80FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000000000001FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFFFFF -FFF000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFA000000007FFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFE000FFFFFF80FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000000000000000001FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0003FFFFFFFFFFF -FFE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF80000000FFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFFFFFF801FFFFFF81FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000000000000000001FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0001FFFFFFFFFFF -FFC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF00007F07FFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFEDFFFFFFF80FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000000000000000001FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01807FFFFFFFFFF -FF0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF77FFF87FFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFFFFFFFFFF01FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD0000000000000000003FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03C03FFFFFFFFFF -FF00007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFDFFD87FFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFFFFFFFFFF01FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000000000000000003FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03F03FFFFFFFFFF -FE0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF83FFF43FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE001FFFFFFFFFFFFFFFF01FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000001000000000003FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07E01FFFFFFFFFF -FC00007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF03FFF83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC001FFFFFFFFFFFFFFFF03FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000003000000000003FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03F803FFFFFFFFF -F00000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF8000DF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000FFFFFFFFFFFFFFFC03FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00003800000000007FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FC01FFFFFFFFF -E000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFE00010000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0007FFFFFFFFFFFFFFE01FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80007C00000000007FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FE00FFFFFFFFF -8000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFC000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0007FFFFFFFFFFFFFFE03FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000FE00000000007FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFF801FFFFFFFE -0000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF0000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0303FFFFFFFFFFFFFF803FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FF0000000001FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFF80007FFFFF0 -0000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFC0000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0283FFFFFFFFFFFFFF803FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF017F0000000001FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFC000837EF00 -0000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF80000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0181FFFFFFFFFFFFFE003FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FF8000000003FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFC0000000000 -0000407FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF00006000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03E0FFFFFFFFFFFFFE001FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFC000000003FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FFE0000000000 -0001C03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFE0007BFC0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807D07FFFFFFFFFFFFC001FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFE000000007FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFF0000000000 -0001E03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF8000FFEFD807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003F83FFFFFFFFFFFF8003FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFF00000001FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFC000000000 -0007E03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFC0037FFFFC005FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807F81FFFFFFFFFFFE0003FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFF0000000FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FFFFE000000000 -000FE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF0007FFFFF8001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FC0FFFFFFFFFFFC0003FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFF801D7FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFFFF000000000 -0017E0BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF001FFFFFF00005FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFE03FFFFFFFFFF80003FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFF807FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FFFFFC00000000 -003FF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFE001FFFFF800001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FE00FFFFFFFFFC00003FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FFFFFF00000000 -00BFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFC00FFFFC2000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFF003FFFFFFFF000003FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFF80FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00FFFFFFF00000000 -01FFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFC01FFFC00003E00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFF8007FFFFFF8000003FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00FFFFFFFE0000000 -03FFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF803FFF800007F807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FFFC0002FFFFC0000001FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801FFFFFFFF8000000 -0FFFFF07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF003FFF000007FC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FFFC0000000000000000FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFFE000000 -3FFFFF83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFC017FFE00000FF807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FFFE0000000000000000FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFFF800000 -FFFFFF83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF801FFFE000027F807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFFE0000000000000000FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01BFFFFFFFFF800007 -FFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF803FFFE000007E003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFF00000000000000007FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFF83FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FFFFFFFFFFFD8D77 -FFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF007FFFE0000004003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FFFFFC0000000000000007FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFF01FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFFFFFFFFFF -FFFFFFE17FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE00FFFFE0008000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FFFFFE0000000000001807FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFF007FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFFFFFFFFFFFFFFF -FFFFFFF07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF800FFFFF007C000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FFFFFE0000000000007807FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC02FFFFFFFFFFFFFFFFF -FFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF801FFFFF017E0000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFF000000000000FE03FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFC0001FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FFFFFFFFFFFFFFFFF -FFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF003FFFFF81FF0002E0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFF800000000003FF03FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FF00000BFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFFFFFFFFFFF -FFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE003FFFFF80FF001FF07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFFFFFE0000000001FFF81FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8060000007FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFFFFFFFFFFFF -FFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE007FFFFF82FF802FF07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FFFFFFFF0000000003FFF81FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000007C01FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8001FFFFFFFFFFFFFFFFFF -FFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC007FFFFFC0FFC03FE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFFC000000007FFF80FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000FFF01FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80003FFFFFFFFFFFFFFFFFF -FFFFFFFFC07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF003FFFFFFC0FFA03E80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FFFFFFFFE80000000FFFFC07F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00003FFFC07FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5C800001FFFFFFFFFFFFFFFFFF -FFFFFFFFE00AFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFE003FFFFFFC07FE00A007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FFFFFFFFFE000000FFFFFE07F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000FFFFE03FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF20000000001FFFFFFFFFFFFFFFFFF -FFFFFFFFF0000FFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFE007FFFFFF803FC00000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFFFFFE80003FFFFFF03F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA001FFFFFF81FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC008000000000FFFFFFFFFFFFFFFFFF -FFFFFFFFF0002480004AFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFC00FFFFFFFC07FE000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC001FFFFFFFFFFFFFFBFFFFFFFF80F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0002FFFFFD80FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD2000000000000FFFFFFFFFFFFFFFFFF -FFFFFFFFFC00000000000BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFC01FFFFFFF803FE00000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0001FFFFFFFFFFFFFFFFFFFFFFFC1F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000BFFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000007FFFFFFFFFFFFFFFFF -FFFFFFFFFC00000000004057FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF007FFFFFFFC03FF000A07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000007FFFFFFFFFFFFFFFFFFFFFFFC07 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000007EFFFE05FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000003007FFFFFFFFFFFFFFFFF -FFFFFFFFFC00000000000013FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFC007FFFFFFF803FF00FE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC808000007FFFFFFFFFFFFFFFFFFFFFFFE07 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000001FFF00FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000010BE007003FFFFFFFFFFFFFFFFF -FFFFFFFFFC00000000000000BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFE000FFFFFFFF803FF01FF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE40000000000FFFFFFFFFFFFFFFFFFFFFFFFF01 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE030000000FFFC2FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000007FFFF001C00000BFFFFFFFFFFFFF -FFFFFFFFFC000000000000005FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFE0001FFFFFFFF803FF01FF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000000000001FFFFFFFFFFFFFFFFFFFFFFFFF81 -EFDFFFFCAABFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FF0000007FFE07FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000017FFFFF839E00000005FFFFFFFFFFF -FFFFFFFFE00001FFFFC0000005FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF0000FFFFFFFFF803FF01FF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF40000000000003FFFFFFFFFFFFFFFFFFFFFFFFFC0 -0107F80100052BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FD0000003FFE03FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC200017FFFFFF83DF000000047FFFFFFFFFF -FFFF8000200501FFFFFE000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFF00003FFFFFFFFE001FF01FE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE800000000000003FFFFFFFFFFFFFFFFFFFFFFFFFE0 -000122000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FF0000003FFE00FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000FFFFFFFF81FF800000001FFFFFFFFFF -FFF00000000781FFFFFFE000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF800007FFFFFFFFF001FF017007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000003FFFFFFFFFFFFFFFFFFFFFFFFFE0 -0000000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FF8000001FFF82FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00006FFFFFFFF80BF800000005FFFFFFFFFF -FF900000000783FFFFFFFE00009FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FF800001FFFFFFFFFF001FF00000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000000000003FFFFFFFFFFFFFFFFFFFFFFFFFF0 -0000000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FF8000001FFFE07FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0001FFFFFFFFF80F1C00FFFF01FFFFFFFFFF -FF000000005803FFFFFFFFF8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F8000007FFFFFFFFFE001FF000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFD0000002FFFF800201FFFFFFFFFFFFFFFFFFFFFFFFFF0 -00000000000000113FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807F000E000FFFF07FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00017FFFFFFFFFC0BFE03FFFBFBFFFFFFFFFF -FE000000007803FFFFFFFFFC0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -8000003FFFFFFFFFFC001FF80000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFE000000FFFFFFC07901FFFFFFFFFFFFFFFFFFFFFFFFFF0 -00000000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00001FF001FFFF03FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0002FFFFFFFFFF813FE07FFFFFFFFFFFFFFFF -FE005FBC005803FFFFFFFFFF00003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -00000F7FFFFFFFFFF8381FF80000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF80000077FFFFFE03880FFFFFFFFFFFFFFFFFFFFFFFFFF0 -000010DFFFFD000002FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800001FF000FFFF83FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80007FFFFFFFFFFC19F307FFFFFFFFFFFFFFFF -FF5FF7FF805803FFFFFFFFFF80005FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00 -00007FDFFFFFFFFFF07C0FFC0040FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFC000001FFFFFFFF07D807FFFFFFFFFFFFFFFFFFFFFFFFE0 -00003FFFFFEFF800007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000003FF001FFFFC5FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0003FFFFFFFFFFFC19F703FFFFFFFFFFFFFFFF -FFFFFFFF41C403FFFFFFFFFFC00007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000 -000FFFFFFFF3FFFFF0FC0FFE00A0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF800001FFFFFFFFE1EF40BFFFFFFFFFFFFFFFFFFFFFFFFE0 -1800FFFFFFFFFFE0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000001FF003FFFFF0FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0007FFFFFFFFFFFC1F7B81FFFFFFFFFFFFFFFF -FFFFFFFF81C703FFFFFFFFFFFC0000BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4000000 -01FFFFFFFFF3FFFFE0FC0FFF00E1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFC00001FFFFFFFFFF1CF0000017FFFFFFFFFFFFFFFFFFFFE0 -1F01FFFFFFFFFFFE001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000003FF007FFFFF07FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000FFFFFFFFFFFFC0F9F01FFFFFFFFFFFFFFFF -FFFFFFFF00E403FFFFFFFFFFFE0000052DFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD00000000 -07FFFFFFFFF3FFFFC0FC0FFF8001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFC00007FFFFFFFFFF16700000003FFFFFFFFFFFFFFFFFFFC0 -FF01FFFFFFFFFFFFE00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FC003FE00FFFFFF87FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80007FFFFFFFFFFFFC0F7F01FFFFFFFFFFFFFFFF -FFFFFFFF003807FFFFFFFFFFFFC000008097FFFFFFFFFFFFFFFFFFFFFFFFFFFC8000040001 -6FFFFFFFFFF1FFFFE7FE07FE8001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFE00003FFFFFFFFFFF0FF00000001FFFFFFFFFFFFFFFFFFE00 -A3C0FFFFFFFFFFFFF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FF803FE00FFFFFF83FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000FFFFFFFFFFFFFC07FFC0FFFFFFFFFFFFFFFF -FFFFFFFE0E7807FFFFFFFFFFFFF000000000457FFFFFFFFFFFFFFFFFFFFFFFE8000000003F -FFFFFFFFFFF9FFFFFFFE07FF8003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFE00007FFFFFFFFFFF83960000001FFFFFFFFFFFFFFFFF0001 -F341FFFFFFFFFFFFF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFC03FE00FFFFFFC1FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00007FFFFFFFFFFFFFC01F7C07FFFFFFFFFFFFFFF -FFFFFFFE063C07FFFFFFFFFFFFFD000000002017FFFFFFFFFFFFFFFFFFFFFF8000000003FF -FFFFFFFFFFF8FFFFFFFE07FF8003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF80003FFFFFFFFFFFF878E0000007FFFFFFFFFFFFFFFC00000 -F103FFFFFFFFFFFFFF00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFE03FE00FFFFFFC057FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD0000007FFFFFFFFFFFFFE01F7C03FFFFFFFFFFFFFFF -FFFFFFFC028C0FFFFFFFFFFFFFFF8000000000012BFFFFFFFFFFFFFFFFFFFC0000006FFFFF -FFFFFFFFFFFC7FFFFFFE07FFC007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF0000FFFFFFFFFFFFF879A002FFFFFFFFFFFFFFFFFF8000000 -1803FFFFFFFFFFFFFF803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFE03FE00FFFFFFE000BFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF40000001FFFFFFFFFFFFFFE0BF6C03FFFFFFFFFFFFFFF -FFFFFFFC03C70FFFFFFFFFFFFFFFFE8000000000027FFFFFFFFFFFFFFFFFE000000FFFFFFF -FFFFFFFFFFF6FFFFFFFF03FFE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFE0001FFFFFFFFFFFFF96C100FFFFFFFFFFFFFFFFFFF0000002 -1C03FFFFFFFFFFFFFFC03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFC07FE00FFFFFFF00027FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF800000007FFFFFFFFFFFFFFF17FFB03FFFFFFFFFFFFFFF -FFFFFFFC018787FFFFFFFFFFFFFFFFFF00000000001FFFFFFFFFFFFFFFFF000001FFFFFFFF -FFFFFFFFFFFFFFFFFFFE03FFE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFE000FFFFFFFFFFFFFF8CE0807FFFFFFFFFFFFFFFFFFD566A03 -1E03FFFFFFFFFFFFFFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FF007FC00FFFFFFFE00129FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF800000401FFFFFFFFFFFFFFFF1D3E781FFFFFFFFFFFFFFF -FFFFFFF802F60FFFFFFFFFFFFFFFFFDFB40000000003FFFFFFFFFFFFFFF400002FFFFFFFFF -FFFFFFFFFFFFFFFFFFFF03FFFC07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF8000FFFFFFFFFFFFFF84F0007FFFFFFFFFFFFFFFFFFFFFFE01 -DF07FFFFFFFFFFFFFF7007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FC00FFC00FFFFFFFFC000027FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFE00000001FFFFFFFFFFFFFFFFE077E581FFFFFFFFFFFFFFF -FFFFFFE00C7807FFFFFFFFFFFFFFFFFFFFED500000007FFFFFFFFFFFFFE00007FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF01FFFF07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF8007FFFFFFFFFFFFFFC5B8007FFFFFFFFFFFFFFFFFFFFFFE01 -E107FFFFFFFFFFFFFFF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000FF800FFFFFFFFF00000057FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF00000003FFFFFFFFFFFFFFFFFF01FBEC0FFFFFFFFFFFFFFF -FFFFFFE00E780FFFFFFFFFFFFFFFFFFFFFFFDFD800000FFFFFFFFFFFFF00003FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF01FFFF07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFFFFFFFFF439E007FFFFFFFFFFFFFFFFFFFFFFC08 -F107FFFFFFFFFFFFFFFC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00003FFC00FFFFFFFFFF00000004A28AAFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF800001AFFFFFFFFFFFFFFFFFFFF00E7C207FFFFFFFFFFFFFF -FFFFFFE08E6807FFFFFFFFFFFFFFFFFFFFFFFFFFE000017FFFFFFFFFFE0001FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFE801FFFF07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFC002FFFFFFFFFFFFFFFC78E003FFFFFFFFFFFFFFFFFFFFFFC0F -6C07FFFFFFFFFFFFFFFE00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00003FF8007FFFFFFFFFFD000000004000125FFF -FFFFFFFFFFFFFFFFFFFFFFFFC000007FFFFFFFFFFFFFFFFFFFFF00F3E207FFFFFFFFFFFFFF -FFFFFFC063CD07FFFFFFFFFFFFFFFFFFFFFFFFFFFE00007FFFFFFFFFF8001FFFFFFFFFFFFF -FFFFFFFFFFFFFFFD000001FFFF07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF8007FFFFFFFFFFFFFFF45FF703FFFFFFFFFFFFFFFFFFFFFFC0F -3E07FFFFFFFFFFFFFFFF803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00003FF8007FFFFFFFFFFFF0000000000000012B -FFFFFFFFFFFFFFFFFFFFFFFF800007FFFFFFFFFFFFFFFFFFFFFF017DFF03FFFFFFFFFFFFFF -FFFFFF80F18607FFFFFFFFFFFFFFFFFFFFFFFFFFFDE00017FFFFFFFFE000FFFFFFFFFFFFFF -FFFFFFFFFFFFF800000000FFFF83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF000BFFFFFFFFFFFFFFF8FFFB00FFFFFFFFFFFFFFFFFFFFFFC1F -FC07FFFFFFFFFFFFFFFF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00003FF8007FFFFFFFFFFFFFF600000000000001 -3FFFFFFFFFFFFFFFFFFFFFF80000FFFFFFFFFFFFFFFFFFFFFFFF031E3803FFFFFFFFFFFFFF -FFFFFF80BFC707FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0003FFFFFFFF8007FFFFFFFFFFFFFF -FFFFFFFFFFFFE000000001FFFF83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFFFFFFFFFFCF7D8001FFFFFFFFFFFFFFFFFFFFF01F -FF0FFFFFFFFFFFFFFFFFC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01803FF8007FFFFFFFFFFFFFFFF6800000000000 -0AFFFFFFFFFFFFFFFFFFFFE8001FFFFFFFFFFFFFFFFFFFFFFFFF061E7C41FFFFFFFFFFFFFF -FFFFFF829FF80BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8001FFFFFFFE401FFFFFFFFFFFFFFF -FFFFFFFFFFFF8000000000FFFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFFFFFFFFFF830000000FFFFFFFFFFFFFFFFFFFF03F -FF0FFFFFFFFFFFFFFFFFE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07E03FF807FFFFFFFFFFFFFFFFFFFF6400000000 -005FFFFFFFFFFFFFFFFFFF00007FFFFFFFFFFFFFFFFFFFFFFFFF831E7940FFFFFFFFFFFFFF -FFFFFF030EE807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFF8007FFFFFFFFFFFFFFF -FFFFFFFFFFF80000000000FFFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFF800FFFFFFFFFFFFFFFFF800000000003FFFFFFFFFFFFFFE80001 -FF1FFFFFFFFFFFFFFFFFF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0BE03FF80FFFFFFFFFFFFFFFFFFFFFFFFB400000 -0002FFFFFFFFFFFFFFFFFD0001FFFFFFFFFFFFFFFFFFFFFFFFFF01F5EFC0FFFFFFFFFFFFFF -FFFFFE030E7807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0097FFFFC001FFFFFFFFFFFFFFFF -FFFFFFFFFFF40000000000FFFFA1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFF001FFFFFFFFFFFFFFFFF8000000000001FFFFFFFFFFFC0000000 -001FFFFFFFFFFFFFFFFFFC03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FA03FF01FFFFFFFFFFFFFFFFFFFF7FFFFFB0000 -00004FFFFFFFFFFFFFFFF0001FFFFFFFFFFFFFFFFFFFFFFFFFFF01E7C7007FFFFFFFFFFFFF -FFFFFC0B73FC07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0017FFA0006FFFFFFFFFFFFFFFF -FFFFFFFFFF800000000100FFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFE001FFFFFFFFFFFFFFFFF00000000000000FFFFFFFFE800000000 -001FFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03C03FF01FFFFFFFFFFFFFFFFFFFFFFFFFFFFD00 -000001FFFFFFFFFFFFFFE000FFFFFFFFFFFFFFFFFFFFFFFFFFFF01F787C01FFFFFFFFFFFFF -FFFFF834D3860FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8001200001FFFFFFFFFFFFFFFFF -FFFFFFFFFE000001BFFFC0FFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFE007FFFFFFFFFFFFFFFFC000050000000000FFFFFFC0000000000 -001FFFFFFFFFFFFFFFFFFE00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00007FF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFD0 -0000002FFFFFFFFFFFFFC003FFFFFFFFFFFFFFFFFFFFFFFFFFFF036EFFC01FFFFFFFFFFFFF -FFFFF03CF3D60FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000007FFFFFFFFFFFFFFFFF -FFFFFFFFF00000FFFFFFE0FFFFE05542FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFC007FFFFFFFFFFFFFFFF8001FF81810000007FFFFF00000000000 -000FFFFFFFFFFFFFFFFFCF807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00007FF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -00000001FFFFFFFFFFFF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF821C79E00FFFFFFFFFFFFF -FFFFE81F3ABC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDC0000000BFFFFFFFFFFFFFFFFF -FFFFFFFF800007FFFFFFF0FFFF40000827FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF800FF7FFFFFFFFFFFFFF807FFFC1C00000001FFFF000000000000 -000FFFFFFFFFFFFFFFFFC3C01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00007FF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC0000001FFFFFFFFFFC007FFFFFFFFFFFFFFFFFFFFFFFFFFFFF831E79F00FFFFFFFFFFFFF -FFFFE2CF1EF80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000001FFFFFFFFFFFFFFFFFF -FFFFFFFE00003FFFFFFFF07FFC00000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF001F93FFFFFFFFFFFFFE01FFFFC3830000000FFF8000000103821 -0007FFFFFFFFFFFFFFFFC1E00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00007FF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC00000057FFFFFFFF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE82BEDEF803FFFFFFFFFFFF -FFFFC18F0E580FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA00000EFFFFFFFFFFFFFFFFFF -FFFFFFF40000FFFFFFFFE07FC0000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFE003F03FFFFFFFFFFFFFF03BFFFC3C1061C0003FE000001C083861 -E007FFFFFFFFFFFFFFFFC0F003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00007FE03FFFFFFFFDFFFFFFFFFFFFFFFFFFFFFF -FFFEF000002FFFFFFFC007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81D6DB7401FFFFFFFFFFFF -FFFF43EFBE780FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80003FFFFFFFFFFFFFFFFFFF -FFFFFFC00007FFFFFFFFF01000000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFC003E07FFFFFFFFFFFFFF03FFFFC383061E0001F8000FC5C1818B1 -A007FFFFFFFFFFFFFFFFE0F8007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00807FF07FFFFFFFFDFFFFFFFFFFFFFFFFFFFFFF -FFFFFC000002FFFFFF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81E3C79C00FFFFFFFFFFFF -FFFF8079FFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFF -FFFFFE00003FFFFFFFFFF00000000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFC007C07FFFFFFFFFFFFFF05FFFFC3C3061E0000F8003FC1C183833 -E007FFFFFFFFFFFFFFFFE07C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03D07FE07FFFFFFFF5FFFFFFFFFFFFFFFFFFFFFF -FFFFFF8000005FFFF0003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FBFFFE007FFFFFFFFFFF -FFFF0C7DF3870FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF80000FFFFFFFFFFF00000020000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF000F407FFFFFFFFFFFFFF07FFFF4387040E1800E001DFC1C1838A3 -A007FFFFFFFFFFFFFFFEF01E0027FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07F07FE07FFFFFFFFDFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF8000017FF8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF021EFBDB003FFFFFFFFFFF -FFFF0C39F3C60FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFF800005FFFFFFFFFFC00000060C00000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF001F83F7FFFFFFFFFFFFF03FFFFC383061C1000C00FFFC3E1C3C33 -E007FFFFFFFFFFFFFFF8781F0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA0FF07FE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF000001280001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF821E7CF3801FFFFFFFFFFF -FFF8278DBEF00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFF00001FFFFFFFFFFC0000020204000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE003F0383FFFFFFFFFFFFE07FFFF01C7061E1000C03FFFE1E1E3C33 -E007FFFFFFFFFFFFFFF83C1FC0003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FF07FC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF00000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF831D7873C007FFFFFFFFFF -FFF067C31E6807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFFFFFFFFFFFF -FFF800007FFFFFFFFFF40002030700000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC00FF0783FFFFFFFFFFFFF07FFFF8383041C1040407FFFE1E1C3C31 -E003FFFFFFFFFFFFFFF81EBFF00017FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00807FE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81EFFF1A7003FFFFFFFFFF -FFE0F7C70E780FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFFFFFFFFFFFFFFFFF -FFF00000FFFFFFFFFFC00007838304000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF001FF0E87FFFFFFFFFFFFF07FFFF83830C1C106040FFFFE1A1E1831 -E003FFFFFFFFFFFFFFF83FFFFC0003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000FFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFC00000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01E7CF1C5801FFFFFFFFFF -FFC376EBFFF00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0001FFFFFFFFFFFFFFFFFF -FFC00003FFFFFFFFFF000006828304000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFC803FE0F0FFFFFFFFFFFFFF07FFFF8387041C106021FFFFC1E1E3C31 -E003FFFFFFFFFFFFFFFE3FFFFFC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8001FFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF40000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80F7D78E7800FFFFFFFFFF -FF0FFC68E5CC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0007FFFFFFFFFFFFFFFFFF -FC00001FFFFFFFFFFE000F0783C300000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF0007FF3F0FFFFFFFFFFFFFE07FFFF82820C1C104001FFFFE1E0E1C31 -E003FFFFFFFFFFFFFFF7FFFFFFE0005FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC003FFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF8000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0037FFB71C003FFFFFFFFF -FE079C74F2EB07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFFFFFFFFFFFFF -F800003FFFFFFFFFF800BF07C1C182000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFE001BFFFFFFFFFFFFFFFFFFF07FFFF83C20C1C106001FFFFE1E0C3C11 -C003FFFFFFFFFFFFFFFFFFFFFFFC0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFE00001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF023E79F18F001FFFFFFFFF -F01FFDFDF3EF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C00001FFFFFFFFFFF003FF0781E182000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF8003FFFFFFFFFFFFFFFFFFFA07FFFF82800C1E10C0C1FFFFE1E0E1C31 -E003FFFFFFFFFFFFFFFFFFFFFFFF0003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFC0003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF023E7DF3C70005FFFFFFFF -C83AF7DEBCFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFF -000007FFFFFFFFFFC00FFF83C0E180000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0007FFFFFFFFFFFFFFFFFFFE07FFFF8386041C106041FFFFE1E1E3C31 -E001FFFFFFFFFFFFFFFFFFFFFFFF80007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFC2FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF60DFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03AEFDF3EF80007FFFFFFF -0058E7CF1CF80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8 -00003FFFFFFFFFFF807FFF83C1E180000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF00007FFFFFFFFFFFFFFFFFFFC07FFFF87060C1C10C0C0FFFFE1E1E1C31 -E001FFFFFFFFFFFFFFFFFFFFFFFFE0017FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFF8000BFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01E7D6BEF9F0003FFFFFFC -0078D7CF0CF80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 -0000DFFFFFFFFFFF00FFFF81C0E080820001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFE0003FFFFFFFFFFFFFFFFFFFFE07FFFF8782081C1040C1FFFFE0E0E1E39 -E001FFFFFFFFFFFFFFFFFFFFFFFFF0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFF0000001FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01E7C79E58D0800FBFFDF0 -03DFBAEDFFFA0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00 -0003FFFFFFFFFFFE03FFFFC1C0F0C1800001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF80007FFFFFFFFFFFFFFFFFFFFE07FFFF87060C1C00C0E0FFFFE1E1F1E19 -F001FFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFF000000000FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF82F7C7CE78E5C0001C3000 -03C73C7D738707FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00 -003FFFFFFFFFFFFC07FFFFE0E0E4C0820000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF0003FFFFFFFFFFFFFFFFFFFFFC07FFFF83061C1C10C0C0FFFFF0E0F0E28 -FD01FFFFFFFFFFFFFFFFFFFFFFFFFF8023FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFF00000000001FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF077EF8F5CE786000000000 -278FBC6DD38687FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000 -00FFFFFFFFFFFFF80FFFFFE1E0F0E0C200007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFC0007FFFFFFFFFFFFFFFFFFFFFE07FFFF87021C1C0041E0FFFFF1F0D1639 -FF01FFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFE000000000021BFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF033A79B3C79E3000000000 -1EF1DDBFE5B207FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD000 -01FFFFFFFFFFFFF01FFFFFE0E0F0704000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF0000FFFFFFFFFFFFFFFFFFFFFFC07FFFF078E0C3C0081E0FFFFF0F0F1C29 -FF01FFFFFFFFFFFFFFFFFFFFFFFFFFF8007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFE00000000000003FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE071E79F1C71E3C00000004 -3CF0E78F1CF807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000 -07FFFFFFFFFFFFF01FFFFFF0F070F04100007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFC0007FFFFFFFFFFFFFFFFFFFFFFC07FFFF870A181C0001A0FFFFF0F0D1E29 -FF01FFFFFFFFFFFFFFFFFFFFFFFFFFFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFE03ED00000000007FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF77007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03ED0EF8F39F3EE000000E -3D38E7C61C7803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000 -3FFFFFFFFFFFFFF07FFFFFF0F878F84180003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFC001FFFFFFFFFFFFFFFFFFFFFFFE07FFFF07061C1C0081F07FFFF9F0F1C10 -FF81FFFFFFFFFFFFFFFFFFFFFFFFFFFF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFE03FFFEFFF0000003FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFC00007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01E7878E70F3E5AE1000EF -FC9AF1E78E5807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000 -FFFFFFFFFFFFFFF83FFFFFF0FC78ECE1C0003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFC000FFFFFFFFFFFFFFFFFFFFFFFFC07FFFF050A1C1820C1E0FFFFF8F0D1C00 -FF01FFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFC07FFFFFFFFD000007FFFFFFFFFFFFFFFFF -FFFFFFFFFFFE0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01E7871D78F1E38F1C20F1 -C7CD2C79F3AA03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800005 -FFFFFFFFFFFFFFF83FFFFFFBFC7FFFFBE0003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFC001FFFFFFFFFFFFFFFFFFFFFFFFC0FFFFF020C183800C1F07FFFF970F1C00 -F801FFFFFFFFFFFFFFFFFFFFFFFFFFFFF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFC07FFFFFFFFDC000001FFFFFFFFFFFFFFFF -FFFFFFFFFFFF0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFC3FFD871C1AF9C78F3 -E2CF3C68738D03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00001F -FFFFFFFFFFFFFFF83FFFFFFFFDFFFFFFF3003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF0003FFFFFFFFFFFFFFFFFFFFFFFFC07FFFF860618382041F0FFFFF9F0E0C10 -E001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFC07FFFFFFFFFF8000003FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0676F965872C3AFBEF757D -E3CF9C71E38F83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000003F -FFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF8000FFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFF860A183800C1F07FFFF9E0F1C00 -F001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFC07FFFFFFFFFFF8000003FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1E3C39F3C71E38F967DF3C -3CF0E74E1EFC83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00001FF -FFFFFFFFFFFFFFFC3FFFFFFFFFFFFFFFFF803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF0001FFFFFFFFFFFFFFFFFFFFFFFFF807FFFF860E08382041E07FFFFFF0F0C10 -E001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFC07FFFFFFFFFFFFD000007FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07BFECF7E7BE3E79E3CF1E -3C68678718F883FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00001FFF -FFFFFFFFFFFFFFF80FFFFFFFFFFFFFFFFF981FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE0007FFFFFFFFFFFFFFFFFFFFFFFFFC07FFFF840C10382081D03FFFFFF0D1C10 -F000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFC07FFFFFFFFFFFFFC000007FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFD79EB1DFBEFFBBBFFE -3CF8E7CF1C5803FFFFFFFFFF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000BFFF -FFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF0001FFFFFFFFFFFFFFFFFFFFFFFFFF007FFFFFC0C18382080003FFFFFF0F3E10 -F000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFA0FFFFFFFFFFFFFFFC000007FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03E6A71C78F3ED8F9CF97B -C30EBDBD867A01FFFFFFFFF803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000FFFF -FFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF0003FFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFC0E18386080003FFFFFF0F1E10 -E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD81280FFF80FFFFFFFFFFFFFFFF800000FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03F7870CB8E3E78F9C38F3 -C3873C69F38A05FFFFFFFFC003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00007FFFF -FFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC001FFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFE0C18382080003FFFFFF0E1E18 -F002FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000002FF80FFFFFFFFFFFFFFFFF000001FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1DFFFFFBFDDFE3BFBC38D1 -C34EBC79F38E01FFFFFFFF002FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00003FFFFF -FFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF8003FFFFFFFFFFFFFFFFFFFFFFFC79F807FFFFFC0030386080003FFFFFF071E10 -F000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000006F80FFFFFFFFFFFFFFFFFE800001FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1E3A71F78EB7FCE9E71F7C -63F6FA3BDF8F01FFFFFFF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000FFFFFF -FFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF000FFFFFFFFFFFFFFFFFFFFFFFFC2BF80FFFFFFE0878386080003FFFFFF070E18 -F001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFC100000000000FFFFFFFFFFFFFFFFFFF800007FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80F3C7963CF9E3879E38F14 -3CF1EF9F36F981FFFFFFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000037FFFFF -FFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFC000FFFFFFFFFFFFFFFFFFFFFFFFF1FF80FFFFFFE103838A180403FFFFFF0F1C18 -F000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFF8000000000000FFFFFFFFFFFFFFFFFFFE80012FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC077E3DF7CFBFBEF8E34F1C -3C78E38E1EE8C1FFFFFF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00001FFFFFFF -FFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFC007FFFFFFFFFFFFFFFFFFFFFFFFFDFF80FFFFFFE1878786080003FFFFFF0BBE18 -F000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFF0017DD80000007FFFFFFFFFFFFFFFFFFFF00007FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03E78E9CF3FBEBBFB9B79F -BEE977CF9C7840FFFFFE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000007FFFFFFF -FFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF000FFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFE1878386080303FFFFFF07FE18 -F080FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFEE000001FFFFFFFFFFFFFFFFFFFFF00001FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFF821E7871CF0E3E38DBCBCF3 -C74F987BF79C00FFFFF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800003FFFFFFFF -FFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFC003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFE0878784000383FFFFFF8FFFFC -F081FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFF0000003FFFFFFFFFFFFFFFFFFFFF00003FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF805FFFFFFFF81AFFDFCE7879E7CF9C79E3 -C78F3870E3CF00FFFFC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800001FFFFFFFFF -FFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFC005FFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FFFFFE185870E000003FFFFFF8FFEF8 -F0C0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFC0BFFFFFF00000007FFFFFFFFFFFFFFFFFFFFD00005FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00FFFFFFFF81EEFFFF3FF7EBDFEEE7FFB -6BC6B859F30F00FFFF0000280013FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000007FFFFFFFFF -FFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFE1078784201C03FFFFFEC7FFFC -F8C2FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFE00000001FFFFFFFFFFFFFFFFFFFFEC00007FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000FFFFFFF81F3EF9F7CF3C3EF9F79F7E -56F1EE2B5ADB81FFFE000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFE000003FFFFFFFFFF -FFFFFFFFFFFFFFFF03FFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFE1878788180C03FFFFFFCFFFFC -F0C0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFF002000001FFFFFFFFFFFFFFFFFFFFF00001FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FFFFFF01DFFFDF34F9E78F8E79F1E -3CF0EB8F1CD9E0FFF80000000000000CFFFFFFFFFFFFFFFFFFFFFFFFF000000FFFFFFFFFFF -FFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFC007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFFFFC007070C001E03FFFFFFCFFFFC -F080FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFF0030000007FFFFFFFFFFFFFFFFFFFFF00000FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFF077FFFFFFDBB7FEBDB3DFBF -3CF8E78B1C70C0FFF80000000000000001FFFFFFFFFFFFFFFFFFFFFFE000003FFFFFFFFFFF -FFFFFFFFFFFFFFFF03FFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFF5000068704100703FFFFFFC7FFFC -70E0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFF8020000007FFFFFFFFFFFFFFFFFFFFF800001F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00FFFFFF073F7CF9CE9F3EE8FB9EFF7 -AF696DC2CC7CE0FFE0000000000000000003FFFFFFFFFFFFFFFFFFFF000000FFFFFFFFFFFF -FFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FF00000002070C100381FFFFFFE7FFF8 -1080FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFF8030030001FFFFFFFFFFFFFFFFFFFFFE000003 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA007FFFFE071E7471CF8F2C38F18F8D3 -C38EBC71F30B307F800000000000000000000FFFFFFFFFFFFFF407E0000007FFFFFFFFFFFF -FFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFBCFC1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000000005041003C1FFFFFFE7E000 -00007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFEA000030005FFFFFFFFFFFFFFFFFFFFFFE00000 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFC03FFBFFDEFBFFE3AFBCF8F3 -C78F3C70E38F187F000000000000000000000043FFFFFFFFED00000000003FFFFFFFFFFFFF -FFFFFFFFFFFFFFFF83FFFFFFFFFFFFFE000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000001B01FFFFFF800000 -00003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFF060010000FFFFFFFFFFFFFFFFFFFFFFFC0000 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFC01F3CFDE7FFBE78FFE7B57A -DFC6B659E30EA07E00000000000000000000000000001600000000000003FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFC1FFFFFFFFFFFC00000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000001C01FFFFE0000000 -00003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF401FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFF0400100003FFFFFFFFFFFFFFFFFFFFFFFC000 -01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE800007FFF801E5EF9F3CF9E3870E7CF1C -38F1C78C18D1E03E0000007FFFFF8000000000000000000000000000001FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE1FFFFFFFFFF0000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000001C01FFFC00000000 -00003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFE0400000003FFFFFFFFFFFFFFFFFFFFFFFB000 -003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1000003FFF815FFEFCF38F9E3C78E38F3C -3CB0E38E1C79E0380000007FFFFFFC0000000000000000000000000007FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE1FFFFFFFFF00000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000001F03FF0000000000 -00001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFF0400000001FFFFFFFFFFFFFFFFFFFFFFFFC00 -0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000001FFF80E3F78F19FAEF8F1F71C7FF -3CF8E78F1C78E000000007FFFFFFFFFB8000000000000000000000007FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0FFFFFFFF800000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFE00FFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFF0000000000000000003283FC0000000000 -00001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFE0400000000FFFFFFFFFFFFFFFFFFFFFFFFF80 -00003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000000007FF0073E7C61CF9F3C38E18F0F6 -CB0E38E3A66FB400030007FFFFFFFFFFFF0000000000000000000005FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0FFFFFFF8000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFE03FFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFF0000000000000000003381F00000000000 -00000FFFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFF803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFE0C00200000FFFFFFFFFFFFFFFFFFFFFFFFFF8 -000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF820000000003FF0071E74F9AF9E9C1871870E3 -C70E3879E3871C000D001FFFFFFFFFFFFFC00000000000000000007FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF0FFFFFFA0000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC03FFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFF0000000000000000001FC1C00000000000 -00000FFFFFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFF1C002000007FFFFFFFFFFFFFFFFFFFFFFFFFF -8000003FFFFFFFFFFFFFFFFFFFFFFFFFFFE0000000000001FF073CDEF7EFBAFBE1879C38F3 -A38F3C70F38F3E000F003FFFFFFFFFFFFFFFFA0000000000039FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF0FFFFFF40000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFF007FFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFE0000000000000000003600000000000000 -000007FFFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFEC102000007FFFFFFFFFFFFFFFFFFFFFFFFFF -F80000015FFFFFFFFFFFFFFFFFFFFFFF0000000000000000FC071C3CF9E38F3C38F3C61F7E -3DFEBF7C7FB7BE007C00FFFFFFFFFFFFFFFFFFFDC2000000FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF0FFFFF000000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFF00FFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFE00000001C0000000001C00000000000000 -000007FFFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFF8004080003FFFFFFFFFFFFFFFFFFFFFFFFFF -FF800000007FFFFFFFFFFFFFFFFFFFC02000000000000000FC079E3679F7CF3E3C79E78F1D -7C70C71E0CF9E600FC01FFFFFFFFFFFFFFFFFFFEFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF0FFFFC000000000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFE00FFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFE00000002F0000000001E40000000000000 -000003FFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFF830C180003FFFFFFFFFFFFFFFFFFFFFFFFFF -FFF80000000FFFFFFFFFFFFFFFFF800000000000000000007C03C7BFFDF7FFBF1A69E38F0C -3CF0E7CF1CF9E300FC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF0FFFF0000000000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFC03FFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFF800000003F4000000003F80000006E00000 -000601FFFFFE03FFFFFFFFFFFFFFBFBBFFFFFFFFF804FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFF800C100003FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFF80000001017FFFFFFFFFF100080000000000005EC0001838E1E7DFB8FBF78F16BDD1A6 -DF7AEFBF1FD8EF01F802FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF87FF8000000000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFC03FFFFFFE000003FFFFFFFFFFFFFF81FFFF800000003FE0000000057C000000FF00000 -003701FFFFFF00FFFFFFFFFFFFE0000007FFFFFFFC007FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFF820C100007FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF00000000100009FD00000000000000000003FFFF8000058F1A7DF1CF0D3CF9F9CF1E3 -C79F38FDE6EFBC01F803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF87FE0000000000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF807FFFFFE00000003FFFFFFFFFFFFC01FFFF810000003FE0000000073C000001FFC0000 -003FC0FFFFFF007FFFFFFFFFFC000000031FFFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFC60C100007FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF8000000000800000000000000000000017FFFFFC00003FDFF7FF9C7BEBE7879C70B3 -C38F2C70F38F3E01F803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF87FC0000000000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF007FFFFFC0000000005FFFFFFFFFF803FFFF028000003FF800000007FF000001FFF8000 -00F9E0FFFFFF001FFFFFFFFFC0000000025FFFFFFF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFE0C30000FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFE8000000000000000000000000000000FFFFFFF400000EBE3AFBE3FFFAF6DFD65079 -C3CF3C7DF38FBE01F003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF87E0000000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFE007FFFFFC00000000007FFFFFFFFE003FFFF03C200003FFC00000019C7800001FFF8000 -0EFFE0FFFFFE0001FFFFFFFD00007DFFFF7FFFFFFF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFFFFFFE0C100007FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF000000000000000000000000000BFFFFFFFFC000087B65CF9E70FBC38F3E58EAC -69B3CF1E3DFFFE80F003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF83F0000000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFE00FFFFFFFABFBE018000FFFFFFFFC001FFFE07BF80003FFE0000007B47C00001FFFC000 -0FFFB07FFFFC0000FFFFFFE00003FFFFFFFFFFFFFFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFFFFFFE1460001FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFDF000000000000000000000000BFFFFFFFFFFC00005EFF7EFDF38DBE3C71E78E3C -38F1E79618F3C1807007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF8380000000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC01FFFFFFFFFFFFFFE0000FFFFFFF8001FFFE0DFCF1C03FFF002006FBF7C00001FFFD000 -479FB07FFFF000003FFFFF00007FFFFFFFFFFFFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFE1CF0001FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE00000000000000000000177FFFFFFFFFFFC0000FBFB7FFEDFEFFF5BF9E6CF1E -3CF8E39F1CFBE3806007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFC30000000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC03FFFFFFFFFFFFFFFC0003FFFFFC0000FFFE1E7CF1803FFF0073CFFFFAFD0000FFFF800 -07FF783FFFE0028007FFFC0003BFFFFFFFFFFFFFFFF801FFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFE18F0001FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFD800000000000000037FFFFFFFFFFFFFFC0200F9F3EFCF1CF963ED8E30F1B7 -C7EFEFF71EFDF1C00007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFC00000000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FF803FFFFFFFFFFFFFFFF8040FFFFF00000FFF81F7CF3C03FFF0073E7BE7CF1E301FFFF80C -01FFF00FFFC003E0007FE0003FFFFFFFFFFFFFFFFFFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFFFFFFE38F0001FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFC00000000000007FFFFFFFFFFFFFFFFC0000FBF9CF9F1CB9F1E70F1871F3 -87CF3479C78FFC600007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFC00000000000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FF80FFFFFFFFFFFFFFFFFF0003FFFC000007FF013EFFE003FFF807FEFFF3EFBE781FFFFC0E -00FBF00FFF800FF0000F8000DFFFFFFFFFFFFFFFFFFE007FFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFB9F0001FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF77FDFFFFFFFFFFFFFFFFFFFFFFFFC0002FED7FFFFCFFD77A38F0C78F3 -C34F3871E78E9C70000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFE000000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FE00FFFFFFFFFFFFFFFFFFE0047FC0003C03FE0E3C79E003FFF800E7FFFFFDFF401FFFFC0F -00FFE007FE001FFC00000003FFFFFFFFFFFFFFFFFFFFC03FFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFF9E0001FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFC00039FBE78F1E78F3E70F0E7EFBE -E1A5BC28F7BFFEF0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFE000000000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC01FFFFFFFFFFFFFFFFFFFE00100001DF00FC8F1C7DC001FFF801E79FBC7CFBA007FFFC07 -807FF803FD007FFF0000000FFFFFFFFFFFFFFFFFFFFFE01FFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFF1E0001FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFC0007CF1E78F9E3CF1A3871E79F1A -38F1C6961FFFEBDA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF00000000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F801FFFFFFFFFFFFFFFFFFFFC0000001FF00F801C75F8003FFF801EFDFBB7CFB800FFF400F -C01F3C00FC00FFFF4000001FFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFB60001FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC001FF7BB7AFEF7CF3E3EF4C7CF3C -3CF1679F3CF3E3BF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF0000000000000BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F803FFFFFFFFFFFFFFFFFFFFB0000007FF80400183970003FFFC07BFFFFFEFFFE00400000F -A00F9E007C01FFFFE00001FFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFE0003FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC001CF3EBEFDF1F71E79FDA7BF7DF -3EF9E78D1CF2E39F001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF8000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F007FFFFFFFFFFFFFFFFFFFFFC000007FF800001C38F0001FFF8073EF8FBFFDE600000000F -E007FF003001FFFFE00003FFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFE0003FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE001EF9E3C78F1CF0D3C7271C50F7 -CB8F2CE3A69DB6FF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFC00000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E01FFFFFFFFFFFFFFFFFFFFFFC000001FF80001043DB0003FFF8073FF8F7CF1E000000001F -F003E7800007FFFFE0000FFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFC003FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE001E7DF3EFFF9EF8FFE78F3870F3 -870F3860E38F3A7BC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF00000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -801FFFFFFFFFFFFFFFFFFFFFFF80000005C0001E387800002000038DFFFEEFDA000000001F -F801E1C00007FFFE00007FFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00E78BBEFCFB67FFFAF4BBBEFF6B -E78F1C79C78E3E75C01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC00000002FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C03FFFFFFFFFFFFFFFFFFFFFFFF800000200020E5C700000000006A3CF9F79F00000001FFF -FE00F7EA000FFE000001FFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFC07FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01E38FBE7CF9C78F3E72E9E71F3E -7DE3EFF77EC1BF7B803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE8000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -007FFFFFFFFFFFFFFFFFFFFFFFFF00000000018E6C30000000000003CE9C7CF000000AFFFF -FF003668000580000003FFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0177CF9C7C79E38F3E3CF9E78F3C -3CF1E69E18E0439F003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFA400BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -007FFFFFFFFFFFFFFFFFFFFFFFFFC0000000004183C0000000000003EFFE7FF00000BFFFFF -FF801CB800000000000FFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001DFF877FFFFFEFFEBA79A7DF3F -7CF1A79E1CC0E39F003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC -03FFFFFFFFFFFFFFFFFFFFFFFFFFFE00000000008B0001F80000000077EFFFB0001FFFFFFF -FF801C0000000000007FFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE001E71E0E78F1CF3E2CF8E3DBBF5 -ABB7EFDF7E00638E003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8 -03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000000000003FFFC00000058E7DFD001FFFFFFFF -FFC000000000000005FFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001C79C087969CF1F3C78F3CF1D3 -C71F3CF1E4001CF3807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000000000003FFEFF800007DFFFFE00FFFFFFFFF -FFE0000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005719A00FDFFAFAF3EF8F3CF9F3 -C70D3879E0003E71807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD800000000000FFFFFFF65C01FFFDFF03FFFFFFFFF -FFE00000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00E58E80006AE7DFBFFCE3EFBFFF -FBEF3E7CE0023E71807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000000001FFFFFFFFFA00FBC7DB07FFFFFFFFF -FFF800000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00638F1C00F1A74F3E74F3E75F3C -3CFBED9E0007BFFF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA000000007FFFFFFFFFF00F9EFEE07FFFFFFFFF -FFFC000001FFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FAF9E0030F7DF3A7CF9E79F34 -3CE1CF8E0053EB9F007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000000FFFFFFFFFFF81FFFFFC0FFFFFFFFFF -FFFFA2003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFE0000007FFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801CF9E3000014F7AFFE7FF7CFDC -1CF9EF9C00F1E39F00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF400001FFFFFFFFFFFC19F7FF80FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFA000000007FFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE801CF8E340001070E3EF0F3DFBF7 -877FED8000D7FFDF00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFF4E803FFFFFFFFFFFC59F7CF80FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFC0000000103FFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801E71F3C0000030E1CF8738F1F3 -C71F3A00038F3E7B01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFC1DEFFF80FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFF800000000000FFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF802F5F7FF000000004E78FDD78F1 -C31E280003873AF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFD80FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFF8000000000000FFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80078F3E384000000038FBC7EFFA -449600003BEEBFF903FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80F9C7880FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFF800000000000007FFFF83FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0278F3E78F000000038F3C7BE7C -004000021DFFFF9D03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80F9C3C00FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFF800000000000001FFFF83FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01DF7BF6FFF0000001EFBE7CF3C -0000000E3DF3E39E03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803E69F00FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFF8000000000000001FFF83FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01CF3E3EF9E180000CFAFF5F717 -0000002F3FFBEBCE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800E787007FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF89FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFF80000000000000007FF87FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00CF9E3C79E1CF0C1CF0F3AF1E2 -C0000071EDDFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800E7CD007FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFC0000000000000003FF83FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00EF8FBE7FB9C79E2E78FBCF1F3 -400018F1E78E3CF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFC0371C7803FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFE0000000000000000FF07FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0039F1E7EFFFE2FBDFFF77EF8E3 -C28F7979E79F3C7007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07C063460C03FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFE00000000000000003F07FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00B8E5E3879E71E3C7CF3E68F7C -E9F9FFFFFBEFFED007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03C031969601FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFF00000000000000004F07FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007DFBE78FBE79F3438FBE79F3C -7CF3E79F1DF3C3D00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87C008C7CA03FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFF8000000000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00EEAEFAFFFBDDFFEFEFFE5CDBE -FFF1B79D39F3E3980FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0262AE101FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFF8000000000000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00CF1E1C78E5CF3F3CF9EB9F3C7 -FB767DFFFEFFFFC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00E78F003FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFE000000000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00EFAE3C71F1CF2F3CF9F38E1E7 -CF1F39F1EFAFBDE00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00A7CF003C1FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE005FFBFE2FFEDBBFFEFAFAC70F3 -C79F3CF1E79F3E601FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC003D7F80780FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFF800000000000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003EFBC78FAE78FBEB4FFFBBEDF -D7FF1EF8FFEFBEE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC051C78E07C0FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFE00000000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0070F3E38D1E71F3C58B3E78F38 -78F3CF3E3EFEEFC03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC033C79807FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001DBFEFCF1F79F3E3CF3C6DD1C -78F3C7961CE3EF807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01EDFC80FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000000000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FBF3CFBC3DFFDE96DBF3DB3E -6DD3EF1E3CF3E7807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00EF5F00FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800F9E3E79E3CF1E3CF1E38E1E7 -BF7BB57BF7BFFF807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7F000E79E00FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1097FFFFFFFFFFF800FBF3E79F3CF3F7CF8F38F1E3 -C70E38E3E7173CC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0F8005FDF00FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFF0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000FFFFFFFFFFF403BFBEBEFFEFBFFFF7F7DEB1B7 -C68F3CE1E38E3C807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0F80E38F1C0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFA0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000FFFFFFFFFFFC031FBC78D9E75F7E78F1E61E6C -71EF4F7BB683FE00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 -3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0F0071C79E07FFFFFFFFF -FFFFFFFFFFFFFFFFFD7FBFFFFFFFFFFFFFFFFFFE0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000FFFFFFFFFFFC038FBEF8FBE70F3CF8F3E71E3C -38E3CF9A78C3E700FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC035CF8A07FFFFFFFFF -FFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFFFFFFF80003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00001FFFFFFFFFFFC001F7FFFFFFDDB3F7CF3E79F3C -7CF1CF9E38F3C700FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800EFBEC03FFFFFFFFF -FFFFFFFFFFFFFFFF80FFFFFFFFFFFFFFFFFFFFE0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000FFFFFFFFFFFFC0003E7E7977DD9E7DEB831E307 -DFF7FEDFFCF3EF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC02E78E101FFFFFFFFF -FFFFFFFFFFFFF83C87FFFFFFFFFFFFFFFFFFFF00003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFFFFFFC0003E3E79F2DF0E3EF0E3871E7 -CF1E79E3671ADE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 -00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00E7CF080FFFFFFFFF -FFFFFFFFFFE0001FFEFFFFFFFFFFFFFFFFFFF80000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFFFFFFC000BEBE7DFBDFBD7C70E3CE0E5 -C71F39F1E70E7C007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8 -0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC097DED780FFFFFFFFF -FFFFFFFFFF00003FFFFFFFFFFFFFFFFFFFFFC00003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFFFFFFC000FBE7AFBFFDE7BB5C7AFF873 -458F39F1E71E3E007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC -0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD80003FFFFFFFFFFFFFF80F38F8F007E03FFFFF -FFFFFFFFC00003FFFFFFFFFFFFFFFFFFFFFC00000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FFFFFFFFFFFF4000F3C78FBE78F3C78F3C69E2C -71F5CDBE7FEEFE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -000003FFFFFFFFFFFFFFFFFFFFFFFD00078000000FFFFFFFFFFFFFF00F3871F007E03FFFFF -FFFFFFF80000BFFFFFFFFFFFFFFFFFFFFFE00001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFFFFFFC000FFEFDFBE35F7C38F1C70E1C -78E3CFBE7CF3E3007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -0000000FFFFFFFFFFFFFFFFF47FFF800038000000FFFFFFFFFFFFFE007AD7DF407E2FFFFFF -FFFFFFF0000FFFFFFFFFFFFFFFFFFFFFFC00000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFFFFFFC0013F76FBFBBFFFDDFFDC5CE14 -7C73EF8E39F3CE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -80000003FFFFFFFFFFFFFFFF7FFFFFFFD7FB7BE01FFFFFFFFFFFFFF011EF9E3C07FFFFFFFF -FFFFFFF807FFFFFFFFFFFFFFFFFFFFFFC000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFFFFFF80001E3CF9F99E2E78FDC31E38F -8E1DEDFBFFFF7E007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F00000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF77FFFFFFFFFFFFFE030E79F3807FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000037FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFFFFFFC0011E3CF9E3CF1E3CF8E1961E7 -8F0E75E1E7BA6C017FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC0000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE019EFFFBC07FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFDA0000000BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFFFFFF800003FFAFFBFFEFBEF9D38B1E7 -C71F78F3E71E38007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFE0000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3C01E7DFFF80FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFC00000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFFFFFFFFFFFC00003E78FBE5DF387FF3EC1F76 -EFDF77FFFFBE1C007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFF0000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3C00F3CF9E00FCFFFFFFF -FFFFFFFFFFFFFFFC00C00000000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFFFFFFFFFFC00003C78F1E70F3C38F3C71E3C -79F3CF9E7FF00600FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF0000077FFFFFFFFFFFFFFFFFFFFFFFFBC3C8BFFFFFFFFFFFC00FBDF9F00FC7FFFFFF -FFFFFFFFFFFFD0000000000000000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801FFFFFFFFFFFFFC00002E7EFBE69F3CFDF3E79F74 -78E3C75E75E00600FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFE000009FFFFFFFFFFFFFFFFFEFFEA0000000877FFFFFFFFF803FFFBFF00FFFFFFFFF -FFFFFFFFFF600000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00FFFFFFFFFFFFFC0000638FBFFDE3D7F7FBABB7BF -BDFBCFBF7DF00200FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFC000001BDFFFFFFFFFFFFFFF80040000000003FFFFFFFFF80F3E79F7C07FFFFFFFF -FFFFFFFFC080000000000000000000005FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FFFFFFFFFFFFFC000023CF0E34F1C3CF9E78F1C7 -8F1F736FFFAA0600FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF8000000000FFFFFFFFFFA0000000000000001FFFFFFFFF00F8F79F1C07FFFFFFFF -FFFFFFF8000000000000000000000017FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FFFFFFFFFFFFFC000037C79EBCF3C34F4F31F3E3 -CF1638F1E7061800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFE0000000000000000000100000000000000001FFFFFFFF015FDFDD7C03FFFFFFFF -FFFFFF000000000000000000000005FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFFFFFFFC000C3CFBF7F75EFBE7FFFD7FB7 -8F9EFFF1EF040C00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC0000000000000000000000000000000000000FFFFFFF01DF38F3E201FFFFFFFF -FFFFC0000000000000600D03BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFFFFFFFC010A1C78F3E71F3C7973EF1678 -6AF7EFBFFE840C00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF40000000000000000000000001000000000012FFFFFC03DF3C61E301FFFFFFFF -FFFE000000000BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FFFFFFFFFFFFFC010F3EE8DBE70E3C70F3E51E3C -79F3CF9E6C020601FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE0000000000000000000002BBDFC000000000203BFE801DFBC79F300FFFFFFFF -FF0000000006FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FFF87FFFFFFFFC0056FABFFBF79F1EFEF3E71F1C -31F3CFBE78000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFE000000000000000001BFFFFFFE000500000000000000FBEFBC7E007FFFFFFF -EC00000041F7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FFF03FFFFFFFFC00F3E7C73C39F1C6CE3EBDE1C2 -1F6FF7FFFC020201FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFC0000000000002DFFFFFFFFFF000580000000000000F1C79E1C006FFFFFFF -8000000FBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFF03FFFFFFFFE00E3C3CF9E19E3C7970E39F1E7 -8F1E79F7EE040C01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFEBC0000000001FFFFFFFFFFFFF001741000000000001FBE79F1C0013FFFFFE -4000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFF03FFFFFFFF6007DEFF7DEBDF177CF2E38F3E7 -8F1F79FBC6041401FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFC0007FFFFFFFFFFFFFFFFF8059E140000000000BDFFBFFFF0000FFFFF0 -000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFF0BFFFFFFFFE002F34F9F3EB6AF6E1DF9FDEF3 -E78D79F7E60C1C01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFF803871C0000000000FAF3DD9DF8000004000 -000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFF87FFFFFFFFE011F3CF8D1CF1E3CB1F3CF5E58 -79E7FFBEF8001E01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8007EFC038000000CFBF3871E70000000000 -000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFFFFFFFFFFFFE01BF7EFDFBF71F7E70F3E71E38 -70F3CF1E78600401FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00B9F003E00000D7FFFBEFF638000000000 -000C01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF401FFFFFFFFFFFFFFE00FBE7872F7FFFFFDDFB7F6F5C -7EF7CDBE78B00603FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0071E007B00031C7CE3CF1F3CF000000000 -000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FFFFFFFFFFFFFFE00E3C18F9E39F1C3C71CB9E3C6 -D73BFFEF6E580403FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0028A007F80071E7DF1EB9D3CF140000000 -00C003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FFFFFFFFFFFFFFE00FBE3CF9E3CF3C7CF0C39E1C7 -8F1E69E3E7183C07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000A1803FC003EFDEF7FF8F7CF9C0000000 -11E003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FFFFFFFFFFFFFFF017F7CFBABDBDF77CD173DF163 -861E71E3E70C3803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE008E1407FC004F3CFBF7FE3FFDFF0000000 -1BE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FFFFFFFFFFFFFFF011D3CF8B3C61B74E1CB8E9B79 -FBDFBEFBF7B83C07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FE00001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE008E3801FC000FBFF1F3CF1F71E3E003800 -1BF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FFF83FFFFFFFFFF009F3CF0F3E71E3C70E3CF3E70 -79F3CF1E58F3C007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC00002FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FB000000007DEFCF7CF8F78F1C00F800 -05F807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FFC40FFFFFFFFFE01DFDE7CE9E3DF7C7CF1E79E3C -79F1CFBC7AE3C007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC00000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007E000000000FFFD7FDF6FEFBF7E000000 -001007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FFC00FFFFFFFFFF00F3E78F3A19FBCFBF1CBB669F -FDEFDFBF7CF1A00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000000000003FFDF3EF9F3CFFFE000000 -00000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FFC00FFFFFFFFFF00E3E38F1E3971C34F1C59E1C7 -8F3E7FEBE71E700FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FF40001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000001FDF3EF9E1CFF80000000 -00000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FFE01FFFFFFFFFF00FD6FDF8C3DF3C7CF0E39F1C3 -DF1E79E3E73C300FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000000000000007FFFFFFFAEFC00000000 -00000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFF01FFFFFFFFFF003F3CFBE38FBE3BCBDFBDD7D3 -CF5FEFEBE7BE380FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000010000000003F1F79FBEFD000000000 -00000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFF01FFFFFFFFFF003E3CF8F3C31A7C71B1C73C78 -F3F3DFFEFDFFD00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000DFF000400000FDF3D71E68000000020 -000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0003FFF01FFFFFFFFFF803EBEF9F3C70F3C70F38F1E78 -71D3CE9C7DF3C00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000FFFF0004000003FBBFFFEE0000183830 -000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF800003FE03FFFFFFFFFF80FBFFDFDAE55D779DDFF79F7C -F9F5C71E19FBC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFFF000E0C0001FBFFFF7C0003F81870 -030003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF800001FE03FFFFFFFFFEC0F3E7CFBE30F786D73C79F7EF -DC36FFD65D7BA01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF02FFFFF80060C0800F3C7BF18003FFC0830 -010007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF800005FE07FFFFFFFFFF8073C3C73E38D3C78E1E39E2E7 -8F1D7BE3863C201FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFE00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFF000E0A180071E75F100FFFFC3038 -018201FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF800003FE07FFFFFFFFFFC019E3AF9B3CDFC7DFFA39F3A7 -8F1C79E3A73C001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFF8416181C003F7BFFE03FFFF81830 -018007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFE00157FC07FFFFFFFFFFE02E3CF1E3EF1F7CF7FFEEBEF5 -B77F7AF1F7BC603FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFF800C1C38001F79EBE07FFFFC1838 -018603FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7DFFC0FFFFFFFFFFFE01F7CF0F3E71D7CB1F7CE9E78 -73E7DE1D3CFFC03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFF840C142C001F38F1E0FFFFFE2838 -018207FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFE00EF6F9FBEF1E7470F3CF3EFC -79F3CF1E79B3C03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFF04040818407BBF7FA0FFFFFC3838 -018007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFE013AFDF3A75FF775B5EE7FFBC -7BFF6E9C7DF7803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFF040C183800F1CFFFE07FFFFE3838 -018003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80AFFFFFFFFFFF023C38F9E39F7C39F3D79E3CB -9E377BEF9FDF403FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFF0414182840F1CF9E00DFFFFE2C38 -018007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8007FFFFFFFFFE033E39FBA3DF3C71F1E31E14F -9E1E78E3CF7C007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFF0C1C1838403EE7FF007FFFFE3818 -01C203FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8007FFFFFFFFFF01F7FEFFEDEDDFFCFFDFBF7F7 -DF1E79E3A73C007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFF8E1C1030001D79BBE0FFFFFE1C38 -008303FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000FFFFFFFFFFF00F3CF9E3CF1C5CF1F6C53FFF -F3B7EC7DFDDE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FF803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFC0C1838001E38E1E07FFFFE3C18 -018203FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFFFFF00D3CF8F3EF1E3C70F3CE1F7C -B1E74E1E79F7007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFE1C1838001F78F9E0FFFFFE3C38 -008381FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFFFFFFFFFF807DFFAFBEF7FFE7B72C73F78 -F1E1C73E39D780FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFE181838005FEFFFF07FFFFFBC38 -00C301FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FFFFFFFFFFF803C38F3EB9F6CFFE9831D7DF -BEE16ADFFAFF80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FE00FFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFC1C181840F3CE9E207FFFFFFC38 -008381FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FFFFFFFFFFF802E7DF9E39D7E75F3C31E3CF -9E3C7B65DF7E00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC00FFFFE01FFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFC1C183840F1A79E307FFFFFFC38 -00C381FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFC03F7FF9FFDF7EFDE1E39F1EF -DF1C71E3EFBC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC00FFFFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFC1C18280039C6FFA03FFFFFFE3C -01C181FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFC0E3C7BC36F7D7FF7FFBEBDED -D6FE7FE3AF5C00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC00FFFF800FFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFC1C1828C01C30E3E07FFFFFFE3C -01C181FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC067CF8E3E61E7CF9F7CD3E7A -FBF7FFBEEDFE00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC00FFFF000FFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFC183078401E7871E03FFFFFFF7C -20C3C1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC137FFBF3EF1E7C71F3C73E39 -F1F79FBC79E401FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC01FFFD000FFFFFFFFFFFFFFFFFFFFFFFFFFF41FFFFFFFC0C387840DFFD7FE03FFFFFFFFE -01C181FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE02AFFFBBFFBFEEDDF7FBBE7E -FBFFEFBE7DF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F800FFFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFC1C786880734F1C703FFFFFFFFC -01C3C1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03C79F3C39F3DF5F7E39E78F -BD6DFBFFFBF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F803FFFC0E7FFFFFFFFFFFFFFFFFFFFFFFFFFF41FFFFFFFC3C3878C0E3CD0E303FFFFFFFFE -20C3C1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03E7FFBE7DE7C79F1C79E387 -9FFE79E3CF3001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F801FFFC1FBFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFC38387880FBCF9E201FFFFFFFFE -21E1C0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007BFFFFFFFFDFDF7F79FFC7 -9F7F7BC3CF0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F801FFF80FFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFC3C3070803E79EBE07FFFFFFFFF -F3E3C0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC003CFBF3EE3EFFFFFBEFBEF1 -FFFFFFFBEF0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F003FFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFC38D870001E38F1E01FFFFFFFFF -FFF3C0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC003CFAF3CF0FFCF1EFCF1E68 -F9F7CF3EF80001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F003FFE01FFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFF8187870801F3DF1C03FFFFFFFFF -FFF3C0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000F7DFFFFFFFDF5F3CFBE78 -73E7DF3C700001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F003FFE01FFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFC38703000D7FFDFF03FFFFFFFFF -FFFBC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80023CFBAEDFFF7FFFFF7FFFD -FDFFD7BE300001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F003FF0003FFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFC28787182F7CF9E703FFFFFFFFF -FFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800031F3E3DF3DD9E3C7BF7CF -BB3F7BEF000401FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E007FE0001FFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFC38386180EBEF9F381FFFFFFFFF -FFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000FBEF5D7EEDF3F7BE2CF -9E3D71E0001C01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C007FE0001FFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFF430507081FFFFDFF81FFFFFFFFF -FFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000002D7FEFFFFDFFFFDFFFF -BF3F7AC0001C01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E00FFE0001FFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFF83870F1811F7DEBF00FFFFFFFFF -FFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0080000C3CE3EFDF3EFCFFFFD -FBEFE940002F01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -800FFF0003FFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFF87070EA811F7BE3C00FFFFFFFFF -FFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000081CF0E7CF1E3CE3EFD -FBE58000006701FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -8007FF803FFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFF878F0FB80EFBFFBE00FFFFFFFFF -FFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000080EFFFFFF5FFFFFFFD -F9E38000006381FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -0007FF807FFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFC7830FF81FFFFFFF80FFFFFFFFF -FFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000003167871F7F7BFBFF -D6800000206F01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 -0000FF80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFF8F0F0FF0177EFBF700FFFFFFFFF -FFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000000001E1C71F3C7DE7CF -80800000003C09FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 -00007F80BFFFFFFFFFFFFFFFFFFFFFFFFFFFFE81FFFFFFFEF8F0FF81FFBFFF380FFFFFFFFF -FFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000000000001C39EFC7BE186 -80000080803C01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 -00001F00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFF0F0FF81FFFFFFF00FFFFFFFF1 -F6FFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00820500000000006DF55F000 -000000E0A03C01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 -00003F81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFF0D1FF801E7BE3E00FFFFFE800 -0200807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01030700000000000000A0000 -00010020707F00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4 -00007F01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFE020200020FF031F39F1E007FFFE0000 -0000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0180020000000000000000000 -0003802030E781FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFDFF01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFD010000000000007F01B7FFFDE007F4000000 -0000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000003C0000000000000000 -0101C02078F380FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000000800E5CB362007E0000000 -0000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE001C000280000000000000000 -0704E020FC7C00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000010000000000000 -0000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00340003C1800000000000085 -020060C08C3C00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000000000000000000010000000000000000 -0000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801C7C306808302810000002FF -860070E0C65C02FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000000000000000000000000000000000000 -0000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000C74E00000007820000A3E2C -03808040FFF400FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000000000000000000000000000000000000 -0000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000E3CF04000187830000E1E38 -03818020F9D3007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000000000000000000000000000000000000 -0000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0007FEF0600030283000041C18 -0181C03879E3803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFC07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000 -0000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80003CF083C1800081810180E0E -0180E07AFFD7803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFC07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000080000000000 -0000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000F3C70E38306000103C10000F -060073E7EFFF000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000000000000000208010380000000000 -0000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0016FF6CF3E38D0001834180007 -1E0033E3FF7C002FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000000000000000006010280000000000 -00000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80063D79F3F5E83058301014080D -8F0077E7FF7C4003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000000000007000040000000000 -00000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD00071C3CF0C2CC387830001C1C0A -E3C3DFFEFF7F4003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000000000000000000007060040000000000 -00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00073E79F1F3C63C7830600E3E79 -E0E79E367BC7C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000000000000000002060202C0000000000 -000800007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0003DEFFEDF7FFBFFEC30381E3B7C -F3EFCF3EF3E740007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000000000000000000A0C0006C0000000000 -001C30003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00038F78F0B3C79F7DE1E7C33EFEF -BEFFFF77BFF78A00BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000A00000000000001E04020380001040428 -D3FFDE001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000F9E7CF8F3C79E7C79F7C73E7CF -9E3A73C3DF7CF9001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0003180000000000061F0E0007800C3873E38 -D3D7CE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8002EFFFEFDFFE79FFFFDFFE7BEF87 -9F3CF3D3CE7879C007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF07FFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000E1E186141001C1F3D0F020AC6DFFDEDEF7 -F3E7DF000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0003CF387CF1E78F7FBDFFFFFAFDFF -FBFEFBE7FF3C79C002FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC07FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000F1A38E3C7C0163DE1870A0ED7D3FFFEFFF -FFFDD78007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0003C73C7CE1E3CF3FF973E78E3EF9 -E5EFDF18FFCFEF30003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFE000ABDEF57DF7C1FF5FF1E78E3E73E7CF9F3EF -7D7EF9E001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8003F7FBEFDF9FFDFBFFDF1F7CF3EF9 -E1E7DE3CF8C7CF38002FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000B8E3C71F3EFDFFFFFFFBFFBFFFFFEFBF7EF -1E7CFDF0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0003EF9F7CFBFB6FBF7FDFFFDFFFD7C -FBE7EE3CF9E78E1C0003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000F0F3E71F7879F7E73E7CFFF6DFFFFF5FF7F -FFBEEFF0003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0003E79F7EF0F3E79E78F1F7C73EFCE -BE76FF8EDD77F7F60003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000D8DBEF1F7EF9F7EF9E7CE3E78F3CF9FBEBB -FFEFFDF8001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8002BEBBFFCF9F3FFBE7CF9E7C7BE78F -9E3C73C3CE5C79EF0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00034E3E35F7FFDEFFFFDFFFFFE3FF3EFCF3E39 -F7C78F1C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0003E3CF5A6ED7FFDFFFFFB7FB5BBFEE -FF3AF3C3CE7C78E380003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0003CF9E39F3E7CF3F3CD3E7BABEF7FDFFFF7BD -FBC7CF1E0003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0033E3CF3C7CF3E7CE7E79F1E7DEFCFD -FFCFDA63EFF95F7FC0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80021AF3638F7D78F1D79F3A7AF3EF1C3DF9F7E7 -7E75FFF78000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0007363CE3E78F1F3DF7E79F1E7DE1CF9 -E3E79E3CF9E79F3DF00003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00034F3F3CF57FEF5AFBFFFDDFF3E7FA7CF1F3AF -1E3CF5F3C0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80009DBEFBDFFFFFFDFFBBFDF6E7DE3E7D -EBE79E1CF8C79F1CF800009FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0001C78E3E61E5CD1F3CF9FFEFBEFEFFFEFAF9EF -0F7C7BF3EE001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00018F3EF9E7CF1F6CFBFFDF3E7977EFAF -FFFBFB5FF3F7D734F800002FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80027468B9E71C7CF1D3EEBE7CF3E7DF3FF5F3EFD -FFFFFFEFFB000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA0007CFBFFFE7CF1F3EF3E3C79E3C73E78F -9E3CE7C74E7C7DAFEF000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000347F7B7BFBF7AF4F34F7E3CF9C79F3CF0F3C39 -F7CFDFBF7DC007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000EFFD7FBF6EFFF7EFDFF5F9F7C736B8F -BE78F3C78E7478C78F000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0063C38D1C31F7D7DF3C7B7FFFFFFBEF7EF9F3E3D -D7C3C73C7FE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0001973E3CF3D79FBE3FBFFDFC7D7FFFFE7 -FEFEF2E3CE3C79E78F8000013FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00C1C7CF1E39F3C78F1D39F3A7BE3EF1FFDEBDFED -FFF78F2F3DE0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00001C73E36F3C78F3C7CE3679E1D79E3AF9 -C3EFBC2CFBFBDFFBF7E000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000182FEF8334DBE5CF5C3DE1C79E3C73C3CF9F3EF -6D79F3B79FF0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80001DFAFFFEFBEFDBFF3DE7C79F3C7DE3E79 -F1E78C3C71A79F3CF8E0000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0061C3DB0E3CD347D7DF5CFF4FFFE1E58E7CF0E3CF -9F3CD1F3CF1C001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE20001E7AF3FFBC6DFFE7EFBFFAF3EF7DBBEFF -F76BDF3CE9C7CE34F9E0000004FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80070E35F0E1C61E3CF1E2CE1E75EBC7363AFFFFBFF -FFFC7BF3EFBE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800021E7CE3FF9E3CF1F3C73E7870F7C7BCF8F -BEBEBDE7DF7DCBFED3B14000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000FA34ED853671D3CF1F3D71E7CF3C79E3C78E3EFD -F3DA1FFFFFFF0003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000019FF5FBEFBF7C79E3879E7851E7C73EF8F -1E58E3C78E7C61EF8E387800043FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0039E3C74F3E39E5D6DEBBFF7FF6FDC79B3CFAF3E7D -F7C75F7E6DE38003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800009E3FEB6FFF7E7F7FB61EFFC28F5DFBEBAF -9E6873C50E5C79E79F1E58000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA0019F3438D1E3943879F2C7DE5BF7E7AFFBF7DFFFFD -F3C3FFBD7AF28000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000039E1E73E38E2C75F3C74E5CF161E7DEBEFB -C37FF5FFEF697FEFCFBC78600001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00029E0C7CF1E39F3C79F1C29E3C72E1EF3C7DFBF7B7 -BDF9FFFD7FF3E0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800001DE7EF3E3CD3C3DF1C7CE7C69E1C78E3CF8 -E1E71E34F3479F78DAF7EE1C00083FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00187193CF5C3DDF7F7EB9F34E1E73A3EF1C3CF373CF -3E7D79FFEFDA70009FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80002CEFFFFFFFFFEEFDD5EFEF7C7DD1A6CEFC79 -E3A79C3CF1CF8F3879E3EFCE00001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF0001C61C1CF0C2CF187CF1E38A3FF3B7BFDF7FFF1E3CF -1E79F1F7CF9E78000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00003CF1E7CF1EFDE7CF5E3D73EFED2E69F7FFBB -FFE7DEFC7BBFDB3CF9E3CF9E000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000C30C3CF1E3CF1C3CF0F7CE1C7CC3CBB76CDDFF0D7 -BD9EFDFFEF3E7C0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800003E79E7CF3EFBF3CF1EB979E78F1C7873EF8F -1E7CE7EF0EFF5DFE343BEF7D400003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF0000A79E7EE9EFC655D7FFDF3CF1E7CF3EF9E3C70D3C39 -E6C75F7D7DEDDF0002FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00001F7BFDDFAF6FFFFEFDF7CF3EFD79E7C53EF8F -3E78F7C51A6871870D7E78FBC40000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFE0001C18E3C30F3439E3834FBC75B77BFBFFFF3CF8FBE39 -F3C79F1C79E3C780007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000021E39E7C73D3CF7C77F7FFDB7FFBF76EFBFFBB -AF3EF7EF9E7CE9C78E3A78D1C700003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF80001E19F3C78F3C3963C7CF3831E38B1E76F3C7BE2DB3F -FAF7FF2E7BE0E78E003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000033F7DF3E73E3CF2C79F3C7CE3CF8F3879E38FA -E3CFB7DFEF4F7DFDAFBEB8FBE680000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFE0000EB0AFB6A8FF679E5C7CF1C39E1C61E3CA187CF1E3CF -3D7DDB05BFF16BDE009FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000FF7F7FFF7BF77EBC7DF3C3DF1EF9F3E79C3CE9 -E1E79E7CFBCF8F7CD9EBEFBFF3F00017FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFC0000E1C71C3CE2F3AF3FFAE08F2DF0E79636F3C5C70E346 -1C74F0038E1D7863801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000030FBEE9E7DE3FEBE7DF747FFFBDDEB9F75E1EF8 -E3EF9E3CF9C79E3CF1E3CF9C38D00001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF80000E3871C3CF1C3CD1C38D1A7C61C79C30FFF614987BEF -BE3C6002CF3A7871E007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000B8F3EE3E79E3CF9E7C71E7C7BC7DF1E78FFCFBF -3EEDFBFEDDDFD7BFF9E3EF8E78F180007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFE0000C7BE3EE2C73E3CF167C71A7460E3CC1C79F3850F3C7B -F5FE000BF7DE1850E003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800007F77FFFFFDF7FF9E7CF9F3CF9C70E1E5C73C687 -3E38F3C71E7CF9FBAEFEFBEFFFFDC0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF80010F3E30F1879F3C758FAE1BD7CE1E78E3EB9F3830F2E39 -E7C2000439E7851F50007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00003CF3F7BEFEF77FFFFFFFFFFFFFF3C79E7C7BE78D -9E7C73C70E7C71EF8E3EF8F1CF1F3C0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFE0002871A39F3C30F3C39E3C70F7C73C7CE3DEBDF0C18D1E39 -F1C0001CB9E3C58E18007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00007973C39F3C73C7EF3C31F3C79C68FBF2F73EF153 -FBFFD2E30E3DFDCF8F1EF8FBCF0F2C0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFC0003AEAC3BE3C30F1E39C7C39F1C7143873E3CF3C29E7830A -ED40001E7FF7A78614003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0001FDF1FF9F7E77E7ED7478F3C7DE7879F1E59C34F1 -E1CB1C3CE3E7FF7587EFFEF6E75F3C0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF80018F1A38F7838B3FAA83B66DD7C31E1C71A3853E68F1438F -140001E3DDD7FD815F000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF000078F1C7CEFEFEFFBFFFDBFB9A3DF3EFDF1E79E3CF8 -E3E79C3CF38E9F38F3E3CFBE7CF3C780007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF0003051C3C71C30F1E3DE0C5B61F70C14FD8FBE77C38F8C3CF -1C0001E5EE1E7C61E38003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFC000A7CF0F3CE3E79F3CF9E70F1E7CFFEBEF1E7FFEDE6A -E9EFCC34F1C78F38F1E3CF9E7AF3C784005FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF8000386BE3C79C3CB1A3871C7871F7CE1E74C3EF1E78F4F68EE -F00003F10F1F7CE1E38001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF8000F7C79F3CF3E79F3CB9E7CE9E3C79E79E1D7C73C68F -3E3CF38F7EFEF75ED9EBFF7FFDF3E3CE000BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF00018F0A7E39E6D81AE3E30E38F1D7861C58E3CF9E3C79E3C39 -E0001F9003EFBFFBF5C4007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF00037DFFFFFEFAF7DBFFFDE3CE1E3CFBEF9F1E7C73C30E -1C7862C71C7871CB8C3CFBF3DF5D7BFE8003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFF80001CF8F1C51C3C70B3C39C3C7167DEF863CF7EF8E2C38F2C39 -E0011F0001E78F9D1C79803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFE000F3C79E3E7BF6E7FAEDE7879F707DFFB7F9FFF76CB8F -BE7CE3C78E7871C7463E78B2EF1F7CF1C000BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFE00022CB8B3E38F3C70F3C38E3C78F1C59CB873A7B6786EEFBE1F -80078F0013E3878F1853400FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF8000FFC7DF3C79E7CE3CF8F3C69E387CE78F9E1B79860F3 -D757BFFB7FACD5CF8FBEF8FB9F1F3C78F0003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFC0001A2CDBEDEFF17F5D3A38E1C6AE5C78E1871C3CE2C7AE382CE -0018F4001FFBEF9F3E7BC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF0003FFEFDFFEFDF7FFBE74E797973C7DE1870E1C38E30F9 -E3CF582CF2CD9F35D3EEFFFFFFDFFDFCE8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF00021C38F1E3863C37F7A75A00B355AC3967CB9E3C73C3CF1C34A -003CB000CF5F5DE3EFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFE00061D7CF1FFEF3FFBFFFFFFFEFF9FB5F76F8B1E79E38F9 -E3C79C78F3C6963CF1E3E71E6CF3EDDE38000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFC00031C18F1E3C63C38B0C38E185971E3CE3C7EC79E3F6FDF9D3EC -003CE003CF3E7CE0E7CFF401FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFC00079E78F1F3CE3E78E3CF3C5DF3E3CB3E71E3E7963FEFF -6EE68EFCB3A78E38FBE3AFBA7DF3639F1C0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF8000902BED8E3C71C3CF1E3CE1C78F0E3CE1E79E34F0E7CF7F3F50 -00AE0003CF2C7CF1F39F7C00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF0000EFF7EFBFFEB3E7DF3CFBE79B1F3CF3E38F3E78F3CF1D -3678F7CB1CF9E1DFB9EEFFBFFBFDEFDFDE0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE00030E3C7863C61F3069DD9EFA07C58334E3F78E3CF9F3C70D3C70 -0382001473EF8FFFDFFBFE00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFE00039F7C79FFF7BF7EF7BEFEFFEFBD3EFBD7D69E7CF1C7AF -3EF873470E38E1C78E3CF8F3CF9F3DFBF780005FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE00018C1CB8F3C38E3870E2C39C1872E1C52EEDD33E6CF1C7CF3C20 -03C4003C79E3879E3E7BE7002FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF800019F3C7DFBC79E3873C78F5CF9E7C3BE58FFFBFFFEF3FF -96F867C35E7DF1D78F3EF8F3DF9F7CF9E384000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF80010179EF8F3C79E3C28F3C31E1878ABC71E7C73C38E3839E7B7C0 -00F800BD3369EF9E1A73E3C00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF00007CFFC79FFF59FFEF3C3867C78F3C7CE3879E5C79E38F9 -C34F1E7FFFCEFDAFDFBE7FEBEF5F3C79F2C60001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFE0001871C3CF1E3AFF061C614F8E7C38E2C31E3C71C38E1C78B3C380 -186001F7FDF6FFDE1FFBFD8007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFE00036FFFFFFFFFFFEFFFFA7FFFEDBF367FE78F8E7E79A3879 -E3ED9C78F3879F30F1E3DFFF7BF7F7FBF7F74000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF80025853C3C63E3C63C38F3C2CA387D617FF97EEB9E3CF3C3CF1E380 -1C0001F7CE1E7DE3EEDEFFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFC0003EF1F7CF9F6EF3E7DF78FB6FFF3EFDFFDDBFBFFFBC34EB -E3CF9C5CF1A79EF9E3C3CF3E79F3E7DF3E79E0003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF001A3EB9E14F9E18F3C6C61C3CD1858E1E3CC36F9C3DEBC7DC5EF000 -1C0011F7CE1E7DE1E7CF3E7000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF0007BCF1D74FDF7CF3A78D7CF9A78F1E7CF3E78E3E79F79F3D -147DB746ABD5DF7EFBF74FBE7CF3E7DE3E79E0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFC0021C7DFF4F87FEEDDC35F1B34F1C79F1A2CE3A79C3C71F3C71E1E01 -E700177FEFFFFDFFE74E3EF8003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFE0003FFFFF7FFDF7DF3EFDF3F79F5DF1E7CF1E7861A78F3CF8F -3CBAE7D71E7AE3EFBD7FFBFF37FFFFBF9D7BF0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF80061E59F3C70E1C79634B9A58A3E52B7FEF661EF8C1438E78F173801 -E0001F7C73CBDFBFBFFFFFF8003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFC0001E39F7C79F3C7BF3B77EBFFDFFF77DD6967DF9E59D7C78D -3E7873CF0E78F1CF8F3C78F39F1F3AFFF79EF40007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE00079E7CF3C78F3C79F3C78F3C31E2879F3833F5EF2E617FEFBFF5E01 -E0031F3C79E6CF9E1C73CBCE001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF80013E39F7C79F7C79E3CF3C7867C77E7C79CB871E38FFEFAFF -96FBF7D7DE7B79CE9F3EBBFFCF1D7CF1E38F9E0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0011E7AFEFEFEF7FFBE38F0F3C71E3C78E3C71E7A73C38B745DF2C78D -F003DF6F7BEFE7DF1E73E7EE9007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF0000BFAFF7F3DFFF70F74E3C7CE3871F1C78C78D8E38F9E78F3 -E3CF9C7DD3CF9EFDEFFEFFFFFFFFBEBBF7DF3A7005FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF80039E3873C38F1E38F3C79E5BBDDF2C5BF5E59F7E73638E7C7873C7CE -000CE3E7DE36FFFDCBAFFFEE5803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFC0001E3CE1F787DFFFE3AEFEFFEB0E5BFFA3FF7AF1A5F79C1CFB -E3EF9C78F3879F78F2C78F7EFBF3C79FFEFBFFFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFE00038E1C63E3C73C1C33C34F3C7CE1C38F1E5A83CEB8D5FF7E3DB167C6 -003CF1E3CE3E5873E59F7EFBE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFC0030F1EF1E38E1F3CE1E79A7CFB871F3C58F3CFFCFF7DF65DFF -B3D7DF7FE18F9E7CF3EFCFBE79D1C7DF1CD9F5E6007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFE0000E2FFBFCAFF9E6C73C38E3E1CE1C78F1E38E3C7883C7BB79F0D75F2 -0017FDD7CF3E78D1A79F3EF8F300FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFF800FFFFF7DF7CF9F7CEBE79F3C73C38F1E7D73C79E3E7CF3879F -3CF8E54F1C7BF3AD7BFFEFBF7EFFFFFFFEF9E3EF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF8001C61E78A3ED8E3A39D3CC19FFDFDE0861E7CA3E79E3CE9E38F1E3C70 -008EBF7D73AFFD7BE7CFFEF9F3803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFF0011F9CFDF7C77FFEF7FFFFDFEDFDFC71FFC7BE59F1E7CF3D7AF -3CF877C70C78E1CF9F3EF0F39FFF77BFD7FDFFFF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF0000C60E38E3CF863C71C3C70E1C71C7C73D7561BF2DBBC39D7C71F3C70 -01879F7C71E58F9E3877DFDFFC403FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFE003873E79F7C79E5C7BE7CF3AF0E7DB9F7DFBEF8EEFFED71E7FF -BEF1E78F1E78E3CF0F3CF0F3CF1E7C71E78F9E7DC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFE0000455628E3EF0A2C38E3850E3C79E3861E3C71E70E2C71C50FBDB0E38 -03CF9F3E71E3C79E3873E3CE3C600FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFC003DFFEFBF7C38F3E71E3CF3C78E7871F2C79E7871E3979CE0FF -AFFDF87FFA7D7FEFBDBEF8F3DF1E78F1F38F1E786003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFC000C3143873CB5F1FD0067C58F3E39E3C70F3871E7873C38E5C58F3C380 -00FDDBFF9C55FEBF3E73EBCF3C300FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF8000BDFFFFFFFEDFDEF9F5FFBFF8F787DF7C59E38F9E6C79E30F3 -E3EFBC69E3879D79FFD74FFFFF77FFF9FB9EBF6CF0017FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF8000C39E1873C3C70C28C1830F145CE28E9855E3BF3CF3E3CE1C78E0C2C0 -087DE9E6CE3C7FF7AFFFFFFB0E7803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF001CF9F3E71FF9F1E7FF1CFBE5EF3AF9FFEDFDBFFFBE7D78E7CFB -E3EF9C7DF3C71E78E3E78F3EF1F3DB9F5CF3F76FCC043FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFE000067962C72C28F1E3CE3C78B0C3CE1868E1E68E3E69C79EF8774F0C380 -0C7DE1E7CE1C78F1E7CF3EF9C78E01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF0037F9E7CF3E7A7163DE3E7DD3CE1C59E1E7CFBEF9E3EF8F7DB7D -BBFEFF3DB3D79E74F3E7CF3E79F7C7CF3C79E3C69E0017FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFC000C3EE1E74E355156AEF1C74D083CC1C38E1438E3C79C3879478F1E3840 -07EFF8FBE71EF9F9C3DB3CF9E3CF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFC004FFF7EFFDFDBF9FFBFFEFFF7EFBC79F1E74FBC79F1E68E3CF1E -3CF8E7CF1C79C3D73F3EFDF7DFBDD7FF7EF3F3C78F0007FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF8000A38E1678A3CF0E3C39C3874E3CEF753A10F3CB7E79E39F9C78F0E3800 -A7C71E7C33C74FAE7FEF7EFF77CB00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFC00459F3E79E7CFCE7FFBF6CF577977DDFFFBFFFEDDB7EFCF1CF8F -3EF8F3CF0E78E1CF0E3CF8F3DF1E7CFDF79F7CF6FE8003FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF0000D1FE3C59E3C70E3E79E3871D3C31E78E1E5863CF8AF8EF7C3C3BE7C00 -C7C78C3C71E78E5E2873CFCE7CFD803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF801C78F3E39E7C79F7C73E78F3CF9E78D9E7C7BE786BF7BDBEFFFF -BF7FFFCFDEDBF3EF0F3CF3F3D51E7CF1F38F1E78F3E003FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFC00065ED7EFDEEEA0063ED8E3C71D3C79A78F1E3871E78F3C38E3871FF4400 -76FECFFE7FF3C71E1C7387CE3C39C00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF80063FFAE6FFFEFBE3C39C3CF3CF0E7871E1C7DE78F1E7C7BC30F3 -C7EDBC7DF7EFEDFF85F7FEF7CF1F3C71E39A3E78F1E001FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFC000F1C79E2C73E70E1C34B7C7DDF7EFDE7C79B3839E786B820C3878F3C600 -3CF961D7FFBDE3C51D7BC74E387CC007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF00034D3F3C72FBDF3FFFFEDEF7F5CF3C7DE7C7DE78F3E7869CB4F9 -E3CF0C78F3879E79F3C79FBCF9C3F73DFFBF7F7CFBF000FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF0000F1C396387363870E1CE3C79F0C74E35F9E1AE177FE7BE3CE1C7DE3C202 -3E78F1E78E3E79E3E7DF3FEB2F56F007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF0043CF9E3CF3E7CF1C38E32F9C7CB3E79F3C7DFFFFBFF5FFBE3CFB -E3E7987DF38F1E78D3CB8F3E79E3C78F3CE9D7EF9E78027FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF80049FF7DEEED3C7CF1E3CF5C38E1C7C61E78F1C78E3E71E68F18F3DFFF000 -1F7CF1E7CE1E7061E7DF3C78E6AF3803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE0043BF9E3C67F7DF1E7CE3079C3CF1C79F9E7CF38F8E3E78FBCF2E -FDFFC75FFFFFFB3DF3EFCFBEF9E3C71F3CF1E3879F1C00FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFE00070F38F3E79E3AB1D1F5FEDFDFEA7CE1E68F1E3CE3E78E38F5C79F1D3001 -67D61FFDED8A3979EFDF3AF3A7CF1C00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE003C7AF7BFBBFBFFFFFDF6079F7C7BA79F1E79F3CF9E1E68F3CF1F -3CF8E7C75EF1E3CF3D3EFFFFFFFDEBDD7AF9E3C7CE3C003FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFC00060A3CE1A39E3C70E3CF1E7871D1EB386D416F4DE9E39F7CF9C7971F7801 -C78E1E7473C78E9E7FDEFEF8C7D73E007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE003C7CF3C39E7C79A5F73A00D3EF1C76DEDEEFFFFFF69E7BFFE6BE -3EF8E7CF1A79E1CF1E3CF9FBDF1C79F0D79E3870F36F003FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF800039D3C61E78D3D70C1C79E38F1E38F1E3C61E3C72EB8F7EEDF799F7FE00B -E3478F3C71E3871E3A73C78E35FBF7007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE002E7DF1CF9FFC78F387BE0077CB0E7871E3C79E72F3670FBDDBFF -DFFFFFFF7FFFFFAFAF3C78FFDF0E3CF1E78E1E5B61E7001FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF80039F3C7BE1CF6DD887E71DD2CFDF5EFBE7CE1E3451E70F3C38E7C79EFC00F -FBD1E77D31D7CF8E3E73E3C63C79C3801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC00A3DF7DFEEBFFFFEFF7BA0077EF8E7C79F7C7DE78F9E7879CF8FB -EFCF1C71F38FBE74FBCFFFFEFB2FFDF9F7BEBEF8F1F7800FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF00018E1C39E3C73C70D2E38F7C79FBE7AF7F6FDF3C75F7C536387BC79E3C00E -3C79B3A78E3EFABBEFFFE7A37D7AE6801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC00C7CF1F3CC7C79F1E7DFF009FF7D7DFFFDF77BF7FF3F7E79D7CF3 -EB8FBC79F38F1E71F3C79F3EFDE6CF9F3CF3EFFD7FFBC003FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE00378B1C71E3873C38F1C18F1C38E3C3CE3CF9E3C71E3BFBDEFEF7E7AFDC00E -5FF9F1E7CE3E79E1E7D63CF3EFDFBCD003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC00E7CF3F3CE3E79F1E78E3800E7C73C79E7E79F7C73FFF7BFFFF7F -FFFF3DFDFBCF9E79F3C3DF3E78E3879D3CFBE7AF9A5CF003FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE001CF0E35EB4EDD2B6DBE3CF1C79F1E3CE3478E1E38E3CF1E7CF3E71FF7007F -FFFFDFFFCE3DF8E3E79F3CF167CF2C700BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF8005FEFEF7EF5F7F71E3CEB809D3CEACF3F1C79F3CF9E3EFDE7CFAF -FEFFEFD6BEFBEFFEF8FFFFFFFDF7D79F3CF9E3C79E3CF001FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE003C60D3CE3A79C3CF0E3EFBE35FDFB7FF3EF9F1F7CE1E79C7CF3E78F1E0031 -C7DFFF7EE3DFFFFD63DEFE79C7CF3C7001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF8003C79F3E7BE7FFBF7FF7D80EFFC7BFFFF7E7DF7EFDFBE79F7CF3F -3EF8F7DF1C78E3CF183CDAFFAF7FFDFFBFFFFFEFBE3EF803FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFC021E71C3863C79E2CB1E3C79C70F0F78F3EF8D1E38EBDE7DE7EBFDFCFBE00F1 -E7D71E7C73CF8F1E18F3EBFF7DFBBAF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF0003C79F3CD9E7CB9E3C73E0077870E78F5F7DBFEFFFBDFFFF7FFBF -FFF9FFDF9C79EBCF3C3CF9E3CC1C7DE1E79E1CF1FFCF9C01FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF000C71A7F6ABF75734F0E1C71E7C61F7C79C7871E7873CF8F3EB5F7F7BFF00F9 -EFDF9F1F7BE78F9E1C73E38EBC7CE78C003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF801FEFDFFE7FF7C7DE7C71E2073CE2F7879E7C7BE78D9E7AF5FFDBB -EFBFBDFFF77FF7DFFF3FFFFFC01E7CFBF79F1E78F1C71C01FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF001638F1411A7873468FB43FEF7DFFEFCEBE7FF0F3C71C78F3CF8E3C79E7838C -7DF9E7E7FBFBFF9E187BA38E1C7DE38F001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF801D75FBFFFFFFFFEFBF7EF6077CF8FFDFFE7CF9EF8F3E3CF9CFDF3 -EFCFBDF5F38EBEFDF7EDFFBFE03FBD7FEFFFFF79F9E79C00FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE000C18F1C61E3871C38F1C1CE3C71F7C59F76B3FFD779EFCB3EFDF3E79F383CE -3EF9F5E79E3CFBC3C79FFDFB7E7D63EF805FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF001C3CF0E7CF3C3DE1C78E3E01C7CF7F7FFFFFFBFFEFFFFEFDEFFFF -F7EFBCF5F38F1E79F3C7CF3EF0E7CF9E3DFD7B8EBF7EFC00FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE000434D1479E7673C30F9C1CE3C78D3E3CE3879F3C79C3FFBDFEFFAFDFFF03EF -7C79D7B3CE3C69E1C79F7CD9E3C7BD7FC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF800F7CFBF3CF7E79F1E3C63C01C3CF3CF9A3E7DF74B8E2E714DEEFF -EFFFFFFFFFFFBF7DD2CFFF3DE0F5C71F3CFBC78F9E5DD0007FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE00E1C61434E3C7963CBB800D75EFCF3E7CF1E78F3E38E3CF9E7CFBD79F3705B7 -EFFF7FFFDABE3DE1E79E3EF9C78F3CF96007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF0003FFFBFFFFBFFCF7FFDEBE01C3CF1EB9F7A75F3CF26100000000C -18F9FFDF7E7DE3FFFE6EFFBFE07FFFDFBCFBF3CF9F3CF000FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE00D1C71E38E3E79C38F1E0079C6DF1FFC73070B7EEE9E9E79E7CFBC7DF1F7CF3 -EF8F9E7C7BE79E9A7EFFBE7DF7CF3C79E007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF0005C71F3C7BF3DF1E7C77EF017CF5FEFFFFFFFFF80000000000000 -007BEFDF9CF9E3CF1E7CFBE7801F6DFBFFBDFFFFF7FFF8007FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE0020C71E3C61E79C3CD0E0079E78F0F7CF1CB861F3C72EBDFFFFF7FFFFFFFEFB -EF87DF7C73C58F1C5CD3CF966C7DFFFFF803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF0003CF1F3CFBC78F9E7C73E7013C71E7DFBEFDFBC00000000000000 -000FFFDEDEDFF3DE5E3CF8E3803E78F1E39E3C71C1E7AE007FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE009C31D387ADBEEE5E79B8039C74F1F7C79E7871E7831C38E7CFBEEDDBF7FFFF -FFFF7FF63BE78FBE3C73E7CE7479E7CF9C03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF802F6FEFBFFFFFC7AF3C79E7037CB8FFCFBF58F8C00000000000000 -00017DFFFFF7EDFFEFBFFFC7835F7CF1F3DE3E79F3CF8E007FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE000C38E3C31E58F3C78FBE00679FDF6F6FBEF869E780141063C30E3C71F7C7DE -FC7BF7DBBF71FFDF5E73EFCC7C78C78F3C00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF801C75F3E7EFFFFFF7FFDF7701F7FFFF7FFDFE78000000000000000 -00001C79F38F3E78F3C7DF0E01FEEF7D7DFFFFBCFBFDBE007FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE000A18F1C39E78F3C78F3C00A3C7DE3C7DE78F9E380000000000001078F3FFDE -74F9F3E79E3CF8E3E79E7EF9BFDC75EFFE00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF801C3CF1E7CF7A79F1E7DE380167CFFFF9FF7F80000000000000000 -00000C79F9CFBE71F7CB9F0C01E787973CF3AF4F9FFD71003FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE0080001E0175BF77A74FFE00E7875F1C74C7C71F18000000000000001F3FFFFF -BFFDFFEB9F3C7861E79E3C79C78E7C7BF3017FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF800F3EFBF7FF7FFDF3E7CC1C01C3CFBEF9F3E780000000000000000 -0000001FDFFFFFFDFFEECF0E01F7C71F3CF3E3879C3DF2807FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE00E1861E38E3C79C79F1FA007DE7D71C7CEFEF9E0000000000000000001F7FFB -EFBE7FF9DFFE6833E3DF7D69C7EF3CF9E3007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC0078FDE7FBBFFFFFDF7F80E00E79FFEF9F7C500000000000000000 -0000000F7C79E3DFBF7F700603F7DFBF6FFBF7FF9F7CF1003FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE0061C61E38E1E59C3CF0E3801C39F0E7973FBFEF0000000000000000001E7DF3 -E7CF1C78F9EF801D3EF6FEFDFFDF7AF8F9007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC003CF1F3CF9F79F9E7D7003803CFDEFBFF7C000000000000000000 -000000031EFDE39F3F3C00030E3E7DF5E7BEBEFFEB6FFF007FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC0030230A2C61EF9638B8F3C01C38F1E3CD3C78F00000000000000000000F7FFB -F7DFDF7C73E7801C38F38F8E7D79EFFF7E007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC017C7DF7CFBF7CFBF3C7003003871EF971E0000000000000000000 -000000001FFFDBFFFFFC00021F7F74F1E3BE3EF961E79E003FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE001C39D3832EFF76C7D06D801F1DB1F3CF1E79F800000000000000000003CFEE -7EF7BEFFFFB7801E5EF3C7866CE943CF1E007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC01D7EFBFFFFFFFFFFFAF801803EBDEFDFBE0000000000000000000 -0000000003AFBFFDF7FE080E0FFFFFEF7FBF3E79E3E71E007FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC001E28C1C71C38E343803C4047869E386D67DFF000000000000000000000C7CE -5C71E3E7DE740077EF5FF7E7FFFDEF8FBE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC01C75F3E7DF7EFFF6D7DC00807FEEEFFF700000000000000000000 -00000000018FBE79F3EF0E0E3BF7FB9F6DFFFFFDFFFBFB003FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE012C31E2A39E6877C3C03E2063879E3C78E3C7E00000000000000000000003FF -3AF9F3C7DE3C00C3E7945FF3F6FAFFFBFB003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFA00C79F9F7CD3C79F3E78E0040478F3A7B800000000000000000000 -00000000000E9E78F3FF0A1C39F7878F7CFBC78F9B39F2807FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE00E385129CFBF7F7CBA00C0033C74F1C7CEB87C00000000000000000000007FB -FEFFFDF5CE3800F3D79E7CF9C7DF3CFCE3807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC007BEFFEFEF7EF9F7E7DE000043CF3CE8000001BA0000000000000 -000000000003F7FFFBFF7C1C3FFFC69F3CF9E7CF9E7CF3003FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE0061C61C38E3EB9F7CE003C01EBFF7F7DBB7CD800000000000000000000000FB -EFBFFE58700E007FFF9E3E7BE7CE3EF9E1801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE003CFDF7EFBF7DFFFBBF780006FFFBC7000000FFFFE6000000003F -FF000000000003DF1D7DF8001F7FEBFBFFFFF7D7FFFFFB007FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE0061C71E3CE1E79E74F002C0187071E3CF2A74000FC00000000000000000007B -E79FBE785004023E7FF7CBDFFFFF97FBF3803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE003CF9F3C7BE7CF5E7CB3C0003CE1E40000003FFFFFDFFBBBDDFFF -FFE000000000014F3E3DF0C01F3E79F1F7BE3EF9EBFFFE007FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE001C71A5C6D05EBF7CF803C01E78F1A3CF1CF0001FFFE00000000000000000BB -FFDFFF786002051E3AD3C7DE5CF1CFDFFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE006CF5FBEFBE7CFFB7CF3C0003C78C00000016FFFFFFFFFFFFFFFF -FFF800000000018BFFFFFBA81F7F79F7F39E3E78E2EF3E00FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE002C30E1479C38F3C51E0060077EEDDACB3F4000BFFFBFB0000000000000003D -BFFFFF800010073DFAEFC74E78F9E58F1C001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE00E3FEBF7FFBFFFFFF77BE0003DF00000000FFFFFFFFFFFFFFFFFF -FFF8000000000001F7DEDFFC3FFFFFBFFFBE3EFFFBF7BC007FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE001C38C383BE58B3C70E0010078F1E74FCFF8001FFFFFFFFC00000000000000E -7AF9F3C0002801D3FEFFFFCB7F7F6FEFBE200FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF0047DF3C7CC3E79F5EFDE30000740000000FFFFFFFFFFFFFFFFFFF -FFFF000000000000D3C71DBC7967C59F7DFBEF6FEF7FFF007FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF001458218B9700F3C78F003003C79E3C78FC0007FFFFFFFFFFFFFBFE0000000F -FFFDDBC0003801E5EF9F7CF1E7DB7CFB77E00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF0022CFAF7FF5EF9F3FFCC30000300000003FFFFFFFFFFFFFFFFFFF -FFFF80000000000003CBCFFD73E70F1F58F3E38F1E7DFF807FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF0063A60834E3869E75F980001DBFDF1C3FF0001FFFFFFFFFFFFFFFFFC0000003 -FBFFFEF0403009EBFF9E3CF9C7DF3CF8E3A007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF0028B5FFFFFFFFDFF7FEEFC00000000000FFFFFFFFFFFFFFFFFFFF -FFFF800000000000000FFFFFFFF7078F7EFBE3AF9E3CD1007FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF00738E1E38E3C71C78E100000E68E1E3DBE0003FFFFFFFFFFFFFFFFFE0000001 -479FDE5060400FBCFFBFFFFFF7FF3EF3E1E017FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF003071F3C7BE7DF9FDEF7FE00000000000FFFFFFFFFFFFFFFFFFFF -FFFFC000000000000003F1D7BF7C01E3FFFAFCFDFFFFFA007FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF0019EE151CE2C79C38F0C0001C79F1E7CF8000FFFFFFFFFFFFFFFFFFE0000000 -07CF1E7060A00D3E7CF3EFDEFEFFEFFFFFA007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF800050E3CF9E7DE1E7CF367000000000003FFFFFFFFFFFFFFFFFFF -FFFF800000000000000000839F7C01F3E73E3CF8E3E7FE00FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF00343065CBAF7D56EC7B80000A79F1B3C78003FFFFFFFFFFFFFFFFFFFC000000 -03BFFFD0E080079E7CF3E78E7CF9E78E3E700FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF800015F3FFBEFDF9E7DF3EF8000000000003FFFFFFFFFFFFFFFFFF -FFFFC0000000000000000002BFF80571F79E38F9E3E7BE00FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF001C39A3873E78E3C30F0000058EBCFFC0000FFFFFFFFFFFFFFFFFFFFC000000 -04F3FFE180200BEEFEEFCFCF7CF9CFCFBC2007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFC0001E3C7DF77FBF7FEDFEDE0000000000001FFFFFFFFFFFFFFFFF -FFFFC0000000BF00000000007BE0079FFFDBBEBFFBFFBA00FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF801ED9F7C33E3863C38F380001C78E1E40007FFFFFFFFFFFFFFFFFFFFC000000 -0079E3C3800039E3E69E7DFFFFBB67EFBF7007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFC0000E0C7DF3CF9F3C79E3CE00000B4000000037FFFFFFFFFFFFFF -FFFFC000000FFFE0000000003BE0059E7CF3EBCA3E7CFC00FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFC003E53EA0B42ED3674F380003C31E3C0000BFFFFFFFFFFFFFFFFFFFFF000000 -0001FFC3C02071EBEF9C7EF1E7CE3CF1E3C007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFC000000C7FDFEF9E7E7DE3CF0001FFF000000010FFFFFFFFFFFFFF -FFFF0000005FFFFE800000003BF00F9E7CF3E78F3E3DF200FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF8003C61878C5879C7D71E000042DF5180000FFFFFFFFFFFFFFFFFFFFFE000000 -0000BEF9F0401EF77FDF7DFBC7DF38F9E3C007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFE0000817EFFF7FFFF7FFFFBF8002FFFE000000000BFFFFFFFFFFFF -FE80000003FFFFFFF40000001FE01FFFFEEFEFAF3EFDF002FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFC001C51C38E34B9C38F1C30000B9680000001FFFFFFFFFFFFFFFFFFFFF000000 -00000E78E3A00F3EFEEFFFFFA3BFDEF9E1E007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFE0000003C7BE7DE9F7D7BCF2C003FFFFE00000000002FFFFFFFF5C -000000001FFFFFFFFFF800001E703DE1EF3F7BF9EFEFF403FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFC000A15F14E1CE9A5DE1E2C00078E000000003FFFFFFFFFFFFFFFFFFFF000000 -00001E7CF3C00F3E78E3CF4E78F7EFEF7EA00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF0000002EFFE7CF3F7CF7CF8E003FFFFFE00000000000000280000 -00000002FFFFFFFFFFFF40000F2039F1E7BE3E79E3E73C01FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE00411E5831870E747C55DC0003040000000003FFFFFFFFFFFFFFFFFFF800000 -0000065FFBE07FBEFAF7C79E7CF8EF8FBC6007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF00000007DFFDFFDFFBFFDB9E003FFFFFFF0000000000000000000 -0000001FFFFFFFFFFFFFFF0007E03FF3EFBF3EFBF3AF3C01FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE00438E38E1C3863570F34700080000000000003FFFFFFFFFFFFFFFFFF800000 -0000000FFEF06FEBFFFFFFFFFDFBEF8FBC3007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF00300006CE7CF1E7A77EFCFF803FFFFFFFF800000000000080000 -000003FFFFFFFFFFFFFFFFFC03E00FEFFFF7FDFFFFF79801FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE00010C1871818E3C70F3C3000000000000000000FFFFFFFFFFFFFFFFF000000 -00000007FE38F9E3EF9D7CFDAFFFFFF7FEE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF80100003DE3C79E3C78C3CF3C01FFFFFFFFF80000000000000000 -00001FFFFFFFFFFFFFFFFFFA01401F3E79F9CFEEBEF8F003FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF0018E1450830D400BCDBCB4000000006E00000003FFFFFFFFFFFFFFFF800000 -00000003DEFFF9E3E79F7CF3CF9F3CF2C3800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFC0280001EF76FDFBFFDF7CF9C01FFFFFFFFFFC000000000000000 -0000FFFFFFFFFFFFFFFFFFFE0100DFBFFCFBEF9F3E78F003FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF003C61878C3879C7573E74E00000001FF0000000000FFFFFFFFFFFFFF000000 -00020001F7EFFEFDF7FFFEFBEFDF78F3E3C007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFC004000079DFBFBBFEFFEDFF700FFFFFFFFFFFF6A800000000000 -00FFFFFFFFFFFFFFFFFFFFFE0100FBFFFFDFFFFFFFF85003FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF001440838C1C71C38F1E3CF0000000FFFE0000000000017FFFFFFFFFE000000 -001F800003CFAF3E50F3FFDEDBFFFFFFEB800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFF0020600F3E7DF3E7873EF8E780FFFFFFFFFFFFFFFF4000000000 -03BFFFFFFFFFFFFFFFFFFFFF000079F3E73E3FFBFBE03003FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF80020E05683650C7DF2E3C70000007FFFFE000000000000FEFFEA0000000000 -007FE00001CF9FBE0077FFBE7CF9EF2FFC6007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFF00005007BEFBF1E7C73CF8E780FFFFFFFFFFFFFFFFFFFC000000 -07FFFFFFFFFFFFFFFFFFFFFF000079F3E75E3CF9E3E03803FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF80030E0131C78E3179F3F7EC00001FFFFFFA000000000000000000000000000 -02FFFC000003BFFE00E7CF8B7CF0C79FBE200FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFF80003801FFAFFEFFF7FFFFF7C0FFFFFFFFFFFFFFFFFFFE000000 -07FFFFFFFFFFFFFFFFFFFFFF8005FFFDFFBFBEFFFFE01007FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF8003060071C3863CF0E3C30E0002F7FFFFFFFFC000000000000000000000000 -3FFFFF800000FFEE013FF7FFFCDFEFAFFE500FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFF80001C01E38F1E3E79E38F9D407FFFFFFFFFFFFFFFFFFF000000 -07FFFFFFFFFFFFFFFFFFFFFF80075F9E7DF1EFDFFFF0700FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFE0030100000B8F3C70F3468E001FFFFFFFFFFF7D00000000000000000000007 -FFFFFFF80000F9E0039E7CF3CE9F77F7EF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFF80053E05E3878E1E79C3C718403FFFFFFFFFFFFFFFFFFF800000 -0FFFFFFFFFFFFFFFFFFFFFFFC007CF3F3CE3E78FAE30C00FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF0000000083C78C39A3F7BF2001FFFFFFFFFFFFFD800000000000000000005F -FFFFFFFF80007FE0079F3CF1CF9F3DF9E3C00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFC001DACFFBFFDFFBF9E1BF9C407FFFFFFFFFFFFFFFFFFF800000 -0FFFFFFFFFFFFFFFFFFFFFFF800F7FBEFBFBEFEF9C60E00FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF00001800C38F1C78F1C1CF1803FFFFFFFFFFFFFFFFA000000000000000DBFF -FFFFFFFFA00016F00FDBF7FFEFBF7FFBE2801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFC00177CFBEFFE36FEF3CFBEFC07FFFFFFFFFFFFFFFFFFF000000 -07FFFFFFFFFFFFFFFFFFFFFFC01EFBFFFFBFFFDF83B1C01FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF00000400C1C79C3CF3C3C71803FFFFFFFFFFFFFFFFFFE000000000017FFFFF -FFFFFFFFF8002F001AF7FF8E79FBFFFFFDC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFD001F7CF3E78E1E75F3CF9E7803FFFFFFFFFFFFFFFFFFF000000 -0FFFFFFFFFFFFFFFFFFFFFFF801E79F7E73E5CF98181001FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF800806062FB356757EF6CE9801FFFFFFFFFFFFFFFFFFB0000000016FFFFFFF -FFFFFFFFFEC00E0038F7C78E78D9CF8F3C603FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF001EF7FFFFFF3F7DF3CF8F7C01FFFFFFFFFFFFFFFFFFF000000 -0FFFFFFFFFFFFFFFFFFFFFFF807DF9E7F79C3CF803C2001FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF801003871E58E7CB1F3C70C001FFFFFFFFFFFFFFFFFFF800000007FFFFFFFF -FFFFFFFFFFE001001FFFFFFF7C71EF8F3C203FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF8023C7DF7CFDFFFF7C76EFDC01FFFFFFFFFFFFFFFFFFF000000 -0FFFFFFFFFFFFFFFFFFFFFFF007FFFBFFFFFFEFC0303003FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFC00001C73C30E34F0E3C70E001FFFFFFFFFFFFFFFFFFF800000007FFFFFFFF -FFFFFFFFFFE00000EFBFFFEFEFBF7FBF7F403FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF8001C58A3CF9E1F79E3CF18E01FFFFFFFFFFFFFFFFFFF000000 -0FFFFFFFFFFFFFFFFFFFFFFE01EFCF5EFCF3E7DC0C01003FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFE00000288210F7D79F3E7CC001FFFFFFFFFFFFFFFFFFF800000007FFFFFFFF -FFFFFFFFFFF00000DF9D7CF3CB9F7CFBEFC03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF8003B7DF3EFDE3DFDE38F3C301FFFFFFFFFFFFFFFFFFF000000 -0FFFFFFFFFFFFFFFFFFFFFFE01E7DFBE7CD3CF481600003FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF0040039E3869C7DFB6F56F801FFFFFFFFFFFFFFFFFFF80000000FFFFFFFFF -FFFFFFFFFFF000017FDF6EF3EF9F74DBE7807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFC0067DEFEBDFFFFFFA3FFDD680FFFFFFFFFFFFFFFFFFF000000 -0FFFFFFFFFFFFFFFFFFFFFF8037FBFFFFDFFFFC01C00007FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFE8060038C1C79C58F3C78F2801FFFFFFFFFFFFFFFFFFF80000000FFFFFFFFF -FFFFFFFFFFF80000FAFFFDFFF7EFFDFBFB807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFE0167CF3EFCFBC79F38F9F7AC0FFFFFFFFFFFFFFFFFFF000000 -1FFFFFFFFFFFFFFFFFFFFFF8067CF9F6F73CFFE0000600FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF8018008E7E7B47C71F3CF1800FFFFFFFFFFFFFFFFFFF800000007FFFFFFFF -FFFFFFFFFFFC000278F7EF0F7D7DAFBFBE807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFE00A7C79EFBF3E78F3CF8E7D40FFFFFFFFFFFFFFFFFFF000000 -0FFFFFFFFFFFFFFFFFFFFFF00E3E79E3C73E3840600400FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFC01E1873471D2D5947FFEB400FFFFFFFFFFFFFFFFFFF80000000FFFFFFFFF -FFFFFFFFFFFA000FDEF7FFDE7CF9CF1F3E007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF8035FFEFFBFFF7FF3DFBFF9C0FFFFFFFFFFFFFFFFFFF000000 -1FFFFFFFFFFFFFFFFFFFFFE007FBFD7BE7BEFC00E00601FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFC00E1873C78E78E1E3CF0E5007FFFFFFFFFFFFFFFFFF80000000FFFFFFFFF -FFFFFFFFFFFE000DFFFFFFFF77F5CF9FBE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF801C79D78FBE7E7F9FFFBFF00FFFFFFFFFFFFFFFFFFF000000 -0FFFFFFFFFFFFFFFFFFFFFC021E7CF3E7DB7FF00C03803FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFE00D1873E78C7C70C3CF8E7003FFFFFFFFFFFFFFFFFF80000000FFFFFFFFF -FFFFFFFFFFFE0003EF9E7DFBFFBF7FFFFF00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFC00C78C38F9E3C69C78F3CF807FFFFFFFFFFFFFFFFFE000000 -0FFFFFFFFFFFFFFFFFFFFF0061E78F1E79D1CF06005803FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFA005421EB0D9A5D562EF463803FFFFFFFFFFFFFFFFFF80000000FFFFFFFFF -FFFFFFFFFFFE000FEFBF7DF3879E78F3E700FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFE00D7FFFEFBF7EF9E3DF797807FFFFFFFFFFFFFFFFFF000000 -0FFFFFFFFFFFFFFFFFFFFF005177D7BE3CF3E70F003003FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF001C7943875C78F1C3CE9C403FFFFFFFFFFFFFFFFFE80000000FFFFFFFFF -FFFFFFFFFFFE0027FFDFFFFBEB9E7DF9E201FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFE007CF3EFFF3F7F7BB77FF7C07FFFFFFFFFFFFFFFFFF000000 -0FFFFFFFFFFFFFFFFFFFFE003FFEBBEFEFFFBF8B01F007FFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF801C3142CF0C78F0C3CF3C003FFFFFFFFFFFFFFFFFF80000000FFFFFFFFF -FFFFFFFFFFFF003FFAF7DF5EFFBF6FE85E03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFE003C73E71E3CE8F2CF9E78E03FFFFFFFFFFFFFFFFFF000000 -0FFFFFFFFFFFFFFFFFFFF8031E38F9F3E73E78F403A00FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFC0070F81BF9C2DF343DB38401FFFFFFFFFFFFFFFFFF80000000FFFFFFFFF -FFFFFFFFFFFE003FF8F7CF1C79F3DD983E01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF002CFBFF9FBE7DF3CF1E78603FFFFFFFFFFFFFFFFFF000000 -0FFFFFFFFFFFFFFFFFFFF803967C79E3E73A3CF003C00FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFC002831CD8E38D1B78FEDE801FFFFFFFFFFFFFFFFFF80000000FFFFFFFFF -FFFFFFFFFFFE007DFBFFEFDE79FBCF803C03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF8007FEF7EF77FFB7EFDF7FB01FFFFFFFFFFFFFFFFFF800000 -0FFFFFFFFFFFFFFFFFFFF001FBBB6EBD7F3FFEF802C01FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFE003871C78E7870E3C60E7800FFFFFFFFFFFFFFFFFF80000000FFFFFFFFF -FFFFFFFFFFFE01FFFFBFDFFFDEFFF7C03407FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFC0078E78F9EB4E9C75F39B801FFFFFFFFFFFFFFFFFF000000 -0FFFFFFFFFFFFFFFFFFFE008E1C79F3E78E36B803E003FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF000551EE873CF0F3878E7800FFFFFFFFFFFFFFFFFF80000000FFFFFFFFF -FFFFFFFFFFFC03EFCFBDFCFBCFBF7CC06007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFE0039E3CF9E5C79C78F3C7980FFFFFFFFFFFFFFFFFF020000 -0FFFFFFFFFFFFFFFFFFFE00CE1E78E1E7DA3DF801C007FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF00079838F3C79E6CC1EDDC00FFFFFFFFFFFFFFFFFF80000000FFFFFFFFF -FFFFFFFFFFF001FBEFBF7FF3E79E78E02007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFE000FBFFFFF7FFD77CFBCF882FFFFFFFFFFFFFFFFFF83C000 -0FFFFFFFFFFFFFFFFFFFC004BBFFCF9F7DF7CF803E007FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF00078C2A73878F3C697382007FFFFFFFFFFFFFFFFF80000000FFFFFFFFF -FFFFFFFFFFF0037EFBFFFBF7BFFF7E80A00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF000D3EFDF3EFEE7CF7FDDD007FFFFFFFFFFFFFFFFF07E000 -0FFFFFFFFFFFFFFFFFFF00079E7EFBEBEFBFFD807E007FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF80079E78F3C79B2C78F387007FFFFFFFFFFFFFFFFF000000007FFFFFFFF -FFFFFFFFFFF0043E78EFFF7F7DF3DB80400FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF000F3CFCB1E7AE3EF9E7CD007FFFFFFFFFFFFFFFFF07E000 -0FFFFFFFFFFFFFFFFFFF00C79E78E8E3E73E3801A200FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFC0007BEB1DE1CD7B7CEBC3803FFFFFFFFFFFFFFFFF80000001FFFFFFFFF -FFFFFFFFFFE00F1E78F78F1EF9F1CF00001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF8003BBF7F9F74E79FBE7CF003FFFFFFFFFFFFFFFFF07FC00 -0FFFFFFFFFFFFFFFFFFE0053DF3E79E3EFBE7C01E001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFC00033C70E78F1F3871E78801FFFFFFFFFFFFFFFFF80000000FFFFFFFFF -FFFFFFFFFFE003D7ADFFFFBEF8F98B00001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF8001CF7F9FFDEBFFFBFFBDC0BFFFFFFFFFFFFFFFFF03FA00 -0FFFFFFFFFFFFFFFFFFC0078F7EFFEFF7FBF7E01F001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFE000F3C78E3851D2C70A78401FFFFFFFFFFFFFFFFF80000000FFFFFFFFF -FFFFFFFFFFE001C3AF6FDFFFBF1D0003801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF8001E78F9E38794F5F3972A01FFFFFFFFFFFFFFFFF07FE00 -0FFFFFFFFFFFFFFFFFFC003CE3E78F1C79E3CF0F3C01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFE0001CAD8668E1E3C60E78600FFFFFFFFFFFFFFFFF80000000FFFFFFFFF -FFFFFFFFFFC003E3CFBC7DF3ED9E0003407FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFE000C7E79A3EF9C79F18F1E00FFFFFFFFFFFFFFFFF03FF00 -0FFFFFFFFFFFFFFFFFFC047CF3E7AF3E7DE3CF8F1403FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF0010E34F3C70E3474D2AD002FFFFFFFFFFFFFFFFF80000000FFFFFFFFF -FFFFFFFFFF800DF3BFBCF4FFFF9E0003C07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF0033BFDFFEFDFFF9F8CFBF00FFFFFFFFFFFFFFFFF03FF80 -0FFFFFFFFFFFFFFFFFF003E73FFFFFEEFFFBFDAFB007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF0039C38E1C70F1C38F386000FFFFFFFFFFFFFFFFF80000000FFFFFFFFF -FFFFFFFFFF800E3CEFEFDF6FFF84000380FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFD0033EB9E3E79F3CD1E78E180FFFFFFFFFFFFFFFFF03FE80 -0FFFFFFFFFFFFFFFFFE003C79E7BF9F3CF3EFDF7C00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF8001E1F69C5873C3CF3C71007FFFFFFFFFFFFFFFF80000000FFFFFFFFF -FFFFFFFFFF000E3CF8E7DF1EF8E0000600FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF8023CF0E1E79F3CF3479F1007FFFFFFFFFFFFFFFF07FFE0 -0FFFFFFFFFFFFFFFFFE001C79E7CFB67E73E7CFBE00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFC0071CB943961D599FFBB9003FFFFFFFFFFFFFFFF80000000FFFFFFFFF -FFFFFFFFFE0007B6FDF7CF1C7860000C01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF401EFFD95EFCE3CF9E78F3C17FFFFFFFFFFFFFFFF03FFF0 -0FFFFFFFFFFFFFFFFFC015FDDFFFFBF7C73E76F1C00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0053CF0C7860E3C616787003FFFFFFFFFFFFFFFF80000000FFFFFFFFF -FFFFFFFFFE00737DF7EFFFFE7C80000C01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFC0067861A78F3CF9FF579D407FFFFFFFFFFFFFFFF07FFF0 -0FFFFFFFFFFFFFFFFFC01E6DE3CFDFAEF9D7FFFF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE0032CD8E3CF1E3870E78C000FFFFFFFFFFFFFFFF80800000FFFFFFFFF -FFFFFFFFFE00F3CFDF9DFDB78F00003803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFE00F38F9E78F9C70E3CE5E403FFFFFFFFFFFFFFFF03FFF8 -0FFFFFFFFFFFFFFFFF801C7CE3E78E3C79E3EF0E001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE001A2CE80E1172061659F000FFFFFFFFFFFFFFFF01C00000FFFFFFFFF -FFFFFFFFFC00D9CFEFBC74F38A0000F003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF005FBFBFFEFBE78F38F1E207FFFFFFFFFFFFFFFF03FFF8 -0FFFFFFFFFFFFFFFFF800E7DEAEFBF3E79E3FF9F003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF000C3871851F3C38F3AF3E007FFFFFFFFFFFFFFF80F00000FFFFFFFFF -FFFFFFFFFC01FBFFFFFFFDFB840000F003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF803AFBA3FFFF7EDFAD79DA03FFFFFFFFFFFFFFFF03FFF8 -0FFFFFFFFFFFFFFFFF0073C73BFEF3F7FFFFFFBC007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF800C18F1C71D1C78D3879E007FFFFFFFFFFFFFFF81FC0000FFFFFFFFF -FFFFFFFFFC011E7CFDEFDF7DF80001B003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF803EF9E3EB9C3CF1E79A2C00FFFFFFFFFFFFFFFE07FFF8 -0FFFFFFFFFFFFFFFFF0063473E58F9E7873E74F800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF80043D29469F0F74F18F9C003FFFFFFFFFFFFFFF81FC0000FFFFFFFFF -FFFFFFFFF8038F3EB0F58F0E7800010003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF803CB1F3EF4F7CF0E79F1C00FFFFFFFFFFFFFFFF87FFF8 -0FFFFFFFFFFFFFFFFE00B5D73E7E79E5863B7CF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFC0038F0C78B1E3D7DFFDE6003FFFFFFFFFFFFFFF81FF0000FFFFFFFFF -FFFFFFFFF809DEDDF8E7CFBEF8000F0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFC0078D9EDFFF7779EFBF3A007FFFFFFFFFFFFFFF83FFF8 -0FFFFFFFFFFFFFFFFC001F7DFBFFDF3B5FBFFFE801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFE001CF0E38F1E6C78E78E1C03FFFFFFFFFFFFFFF81FF8000FFFFFFFFF -FFFFFFFFF001F3C78FFDF1F5AC3807800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFC0078F5E78FBCF0E3DF5E7807FFFFFFFFFFFFFFE87FFF8 -0FFFFFFFFFFFFFFFFC011E7CE3CFCF3E79E7AFB803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFE00347FA58F1B3969E38E1C00FFFFFFFFFFFFFFF81FFC000FFFFFFFFF -FFFFFFFFF001E3C3CE3C59E38F1E30801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFC0058F1E7C79870F35F9E3003FFFFFFFFFFFFFFF07FFF8 -0FFFFFFFFFFFFFFFF8031D3CE3EF9E3E79E3CF8803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF00438FB869EFF6BF6EDBB6007FFFFFFFFFFFFFF81FFE000FFFFFFFFF -FFFFFFFFF000F1678F9C78F38F1E70803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFE006FFBEFDEDDF8F39F9EB803FFFFFFFFFFFFFFF83FFF8 -0FFFFFFFFFFFFFFFF801A7DF7FFFB7BF7FB7EFB007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF00C38F1871E5C79F38F9E1007FFFFFFFFFFFFFF01FFF001FFFFFFFFF -FFFFFFFFE0077875F7FFEE7BEFFE78803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFE008B9E3AFBE7EF9EEDDF5403FFFFFFFFFFFFFFF87FFF8 -07FFFFFFFFFFFFFFF801F2C73FFAFBEBDFEFFFB00BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF8003871C69F7C78F1878E3807FFFFFFFFFFFFFF81FFF001FFFFFFFFF -FFFFFFFFE00F0E3CF8E79F1CB0F38E003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF008F8C3C79E7CF1E79F38F01FFFFFFFFFFFFFFF83FFF8 -0FFFFFFFFFFFFFFFF801F3C73C78F9E74F3CF8D00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF8000FBC53D76F7CD1AFBE1C03FFFFFFFFFFFFFF80FFFC00FFFFFFFFF -FFFFFFFFE00F8E3CF8C3C71CF8A3CF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF802FDF3EFDF3CF8E79E7CF01FFFFFFFFFFFFFFF03FFF8 -0FFFFFFFFFFFFFFFF005B9CF9E7CBBE3CFFE7CC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF8028B0E7969F7C71CDDE3AC01FFFFFFFFFFFFFF81FFFE00FFFFFFFFF -FFFFFFFFC021E3DEFAF7CD5EF9E3CE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0317BEFEFBDFEEFFAF5EF01FFFFFFFFFFFFFFF83FFF8 -0FFFFFFFFFFFFFFFF00E9E7DFFB6EFFBFFFFFE803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFC00CF8E78E1E7571C78E1E201FFFFFFFFFFFFFF80FFFF00FFFFFFFFF -FFFFFFFFC030F3C79E3D75F7EFFF7800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC038F1E38F9CF9F38F9E79807FFFFFFFFFFFFFF87FFF8 -0FFFFFFFFFFFFFFFC00F1E7DE3C79E3C7DD5CF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFC010FBE3CF1E7CF1E79E1A500FFFFFFFFFFFFFF81FFFF00FFFFFFFFF -FFFFFFFFC078EBC3CF18F9F30F3C70017FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFA01DFBE7CF9EFDE39F9E38817FFFFFFFFFFFFFE87FFF8 -0FFFFFFFFFFFFFFFE007DE7CE3D7973E79E3CF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFE0030F3861E7EB9F2FDB921007FFFFFFFFFFFFE81FFFF80FFFFFFFFF -FFFFFFFF803EB3C34F3C71F38F9E7003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007BFFFFFBFDFFBDEEF69C03FFFFFFFFFFFFFF83FFF8 -0FFFFFFFFFFFFFFFC02AF3C7FCFD7FFEFFEBEC007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF0038F383163C78F38F1E18003FFFFFFFFFFFFF81FFFF80FFFFFFFFF -FFFFFFFF818F1C3CD0FF1FFF5FFFE001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0079E3EF9E7DF2EFB73DF803FFFFFFFFFFFFFF83FFF8 -0FFFFFFFFFFFFFFF8039F7473E78FBA3FF3F78007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF0034FB431E7CFDF38F9E38003FFFFFFFFFFFFF81FFFE81FFFFFFFFF -FFFFFFFF80CF1E34F2E7871CF1E7C007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0078E3C78F3CF1C79E5CB001FFFFFFFFFFFFFF03FFF8 -0FFFFFFFFFFFFFFF8037F3C73C7871E38F3CF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF800B8E78D377FF7F6F953C001FFFFFFFFFFFFF80FFFF80FFFFFFFFF -FFFFFFFF015F0F3CF8E78B0C79E38007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001BEBFFFF7DF8E79F3CF801FFFFFFFFFFFFFF83FFF8 -0FFFFFFFFFFFFFFF801F7FFDDEBFFBE3E7BD7803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF800D0E7871A79F1CF9E1C7001FFFFFFFFFFFFF01FFFF80FFFFFFFFF -FFFFFFFC0079E3DFFDBFE1BEFBFBC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000F3EFAFBCF9E71FBFFDC00FFFFFFFFFFFFFF03FFF8 -1FFFFFFFFFFFFFFF800F3E79E3C7BD3E7F77E001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC04F8638F1C7CF1C70E1E7800FFFFFFFFFFFFF81FFFF80FFFFFFFFF -FFFFFFFC0030A3C78F3871E30FBF400FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800F3C7879471A38F8E7AE00FFFFFFFFFFFFFF83FFF8 -0FFFFFFFFFFFFFFF001F3D38E2C78E3E71E7C007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC034F74C57FFFB9E7BF367800FFFFFFFFFFFFF81FFFF80FFFFFFFFF -FFFFFFFC0078F3C5CF3C69E38F3E001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800F9E7DF9CBDE38F1F79E00FFFFFFFFFFFFFF03FFF8 -1FFFFFFFFFFFFFFE007FFFF9E1C7DE1E79F7C007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFC018F3871E7C74F78FBDB66007FFFFFFFFFFFF80FFFF81FFFFFFFFF -FFFFFFFC031E7AEEE3FC7AF38F9E003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFD8003E3DFFFFFFFDEBFFFFFC07FFFFFFFFFFFFF83FFF8 -1FFFFFFFFFFFFFFE007BF7C6BCE8EB6BFDBF400FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE038E3C71E3C79E3869C387807FFFFFFFFFFFF01FFFF81FFFFFFFFF -FFFFFFF803CF1E7C71671FBAFDFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000E3EFDF78F3E79E6FF3807FFFFFFFFFFFFF83FFF8 -1FFFFFFFFFFFFFFE0039E3873E78FBE5875E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE00C5BC7172C7DF38F9E187803FFFFFFFFFFFF81FFFF80FFFFFFFFF -FFFFFFF805CF3E7CF0E78F1CFBE3007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC001F1CFFE7DF8E79E3FF3C03FFFFFFFFFFFFF83FFF8 -0FFFFFFFFFFFFFFE00FDFFC7BEF8F9678F3C001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF0070E59F1F6F77F79FF2FA813FFFFFFFFFFFF81FFFF81FFFFFFFFF -FFFFFFF001B19BFFFDE7CF1C79E200FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007BEFFFFFFB7FFFF3FF9E01FFFFFFFFFFFFF83FFF8 -1FFFFFFFFFFFFFFC03DF7FF9EEFB7FF6FFFE002FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF00F0C7061C78F1EE8E3E78C01FFFFFFFFFFFF80FFFF81FFFFFFFFF -FFFFFFE018F0E3CB9F38BBEC5FFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0073E7AF9CE9F3DFBF7BF301FFFFFFFFFFFFF83FFF8 -1FFFFFFFFFFFFFFC039F1F79E38F8E1EE9C6003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF802AC78E0E7CF1C7961A38605FFFFFFFFFFFF01FFFF80FFFFFFFFF -FFFFFFE01C50E3668F38F1E70F1C01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00DBEFCF9C71F39F9E79E381FFFFFFFFFFFFF83FFF8 -1FFFFFFFFFFFFFF8075E1F7D63C79E3A79C2007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF800F30E0C757FB778EBC5CE01FFFFFFFFFFFF81FFFF81FFFFFFFFF -FFFFFFC02EB0B2EB8F3CF9F78E3C01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003AFFFFDD7DFBD79E7BF380FFFFFFFFFFFFF87FFF8 -1FFFFFFFFFFFFFF009BFFFFBFFDFBEBFFDF6007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF800F1851E5971E38F3E307900FFFFFFFFFFFF01FFFF81FFFFFFFFF -FFFFFF00669F287FFBFFF7D6FF9003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001E3EFDE7DBBEF9EBFFFD40FFFFFFFFFFFFF83FFF8 -1FFFFFFFFFFFFFF00871E587BE70FBE7CBFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF800D3C7163870C38F1E187800FFFFFFFFFFFF81FFFF81FFFFFFFFF -FFFFFF80678D1C3CF0E31E1CFBE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800E3CF9E70F3E74E1CF3F007FFFFFFFFFFFF83FFF8 -1FFFFFFFFFFFFFF00879E7C73C78F1E3CF3C00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFC00FDBDDBF451F3AFBE18FD807FFFFFFFFFFF01FFFF81FFFFFFFFF -FFFFFF00674F3C3CF1E79B1CFBE00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800E1EF9F7CF9EF9E3C79C007FFFFFFFFFFFF83FFF8 -1FFFFFFFFFFFFFE00FBFF7DFBE7AFBD78F3801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFC011E79F1430A18EFA347FD003FFFFFFFFFFF81FFFF80FFFFFFFFF -FFFFFF0039E3C7FBDEEF9F5EE9C007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC003EFAFFF7FFFFFFD7FFF007FFFFFFFFFFFF83FFF8 -0FFFFFFFFFFFFFE0039F7E79FF6FFEDBF7E001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFE000C78E1C78F0C79E3C58E001FFFFFFFFFFF81FFFF80FFFFFFFFF -FFFFFE021C71E2C74F38E9F7FF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003C78F9CFDF3DF3A7DFFC03FFFFFFFFFFFF83FFF8 -1FFFFFFFFFFFFFE007DF1E7DE3EF9E3C79C001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFE00377FD1A78B1EF8E1E78F001FFFFFFFFFFF01FFFF80FFFFFFFFF -FFFFFC031CF0F3C78F38F9E79E001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE001EF9F1471F3CF1E73E3C01FFFFFFFFFFFF83FFF8 -1FFFFFFFFFFFFFC06BFF7E7DE3EF9E3E7BC007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFE00739F1E7869F36F3772ED400FFFFFFFFFFF81FFFF80FFFFFFFFF -FFFFF801F6FFFBEF6FBCFFF7CF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00377FFDFBDBADFBEBDFBE00FFFFFFFFFFFF87FFF8 -1FFFFFFFFFFFFF8030FBF7DFBBBFDFFEFFC007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFE00E3975E3C51E38E1E58FBE00FFFFFFFFFFF80FFFF81FFFFFFFFF -FFFFF801E79F3C78F3E7DBBFFD007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0063EF9E79DFEFBFFFFEFF00FFFFFFFFFFFF87FFF8 -1FFFFFFFFFFFFF807853F7873CFBF3AF87000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF003B9F171C78F78F1C7CE9E00FFFFFFFFFFF01FFFF81FFFFFFFFF -FFFFF001E79F3C78F1C79E9CF8007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0023C79E78F3E79E7CF3EB807FFFFFFFFFFF83FFF8 -0FFFFFFFFFFFFF807DF9FFCF3EFCF9E78F000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF804EFDB57775EFEFCB37F9B007FFFFFFFFFF81FFFF80FFFFFFFFF -FFFFE00F7FEFFF7CF9E79F1CF000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FFFFF77FFFF9F74F3EF807FFFFFFFFFFF83FFF8 -1FFFFFFFFFFFFE01F7FFFFDFFFFFEFEFCF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF000EF9E1A71C1EF8C385CD9807FFFFFFFFFF81FFFF81FFFFFFFFF -FFFFE00739F1FFDEBFA6DFFFF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801EF0FFDFDF7F7BEFEFFFE07FFFFFFFFFFF83FFF8 -1FFFFFFFFFFFFF01C79F7EFCE7FFFBBFFB001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFC006E9F1C78E1CF9E1C7863803FFFFFFFFFF00FFFF81FFFFFFFFF -FFFFC01F3CF0F3EF8F3979E70C01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01E78F3CF1F39D3E53E5CF03FFFFFFFFFFF83FFF8 -1FFFFFFFFFFFFE01E79F3E79E34FBE3CF9001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFC003FDF5E75F0EF8E1E70F1C03FFFFFFFFFF81FFFF81FFFFFFFFF -FFFFC05ABC79D7C7CF2CE9E79401FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00C78FBCF1FB9E3E71F3E703FFFFFFFFFFF83FFF8 -1FFFFFFFFFFFFE00FFFFFEFDF3EF9E3FF8003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFC003871E3069F7CF7E7BF7FC01FFFFFFFFFF80FFFF80FFFFFFFFF -FFFF00FBABFFFBFFEFF5FFF78801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003BEBBE7FFDFFF679FFEB83FFFFFFFFFFF83FFF8 -1FFFFFFFFFFFFE0278FBE7D77FFDFFFFFC007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFE003CF1E7868E38F1E38BBE600FFFFFFFFFF81FFFF81FFFFFFFFF -FFFE00D9E71E3C7DF3EFBF7AE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003CF9E7CE2CFBE38F7CFE81FFFFFFFFFFF83FFF8 -1FFFFFFFFFFFFC0E7CF1E7873EF8F3ED8C00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFE00BAFDFFC79F78BBE78F9E500FFFFFFFFFF81FFFF00FFFFFFFFF -FFFE00F0E7CF1C7CF3679FBCF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003CFBE75F3CF9E1CF3E78C0FFFFFFFFFFF83FFF8 -1FFFFFFFFFFFFC0B7FFFF7DF3EBBFBE7CC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFE00CF9E5E77F7EA7E3BEFDFD007FFFFFFFFD81FFFF81FFFFFFFFF -FFFC039EFDF59FFFFBFF9FFCE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801EBFB9EFBEFBF7FF3EBE807FFFFFFFFFF83FFF8 -1FFFFFFFFFFFF803EF7F7EF7EFFFFF7FF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFF00EF9E3A78F1CF1E3C78E3C803FFFFFFFFF01FFFF80FFFFFFFFF -FFFC0E8B3DF1E7CB9F7DFEFE800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80078F3871C7BFBE7AFFFB807FFFFFFFFFF83FFF8 -1FFFFFFFFFFFF801CF9F1A79E3AF9D3EF803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFF003D9E0E7CF1C71E1C78E1CE03FFFFFFFFF81FFFF83FFFFFFFFF -FFF80F8F1CF1D3CF4F3DF3E6001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80078BBCF1E79E3E71D3CF803FFFFFFFFFF83FFF8 -1FFFFFFFFFFFE003F7DF1E7CE3CBBE3EF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFF802C698D0F6EECBF3F7979CD03FFFFFFFFF00FFFF81FFFFFFFFF -FFF017F7EFFDFFEF1FBEF9E3001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00BCFFDF5FB8FBE51F3CE803FFFFFFFFFF83FFF8 -1FFFFFFFFFFFC01FFBFBEFF5FBFFFF7EF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFF803862E7871E70F9CBDF9EB001FFFFFFFFF01FFFF81FFFFFFFFF -FFF038F3E71E5EFFF7DFFFD1003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01CFBF7DF6ED7DFF6DFEDC01FFFFFFFFFF83FFF8 -1FFFFFFFFFFFC01C7CF3E38F3CD8F3EFC007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFC01871A3861E38E3E787BE7000FFFFFFFFF81FFFF80FFFFFFFFF -FFC03CF9EF9F3C7CF9CBDF78003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01CF3C6DF3C71E3DB3A74F01FFFFFFFFFF83FFF8 -1FFFFFFFFFFFC01E7CF9E7C73CF8F3E78007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFC0003007D7FF38F9E38F9F70007FFFFFFFF01FFFF81FFFFFFFFF -FFC07F6FE7CF7E75E9CF9E1C003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00EF9E7DF3CF9E75F3EF8F01FFFFFFFFFF83FFF8 -1FFFFFFFFFFF801FBBFFFFEFBEFF7BEF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFE0071E1878F1CF3E3E7B6BF8007FFFFFFFF01FFFF81FFFFFFFFF -FF816FBFFEF3F5BFF86FFFBC007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE807FFDF69FFBFFFDFFFFCF80FFFFFFFFFF83FFF8 -1FFFFFFFFFFF00C2CF8F5AF9AFEFFF7F801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFB0030E187961C79E3AF9E38F003FFFFFFFF01FFFF81FFFFFFFFF -FF01CF9F3861F38F9E39F3E4007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8030F30F1FFDF3E73E5FF9C03FFFFFFFFF83FFFC -1FFFFFFFFFFE00E7A79E3C79C34F9E3C001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF001950ED9FFEFBA3CF9E1CF003FFFFFFFF01FFFF81FFFFFFFFF -FF03FFFFBEF163CF0F3CA3E2007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8018FBCF0F31F3E71F3CF1C03FFFFFFFFF87FFF8 -1FFFFFFFFFFE00FFFEFFFEFDE36F5E3E003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF00870E7CF3F62FBBEEDF9CB001FFFFFFFF01FFFF81FFFFFFFFF -FC00FFF7EF1DF8EF4F1BFBA001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801DFEFDDF7FFBE7BEFCE9E01FFFFFFFFF83FFF8 -1FFFFFFFFFFC003EFDEBBFFBFBFBB7BE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF808E1E7071E70B3E78F1A30C01FFFFFFFF81FFFF01FFFFFFFFF -F80678F3E7977979F3C7FEF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00F3E58F3CFBDF9FFD7FEB81FFFFFFFFF83FFF8 -1FFFFFFFFFF8031C7871E7CF3CF9D3E2007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF808F1C78F1F70D1E78F9E70F00FFFFFFFF01FFFF81FFFFFFFFF -F8023EF3E79E1C7CF1C79E1803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00FBE79F3CF9E38E7C74F301FFFFFFFFF83FFF8 -1FFFFFFFFFF8013EFCFBFF8FBEF8F3E200FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF8079C3A69EBF8FAFF8FBC74F00FFFFFFFF01FFFF83FFFFFFFFF -F007FFFEF28FF85C71D79F3003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00FBF7DD7EFFF38F7E78F3C0FFFFFFFFF83FFF8 -1FFFFFFFFFF800DFFFFFEFFFFEFFEFE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF8071C9C79E9CF0E3EF2E7DD3807FFFFFFF01FFFF81FFFFFFFFF -E003CF9B38C146CE1D63FB8007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC010F7D77BFAEFD47FFFEFBC0FFFFFFFFF83FFF8 -1FFFFFFFFFF81CE3FF9E7C7DE7CFBEB001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF803563438F1C71E3871C38F1803FFFFFFF00FFFF83FFFFFFFFF -E003EF1E39F1E3C70EB8E3E007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE010F38F1E71E1D71E3CF9F007FFFFFFFF83FFF8 -1FFFFFFFFFF01CF7CF9E7E79C3CF3E3001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFC01197EFDF7DB363EF1E1CF0C03FFFFFFF01FFFF83FFFFFFFFF -C03BFFDEBDE9F7C20F28F1C00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000FBDD1F39F3E73F3CF8E007FFFFFFFF83FFFC -1FFFFFFFFFE00FBBEFDF7FEDF3FFAEF000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFC00E1C7871EB8ED4F8FFDFF7801FFFFFFF01FFFF81FFFFFFFFF -803C7EFBE71F57E3CFB07DC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFD6DF7FFFFF2D72EF5F003FFFFFFFF83FFF8 -1FFFFFFFFFC00F3E78F3EF8D3EFDF7E003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFE0061C7871EE8E3C68D9671D000FFFFFFF01FFFF83FFFFFFFFF -001C7AF7C78F3478E1CF3E001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007BE78F3CF3E39F3CBCF3C03FFFFFFFF83FFF8 -1FFFFFFFFF804FBE7DF1C78F3CF9F3C003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF0001658B9770F3C7879E39F000FFFFFFF01FFFF01FFFFFFFFE -019F7CFFE70F1C7CF2C69E001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8073EFDF3CF9EB8F3C70F3E01FFFFFFFF83FFF8 -1FFFFFFFFF0077BEFEFFE7DF3AF9E3C007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF001E2C69F3EEBAFBFFBCBDEA00FFFFFFF01FFFF83FFFFFFFFC -01C74FBFB9E36FFEEB43AE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF802FEF6DACFBE7DFBC7AF9E01FFFFFFFF83FFFC -1FFFFFFFFF0068E7CB9E7DFDDF5FFDC007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF001A1C79F1CF1E3CF9E35F3E00FFFFFFF01FFFF83FFFFFFFFC -00C3CF8E39F1C7C71F28F1007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01E39F1E73E7E53EFDF7FE01FFFFFFFF83FFF4 -1FFFFFFFFE007CE38F9E3C79C3CF3E0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFE800E3C39E1CF9E34F9A38F1C007FFFFFF01FFFF83FFFFFFFFC -01F3CF8F38F1E74F1D39F1007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00F3CE1E38E3E73C38B1E3C0FFFFFFFF83FFF8 -1FFFFFFFFE007DF7EFDF7FFDCFDFAE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF8061E78BBDEDBABFFFF7DF1E003FFFFFF01FFFF81FFFFFFFF8 -0F5C6BC7EFBFF7C7DF30F000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FFDF9F7FF1E7BE3CF1E7C0FFFFFFFF83FFF8 -1FFFFFFFFC0357BFFFFBF7FEF5DFFA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF8060E78F1E78F3E78FB66DD6801FFFFFF01FFFF83FFFFFFFF0 -0F3878E3E79E3F795B8FB800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE013AF173CFFF7F5F1E5D7BC07FFFFFFF83FFF8 -1FFFFFFFF803CF3C78E9E79F3CFAF6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF8021E38F9C38E1EF8F3E7163801FFFFFF01FFFF83FFFFFFFF0 -0F3E3DF3E3973C7DF2CF1C00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003E79F3CF3E59F3CF0F3E207FFFFFFF83FFF8 -1FFFFFFFF807C7BFFC7DE7CF3CFAF0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF801020BFDE78FBF5EFBF7DF3C01FFFFFF01FFFF83FFFFFFFE0 -2FD5F7FDEBFF1D7DFBCB9C00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003C79F3CF9E74F3CF8F3E203FFFFFFF83FFF8 -1FFFFFFFF00D81FFFFFBF7FF3EF5FE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFC01C1858F1CF3E3CFBFBFDFBE01FFFFFF01FFFF83FFFFFFFE0 -F3C3FFBF71B18FEFDDF6C001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00B3DFBE6BFAFF7BDBF71EE01FFFFFFF83FFF8 -1FFFFFFFF00C00E74F9E3879C39F3E003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFE00E3879D1CF9E3479E3CF3E300FFFFFF01FFFF83FFFFFFFC0 -BBF3EFDE38F1E7479F386001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00C30F1E39E3E63C7CF0E7401FFFFFFF83FFF8 -1FFFFFFFE01C00F5C79E7CF9E7CF9C007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFE001547FF0AD9A3CF17B5F1E300FFFFFE01FFFF83FFFFFFFC0 -EFE9EDF7FCF6E7CF5F78E003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0073DF1F31E3C73E7CF1C3C01FFFFFFF87FFFC -1FFFFFFFC014077FF5EFBFFDEFDF3C007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFE0016717BC6AEFCF1DFFDFDFE00FFFFFF01FFFF83FFFFFFF80 -1E3CFDF3CF1F7F7DFFF9A003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803DFFF699FBEBBF7CF2F7C00FFFFFFF83FFF8 -1FFFFFFFC04007AE79B1EFDF7FFEFC007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFE001E38B1A70F3460F1E7177C007FFFFF01FFFF83FFFFFFF81 -9F3CF9F3E71F7C7DFBCF4007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01EF0F3CDBE79F7EE9FFE500FFFFFFF87FFFC -1FFFFFFF8070073AF9F3E7C73CF3E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFE003E70F3E78F3E38E1E71D1C007FFFFF01FFFF83FFFFFFE01 -DFFF7DF3E71F3C78F3CF0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00E79E3CF9E79F3C71F1C3007FFFFFF87FFFC -1FFFFFFF00701BFF7DEBE7DFFC7BF000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF0063869F3EFABBE9FEFF9F38007FFFFF01FFFF03FFFFFFE01 -F3C7DFBEFFEFF7EFF3EF8007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0077FF16FFF79F3C79F3C1807FFFFFF87FFFC -1FFFFFFF00187CC7AF3F7AFFBF7FF000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF00E1871E1CF3C3C71E38F3E7007FFFFF01FFFF83FFFFFFE01 -F1C3CF9F3DF1A7AF1E7DC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0039F1E3DE2FF7EFDD7F41807FFFFFF83FFF8 -1FFFFFFE003039E7C79E38F9EF8FB800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF0041879614F1E3878E3CF1C2803FFFFF01FFFF83FFFFFFE05 -FAF7CEBB39F1E78F1F38400FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0038E1E39C3EF3C7CF1F00C07FFFFFF83FFF8 -1FFFFFFC00F07FE7CF9E7CF9CF4E9803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF803025430F55E1EF063CF1E3C03FFFFF01FFFF83FFFFFFC07 -FFFFF7BFDDB1B3CF5F79000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003DF1A33F3E71F74F0F00003FFFFFF87FFF8 -1FFFFFFC01C0FFB6FDFDF7FFEFAFB801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF801C6861E59E3CF083BFD77E801FFFFF01FFFF83FFFFFFC07 -9F3E78FB8F1E7DDBFFEC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00EF9FF9FF6FFFF7CFADE0401FFFFFF83FFF8 -1FFFFFFC00E3CF3EF9E7A78F7EFFC003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFF801E7861E70E3C78E0E70D3C601FFFFF01FFFF87FFFFFF80E -FF7A79FBEF9E3C79F7CB001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00471E1CEBE78F7CF0F3E0000FFFFFF83FFF8 -1FFFFFF80183EF9AFEE3E7973CFBE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFC00B7C53559F1CD8E3E30F3C700FFFFF01FFFF83FFFFFF80F -FBDF7FFFFFFF1C79F3EF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00679F3CFBC79F3C70F3C0002FFFFFF83FFF8 -1FFFFFE00300FAFFFBFBF79D3CFBC007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFC001879E5DB9E76C3A2F4D2E100FFFFF01FFFF07FFFFFF819 -F3E78FAFFBD5A7D4FFEE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001D7F5DFBE3FFFE7DF1E0000FFFFFF83FFF8 -1FFFFFE0030039C78F9E7EFBC75FE00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFE003879E38E2C3871E39F3C6C00FFFFF01FFFF83FFFFFF80C -F1D7CF9F3961C38F1D70007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8019F1C6BE3FF3F7EFDC70000FFFFFF83FFF8 -1FFFFFE003007DE78F9E78D9C78F000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFB003858B18F3E3971A39F1C3800FFFFE01FFFF83FFFFFF01F -FFFFFE9FF8F1E7871E78007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8038E3E39E3CB3C3CF2E386007FFFFF83FFF8 -1FFFFFE00205FFF5EFFEFEFDE38F000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFE01870D6DC13FF4A9E2DF7C7C007FFFF01FFFF03FFFFFE007 -BFFFFFD3FF39D3DF1F3800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01775D78E1CF3EBCF3E2C2007FFFFF03FFFC -1FFFFFC00007CDBE7BDF7FF77B5DC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF01C58E1C70E3CD8D1AFBE3CD007FFFE01FFFF03FFFFFE00F -1D3CF9D3EF1E7871D3C800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00F9F78FBE7DFFEF7BFF41007FFFFF83FFFC -1FFFFFC000078F3EF9F3F78F34F1C01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF00E78F1E30D3C7061C71F397007FFFF01FFFF83FFFFFC00F -DF7E7CF3E71E7C79F1C001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0070E7CE3C78E7831E3E01007FFFFF83FFF8 -1FFFFFC008070F3EFAF3D78F3CF8C03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF804CED7FD873C38F1E71F287007FFFF01FFFF03FFFFFC01F -FFFFDA7D7D8F6D71F1E801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007DE3CFB63DA3C70F1C01007FFFFF83FFF8 -1FFFFFC00E1417F7FFDFFF97FEFD803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF8030B9E7CF3C30F0E356D800007FFFE01FFFF83FFFFFC039 -73D7DF3C3961F7DD5E7001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF008E1E7EF7FE7FFBB7FFC1803FFFFF83FFFC -1FFFFFC00C3819E78FBE78FBC79F003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF801879E1CB3C38D1C38E3410803FFFF01FFFF03FFFFF803D -77F7DF1D39F1E78F163003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF009E1C39E3CF2C7CF0E7C0003FFFFF03FFF8 -1FFFFF8004183DE38F9C78E9CF0E003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFC00EFB72CF9E2873E19F1C0CE03FFFF01FFFF83FFFFFC00E -17FFFF4FDD61E7DF1F3003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF808E1E6BE3E73C7CF1E3C2003FFFFF87FFF8 -1FFFFE8018701FBFEFBFBE7FFFEF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFC0038F1C72EFCA1EEECF8414003FFFE01FFFF83FFFFF802E -1E7DF1F3FB1C3DFBEE8007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80D3FFBFFBFFBF1CF2E383003FFFFF83FFF8 -1FFFFF8018400F3CF9E3EF8FEFF000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFC0078E1671C3C70E3CB1E00B003FFFF01FFFF83FFFFF806E -167EF8F3CE1E7C79E3C007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4078E7CE3E79D5CD5F00C1801FFFFF83FFF8 -1FFFFF8018402F3E79E1E78F7DF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFC0008F1AF1F3C1061C70C007001FFFF01FFFE83FFFFF803C -00FFFEFBEF9E3C79F38017FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC069F3CF3E79E3C71F0001E01FFFFF83FFF8 -1FFFFF0008703D97FEFFCFD7FEF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFE00073C75D3EE202BE77F003000FFFF01FFFF83FFFFF803C -00FFCF1C79E7DFF5B0C00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC039D76FBFBDD3C39F0021E00FFFFF83FFF8 -1FFFFF00002035C78F9E7AFDFFF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFE00071E18F1E30B0418F1401C02FFFF01FFFF83FFFFF003C -00E74F3C39F3E75F1C201FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00E3C73FBCD797F7BC040F007FFFF03FFF8 -1FFFFE00001079C38F5C38FBCF0A01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFE00079E1CF3C7061E31F3C00F00FFFF01FFFF07FFFFF8034 -107FEF3E38F1E7DF1E001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00E1C31E3CF3C78F3C1C2200FFFFF83FFF8 -1FFFFE0000007CE38F9E7CF9C7C803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF000BBBECB27BEB0A3CF3C00D007FFE01FFFF07FFFFF00D0 -003FF5FFFDF5BFEFDB001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007165BEFC61C3CF140821007FFFF83FFF8 -1FFFFE007843FF7EFBF7DBBFBBB803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF8038E5E31C3CF0C3CF5D203F007FFF01FFFF07FFFFF00A0 -007CF2F3AF1E7DBFF6C03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801A38FBF7B37DEFFC0010017FFFE83FFF8 -1FFFFC00F0E7DF3CF8E1C78EBCD007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFC029E3E71E3CB0E3C7142830007FFF01FFFF07FFFFF00E0 -103CF9F3CE1E5CF9E3803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801E3CF3E79C7C71F20018007FFFF83FFF8 -1FFFFC00F8F7DEBEFDF3E79E5CF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFC00FFFFF8F3E78F1CD183010807FFF01FFFF03FFFFF0030 -206EF7BBE58E7DFFF5C03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00E3CD3639E3C70F0001E007FFFE83FFF8 -1FFFFC00BC5EFFFFFFBFEFEF7CF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF40072E78EBCB8B3CE7F0003B003FFE01FFFF07FFFFF0038 -7087DF3E79C3CFFFFE807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00687FDDD97F67570001A007FFFF83FFF8 -0FFFFC01CE7C79E7FFBE38F9FF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFE00F9E5C73C7CE9E38D0000F003FFF01FFFF03FFFFF0038 -70C7CF1E39E1C7DF0F007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC001C72E3CF2C79F7C0027007FFFF83FFF8 -3FFFFC01BE7FF5E78F3E78F1CF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFE00B9F7DF3C38F1C38E0000F003FFE01FFFF07FFFFF8050 -387FB59D38F1E7DF1F007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE001C79E34EBC58F3C1C60003FFFF03FFFC -1FFFFC00FBFBFFEFEFEEB8FBDF803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFE000E3FFFDA7EDF62CE0400F003FFF01FFFF07FFFFF01E0 -1E77F1E7CFB67FBFEF00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE005E7BE3EF7E6CFFC1463007FFFF03FFFC -1FFFFC00FBCFDE7EFFFEDFBF7F803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFE00063C71E38F1F3EF00006B003FFF01FFFF07FFFFF81E0 -3F7CB1F3CF1E7CF9F501FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00A7CFBCFDF7F75B81E55003FFFF83FFF8 -0FFFFC00B9E7CF3CF9E3C79F7CC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF000E1E71E3CF8E3C6000070803FFF01FFFF07FFFFF80E0 -3F7CFAF3E79F7C79E700FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80E38F3E71E7C71F0075E003FFFF87FFFC -1FFFFC00FFFF5F7AF9F3E79F78C07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF000B629DFEEE87BEE000070803FFD01FFFF07FFFFF8038 -37FFDFFFBDFF6EB9B203FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80A7DFBE79D7EF0F0079E003FFFF83FFF8 -1FFFFE001E7CFDEFFEBEF9DBFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF8001D38F3E78F36380001DA001FFF03FFFF03FFFFF8038 -F7EEDF7C71F1E79E1803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01C53DBDF7FF4FF80F9C007FFFF83FFFC -1FFFFA000F3C79C78F3E38FACF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF4001C78E3E3873C3801038F003FFF01FFFF07FFFFF003C -7FFFDFFF39E1E7CF1A03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0147BE38E1C79FF83DE0007FFFF83FFF8 -1FFFFE000F7F77E78FBE58E9CB00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFC00165CFBEF8FBE3800028F001FFF01FFFF07FFFFF807F -3FEFFF7FBDF1B7CF1C03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01C73E1C73C7CF1834E0007FFFF83FFFC -1FFFFF00FFEFFFFEFF7FFDFBEF00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFC0023673F7EF2FFA80001D7003FFF01FFFF07FFFFF806F -1EFFFDF7CE3C7F61B807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE006D37EFF6FFDFB03DA0007FFFF03FFF8 -1FFFFF00BBE79F3CFBE3879E7E00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFE0013C60C3CF1D3C00802F1001FFE01FFFF07FFFFF803F -FFFDF5F3CF1E3CE1E007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8078D3C79A78EBF0DFB001FFFFF87FFF8 -1FFFFF007FEFDF3AFBE3C70E7C01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFE0003E3162CEAF3C41E38F1003FFF01FFFF07FFFFF802F -FFFFFFFFFEFEBDF9F00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC038F3C79E3C71F1C79003FFFFF87FFF8 -0FFFFF803F7FBF2FFFB3FFFF3C03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF000019C1DB7FBFF00B1FF8001FFF01FFFF07FFFFF8039 -F7FFDFFFFFEF6FFDF00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00CEFE7FEFDF9F1EF8003FFFFF87FFF8 -2FFFFFC00F7FF1EFFFFFFAF7F003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF000038F7C74F3E38CB87D6003FFE01FFFF07FFFFFC03F -FFFFDF3E79E1C7DF101FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0071E3EE7D7FFFEFDC007FFFFF07FFF8 -0FFFFFC0077DF9E78F3CB8F9F807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF800018E1C3CF2E38E3C7CF003FFF03FFFF07FFFFFC03F -FFFFFFFFF9F3A78F101FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0035A3CB3C7DF3C7CC007FFFFF83FFF8 -1FFFFFC017FEFFFFAFBDFBFBE00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000002EEFFF7F7FF3C7CC003FFF03FFFF07FFFFFC01F -FFFFF7FFDFBFFFDD001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801BFFEF1C79F7E7CC007FFFFF87FFF8 -1FFFFFC003EFF77CFDEFFF7FC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFE8000061C3CF2FBCF5C7CE0003FFE01FFFF07FFFFFC00F -1FFEFDF3EF1E70E1803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE800A3CFB47DFFFFDF400FFFFFF03FFF8 -1FFFFF8001AF9F38FBE3CF9F801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000070C3478F3C73674F0003FFE03FFFF07FFFFFC00F -FEFFFFD3CF9E78F8C03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00D3C79E7CF1F7CB0007FFFFF83FFFC -0FFFFFC001FFFF7CEBE3CF9F803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000000D78F1DBEFDF7D70003FFF01FFFF07FFFFFC01F -FFFFFFFFFFFE3EF1003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0041EF9E76FDF7C00007FFFFF07FFF8 -07FFFF80006FFDEF3FFDFFFE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00002C34F0F7EFEFDFFC0007FFF01FFFF07FFFFFC01D -F7D79F7C79E7CF9E003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000B5F77FF7FBC00007FFA8007FFF8 -00DFFF80007C7DE78F3E7FF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000E3C78F1E39F74780007FFF01FFFF03FFFFF800F -F7FFCF5C39F3CF9E007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80003863C39F3C0000000000007FFF8 -0002FE0000787DE78F3EFFC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000073C38BBE79F7C78001FFFD03FFFF003FFFF8007 -FFFFFBFFFEFFFF9E007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00028E3879F280000000000003FFF8 -00000800001FFEFFBBBF7F8001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000077FBEFFFF3EE00017FF401FFFF00005FF0007 -3FFDF7F3CFDEFFF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000F3EF9F000000000000007FFF8 -00000000000F6F78FFE7FF0003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF70000003DF1E34F1C7C0001E00003FFFF00000000007 -3FFDF1D7CE3E79F800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000BEFDF6000006000000007FFF8 -00000001C007DF3CFBE7F0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000038F9F3CF1C3C0000000003FFFF00000000003 -BFFFFFFFEFBF3CD000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000C2C00000016003FFFE07FFF8 -0FFF000770007FFFFBF7A0003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000003D6FFFEFBC000000000003FFFF00000000003 -F7CF5FFF7FEFAED801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000003F01FFFEF87FFFC -0FFFC007F8000FFFFFF800007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000079F7E7BE0000000000003FFFF00EC0000401 -F7C7DFFF7BF3C78001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000000000007E03FFFFF87FFF8 -0FFEE01FFE0003FFFFE000017FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000000EF7E38C0000000000003FFFF03FFFC00F00 -FFFFFF5FF7F7EF8003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000000000001FF01FFFFF87FFF8 -1FFFC01FFE00002ABA000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000001FFC7000000000000003FFFF07FFFF00F80 -7FFBFFFDFFFFF7C007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000003FF01FFFFF87FFFC -1FFFE03FFFC000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000003FE1000000000003003FFFF07FFFF81FC0 -1F79FBFFFFFFFD4007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000003FFF00FFFFF07FFFC -1FFFC07FFFF000000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000000000000000000FFE01FFFF07FFFF02FE0 -1EFDFFFFDFBEF80007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF40000007EFFFF82FFFFF87FFF8 -1FFFC07FFFF80000000002FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000000018002FFE03FFFF07FFFF03FE0 -07FFFFFFFFFFFC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000FFFFFF007FFFF07FFF8 -1FFF803FFFFF000000001BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000000000000178007FFE03FFFF03FFFF03FF0 -06CFDFFFEBF7FC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000BBFFFFF807FFFF03FFF8 -0FFF007FFFFFE00000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE8000000000003FC007FFE03FFFF07FFFE01FF8 -0147DFFEFBE7E0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFC07FFD807FFFC -07FE007FFFFFFE00003BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000000003FFC007FFF03FFFF05FFFC01FFC -002FFFFFFFFBC0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0007FFFFFFFC00400007FFF8 -0370003FFFFFFF8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000000003FFFA003FFE03FFFE017FF001FFE -0009FFFFFFFF0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80007FFFFFFFF00000007FFF8 -0000003FFFFFFFC0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000005DFFFFC001FFE03FFFF0000C000FFF -8001FFF7CFBE0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00003FFFFFFFF00000007FFF8 -0000083FFFFFFFC0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0001FFFFFFF8001FFA03FFFE00000000FFF -E001FBFFFFF80003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000C03FFFFFFFF80000007FFF8 -0000183FFFFFFF817001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0001FFFFFFFC000F0003FFFF00000000FFE -F000FFFFFF40000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC003603FFFFFFFFC0000007FFF8 -0000381FFFFFFF81D8007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0003FFFFFFFC00000003FFFF00000000FFF -FC001E3D7F00000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FE03FFFFFFFF80000003FFF8 -00007C0FFFFFFF83FB000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00001FFFFFFF800000003FFFE000000007FF -FF0000007800003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC003FF81FFFFFFFFC0000007FFF8 -00007C0FFFFFFF83FF8007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800001FFFFFFF000000003FFFF000000007FF -FFC00000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00FFF81FFFFFFFF80000007FFFC -00007E07FFFFFF83FFF001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800E01FFFFFFF01C000003FFFE000000803FF -FFA00000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFF81FFFFFFFF80000003FFF8 -00007F03FFFFFF83FFFE00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007F00F3FFFFF014000003FFFE000000E03FF -FFF8000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC003FFFC1FFFFFFFF80000007FFF8 -00007F03FFFFFF07FFFF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800FF80007FFFE07E000003FFFE000001E03FF -FFFE000000017FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800FFFEC1FFFFFFFE06000007FFF8 -00007F81FFFE0107FFFFE01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FF80001FFFE07D000003FFFE000003F03FF -FFFE00000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFF81FFFFFFFE0E00FE07FFF8 -00007FC0FFF80001FFFF7007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FF80000FFFE07F000003FFFF014003F01FF -FFFE00000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FFFF80FFFFFFF81F80FF87FFF8 -0C007FC07FF00003FFFFF807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFFC00007FFE0FF801C03FFFF076003E81FF -FFF0005EF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FF9FE000003FFF03FC1FF87FFF8 -0A007FC01FC00003FFFFFE01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FFFC00001FFC0FF80FE03FFFF07F007F81FF -FF0000FFFE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FF0F8000001FFE03F81FE87FFFC -0E007FE01F000001FFFFFF80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFFC00300FF80FF807E03FFFF07F007F81FF -F80000FFFFC03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FE0F8000000FFC03FC0FF87FFF8 -1A007FF007017F01FFFFFFC07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFFC00FE0FF01FFC0FF03FFFF07F007FC0FF -F80000FFFFE00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA007FC1E00000003F00FFC0FF87FFF8 -0E007FF80003FB80FFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFC01FE07E01FFC07F03FFFE07E007FE0FF -E00000FFFFF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFC1800000001C00FFC07F87FFFC -1E003FFC0007FF800FFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07F8FFC03FF07C01FF807E03FFFE07C00FFE03F -E03C007FFFF803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FF03000001F00003FF807F87FFF8 -0C003FFE0007FE8027FFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07E03FC07FF03803FF807F03FFFE07C007FF03F -E0FF00FFFFFF01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FF0000000FEC0007FF007F07FFF8 -1E041FFF0007FF0000FFFFFF07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FC07F81FFF80003FF803F03FFFE07C00FFF83F -C1FF80FFFFFF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFF0000001FFC000FFF801F07FFF8 -0C0A1FFFC00F4000003FFFFF83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03F807F81FFE0000FFF803F03FFFE078007FF81F -01FF80FFFFFFE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8007FE00000004FE003FFF000807FFF8 -00071FFDE0000000001FFFFFC1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03F00FF800000000FFF803E03FFFE07800FFFC0F -03FE007FFFFFF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801FFE0000000002007FFF000007FFF8 -000D0FFFF00000000007FFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07F00FE000000000FFF801E03FFFE078007FFC0F -03EE001FFFFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFE000000000000FFFF000007FFF8 -000787FFFC0000000003FC3FF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FF01F8000000003FFE001E03FFFE078003FFE07 -00C00007FFFFFA07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFE000000000001FFFE000007FFF8 -000707FFFE0000000000F83FF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FE07F0000000003FFF000003FFFE070007FFF00 -00000001FFFFFF07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE001FFE000200000001FFFE000007FFF8 -000583FFFF0001C00000283FF83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FE07C0000000007FFE000003FFFE000003FFFC0 -000000007FFFFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE001FFC000680000003FFFE000007FFF8 -0003C3FFFF000FE00000083FFC1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE81FE078000018001FFFE100003FFFE000007FFFC0 -000000003FFFFFC1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE001FFC000F80000007FFFE000007FFF8 -0203D1FFFF807FE03D00101FFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FE0F00000FE007FFFE100003FFFE000003FFFE0 -000000000FFFFFE2FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC001FFC003F80DFF80FFFFE000C07FFF8 -0001C1FFFF81FF807F80003FFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FC0C00007FF03FFFFC000003FFFE000003FFFF8 -0007F00007F1FFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE001FFE00FE00B7F80FFFFC000407FFF8 -0000F07FFFE0FE003FC0001FFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FE100001FFF03FFFFC100003FFFE000081FFFFC -003BF80001F0FFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC001FFE00FF0000A81FFFFC000007FFF8 -0000F07FFFE050001FF8005FFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FC000000FDF03FFFF8200003FFFE000041FFFEE -00FFE0000070FFF07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC001FFE00FF0000001FFFFC300007FFF8 -0000783FFFF000003FFC003FFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FE00000000007FFFF8301C03FFFE0000C1FFFFE -02FF00000070FFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC001FFE00FF0000001FFFF8300007FFF8 -0000183FFFF000000FFE003FFF07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FE00000000007FFFF8200E03FFFE0000E1FFFFF -03FC00000000FFFC1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000FFF01FE0000003FFFF8000007FFF0 -00002C1FFFF000000FFE003FFF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FE000C0000007FFFF0601003FFFE0300E0FFFFF -01E000000000FFFC1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000FFF01FE0000003FFFE8001C07FFF8 -02E02C1FFFF000000FFE007FFF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FE00180000007FFFF0A00003FFFE0B0060FFFFF -00000007C000FFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000FFF01FC0000007FFFF0007F07FFF8 -0FF8060FFFF001FE07FF007FFF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FF00380000007FFFF0600003FFFE0000F0FFFFF -80000003E0007FFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000FFF80FC005FC0FFFFC0007E87FFF8 -0FFC0207FFF80FFE17FF007FFE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FF0038000A00FFFFE1C00003FFFE0000707FFFE -80000A01F0007FFA1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0007FF80FC07FF80FFFFC0007F87FFF8 -1FFE0003FFF80FFC07FE00FFFF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FF8028002F80FFFFC1400003FFFE0000303FFFF -80017F03FC007FFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0007FFE07C07FFC1FFFF8000FF07FFF8 -1FF70001FFFC1FA003FE00FFFE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFC03805FF81FFFFC1C00003FFFE0000383FFFF -E00FFF80FC007FFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFE07005F781FFFF8100FF87FFF8 -1FFF8041FFFC0F8003FC07FFFE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00FFC0000FFF017FFF83807807FFFE00003E0FFFF -E02FFE01FE00FFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD0003FFF000051201FFFF0300FF07FFF8 -1FFF8020FFFC040001D00FFFFE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFC0000B4203FFFF8380FE07FFFE00001E0FFFF -E03FE0007F00FFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0001FFF800000003FFFF0201FF87FFF8 -1FFF8020FFFE000000E017FFFC03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFE000040001FFFF0501EE03FFFE07E01F0FFFF -F03F00007E80FFFC07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000FFFC00000003FFFE0601FF87FFF8 -0FFFC0207FFA000002003FFFFC03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFE000000007FFFF0403FE03FFFE0FF80F07FFF -F80800007E01FFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00007FFE00000003FFF81E07FF87FFF8 -1FFFE0107FFF00000000DFFFFC03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC007FF000000007FFFE0403FE07FFFE07F80783FFF -F80000003F01FFFC07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80003FFF00000003FFF83C0FFF07FFF8 -1FFFE0183FFF800FE001FFFFF803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFC00000007FFFE0C07FE07FFFE0FFC1383FFF -F80000403C01FFF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0001FFF80000003FFF8380FFF87FFF8 -0FFFF0001FFF807FF002FFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFC00000007FFFE0803FE07FFFE0FFC01C1FFF -FC0007F01807FFF807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000FFF80000007FFF8381FFF87FFF8 -1FFFF8041FFF81FFF01FFFFFE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFF0000000FFFF8180FFE07FFFE0FFE01A1FFF -FC0017F0000FFFF017FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00003FF8000A007FFF8201FFF07FFF8 -1FFFF8001FFF83FFF01FFFFFC007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFF0003F80FFFF81807FE07FFFE0FFE00E0FFF -FF00FFF0001FFFE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00001FF801FF80FFFF0003FFF87FFF8 -1FFFF4000FFFC3FFC03FFFFFC007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800FFF403FFC0FFFF8300FFE07FFFE0FFF00707FF -FF03FFD0001FFFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000007F807FFC07FFE0003FFF87FFF8 -1FFFFC000FFFC1F4001FFFFF8007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FF80FFF81FFFF0501FFE03FFFE0FFF80307FF -FF03FF00003FFFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800001F007FFC1FFFF000FFFF07FFF8 -1FFFFE000FFF41E0005FFFFF000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC003FFC1FFF81FFFF0701FFE07FFFE0FFFC0183FF -FF81F000007FFF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000B007FF81FFFE0007FFF07FFF8 -1FFFFE0007FFE180001FFFFE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FF80FFF81FFFF0D01FFE07FFFE07FFC0103FF -FFC0A00003FFFF000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000000007F83FFFE001FFFF87FFF8 -1FFFFD0107FFE000000FFFFC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000FF801AF03FFFF0E03FFE03FFFE0FFFE01C3FF -FFC0000003FFFE001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000003FFFE000FFFF07FFF8 -1FFFFF0107FFE000000FFFF8001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007F0000003FFFE0C03FFE07FFFE0FFFE00E1FF -FFE0000003FFFC001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000000000003FFFC001FFFF07FFF8 -1FFFFF0007FFC000FE07FFE0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007E0000007FFFE0C03FFE07FFFE0FFFF00F1FF -FFE0001603FFF8003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000000000003FFFC003FFFF87FFF0 -1FFFFF8007FFE002FD03FFC0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0003F0000007FFFE0C07FFE03FFFE0FFFFC0D0FF -FFF001FF03FFF8003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000000000003FFFC003FFFF87FFF8 -1FFFFF80C3FFE00FFF83FF80007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000E0000007FFFE0807FFE07FFFE0FFFFC0F87F -FFF803FF83FFF0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000000000003FFF8003FFFE87FFF8 -1FFFFF80A3FFF01FFF87FF00007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000FFFFC1807FFE07FFFE0FFFFE0703F -FFF80FFF83FFC0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000002807FFF8003FFFF87FFF8 -1FFFFF80E3FFF03FFF03FC0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000003740FFFFC1807FFE07FFFE0FFFFE07C3F -FFFC1FFE01FF0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000001FFE07FFF0003FFFF87FFF0 -0FFFFF80A3FFF85FF801E00001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000000DFC1FFFFC2807FFE03FFFE0FFFFF03C1F -FFFC17A001FF0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000077FE07FFF0003FFFF07FFF8 -0FFFFF80E1FFF07E0000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000003FFC1FFFF4200FFFE0FFFFE0FFFFF03C1F -FFFE080001FC0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000FFFE0FFFF00007FFF07FFF0 -1FFFFE00F1FFF8000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000005FFC1FFFF8700BFFE07FFFE0FFFFF03C1F -FFFE000000700000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000FFFE0FFFF000002FC07FFF0 -0FFFF80071FFF8400000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800007FF81FFFF0700FFFE07FFFE0FFFFF01E1F -FFFE000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0001FFFE0FFFF00000000015F80 -0FFF8000F0FFFC00000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000000003FFFF8F00FFFE07FFFE0FFFFF80E1F -FFFE000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000000B40FFFE00000000000000 -0000000071FFFC00000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000000003FFFE07007FFE07FFFE0FFFFF80E1F -FFFE0007C000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000000FFFE00000000000000 -0000000038FFFC001FE00000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000003FFFF0E000FFE03FFFE0FFFFF80F0F -FFFF007FE000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000001FFFE00003E00000000 -0000000078FFFC00DFE00000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000003FFFF0F00016803FFFE0FFFFF0070F -FFFF01FFE000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000003FFFC00007FEC000000 -00001FC030FFFE03FFE00003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000003FFFE0E00000003FFFA0FFFFE0060F -FFFF817F4000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00008001FFFE00007FFFFFEFB2 -EDFFFFC038FFFE0BFF000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000007FFFE1E00000001FFF807FC0200387 -FFFF0100000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005FFE07FFFE00003FFFFFFFFF -FFFFFFE03C7FFF0FF000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000FFF07FFFE1E00000000000000000000387 -FFFF8000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFA07FFFE00003FFFFFFFFF -FFFFFFE03C7FFD0F000000BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801FFF07FFFE0E00000000000000000000287 -FFFF8000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFE07FFFC00001FFFFFFFFF -FFFFFFE01C7FFF00000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFF87FFFE1E01E00000000000000000387 -FFFFC00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFE07FFFE00001FFFFFFFFF -FFFFFFF01C3FFF8000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FFF07FFFE1A03FF00000000000000003C7 -FFFF400000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFC0FFFFC00000FFFFFFFFF -FFFFFFF01D3FFF80000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFE07FFFE1E07FFFF000000000000401C7 -FFFFC007F0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00003C0FFFFC00000FFFFFFFFF -FFFFFFF01C3FFFC007700FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000007FFFA1C07FFFFFF000000003FF81C7 -FFFFC01FF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000000FFFFC000001FFFFFFFF -FFFFFFF00E2FFFC00BE80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000007FFFC0C07FFFFFFFFDFD05FFFFC1E7 -FFFFC07FF801FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000001FFFFC0000007FFFFFFF -FFFFFFC02E3FFFE00FA00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000007FFFC1807FFFFFFFFFFFFFFFFFC1C7 -FFFFC0FDF807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000001FFFF8000000017FFFFF -FFFFC0000E1FFFF000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000007FFFC1807FFFFFFFFFFFFFFFFFC1E7 -FFFFE0FA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000003FFFF800000000017FFF -F40000000E0FFFFC00000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000007FFFC0807FFFFFFFFFFFFFFFFFF1E7 -FFFFE0400007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE001D003FFFF800000000000000 -000000000F0FFFFF80000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000007FFFC3007FFFFFFFFFFFFFFFFFF1F3 -FFFFE000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000007FFFF800000000000000 -00000000070FFFFFFC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0017417FFFC3800FFFFFFFFFFFFFFFFFF0F1 -FFFFE0000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000000FFFFF000000000000000 -000000000707FFFFFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC017FE0FFFFC30001FFFFFFFFFFFFFFFFF0F1 -FFFFE000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000001FFFFF000000000000000 -000000000787FFFDFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC05FFE0FFFF8300000FFFFFFFFFFFFFFFF0B1 -FFFFE001F80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000003FFFFE000000000000000 -000000000383FFFFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0BFFE0FFFF82000000BFFFFFFFFFFFEA0071 -FFFFE00F7C0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000007FFFFE000000000000000 -000000000183FFFFFFFE17FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFE0FFFF83000000000FEFEF8400000031 -FFFFF00FFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000FFFFFE000000000000000 -0000000001C3FFFFFFFF07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07E140FFFE83000000000000001000000010 -FFFFF03FFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00001FFFFFE000000000000000 -0000000001C1FFFFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000000FFFF05000000000000000000000010 -FFFFF03EC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00003FFFFFC000400000000000 -0000000000F0FFFFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000000FFFF0E000000000000000000000018 -FFFFF800000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00003FFFFFC000FE8000000000 -0000000200F07FFFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000000FFFE06000000000000000000000008 -7FFFFC00000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0000FFFFFFC0017FFC00000000 -0000002FC0783FFFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000000FFFE0E000000000000000000000018 -7FFFFE00000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0006FFFFFF8003FFFFD0000000 -00004FFF60381FFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000000FFFC1A000000000000000000000008 -3FFFFE00000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8077FFFFFFF0007FFFFFC006800 -037EFFFFF03C1FFFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000D81FFFE1E00000000000000000000000C -1FFFFF001E07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0BFFFFFFFE0007FFFFFC07FFF0 -0FFFFFFFF01F0FFFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00FF81FFFC1C000000000000000000000000 -1FFFFB007E0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFC0007FFFFFE07FFF0 -0FFFFFFFF80F83FFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00FE81FFFC14000000000000000000000004 -1FFFFF807C0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFF8001FFFFFFA0FFFD0 -0FFFFFFFF80F41FFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FC01FFF43C038000000000000000000000 -1FFFFF800807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFFF8003FFFFFFE07FFF0 -1FFFFFFFFC03C0FFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00D003FFF8180FFA00000000000000000002 -0FFFFFC00007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFE0007FFFFFFE07FFF0 -1FFFFFFFFC03E07FFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000003FFF8380FFBE8000000000000000201 -0FFFFFF00007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFC000FFFFFFFF07FFF0 -0FFFFFFFFE03F83FFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000FFFF8701FFFFE00000000000008BDC1 -07FFFFFC0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF407FFFFFFC000FFFFFFFD17FFF0 -0FFFFFFFFF01FC1FFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00007FFFF0601FFFFF007DDB001BAFFFFFC1 -83FFFFFFE00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFF8001FFFFFFFE07FFF0 -1FFFFFFFFF007F07FFFC07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000FFFFF0001FFFFF007FFFC077FF7FFFE0 -C1FFFFFFF807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFF8001FFFFFFFE07FFF0 -0FFFFFFFFF807F01FFF80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0057FFFFE0001FFFFF00FFFFC07FFFFFFFE0 -A0FFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFE0003FFFFFFFE07FFF0 -0FFFFFFFFF801FC0FFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFFFC0003FFFFF00FFFFE07FFFFFFFF0 -207FFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFF80007FFFFFFFF07FFF0 -0FFFFFFFFFC00FE03FF80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFF80007FFFFF00FFFFE07FFFFFFFD0 -107FFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFFFF0000FFFFFFFFE07FFF0 -0FFFFFFFFFF007F00FF00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFFF8000FFFFFF80FFFFE07FFFFFFFF0 -003FFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFE0000FFFFFFFFE07FFF8 -0FFFFFFFFFF003FE03001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFFF0000FFFFFF80FFFFE07FFFFFFFF0 -001FFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFF80001FFFFFFFFF0FFFF0 -0FFFFFFFFFF801FF00000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFFE0000FFFFFF00FFFFC07FFFFFFFF8 -0007FFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFE00001FFFFFFFFE07FFF8 -0FFFFFFFFFFC00FF80001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFC0001FFFFFF00FFFFE0FFFFFFFFFC -0003FFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FF800003FFFFFFFFE0FFFF0 -3FFFFFFFFFFE007FA0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFF80001FFFFFF00FFFFE0FFFFFFFFFC -0001FFFFFD0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000F800000FFFFFFFFFE0FFFF8 -1FFFFFFFFFFF803FC0003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFE00003FFFFFF80FFFFE07FFFFFFFFE -00007FFFFC2FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000000001FFFFFFFFFF0FFFF8 -17FFFFFFFFFF40000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FFFE00003FFFFFF80FFFFE07FFFFFFFFF -00001FFFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000000003FFFFFFFFFF0FFFE8 -1FFFFFFFFFFFC0000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFC00003FFFFFF00FFFFE07FFFFFFFFF -C0000FFFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000000007FFFFFFFFFF07FFF0 -1FFFFFFFFFFFF0000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA07FFF800007FFFFFF80FFFFE07FFFFFFFFF -E00003FFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDE00000001FFFFFFFFFFF0FFFF0 -1FFFFFFFFFFFFC00000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FFF00000FFFFFFF80FFFFA07FFFFFFFFF -F000007F001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000001FFFFFFFFFFD07FFF8 -0FFFFFFFFFFFFE00002FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFE00001FFFFFFF00FFFFE07FFFFFFFFF -F8000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEC0000007FFFFFFFFFFE0FFFF8 -1FFFFFFFFFFFFF0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FF800003FFFFFFF80FFFFE17FFFFFFFFF -FC000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000001FFFFFFFFFFFF0FFFF0 -0FFFFFFFFFFFFFE00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FE400003FFFFFFF80FFFFA0FFFFFFFFFF -FF000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000FFFFFFFFFFFFE0FFFF8 -3FFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FC000007FFFFFFF80FFFFC0FFFFFFFFFF -FF80000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEBFFFFFFFFFFFFF07FFF0 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1F800000BFFFFFFFC0FFFFC07FFFFFFFFF -FFC0000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFF8 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000003FFFFFFFF80FFFFC0FFFFFFFFFF -FFF8000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFE0FFFF8 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000005FFFFFFFFC1FFFFC07FFFFFFFFF -FFFC000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFF0 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000003FFFFFFFFF80FFFFC0FFFFFFFFFF -FFFFC0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFF0 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBC00000FFFFFFFFFFC0FFFFC0FFFFFFFFFF -FFFFFE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFF0 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0003FFFFFFFFFFC0FFFFC0FFFFFFFFFF -FFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB82FFFFFFFFFFFF80FFFFC0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFF0 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFC0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFF8 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFC0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFF8 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFC0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFF0 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFF80FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFF8 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFC0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE17FFF8 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFC0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFC0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFF8 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFFC0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD0FFFF8 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFF80FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFF8 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFC0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFF40FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFC0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFF40FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFC0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFC0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF0 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFC0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFF80FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFC0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFF8 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFC0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFF80FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF8 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFC0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFFC0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFF80FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF0 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFF80FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFFC0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFF80FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFF40FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFF80FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF0 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFF80FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF8 -07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFFC0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFF8 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFF40FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFF80FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFFC0FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFF80FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF0 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFF80FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFF80FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFF81FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFF00FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFF00FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFF80FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFF80FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFF00FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFF00FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFF00FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE87FFFC -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFF00FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFF00FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFF00FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFF00FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFF00FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFF00FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFF00FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFF00FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFF00FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFC -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFF00FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFF00FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFF8 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFF00FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD07FFF8 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF8 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFF00FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF8 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFF00FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF8 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF8 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFF8 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF8 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFC -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFC -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFF00FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFF00FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFF00FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFC -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFC -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD01FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFF00FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFC -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFC -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFC -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFC -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFF8 -07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE05FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFE01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFE01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFE01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFE01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFE01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE8FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFF09FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFE01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFF03FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFE03FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFF01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFE01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFE01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFE03FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFF8 -07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFE01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFE03FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFF0 -07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FFFE01FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFF8 -07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5AA37FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEA -D56ABFFFFFFFFEFFFFFFEFFFFFEB7AFB565569AAAA491048C040100400000000152AB7ABFD -5FFFE4A9AAB2ECCBFFFFBDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFF0 -03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9BF2F55FFA53 -3E6B54494A52A944A29241090000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01 -00000448041000048290000000000000000000000000040000000000000000000040000000 -00011000000010202010001200009424A4A44A25152A52A53FFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAFD2500008000 -08CA9552AAA494932ABD554A924AAAA490252A95440A2A9454941111040000000800000100 -0000000000000000000020004000100000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -00000001000000000000000000000000000000000000000000000000000000010000000000 -0000000000000000000000000000000000000000000000011FFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEA22524A52A152551492555248A440A914249292AA09 -254942AAA92BD529AA4A9A554A2A9454A95155452954AA5269254110200000000000000000 -00000000001000400002000000000000090000000100000200010000000000000000000000 -0000000000000000000000000000000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF400 -00000000000000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000002FFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFE524A00000000000800000040000000000800020000000100 -00000000040000000000000000000100000400200000000000000000000000000000000000 -00000000000000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000 -00000000000000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000001FFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000000000000000000000000000000000000 -00000000000000000000000000000000000000000000000000001000000000000000000000 -00000000000000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -000000000000000000000000000000D002000002E803297436F800000000000002AB200004 -0005FA0001B430001000000000000000000000000000000007FFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000000000000000000000000000000000000 -00000000000000000000000000000000000000000000000000000000000000000000000000 -00000000000000000000000000000000000000000000000000000000000000000000000000 -0000000080000000000000000000000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3F0 -0D00FFBFFE00FFFC07F80783FFE01FFFFB00F80FFFFFFFFFFFFFFF7FFFF80301FFFFFFF80E -0017BFF01FFFDF81FFEC3FF75FF7F01D006100002806800007FFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000000000000000000000000000000000000 -00000000000000000000000000000000000000000000000000000000000000000000000000 -00000000000004DEF96B00016812BBFFE007F76DFBB800005F814000FC07E003BC0800BBED -AC0FF03FFFFEDF8FFFFE07FFFFF01F01FF80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FC -1F80FF5FFF01FFFE0FF81F81FFF1FFFFFFC3F81FFF7FFFFFFFFFFFFFFBF80701FFFFFFFEFE -003FFFF83FFFFF81FFFFFFFFFFFFF82FC1FFC061FC3F800D8FFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFF80000000000000000000000001DFA01D0015F000FEFFEB2F0 -01BA007D857EBF007E037B607FCBF76F0016E6DEF40D77FB5800002802800C07FFD00E0FE5 -7F01E83FFFFFFFFFDFFFE00FEFFFFFFFF807FFFFFFFC0603DFFFF80FFE3F781FFF1F83FFFF -FE1FFDFFFFFFFE8FFFFE07FFFFF83F01FD81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FF -6FC1FE0FFF85FFFF1FFC3F01FFFFFFFFFFFFF81FFF17FFFFFFFFE9FFFFFC0501FFFFFFFFFE -003FFFFEFFDFFF81FF3FFFFFFFFFF83FC0FFC0FFFE3E800FFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFF0FE00C03FFFFC0701F00FE01FFFF07F80FFD801FFFFFFFFC -07FF01FFE7FFFFF7FFEFFFFFFFFFFFFF807FFFFFEC1FFFFFFC0FC0FFBFE03FBBFFFC3F0FFF -FFDFF83FFFFFFFFFFF7FE03FFFFFFFFFF83FFFF3FFFE0F03FFFFFC0FFC1FFFBFFF0FEFFF8F -FE1FFFFFFFFFFF07FFFC0FFFFFFDFE81FF01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FF -FFF7FC0FFFFFE3FFFFFE7F03FFFDFFFFFFFFFC1FFC0FFFFFFFFFC23FFFFC0F01FFFFFFFFFE -003FFFFFFF87FFC2FE1FFFFFFFFFF01F81FFC1FFF81F000FFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF02F07FFFFF0701F81FE03FFFFFFFC1FFF807FFFFFFFFC -1FFF80FFC3FFFFFFFFFFFFFFEFE7FFFFC0FFFFFFFC1FFFFFFF1FC0BFFFE07FFFFFFFFE0FFF -FFFFF83FFFFFFFFFFE1FF07FFFFFFFFFFC3FFFC1FFFE0F8FFFFFFC1FFC1FFFFFFE0FFFFFC7 -FC0FFFFFFFFFFE0FFFFE07FFFFFFFF83FF00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FF -FFFFFC07FFFFE0FFFFFFFF83FFC3FFFFFFFFFC3FFC07FC3FFFFF801FFFFE1FC3FDFFFFFFFE -003E1FFFFF83FFC3FE0FFFFF0FFFF81FC1FFF1FFF83F800FFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FEFFFFFFDF81F83FF07FFFFBFFE3FFFEFFFFFFFFFFE -0FFF81FFC0FFFFFFFFFFFFFFFFE3FFFFE17FFFFFFC1FFFFFFFFFC07FFFE07FFFFFFFFE07FF -FFFFF83FFFFFBFFFFC0FFCFFFFFFFFF5FFFFFF81FFFFFFEFF5FFFFFFF80FFFFFFE0BFFFF8F -FC0FFFFFFFFFFF0FFFFE0DFFFFFFFF83FF00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FF -FFFFFE0FFFFFC0FFFFFFFFC7FFC3FFFFFFFFFFFFFC0FFC1FFFFF801FFFFFFFC7FC3FE7FFFE -003C0FFFFF03FFFFF80FFFFE0FFFF43FC1FFFFFFF81F801FFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFF87FFFFFCFFFFFFFFFFFFFFFFFFFFFFFFE -3FFFC3FF81FFFFFFFFFFF9FFFFC1FFFFE3FFFFFFFC1FFFFFFFFFC0FFFFF07FFFFFFFFE0FFF -FFFFFC7FFFFE1FFFF82FFFFFFFFFFFE2FFFFFF81FFFFFFFFE0FFFFFFF80FFFFFFE0FFFFF8F -F01FFFFE3FFFFE8FFFFF8FFFFFFFFFDFFF01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFE0FFFFFC07FFFFFFFE7FFC3FFFFFFFFFFFFFC0FF80FFFFF001FFFFFFFFFF83F87FFFF -003C0FFBFE01F3FFFC0FFFFF07FFF43FF7FFFFFFFC7F803FFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -7FFFFFFFC0FFFFFFFFFFF07FFFE3FF8FFFFFFFFFFC1FFFFFFFFFC0FFFFF0FFFFFFFFFF0FFF -FFFFFFFFFFFE0FFFFC0FFFFFFFFFFFE0FFFFFFC3FFFEFFFFE0FFCFFFF81FFFFFFF1FFFFFC7 -F80FFFFE3FFFFFBFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFF -FFFFFE0FFFFFC1FFFC3FFFFFFFC3FFFF8FFFFFFFFE3FF00FFE1F001FFFFFFFFFF83F01FFFF -C07C0FF07F8780FFF80FFFFF07FCFFFFFFFFFFFEFA3FC07FFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFE1FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFC3FFDFFFFFFFE0FFFFF3FF8FFFFFFFFFFFFFFBFFFFFFFBFFFFFAFFFFFFFFFFFFFF -FFFFFFFFFFFE1FFFFC1FFFFFFFFC3FC0FFFE3FE7FFFFFFFFE0FF07FFFC1FFFFFFF7FFFFFFF -F00FFFFC1FAFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFE1FFF81FFFFFFFFFFFFE07FFFFFFFFBFF81FFC1F801FFFFFFFFFF83F03FFFF -FBFC0FE07FEF00FFFF1FFFFF9FFC7FFFFFFF7FF07FFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFAFFFFFFF -FFFFFFE3F7FF0FFFFFFFF07FFFFFFF0FFFFFF87FFFFFF1FFDFFFEFFFFFFFFFFFF1FFFFFFFC -7FFFFFFFFFFF1FFFFE3FFFFF0FF81FC0FFFC1FFFFF0FFFFFF1FF87FFFFFFC7FFFFFFFFFFFF -C00FFFFC1F07FFFFF87FFFFC7FFFFF9FFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF87F81FFFFFFFFBFFBE07FFFFFFFFFFFC3FFC1F803F07FFFFFFF83F03FFE3 -FFFE1FF07FDF007FFFBFFFFFFFF07FFFFFF81FE87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFFFFE1FFFFFFFFFFFFFE0FFFFFFFFFFFFF87FFFFFF -FFFFFF83FFFF03FDFFFFF0FFFFFFFF8FFFFFF07FE3FFE0FF07FFFFFFDFFFFFFFF0FF8FFFFC -3FFFFFFFFFFFFFFFFFFFFFFE07F81FE1FFF81FFFFF07FFFFFDFF87FFE7FFC3FF9FFFFFFFFF -8007FFFE3F03FFFFF03FFFF03FF1FE0FCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1F -FFFFFFFFFFFFFE03F81FFFFFFFFFFD0E07FF7FFFFFFFFFFFFE1FF87F07FFFFFFFFFF87FFE1 -FFFFFFF07FFF01FFFFFFE3FFFFF87FFFFFF81FE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFBFC0FFFFFFFFFFFFFE0FFFFFFFFFFFFF07FFFFFF -FFFFFFC1FFFF07F87FFFF8FF8FFFFF8FFFFFF03F81FFE0FF03FFFFFF8FFFFFFFE07F07FFFC -3FFFFFFFFDFFBFFFFFF7FFFE03F80FF3FFFC0FFFFE07FFFFFFFF87FF83FF01FF0FFFFFFFFF -800FFBFEFE03FFFFF83FFFF83F40FC0787FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1F -FFFFF7FFFFFFFF03F81FFFFFFFFFFE060FF80FFFFFFFFFFFFFFFFFFF03C7FFFFFFFFEFFFE3 -FFFFFFE07FFF81FFFFFFC1FFFFF87FFFFFF80FE07FFFFFC7FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFEBFC0FFFFFFFFFFFFFE0FFFFFFFFFC3FF07F0FFFF -FFFFFF81FFFF07F07FFFFFFE0FFFFFFFFFC7F07F81FFE1FF03FFFFFF87FFFF8FF0FE07FFF8 -3FF87FFFFC7FFFFFFFC1FFFE03F81FFFFFFC1FFFFF07FFEFFFFFC7FF01FF00FF03FFFFFFFF -8007F83FFD03FFDFF83FFFF03F007C0F03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1F -FFFFC1FFE3FFFE03FE7FEFFF7FFFFC079FF80FFFFFFFFFFFFFFFFFFE0387FFBFFFFFFFFFE3 -FFFFFFF97FFFFFFFFFFFC1FFFFFEFFFFFFF80FFCFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFF81FFF03FF1FC0FFFFFFFFCBFFFFFFFFFFFFFF81FF87E0FFFF -FFFFFF81FFFFDFF07FF1FFFF07FFFFFFFF83F8FF81FFFFFF03FFFFFF8FFFFF07F0FE07FFFE -3FF03FCFF8FFFFFFFFC0FFFE03F81FFFFFFF7FFFFF07FFC1FFFFBFFF83FF81FF03FFC3FFFF -800FF03FFF03FE0FF87FFFF83E003C0703FF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80F -F87F01FFC0FFFE03FFFFC1FF0FFFFE07FFF807FFFFFFFFFFFFFFFFFF8783FE1FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFC0FFFFFBFFFFFFFE1FFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFC1FFF01FFFFC1FFFFFFFF83FFFFFFFF3FF1FE81FFEFE07FFF -F7FFFFC3FFFFFFF87FC0FFFF07FFFFFFFF01FFFF81FFF7FF07FFFFFF7FFFFF07FFFF07FFFF -FFF03F83F87FFFFE1FC0FFFE07FF7FFFFFFFFFFFFF8FFFC1FFFFFFFF83FFA1FD07FF03FFFF -C01FE01FFF07FE0FFC7FFDF83E003E1F07FF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1F -F83F81FFC0FF7F47FFFFC0FE0FFFFE0FFFF807E0FFE1FFFFFFFFFFFFFF83FC0FFFFFFFFFFF -FFFFFFFFFFFFFFFF0FFFC1FF9FFFFFFF1FFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFE1FFF00FFFF63FFFFFFFF83FFFFFFFE1FE0FF01FFFFE07FFF -E3FFFFABFFFFFFFDFFE0FFFFCFFFFFFFFF81FFFF81F3FFFF87FFFFFFFFF3FF07FFFF87FFFF -FFF03F03FC7FFFFE0FC0FFFF3BFFFFFFFCFFFFFFFFFFFFC1FFFFFFFF83FFFFFF1FFF83FFFF -E03FF03FFFFFFE07FFFFF07EFE005F9F87FE8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3F -F01F81FFC0F83FFFFFFF80FE0FFFFFBFFFFE0FE07FE0FFFFFFFFE3FFFF83F80FFFFFFFFFFF -FFE3FFFFFF8FFFFF07FFC2FF0FFFFFFF0FFFFFFFFFFFFFA7FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFFBFFFFFFFFF03FFFFFFFE0FE0FF81FFFFF0FFFF -E1FFFFFFFFFFFFFFFFE0FFFFDFFFCFFFFF83FFFFC7E3FFFFFFE3FFFFFFE1FF8FFFFFFFFFFF -FFF03F01FFFFFFFE0FC1FFFFFFFFFFFFF87FFFFFFFFFFFC1FFFFFFFFFFFFFFE7FFFF83FFFF -FBFFE03FFFFFFC07FFFFE03FFC007FFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F05F83FFC1F83FFFFFFF80FE0FFFFFBFFFFF9FE0FF80FFFFFFFFC1FFFFC7FC0FFFFFFFFFFF -FFC1FFFFFE07FFFF07FFFFFF0FFFFFFE0FFDFFFFFF87FFBFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFFFFFFE7F7FF83FFFFFFFC1FA0FF81FFFFFBFFFF -C1FFFFFFFFFFFFFFFFE1FFFFFFFF83FFFF87FFFFFF80FFFFFFE1FFFFFFE1FFFFFFFFFFFFFF -FFF87E03FFFFFFFE0FE1FFFFBFFFFFFFF87FFFE3FFFFFFE1FFFFFFFFFFFFFFE3FFFFC7FFFF -FFFFF03CFFF7FE0FFFFFC03FFF00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F81FE3FFE2F03FFFFFFFC1FF1FFFFFFFFFFFFFE0FFC0FFFFFFFFC0FFFFFFFC1F8FFFFE0FFF -FFC1FFFFFE07FFFE07FFFFFE0FFFFC7C07FFFFE3FF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFE7F81FFFFFFFF97E1FF87FFFFFFFE1FE1FFC7FFFFFFFFFF -E3FFFFFFFE7FFFFFFFFFFFFFFFFF81FFFFFFFFFFFFC1FFFFFFF1FFFFFFE1FFFFFFFFFFFE3F -FFFFFF83FFFFFFFF7FFFFFDFFFFFFFFFF8FFFF81FFFFFFFFFFFFFFFFFFFFFFC3FFFFEFFFFF -FFFFFDF83FF1FF8FFFFFE01FFF80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F03FBFFFFFF83FFFFFFFE3FFBFFFFFFFFFFFFFF1FFC07FF83FFFC0FFFFFFFEFF07E7F827FF -FFC3FF3FFE07FFFE0FFFFFFE07FFF03E1FFFFF81FF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFC3FE7FFFFFFFF83C0FFFFF1FFFFFF3FFFFFFFFFFFFFFF07 -E1FFFFFFF83FDFFFFFFFF87FFFFF83FFFFFFFFFFFFC0FFFFFFF3FFFFFFE1FFFFFFFFFFFE1F -FFFFFFC3FFFFE1FEFFFFFF87FFFFFFFFF9FFFFC1FFFFFFFFF07FC7FFFFFFFFC1FFFFFFFFEF -FFFFFFF83FE0FFFFFFFFC03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F87FFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFFFFFEFFF1FFF83FFFC0FFFFFFFFFF07C3F807FF -FFF5FE0FFF8FFFFF0FFFFFFF1FFFF03FFFFFFF81FF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFC3FEFFF7FFFFF87E0FFFFF0FFF7FFFFFFFFFFFFFFFFFF07 -FFFFFFFF783F03FFFFFFF07FFFFF83FFFFFFFFFFFFE3FFFFFFFFFE1FFFF7FFFFF1FFFFFF1F -FFFFFFFFFFFFE0FFFFFFFF87F1FFFF9FFFFFFFC3FFFF0FFFF07F83FFFFFEFFC7FF3FFFFFC3 -FFFF0FF03FE07FFFFF07E03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FE1C1FFFFFFFFFF0701F807FF -FFFFFE0FFEDFFFFFFFFFFFFFFFFFF03FFFFFFF81FF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFE07FFFFC7E1FFFFE0FFE1FFFFFFFFFFFFFFFFFE03 -FFFFFFFF783E03FFFFFFF07FFFFFC3F1FFFFFFFFFFDFFFFFFFFFFE0FFFFFFFFFE07FFFFFFF -FFFFFFFFFFFFC0FFFFFFFF83E0FFFF07FFFFFFE3FFFF87FFE03F83FFFFFD3FF7FE1FFFFFC1 -FFFE0FE03FE07FFEFF07F07FFFFF3FF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FC0E2FFFFFFFFFF4F81F80FFF -FFFFFE0FFFFFFFFFFFFFFFFFFFFFF07FFFFFFF83FF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FFFFFFEFFFFFF0FFC0FFFFFFFFFFF8FFFFFE07 -FFFFFFFFEC7E03FFFFFFF87FFFFFFFE0FFFFFFFFFFFFFD7FFFFFF80FFFFFFFFFE07FFFFFFF -FFFFFFFFFFFFE0FFFFFFFF87E0FFFE03FFFFFFEFFFFE07FFF07F83FFFFFC3FFFFC1FFFFF81 -FFFE07F47F70FFFE3E03FBFFFFFE0FF0BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7 -FFFFFF07FFEFFFFFFFC7FFFFFFFFFFFFE3FFFFFFFFFFFFFC3FC0FFFE1FFFFFFFBFC1FC1FFF -FFFFFE0FFFFFF83FFFF1FFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01FFFFFFFDFFFFF07FC0FFFFF3FFFFF07FFFFF07 -FFFE7FFFFFFF03FFFFFFF0FFFFFFFFE0FFFFDFFFFFFFFC1FFFFFFE0FFFFFFFFFE07FFFFFFF -DFFF8FFFFFFFE0FFFFFFFF8FE07FFE01FFFE3FFFFFFF87FFF0FF83FFFFFC7FFFFC1FFFFF83 -FFFE07FEFFE9FFFC1E03FFFF7FFC0FF07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81 -FFFDFE03FF00FFFFFF83FFFFFFEBFFFFC1FFFFFFFFFFC7FDFFE0FFFC1FF3FFFFFFEFFFBFFF -FFFFFF3FFFFFF83FFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFAFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800FFFFFFFFFFFFF7FFE0FFFFE1FFFFF07FFFFFDF -FFFC3FFFFFFF07FFFFFFFFFFF87FFFE0FFFF0C3FFFFFFC1FFFFFFE3FFFFFFFFFE0783FFFFF -83FF0FFFFFFFFFFFFFFFFFFFE0FC7E03FFF83FFFFFFF8FFFFFFF83FFFFFF7FFFFE1FFFC3CB -FFFF07FFC7FFFFF80E07FFF83FFE07F07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81 -FFE0FE0BFE007FFFFF03FFFFFF83FFFFC1FFFFFCFFFF81FFFFE0FFFC0FE0FFFFFFFFFFFFFE -0FFFFFFFFFFFF83FFFE07FFFFF9FFFFFFFFFFFFFFF7FFFFF1FFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFC00FFFFFFFFFFFFFFFFF1FFFFC0FFFFF07FFFFFFF -FFF81FFFFFFF8BFFFFE7FFFFF07FFFF0FFFF061FFFFFFC07FFFFFFFFFFFFFFFFF0F03FFFFF -03FF07FFFFFFEFFFFFFE1FFFF1F83E07FFFC1FFFFFFFFFFFFFFFC7FF0FFFFFFFFC3FFFA1EF -FFFF0FFFC1FFFFFE0F03FFF81FFC0FF87F83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81 -FFE07F07FE007FFFFF03F87FFF81FFFF80FFFFF87FFF81FFFFF7FFFC0FE07FFFFFFFFFFFFE -0FFFFFFFFFFFF03FFFE07FFFFE0FFFFFFF87FFFFFC3FC7FF0FFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFC01FFFFFFFFFFFFFFFFFFFFFFC0FFFFF0FF9FFFFF -FFF81FFFFFFFFFFF87C1FFFFF07FFFF7FFFF043FFFFFFC0FFFFFFFFFFFFFF87FFFF03FFFFF -81FE0FFFFC1FFFFFFFF81FFFFFF03FC7FFFC1FFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFF80FF -FFFDFFFF81FFFFFE3F0FFFF81FFE0FFFFF83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE83 -FFE07E07FC007FFFFF03F03FFF81F83FC1FFFFF03FFF81FFFFFFFFFC1FE17E3FFFFFFFFFFE -0FF8FFFF7FFFF87FFFE07FFFFC0FFFFC3F07FFFFF83F83FF0FFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFF01FFFF8FE01FFFFFFFFFFFFFFFFFFFFFFC0FFFFF8FF87FFFF -FFFC3F8FFFFFFFFF03C1FFFFE07FFFFFFFFF8E3FFFFFFC0FFFFFFFFF3FFFF03FFDF81FFFFF -01FF0FFFF00FFFFFFFFC1FFFFFF03FFFE7FC3FFFFFCFFFFFFFFFFFFF07FFFFFFFFFFFE00FF -FFFFFFFFC1FFFFFD7FFFFFF81FFFFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7CF -FFE03F9FFC007FC3FF83F83FFF83F03FC1FC1FF03FFF83FFFFFFFFFE7FE0F81FFFFFFFFFFE -07F07FFC3FFDFF7FF1E07FFFFE07FFF83E01FFFFF81F83FF87FFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFF01FFFF87FAFFFBFFFFE1FFFFFEFFFFFFFC0FCFFFFFF07FFFF -FFFE3F03FFFFFFFF0381F807F0FFFFFFFFFFFFFFFBFFFF3FFF0FFFFF1FFFF03FFFF83FFFFF -83FF9FFFE00FFFFF87FC1FFFFFF03FFFC3FF7FFFFF0FFFFFFFFFFFFF07FFFFFFBFFFFE00FF -FFFFFFFFC1FFFFFFFFFFFFFC3FFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FF -FFE0FFFFFE007FC1FECFF03FFFC3F01FFFFC0FD03F9F8FFFFFFFFFFFFFF3F81FEFFFFFFFFC -0FE03FFC1FE0FFFFE0F3FFFFFF1FFFF81E07FFFFF83F03FFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFF83FF9F87FFFFF07FFFC0FFFFFC1FFFFFFE0F87FFFFE03FFFF -FFFFFF03FFFFFFFF03E3F407FFFFFFFFFFF9FFFFE0FFFFFFFE0FFFFF0FFFF87F8FFC7F8FFF -C7FFFFFFC01FFFFF83FFBF0FFFF87FFF81FFFFFFFF07FFFFFFFFFFFF03FFFFFF8FFFFE00FF -FDFFFFFFEFFFBFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FF -FFF9FFFFFE00FFC1FFFFF07FFFFFF01FFFF807F07E07FFFC3FFFFFFFFFFFF81F03FFFFFFFF -3FF03FF83FE0FFFFC07FFC1FFEBFFFF81F03FFFFFA3F87FFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFF83FE1F8FFFFFE07FFF80FFFFF81FFFFFFF7F83FFFFF0FFFFF -FFFFFF07FF8FFFFF07FBE003FFFFFFFFFFE0FFFFC0FFFFFFFF0FF9FF1FE3FBFE0FFDFF87FF -FFFFFFFF807FFFFF83FFFD07FFFA7FFF81FFFFFFFF0FFFFFFFFFFFFE87FFFF3F0FFFFF00FF -F87FFFFFFFFF0FFFFFFE3FB3FFE3FFFFFF83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FF -FFFFFFFFFF01FF81FFFFFCBF1FF7F01FFFFC0FFDFC07FFFC1FFFFE3FFFFFFC1F03FFFFE3FF -BFF07FFC3FE07FFFE0FFFC1FFF7FFFFC3F0FFFFFFEFFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFEFFE1FFFFFFFC03FFFC07FFFF81FFFFFFFFF83FFFFF0FFFFF -FFFFFF07FF8FFFFF8FFFE003FFFFFFFFFFE0FFFFC0FE1FFFFF0FE0FF3FE1FFFE07FFFF0FFF -FFFFFFFFC1FFFDFF83FFFE07FFFFFFFF81FFFFF1FF07FFFF7FFFFFFFFFFFFE1E0FFFFF81FF -F83FFFFFFFFE0FFFFFFC1F83FF83FFF7FFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FF -FFFFFFFFFFBFFFC0FFFFFFFF07FFFE7FFFFC1FFFFE0FFFF80FFFFD3FFFFFFEFF03FFFFC1FF -FFF8FFFFFFE0FFFFE0FFFC1FF87FFFFEBFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFFE07FFFE1FFFFF81FFFFFFFFF83FFFFFFFFFFF -F3FFFFBFFF0FFDFFFFFFE003FEFF83FFFFC0FFFFC0FC0FFFFFBFE0FFFFC0FFFC07FFFE07FF -FFFFFFEFE3FFF07E87FFFE07FFFFFFFFC3FFFFC1FFFFFFFC1FFFFFFFFFFFFE0E0FFFFFFFFF -F83FFFFFFFFC0FFFFFFC1F81FF81FFE1FFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF7FFFFFFFE3FFFFFFFF07FFFFFFFFFFBFFFFF07FFF81FFFFC1FFFFFFFFF03FFFF80FF -FFFFFDFFFFF0FFFFE0FFFC1FF83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFC07FFFFBFC3FFC3FFFF87FFFFFFFFFFFFFE3F -E1FFFFFFFF07E0FFFFFFE003F0FF83FFFFE07FFFE0F80FFFFFFFE0FFFFC1FFFE07FFFF0FFF -FFFFFE03FFFFF07FEFFFFE07FFFFFFFFF7FFFFE07FFFFFFC0FFFFFE1FFFFFE1F07FE7FFFFF -F83FFFFFE3FE07FFFFFC1F00FF01FFC1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF0FFFFFFFF7FFFFFFFE07FFFFFFFFFFFFFFFF3FFFFC1FFFFC1F1FFFFFFF03FFFFC1FF -FFFFFC7FFFFBFFFFFFFFFC1FF83F9FFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFC3FFF7FFFF83FFFFFFFFFFFFFC1F -C1FFFFFFFF1FE07FFFFFE007F07F81FF8FE1FFFFF0FC0FFFFFFFE0FFFFE1FFFE0FFFFFDFF0 -7F87F801FFFFE07FFFFFFF0FC7FFFFFFFFFFEFE0FFFFFFF80FFFFFC1FFFFF6179FF83FFFFF -F83FFF1FC1FF0FFFFFFC3F83FF01FFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFC0FFFFFFFFFFFFFFFFE07FFFFFFFFFFFFF47FFFFFFC3FFFF81E0FFFFFFF87FFFFE3FF -FFFFF01FFFFFFFFFFFFFFE7FE03F0FFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFFE5FFFFFFFFFF83FFFFFFFF83FFFEFFFFFFFFFC0F -C1FFFFFFFF9FE07FFFFFF007F07F83FF07FFFFFFFFFC0FFFFFFFFFFFFFE3FFFFEFFFFFFFF8 -3E01F001FFFFF87FFFFFFFBF83FFFFC7FFFFC3F1FFFFFFF00FF3FFC0FFFFFFFFFFF83FFFFF -FCFAFE07C1FF9FFFFFFF7F81FF81FFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -1FFFFC07FEFFFFFFF1FFFFFF0FFFFFFFFFFFFFF03FFFFFFFFFCFFC3C07FFFFFFEFFFFFFFFF -FFFFF03FFFFFFFFFFFF83FFFF03F07FFFFFFFE07FFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFC0FFFFE0FFFF83FFFFFFFF83FFFFFFFFFFFFFC1F -63FFFFFFFFFFE0FFFFFFF03FF07F83FF07FFFFFFFFFE0FFFFC1FFFFFFFFFFFFFFFFFFFFFE0 -3E00F001FFFFFDFE1FFFFFFF81FFFF01FFFF01FFFFFFFFF80FC0FF80FFFFFFFFFFF83FFFFF -FFF07C0FE1FFBFFE1FFFFFC7FFC3FFE1FFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA -0FEBFC07FC1FFFFFE0FFFFFF9FFFFFFFFFFFFFF0BFFFFFFFFF07FE3C0FFFFFFF7FFFFFFFFF -FFFFF01FFFFFFFFFFFF03FFFF03E07FFFFFFFA0FFFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFFC0FFFFF0FFFF83FFFFFFFF83FFFFFFF1FFBFFE2F -E3FFFFFFDFFFF9FFFFFFFFFFF0FFEFFF07FFFF0FFFFFBF01F80FFFFFFFEFFFFFFFFC3FFFF0 -3C00F001FFFFFFFE0FFFFFFF81FFFF01FFFF81F7FFFFFFF81FC07FC1FF8FFFFFFFF83FFFFF -FFE07C0FE1FFFFFC07FFFFFFFFEBFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC -07C1FC07F81FFFFFE0FF3FFFFFFFFFFFFFFFFFF03FFFFFFFFE07FFFE0FEFFFFFFFF87FFFFF -FFFFF03FF7FFFFE7FFF81FFFF83F03FFF83FFE070FF80FF0FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFC0FFFFCFFFFFF8FE87FFFFFFE5FC1FFE7F -F3FE3FFF83FFFFFFFFFFFFFFFFFFFFFF8FFFFE07FFFFF800780FFFFFFFFFF87FFFF81FFFF0 -3E00F003FFFE7FFE07FFFFFF83FF8601FFFD83FFFF7FFFFC3FC07FE3FF87FFFFFFFC3FFFFF -FFE07E9FFBFFFFFC07FFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFF8 -0FC0FE1FE01FFFFFC0FE0FFFFFFFFFFFF7FFFFF07FFFFFFFFE07FFFE0FC3FFCFFFF07FFFFF -0FFFF07FC3FFFF83FFE01FFFFFFF0FF0E01FFE1E07F80FF1FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FC0FFFFE0FFFFFFFFFFF07FF7FFFFFFE0FC0FFFFF -F3F80FFF01FFFFFFFFFC7FFFFFFFFFFFEFFFFE07FFFFF800380FFFFFFFFFF83FFFF81FFFF8 -7E01E003FFF83FFE07F1FFFFCFFF8381FFFF83FFF89FE1FFFFC0FFFFFF03FFFFFFFFFFFDFD -FFE07FFFFFFFFFFC0FFC3FFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7F8 -0F80FF3FF81FFFFFE0FC0FFFFFC0FFFFC1F0FFF8FFFFE1FFFE07FFFFFF83FF03FFF83FFFFF -07FE0AFF83FFFF81FFF01FFFFFFF8FE0601FFFBE07F80FF0FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FE1F87FE0FFFFFFFFFFF03FFFFFFFFFE1FC0FFFFF -E1F80FFF00FFFFFFFFF03FFFFFFFFFFFFFFFFE07FFFFF800380FFFFFBFFFF8BFFFF81FFFFF -FE07F01FFFF81FFE0FE0FFFFFFFF03CFFFFFEFFFE00FE07FFFC17FFFFF0FFFFFFFFFFFE1F8 -3FF07FFFFFFFFFFE0FFC1FFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FC -0FC0FFFFF41FFFFFE3FC07FFFF02F87FC0C07FEFFFFFC1FFFF0FFFFFFF81FF03FFF87FFFFF -07FE0FFF83FFFF81FFF03FFFFFFFFFE0201FFFFE07FC1FF0FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FDFF83FF1FF87FFF7FFE03FFFFFFFFFF3FC1FFFFF -E1F807FF01FFFFFFFFF03FFFFFFFFFFFFFFFFF0FFFFFF8003C1FFFFE5FFFF87FFFFC7FFFFF -FFDBFEBFFFF81FFE0FC0FFFFFFFF03BFFFFFFFFFC007E07FFFFBFFFFFF8FFFFFFFFFFFE1F8 -7FFDFFFFFFFFFFFF7FF81FE3FFFFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FC -1FC1FFFFFEFFFFFFFFFE0FFFFE00781FC0E03FFEFF7FE0FFFF9FFFFFFF83FF03FFF8FFFC3E -07FE07FFA3FDFF83FFF83FFFFFFFFFE0601FFFFF07FA3FF0FFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFF03FFFFF17FF80FFF03FFE1FFFFFFFFE1FFFFF -E1FC1FFF83FFFFE7FFF07FFFFFFFFFFFFFFFFFFFFFFFF8007FFFFFFE0FFFFCFFFFFFFFFFFF -FFFFFFFFFFF81FFFFFE0FFFFFFFF87FFFFFFFFFFC007E07FFFFFFFFFFFFFFFFFFFFFFFC1F8 -3FFFFFFFFFFFFDFFFFF81FE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FF -FFF3FFFFFFFFFE1FFBFE1FFFFC00781FC0E03FFFF81F80F1FFFFFFFFFFC7FF03FFFFFFFC1F -07FA0FFF83E0FFC7FFF7FFFFFFFFFFF0781F1FFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFF83FFFFF073F007FF03FFE0FFC3FFFFFBFFFFF -E1FF3FFFC7FF1FC3FF807FFFFFFFFFFFFFFFFFFFCFFFF800BFFFFFFE1FFFFFFFFFFFFFFFFF -FFFFFFFFFFF81FFFFFE1FFFFFFFFFFFFF9FFFFFFC007F1FFFFFFFFFFFFFFFFFFFFFFFFC1FF -FFFFFFFFFFFFF97FFFFC1FE1FFF7F8FFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FF -FFFFFFFFFFFFFE1FFFFF1FFFFC00381FC0E03FFFF81FC1F07FFFFFFFFFFFFFC7FFFFFFFC1F -8FFE1FFFEFE0FFFFFFFFFFFFFFFFFFFBEFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFF03FFFFF061F007FF47FFE0FF83FFFFFFFFFFF -E3FFFFFFFFFC1FC1FE00FFFFFFFFFFFFFFFFFFFF87FFFC00FFFFEFFA1FFFFFFFFFFFFFFFFF -FFFFFFFFFFFC3FFFFFEDFFF9FFFFFFFFE5FFFFFFC007FFFFFFFFFFFFFFFFFFFFFFFFFFE1FF -FFFFFFFFFFFFF9FFFFFC3FF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFF -FFFFFFFFFFFFFE1FFFFFFFEFFF00F85FE1E03FFFF81FE3F1FFFFFFFFFFFFFFFFFFFFFFFC1F -FFFFDFFFFFE07FFFFEFFFFF3FFFFFFFFFFFA0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFF87FFFFF0E1E007FFFFFFE0FF81FFFFFFFFFFF -F3FFFFFFFFFC2FE2FE07FFFFFFFFE1FDFFFFFFFF83FFFC00FFFFE3FF7FFFFFFFFFFFFF8FFF -FFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFF1FFFFFFE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF6FFF7FFFFEFFFFFEFFFFF7FFFFFFFFFFFFFFFFFFFFFFFE7F -FFFFFFFFFFF0FFFFFFFFFFF7FFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFE1F807FFFFFFE1FF83FFFFFFFFFFF -FFFFFFFFFFFF7FF7FE07FFFFFFFFE3F7FFFFFFFF8FFFFF8FFFFFEFFFFFFFFFFFFFFFFFBFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0 -end -restore -%%Trailer diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob14a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob14a.gif deleted file mode 100755 index 5cd5c4adf..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob14a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob14a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob14a.pdf deleted file mode 100644 index dbc2d3bde..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob14a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob15a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob15a.eps deleted file mode 100755 index 92581d458..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob15a.eps +++ /dev/null @@ -1,1107 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: rolling hoop.eps -%%CreationDate: 3/29/1996 -%%Pages: 0 -%%DocumentFonts: Symbol -%%+ Helvetica -%%BoundingBox:158 479 457 614 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Symbol Symbol -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Symbol/Symbol 0 Z -%%EndEncoding -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica/Helvetica 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -5054 5132 7867 3257 7867 5132 5054 5132 3 P closepath -0.75 sg fill -gr -gs -5054 5132 7867 3257 7867 5132 5054 5132 3 P closepath -1.25 slw 0 sg str -gr -gs -2808 5132 7867 5366 R -0.25 sg fill -gr -gs -2808.625 5132.625 7867.375 5366.375 R -1.25 slw 0 sg str -gr -gs -3101 4351 3883 5132 OV -0.5 sg fill -gr -gs -3101.625 4351.625 3883.375 5132.375 OV -1.25 slw 0 sg str -gr -gs -4742 4741 4507 4804 4507 4678 2 P -0 sg fill -gr -gs -3922.625 4741.625 m -4507.625 4741.625 L -1.25 slw 0 sg str -gr -gs -6032 4459 6081 4541 6104 4584 6125 4628 6144 4673 6161 4719 6176 4766 6190 4813 -6201 4860 6211 4908 6218 4956 6224 5005 6227 5054 6229 5103 6229 5115 14 P -35 slw 0 sg str -gr -gs -6324 4524 6480 4958 R -1 sg fill -gr -/_Symbol ff [312 0 0 -312 0 0] mf sf -6324 4836 m 0 sg (q) show -gs -3371 3980 3613 4310 R -1 sg fill -gr -/_Helvetica ff [312 0 0 -312 0 0] mf sf -3371 4223 m 0 sg (M) show -gs -4137 4361 4293 4691 R -1 sg fill -gr -4137 4604 m 3.12 slw 0 sg (v) show -gs -6715 3941 6687 3940 6659 3937 6632 3932 6604 3925 6578 3916 6552 3905 6528 3893 -6503 3879 6481 3863 6459 3845 6438 3826 6420 3806 6402 3784 6386 3761 6372 3737 -6359 3712 6349 3686 6340 3660 6333 3633 6328 3606 6325 3578 6324 3550 6325 3522 -6328 3494 6333 3467 6340 3440 6349 3414 6359 3388 6372 3363 6386 3339 6402 3316 -6420 3294 6438 3274 6459 3255 6481 3237 6503 3221 6528 3207 6552 3195 6578 3184 -6604 3175 6632 3168 6659 3163 6687 3160 6715 3159 6742 3160 6770 3163 6798 3168 -6825 3175 6851 3184 6877 3195 6902 3207 6926 3221 6949 3237 6970 3255 6991 3274 -7010 3294 7027 3316 7043 3339 7057 3363 7070 3388 7081 3414 7089 3440 7096 3467 -7101 3494 7104 3522 7105 3550 7104 3578 7101 3606 7096 3633 7089 3660 7081 3686 -7070 3712 7057 3737 7043 3761 7027 3784 7010 3806 6991 3826 6970 3845 6949 3863 -6926 3879 6902 3893 6877 3905 6851 3916 6825 3925 6798 3932 6770 3937 6742 3940 -6715 3941 88 P closepath -0.87 sg fill -gr -gs -6715.625 3941.625 m -6687.625 3940.625 L -1.25 slw 0 sg str -gr -gs -6687.625 3940.625 m -6664.625 3938.625 L -1.25 slw 0 sg str -gr -gs -6612.625 3927.625 m -6604.625 3925.625 L -1.25 slw 0 sg str -gr -gs -6604.625 3925.625 m -6578.625 3916.625 L -1.25 slw 0 sg str -gr -gs -6578.625 3916.625 m -6564.625 3910.625 L -1.25 slw 0 sg str -gr -gs -6516.625 3887.625 m -6503.625 3879.625 L -1.25 slw 0 sg str -gr -gs -6503.625 3879.625 m -6481.625 3863.625 L -1.25 slw 0 sg str -gr -gs -6481.625 3863.625 m -6474.625 3858.625 L -1.25 slw 0 sg str -gr -gs -6435.625 3822.625 m -6420.625 3806.625 L -1.25 slw 0 sg str -gr -gs -6420.625 3806.625 m -6402.625 3784.625 L -1.25 slw 0 sg str -gr -gs -6402.625 3784.625 m -dot -1.25 slw 0 sg str -gr -gs -6373.625 3739.625 m -6372.625 3737.625 L -1.25 slw 0 sg str -gr -gs -6372.625 3737.625 m -6359.625 3712.625 L -1.25 slw 0 sg str -gr -gs -6359.625 3712.625 m -6352.625 3693.625 L -1.25 slw 0 sg str -gr -gs -6335.625 3642.625 m -6333.625 3633.625 L -1.25 slw 0 sg str -gr -gs -6333.625 3633.625 m -6328.625 3606.625 L -1.25 slw 0 sg str -gr -gs -6328.625 3606.625 m -6326.625 3592.625 L -1.25 slw 0 sg str -gr -gs -6324.625 3539.625 m -6325.625 3522.625 L -1.25 slw 0 sg str -gr -gs -6325.625 3522.625 m -6328.625 3494.625 L -1.25 slw 0 sg str -gr -gs -6328.625 3494.625 m -6329.625 3488.625 L -1.25 slw 0 sg str -gr -gs -6341.625 3436.625 m -6349.625 3414.625 L -1.25 slw 0 sg str -gr -gs -6349.625 3414.625 m -6359.625 3389.625 L -1.25 slw 0 sg str -gr -gs -6359.625 3388.625 m -6372.625 3363.625 L -1.25 slw 0 sg str -gr -gs -6384.625 3342.625 m -6386.625 3339.625 L -1.25 slw 0 sg str -gr -gs -6386.625 3339.625 m -6402.625 3316.625 L -1.25 slw 0 sg str -gr -gs -6402.625 3316.625 m -6414.625 3301.625 L -1.25 slw 0 sg str -gr -gs -6451.625 3262.625 m -6459.625 3255.625 L -1.25 slw 0 sg str -gr -gs -6459.625 3255.625 m -6481.625 3237.625 L -1.25 slw 0 sg str -gr -gs -6481.625 3237.625 m -6490.625 3230.625 L -1.25 slw 0 sg str -gr -gs -6536.625 3203.625 m -6552.625 3195.625 L -1.25 slw 0 sg str -gr -gs -6552.625 3195.625 m -6578.625 3184.625 L -1.25 slw 0 sg str -gr -gs -6578.625 3184.625 m -6583.625 3182.625 L -1.25 slw 0 sg str -gr -gs -6634.625 3168.625 m -6659.625 3163.625 L -1.25 slw 0 sg str -gr -gs -6659.625 3163.625 m -6684.625 3160.625 L -1.25 slw 0 sg str -gr -gs -6737.625 3160.625 m -6742.625 3160.625 L -1.25 slw 0 sg str -gr -gs -6742.625 3160.625 m -6770.625 3163.625 L -1.25 slw 0 sg str -gr -gs -6770.625 3163.625 m -6788.625 3166.625 L -1.25 slw 0 sg str -gr -gs -6839.625 3180.625 m -6851.625 3184.625 L -1.25 slw 0 sg str -gr -gs -6851.625 3184.625 m -6877.625 3195.625 L -1.25 slw 0 sg str -gr -gs -6877.625 3195.625 m -6886.625 3199.625 L -1.25 slw 0 sg str -gr -gs -6932.625 3225.625 m -6949.625 3237.625 L -1.25 slw 0 sg str -gr -gs -6949.625 3237.625 m -6970.625 3255.625 L -1.25 slw 0 sg str -gr -gs -6970.625 3255.625 m -6972.625 3257.625 L -1.25 slw 0 sg str -gr -gs -7010.625 3294.625 m -7027.625 3316.625 L -1.25 slw 0 sg str -gr -gs -7027.625 3316.625 m -7040.625 3335.625 L -1.25 slw 0 sg str -gr -gs -7067.625 3381.625 m -7070.625 3388.625 L -1.25 slw 0 sg str -gr -gs -7070.625 3388.625 m -7081.625 3414.625 L -1.25 slw 0 sg str -gr -gs -7081.625 3414.625 m -7086.625 3429.625 L -1.25 slw 0 sg str -gr -gs -7098.625 3480.625 m -7101.625 3494.625 L -1.25 slw 0 sg str -gr -gs -7101.625 3494.625 m -7104.625 3522.625 L -1.25 slw 0 sg str -gr -gs -7104.625 3522.625 m -7104.625 3531.625 L -1.25 slw 0 sg str -gr -gs -7103.625 3584.625 m -7101.625 3606.625 L -1.25 slw 0 sg str -gr -gs -7101.625 3606.625 m -7096.625 3633.625 L -1.25 slw 0 sg str -gr -gs -7096.625 3633.625 m -7096.625 3634.625 L -1.25 slw 0 sg str -gr -gs -7081.625 3685.625 m -7081.625 3686.625 L -1.25 slw 0 sg str -gr -gs -7081.625 3686.625 m -7070.625 3712.625 L -1.25 slw 0 sg str -gr -gs -7070.625 3712.625 m -7060.625 3732.625 L -1.25 slw 0 sg str -gr -gs -7032.625 3777.625 m -7027.625 3784.625 L -1.25 slw 0 sg str -gr -gs -7027.625 3784.625 m -7010.625 3806.625 L -1.25 slw 0 sg str -gr -gs -7010.625 3806.625 m -7000.625 3817.625 L -1.25 slw 0 sg str -gr -gs -6961.625 3853.625 m -6949.625 3863.625 L -1.25 slw 0 sg str -gr -gs -6949.625 3863.625 m -6926.625 3879.625 L -1.25 slw 0 sg str -gr -gs -6926.625 3879.625 m -6920.625 3883.625 L -1.25 slw 0 sg str -gr -gs -6873.625 3907.625 m -6851.625 3916.625 L -1.25 slw 0 sg str -gr -gs -6851.625 3916.625 m -6825.625 3925.625 L -1.25 slw 0 sg str -gr -gs -6825.625 3925.625 m -dot -1.25 slw 0 sg str -gr -gs -6773.625 3936.625 m -6770.625 3937.625 L -1.25 slw 0 sg str -gr -gs -6770.625 3937.625 m -6742.625 3940.625 L -1.25 slw 0 sg str -gr -gs -6742.625 3940.625 m -6722.625 3941.625 L -1.25 slw 0 sg str -gr -gs -6715 3856 6690 3855 6666 3852 6641 3847 6618 3840 6595 3831 6572 3821 6551 3808 -6531 3794 6512 3779 6494 3762 6478 3743 6463 3724 6450 3703 6438 3681 6429 3658 -6421 3635 6415 3611 6411 3587 6409 3562 6409 3538 6411 3513 6415 3489 6421 3465 -6429 3442 6438 3419 6450 3397 6463 3376 6478 3356 6494 3338 6512 3321 6531 3306 -6551 3291 6572 3279 6595 3269 6618 3260 6641 3253 6666 3248 6690 3245 6715 3244 -6739 3245 6764 3248 6788 3253 6811 3260 6835 3269 6857 3279 6878 3291 6898 3306 -6917 3321 6935 3338 6951 3356 6966 3376 6980 3397 6991 3419 7001 3442 7008 3465 -7014 3489 7018 3513 7020 3538 7020 3562 7018 3587 7014 3611 7008 3635 7001 3658 -6991 3681 6980 3703 6966 3724 6951 3743 6935 3762 6917 3779 6898 3794 6878 3808 -6857 3821 6835 3831 6811 3840 6788 3847 6764 3852 6739 3855 6715 3856 78 P closepath -1 sg fill -gr -gs -6715.625 3856.625 m -6690.625 3855.625 L -1.25 slw 0 sg str -gr -gs -6690.625 3855.625 m -6666.625 3852.625 L -1.25 slw 0 sg str -gr -gs -6666.625 3852.625 m -6664.625 3852.625 L -1.25 slw 0 sg str -gr -gs -6613.625 3838.625 m -6595.625 3831.625 L -1.25 slw 0 sg str -gr -gs -6595.625 3831.625 m -6572.625 3821.625 L -1.25 slw 0 sg str -gr -gs -6572.625 3821.625 m -6566.625 3817.625 L -1.25 slw 0 sg str -gr -gs -6523.625 3787.625 m -6512.625 3779.625 L -1.25 slw 0 sg str -gr -gs -6512.625 3779.625 m -6494.625 3762.625 L -1.25 slw 0 sg str -gr -gs -6494.625 3762.625 m -6486.625 3752.625 L -1.25 slw 0 sg str -gr -gs -6454.625 3710.625 m -6450.625 3703.625 L -1.25 slw 0 sg str -gr -gs -6450.625 3703.625 m -6438.625 3681.625 L -1.25 slw 0 sg str -gr -gs -6438.625 3681.625 m -6431.625 3664.625 L -1.25 slw 0 sg str -gr -gs -6416.625 3613.625 m -6415.625 3611.625 L -1.25 slw 0 sg str -gr -gs -6415.625 3611.625 m -6411.625 3587.625 L -1.25 slw 0 sg str -gr -gs -6411.625 3587.625 m -6409.625 3563.625 L -1.25 slw 0 sg str -gr -gs -6409.625 3562.625 m -6409.625 3538.625 L -1.25 slw 0 sg str -gr -gs -6412.625 3510.625 m -6415.625 3489.625 L -1.25 slw 0 sg str -gr -gs -6415.625 3489.625 m -6421.625 3465.625 L -1.25 slw 0 sg str -gr -gs -6421.625 3465.625 m -6423.625 3460.625 L -1.25 slw 0 sg str -gr -gs -6442.625 3411.625 m -6450.625 3397.625 L -1.25 slw 0 sg str -gr -gs -6450.625 3397.625 m -6463.625 3376.625 L -1.25 slw 0 sg str -gr -gs -6463.625 3376.625 m -6469.625 3368.625 L -1.25 slw 0 sg str -gr -gs -6504.625 3328.625 m -6512.625 3321.625 L -1.25 slw 0 sg str -gr -gs -6512.625 3321.625 m -6531.625 3306.625 L -1.25 slw 0 sg str -gr -gs -6531.625 3306.625 m -6544.625 3296.625 L -1.25 slw 0 sg str -gr -gs -6591.625 3271.625 m -6595.625 3269.625 L -1.25 slw 0 sg str -gr -gs -6595.625 3269.625 m -6618.625 3260.625 L -1.25 slw 0 sg str -gr -gs -6618.625 3260.625 m -6639.625 3254.625 L -1.25 slw 0 sg str -gr -gs -6691.625 3245.625 m -6715.625 3244.625 L -1.25 slw 0 sg str -gr -gs -6715.625 3244.625 m -6739.625 3245.625 L -1.25 slw 0 sg str -gr -gs -6739.625 3245.625 m -6742.625 3245.625 L -1.25 slw 0 sg str -gr -gs -6794.625 3255.625 m -6811.625 3260.625 L -1.25 slw 0 sg str -gr -gs -6811.625 3260.625 m -6835.625 3269.625 L -1.25 slw 0 sg str -gr -gs -6835.625 3269.625 m -6842.625 3272.625 L -1.25 slw 0 sg str -gr -gs -6888.625 3299.625 m -6898.625 3306.625 L -1.25 slw 0 sg str -gr -gs -6898.625 3306.625 m -6917.625 3321.625 L -1.25 slw 0 sg str -gr -gs -6917.625 3321.625 m -6928.625 3331.625 L -1.25 slw 0 sg str -gr -gs -6962.625 3371.625 m -6966.625 3376.625 L -1.25 slw 0 sg str -gr -gs -6966.625 3376.625 m -6980.625 3397.625 L -1.25 slw 0 sg str -gr -gs -6980.625 3397.625 m -6989.625 3415.625 L -1.25 slw 0 sg str -gr -gs -7008.625 3464.625 m -7008.625 3465.625 L -1.25 slw 0 sg str -gr -gs -7008.625 3465.625 m -7014.625 3489.625 L -1.25 slw 0 sg str -gr -gs -7014.625 3489.625 m -7018.625 3513.625 L -1.25 slw 0 sg str -gr -gs -7018.625 3513.625 m -7018.625 3514.625 L -1.25 slw 0 sg str -gr -gs -7020.625 3567.625 m -7018.625 3587.625 L -1.25 slw 0 sg str -gr -gs -7018.625 3587.625 m -7014.625 3611.625 L -1.25 slw 0 sg str -gr -gs -7014.625 3611.625 m -7012.625 3617.625 L -1.25 slw 0 sg str -gr -gs -6997.625 3668.625 m -6991.625 3681.625 L -1.25 slw 0 sg str -gr -gs -6991.625 3681.625 m -6980.625 3703.625 L -1.25 slw 0 sg str -gr -gs -6980.625 3703.625 m -6973.625 3713.625 L -1.25 slw 0 sg str -gr -gs -6941.625 3755.625 m -6935.625 3762.625 L -1.25 slw 0 sg str -gr -gs -6935.625 3762.625 m -6917.625 3779.625 L -1.25 slw 0 sg str -gr -gs -6917.625 3779.625 m -6903.625 3790.625 L -1.25 slw 0 sg str -gr -gs -6859.625 3820.625 m -6857.625 3821.625 L -1.25 slw 0 sg str -gr -gs -6857.625 3821.625 m -6835.625 3831.625 L -1.25 slw 0 sg str -gr -gs -6835.625 3831.625 m -6812.625 3839.625 L -1.25 slw 0 sg str -gr -gs -6761.625 3852.625 m -6739.625 3855.625 L -1.25 slw 0 sg str -gr -gs -6739.625 3855.625 m -6715.625 3856.625 L -1.25 slw 0 sg str -gr -gs -7515.625 3941.625 m -7464.625 3941.625 L -1.25 slw 0 sg str -gr -gs -7411.625 3941.625 m -7360.625 3941.625 L -1.25 slw 0 sg str -gr -gs -7307.625 3941.625 m -7256.625 3941.625 L -1.25 slw 0 sg str -gr -gs -7203.625 3941.625 m -7151.625 3941.625 L -1.25 slw 0 sg str -gr -gs -7098.625 3941.625 m -7047.625 3941.625 L -1.25 slw 0 sg str -gr -gs -6994.625 3941.625 m -6943.625 3941.625 L -1.25 slw 0 sg str -gr -gs -6890.625 3941.625 m -6839.625 3941.625 L -1.25 slw 0 sg str -gr -gs -6786.625 3941.625 m -6735.625 3941.625 L -1.25 slw 0 sg str -gr -gs -7340 3960 7385 4128 7295 4128 2 P -0 sg fill -gr -gs -7340 5152 7295 4984 7385 4984 2 P -0 sg fill -gr -gs -7340.625 4128.625 m -7340.625 4984.625 L -1.25 slw 0 sg str -gr -gs -7253 4391 7427 4721 R -1 sg fill -gr -7253 4634 m 3.12 slw 0 sg (h) show -gs -3186 4436 3798 5047 OV -1 sg fill -gr -gs -3186.625 4436.625 3798.375 5047.375 OV -1.25 slw 0 sg str -gr -3292 4858 m 0 sg (r) show -gs -3492.625 4741.625 m -3216.625 4465.625 L -1.25 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob15a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob15a.gif deleted file mode 100755 index 0a4c49457..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob15a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob15a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob15a.pdf deleted file mode 100644 index 5a2e23d1f..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob15a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob17.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob17.eps deleted file mode 100755 index e19e23579..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob17.eps +++ /dev/null @@ -1,8 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: hw9p3f.eps -%%CreationDate: 11/9/1994 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%BoundingBox:158 443 545 703 -%%EndComments save % Basic Definitions /gs {gsave} def /gr {grestore} def /t {translate} def /sc {scale} def /sg {setgray} def /srgb {setrgbcolor} def /ff {findfont} def /mf {makefont} def /sf {setfont} def /slw {setlinewidth} def /str {stroke} def /slc {setlinecap} def % Polyline operators /pl % x y pl x y { transform 0.25 sub round 0.25 add exch 0.25 sub round 0.25 add exch itransform } def /setstrokeadjust where { pop true setstrokeadjust /c % x1 y1 x2 y2 x3 y3 c - {curveto} def /C /c load def /v % x2 y2 x3 y3 v - {currentpoint 6 2 roll curveto} def /V /v load def /y % x1 y1 x2 y2 y - {2 copy curveto} def /Y /y load def /l % x y l - {lineto} def /L /l load def /m % x y m - {moveto} def /dot {currentpoint transform exch 1 add exch itransform lineto} def } {%else /c {pl curveto} def /C /c load def /v {currentpoint 6 2 roll pl curveto} def /V /v load def /y {pl 2 copy curveto} def /Y /y load def /l {pl lineto} def /L /l load def /m {pl moveto} def /dot {currentpoint transform exch 1 add exch itransform lineto} def }ifelse % Rectangle: left top right bottom R - /rectangleDict 4 dict def /R {rectangleDict begin /bottom exch def /right exch def /top exch def /left exch def right bottom m right top L left top L left bottom L right bottom L closepath end} bind def % Oval: left top right bottom OV - /ovalDict 10 dict def /OV {ovalDict begin /bottom exch def /right exch def /top exch def /left exch def /yrad bottom top sub 2 div def /xrad right left sub 2 div def /y yrad top add def /x xrad left add def x y t xrad yrad sc newpath 0 0 1 0 360 arc closepath 1 xrad div 1 yrad div sc % Reverse scaling. end} bind def % Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - /rRectangleDict 10 dict def /RR { rRectangleDict begin 2 div /hvy exch def 2 div /hvx exch def /bottom exch def /right exch def /top exch def /left exch def /nleft hvx left add hvx div def /ntop hvy top add hvy div def /nright right hvx sub hvx div def /nbottom bottom hvy sub hvy div def hvx hvy sc newpath nright nbottom 1 90 0 arcn nright ntop 1 360 270 arcn nleft ntop 1 270 180 arcn nleft nbottom 1 180 90 arcn closepath 1 hvx div 1 hvy div sc end } bind def % Arc: left top right bottom startangle endangle A - /arcDict 12 dict def /A { arcDict begin /endangle exch def /startangle exch def /bottom exch def /right exch def /top exch def /left exch def /yrad bottom top sub 2 div def /y yrad top add def /xrad right left sub 2 div def /x xrad left add def x y t xrad yrad neg sc 0 0 1 startangle endangle arc 1 xrad div 1 yrad neg div sc % Reverse scaling. end } bind def % Polygon: xn yn ... x1 y1 n-1 P - /polyDict 1 dict def /P { polyDict begin /numOfPoints exch def m numOfPoints {L} repeat end } bind def % Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - /fillDict 11 dict def /patfill { fillDict begin gs /fa exch def % Grab pattern. srgb % Set background color. 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. flattenpath pathbbox % Get path bounding box. /ury exch def /urx exch def /lly exch def /llx exch def % Get edges. clip newpath llx lly m llx ury L urx ury L urx lly L closepath fill % Fill in background color. srgb % Set foreground color. /w urx llx sub ceiling cvi def /h ury lly sub ceiling cvi def /bytes w 8 div ceiling cvi def /patstr bytes 8 mul string def /row 0 def /patproc { 0 1 7 { /row exch def row bytes mul 1 row 1 add bytes mul 1 sub {patstr exch fa row 8 mod get put} for } for patstr } def llx lly t w h sc w h true [w 0 0 h 0 0] patproc imagemask gr end } bind def % Outline string show: string olshow - /outlinedict 1 dict def /olshow { outlinedict begin /cs 1 string def { cs 0 3 -1 roll put % Stuff the char into the string cs. gs 1 sg cs show gr % Paint the char white and move back. cs true charpath currentpoint str m % Draw char outline. } forall end } bind def % Shadow string show: string shadow-x shadow-y shshow - /shadowdict 3 dict def /shshow { shadowdict begin /shady exch def /shadx exch def /cs 1 string def { cs 0 3 -1 roll put % Stuff the char into the string cs. currentpoint shadx shady rmoveto % Draw shadow. cs show m gs 1 sg cs show gr % Paint char white. cs true charpath currentpoint str m % Draw char outline. shadx 0 rmoveto % Move to next char position. } forall end } bind def % Text Encoding Procedure /Z % array literal literal direction Z - { pop findfont begin currentdict dup length 1 add dict begin {1 index /FID ne {def} {pop pop} ifelse} forall /FontName exch def dup length 0 ne { /Encoding Encoding 256 array copy def 0 exch { dup type /nametype eq {Encoding 2 index 2 index put pop 1 add} {exch pop} ifelse } forall } if pop currentdict dup end end /FontName get exch definefont pop } def %%EndProlog %%BeginEncoding: _Times-Roman Times-Roman [ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis /Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute /egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde /oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex /udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls /registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash /infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation /product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash /questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta /guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe /endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide /lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright /fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand /Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex /Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex /Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla /hungarumlaut/ogonek/caron ] /_Times-Roman/Times-Roman 0 Z %%EndEncoding gs 0 792 t 0.058 -0.058 sc 2 slc gs 3715 1803 4132 2029 R 1 sg fill gr /_Times-Roman ff [208 0 0 -208 0 0] mf sf 3715 1959 m 0 sg (M, R) show gs 2986 5510 9216 5823 R 0.93 sg fill gr gs 2986.625 5510.625 9216.375 5823.375 R 1.25 slw 0 sg str gr gs 3611 2385 3661 2386 3711 2389 3761 2394 3810 2401 3859 2410 3908 2421 3957 2434 4004 2448 4052 2465 4098 2484 4144 2504 4188 2526 4232 2550 4275 2576 4317 2604 4358 2632 4397 2663 4436 2696 4473 2729 4508 2765 4542 2801 4575 2839 4606 2878 4635 2919 4663 2960 4689 3003 4696 3015 3611 3635 28 P 1 sg fill gr gs 3611 2385 3661 2386 3711 2389 3761 2394 3810 2401 3859 2410 3908 2421 3957 2434 4004 2448 4052 2465 4098 2484 4144 2504 4188 2526 4232 2550 4275 2576 4317 2604 4358 2632 4397 2663 4436 2696 4473 2729 4508 2765 4542 2801 4575 2839 4606 2878 4635 2919 4663 2960 4689 3003 4696 3015 27 P 1.25 slw 0 sg str gr gs 5790 3655 5715 3652 5665 3648 5615 3642 5566 3634 5517 3624 5468 3612 5420 3599 5373 3583 5326 3565 5280 3546 5235 3525 5190 3501 5147 3477 5105 3450 5063 3422 5023 3392 4984 3360 4947 3327 4910 3293 4876 3257 4842 3220 4810 3181 4780 3141 4751 3100 4725 3058 4705 3025 26 P 1.25 slw 0 sg str gr gs 5798 3655 5849 3655 5899 3658 5948 3663 5998 3670 6047 3680 6096 3691 6144 3703 6192 3718 6239 3735 6286 3753 6331 3774 6376 3796 6420 3820 6463 3846 6505 3873 6545 3902 6585 3933 6623 3965 6660 3999 6696 4034 6730 4070 6762 4109 6793 4148 6823 4188 6851 4230 6877 4272 6884 4284 5798 4905 28 P 1 sg fill gr gs 5798 3655 5849 3655 5899 3658 5948 3663 5998 3670 6047 3680 6096 3691 6144 3703 6192 3718 6239 3735 6286 3753 6331 3774 6376 3796 6420 3820 6463 3846 6505 3873 6545 3902 6585 3933 6623 3965 6660 3999 6696 4034 6730 4070 6762 4109 6793 4148 6823 4188 6851 4230 6877 4272 6884 4284 27 P 1.25 slw 0 sg str gr gs 7977 4924 7902 4922 7853 4918 7803 4912 7753 4904 7705 4894 7656 4882 7608 4868 7560 4852 7514 4835 7468 4815 7422 4794 7378 4771 7334 4746 7292 4719 7251 4691 7211 4661 7172 4630 7134 4597 7098 4562 7063 4526 7030 4489 6998 4451 6968 4411 6939 4370 6912 4328 6892 4294 26 P 1.25 slw 0 sg str gr gs 3611.625 2385.625 m 3611.625 5510.625 L 1.25 slw 0 sg str gr gs 7977.625 4924.625 m 7977.625 5510.625 L 1.25 slw 0 sg str gr gs 3455.625 2385.625 m 3142.625 2385.625 L 1.25 slw 0 sg str gr gs 3298 2385 3372 2543 3224 2543 2 P 0 sg fill gr gs 3298 5510 3224 5352 3372 5352 2 P 0 sg fill gr gs 3298.625 2385.625 m 3298.625 5510.625 L 1.25 slw 0 sg str gr gs 7674.625 4924.625 m 7361.625 4924.625 L 1.25 slw 0 sg str gr gs 7517 4924 7591 5082 7443 5082 2 P 0 sg fill gr gs 7517 5510 7443 5352 7591 5352 2 P 0 sg fill gr gs 7517.625 4924.625 m 7517.625 5510.625 L 1.25 slw 0 sg str gr gs 7917 5553 8056 5779 R 1 sg fill gr 7917 5709 m 2.08 slw 0 sg (A) show gs 7309 5085 7413 5310 R 1 sg fill gr 7309 5241 m 2.08 slw 0 sg (h) show gs 3073 3835 3212 4060 R 1 sg fill gr 3073 3991 m 2.08 slw 0 sg (H) show gs 3455 2072 3767 2385 OV 0 sg fill gr gs 3455.625 2072.625 3767.375 2385.375 OV 1.25 slw 0 sg str gr gr %%Trailer restore \ No newline at end of file diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob17.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob17.gif deleted file mode 100755 index f67c7abc4..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob17.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob17.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob17.pdf deleted file mode 100644 index 0c11a9542..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob17.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob21a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob21a.eps deleted file mode 100755 index 1bfb0570b..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob21a.eps +++ /dev/null @@ -1,475 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Ball_Stick_Collision.eps -%%CreationDate: 12/16/1995 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%BoundingBox:94 401 385 647 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -5017 2786 5330 6536 R -0.5 sg fill -gr -gs -5017.625 2786.625 5330.375 6536.375 R -1.25 slw 0 sg str -gr -gs -5486.625 2786.625 m -6423.625 2786.625 L -1.25 slw 0 sg str -gr -gs -6423.625 6536.625 m -5486.625 6536.625 L -1.25 slw 0 sg str -gr -gs -5017.625 4661.625 m -4896.625 4661.625 L -1.25 slw 0 sg str -gr -gs -4843.625 4661.625 m -4723.625 4661.625 L -1.25 slw 0 sg str -gr -gs -4670.625 4661.625 m -4549.625 4661.625 L -1.25 slw 0 sg str -gr -gs -4496.625 4661.625 m -4376.625 4661.625 L -1.25 slw 0 sg str -gr -gs -4323.625 4661.625 m -4202.625 4661.625 L -1.25 slw 0 sg str -gr -gs -4149.625 4661.625 m -4028.625 4661.625 L -1.25 slw 0 sg str -gr -gs -3975.625 4661.625 m -3855.625 4661.625 L -1.25 slw 0 sg str -gr -gs -3802.625 4661.625 m -3681.625 4661.625 L -1.25 slw 0 sg str -gr -gs -3628.625 4661.625 m -3508.625 4661.625 L -1.25 slw 0 sg str -gr -gs -3455.625 4661.625 m -3334.625 4661.625 L -1.25 slw 0 sg str -gr -gs -3281.625 4661.625 m -3160.625 4661.625 L -1.25 slw 0 sg str -gr -gs -3107.625 4661.625 m -2987.625 4661.625 L -1.25 slw 0 sg str -gr -gs -2934.625 4661.625 m -2813.625 4661.625 L -1.25 slw 0 sg str -gr -gs -2760.625 4661.625 m -2640.625 4661.625 L -1.25 slw 0 sg str -gr -gs -2587.625 4661.625 m -2466.625 4661.625 L -1.25 slw 0 sg str -gr -gs -2413.625 4661.625 m -2292.625 4661.625 L -1.25 slw 0 sg str -gr -gs -2239.625 4661.625 m -2119.625 4661.625 L -1.25 slw 0 sg str -gr -gs -2066.625 4661.625 m -1945.625 4661.625 L -1.25 slw 0 sg str -gr -gs -2361 3255 2673 3567 OV -0.75 sg fill -gr -gs -2361.5 3255.5 2673.5 3567.5 OV -35 slw 0 sg str -gr -gs -1892.625 3411.625 m -2204.625 3411.625 L -1.25 slw 0 sg str -gr -gs -3767 3411 3547 3514 3547 3308 2 P -0 sg fill -gr -gs -2517.625 3411.625 m -3767.625 3411.625 L -1.25 slw 0 sg str -gr -gs -4644 4739 4921 5052 R -1 sg fill -gr -/_Times-Roman ff [312 0 0 -312 0 0] mf sf -4644 4982 m 0 sg (M) show -gs -2396 2864 2638 3177 R -1 sg fill -gr -2396 3107 m 3.12 slw 0 sg (m) show -gs -3845 3255 4001 3567 R -1 sg fill -gr -3845 3498 m 3.12 slw 0 sg (v) show -gs -2074 3411 2177 3631 1971 3631 2 P -0 sg fill -gr -gs -2074 4661 1971 4441 2177 4441 2 P -0 sg fill -gr -gs -2074.625 3411.625 m -2074.625 4661.625 L -1.25 slw 0 sg str -gr -gs -1996 3880 2152 4192 R -1 sg fill -gr -1996 4123 m 3.12 slw 0 sg (b) show -gs -6284 2786 6387 3006 6181 3006 2 P -0 sg fill -gr -gs -6284 6536 6181 6316 6387 6316 2 P -0 sg fill -gr -gs -6284.625 2786.625 m -6284.625 6536.625 L -1.25 slw 0 sg str -gr -gs -6197 4505 6371 4817 R -1 sg fill -gr -6197 4748 m 3.12 slw 0 sg (L) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob21a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob21a.gif deleted file mode 100755 index 17863b81f..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob21a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob21a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob21a.pdf deleted file mode 100644 index c95bc1e39..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob21a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob24.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob24.eps deleted file mode 100755 index b5bad28a2..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob24.eps +++ /dev/null @@ -1,723 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Wed Oct 26 08:39:56 1994 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 289 287 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /arwlen 6 def /arw 4 def /arow { - gsave newpath moveto lineto unpagectm concat { - - } { - - } { - - } { - - } pathforall newpath 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath crlinalph setalpha strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - crstrpat findfont exch strwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /arwpath { - sc7mt currentmatrix pop gsave newpath moveto lineto unpagectm dup concat { - - } { - - } { - - } { - - } pathforall grestore unpagectm 5 -1 roll concat 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath sc7mt setmatrix -} bind def end -TopDrawDict begin /estroke { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /efill { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath unpagectm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /apstroke { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc pie chord or { - closepath - } if crlinalph setalpha pie not chord not and { - crfrtarw { - 2 copy crlinw exch gsave newpath angle1 1 add cos radius mul radius add angle1 1 add sin radius mul radius add moveto angle1 cos radius mul radius add angle1 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if crendarw { - 2 copy crlinw exch gsave newpath angle2 1 sub cos radius mul radius add angle2 1 sub sin radius mul radius add moveto angle2 cos radius mul radius add angle2 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if - } if crlincp setlinecap crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /apfill { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup 5 -2 roll arc pie chord or { - closepath - } if 1 xscale div 1 yscale div scale crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /mkepath { - dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def /closed exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc closed pie or chord or { - closepath - } if unpagectm -} bind def end -TopDrawDict begin /closedspl false def /nspans 0 def /sstrt { - gsave dodrawctm /closedspl exch def /nspans 0 def newpath -} bind def /sstrtpath { - dodrawctm /closedspl exch def /nspans 0 def newpath -} bind def /sadd { - nspans 0 eq { - moveto - } { - pop pop - } ifelse curveto /nspans nspans 1 add def -} bind def /splstroke { - nspans 0 gt { - unpagectm concat closedspl { - closepath - } if crlincp setlinecap crlinjn setlinejoin crlinalph setalpha crlinw setlinewidth crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - flattenpath crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse - } { - pop pop - } ifelse grestore -} bind def /splfill { - nspans 0 gt { - closedspl { - closepath - } if crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - flattenpath crfilpat findfont exch crfilstyl 0 eq { - filwittrans { - trpateofil - } { - oppateofil - } ifelse - } { - filwittrans { - trpatfil - } { - oppatfil - } ifelse - } ifelse - } { - crfilstyl 0 eq { - eofill - } { - fill - } ifelse pop - } ifelse - } if grestore -} bind def /mksplpath { - nspans 0 gt { - closedspl { - closepath - } if - } if -} bind def end -TopDrawDict begin /defpat { - 7 dict begin /FontDict 9 dict def FontDict begin /cache exch def /key exch def /proc exch cvx def /mtx exch matrix invertmatrix def /height exch def /width exch def /ctm matrix currentmatrix def /ptm matrix identmatrix def /str -(12345678901234567890123456789012) def end /FontBBox [ 0 0 FontDict /width get FontDict /height get ] def /FontMatrix FontDict /mtx get def /Encoding StandardEncoding def /FontType 3 def /BuildChar { - pop begin FontDict begin width 0 cache { - 0 0 width height setcachedevice - } { - setcharwidth - } ifelse 0 0 moveto width 0 lineto width height lineto 0 height lineto closepath clip newpath gsave proc grestore end end - } def FontDict /key get currentdict definefont end -} bind def /patpath { - dup type /dicttype eq { - begin unpagectm - } { - exch begin unpagectm concat - } ifelse currentdict setfont FontDict begin FontMatrix concat width 0 dtransform round width div exch round dup 0 eq { - pop 1 - } if width div exch 0 height dtransform round dup 0 eq { - pop 1 - } if height div exch round height div exch 0 0 transform round exch round exch ptm astore setmatrix pathbbox height div ceiling height mul 4 1 roll width div ceiling width mul 4 1 roll height div floor height mul 4 1 roll width div floor width mul 4 -1 -roll 2 index sub height div ceiling cvi exch 3 index sub width div ceiling cvi exch 4 2 roll moveto FontMatrix ptm invertmatrix pop { - gsave ptm concat dup str length idiv { - str show - } repeat dup str length mod str exch 0 exch getinterval show grestore 0 height rmoveto - } repeat pop end end -} bind def /patfil { - gsave clip patpath grestore newpath -} bind def /trpatfil { - patfil -} bind def /oppatfil { - gsave 1 setgray 1 setalpha fill grestore patfil -} bind def /trpateofil { - pateofil -} bind def /oppateofil { - gsave 1 setgray 1 setalpha fill grestore pateofil -} bind def /pateofil { - gsave eoclip patpath grestore newpath -} bind def /patstrk { - gsave strokepath clip patpath grestore newpath -} bind def /trpatstrk { - patstrk -} bind def /oppatstrk { - gsave 1 setgray 1 setalpha stroke grestore patstrk -} bind def /patashow { - (0) exch { - 2 copy 0 exch put pop dup false charpath currentpoint 5 index type /dicttype eq { - 5 index patfil - } { - 6 index 6 index patfil - } ifelse moveto 3 copy pop rmoveto - } forall pop pop pop dup type /dicttype ne { - pop - } if pop -} bind def /patshow { - 0 exch 0 exch patashow -} bind def /rpatfil { - gsave setalpha pop setrgbcolor rpath tpatstr cvs cvn invpats { - piddict exch get - } { - ipiddict exch get - } ifelse findfont oppatfil grestore -} bind def /tpatstr 10 string def /getpat { - tpatstr cvs cvn invpats { - piddict exch get - } { - ipiddict exch get - } ifelse -} bind def end -TopDrawDict begin 8 8 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 8 2 rectfill -} bind /hline1 true defpat pop 16 16 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 16 8 rectfill -} bind /hline2 true defpat pop 32 32 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 32 16 rectfill -} bind /hline3 true defpat pop 8 8 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 2 8 rectfill -} bind /vline1 true defpat pop 16 16 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 8 16 rectfill -} bind /vline2 true defpat pop 32 32 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 16 32 rectfill -} bind /vline3 true defpat pop 15 15 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 1 setlinewidth stroke -} bind /rdline1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 2 scale 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 3 setlinewidth stroke -} bind /rdline2 true defpat pop 60 60 [ 300 72 div 0 0 300 72 div 0 0 ] { - 4 4 scale 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 4 setlinewidth stroke -} bind /rdline3 true defpat pop 15 15 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 1 setlinewidth stroke -} bind /ldline1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 2 scale 2 setlinecap 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 3 setlinewidth stroke -} bind /ldline2 true defpat pop 60 60 [ 300 72 div 0 0 300 72 div 0 0 ] { - 4 4 scale 2 setlinecap 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 4 setlinewidth stroke -} bind /ldline3 true defpat pop 7 7 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 4 0 moveto 4 7 lineto 0 4 moveto 7 4 lineto 0.5 setlinewidth stroke -} bind /gray1 true defpat pop 11 11 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 6 0 moveto 6 11 lineto 0 6 moveto 11 6 lineto 0.5 setlinewidth stroke -} bind /gray2 true defpat pop 15 15 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 8 0 moveto 8 15 lineto 0 8 moveto 15 8 lineto 0.5 setlinewidth stroke -} bind /gray3 true defpat pop 19 19 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 10 0 moveto 10 19 lineto 0 10 moveto 19 10 lineto 0.5 setlinewidth stroke -} bind /gray4 true defpat pop 23 23 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 12 0 moveto 12 23 lineto 0 12 moveto 23 12 lineto 0.5 setlinewidth stroke -} bind /gray5 true defpat pop 31 31 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 16 0 moveto 16 31 lineto 0 16 moveto 31 16 lineto 0.5 setlinewidth stroke -} bind /gray6 true defpat pop 20 20 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 10 0 moveto 20 10 lineto 0 10 moveto 10 20 lineto 10 0 moveto 0 10 lineto 20 10 moveto 10 20 lineto 0.25 setlinewidth stroke -} bind /xhatch1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 2 scale 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 0.5 setlinewidth stroke -} bind /xhatch2 true defpat pop 60 60 [ 300 72 div 0 0 300 72 div 0 0 ] { - 4 4 scale 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 2 setlinewidth stroke -} bind /xhatch3 true defpat pop 20 20 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 10 10 4 0 360 arc closepath fill -} bind /dots1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 15 15 8 0 360 arc closepath fill -} bind /dots2 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 25 25 20 0 360 arc closepath fill -} bind /dots3 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 0 26 moveto 50 0 rlineto 0 1 moveto 50 0 rlineto 26 50 moveto 0 -25 rlineto 1 25 moveto 0 -25 rlineto 1 setlinewidth stroke -} bind /bricks true defpat pop 25 25 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0.5 0.5 scale 0 0 25 25 rectfill 25 25 25 25 rectfill -} bind /check1 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 25 25 rectfill 25 25 25 25 rectfill -} bind /check2 true defpat pop 80 80 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 40 40 rectfill 40 40 40 40 rectfill -} bind /check3 true defpat pop 20 20 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 10 0 moveto 20 10 lineto 10 20 lineto 0 10 lineto closepath fill -} bind /diamond1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 15 0 moveto 30 15 lineto 15 30 lineto 0 15 lineto closepath fill -} bind /diamond2 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 25 0 moveto 50 25 lineto 25 50 lineto 0 25 lineto closepath fill -} bind /diamond3 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 10 10 30 30 rectfill 0 0 moveto 50 50 lineto 0 50 moveto 50 0 lineto 1 setlinewidth stroke -} bind /weave true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 25 25 22 0 360 arc closepath 1 setlinewidth stroke -} bind /donut true defpat pop 100 100 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap -20 0 moveto 25 25 rlineto -25 25 rlineto 25 25 rlineto -25 25 rlineto 5 0 moveto 25 25 rlineto -25 25 rlineto 25 25 rlineto -25 25 rlineto 30 0 moveto 25 25 rlineto -25 25 rlineto 25 25 rlineto -25 25 rlineto 55 0 moveto 25 25 rlineto --25 25 rlineto 25 25 rlineto -25 25 rlineto 80 0 moveto 25 25 rlineto -25 25 rlineto 25 25 rlineto -25 25 rlineto 1 setlinewidth stroke -} bind /ziggy true defpat pop 100 100 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 0 -20 moveto 25 25 rlineto 25 -25 rlineto 25 25 rlineto 25 -25 rlineto 0 5 moveto 25 25 rlineto 25 -25 rlineto 25 25 rlineto 25 -25 rlineto 0 30 moveto 25 25 rlineto 25 -25 rlineto 25 25 rlineto 25 -25 rlineto 0 55 moveto 25 25 rlineto -25 --25 rlineto 25 25 rlineto 25 -25 rlineto 0 80 moveto 25 25 rlineto 25 -25 rlineto 25 25 rlineto 25 -25 rlineto 1 setlinewidth stroke -} bind /zaggy true defpat pop 80 80 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 0 0 moveto 0 40 lineto 40 40 lineto 40 80 lineto 80 80 lineto 0 60 moveto 20 60 lineto 20 80 lineto 20 0 moveto 20 20 lineto 60 20 lineto 60 60 lineto 80 60 lineto 1 setlinewidth stroke -} bind /zaggyd true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 0 12.5 moveto 6.25 0 rlineto 0 37.5 moveto 31.25 0 rlineto 50 12.5 moveto -31.25 0 rlineto 50 37.5 moveto -6.25 0 rlineto 12.5 0 moveto 0 6.25 rlineto 37.5 0 moveto 0 31.25 rlineto 12.5 50 moveto 0 -31.25 rlineto 37.5 50 moveto 0 -6.25 -rlineto 1 setlinewidth stroke -} bind /plusses true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 0 10 moveto 10 0 rlineto 0 -10 rlineto 0 40 moveto 10 0 rlineto 0 10 rlineto 50 10 moveto -10 0 rlineto 0 -10 rlineto 50 40 moveto -10 0 rlineto 0 10 rlineto 7 7 moveto 36 0 rlineto 0 36 rlineto -36 0 rlineto closepath 1 setlinewidth -stroke -} bind /boxes true defpat pop 100 100 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 50 50 40 0 360 arc closepath 40 60 moveto 0 8 rlineto 60 60 moveto 0 8 rlineto 50 45 moveto 0 8 rlineto 35 35 moveto 35 21 65 21 65 35 curveto 1 setlinewidth stroke -} bind /smiley true defpat pop /piddict 256 dict def piddict begin /1 /gray3 def /2 /gray2 def /3 /gray1 def /4 /gray6 def /5 /gray5 def /6 /gray4 def /7 /hline3 def /8 /hline2 def /9 /hline1 def /10 /vline3 def /11 /vline2 def /12 /vline1 def /13 -/rdline3 def /14 /rdline2 def /15 /rdline1 def /16 /ldline3 def /17 /ldline2 def /18 /ldline1 def /19 /check3 def /20 /check2 def /21 /check1 def /22 /xhatch3 def /23 /xhatch2 def /24 /xhatch1 def /25 /dots3 def /26 /dots2 def /27 /dots1 def /28 /zaggyd -def /29 /zaggy def /30 /ziggy def /31 /diamond3 def /32 /diamond2 def /33 /diamond1 def /34 /donut def /35 /weave def /36 /bricks def /37 /plusses def /38 /boxes def /39 /smiley def end /invpats true def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 289 287 rectclip --198 -296 translate -198 296 289 287 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 3.2 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 27 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [3 4] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -/crlinw 4.2 def -/crfilred 0.823527 def /crfilgrn 0.752937 def /crfilblu 0.678426 def /filinclr true def -/filwpat true def -1 0 0 1 0 0 sc6mt astore 20.5 1.170732 -1 137 479 5.958333 0 0 3.390244 -616.291748 -1143.926758 sc5mt astore efill -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 20.5 1.170732 -1 137 479 5.958333 0 0 3.390244 -616.291748 -1143.926758 sc5mt astore estroke -/crlinw 2.6 def -/crfrtarw true def -/crfilred 0.533326 def /crfilgrn 0.31373 def /crfilblu 0.02353 def /filinclr true def -/filwpat false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 107.873047 -27.1875 233.126953 437.1875 1 0 0 1 0 1 sc6mt astore ssl -/crlinw 3.7 def -/crfrtarw false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -7 -33 403 466 1 0 0 1 0 1 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -7 -2 396 435 1 0 0 1 0 1 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 10 -26 403 464 1 0 0 1 0 1 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -5 -3 413 438 1 0 0 1 0 1 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -1 -17 403 483 1 0 0 1 0 1 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 5.903126 1 -1.169404 42.596874 612.403137 1 0 0 1.014032 354 -123.996201 sc5mt astore estroke -false 1 0 0 1 0 1 sc5mt astore sstrt -systemdict -begin -388 463 411 476 setbbox -409 463 moveto -409 463 411 469 411 469 curveto -411 469 402 476 402 476 curveto -402 476 396 469 396 469 curveto -396 469 389 467 389 467 curveto -end -/nspans 4 def 1 0 0 1 0 0 sc5mt astore 1 0 0 1 0 0 sc6mt astore splstroke -/crlinw 3.2 def -/crfilred 0.251762 def /crfilgrn 0.033586 def /crfilblu 0.666662 def /filinclr true def -1 0 0 1 0 0 sc6mt astore 3.5 1 1 52 579 1 0 0 1 287 -172 sc5mt astore efill -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 3.5 1 1 52 579 1 0 0 1 287 -172 sc5mt astore estroke -/usedash true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -1 106 343 413 1 0 0 1 0 1 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 48 343 295 1 0 0 1 0 1 sc6mt astore ssl -/crlinw 2.3 def -/usedash false def -/crfrtarw true def -/esave save def 1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 236.38147 180 60 617 2.439024 -1 20.5 false false 1 0 0 1 232 -58 sc5mt astore apstroke esave restore -/txtdraw true def -/txlndraw true def -(r ) [18.671997 0 0 0] 238 453 /Times-Italic [ 48 1 mul 0 0 48 0 0 ] [1 0 0 1 41 -20] dotx -/crlinw 3.2 def -/usedash true def -/crfrtarw false def -/crfilred 0.282357 def /crfilgrn 0.200003 def /crfilblu 0.04706 def /filinclr true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 43 342 539 1 0 0 1 0 1 sc6mt astore ssl -end -grestore -grestore -%%Trailer -%%DocumentFonts: Times-Italic diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob24.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob24.gif deleted file mode 100755 index be53fd320..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob24.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob24.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob24.pdf deleted file mode 100644 index 7683f7cab..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob24.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob25.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob25.eps deleted file mode 100755 index 47f43be1a..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob25.eps +++ /dev/null @@ -1,492 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Wed Oct 26 10:09:33 1994 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 438 234 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /arwlen 6 def /arw 4 def /arow { - gsave newpath moveto lineto unpagectm concat { - - } { - - } { - - } { - - } pathforall newpath 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath crlinalph setalpha strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - crstrpat findfont exch strwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /arwpath { - sc7mt currentmatrix pop gsave newpath moveto lineto unpagectm dup concat { - - } { - - } { - - } { - - } pathforall grestore unpagectm 5 -1 roll concat 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath sc7mt setmatrix -} bind def end -TopDrawDict begin /estroke { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /efill { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath unpagectm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /apstroke { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc pie chord or { - closepath - } if crlinalph setalpha pie not chord not and { - crfrtarw { - 2 copy crlinw exch gsave newpath angle1 1 add cos radius mul radius add angle1 1 add sin radius mul radius add moveto angle1 cos radius mul radius add angle1 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if crendarw { - 2 copy crlinw exch gsave newpath angle2 1 sub cos radius mul radius add angle2 1 sub sin radius mul radius add moveto angle2 cos radius mul radius add angle2 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if - } if crlincp setlinecap crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /apfill { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup 5 -2 roll arc pie chord or { - closepath - } if 1 xscale div 1 yscale div scale crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /mkepath { - dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def /closed exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc closed pie or chord or { - closepath - } if unpagectm -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 437.027985 233.563995 rectclip --128.628021 -484.436005 translate -128.628021 484.436005 437.027985 233.563995 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 3 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [4 4] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -1 0 0 1 0 0 sc4mt astore -1 0 0 1 657.413818 0 sc5mt astore -334.413818 -1 515.413818 491 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore -1 0 0 1 657.413818 0 sc5mt astore -0.413818 168 515.413818 490 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore -1 0 0 1 657.413818 0 sc5mt astore -336 -168 516 659 1 0 0 1 0 0 sc6mt astore ssl -/crlinw 1.6 def -/crendarw true def -/crfrtarw true def -/esave save def 0.78999 -0.613119 0.613119 0.78999 -209.241577 343.123108 sc4mt astore -0.78999 -0.613119 -0.613119 0.78999 866.655396 343.123108 sc6mt astore 114.770149 180 389 508.5 1 -1.448276 14.5 false false -0.78999 -0.613119 -0.613119 0.78999 -868.155396 373.623108 sc5mt astore apstroke esave restore -/txtdraw true def -/txlndraw true def -(q ) [25.007996 0 0 0] 322.5 484.5 /Symbol [ 48 1 mul 0 0 48 0 0 ] [1 0 0 1 -45.5 15] dotx -/crlinw 2.8 def -/crendarw false def -/crfrtarw false def -1 0 0 1 0 0 sc4mt astore -1 0 0 1 657.413818 0 sc6mt astore 27.086227 1 -1.03692 22.413773 689.586243 -1 0 0 1 563.413818 27 sc5mt astore estroke -/crlinw 1.6 def -/crfrtarw true def -/crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /filinclr true def -/esave save def 0.925984 -0.377563 0.377563 0.925984 -265.59256 108.171082 sc4mt astore -0.925984 -0.377563 -0.377563 0.925984 923.006348 108.171082 sc6mt astore 71.189529 108.808784 325 579 1.014493 1 34.5 false false -0.925984 -0.377563 -1.503969 -3.688529 1480.440674 -1715.416992 sc5mt astore apstroke esave restore -/crlinw 2.8 def -/crfrtarw false def -1 0 0 1 0 0 sc6mt astore 2.5 1 1 177 701 1.399989 0 0 -1.199989 262.615723 1533.192139 sc5mt astore efill -1 0 0 1 0 0 sc4mt astore -1 0 0 1 657.413818 0 sc6mt astore 2.5 1 1 177 701 1.399989 0 0 -1.199989 262.615723 1533.192139 sc5mt astore estroke -/txtdraw true def -/txlndraw true def -(H ) [34.656006 0 0 0] 53 533 /Times-Roman [ 48 1 mul 0 0 48 0 0 ] [1 0 0 1 476 24] dotx -1 0 0 1 0 0 sc4mt astore -1 0 0 1 657.413818 0 sc6mt astore 27.086227 1 -1.03692 22.413773 689.586243 -1 0 0 1 228.413818 -140 sc5mt astore estroke -1 0 0 1 0 0 sc6mt astore 2.5 1 1 177 701 1.399989 0 0 -1.199989 -72.384277 1366.192139 sc5mt astore efill -1 0 0 1 0 0 sc4mt astore -1 0 0 1 657.413818 0 sc6mt astore 2.5 1 1 177 701 1.399989 0 0 -1.199989 -72.384277 1366.192139 sc5mt astore estroke -/crlinw 1.8 def -/crendarw true def -1.35 0 0 1.35 -58.715981 -181.043976 sc4mt astore 1.35 0 0 1.35 -58.715981 -181.043976 sc5mt astore -39.454361 -20.430664 178.840012 521.880005 0.9 0 0 0.9 16.128006 51.264008 sc6mt astore ssl -/usedash true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -57.200073 547 558 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 -8.742278e-08 -8.742278e-08 -1 0 1021.600037 sc5mt astore 0 -57.200073 565 540 1 -8.742278e-08 -8.742278e-08 -1 -19 1130.600098 sc6mt astore ssl -/strdsh [2 4] def /dshpatoff 0 def -/crendarw false def -1 0 0 1 0 0 sc4mt astore -1 0 0 1 657.413818 0 sc5mt astore -336 -168 514 689 1 0 0 1 0 0 sc6mt astore ssl -end -grestore -grestore -%%Trailer -%%DocumentFonts: Symbol -%%+ Times-Roman diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob25.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob25.gif deleted file mode 100755 index 1b5f6b639..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob25.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob25.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob25.pdf deleted file mode 100644 index 968d165ad..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob25.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob26a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob26a.eps deleted file mode 100755 index 373b86677..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob26a.eps +++ /dev/null @@ -1,747 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Wed Oct 26 09:12:22 1994 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 367 213 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /rpath { - newpath moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} bind def /rfpath { - /rad3 exch def /hh3 exch def /ww3 exch def /yy1 exch def /xx1 exch def /xx2 xx1 ww3 add def /yy2 yy1 hh3 add def newpath xx1 yy1 rad3 hh3 0 gt { - add - } { - sub - } ifelse moveto xx1 yy1 xx2 yy1 rad3 arcto 4 { - pop - } repeat xx2 yy1 xx2 yy2 rad3 arcto 4 { - pop - } repeat xx2 yy2 xx1 yy2 rad3 arcto 4 { - pop - } repeat xx1 yy2 xx1 yy1 rad3 arcto 4 { - pop - } repeat closepath -} bind def /rfill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - 4 2 roll rpath crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - rectfill pop - } ifelse grestore -} bind def /rstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse 4 2 roll rpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /rffill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse rfpath filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /rfstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse rfpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /mkrpath { - dodrawctm rpath unpagectm -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /arwlen 6 def /arw 4 def /arow { - gsave newpath moveto lineto unpagectm concat { - - } { - - } { - - } { - - } pathforall newpath 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath crlinalph setalpha strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - crstrpat findfont exch strwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /arwpath { - sc7mt currentmatrix pop gsave newpath moveto lineto unpagectm dup concat { - - } { - - } { - - } { - - } pathforall grestore unpagectm 5 -1 roll concat 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath sc7mt setmatrix -} bind def end -TopDrawDict begin /estroke { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /efill { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath unpagectm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /apstroke { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc pie chord or { - closepath - } if crlinalph setalpha pie not chord not and { - crfrtarw { - 2 copy crlinw exch gsave newpath angle1 1 add cos radius mul radius add angle1 1 add sin radius mul radius add moveto angle1 cos radius mul radius add angle1 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if crendarw { - 2 copy crlinw exch gsave newpath angle2 1 sub cos radius mul radius add angle2 1 sub sin radius mul radius add moveto angle2 cos radius mul radius add angle2 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if - } if crlincp setlinecap crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /apfill { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup 5 -2 roll arc pie chord or { - closepath - } if 1 xscale div 1 yscale div scale crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /mkepath { - dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def /closed exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc closed pie or chord or { - closepath - } if unpagectm -} bind def end -TopDrawDict begin /defpat { - 7 dict begin /FontDict 9 dict def FontDict begin /cache exch def /key exch def /proc exch cvx def /mtx exch matrix invertmatrix def /height exch def /width exch def /ctm matrix currentmatrix def /ptm matrix identmatrix def /str -(12345678901234567890123456789012) def end /FontBBox [ 0 0 FontDict /width get FontDict /height get ] def /FontMatrix FontDict /mtx get def /Encoding StandardEncoding def /FontType 3 def /BuildChar { - pop begin FontDict begin width 0 cache { - 0 0 width height setcachedevice - } { - setcharwidth - } ifelse 0 0 moveto width 0 lineto width height lineto 0 height lineto closepath clip newpath gsave proc grestore end end - } def FontDict /key get currentdict definefont end -} bind def /patpath { - dup type /dicttype eq { - begin unpagectm - } { - exch begin unpagectm concat - } ifelse currentdict setfont FontDict begin FontMatrix concat width 0 dtransform round width div exch round dup 0 eq { - pop 1 - } if width div exch 0 height dtransform round dup 0 eq { - pop 1 - } if height div exch round height div exch 0 0 transform round exch round exch ptm astore setmatrix pathbbox height div ceiling height mul 4 1 roll width div ceiling width mul 4 1 roll height div floor height mul 4 1 roll width div floor width mul 4 -1 -roll 2 index sub height div ceiling cvi exch 3 index sub width div ceiling cvi exch 4 2 roll moveto FontMatrix ptm invertmatrix pop { - gsave ptm concat dup str length idiv { - str show - } repeat dup str length mod str exch 0 exch getinterval show grestore 0 height rmoveto - } repeat pop end end -} bind def /patfil { - gsave clip patpath grestore newpath -} bind def /trpatfil { - patfil -} bind def /oppatfil { - gsave 1 setgray 1 setalpha fill grestore patfil -} bind def /trpateofil { - pateofil -} bind def /oppateofil { - gsave 1 setgray 1 setalpha fill grestore pateofil -} bind def /pateofil { - gsave eoclip patpath grestore newpath -} bind def /patstrk { - gsave strokepath clip patpath grestore newpath -} bind def /trpatstrk { - patstrk -} bind def /oppatstrk { - gsave 1 setgray 1 setalpha stroke grestore patstrk -} bind def /patashow { - (0) exch { - 2 copy 0 exch put pop dup false charpath currentpoint 5 index type /dicttype eq { - 5 index patfil - } { - 6 index 6 index patfil - } ifelse moveto 3 copy pop rmoveto - } forall pop pop pop dup type /dicttype ne { - pop - } if pop -} bind def /patshow { - 0 exch 0 exch patashow -} bind def /rpatfil { - gsave setalpha pop setrgbcolor rpath tpatstr cvs cvn invpats { - piddict exch get - } { - ipiddict exch get - } ifelse findfont oppatfil grestore -} bind def /tpatstr 10 string def /getpat { - tpatstr cvs cvn invpats { - piddict exch get - } { - ipiddict exch get - } ifelse -} bind def end -TopDrawDict begin 8 8 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 8 2 rectfill -} bind /hline1 true defpat pop 16 16 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 16 8 rectfill -} bind /hline2 true defpat pop 32 32 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 32 16 rectfill -} bind /hline3 true defpat pop 8 8 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 2 8 rectfill -} bind /vline1 true defpat pop 16 16 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 8 16 rectfill -} bind /vline2 true defpat pop 32 32 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 16 32 rectfill -} bind /vline3 true defpat pop 15 15 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 1 setlinewidth stroke -} bind /rdline1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 2 scale 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 3 setlinewidth stroke -} bind /rdline2 true defpat pop 60 60 [ 300 72 div 0 0 300 72 div 0 0 ] { - 4 4 scale 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 4 setlinewidth stroke -} bind /rdline3 true defpat pop 15 15 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 1 setlinewidth stroke -} bind /ldline1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 2 scale 2 setlinecap 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 3 setlinewidth stroke -} bind /ldline2 true defpat pop 60 60 [ 300 72 div 0 0 300 72 div 0 0 ] { - 4 4 scale 2 setlinecap 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 4 setlinewidth stroke -} bind /ldline3 true defpat pop 7 7 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 4 0 moveto 4 7 lineto 0 4 moveto 7 4 lineto 0.5 setlinewidth stroke -} bind /gray1 true defpat pop 11 11 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 6 0 moveto 6 11 lineto 0 6 moveto 11 6 lineto 0.5 setlinewidth stroke -} bind /gray2 true defpat pop 15 15 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 8 0 moveto 8 15 lineto 0 8 moveto 15 8 lineto 0.5 setlinewidth stroke -} bind /gray3 true defpat pop 19 19 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 10 0 moveto 10 19 lineto 0 10 moveto 19 10 lineto 0.5 setlinewidth stroke -} bind /gray4 true defpat pop 23 23 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 12 0 moveto 12 23 lineto 0 12 moveto 23 12 lineto 0.5 setlinewidth stroke -} bind /gray5 true defpat pop 31 31 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 16 0 moveto 16 31 lineto 0 16 moveto 31 16 lineto 0.5 setlinewidth stroke -} bind /gray6 true defpat pop 20 20 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 10 0 moveto 20 10 lineto 0 10 moveto 10 20 lineto 10 0 moveto 0 10 lineto 20 10 moveto 10 20 lineto 0.25 setlinewidth stroke -} bind /xhatch1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 2 scale 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 0.5 setlinewidth stroke -} bind /xhatch2 true defpat pop 60 60 [ 300 72 div 0 0 300 72 div 0 0 ] { - 4 4 scale 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 2 setlinewidth stroke -} bind /xhatch3 true defpat pop 20 20 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 10 10 4 0 360 arc closepath fill -} bind /dots1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 15 15 8 0 360 arc closepath fill -} bind /dots2 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 25 25 20 0 360 arc closepath fill -} bind /dots3 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 0 26 moveto 50 0 rlineto 0 1 moveto 50 0 rlineto 26 50 moveto 0 -25 rlineto 1 25 moveto 0 -25 rlineto 1 setlinewidth stroke -} bind /bricks true defpat pop 25 25 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0.5 0.5 scale 0 0 25 25 rectfill 25 25 25 25 rectfill -} bind /check1 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 25 25 rectfill 25 25 25 25 rectfill -} bind /check2 true defpat pop 80 80 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 40 40 rectfill 40 40 40 40 rectfill -} bind /check3 true defpat pop 20 20 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 10 0 moveto 20 10 lineto 10 20 lineto 0 10 lineto closepath fill -} bind /diamond1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 15 0 moveto 30 15 lineto 15 30 lineto 0 15 lineto closepath fill -} bind /diamond2 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 25 0 moveto 50 25 lineto 25 50 lineto 0 25 lineto closepath fill -} bind /diamond3 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 10 10 30 30 rectfill 0 0 moveto 50 50 lineto 0 50 moveto 50 0 lineto 1 setlinewidth stroke -} bind /weave true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 25 25 22 0 360 arc closepath 1 setlinewidth stroke -} bind /donut true defpat pop 100 100 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap -20 0 moveto 25 25 rlineto -25 25 rlineto 25 25 rlineto -25 25 rlineto 5 0 moveto 25 25 rlineto -25 25 rlineto 25 25 rlineto -25 25 rlineto 30 0 moveto 25 25 rlineto -25 25 rlineto 25 25 rlineto -25 25 rlineto 55 0 moveto 25 25 rlineto --25 25 rlineto 25 25 rlineto -25 25 rlineto 80 0 moveto 25 25 rlineto -25 25 rlineto 25 25 rlineto -25 25 rlineto 1 setlinewidth stroke -} bind /ziggy true defpat pop 100 100 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 0 -20 moveto 25 25 rlineto 25 -25 rlineto 25 25 rlineto 25 -25 rlineto 0 5 moveto 25 25 rlineto 25 -25 rlineto 25 25 rlineto 25 -25 rlineto 0 30 moveto 25 25 rlineto 25 -25 rlineto 25 25 rlineto 25 -25 rlineto 0 55 moveto 25 25 rlineto -25 --25 rlineto 25 25 rlineto 25 -25 rlineto 0 80 moveto 25 25 rlineto 25 -25 rlineto 25 25 rlineto 25 -25 rlineto 1 setlinewidth stroke -} bind /zaggy true defpat pop 80 80 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 0 0 moveto 0 40 lineto 40 40 lineto 40 80 lineto 80 80 lineto 0 60 moveto 20 60 lineto 20 80 lineto 20 0 moveto 20 20 lineto 60 20 lineto 60 60 lineto 80 60 lineto 1 setlinewidth stroke -} bind /zaggyd true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 0 12.5 moveto 6.25 0 rlineto 0 37.5 moveto 31.25 0 rlineto 50 12.5 moveto -31.25 0 rlineto 50 37.5 moveto -6.25 0 rlineto 12.5 0 moveto 0 6.25 rlineto 37.5 0 moveto 0 31.25 rlineto 12.5 50 moveto 0 -31.25 rlineto 37.5 50 moveto 0 -6.25 -rlineto 1 setlinewidth stroke -} bind /plusses true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 0 10 moveto 10 0 rlineto 0 -10 rlineto 0 40 moveto 10 0 rlineto 0 10 rlineto 50 10 moveto -10 0 rlineto 0 -10 rlineto 50 40 moveto -10 0 rlineto 0 10 rlineto 7 7 moveto 36 0 rlineto 0 36 rlineto -36 0 rlineto closepath 1 setlinewidth -stroke -} bind /boxes true defpat pop 100 100 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 50 50 40 0 360 arc closepath 40 60 moveto 0 8 rlineto 60 60 moveto 0 8 rlineto 50 45 moveto 0 8 rlineto 35 35 moveto 35 21 65 21 65 35 curveto 1 setlinewidth stroke -} bind /smiley true defpat pop /piddict 256 dict def piddict begin /1 /gray3 def /2 /gray2 def /3 /gray1 def /4 /gray6 def /5 /gray5 def /6 /gray4 def /7 /hline3 def /8 /hline2 def /9 /hline1 def /10 /vline3 def /11 /vline2 def /12 /vline1 def /13 -/rdline3 def /14 /rdline2 def /15 /rdline1 def /16 /ldline3 def /17 /ldline2 def /18 /ldline1 def /19 /check3 def /20 /check2 def /21 /check1 def /22 /xhatch3 def /23 /xhatch2 def /24 /xhatch1 def /25 /dots3 def /26 /dots2 def /27 /dots1 def /28 /zaggyd -def /29 /zaggy def /30 /ziggy def /31 /diamond3 def /32 /diamond2 def /33 /diamond1 def /34 /donut def /35 /weave def /36 /bricks def /37 /plusses def /38 /boxes def /39 /smiley def end /invpats true def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 367 213 rectclip --86 -431 translate -86 431 367 213 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 2.8 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 18 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -/crfilred 0.970122 def /crfilgrn 0.970122 def /crfilblu 0.970122 def /filinclr true def -/filwpat true def -/esave save def 1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 90 107.861786 87 930 1 -1.254854 206 false false 5.431345 0 0 16.365524 -1140.384277 -6325.961914 sc5mt astore apstroke esave restore -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 56.26944 -1 -1 326 529 1 0 0 1 102 31 sc5mt astore estroke -/crlinw 1 def -/crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /filinclr true def -1 getpat /crfilpat exch def -0.3 0 0 0.3 202.608017 368.496002 sc5mt astore 179 514 31 -24 0.27871 0 0 0.36 317.31897 373.895874 sc6mt astore rfill -0.3 0 0 0.3 202.608017 368.496002 sc4mt astore 0.3 0 0 0.3 202.608017 368.496002 sc5mt astore 179 514 31 -24 0.27871 0 0 0.36 317.31897 373.895874 sc6mt astore rstroke -/crfilred 0.970122 def /crfilgrn 0.970122 def /crfilblu 0.970122 def /filinclr true def -18 getpat /crfilpat exch def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -20 -173.5 128 602 1 0 0 1 8 4 sc6mt astore ssl -/usedash true def -/crendarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -38.186646 -28.417969 369 504 1 0 0 1 1 0 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(R ) [16.007996 0 0 0] 205 430 /Times-Roman [ 24 1 mul 0 0 24 0 0 ] [1.619222 0 0 1.65226 -7.269882 -219.471802] dotx -/txtdraw true def -/txlndraw true def -(V ) [14.664001 0 0 0] 421 528 /Times-Italic [ 24 1 mul 0 0 24 0 0 ] [1.464575 0 0 1.850814 -296.379425 -407.051147] dotx -/strdsh [4 4] def /dshpatoff 0 def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 19.024536 -21.505981 121 622 1 0 0 1 8 4 sc6mt astore ssl -/usedash false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -46 0 195 515 1 0 0 1 174 42 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(H ) [25.991997 0 0 0] 55 469 /Times-Roman [ 36 1 mul 0 0 36 0 0 ] [1 0 0 0.853984 32 134.136093] dotx -/crlinw 1.6 def -/usedash true def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw true def -0.9 0 0 0.9 17.639999 62.424011 sc4mt astore 0.9 0 0 0.9 17.639999 62.424011 sc5mt astore -0.890579 -90.839294 176.890579 663.839294 -0.059209 0 0 0.774147 110.919991 114.156532 sc6mt astore ssl -/crendarw true def -/crfrtarw false def -0.9 0 0 0.9 17.928009 48.81601 sc4mt astore 0.9 0 0 0.9 17.928009 48.81601 sc5mt astore -0.890579 -90.839325 180 539 -0.059209 0 0 0.774147 111.098404 111.053055 sc6mt astore ssl -/crlinw 2.1 def -/strdsh [6 6] def /dshpatoff 0 def -/crendarw false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 267 0 83 442 1 0 0 1 8 4 sc6mt astore ssl -/crlinw 1 def -/usedash false def -/crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /filinclr true def -1 getpat /crfilpat exch def -0.212132 0.212132 -0.212132 0.212132 362.1651 503.419098 sc5mt astore 179 514 31 -24 0.197078 0.197078 -0.254559 0.254559 206.942902 471.48526 sc6mt astore rfill -0.212132 0.212132 -0.212132 0.212132 362.1651 503.419098 sc4mt astore 0.212132 0.212132 -0.212132 0.212132 362.1651 503.419098 sc5mt astore 179 514 31 -24 0.197078 0.197078 -0.254559 0.254559 206.942902 471.48526 sc6mt astore rstroke -/crfilred 0.970122 def /crfilgrn 0.970122 def /crfilblu 0.970122 def /filinclr true def -18 getpat /crfilpat exch def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 19 -133.5 163 562 1 0 0 1 8 4 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -19 -133 164 561.5 1 0 0 1 8 4 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 15.5 -172.5 129 600 1 0 0 1 8 4 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -17 -100 199 530 1 0 0 1 8 4 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 16.5 -99 199 528 1 0 0 1 8 4 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -19 -76 235 504 1 0 0 1 8 4 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -17 -49 270 479 1 0 0 1 8 4 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 15.5 -69.5 237 499 1 0 0 1 8 4 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 17 -32 307 460 1 0 0 1 8 4 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 17 -48 272 478 1 0 0 1 8 4 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -18 -32 307 460 1 0 0 1 8 4 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -18 -18 343 445 1 0 0 1 8 4 sc6mt astore ssl -end -grestore -grestore -%%Trailer -%%DocumentFonts: Times-Roman -%%+ Times-Italic diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob26a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob26a.gif deleted file mode 100755 index b95506db0..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob26a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob26a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob26a.pdf deleted file mode 100644 index dea60a42a..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob26a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob26b.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob26b.eps deleted file mode 100755 index 018c97c4d..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob26b.eps +++ /dev/null @@ -1,673 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Wed Oct 26 09:12:45 1994 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 381 226 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /arwlen 6 def /arw 4 def /arow { - gsave newpath moveto lineto unpagectm concat { - - } { - - } { - - } { - - } pathforall newpath 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath crlinalph setalpha strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - crstrpat findfont exch strwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /arwpath { - sc7mt currentmatrix pop gsave newpath moveto lineto unpagectm dup concat { - - } { - - } { - - } { - - } pathforall grestore unpagectm 5 -1 roll concat 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath sc7mt setmatrix -} bind def end -TopDrawDict begin /estroke { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /efill { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath unpagectm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /apstroke { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc pie chord or { - closepath - } if crlinalph setalpha pie not chord not and { - crfrtarw { - 2 copy crlinw exch gsave newpath angle1 1 add cos radius mul radius add angle1 1 add sin radius mul radius add moveto angle1 cos radius mul radius add angle1 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if crendarw { - 2 copy crlinw exch gsave newpath angle2 1 sub cos radius mul radius add angle2 1 sub sin radius mul radius add moveto angle2 cos radius mul radius add angle2 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if - } if crlincp setlinecap crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /apfill { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup 5 -2 roll arc pie chord or { - closepath - } if 1 xscale div 1 yscale div scale crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /mkepath { - dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def /closed exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc closed pie or chord or { - closepath - } if unpagectm -} bind def end -TopDrawDict begin /defpat { - 7 dict begin /FontDict 9 dict def FontDict begin /cache exch def /key exch def /proc exch cvx def /mtx exch matrix invertmatrix def /height exch def /width exch def /ctm matrix currentmatrix def /ptm matrix identmatrix def /str -(12345678901234567890123456789012) def end /FontBBox [ 0 0 FontDict /width get FontDict /height get ] def /FontMatrix FontDict /mtx get def /Encoding StandardEncoding def /FontType 3 def /BuildChar { - pop begin FontDict begin width 0 cache { - 0 0 width height setcachedevice - } { - setcharwidth - } ifelse 0 0 moveto width 0 lineto width height lineto 0 height lineto closepath clip newpath gsave proc grestore end end - } def FontDict /key get currentdict definefont end -} bind def /patpath { - dup type /dicttype eq { - begin unpagectm - } { - exch begin unpagectm concat - } ifelse currentdict setfont FontDict begin FontMatrix concat width 0 dtransform round width div exch round dup 0 eq { - pop 1 - } if width div exch 0 height dtransform round dup 0 eq { - pop 1 - } if height div exch round height div exch 0 0 transform round exch round exch ptm astore setmatrix pathbbox height div ceiling height mul 4 1 roll width div ceiling width mul 4 1 roll height div floor height mul 4 1 roll width div floor width mul 4 -1 -roll 2 index sub height div ceiling cvi exch 3 index sub width div ceiling cvi exch 4 2 roll moveto FontMatrix ptm invertmatrix pop { - gsave ptm concat dup str length idiv { - str show - } repeat dup str length mod str exch 0 exch getinterval show grestore 0 height rmoveto - } repeat pop end end -} bind def /patfil { - gsave clip patpath grestore newpath -} bind def /trpatfil { - patfil -} bind def /oppatfil { - gsave 1 setgray 1 setalpha fill grestore patfil -} bind def /trpateofil { - pateofil -} bind def /oppateofil { - gsave 1 setgray 1 setalpha fill grestore pateofil -} bind def /pateofil { - gsave eoclip patpath grestore newpath -} bind def /patstrk { - gsave strokepath clip patpath grestore newpath -} bind def /trpatstrk { - patstrk -} bind def /oppatstrk { - gsave 1 setgray 1 setalpha stroke grestore patstrk -} bind def /patashow { - (0) exch { - 2 copy 0 exch put pop dup false charpath currentpoint 5 index type /dicttype eq { - 5 index patfil - } { - 6 index 6 index patfil - } ifelse moveto 3 copy pop rmoveto - } forall pop pop pop dup type /dicttype ne { - pop - } if pop -} bind def /patshow { - 0 exch 0 exch patashow -} bind def /rpatfil { - gsave setalpha pop setrgbcolor rpath tpatstr cvs cvn invpats { - piddict exch get - } { - ipiddict exch get - } ifelse findfont oppatfil grestore -} bind def /tpatstr 10 string def /getpat { - tpatstr cvs cvn invpats { - piddict exch get - } { - ipiddict exch get - } ifelse -} bind def end -TopDrawDict begin 8 8 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 8 2 rectfill -} bind /hline1 true defpat pop 16 16 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 16 8 rectfill -} bind /hline2 true defpat pop 32 32 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 32 16 rectfill -} bind /hline3 true defpat pop 8 8 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 2 8 rectfill -} bind /vline1 true defpat pop 16 16 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 8 16 rectfill -} bind /vline2 true defpat pop 32 32 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 16 32 rectfill -} bind /vline3 true defpat pop 15 15 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 1 setlinewidth stroke -} bind /rdline1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 2 scale 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 3 setlinewidth stroke -} bind /rdline2 true defpat pop 60 60 [ 300 72 div 0 0 300 72 div 0 0 ] { - 4 4 scale 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 4 setlinewidth stroke -} bind /rdline3 true defpat pop 15 15 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 1 setlinewidth stroke -} bind /ldline1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 2 scale 2 setlinecap 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 3 setlinewidth stroke -} bind /ldline2 true defpat pop 60 60 [ 300 72 div 0 0 300 72 div 0 0 ] { - 4 4 scale 2 setlinecap 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 4 setlinewidth stroke -} bind /ldline3 true defpat pop 7 7 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 4 0 moveto 4 7 lineto 0 4 moveto 7 4 lineto 0.5 setlinewidth stroke -} bind /gray1 true defpat pop 11 11 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 6 0 moveto 6 11 lineto 0 6 moveto 11 6 lineto 0.5 setlinewidth stroke -} bind /gray2 true defpat pop 15 15 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 8 0 moveto 8 15 lineto 0 8 moveto 15 8 lineto 0.5 setlinewidth stroke -} bind /gray3 true defpat pop 19 19 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 10 0 moveto 10 19 lineto 0 10 moveto 19 10 lineto 0.5 setlinewidth stroke -} bind /gray4 true defpat pop 23 23 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 12 0 moveto 12 23 lineto 0 12 moveto 23 12 lineto 0.5 setlinewidth stroke -} bind /gray5 true defpat pop 31 31 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 16 0 moveto 16 31 lineto 0 16 moveto 31 16 lineto 0.5 setlinewidth stroke -} bind /gray6 true defpat pop 20 20 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 10 0 moveto 20 10 lineto 0 10 moveto 10 20 lineto 10 0 moveto 0 10 lineto 20 10 moveto 10 20 lineto 0.25 setlinewidth stroke -} bind /xhatch1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 2 scale 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 0.5 setlinewidth stroke -} bind /xhatch2 true defpat pop 60 60 [ 300 72 div 0 0 300 72 div 0 0 ] { - 4 4 scale 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 2 setlinewidth stroke -} bind /xhatch3 true defpat pop 20 20 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 10 10 4 0 360 arc closepath fill -} bind /dots1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 15 15 8 0 360 arc closepath fill -} bind /dots2 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 25 25 20 0 360 arc closepath fill -} bind /dots3 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 0 26 moveto 50 0 rlineto 0 1 moveto 50 0 rlineto 26 50 moveto 0 -25 rlineto 1 25 moveto 0 -25 rlineto 1 setlinewidth stroke -} bind /bricks true defpat pop 25 25 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0.5 0.5 scale 0 0 25 25 rectfill 25 25 25 25 rectfill -} bind /check1 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 25 25 rectfill 25 25 25 25 rectfill -} bind /check2 true defpat pop 80 80 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 40 40 rectfill 40 40 40 40 rectfill -} bind /check3 true defpat pop 20 20 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 10 0 moveto 20 10 lineto 10 20 lineto 0 10 lineto closepath fill -} bind /diamond1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 15 0 moveto 30 15 lineto 15 30 lineto 0 15 lineto closepath fill -} bind /diamond2 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 25 0 moveto 50 25 lineto 25 50 lineto 0 25 lineto closepath fill -} bind /diamond3 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 10 10 30 30 rectfill 0 0 moveto 50 50 lineto 0 50 moveto 50 0 lineto 1 setlinewidth stroke -} bind /weave true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 25 25 22 0 360 arc closepath 1 setlinewidth stroke -} bind /donut true defpat pop 100 100 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap -20 0 moveto 25 25 rlineto -25 25 rlineto 25 25 rlineto -25 25 rlineto 5 0 moveto 25 25 rlineto -25 25 rlineto 25 25 rlineto -25 25 rlineto 30 0 moveto 25 25 rlineto -25 25 rlineto 25 25 rlineto -25 25 rlineto 55 0 moveto 25 25 rlineto --25 25 rlineto 25 25 rlineto -25 25 rlineto 80 0 moveto 25 25 rlineto -25 25 rlineto 25 25 rlineto -25 25 rlineto 1 setlinewidth stroke -} bind /ziggy true defpat pop 100 100 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 0 -20 moveto 25 25 rlineto 25 -25 rlineto 25 25 rlineto 25 -25 rlineto 0 5 moveto 25 25 rlineto 25 -25 rlineto 25 25 rlineto 25 -25 rlineto 0 30 moveto 25 25 rlineto 25 -25 rlineto 25 25 rlineto 25 -25 rlineto 0 55 moveto 25 25 rlineto -25 --25 rlineto 25 25 rlineto 25 -25 rlineto 0 80 moveto 25 25 rlineto 25 -25 rlineto 25 25 rlineto 25 -25 rlineto 1 setlinewidth stroke -} bind /zaggy true defpat pop 80 80 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 0 0 moveto 0 40 lineto 40 40 lineto 40 80 lineto 80 80 lineto 0 60 moveto 20 60 lineto 20 80 lineto 20 0 moveto 20 20 lineto 60 20 lineto 60 60 lineto 80 60 lineto 1 setlinewidth stroke -} bind /zaggyd true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 0 12.5 moveto 6.25 0 rlineto 0 37.5 moveto 31.25 0 rlineto 50 12.5 moveto -31.25 0 rlineto 50 37.5 moveto -6.25 0 rlineto 12.5 0 moveto 0 6.25 rlineto 37.5 0 moveto 0 31.25 rlineto 12.5 50 moveto 0 -31.25 rlineto 37.5 50 moveto 0 -6.25 -rlineto 1 setlinewidth stroke -} bind /plusses true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 0 10 moveto 10 0 rlineto 0 -10 rlineto 0 40 moveto 10 0 rlineto 0 10 rlineto 50 10 moveto -10 0 rlineto 0 -10 rlineto 50 40 moveto -10 0 rlineto 0 10 rlineto 7 7 moveto 36 0 rlineto 0 36 rlineto -36 0 rlineto closepath 1 setlinewidth -stroke -} bind /boxes true defpat pop 100 100 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 50 50 40 0 360 arc closepath 40 60 moveto 0 8 rlineto 60 60 moveto 0 8 rlineto 50 45 moveto 0 8 rlineto 35 35 moveto 35 21 65 21 65 35 curveto 1 setlinewidth stroke -} bind /smiley true defpat pop /piddict 256 dict def piddict begin /1 /gray3 def /2 /gray2 def /3 /gray1 def /4 /gray6 def /5 /gray5 def /6 /gray4 def /7 /hline3 def /8 /hline2 def /9 /hline1 def /10 /vline3 def /11 /vline2 def /12 /vline1 def /13 -/rdline3 def /14 /rdline2 def /15 /rdline1 def /16 /ldline3 def /17 /ldline2 def /18 /ldline1 def /19 /check3 def /20 /check2 def /21 /check1 def /22 /xhatch3 def /23 /xhatch2 def /24 /xhatch1 def /25 /dots3 def /26 /dots2 def /27 /dots1 def /28 /zaggyd -def /29 /zaggy def /30 /ziggy def /31 /diamond3 def /32 /diamond2 def /33 /diamond1 def /34 /donut def /35 /weave def /36 /bricks def /37 /plusses def /38 /boxes def /39 /smiley def end /invpats true def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 380.208038 226 rectclip --84 -142 translate -84 142 380.208038 226 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 1 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 18 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [6 6] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -/crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /filinclr true def -/filwpat true def -1 getpat /crfilpat exch def -0.33 0 0 0.33 377.462585 260.153839 sc6mt astore 13.462906 1 -1 258 327 0.33 0 0 0.33 23.351429 246.10791 sc5mt astore efill -0.33 0 0 0.33 377.462585 260.153839 sc4mt astore 0.33 0 0 0.33 377.462585 260.153839 sc6mt astore 13.462906 1 -1 258 327 0.33 0 0 0.33 23.351429 246.10791 sc5mt astore estroke -/usedash true def -/strdsh [4 4] def /dshpatoff 0 def -/crfrtarw true def -/esave save def 1.3 0 0 1.3 -98.063995 -193.319946 sc4mt astore 1.3 0 0 1.3 -98.063995 -193.319946 sc6mt astore 192.040588 313.569458 174 278 -1 -1.633333 15 false false 1.3 0 0 0.84898 -85.764008 130.763733 sc5mt astore apstroke esave restore -/crlinw 2.8 def -/usedash false def -/crfrtarw false def -/crfilred 0.970122 def /crfilgrn 0.970122 def /crfilblu 0.970122 def /filinclr true def -18 getpat /crfilpat exch def -/esave save def 1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 90 107.861786 87 930 1 -1.254854 206 false false 5.431345 0 0 16.365524 -1142.384277 -6614.961914 sc5mt astore apstroke esave restore -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 56.26944 -1 -1 326 529 1 0 0 1 100 -258 sc5mt astore estroke -/crlinw 1 def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -20 -173.5 128 602 1 0 0 1 6 -285 sc6mt astore ssl -/usedash true def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -38.186646 -28.417969 369 504 1 0 0 1 -1 -289 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(R ) [16.007996 0 0 0] 205 430 /Times-Roman [ 24 1 mul 0 0 24 0 0 ] [1.619222 0 0 1.65226 -9.269882 -508.471802] dotx -/txtdraw true def -/txlndraw true def -(V ) [14.664001 0 0 0] 421 528 /Times-Italic [ 24 1 mul 0 0 24 0 0 ] [1.560649 0 0 1.850814 -339.001923 -697.051147] dotx -/strdsh [4 4] def /dshpatoff 0 def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 19.024536 -21.505981 121 622 1 0 0 1 6 -285 sc6mt astore ssl -/usedash false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -46 0 195 515 1 0 0 1 172 -247 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(H ) [25.991997 0 0 0] 55 469 /Times-Roman [ 36 1 mul 0 0 36 0 0 ] [1 0 0 0.853984 30 -154.863907] dotx -/crlinw 1.6 def -/usedash true def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw true def -0.9 0 0 0.9 17.639999 62.424011 sc4mt astore 0.9 0 0 0.9 17.639999 62.424011 sc5mt astore -0.890579 -90.839294 176.890579 663.839294 -0.059209 0 0 0.774147 108.919991 -174.843475 sc6mt astore ssl -/crendarw true def -/crfrtarw false def -0.9 0 0 0.9 17.928009 48.81601 sc4mt astore 0.9 0 0 0.9 17.928009 48.81601 sc5mt astore -0.890579 -90.839325 180 539 -0.059209 0 0 0.774147 109.098404 -177.946945 sc6mt astore ssl -/crlinw 2.1 def -/strdsh [6 6] def /dshpatoff 0 def -/crendarw false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 267 0 83 442 1 0 0 1 6 -285 sc6mt astore ssl -/crlinw 1 def -/usedash false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 19 -133.5 163 562 1 0 0 1 6 -285 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -19 -133 164 561.5 1 0 0 1 6 -285 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 15.5 -172.5 129 600 1 0 0 1 6 -285 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -17 -100 199 530 1 0 0 1 6 -285 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 16.5 -99 199 528 1 0 0 1 6 -285 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -19 -76 235 504 1 0 0 1 6 -285 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -17 -49 270 479 1 0 0 1 6 -285 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 15.5 -69.5 237 499 1 0 0 1 6 -285 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 17 -32 307 460 1 0 0 1 6 -285 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 17 -48 272 478 1 0 0 1 6 -285 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -18 -32 307 460 1 0 0 1 6 -285 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -18 -18 343 445 1 0 0 1 6 -285 sc6mt astore ssl -/crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /filinclr true def -1 getpat /crfilpat exch def -0.33 0 0 0.33 377.462585 260.153839 sc6mt astore 13.462906 1 -1 258 327 0.33 0 0 0.33 280.35144 162.10791 sc5mt astore efill -0.33 0 0 0.33 377.462585 260.153839 sc4mt astore 0.33 0 0 0.33 377.462585 260.153839 sc6mt astore 13.462906 1 -1 258 327 0.33 0 0 0.33 280.35144 162.10791 sc5mt astore estroke -end -grestore -grestore -%%Trailer -%%DocumentFonts: Times-Roman -%%+ Times-Italic diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob26b.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob26b.gif deleted file mode 100755 index 241f7154c..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob26b.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob26b.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob26b.pdf deleted file mode 100644 index 0ca80efac..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob26b.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob27a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob27a.eps deleted file mode 100755 index 82abec6a7..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob27a.eps +++ /dev/null @@ -1,565 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: Untitled1.create -%%Creator: Create -%%CreationDate: Mon Mar 17 17:08:06 1997 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 54 356 566 795 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(%-3XNV%&(`R+Z4$:l>=)dKit -% 5J5CkAB[`\MP%8E[!!)![J1Ggr+UDiSl5^N3D;DsI,FTLG.8pEm&]Y$23![5HJ"D7>EpSi#i -% 4ja"&n8(h/_\Brj&Q5SC![q:Q\GnU<(R1S5si@$#Vr@)NuC;.:O_XZfOI5T\-hEq[Q%O'=jn -% cp6\']G!e^]8)&(U8J?3@K6g1!Sk*Rc@#Rt1:>S)P%"q5U_nU4$$2IbOI0gt5'CJBAKJ.3ZP -% _1GC1a[MPHQH_90BE3-@Qsi2B7[\mi'o670!.ZhuBVZ(=70BHdL.!-i]S6D:*70uQ(D#RRfn -% 7$7'8gcD![(*Vc](gC!2OEi="/3X1-bmIFI0mh8OK)E^;i2U:*Nibjjcp`bZ/b"-"C2?I8lN -% d[/oKo\Kn;WNs3Nj3,CQ!f.""(:45!!Eg7=VmA)BSkh^$5W?3QsoP7+_VQna=;q@eM.(KWk$ -% $("0Y!8_A9N7O@Tq0ZM<(E`W\DuF+iD+k`/"aRXh/&,"[QQ9NH07IL:T_^nt+L)(:&aN=&de -% %"\fJWgC,NVOE/,P=d!:64gqJ"p@iCSTtF_S"DAU(Y>oL.][%ZV+BPr[#e$5Bse`7LBCXUo_ -% 4ueTSc?RQ_lZslFCH*qeDQ;G!cTaWm-)#"g?=*N!6S^@a"oMp,Qs(`XZ29T`^W*a2*g/9.ct -% Ti.h>8UBJrZ`)gD[0q%*oasY57HCQUhK/CIO,H2]#IuMp.VfWAm>i,h,^@CRL)E=DWXK!.o(g -% m@g5QV=TD.r(TgDmN'P9$n>TK9eAP[s^^R%'YB-3FO*p:LXE#aE=M&"(>qr%Wk2$m?1?!)!U -% F=!kYpY'#56?f4oV/],d$@dLs>/N,Qs%h><6GT_`UE2Z/(Oj-H>Lq@J1rWS%i@=Io1LVL^[870&FBKbi$j+pDYs7GQ6QVgtrOp]1Ct@'Rd6:K -% iA-,5gUai2a.:X5pDCM$-S#/L^>ZK/IRD'7&l51X/H.&2";_a#(db3l)7iN3m.0\F+k -% n4k=Ou0R\#*7W%Lg&%hBR'[*=i/]NLn%XTM=gOT*l8.H%:s>l[W@`O4 -% 2QaR;>])Dn]efilx -% EndEmbeddedGraphics N 1451 5ab E f9 S 27887 R 497222f -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -54 356 512 439 rectclip -0 0 2 1 10 SU -72 432 T -N -2 L -0 nxsetgray -0 288 0 0 line -90 0 288 arrow -0 0 T -grestore -0 0 2 1 10 SU -72 432 T -N -2 L -0 nxsetgray -468 0 0 0 line -0 468 0 arrow -0 0 T -grestore -0 0 2 1 10 SU -[1 0 0 -1 143 721] concat -[1 0 0 1 1 1] concat -N -2 L -0 nxsetgray -gsave -288 288 0 0 oval 0.003472 0.003472 S s -grestore -0 0 T -grestore -0 0 2 1 10 SU -288 432 T -N -2 L -0 nxsetgray -0 288 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -288 576 T -N -2 L -0 nxsetgray -72 72 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -288 432 T -N -2 L -0 nxsetgray -72 216 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -[2] 0 setdash -[1 0 0 -1 215 649] concat -[1 0 0 -1 1 145] concat -N -2 L -0 nxsetgray -N 72 72 m -72 72 72 90 45 arcn -C -s -0 0 T -grestore -0 0 2 1 10 SU -[1 0 0 -1 89.531174 773.531189] concat -[1 0 0 -1 1 394] concat -N -2 L -0 nxsetgray -N -196.468826 196.468826 196.468826 -22.126335 0.318307 arc -s --112.126335 378.468811 122.468826 arrow -0 0 T -grestore -0 0 2 1 10 SU -[1 0 0 -1 353 652] concat -[1 0 0 1 1 1] concat -N -0 nxsetgray -gsave -9 11 0 0 oval fill -grestore -2 L -0 nxsetgray -gsave -9 11 0 0 oval 0.111111 0.090909 S s -grestore -0 0 T -grestore -0 0 2 1 10 SU -[2] 0 setdash -[1 0 0 -1 543 438] concat -gsave -/Helvetica-BoldOblique findfont 16 scalefont [1 0 0 -1 0 0] makefont -215 -exch -defineuserobject -215 execuserobject setfont -7 5.5 T --4.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(x) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[2] 0 setdash -[1 0 0 -1 62 734] concat -gsave -215 execuserobject setfont -7 7 T --4.5 2 T -N 0 0 m -0 nxsetgray -0 0 m -(y) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[2] 0 setdash -[1 0 0 -1 280 430] concat -gsave -215 execuserobject setfont -6.5 5.5 T --5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(o) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[2] 0 setdash -[1 0 0 -1 312 604] concat -gsave -215 execuserobject setfont -6 5.5 T --3.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(r) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[2] 0 setdash -[1 0 0 -1 266 529] concat -gsave -215 execuserobject setfont -8 7 T --6 6 T -N 0 0 m -0 nxsetgray -0 0 m -(R) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[2] 0 setdash -[1 0 0 -1 271 584] concat -gsave -215 execuserobject setfont -8 7.5 T --6 6 T -N 0 0 m -0 nxsetgray -0 0 m -(C) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[2] 0 setdash -[1 0 0 -1 357 667] concat -gsave -215 execuserobject setfont -7.5 7 T --5.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(P) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[2] 0 setdash -[1 0 0 -1 333 556] concat -gsave -215 execuserobject setfont -6 5.5 T --4.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(s) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[2] 0 setdash -[1 0 0 -1 301 631] concat -gsave -/Symbol findfont 16 scalefont [1 0 0 -1 0 0] makefont -241 -exch -defineuserobject -241 execuserobject setfont -5.5 7 T --4.5 5 T -N 0 0 m -0 nxsetgray -0 0 m -(q) show -0 0 T -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Symbol -%%+ Helvetica-BoldOblique diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob27a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob27a.gif deleted file mode 100755 index 5595e8eb1..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob27a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob27a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob27a.pdf deleted file mode 100644 index 8ad9a1977..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob27a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob31.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob31.eps deleted file mode 100755 index ed258dbae..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob31.eps +++ /dev/null @@ -1,1120 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: crane.create -%%Creator: Create -%%CreationDate: Mon Jul 29 14:26:56 1996 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 21 160 568 515 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(T@fr_fo[6$%qn(boY=BQDKp) -% 5@l^1atd>$rEWcNFJnu+B'D)!)31XUWI?*Z=jDX649:N>Y]o.A]ir+nDV3iCX\PqQ4S\X?FS -% XK)n-F[dffdUH3Rc"VdP:`%jn*fWHY7L_iHC]1l_;f":3'sYdCD*gq.tG39qNgDh$LFN#=u) -% 5c"^?bd7?bA`,kpB1!C;6i`ts?lBp2OTGLb%^]9+Dun2&giBm?a'3tE<>%hZ!"`VT(,E[e_\ -% c\G_1`kNQiR:*@CS$^)D7KKL)Y6]+U/lja;C]lBs7U>'kt$P`Z-R$nO=HTma-^j>X0aY)/RY -% ""-loY+bu?j\2_JICqKf/O#t"qO:4"r^kJ+dPi2h9DZ3a.)0AJBjVVIF^]b]da?^"HFPoFe% -% Pnlh_deAZ&H`JG2B"pm.5iZ.QAOTE!tL,F3l;Ab(-2O-OVUR,%$d9=k_qic0k2,,eA6kY4-g -% K>*1$ji`f+EK#QbYH9\INZKPXNm!N*OR>q8ibdOYA6RO'P&)G\I!!4_:eTj``\G:de7Lr/+d -% cC)\.FB1rqC`q#<#Cq!sN$=iuAW`/4HDPj7++;oSG2H])o_2^CSl@IqBtd+S5l_3jBJ"th$F -% a9KnU]nbLa8_S,)ek>G[laqp@r-ZX:f4mP"ILo,a<31=_47.K)+u&?Z%;>R:c<:7[aLC60F^ -% @an`96GdcilT7-hkBVU>p\nIt%QKflpR9g4feXU7JBrH98.eTd?)S.E?>e%o[XKp8hfr_fRY -% q$X(_>jWV_(%-TJAqq(=t.nq"+ULe7/P\W&RUG3`S:CSO14/d-LPp84r9#/d[_!Ni9nH4n%@ -% *&X'Pi&C:irHr=W]ZIf9KJY(%#@c&ue_81-_(,`j/DL=FX`pfWFI<]]9&4$G9#jT]1SFN`$+ -% 6KZq>47@E,H&f)Bo9$3N^SqSL+<^nu?lCTEf`D-V%UZ/]L:Zj1]>YThT^dppcKI!C6&)I^O> -% 75IjH3"dg#S>oRaTDh[\X#U/51$#fpR#\-D.[PBQ9Ki",W7/D_LA[GKD6p5WgM!61?MUT-FmDEq#Z_6>QjWmJBKu]pPs/ms:4;tJ?Qbk9U -% (aBE"t\J1r+KUcqWWf+pG7GobWlDpTE,0oa?pob5UMh?.8'j2dK+8eV?QO,9b2o@cmHhg4&p -% 5qIDXpj2V=t+8IA?;%%GeOegXIacr2?')QHh_[35;0Kel>j%*a;Q)S41JEXP5EGK@Hi<5:=0 -% #QPAP0Z8aCmtc^&?g0ts`)K:4@oWXL(.Y7@+E_Z4?OYs3b:(.^b"Re&@Um^1eA.]u;1`qjA' -% o%1Zofg4K4(!.;qNKS.*>MMIdL.ql.+pjo/&.fN -% o)[([)Q(WYA^]AsOJ,p]l&4-L(5XaCm773U*O=IG83o!O4"pb21DWnk>#5"Ql_1UV)C]g/I% -% >"su.)QT#JH7;=5mW)s#;i4W"Fl^>#=3m,jp(A&L^o$2()9X.mSs8;%BDYT@6e(`ne)^pJIh -% okK6[SC<3d@V!(;NM(N`5<2?`4XQ&%[Pg>E#9,bUgZ3bVb&VpH]Tc=.XP.)!JT]X)i^&oHP2 -% 8f;W**hZIN9oqk<=)\FT!(!L,gRM%)`D`B1?klBF!%Yq5$Dti)WNMmDRGNeM+NU6)4MbY41, -% 0%h[,W)k(^)64!/Y+!!=lR@QWV@]+ks*%H"aV:>f),ZN=L_gcfo7-c4SdX+sIkVGX;Jm)Vj9 -% YJU)k[/8Y^j3PJM>@b=3e!eH6.oG>'`iuE.1'nGJ=olL3"%kI]G"TYo[Z41Ka'F5>+1n4RUFK! -% DpG[d`SHk-3.!'pU&(Y5pcnlcFg(2G^0>PC`?!6&`n<2os!&Hc.GCB]7\5W8ZF1NY>*.=c]6 -% EYa)>-PJZ\`*!*!]-!dX?A>RMlNkmq8oVR&])]VQ!e:7`9+7L,F0/SpXPtpp[DfG2S8#2^'k -% i[4!B5Ja:7Ea6+57%:fj!:JAs*-#O$O7i&AsPegljohJP:@90P5"HKL<'h%n=Cu"\^.un,Yc -% S"EhtH_1g7lnSZQ#2I(Z9gsP;XAIno.9:Q/*]u'K`-Y`@9).8)3Zii^%J[bllG0L>0ebUh]4 -% [9[8OG:raJ^F2i,eKjN$NO"R!a`=[M9@B[fUA5:B>B=g+0TYV&D]n4g=F74AAco:F -% /Yc^lR\&u]O]^uQ.h6f=7<<7d;ESKs)#tHppN"H:0*Sb_C."RC>[7 -% 2/]f;o%-c^0lRL6NN_;*LleOS`g1tmYZlY%a"l]\m&%d\EbjgR9r9V6mqgI(6)K\LT)fU"IE -% hTXGT$mT!dEOb'UXLB>XL^):)Jg_Ia.enO[7t4P5E;lPXI(':-nI%5\IeG+;'2s)*k(Cc7J -% s(`kdNO94Li=l3KG"!2&Ee_DYm/WB*T#Cts*'19a+GM5Kkt=N`IeHEiIt\gI4Ig9;HJTRGD6 -% fF)N,^YmkBH+j`=HNAoVL-4c"8cW-/E%$IXJ3cmOQ=BR;>`E+[aUK,=m++<;O8GT'\<3=(.0 -% p44>F*$Qef`<1C:cusb\KRLpnG/oGjk_V$-)LESIhggM8k'r:[(]!3LEsRVFaG$L"M1L24Zf -% lqI8;F.F.f]=/:Nn-*Z2MMcY9E4CP?\;IWCMMl\/cPHimE/ArjGLC_oeaFs(s)VY5l5@BOOfT#_%N<(G_ija;s=H:?fO -% Jbs;%>\Nbf8f`1NS@qo$"+[p!!"Z+5(XGq'$5(\eVI@aN;oi=P(O[(^h2V:O:$2We!PE,`W1 -% =?/:fJadW#EHLN3'%MA+*fi&HpWQ]\Bt3Ue.3<=&[,^lqXYPO8^@&3"0#7[/ArOBCb%_q6+f -% \SlRlP>g.Zdc#FQWKhqRPp6Tr@!O;--]1K0QJUhi'cE&1=FeO2Mpg!rEVY`]B8^o3OEX9\U% -% ihYac0bRQ8/3"C.XWh[X>:bH&%f>d)_69fTk*eB8tSi>o/o%q3(N-KpN[BaU"!*nTo-*R7?t -% >+W6`,.<@jJLsc,BSjsDNjjk,5<50>.@k2j#etVT&Xf1a3Ljg:SX=,HP(SP7R$;WjR*`sBdKtV!kFR -% M9T.p(To6G_bGarLa#[YTFqMCSLpmb!US!up41DgBq.%nEOL45PJ()`M#fTq(2KHp>dSdCPb -% q1n,^Ja$=2VI>%,:kKZ9I+h_kIgMC]pR4!S)C64+,rhL'#b'm)ROlTBd[>T9J:TM6KCQLC2q -% j]\b*G:p4:-go-IgT?kau1=NGkJfW`aRB8tThoS],Z1cW@'%.?\d&0 -% VoWmoCrKL8t`51VT1Zqp1YEHR?!XQTgP91X."mI\uD -% JSSLO@:ZRUnkC7s@=T];uD!7uHoJJu;gSA@7[Y?EKBTJqEU$sLYm4/\>38ZR52SBQkQ3a+qj -% _bYjAB&;gTql-RG$A3L/MCNnQ*%IT(MPa6CWKP/23B99+$),/7U-r1E1M8D=_6#*3XulrZaB -% GXe)QDhUI[TFBP,#2H.UqfqYgc:LXpTf,@iD]#Xd0-dTHTj4U -% Z]'!K@YQ9:tE$i2j7APQc)'!(>D;h3fD2A@G5R^T-ZSQ@uTJHVpKcP_`%W?k\Z>^QgE+DPKA -% A'.oT@fr_fmMY]NNtQno[]`oa.)c6^2L":TEC#dDFM\"m9%58d8d7%*?r.S4!)7+NOqfZp;d?YNl#OYAf12`HScT -% 5`;Y]`hhnXlf78&HQgTOk3cOIZO5U?Du!b%:-]68_bLXGuDUqisVVdnbN27k])rA4W_aC*6A -% N;`Zf22>:TrX;8P!+Us"+97Zh?jIpF<'l+O\97aT+qO"Z=&:q7QG`\pQZ9-@iKn$!a=*K;jqha$L)A -% ?qQVgIWeQ%02F_e)Zx -% EndEmbeddedGraphics N 531 213 E fc S eade R 8c0abf7a -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -203 346 240 387 rectclip -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 204 348] concat -0 0 6 1 10 SU -12 84 T -N -0 nxsetgray -0 216 0 0 line -0 0 T -grestore -0 0 6 1 10 SU -12 300 T -N -0 nxsetgray -216 0 0 0 line -0 0 T -grestore -0 0 6 1 10 SU -228 84 T -N -0 nxsetgray -0 216 0 0 line -0 0 T -grestore -0 0 6 1 10 SU -12 84 T -N -0 nxsetgray -216 0 0 0 line -0 0 T -grestore -2 0 4 1 10 SU -[4] 0 setdash -12 12 T -N -4 L -0 nxsetgray -0 360 0 0 line -0 0 T -grestore -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob32.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob32.gif deleted file mode 100755 index 08bf99b22..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob32.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob32.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob32.pdf deleted file mode 100644 index 1ec31dde5..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob32.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob33.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob33.eps deleted file mode 100755 index c12cdede7..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob33.eps +++ /dev/null @@ -1,731 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: biophys1.tm.create -%%Creator: Create -%%CreationDate: Thu Mar 6 13:55:15 1997 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 214 424 374 632 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr($"Ce'ed"3TUk_(r?-O^tOBu]N+H%;hjUe5o1We?$:!Adj&"B#IId(98jr"*T -% sUo`7T8Wo_M&:eWP[K,=,,m<2.h7H&6#(S55YM=qG#&25E_+2Eu5pFSTnB%<#+J0MJj2BMeh -% n=LWi'gl$Z1BJLimS2"i%o#+Ml#\bgj!Y#O!+MjqtE;@YQm+/N#:4`fL3%gVJA'10%k6D!e -% ZMOWrOd8F\_ut%p!QD>+:FNSY#+$aM;,G%V_@`\L+9Qk-S3O+jJ6Q%S$kQcSnR^^t+O)UX`- -% eR&f:mkm1`+spPo)fU3<0Hh!&46X;;QT+q:?F0%_l9K\Bb]k'Teu&$O0Ge&%)-;+TW3R31Po!@&P5Z*;X/;La/KNR#*5kaPpqfOr:$7-V;pC& -% 7t'f7N$4t78X([5k,$tGq?p?&=O#*728l4TkP87%"U\V5l-6^O]Yf\UlnG1[Np;kman(nEPtW%MNV_!drrnX=h-4GuD`pR3MQdVo!c?@g&X*B,R_ -% V*gu2SY6o!3X?ep,g*$)=!j''Rm(-mWk\_m?Z=Q)o+LDe_#cF3DqL^@"WL2B2e#GeVXM#tgW -% r`i`QkY,I%4^f\Sh[I=%"?l)DZX0 -% WF2fu)o7WtEOIN]_RJG([6mk:^,;XC8<"G(^%Bl;1"f5Ir!2P&GX=*Em&hE,Ti5q!;c(?(8) -% aZg1UhFRd>f[GZYn6&TleVi>^r:2%M3q4>sW1q-^Npf6%(ZG0&^i#R(%KOjAYd -% Mis?sg6!)!%.5ns]!H`B1@#:-F..6[4+n07>j"D\.;h"HS4S7SI$b%e,1!sqFE81n;7 -% UR16K2m.I_E`3g-5UZKW6qP7NP2mj@b\E6=f#CB`3:g&P!2Qh!('l=AB,Yns-7;k"6#M-iS,rLd/\Zu -% jFl8/[X/&iWl_OT2AKZ@!dX^pI^sC$BZ4\slV(+ZK`[Ye7#W(t#08K29p^+8jF0qP[NFXPdI -% <1U)YhfkCTE/cP-ADQFh1]TGVaV4`FW[aYR>P^*`)t>3PMuEl;cdC+la_&r'c34oV5_LN@Fo0p44fQ@!a,s@M>"mu*nARABWfZ[T/GjrH>,O0o9[(n\qU+Ka5tA[sL1dfb1EXg -% q>G[a]L'BWSEZql+i@&m+gJ='+AnYHQf?SZV9I!@UtT^_-7(tdK+dJ"qDdj+;"2/MEfNL?eKHqM=0^u]WB1BI"%=adA, -% ><67.^fCr*^U.W?c"&KQ`[J-ol'"!*nPPb\E`#Q`"7,u?jq$%teL!al#SN(0WEUt7cq`TT!+ -% &I<#_b5bb.!=WcuL+_hD$Z_nm).:760XtO$Bm?p$hV\T!cp8(Vi.;hU+D*Zb":ZK@66=i'L. -% Ud*%gq5])o<_Q1U)E70So=jlRW9'/)\NZR+*(L%-AQqR3=>a5n1>CL4YZ+%>eCJR-RS'8A@1 -% 1@h8a1iBV$2E.JLDTE,P$%-ehbJCJh"!=_g&ku?gGc`NK6%:BW[)<=')Xe#P&E"2(Mj8]C_S -% i*`V/a?2kRET-5EZ1l]#<')Cb@M7V*+UY`0i3-(;[,N-'EI<477S)X+9?0d&0>*[J,p0/N&=3Z*&V(UDi4K-dZ"JY.Dmn,7Yjcd27 -% o`st@@1O9s7jV=!(g/C?']X][9ZB:ajRk8.hs86=62)":3=&6#D%+bGUS*]f&nVm&%!;6gkI -% I'iaA=Wn/FL\a[8t-PE`osL;skfYB"1K;sd]$*pY,5K"7Wii95hT(0C<,Qm4Xr56,EEd1s7+ -% +U2J$TAiiSDdn`%UWD6:A[Fl)5aXb?F[t\L#(UpX'Q@l:A -% !r3nLfBS%spSIkOh%,#%[+V==*TGRNm*QTir+3Jb^[>qj0BbPYHQ"!/=kex -% EndEmbeddedGraphics N 2408 968 E 83 S 43c7d R 86571ff4 -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -214 424 160 208 rectclip -0 0 3 1 10 SU -233 505 T -N -3 L -0 nxsetgray -0 116 0 0 line -0 0 T -grestore -0 0 3 1 10 SU -232 457 T -N -3 L -0 nxsetgray -111 -49 0 49 line -0 0 T -grestore -0 0 2 1 10 SU -271 532 T -N -2 L -0.117237 nxsetgray -0 0 m --5.333333 -0.666667 -11.5 -0.333333 -16 -2 c --20.5 -3.666667 -24.333334 -6.666667 -27 -10 c --29.666666 -13.333333 -30.333334 -18 -32 -22 c -s -247.384781 -32 -22 arrow -grestore -0 0 2 1 10 SU -230 436 T -N -2 L -0.117237 nxsetgray -108 -45 0 45 line -157.379471 0 45 arrow --22.620533 108 0 arrow -0 0 T -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -/Symbol findfont 12 scalefont [1 0 0 -1 0 0] makefont -305 -exch -defineuserobject -305 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 899] concat -/Helvetica findfont 12 scalefont [1 0 0 -1 0 0] makefont -10 -exch -defineuserobject -10 execuserobject setfont -0 nxsetgray -265 454 moveto (d) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -10 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1061] concat -305 execuserobject setfont -0 nxsetgray -277 535 moveto (q) show -grestore -grestore -0 0 2 1 10 SU -244 510 T -N -2 L -0.117237 nxsetgray --1 3 m -9.666667 1 12 4 28 -3 c -44 -10 69.666664 -30 91 -42 c -s -grestore -0 0 2 1 10 SU -233 497 T -N -2 L -0.117237 nxsetgray -1 -3 m -5 -4.666667 6.666667 -5.666667 12 -9 c -17.333334 -12.333333 16.833334 -11.166667 32 -17 c -47.166668 -22.833334 74.333336 -35.333332 98 -42 c -s -grestore -0 0 2 1 10 SU -330 454 T -N -2 L -0.117237 nxsetgray --1 2 m -6.666667 -2.333333 17.5 -12.666667 23 -13 c -28.5 -13.333333 33.833336 -6.5 36 -3 c -38.166668 0.5 31 2 34 9 c -35 12 25.333336 9.333333 23 11 c -s -grestore -0 0 2 1 10 SU -336 467 T -N -2 L -0.117237 nxsetgray -0 0 m -9.666667 1.333333 22.666666 -1.833333 28 -2 c -33.333332 -2.166667 25 -5.333333 26 -7 c -s -grestore -0 0 2 1 10 SU -345 464 T -N -2 L -0.117237 nxsetgray --5 -4 m -3.333333 -3.666667 7.666666 -2.333333 16 -2 c -s -grestore -0 0 2 1 10 SU -345 455 T -N -2 L -0.117237 nxsetgray -0 3 m -4 3.666667 11.5 2 12 2 c -12.5 2 -4 0 -4 4 c -s -grestore -0 0 2 1 10 SU -352 448 T -N -2 L -0.117237 nxsetgray -0 0 m -0 0 0 0 0 0 c -s -grestore -0 0 2 1 10 SU -347 451 T -N -2 L -0.117237 nxsetgray --7 9 m --10 10 4.666667 -1.333333 9 -1 c -s -grestore -0 0 2 1 10 SU -358 457 T -N -2 L -0.117237 nxsetgray -0 0 m --0.333333 -2.666667 -3.666667 -4.333333 -4 -7 c -s -grestore -0 0 2 1 10 SU -233 495 T -N -2 L -0.117237 nxsetgray -0 0 m --3.666667 1.333333 -10.333333 1.666666 -12 7 c --13.666667 12.333332 -13.333333 -2.333333 -14 15 c --14.666667 32.333332 -12.333332 11.666664 -14 37 c -s -grestore -0 0 2 1 10 SU -[1 0 0 -1 230 510.5] concat -[1 0 0 1.2 1 1.5] concat -N -gsave N -7 5 0 0 ovalPath -clip -N -0 setlinewidth -gsave -0 nxsetgray -gsave -12.650691 12.650691 -4.225346 -5.325346 oval fill -grestore -0 nxsetgray -gsave -12.018156 12.018156 -3.909078 -5.009078 oval fill -grestore -0 nxsetgray -gsave -11.385622 11.385622 -3.592811 -4.692811 oval fill -grestore -0 nxsetgray -gsave -10.753087 10.753087 -3.276544 -4.376544 oval fill -grestore -0 nxsetgray -gsave -10.120553 10.120553 -2.960277 -4.060277 oval fill -grestore -0 nxsetgray -gsave -9.488018 9.488018 -2.644009 -3.744009 oval fill -grestore -0 nxsetgray -gsave -8.855484 8.855484 -2.327742 -3.427742 oval fill -grestore -0 nxsetgray -gsave -8.222949 8.222949 -2.011475 -3.111475 oval fill -grestore -0 nxsetgray -gsave -7.590415 7.590415 -1.695207 -2.795207 oval fill -grestore -0 nxsetgray -gsave -6.95788 6.95788 -1.37894 -2.47894 oval fill -grestore -0 nxsetgray -gsave -6.325346 6.325346 -1.062673 -2.162673 oval fill -grestore -0 nxsetgray -gsave -5.692811 5.692811 -0.746405 -1.846405 oval fill -grestore -0 nxsetgray -gsave -5.060276 5.060276 -0.430138 -1.530138 oval fill -grestore -0 nxsetgray -gsave -4.427742 4.427742 -0.113871 -1.213871 oval fill -grestore -0 nxsetgray -gsave -3.795207 3.795207 0.202396 -0.897604 oval fill -grestore -0 nxsetgray -gsave -3.162673 3.162673 0.518664 -0.581336 oval fill -grestore -0 nxsetgray -gsave -2.530138 2.530138 0.834931 -0.265069 oval fill -grestore -0 nxsetgray -gsave -1.897604 1.897604 1.151198 0.051198 oval fill -grestore -0 nxsetgray -gsave -1.265069 1.265069 1.467465 0.367466 oval fill -grestore -0 nxsetgray -gsave -0.632534 0.632534 1.783733 0.683733 oval fill -grestore -grestore -N -grestore -2 L -0.117237 nxsetgray -gsave -7 5 0 0 oval 0.142857 0.166667 S s -grestore -0 0 T -grestore -0 0 2 1 10 SU -[1 0 0 -1 344 460] concat -[1 0 0 1 1 1] concat -N -gsave N -7 7 0 0 ovalPath -clip -N -0 setlinewidth -gsave -0 nxsetgray -gsave -14.882204 14.882204 -5.341102 -6.041102 oval fill -grestore -0 nxsetgray -gsave -14.138094 14.138094 -4.969047 -5.669047 oval fill -grestore -0 nxsetgray -gsave -13.393984 13.393984 -4.596992 -5.296992 oval fill -grestore -0 nxsetgray -gsave -12.649874 12.649874 -4.224936 -4.924937 oval fill -grestore -0 nxsetgray -gsave -11.905764 11.905764 -3.852881 -4.552881 oval fill -grestore -0 nxsetgray -gsave -11.161653 11.161653 -3.480826 -4.180826 oval fill -grestore -0 nxsetgray -gsave -10.417542 10.417542 -3.108771 -3.808771 oval fill -grestore -0 nxsetgray -gsave -9.673432 9.673432 -2.736716 -3.436716 oval fill -grestore -0 nxsetgray -gsave -8.929322 8.929322 -2.364661 -3.064661 oval fill -grestore -0 nxsetgray -gsave -8.185212 8.185212 -1.992606 -2.692606 oval fill -grestore -0 nxsetgray -gsave -7.441102 7.441102 -1.620551 -2.320551 oval fill -grestore -0 nxsetgray -gsave -6.696991 6.696991 -1.248495 -1.948496 oval fill -grestore -0 nxsetgray -gsave -5.952881 5.952881 -0.87644 -1.576441 oval fill -grestore -0 nxsetgray -gsave -5.208771 5.208771 -0.504385 -1.204386 oval fill -grestore -0 nxsetgray -gsave -4.464661 4.464661 -0.13233 -0.83233 oval fill -grestore -0 nxsetgray -gsave -3.720551 3.720551 0.239725 -0.460275 oval fill -grestore -0 nxsetgray -gsave -2.97644 2.97644 0.61178 -0.08822 oval fill -grestore -0 nxsetgray -gsave -2.23233 2.23233 0.983835 0.283835 oval fill -grestore -0 nxsetgray -gsave -1.48822 1.48822 1.35589 0.65589 oval fill -grestore -0 nxsetgray -gsave -0.74411 0.74411 1.727946 1.027945 oval fill -grestore -grestore -N -grestore -2 L -0.117237 nxsetgray -gsave -7 7 0 0 oval 0.142857 0.142857 S s -grestore -0 0 T -grestore -0 0 2 1 10 SU -[4] 0 setdash -234 495 T -N -2 L -0 nxsetgray -18 -126 0 126 line -0 0 T -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Symbol -%%+ Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob33.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob33.gif deleted file mode 100755 index 9431c1ff7..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob33.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob33.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob33.pdf deleted file mode 100644 index db0e1be62..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob33.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob34.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob34.eps deleted file mode 100755 index 44f72d1f1..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype21/prob34.eps +++ /dev/null @@ -1,897 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: biophys2.tm.create -%%Creator: Create -%%CreationDate: Thu Mar 6 14:15:55 1997 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 170 421 369 551 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(i?G0i)6Q%arE&gk$N#V-;=4\l'^A%(N@Ua;-,Ff/Y3d>D`R.24n$lCm?e;n#? -% L3iW[c(H)-2V=#"%PZ67T6rHYkF*6[V=@\/Cq+Ig)6_.I6Y -% g1Z2MPieOJ.2CSX`*h-'`k?8Kd$n&;W2J6(l>'C>$SW-?L,^QWfpKjd-L7/Tt6\N&_*q-^o& -% ;>%j[rG$8X][J$"+YfTA(D7Jgg#&h3V-QI-M\Z$Qic9WhKC2?jN&/jDCfA1Z(E?QBKfpTkaH -% Kqa_LO0uc[i^(q_8i0to`[;t*\nFS+FFJJf\hAo:08Y\(M6bkLE:mK+r;GD6)'3RTLbr;/@l -% +^N&96Zd/crI;2--+PT`O>9MnbS'2Ur\#I-]LcpVb[+SAZ0b[OJ,(RY\074"l@&I:#jFF_5i -% B\B4m>"G6-mZL<#@^/^]6(0.]SjK`5/J;'1=4a/- -% bWQKIB+9`DkBaEOg?,ON,=T&3taS"[k5ua!.E=0`Y)I6a6W$N1k9&#GcpU)$LEm0Ym`W^p(_ -% -A:YIL!AmqJ("E<##lpJ0^rZUO$=&;5%R`H60UtDD8O&_Ed%i.k."J]07O.k!g#W@a1aa?/? -% %CWnX1\K\+)oX.-Q-mo!%/EC?$7Q0mp5VCg/cUOg(A9jJ_pfR;DeK0gfOk!3sL8d.KMXS!P* -% $KRr2O1ZISB,n004J@?*nmfjpAaJ6A2/IE!RIXaQ&(R'4Iea)&0>QJ6;3-3r^REcO\5Tls1t -% Vfd@kb$>nAof6]2D'HPtHhH&7"+uc:G\KhU<_>^hUX!88L3ReGWeCN:&7H&.r"i^i/&J4_KX -% crVlA-aXR,W[/B[NM]A;(mMTLP']&JfPS%3HTU!"=Y`kDF?t!IV%VG8]5K:1lU:2'rm[=<1u -% Bo=E2b%Q'oRSS:oA4#1i&,"53T -% 'IsX65Z^u%f3LR)Am*O3Dbh4?na&Ji#moIH;OEVE(0J7d6\ZgPBp9[W`T"7<\"NMX^D-\3#E -% 3XP.SSk(k@kV7W^"KZ?I@]]k3r -% 6(SYX7)\5%kBYG_eFX)J]d>4d;5=7<*i:os(g+&/=mVl&](j88M%N$a*#/oD"[t&PArRtn+0 -% 9!1#?o5hJ98/.Xs.M[-D1+aDt&dM'"YL%hQ/Yb:?.Nr%]Z=TlMDB]*,[nM81,V -% R(C2,gqk4$%R7)Ot?_p$U"SXd6LeJU\Ke855E;T!;pnK"V<(J=_?$H*G1ur"$e.:nBad$@7S -% B-;(Mc&K/@96Udm2<7h)Fm6uoN&r?>r<2-*#.!\=mS%E)/6)UlUjPFk7S.0X`Qd"4juTg*,P -% "/opu-4D%,EYnltb)jk?6t&S4^e-*YJ,f^7MJTCUFmD=(6a6]?N%+fE!*,SS#p0SM)9cIiP^5sV\-=g2VXSB0!!!9J$t0\I!.m(_TE#- -% 8eoOD,.D)Mc;@]"p&nf\H[XLIp$u-N^GbHL(!C;Cr#59$'aR!M1;)mc3(V1PYlY"n^;gcI4+ -% 0A*$CAZH5f>`!B'!&-$B80XH!Z)](nVf*k5I-'ZHf@&9YYa''.@D(LP&gFf7%0SJ7 -% Zjsqkf"`/(D!2^O<=`+HZ>,M<<`du`+0d'/j/&`$>KgF$qK0`WXYFU2I,>t-'<$//BG5Q2!3 -% Es[!$l6/7V`oB$SRg^9qGF@m1n`($MCH:%`FjsSE8%nje`',Z$U&@At]j&&.iEiNqhS.D?M' -% _5F?MTV0_;C2qQ/uk-R]-qc-5n_U=f(oSO.gcn<4\ZjCUA:lDo<*?iTmAZ-1'h55'f^!=s.H',M15Up2kr[4DYEBqlA?ZKXS -% G)m#B`+eY.EaQ_dF."uK`q":7F6c@?*[>a)?bJS5[>6jk)V5QH@c`*%>5(FAg6ah`.:\bgb^ -% !2T85"?/kePK85D-6I5cG@sQY)t\$,e5WTQ:,P3$?^YLtAh:P9^G -% B+96quA^R4u"9GUY[mSFF0WVYMfna5EC!)[V8&R,J,0g5Ia^:qgSd>4o'M',B63am>L]M!ZQ -% T\U7cnPWT9,KU/dU5!)`XNqL@b>YY]R%jDN,q6,.Ds/#)*1%#m-(3p9:IVUcENuCU\F68Eel -% 6]4Q[*B2k!\6aNRIMN>c'I'J/:a3qh'Gb';h"H]4=/>i5T0_hARA)E;cEa-5NfNqkDCfXQJs -% 7h,IcaZtK-o?!*3%+r*L!t>=W2a\)Nbr6aR1Ir@T%'+Lt7V?FWK-*I=dl!XF1l)'/m2FhSieTP/7jS9"ME6=T*S8uh6#9@Pq9NMcChIX0%GLpg8Sp8kPBc_TcahaQqnB'j"I -% J::=hgYP&=5\Te'R4#;GV%L?Je6?Q+`S50H6JUoEmZ$H+,9"!Lh=k.ibBl^Tcsmf"Q?'V0H* -% 9A!_l2d&fmSN=%4<*;7&S%[tSgd:I"q"!%*uh@&"65)'Anf,kPac>st81A6Etb>M#!ap#T_J -% LadLX+;Pga_n#%2+QQcrEk<(hE/!CR]K]EuJ;lNj-%GtXYg>rqM%*],+UUc:YZ-7JX)>iBG' -% iU^"JfIG)?^To6NL#O@Bfe8S7QX^"*h&G56i!4YuG?Zfb]g>pb55pbV5_9_1@^.aiHL^ljk6 -% @N%p(.0iCud:2eV_LU,-m?m>hU[37dXXT/pR+95O0UUT!pMsjg,-985;jVF018fYTFK1n*Bd -% )6K0a>!l<^FmJs,o1$c`e>JfhD86mbmZ--&PrM!NBua>B#Zh!X8bbo-b -% 6h9,B#pDd81C5(p$5i?oFR9$?29]N<<5f6jnPJZpM,Aa&f/iG(3%TKSEl]+_C%CmR88Bf;'"t -% cjM'9c%qiF?iU,ue^KM4YIh.?#h-7D!4;3;mund[<_0h:(8cd?njFcjOGNs6+V:[SJ-uS&[2^6LGp$)1fda7l!c0 -% #ECnjN'RP4nsKHUe;5Q`#ZE[kW6+)'"rh+T!$k*#!8&,J2h$aAE@_M#JI&%V7a?>W -% $H+$f1'%DHnq)S;TZ!?K54Y+;M5aE\=g"+ufYMKL3L_,XlM!`A<<<616:E3AOGO+%+:sV_$R -% Kff6[W;tER&?s>(T;\X\CDZn$#tEO]`H!qEpP(@\r;2-Seeu:PA(M>mYEu^NQp0QbXl"0ZB+ -% [5?r)h2ABU$/a5qg6IU_;Md.Y&C!BJ;_(,3c^aW^66k+V5M68CB_9OLQFHR2n-H%2`F/_6G# -% ."qMa@%;]JC!\l;49q"VIH8;ctNusRLot)!Y?7MP'Re3Si[;ba%+E$:,IV=V55cO83^C#oUY -% gTV6*Wm#qFRUR2`ZkhnBmPI`>$Wj@\2S"c='k:(rjMZ@c-k?qSWt1mLd_BIeFU5+o&SW*)7A -% /re#sqtY749L]7Jb?;Q\t1D_0e7=lEu"ZUa]THfJ=e-Y1'up2q -% uq"l%ASoh_^gI;*-mCa0E$fYHH60M`EW;$I8LW,dl:K\["9pu^*5,0fVbSuXHDZIZp]<*Y5j -% $WG$i[(?A6DS[6;i8#_^U?;D+HK)nYVFa6s:<1O^-ncF -% Il)jN&AR&:j$r#dV`AH>'3L&-e%n>;dSXa2qhtQK%^d,# -% XB9RQpqnA$J;&*=s0V126101Kt_V/+S&p*Ad%#q5:CXTGH=.7E^C-UY3r$`M6AbjBF\(R7K< -% K:kr;$EA.g2Va]^gD9Z*7-m008e.,m-.PX,go."`KJ8VdF)!=I,oKFa`s=M.:MBe)(Y`_#M@(Mh&[)Aa\/$T!ET@fr_fm=6$(5.)DPk_BJP9LQ -% o&I&d(/A;N)>H9RW.uEPN%0@Aa"dJ.[6l/9U,fm\e>?8J0+eKR4VWdm\[M-l-ACD=0I\%LBf -% %or&ZlD\Ru4'GjBLQn@3Hg!QYt2f$noQ"*=lnGl1r9$Cn,?.^o<.Z:iZf:IBY_MulYAaqm>$ -% luM3Bq/`,-@uT@g!0oZS#U,[:,/A#GquZq:]"Nk>?,)N`gi^Qs[F]n])9/1Lf4g&l-l8VsRs -% *S4(Pk*1R0S7frfH-2>\00uhgMBkkF[P1%Q;rg#?CoBJdhq"*?Y?p6/c]1U6QmD-(`Y\E?Kk -% c>a89_8>;!pD&5_r;cs\WGr(Ubj,FfUTVHo=o[r&[5_^\_5=EeQi/ofI5XcQ8d)"F470*u#C -% ^G(T63%9*&OD+l3@DV,)[^fNLNS2N8Kcdg5_oGFa<1Qn@s"s\(NRl2"q4aiiPljOS8-%_DU: -% \)(i4/rWig68_$10EUsVXLF0m(/)f<*r6QZYSOfTO8YX&@"bs$K/*7HBVl54HDnOBOgmXQcS -% 1=T,&(Y=sML)]6GMea>E[(C.\@u(^!(N>$N#8pdnJO^0Ep5;EL0\F1@^G-RQ0HN!f&?ro)fO -% 1r!1Q8p7$o^;-#7V7u9EPbY/6kQ]XR7PBX(eeA#9.R->)'2$aFJoGA$A#6WZW-u;lq/r;8sJ -% p.)9XH!A#'[,m\%E`W8OkqW60+9F>$iBO,phVKHe1Be$$X\uVm9b"A_:\E[77_\>U0H!UJ\N/-\T$/IDnc)U%.M+::Q2Np!]R3#`00.Ho#2 -% Jngp+X:L[7"BAohrI(FaF1Em(#i/2PO/j",mMEqK;$*$>Nh!7=>Y=+lH*YV@nF[N$1,CUl3_rF?enn9o.0VOqIYJ()@'?#$/Qq(WGFQ!^\ -% V3$&i10-Gh6*$F]QjliI2a!\bU#5kZ&=s'P8CR8TK%>`MdQH%fa -% J!!\Jm6O@/#7T$m&>-M9X7O,a/8JDD2/3J5-;-n/064REQOVXE:@5heoQoM^1mWcd -% d%7$kM?^r2E*Q]H\1,+^c>9aI/-mfbPnV\o&'DV&&_ZbLnMFHN'K/1650E_@[!Ut_*-,iYQq -% =B4='qmmnQc).6_C??5M]WSc66)ObHjZD'6iHeq"9fD?h!otr>QK?Z..V*&lR6$])'m.:MNY -% !djO[`"a][.DPe.iF.HbZm<3DAoXaHu#@Tb:nh+_+le/L%=7P8#EMf?IB"2':Y07+SCETJJ/ -% ^^B5Jah]*g%%HCi+D+?*NCo\mjJFm7`NaB6DOdI`Vo_c417#1dPVR3U)/9@O(k;Sqo.1gW/l -% 5EG!.ug>Cf=0,f>3NBEA/OMc3R!6(,qgA&>s2NH0i&fQfc\h6A4PEf69%ZA0M80-pRbPnC-< -% SQAh[5cl"(m]V>NNWMnN]X-bBFVj8p7UbjA':oR&fNkq!uKI,HUoi55a/R5jqgf]-k0!ub'# -% )RCOj,j'iF#&r^cb+&ToNFs.>Z5]nh.AU\Bir4r2Qk>1/F".s\sG]`ZBW%jAW;f)hGk[3%1$ -% hO/@s6l#^&,(ASt%=4&R?4Fur;%"?SM8a4[cfNjaXMI:UE(h:=E7Q(S-HX4EZj< -% rP;apjn^NN6kop.9cr[[;qh*'tDo9*ri@<:2umXMtpYn\j4Na*4U/$F72;J..\eNItd%4nUE -% /&<]kRrEMQPHW8?7-$2B]4]"OjB.>TMEueWcAshkGMKG.tK((mf*eR=saRf%#`N1@1S,(EF( -% 6bJ\m,V.s'[e_%oH#GUB,j!`4&N6)+h5b\%I+kMTK]JB;Yuss-e["0Y_jC;rP5%:4'(QbAGLGBY>IT_:WeU[?V2YhUrsAt'T_HGJ+C< -% J7XOO[IgP\=I^!EL`sm/H$#YJHPrc+8=kO^=PXca_M`kjOPD -% EQPBH54"srG1uteL4P]!CinP[p&CV4f)GZO:J^`7QiGg_`uWCUHHsQT;+,TV#Ck8OCH,9ZgX -% gjMf4k):D;j)kj*,$r-RL3/J?NU9kk8a>=+*'*,VO*=:UNs>[7@pDUD#(`F -% 1-R]`O.!2?5!4>=F&S26&n3EBA'iI=4T@fr_fn`6$#[.(boY]BJP9LQ -% o&I&d(/A;N)>H9RW.uEPN%0@Aa"dJ.[6l/9U.#:WY*>+=:(GARPfF-^o"WSl-ABI85lAo4pi -% AQX;pd!i,n(T-,ea/=0?PUA9($[hcPTK=LlD;h1i\0"eBT4&8)u'bqWjuF1m,Q*< -% ;jNQkjVqH$;u-moVPMJEZer$@Hl^,AGa5r)nJP"jgKTTG0+O:$QL]L`$!5f7UFKl&eEmS -% 5!$s\JE`Z/^:C;q31cpn38bo6*]$330b#o]>ju54IsaW%$/7^t`/oBcZ47_#CT0XM0W0%/pa -% s;U..tG"T!T9iEMeRSXopes@3E -% #ZO?`kAj,KA]HVaT!WI_+kgXa4.p?%npOKdn'1$X\-?a7Taeql().ij+f8`(CGk(]YN=,D[q;`;g,+U((S^XCjsP;.0lb*/_Us$#3 -% 3T?jME8_R%;0XU'U1ZefYkQ^g.r%oaV(T8M&0UN(r1&?#k1,R7Gj!p0th!(u0Wgh*L]oW0JA -% TE5*si1rud/J'>7$7a$s!Vnl1O/%+W9\D(7=Q3TXs?I7h;:Q;aaUga#`k)Rk0M-`bPBP=/jTe7m3+WiDho -% no>TR/6G?/=tL@g/*YTW)DnNA:#ANb)'6Gf2+pZ_Vpq@Xl2f?dn?]B6MX5OE5PM$ -% [:;$F[$C$]ej0lSNl^<189Bk[8-CSXN;LRs;.EAM5R\Xr:,\IjJ$$eToY]L1drj'qK8f$>r_+5qcgE1oj.rjl+;="> -% q7RHq8)EgOK!"K?uolegM:[!Ip3)ojak#Ba6>T9Fs&DLL\JU?,-l14V>59;?k6;(kJ^(e[*5&Q*hb[^`=)8\b4nlDeB@Z -% `:q`si4ojqYGGqr>[%^obVBBE>g#7nNUF*f^nu..'C9K0Q>b.L1M` -% n$h@2W9^p6/3[WgMD7Op0``id7\gUYI0Q[@%3mdp%E]l*e"g>-]FaK#]go_u?>q:AGY[^r&A>cuY&O'@NWdX.p:\DUC%/48$("RL,HEG*aCd2iCg.\]\P -% M]p&\P!sL-#`\&nLa:,k1&^'eo]pWY&45PFRibMW\Q57>PFTak7Nce42[7Scr1eDk]ZmP5M^ -% FNA(<'$QhT2i^Z`pT?/c;&`.`$B0fT#PXQ7t"]"F9a4Fm8nGbB7\)n#ach:R/dA@!"@fe!`hU -% >bk>UW[t#Q6E9JZ?DZUE914qGtJlL?CWWmrA'lHTq$rV(Zs2KTs8:$=uE6;a8??8(E8;)OAC -% e(FULN5D?0E/M -% ^orI9)L/"835o2@,6RU(i3FUj=8M^Q"`]8W+Bp, -% A;5X7eiY[`k)+MbI1TE-)lBD,UR3Ea(K*_-^4.?ffYc'U6]@3*rKlRM>qp.%ZhQnd+lfM!OF -% 9Rtd%eODtBeGs#C+Gg44#QOpN!ala.G[c1N"F'uuK2trK8VHq"\;Dc96s,M'T"O+AJ-C7^NZ -% j'\;TTl^agT8%!7E[A![hrm=(7p&"WD*V.H[:J5%s,IOdUcT=HH2H(!:8W\d$oEWW6Op.e3^ -% `^m,64d2N)WM,N,lM2fBBF/2K2h/:hUa-f/[Pl`"hjI(dpHL.p$*dmPGk)UteSKbk7J -% CXR:V'8/-idl[f1l1?+*id)UKpX(\9;RLGj.L4RGfjSOT'YLZ4I&sh.B38n>"'s;qW!DmT); -% N$Q7TW"`g!LQ5bi/i$us)h3Z87"?NU/XA<;0J$!EC\*>r^W5`W;>PC9\_jWGZq'$QWhHja[# -% K4J([&7:/PVQg,gfj"Pl;?nPjp`%]*od+_q1%`Zg;!t6qqJ&;[Q(f,bm2om"%%62."I.5&"Y^GAN"^W2n\C7DgheYgrqI^_At7KMk`Z"DC7He=jD(OjIGBu-T]\\_/oi(6gRq<3 -% nUEl$aZn)l?J].h=XMQ^LJAUR$YJI"g<3t_aF'nB07&6%su.A*r!;P54Oc]I!@oKqMa%?pW5 -% "9>aQTLl?>HOjH#&mleh^DGQg*8"G$nj+<__l#,aUL5o2>n"adU6XYJ!P*rMH4"$o7RU_%Ea -% A)Z5DpVOZC/T"@Z^N(uB4 -% e"=df1%BK[NS2Q7^;*Y+>R,ldeA'%AiN(BBGgXrl1_W]qYKl."Sh!-f?]^!sL6ASK<_@1&\_D,_W)S!=F);Z2C?(AT=iT$,rrtp]:MVJSMC=>)Zet)HbO -% q()ZXfXT9'(RDn_t;84]CA'Y:]aBGKJDmHIYkgV91We[pEh:'19PSql3f!K"-)@.$VNj^c0[ -% M]35D_0Jj"j-J-7EJYrhCD+FY;@$1m8`eWna/h3?lGeMX[WqJa7F<%nupW"NTr;&*.$X" -% &p8#Sk.*N8ki3+D(,X@H/l%L`G=']LGg1!_*r?BSgW^@=?&;XCe9GmkM(!0]\"]'87e\7T6-O*BrF[W/.Sksqb%T"T#"JJ^Cp -% b`.9d/Zs%^f@-&"9`aFM(gn`(((sM!,D#[*R.W;FhTFonVgO4ZY$`>Q'+B2E?ub6!C-fB1iF -% )/kQs'!](G"Q]tDSF%Tdu#j"9l=:,.9=?V(Lc#*H"i@1*7,,Lm@p7"ZDBC0@AO5TTX-XcDd' -% fgOiO&-%_BIQ[rN;/-1?G?$jeStQKZ#XAh16I&P=CJUaV7/p;5\MOElAq(sneOYEufF\)p<1 -% @/Lc?9H[Mq>.XgKJt7pR`Z7N.,_2@007aU;bVaG=,ESnZH](^J*mA=ZXKgeoZcC4Xd3%"$jO -% BQY]:A-qu*<*Z;GOa9]/P=)SMu]*/0=355(l'cYbWi!U\frZP"+r'QX_\0ib&.p&S''E)<^( -% 3'822S3H))dpIO(K8[RhRViq(4*BmV0"T(qI;=bL"`S(%j4!Fh,gI-]ItgSm;h%>?H;erof_ -% #-r'rZCVp_IN:G*2-UJZ_A&3(^@r0Do4m[4.UiBa7o&Gb$GXAFTh,*[&^'7],aBD*'beVft' -% +:5<\G'lBtXO#eS1Ii7!d[@Kp:^(>N=$hQOQ@!:f2:$8N.9V]hk!C3DNgNRr/M:^"Pa.NdRT.2.940S-(;CfS8$N1^s9THK#_GFPK -% Ilt9s!pO:W_?[`#no_2u9dKgEZ+Ta>#'_$GKf.O?VJHW-;M+sCEM.WBF6&ITl)H4b0!FU0*s+EQ4[I',431< -% 12]!!8`g"t!G$Xlp)d^hcm+1u4fX"JQDo0Ep\GFEFsIMh-[ldqtiBK2M1Xj8`p;_?oBP)n"U -% MrPreILh2RSAHXE=;$\kP\9k.+HNN\sbm,@_0TT4AEe1G*'seFM7Lfo[$6\=1T!/]rOD6^1F -% ,Am+?,1Xl)'Oqd.C'Nq+PDlYiW(b.+Y']F/$Oc2P)uaL%*\DJ;ka?ITGHpk!oqoL6"c4"[;D -% S7NonECg@Al!JrBJ'Er1WFS>_LT#E#rkDuLr7QUZ[u[Vu2.Pe`qF+4;G?Op_W6(7!;o,U*:D -% -Q<5^EYJ!uQm+%%_j)"SCe_\q0q]<1THK'k!"_DOfERS-P_4f`PXFRLV"]M=#7US3+9XA$%, -% dAgZ"R55M&7"cP/^p1$'85&MHSVZ";#8G&-rZfA"2S]6>S82_i!F/N#+gnVSfjIBPm3VD?RK:iaEn -% 1+!:Uj3K`D+H#oXT.+Mt@O0\HO^.?3iT#ts1_2e/Ks;@h!["_o@mC;C>[+9iQWSiC(ECF!)IZD)'zx -% EndEmbeddedGraphics N 3253 cb5 E e8 S 5a1b4 R 37d200b3 -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -92 450 397 98 rectclip -0 0 2 1 10 SU -425 488 T -N -gsave N --25 -4 m --15.666668 -6 7 -10 14 -10 c -23 -10 45 -7 53 1 c -clip -N -0 setlinewidth -0.965514 nxsetgray --34.333332 -10 93.333328 0.34 rectfill -0.959181 nxsetgray --34.333332 -9.66 93.333328 0.34 rectfill -0.952849 nxsetgray --34.333332 -9.32 93.333328 0.34 rectfill -0.946516 nxsetgray --34.333332 -8.98 93.333328 0.34 rectfill -0.940184 nxsetgray --34.333332 -8.639999 93.333328 0.34 rectfill -0.933851 nxsetgray --34.333332 -8.299999 93.333328 0.34 rectfill -0.927519 nxsetgray --34.333332 -7.959999 93.333328 0.34 rectfill -0.921186 nxsetgray --34.333332 -7.619999 93.333328 0.34 rectfill -0.914853 nxsetgray --34.333332 -7.279999 93.333328 0.34 rectfill -0.908505 nxsetgray --34.333332 -6.939999 93.333328 0.34 rectfill -0.902173 nxsetgray --34.333332 -6.599998 93.333328 0.34 rectfill -0.89584 nxsetgray --34.333332 -6.259998 93.333328 0.34 rectfill -0.889508 nxsetgray --34.333332 -5.919998 93.333328 0.34 rectfill -0.883175 nxsetgray --34.333332 -5.579998 93.333328 0.34 rectfill -0.876843 nxsetgray --34.333332 -5.239998 93.333328 0.34 rectfill -0.87051 nxsetgray --34.333332 -4.899998 93.333328 0.34 rectfill -0.864177 nxsetgray --34.333332 -4.559998 93.333328 0.34 rectfill -0.857845 nxsetgray --34.333332 -4.219997 93.333328 0.34 rectfill -0.851512 nxsetgray --34.333332 -3.879997 93.333328 0.34 rectfill -0.84518 nxsetgray --34.333332 -3.539998 93.333328 0.34 rectfill -0.838847 nxsetgray --34.333332 -3.199998 93.333328 0.34 rectfill -0.832514 nxsetgray --34.333332 -2.859998 93.333328 0.34 rectfill -0.826182 nxsetgray --34.333332 -2.519998 93.333328 0.34 rectfill -0.819849 nxsetgray --34.333332 -2.179998 93.333328 0.34 rectfill -0.813517 nxsetgray --34.333332 -1.839998 93.333328 0.34 rectfill -0.807169 nxsetgray --34.333332 -1.499998 93.333328 0.34 rectfill -0.800836 nxsetgray --34.333332 -1.159998 93.333328 0.34 rectfill -0.794504 nxsetgray --34.333332 -0.819998 93.333328 0.34 rectfill -0.788171 nxsetgray --34.333332 -0.479998 93.333328 0.34 rectfill -0.781838 nxsetgray --34.333332 -0.139998 93.333328 0.34 rectfill -0.775506 nxsetgray --34.333332 0.200002 93.333328 0.34 rectfill -0.769173 nxsetgray --34.333332 0.540002 93.333328 0.34 rectfill -0.762841 nxsetgray --34.333332 0.880002 93.333328 0.34 rectfill -0.756508 nxsetgray --34.333332 1.220002 93.333328 0.34 rectfill -0.750175 nxsetgray --34.333332 1.560002 93.333328 0.34 rectfill -0.743843 nxsetgray --34.333332 1.900002 93.333328 0.34 rectfill -0.73751 nxsetgray --34.333332 2.240002 93.333328 0.34 rectfill -0.731178 nxsetgray --34.333332 2.580002 93.333328 0.34 rectfill -0.724845 nxsetgray --34.333332 2.920002 93.333328 0.34 rectfill -0.718513 nxsetgray --34.333332 3.260002 93.333328 0.34 rectfill -0.71218 nxsetgray --34.333332 3.600002 93.333328 0.34 rectfill -0.705832 nxsetgray --34.333332 3.940002 93.333328 0.34 rectfill -0.699499 nxsetgray --34.333332 4.280002 93.333328 0.34 rectfill -0.693167 nxsetgray --34.333332 4.620002 93.333328 0.34 rectfill -0.686834 nxsetgray --34.333332 4.960002 93.333328 0.34 rectfill -0.680502 nxsetgray --34.333332 5.300003 93.333328 0.34 rectfill -0.674169 nxsetgray --34.333332 5.640003 93.333328 0.34 rectfill -0.667837 nxsetgray --34.333332 5.980003 93.333328 0.34 rectfill -0.661504 nxsetgray --34.333332 6.320003 93.333328 0.34 rectfill -0.655171 nxsetgray --34.333332 6.660003 93.333328 0.34 rectfill -N -grestore -2 L -0.117237 nxsetgray --25 -4 m --15.666668 -6 7 -10 14 -10 c -23 -10 45 -7 53 1 c -s -grestore -0 0 2 1 10 SU -157 523 T -N -gsave N -0 -2 m -61 -2 32 -16 75 -14 c -clip -N -0 setlinewidth -0.965514 nxsetgray --62 -16 195 0.28 rectfill -0.959181 nxsetgray --62 -15.72 195 0.28 rectfill -0.952849 nxsetgray --62 -15.440001 195 0.28 rectfill -0.946516 nxsetgray --62 -15.160001 195 0.28 rectfill -0.940184 nxsetgray --62 -14.880001 195 0.28 rectfill -0.933851 nxsetgray --62 -14.600001 195 0.28 rectfill -0.927519 nxsetgray --62 -14.320002 195 0.28 rectfill -0.921186 nxsetgray --62 -14.040002 195 0.28 rectfill -0.914853 nxsetgray --62 -13.760002 195 0.28 rectfill -0.908505 nxsetgray --62 -13.480002 195 0.28 rectfill -0.902173 nxsetgray --62 -13.200003 195 0.28 rectfill -0.89584 nxsetgray --62 -12.920003 195 0.28 rectfill -0.889508 nxsetgray --62 -12.640003 195 0.28 rectfill -0.883175 nxsetgray --62 -12.360003 195 0.28 rectfill -0.876843 nxsetgray --62 -12.080004 195 0.28 rectfill -0.87051 nxsetgray --62 -11.800004 195 0.28 rectfill -0.864177 nxsetgray --62 -11.520004 195 0.28 rectfill -0.857845 nxsetgray --62 -11.240005 195 0.28 rectfill -0.851512 nxsetgray --62 -10.960005 195 0.28 rectfill -0.84518 nxsetgray --62 -10.680005 195 0.28 rectfill -0.838847 nxsetgray --62 -10.400005 195 0.28 rectfill -0.832514 nxsetgray --62 -10.120006 195 0.28 rectfill -0.826182 nxsetgray --62 -9.840006 195 0.28 rectfill -0.819849 nxsetgray --62 -9.560006 195 0.28 rectfill -0.813517 nxsetgray --62 -9.280006 195 0.28 rectfill -0.807169 nxsetgray --62 -9.000007 195 0.28 rectfill -0.800836 nxsetgray --62 -8.720007 195 0.28 rectfill -0.794504 nxsetgray --62 -8.440007 195 0.28 rectfill -0.788171 nxsetgray --62 -8.160007 195 0.28 rectfill -0.781838 nxsetgray --62 -7.880007 195 0.28 rectfill -0.775506 nxsetgray --62 -7.600007 195 0.28 rectfill -0.769173 nxsetgray --62 -7.320007 195 0.28 rectfill -0.762841 nxsetgray --62 -7.040007 195 0.28 rectfill -0.756508 nxsetgray --62 -6.760006 195 0.28 rectfill -0.750175 nxsetgray --62 -6.480006 195 0.28 rectfill -0.743843 nxsetgray --62 -6.200006 195 0.28 rectfill -0.73751 nxsetgray --62 -5.920006 195 0.28 rectfill -0.731178 nxsetgray --62 -5.640006 195 0.28 rectfill -0.724845 nxsetgray --62 -5.360005 195 0.28 rectfill -0.718513 nxsetgray --62 -5.080005 195 0.28 rectfill -0.71218 nxsetgray --62 -4.800005 195 0.28 rectfill -0.705832 nxsetgray --62 -4.520005 195 0.28 rectfill -0.699499 nxsetgray --62 -4.240005 195 0.28 rectfill -0.693167 nxsetgray --62 -3.960005 195 0.28 rectfill -0.686834 nxsetgray --62 -3.680005 195 0.28 rectfill -0.680502 nxsetgray --62 -3.400005 195 0.28 rectfill -0.674169 nxsetgray --62 -3.120005 195 0.28 rectfill -0.667837 nxsetgray --62 -2.840005 195 0.28 rectfill -0.661504 nxsetgray --62 -2.560005 195 0.28 rectfill -0.655171 nxsetgray --62 -2.280005 195 0.28 rectfill -N -grestore -2 L -0.117237 nxsetgray -0 -2 m -61 -2 32 -16 75 -14 c -s -grestore -0 0 2 1 10 SU -183 470 T -N -gsave N -0 0 m -3.333333 2 4.666667 2.166667 11 4 c -17.333334 5.833333 14.333334 3.5 21 3 c -27.666668 2.5 38 3.833333 50 3 c -62 2.166667 89 8 109 9 c -clip -N -0 setlinewidth -0.965514 nxsetgray --3.333333 -2 132.333328 0.24 rectfill -0.959181 nxsetgray --3.333333 -1.76 132.333328 0.24 rectfill -0.952849 nxsetgray --3.333333 -1.52 132.333328 0.24 rectfill -0.946516 nxsetgray --3.333333 -1.28 132.333328 0.24 rectfill -0.940184 nxsetgray --3.333333 -1.04 132.333328 0.24 rectfill -0.933851 nxsetgray --3.333333 -0.8 132.333328 0.24 rectfill -0.927519 nxsetgray --3.333333 -0.56 132.333328 0.24 rectfill -0.921186 nxsetgray --3.333333 -0.32 132.333328 0.24 rectfill -0.914853 nxsetgray --3.333333 -0.08 132.333328 0.24 rectfill -0.908505 nxsetgray --3.333333 0.16 132.333328 0.24 rectfill -0.902173 nxsetgray --3.333333 0.4 132.333328 0.24 rectfill -0.89584 nxsetgray --3.333333 0.64 132.333328 0.24 rectfill -0.889508 nxsetgray --3.333333 0.88 132.333328 0.24 rectfill -0.883175 nxsetgray --3.333333 1.12 132.333328 0.24 rectfill -0.876843 nxsetgray --3.333333 1.36 132.333328 0.24 rectfill -0.87051 nxsetgray --3.333333 1.6 132.333328 0.24 rectfill -0.864177 nxsetgray --3.333333 1.84 132.333328 0.24 rectfill -0.857845 nxsetgray --3.333333 2.08 132.333328 0.24 rectfill -0.851512 nxsetgray --3.333333 2.32 132.333328 0.24 rectfill -0.84518 nxsetgray --3.333333 2.56 132.333328 0.24 rectfill -0.838847 nxsetgray --3.333333 2.8 132.333328 0.24 rectfill -0.832514 nxsetgray --3.333333 3.04 132.333328 0.24 rectfill -0.826182 nxsetgray --3.333333 3.28 132.333328 0.24 rectfill -0.819849 nxsetgray --3.333333 3.52 132.333328 0.24 rectfill -0.813517 nxsetgray --3.333333 3.76 132.333328 0.24 rectfill -0.807169 nxsetgray --3.333333 4 132.333328 0.24 rectfill -0.800836 nxsetgray --3.333333 4.24 132.333328 0.24 rectfill -0.794504 nxsetgray --3.333333 4.48 132.333328 0.24 rectfill -0.788171 nxsetgray --3.333333 4.719999 132.333328 0.24 rectfill -0.781838 nxsetgray --3.333333 4.959999 132.333328 0.24 rectfill -0.775506 nxsetgray --3.333333 5.199999 132.333328 0.24 rectfill -0.769173 nxsetgray --3.333333 5.439999 132.333328 0.24 rectfill -0.762841 nxsetgray --3.333333 5.679998 132.333328 0.24 rectfill -0.756508 nxsetgray --3.333333 5.919998 132.333328 0.24 rectfill -0.750175 nxsetgray --3.333333 6.159998 132.333328 0.24 rectfill -0.743843 nxsetgray --3.333333 6.399998 132.333328 0.24 rectfill -0.73751 nxsetgray --3.333333 6.639997 132.333328 0.24 rectfill -0.731178 nxsetgray --3.333333 6.879997 132.333328 0.24 rectfill -0.724845 nxsetgray --3.333333 7.119997 132.333328 0.24 rectfill -0.718513 nxsetgray --3.333333 7.359997 132.333328 0.24 rectfill -0.71218 nxsetgray --3.333333 7.599997 132.333328 0.24 rectfill -0.705832 nxsetgray --3.333333 7.839996 132.333328 0.24 rectfill -0.699499 nxsetgray --3.333333 8.079996 132.333328 0.24 rectfill -0.693167 nxsetgray --3.333333 8.319996 132.333328 0.24 rectfill -0.686834 nxsetgray --3.333333 8.559996 132.333328 0.24 rectfill -0.680502 nxsetgray --3.333333 8.799995 132.333328 0.24 rectfill -0.674169 nxsetgray --3.333333 9.039995 132.333328 0.24 rectfill -0.667837 nxsetgray --3.333333 9.279995 132.333328 0.24 rectfill -0.661504 nxsetgray --3.333333 9.519995 132.333328 0.24 rectfill -0.655171 nxsetgray --3.333333 9.759995 132.333328 0.24 rectfill -N -grestore -2 L -0.117237 nxsetgray -0 0 m -3.333333 2 4.666667 2.166667 11 4 c -17.333334 5.833333 14.333334 3.5 21 3 c -27.666668 2.5 38 3.833333 50 3 c -62 2.166667 89 8 109 9 c -s -grestore -0 0 2 1 10 SU -441 487 T -N -gsave N -34 6 m -33.333332 6 -1.333333 0 -2 0 c -clip -N -0 setlinewidth -0.965514 nxsetgray --2.666667 0 37.333336 0.12 rectfill -0.959181 nxsetgray --2.666667 0.12 37.333336 0.12 rectfill -0.952849 nxsetgray --2.666667 0.24 37.333336 0.12 rectfill -0.946516 nxsetgray --2.666667 0.36 37.333336 0.12 rectfill -0.940184 nxsetgray --2.666667 0.48 37.333336 0.12 rectfill -0.933851 nxsetgray --2.666667 0.6 37.333336 0.12 rectfill -0.927519 nxsetgray --2.666667 0.72 37.333336 0.12 rectfill -0.921186 nxsetgray --2.666667 0.84 37.333336 0.12 rectfill -0.914853 nxsetgray --2.666667 0.96 37.333336 0.12 rectfill -0.908505 nxsetgray --2.666667 1.08 37.333336 0.12 rectfill -0.902173 nxsetgray --2.666667 1.2 37.333336 0.12 rectfill -0.89584 nxsetgray --2.666667 1.32 37.333336 0.12 rectfill -0.889508 nxsetgray --2.666667 1.44 37.333336 0.12 rectfill -0.883175 nxsetgray --2.666667 1.56 37.333336 0.12 rectfill -0.876843 nxsetgray --2.666667 1.68 37.333336 0.12 rectfill -0.87051 nxsetgray --2.666667 1.8 37.333336 0.12 rectfill -0.864177 nxsetgray --2.666667 1.92 37.333336 0.12 rectfill -0.857845 nxsetgray --2.666667 2.04 37.333336 0.12 rectfill -0.851512 nxsetgray --2.666667 2.16 37.333336 0.12 rectfill -0.84518 nxsetgray --2.666667 2.28 37.333336 0.12 rectfill -0.838847 nxsetgray --2.666667 2.4 37.333336 0.12 rectfill -0.832514 nxsetgray --2.666667 2.52 37.333336 0.12 rectfill -0.826182 nxsetgray --2.666667 2.639999 37.333336 0.12 rectfill -0.819849 nxsetgray --2.666667 2.759999 37.333336 0.12 rectfill -0.813517 nxsetgray --2.666667 2.879999 37.333336 0.12 rectfill -0.807169 nxsetgray --2.666667 2.999999 37.333336 0.12 rectfill -0.800836 nxsetgray --2.666667 3.119999 37.333336 0.12 rectfill -0.794504 nxsetgray --2.666667 3.239999 37.333336 0.12 rectfill -0.788171 nxsetgray --2.666667 3.359999 37.333336 0.12 rectfill -0.781838 nxsetgray --2.666667 3.479999 37.333336 0.12 rectfill -0.775506 nxsetgray --2.666667 3.599998 37.333336 0.12 rectfill -0.769173 nxsetgray --2.666667 3.719998 37.333336 0.12 rectfill -0.762841 nxsetgray --2.666667 3.839998 37.333336 0.12 rectfill -0.756508 nxsetgray --2.666667 3.959998 37.333336 0.12 rectfill -0.750175 nxsetgray --2.666667 4.079998 37.333336 0.12 rectfill -0.743843 nxsetgray --2.666667 4.199998 37.333336 0.12 rectfill -0.73751 nxsetgray --2.666667 4.319998 37.333336 0.12 rectfill -0.731178 nxsetgray --2.666667 4.439998 37.333336 0.12 rectfill -0.724845 nxsetgray --2.666667 4.559998 37.333336 0.12 rectfill -0.718513 nxsetgray --2.666667 4.679997 37.333336 0.12 rectfill -0.71218 nxsetgray --2.666667 4.799997 37.333336 0.12 rectfill -0.705832 nxsetgray --2.666667 4.919997 37.333336 0.12 rectfill -0.699499 nxsetgray --2.666667 5.039997 37.333336 0.12 rectfill -0.693167 nxsetgray --2.666667 5.159997 37.333336 0.12 rectfill -0.686834 nxsetgray --2.666667 5.279997 37.333336 0.12 rectfill -0.680502 nxsetgray --2.666667 5.399997 37.333336 0.12 rectfill -0.674169 nxsetgray --2.666667 5.519997 37.333336 0.12 rectfill -0.667837 nxsetgray --2.666667 5.639997 37.333336 0.12 rectfill -0.661504 nxsetgray --2.666667 5.759996 37.333336 0.12 rectfill -0.655171 nxsetgray --2.666667 5.879996 37.333336 0.12 rectfill -N -grestore -2 L -0.117237 nxsetgray -34 6 m -33.333332 6 -1.333333 0 -2 0 c -s -grestore -0 0 2 1 10 SU -251 507 T -N -gsave N --21 1 m --14 1.666667 13.833333 2.333333 21 2 c -28.166666 1.666667 35.666668 -0.666667 43 -2 c -clip -N -0 setlinewidth -0.965514 nxsetgray --28 -3.333333 78.333328 0.113333 rectfill -0.959181 nxsetgray --28 -3.22 78.333328 0.113333 rectfill -0.952849 nxsetgray --28 -3.106667 78.333328 0.113333 rectfill -0.946516 nxsetgray --28 -2.993334 78.333328 0.113333 rectfill -0.940184 nxsetgray --28 -2.88 78.333328 0.113333 rectfill -0.933851 nxsetgray --28 -2.766667 78.333328 0.113333 rectfill -0.927519 nxsetgray --28 -2.653334 78.333328 0.113333 rectfill -0.921186 nxsetgray --28 -2.540001 78.333328 0.113333 rectfill -0.914853 nxsetgray --28 -2.426667 78.333328 0.113333 rectfill -0.908505 nxsetgray --28 -2.313334 78.333328 0.113333 rectfill -0.902173 nxsetgray --28 -2.200001 78.333328 0.113333 rectfill -0.89584 nxsetgray --28 -2.086668 78.333328 0.113333 rectfill -0.889508 nxsetgray --28 -1.973334 78.333328 0.113333 rectfill -0.883175 nxsetgray --28 -1.860001 78.333328 0.113333 rectfill -0.876843 nxsetgray --28 -1.746668 78.333328 0.113333 rectfill -0.87051 nxsetgray --28 -1.633334 78.333328 0.113333 rectfill -0.864177 nxsetgray --28 -1.520001 78.333328 0.113333 rectfill -0.857845 nxsetgray --28 -1.406668 78.333328 0.113333 rectfill -0.851512 nxsetgray --28 -1.293334 78.333328 0.113333 rectfill -0.84518 nxsetgray --28 -1.180001 78.333328 0.113333 rectfill -0.838847 nxsetgray --28 -1.066668 78.333328 0.113333 rectfill -0.832514 nxsetgray --28 -0.953334 78.333328 0.113333 rectfill -0.826182 nxsetgray --28 -0.840001 78.333328 0.113333 rectfill -0.819849 nxsetgray --28 -0.726668 78.333328 0.113333 rectfill -0.813517 nxsetgray --28 -0.613334 78.333328 0.113333 rectfill -0.807169 nxsetgray --28 -0.500001 78.333328 0.113333 rectfill -0.800836 nxsetgray --28 -0.386668 78.333328 0.113333 rectfill -0.794504 nxsetgray --28 -0.273334 78.333328 0.113333 rectfill -0.788171 nxsetgray --28 -0.160001 78.333328 0.113333 rectfill -0.781838 nxsetgray --28 -0.046668 78.333328 0.113333 rectfill -0.775506 nxsetgray --28 0.066666 78.333328 0.113333 rectfill -0.769173 nxsetgray --28 0.179999 78.333328 0.113333 rectfill -0.762841 nxsetgray --28 0.293332 78.333328 0.113333 rectfill -0.756508 nxsetgray --28 0.406666 78.333328 0.113333 rectfill -0.750175 nxsetgray --28 0.519999 78.333328 0.113333 rectfill -0.743843 nxsetgray --28 0.633332 78.333328 0.113333 rectfill -0.73751 nxsetgray --28 0.746666 78.333328 0.113333 rectfill -0.731178 nxsetgray --28 0.859999 78.333328 0.113333 rectfill -0.724845 nxsetgray --28 0.973332 78.333328 0.113333 rectfill -0.718513 nxsetgray --28 1.086666 78.333328 0.113333 rectfill -0.71218 nxsetgray --28 1.199999 78.333328 0.113333 rectfill -0.705832 nxsetgray --28 1.313332 78.333328 0.113333 rectfill -0.699499 nxsetgray --28 1.426666 78.333328 0.113333 rectfill -0.693167 nxsetgray --28 1.539999 78.333328 0.113333 rectfill -0.686834 nxsetgray --28 1.653332 78.333328 0.113333 rectfill -0.680502 nxsetgray --28 1.766666 78.333328 0.113333 rectfill -0.674169 nxsetgray --28 1.879999 78.333328 0.113333 rectfill -0.667837 nxsetgray --28 1.993333 78.333328 0.113333 rectfill -0.661504 nxsetgray --28 2.106666 78.333328 0.113333 rectfill -0.655171 nxsetgray --28 2.219999 78.333328 0.113333 rectfill -N -grestore -2 L -0.117237 nxsetgray --21 1 m --14 1.666667 13.833333 2.333333 21 2 c -28.166666 1.666667 35.666668 -0.666667 43 -2 c -s -grestore -0 0 2 1 10 SU -301 503 T -N -gsave N --9 0 m -5.333333 2.666667 22.166666 7.666667 39 7 c -55.833332 6.333334 81.666664 2.1684e-19 101 -4 c -clip -N -0 setlinewidth -0.965514 nxsetgray --23.333332 -8 143.666672 0.313333 rectfill -0.959181 nxsetgray --23.333332 -7.686666 143.666672 0.313333 rectfill -0.952849 nxsetgray --23.333332 -7.373333 143.666672 0.313333 rectfill -0.946516 nxsetgray --23.333332 -7.059999 143.666672 0.313333 rectfill -0.940184 nxsetgray --23.333332 -6.746666 143.666672 0.313333 rectfill -0.933851 nxsetgray --23.333332 -6.433332 143.666672 0.313333 rectfill -0.927519 nxsetgray --23.333332 -6.119999 143.666672 0.313333 rectfill -0.921186 nxsetgray --23.333332 -5.806665 143.666672 0.313333 rectfill -0.914853 nxsetgray --23.333332 -5.493332 143.666672 0.313333 rectfill -0.908505 nxsetgray --23.333332 -5.179998 143.666672 0.313333 rectfill -0.902173 nxsetgray --23.333332 -4.866665 143.666672 0.313333 rectfill -0.89584 nxsetgray --23.333332 -4.553331 143.666672 0.313333 rectfill -0.889508 nxsetgray --23.333332 -4.239998 143.666672 0.313333 rectfill -0.883175 nxsetgray --23.333332 -3.926665 143.666672 0.313333 rectfill -0.876843 nxsetgray --23.333332 -3.613331 143.666672 0.313333 rectfill -0.87051 nxsetgray --23.333332 -3.299998 143.666672 0.313333 rectfill -0.864177 nxsetgray --23.333332 -2.986665 143.666672 0.313333 rectfill -0.857845 nxsetgray --23.333332 -2.673331 143.666672 0.313333 rectfill -0.851512 nxsetgray --23.333332 -2.359998 143.666672 0.313333 rectfill -0.84518 nxsetgray --23.333332 -2.046665 143.666672 0.313333 rectfill -0.838847 nxsetgray --23.333332 -1.733332 143.666672 0.313333 rectfill -0.832514 nxsetgray --23.333332 -1.419998 143.666672 0.313333 rectfill -0.826182 nxsetgray --23.333332 -1.106665 143.666672 0.313333 rectfill -0.819849 nxsetgray --23.333332 -0.793332 143.666672 0.313333 rectfill -0.813517 nxsetgray --23.333332 -0.479998 143.666672 0.313333 rectfill -0.807169 nxsetgray --23.333332 -0.166665 143.666672 0.313333 rectfill -0.800836 nxsetgray --23.333332 0.146668 143.666672 0.313333 rectfill -0.794504 nxsetgray --23.333332 0.460002 143.666672 0.313333 rectfill -0.788171 nxsetgray --23.333332 0.773335 143.666672 0.313333 rectfill -0.781838 nxsetgray --23.333332 1.086668 143.666672 0.313333 rectfill -0.775506 nxsetgray --23.333332 1.400002 143.666672 0.313333 rectfill -0.769173 nxsetgray --23.333332 1.713335 143.666672 0.313333 rectfill -0.762841 nxsetgray --23.333332 2.026668 143.666672 0.313333 rectfill -0.756508 nxsetgray --23.333332 2.340001 143.666672 0.313333 rectfill -0.750175 nxsetgray --23.333332 2.653335 143.666672 0.313333 rectfill -0.743843 nxsetgray --23.333332 2.966668 143.666672 0.313333 rectfill -0.73751 nxsetgray --23.333332 3.280001 143.666672 0.313333 rectfill -0.731178 nxsetgray --23.333332 3.593334 143.666672 0.313333 rectfill -0.724845 nxsetgray --23.333332 3.906668 143.666672 0.313333 rectfill -0.718513 nxsetgray --23.333332 4.220001 143.666672 0.313333 rectfill -0.71218 nxsetgray --23.333332 4.533335 143.666672 0.313333 rectfill -0.705832 nxsetgray --23.333332 4.846668 143.666672 0.313333 rectfill -0.699499 nxsetgray --23.333332 5.160002 143.666672 0.313333 rectfill -0.693167 nxsetgray --23.333332 5.473335 143.666672 0.313333 rectfill -0.686834 nxsetgray --23.333332 5.786669 143.666672 0.313333 rectfill -0.680502 nxsetgray --23.333332 6.100002 143.666672 0.313333 rectfill -0.674169 nxsetgray --23.333332 6.413336 143.666672 0.313333 rectfill -0.667837 nxsetgray --23.333332 6.726669 143.666672 0.313333 rectfill -0.661504 nxsetgray --23.333332 7.040003 143.666672 0.313333 rectfill -0.655171 nxsetgray --23.333332 7.353336 143.666672 0.313333 rectfill -N -grestore -2 L -0.117237 nxsetgray --9 0 m -5.333333 2.666667 22.166666 7.666667 39 7 c -55.833332 6.333334 81.666664 2.1684e-19 101 -4 c -s -grestore -0 0 2 1 10 SU -301 475 T -N -gsave N --7 4 m -3.666667 2 8 -2 24 -1 c -37 0 60 -5 92 7 c -clip -N -0 setlinewidth -0.965514 nxsetgray --17.666668 -5 130.666672 0.4 rectfill -0.959181 nxsetgray --17.666668 -4.6 130.666672 0.4 rectfill -0.952849 nxsetgray --17.666668 -4.2 130.666672 0.4 rectfill -0.946516 nxsetgray --17.666668 -3.8 130.666672 0.4 rectfill -0.940184 nxsetgray --17.666668 -3.4 130.666672 0.4 rectfill -0.933851 nxsetgray --17.666668 -3 130.666672 0.4 rectfill -0.927519 nxsetgray --17.666668 -2.599999 130.666672 0.4 rectfill -0.921186 nxsetgray --17.666668 -2.199999 130.666672 0.4 rectfill -0.914853 nxsetgray --17.666668 -1.799999 130.666672 0.4 rectfill -0.908505 nxsetgray --17.666668 -1.399999 130.666672 0.4 rectfill -0.902173 nxsetgray --17.666668 -0.999999 130.666672 0.4 rectfill -0.89584 nxsetgray --17.666668 -0.599999 130.666672 0.4 rectfill -0.889508 nxsetgray --17.666668 -0.199999 130.666672 0.4 rectfill -0.883175 nxsetgray --17.666668 0.200001 130.666672 0.4 rectfill -0.876843 nxsetgray --17.666668 0.600001 130.666672 0.4 rectfill -0.87051 nxsetgray --17.666668 1.000001 130.666672 0.4 rectfill -0.864177 nxsetgray --17.666668 1.400001 130.666672 0.4 rectfill -0.857845 nxsetgray --17.666668 1.800001 130.666672 0.4 rectfill -0.851512 nxsetgray --17.666668 2.200001 130.666672 0.4 rectfill -0.84518 nxsetgray --17.666668 2.600001 130.666672 0.4 rectfill -0.838847 nxsetgray --17.666668 3.000001 130.666672 0.4 rectfill -0.832514 nxsetgray --17.666668 3.400001 130.666672 0.4 rectfill -0.826182 nxsetgray --17.666668 3.800001 130.666672 0.4 rectfill -0.819849 nxsetgray --17.666668 4.200001 130.666672 0.4 rectfill -0.813517 nxsetgray --17.666668 4.600001 130.666672 0.4 rectfill -0.807169 nxsetgray --17.666668 5.000001 130.666672 0.4 rectfill -0.800836 nxsetgray --17.666668 5.400001 130.666672 0.4 rectfill -0.794504 nxsetgray --17.666668 5.800001 130.666672 0.4 rectfill -0.788171 nxsetgray --17.666668 6.200001 130.666672 0.4 rectfill -0.781838 nxsetgray --17.666668 6.600001 130.666672 0.4 rectfill -0.775506 nxsetgray --17.666668 7.000001 130.666672 0.4 rectfill -0.769173 nxsetgray --17.666668 7.400002 130.666672 0.4 rectfill -0.762841 nxsetgray --17.666668 7.800002 130.666672 0.4 rectfill -0.756508 nxsetgray --17.666668 8.200002 130.666672 0.4 rectfill -0.750175 nxsetgray --17.666668 8.600001 130.666672 0.4 rectfill -0.743843 nxsetgray --17.666668 9.000001 130.666672 0.4 rectfill -0.73751 nxsetgray --17.666668 9.400001 130.666672 0.4 rectfill -0.731178 nxsetgray --17.666668 9.8 130.666672 0.4 rectfill -0.724845 nxsetgray --17.666668 10.2 130.666672 0.4 rectfill -0.718513 nxsetgray --17.666668 10.599999 130.666672 0.4 rectfill -0.71218 nxsetgray --17.666668 10.999999 130.666672 0.4 rectfill -0.705832 nxsetgray --17.666668 11.399999 130.666672 0.4 rectfill -0.699499 nxsetgray --17.666668 11.799998 130.666672 0.4 rectfill -0.693167 nxsetgray --17.666668 12.199998 130.666672 0.4 rectfill -0.686834 nxsetgray --17.666668 12.599998 130.666672 0.4 rectfill -0.680502 nxsetgray --17.666668 12.999997 130.666672 0.4 rectfill -0.674169 nxsetgray --17.666668 13.399997 130.666672 0.4 rectfill -0.667837 nxsetgray --17.666668 13.799996 130.666672 0.4 rectfill -0.661504 nxsetgray --17.666668 14.199996 130.666672 0.4 rectfill -0.655171 nxsetgray --17.666668 14.599996 130.666672 0.4 rectfill -N -grestore -2 L -0.117237 nxsetgray --7 4 m -3.666667 2 8 -2 24 -1 c -37 0 60 -5 92 7 c -s -grestore -0 0 2 1 10 SU -400 499 T -N -gsave N -0 0 m -18.666666 -1 12.333332 -3 31 -4 c -clip -N -0 setlinewidth -0.965514 nxsetgray --18.666666 -5 68.333336 0.12 rectfill -0.959181 nxsetgray --18.666666 -4.88 68.333336 0.12 rectfill -0.952849 nxsetgray --18.666666 -4.76 68.333336 0.12 rectfill -0.946516 nxsetgray --18.666666 -4.64 68.333336 0.12 rectfill -0.940184 nxsetgray --18.666666 -4.52 68.333336 0.12 rectfill -0.933851 nxsetgray --18.666666 -4.400001 68.333336 0.12 rectfill -0.927519 nxsetgray --18.666666 -4.280001 68.333336 0.12 rectfill -0.921186 nxsetgray --18.666666 -4.160001 68.333336 0.12 rectfill -0.914853 nxsetgray --18.666666 -4.040001 68.333336 0.12 rectfill -0.908505 nxsetgray --18.666666 -3.920001 68.333336 0.12 rectfill -0.902173 nxsetgray --18.666666 -3.800001 68.333336 0.12 rectfill -0.89584 nxsetgray --18.666666 -3.680001 68.333336 0.12 rectfill -0.889508 nxsetgray --18.666666 -3.560001 68.333336 0.12 rectfill -0.883175 nxsetgray --18.666666 -3.440001 68.333336 0.12 rectfill -0.876843 nxsetgray --18.666666 -3.320002 68.333336 0.12 rectfill -0.87051 nxsetgray --18.666666 -3.200002 68.333336 0.12 rectfill -0.864177 nxsetgray --18.666666 -3.080002 68.333336 0.12 rectfill -0.857845 nxsetgray --18.666666 -2.960002 68.333336 0.12 rectfill -0.851512 nxsetgray --18.666666 -2.840002 68.333336 0.12 rectfill -0.84518 nxsetgray --18.666666 -2.720002 68.333336 0.12 rectfill -0.838847 nxsetgray --18.666666 -2.600002 68.333336 0.12 rectfill -0.832514 nxsetgray --18.666666 -2.480002 68.333336 0.12 rectfill -0.826182 nxsetgray --18.666666 -2.360003 68.333336 0.12 rectfill -0.819849 nxsetgray --18.666666 -2.240003 68.333336 0.12 rectfill -0.813517 nxsetgray --18.666666 -2.120003 68.333336 0.12 rectfill -0.807169 nxsetgray --18.666666 -2.000003 68.333336 0.12 rectfill -0.800836 nxsetgray --18.666666 -1.880003 68.333336 0.12 rectfill -0.794504 nxsetgray --18.666666 -1.760003 68.333336 0.12 rectfill -0.788171 nxsetgray --18.666666 -1.640003 68.333336 0.12 rectfill -0.781838 nxsetgray --18.666666 -1.520003 68.333336 0.12 rectfill -0.775506 nxsetgray --18.666666 -1.400003 68.333336 0.12 rectfill -0.769173 nxsetgray --18.666666 -1.280003 68.333336 0.12 rectfill -0.762841 nxsetgray --18.666666 -1.160003 68.333336 0.12 rectfill -0.756508 nxsetgray --18.666666 -1.040003 68.333336 0.12 rectfill -0.750175 nxsetgray --18.666666 -0.920003 68.333336 0.12 rectfill -0.743843 nxsetgray --18.666666 -0.800003 68.333336 0.12 rectfill -0.73751 nxsetgray --18.666666 -0.680003 68.333336 0.12 rectfill -0.731178 nxsetgray --18.666666 -0.560003 68.333336 0.12 rectfill -0.724845 nxsetgray --18.666666 -0.440003 68.333336 0.12 rectfill -0.718513 nxsetgray --18.666666 -0.320003 68.333336 0.12 rectfill -0.71218 nxsetgray --18.666666 -0.200003 68.333336 0.12 rectfill -0.705832 nxsetgray --18.666666 -0.080003 68.333336 0.12 rectfill -0.699499 nxsetgray --18.666666 0.039997 68.333336 0.12 rectfill -0.693167 nxsetgray --18.666666 0.159997 68.333336 0.12 rectfill -0.686834 nxsetgray --18.666666 0.279997 68.333336 0.12 rectfill -0.680502 nxsetgray --18.666666 0.399997 68.333336 0.12 rectfill -0.674169 nxsetgray --18.666666 0.519997 68.333336 0.12 rectfill -0.667837 nxsetgray --18.666666 0.639997 68.333336 0.12 rectfill -0.661504 nxsetgray --18.666666 0.759997 68.333336 0.12 rectfill -0.655171 nxsetgray --18.666666 0.879997 68.333336 0.12 rectfill -N -grestore -2 L -0.117237 nxsetgray -0 0 m -18.666666 -1 12.333332 -3 31 -4 c -s -grestore -0 0 2 1 10 SU -389 480 T -N -gsave N -0 0 m -3.333333 1.333333 12.666666 3.666667 16 5 c -clip -N -0 setlinewidth -0.965514 nxsetgray --3.333333 -1.333333 22.666668 0.153333 rectfill -0.959181 nxsetgray --3.333333 -1.18 22.666668 0.153333 rectfill -0.952849 nxsetgray --3.333333 -1.026667 22.666668 0.153333 rectfill -0.946516 nxsetgray --3.333333 -0.873333 22.666668 0.153333 rectfill -0.940184 nxsetgray --3.333333 -0.72 22.666668 0.153333 rectfill -0.933851 nxsetgray --3.333333 -0.566667 22.666668 0.153333 rectfill -0.927519 nxsetgray --3.333333 -0.413334 22.666668 0.153333 rectfill -0.921186 nxsetgray --3.333333 -0.26 22.666668 0.153333 rectfill -0.914853 nxsetgray --3.333333 -0.106667 22.666668 0.153333 rectfill -0.908505 nxsetgray --3.333333 0.046667 22.666668 0.153333 rectfill -0.902173 nxsetgray --3.333333 0.2 22.666668 0.153333 rectfill -0.89584 nxsetgray --3.333333 0.353333 22.666668 0.153333 rectfill -0.889508 nxsetgray --3.333333 0.506667 22.666668 0.153333 rectfill -0.883175 nxsetgray --3.333333 0.66 22.666668 0.153333 rectfill -0.876843 nxsetgray --3.333333 0.813333 22.666668 0.153333 rectfill -0.87051 nxsetgray --3.333333 0.966666 22.666668 0.153333 rectfill -0.864177 nxsetgray --3.333333 1.12 22.666668 0.153333 rectfill -0.857845 nxsetgray --3.333333 1.273333 22.666668 0.153333 rectfill -0.851512 nxsetgray --3.333333 1.426666 22.666668 0.153333 rectfill -0.84518 nxsetgray --3.333333 1.58 22.666668 0.153333 rectfill -0.838847 nxsetgray --3.333333 1.733333 22.666668 0.153333 rectfill -0.832514 nxsetgray --3.333333 1.886666 22.666668 0.153333 rectfill -0.826182 nxsetgray --3.333333 2.04 22.666668 0.153333 rectfill -0.819849 nxsetgray --3.333333 2.193333 22.666668 0.153333 rectfill -0.813517 nxsetgray --3.333333 2.346667 22.666668 0.153333 rectfill -0.807169 nxsetgray --3.333333 2.5 22.666668 0.153333 rectfill -0.800836 nxsetgray --3.333333 2.653333 22.666668 0.153333 rectfill -0.794504 nxsetgray --3.333333 2.806667 22.666668 0.153333 rectfill -0.788171 nxsetgray --3.333333 2.96 22.666668 0.153333 rectfill -0.781838 nxsetgray --3.333333 3.113334 22.666668 0.153333 rectfill -0.775506 nxsetgray --3.333333 3.266667 22.666668 0.153333 rectfill -0.769173 nxsetgray --3.333333 3.420001 22.666668 0.153333 rectfill -0.762841 nxsetgray --3.333333 3.573334 22.666668 0.153333 rectfill -0.756508 nxsetgray --3.333333 3.726667 22.666668 0.153333 rectfill -0.750175 nxsetgray --3.333333 3.880001 22.666668 0.153333 rectfill -0.743843 nxsetgray --3.333333 4.033334 22.666668 0.153333 rectfill -0.73751 nxsetgray --3.333333 4.186667 22.666668 0.153333 rectfill -0.731178 nxsetgray --3.333333 4.340001 22.666668 0.153333 rectfill -0.724845 nxsetgray --3.333333 4.493334 22.666668 0.153333 rectfill -0.718513 nxsetgray --3.333333 4.646667 22.666668 0.153333 rectfill -0.71218 nxsetgray --3.333333 4.8 22.666668 0.153333 rectfill -0.705832 nxsetgray --3.333333 4.953333 22.666668 0.153333 rectfill -0.699499 nxsetgray --3.333333 5.106667 22.666668 0.153333 rectfill -0.693167 nxsetgray --3.333333 5.26 22.666668 0.153333 rectfill -0.686834 nxsetgray --3.333333 5.413333 22.666668 0.153333 rectfill -0.680502 nxsetgray --3.333333 5.566666 22.666668 0.153333 rectfill -0.674169 nxsetgray --3.333333 5.719999 22.666668 0.153333 rectfill -0.667837 nxsetgray --3.333333 5.873333 22.666668 0.153333 rectfill -0.661504 nxsetgray --3.333333 6.026666 22.666668 0.153333 rectfill -0.655171 nxsetgray --3.333333 6.179999 22.666668 0.153333 rectfill -N -grestore -2 L -0.117237 nxsetgray -0 0 m -3.333333 1.333333 12.666666 3.666667 16 5 c -s -grestore -0 0 2 1 10 SU -410 497 T -N -gsave N -0 0 m -4.333333 1.666667 9.5 5.166667 13 5 c -16.5 4.833333 18.333334 1 21 -1 c -clip -N -0 setlinewidth -0.965514 nxsetgray --4.333333 -3 28 0.163333 rectfill -0.959181 nxsetgray --4.333333 -2.836667 28 0.163333 rectfill -0.952849 nxsetgray --4.333333 -2.673333 28 0.163333 rectfill -0.946516 nxsetgray --4.333333 -2.51 28 0.163333 rectfill -0.940184 nxsetgray --4.333333 -2.346666 28 0.163333 rectfill -0.933851 nxsetgray --4.333333 -2.183333 28 0.163333 rectfill -0.927519 nxsetgray --4.333333 -2.02 28 0.163333 rectfill -0.921186 nxsetgray --4.333333 -1.856666 28 0.163333 rectfill -0.914853 nxsetgray --4.333333 -1.693333 28 0.163333 rectfill -0.908505 nxsetgray --4.333333 -1.53 28 0.163333 rectfill -0.902173 nxsetgray --4.333333 -1.366666 28 0.163333 rectfill -0.89584 nxsetgray --4.333333 -1.203333 28 0.163333 rectfill -0.889508 nxsetgray --4.333333 -1.04 28 0.163333 rectfill -0.883175 nxsetgray --4.333333 -0.876666 28 0.163333 rectfill -0.876843 nxsetgray --4.333333 -0.713333 28 0.163333 rectfill -0.87051 nxsetgray --4.333333 -0.55 28 0.163333 rectfill -0.864177 nxsetgray --4.333333 -0.386667 28 0.163333 rectfill -0.857845 nxsetgray --4.333333 -0.223333 28 0.163333 rectfill -0.851512 nxsetgray --4.333333 -0.06 28 0.163333 rectfill -0.84518 nxsetgray --4.333333 0.103333 28 0.163333 rectfill -0.838847 nxsetgray --4.333333 0.266667 28 0.163333 rectfill -0.832514 nxsetgray --4.333333 0.43 28 0.163333 rectfill -0.826182 nxsetgray --4.333333 0.593333 28 0.163333 rectfill -0.819849 nxsetgray --4.333333 0.756667 28 0.163333 rectfill -0.813517 nxsetgray --4.333333 0.92 28 0.163333 rectfill -0.807169 nxsetgray --4.333333 1.083333 28 0.163333 rectfill -0.800836 nxsetgray --4.333333 1.246667 28 0.163333 rectfill -0.794504 nxsetgray --4.333333 1.41 28 0.163333 rectfill -0.788171 nxsetgray --4.333333 1.573333 28 0.163333 rectfill -0.781838 nxsetgray --4.333333 1.736667 28 0.163333 rectfill -0.775506 nxsetgray --4.333333 1.9 28 0.163333 rectfill -0.769173 nxsetgray --4.333333 2.063333 28 0.163333 rectfill -0.762841 nxsetgray --4.333333 2.226667 28 0.163333 rectfill -0.756508 nxsetgray --4.333333 2.39 28 0.163333 rectfill -0.750175 nxsetgray --4.333333 2.553334 28 0.163333 rectfill -0.743843 nxsetgray --4.333333 2.716667 28 0.163333 rectfill -0.73751 nxsetgray --4.333333 2.88 28 0.163333 rectfill -0.731178 nxsetgray --4.333333 3.043334 28 0.163333 rectfill -0.724845 nxsetgray --4.333333 3.206667 28 0.163333 rectfill -0.718513 nxsetgray --4.333333 3.370001 28 0.163333 rectfill -0.71218 nxsetgray --4.333333 3.533334 28 0.163333 rectfill -0.705832 nxsetgray --4.333333 3.696667 28 0.163333 rectfill -0.699499 nxsetgray --4.333333 3.860001 28 0.163333 rectfill -0.693167 nxsetgray --4.333333 4.023334 28 0.163333 rectfill -0.686834 nxsetgray --4.333333 4.186667 28 0.163333 rectfill -0.680502 nxsetgray --4.333333 4.350001 28 0.163333 rectfill -0.674169 nxsetgray --4.333333 4.513334 28 0.163333 rectfill -0.667837 nxsetgray --4.333333 4.676668 28 0.163333 rectfill -0.661504 nxsetgray --4.333333 4.840001 28 0.163333 rectfill -0.655171 nxsetgray --4.333333 5.003335 28 0.163333 rectfill -N -grestore -2 L -0.117237 nxsetgray -0 0 m -4.333333 1.666667 9.5 5.166667 13 5 c -16.5 4.833333 18.333334 1 21 -1 c -s -grestore -0 0 2 1 10 SU -438 486 T -N -gsave N -2 1 m --2 1 9.833333 -1 14 0 c -18.166666 1 22.333334 1.666667 27 2 c -31.666666 2.333333 35.333332 7.333333 41 6 c -clip -N -0 setlinewidth -0.965514 nxsetgray --2 -1 48.666668 0.166667 rectfill -0.959181 nxsetgray --2 -0.833333 48.666668 0.166667 rectfill -0.952849 nxsetgray --2 -0.666667 48.666668 0.166667 rectfill -0.946516 nxsetgray --2 -0.5 48.666668 0.166667 rectfill -0.940184 nxsetgray --2 -0.333333 48.666668 0.166667 rectfill -0.933851 nxsetgray --2 -0.166667 48.666668 0.166667 rectfill -0.927519 nxsetgray --2 -1.49011e-07 48.666668 0.166667 rectfill -0.921186 nxsetgray --2 0.166667 48.666668 0.166667 rectfill -0.914853 nxsetgray --2 0.333333 48.666668 0.166667 rectfill -0.908505 nxsetgray --2 0.5 48.666668 0.166667 rectfill -0.902173 nxsetgray --2 0.666667 48.666668 0.166667 rectfill -0.89584 nxsetgray --2 0.833333 48.666668 0.166667 rectfill -0.889508 nxsetgray --2 1 48.666668 0.166667 rectfill -0.883175 nxsetgray --2 1.166666 48.666668 0.166667 rectfill -0.876843 nxsetgray --2 1.333333 48.666668 0.166667 rectfill -0.87051 nxsetgray --2 1.5 48.666668 0.166667 rectfill -0.864177 nxsetgray --2 1.666666 48.666668 0.166667 rectfill -0.857845 nxsetgray --2 1.833333 48.666668 0.166667 rectfill -0.851512 nxsetgray --2 2 48.666668 0.166667 rectfill -0.84518 nxsetgray --2 2.166666 48.666668 0.166667 rectfill -0.838847 nxsetgray --2 2.333333 48.666668 0.166667 rectfill -0.832514 nxsetgray --2 2.5 48.666668 0.166667 rectfill -0.826182 nxsetgray --2 2.666667 48.666668 0.166667 rectfill -0.819849 nxsetgray --2 2.833333 48.666668 0.166667 rectfill -0.813517 nxsetgray --2 3 48.666668 0.166667 rectfill -0.807169 nxsetgray --2 3.166667 48.666668 0.166667 rectfill -0.800836 nxsetgray --2 3.333333 48.666668 0.166667 rectfill -0.794504 nxsetgray --2 3.5 48.666668 0.166667 rectfill -0.788171 nxsetgray --2 3.666667 48.666668 0.166667 rectfill -0.781838 nxsetgray --2 3.833334 48.666668 0.166667 rectfill -0.775506 nxsetgray --2 4 48.666668 0.166667 rectfill -0.769173 nxsetgray --2 4.166667 48.666668 0.166667 rectfill -0.762841 nxsetgray --2 4.333333 48.666668 0.166667 rectfill -0.756508 nxsetgray --2 4.5 48.666668 0.166667 rectfill -0.750175 nxsetgray --2 4.666667 48.666668 0.166667 rectfill -0.743843 nxsetgray --2 4.833333 48.666668 0.166667 rectfill -0.73751 nxsetgray --2 5 48.666668 0.166667 rectfill -0.731178 nxsetgray --2 5.166666 48.666668 0.166667 rectfill -0.724845 nxsetgray --2 5.333333 48.666668 0.166667 rectfill -0.718513 nxsetgray --2 5.499999 48.666668 0.166667 rectfill -0.71218 nxsetgray --2 5.666666 48.666668 0.166667 rectfill -0.705832 nxsetgray --2 5.833332 48.666668 0.166667 rectfill -0.699499 nxsetgray --2 5.999999 48.666668 0.166667 rectfill -0.693167 nxsetgray --2 6.166665 48.666668 0.166667 rectfill -0.686834 nxsetgray --2 6.333332 48.666668 0.166667 rectfill -0.680502 nxsetgray --2 6.499998 48.666668 0.166667 rectfill -0.674169 nxsetgray --2 6.666665 48.666668 0.166667 rectfill -0.667837 nxsetgray --2 6.833331 48.666668 0.166667 rectfill -0.661504 nxsetgray --2 6.999998 48.666668 0.166667 rectfill -0.655171 nxsetgray --2 7.166664 48.666668 0.166667 rectfill -N -grestore -2 L -0.117237 nxsetgray -2 1 m --2 1 9.833333 -1 14 0 c -18.166666 1 22.333334 1.666667 27 2 c -31.666666 2.333333 35.333332 7.333333 41 6 c -s -grestore -0 0 2 1 10 SU -175 458 T -N -gsave N -0 0 m -1.666667 3.333333 3 7.333333 5 10 c -7 12.666667 10.666667 12 13 14 c -clip -N -0 setlinewidth -0.965514 nxsetgray --1.666667 -3.333333 17 0.386667 rectfill -0.959181 nxsetgray --1.666667 -2.946666 17 0.386667 rectfill -0.952849 nxsetgray --1.666667 -2.56 17 0.386667 rectfill -0.946516 nxsetgray --1.666667 -2.173333 17 0.386667 rectfill -0.940184 nxsetgray --1.666667 -1.786666 17 0.386667 rectfill -0.933851 nxsetgray --1.666667 -1.4 17 0.386667 rectfill -0.927519 nxsetgray --1.666667 -1.013333 17 0.386667 rectfill -0.921186 nxsetgray --1.666667 -0.626666 17 0.386667 rectfill -0.914853 nxsetgray --1.666667 -0.24 17 0.386667 rectfill -0.908505 nxsetgray --1.666667 0.146667 17 0.386667 rectfill -0.902173 nxsetgray --1.666667 0.533334 17 0.386667 rectfill -0.89584 nxsetgray --1.666667 0.92 17 0.386667 rectfill -0.889508 nxsetgray --1.666667 1.306667 17 0.386667 rectfill -0.883175 nxsetgray --1.666667 1.693334 17 0.386667 rectfill -0.876843 nxsetgray --1.666667 2.08 17 0.386667 rectfill -0.87051 nxsetgray --1.666667 2.466667 17 0.386667 rectfill -0.864177 nxsetgray --1.666667 2.853334 17 0.386667 rectfill -0.857845 nxsetgray --1.666667 3.240001 17 0.386667 rectfill -0.851512 nxsetgray --1.666667 3.626667 17 0.386667 rectfill -0.84518 nxsetgray --1.666667 4.013334 17 0.386667 rectfill -0.838847 nxsetgray --1.666667 4.400001 17 0.386667 rectfill -0.832514 nxsetgray --1.666667 4.786668 17 0.386667 rectfill -0.826182 nxsetgray --1.666667 5.173335 17 0.386667 rectfill -0.819849 nxsetgray --1.666667 5.560001 17 0.386667 rectfill -0.813517 nxsetgray --1.666667 5.946668 17 0.386667 rectfill -0.807169 nxsetgray --1.666667 6.333335 17 0.386667 rectfill -0.800836 nxsetgray --1.666667 6.720002 17 0.386667 rectfill -0.794504 nxsetgray --1.666667 7.106668 17 0.386667 rectfill -0.788171 nxsetgray --1.666667 7.493335 17 0.386667 rectfill -0.781838 nxsetgray --1.666667 7.880002 17 0.386667 rectfill -0.775506 nxsetgray --1.666667 8.266668 17 0.386667 rectfill -0.769173 nxsetgray --1.666667 8.653335 17 0.386667 rectfill -0.762841 nxsetgray --1.666667 9.040001 17 0.386667 rectfill -0.756508 nxsetgray --1.666667 9.426667 17 0.386667 rectfill -0.750175 nxsetgray --1.666667 9.813334 17 0.386667 rectfill -0.743843 nxsetgray --1.666667 10.2 17 0.386667 rectfill -0.73751 nxsetgray --1.666667 10.586666 17 0.386667 rectfill -0.731178 nxsetgray --1.666667 10.973332 17 0.386667 rectfill -0.724845 nxsetgray --1.666667 11.359999 17 0.386667 rectfill -0.718513 nxsetgray --1.666667 11.746665 17 0.386667 rectfill -0.71218 nxsetgray --1.666667 12.133331 17 0.386667 rectfill -0.705832 nxsetgray --1.666667 12.519998 17 0.386667 rectfill -0.699499 nxsetgray --1.666667 12.906664 17 0.386667 rectfill -0.693167 nxsetgray --1.666667 13.29333 17 0.386667 rectfill -0.686834 nxsetgray --1.666667 13.679996 17 0.386667 rectfill -0.680502 nxsetgray --1.666667 14.066663 17 0.386667 rectfill -0.674169 nxsetgray --1.666667 14.453329 17 0.386667 rectfill -0.667837 nxsetgray --1.666667 14.839995 17 0.386667 rectfill -0.661504 nxsetgray --1.666667 15.226662 17 0.386667 rectfill -0.655171 nxsetgray --1.666667 15.613328 17 0.386667 rectfill -N -grestore -2 L -0.117237 nxsetgray -0 0 m -1.666667 3.333333 3 7.333333 5 10 c -7 12.666667 10.666667 12 13 14 c -s -grestore -0 0 2 1 10 SU -[1 0 0 -1 175.5 502.5] concat -[0.857143 0 0 0.888889 1.5 1.5] concat -N -gsave N -7 9 0 0 ovalPath -clip -N -0 setlinewidth -0.655171 nxsetgray -0 0 7 0.18 rectfill -0.661504 nxsetgray -0 0.18 7 0.18 rectfill -0.667837 nxsetgray -0 0.36 7 0.18 rectfill -0.674169 nxsetgray -0 0.54 7 0.18 rectfill -0.680502 nxsetgray -0 0.72 7 0.18 rectfill -0.686834 nxsetgray -0 0.9 7 0.18 rectfill -0.693167 nxsetgray -0 1.08 7 0.18 rectfill -0.699499 nxsetgray -0 1.26 7 0.18 rectfill -0.705832 nxsetgray -0 1.44 7 0.18 rectfill -0.71218 nxsetgray -0 1.62 7 0.18 rectfill -0.718513 nxsetgray -0 1.8 7 0.18 rectfill -0.724845 nxsetgray -0 1.98 7 0.18 rectfill -0.731178 nxsetgray -0 2.16 7 0.18 rectfill -0.73751 nxsetgray -0 2.34 7 0.18 rectfill -0.743843 nxsetgray -0 2.52 7 0.18 rectfill -0.750175 nxsetgray -0 2.700001 7 0.18 rectfill -0.756508 nxsetgray -0 2.880001 7 0.18 rectfill -0.762841 nxsetgray -0 3.060001 7 0.18 rectfill -0.769173 nxsetgray -0 3.240001 7 0.18 rectfill -0.775506 nxsetgray -0 3.420001 7 0.18 rectfill -0.781838 nxsetgray -0 3.600001 7 0.18 rectfill -0.788171 nxsetgray -0 3.780001 7 0.18 rectfill -0.794504 nxsetgray -0 3.960001 7 0.18 rectfill -0.800836 nxsetgray -0 4.140001 7 0.18 rectfill -0.807169 nxsetgray -0 4.320001 7 0.18 rectfill -0.813517 nxsetgray -0 4.5 7 0.18 rectfill -0.819849 nxsetgray -0 4.68 7 0.18 rectfill -0.826182 nxsetgray -0 4.86 7 0.18 rectfill -0.832514 nxsetgray -0 5.04 7 0.18 rectfill -0.838847 nxsetgray -0 5.22 7 0.18 rectfill -0.84518 nxsetgray -0 5.4 7 0.18 rectfill -0.851512 nxsetgray -0 5.579999 7 0.18 rectfill -0.857845 nxsetgray -0 5.759999 7 0.18 rectfill -0.864177 nxsetgray -0 5.939999 7 0.18 rectfill -0.87051 nxsetgray -0 6.119999 7 0.18 rectfill -0.876843 nxsetgray -0 6.299999 7 0.18 rectfill -0.883175 nxsetgray -0 6.479999 7 0.18 rectfill -0.889508 nxsetgray -0 6.659998 7 0.18 rectfill -0.89584 nxsetgray -0 6.839998 7 0.18 rectfill -0.902173 nxsetgray -0 7.019998 7 0.18 rectfill -0.908505 nxsetgray -0 7.199998 7 0.18 rectfill -0.914853 nxsetgray -0 7.379998 7 0.18 rectfill -0.921186 nxsetgray -0 7.559998 7 0.18 rectfill -0.927519 nxsetgray -0 7.739997 7 0.18 rectfill -0.933851 nxsetgray -0 7.919997 7 0.18 rectfill -0.940184 nxsetgray -0 8.099998 7 0.18 rectfill -0.946516 nxsetgray -0 8.279998 7 0.18 rectfill -0.952849 nxsetgray -0 8.459998 7 0.18 rectfill -0.959181 nxsetgray -0 8.639998 7 0.18 rectfill -0.965514 nxsetgray -0 8.819999 7 0.18 rectfill -N -grestore -2 L -0.117237 nxsetgray -gsave -7 9 0 0 oval 0.142857 0.107143 S s -grestore -0 0 T -grestore -0 0 2 1 10 SU -[1 0 0 -1 288 498] concat -[0.6 0 0 1.285714 1 2] concat -N -gsave N -10 7 0 0 ovalPath -clip -N -0 setlinewidth -0.655171 nxsetgray -0 0 10 0.14 rectfill -0.661504 nxsetgray -0 0.14 10 0.14 rectfill -0.667837 nxsetgray -0 0.28 10 0.14 rectfill -0.674169 nxsetgray -0 0.42 10 0.14 rectfill -0.680502 nxsetgray -0 0.56 10 0.14 rectfill -0.686834 nxsetgray -0 0.7 10 0.14 rectfill -0.693167 nxsetgray -0 0.84 10 0.14 rectfill -0.699499 nxsetgray -0 0.98 10 0.14 rectfill -0.705832 nxsetgray -0 1.12 10 0.14 rectfill -0.71218 nxsetgray -0 1.26 10 0.14 rectfill -0.718513 nxsetgray -0 1.4 10 0.14 rectfill -0.724845 nxsetgray -0 1.54 10 0.14 rectfill -0.731178 nxsetgray -0 1.68 10 0.14 rectfill -0.73751 nxsetgray -0 1.82 10 0.14 rectfill -0.743843 nxsetgray -0 1.96 10 0.14 rectfill -0.750175 nxsetgray -0 2.1 10 0.14 rectfill -0.756508 nxsetgray -0 2.24 10 0.14 rectfill -0.762841 nxsetgray -0 2.38 10 0.14 rectfill -0.769173 nxsetgray -0 2.52 10 0.14 rectfill -0.775506 nxsetgray -0 2.66 10 0.14 rectfill -0.781838 nxsetgray -0 2.8 10 0.14 rectfill -0.788171 nxsetgray -0 2.940001 10 0.14 rectfill -0.794504 nxsetgray -0 3.080001 10 0.14 rectfill -0.800836 nxsetgray -0 3.220001 10 0.14 rectfill -0.807169 nxsetgray -0 3.360001 10 0.14 rectfill -0.813517 nxsetgray -0 3.500001 10 0.14 rectfill -0.819849 nxsetgray -0 3.640001 10 0.14 rectfill -0.826182 nxsetgray -0 3.780001 10 0.14 rectfill -0.832514 nxsetgray -0 3.920001 10 0.14 rectfill -0.838847 nxsetgray -0 4.060001 10 0.14 rectfill -0.84518 nxsetgray -0 4.200001 10 0.14 rectfill -0.851512 nxsetgray -0 4.340001 10 0.14 rectfill -0.857845 nxsetgray -0 4.480001 10 0.14 rectfill -0.864177 nxsetgray -0 4.620001 10 0.14 rectfill -0.87051 nxsetgray -0 4.760001 10 0.14 rectfill -0.876843 nxsetgray -0 4.900001 10 0.14 rectfill -0.883175 nxsetgray -0 5.04 10 0.14 rectfill -0.889508 nxsetgray -0 5.18 10 0.14 rectfill -0.89584 nxsetgray -0 5.32 10 0.14 rectfill -0.902173 nxsetgray -0 5.46 10 0.14 rectfill -0.908505 nxsetgray -0 5.6 10 0.14 rectfill -0.914853 nxsetgray -0 5.74 10 0.14 rectfill -0.921186 nxsetgray -0 5.88 10 0.14 rectfill -0.927519 nxsetgray -0 6.02 10 0.14 rectfill -0.933851 nxsetgray -0 6.159999 10 0.14 rectfill -0.940184 nxsetgray -0 6.299999 10 0.14 rectfill -0.946516 nxsetgray -0 6.439999 10 0.14 rectfill -0.952849 nxsetgray -0 6.579999 10 0.14 rectfill -0.959181 nxsetgray -0 6.719999 10 0.14 rectfill -0.965514 nxsetgray -0 6.859999 10 0.14 rectfill -N -grestore -2 L -0.117237 nxsetgray -gsave -10 7 0 0 oval 0.1 0.066667 S s -grestore -0 0 T -grestore -0 0 2 1 10 SU -[1 0 0 -1 398.5 495.5] concat -[0.625 0 0 1.166667 1.5 1.5] concat -N -gsave N -8 6 0 0 ovalPath -clip -N -0 setlinewidth -0.655171 nxsetgray -0 0 8 0.12 rectfill -0.661504 nxsetgray -0 0.12 8 0.12 rectfill -0.667837 nxsetgray -0 0.24 8 0.12 rectfill -0.674169 nxsetgray -0 0.36 8 0.12 rectfill -0.680502 nxsetgray -0 0.48 8 0.12 rectfill -0.686834 nxsetgray -0 0.6 8 0.12 rectfill -0.693167 nxsetgray -0 0.72 8 0.12 rectfill -0.699499 nxsetgray -0 0.84 8 0.12 rectfill -0.705832 nxsetgray -0 0.96 8 0.12 rectfill -0.71218 nxsetgray -0 1.08 8 0.12 rectfill -0.718513 nxsetgray -0 1.2 8 0.12 rectfill -0.724845 nxsetgray -0 1.32 8 0.12 rectfill -0.731178 nxsetgray -0 1.44 8 0.12 rectfill -0.73751 nxsetgray -0 1.56 8 0.12 rectfill -0.743843 nxsetgray -0 1.68 8 0.12 rectfill -0.750175 nxsetgray -0 1.8 8 0.12 rectfill -0.756508 nxsetgray -0 1.92 8 0.12 rectfill -0.762841 nxsetgray -0 2.04 8 0.12 rectfill -0.769173 nxsetgray -0 2.16 8 0.12 rectfill -0.775506 nxsetgray -0 2.28 8 0.12 rectfill -0.781838 nxsetgray -0 2.4 8 0.12 rectfill -0.788171 nxsetgray -0 2.52 8 0.12 rectfill -0.794504 nxsetgray -0 2.639999 8 0.12 rectfill -0.800836 nxsetgray -0 2.759999 8 0.12 rectfill -0.807169 nxsetgray -0 2.879999 8 0.12 rectfill -0.813517 nxsetgray -0 2.999999 8 0.12 rectfill -0.819849 nxsetgray -0 3.119999 8 0.12 rectfill -0.826182 nxsetgray -0 3.239999 8 0.12 rectfill -0.832514 nxsetgray -0 3.359999 8 0.12 rectfill -0.838847 nxsetgray -0 3.479999 8 0.12 rectfill -0.84518 nxsetgray -0 3.599998 8 0.12 rectfill -0.851512 nxsetgray -0 3.719998 8 0.12 rectfill -0.857845 nxsetgray -0 3.839998 8 0.12 rectfill -0.864177 nxsetgray -0 3.959998 8 0.12 rectfill -0.87051 nxsetgray -0 4.079998 8 0.12 rectfill -0.876843 nxsetgray -0 4.199998 8 0.12 rectfill -0.883175 nxsetgray -0 4.319998 8 0.12 rectfill -0.889508 nxsetgray -0 4.439998 8 0.12 rectfill -0.89584 nxsetgray -0 4.559998 8 0.12 rectfill -0.902173 nxsetgray -0 4.679997 8 0.12 rectfill -0.908505 nxsetgray -0 4.799997 8 0.12 rectfill -0.914853 nxsetgray -0 4.919997 8 0.12 rectfill -0.921186 nxsetgray -0 5.039997 8 0.12 rectfill -0.927519 nxsetgray -0 5.159997 8 0.12 rectfill -0.933851 nxsetgray -0 5.279997 8 0.12 rectfill -0.940184 nxsetgray -0 5.399997 8 0.12 rectfill -0.946516 nxsetgray -0 5.519997 8 0.12 rectfill -0.952849 nxsetgray -0 5.639997 8 0.12 rectfill -0.959181 nxsetgray -0 5.759996 8 0.12 rectfill -0.965514 nxsetgray -0 5.879996 8 0.12 rectfill -N -grestore -2 L -0.117237 nxsetgray -gsave -8 6 0 0 oval 0.125 0.089286 S s -grestore -0 0 T -grestore -0 0 2 1 10 SU -[1 0 0 -1 427.5 517] concat -[1.2 0 0 1 1.499999 1] concat -N -gsave N -25 28 0 0 ovalPath -clip -N -0 setlinewidth -0.655171 nxsetgray -0 0 25 0.56 rectfill -0.661504 nxsetgray -0 0.56 25 0.56 rectfill -0.667837 nxsetgray -0 1.12 25 0.56 rectfill -0.674169 nxsetgray -0 1.68 25 0.56 rectfill -0.680502 nxsetgray -0 2.24 25 0.56 rectfill -0.686834 nxsetgray -0 2.8 25 0.56 rectfill -0.693167 nxsetgray -0 3.36 25 0.56 rectfill -0.699499 nxsetgray -0 3.92 25 0.56 rectfill -0.705832 nxsetgray -0 4.48 25 0.56 rectfill -0.71218 nxsetgray -0 5.04 25 0.56 rectfill -0.718513 nxsetgray -0 5.6 25 0.56 rectfill -0.724845 nxsetgray -0 6.16 25 0.56 rectfill -0.731178 nxsetgray -0 6.72 25 0.56 rectfill -0.73751 nxsetgray -0 7.28 25 0.56 rectfill -0.743843 nxsetgray -0 7.84 25 0.56 rectfill -0.750175 nxsetgray -0 8.4 25 0.56 rectfill -0.756508 nxsetgray -0 8.96 25 0.56 rectfill -0.762841 nxsetgray -0 9.52 25 0.56 rectfill -0.769173 nxsetgray -0 10.080001 25 0.56 rectfill -0.775506 nxsetgray -0 10.640001 25 0.56 rectfill -0.781838 nxsetgray -0 11.200002 25 0.56 rectfill -0.788171 nxsetgray -0 11.760002 25 0.56 rectfill -0.794504 nxsetgray -0 12.320003 25 0.56 rectfill -0.800836 nxsetgray -0 12.880003 25 0.56 rectfill -0.807169 nxsetgray -0 13.440003 25 0.56 rectfill -0.813517 nxsetgray -0 14.000004 25 0.56 rectfill -0.819849 nxsetgray -0 14.560004 25 0.56 rectfill -0.826182 nxsetgray -0 15.120005 25 0.56 rectfill -0.832514 nxsetgray -0 15.680005 25 0.56 rectfill -0.838847 nxsetgray -0 16.240005 25 0.56 rectfill -0.84518 nxsetgray -0 16.800005 25 0.56 rectfill -0.851512 nxsetgray -0 17.360004 25 0.56 rectfill -0.857845 nxsetgray -0 17.920004 25 0.56 rectfill -0.864177 nxsetgray -0 18.480003 25 0.56 rectfill -0.87051 nxsetgray -0 19.040003 25 0.56 rectfill -0.876843 nxsetgray -0 19.600002 25 0.56 rectfill -0.883175 nxsetgray -0 20.160002 25 0.56 rectfill -0.889508 nxsetgray -0 20.720001 25 0.56 rectfill -0.89584 nxsetgray -0 21.280001 25 0.56 rectfill -0.902173 nxsetgray -0 21.84 25 0.56 rectfill -0.908505 nxsetgray -0 22.4 25 0.56 rectfill -0.914853 nxsetgray -0 22.959999 25 0.56 rectfill -0.921186 nxsetgray -0 23.519999 25 0.56 rectfill -0.927519 nxsetgray -0 24.079998 25 0.56 rectfill -0.933851 nxsetgray -0 24.639997 25 0.56 rectfill -0.940184 nxsetgray -0 25.199997 25 0.56 rectfill -0.946516 nxsetgray -0 25.759996 25 0.56 rectfill -0.952849 nxsetgray -0 26.319996 25 0.56 rectfill -0.959181 nxsetgray -0 26.879995 25 0.56 rectfill -0.965514 nxsetgray -0 27.439995 25 0.56 rectfill -N -grestore -2 L -0.117237 nxsetgray -gsave -25 28 0 0 oval 0.033333 0.035714 S s -grestore -0 0 T -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -/Helvetica findfont 12 scalefont [1 0 0 -1 0 0] makefont -12 -exch -defineuserobject -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1079] concat -12 execuserobject setfont -0 nxsetgray -165 544 moveto (Shoulder) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1061] concat -12 execuserobject setfont -0 nxsetgray -273 535 moveto (Elbow) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1041] concat -12 execuserobject setfont -0 nxsetgray -377 525 moveto (Wrist) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1055] concat -12 execuserobject setfont -0 nxsetgray -427 532 moveto (Weight) show -grestore -grestore -0 0 2 1 10 SU -201 523 T -N -gsave N -0 0 m --1.333333 -4.333333 -1.666667 -9.166667 -4 -13 c --6.333333 -16.833334 -10.666667 -19.666666 -14 -23 c -clip -N -0 setlinewidth -0.965514 nxsetgray --17.333332 -26.333334 18.666666 0.613333 rectfill -0.959181 nxsetgray --17.333332 -25.720001 18.666666 0.613333 rectfill -0.952849 nxsetgray --17.333332 -25.106668 18.666666 0.613333 rectfill -0.946516 nxsetgray --17.333332 -24.493336 18.666666 0.613333 rectfill -0.940184 nxsetgray --17.333332 -23.880003 18.666666 0.613333 rectfill -0.933851 nxsetgray --17.333332 -23.26667 18.666666 0.613333 rectfill -0.927519 nxsetgray --17.333332 -22.653337 18.666666 0.613333 rectfill -0.921186 nxsetgray --17.333332 -22.040005 18.666666 0.613333 rectfill -0.914853 nxsetgray --17.333332 -21.426672 18.666666 0.613333 rectfill -0.908505 nxsetgray --17.333332 -20.813339 18.666666 0.613333 rectfill -0.902173 nxsetgray --17.333332 -20.200006 18.666666 0.613333 rectfill -0.89584 nxsetgray --17.333332 -19.586674 18.666666 0.613333 rectfill -0.889508 nxsetgray --17.333332 -18.973341 18.666666 0.613333 rectfill -0.883175 nxsetgray --17.333332 -18.360008 18.666666 0.613333 rectfill -0.876843 nxsetgray --17.333332 -17.746675 18.666666 0.613333 rectfill -0.87051 nxsetgray --17.333332 -17.133343 18.666666 0.613333 rectfill -0.864177 nxsetgray --17.333332 -16.52001 18.666666 0.613333 rectfill -0.857845 nxsetgray --17.333332 -15.906676 18.666666 0.613333 rectfill -0.851512 nxsetgray --17.333332 -15.293343 18.666666 0.613333 rectfill -0.84518 nxsetgray --17.333332 -14.680009 18.666666 0.613333 rectfill -0.838847 nxsetgray --17.333332 -14.066675 18.666666 0.613333 rectfill -0.832514 nxsetgray --17.333332 -13.453341 18.666666 0.613333 rectfill -0.826182 nxsetgray --17.333332 -12.840008 18.666666 0.613333 rectfill -0.819849 nxsetgray --17.333332 -12.226674 18.666666 0.613333 rectfill -0.813517 nxsetgray --17.333332 -11.61334 18.666666 0.613333 rectfill -0.807169 nxsetgray --17.333332 -11.000007 18.666666 0.613333 rectfill -0.800836 nxsetgray --17.333332 -10.386673 18.666666 0.613333 rectfill -0.794504 nxsetgray --17.333332 -9.773339 18.666666 0.613333 rectfill -0.788171 nxsetgray --17.333332 -9.160006 18.666666 0.613333 rectfill -0.781838 nxsetgray --17.333332 -8.546672 18.666666 0.613333 rectfill -0.775506 nxsetgray --17.333332 -7.933339 18.666666 0.613333 rectfill -0.769173 nxsetgray --17.333332 -7.320005 18.666666 0.613333 rectfill -0.762841 nxsetgray --17.333332 -6.706672 18.666666 0.613333 rectfill -0.756508 nxsetgray --17.333332 -6.093339 18.666666 0.613333 rectfill -0.750175 nxsetgray --17.333332 -5.480006 18.666666 0.613333 rectfill -0.743843 nxsetgray --17.333332 -4.866673 18.666666 0.613333 rectfill -0.73751 nxsetgray --17.333332 -4.253339 18.666666 0.613333 rectfill -0.731178 nxsetgray --17.333332 -3.640006 18.666666 0.613333 rectfill -0.724845 nxsetgray --17.333332 -3.026673 18.666666 0.613333 rectfill -0.718513 nxsetgray --17.333332 -2.41334 18.666666 0.613333 rectfill -0.71218 nxsetgray --17.333332 -1.800006 18.666666 0.613333 rectfill -0.705832 nxsetgray --17.333332 -1.186673 18.666666 0.613333 rectfill -0.699499 nxsetgray --17.333332 -0.57334 18.666666 0.613333 rectfill -0.693167 nxsetgray --17.333332 0.039994 18.666666 0.613333 rectfill -0.686834 nxsetgray --17.333332 0.653327 18.666666 0.613333 rectfill -0.680502 nxsetgray --17.333332 1.26666 18.666666 0.613333 rectfill -0.674169 nxsetgray --17.333332 1.879994 18.666666 0.613333 rectfill -0.667837 nxsetgray --17.333332 2.493327 18.666666 0.613333 rectfill -0.661504 nxsetgray --17.333332 3.10666 18.666666 0.613333 rectfill -0.655171 nxsetgray --17.333332 3.719994 18.666666 0.613333 rectfill -N -grestore -2 L -0.117237 nxsetgray -0 0 m --1.333333 -4.333333 -1.666667 -9.166667 -4 -13 c --6.333333 -16.833334 -10.666667 -19.666666 -14 -23 c -s -225.003998 -14 -23 arrow -grestore -0 0 2 1 10 SU -286 521 T -N -gsave N -0 0 m --1.666667 -4.333333 -4.666667 -8.666667 -5 -13 c --5.333333 -17.333334 -3 -21.666666 -2 -26 c -clip -N -0 setlinewidth -0.965514 nxsetgray --5.333333 -30.333334 7 0.693333 rectfill -0.959181 nxsetgray --5.333333 -29.640001 7 0.693333 rectfill -0.952849 nxsetgray --5.333333 -28.946669 7 0.693333 rectfill -0.946516 nxsetgray --5.333333 -28.253336 7 0.693333 rectfill -0.940184 nxsetgray --5.333333 -27.560003 7 0.693333 rectfill -0.933851 nxsetgray --5.333333 -26.866671 7 0.693333 rectfill -0.927519 nxsetgray --5.333333 -26.173338 7 0.693333 rectfill -0.921186 nxsetgray --5.333333 -25.480005 7 0.693333 rectfill -0.914853 nxsetgray --5.333333 -24.786673 7 0.693333 rectfill -0.908505 nxsetgray --5.333333 -24.09334 7 0.693333 rectfill -0.902173 nxsetgray --5.333333 -23.400007 7 0.693333 rectfill -0.89584 nxsetgray --5.333333 -22.706675 7 0.693333 rectfill -0.889508 nxsetgray --5.333333 -22.013342 7 0.693333 rectfill -0.883175 nxsetgray --5.333333 -21.320009 7 0.693333 rectfill -0.876843 nxsetgray --5.333333 -20.626677 7 0.693333 rectfill -0.87051 nxsetgray --5.333333 -19.933344 7 0.693333 rectfill -0.864177 nxsetgray --5.333333 -19.240011 7 0.693333 rectfill -0.857845 nxsetgray --5.333333 -18.546679 7 0.693333 rectfill -0.851512 nxsetgray --5.333333 -17.853346 7 0.693333 rectfill -0.84518 nxsetgray --5.333333 -17.160013 7 0.693333 rectfill -0.838847 nxsetgray --5.333333 -16.466681 7 0.693333 rectfill -0.832514 nxsetgray --5.333333 -15.773347 7 0.693333 rectfill -0.826182 nxsetgray --5.333333 -15.080013 7 0.693333 rectfill -0.819849 nxsetgray --5.333333 -14.38668 7 0.693333 rectfill -0.813517 nxsetgray --5.333333 -13.693346 7 0.693333 rectfill -0.807169 nxsetgray --5.333333 -13.000012 7 0.693333 rectfill -0.800836 nxsetgray --5.333333 -12.306679 7 0.693333 rectfill -0.794504 nxsetgray --5.333333 -11.613345 7 0.693333 rectfill -0.788171 nxsetgray --5.333333 -10.920012 7 0.693333 rectfill -0.781838 nxsetgray --5.333333 -10.226678 7 0.693333 rectfill -0.775506 nxsetgray --5.333333 -9.533344 7 0.693333 rectfill -0.769173 nxsetgray --5.333333 -8.840011 7 0.693333 rectfill -0.762841 nxsetgray --5.333333 -8.146677 7 0.693333 rectfill -0.756508 nxsetgray --5.333333 -7.453343 7 0.693333 rectfill -0.750175 nxsetgray --5.333333 -6.76001 7 0.693333 rectfill -0.743843 nxsetgray --5.333333 -6.066676 7 0.693333 rectfill -0.73751 nxsetgray --5.333333 -5.373343 7 0.693333 rectfill -0.731178 nxsetgray --5.333333 -4.680009 7 0.693333 rectfill -0.724845 nxsetgray --5.333333 -3.986676 7 0.693333 rectfill -0.718513 nxsetgray --5.333333 -3.293342 7 0.693333 rectfill -0.71218 nxsetgray --5.333333 -2.600009 7 0.693333 rectfill -0.705832 nxsetgray --5.333333 -1.906675 7 0.693333 rectfill -0.699499 nxsetgray --5.333333 -1.213342 7 0.693333 rectfill -0.693167 nxsetgray --5.333333 -0.520009 7 0.693333 rectfill -0.686834 nxsetgray --5.333333 0.173325 7 0.693333 rectfill -0.680502 nxsetgray --5.333333 0.866658 7 0.693333 rectfill -0.674169 nxsetgray --5.333333 1.559992 7 0.693333 rectfill -0.667837 nxsetgray --5.333333 2.253325 7 0.693333 rectfill -0.661504 nxsetgray --5.333333 2.946658 7 0.693333 rectfill -0.655171 nxsetgray --5.333333 3.639992 7 0.693333 rectfill -N -grestore -2 L -0.117237 nxsetgray -0 0 m --1.666667 -4.333333 -4.666667 -8.666667 -5 -13 c --5.333333 -17.333334 -3 -21.666666 -2 -26 c -s --77.010307 -2 -26 arrow -grestore -0 0 2 1 10 SU -393 512 T -N -gsave N -4 0 m -4.666667 -6 5.333333 -11 6 -17 c -clip -N -0 setlinewidth -0.965514 nxsetgray -3.333333 -23 3.333333 0.58 rectfill -0.959181 nxsetgray -3.333333 -22.42 3.333333 0.58 rectfill -0.952849 nxsetgray -3.333333 -21.84 3.333333 0.58 rectfill -0.946516 nxsetgray -3.333333 -21.26 3.333333 0.58 rectfill -0.940184 nxsetgray -3.333333 -20.68 3.333333 0.58 rectfill -0.933851 nxsetgray -3.333333 -20.1 3.333333 0.58 rectfill -0.927519 nxsetgray -3.333333 -19.52 3.333333 0.58 rectfill -0.921186 nxsetgray -3.333333 -18.940001 3.333333 0.58 rectfill -0.914853 nxsetgray -3.333333 -18.360001 3.333333 0.58 rectfill -0.908505 nxsetgray -3.333333 -17.780001 3.333333 0.58 rectfill -0.902173 nxsetgray -3.333333 -17.200001 3.333333 0.58 rectfill -0.89584 nxsetgray -3.333333 -16.620001 3.333333 0.58 rectfill -0.889508 nxsetgray -3.333333 -16.040001 3.333333 0.58 rectfill -0.883175 nxsetgray -3.333333 -15.460001 3.333333 0.58 rectfill -0.876843 nxsetgray -3.333333 -14.880001 3.333333 0.58 rectfill -0.87051 nxsetgray -3.333333 -14.300001 3.333333 0.58 rectfill -0.864177 nxsetgray -3.333333 -13.720001 3.333333 0.58 rectfill -0.857845 nxsetgray -3.333333 -13.140001 3.333333 0.58 rectfill -0.851512 nxsetgray -3.333333 -12.560001 3.333333 0.58 rectfill -0.84518 nxsetgray -3.333333 -11.980001 3.333333 0.58 rectfill -0.838847 nxsetgray -3.333333 -11.400002 3.333333 0.58 rectfill -0.832514 nxsetgray -3.333333 -10.820002 3.333333 0.58 rectfill -0.826182 nxsetgray -3.333333 -10.240002 3.333333 0.58 rectfill -0.819849 nxsetgray -3.333333 -9.660002 3.333333 0.58 rectfill -0.813517 nxsetgray -3.333333 -9.080002 3.333333 0.58 rectfill -0.807169 nxsetgray -3.333333 -8.500002 3.333333 0.58 rectfill -0.800836 nxsetgray -3.333333 -7.920002 3.333333 0.58 rectfill -0.794504 nxsetgray -3.333333 -7.340002 3.333333 0.58 rectfill -0.788171 nxsetgray -3.333333 -6.760002 3.333333 0.58 rectfill -0.781838 nxsetgray -3.333333 -6.180002 3.333333 0.58 rectfill -0.775506 nxsetgray -3.333333 -5.600002 3.333333 0.58 rectfill -0.769173 nxsetgray -3.333333 -5.020002 3.333333 0.58 rectfill -0.762841 nxsetgray -3.333333 -4.440002 3.333333 0.58 rectfill -0.756508 nxsetgray -3.333333 -3.860003 3.333333 0.58 rectfill -0.750175 nxsetgray -3.333333 -3.280003 3.333333 0.58 rectfill -0.743843 nxsetgray -3.333333 -2.700003 3.333333 0.58 rectfill -0.73751 nxsetgray -3.333333 -2.120003 3.333333 0.58 rectfill -0.731178 nxsetgray -3.333333 -1.540003 3.333333 0.58 rectfill -0.724845 nxsetgray -3.333333 -0.960003 3.333333 0.58 rectfill -0.718513 nxsetgray -3.333333 -0.380003 3.333333 0.58 rectfill -0.71218 nxsetgray -3.333333 0.199997 3.333333 0.58 rectfill -0.705832 nxsetgray -3.333333 0.779997 3.333333 0.58 rectfill -0.699499 nxsetgray -3.333333 1.359997 3.333333 0.58 rectfill -0.693167 nxsetgray -3.333333 1.939997 3.333333 0.58 rectfill -0.686834 nxsetgray -3.333333 2.519997 3.333333 0.58 rectfill -0.680502 nxsetgray -3.333333 3.099997 3.333333 0.58 rectfill -0.674169 nxsetgray -3.333333 3.679997 3.333333 0.58 rectfill -0.667837 nxsetgray -3.333333 4.259997 3.333333 0.58 rectfill -0.661504 nxsetgray -3.333333 4.839997 3.333333 0.58 rectfill -0.655171 nxsetgray -3.333333 5.419997 3.333333 0.58 rectfill -N -grestore -2 L -0.117237 nxsetgray -4 0 m -4.666667 -6 5.333333 -11 6 -17 c -s --83.664932 6 -17 arrow -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype24/prob22a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype24/prob22a.gif deleted file mode 100755 index b3957784b..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype24/prob22a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype24/prob23a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype24/prob23a.eps deleted file mode 100755 index f22d5d377..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype24/prob23a.eps +++ /dev/null @@ -1,1493 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: hecht6.34.create -%%Creator: Create -%%CreationDate: Thu Jan 30 17:07:59 1997 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 148 401 374 594 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(Z\:eiX-Oj]EDqr^5,DHXDd')Wf_)MZ&Otpk?PbAaIb`4jo\?lPek6r:J0S0 -% fg/dJogc=>_8H/lI.Nm8&Ee>U4F9YiK%Zu^.kVi:E._8h@g_$(&8WJ2>]ah[DFL-m&m%mRI?h0^Mk.Jt^"-7VHLh:HBOcPsJe -% 6CjYm(JE?pr%KA!Bh0EFjY3+rqfQnHK8?N"H75A[nB5E1NLeaAW9 -% [eg>QSW>Ad/p][#qM`$f&R>sSqc"**]i21+VGm<#:V4Eq+C9>18Tkq*hL7<(n$&P6m`#7_XU -% !,M%STNAd`l<-)OWe%ThhAN[(Z_!nh4X&<4;m9;TTDEQEX@L!AJYm>'Pd$$X^iA7JVE\-PSFp&i([cDgHjTh.6O*oTGKtn>$Is\J%43%ksQN?N!(5p#0GESiC91Y\@6jE-CqXBQT^: -% g7=8h);AtKe95&6]Ce)GEeYorW-=,>&`%QZ4c5f+Q[2^;G`u`c*cTu>fA:k`c7m.dV;=JPId -% G/]i!eE*D]fMqWfIQr2$4fE8d759&;B6o.f%an='Xr#(HrP-D>bqdhGY!uB##s1Z0hflZ3OF -% a0tZ.JaY()U>2a^-[GM-3Gc?MJnO,__je5.$c%Cunp_5kU;(kb[@3>3'UHRs$-TR(dT;*NoS -% aoc1I;C=XqU4E<:PEOIntTQ@lusorjGuP\i*WM`(I/fG:d,:;huOK^Ws-M(6-e4]"F4"`&ac -% ejAiNWl@/p?QaIn/X@Zh1l$nQ#tg#- -% ,,0)bFiiZFp;AI4NZ-!7N7&'_gBYXir:k:<.+; -% WoA5m^H9=*FdJ*ehR',/aJCcXN%GSg4`G9W:X?4<[oE=Z?C@EcF!ibVk+ZTH"YA:<9d&nhB; -% H9gXo)5I;I[M^-C3Pqn2UZHi4leOiJo-]4@m!N2q'^BQ0oIeWFX0?*->@$^>AGXu=!nGj^j5 -% 0/]nI:-aLkfd@90U`hP&KcieU_+b##hWZn%%[TUXgfPT%5=KBr^G*IM@":dFQ#(/)1rd=F,% -% fK,bF;3VgJ7O;#2.X57_>DmX6a]ienL:TD2$3:9f5=C?REkREPS#<.DS$UIBlN7UiM4REE/R -% 1Io$W$(BA(F24Ol<=/dZ`0]:_JG&49`W$nGJYGqRWm4*9c[T_ -% _6ZB$[g`4J`YoW`:F$elk,!X:bEjrd7kA[:XNJBY8m7NTj<#JomD)`Dg-8H.'> -% tF0@(9_I"h`Jg[ZV&2uI_3-hO@h>O^cN_(U/!?bN;`j;s0]W=9nZrp0/dBieQ.M>1.6a*[W$3lA#/P$`lPM\DSgt'n:`[-0sdQ*_k*V'kh\3Ya-t:".AP$hXt-ACpg=ZX?j7:c -% [';m3^`"4L16Pk#\g6*k&4:5aKX[ZU$Y-\\M:Gn]cC*M,L"LBK+u.YD9P#`\3&-mQ=m&m6j3 -% YWe`ee-CNZ$U3*s[)48Nq0dQV9?MX_qf'QuX;r?tH2=:6F)_no[0E0ZEjjn)s9.\;Lc -% I1caSRMWLqTLSSSD)UXA'o]cc>t%*SP>+,,4!q9Hp4*nnYUmc?)?2]2KU-_m:\q8plW6*0sF -% ;5Z&2[qf#H"&V)A#,9m>=ENs'U4"#K=+UKZ4#B(`U+>_s/>)_4q&Ydbq&@<5?Vh21suQQXQ@ -% aaH80o&^ddlb.+02uCj*Ssqr24mG_*g>Aq@30OS21_^q"dL$67\At"QJ1V]!N%=Y+[2/,3\b -% k-7?LbZeY3`R7pu=4A\\:L,B2[L[e1"2d[JQK*-P+H):U7i%k\L@W!:UG1D--Z:GUl(]Z,6/6G[9G?YIRt_XgkZhRHJ6*2W*1OF>S%Ym[lS[g -% d*POe$Zb"Gcur*RNMcqbfC75)-=g-6%UHn@4S2\J-e:+odlFH9K+>G`5>ne0fs8n7+dCO8?d -% ZR599ep5D9+$Y&n>5?.r&Op:mL8E2n7=(6o`QP8\ste[$=d@/%(]+"mG\CVTR+2mKt8TR4HJ -% ^@BJ@!:6B.%/PUNIe`K"`U -% `T$oT]QZO&-JNo?D6fS2C!WlRlJcT82f]RSB7!MarJ1l.omO!TC=G/Q1IZT>;(AN@(f7S=s! -% Da=<=@%U0Qsn\BHA4e;][h[HLNkN:DI+06%sVe#8;.]oGrbY94G\9-ZN28k!P!"_/+\;,M-L@f)1E@6$5=?9T@LBNqEHPZs8k_DYFJ12n&.sQg*Q\GduEsbHSRE11P -% -\jW/GEI\;PF-XBLB12f"C#jV!C-Z4n:qr0GUgd_/EhNI`cDmXDCC5M!?_Cg0SPt(I\>/=3f -% &J7[r4KsHmhL7c,YJ3EN6%rVD`W;C -% 3L-.;Prj8V4dd+JQ?_F+PoT%R<D:VmWEEK_FMLhg.JK[Q9U>$7DI5\s^4S>mEg_l8m>adrC/!)FdGbc-og.?Yg^Ru/Y]om*+p\Vt -% _mRI@,A!sa5Un0FBO("9B%g&M*\J=gAn67le*@8[M/^]m"GE>(j5&MlG/Y]t`'R0h5`K7KX6 -% lA-/$2?@c&2:HeB7ZYW'O+XYPJ:Loe-uc/<2Z`Cn8MZM)L.r_]5Sl7+6RU(i3FUj=8M^Q"`lXop!mnQg0-LUB!t-0U2aH66L_3-61ItHA$pGkq#nh4f! -% )WYY"T`c!?RNRE$Qg/-?ngEHTgMl_YR0it@%:S6-D[<9mBVIfk<8/eNUJ\,#fnDJer9(;O*q -% SlX-kd+k5Js#(c-oWfE5i*Ri)YXOJ9,4!dFc#^-)5_k0oq]6urBo13i"nPtEnFO8t``.UjF^ -% >^&gA3+)b7TG=ugB6\E_)L9Ciem)hu@eS>.@MuD($o$Hj7MgDj+U9$"^q`AUDTn54LM"3X"s -% %fA_$1]f_uM#&+JAhQ'R@&/7Su8>T`>mGKH\ARCsW1"O$O7)LQMpc3(?b`I-BQ"*\o!.%5i* -% E7R:UqEFkFgeksGR4oREq(c&rO,T0k6JVO\([Y[K_1>j:LRk`uSTq#3h#@NB9pTjelnc4MI`@u**6L`jX0J<-=m6jP/I*Q$\?C#o -% uc!sEYB+92Zc[NK%N2!@;[R;LO.=4:,n@14l,f\qT/N`b:t0WN3gM_J0m`uQ#A!nH -% R-4-\dL4)@*`Vb^0?oNV7g;tM<28KF.oHNCnb2(_$McRB>]*d4>@m4<.(s?)/i2o`ucBQ1eXkiV2>UBELq.02!_4XblCo)Nm=(#W;!GR9:5-9 -% _jd$o:TT!.V9!aisKO@3&:F0+ceE`:a6ENp[5n7C4K*Zrn_E\B9GMU)(!0j.0i>l -% NEU64CCQY/[c3KJJI6llm7e%e6$$406GiqL;;5/&H8I-G,NCnUR<.LlH:RF'smR*\8-8b"eC -% [#Q: 8 1 false[8 0 0 1 0 0]{}imagemask}{/$bkg -true def}ifelse}if}ifelse @gr $wid 0 gt $hei 0 gt and{$pn cvlit load aload pop -/$pd xd 3 -1 roll sub/$phei xd exch sub/$pwid xd $wid $pwid div ceiling 1 add -/$tlx xd $hei $phei div ceiling 1 add/$tly xd $psx 0 eq{@tv}{@th}ifelse}if @gr -@np/$bkg false def}bd/@dlt{$fse $fss sub/nff xd $frb dup 1 eq exch 2 eq or{ -$frt dup $frc $frm $fry $frk @tc 4 copy cmyk2rgb rgb2hsb 3 copy/myb xd/mys xd -/myh xd $tot $toc $tom $toy $tok @tc cmyk2rgb rgb2hsb 3 1 roll 4 1 roll 5 1 -roll sub neg nff div/kdb xd sub neg nff div/kds xd sub neg dup 0 eq{pop $frb 2 -eq{.99}{-.99}ifelse}if dup $frb 2 eq exch 0 lt and{1 add}if dup $frb 1 eq exch -0 gt and{1 sub}if nff div/kdh xd}{$frt dup $frc $frm $fry $frk @tc 5 copy $tot -dup $toc $tom $toy $tok @tc 5 1 roll 6 1 roll 7 1 roll 8 1 roll 9 1 roll sub -neg nff dup 1 gt{1 sub}if div/$dk xd sub neg nff dup 1 gt{1 sub}if div/$dy xd -sub neg nff dup 1 gt{1 sub}if div/$dm xd sub neg nff dup 1 gt{1 sub}if div/$dc -xd sub neg nff dup 1 gt{1 sub}if div/$dt xd}ifelse}bd/ffcol{5 copy $fsit 0 eq{ -setcmykcolor pop}{SepMode 0 ne{$frn findcmykcustomcolor exch setcustomcolor}{4 -rp $frc $frm $fry $frk $frn findcmykcustomcolor exch setcustomcolor}ifelse} -ifelse}bd/@ftl{1 index 4 index sub dup $pad mul dup/$pdw xd 2 mul sub $fst div -/$wid xd 2 index sub/$hei xd pop Tl @dlt $fss 0 eq{ffcol n 0 0 m 0 $hei l $pdw -$hei l $pdw 0 l @cp $ffpnt{fill}{@np}ifelse}if $fss $wid mul $pdw add 0 Tl nff -{ffcol n 0 0 m 0 $hei l $wid $hei l $wid 0 l @cp $ffpnt{fill}{@np}ifelse $wid 0 -Tl $frb dup 1 eq exch 2 eq or{4 rp myh mys myb kdb add 3 1 roll kds add 3 1 -roll kdh add 3 1 roll 3 copy/myb xd/mys xd/myh xd hsb2rgb rgb2cmyk}{$dk add 5 1 -roll $dy add 5 1 roll $dm add 5 1 roll $dc add 5 1 roll $dt add 5 1 roll} -ifelse}repeat 5 rp $tot dup $toc $tom $toy $tok @tc ffcol n 0 0 m 0 $hei l $pdw -$hei l $pdw 0 l @cp $ffpnt{fill}{@np}ifelse 5 rp}bd/@ftr{1 index 4 index sub -dup $rox mul/$row xd 2 div 1 index 4 index sub dup $roy mul/$roh xd 2 div 2 -copy dup mul exch dup mul add sqrt $row dup mul $roh dup mul add sqrt add dup -/$hei xd $fst div/$wid xd 4 index add $roh add exch 5 index add $row add exch -Tl 4 rp @dlt $fss 0 eq{ffcol $wid 0 m 0 0 $hei 0 360 arc $ffpnt{fill}{@np} -ifelse}if 1.0 $pad 2 mul sub dup scale $hei $fss $wid mul sub/$hei xd nff{ -ffcol n $wid 0 m 0 0 $hei 0 360 arc $ffpnt{fill}{@np}ifelse/$hei $hei $wid sub -def $frb dup 1 eq exch 2 eq or{4 rp myh mys myb kdb add 3 1 roll kds add 3 1 -roll kdh add 3 1 roll 3 copy/myb xd/mys xd/myh xd hsb2rgb rgb2cmyk}{$dk add 5 1 -roll $dy add 5 1 roll $dm add 5 1 roll $dc add 5 1 roll $dt add 5 1 roll} -ifelse}repeat 5 rp}bd/@ftc{1 index 4 index sub dup $rox mul/$row xd 2 div 1 -index 4 index sub dup $roy mul/$roh xd 2 div 2 copy dup mul exch dup mul add -sqrt $row dup mul $roh dup mul add sqrt add dup/$hei xd $fst div/$wid xd 4 -index add $roh add exch 5 index add $row add exch Tl 4 rp @dlt $fss 0 eq{ffcol -$ffpnt{fill}{@np}ifelse}{n}ifelse/$dang 180 $fst 1 sub div def/$sang $dang -2 -div 180 add def/$eang $dang 2 div 180 add def/$sang $sang $dang $fss mul add -def/$eang $eang $dang $fss mul add def/$sang $eang $dang sub def nff{ffcol n -$wid 0 m 0 0 $hei $sang $fan add $eang $fan add arc $ffpnt{fill}{@np}ifelse -$wid 0 m 0 0 $hei $eang neg $fan add $sang neg $fan add arc $ffpnt{fill}{@np} -ifelse/$sang $eang def/$eang $eang $dang add def $frb dup 1 eq exch 2 eq or{4 -rp myh mys myb kdb add 3 1 roll kds add 3 1 roll kdh add 3 1 roll 3 copy/myb xd -/mys xd/myh xd hsb2rgb rgb2cmyk}{$dk add 5 1 roll $dy add 5 1 roll $dm add 5 1 -roll $dc add 5 1 roll $dt add 5 1 roll}ifelse}repeat 5 rp}bd/@ff{/$fss 0 def $o -1 eq setoverprint 1 1 $fsc 1 sub{dup 1 sub $fsit 0 eq{$fsa exch 5 mul 5 -getinterval aload 2 rp/$frk xd/$fry xd/$frm xd/$frc xd/$frn _ def/$frt 1 def -$fsa exch 5 mul 5 getinterval aload pop $fss add/$fse xd/$tok xd/$toy xd/$tom -xd/$toc xd/$ton _ def/$tot 1 def}{$fsa exch 7 mul 7 getinterval aload 2 rp -/$frt xd/$frn xd/$frk xd/$fry xd/$frm xd/$frc xd $fsa exch 7 mul 7 getinterval -aload pop $fss add/$fse xd/$tot xd/$ton xd/$tok xd/$toy xd/$tom xd/$toc xd} -ifelse $fsit 0 eq SepMode 0 eq or dup not CurrentInkName $frn eq and or{@sv -$ctm setmatrix eoclip Bbllx Bblly Bburx Bbury $fty 2 eq{@ftc}{$fty 1 eq{1 index -3 index m 2 copy l 3 index 1 index l 3 index 3 index l @cp @ftr}{1 index 3 -index m 2 copy l 3 index 1 index l 3 index 3 index l @cp 4 rp $fan rotate -pathbbox @ftl}ifelse}ifelse @rs/$fss $fse def}{1 0 0 0 0 _ $o @scc{fill}if} -ifelse}for @np}bd/@Pf{@sv SepMode 0 eq $ink 3 eq or{0 J 0 j[]0 d $t $c $m $y $k -$n $o @scc pop $ctm setmatrix 72 1000 div dup matrix scale dup concat dup Bburx -exch Bbury exch itransform ceiling cvi/Bbury xd ceiling cvi/Bburx xd Bbllx exch -Bblly exch itransform floor cvi/Bblly xd floor cvi/Bbllx xd $Prm aload pop $Psn -load exec}{1 SetGry eofill}ifelse @rs @np}bd/F{matrix currentmatrix $sdf{$scf -$sca $scp @ss}if $fil 1 eq{@pf}{$fil 2 eq{@ff}{$fil 3 eq{@Pf}{$t $c $m $y $k $n -$o @scc{eofill}{@np}ifelse}ifelse}ifelse}ifelse $sdf{$dsf $dsa $dsp @ss}if -setmatrix}bd/f{@cp F}bd/S{matrix currentmatrix $ctm setmatrix $SDF{$SCF $SCA -$SCP @ss}if $T $C $M $Y $K $N $O @scc{matrix currentmatrix $ptm concat stroke -setmatrix}{@np}ifelse $SDF{$dsf $dsa $dsp @ss}if setmatrix}bd/s{@cp S}bd/B{@gs -F @gr S}bd/b{@cp B}bd/E{5 array astore exch cvlit xd}bd/@cc{currentfile $dat -readhexstring pop}bd/@sm{/$ctm $ctm currentmatrix def}bd/@E{/Bbury xd/Bburx xd -/Bblly xd/Bbllx xd}bd/@c{@cp}bd/@p{/$fil 1 def 1 eq dup/$vectpat xd{/$pfrg true -def}{@gs $t $c $m $y $k $n $o @scc/$pfrg xd @gr}ifelse/$pm xd/$psy xd/$psx xd -/$pyf xd/$pxf xd/$pn xd}bd/@P{/$fil 3 def/$Psn xd array astore/$Prm xd}bd/@k{ -/$fil 2 def/$roy xd/$rox xd/$pad xd/$fty xd/$fan xd $fty 1 eq{/$fan 0 def}if -/$frb xd/$fst xd/$fsc xd/$fsa xd/$fsit 0 def}bd/@x{/$fil 2 def/$roy xd/$rox xd -/$pad xd/$fty xd/$fan xd $fty 1 eq{/$fan 0 def}if/$frb xd/$fst xd/$fsc xd/$fsa -xd/$fsit 1 def}bd/@ii{concat 3 index 3 index m 3 index 1 index l 2 copy l 1 -index 3 index l 3 index 3 index l clip 4 rp}bd/tcc{@cc}def/@i{@sm @gs @ii 6 -index 1 ne{/$frg true def 2 rp}{1 eq{s1t s1c s1m s1y s1k s1n $O @scc/$frg xd}{ -/$frg false def}ifelse 1 eq{@gs $ctm setmatrix F @gr}if}ifelse @np/$ury xd -/$urx xd/$lly xd/$llx xd/$bts xd/$hei xd/$wid xd/$dat $wid $bts mul 8 div -ceiling cvi string def $bkg $frg or{$SDF{$SCF $SCA $SCP @ss}if $llx $lly Tl -$urx $llx sub $ury $lly sub scale $bkg{$t $c $m $y $k $n $o @scc pop}if $wid -$hei abs $bts 1 eq{$bkg}{$bts}ifelse[$wid 0 0 $hei neg 0 $hei 0 -gt{$hei}{0}ifelse]/tcc load $bts 1 eq{imagemask}{image}ifelse $SDF{$dsf $dsa -$dsp @ss}if}{$hei abs{tcc pop}repeat}ifelse @gr $ctm setmatrix}bd/@M{@sv}bd/@N -{/@cc{}def 1 eq{12 -1 roll neg 12 1 roll @I}{13 -1 roll neg 13 1 roll @i} -ifelse @rs}bd/@I{@sm @gs @ii @np/$ury xd/$urx xd/$lly xd/$llx xd/$ncl xd/$bts -xd/$hei xd/$wid xd/$dat $wid $bts mul $ncl mul 8 div ceiling cvi string def -$ngx $llx $lly Tl $urx $llx sub $ury $lly sub scale $wid $hei abs $bts[$wid 0 0 -$hei neg 0 $hei 0 gt{$hei}{0}ifelse]/@cc load false $ncl ColorImage $SDF{$dsf -$dsa $dsp @ss}if @gr $ctm setmatrix}bd/z{exch findfont exch scalefont setfont} -bd/ZB{9 dict dup begin 4 1 roll/FontType 3 def/FontMatrix xd/FontBBox xd -/Encoding 256 array def 0 1 255{Encoding exch/.notdef put}for/CharStrings 256 -dict def CharStrings/.notdef{}put/Metrics 256 dict def Metrics/.notdef 3 -1 -roll put/BuildChar{exch dup/$char exch/Encoding get 3 index get def dup -/Metrics get $char get aload pop setcachedevice begin Encoding exch get -CharStrings exch get end exec}def end definefont pop}bd/ZBAddChar{findfont -begin dup 4 1 roll dup 6 1 roll Encoding 3 1 roll put CharStrings 3 1 roll put -Metrics 3 1 roll put end}bd/Z{findfont dup maxlength 2 add dict exch dup{1 -index/FID ne{3 index 3 1 roll put}{2 rp}ifelse}forall pop dup dup/Encoding get -256 array copy dup/$fe xd/Encoding exch put dup/Fontname 3 index put 3 -1 roll -dup length 0 ne{0 exch{dup type 0 type eq{exch pop}{$fe exch 2 index exch put 1 -add}ifelse}forall pop}if dup 256 dict dup/$met xd/Metrics exch put dup -/FontMatrix get 0 get 1000 mul 1 exch div 3 index length 256 eq{0 1 255{dup $fe -exch get dup/.notdef eq{2 rp}{5 index 3 -1 roll get 2 index mul $met 3 1 roll -put}ifelse}for}if pop definefont pop pop}bd/@ftx{{currentpoint 3 -1 roll(0)dup -3 -1 roll 0 exch put dup @gs true charpath $ctm setmatrix @@txt @gr @np -stringwidth pop 3 -1 roll add exch moveto}forall}bd/@ft{matrix currentmatrix -exch $sdf{$scf $sca $scp @ss}if $fil 1 eq{/@@txt/@pf ld @ftx}{$fil 2 eq{/@@txt -/@ff ld @ftx}{$fil 3 eq{/@@txt/@Pf ld @ftx}{$t $c $m $y $k $n $o @scc{show} -{pop}ifelse}ifelse}ifelse}ifelse $sdf{$dsf $dsa $dsp @ss}if setmatrix}bd/@st{ -matrix currentmatrix exch $SDF{$SCF $SCA $SCP @ss}if $T $C $M $Y $K $N $O @scc -{{currentpoint 3 -1 roll(0)dup 3 -1 roll 0 exch put dup @gs true charpath $ctm -setmatrix $ptm concat stroke @gr @np stringwidth pop 3 -1 roll add exch moveto -}forall}{pop}ifelse $SDF{$dsf $dsa $dsp @ss}if setmatrix}bd/@te{@ft}bd/@tr{@st -}bd/@ta{dup @gs @ft @gr @st}bd/@t@a{dup @gs @st @gr @ft}bd/@tm{@sm concat}bd/e -{/t{@te}def}bd/r{/t{@tr}def}bd/o{/t{pop}def}bd/a{/t{@ta}def}bd/@a{/t{@t@a}def} -bd/t{@te}def/T{@np $ctm setmatrix/$ttm matrix def}bd/ddt{t}def/@t{/$stm $stm -currentmatrix def 3 1 roll moveto $ttm concat ddt $stm setmatrix}bd/@n{/$ttm -exch matrix rotate def}bd/@s{}bd/@l{}bd/@B{@gs S @gr F}bd/@b{@cp @B}bd/@sep{ -CurrentInkName(Composite)eq{/$ink -1 def}{CurrentInkName(Cyan)eq{/$ink 0 def}{ -CurrentInkName(Magenta)eq{/$ink 1 def}{CurrentInkName(Yellow)eq{/$ink 2 def}{ -CurrentInkName(Black)eq{/$ink 3 def}{/$ink 4 def}ifelse}ifelse}ifelse}ifelse} -ifelse}bd/@whi{@gs -72000 dup moveto -72000 72000 lineto 72000 dup lineto 72000 --72000 lineto @cp 1 SetGry fill @gr}bd/@neg{[{1 exch sub}/exec cvx -currenttransfer/exec cvx]cvx settransfer @whi}bd/currentscale{1 0 dtransform -matrix defaultmatrix idtransform dup mul exch dup mul add sqrt 0 1 dtransform -matrix defaultmatrix idtransform dup mul exch dup mul add sqrt}bd/@unscale{ -currentscale 1 exch div exch 1 exch div exch scale}bd/@square{dup 0 rlineto dup -0 exch rlineto neg 0 rlineto @cp}bd/corelsym{@gs @np Tl -90 rotate 7{45 rotate --.75 2 moveto 1.5 @square fill}repeat @gr}bd/@reg Corelreg{{@gs @np Tl -6 -6 -moveto 12 @square @gs 1 GetGry sub SetGry fill @gr 4{90 rotate 0 4 m 0 4 rl} -repeat stroke 0 0 corelsym @gr}bd}{{@gs @np Tl .3 setlinewidth 0 0 5 0 360 arc -@cp @gs 1 GetGry sub SetGry fill @gr 4{90 rotate 0 0 m 0 8 rl}repeat stroke @gr -}bd}ifelse/$corelmeter[1 .95 .75 .50 .25 .05 0]def/@colormeter{@gs @np 0 SetGry -0.3 setlinewidth/Courier findfont 5 scalefont setfont/yy xd/xx xd 0 1 6{xx 20 -sub yy m 20 @square @gs $corelmeter exch get dup SetGry fill @gr stroke xx 2 -add yy 8 add moveto 100 mul 100 exch sub cvi 20 string cvs show/yy yy 20 add -def}for @gr}bd/@crop{@gs .3 setlinewidth 0 SetGry Tl rotate 0 0 m 0 -24 rl -4 --24 m 8 @square -4 -20 m 8 0 rl stroke @gr}bd/@colorbox{@gs @np Tl 100 exch sub -100 div SetGry -8 -8 moveto 16 @square fill 0 SetGry 10 -2 moveto show @gr}bd -/deflevel 0 def/@sax{/deflevel deflevel 1 add def}bd/@eax{/deflevel deflevel -dup 0 gt{1 sub}if def deflevel 0 gt{/eax load}{eax}ifelse}bd/eax{{exec}forall} -bd/@rax{deflevel 0 eq{@rs @sv}if}bd/@daq{dup type/arraytype eq{{}forall}if}bd -/@BMP{/@cc xd 11 index 1 eq{12 -1 roll pop @i}{7 -2 roll 2 rp @I}ifelse}bd end - -%%EndProlog -wCorel4Dict begin -%%BeginSetup -11.4737 setmiterlimit -1.00 setflat -/$fst 20 def -%%EndSetup - -%StartPage -@sv -/$ctm matrix currentmatrix def -@sv -%StartColorLayer (COMPOSITE) -%StartTile -/$ctm matrix currentmatrix def -@sv @sv -@rax %%Note: Object -2152.08 2368.22 2152.37 2593.22 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2152.22 2593.22 m -2152.22 2368.22 L -S - -@rax %%Note: Object -2242.08 2413.22 2242.37 2593.22 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2242.22 2593.22 m -2242.22 2413.22 L -S - -@rax %%Note: Object -2431.08 2413.22 2431.37 2593.22 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2431.22 2593.22 m -2431.22 2413.22 L -S - -@rax %%Note: Object -2152.30 2368.22 2467.22 2593.22 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2467.22 2593.22 m -2467.22 2368.22 L -2152.30 2368.30 L -S - -@rax %%Note: Object -2242.22 2413.08 2431.22 2413.37 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2242.22 2413.22 m -2431.22 2413.22 L -S - -@rax %%Note: Object -2152.22 2584.22 2242.22 2602.22 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2197.22 2602.22 m -2221.99 2602.22 2242.22 2598.19 2242.22 2593.22 c -2242.22 2588.26 2221.99 2584.22 2197.22 2584.22 c -2172.46 2584.22 2152.22 2588.26 2152.22 2593.22 c -2152.22 2598.19 2172.46 2602.22 2197.22 2602.22 c -@c -S - -@rax %%Note: Object -2431.22 2584.22 2467.22 2593.22 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2449.22 2593.22 m -2459.16 2593.22 2467.22 2591.14 2467.22 2588.69 c -2467.22 2586.24 2459.16 2584.22 2449.22 2584.22 c -2439.29 2584.22 2431.22 2586.24 2431.22 2588.69 c -2431.22 2591.14 2439.29 2593.22 2449.22 2593.22 c -@c -S - -@rax %%Note: Object -2431.22 2512.22 2467.22 2521.22 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2449.22 2521.22 m -2459.16 2521.22 2467.22 2519.14 2467.22 2516.69 c -2467.22 2514.24 2459.16 2512.22 2449.22 2512.22 c -2439.29 2512.22 2431.22 2514.24 2431.22 2516.69 c -2431.22 2519.14 2439.29 2521.22 2449.22 2521.22 c -@c -S - -@rax %%Note: Object -2152.22 2512.22 2242.22 2530.22 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2197.22 2530.22 m -2221.99 2530.22 2242.22 2526.19 2242.22 2521.22 c -2242.22 2516.26 2221.99 2512.22 2197.22 2512.22 c -2172.46 2512.22 2152.22 2516.26 2152.22 2521.22 c -2152.22 2526.19 2172.46 2530.22 2197.22 2530.22 c -@c -S - -@rax %%Note: Object -2152.22 2494.22 2242.22 2512.22 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2242.22 2503.30 m -2242.22 2503.30 2242.22 2503.22 2242.22 2503.22 c -2242.22 2498.26 2221.99 2494.22 2197.22 2494.22 c -2172.46 2494.22 2152.22 2498.26 2152.22 2503.22 c -2152.22 2503.22 2152.22 2503.30 2152.22 2503.30 C -S - -@rax %%Note: Object -2431.22 2503.22 2467.22 2512.22 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2462.11 2504.52 m -2458.80 2503.73 2453.98 2503.22 2449.22 2503.22 c -2444.47 2503.22 2439.72 2503.66 2436.41 2504.52 C -S - -@rax %%Note: Object -2461.97 2504.52 2467.08 2507.04 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2461.97 2504.52 m -2462.26 2504.52 L -2462.33 2504.59 L -2462.33 2504.66 L -2462.40 2504.74 L -2462.62 2504.74 L -2462.62 2504.81 L -2462.83 2504.81 L -2462.83 2504.88 L -2462.90 2504.88 2463.19 2504.88 2463.19 2505.02 C -2463.26 2505.02 2463.48 2505.02 2463.48 2505.10 C -2463.70 2505.10 L -2463.70 2505.24 2463.77 2505.10 2463.77 2505.24 C -2463.84 2505.24 2464.34 2505.38 2464.34 2505.46 C -2464.56 2505.46 L -2464.56 2505.60 2464.63 2505.53 2464.70 2505.53 C -2464.70 2505.60 L -2464.78 2505.60 2464.92 2505.53 2464.92 2505.67 C -2465.14 2505.67 L -2465.21 2505.74 2465.71 2505.96 2465.71 2506.03 C -2465.78 2506.03 2466.00 2506.10 2466.00 2506.18 C -2466.22 2506.18 L -2466.22 2506.25 2466.29 2506.32 2466.29 2506.39 C -2466.36 2506.39 2466.50 2506.39 2466.50 2506.54 C -2466.58 2506.54 2466.65 2506.61 2466.72 2506.61 C -2466.79 2506.68 L -2466.72 2506.61 2466.79 2506.68 2466.79 2506.82 C -2466.86 2506.90 L -2466.79 2506.82 2466.86 2506.90 2467.01 2506.90 C -2467.01 2507.04 2467.08 2506.90 2467.08 2507.04 C -S - -@rax %%Note: Object -2430.94 2504.52 2436.41 2507.40 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 0.216 0.216 0.000 @w -2436.41 2504.52 m -2436.05 2504.74 2435.47 2504.81 2435.04 2504.81 C -2435.04 2505.02 2434.68 2504.95 2434.68 2505.10 C -2434.46 2505.10 L -2434.39 2505.17 L -2434.32 2505.31 L -2434.25 2505.31 2433.74 2505.53 2433.74 2505.60 C -2433.60 2505.60 2432.30 2506.03 2432.30 2506.18 C -2432.09 2506.18 2431.87 2506.39 2431.80 2506.54 C -2431.73 2506.54 L -2431.73 2506.54 2431.73 2506.68 2431.58 2506.68 C -2431.51 2506.75 L -2431.51 2506.82 2431.44 2506.90 2431.44 2506.97 C -2431.51 2506.82 2431.44 2506.90 2431.30 2506.97 C -2431.22 2507.04 L -2431.22 2507.11 2431.08 2507.26 2431.01 2507.26 C -2431.01 2507.40 2430.94 2507.26 2430.94 2507.40 C -S - -@rax 2476.22 2482.20 2567.23 2495.23 @E -[0.07199 0.00000 0.00000 0.07199 2476.22388 2485.22388] @tm - 0 O 0 @g -0.00 0.00 0.00 1.00 k -e - -% FontChange:/_R7106-BookmanOldStyle 194.00 z -% CHAR: 0 0 (S) @t -107 132 m -118 88 L -101 83 L -95 93 88 101 81 106 c -73 111 65 113 57 113 c -51 113 47 112 44 110 c -41 108 39 105 39 103 c -39 100 41 97 44 94 c -46 91 52 89 59 87 c -84 79 l -98 75 109 70 115 63 c -120 57 123 49 123 40 c -123 28 119 19 110 11 c -100 2 87 -2 72 -2 c -65 -2 58 -1 52 0 c -47 2 40 5 34 9 C -30 0 L -16 0 L -7 51 L -24 56 L -28 45 35 36 44 29 c -52 22 62 19 73 19 c -77 19 81 20 84 21 c -88 22 90 24 92 26 c -93 28 94 30 94 32 c -94 36 92 40 88 42 c -85 45 78 48 69 50 c -47 57 l -44 58 39 59 33 62 c -28 65 23 67 20 70 c -17 73 14 77 13 81 c -11 86 9 90 9 95 c -9 102 11 109 15 115 c -19 120 25 125 33 129 c -40 133 49 134 59 134 c -70 134 80 131 90 126 C -93 132 L -107 132 L -@c - F % CHAR: 128 0 (m) @t -178 97 m -178 84 L -184 88 189 92 195 94 c -201 96 207 97 212 97 c -216 97 220 96 223 95 c -227 94 229 93 232 91 c -234 89 236 87 238 84 C -244 88 250 92 256 94 c -261 96 267 97 273 97 c -278 97 282 96 287 94 c -291 92 294 90 297 87 c -299 84 301 80 302 76 c -302 74 302 71 302 66 c -302 27 l -302 24 303 22 303 21 c -303 20 304 19 305 19 c -306 18 309 18 312 18 c -317 18 L -317 0 L -261 0 L -261 18 L -265 18 268 18 269 19 c -270 19 271 20 271 21 c -272 22 272 24 272 27 c -272 61 l -272 65 272 68 271 69 c -271 70 270 72 268 73 c -267 74 265 74 263 74 c -260 74 257 73 255 72 c -252 71 247 69 242 65 C -242 28 l -242 24 242 22 243 21 c -243 20 244 19 245 19 c -246 19 249 18 253 18 C -253 0 L -201 0 L -201 18 L -205 18 208 19 209 19 c -210 19 211 20 211 21 c -211 22 212 24 212 28 c -212 60 l -212 65 211 69 210 70 c -209 73 206 74 203 74 c -201 74 199 74 197 73 c -195 73 193 72 192 71 c -191 71 188 69 184 66 c -182 65 L -182 28 l -182 24 182 22 182 21 c -183 20 183 20 184 19 c -185 19 187 18 190 18 c -193 18 L -193 0 L -137 0 L -137 18 L -141 18 l -145 18 147 18 148 19 c -149 19 150 20 151 21 c -151 22 151 24 151 28 c -151 71 L -137 71 L -137 89 L -149 90 160 93 169 97 C -178 97 L -@c - F % CHAR: 322 0 (a) @t -387 57 m -387 64 l -387 68 386 71 385 73 c -385 74 383 76 382 77 c -380 78 378 78 375 78 c -373 78 371 78 369 77 c -367 77 366 76 365 75 c -364 74 363 72 362 68 c -360 65 358 62 356 60 c -353 58 350 57 347 57 c -343 57 340 59 337 61 c -335 64 333 67 333 71 c -333 75 335 79 337 82 c -341 86 346 90 353 93 c -360 95 368 97 377 97 c -385 97 393 95 399 93 c -405 90 410 86 412 82 c -414 78 416 72 416 64 c -416 30 l -416 26 416 24 416 22 c -417 21 418 20 419 19 c -421 18 422 18 424 18 c -426 18 428 19 431 20 C -431 1 L -426 -1 421 -2 416 -2 c -410 -2 405 -1 401 1 c -397 3 393 6 390 10 C -384 6 378 3 373 1 c -368 -1 363 -2 358 -2 c -349 -2 342 1 336 6 c -331 11 328 18 328 25 c -328 29 329 33 331 37 c -333 40 336 43 340 46 c -343 49 349 51 357 53 c -365 55 375 56 387 57 C -@c -387 42 m -378 40 372 39 369 38 c -366 37 363 35 362 33 c -360 31 360 29 360 28 c -360 25 360 23 362 21 c -364 20 367 19 370 19 c -372 19 375 19 377 20 c -380 21 383 23 387 25 C -387 42 L -@c - F % CHAR: 435 0 (l) @t -485 139 m -485 28 l -485 25 485 22 485 22 c -485 20 487 19 488 19 c -489 18 492 18 496 18 c -499 18 L -499 0 L -440 0 L -440 18 L -444 18 l -448 18 450 19 451 19 c -452 19 453 20 454 21 c -454 22 454 25 454 28 c -454 113 L -440 113 L -440 131 L -452 132 463 135 475 139 C -485 139 L -@c - F % CHAR: 501 0 (l) @t -551 139 m -551 28 l -551 25 551 22 551 22 c -551 20 553 19 554 19 c -555 18 558 18 562 18 c -565 18 L -565 0 L -506 0 L -506 18 L -510 18 l -514 18 516 19 517 19 c -518 19 519 20 520 21 c -520 22 520 25 520 28 c -520 113 L -506 113 L -506 131 L -518 132 529 135 541 139 C -551 139 L -@c - F % CHAR: 633 0 (p) @t -681 97 m -681 86 L -688 91 694 94 698 95 c -701 96 705 97 710 97 c -721 97 730 93 737 85 c -745 75 749 63 749 49 c -749 35 745 23 738 14 c -730 3 720 -2 706 -2 c -702 -2 698 -2 695 -1 c -692 0 688 2 685 5 C -685 -14 l -685 -18 685 -21 685 -21 c -685 -22 686 -23 687 -23 c -688 -24 691 -24 695 -24 c -699 -24 L -699 -42 L -640 -42 L -640 -24 L -643 -24 l -648 -24 650 -24 651 -23 c -652 -23 653 -22 653 -21 c -654 -20 654 -18 654 -14 c -654 70 L -640 70 L -640 89 L -647 90 653 91 658 92 c -662 93 667 95 672 97 C -681 97 L -@c -685 67 m -685 36 l -685 32 685 28 686 26 c -687 24 688 22 691 21 c -693 20 696 19 698 19 c -703 19 708 21 711 26 c -714 31 716 38 716 48 c -716 57 715 63 712 68 c -709 72 705 74 701 74 c -696 74 690 72 685 67 C -@c - F % CHAR: 757 0 (i) @t -793 139 m -798 139 802 137 806 134 c -809 131 811 126 811 122 c -811 117 809 113 806 109 c -802 106 798 104 793 104 c -789 104 784 106 781 109 c -778 113 776 117 776 122 c -776 126 778 130 781 134 c -785 137 789 139 793 139 c -@c -809 97 m -809 27 l -809 23 809 21 809 21 c -810 20 810 19 811 19 c -812 19 814 18 818 18 c -823 18 L -823 0 L -764 0 L -764 18 L -770 18 l -773 18 775 18 776 19 c -777 19 777 20 778 21 c -778 21 779 23 779 25 c -779 71 L -764 71 L -764 88 L -769 89 774 89 779 90 c -783 91 788 92 791 93 c -793 94 796 95 800 97 C -809 97 L -@c - F % CHAR: 827 0 (s) @t -899 95 m -911 95 L -919 68 L -901 61 L -897 66 893 71 888 74 c -883 77 878 79 873 79 c -869 79 867 78 865 77 c -863 76 863 74 863 73 c -863 72 863 70 864 69 c -865 68 868 67 872 66 c -898 56 l -902 55 907 53 911 50 c -915 48 918 45 920 41 c -922 38 924 33 924 29 c -924 20 920 13 914 7 c -906 1 896 -2 885 -2 c -875 -2 867 0 859 5 C -857 0 L -844 0 L -832 31 L -850 39 L -855 32 860 26 867 22 c -873 18 879 16 885 16 c -888 16 891 17 893 18 c -895 20 896 21 896 23 c -896 24 895 26 894 27 c -893 28 890 30 885 32 c -864 39 l -853 43 845 47 841 51 c -837 56 835 61 835 67 c -835 75 838 82 845 88 c -852 94 861 97 872 97 c -881 97 889 95 896 90 C -899 95 L -@c - F % CHAR: 928 0 (t) @t -978 127 m -978 95 L -1008 95 L -1008 74 L -978 74 L -978 41 l -978 34 978 29 979 27 c -980 25 981 23 983 22 c -986 20 990 19 993 19 c -1000 19 1006 22 1013 26 C -1013 5 L -1007 3 1002 1 998 0 c -993 -1 988 -2 983 -2 c -977 -2 972 -1 968 1 c -963 2 959 4 956 7 c -953 10 951 13 950 16 c -948 19 948 23 948 29 c -948 74 L -933 74 L -933 93 L -938 94 943 97 946 100 c -950 103 953 106 955 111 c -957 115 959 120 960 127 C -978 127 L -@c - F % CHAR: 1017 0 (o) @t -1077 97 m -1088 97 1097 95 1105 90 c -1113 86 1119 80 1124 73 c -1128 66 1130 57 1130 48 c -1130 33 1125 21 1116 12 c -1106 2 1093 -2 1077 -2 c -1061 -2 1048 2 1038 12 c -1029 20 1024 32 1024 48 c -1024 57 1026 66 1031 73 c -1035 80 1041 86 1049 90 c -1057 95 1066 97 1077 97 c -@c -1077 76 m -1074 76 1070 75 1067 73 c -1064 71 1062 68 1060 63 c -1058 59 1057 54 1057 47 c -1057 41 1058 35 1060 31 c -1061 27 1064 23 1067 21 c -1070 19 1073 18 1077 18 c -1082 18 1087 21 1091 25 c -1095 30 1097 37 1097 47 c -1097 57 1095 64 1091 69 c -1088 74 1083 76 1077 76 c -@c - F % CHAR: 1137 0 (n) @t -1186 97 m -1186 84 L -1193 89 1200 92 1205 94 c -1210 96 1215 97 1220 97 c -1226 97 1232 95 1236 93 c -1241 90 1245 87 1247 83 c -1249 79 1250 74 1250 67 c -1250 27 l -1250 24 1250 22 1251 21 c -1251 20 1252 19 1253 19 c -1254 18 1256 18 1260 18 c -1264 18 L -1264 0 L -1209 0 L -1209 18 L -1213 18 1215 18 1216 19 c -1217 19 1218 20 1219 21 c -1219 22 1220 24 1220 27 c -1220 62 l -1220 66 1219 69 1218 71 c -1217 73 1214 74 1211 74 c -1208 74 1205 73 1202 72 c -1199 71 1195 68 1190 65 C -1190 27 l -1190 23 1190 21 1191 20 c -1192 19 1194 18 1198 18 c -1201 18 L -1201 0 L -1146 0 L -1146 18 L -1148 18 l -1153 18 1155 18 1156 19 c -1157 19 1158 20 1159 21 c -1159 22 1160 24 1160 26 c -1160 70 L -1146 70 L -1146 89 L -1157 90 1168 93 1177 97 C -1186 97 L -@c - F T -@rax 2251.22 2500.13 2341.15 2513.23 @E -[0.07199 0.00000 0.00000 0.07199 2251.22388 2503.22388] @tm - 0 O 0 @g -0.00 0.00 0.00 1.00 k -e - -% FontChange:/_R7106-BookmanOldStyle 194.00 z -% CHAR: 0 0 (L) @t -8 132 m -72 132 L -72 114 L -67 114 l -64 114 61 114 61 113 c -59 113 58 112 57 111 c -57 109 56 107 56 104 c -56 29 l -56 26 57 24 57 23 c -57 23 58 22 59 22 c -59 21 61 21 64 21 c -72 21 79 22 84 24 c -89 26 94 30 98 35 c -102 40 106 47 109 55 C -126 49 L -109 0 L -8 0 L -8 18 L -14 18 l -17 18 19 19 20 19 c -21 20 22 21 23 22 c -23 23 24 25 24 28 c -24 103 l -24 106 23 109 23 110 c -22 111 21 112 20 113 c -19 113 17 114 15 114 c -8 114 L -8 132 L -@c - F % CHAR: 124 0 (a) @t -189 57 m -189 64 l -189 68 188 71 187 73 c -187 74 185 76 184 77 c -182 78 180 78 177 78 c -175 78 173 78 171 77 c -169 77 168 76 167 75 c -166 74 165 72 164 68 c -162 65 160 62 158 60 c -155 58 152 57 149 57 c -145 57 142 59 139 61 c -137 64 135 67 135 71 c -135 75 137 79 139 82 c -143 86 148 90 155 93 c -162 95 170 97 179 97 c -187 97 195 95 201 93 c -207 90 212 86 214 82 c -216 78 218 72 218 64 c -218 30 l -218 26 218 24 218 22 c -219 21 220 20 221 19 c -223 18 224 18 226 18 c -228 18 230 19 233 20 C -233 1 L -228 -1 223 -2 218 -2 c -212 -2 207 -1 203 1 c -199 3 195 6 192 10 C -186 6 180 3 175 1 c -170 -1 165 -2 160 -2 c -151 -2 144 1 138 6 c -133 11 130 18 130 25 c -130 29 131 33 133 37 c -135 40 138 43 142 46 c -145 49 151 51 159 53 c -167 55 177 56 189 57 C -@c -189 42 m -180 40 174 39 171 38 c -168 37 165 35 164 33 c -162 31 162 29 162 28 c -162 25 162 23 164 21 c -166 20 169 19 172 19 c -174 19 177 19 179 20 c -182 21 185 23 189 25 C -189 42 L -@c - F % CHAR: 237 0 (r) @t -286 97 m -286 83 L -291 88 296 92 299 94 c -303 96 307 97 310 97 c -313 97 316 96 318 95 c -321 93 323 91 324 89 c -325 86 326 83 326 80 c -326 76 325 72 322 69 c -320 66 316 64 311 64 c -310 64 309 65 308 65 c -307 65 305 66 302 67 c -300 67 299 67 298 67 c -296 67 293 66 289 64 C -289 27 l -289 24 290 22 290 21 c -291 20 291 19 292 19 c -293 19 296 18 299 18 c -304 18 L -304 0 L -245 0 L -245 18 L -250 18 l -253 18 256 18 256 19 c -257 19 258 20 258 21 c -259 22 259 24 259 27 c -259 71 L -245 71 L -245 89 L -255 89 266 92 277 97 C -286 97 L -@c - F % CHAR: 326 0 (g) @t -406 89 m -410 94 413 97 416 99 c -420 101 423 102 427 102 c -431 102 434 101 436 99 c -438 97 439 94 439 90 c -439 87 438 85 436 83 c -434 81 431 80 428 80 c -425 80 L -422 80 l -420 80 418 79 417 78 C -420 72 422 67 422 61 c -422 56 420 50 417 45 c -413 40 409 36 403 33 c -396 30 389 29 381 29 c -378 29 376 29 373 29 c -371 29 368 30 366 30 C -364 29 363 28 362 27 c -361 26 360 25 360 24 c -360 22 362 21 366 21 c -406 15 l -417 13 426 10 431 6 c -436 1 439 -5 439 -11 c -439 -17 437 -22 433 -27 c -429 -32 423 -36 414 -39 c -405 -42 394 -43 380 -43 c -368 -43 358 -42 351 -40 c -343 -38 337 -35 334 -31 c -331 -28 329 -24 329 -21 c -329 -18 330 -14 333 -12 c -335 -9 340 -5 348 -2 C -343 0 340 2 337 5 c -334 8 333 11 333 15 c -333 19 334 22 337 26 c -340 30 344 33 350 37 C -347 39 344 41 343 43 c -341 46 339 49 338 52 c -337 56 336 59 336 63 c -336 72 340 80 348 87 c -356 93 366 97 378 97 c -384 97 389 96 394 95 c -398 93 403 92 406 89 C -406 89 L -@c -379 79 m -375 79 372 77 369 74 c -367 71 365 67 365 62 c -365 57 367 54 369 51 c -372 48 375 47 379 47 c -383 47 386 48 389 51 c -391 54 393 58 393 62 c -393 67 391 71 389 74 c -387 77 383 79 379 79 c -@c -366 -6 m -362 -9 360 -11 359 -12 c -358 -13 358 -15 358 -17 c -358 -20 360 -22 365 -24 c -370 -25 377 -26 385 -26 c -391 -26 396 -26 400 -25 c -404 -24 407 -23 409 -21 c -410 -20 410 -19 410 -17 c -410 -16 409 -14 407 -13 c -406 -12 401 -10 394 -10 c -366 -6 L -@c - F % CHAR: 439 0 (e) @t -532 35 m -545 22 L -538 13 530 7 522 4 c -514 0 506 -2 497 -2 c -483 -2 471 3 461 12 c -451 22 446 34 446 48 c -446 57 448 65 453 73 c -457 80 463 86 471 90 c -479 95 488 97 498 97 c -504 97 510 96 515 94 c -520 92 525 90 528 86 c -532 83 535 79 538 74 c -540 69 542 64 543 59 c -543 56 543 52 543 47 C -479 47 L -480 39 482 32 486 27 c -491 22 497 20 503 20 c -507 20 512 21 517 23 c -522 26 527 30 532 35 C -@c -513 63 m -513 66 512 69 510 71 c -509 74 507 75 505 77 c -502 78 500 79 497 79 c -495 79 492 78 490 77 c -487 75 485 74 484 71 c -482 69 481 66 481 63 C -513 63 L -@c - F % CHAR: 618 0 (p) @t -666 97 m -666 86 L -673 91 679 94 683 95 c -686 96 690 97 695 97 c -706 97 715 93 722 85 c -730 75 734 63 734 49 c -734 35 730 23 723 14 c -715 3 705 -2 691 -2 c -687 -2 683 -2 680 -1 c -677 0 673 2 670 5 C -670 -14 l -670 -18 670 -21 670 -21 c -670 -22 671 -23 672 -23 c -673 -24 676 -24 680 -24 c -684 -24 L -684 -42 L -625 -42 L -625 -24 L -628 -24 l -633 -24 635 -24 636 -23 c -637 -23 638 -22 638 -21 c -639 -20 639 -18 639 -14 c -639 70 L -625 70 L -625 89 L -632 90 638 91 643 92 c -647 93 652 95 657 97 C -666 97 L -@c -670 67 m -670 36 l -670 32 670 28 671 26 c -672 24 673 22 676 21 c -678 20 681 19 683 19 c -688 19 693 21 696 26 c -699 31 701 38 701 48 c -701 57 700 63 697 68 c -694 72 690 74 686 74 c -681 74 675 72 670 67 C -@c - F % CHAR: 742 0 (i) @t -778 139 m -783 139 787 137 791 134 c -794 131 796 126 796 122 c -796 117 794 113 791 109 c -787 106 783 104 778 104 c -774 104 769 106 766 109 c -763 113 761 117 761 122 c -761 126 763 130 766 134 c -770 137 774 139 778 139 c -@c -794 97 m -794 27 l -794 23 794 21 794 21 c -795 20 795 19 796 19 c -797 19 799 18 803 18 c -808 18 L -808 0 L -749 0 L -749 18 L -755 18 l -758 18 760 18 761 19 c -762 19 762 20 763 21 c -763 21 764 23 764 25 c -764 71 L -749 71 L -749 88 L -754 89 759 89 764 90 c -768 91 773 92 776 93 c -778 94 781 95 785 97 C -794 97 L -@c - F % CHAR: 812 0 (s) @t -884 95 m -896 95 L -904 68 L -886 61 L -882 66 878 71 873 74 c -868 77 863 79 858 79 c -854 79 852 78 850 77 c -848 76 848 74 848 73 c -848 72 848 70 849 69 c -850 68 853 67 857 66 c -883 56 l -887 55 892 53 896 50 c -900 48 903 45 905 41 c -907 38 909 33 909 29 c -909 20 905 13 899 7 c -891 1 881 -2 870 -2 c -860 -2 852 0 844 5 C -842 0 L -829 0 L -817 31 L -835 39 L -840 32 845 26 852 22 c -858 18 864 16 870 16 c -873 16 876 17 878 18 c -880 20 881 21 881 23 c -881 24 880 26 879 27 c -878 28 875 30 870 32 c -849 39 l -838 43 830 47 826 51 c -822 56 820 61 820 67 c -820 75 823 82 830 88 c -837 94 846 97 857 97 c -866 97 874 95 881 90 C -884 95 L -@c - F % CHAR: 913 0 (t) @t -963 127 m -963 95 L -993 95 L -993 74 L -963 74 L -963 41 l -963 34 963 29 964 27 c -965 25 966 23 968 22 c -971 20 975 19 978 19 c -985 19 991 22 998 26 C -998 5 L -992 3 987 1 983 0 c -978 -1 973 -2 968 -2 c -962 -2 957 -1 953 1 c -948 2 944 4 941 7 c -938 10 936 13 935 16 c -933 19 933 23 933 29 c -933 74 L -918 74 L -918 93 L -923 94 928 97 931 100 c -935 103 938 106 940 111 c -942 115 944 120 945 127 C -963 127 L -@c - F % CHAR: 1002 0 (o) @t -1062 97 m -1073 97 1082 95 1090 90 c -1098 86 1104 80 1109 73 c -1113 66 1115 57 1115 48 c -1115 33 1110 21 1101 12 c -1091 2 1078 -2 1062 -2 c -1046 -2 1033 2 1023 12 c -1014 20 1009 32 1009 48 c -1009 57 1011 66 1016 73 c -1020 80 1026 86 1034 90 c -1042 95 1051 97 1062 97 c -@c -1062 76 m -1059 76 1055 75 1052 73 c -1049 71 1047 68 1045 63 c -1043 59 1042 54 1042 47 c -1042 41 1043 35 1045 31 c -1046 27 1049 23 1052 21 c -1055 19 1058 18 1062 18 c -1067 18 1072 21 1076 25 c -1080 30 1082 37 1082 47 c -1082 57 1080 64 1076 69 c -1073 74 1068 76 1062 76 c -@c - F % CHAR: 1122 0 (n) @t -1171 97 m -1171 84 L -1178 89 1185 92 1190 94 c -1195 96 1200 97 1205 97 c -1211 97 1217 95 1221 93 c -1226 90 1230 87 1232 83 c -1234 79 1235 74 1235 67 c -1235 27 l -1235 24 1235 22 1236 21 c -1236 20 1237 19 1238 19 c -1239 18 1241 18 1245 18 c -1249 18 L -1249 0 L -1194 0 L -1194 18 L -1198 18 1200 18 1201 19 c -1202 19 1203 20 1204 21 c -1204 22 1205 24 1205 27 c -1205 62 l -1205 66 1204 69 1203 71 c -1202 73 1199 74 1196 74 c -1193 74 1190 73 1187 72 c -1184 71 1180 68 1175 65 C -1175 27 l -1175 23 1175 21 1176 20 c -1177 19 1179 18 1183 18 c -1186 18 L -1186 0 L -1131 0 L -1131 18 L -1133 18 l -1138 18 1140 18 1141 19 c -1142 19 1143 20 1144 21 c -1144 22 1145 24 1145 26 c -1145 70 L -1131 70 L -1131 89 L -1142 90 1153 93 1162 97 C -1171 97 L -@c - F T -@rax 2197.22 2639.81 2243.38 2663.57 @E -[0.07199 0.00000 0.00000 0.07199 2197.22388 2647.22388] @tm - 0 O 0 @g -0.00 0.00 0.00 1.00 k -e - -% FontChange:/_R7106-BookmanOldStyle 333.00 z -% CHAR: 0 0 (F) @t -13 227 m -200 227 L -226 154 L -197 144 L -192 155 187 163 183 168 c -179 173 173 178 168 181 c -162 185 155 187 148 189 c -144 189 135 190 124 190 c -96 190 L -96 130 L -110 130 l -115 130 120 130 123 132 c -126 134 128 136 129 138 c -131 141 131 145 131 151 c -131 163 L -161 163 L -161 62 L -131 62 L -131 77 l -131 81 131 84 130 86 c -129 88 128 91 126 92 c -125 94 122 95 120 96 c -118 96 114 97 108 97 c -96 97 L -96 49 l -96 43 96 39 97 37 c -98 35 100 34 102 33 c -104 32 108 31 114 31 c -124 31 L -124 0 L -13 0 L -13 31 L -20 31 l -28 31 34 33 36 34 c -39 37 40 41 40 47 c -40 178 l -40 184 40 188 39 190 c -38 192 36 193 34 194 c -31 195 27 195 20 195 c -13 195 L -13 227 L -@c - F -% FontChange:/_R7106-BookmanOldStyle 166.00 z -% CHAR: 226 -66 (l) @t -268 53 m -268 -42 l -268 -45 269 -47 269 -48 c -269 -49 270 -49 271 -50 c -272 -50 274 -50 278 -50 c -281 -50 L -281 -66 L -231 -66 L -231 -50 L -234 -50 l -237 -50 239 -50 240 -50 c -241 -49 242 -49 242 -48 c -242 -47 243 -45 243 -42 c -243 30 L -231 30 L -231 46 L -240 47 250 49 261 53 C -268 53 L -@c - F % CHAR: 282 -66 (a) @t -337 -17 m -337 -11 l -337 -7 337 -5 336 -4 c -336 -2 335 -1 333 0 c -332 1 329 1 327 1 c -325 1 324 1 322 0 c -321 0 320 -1 319 -2 c -318 -3 317 -5 316 -7 c -314 -11 313 -13 311 -15 c -309 -16 306 -17 303 -17 c -300 -17 297 -16 295 -14 c -293 -11 292 -9 292 -6 c -292 -2 293 1 295 4 c -298 8 303 11 309 13 c -315 16 321 17 329 17 c -336 17 343 16 348 13 c -353 11 357 8 359 5 c -361 1 362 -4 362 -11 c -362 -40 l -362 -44 362 -46 363 -47 c -363 -48 364 -49 365 -49 c -366 -50 368 -51 369 -51 c -371 -51 373 -50 375 -49 C -375 -65 L -371 -67 366 -67 362 -67 c -357 -67 353 -66 349 -65 c -346 -63 343 -61 341 -58 C -335 -61 330 -64 326 -65 c -322 -66 317 -67 313 -67 c -305 -67 299 -65 294 -61 c -290 -56 287 -51 287 -45 c -287 -41 288 -38 290 -35 c -291 -32 294 -29 297 -27 c -300 -24 305 -22 312 -21 c -319 -19 327 -18 337 -17 C -@c -337 -30 m -330 -31 325 -33 322 -33 c -319 -35 317 -36 316 -37 c -315 -39 314 -41 314 -42 c -314 -45 315 -46 317 -48 c -318 -49 320 -50 323 -50 c -325 -50 327 -50 329 -49 c -332 -48 334 -46 337 -45 C -337 -30 L -@c - F % CHAR: 378 -66 (r) @t -420 17 m -420 5 L -424 10 428 13 431 14 c -434 16 437 17 440 17 c -443 17 445 16 447 15 c -450 14 451 12 452 10 c -454 8 454 5 454 2 c -454 -1 453 -4 451 -7 c -449 -10 446 -11 441 -11 c -440 -11 439 -11 439 -11 c -438 -10 436 -10 433 -9 c -432 -9 431 -8 430 -8 c -428 -8 426 -9 423 -11 C -423 -43 l -423 -45 423 -47 423 -48 c -424 -49 425 -49 425 -50 c -426 -50 428 -50 431 -50 c -435 -50 L -435 -66 L -385 -66 L -385 -50 L -389 -50 l -392 -50 394 -50 395 -50 c -395 -50 396 -49 396 -48 c -397 -47 397 -45 397 -43 c -397 -6 L -385 -6 L -385 10 L -394 11 403 13 412 17 C -420 17 L -@c - F % CHAR: 454 -66 (g) @t -523 10 m -525 14 528 17 531 19 c -534 20 537 21 540 21 c -543 21 546 20 548 19 c -550 17 551 14 551 11 c -551 9 550 7 548 5 c -546 3 544 2 541 2 c -539 2 L -536 2 l -535 2 533 2 532 1 C -535 -4 536 -9 536 -13 c -536 -18 535 -23 532 -27 c -529 -32 525 -35 519 -38 c -514 -40 508 -42 501 -42 c -499 -42 496 -41 494 -41 c -492 -41 490 -41 488 -40 C -486 -41 485 -42 485 -43 c -484 -44 483 -44 483 -45 c -483 -47 485 -48 489 -48 c -522 -53 l -532 -55 539 -57 544 -61 c -548 -65 550 -70 550 -75 c -550 -80 549 -85 545 -89 c -542 -93 537 -96 529 -99 c -521 -102 512 -103 500 -103 c -490 -103 482 -102 475 -100 c -468 -98 464 -96 461 -93 c -458 -90 457 -87 457 -84 c -457 -81 458 -78 460 -76 c -462 -73 466 -71 473 -67 C -469 -66 466 -64 464 -62 c -461 -59 460 -56 460 -53 c -460 -50 461 -47 463 -44 c -466 -41 470 -38 475 -34 C -472 -33 470 -31 468 -29 c -467 -27 465 -24 464 -21 c -463 -19 463 -16 463 -12 c -463 -4 466 3 473 8 c -479 14 488 17 499 17 c -504 17 508 16 512 15 c -516 14 520 12 523 10 C -523 10 L -@c -500 1 m -496 1 493 0 491 -3 c -489 -5 488 -9 488 -13 c -488 -17 489 -20 491 -22 c -493 -25 496 -26 499 -26 c -503 -26 505 -25 508 -22 c -510 -20 511 -17 511 -13 c -511 -8 510 -5 508 -3 c -506 0 503 1 500 1 c -@c -488 -71 m -485 -73 483 -75 482 -76 c -482 -77 481 -79 481 -80 c -481 -83 483 -85 488 -86 c -492 -88 498 -89 504 -89 c -509 -89 514 -88 517 -87 c -521 -87 524 -85 525 -84 c -526 -83 526 -82 526 -81 c -526 -79 525 -78 524 -77 c -522 -76 518 -75 512 -74 c -488 -71 L -@c - F % CHAR: 550 -66 (e) @t -630 -36 m -641 -47 L -634 -54 628 -60 621 -63 c -615 -66 607 -68 600 -68 c -587 -68 577 -64 569 -55 c -560 -47 556 -37 556 -25 c -556 -17 558 -10 562 -4 c -565 3 571 8 577 11 c -584 15 592 17 600 17 c -605 17 610 16 615 14 c -619 13 623 11 626 8 c -630 5 633 1 634 -3 c -636 -7 638 -11 639 -16 c -639 -18 639 -21 639 -26 C -585 -26 L -585 -33 587 -39 591 -43 c -594 -47 599 -49 605 -49 c -609 -49 613 -48 617 -46 c -621 -44 625 -40 630 -36 C -@c -613 -13 m -613 -9 612 -7 611 -5 c -610 -3 608 -1 606 0 c -604 1 602 1 600 1 c -598 1 596 1 593 0 c -591 -2 590 -3 588 -5 c -587 -7 586 -10 586 -13 C -613 -13 L -@c - F T -@rax 2449.22 2642.33 2498.54 2663.57 @E -[0.07199 0.00000 0.00000 0.07199 2449.22388 2647.22388] @tm - 0 O 0 @g -0.00 0.00 0.00 1.00 k -e - -% FontChange:/_R7106-BookmanOldStyle 333.00 z -% CHAR: 0 0 (F) @t -13 227 m -200 227 L -226 154 L -197 144 L -192 155 187 163 183 168 c -179 173 173 178 168 181 c -162 185 155 187 148 189 c -144 189 135 190 124 190 c -96 190 L -96 130 L -110 130 l -115 130 120 130 123 132 c -126 134 128 136 129 138 c -131 141 131 145 131 151 c -131 163 L -161 163 L -161 62 L -131 62 L -131 77 l -131 81 131 84 130 86 c -129 88 128 91 126 92 c -125 94 122 95 120 96 c -118 96 114 97 108 97 c -96 97 L -96 49 l -96 43 96 39 97 37 c -98 35 100 34 102 33 c -104 32 108 31 114 31 c -124 31 L -124 0 L -13 0 L -13 31 L -20 31 l -28 31 34 33 36 34 c -39 37 40 41 40 47 c -40 178 l -40 184 40 188 39 190 c -38 192 36 193 34 194 c -31 195 27 195 20 195 c -13 195 L -13 227 L -@c - F -% FontChange:/_R7106-BookmanOldStyle 166.00 z -% CHAR: 226 -66 (s) @t -287 15 m -298 15 L -304 -8 L -289 -14 L -286 -9 282 -5 278 -3 c -274 0 269 1 265 1 c -262 1 260 1 259 0 c -257 -1 256 -2 256 -4 c -256 -5 257 -6 258 -7 c -259 -8 261 -9 264 -10 c -286 -18 l -290 -19 294 -21 298 -23 c -301 -25 304 -28 306 -31 c -308 -34 309 -38 309 -42 c -309 -49 306 -55 300 -60 c -294 -65 285 -68 276 -68 c -267 -68 260 -66 254 -62 C -251 -66 L -241 -66 L -231 -39 L -246 -33 L -250 -39 254 -44 260 -47 c -266 -50 271 -52 276 -52 c -278 -52 281 -51 283 -50 c -284 -49 285 -48 285 -46 c -285 -45 285 -44 283 -43 c -282 -42 280 -40 276 -39 c -258 -33 l -248 -30 242 -26 238 -22 c -235 -18 233 -14 233 -8 c -233 -1 236 4 241 9 c -247 14 255 17 264 17 c -272 17 279 15 285 11 C -287 15 L -@c - F % CHAR: 312 -66 (m) @t -355 17 m -355 6 L -360 10 365 12 369 14 c -374 16 379 17 384 17 c -387 17 390 16 393 15 c -396 14 399 13 401 12 c -403 10 405 8 406 6 C -411 10 416 12 421 14 c -426 16 431 17 436 17 c -440 17 444 16 448 14 c -451 13 454 11 456 8 c -458 5 460 2 460 -1 c -461 -3 461 -5 461 -9 c -461 -43 l -461 -45 461 -47 462 -48 c -462 -49 463 -49 464 -50 c -464 -50 466 -50 470 -50 c -473 -50 L -473 -66 L -426 -66 L -426 -50 L -429 -50 432 -50 433 -50 c -434 -50 434 -49 435 -48 c -435 -47 435 -46 435 -43 c -435 -14 l -435 -10 435 -8 435 -7 c -434 -6 433 -5 432 -4 c -431 -3 429 -3 427 -3 c -425 -3 423 -3 420 -4 c -418 -5 414 -7 410 -10 C -410 -42 l -410 -45 410 -47 410 -48 c -410 -49 411 -49 412 -50 c -413 -50 415 -50 419 -50 C -419 -66 L -374 -66 L -374 -50 L -378 -50 380 -50 381 -50 c -382 -50 383 -49 383 -48 c -383 -47 384 -45 384 -42 c -384 -14 l -384 -10 383 -7 382 -6 c -381 -4 379 -3 376 -3 c -375 -3 373 -3 371 -3 c -370 -4 368 -4 366 -5 c -366 -5 363 -7 360 -9 c -358 -10 L -358 -42 l -358 -45 358 -47 358 -48 c -359 -49 359 -49 360 -50 c -361 -50 363 -50 365 -50 c -367 -50 L -367 -66 L -320 -66 L -320 -50 L -323 -50 l -327 -50 329 -50 329 -50 c -330 -50 331 -49 331 -48 c -332 -47 332 -45 332 -42 c -332 -6 L -320 -6 L -320 10 L -330 11 339 13 347 17 C -355 17 L -@c - F % CHAR: 478 -66 (a) @t -533 -17 m -533 -11 l -533 -7 533 -5 532 -4 c -532 -2 531 -1 529 0 c -528 1 525 1 523 1 c -521 1 520 1 518 0 c -517 0 516 -1 515 -2 c -514 -3 513 -5 512 -7 c -510 -11 509 -13 507 -15 c -505 -16 502 -17 499 -17 c -496 -17 493 -16 491 -14 c -489 -11 488 -9 488 -6 c -488 -2 489 1 491 4 c -494 8 499 11 505 13 c -511 16 517 17 525 17 c -532 17 539 16 544 13 c -549 11 553 8 555 5 c -557 1 558 -4 558 -11 c -558 -40 l -558 -44 558 -46 559 -47 c -559 -48 560 -49 561 -49 c -562 -50 564 -51 565 -51 c -567 -51 569 -50 571 -49 C -571 -65 L -567 -67 562 -67 558 -67 c -553 -67 549 -66 545 -65 c -542 -63 539 -61 537 -58 C -531 -61 526 -64 522 -65 c -518 -66 513 -67 509 -67 c -501 -67 495 -65 490 -61 c -486 -56 483 -51 483 -45 c -483 -41 484 -38 486 -35 c -487 -32 490 -29 493 -27 c -496 -24 501 -22 508 -21 c -515 -19 523 -18 533 -17 C -@c -533 -30 m -526 -31 521 -33 518 -33 c -515 -35 513 -36 512 -37 c -511 -39 510 -41 510 -42 c -510 -45 511 -46 513 -48 c -514 -49 516 -50 519 -50 c -521 -50 523 -50 525 -49 c -528 -48 530 -46 533 -45 C -533 -30 L -@c - F % CHAR: 574 -66 (l) @t -616 53 m -616 -42 l -616 -45 617 -47 617 -48 c -617 -49 618 -49 619 -50 c -620 -50 622 -50 626 -50 c -629 -50 L -629 -66 L -579 -66 L -579 -50 L -582 -50 l -585 -50 587 -50 588 -50 c -589 -49 590 -49 590 -48 c -590 -47 591 -45 591 -42 c -591 30 L -579 30 L -579 46 L -588 47 598 49 609 53 C -616 53 L -@c - F % CHAR: 630 -66 (l) @t -672 53 m -672 -42 l -672 -45 673 -47 673 -48 c -673 -49 674 -49 675 -50 c -676 -50 678 -50 682 -50 c -685 -50 L -685 -66 L -635 -66 L -635 -50 L -638 -50 l -641 -50 643 -50 644 -50 c -645 -49 646 -49 646 -48 c -646 -47 647 -45 647 -42 c -647 30 L -635 30 L -635 46 L -644 47 654 49 665 53 C -672 53 L -@c - F T -@rax %%Note: Object -2449.08 2521.22 2449.37 2629.22 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 2.016 2.016 0.000 @w -2449.22 2629.22 m -2449.22 2532.89 L -S -@j -0.00 0.00 0.00 1.00 K -0.00 0.00 0.00 1.00 k -0 @g -0 @G -[] 0 d 0 J 0 j -0 R 0 O -0 2.02 2.02 0 @w -2449.22 2521.22 m -2455.42 2533.54 L -2443.03 2533.54 L -2449.22 2521.22 L -f -@J - -@rax %%Note: Object -2197.08 2530.22 2197.37 2629.22 @E -0 J 0 j [] 0 d 0 R 0 @G -0.00 0.00 0.00 1.00 K -0 2.016 2.016 0.000 @w -2197.22 2629.22 m -2197.22 2541.89 L -S -@j -0.00 0.00 0.00 1.00 K -0.00 0.00 0.00 1.00 k -0 @g -0 @G -[] 0 d 0 J 0 j -0 R 0 O -0 2.02 2.02 0 @w -2197.22 2530.22 m -2203.42 2542.54 L -2191.03 2542.54 L -2197.22 2530.22 L -f -@J - -@rs @rs -/$ctm matrix currentmatrix def -%EndTile -%EndColorLayer -@rs -@rs -%EndPage -%%Trailer -end diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype32/prob05a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype32/prob05a.gif deleted file mode 100755 index cf75a59fe..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype32/prob05a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype32/prob09.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype32/prob09.eps deleted file mode 100755 index 9563ab1c0..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype32/prob09.eps +++ /dev/null @@ -1,541 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Wed Oct 19 17:00:21 1994 -%%For: wolfe -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 248 158 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /rpath { - newpath moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} bind def /rfpath { - /rad3 exch def /hh3 exch def /ww3 exch def /yy1 exch def /xx1 exch def /xx2 xx1 ww3 add def /yy2 yy1 hh3 add def newpath xx1 yy1 rad3 hh3 0 gt { - add - } { - sub - } ifelse moveto xx1 yy1 xx2 yy1 rad3 arcto 4 { - pop - } repeat xx2 yy1 xx2 yy2 rad3 arcto 4 { - pop - } repeat xx2 yy2 xx1 yy2 rad3 arcto 4 { - pop - } repeat xx1 yy2 xx1 yy1 rad3 arcto 4 { - pop - } repeat closepath -} bind def /rfill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - 4 2 roll rpath crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - rectfill pop - } ifelse grestore -} bind def /rstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse 4 2 roll rpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /rffill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse rfpath filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /rfstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse rfpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /mkrpath { - dodrawctm rpath unpagectm -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /estroke { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /efill { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath unpagectm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /apstroke { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc pie chord or { - closepath - } if crlinalph setalpha pie not chord not and { - crfrtarw { - 2 copy crlinw exch gsave newpath angle1 1 add cos radius mul radius add angle1 1 add sin radius mul radius add moveto angle1 cos radius mul radius add angle1 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if crendarw { - 2 copy crlinw exch gsave newpath angle2 1 sub cos radius mul radius add angle2 1 sub sin radius mul radius add moveto angle2 cos radius mul radius add angle2 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if - } if crlincp setlinecap crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /apfill { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup 5 -2 roll arc pie chord or { - closepath - } if 1 xscale div 1 yscale div scale crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /mkepath { - dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def /closed exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc closed pie or chord or { - closepath - } if unpagectm -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 248 157.719971 rectclip --132 -491.280029 translate -132 491.280029 248 157.719971 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 2 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 18 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [6 1] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw true def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crtxtpat exch def -} if -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -94 287 616 1 0 0 1 2 -27 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 88 0 287 526 1 0 0 1 2 -2 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -94 376 616 1 0 0 1 3 -27 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -247 0 377 650 1 0 0 1 2 -2 sc6mt astore ssl -/crlinw 0 def -/crfilred 0.666662 def /crfilgrn 0.663366 def /crfilblu 0.653478 def /filinclr true def -1 0 0 1 0 0 sc5mt astore 286.75 606 88 -78 1 0 0 1 3 -32 sc6mt astore rfill -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 286.75 606 88 -78 1 0 0 1 3 -32 sc6mt astore rstroke -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -40.25 332.75 650.75 1 0 0 1 2 -2 sc6mt astore ssl -/crfilred 0.001953 def /crfilgrn 0.000351 def /crfilblu 0.003815 def /filinclr true def -1 0 0 1 0 0 sc6mt astore 21.100948 1 -1 34 582 0.426521 0 0 0.450217 310.498291 303.973938 sc5mt astore efill -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 21.100948 1 -1 34 582 0.426521 0 0 0.450217 310.498291 303.973938 sc5mt astore estroke -/crfilred 0.990463 def /crfilgrn 0.707831 def /crfilblu 0.788385 def /filinclr true def -1 0 0 1 0 0 sc5mt astore 336.875 581 -7.875 30 1 0 0 1 2 -2 sc6mt astore rfill -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 336.875 581 -7.875 30 1 0 0 1 2 -2 sc6mt astore rstroke -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -13.5 332.75 581 1 0 0 1 2 -2 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -40.25 170.75 649.75 1 0 0 1 2 -2 sc6mt astore ssl -/crfilred 0.001953 def /crfilgrn 0.000351 def /crfilblu 0.003815 def /filinclr true def -1 0 0 1 0 0 sc6mt astore 21.100948 1 -1 34 582 0.426521 0 0 0.450217 149.748291 301.223938 sc5mt astore efill -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 21.100948 1 -1 34 582 0.426521 0 0 0.450217 149.748291 301.223938 sc5mt astore estroke -/crfilred 0.990463 def /crfilgrn 0.707831 def /crfilblu 0.788385 def /filinclr true def -1 0 0 1 0 0 sc5mt astore 174.875 580 -7.875 30 1 0 0 1 2 -2 sc6mt astore rfill -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 174.875 580 -7.875 30 1 0 0 1 2 -2 sc6mt astore rstroke -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -13.5 170.25 579.5 1 0 0 1 2 -2 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -( ) [0 0] 179 593 /Symbol [ 25 1 mul 0 0 25 0 0 ] [1 0 0 1 2 -2] dotx -/txtdraw true def -/txlndraw true def -(scale ) [15.559998 0 17.759995 0 17.759995 0 11.119995 0 17.76001 0 0 0] 179 602 /Times-Roman [ 40 1 mul 0 0 40 0 0 ] [1 0 0 1 -1 -18] dotx -(mass ) [31.119995 0 17.759995 0 15.559998 0 15.560013 0 0 0] 190 554 /Times-Roman [ 40 1 mul 0 0 40 0 0 ] [1 0 0 1 -51 -34] dotx -(water ) [28.480011 0 17.76001 0 11.119995 0 17.76001 0 13.320007 0 0 0] 299 538 /Times-Roman [ 40 1 mul 0 0 40 0 0 ] [1 0 0 1 -10 -37] dotx -end -grestore -grestore -%%Trailer -%%DocumentFonts: Symbol -%%+ Times-Roman -%%BoundingBox: 0.000000 0.000000 248.000000 157.719971 diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype32/prob09.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype32/prob09.gif deleted file mode 100755 index 471e1f76b..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype32/prob09.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype32/prob11.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype32/prob11.eps deleted file mode 100755 index 4d14731a5..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype32/prob11.eps +++ /dev/null @@ -1,987 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Wed Oct 19 15:17:03 1994 -%%For: wolfe -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 433 190 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /rpath { - newpath moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} bind def /rfpath { - /rad3 exch def /hh3 exch def /ww3 exch def /yy1 exch def /xx1 exch def /xx2 xx1 ww3 add def /yy2 yy1 hh3 add def newpath xx1 yy1 rad3 hh3 0 gt { - add - } { - sub - } ifelse moveto xx1 yy1 xx2 yy1 rad3 arcto 4 { - pop - } repeat xx2 yy1 xx2 yy2 rad3 arcto 4 { - pop - } repeat xx2 yy2 xx1 yy2 rad3 arcto 4 { - pop - } repeat xx1 yy2 xx1 yy1 rad3 arcto 4 { - pop - } repeat closepath -} bind def /rfill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - 4 2 roll rpath crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - rectfill pop - } ifelse grestore -} bind def /rstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse 4 2 roll rpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /rffill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse rfpath filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /rfstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse rfpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /mkrpath { - dodrawctm rpath unpagectm -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /closedspl false def /nspans 0 def /sstrt { - gsave dodrawctm /closedspl exch def /nspans 0 def newpath -} bind def /sstrtpath { - dodrawctm /closedspl exch def /nspans 0 def newpath -} bind def /sadd { - nspans 0 eq { - moveto - } { - pop pop - } ifelse curveto /nspans nspans 1 add def -} bind def /splstroke { - nspans 0 gt { - unpagectm concat closedspl { - closepath - } if crlincp setlinecap crlinjn setlinejoin crlinalph setalpha crlinw setlinewidth crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - flattenpath crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse - } { - pop pop - } ifelse grestore -} bind def /splfill { - nspans 0 gt { - closedspl { - closepath - } if crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - flattenpath crfilpat findfont exch crfilstyl 0 eq { - filwittrans { - trpateofil - } { - oppateofil - } ifelse - } { - filwittrans { - trpatfil - } { - oppatfil - } ifelse - } ifelse - } { - crfilstyl 0 eq { - eofill - } { - fill - } ifelse pop - } ifelse - } if grestore -} bind def /mksplpath { - nspans 0 gt { - closedspl { - closepath - } if - } if -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 433 190 rectclip --104 -518 translate -104 518 433 190 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 0 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 18 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [4 4] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -/crlinw 3.3 def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 423 1 160 583 1 0 0 1 -55 0 sc6mt astore ssl -/crlinw 0 def -/crfilred 0.994278 def /crfilgrn 0.832041 def /crfilblu 0.476897 def /filinclr true def -true 1 0 0 1 123 1 sc5mt astore sstrt -systemdict -begin -103.919907 516.886719 231.030624 606.027527 setbbox -145 586 moveto -145 586 152.71376 593.845886 153 594 curveto -153.10376 594.055847 157.949829 592.942627 158 593 curveto -158.159821 593.182678 159.835007 601.835022 160 602 curveto -160.074997 602.075012 165.855179 600.942078 166 601 curveto -166.155167 601.062073 169.853882 605.967529 170 606 curveto -170.123886 606.027527 174.961731 603.12439 175 603 curveto -175.081726 602.734375 173.882309 593.078491 174 593 curveto -174.152313 592.898438 183.741455 597.059692 184 597 curveto -184.131454 596.969666 186.842361 590.085999 187 590 curveto -187.172363 589.906006 194.8284 591.09436 195 591 curveto -195.428406 590.764404 206.578629 579.260864 207 579 curveto -207.208618 578.87085 215.782074 578.122559 216 578 curveto -216.26207 577.8526 222.740555 570.159668 223 570 curveto -223.130554 569.919678 228.944611 570.083069 229 570 curveto -229.184616 569.723083 231.030624 558.352112 231 558 curveto -230.970612 557.662109 227.207809 547.259766 227 547 curveto -226.967804 546.959778 223.015564 548.028015 223 548 curveto -222.86557 547.757996 222.163895 538.173523 222 538 curveto -221.6539 537.633545 206.507919 530.105103 206 530 curveto -205.637909 529.92511 193.313522 532.127747 193 532 curveto -192.503525 531.797729 179.489868 519.256592 179 519 curveto -178.859879 518.926575 172.124893 520.86261 172 521 curveto -171.82489 521.192627 169.184158 529.894775 169 530 curveto -168.76416 530.134766 158.313019 529.089417 158 529 curveto -157.893021 528.969421 154.987839 526.072998 155 526 curveto -155.047836 525.712952 160.079208 517.12677 160 517 curveto -159.929214 516.886719 150.201462 517.843323 150 518 curveto -149.661469 518.263306 142.326523 530.706116 142 531 curveto -141.726517 531.246155 130.373795 535.946594 130 536 curveto -129.743805 536.036621 121.207886 533.912476 121 534 curveto -120.637886 534.152466 111.18 543.640015 111 544 curveto -110.790001 544.419983 108.19072 559.564087 108 560 curveto -107.980721 560.044067 104.009911 559.96698 104 560 curveto -103.919907 560.266968 104.878372 569.956543 105 570 curveto -105.29837 570.106567 117.616913 564.984009 118 565 curveto -118.336914 565.014038 128.648468 570.933044 129 571 curveto -129.278473 571.05304 138.833527 568.87793 139 569 curveto -139.283524 569.207947 144 582 144 582 curveto -144 582 145 586 145 586 curveto -end -/nspans 39 def 1 0 0 1 0 0 sc5mt astore splfill -true 1 0 0 1 123 1 sc5mt astore sstrt -systemdict -begin -103.919907 516.886719 231.030624 606.027527 setbbox -145 586 moveto -145 586 152.71376 593.845886 153 594 curveto -153.10376 594.055847 157.949829 592.942627 158 593 curveto -158.159821 593.182678 159.835007 601.835022 160 602 curveto -160.074997 602.075012 165.855179 600.942078 166 601 curveto -166.155167 601.062073 169.853882 605.967529 170 606 curveto -170.123886 606.027527 174.961731 603.12439 175 603 curveto -175.081726 602.734375 173.882309 593.078491 174 593 curveto -174.152313 592.898438 183.741455 597.059692 184 597 curveto -184.131454 596.969666 186.842361 590.085999 187 590 curveto -187.172363 589.906006 194.8284 591.09436 195 591 curveto -195.428406 590.764404 206.578629 579.260864 207 579 curveto -207.208618 578.87085 215.782074 578.122559 216 578 curveto -216.26207 577.8526 222.740555 570.159668 223 570 curveto -223.130554 569.919678 228.944611 570.083069 229 570 curveto -229.184616 569.723083 231.030624 558.352112 231 558 curveto -230.970612 557.662109 227.207809 547.259766 227 547 curveto -226.967804 546.959778 223.015564 548.028015 223 548 curveto -222.86557 547.757996 222.163895 538.173523 222 538 curveto -221.6539 537.633545 206.507919 530.105103 206 530 curveto -205.637909 529.92511 193.313522 532.127747 193 532 curveto -192.503525 531.797729 179.489868 519.256592 179 519 curveto -178.859879 518.926575 172.124893 520.86261 172 521 curveto -171.82489 521.192627 169.184158 529.894775 169 530 curveto -168.76416 530.134766 158.313019 529.089417 158 529 curveto -157.893021 528.969421 154.987839 526.072998 155 526 curveto -155.047836 525.712952 160.079208 517.12677 160 517 curveto -159.929214 516.886719 150.201462 517.843323 150 518 curveto -149.661469 518.263306 142.326523 530.706116 142 531 curveto -141.726517 531.246155 130.373795 535.946594 130 536 curveto -129.743805 536.036621 121.207886 533.912476 121 534 curveto -120.637886 534.152466 111.18 543.640015 111 544 curveto -110.790001 544.419983 108.19072 559.564087 108 560 curveto -107.980721 560.044067 104.009911 559.96698 104 560 curveto -103.919907 560.266968 104.878372 569.956543 105 570 curveto -105.29837 570.106567 117.616913 564.984009 118 565 curveto -118.336914 565.014038 128.648468 570.933044 129 571 curveto -129.278473 571.05304 138.833527 568.87793 139 569 curveto -139.283524 569.207947 144 582 144 582 curveto -144 582 145 586 145 586 curveto -end -/nspans 39 def 1 0 0 1 0 0 sc5mt astore 1 0 0 1 0 0 sc6mt astore splstroke -false 1 0 0 1 -13 2 sc5mt astore sstrt -systemdict -begin -398 583.5 528.5 614.5 setbbox -506.25 583.5 moveto -506.25 583.5 528.5 612.75 528.5 612.75 curveto -528.5 612.75 398 612.75 398 612.75 curveto -398 612.75 413.75 584.5 413.75 584.5 curveto -end -/nspans 3 def 1 0 0 1 0 0 sc5mt astore 1 0 0 1 0 0 sc6mt astore splstroke -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 433.75 643 8.75 -30.25 1 0 0 1 -13 2 sc6mt astore rstroke -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 459.25 643 8.75 -30.25 1 0 0 1 -13 2 sc6mt astore rstroke -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 486.5 643 8.75 -30.25 1 0 0 1 -13 2 sc6mt astore rstroke -/crfilred 0.791986 def /crfilgrn 0.662755 def /crfilblu 0.379864 def /filinclr true def -true 1 0 0 1 -13 2 sc5mt astore sstrt -systemdict -begin -459.972992 648.213013 466.26712 655.775574 setbbox -461.5 655.25 moveto -461.5 655.25 460.002991 655.01947 460 655 curveto -459.972992 654.824524 460.413879 648.895325 460.5 648.75 curveto -460.533875 648.692871 463.91864 648.213013 464 648.25 curveto -464.083618 648.288025 465.961487 651.151611 466 651.25 curveto -466.028992 651.324097 466.26712 653.922974 466.25 654 curveto -466.237122 654.057983 465.047638 655.738098 465 655.75 curveto -464.897644 655.775574 461.25 655.25 461.25 655.25 curveto -461.25 655.25 461.5 655.25 461.5 655.25 curveto -end -/nspans 8 def 1 0 0 1 0 0 sc5mt astore splfill -true 1 0 0 1 -13 2 sc5mt astore sstrt -systemdict -begin -459.972992 648.213013 466.26712 655.775574 setbbox -461.5 655.25 moveto -461.5 655.25 460.002991 655.01947 460 655 curveto -459.972992 654.824524 460.413879 648.895325 460.5 648.75 curveto -460.533875 648.692871 463.91864 648.213013 464 648.25 curveto -464.083618 648.288025 465.961487 651.151611 466 651.25 curveto -466.028992 651.324097 466.26712 653.922974 466.25 654 curveto -466.237122 654.057983 465.047638 655.738098 465 655.75 curveto -464.897644 655.775574 461.25 655.25 461.25 655.25 curveto -461.25 655.25 461.5 655.25 461.5 655.25 curveto -end -/nspans 8 def 1 0 0 1 0 0 sc5mt astore 1 0 0 1 0 0 sc6mt astore splstroke -/crfilred 0.788171 def /crfilgrn 0.659566 def /crfilblu 0.378033 def /filinclr true def -true 1 0 0 1 10.75 34 sc5mt astore sstrt -systemdict -begin -462.493774 661.212708 471.003326 673.277832 setbbox -463.5 668.25 moveto -463.5 668.25 462.493774 667.029968 462.5 667 curveto -462.53125 666.849976 464.644989 662.35498 464.75 662.25 curveto -464.772491 662.227478 466.694305 662.759705 466.75 662.75 curveto -466.866791 662.729675 470.453339 661.212708 470.5 661.25 curveto -470.528351 661.272705 469.239471 664.650024 469.25 664.75 curveto -469.254486 664.792542 471.003326 665.968384 471 666 curveto -470.988342 666.110901 468.785339 669.385132 468.75 669.5 curveto -468.725342 669.580078 469.03772 672.437134 469 672.5 curveto -468.970215 672.549622 466.53476 673.277832 466.5 673.25 curveto -466.459747 673.217834 466.536407 670.560669 466.5 670.5 curveto -466.491394 670.485657 465.025208 670.768921 465 670.75 curveto -464.935211 670.701416 463.5 668.25 463.5 668.25 curveto -463.5 668.25 463.5 668.25 463.5 668.25 curveto -end -/nspans 13 def 1 0 0 1 0 0 sc5mt astore splfill -true 1 0 0 1 10.75 34 sc5mt astore sstrt -systemdict -begin -462.493774 661.212708 471.003326 673.277832 setbbox -463.5 668.25 moveto -463.5 668.25 462.493774 667.029968 462.5 667 curveto -462.53125 666.849976 464.644989 662.35498 464.75 662.25 curveto -464.772491 662.227478 466.694305 662.759705 466.75 662.75 curveto -466.866791 662.729675 470.453339 661.212708 470.5 661.25 curveto -470.528351 661.272705 469.239471 664.650024 469.25 664.75 curveto -469.254486 664.792542 471.003326 665.968384 471 666 curveto -470.988342 666.110901 468.785339 669.385132 468.75 669.5 curveto -468.725342 669.580078 469.03772 672.437134 469 672.5 curveto -468.970215 672.549622 466.53476 673.277832 466.5 673.25 curveto -466.459747 673.217834 466.536407 670.560669 466.5 670.5 curveto -466.491394 670.485657 465.025208 670.768921 465 670.75 curveto -464.935211 670.701416 463.5 668.25 463.5 668.25 curveto -463.5 668.25 463.5 668.25 463.5 668.25 curveto -end -/nspans 13 def 1 0 0 1 0 0 sc5mt astore 1 0 0 1 0 0 sc6mt astore splstroke -true 1 0 0 1 -22.75 2.75 sc5mt astore sstrt -systemdict -begin -467.219055 678.995605 479.265991 692.268311 setbbox -470.25 687.25 moveto -470.25 687.25 467.795013 686.059998 467.75 686 curveto -467.704987 685.940002 467.219055 683.307983 467.25 683.25 curveto -467.279053 683.195496 469.69751 682.30249 469.75 682.25 curveto -469.787506 682.212524 470.211975 680.284851 470.25 680.25 curveto -470.301971 680.202393 472.676483 679.495911 472.75 679.5 curveto -472.811462 679.503418 474.694031 680.506226 474.75 680.5 curveto -474.82901 680.491211 477.17041 679.01062 477.25 679 curveto -477.282928 678.995605 478.5 679.969971 478.5 680 curveto -478.5 680.112488 477.24057 683.641602 477.25 683.75 curveto -477.255585 683.814087 478.96347 685.681458 479 685.75 curveto -479.023468 685.794006 479.265991 687.456055 479.25 687.5 curveto -479.205994 687.621033 477.085907 691.153992 477 691.25 curveto -476.958405 691.296448 475.025909 692.268311 475 692.25 curveto -474.898407 692.178284 472.839081 688.350952 472.75 688.25 curveto -472.726593 688.22345 471.280243 688.025208 471.25 688 curveto -471.23526 687.987732 471.264404 687.010803 471.25 687 curveto -471.234406 686.988281 470.25 687.25 470.25 687.25 curveto -470.25 687.25 470.25 687.25 470.25 687.25 curveto -end -/nspans 18 def 1 0 0 1 0 0 sc5mt astore splfill -true 1 0 0 1 -22.75 2.75 sc5mt astore sstrt -systemdict -begin -467.219055 678.995605 479.265991 692.268311 setbbox -470.25 687.25 moveto -470.25 687.25 467.795013 686.059998 467.75 686 curveto -467.704987 685.940002 467.219055 683.307983 467.25 683.25 curveto -467.279053 683.195496 469.69751 682.30249 469.75 682.25 curveto -469.787506 682.212524 470.211975 680.284851 470.25 680.25 curveto -470.301971 680.202393 472.676483 679.495911 472.75 679.5 curveto -472.811462 679.503418 474.694031 680.506226 474.75 680.5 curveto -474.82901 680.491211 477.17041 679.01062 477.25 679 curveto -477.282928 678.995605 478.5 679.969971 478.5 680 curveto -478.5 680.112488 477.24057 683.641602 477.25 683.75 curveto -477.255585 683.814087 478.96347 685.681458 479 685.75 curveto -479.023468 685.794006 479.265991 687.456055 479.25 687.5 curveto -479.205994 687.621033 477.085907 691.153992 477 691.25 curveto -476.958405 691.296448 475.025909 692.268311 475 692.25 curveto -474.898407 692.178284 472.839081 688.350952 472.75 688.25 curveto -472.726593 688.22345 471.280243 688.025208 471.25 688 curveto -471.23526 687.987732 471.264404 687.010803 471.25 687 curveto -471.234406 686.988281 470.25 687.25 470.25 687.25 curveto -470.25 687.25 470.25 687.25 470.25 687.25 curveto -end -/nspans 18 def 1 0 0 1 0 0 sc5mt astore 1 0 0 1 0 0 sc6mt astore splstroke -true 1 0 0 1 9.75 -29.5 sc5mt astore sstrt -systemdict -begin -467.219055 678.995605 479.265991 692.268311 setbbox -470.25 687.25 moveto -470.25 687.25 467.795013 686.059998 467.75 686 curveto -467.704987 685.940002 467.219055 683.307983 467.25 683.25 curveto -467.279053 683.195496 469.69751 682.30249 469.75 682.25 curveto -469.787506 682.212524 470.211975 680.284851 470.25 680.25 curveto -470.301971 680.202393 472.676483 679.495911 472.75 679.5 curveto -472.811462 679.503418 474.694031 680.506226 474.75 680.5 curveto -474.82901 680.491211 477.17041 679.01062 477.25 679 curveto -477.282928 678.995605 478.5 679.969971 478.5 680 curveto -478.5 680.112488 477.24057 683.641602 477.25 683.75 curveto -477.255585 683.814087 478.96347 685.681458 479 685.75 curveto -479.023468 685.794006 479.265991 687.456055 479.25 687.5 curveto -479.205994 687.621033 477.085907 691.153992 477 691.25 curveto -476.958405 691.296448 475.025909 692.268311 475 692.25 curveto -474.898407 692.178284 472.839081 688.350952 472.75 688.25 curveto -472.726593 688.22345 471.280243 688.025208 471.25 688 curveto -471.23526 687.987732 471.264404 687.010803 471.25 687 curveto -471.234406 686.988281 470.25 687.25 470.25 687.25 curveto -470.25 687.25 470.25 687.25 470.25 687.25 curveto -end -/nspans 18 def 1 0 0 1 0 0 sc5mt astore splfill -true 1 0 0 1 9.75 -29.5 sc5mt astore sstrt -systemdict -begin -467.219055 678.995605 479.265991 692.268311 setbbox -470.25 687.25 moveto -470.25 687.25 467.795013 686.059998 467.75 686 curveto -467.704987 685.940002 467.219055 683.307983 467.25 683.25 curveto -467.279053 683.195496 469.69751 682.30249 469.75 682.25 curveto -469.787506 682.212524 470.211975 680.284851 470.25 680.25 curveto -470.301971 680.202393 472.676483 679.495911 472.75 679.5 curveto -472.811462 679.503418 474.694031 680.506226 474.75 680.5 curveto -474.82901 680.491211 477.17041 679.01062 477.25 679 curveto -477.282928 678.995605 478.5 679.969971 478.5 680 curveto -478.5 680.112488 477.24057 683.641602 477.25 683.75 curveto -477.255585 683.814087 478.96347 685.681458 479 685.75 curveto -479.023468 685.794006 479.265991 687.456055 479.25 687.5 curveto -479.205994 687.621033 477.085907 691.153992 477 691.25 curveto -476.958405 691.296448 475.025909 692.268311 475 692.25 curveto -474.898407 692.178284 472.839081 688.350952 472.75 688.25 curveto -472.726593 688.22345 471.280243 688.025208 471.25 688 curveto -471.23526 687.987732 471.264404 687.010803 471.25 687 curveto -471.234406 686.988281 470.25 687.25 470.25 687.25 curveto -470.25 687.25 470.25 687.25 470.25 687.25 curveto -end -/nspans 18 def 1 0 0 1 0 0 sc5mt astore 1 0 0 1 0 0 sc6mt astore splstroke -true 1 0 0 1 -44 -29.25 sc5mt astore sstrt -systemdict -begin -467.219055 678.995605 479.265991 692.268311 setbbox -470.25 687.25 moveto -470.25 687.25 467.795013 686.059998 467.75 686 curveto -467.704987 685.940002 467.219055 683.307983 467.25 683.25 curveto -467.279053 683.195496 469.69751 682.30249 469.75 682.25 curveto -469.787506 682.212524 470.211975 680.284851 470.25 680.25 curveto -470.301971 680.202393 472.676483 679.495911 472.75 679.5 curveto -472.811462 679.503418 474.694031 680.506226 474.75 680.5 curveto -474.82901 680.491211 477.17041 679.01062 477.25 679 curveto -477.282928 678.995605 478.5 679.969971 478.5 680 curveto -478.5 680.112488 477.24057 683.641602 477.25 683.75 curveto -477.255585 683.814087 478.96347 685.681458 479 685.75 curveto -479.023468 685.794006 479.265991 687.456055 479.25 687.5 curveto -479.205994 687.621033 477.085907 691.153992 477 691.25 curveto -476.958405 691.296448 475.025909 692.268311 475 692.25 curveto -474.898407 692.178284 472.839081 688.350952 472.75 688.25 curveto -472.726593 688.22345 471.280243 688.025208 471.25 688 curveto -471.23526 687.987732 471.264404 687.010803 471.25 687 curveto -471.234406 686.988281 470.25 687.25 470.25 687.25 curveto -470.25 687.25 470.25 687.25 470.25 687.25 curveto -end -/nspans 18 def 1 0 0 1 0 0 sc5mt astore splfill -true 1 0 0 1 -44 -29.25 sc5mt astore sstrt -systemdict -begin -467.219055 678.995605 479.265991 692.268311 setbbox -470.25 687.25 moveto -470.25 687.25 467.795013 686.059998 467.75 686 curveto -467.704987 685.940002 467.219055 683.307983 467.25 683.25 curveto -467.279053 683.195496 469.69751 682.30249 469.75 682.25 curveto -469.787506 682.212524 470.211975 680.284851 470.25 680.25 curveto -470.301971 680.202393 472.676483 679.495911 472.75 679.5 curveto -472.811462 679.503418 474.694031 680.506226 474.75 680.5 curveto -474.82901 680.491211 477.17041 679.01062 477.25 679 curveto -477.282928 678.995605 478.5 679.969971 478.5 680 curveto -478.5 680.112488 477.24057 683.641602 477.25 683.75 curveto -477.255585 683.814087 478.96347 685.681458 479 685.75 curveto -479.023468 685.794006 479.265991 687.456055 479.25 687.5 curveto -479.205994 687.621033 477.085907 691.153992 477 691.25 curveto -476.958405 691.296448 475.025909 692.268311 475 692.25 curveto -474.898407 692.178284 472.839081 688.350952 472.75 688.25 curveto -472.726593 688.22345 471.280243 688.025208 471.25 688 curveto -471.23526 687.987732 471.264404 687.010803 471.25 687 curveto -471.234406 686.988281 470.25 687.25 470.25 687.25 curveto -470.25 687.25 470.25 687.25 470.25 687.25 curveto -end -/nspans 18 def 1 0 0 1 0 0 sc5mt astore 1 0 0 1 0 0 sc6mt astore splstroke -true 1 0 0 1 -0.75 3 sc5mt astore sstrt -systemdict -begin -457 661.212708 471.003326 673.277832 setbbox -461.5 668.5 moveto -461.5 668.5 462.493774 667.029968 462.5 667 curveto -462.53125 666.849976 464.644989 662.35498 464.75 662.25 curveto -464.772491 662.227478 466.694305 662.759705 466.75 662.75 curveto -466.866791 662.729675 470.453339 661.212708 470.5 661.25 curveto -470.528351 661.272705 469.239471 664.650024 469.25 664.75 curveto -469.254486 664.792542 471.003326 665.968384 471 666 curveto -470.988342 666.110901 468.785339 669.385132 468.75 669.5 curveto -468.725342 669.580078 469.03772 672.437134 469 672.5 curveto -468.970215 672.549622 466.53476 673.277832 466.5 673.25 curveto -466.459747 673.217834 466.536407 670.560669 466.5 670.5 curveto -466.491394 670.485657 465.025208 670.768921 465 670.75 curveto -464.935211 670.701416 463.5 668.25 463.5 668.25 curveto -463.5 668.25 461.5 668.5 461.5 668.5 curveto -end -/nspans 13 def 1 0 0 1 0 0 sc5mt astore splfill -true 1 0 0 1 -0.75 3 sc5mt astore sstrt -systemdict -begin -457 661.212708 471.003326 673.277832 setbbox -461.5 668.5 moveto -461.5 668.5 462.493774 667.029968 462.5 667 curveto -462.53125 666.849976 464.644989 662.35498 464.75 662.25 curveto -464.772491 662.227478 466.694305 662.759705 466.75 662.75 curveto -466.866791 662.729675 470.453339 661.212708 470.5 661.25 curveto -470.528351 661.272705 469.239471 664.650024 469.25 664.75 curveto -469.254486 664.792542 471.003326 665.968384 471 666 curveto -470.988342 666.110901 468.785339 669.385132 468.75 669.5 curveto -468.725342 669.580078 469.03772 672.437134 469 672.5 curveto -468.970215 672.549622 466.53476 673.277832 466.5 673.25 curveto -466.459747 673.217834 466.536407 670.560669 466.5 670.5 curveto -466.491394 670.485657 465.025208 670.768921 465 670.75 curveto -464.935211 670.701416 463.5 668.25 463.5 668.25 curveto -463.5 668.25 461.5 668.5 461.5 668.5 curveto -end -/nspans 13 def 1 0 0 1 0 0 sc5mt astore 1 0 0 1 0 0 sc6mt astore splstroke -true 1 0 0 1 32.75 16.75 sc5mt astore sstrt -systemdict -begin -462.493774 661.212708 471.003326 673.277832 setbbox -463.5 668.25 moveto -463.5 668.25 462.493774 667.029968 462.5 667 curveto -462.53125 666.849976 464.644989 662.35498 464.75 662.25 curveto -464.772491 662.227478 466.694305 662.759705 466.75 662.75 curveto -466.866791 662.729675 468.953339 663.962708 469 664 curveto -469.028351 664.022705 469.239471 664.650024 469.25 664.75 curveto -469.254486 664.792542 471.003326 665.968384 471 666 curveto -470.988342 666.110901 468.785339 669.385132 468.75 669.5 curveto -468.725342 669.580078 469.03772 672.437134 469 672.5 curveto -468.970215 672.549622 466.53476 673.277832 466.5 673.25 curveto -466.459747 673.217834 466.536407 670.560669 466.5 670.5 curveto -466.491394 670.485657 465.025208 670.768921 465 670.75 curveto -464.935211 670.701416 463.5 668.25 463.5 668.25 curveto -463.5 668.25 463.5 668.25 463.5 668.25 curveto -end -/nspans 13 def 1 0 0 1 0 0 sc5mt astore splfill -true 1 0 0 1 32.75 16.75 sc5mt astore sstrt -systemdict -begin -462.493774 661.212708 471.003326 673.277832 setbbox -463.5 668.25 moveto -463.5 668.25 462.493774 667.029968 462.5 667 curveto -462.53125 666.849976 464.644989 662.35498 464.75 662.25 curveto -464.772491 662.227478 466.694305 662.759705 466.75 662.75 curveto -466.866791 662.729675 468.953339 663.962708 469 664 curveto -469.028351 664.022705 469.239471 664.650024 469.25 664.75 curveto -469.254486 664.792542 471.003326 665.968384 471 666 curveto -470.988342 666.110901 468.785339 669.385132 468.75 669.5 curveto -468.725342 669.580078 469.03772 672.437134 469 672.5 curveto -468.970215 672.549622 466.53476 673.277832 466.5 673.25 curveto -466.459747 673.217834 466.536407 670.560669 466.5 670.5 curveto -466.491394 670.485657 465.025208 670.768921 465 670.75 curveto -464.935211 670.701416 463.5 668.25 463.5 668.25 curveto -463.5 668.25 463.5 668.25 463.5 668.25 curveto -end -/nspans 13 def 1 0 0 1 0 0 sc5mt astore 1 0 0 1 0 0 sc6mt astore splstroke -true 1 0 0 1 65.25 11.5 sc5mt astore sstrt -systemdict -begin -462.493774 661.212708 471.003326 673.277832 setbbox -463.5 668.25 moveto -463.5 668.25 462.493774 667.029968 462.5 667 curveto -462.53125 666.849976 464.644989 662.35498 464.75 662.25 curveto -464.772491 662.227478 466.694305 662.759705 466.75 662.75 curveto -466.866791 662.729675 470.453339 661.212708 470.5 661.25 curveto -470.528351 661.272705 469.239471 664.650024 469.25 664.75 curveto -469.254486 664.792542 471.003326 665.968384 471 666 curveto -470.988342 666.110901 468.785339 669.385132 468.75 669.5 curveto -468.725342 669.580078 469.03772 672.437134 469 672.5 curveto -468.970215 672.549622 466.53476 673.277832 466.5 673.25 curveto -466.459747 673.217834 466.536407 670.560669 466.5 670.5 curveto -466.491394 670.485657 465.025208 670.768921 465 670.75 curveto -464.935211 670.701416 463.5 668.25 463.5 668.25 curveto -463.5 668.25 463.5 668.25 463.5 668.25 curveto -end -/nspans 13 def 1 0 0 1 0 0 sc5mt astore splfill -true 1 0 0 1 65.25 11.5 sc5mt astore sstrt -systemdict -begin -462.493774 661.212708 471.003326 673.277832 setbbox -463.5 668.25 moveto -463.5 668.25 462.493774 667.029968 462.5 667 curveto -462.53125 666.849976 464.644989 662.35498 464.75 662.25 curveto -464.772491 662.227478 466.694305 662.759705 466.75 662.75 curveto -466.866791 662.729675 470.453339 661.212708 470.5 661.25 curveto -470.528351 661.272705 469.239471 664.650024 469.25 664.75 curveto -469.254486 664.792542 471.003326 665.968384 471 666 curveto -470.988342 666.110901 468.785339 669.385132 468.75 669.5 curveto -468.725342 669.580078 469.03772 672.437134 469 672.5 curveto -468.970215 672.549622 466.53476 673.277832 466.5 673.25 curveto -466.459747 673.217834 466.536407 670.560669 466.5 670.5 curveto -466.491394 670.485657 465.025208 670.768921 465 670.75 curveto -464.935211 670.701416 463.5 668.25 463.5 668.25 curveto -463.5 668.25 463.5 668.25 463.5 668.25 curveto -end -/nspans 13 def 1 0 0 1 0 0 sc5mt astore 1 0 0 1 0 0 sc6mt astore splstroke -/txtdraw true def -/txlndraw true def -(Sea Level ) [20.015999 0 15.984001 0 15.984001 0 9 0 21.995995 0 15.084 0 17.460007 0 15.983994 0 10.007996 0 0 0] 57 598 /Times-Roman [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 49 -12] dotx -/txtdraw true def -/txlndraw true def -(USS Knowledge ) [11.552002 0 8.895996 0 8.895996 0 4 0 11.552002 0 8 0 7.600006 0 11.552002 0 4.447998 0 7.104004 0 8 0 8 0 7.104004 0 0 0] 117 696 /Times-Roman [ 16 1 mul 0 0 16 0 0 ] [1 0 0 1 277 -95] dotx -true 1 0 0 1 41.25 -24.75 sc5mt astore sstrt -systemdict -begin -467.219055 676.866211 498.764404 692.268311 setbbox -470.25 687.25 moveto -470.25 687.25 467.795013 686.059998 467.75 686 curveto -467.704987 685.940002 467.219055 683.307983 467.25 683.25 curveto -467.279053 683.195496 469.69751 679.30249 469.75 679.25 curveto -469.787506 679.212524 473.211975 677.784851 473.25 677.75 curveto -473.301971 677.702393 476.551483 677.745911 476.625 677.75 curveto -476.686462 677.753418 477.569031 677.006226 477.625 677 curveto -477.70401 676.991211 481.54541 678.88562 481.625 678.875 curveto -481.657928 678.870605 481.875 682.469971 481.875 682.5 curveto -481.875 682.612488 481.24057 685.516602 481.25 685.625 curveto -481.255585 685.689087 478.96347 685.681458 479 685.75 curveto -479.023468 685.794006 479.265991 687.456055 479.25 687.5 curveto -479.205994 687.621033 477.085907 691.153992 477 691.25 curveto -476.958405 691.296448 475.025909 692.268311 475 692.25 curveto -474.898407 692.178284 472.839081 688.350952 472.75 688.25 curveto -472.726593 688.22345 471.280243 688.025208 471.25 688 curveto -471.23526 687.987732 471.764404 685.760803 471.75 685.75 curveto -471.734406 685.738281 470.25 687.25 470.25 687.25 curveto -470.25 687.25 470.25 687.25 470.25 687.25 curveto -end -/nspans 18 def 1 0 0 1 0 0 sc5mt astore splfill -true 1 0 0 1 41.25 -24.75 sc5mt astore sstrt -systemdict -begin -467.219055 676.866211 498.764404 692.268311 setbbox -470.25 687.25 moveto -470.25 687.25 467.795013 686.059998 467.75 686 curveto -467.704987 685.940002 467.219055 683.307983 467.25 683.25 curveto -467.279053 683.195496 469.69751 679.30249 469.75 679.25 curveto -469.787506 679.212524 473.211975 677.784851 473.25 677.75 curveto -473.301971 677.702393 476.551483 677.745911 476.625 677.75 curveto -476.686462 677.753418 477.569031 677.006226 477.625 677 curveto -477.70401 676.991211 481.54541 678.88562 481.625 678.875 curveto -481.657928 678.870605 481.875 682.469971 481.875 682.5 curveto -481.875 682.612488 481.24057 685.516602 481.25 685.625 curveto -481.255585 685.689087 478.96347 685.681458 479 685.75 curveto -479.023468 685.794006 479.265991 687.456055 479.25 687.5 curveto -479.205994 687.621033 477.085907 691.153992 477 691.25 curveto -476.958405 691.296448 475.025909 692.268311 475 692.25 curveto -474.898407 692.178284 472.839081 688.350952 472.75 688.25 curveto -472.726593 688.22345 471.280243 688.025208 471.25 688 curveto -471.23526 687.987732 471.764404 685.760803 471.75 685.75 curveto -471.734406 685.738281 470.25 687.25 470.25 687.25 curveto -470.25 687.25 470.25 687.25 470.25 687.25 curveto -end -/nspans 18 def 1 0 0 1 0 0 sc5mt astore 1 0 0 1 0 0 sc6mt astore splstroke -/txtdraw true def -/txlndraw true def -(Object ) [25.992004 0 18 0 10.007996 0 15.984009 0 15.984009 0 10.007996 0 0 0] 256 208 /Times-Roman [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 -18 335] dotx -end -grestore -grestore -%%Trailer -%%DocumentFonts: Times-Roman -%%BoundingBox: 0.000000 0.000000 433.000000 190.000000 diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype32/prob11.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype32/prob11.gif deleted file mode 100755 index 6023054ef..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype32/prob11.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype33/prob01a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype33/prob01a.eps deleted file mode 100755 index 1270c0fe6..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype33/prob01a.eps +++ /dev/null @@ -1,1491 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: leaky tank2.eps -%%CreationDate: 4/1/1996 -%%Pages: 0 -%%DocumentFonts: Helvetica -%%BoundingBox:67 369 536 716 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica/Helvetica 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -3767 2231 4704 2231 4724 2231 4744 2232 4763 2234 4782 2236 4802 2239 4821 2242 -4840 2246 4859 2251 4878 2256 4897 2261 4915 2268 4933 2274 4952 2282 4969 2290 -4987 2298 5004 2308 5021 2317 5038 2327 5054 2338 5070 2349 5086 2361 5101 2373 -5116 2386 5131 2399 5145 2412 5158 2426 5171 2441 5184 2456 5197 2471 5208 2486 -5220 2502 5231 2518 5241 2535 5250 2552 5260 2569 5268 2587 5277 2605 5284 2623 -5291 2641 5298 2659 5304 2678 5309 2697 5314 2716 5318 2735 5321 2754 5324 2773 -5326 2793 5328 2812 5329 2832 5330 2851 5330 2856 5330 5044 5329 5078 5327 5097 -5325 5117 5322 5136 5319 5155 5316 5174 5311 5193 5306 5212 5301 5231 5294 5249 -5288 5268 5280 5286 5273 5304 5264 5322 5255 5339 5246 5356 5236 5373 5225 5389 -5214 5405 5203 5421 5191 5437 5178 5452 5165 5466 5152 5480 5138 5494 5124 5507 -5109 5520 5094 5533 5078 5545 5062 5556 5046 5567 5030 5577 5013 5587 4996 5596 -4978 5605 4961 5614 4943 5622 4924 5629 4906 5635 4887 5641 4869 5647 4850 5651 -4831 5656 4811 5659 4792 5662 4773 5665 4753 5667 4734 5668 4714 5669 4704 5669 -3767 5669 104 P -0.75 sg fill -gr -gs -2204 3950 2204 2856 2205 2832 2206 2812 2208 2793 2210 2773 2213 2754 2216 2735 -2220 2716 2225 2697 2230 2678 2236 2659 2243 2641 2250 2623 2257 2605 2266 2587 -2274 2569 2284 2552 2293 2535 2303 2518 2314 2502 2326 2486 2337 2471 2350 2456 -2362 2441 2376 2426 2389 2412 2403 2399 2418 2386 2433 2373 2448 2361 2464 2349 -2480 2338 2496 2327 2513 2317 2530 2308 2547 2298 2565 2290 2582 2282 2601 2274 -2619 2268 2637 2261 2656 2256 2675 2251 2694 2246 2713 2242 2732 2239 2752 2236 -2771 2234 2790 2232 2810 2231 2829 2231 3767 2231 3767 5669 2829 5669 2800 5668 -2781 5667 2761 5665 2742 5662 2723 5659 2703 5656 2684 5651 2665 5647 2647 5641 -2628 5635 2610 5629 2591 5622 2573 5614 2556 5605 2538 5596 2521 5587 2504 5577 -2488 5567 2472 5556 2456 5545 2440 5533 2425 5520 2410 5507 2396 5494 2382 5480 -2369 5466 2356 5452 2343 5437 2331 5421 2320 5405 2309 5389 2298 5373 2288 5356 -2279 5339 2270 5322 2261 5304 2254 5286 2246 5268 2240 5249 2233 5231 2228 5212 -2223 5193 2218 5174 2215 5155 2212 5136 2209 5117 2207 5097 2205 5078 2205 5058 -2204 5044 2204 3950 105 P closepath -0.75 sg fill -gr -gs -2204.5 3950.5 m -2204.5 2856.5 L -35 slw 0 sg str -gr -gs -2204.5 2856.5 m -2205.5 2832.5 L -35 slw 0 sg str -gr -gs -2205.5 2832.5 m -2206.5 2812.5 L -35 slw 0 sg str -gr -gs -2206.5 2812.5 m -2208.5 2793.5 L -35 slw 0 sg str -gr -gs -2208.5 2793.5 m -2210.5 2773.5 L -35 slw 0 sg str -gr -gs -2210.5 2773.5 m -2213.5 2754.5 L -35 slw 0 sg str -gr -gs -2213.5 2754.5 m -2216.5 2735.5 L -35 slw 0 sg str -gr -gs -2216.5 2735.5 m -2220.5 2716.5 L -35 slw 0 sg str -gr -gs -2220.5 2716.5 m -2225.5 2697.5 L -35 slw 0 sg str -gr -gs -2225.5 2697.5 m -2230.5 2678.5 L -35 slw 0 sg str -gr -gs -2230.5 2678.5 m -2236.5 2659.5 L -35 slw 0 sg str -gr -gs -2236.5 2659.5 m -2243.5 2641.5 L -35 slw 0 sg str -gr -gs -2243.5 2641.5 m -2250.5 2623.5 L -35 slw 0 sg str -gr -gs -2250.5 2623.5 m -2257.5 2605.5 L -35 slw 0 sg str -gr -gs -2257.5 2605.5 m -2266.5 2587.5 L -35 slw 0 sg str -gr -gs -2266.5 2587.5 m -2274.5 2569.5 L -35 slw 0 sg str -gr -gs -2274.5 2569.5 m -2284.5 2552.5 L -35 slw 0 sg str -gr -gs -2284.5 2552.5 m -2293.5 2535.5 L -35 slw 0 sg str -gr -gs -2293.5 2535.5 m -2303.5 2518.5 L -35 slw 0 sg str -gr -gs -2303.5 2518.5 m -2314.5 2502.5 L -35 slw 0 sg str -gr -gs -2314.5 2502.5 m -2326.5 2486.5 L -35 slw 0 sg str -gr -gs -2326.5 2486.5 m -2337.5 2471.5 L -35 slw 0 sg str -gr -gs -2337.5 2471.5 m -2350.5 2456.5 L -35 slw 0 sg str -gr -gs -2350.5 2456.5 m -2362.5 2441.5 L -35 slw 0 sg str -gr -gs -2362.5 2441.5 m -2376.5 2426.5 L -35 slw 0 sg str -gr -gs -2376.5 2426.5 m -2389.5 2412.5 L -35 slw 0 sg str -gr -gs -2389.5 2412.5 m -2403.5 2399.5 L -35 slw 0 sg str -gr -gs -2403.5 2399.5 m -2418.5 2386.5 L -35 slw 0 sg str -gr -gs -2418.5 2386.5 m -2433.5 2373.5 L -35 slw 0 sg str -gr -gs -2433.5 2373.5 m -2448.5 2361.5 L -35 slw 0 sg str -gr -gs -2448.5 2361.5 m -2464.5 2349.5 L -35 slw 0 sg str -gr -gs -2464.5 2349.5 m -2480.5 2338.5 L -35 slw 0 sg str -gr -gs -2480.5 2338.5 m -2496.5 2327.5 L -35 slw 0 sg str -gr -gs -2496.5 2327.5 m -2513.5 2317.5 L -35 slw 0 sg str -gr -gs -2513.5 2317.5 m -2530.5 2308.5 L -35 slw 0 sg str -gr -gs -2530.5 2308.5 m -2547.5 2298.5 L -35 slw 0 sg str -gr -gs -2547.5 2298.5 m -2565.5 2290.5 L -35 slw 0 sg str -gr -gs -2565.5 2290.5 m -2582.5 2282.5 L -35 slw 0 sg str -gr -gs -2582.5 2282.5 m -2601.5 2274.5 L -35 slw 0 sg str -gr -gs -2601.5 2274.5 m -2619.5 2268.5 L -35 slw 0 sg str -gr -gs -2619.5 2268.5 m -2637.5 2261.5 L -35 slw 0 sg str -gr -gs -2637.5 2261.5 m -2656.5 2256.5 L -35 slw 0 sg str -gr -gs -2656.5 2256.5 m -2675.5 2251.5 L -35 slw 0 sg str -gr -gs -2675.5 2251.5 m -2694.5 2246.5 L -35 slw 0 sg str -gr -gs -2694.5 2246.5 m -2713.5 2242.5 L -35 slw 0 sg str -gr -gs -2713.5 2242.5 m -2732.5 2239.5 L -35 slw 0 sg str -gr -gs -2732.5 2239.5 m -2752.5 2236.5 L -35 slw 0 sg str -gr -gs -2752.5 2236.5 m -2771.5 2234.5 L -35 slw 0 sg str -gr -gs -2771.5 2234.5 m -2790.5 2232.5 L -35 slw 0 sg str -gr -gs -2790.5 2232.5 m -2810.5 2231.5 L -35 slw 0 sg str -gr -gs -2810.5 2231.5 m -2829.5 2231.5 L -35 slw 0 sg str -gr -gs -2829.5 2231.5 m -4704.5 2231.5 L -35 slw 0 sg str -gr -gs -4704.5 2231.5 m -4724.5 2231.5 L -35 slw 0 sg str -gr -gs -4724.5 2231.5 m -4744.5 2232.5 L -35 slw 0 sg str -gr -gs -4744.5 2232.5 m -4763.5 2234.5 L -35 slw 0 sg str -gr -gs -4763.5 2234.5 m -4782.5 2236.5 L -35 slw 0 sg str -gr -gs -4782.5 2236.5 m -4802.5 2239.5 L -35 slw 0 sg str -gr -gs -4802.5 2239.5 m -4821.5 2242.5 L -35 slw 0 sg str -gr -gs -4821.5 2242.5 m -4840.5 2246.5 L -35 slw 0 sg str -gr -gs -4840.5 2246.5 m -4859.5 2251.5 L -35 slw 0 sg str -gr -gs -4859.5 2251.5 m -4878.5 2256.5 L -35 slw 0 sg str -gr -gs -4878.5 2256.5 m -4897.5 2261.5 L -35 slw 0 sg str -gr -gs -4897.5 2261.5 m -4915.5 2268.5 L -35 slw 0 sg str -gr -gs -4915.5 2268.5 m -4933.5 2274.5 L -35 slw 0 sg str -gr -gs -4933.5 2274.5 m -4952.5 2282.5 L -35 slw 0 sg str -gr -gs -4952.5 2282.5 m -4969.5 2290.5 L -35 slw 0 sg str -gr -gs -4969.5 2290.5 m -4987.5 2298.5 L -35 slw 0 sg str -gr -gs -4987.5 2298.5 m -5004.5 2308.5 L -35 slw 0 sg str -gr -gs -5004.5 2308.5 m -5021.5 2317.5 L -35 slw 0 sg str -gr -gs -5021.5 2317.5 m -5038.5 2327.5 L -35 slw 0 sg str -gr -gs -5038.5 2327.5 m -5054.5 2338.5 L -35 slw 0 sg str -gr -gs -5054.5 2338.5 m -5070.5 2349.5 L -35 slw 0 sg str -gr -gs -5070.5 2349.5 m -5086.5 2361.5 L -35 slw 0 sg str -gr -gs -5086.5 2361.5 m -5101.5 2373.5 L -35 slw 0 sg str -gr -gs -5101.5 2373.5 m -5116.5 2386.5 L -35 slw 0 sg str -gr -gs -5116.5 2386.5 m -5131.5 2399.5 L -35 slw 0 sg str -gr -gs -5131.5 2399.5 m -5145.5 2412.5 L -35 slw 0 sg str -gr -gs -5145.5 2412.5 m -5158.5 2426.5 L -35 slw 0 sg str -gr -gs -5158.5 2426.5 m -5171.5 2441.5 L -35 slw 0 sg str -gr -gs -5171.5 2441.5 m -5184.5 2456.5 L -35 slw 0 sg str -gr -gs -5184.5 2456.5 m -5197.5 2471.5 L -35 slw 0 sg str -gr -gs -5197.5 2471.5 m -5208.5 2486.5 L -35 slw 0 sg str -gr -gs -5208.5 2486.5 m -5220.5 2502.5 L -35 slw 0 sg str -gr -gs -5220.5 2502.5 m -5231.5 2518.5 L -35 slw 0 sg str -gr -gs -5231.5 2518.5 m -5241.5 2535.5 L -35 slw 0 sg str -gr -gs -5241.5 2535.5 m -5250.5 2552.5 L -35 slw 0 sg str -gr -gs -5250.5 2552.5 m -5260.5 2569.5 L -35 slw 0 sg str -gr -gs -5260.5 2569.5 m -5268.5 2587.5 L -35 slw 0 sg str -gr -gs -5268.5 2587.5 m -5277.5 2605.5 L -35 slw 0 sg str -gr -gs -5277.5 2605.5 m -5284.5 2623.5 L -35 slw 0 sg str -gr -gs -5284.5 2623.5 m -5291.5 2641.5 L -35 slw 0 sg str -gr -gs -5291.5 2641.5 m -5298.5 2659.5 L -35 slw 0 sg str -gr -gs -5298.5 2659.5 m -5304.5 2678.5 L -35 slw 0 sg str -gr -gs -5304.5 2678.5 m -5309.5 2697.5 L -35 slw 0 sg str -gr -gs -5309.5 2697.5 m -5314.5 2716.5 L -35 slw 0 sg str -gr -gs -5314.5 2716.5 m -5318.5 2735.5 L -35 slw 0 sg str -gr -gs -5318.5 2735.5 m -5321.5 2754.5 L -35 slw 0 sg str -gr -gs -5321.5 2754.5 m -5324.5 2773.5 L -35 slw 0 sg str -gr -gs -5324.5 2773.5 m -5326.5 2793.5 L -35 slw 0 sg str -gr -gs -5326.5 2793.5 m -5328.5 2812.5 L -35 slw 0 sg str -gr -gs -5328.5 2812.5 m -5329.5 2832.5 L -35 slw 0 sg str -gr -gs -5329.5 2832.5 m -5330.5 2851.5 L -35 slw 0 sg str -gr -gs -5330.5 2851.5 m -5330.5 2856.5 L -35 slw 0 sg str -gr -gs -5330.5 2856.5 m -5330.5 5044.5 L -35 slw 0 sg str -gr -gs -5330.5 5044.5 m -5329.5 5078.5 L -35 slw 0 sg str -gr -gs -5329.5 5078.5 m -5327.5 5097.5 L -35 slw 0 sg str -gr -gs -5327.5 5097.5 m -5325.5 5117.5 L -35 slw 0 sg str -gr -gs -5325.5 5117.5 m -5322.5 5136.5 L -35 slw 0 sg str -gr -gs -5322.5 5136.5 m -5319.5 5155.5 L -35 slw 0 sg str -gr -gs -5319.5 5155.5 m -5316.5 5174.5 L -35 slw 0 sg str -gr -gs -5316.5 5174.5 m -5311.5 5193.5 L -35 slw 0 sg str -gr -gs -5311.5 5193.5 m -5306.5 5212.5 L -35 slw 0 sg str -gr -gs -5306.5 5212.5 m -5301.5 5231.5 L -35 slw 0 sg str -gr -gs -5301.5 5231.5 m -5294.5 5249.5 L -35 slw 0 sg str -gr -gs -5294.5 5249.5 m -5288.5 5268.5 L -35 slw 0 sg str -gr -gs -5288.5 5268.5 m -5280.5 5286.5 L -35 slw 0 sg str -gr -gs -5280.5 5286.5 m -5273.5 5304.5 L -35 slw 0 sg str -gr -gs -5273.5 5304.5 m -5264.5 5322.5 L -35 slw 0 sg str -gr -gs -5264.5 5322.5 m -5255.5 5339.5 L -35 slw 0 sg str -gr -gs -5255.5 5339.5 m -5246.5 5356.5 L -35 slw 0 sg str -gr -gs -5246.5 5356.5 m -5236.5 5373.5 L -35 slw 0 sg str -gr -gs -5236.5 5373.5 m -5225.5 5389.5 L -35 slw 0 sg str -gr -gs -5225.5 5389.5 m -5214.5 5405.5 L -35 slw 0 sg str -gr -gs -5214.5 5405.5 m -5203.5 5421.5 L -35 slw 0 sg str -gr -gs -5203.5 5421.5 m -5191.5 5437.5 L -35 slw 0 sg str -gr -gs -5191.5 5437.5 m -5178.5 5452.5 L -35 slw 0 sg str -gr -gs -5178.5 5452.5 m -5165.5 5466.5 L -35 slw 0 sg str -gr -gs -5165.5 5466.5 m -5152.5 5480.5 L -35 slw 0 sg str -gr -gs -5152.5 5480.5 m -5138.5 5494.5 L -35 slw 0 sg str -gr -gs -5138.5 5494.5 m -5124.5 5507.5 L -35 slw 0 sg str -gr -gs -5124.5 5507.5 m -5109.5 5520.5 L -35 slw 0 sg str -gr -gs -5109.5 5520.5 m -5094.5 5533.5 L -35 slw 0 sg str -gr -gs -5094.5 5533.5 m -5078.5 5545.5 L -35 slw 0 sg str -gr -gs -5078.5 5545.5 m -5062.5 5556.5 L -35 slw 0 sg str -gr -gs -5062.5 5556.5 m -5046.5 5567.5 L -35 slw 0 sg str -gr -gs -5046.5 5567.5 m -5030.5 5577.5 L -35 slw 0 sg str -gr -gs -5030.5 5577.5 m -5013.5 5587.5 L -35 slw 0 sg str -gr -gs -5013.5 5587.5 m -4996.5 5596.5 L -35 slw 0 sg str -gr -gs -4996.5 5596.5 m -4978.5 5605.5 L -35 slw 0 sg str -gr -gs -4978.5 5605.5 m -4961.5 5614.5 L -35 slw 0 sg str -gr -gs -4961.5 5614.5 m -4943.5 5622.5 L -35 slw 0 sg str -gr -gs -4943.5 5622.5 m -4924.5 5629.5 L -35 slw 0 sg str -gr -gs -4924.5 5629.5 m -4906.5 5635.5 L -35 slw 0 sg str -gr -gs -4906.5 5635.5 m -4887.5 5641.5 L -35 slw 0 sg str -gr -gs -4887.5 5641.5 m -4869.5 5647.5 L -35 slw 0 sg str -gr -gs -4869.5 5647.5 m -4850.5 5651.5 L -35 slw 0 sg str -gr -gs -4850.5 5651.5 m -4831.5 5656.5 L -35 slw 0 sg str -gr -gs -4831.5 5656.5 m -4811.5 5659.5 L -35 slw 0 sg str -gr -gs -4811.5 5659.5 m -4792.5 5662.5 L -35 slw 0 sg str -gr -gs -4792.5 5662.5 m -4773.5 5665.5 L -35 slw 0 sg str -gr -gs -4773.5 5665.5 m -4753.5 5667.5 L -35 slw 0 sg str -gr -gs -4753.5 5667.5 m -4734.5 5668.5 L -35 slw 0 sg str -gr -gs -4734.5 5668.5 m -4714.5 5669.5 L -35 slw 0 sg str -gr -gs -4714.5 5669.5 m -4704.5 5669.5 L -35 slw 0 sg str -gr -gs -4704.5 5669.5 m -2829.5 5669.5 L -35 slw 0 sg str -gr -gs -2829.5 5669.5 m -2800.5 5668.5 L -35 slw 0 sg str -gr -gs -2800.5 5668.5 m -2781.5 5667.5 L -35 slw 0 sg str -gr -gs -2781.5 5667.5 m -2761.5 5665.5 L -35 slw 0 sg str -gr -gs -2761.5 5665.5 m -2742.5 5662.5 L -35 slw 0 sg str -gr -gs -2742.5 5662.5 m -2723.5 5659.5 L -35 slw 0 sg str -gr -gs -2723.5 5659.5 m -2703.5 5656.5 L -35 slw 0 sg str -gr -gs -2703.5 5656.5 m -2684.5 5651.5 L -35 slw 0 sg str -gr -gs -2684.5 5651.5 m -2665.5 5647.5 L -35 slw 0 sg str -gr -gs -2665.5 5647.5 m -2647.5 5641.5 L -35 slw 0 sg str -gr -gs -2647.5 5641.5 m -2628.5 5635.5 L -35 slw 0 sg str -gr -gs -2628.5 5635.5 m -2610.5 5629.5 L -35 slw 0 sg str -gr -gs -2610.5 5629.5 m -2591.5 5622.5 L -35 slw 0 sg str -gr -gs -2591.5 5622.5 m -2573.5 5614.5 L -35 slw 0 sg str -gr -gs -2573.5 5614.5 m -2556.5 5605.5 L -35 slw 0 sg str -gr -gs -2556.5 5605.5 m -2538.5 5596.5 L -35 slw 0 sg str -gr -gs -2538.5 5596.5 m -2521.5 5587.5 L -35 slw 0 sg str -gr -gs -2521.5 5587.5 m -2504.5 5577.5 L -35 slw 0 sg str -gr -gs -2504.5 5577.5 m -2488.5 5567.5 L -35 slw 0 sg str -gr -gs -2488.5 5567.5 m -2472.5 5556.5 L -35 slw 0 sg str -gr -gs -2472.5 5556.5 m -2456.5 5545.5 L -35 slw 0 sg str -gr -gs -2456.5 5545.5 m -2440.5 5533.5 L -35 slw 0 sg str -gr -gs -2440.5 5533.5 m -2425.5 5520.5 L -35 slw 0 sg str -gr -gs -2425.5 5520.5 m -2410.5 5507.5 L -35 slw 0 sg str -gr -gs -2410.5 5507.5 m -2396.5 5494.5 L -35 slw 0 sg str -gr -gs -2396.5 5494.5 m -2382.5 5480.5 L -35 slw 0 sg str -gr -gs -2382.5 5480.5 m -2369.5 5466.5 L -35 slw 0 sg str -gr -gs -2369.5 5466.5 m -2356.5 5452.5 L -35 slw 0 sg str -gr -gs -2356.5 5452.5 m -2343.5 5437.5 L -35 slw 0 sg str -gr -gs -2343.5 5437.5 m -2331.5 5421.5 L -35 slw 0 sg str -gr -gs -2331.5 5421.5 m -2320.5 5405.5 L -35 slw 0 sg str -gr -gs -2320.5 5405.5 m -2309.5 5389.5 L -35 slw 0 sg str -gr -gs -2309.5 5389.5 m -2298.5 5373.5 L -35 slw 0 sg str -gr -gs -2298.5 5373.5 m -2288.5 5356.5 L -35 slw 0 sg str -gr -gs -2288.5 5356.5 m -2279.5 5339.5 L -35 slw 0 sg str -gr -gs -2279.5 5339.5 m -2270.5 5322.5 L -35 slw 0 sg str -gr -gs -2270.5 5322.5 m -2261.5 5304.5 L -35 slw 0 sg str -gr -gs -2261.5 5304.5 m -2254.5 5286.5 L -35 slw 0 sg str -gr -gs -2254.5 5286.5 m -2246.5 5268.5 L -35 slw 0 sg str -gr -gs -2246.5 5268.5 m -2240.5 5249.5 L -35 slw 0 sg str -gr -gs -2240.5 5249.5 m -2233.5 5231.5 L -35 slw 0 sg str -gr -gs -2233.5 5231.5 m -2228.5 5212.5 L -35 slw 0 sg str -gr -gs -2228.5 5212.5 m -2223.5 5193.5 L -35 slw 0 sg str -gr -gs -2223.5 5193.5 m -2218.5 5174.5 L -35 slw 0 sg str -gr -gs -2218.5 5174.5 m -2215.5 5155.5 L -35 slw 0 sg str -gr -gs -2215.5 5155.5 m -2212.5 5136.5 L -35 slw 0 sg str -gr -gs -2212.5 5136.5 m -2209.5 5117.5 L -35 slw 0 sg str -gr -gs -2209.5 5117.5 m -2207.5 5097.5 L -35 slw 0 sg str -gr -gs -2207.5 5097.5 m -2205.5 5078.5 L -35 slw 0 sg str -gr -gs -2205.5 5078.5 m -2205.5 5058.5 L -35 slw 0 sg str -gr -gs -2205.5 5058.5 m -2204.5 5044.5 L -35 slw 0 sg str -gr -gs -2204.5 5044.5 m -2204.5 3950.5 L -35 slw 0 sg str -gr -gs -2204 1918 5330 3168 R -0.75 sg fill -gr -gs -5330.5 5044.5 m -5330.5 1762.5 L -35 slw 0 sg str -gr -gs -0 slc -newpath -1891.5 1762.5 m -1579 1450 2204 2075 0 90 A -1 sg fill -gr -gs -0 slc -newpath -1579.5 1450.5 2204.5 2075.5 0 90 A -35 slw 0 sg str -gr -gs -0 slc -newpath -5642.5 1762.5 m -5330 1450 5955 2075 90 180 A -1 sg fill -gr -gs -0 slc -newpath -5330.5 1450.5 5955.5 2075.5 90 180 A -35 slw 0 sg str -gr -gs -2204.5 1762.5 m -2204.5 5044.5 L -35 slw 0 sg str -gr -gs -5129 4062 5282 4086 5431 4120 5575 4164 5714 4218 5849 4282 5978 4355 6103 4438 -6222 4531 6337 4633 6447 4746 6552 4868 6652 5000 6747 5141 6837 5293 6923 5454 -7004 5625 16 P -87.5 slw 0.75 sg str -gr -gs -1736 1918 1799 2153 1673 2153 2 P -0 sg fill -gr -gs -1736 5669 1673 5434 1799 5434 2 P -0 sg fill -gr -gs -1736.625 2153.625 m -1736.625 5434.625 L -1.25 slw 0 sg str -gr -gs -5798 1918 5861 2153 5735 2153 2 P -0 sg fill -gr -gs -5798 4106 5735 3871 5861 3871 2 P -0 sg fill -gr -gs -5798.625 2153.625 m -5798.625 3871.625 L -1.25 slw 0 sg str -gr -gs -1614 3637 1857 4002 R -1 sg fill -gr -/_Helvetica ff [347 0 0 -347 0 0] mf sf -1614 3897 m 0 sg (H) show -gs -5703 2830 5894 3194 R -1 sg fill -gr -5703 3090 m 3.47 slw 0 sg (h) show -gs -5330 6762 5565 6699 5565 6825 2 P -0 sg fill -gr -gs -7048 6762 6813 6825 6813 6699 2 P -0 sg fill -gr -gs -5565.625 6762.625 m -6813.625 6762.625 L -1.25 slw 0 sg str -gr -gs -2048.625 1918.625 m -1423.625 1918.625 L -1.25 slw 0 sg str -gr -gs -5486.625 1918.625 m -6111.625 1918.625 L -1.25 slw 0 sg str -gr -gs -5642.625 4106.625 m -6111.625 4106.625 L -1.25 slw 0 sg str -gr -gs -6128 6580 6250 6945 R -1 sg fill -gr -6128 6840 m 3.47 slw 0 sg (x) show -gs -1267 5669 9236 6137 R -0.25 sg fill -gr -gs -1267.625 5669.625 9236.375 6137.375 R -1.25 slw 0 sg str -gr -gs -7048.625 5825.625 m -7048.625 7075.625 L -1.25 slw 0 sg str -gr -gs -5330.625 5356.625 m -5330.625 7075.625 L -1.25 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype33/prob01a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype33/prob01a.gif deleted file mode 100755 index 52be8d292..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype33/prob01a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype33/prob01a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype33/prob01a.pdf deleted file mode 100644 index 65e08385f..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype33/prob01a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype33/prob08.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype33/prob08.eps deleted file mode 100755 index 1da4c2249..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype33/prob08.eps +++ /dev/null @@ -1,3060 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: Untitled1.create -%%Creator: Create -%%CreationDate: Thu Mar 20 17:26:46 1997 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 151 431 325 594 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(rI9)L/"835o2@,6RU(i3FUj=8M^Q"`DANIVJSj0%>5W.R7haAOsG2O"OIO,Dr8<_+OhE*GY$]lHiGQr*3lTB9Gr4G*"sUW) -% uuZ0I0p#_ZbK7a(EZB\J.R@MG3=_u>m\c"cO>*^%?k4`m"q=4hLE)h:dH[#QtW&TNhL[Ym70+ -% ltoMu!2s7@C&lYRD$D3BaT.n`i/%K+38d@0Sl"?:"eJiSaTS2?i/%RAee5oPQ&M*HL'+Fg?] -% (9T@0e$C<"d1tJT,+k2$%rp!@N7@7bV4Bl1O(O!F?#!&);GrA7hJDW>K)oKgMSEX_kpN3q*< -% (6#Zf,kDq%56(-@Rcq-`bOkFUG>F1k2k>*PgR3KG3]($P$+Q:u9:4E+cP$`_?'&^krShM:[K -% _ouqJLC+1=NH8C-(t_fHJ -% A)P.*1q,a#>5+Jl.?<#LKOp5'H5!t'#3-(&-;7:pWFS6;n9?2bU1&pAXM>QN*3eJFZ<(n!t* -% bqR$+J"A -% f+&b.>c4EmBsg/\'<5X)=DpU%3'&if\(0\tH:nEP%XTg#YeYa@c_sf\!)p!#&&AYE,lI-L7b -% k&km8.!$gjrcOJ?jNIADA&4$F6B6H"M)+,qAOWC?h/]dpI$imd`%oVi+/!oY+bFcR$mhk`O( -% JFfA8?fG$MuENoOgPO50[[Or[P4o%eea,rWBq0hQXR<0^p@WnXCfTsB,:'Z7ts/basq2o-/* -% *8,"C=<8:r]&F,'sqcT_dWRGQa?h!8DV,9=:Bdl;3\iDYZf(ZQH1qmadRHO][Yj,/8jfoWQ< -% m`V$+GUC2";'Rj?Un!euVX-6nu]1Uk/d2=Q0^VuhrH@@q`H+9\H"8bn*r5'HYA8BKR:^%sc>kgCFSk5q:4e"F'-#!&fqWIeA -% YVX)T9rPo -% sjr8h`TZFRtERll7q-5SWgWL=G&=?Kai/\VYBCUrWV9:^0&/+Y-Ha8g&Wq!)6G0#;ec&I4-3 -% <#!@ECV-M4E3nV.WMR%Ai#R'r/@=TrN+9jP;6PoI3"ZarG$o$U+(u-g#1bdDfDf>e!kTC'fD -% ul[TS\lI%1'\@5TaYbA"&l-2L)onP!F0;*)!#W?2UDF.0U4(]j`"-%0Q[^lH%SIG\q>_m6j> -% NI!>j$XO>=[cL;Vo`.Vm;t1Z`,q@_9`Ei)^#U+q#DO -% 8i/M_E$l`=7a^ls!RBp^8P8H2H^c>)MEXVpeGl'^-`mC2<<+Bq$=G[@2a8sE5/os&JaX4k_] -% $HnK.B2MboF=d0gjS:&43#?[12sl?;*Yej!0X4hTr-]d'b4p,J32;A!ZbCH12Y4YpD-H6bFG -% bYc[.$S^hj2Lh&SEV=>j=mn!;qTjXs[_8^7@a!&T!k&J=U:$2;EHm`c[qj%EZl!_ZWN^*8P( -% ]Zi'l\A."!jEMhM!#kN>`W<$C#,)>'*9Y_d+ma2Ur[=3K5$>s(-F.R%M.BsSO:\Xp6k*H)!' -% i5H#_BdF`$f$R.Z\2M5h#6f4ej*>i4oB/Lgl^O9;F$HUFbG -% t]=[SOt7??56."hH-YGi)Ue-"23>jt`jF]D3E7a^P&*p"m'f[&'1^1Cls?O8t:(=JIk`T]d) -% =Y,a9.hhADV2>dG>#%Z@YG)uI?>]@*G4NgClp5^40A0VFglJ?ru/2-?s+.a@%#]R(t>TePWU)iiMe,5dtT7"to -% 4:kl^rZ%WH?[.4.qJ*Zl,n9qQ5cB/7hnL,YOY9/#bI[]Ia*qQbH42'K"Fs'17S!:;6,toVS] -% >.mg]8%3Xk=+1_U,f4"tE[1Z2+Fk`GFh^C -% a_1k3fe4]Y(AfhS+JZpL9TEHOMC*qPI%EN]CVgR\%A^6&610A6IG\JOKK9/K;Sb@2?('6>P% -% JE)*>juQQ<.[PPE8jr9gbqLua)DMu0@gg;>$u4LKK,i1F4+]8nqM5Y->Yb3Cm4K8C$#FQ!ZH -% %o!(nqaQ7%DVQ[,XVcSYf-AB5>MAiran6uY'x -% EndEmbeddedGraphics N 2639 a4f E 37 S 49f17 R e0490ca8 -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -151 431 174 163 rectclip -0 0 0.15 1 10 SU -[1 0 0 -1 231 487] concat -[1 0 0 1 1 1] concat -N -gsave N -11 17 0 0 ovalPath -clip -N -0 setlinewidth -0.462065 nxsetgray -0 0 11 0.34 rectfill -0.462065 nxsetgray -0 0.34 11 0.34 rectfill -0.462065 nxsetgray -0 0.68 11 0.34 rectfill -0.462065 nxsetgray -0 1.02 11 0.34 rectfill -0.462065 nxsetgray -0 1.36 11 0.34 rectfill -0.462065 nxsetgray -0 1.7 11 0.34 rectfill -0.462065 nxsetgray -0 2.04 11 0.34 rectfill -0.462065 nxsetgray -0 2.38 11 0.34 rectfill -0.462065 nxsetgray -0 2.72 11 0.34 rectfill -0.462065 nxsetgray -0 3.06 11 0.34 rectfill -0.462065 nxsetgray -0 3.4 11 0.34 rectfill -0.462065 nxsetgray -0 3.74 11 0.34 rectfill -0.462065 nxsetgray -0 4.079999 11 0.34 rectfill -0.462065 nxsetgray -0 4.42 11 0.34 rectfill -0.462065 nxsetgray -0 4.76 11 0.34 rectfill -0.462065 nxsetgray -0 5.1 11 0.34 rectfill -0.462065 nxsetgray -0 5.44 11 0.34 rectfill -0.462065 nxsetgray -0 5.78 11 0.34 rectfill -0.462065 nxsetgray -0 6.12 11 0.34 rectfill -0.462065 nxsetgray -0 6.460001 11 0.34 rectfill -0.462065 nxsetgray -0 6.800001 11 0.34 rectfill -0.462065 nxsetgray -0 7.140001 11 0.34 rectfill -0.462065 nxsetgray -0 7.480001 11 0.34 rectfill -0.462065 nxsetgray -0 7.820001 11 0.34 rectfill -0.462065 nxsetgray -0 8.160001 11 0.34 rectfill -0.462065 nxsetgray -0 8.500001 11 0.34 rectfill -0.462065 nxsetgray -0 8.840001 11 0.34 rectfill -0.462065 nxsetgray -0 9.180001 11 0.34 rectfill -0.462065 nxsetgray -0 9.520001 11 0.34 rectfill -0.462065 nxsetgray -0 9.860002 11 0.34 rectfill -0.462065 nxsetgray -0 10.200002 11 0.34 rectfill -0.462065 nxsetgray -0 10.540002 11 0.34 rectfill -0.462065 nxsetgray -0 10.880002 11 0.34 rectfill -0.462065 nxsetgray -0 11.220002 11 0.34 rectfill -0.462065 nxsetgray -0 11.560002 11 0.34 rectfill -0.462065 nxsetgray -0 11.900002 11 0.34 rectfill -0.462065 nxsetgray -0 12.240003 11 0.34 rectfill -0.462065 nxsetgray -0 12.580003 11 0.34 rectfill -0.462065 nxsetgray -0 12.920003 11 0.34 rectfill -0.462065 nxsetgray -0 13.260003 11 0.34 rectfill -0.462065 nxsetgray -0 13.600003 11 0.34 rectfill -0.462065 nxsetgray -0 13.940003 11 0.34 rectfill -0.462065 nxsetgray -0 14.280004 11 0.34 rectfill -0.462065 nxsetgray -0 14.620004 11 0.34 rectfill -0.462065 nxsetgray -0 14.960004 11 0.34 rectfill -0.462065 nxsetgray -0 15.300004 11 0.34 rectfill -0.462065 nxsetgray -0 15.640004 11 0.34 rectfill -0.462065 nxsetgray -0 15.980004 11 0.34 rectfill -0.462065 nxsetgray -0 16.320004 11 0.34 rectfill -0.462065 nxsetgray -0 16.660004 11 0.34 rectfill -N -grestore -0.15 L -0.462065 nxsetgray -gsave -11 17 0 0 oval 0.090909 0.058824 S s -grestore -0 0 T -grestore -1 1 0.15 1 10 SU -[1 0 0 -1 157 496] concat -[1 0 0 1 1 1] concat -N -gsave N -72 54 0 0 acsRect -clip -N -0 setlinewidth -0.462065 nxsetgray -0 0 72 1.08 rectfill -0.462065 nxsetgray -0 1.08 72 1.08 rectfill -0.462065 nxsetgray -0 2.16 72 1.08 rectfill -0.462065 nxsetgray -0 3.24 72 1.08 rectfill -0.462065 nxsetgray -0 4.32 72 1.08 rectfill -0.462065 nxsetgray -0 5.4 72 1.08 rectfill -0.462065 nxsetgray -0 6.48 72 1.08 rectfill -0.462065 nxsetgray -0 7.56 72 1.08 rectfill -0.462065 nxsetgray -0 8.64 72 1.08 rectfill -0.462065 nxsetgray -0 9.72 72 1.08 rectfill -0.462065 nxsetgray -0 10.8 72 1.08 rectfill -0.462065 nxsetgray -0 11.88 72 1.08 rectfill -0.462065 nxsetgray -0 12.96 72 1.08 rectfill -0.462065 nxsetgray -0 14.04 72 1.08 rectfill -0.462065 nxsetgray -0 15.12 72 1.08 rectfill -0.462065 nxsetgray -0 16.200001 72 1.08 rectfill -0.462065 nxsetgray -0 17.280001 72 1.08 rectfill -0.462065 nxsetgray -0 18.360001 72 1.08 rectfill -0.462065 nxsetgray -0 19.440001 72 1.08 rectfill -0.462065 nxsetgray -0 20.52 72 1.08 rectfill -0.462065 nxsetgray -0 21.6 72 1.08 rectfill -0.462065 nxsetgray -0 22.68 72 1.08 rectfill -0.462065 nxsetgray -0 23.76 72 1.08 rectfill -0.462065 nxsetgray -0 24.84 72 1.08 rectfill -0.462065 nxsetgray -0 25.92 72 1.08 rectfill -0.462065 nxsetgray -0 27 72 1.08 rectfill -0.462065 nxsetgray -0 28.08 72 1.08 rectfill -0.462065 nxsetgray -0 29.16 72 1.08 rectfill -0.462065 nxsetgray -0 30.24 72 1.08 rectfill -0.462065 nxsetgray -0 31.32 72 1.08 rectfill -0.462065 nxsetgray -0 32.400002 72 1.08 rectfill -0.462065 nxsetgray -0 33.480003 72 1.08 rectfill -0.462065 nxsetgray -0 34.560005 72 1.08 rectfill -0.462065 nxsetgray -0 35.640007 72 1.08 rectfill -0.462065 nxsetgray -0 36.720009 72 1.08 rectfill -0.462065 nxsetgray -0 37.800011 72 1.08 rectfill -0.462065 nxsetgray -0 38.880013 72 1.08 rectfill -0.462065 nxsetgray -0 39.960014 72 1.08 rectfill -0.462065 nxsetgray -0 41.040016 72 1.08 rectfill -0.462065 nxsetgray -0 42.120018 72 1.08 rectfill -0.462065 nxsetgray -0 43.20002 72 1.08 rectfill -0.462065 nxsetgray -0 44.280022 72 1.08 rectfill -0.462065 nxsetgray -0 45.360023 72 1.08 rectfill -0.462065 nxsetgray -0 46.440025 72 1.08 rectfill -0.462065 nxsetgray -0 47.520027 72 1.08 rectfill -0.462065 nxsetgray -0 48.600029 72 1.08 rectfill -0.462065 nxsetgray -0 49.680031 72 1.08 rectfill -0.462065 nxsetgray -0 50.760033 72 1.08 rectfill -0.462065 nxsetgray -0 51.840034 72 1.08 rectfill -0.462065 nxsetgray -0 52.920036 72 1.08 rectfill -N -grestore -0.15 L -1 nxsetgray -0 0 72 54 rectstroke -0 0 T -grestore -1 1 0.15 1 10 SU -[1 0 0 -1 222 479] concat -[1 0 0 1 1 1] concat -N -gsave N -90 18 0 0 acsRect -clip -N -0 setlinewidth -0.462065 nxsetgray -0 0 90 0.36 rectfill -0.462065 nxsetgray -0 0.36 90 0.36 rectfill -0.462065 nxsetgray -0 0.72 90 0.36 rectfill -0.462065 nxsetgray -0 1.08 90 0.36 rectfill -0.462065 nxsetgray -0 1.44 90 0.36 rectfill -0.462065 nxsetgray -0 1.8 90 0.36 rectfill -0.462065 nxsetgray -0 2.16 90 0.36 rectfill -0.462065 nxsetgray -0 2.52 90 0.36 rectfill -0.462065 nxsetgray -0 2.88 90 0.36 rectfill -0.462065 nxsetgray -0 3.24 90 0.36 rectfill -0.462065 nxsetgray -0 3.6 90 0.36 rectfill -0.462065 nxsetgray -0 3.960001 90 0.36 rectfill -0.462065 nxsetgray -0 4.320001 90 0.36 rectfill -0.462065 nxsetgray -0 4.680001 90 0.36 rectfill -0.462065 nxsetgray -0 5.040001 90 0.36 rectfill -0.462065 nxsetgray -0 5.400001 90 0.36 rectfill -0.462065 nxsetgray -0 5.760001 90 0.36 rectfill -0.462065 nxsetgray -0 6.120001 90 0.36 rectfill -0.462065 nxsetgray -0 6.480001 90 0.36 rectfill -0.462065 nxsetgray -0 6.840002 90 0.36 rectfill -0.462065 nxsetgray -0 7.200002 90 0.36 rectfill -0.462065 nxsetgray -0 7.560002 90 0.36 rectfill -0.462065 nxsetgray -0 7.920002 90 0.36 rectfill -0.462065 nxsetgray -0 8.280002 90 0.36 rectfill -0.462065 nxsetgray -0 8.640001 90 0.36 rectfill -0.462065 nxsetgray -0 9.000001 90 0.36 rectfill -0.462065 nxsetgray -0 9.360001 90 0.36 rectfill -0.462065 nxsetgray -0 9.72 90 0.36 rectfill -0.462065 nxsetgray -0 10.08 90 0.36 rectfill -0.462065 nxsetgray -0 10.44 90 0.36 rectfill -0.462065 nxsetgray -0 10.799999 90 0.36 rectfill -0.462065 nxsetgray -0 11.159999 90 0.36 rectfill -0.462065 nxsetgray -0 11.519999 90 0.36 rectfill -0.462065 nxsetgray -0 11.879998 90 0.36 rectfill -0.462065 nxsetgray -0 12.239998 90 0.36 rectfill -0.462065 nxsetgray -0 12.599998 90 0.36 rectfill -0.462065 nxsetgray -0 12.959997 90 0.36 rectfill -0.462065 nxsetgray -0 13.319997 90 0.36 rectfill -0.462065 nxsetgray -0 13.679996 90 0.36 rectfill -0.462065 nxsetgray -0 14.039996 90 0.36 rectfill -0.462065 nxsetgray -0 14.399996 90 0.36 rectfill -0.462065 nxsetgray -0 14.759995 90 0.36 rectfill -0.462065 nxsetgray -0 15.119995 90 0.36 rectfill -0.462065 nxsetgray -0 15.479995 90 0.36 rectfill -0.462065 nxsetgray -0 15.839994 90 0.36 rectfill -0.462065 nxsetgray -0 16.199995 90 0.36 rectfill -0.462065 nxsetgray -0 16.559996 90 0.36 rectfill -0.462065 nxsetgray -0 16.919996 90 0.36 rectfill -0.462065 nxsetgray -0 17.279997 90 0.36 rectfill -0.462065 nxsetgray -0 17.639997 90 0.36 rectfill -N -grestore -0.15 L -0.462065 nxsetgray -0 0 90 18 rectstroke -0 0 T -grestore -1 1 0.15 1 10 SU -[1 0 0 -1 188 568] concat -[1 0 0 1 1 1] concat -N -gsave N -18 72 0 0 acsRect -clip -N -0 setlinewidth -0.462065 nxsetgray -0 0 18 1.44 rectfill -0.462065 nxsetgray -0 1.44 18 1.44 rectfill -0.462065 nxsetgray -0 2.88 18 1.44 rectfill -0.462065 nxsetgray -0 4.32 18 1.44 rectfill -0.462065 nxsetgray -0 5.76 18 1.44 rectfill -0.462065 nxsetgray -0 7.2 18 1.44 rectfill -0.462065 nxsetgray -0 8.64 18 1.44 rectfill -0.462065 nxsetgray -0 10.08 18 1.44 rectfill -0.462065 nxsetgray -0 11.52 18 1.44 rectfill -0.462065 nxsetgray -0 12.960001 18 1.44 rectfill -0.462065 nxsetgray -0 14.400002 18 1.44 rectfill -0.462065 nxsetgray -0 15.840002 18 1.44 rectfill -0.462065 nxsetgray -0 17.280003 18 1.44 rectfill -0.462065 nxsetgray -0 18.720003 18 1.44 rectfill -0.462065 nxsetgray -0 20.160004 18 1.44 rectfill -0.462065 nxsetgray -0 21.600004 18 1.44 rectfill -0.462065 nxsetgray -0 23.040005 18 1.44 rectfill -0.462065 nxsetgray -0 24.480005 18 1.44 rectfill -0.462065 nxsetgray -0 25.920006 18 1.44 rectfill -0.462065 nxsetgray -0 27.360006 18 1.44 rectfill -0.462065 nxsetgray -0 28.800007 18 1.44 rectfill -0.462065 nxsetgray -0 30.240007 18 1.44 rectfill -0.462065 nxsetgray -0 31.680008 18 1.44 rectfill -0.462065 nxsetgray -0 33.120007 18 1.44 rectfill -0.462065 nxsetgray -0 34.560005 18 1.44 rectfill -0.462065 nxsetgray -0 36.000004 18 1.44 rectfill -0.462065 nxsetgray -0 37.440002 18 1.44 rectfill -0.462065 nxsetgray -0 38.880001 18 1.44 rectfill -0.462065 nxsetgray -0 40.32 18 1.44 rectfill -0.462065 nxsetgray -0 41.759998 18 1.44 rectfill -0.462065 nxsetgray -0 43.199997 18 1.44 rectfill -0.462065 nxsetgray -0 44.639996 18 1.44 rectfill -0.462065 nxsetgray -0 46.079994 18 1.44 rectfill -0.462065 nxsetgray -0 47.519993 18 1.44 rectfill -0.462065 nxsetgray -0 48.959991 18 1.44 rectfill -0.462065 nxsetgray -0 50.39999 18 1.44 rectfill -0.462065 nxsetgray -0 51.839989 18 1.44 rectfill -0.462065 nxsetgray -0 53.279987 18 1.44 rectfill -0.462065 nxsetgray -0 54.719986 18 1.44 rectfill -0.462065 nxsetgray -0 56.159985 18 1.44 rectfill -0.462065 nxsetgray -0 57.599983 18 1.44 rectfill -0.462065 nxsetgray -0 59.039982 18 1.44 rectfill -0.462065 nxsetgray -0 60.47998 18 1.44 rectfill -0.462065 nxsetgray -0 61.919979 18 1.44 rectfill -0.462065 nxsetgray -0 63.359978 18 1.44 rectfill -0.462065 nxsetgray -0 64.79998 18 1.44 rectfill -0.462065 nxsetgray -0 66.239983 18 1.44 rectfill -0.462065 nxsetgray -0 67.679985 18 1.44 rectfill -0.462065 nxsetgray -0 69.119987 18 1.44 rectfill -0.462065 nxsetgray -0 70.55999 18 1.44 rectfill -N -grestore -0.15 L -1 nxsetgray -0 0 18 72 rectstroke -0 0 T -grestore -1 1 0.15 1 10 SU -[1 0 0 -1 269 514] concat -[1 0 0 1 1 1] concat -N -gsave N -18 36 0 0 acsRect -clip -N -0 setlinewidth -0.462065 nxsetgray -0 0 18 0.72 rectfill -0.462065 nxsetgray -0 0.72 18 0.72 rectfill -0.462065 nxsetgray -0 1.44 18 0.72 rectfill -0.462065 nxsetgray -0 2.16 18 0.72 rectfill -0.462065 nxsetgray -0 2.88 18 0.72 rectfill -0.462065 nxsetgray -0 3.6 18 0.72 rectfill -0.462065 nxsetgray -0 4.32 18 0.72 rectfill -0.462065 nxsetgray -0 5.04 18 0.72 rectfill -0.462065 nxsetgray -0 5.76 18 0.72 rectfill -0.462065 nxsetgray -0 6.48 18 0.72 rectfill -0.462065 nxsetgray -0 7.200001 18 0.72 rectfill -0.462065 nxsetgray -0 7.920001 18 0.72 rectfill -0.462065 nxsetgray -0 8.640001 18 0.72 rectfill -0.462065 nxsetgray -0 9.360002 18 0.72 rectfill -0.462065 nxsetgray -0 10.080002 18 0.72 rectfill -0.462065 nxsetgray -0 10.800002 18 0.72 rectfill -0.462065 nxsetgray -0 11.520002 18 0.72 rectfill -0.462065 nxsetgray -0 12.240003 18 0.72 rectfill -0.462065 nxsetgray -0 12.960003 18 0.72 rectfill -0.462065 nxsetgray -0 13.680003 18 0.72 rectfill -0.462065 nxsetgray -0 14.400003 18 0.72 rectfill -0.462065 nxsetgray -0 15.120004 18 0.72 rectfill -0.462065 nxsetgray -0 15.840004 18 0.72 rectfill -0.462065 nxsetgray -0 16.560003 18 0.72 rectfill -0.462065 nxsetgray -0 17.280003 18 0.72 rectfill -0.462065 nxsetgray -0 18.000002 18 0.72 rectfill -0.462065 nxsetgray -0 18.720001 18 0.72 rectfill -0.462065 nxsetgray -0 19.440001 18 0.72 rectfill -0.462065 nxsetgray -0 20.16 18 0.72 rectfill -0.462065 nxsetgray -0 20.879999 18 0.72 rectfill -0.462065 nxsetgray -0 21.599998 18 0.72 rectfill -0.462065 nxsetgray -0 22.319998 18 0.72 rectfill -0.462065 nxsetgray -0 23.039997 18 0.72 rectfill -0.462065 nxsetgray -0 23.759996 18 0.72 rectfill -0.462065 nxsetgray -0 24.479996 18 0.72 rectfill -0.462065 nxsetgray -0 25.199995 18 0.72 rectfill -0.462065 nxsetgray -0 25.919994 18 0.72 rectfill -0.462065 nxsetgray -0 26.639994 18 0.72 rectfill -0.462065 nxsetgray -0 27.359993 18 0.72 rectfill -0.462065 nxsetgray -0 28.079992 18 0.72 rectfill -0.462065 nxsetgray -0 28.799992 18 0.72 rectfill -0.462065 nxsetgray -0 29.519991 18 0.72 rectfill -0.462065 nxsetgray -0 30.23999 18 0.72 rectfill -0.462065 nxsetgray -0 30.95999 18 0.72 rectfill -0.462065 nxsetgray -0 31.679989 18 0.72 rectfill -0.462065 nxsetgray -0 32.39999 18 0.72 rectfill -0.462065 nxsetgray -0 33.119991 18 0.72 rectfill -0.462065 nxsetgray -0 33.839993 18 0.72 rectfill -0.462065 nxsetgray -0 34.559994 18 0.72 rectfill -0.462065 nxsetgray -0 35.279995 18 0.72 rectfill -N -grestore -0.15 L -1 nxsetgray -0 0 18 36 rectstroke -0 0 T -grestore -0 0 0.15 1 10 SU -162 495 T -N -0.15 L -0 nxsetgray -27 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -207 558 T -N -0.15 L -0 nxsetgray -0 27 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -189 558 T -N -0.15 L -0 nxsetgray -0 27 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -207 495 T -N -0.15 L -0 nxsetgray -18 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -245 477 T -N -0.15 L -0 nxsetgray -0 0 m -6 0 19 0 25 0 c -s -grestore -0 0 0.15 1 10 SU -288 477 T -N -0.15 L -0 nxsetgray -2 0 m -8 0 9 0 15 0 c -s -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 188 591] concat -[1 0 0 1 1 1] concat -N -gsave N -18 9 0 0 ovalPath -clip -N -0 setlinewidth -1 nxsetgray -0 0 18 0.18 rectfill -1 nxsetgray -0 0.18 18 0.18 rectfill -1 nxsetgray -0 0.36 18 0.18 rectfill -1 nxsetgray -0 0.54 18 0.18 rectfill -1 nxsetgray -0 0.72 18 0.18 rectfill -1 nxsetgray -0 0.9 18 0.18 rectfill -1 nxsetgray -0 1.08 18 0.18 rectfill -1 nxsetgray -0 1.26 18 0.18 rectfill -1 nxsetgray -0 1.44 18 0.18 rectfill -1 nxsetgray -0 1.62 18 0.18 rectfill -1 nxsetgray -0 1.8 18 0.18 rectfill -1 nxsetgray -0 1.98 18 0.18 rectfill -1 nxsetgray -0 2.16 18 0.18 rectfill -1 nxsetgray -0 2.34 18 0.18 rectfill -1 nxsetgray -0 2.52 18 0.18 rectfill -1 nxsetgray -0 2.700001 18 0.18 rectfill -1 nxsetgray -0 2.880001 18 0.18 rectfill -1 nxsetgray -0 3.060001 18 0.18 rectfill -1 nxsetgray -0 3.240001 18 0.18 rectfill -1 nxsetgray -0 3.420001 18 0.18 rectfill -1 nxsetgray -0 3.600001 18 0.18 rectfill -1 nxsetgray -0 3.780001 18 0.18 rectfill -1 nxsetgray -0 3.960001 18 0.18 rectfill -1 nxsetgray -0 4.140001 18 0.18 rectfill -1 nxsetgray -0 4.320001 18 0.18 rectfill -1 nxsetgray -0 4.5 18 0.18 rectfill -1 nxsetgray -0 4.68 18 0.18 rectfill -1 nxsetgray -0 4.86 18 0.18 rectfill -1 nxsetgray -0 5.04 18 0.18 rectfill -1 nxsetgray -0 5.22 18 0.18 rectfill -1 nxsetgray -0 5.4 18 0.18 rectfill -1 nxsetgray -0 5.579999 18 0.18 rectfill -1 nxsetgray -0 5.759999 18 0.18 rectfill -1 nxsetgray -0 5.939999 18 0.18 rectfill -1 nxsetgray -0 6.119999 18 0.18 rectfill -1 nxsetgray -0 6.299999 18 0.18 rectfill -1 nxsetgray -0 6.479999 18 0.18 rectfill -1 nxsetgray -0 6.659998 18 0.18 rectfill -1 nxsetgray -0 6.839998 18 0.18 rectfill -1 nxsetgray -0 7.019998 18 0.18 rectfill -1 nxsetgray -0 7.199998 18 0.18 rectfill -1 nxsetgray -0 7.379998 18 0.18 rectfill -1 nxsetgray -0 7.559998 18 0.18 rectfill -1 nxsetgray -0 7.739997 18 0.18 rectfill -1 nxsetgray -0 7.919997 18 0.18 rectfill -1 nxsetgray -0 8.099998 18 0.18 rectfill -1 nxsetgray -0 8.279998 18 0.18 rectfill -1 nxsetgray -0 8.459998 18 0.18 rectfill -1 nxsetgray -0 8.639998 18 0.18 rectfill -1 nxsetgray -0 8.819999 18 0.18 rectfill -N -grestore -0.15 L -0 nxsetgray -gsave -18 9 0 0 oval 0.055556 0.111111 S s -grestore -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 269 591] concat -[1 0 0 1 1 1] concat -N -gsave N -18 9 0 0 ovalPath -clip -N -0 setlinewidth -1 nxsetgray -0 0 18 0.18 rectfill -1 nxsetgray -0 0.18 18 0.18 rectfill -1 nxsetgray -0 0.36 18 0.18 rectfill -1 nxsetgray -0 0.54 18 0.18 rectfill -1 nxsetgray -0 0.72 18 0.18 rectfill -1 nxsetgray -0 0.9 18 0.18 rectfill -1 nxsetgray -0 1.08 18 0.18 rectfill -1 nxsetgray -0 1.26 18 0.18 rectfill -1 nxsetgray -0 1.44 18 0.18 rectfill -1 nxsetgray -0 1.62 18 0.18 rectfill -1 nxsetgray -0 1.8 18 0.18 rectfill -1 nxsetgray -0 1.98 18 0.18 rectfill -1 nxsetgray -0 2.16 18 0.18 rectfill -1 nxsetgray -0 2.34 18 0.18 rectfill -1 nxsetgray -0 2.52 18 0.18 rectfill -1 nxsetgray -0 2.700001 18 0.18 rectfill -1 nxsetgray -0 2.880001 18 0.18 rectfill -1 nxsetgray -0 3.060001 18 0.18 rectfill -1 nxsetgray -0 3.240001 18 0.18 rectfill -1 nxsetgray -0 3.420001 18 0.18 rectfill -1 nxsetgray -0 3.600001 18 0.18 rectfill -1 nxsetgray -0 3.780001 18 0.18 rectfill -1 nxsetgray -0 3.960001 18 0.18 rectfill -1 nxsetgray -0 4.140001 18 0.18 rectfill -1 nxsetgray -0 4.320001 18 0.18 rectfill -1 nxsetgray -0 4.5 18 0.18 rectfill -1 nxsetgray -0 4.68 18 0.18 rectfill -1 nxsetgray -0 4.86 18 0.18 rectfill -1 nxsetgray -0 5.04 18 0.18 rectfill -1 nxsetgray -0 5.22 18 0.18 rectfill -1 nxsetgray -0 5.4 18 0.18 rectfill -1 nxsetgray -0 5.579999 18 0.18 rectfill -1 nxsetgray -0 5.759999 18 0.18 rectfill -1 nxsetgray -0 5.939999 18 0.18 rectfill -1 nxsetgray -0 6.119999 18 0.18 rectfill -1 nxsetgray -0 6.299999 18 0.18 rectfill -1 nxsetgray -0 6.479999 18 0.18 rectfill -1 nxsetgray -0 6.659998 18 0.18 rectfill -1 nxsetgray -0 6.839998 18 0.18 rectfill -1 nxsetgray -0 7.019998 18 0.18 rectfill -1 nxsetgray -0 7.199998 18 0.18 rectfill -1 nxsetgray -0 7.379998 18 0.18 rectfill -1 nxsetgray -0 7.559998 18 0.18 rectfill -1 nxsetgray -0 7.739997 18 0.18 rectfill -1 nxsetgray -0 7.919997 18 0.18 rectfill -1 nxsetgray -0 8.099998 18 0.18 rectfill -1 nxsetgray -0 8.279998 18 0.18 rectfill -1 nxsetgray -0 8.459998 18 0.18 rectfill -1 nxsetgray -0 8.639998 18 0.18 rectfill -1 nxsetgray -0 8.819999 18 0.18 rectfill -N -grestore -0.15 L -0 nxsetgray -gsave -18 9 0 0 oval 0.055556 0.111111 S s -grestore -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 152 496] concat -[1 0 0 1 1 1] concat -N -gsave N -9 54 0 0 ovalPath -clip -N -0 setlinewidth -0.462065 nxsetgray -0 0 9 1.08 rectfill -0.462065 nxsetgray -0 1.08 9 1.08 rectfill -0.462065 nxsetgray -0 2.16 9 1.08 rectfill -0.462065 nxsetgray -0 3.24 9 1.08 rectfill -0.462065 nxsetgray -0 4.32 9 1.08 rectfill -0.462065 nxsetgray -0 5.4 9 1.08 rectfill -0.462065 nxsetgray -0 6.48 9 1.08 rectfill -0.462065 nxsetgray -0 7.56 9 1.08 rectfill -0.462065 nxsetgray -0 8.64 9 1.08 rectfill -0.462065 nxsetgray -0 9.72 9 1.08 rectfill -0.462065 nxsetgray -0 10.8 9 1.08 rectfill -0.462065 nxsetgray -0 11.88 9 1.08 rectfill -0.462065 nxsetgray -0 12.96 9 1.08 rectfill -0.462065 nxsetgray -0 14.04 9 1.08 rectfill -0.462065 nxsetgray -0 15.12 9 1.08 rectfill -0.462065 nxsetgray -0 16.200001 9 1.08 rectfill -0.462065 nxsetgray -0 17.280001 9 1.08 rectfill -0.462065 nxsetgray -0 18.360001 9 1.08 rectfill -0.462065 nxsetgray -0 19.440001 9 1.08 rectfill -0.462065 nxsetgray -0 20.52 9 1.08 rectfill -0.462065 nxsetgray -0 21.6 9 1.08 rectfill -0.462065 nxsetgray -0 22.68 9 1.08 rectfill -0.462065 nxsetgray -0 23.76 9 1.08 rectfill -0.462065 nxsetgray -0 24.84 9 1.08 rectfill -0.462065 nxsetgray -0 25.92 9 1.08 rectfill -0.462065 nxsetgray -0 27 9 1.08 rectfill -0.462065 nxsetgray -0 28.08 9 1.08 rectfill -0.462065 nxsetgray -0 29.16 9 1.08 rectfill -0.462065 nxsetgray -0 30.24 9 1.08 rectfill -0.462065 nxsetgray -0 31.32 9 1.08 rectfill -0.462065 nxsetgray -0 32.400002 9 1.08 rectfill -0.462065 nxsetgray -0 33.480003 9 1.08 rectfill -0.462065 nxsetgray -0 34.560005 9 1.08 rectfill -0.462065 nxsetgray -0 35.640007 9 1.08 rectfill -0.462065 nxsetgray -0 36.720009 9 1.08 rectfill -0.462065 nxsetgray -0 37.800011 9 1.08 rectfill -0.462065 nxsetgray -0 38.880013 9 1.08 rectfill -0.462065 nxsetgray -0 39.960014 9 1.08 rectfill -0.462065 nxsetgray -0 41.040016 9 1.08 rectfill -0.462065 nxsetgray -0 42.120018 9 1.08 rectfill -0.462065 nxsetgray -0 43.20002 9 1.08 rectfill -0.462065 nxsetgray -0 44.280022 9 1.08 rectfill -0.462065 nxsetgray -0 45.360023 9 1.08 rectfill -0.462065 nxsetgray -0 46.440025 9 1.08 rectfill -0.462065 nxsetgray -0 47.520027 9 1.08 rectfill -0.462065 nxsetgray -0 48.600029 9 1.08 rectfill -0.462065 nxsetgray -0 49.680031 9 1.08 rectfill -0.462065 nxsetgray -0 50.760033 9 1.08 rectfill -0.462065 nxsetgray -0 51.840034 9 1.08 rectfill -0.462065 nxsetgray -0 52.920036 9 1.08 rectfill -N -grestore -0.15 L -0 nxsetgray -gsave -9 54 0 0 oval 0.111111 0.018519 S s -grestore -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 311.5 478] concat -[-0.888889 0 0 1 8.5 1] concat -N -gsave N -9 18 0 0 ovalPath -clip -N -0 setlinewidth -0.462065 nxsetgray -0 0 9 0.36 rectfill -0.462065 nxsetgray -0 0.36 9 0.36 rectfill -0.462065 nxsetgray -0 0.72 9 0.36 rectfill -0.462065 nxsetgray -0 1.08 9 0.36 rectfill -0.462065 nxsetgray -0 1.44 9 0.36 rectfill -0.462065 nxsetgray -0 1.8 9 0.36 rectfill -0.462065 nxsetgray -0 2.16 9 0.36 rectfill -0.462065 nxsetgray -0 2.52 9 0.36 rectfill -0.462065 nxsetgray -0 2.88 9 0.36 rectfill -0.462065 nxsetgray -0 3.24 9 0.36 rectfill -0.462065 nxsetgray -0 3.6 9 0.36 rectfill -0.462065 nxsetgray -0 3.960001 9 0.36 rectfill -0.462065 nxsetgray -0 4.320001 9 0.36 rectfill -0.462065 nxsetgray -0 4.680001 9 0.36 rectfill -0.462065 nxsetgray -0 5.040001 9 0.36 rectfill -0.462065 nxsetgray -0 5.400001 9 0.36 rectfill -0.462065 nxsetgray -0 5.760001 9 0.36 rectfill -0.462065 nxsetgray -0 6.120001 9 0.36 rectfill -0.462065 nxsetgray -0 6.480001 9 0.36 rectfill -0.462065 nxsetgray -0 6.840002 9 0.36 rectfill -0.462065 nxsetgray -0 7.200002 9 0.36 rectfill -0.462065 nxsetgray -0 7.560002 9 0.36 rectfill -0.462065 nxsetgray -0 7.920002 9 0.36 rectfill -0.462065 nxsetgray -0 8.280002 9 0.36 rectfill -0.462065 nxsetgray -0 8.640001 9 0.36 rectfill -0.462065 nxsetgray -0 9.000001 9 0.36 rectfill -0.462065 nxsetgray -0 9.360001 9 0.36 rectfill -0.462065 nxsetgray -0 9.72 9 0.36 rectfill -0.462065 nxsetgray -0 10.08 9 0.36 rectfill -0.462065 nxsetgray -0 10.44 9 0.36 rectfill -0.462065 nxsetgray -0 10.799999 9 0.36 rectfill -0.462065 nxsetgray -0 11.159999 9 0.36 rectfill -0.462065 nxsetgray -0 11.519999 9 0.36 rectfill -0.462065 nxsetgray -0 11.879998 9 0.36 rectfill -0.462065 nxsetgray -0 12.239998 9 0.36 rectfill -0.462065 nxsetgray -0 12.599998 9 0.36 rectfill -0.462065 nxsetgray -0 12.959997 9 0.36 rectfill -0.462065 nxsetgray -0 13.319997 9 0.36 rectfill -0.462065 nxsetgray -0 13.679996 9 0.36 rectfill -0.462065 nxsetgray -0 14.039996 9 0.36 rectfill -0.462065 nxsetgray -0 14.399996 9 0.36 rectfill -0.462065 nxsetgray -0 14.759995 9 0.36 rectfill -0.462065 nxsetgray -0 15.119995 9 0.36 rectfill -0.462065 nxsetgray -0 15.479995 9 0.36 rectfill -0.462065 nxsetgray -0 15.839994 9 0.36 rectfill -0.462065 nxsetgray -0 16.199995 9 0.36 rectfill -0.462065 nxsetgray -0 16.559996 9 0.36 rectfill -0.462065 nxsetgray -0 16.919996 9 0.36 rectfill -0.462065 nxsetgray -0 17.279997 9 0.36 rectfill -0.462065 nxsetgray -0 17.639997 9 0.36 rectfill -N -grestore -0.15 L -0 nxsetgray -gsave -9 18 0 0 oval -0.125 -0.049383 S s -grestore -0 0 T -grestore -1 1 0.15 1 10 SU -[1 0 0 -1 188 505] concat -[1 0 0 1 1 1] concat -N -gsave N -18 18 0 0 acsRect -clip -N -0 setlinewidth -0.462065 nxsetgray -0 0 18 0.36 rectfill -0.462065 nxsetgray -0 0.36 18 0.36 rectfill -0.462065 nxsetgray -0 0.72 18 0.36 rectfill -0.462065 nxsetgray -0 1.08 18 0.36 rectfill -0.462065 nxsetgray -0 1.44 18 0.36 rectfill -0.462065 nxsetgray -0 1.8 18 0.36 rectfill -0.462065 nxsetgray -0 2.16 18 0.36 rectfill -0.462065 nxsetgray -0 2.52 18 0.36 rectfill -0.462065 nxsetgray -0 2.88 18 0.36 rectfill -0.462065 nxsetgray -0 3.24 18 0.36 rectfill -0.462065 nxsetgray -0 3.6 18 0.36 rectfill -0.462065 nxsetgray -0 3.960001 18 0.36 rectfill -0.462065 nxsetgray -0 4.320001 18 0.36 rectfill -0.462065 nxsetgray -0 4.680001 18 0.36 rectfill -0.462065 nxsetgray -0 5.040001 18 0.36 rectfill -0.462065 nxsetgray -0 5.400001 18 0.36 rectfill -0.462065 nxsetgray -0 5.760001 18 0.36 rectfill -0.462065 nxsetgray -0 6.120001 18 0.36 rectfill -0.462065 nxsetgray -0 6.480001 18 0.36 rectfill -0.462065 nxsetgray -0 6.840002 18 0.36 rectfill -0.462065 nxsetgray -0 7.200002 18 0.36 rectfill -0.462065 nxsetgray -0 7.560002 18 0.36 rectfill -0.462065 nxsetgray -0 7.920002 18 0.36 rectfill -0.462065 nxsetgray -0 8.280002 18 0.36 rectfill -0.462065 nxsetgray -0 8.640001 18 0.36 rectfill -0.462065 nxsetgray -0 9.000001 18 0.36 rectfill -0.462065 nxsetgray -0 9.360001 18 0.36 rectfill -0.462065 nxsetgray -0 9.72 18 0.36 rectfill -0.462065 nxsetgray -0 10.08 18 0.36 rectfill -0.462065 nxsetgray -0 10.44 18 0.36 rectfill -0.462065 nxsetgray -0 10.799999 18 0.36 rectfill -0.462065 nxsetgray -0 11.159999 18 0.36 rectfill -0.462065 nxsetgray -0 11.519999 18 0.36 rectfill -0.462065 nxsetgray -0 11.879998 18 0.36 rectfill -0.462065 nxsetgray -0 12.239998 18 0.36 rectfill -0.462065 nxsetgray -0 12.599998 18 0.36 rectfill -0.462065 nxsetgray -0 12.959997 18 0.36 rectfill -0.462065 nxsetgray -0 13.319997 18 0.36 rectfill -0.462065 nxsetgray -0 13.679996 18 0.36 rectfill -0.462065 nxsetgray -0 14.039996 18 0.36 rectfill -0.462065 nxsetgray -0 14.399996 18 0.36 rectfill -0.462065 nxsetgray -0 14.759995 18 0.36 rectfill -0.462065 nxsetgray -0 15.119995 18 0.36 rectfill -0.462065 nxsetgray -0 15.479995 18 0.36 rectfill -0.462065 nxsetgray -0 15.839994 18 0.36 rectfill -0.462065 nxsetgray -0 16.199995 18 0.36 rectfill -0.462065 nxsetgray -0 16.559996 18 0.36 rectfill -0.462065 nxsetgray -0 16.919996 18 0.36 rectfill -0.462065 nxsetgray -0 17.279997 18 0.36 rectfill -0.462065 nxsetgray -0 17.639997 18 0.36 rectfill -N -grestore -0.15 L -0.462065 nxsetgray -0 0 18 18 rectstroke -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 204.5 460] concat -[-2.222222 0 0 1 20.5 1] concat -N -gsave N -9 18 0 0 acsRect -clip -N -0 setlinewidth -0.462065 nxsetgray -0 0 9 0.36 rectfill -0.462065 nxsetgray -0 0.36 9 0.36 rectfill -0.462065 nxsetgray -0 0.72 9 0.36 rectfill -0.462065 nxsetgray -0 1.08 9 0.36 rectfill -0.462065 nxsetgray -0 1.44 9 0.36 rectfill -0.462065 nxsetgray -0 1.8 9 0.36 rectfill -0.462065 nxsetgray -0 2.16 9 0.36 rectfill -0.462065 nxsetgray -0 2.52 9 0.36 rectfill -0.462065 nxsetgray -0 2.88 9 0.36 rectfill -0.462065 nxsetgray -0 3.24 9 0.36 rectfill -0.462065 nxsetgray -0 3.6 9 0.36 rectfill -0.462065 nxsetgray -0 3.960001 9 0.36 rectfill -0.462065 nxsetgray -0 4.320001 9 0.36 rectfill -0.462065 nxsetgray -0 4.680001 9 0.36 rectfill -0.462065 nxsetgray -0 5.040001 9 0.36 rectfill -0.462065 nxsetgray -0 5.400001 9 0.36 rectfill -0.462065 nxsetgray -0 5.760001 9 0.36 rectfill -0.462065 nxsetgray -0 6.120001 9 0.36 rectfill -0.462065 nxsetgray -0 6.480001 9 0.36 rectfill -0.462065 nxsetgray -0 6.840002 9 0.36 rectfill -0.462065 nxsetgray -0 7.200002 9 0.36 rectfill -0.462065 nxsetgray -0 7.560002 9 0.36 rectfill -0.462065 nxsetgray -0 7.920002 9 0.36 rectfill -0.462065 nxsetgray -0 8.280002 9 0.36 rectfill -0.462065 nxsetgray -0 8.640001 9 0.36 rectfill -0.462065 nxsetgray -0 9.000001 9 0.36 rectfill -0.462065 nxsetgray -0 9.360001 9 0.36 rectfill -0.462065 nxsetgray -0 9.72 9 0.36 rectfill -0.462065 nxsetgray -0 10.08 9 0.36 rectfill -0.462065 nxsetgray -0 10.44 9 0.36 rectfill -0.462065 nxsetgray -0 10.799999 9 0.36 rectfill -0.462065 nxsetgray -0 11.159999 9 0.36 rectfill -0.462065 nxsetgray -0 11.519999 9 0.36 rectfill -0.462065 nxsetgray -0 11.879998 9 0.36 rectfill -0.462065 nxsetgray -0 12.239998 9 0.36 rectfill -0.462065 nxsetgray -0 12.599998 9 0.36 rectfill -0.462065 nxsetgray -0 12.959997 9 0.36 rectfill -0.462065 nxsetgray -0 13.319997 9 0.36 rectfill -0.462065 nxsetgray -0 13.679996 9 0.36 rectfill -0.462065 nxsetgray -0 14.039996 9 0.36 rectfill -0.462065 nxsetgray -0 14.399996 9 0.36 rectfill -0.462065 nxsetgray -0 14.759995 9 0.36 rectfill -0.462065 nxsetgray -0 15.119995 9 0.36 rectfill -0.462065 nxsetgray -0 15.479995 9 0.36 rectfill -0.462065 nxsetgray -0 15.839994 9 0.36 rectfill -0.462065 nxsetgray -0 16.199995 9 0.36 rectfill -0.462065 nxsetgray -0 16.559996 9 0.36 rectfill -0.462065 nxsetgray -0 16.919996 9 0.36 rectfill -0.462065 nxsetgray -0 17.279997 9 0.36 rectfill -0.462065 nxsetgray -0 17.639997 9 0.36 rectfill -N -grestore -0.15 L -0.462065 nxsetgray -0 0 9 18 rectstroke -0 0 T -grestore -0 0 0.15 1 10 SU -189 495 T -N -0.15 L -0 nxsetgray -0 63 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -207 495 T -N -0.15 L -0 nxsetgray -0 63 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 269 496] concat -[1 0 0 1 1 1] concat -N -gsave N -18 27 0 0 acsRect -clip -N -0 setlinewidth -0.462065 nxsetgray -0 0 18 0.54 rectfill -0.462065 nxsetgray -0 0.54 18 0.54 rectfill -0.462065 nxsetgray -0 1.08 18 0.54 rectfill -0.462065 nxsetgray -0 1.62 18 0.54 rectfill -0.462065 nxsetgray -0 2.16 18 0.54 rectfill -0.462065 nxsetgray -0 2.7 18 0.54 rectfill -0.462065 nxsetgray -0 3.24 18 0.54 rectfill -0.462065 nxsetgray -0 3.78 18 0.54 rectfill -0.462065 nxsetgray -0 4.32 18 0.54 rectfill -0.462065 nxsetgray -0 4.86 18 0.54 rectfill -0.462065 nxsetgray -0 5.4 18 0.54 rectfill -0.462065 nxsetgray -0 5.94 18 0.54 rectfill -0.462065 nxsetgray -0 6.48 18 0.54 rectfill -0.462065 nxsetgray -0 7.02 18 0.54 rectfill -0.462065 nxsetgray -0 7.56 18 0.54 rectfill -0.462065 nxsetgray -0 8.1 18 0.54 rectfill -0.462065 nxsetgray -0 8.64 18 0.54 rectfill -0.462065 nxsetgray -0 9.18 18 0.54 rectfill -0.462065 nxsetgray -0 9.72 18 0.54 rectfill -0.462065 nxsetgray -0 10.26 18 0.54 rectfill -0.462065 nxsetgray -0 10.8 18 0.54 rectfill -0.462065 nxsetgray -0 11.34 18 0.54 rectfill -0.462065 nxsetgray -0 11.88 18 0.54 rectfill -0.462065 nxsetgray -0 12.42 18 0.54 rectfill -0.462065 nxsetgray -0 12.96 18 0.54 rectfill -0.462065 nxsetgray -0 13.5 18 0.54 rectfill -0.462065 nxsetgray -0 14.04 18 0.54 rectfill -0.462065 nxsetgray -0 14.58 18 0.54 rectfill -0.462065 nxsetgray -0 15.12 18 0.54 rectfill -0.462065 nxsetgray -0 15.66 18 0.54 rectfill -0.462065 nxsetgray -0 16.200001 18 0.54 rectfill -0.462065 nxsetgray -0 16.740002 18 0.54 rectfill -0.462065 nxsetgray -0 17.280003 18 0.54 rectfill -0.462065 nxsetgray -0 17.820004 18 0.54 rectfill -0.462065 nxsetgray -0 18.360004 18 0.54 rectfill -0.462065 nxsetgray -0 18.900005 18 0.54 rectfill -0.462065 nxsetgray -0 19.440006 18 0.54 rectfill -0.462065 nxsetgray -0 19.980007 18 0.54 rectfill -0.462065 nxsetgray -0 20.520008 18 0.54 rectfill -0.462065 nxsetgray -0 21.060009 18 0.54 rectfill -0.462065 nxsetgray -0 21.60001 18 0.54 rectfill -0.462065 nxsetgray -0 22.140011 18 0.54 rectfill -0.462065 nxsetgray -0 22.680012 18 0.54 rectfill -0.462065 nxsetgray -0 23.220013 18 0.54 rectfill -0.462065 nxsetgray -0 23.760014 18 0.54 rectfill -0.462065 nxsetgray -0 24.300014 18 0.54 rectfill -0.462065 nxsetgray -0 24.840015 18 0.54 rectfill -0.462065 nxsetgray -0 25.380016 18 0.54 rectfill -0.462065 nxsetgray -0 25.920017 18 0.54 rectfill -0.462065 nxsetgray -0 26.460018 18 0.54 rectfill -N -grestore -0.15 L -0.462065 nxsetgray -0 0 18 27 rectstroke -0 0 T -grestore -0 0 0.15 1 10 SU -270 477 T -N -0.15 L -0 nxsetgray -0 108 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -288 477 T -N -0.15 L -0 nxsetgray -0 108 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -225 513 T -N -0.15 L -0 nxsetgray -0 54 0 0 line -90 0 54 arrow --90 0 0 arrow -0 0 T -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -/Helvetica findfont 12 scalefont [1 0 0 -1 0 0] makefont -12 -exch -defineuserobject -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1079] concat -12 execuserobject setfont -0 nxsetgray -234 544 moveto (h) show -grestore -grestore -0 0 0.15 1 10 SU -248 460 T -N -0.15 L -0 nxsetgray -62 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -162 441 T -N -gsave N -0 0 m 63 0 l -clip -N -0 setlinewidth -0.462065 nxsetgray -0 0 63 0.02 rectfill -0.462065 nxsetgray -0 0.02 63 0.02 rectfill -0.462065 nxsetgray -0 0.04 63 0.02 rectfill -0.462065 nxsetgray -0 0.06 63 0.02 rectfill -0.462065 nxsetgray -0 0.08 63 0.02 rectfill -0.462065 nxsetgray -0 0.1 63 0.02 rectfill -0.462065 nxsetgray -0 0.12 63 0.02 rectfill -0.462065 nxsetgray -0 0.14 63 0.02 rectfill -0.462065 nxsetgray -0 0.16 63 0.02 rectfill -0.462065 nxsetgray -0 0.18 63 0.02 rectfill -0.462065 nxsetgray -0 0.2 63 0.02 rectfill -0.462065 nxsetgray -0 0.22 63 0.02 rectfill -0.462065 nxsetgray -0 0.24 63 0.02 rectfill -0.462065 nxsetgray -0 0.26 63 0.02 rectfill -0.462065 nxsetgray -0 0.28 63 0.02 rectfill -0.462065 nxsetgray -0 0.3 63 0.02 rectfill -0.462065 nxsetgray -0 0.32 63 0.02 rectfill -0.462065 nxsetgray -0 0.34 63 0.02 rectfill -0.462065 nxsetgray -0 0.36 63 0.02 rectfill -0.462065 nxsetgray -0 0.38 63 0.02 rectfill -0.462065 nxsetgray -0 0.4 63 0.02 rectfill -0.462065 nxsetgray -0 0.42 63 0.02 rectfill -0.462065 nxsetgray -0 0.44 63 0.02 rectfill -0.462065 nxsetgray -0 0.46 63 0.02 rectfill -0.462065 nxsetgray -0 0.48 63 0.02 rectfill -0.462065 nxsetgray -0 0.5 63 0.02 rectfill -0.462065 nxsetgray -0 0.52 63 0.02 rectfill -0.462065 nxsetgray -0 0.54 63 0.02 rectfill -0.462065 nxsetgray -0 0.56 63 0.02 rectfill -0.462065 nxsetgray -0 0.58 63 0.02 rectfill -0.462065 nxsetgray -0 0.6 63 0.02 rectfill -0.462065 nxsetgray -0 0.62 63 0.02 rectfill -0.462065 nxsetgray -0 0.64 63 0.02 rectfill -0.462065 nxsetgray -0 0.66 63 0.02 rectfill -0.462065 nxsetgray -0 0.68 63 0.02 rectfill -0.462065 nxsetgray -0 0.7 63 0.02 rectfill -0.462065 nxsetgray -0 0.72 63 0.02 rectfill -0.462065 nxsetgray -0 0.74 63 0.02 rectfill -0.462065 nxsetgray -0 0.76 63 0.02 rectfill -0.462065 nxsetgray -0 0.78 63 0.02 rectfill -0.462065 nxsetgray -0 0.8 63 0.02 rectfill -0.462065 nxsetgray -0 0.82 63 0.02 rectfill -0.462065 nxsetgray -0 0.84 63 0.02 rectfill -0.462065 nxsetgray -0 0.86 63 0.02 rectfill -0.462065 nxsetgray -0 0.88 63 0.02 rectfill -0.462065 nxsetgray -0 0.9 63 0.02 rectfill -0.462065 nxsetgray -0 0.92 63 0.02 rectfill -0.462065 nxsetgray -0 0.94 63 0.02 rectfill -0.462065 nxsetgray -0 0.96 63 0.02 rectfill -0.462065 nxsetgray -0 0.98 63 0.02 rectfill -N -grestore -0.15 L -0 nxsetgray -63 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -288 477 T -N -gsave N -0 0 m 27 0 l -clip -N -0 setlinewidth -0.462065 nxsetgray -0 0 27 0.02 rectfill -0.462065 nxsetgray -0 0.02 27 0.02 rectfill -0.462065 nxsetgray -0 0.04 27 0.02 rectfill -0.462065 nxsetgray -0 0.06 27 0.02 rectfill -0.462065 nxsetgray -0 0.08 27 0.02 rectfill -0.462065 nxsetgray -0 0.1 27 0.02 rectfill -0.462065 nxsetgray -0 0.12 27 0.02 rectfill -0.462065 nxsetgray -0 0.14 27 0.02 rectfill -0.462065 nxsetgray -0 0.16 27 0.02 rectfill -0.462065 nxsetgray -0 0.18 27 0.02 rectfill -0.462065 nxsetgray -0 0.2 27 0.02 rectfill -0.462065 nxsetgray -0 0.22 27 0.02 rectfill -0.462065 nxsetgray -0 0.24 27 0.02 rectfill -0.462065 nxsetgray -0 0.26 27 0.02 rectfill -0.462065 nxsetgray -0 0.28 27 0.02 rectfill -0.462065 nxsetgray -0 0.3 27 0.02 rectfill -0.462065 nxsetgray -0 0.32 27 0.02 rectfill -0.462065 nxsetgray -0 0.34 27 0.02 rectfill -0.462065 nxsetgray -0 0.36 27 0.02 rectfill -0.462065 nxsetgray -0 0.38 27 0.02 rectfill -0.462065 nxsetgray -0 0.4 27 0.02 rectfill -0.462065 nxsetgray -0 0.42 27 0.02 rectfill -0.462065 nxsetgray -0 0.44 27 0.02 rectfill -0.462065 nxsetgray -0 0.46 27 0.02 rectfill -0.462065 nxsetgray -0 0.48 27 0.02 rectfill -0.462065 nxsetgray -0 0.5 27 0.02 rectfill -0.462065 nxsetgray -0 0.52 27 0.02 rectfill -0.462065 nxsetgray -0 0.54 27 0.02 rectfill -0.462065 nxsetgray -0 0.56 27 0.02 rectfill -0.462065 nxsetgray -0 0.58 27 0.02 rectfill -0.462065 nxsetgray -0 0.6 27 0.02 rectfill -0.462065 nxsetgray -0 0.62 27 0.02 rectfill -0.462065 nxsetgray -0 0.64 27 0.02 rectfill -0.462065 nxsetgray -0 0.66 27 0.02 rectfill -0.462065 nxsetgray -0 0.68 27 0.02 rectfill -0.462065 nxsetgray -0 0.7 27 0.02 rectfill -0.462065 nxsetgray -0 0.72 27 0.02 rectfill -0.462065 nxsetgray -0 0.74 27 0.02 rectfill -0.462065 nxsetgray -0 0.76 27 0.02 rectfill -0.462065 nxsetgray -0 0.78 27 0.02 rectfill -0.462065 nxsetgray -0 0.8 27 0.02 rectfill -0.462065 nxsetgray -0 0.82 27 0.02 rectfill -0.462065 nxsetgray -0 0.84 27 0.02 rectfill -0.462065 nxsetgray -0 0.86 27 0.02 rectfill -0.462065 nxsetgray -0 0.88 27 0.02 rectfill -0.462065 nxsetgray -0 0.9 27 0.02 rectfill -0.462065 nxsetgray -0 0.92 27 0.02 rectfill -0.462065 nxsetgray -0 0.94 27 0.02 rectfill -0.462065 nxsetgray -0 0.96 27 0.02 rectfill -0.462065 nxsetgray -0 0.98 27 0.02 rectfill -N -grestore -0.15 L -0 nxsetgray -27 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -162 495 T -N -gsave N -0 0 m 9 0 l -clip -N -0 setlinewidth -0.462065 nxsetgray -0 0 9 0.02 rectfill -0.462065 nxsetgray -0 0.02 9 0.02 rectfill -0.462065 nxsetgray -0 0.04 9 0.02 rectfill -0.462065 nxsetgray -0 0.06 9 0.02 rectfill -0.462065 nxsetgray -0 0.08 9 0.02 rectfill -0.462065 nxsetgray -0 0.1 9 0.02 rectfill -0.462065 nxsetgray -0 0.12 9 0.02 rectfill -0.462065 nxsetgray -0 0.14 9 0.02 rectfill -0.462065 nxsetgray -0 0.16 9 0.02 rectfill -0.462065 nxsetgray -0 0.18 9 0.02 rectfill -0.462065 nxsetgray -0 0.2 9 0.02 rectfill -0.462065 nxsetgray -0 0.22 9 0.02 rectfill -0.462065 nxsetgray -0 0.24 9 0.02 rectfill -0.462065 nxsetgray -0 0.26 9 0.02 rectfill -0.462065 nxsetgray -0 0.28 9 0.02 rectfill -0.462065 nxsetgray -0 0.3 9 0.02 rectfill -0.462065 nxsetgray -0 0.32 9 0.02 rectfill -0.462065 nxsetgray -0 0.34 9 0.02 rectfill -0.462065 nxsetgray -0 0.36 9 0.02 rectfill -0.462065 nxsetgray -0 0.38 9 0.02 rectfill -0.462065 nxsetgray -0 0.4 9 0.02 rectfill -0.462065 nxsetgray -0 0.42 9 0.02 rectfill -0.462065 nxsetgray -0 0.44 9 0.02 rectfill -0.462065 nxsetgray -0 0.46 9 0.02 rectfill -0.462065 nxsetgray -0 0.48 9 0.02 rectfill -0.462065 nxsetgray -0 0.5 9 0.02 rectfill -0.462065 nxsetgray -0 0.52 9 0.02 rectfill -0.462065 nxsetgray -0 0.54 9 0.02 rectfill -0.462065 nxsetgray -0 0.56 9 0.02 rectfill -0.462065 nxsetgray -0 0.58 9 0.02 rectfill -0.462065 nxsetgray -0 0.6 9 0.02 rectfill -0.462065 nxsetgray -0 0.62 9 0.02 rectfill -0.462065 nxsetgray -0 0.64 9 0.02 rectfill -0.462065 nxsetgray -0 0.66 9 0.02 rectfill -0.462065 nxsetgray -0 0.68 9 0.02 rectfill -0.462065 nxsetgray -0 0.7 9 0.02 rectfill -0.462065 nxsetgray -0 0.72 9 0.02 rectfill -0.462065 nxsetgray -0 0.74 9 0.02 rectfill -0.462065 nxsetgray -0 0.76 9 0.02 rectfill -0.462065 nxsetgray -0 0.78 9 0.02 rectfill -0.462065 nxsetgray -0 0.8 9 0.02 rectfill -0.462065 nxsetgray -0 0.82 9 0.02 rectfill -0.462065 nxsetgray -0 0.84 9 0.02 rectfill -0.462065 nxsetgray -0 0.86 9 0.02 rectfill -0.462065 nxsetgray -0 0.88 9 0.02 rectfill -0.462065 nxsetgray -0 0.9 9 0.02 rectfill -0.462065 nxsetgray -0 0.92 9 0.02 rectfill -0.462065 nxsetgray -0 0.94 9 0.02 rectfill -0.462065 nxsetgray -0 0.96 9 0.02 rectfill -0.462065 nxsetgray -0 0.98 9 0.02 rectfill -N -grestore -0.15 L -0 nxsetgray -9 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -[4] 0 setdash -210 513 T -N -gsave N -0 0 m 58 0 l -clip -N -0 setlinewidth -0.462065 nxsetgray -0 0 58 0.02 rectfill -0.462065 nxsetgray -0 0.02 58 0.02 rectfill -0.462065 nxsetgray -0 0.04 58 0.02 rectfill -0.462065 nxsetgray -0 0.06 58 0.02 rectfill -0.462065 nxsetgray -0 0.08 58 0.02 rectfill -0.462065 nxsetgray -0 0.1 58 0.02 rectfill -0.462065 nxsetgray -0 0.12 58 0.02 rectfill -0.462065 nxsetgray -0 0.14 58 0.02 rectfill -0.462065 nxsetgray -0 0.16 58 0.02 rectfill -0.462065 nxsetgray -0 0.18 58 0.02 rectfill -0.462065 nxsetgray -0 0.2 58 0.02 rectfill -0.462065 nxsetgray -0 0.22 58 0.02 rectfill -0.462065 nxsetgray -0 0.24 58 0.02 rectfill -0.462065 nxsetgray -0 0.26 58 0.02 rectfill -0.462065 nxsetgray -0 0.28 58 0.02 rectfill -0.462065 nxsetgray -0 0.3 58 0.02 rectfill -0.462065 nxsetgray -0 0.32 58 0.02 rectfill -0.462065 nxsetgray -0 0.34 58 0.02 rectfill -0.462065 nxsetgray -0 0.36 58 0.02 rectfill -0.462065 nxsetgray -0 0.38 58 0.02 rectfill -0.462065 nxsetgray -0 0.4 58 0.02 rectfill -0.462065 nxsetgray -0 0.42 58 0.02 rectfill -0.462065 nxsetgray -0 0.44 58 0.02 rectfill -0.462065 nxsetgray -0 0.46 58 0.02 rectfill -0.462065 nxsetgray -0 0.48 58 0.02 rectfill -0.462065 nxsetgray -0 0.5 58 0.02 rectfill -0.462065 nxsetgray -0 0.52 58 0.02 rectfill -0.462065 nxsetgray -0 0.54 58 0.02 rectfill -0.462065 nxsetgray -0 0.56 58 0.02 rectfill -0.462065 nxsetgray -0 0.58 58 0.02 rectfill -0.462065 nxsetgray -0 0.6 58 0.02 rectfill -0.462065 nxsetgray -0 0.62 58 0.02 rectfill -0.462065 nxsetgray -0 0.64 58 0.02 rectfill -0.462065 nxsetgray -0 0.66 58 0.02 rectfill -0.462065 nxsetgray -0 0.68 58 0.02 rectfill -0.462065 nxsetgray -0 0.7 58 0.02 rectfill -0.462065 nxsetgray -0 0.72 58 0.02 rectfill -0.462065 nxsetgray -0 0.74 58 0.02 rectfill -0.462065 nxsetgray -0 0.76 58 0.02 rectfill -0.462065 nxsetgray -0 0.78 58 0.02 rectfill -0.462065 nxsetgray -0 0.8 58 0.02 rectfill -0.462065 nxsetgray -0 0.82 58 0.02 rectfill -0.462065 nxsetgray -0 0.84 58 0.02 rectfill -0.462065 nxsetgray -0 0.86 58 0.02 rectfill -0.462065 nxsetgray -0 0.88 58 0.02 rectfill -0.462065 nxsetgray -0 0.9 58 0.02 rectfill -0.462065 nxsetgray -0 0.92 58 0.02 rectfill -0.462065 nxsetgray -0 0.94 58 0.02 rectfill -0.462065 nxsetgray -0 0.96 58 0.02 rectfill -0.462065 nxsetgray -0 0.98 58 0.02 rectfill -N -grestore -0.15 L -0 nxsetgray -58 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -[4] 0 setdash -211 566 T -N -gsave N -0 0 m 59 0 l -clip -N -0 setlinewidth -0.462065 nxsetgray -0 0 59 0.02 rectfill -0.462065 nxsetgray -0 0.02 59 0.02 rectfill -0.462065 nxsetgray -0 0.04 59 0.02 rectfill -0.462065 nxsetgray -0 0.06 59 0.02 rectfill -0.462065 nxsetgray -0 0.08 59 0.02 rectfill -0.462065 nxsetgray -0 0.1 59 0.02 rectfill -0.462065 nxsetgray -0 0.12 59 0.02 rectfill -0.462065 nxsetgray -0 0.14 59 0.02 rectfill -0.462065 nxsetgray -0 0.16 59 0.02 rectfill -0.462065 nxsetgray -0 0.18 59 0.02 rectfill -0.462065 nxsetgray -0 0.2 59 0.02 rectfill -0.462065 nxsetgray -0 0.22 59 0.02 rectfill -0.462065 nxsetgray -0 0.24 59 0.02 rectfill -0.462065 nxsetgray -0 0.26 59 0.02 rectfill -0.462065 nxsetgray -0 0.28 59 0.02 rectfill -0.462065 nxsetgray -0 0.3 59 0.02 rectfill -0.462065 nxsetgray -0 0.32 59 0.02 rectfill -0.462065 nxsetgray -0 0.34 59 0.02 rectfill -0.462065 nxsetgray -0 0.36 59 0.02 rectfill -0.462065 nxsetgray -0 0.38 59 0.02 rectfill -0.462065 nxsetgray -0 0.4 59 0.02 rectfill -0.462065 nxsetgray -0 0.42 59 0.02 rectfill -0.462065 nxsetgray -0 0.44 59 0.02 rectfill -0.462065 nxsetgray -0 0.46 59 0.02 rectfill -0.462065 nxsetgray -0 0.48 59 0.02 rectfill -0.462065 nxsetgray -0 0.5 59 0.02 rectfill -0.462065 nxsetgray -0 0.52 59 0.02 rectfill -0.462065 nxsetgray -0 0.54 59 0.02 rectfill -0.462065 nxsetgray -0 0.56 59 0.02 rectfill -0.462065 nxsetgray -0 0.58 59 0.02 rectfill -0.462065 nxsetgray -0 0.6 59 0.02 rectfill -0.462065 nxsetgray -0 0.62 59 0.02 rectfill -0.462065 nxsetgray -0 0.64 59 0.02 rectfill -0.462065 nxsetgray -0 0.66 59 0.02 rectfill -0.462065 nxsetgray -0 0.68 59 0.02 rectfill -0.462065 nxsetgray -0 0.7 59 0.02 rectfill -0.462065 nxsetgray -0 0.72 59 0.02 rectfill -0.462065 nxsetgray -0 0.74 59 0.02 rectfill -0.462065 nxsetgray -0 0.76 59 0.02 rectfill -0.462065 nxsetgray -0 0.78 59 0.02 rectfill -0.462065 nxsetgray -0 0.8 59 0.02 rectfill -0.462065 nxsetgray -0 0.82 59 0.02 rectfill -0.462065 nxsetgray -0 0.84 59 0.02 rectfill -0.462065 nxsetgray -0 0.86 59 0.02 rectfill -0.462065 nxsetgray -0 0.88 59 0.02 rectfill -0.462065 nxsetgray -0 0.9 59 0.02 rectfill -0.462065 nxsetgray -0 0.92 59 0.02 rectfill -0.462065 nxsetgray -0 0.94 59 0.02 rectfill -0.462065 nxsetgray -0 0.96 59 0.02 rectfill -0.462065 nxsetgray -0 0.98 59 0.02 rectfill -N -grestore -0.15 L -0 nxsetgray -59 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 223 490] concat -[1 0 0 1 1 1] concat -N -gsave N -17 22 0 0 ovalPath -clip -N -0 setlinewidth -0.462065 nxsetgray -0 0 17 0.44 rectfill -0.462065 nxsetgray -0 0.44 17 0.44 rectfill -0.462065 nxsetgray -0 0.88 17 0.44 rectfill -0.462065 nxsetgray -0 1.32 17 0.44 rectfill -0.462065 nxsetgray -0 1.76 17 0.44 rectfill -0.462065 nxsetgray -0 2.2 17 0.44 rectfill -0.462065 nxsetgray -0 2.64 17 0.44 rectfill -0.462065 nxsetgray -0 3.08 17 0.44 rectfill -0.462065 nxsetgray -0 3.52 17 0.44 rectfill -0.462065 nxsetgray -0 3.96 17 0.44 rectfill -0.462065 nxsetgray -0 4.4 17 0.44 rectfill -0.462065 nxsetgray -0 4.84 17 0.44 rectfill -0.462065 nxsetgray -0 5.28 17 0.44 rectfill -0.462065 nxsetgray -0 5.72 17 0.44 rectfill -0.462065 nxsetgray -0 6.16 17 0.44 rectfill -0.462065 nxsetgray -0 6.6 17 0.44 rectfill -0.462065 nxsetgray -0 7.04 17 0.44 rectfill -0.462065 nxsetgray -0 7.48 17 0.44 rectfill -0.462065 nxsetgray -0 7.920001 17 0.44 rectfill -0.462065 nxsetgray -0 8.360001 17 0.44 rectfill -0.462065 nxsetgray -0 8.8 17 0.44 rectfill -0.462065 nxsetgray -0 9.24 17 0.44 rectfill -0.462065 nxsetgray -0 9.679999 17 0.44 rectfill -0.462065 nxsetgray -0 10.119999 17 0.44 rectfill -0.462065 nxsetgray -0 10.559999 17 0.44 rectfill -0.462065 nxsetgray -0 10.999998 17 0.44 rectfill -0.462065 nxsetgray -0 11.439998 17 0.44 rectfill -0.462065 nxsetgray -0 11.879997 17 0.44 rectfill -0.462065 nxsetgray -0 12.319997 17 0.44 rectfill -0.462065 nxsetgray -0 12.759996 17 0.44 rectfill -0.462065 nxsetgray -0 13.199996 17 0.44 rectfill -0.462065 nxsetgray -0 13.639996 17 0.44 rectfill -0.462065 nxsetgray -0 14.079995 17 0.44 rectfill -0.462065 nxsetgray -0 14.519995 17 0.44 rectfill -0.462065 nxsetgray -0 14.959994 17 0.44 rectfill -0.462065 nxsetgray -0 15.399994 17 0.44 rectfill -0.462065 nxsetgray -0 15.839993 17 0.44 rectfill -0.462065 nxsetgray -0 16.279993 17 0.44 rectfill -0.462065 nxsetgray -0 16.719994 17 0.44 rectfill -0.462065 nxsetgray -0 17.159994 17 0.44 rectfill -0.462065 nxsetgray -0 17.599995 17 0.44 rectfill -0.462065 nxsetgray -0 18.039995 17 0.44 rectfill -0.462065 nxsetgray -0 18.479996 17 0.44 rectfill -0.462065 nxsetgray -0 18.919996 17 0.44 rectfill -0.462065 nxsetgray -0 19.359997 17 0.44 rectfill -0.462065 nxsetgray -0 19.799997 17 0.44 rectfill -0.462065 nxsetgray -0 20.239998 17 0.44 rectfill -0.462065 nxsetgray -0 20.679998 17 0.44 rectfill -0.462065 nxsetgray -0 21.119999 17 0.44 rectfill -0.462065 nxsetgray -0 21.559999 17 0.44 rectfill -N -grestore -0.15 L -0.462065 nxsetgray -gsave -17 22 0 0 oval 0.058824 0.045455 S s -grestore -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 223 467] concat -[1 0 0 1 1 1] concat -N -gsave N -16 16 0 0 ovalPath -clip -N -0 setlinewidth -0.462065 nxsetgray -0 0 16 0.32 rectfill -0.462065 nxsetgray -0 0.32 16 0.32 rectfill -0.462065 nxsetgray -0 0.64 16 0.32 rectfill -0.462065 nxsetgray -0 0.96 16 0.32 rectfill -0.462065 nxsetgray -0 1.28 16 0.32 rectfill -0.462065 nxsetgray -0 1.6 16 0.32 rectfill -0.462065 nxsetgray -0 1.92 16 0.32 rectfill -0.462065 nxsetgray -0 2.24 16 0.32 rectfill -0.462065 nxsetgray -0 2.56 16 0.32 rectfill -0.462065 nxsetgray -0 2.88 16 0.32 rectfill -0.462065 nxsetgray -0 3.2 16 0.32 rectfill -0.462065 nxsetgray -0 3.52 16 0.32 rectfill -0.462065 nxsetgray -0 3.839999 16 0.32 rectfill -0.462065 nxsetgray -0 4.159999 16 0.32 rectfill -0.462065 nxsetgray -0 4.48 16 0.32 rectfill -0.462065 nxsetgray -0 4.8 16 0.32 rectfill -0.462065 nxsetgray -0 5.12 16 0.32 rectfill -0.462065 nxsetgray -0 5.44 16 0.32 rectfill -0.462065 nxsetgray -0 5.76 16 0.32 rectfill -0.462065 nxsetgray -0 6.08 16 0.32 rectfill -0.462065 nxsetgray -0 6.400001 16 0.32 rectfill -0.462065 nxsetgray -0 6.720001 16 0.32 rectfill -0.462065 nxsetgray -0 7.040001 16 0.32 rectfill -0.462065 nxsetgray -0 7.360001 16 0.32 rectfill -0.462065 nxsetgray -0 7.680001 16 0.32 rectfill -0.462065 nxsetgray -0 8.000001 16 0.32 rectfill -0.462065 nxsetgray -0 8.320001 16 0.32 rectfill -0.462065 nxsetgray -0 8.64 16 0.32 rectfill -0.462065 nxsetgray -0 8.96 16 0.32 rectfill -0.462065 nxsetgray -0 9.28 16 0.32 rectfill -0.462065 nxsetgray -0 9.599999 16 0.32 rectfill -0.462065 nxsetgray -0 9.919999 16 0.32 rectfill -0.462065 nxsetgray -0 10.239999 16 0.32 rectfill -0.462065 nxsetgray -0 10.559999 16 0.32 rectfill -0.462065 nxsetgray -0 10.879998 16 0.32 rectfill -0.462065 nxsetgray -0 11.199998 16 0.32 rectfill -0.462065 nxsetgray -0 11.519998 16 0.32 rectfill -0.462065 nxsetgray -0 11.839997 16 0.32 rectfill -0.462065 nxsetgray -0 12.159997 16 0.32 rectfill -0.462065 nxsetgray -0 12.479997 16 0.32 rectfill -0.462065 nxsetgray -0 12.799996 16 0.32 rectfill -0.462065 nxsetgray -0 13.119996 16 0.32 rectfill -0.462065 nxsetgray -0 13.439996 16 0.32 rectfill -0.462065 nxsetgray -0 13.759995 16 0.32 rectfill -0.462065 nxsetgray -0 14.079995 16 0.32 rectfill -0.462065 nxsetgray -0 14.399995 16 0.32 rectfill -0.462065 nxsetgray -0 14.719995 16 0.32 rectfill -0.462065 nxsetgray -0 15.039994 16 0.32 rectfill -0.462065 nxsetgray -0 15.359994 16 0.32 rectfill -0.462065 nxsetgray -0 15.679994 16 0.32 rectfill -N -grestore -0.15 L -0.462065 nxsetgray -gsave -16 16 0 0 oval 0.0625 0.0625 S s -grestore -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 216 461] concat -[1 0 0 1 1 1] concat -N -gsave N -17 17 0 0 ovalPath -clip -N -0 setlinewidth -0.462065 nxsetgray -0 0 17 0.34 rectfill -0.462065 nxsetgray -0 0.34 17 0.34 rectfill -0.462065 nxsetgray -0 0.68 17 0.34 rectfill -0.462065 nxsetgray -0 1.02 17 0.34 rectfill -0.462065 nxsetgray -0 1.36 17 0.34 rectfill -0.462065 nxsetgray -0 1.7 17 0.34 rectfill -0.462065 nxsetgray -0 2.04 17 0.34 rectfill -0.462065 nxsetgray -0 2.38 17 0.34 rectfill -0.462065 nxsetgray -0 2.72 17 0.34 rectfill -0.462065 nxsetgray -0 3.06 17 0.34 rectfill -0.462065 nxsetgray -0 3.4 17 0.34 rectfill -0.462065 nxsetgray -0 3.74 17 0.34 rectfill -0.462065 nxsetgray -0 4.079999 17 0.34 rectfill -0.462065 nxsetgray -0 4.42 17 0.34 rectfill -0.462065 nxsetgray -0 4.76 17 0.34 rectfill -0.462065 nxsetgray -0 5.1 17 0.34 rectfill -0.462065 nxsetgray -0 5.44 17 0.34 rectfill -0.462065 nxsetgray -0 5.78 17 0.34 rectfill -0.462065 nxsetgray -0 6.12 17 0.34 rectfill -0.462065 nxsetgray -0 6.460001 17 0.34 rectfill -0.462065 nxsetgray -0 6.800001 17 0.34 rectfill -0.462065 nxsetgray -0 7.140001 17 0.34 rectfill -0.462065 nxsetgray -0 7.480001 17 0.34 rectfill -0.462065 nxsetgray -0 7.820001 17 0.34 rectfill -0.462065 nxsetgray -0 8.160001 17 0.34 rectfill -0.462065 nxsetgray -0 8.500001 17 0.34 rectfill -0.462065 nxsetgray -0 8.840001 17 0.34 rectfill -0.462065 nxsetgray -0 9.180001 17 0.34 rectfill -0.462065 nxsetgray -0 9.520001 17 0.34 rectfill -0.462065 nxsetgray -0 9.860002 17 0.34 rectfill -0.462065 nxsetgray -0 10.200002 17 0.34 rectfill -0.462065 nxsetgray -0 10.540002 17 0.34 rectfill -0.462065 nxsetgray -0 10.880002 17 0.34 rectfill -0.462065 nxsetgray -0 11.220002 17 0.34 rectfill -0.462065 nxsetgray -0 11.560002 17 0.34 rectfill -0.462065 nxsetgray -0 11.900002 17 0.34 rectfill -0.462065 nxsetgray -0 12.240003 17 0.34 rectfill -0.462065 nxsetgray -0 12.580003 17 0.34 rectfill -0.462065 nxsetgray -0 12.920003 17 0.34 rectfill -0.462065 nxsetgray -0 13.260003 17 0.34 rectfill -0.462065 nxsetgray -0 13.600003 17 0.34 rectfill -0.462065 nxsetgray -0 13.940003 17 0.34 rectfill -0.462065 nxsetgray -0 14.280004 17 0.34 rectfill -0.462065 nxsetgray -0 14.620004 17 0.34 rectfill -0.462065 nxsetgray -0 14.960004 17 0.34 rectfill -0.462065 nxsetgray -0 15.300004 17 0.34 rectfill -0.462065 nxsetgray -0 15.640004 17 0.34 rectfill -0.462065 nxsetgray -0 15.980004 17 0.34 rectfill -0.462065 nxsetgray -0 16.320004 17 0.34 rectfill -0.462065 nxsetgray -0 16.660004 17 0.34 rectfill -N -grestore -0.15 L -0.462065 nxsetgray -gsave -17 17 0 0 oval 0.058824 0.058824 S s -grestore -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 223 474] concat -[1 0 0 1 1 1] concat -N -gsave N -21 20 0 0 ovalPath -clip -N -0 setlinewidth -0.462065 nxsetgray -0 0 21 0.4 rectfill -0.462065 nxsetgray -0 0.4 21 0.4 rectfill -0.462065 nxsetgray -0 0.8 21 0.4 rectfill -0.462065 nxsetgray -0 1.2 21 0.4 rectfill -0.462065 nxsetgray -0 1.6 21 0.4 rectfill -0.462065 nxsetgray -0 2 21 0.4 rectfill -0.462065 nxsetgray -0 2.4 21 0.4 rectfill -0.462065 nxsetgray -0 2.8 21 0.4 rectfill -0.462065 nxsetgray -0 3.2 21 0.4 rectfill -0.462065 nxsetgray -0 3.6 21 0.4 rectfill -0.462065 nxsetgray -0 4 21 0.4 rectfill -0.462065 nxsetgray -0 4.400001 21 0.4 rectfill -0.462065 nxsetgray -0 4.800001 21 0.4 rectfill -0.462065 nxsetgray -0 5.200001 21 0.4 rectfill -0.462065 nxsetgray -0 5.600001 21 0.4 rectfill -0.462065 nxsetgray -0 6.000001 21 0.4 rectfill -0.462065 nxsetgray -0 6.400001 21 0.4 rectfill -0.462065 nxsetgray -0 6.800001 21 0.4 rectfill -0.462065 nxsetgray -0 7.200001 21 0.4 rectfill -0.462065 nxsetgray -0 7.600001 21 0.4 rectfill -0.462065 nxsetgray -0 8.000001 21 0.4 rectfill -0.462065 nxsetgray -0 8.400001 21 0.4 rectfill -0.462065 nxsetgray -0 8.8 21 0.4 rectfill -0.462065 nxsetgray -0 9.2 21 0.4 rectfill -0.462065 nxsetgray -0 9.599999 21 0.4 rectfill -0.462065 nxsetgray -0 9.999999 21 0.4 rectfill -0.462065 nxsetgray -0 10.399999 21 0.4 rectfill -0.462065 nxsetgray -0 10.799998 21 0.4 rectfill -0.462065 nxsetgray -0 11.199998 21 0.4 rectfill -0.462065 nxsetgray -0 11.599998 21 0.4 rectfill -0.462065 nxsetgray -0 11.999997 21 0.4 rectfill -0.462065 nxsetgray -0 12.399997 21 0.4 rectfill -0.462065 nxsetgray -0 12.799996 21 0.4 rectfill -0.462065 nxsetgray -0 13.199996 21 0.4 rectfill -0.462065 nxsetgray -0 13.599996 21 0.4 rectfill -0.462065 nxsetgray -0 13.999995 21 0.4 rectfill -0.462065 nxsetgray -0 14.399995 21 0.4 rectfill -0.462065 nxsetgray -0 14.799994 21 0.4 rectfill -0.462065 nxsetgray -0 15.199994 21 0.4 rectfill -0.462065 nxsetgray -0 15.599994 21 0.4 rectfill -0.462065 nxsetgray -0 15.999993 21 0.4 rectfill -0.462065 nxsetgray -0 16.399994 21 0.4 rectfill -0.462065 nxsetgray -0 16.799994 21 0.4 rectfill -0.462065 nxsetgray -0 17.199993 21 0.4 rectfill -0.462065 nxsetgray -0 17.599993 21 0.4 rectfill -0.462065 nxsetgray -0 17.999992 21 0.4 rectfill -0.462065 nxsetgray -0 18.399992 21 0.4 rectfill -0.462065 nxsetgray -0 18.799992 21 0.4 rectfill -0.462065 nxsetgray -0 19.199991 21 0.4 rectfill -0.462065 nxsetgray -0 19.599991 21 0.4 rectfill -N -grestore -0.15 L -0.462065 nxsetgray -gsave -21 20 0 0 oval 0.047619 0.05 S s -grestore -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 225 493] concat -[1 0 0 1 1 1] concat -N -gsave N -14 10 0 0 ovalPath -clip -N -0 setlinewidth -0.462065 nxsetgray -0 0 14 0.2 rectfill -0.462065 nxsetgray -0 0.2 14 0.2 rectfill -0.462065 nxsetgray -0 0.4 14 0.2 rectfill -0.462065 nxsetgray -0 0.6 14 0.2 rectfill -0.462065 nxsetgray -0 0.8 14 0.2 rectfill -0.462065 nxsetgray -0 1 14 0.2 rectfill -0.462065 nxsetgray -0 1.2 14 0.2 rectfill -0.462065 nxsetgray -0 1.4 14 0.2 rectfill -0.462065 nxsetgray -0 1.6 14 0.2 rectfill -0.462065 nxsetgray -0 1.8 14 0.2 rectfill -0.462065 nxsetgray -0 2 14 0.2 rectfill -0.462065 nxsetgray -0 2.2 14 0.2 rectfill -0.462065 nxsetgray -0 2.4 14 0.2 rectfill -0.462065 nxsetgray -0 2.6 14 0.2 rectfill -0.462065 nxsetgray -0 2.8 14 0.2 rectfill -0.462065 nxsetgray -0 3 14 0.2 rectfill -0.462065 nxsetgray -0 3.200001 14 0.2 rectfill -0.462065 nxsetgray -0 3.400001 14 0.2 rectfill -0.462065 nxsetgray -0 3.600001 14 0.2 rectfill -0.462065 nxsetgray -0 3.800001 14 0.2 rectfill -0.462065 nxsetgray -0 4 14 0.2 rectfill -0.462065 nxsetgray -0 4.2 14 0.2 rectfill -0.462065 nxsetgray -0 4.4 14 0.2 rectfill -0.462065 nxsetgray -0 4.6 14 0.2 rectfill -0.462065 nxsetgray -0 4.8 14 0.2 rectfill -0.462065 nxsetgray -0 5 14 0.2 rectfill -0.462065 nxsetgray -0 5.199999 14 0.2 rectfill -0.462065 nxsetgray -0 5.399999 14 0.2 rectfill -0.462065 nxsetgray -0 5.599999 14 0.2 rectfill -0.462065 nxsetgray -0 5.799999 14 0.2 rectfill -0.462065 nxsetgray -0 5.999999 14 0.2 rectfill -0.462065 nxsetgray -0 6.199998 14 0.2 rectfill -0.462065 nxsetgray -0 6.399998 14 0.2 rectfill -0.462065 nxsetgray -0 6.599998 14 0.2 rectfill -0.462065 nxsetgray -0 6.799998 14 0.2 rectfill -0.462065 nxsetgray -0 6.999998 14 0.2 rectfill -0.462065 nxsetgray -0 7.199997 14 0.2 rectfill -0.462065 nxsetgray -0 7.399997 14 0.2 rectfill -0.462065 nxsetgray -0 7.599997 14 0.2 rectfill -0.462065 nxsetgray -0 7.799997 14 0.2 rectfill -0.462065 nxsetgray -0 7.999997 14 0.2 rectfill -0.462065 nxsetgray -0 8.199997 14 0.2 rectfill -0.462065 nxsetgray -0 8.399997 14 0.2 rectfill -0.462065 nxsetgray -0 8.599997 14 0.2 rectfill -0.462065 nxsetgray -0 8.799996 14 0.2 rectfill -0.462065 nxsetgray -0 8.999996 14 0.2 rectfill -0.462065 nxsetgray -0 9.199996 14 0.2 rectfill -0.462065 nxsetgray -0 9.399996 14 0.2 rectfill -0.462065 nxsetgray -0 9.599996 14 0.2 rectfill -0.462065 nxsetgray -0 9.799995 14 0.2 rectfill -N -grestore -0.15 L -0.462065 nxsetgray -gsave -14 10 0 0 oval 0.071429 0.1 S s -grestore -0 0 T -grestore -0 0 0.15 1 10 SU -225 494 T -N -0.15 L -0 nxsetgray -0 0 m -4 -1 12 0 14 -5 c -16 -11 16.666666 -13 20 -18 c -s -grestore -0 0 0.15 1 10 SU -224 441 T -N -0.15 L -0 nxsetgray -0 0 m -3.666667 2.333333 8 3 11 6 c -14 9 20 21 22 19 c -23 18 22.666666 18.666666 25 19 c -s -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -showpage -%%Trailer -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype33/prob08.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype33/prob08.gif deleted file mode 100755 index d395b571c..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype33/prob08.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype33/prob08.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype33/prob08.pdf deleted file mode 100644 index 6bdf963c1..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype33/prob08.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av1.eps deleted file mode 100755 index 64fe609d0..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av1.eps +++ /dev/null @@ -1,1255 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 395 208 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Tue, Apr 2, 1996 6:36 PM -%%DocumentFonts: (atend) -%%EndComments -0 208 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -44.50 18.00 44.50 171.00 MacLine -376.50 18.00 376.50 171.00 MacLine -1 ps -1.00 ps -376.50 171.50 369.50 171.50 MacLine -44.50 171.50 51.50 171.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(-6) 32.12 174.75 8.88 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 165.62 373.00 165.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 165.12 373.00 165.12 MacLine -44.50 165.12 48.00 165.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 159.12 373.00 159.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 158.62 373.00 158.62 MacLine -44.50 158.62 48.00 158.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 152.75 373.00 152.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 152.25 373.00 152.25 MacLine -44.50 152.25 48.00 152.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 146.25 369.50 146.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 145.88 369.50 145.88 MacLine -44.50 145.88 51.50 145.88 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-4) 32.12 149.12 8.88 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 139.88 373.00 139.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 139.38 373.00 139.38 MacLine -44.50 139.38 48.00 139.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 133.50 373.00 133.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 133.00 373.00 133.00 MacLine -44.50 133.00 48.00 133.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 127.12 373.00 127.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 126.62 373.00 126.62 MacLine -44.50 126.62 48.00 126.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 120.50 369.50 120.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 120.12 369.50 120.12 MacLine -44.50 120.12 51.50 120.12 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-2) 32.12 123.38 8.88 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 114.25 373.00 114.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 113.75 373.00 113.75 MacLine -44.50 113.75 48.00 113.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 107.88 373.00 107.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 107.38 373.00 107.38 MacLine -44.50 107.38 48.00 107.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 101.38 373.00 101.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 100.88 373.00 100.88 MacLine -44.50 100.88 48.00 100.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 94.88 369.50 94.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 94.50 369.50 94.50 MacLine -44.50 94.50 51.50 94.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 35.50 97.75 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 88.62 373.00 88.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 88.12 373.00 88.12 MacLine -44.50 88.12 48.00 88.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 82.12 373.00 82.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 81.62 373.00 81.62 MacLine -44.50 81.62 48.00 81.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 75.75 373.00 75.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 75.25 373.00 75.25 MacLine -44.50 75.25 48.00 75.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 69.25 369.50 69.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 68.88 369.50 68.88 MacLine -44.50 68.88 51.50 68.88 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 35.50 72.12 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 62.88 373.00 62.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 62.38 373.00 62.38 MacLine -44.50 62.38 48.00 62.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 56.50 373.00 56.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 56.00 373.00 56.00 MacLine -44.50 56.00 48.00 56.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 50.12 373.00 50.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 49.62 373.00 49.62 MacLine -44.50 49.62 48.00 49.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 43.50 369.50 43.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 43.12 369.50 43.12 MacLine -44.50 43.12 51.50 43.12 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 35.50 46.38 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 37.25 373.00 37.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 36.75 373.00 36.75 MacLine -44.50 36.75 48.00 36.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 30.88 373.00 30.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 30.38 373.00 30.38 MacLine -44.50 30.38 48.00 30.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 24.38 373.00 24.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 23.88 373.00 23.88 MacLine -44.50 23.88 48.00 23.88 MacLine -1 ps -1.00 ps -376.50 17.50 369.50 17.50 MacLine -44.50 17.50 51.50 17.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(6) 35.50 20.75 5.50 WS -gsave 1.00 ps 45.50 95.00 376.50 95.00 2 CapLine grestore -14.00 (_Helvetica) 0 F -gsave 10.75 114.38 translate -90 rotate -(y \(cm\)) 0.00 0.00 38.75 WS -grestore -1.00 ps -44.50 171.50 376.50 171.50 MacLine -44.50 17.50 376.50 17.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -372.00 168.00 372.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -371.50 17.50 371.50 21.00 MacLine -371.50 171.50 371.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -365.38 168.00 365.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -364.88 17.50 364.88 21.00 MacLine -364.88 171.50 364.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -358.62 168.00 358.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -358.12 17.50 358.12 21.00 MacLine -358.12 171.50 358.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -352.00 168.00 352.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -351.50 17.50 351.50 21.00 MacLine -351.50 171.50 351.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -345.25 166.25 345.25 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -344.75 17.50 344.75 22.75 MacLine -344.75 171.50 344.75 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -338.62 168.00 338.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -338.12 17.50 338.12 21.00 MacLine -338.12 171.50 338.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -332.00 168.00 332.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -331.50 17.50 331.50 21.00 MacLine -331.50 171.50 331.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -325.25 168.00 325.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -324.75 17.50 324.75 21.00 MacLine -324.75 171.50 324.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -318.62 168.00 318.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -318.12 17.50 318.12 21.00 MacLine -318.12 171.50 318.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -311.75 164.50 311.75 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -311.38 17.50 311.38 24.50 MacLine -311.38 171.50 311.38 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(80) 306.38 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -305.25 168.00 305.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -304.75 17.50 304.75 21.00 MacLine -304.75 171.50 304.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -298.62 168.00 298.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -298.12 17.50 298.12 21.00 MacLine -298.12 171.50 298.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -291.88 168.00 291.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -291.38 17.50 291.38 21.00 MacLine -291.38 171.50 291.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -285.25 168.00 285.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -284.75 17.50 284.75 21.00 MacLine -284.75 171.50 284.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -278.62 166.25 278.62 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -278.12 17.50 278.12 22.75 MacLine -278.12 171.50 278.12 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -271.88 168.00 271.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -271.38 17.50 271.38 21.00 MacLine -271.38 171.50 271.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -265.25 168.00 265.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -264.75 17.50 264.75 21.00 MacLine -264.75 171.50 264.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -258.50 168.00 258.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -258.00 17.50 258.00 21.00 MacLine -258.00 171.50 258.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -251.88 168.00 251.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -251.38 17.50 251.38 21.00 MacLine -251.38 171.50 251.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -245.12 164.50 245.12 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -244.75 17.50 244.75 24.50 MacLine -244.75 171.50 244.75 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(60) 239.75 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -238.50 168.00 238.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -238.00 17.50 238.00 21.00 MacLine -238.00 171.50 238.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -231.88 168.00 231.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -231.38 17.50 231.38 21.00 MacLine -231.38 171.50 231.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -225.12 168.00 225.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -224.62 17.50 224.62 21.00 MacLine -224.62 171.50 224.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -218.50 168.00 218.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -218.00 17.50 218.00 21.00 MacLine -218.00 171.50 218.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -211.88 166.25 211.88 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -211.38 17.50 211.38 22.75 MacLine -211.38 171.50 211.38 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -205.12 168.00 205.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -204.62 17.50 204.62 21.00 MacLine -204.62 171.50 204.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -198.50 168.00 198.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -198.00 17.50 198.00 21.00 MacLine -198.00 171.50 198.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -191.88 168.00 191.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -191.38 17.50 191.38 21.00 MacLine -191.38 171.50 191.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -185.12 168.00 185.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -184.62 17.50 184.62 21.00 MacLine -184.62 171.50 184.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -178.38 164.50 178.38 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -178.00 17.50 178.00 24.50 MacLine -178.00 171.50 178.00 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(40) 173.00 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -171.75 168.00 171.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -171.25 17.50 171.25 21.00 MacLine -171.25 171.50 171.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -165.12 168.00 165.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -164.62 17.50 164.62 21.00 MacLine -164.62 171.50 164.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -158.50 168.00 158.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -158.00 17.50 158.00 21.00 MacLine -158.00 171.50 158.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -151.75 168.00 151.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -151.25 17.50 151.25 21.00 MacLine -151.25 171.50 151.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -145.12 166.25 145.12 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -144.62 17.50 144.62 22.75 MacLine -144.62 171.50 144.62 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -138.38 168.00 138.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -137.88 17.50 137.88 21.00 MacLine -137.88 171.50 137.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -131.75 168.00 131.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -131.25 17.50 131.25 21.00 MacLine -131.25 171.50 131.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -125.12 168.00 125.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -124.62 17.50 124.62 21.00 MacLine -124.62 171.50 124.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -118.38 168.00 118.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -117.88 17.50 117.88 21.00 MacLine -117.88 171.50 117.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -111.62 164.50 111.62 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -111.25 17.50 111.25 24.50 MacLine -111.25 171.50 111.25 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(20) 106.25 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -105.00 168.00 105.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -104.50 17.50 104.50 21.00 MacLine -104.50 171.50 104.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -98.38 168.00 98.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -97.88 17.50 97.88 21.00 MacLine -97.88 171.50 97.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -91.75 168.00 91.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -91.25 17.50 91.25 21.00 MacLine -91.25 171.50 91.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -85.00 168.00 85.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -84.50 17.50 84.50 21.00 MacLine -84.50 171.50 84.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -78.38 166.25 78.38 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -77.88 17.50 77.88 22.75 MacLine -77.88 171.50 77.88 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -71.75 168.00 71.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -71.25 17.50 71.25 21.00 MacLine -71.25 171.50 71.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -65.00 168.00 65.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -64.50 17.50 64.50 21.00 MacLine -64.50 171.50 64.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -58.38 168.00 58.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -57.88 17.50 57.88 21.00 MacLine -57.88 171.50 57.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -51.62 168.00 51.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -51.12 17.50 51.12 21.00 MacLine -51.12 171.50 51.12 168.00 MacLine -1 ps -1.00 ps -44.50 17.50 44.50 24.50 MacLine -44.50 171.50 44.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 42.25 184.25 5.50 WS -14.00 (_Helvetica) 0 F -(x \(cm\)) 191.62 204.75 38.75 WS -1 0 0 SetFore UseFore -2.00 ps -newpath 45.00 148.88 M -46.62 145.88 L -48.38 142.75 L -50.00 139.25 L -51.62 135.38 L -53.38 131.38 L -55.00 127.12 L -56.62 122.62 L -58.38 118.00 L -60.00 113.25 L -61.75 108.38 L -63.38 103.38 L -65.00 98.38 L -66.62 93.38 L -68.38 88.38 L -70.00 83.38 L -71.75 78.38 L -73.38 73.62 L -75.00 69.00 L -76.75 64.38 L -78.38 60.12 L -80.00 56.00 L -81.75 52.12 L -83.38 48.50 L -85.00 45.12 L -86.75 42.12 L -88.38 39.50 L -90.00 37.12 L -91.75 35.12 L -93.38 33.50 L -95.00 32.25 L -96.75 31.38 L -98.38 30.88 L -100.00 30.88 L -101.75 31.25 L -103.38 31.88 L -105.00 33.00 L -106.75 34.50 L -108.38 36.38 L -110.00 38.62 L -111.75 41.12 L -113.38 44.12 L -115.12 47.25 L -116.75 50.75 L -118.38 54.62 L -120.00 58.62 L -121.75 62.88 L -123.38 67.38 L -125.12 72.00 L -126.75 76.75 L -128.38 81.62 L -130.12 86.62 L -131.75 91.62 L -133.38 96.62 L -135.12 101.62 L -136.75 106.62 L -138.38 111.62 L -140.12 116.38 L -141.75 121.00 L -143.50 125.62 L -145.12 129.88 L -146.75 134.00 L -148.38 137.88 L -150.12 141.50 L -151.75 144.88 L -153.50 147.88 L -155.12 150.50 L -156.75 152.88 L -158.38 154.88 L -160.12 156.50 L -161.75 157.75 L -163.50 158.62 L -165.12 159.12 L -166.75 159.12 L -168.50 158.75 L -170.12 158.12 L -171.75 157.00 L -173.50 155.50 L -175.12 153.62 L -176.75 151.38 L -178.50 148.88 L -180.12 145.88 L -181.88 142.75 L -183.50 139.25 L -185.12 135.38 L -186.75 131.38 L -188.50 127.12 L -190.12 122.62 L -191.88 118.00 L -193.50 113.25 L -195.12 108.38 L -196.88 103.38 L -198.50 98.38 L -200.12 93.38 L -201.88 88.38 L -203.50 83.38 L -205.12 78.38 L -206.88 73.62 L -208.50 69.00 L -210.12 64.38 L -211.88 60.12 L -213.50 56.00 L -215.12 52.12 L -216.88 48.50 L -218.50 45.12 L -220.12 42.12 L -221.88 39.50 L -223.50 37.12 L -225.12 35.12 L -226.88 33.50 L -228.50 32.25 L -230.12 31.38 L -231.88 30.88 L -233.50 30.88 L -235.25 31.25 L -236.88 31.88 L -238.50 33.00 L -240.12 34.50 L -241.88 36.38 L -243.50 38.62 L -245.25 41.12 L -246.88 44.12 L -248.50 47.25 L -250.25 50.75 L -251.88 54.62 L -253.50 58.62 L -255.25 62.88 L -256.88 67.38 L -258.50 72.00 L -260.25 76.75 L -261.88 81.62 L -263.62 86.62 L -265.25 91.62 L -266.88 96.62 L -268.50 101.62 L -270.25 106.62 L -271.88 111.62 L -273.62 116.38 L -275.25 121.00 L -276.88 125.62 L -278.50 129.88 L -280.25 134.00 L -281.88 137.88 L -283.62 141.50 L -285.25 144.88 L -286.88 147.88 L -288.62 150.50 L -290.25 152.88 L -291.88 154.88 L -293.62 156.50 L -295.25 157.75 L -296.88 158.62 L -298.62 159.12 L -300.25 159.12 L -302.00 158.75 L -303.62 158.12 L -305.25 157.00 L -306.88 155.50 L -308.62 153.62 L -310.25 151.38 L -312.00 148.88 L -313.62 145.88 L -315.25 142.75 L -317.00 139.25 L -318.62 135.38 L -320.25 131.38 L -322.00 127.12 L -323.62 122.62 L -325.25 118.00 L -327.00 113.25 L -328.62 108.38 L -330.25 103.38 L -332.00 98.38 L -333.62 93.38 L -335.25 88.38 L -337.00 83.38 L -338.62 78.38 L -340.25 73.62 L -342.00 69.00 L -343.62 64.38 L -345.25 60.12 L -347.00 56.00 L -348.62 52.12 L -350.25 48.50 L -352.00 45.12 L -353.62 42.12 L -355.38 39.50 L -357.00 37.12 L -358.62 35.12 L -360.25 33.50 L -362.00 32.25 L -363.62 31.38 L -365.38 30.88 L -367.00 30.88 L -368.62 31.25 L -370.38 31.88 L -372.00 33.00 L -373.62 34.50 L -375.38 36.38 L -377.00 38.62 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av1.gif deleted file mode 100755 index 7a0d0d651..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av2.eps deleted file mode 100755 index a84e86d56..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av2.eps +++ /dev/null @@ -1,1103 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 395 208 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Tue, Apr 2, 1996 6:40 PM -%%DocumentFonts: (atend) -%%EndComments -0 208 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -44.50 18.00 44.50 171.00 MacLine -376.50 18.00 376.50 171.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 159.00 369.50 159.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 158.62 369.50 158.62 MacLine -44.50 158.62 51.50 158.62 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(-1.5) 23.88 161.88 17.12 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 137.62 369.50 137.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 137.25 369.50 137.25 MacLine -44.50 137.25 51.50 137.25 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-1.0) 23.88 140.50 17.12 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 116.25 369.50 116.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 115.88 369.50 115.88 MacLine -44.50 115.88 51.50 115.88 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-0.5) 23.88 119.12 17.12 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 94.88 369.50 94.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 94.50 369.50 94.50 MacLine -44.50 94.50 51.50 94.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0.0) 27.25 97.75 13.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 73.50 369.50 73.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 73.12 369.50 73.12 MacLine -44.50 73.12 51.50 73.12 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0.5) 27.25 76.38 13.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 52.12 369.50 52.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 51.75 369.50 51.75 MacLine -44.50 51.75 51.50 51.75 MacLine -1 ps -10.00 (_Helvetica) 0 F -(1.0) 27.25 55.00 13.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 30.75 369.50 30.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 30.38 369.50 30.38 MacLine -44.50 30.38 51.50 30.38 MacLine -1 ps -10.00 (_Helvetica) 0 F -(1.5) 27.25 33.62 13.75 WS -gsave 1.00 ps 45.50 95.00 376.50 95.00 2 CapLine grestore -14.00 (_Helvetica) 0 F -gsave 10.75 114.38 translate -90 rotate -(y \(cm\)) 0.00 0.00 38.75 WS -grestore -1.00 ps -44.50 171.50 376.50 171.50 MacLine -44.50 17.50 376.50 17.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -372.00 168.00 372.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -371.50 17.50 371.50 21.00 MacLine -371.50 171.50 371.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -365.38 168.00 365.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -364.88 17.50 364.88 21.00 MacLine -364.88 171.50 364.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -358.62 168.00 358.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -358.12 17.50 358.12 21.00 MacLine -358.12 171.50 358.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -352.00 168.00 352.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -351.50 17.50 351.50 21.00 MacLine -351.50 171.50 351.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -345.25 166.25 345.25 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -344.75 17.50 344.75 22.75 MacLine -344.75 171.50 344.75 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -338.62 168.00 338.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -338.12 17.50 338.12 21.00 MacLine -338.12 171.50 338.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -332.00 168.00 332.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -331.50 17.50 331.50 21.00 MacLine -331.50 171.50 331.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -325.25 168.00 325.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -324.75 17.50 324.75 21.00 MacLine -324.75 171.50 324.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -318.62 168.00 318.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -318.12 17.50 318.12 21.00 MacLine -318.12 171.50 318.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -311.75 164.50 311.75 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -311.38 17.50 311.38 24.50 MacLine -311.38 171.50 311.38 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(40) 306.38 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -305.25 168.00 305.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -304.75 17.50 304.75 21.00 MacLine -304.75 171.50 304.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -298.62 168.00 298.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -298.12 17.50 298.12 21.00 MacLine -298.12 171.50 298.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -291.88 168.00 291.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -291.38 17.50 291.38 21.00 MacLine -291.38 171.50 291.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -285.25 168.00 285.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -284.75 17.50 284.75 21.00 MacLine -284.75 171.50 284.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -278.62 166.25 278.62 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -278.12 17.50 278.12 22.75 MacLine -278.12 171.50 278.12 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -271.88 168.00 271.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -271.38 17.50 271.38 21.00 MacLine -271.38 171.50 271.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -265.25 168.00 265.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -264.75 17.50 264.75 21.00 MacLine -264.75 171.50 264.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -258.50 168.00 258.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -258.00 17.50 258.00 21.00 MacLine -258.00 171.50 258.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -251.88 168.00 251.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -251.38 17.50 251.38 21.00 MacLine -251.38 171.50 251.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -245.12 164.50 245.12 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -244.75 17.50 244.75 24.50 MacLine -244.75 171.50 244.75 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(30) 239.75 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -238.50 168.00 238.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -238.00 17.50 238.00 21.00 MacLine -238.00 171.50 238.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -231.88 168.00 231.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -231.38 17.50 231.38 21.00 MacLine -231.38 171.50 231.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -225.12 168.00 225.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -224.62 17.50 224.62 21.00 MacLine -224.62 171.50 224.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -218.50 168.00 218.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -218.00 17.50 218.00 21.00 MacLine -218.00 171.50 218.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -211.88 166.25 211.88 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -211.38 17.50 211.38 22.75 MacLine -211.38 171.50 211.38 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -205.12 168.00 205.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -204.62 17.50 204.62 21.00 MacLine -204.62 171.50 204.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -198.50 168.00 198.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -198.00 17.50 198.00 21.00 MacLine -198.00 171.50 198.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -191.88 168.00 191.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -191.38 17.50 191.38 21.00 MacLine -191.38 171.50 191.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -185.12 168.00 185.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -184.62 17.50 184.62 21.00 MacLine -184.62 171.50 184.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -178.38 164.50 178.38 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -178.00 17.50 178.00 24.50 MacLine -178.00 171.50 178.00 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(20) 173.00 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -171.75 168.00 171.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -171.25 17.50 171.25 21.00 MacLine -171.25 171.50 171.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -165.12 168.00 165.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -164.62 17.50 164.62 21.00 MacLine -164.62 171.50 164.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -158.50 168.00 158.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -158.00 17.50 158.00 21.00 MacLine -158.00 171.50 158.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -151.75 168.00 151.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -151.25 17.50 151.25 21.00 MacLine -151.25 171.50 151.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -145.12 166.25 145.12 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -144.62 17.50 144.62 22.75 MacLine -144.62 171.50 144.62 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -138.38 168.00 138.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -137.88 17.50 137.88 21.00 MacLine -137.88 171.50 137.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -131.75 168.00 131.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -131.25 17.50 131.25 21.00 MacLine -131.25 171.50 131.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -125.12 168.00 125.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -124.62 17.50 124.62 21.00 MacLine -124.62 171.50 124.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -118.38 168.00 118.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -117.88 17.50 117.88 21.00 MacLine -117.88 171.50 117.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -111.62 164.50 111.62 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -111.25 17.50 111.25 24.50 MacLine -111.25 171.50 111.25 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(10) 106.25 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -105.00 168.00 105.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -104.50 17.50 104.50 21.00 MacLine -104.50 171.50 104.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -98.38 168.00 98.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -97.88 17.50 97.88 21.00 MacLine -97.88 171.50 97.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -91.75 168.00 91.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -91.25 17.50 91.25 21.00 MacLine -91.25 171.50 91.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -85.00 168.00 85.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -84.50 17.50 84.50 21.00 MacLine -84.50 171.50 84.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -78.38 166.25 78.38 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -77.88 17.50 77.88 22.75 MacLine -77.88 171.50 77.88 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -71.75 168.00 71.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -71.25 17.50 71.25 21.00 MacLine -71.25 171.50 71.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -65.00 168.00 65.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -64.50 17.50 64.50 21.00 MacLine -64.50 171.50 64.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -58.38 168.00 58.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -57.88 17.50 57.88 21.00 MacLine -57.88 171.50 57.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -51.62 168.00 51.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -51.12 17.50 51.12 21.00 MacLine -51.12 171.50 51.12 168.00 MacLine -1 ps -1.00 ps -44.50 17.50 44.50 24.50 MacLine -44.50 171.50 44.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 42.25 184.25 5.50 WS -14.00 (_Helvetica) 0 F -(x \(cm\)) 191.62 204.75 38.75 WS -1 0 0 SetFore UseFore -2.00 ps -newpath 45.00 33.38 M -46.62 32.12 L -48.38 31.38 L -50.00 30.88 L -51.62 30.88 L -53.38 31.25 L -55.00 32.00 L -56.62 33.12 L -58.38 34.62 L -60.00 36.50 L -61.75 38.75 L -63.38 41.38 L -65.00 44.25 L -66.62 47.50 L -68.38 51.00 L -70.00 54.88 L -71.75 58.88 L -73.38 63.25 L -75.00 67.62 L -76.75 72.25 L -78.38 77.12 L -80.00 82.00 L -81.75 86.88 L -83.38 92.00 L -85.00 97.00 L -86.75 102.00 L -88.38 107.00 L -90.00 111.88 L -91.75 116.75 L -93.38 121.38 L -95.00 125.88 L -96.75 130.25 L -98.38 134.25 L -100.00 138.12 L -101.75 141.75 L -103.38 145.00 L -105.00 148.00 L -106.75 150.75 L -108.38 153.00 L -110.00 155.00 L -111.75 156.62 L -113.38 157.88 L -115.12 158.62 L -116.75 159.12 L -118.38 159.12 L -120.00 158.75 L -121.75 158.00 L -123.38 156.88 L -125.12 155.38 L -126.75 153.50 L -128.38 151.25 L -130.12 148.62 L -131.75 145.75 L -133.38 142.50 L -135.12 139.00 L -136.75 135.12 L -138.38 131.12 L -140.12 126.75 L -141.75 122.38 L -143.50 117.75 L -145.12 112.88 L -146.75 108.00 L -148.38 103.12 L -150.12 98.00 L -151.75 93.00 L -153.50 88.00 L -155.12 83.00 L -156.75 78.12 L -158.38 73.25 L -160.12 68.62 L -161.75 64.12 L -163.50 59.75 L -165.12 55.75 L -166.75 51.88 L -168.50 48.25 L -170.12 45.00 L -171.75 42.00 L -173.50 39.25 L -175.12 37.00 L -176.75 35.00 L -178.50 33.38 L -180.12 32.12 L -181.88 31.38 L -183.50 30.88 L -185.12 30.88 L -186.75 31.25 L -188.50 32.00 L -190.12 33.12 L -191.88 34.62 L -193.50 36.50 L -195.12 38.75 L -196.88 41.38 L -198.50 44.25 L -200.12 47.50 L -201.88 51.00 L -203.50 54.88 L -205.12 58.88 L -206.88 63.25 L -208.50 67.62 L -210.12 72.25 L -211.88 77.12 L -213.50 82.00 L -215.12 86.88 L -216.88 92.00 L -218.50 97.00 L -220.12 102.00 L -221.88 107.00 L -223.50 111.88 L -225.12 116.75 L -226.88 121.38 L -228.50 125.88 L -230.12 130.25 L -231.88 134.25 L -233.50 138.12 L -235.25 141.75 L -236.88 145.00 L -238.50 148.00 L -240.12 150.75 L -241.88 153.00 L -243.50 155.00 L -245.25 156.62 L -246.88 157.88 L -248.50 158.62 L -250.25 159.12 L -251.88 159.12 L -253.50 158.75 L -255.25 158.00 L -256.88 156.88 L -258.50 155.38 L -260.25 153.50 L -261.88 151.25 L -263.62 148.62 L -265.25 145.75 L -266.88 142.50 L -268.50 139.00 L -270.25 135.12 L -271.88 131.12 L -273.62 126.75 L -275.25 122.38 L -276.88 117.75 L -278.50 112.88 L -280.25 108.00 L -281.88 103.12 L -283.62 98.00 L -285.25 93.00 L -286.88 88.00 L -288.62 83.00 L -290.25 78.12 L -291.88 73.25 L -293.62 68.62 L -295.25 64.12 L -296.88 59.75 L -298.62 55.75 L -300.25 51.88 L -302.00 48.25 L -303.62 45.00 L -305.25 42.00 L -306.88 39.25 L -308.62 37.00 L -310.25 35.00 L -312.00 33.38 L -313.62 32.12 L -315.25 31.38 L -317.00 30.88 L -318.62 30.88 L -320.25 31.25 L -322.00 32.00 L -323.62 33.12 L -325.25 34.62 L -327.00 36.50 L -328.62 38.75 L -330.25 41.38 L -332.00 44.25 L -333.62 47.50 L -335.25 51.00 L -337.00 54.88 L -338.62 58.88 L -340.25 63.25 L -342.00 67.62 L -343.62 72.25 L -345.25 77.12 L -347.00 82.00 L -348.62 86.88 L -350.25 92.00 L -352.00 97.00 L -353.62 102.00 L -355.38 107.00 L -357.00 111.88 L -358.62 116.75 L -360.25 121.38 L -362.00 125.88 L -363.62 130.25 L -365.38 134.25 L -367.00 138.12 L -368.62 141.75 L -370.38 145.00 L -372.00 148.00 L -373.62 150.75 L -375.38 153.00 L -377.00 155.00 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av2.gif deleted file mode 100755 index 3b94f5790..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av3.eps deleted file mode 100755 index 19007ab73..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av3.eps +++ /dev/null @@ -1,1279 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 395 208 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Tue, Apr 2, 1996 6:41 PM -%%DocumentFonts: (atend) -%%EndComments -0 208 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -44.50 18.00 44.50 171.00 MacLine -376.50 18.00 376.50 171.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 170.88 373.00 170.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 170.38 373.00 170.38 MacLine -44.50 170.38 48.00 170.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 165.00 373.00 165.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 164.50 373.00 164.50 MacLine -44.50 164.50 48.00 164.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 159.12 373.00 159.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 158.62 373.00 158.62 MacLine -44.50 158.62 48.00 158.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 153.25 369.50 153.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 152.88 369.50 152.88 MacLine -44.50 152.88 51.50 152.88 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(-10) 26.62 156.12 14.38 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 147.50 373.00 147.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 147.00 373.00 147.00 MacLine -44.50 147.00 48.00 147.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 141.62 373.00 141.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 141.12 373.00 141.12 MacLine -44.50 141.12 48.00 141.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 135.88 373.00 135.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 135.38 373.00 135.38 MacLine -44.50 135.38 48.00 135.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 130.00 373.00 130.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 129.50 373.00 129.50 MacLine -44.50 129.50 48.00 129.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 124.00 369.50 124.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 123.62 369.50 123.62 MacLine -44.50 123.62 51.50 123.62 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-5) 32.12 126.88 8.88 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 118.38 373.00 118.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 117.88 373.00 117.88 MacLine -44.50 117.88 48.00 117.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 112.50 373.00 112.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 112.00 373.00 112.00 MacLine -44.50 112.00 48.00 112.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 106.62 373.00 106.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 106.12 373.00 106.12 MacLine -44.50 106.12 48.00 106.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 100.88 373.00 100.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 100.38 373.00 100.38 MacLine -44.50 100.38 48.00 100.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 94.88 369.50 94.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 94.50 369.50 94.50 MacLine -44.50 94.50 51.50 94.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 35.50 97.75 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 89.12 373.00 89.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 88.62 373.00 88.62 MacLine -44.50 88.62 48.00 88.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 83.38 373.00 83.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 82.88 373.00 82.88 MacLine -44.50 82.88 48.00 82.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 77.50 373.00 77.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 77.00 373.00 77.00 MacLine -44.50 77.00 48.00 77.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 71.62 373.00 71.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 71.12 373.00 71.12 MacLine -44.50 71.12 48.00 71.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 65.75 369.50 65.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 65.38 369.50 65.38 MacLine -44.50 65.38 51.50 65.38 MacLine -1 ps -10.00 (_Helvetica) 0 F -(5) 35.50 68.62 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 60.00 373.00 60.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 59.50 373.00 59.50 MacLine -44.50 59.50 48.00 59.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 54.12 373.00 54.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 53.62 373.00 53.62 MacLine -44.50 53.62 48.00 53.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 48.38 373.00 48.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 47.88 373.00 47.88 MacLine -44.50 47.88 48.00 47.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 42.50 373.00 42.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 42.00 373.00 42.00 MacLine -44.50 42.00 48.00 42.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 36.50 369.50 36.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 36.12 369.50 36.12 MacLine -44.50 36.12 51.50 36.12 MacLine -1 ps -10.00 (_Helvetica) 0 F -(10) 30.00 39.38 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 30.88 373.00 30.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 30.38 373.00 30.38 MacLine -44.50 30.38 48.00 30.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 25.00 373.00 25.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 24.50 373.00 24.50 MacLine -44.50 24.50 48.00 24.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 19.12 373.00 19.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 18.62 373.00 18.62 MacLine -44.50 18.62 48.00 18.62 MacLine -1 ps -gsave 1.00 ps 45.50 95.00 376.50 95.00 2 CapLine grestore -14.00 (_Helvetica) 0 F -gsave 10.75 114.38 translate -90 rotate -(y \(cm\)) 0.00 0.00 38.75 WS -grestore -1.00 ps -44.50 171.50 376.50 171.50 MacLine -44.50 17.50 376.50 17.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -372.00 168.00 372.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -371.50 17.50 371.50 21.00 MacLine -371.50 171.50 371.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -365.38 168.00 365.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -364.88 17.50 364.88 21.00 MacLine -364.88 171.50 364.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -358.62 168.00 358.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -358.12 17.50 358.12 21.00 MacLine -358.12 171.50 358.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -352.00 168.00 352.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -351.50 17.50 351.50 21.00 MacLine -351.50 171.50 351.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -345.25 166.25 345.25 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -344.75 17.50 344.75 22.75 MacLine -344.75 171.50 344.75 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -338.62 168.00 338.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -338.12 17.50 338.12 21.00 MacLine -338.12 171.50 338.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -332.00 168.00 332.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -331.50 17.50 331.50 21.00 MacLine -331.50 171.50 331.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -325.25 168.00 325.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -324.75 17.50 324.75 21.00 MacLine -324.75 171.50 324.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -318.62 168.00 318.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -318.12 17.50 318.12 21.00 MacLine -318.12 171.50 318.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -311.75 164.50 311.75 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -311.38 17.50 311.38 24.50 MacLine -311.38 171.50 311.38 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(80) 306.38 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -305.25 168.00 305.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -304.75 17.50 304.75 21.00 MacLine -304.75 171.50 304.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -298.62 168.00 298.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -298.12 17.50 298.12 21.00 MacLine -298.12 171.50 298.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -291.88 168.00 291.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -291.38 17.50 291.38 21.00 MacLine -291.38 171.50 291.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -285.25 168.00 285.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -284.75 17.50 284.75 21.00 MacLine -284.75 171.50 284.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -278.62 166.25 278.62 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -278.12 17.50 278.12 22.75 MacLine -278.12 171.50 278.12 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -271.88 168.00 271.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -271.38 17.50 271.38 21.00 MacLine -271.38 171.50 271.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -265.25 168.00 265.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -264.75 17.50 264.75 21.00 MacLine -264.75 171.50 264.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -258.50 168.00 258.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -258.00 17.50 258.00 21.00 MacLine -258.00 171.50 258.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -251.88 168.00 251.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -251.38 17.50 251.38 21.00 MacLine -251.38 171.50 251.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -245.12 164.50 245.12 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -244.75 17.50 244.75 24.50 MacLine -244.75 171.50 244.75 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(60) 239.75 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -238.50 168.00 238.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -238.00 17.50 238.00 21.00 MacLine -238.00 171.50 238.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -231.88 168.00 231.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -231.38 17.50 231.38 21.00 MacLine -231.38 171.50 231.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -225.12 168.00 225.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -224.62 17.50 224.62 21.00 MacLine -224.62 171.50 224.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -218.50 168.00 218.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -218.00 17.50 218.00 21.00 MacLine -218.00 171.50 218.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -211.88 166.25 211.88 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -211.38 17.50 211.38 22.75 MacLine -211.38 171.50 211.38 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -205.12 168.00 205.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -204.62 17.50 204.62 21.00 MacLine -204.62 171.50 204.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -198.50 168.00 198.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -198.00 17.50 198.00 21.00 MacLine -198.00 171.50 198.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -191.88 168.00 191.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -191.38 17.50 191.38 21.00 MacLine -191.38 171.50 191.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -185.12 168.00 185.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -184.62 17.50 184.62 21.00 MacLine -184.62 171.50 184.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -178.38 164.50 178.38 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -178.00 17.50 178.00 24.50 MacLine -178.00 171.50 178.00 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(40) 173.00 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -171.75 168.00 171.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -171.25 17.50 171.25 21.00 MacLine -171.25 171.50 171.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -165.12 168.00 165.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -164.62 17.50 164.62 21.00 MacLine -164.62 171.50 164.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -158.50 168.00 158.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -158.00 17.50 158.00 21.00 MacLine -158.00 171.50 158.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -151.75 168.00 151.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -151.25 17.50 151.25 21.00 MacLine -151.25 171.50 151.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -145.12 166.25 145.12 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -144.62 17.50 144.62 22.75 MacLine -144.62 171.50 144.62 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -138.38 168.00 138.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -137.88 17.50 137.88 21.00 MacLine -137.88 171.50 137.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -131.75 168.00 131.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -131.25 17.50 131.25 21.00 MacLine -131.25 171.50 131.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -125.12 168.00 125.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -124.62 17.50 124.62 21.00 MacLine -124.62 171.50 124.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -118.38 168.00 118.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -117.88 17.50 117.88 21.00 MacLine -117.88 171.50 117.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -111.62 164.50 111.62 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -111.25 17.50 111.25 24.50 MacLine -111.25 171.50 111.25 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(20) 106.25 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -105.00 168.00 105.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -104.50 17.50 104.50 21.00 MacLine -104.50 171.50 104.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -98.38 168.00 98.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -97.88 17.50 97.88 21.00 MacLine -97.88 171.50 97.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -91.75 168.00 91.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -91.25 17.50 91.25 21.00 MacLine -91.25 171.50 91.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -85.00 168.00 85.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -84.50 17.50 84.50 21.00 MacLine -84.50 171.50 84.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -78.38 166.25 78.38 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -77.88 17.50 77.88 22.75 MacLine -77.88 171.50 77.88 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -71.75 168.00 71.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -71.25 17.50 71.25 21.00 MacLine -71.25 171.50 71.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -65.00 168.00 65.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -64.50 17.50 64.50 21.00 MacLine -64.50 171.50 64.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -58.38 168.00 58.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -57.88 17.50 57.88 21.00 MacLine -57.88 171.50 57.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -51.62 168.00 51.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -51.12 17.50 51.12 21.00 MacLine -51.12 171.50 51.12 168.00 MacLine -1 ps -1.00 ps -44.50 17.50 44.50 24.50 MacLine -44.50 171.50 44.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 42.25 184.25 5.50 WS -14.00 (_Helvetica) 0 F -(x \(cm\)) 191.62 204.75 38.75 WS -1 0 0 SetFore UseFore -2.00 ps -newpath 45.00 121.75 M -46.62 125.88 L -48.38 129.88 L -50.00 133.75 L -51.62 137.38 L -53.38 140.75 L -55.00 144.00 L -56.62 146.88 L -58.38 149.50 L -60.00 151.75 L -61.75 153.88 L -63.38 155.50 L -65.00 156.88 L -66.62 158.00 L -68.38 158.75 L -70.00 159.12 L -71.75 159.12 L -73.38 158.88 L -75.00 158.25 L -76.75 157.25 L -78.38 155.88 L -80.00 154.25 L -81.75 152.38 L -83.38 150.12 L -85.00 147.50 L -86.75 144.75 L -88.38 141.62 L -90.00 138.25 L -91.75 134.62 L -93.38 130.88 L -95.00 126.88 L -96.75 122.75 L -98.38 118.50 L -100.00 114.00 L -101.75 109.50 L -103.38 104.88 L -105.00 100.25 L -106.75 95.62 L -108.38 90.88 L -110.00 86.25 L -111.75 81.62 L -113.38 77.12 L -115.12 72.62 L -116.75 68.25 L -118.38 64.12 L -120.00 60.12 L -121.75 56.25 L -123.38 52.62 L -125.12 49.25 L -126.75 46.00 L -128.38 43.12 L -130.12 40.50 L -131.75 38.25 L -133.38 36.12 L -135.12 34.50 L -136.75 33.12 L -138.38 32.00 L -140.12 31.25 L -141.75 30.88 L -143.50 30.88 L -145.12 31.12 L -146.75 31.75 L -148.38 32.75 L -150.12 34.12 L -151.75 35.75 L -153.50 37.62 L -155.12 39.88 L -156.75 42.50 L -158.38 45.25 L -160.12 48.38 L -161.75 51.75 L -163.50 55.38 L -165.12 59.12 L -166.75 63.12 L -168.50 67.25 L -170.12 71.50 L -171.75 76.00 L -173.50 80.50 L -175.12 85.12 L -176.75 89.75 L -178.50 94.38 L -180.12 99.12 L -181.88 103.75 L -183.50 108.38 L -185.12 112.88 L -186.75 117.38 L -188.50 121.75 L -190.12 125.88 L -191.88 129.88 L -193.50 133.75 L -195.12 137.38 L -196.88 140.75 L -198.50 144.00 L -200.12 146.88 L -201.88 149.50 L -203.50 151.75 L -205.12 153.88 L -206.88 155.50 L -208.50 156.88 L -210.12 158.00 L -211.88 158.75 L -213.50 159.12 L -215.12 159.12 L -216.88 158.88 L -218.50 158.25 L -220.12 157.25 L -221.88 155.88 L -223.50 154.25 L -225.12 152.38 L -226.88 150.12 L -228.50 147.50 L -230.12 144.75 L -231.88 141.62 L -233.50 138.25 L -235.25 134.62 L -236.88 130.88 L -238.50 126.88 L -240.12 122.75 L -241.88 118.50 L -243.50 114.00 L -245.25 109.50 L -246.88 104.88 L -248.50 100.25 L -250.25 95.62 L -251.88 90.88 L -253.50 86.25 L -255.25 81.62 L -256.88 77.12 L -258.50 72.62 L -260.25 68.25 L -261.88 64.12 L -263.62 60.12 L -265.25 56.25 L -266.88 52.62 L -268.50 49.25 L -270.25 46.00 L -271.88 43.12 L -273.62 40.50 L -275.25 38.25 L -276.88 36.12 L -278.50 34.50 L -280.25 33.12 L -281.88 32.00 L -283.62 31.25 L -285.25 30.88 L -286.88 30.88 L -288.62 31.12 L -290.25 31.75 L -291.88 32.75 L -293.62 34.12 L -295.25 35.75 L -296.88 37.62 L -298.62 39.88 L -300.25 42.50 L -302.00 45.25 L -303.62 48.38 L -305.25 51.75 L -306.88 55.38 L -308.62 59.12 L -310.25 63.12 L -312.00 67.25 L -313.62 71.50 L -315.25 76.00 L -317.00 80.50 L -318.62 85.12 L -320.25 89.75 L -322.00 94.38 L -323.62 99.12 L -325.25 103.75 L -327.00 108.38 L -328.62 112.88 L -330.25 117.38 L -332.00 121.75 L -333.62 125.88 L -335.25 129.88 L -337.00 133.75 L -338.62 137.38 L -340.25 140.75 L -342.00 144.00 L -343.62 146.88 L -345.25 149.50 L -347.00 151.75 L -348.62 153.88 L -350.25 155.50 L -352.00 156.88 L -353.62 158.00 L -355.38 158.75 L -357.00 159.12 L -358.62 159.12 L -360.25 158.88 L -362.00 158.25 L -363.62 157.25 L -365.38 155.88 L -367.00 154.25 L -368.62 152.38 L -370.38 150.12 L -372.00 147.50 L -373.62 144.75 L -375.38 141.62 L -377.00 138.25 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av3.gif deleted file mode 100755 index 823f098fc..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av4.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av4.eps deleted file mode 100755 index 9681d7cc5..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av4.eps +++ /dev/null @@ -1,1025 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 395 208 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Tue, Apr 2, 1996 6:43 PM -%%DocumentFonts: (atend) -%%EndComments -0 208 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -44.50 18.00 44.50 171.00 MacLine -376.50 18.00 376.50 171.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 173.12 373.00 173.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 172.62 373.00 172.62 MacLine -44.50 172.62 48.00 172.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 167.50 373.00 167.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 167.00 373.00 167.00 MacLine -44.50 167.00 48.00 167.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 162.00 373.00 162.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 161.50 373.00 161.50 MacLine -44.50 161.50 48.00 161.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 156.38 373.00 156.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 155.88 373.00 155.88 MacLine -44.50 155.88 48.00 155.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 150.62 369.50 150.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 150.25 369.50 150.25 MacLine -44.50 150.25 51.50 150.25 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(-20) 26.62 153.50 14.38 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 145.25 373.00 145.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 144.75 373.00 144.75 MacLine -44.50 144.75 48.00 144.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 139.62 373.00 139.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 139.12 373.00 139.12 MacLine -44.50 139.12 48.00 139.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 134.00 373.00 134.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 133.50 373.00 133.50 MacLine -44.50 133.50 48.00 133.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 128.50 373.00 128.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 128.00 373.00 128.00 MacLine -44.50 128.00 48.00 128.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 122.75 369.50 122.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 122.38 369.50 122.38 MacLine -44.50 122.38 51.50 122.38 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-10) 26.62 125.62 14.38 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 117.38 373.00 117.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 116.88 373.00 116.88 MacLine -44.50 116.88 48.00 116.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 111.75 373.00 111.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 111.25 373.00 111.25 MacLine -44.50 111.25 48.00 111.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 106.12 373.00 106.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 105.62 373.00 105.62 MacLine -44.50 105.62 48.00 105.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 100.62 373.00 100.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 100.12 373.00 100.12 MacLine -44.50 100.12 48.00 100.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 94.88 369.50 94.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 94.50 369.50 94.50 MacLine -44.50 94.50 51.50 94.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 35.50 97.75 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 89.38 373.00 89.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 88.88 373.00 88.88 MacLine -44.50 88.88 48.00 88.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 83.88 373.00 83.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 83.38 373.00 83.38 MacLine -44.50 83.38 48.00 83.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 78.25 373.00 78.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 77.75 373.00 77.75 MacLine -44.50 77.75 48.00 77.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 72.62 373.00 72.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 72.12 373.00 72.12 MacLine -44.50 72.12 48.00 72.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 67.00 369.50 67.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 66.62 369.50 66.62 MacLine -44.50 66.62 51.50 66.62 MacLine -1 ps -10.00 (_Helvetica) 0 F -(10) 30.00 69.88 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 61.50 373.00 61.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 61.00 373.00 61.00 MacLine -44.50 61.00 48.00 61.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 56.00 373.00 56.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 55.50 373.00 55.50 MacLine -44.50 55.50 48.00 55.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 50.38 373.00 50.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 49.88 373.00 49.88 MacLine -44.50 49.88 48.00 49.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 44.75 373.00 44.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 44.25 373.00 44.25 MacLine -44.50 44.25 48.00 44.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 39.12 369.50 39.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 38.75 369.50 38.75 MacLine -44.50 38.75 51.50 38.75 MacLine -1 ps -10.00 (_Helvetica) 0 F -(20) 30.00 42.00 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 33.62 373.00 33.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 33.12 373.00 33.12 MacLine -44.50 33.12 48.00 33.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 28.00 373.00 28.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 27.50 373.00 27.50 MacLine -44.50 27.50 48.00 27.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 22.50 373.00 22.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 22.00 373.00 22.00 MacLine -44.50 22.00 48.00 22.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 16.88 373.00 16.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 16.38 373.00 16.38 MacLine -44.50 16.38 48.00 16.38 MacLine -1 ps -gsave 1.00 ps 45.50 95.00 376.50 95.00 2 CapLine grestore -14.00 (_Helvetica) 0 F -gsave 10.75 114.38 translate -90 rotate -(y \(cm\)) 0.00 0.00 38.75 WS -grestore -1.00 ps -44.50 171.50 376.50 171.50 MacLine -44.50 17.50 376.50 17.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -362.00 168.00 362.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -361.50 17.50 361.50 21.00 MacLine -361.50 171.50 361.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -345.25 168.00 345.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -344.75 17.50 344.75 21.00 MacLine -344.75 171.50 344.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -328.62 168.00 328.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -328.12 17.50 328.12 21.00 MacLine -328.12 171.50 328.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -311.88 168.00 311.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -311.38 17.50 311.38 21.00 MacLine -311.38 171.50 311.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -295.12 164.50 295.12 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -294.75 17.50 294.75 24.50 MacLine -294.75 171.50 294.75 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(150) 287.00 184.25 16.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -278.62 168.00 278.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -278.12 17.50 278.12 21.00 MacLine -278.12 171.50 278.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -261.88 168.00 261.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -261.38 17.50 261.38 21.00 MacLine -261.38 171.50 261.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -245.25 168.00 245.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -244.75 17.50 244.75 21.00 MacLine -244.75 171.50 244.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -228.50 168.00 228.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -228.00 17.50 228.00 21.00 MacLine -228.00 171.50 228.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -211.75 164.50 211.75 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -211.38 17.50 211.38 24.50 MacLine -211.38 171.50 211.38 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(100) 203.62 184.25 16.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -195.12 168.00 195.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -194.62 17.50 194.62 21.00 MacLine -194.62 171.50 194.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -178.50 168.00 178.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -178.00 17.50 178.00 21.00 MacLine -178.00 171.50 178.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -161.75 168.00 161.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -161.25 17.50 161.25 21.00 MacLine -161.25 171.50 161.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -145.12 168.00 145.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -144.62 17.50 144.62 21.00 MacLine -144.62 171.50 144.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -128.25 164.50 128.25 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -127.88 17.50 127.88 24.50 MacLine -127.88 171.50 127.88 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(50) 122.88 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -111.75 168.00 111.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -111.25 17.50 111.25 21.00 MacLine -111.25 171.50 111.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -95.00 168.00 95.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -94.50 17.50 94.50 21.00 MacLine -94.50 171.50 94.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -78.38 168.00 78.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -77.88 17.50 77.88 21.00 MacLine -77.88 171.50 77.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -61.62 168.00 61.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -61.12 17.50 61.12 21.00 MacLine -61.12 171.50 61.12 168.00 MacLine -1 ps -1.00 ps -44.50 17.50 44.50 24.50 MacLine -44.50 171.50 44.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 42.25 184.25 5.50 WS -14.00 (_Helvetica) 0 F -(x \(cm\)) 191.62 204.75 38.75 WS -1 0 0 SetFore UseFore -2.00 ps -newpath 45.00 121.75 M -46.62 126.00 L -48.38 130.25 L -50.00 134.12 L -51.62 137.88 L -53.38 141.38 L -55.00 144.62 L -56.62 147.50 L -58.38 150.12 L -60.00 152.50 L -61.75 154.50 L -63.38 156.12 L -65.00 157.38 L -66.62 158.38 L -68.38 159.00 L -70.00 159.12 L -71.75 159.00 L -73.38 158.50 L -75.00 157.62 L -76.75 156.38 L -78.38 154.75 L -80.00 152.88 L -81.75 150.62 L -83.38 148.00 L -85.00 145.12 L -86.75 141.88 L -88.38 138.50 L -90.00 134.75 L -91.75 130.88 L -93.38 126.75 L -95.00 122.38 L -96.75 117.88 L -98.38 113.38 L -100.00 108.62 L -101.75 103.88 L -103.38 99.00 L -105.00 94.12 L -106.75 89.38 L -108.38 84.50 L -110.00 79.75 L -111.75 75.12 L -113.38 70.50 L -115.12 66.12 L -116.75 61.88 L -118.38 57.75 L -120.00 54.00 L -121.75 50.38 L -123.38 47.00 L -125.12 43.88 L -126.75 41.12 L -128.38 38.62 L -130.12 36.50 L -131.75 34.62 L -133.38 33.12 L -135.12 32.00 L -136.75 31.25 L -138.38 30.88 L -140.12 30.88 L -141.75 31.25 L -143.50 31.88 L -145.12 33.00 L -146.75 34.38 L -148.38 36.12 L -150.12 38.25 L -151.75 40.75 L -153.50 43.38 L -155.12 46.50 L -156.75 49.75 L -158.38 53.38 L -160.12 57.12 L -161.75 61.25 L -163.50 65.38 L -165.12 69.75 L -166.75 74.38 L -168.50 79.00 L -170.12 83.75 L -171.75 88.50 L -173.50 93.38 L -175.12 98.25 L -176.75 103.12 L -178.50 107.88 L -180.12 112.62 L -181.88 117.25 L -183.50 121.75 L -185.12 126.00 L -186.75 130.25 L -188.50 134.12 L -190.12 137.88 L -191.88 141.38 L -193.50 144.62 L -195.12 147.50 L -196.88 150.12 L -198.50 152.50 L -200.12 154.50 L -201.88 156.12 L -203.50 157.38 L -205.12 158.38 L -206.88 159.00 L -208.50 159.12 L -210.12 159.00 L -211.88 158.50 L -213.50 157.62 L -215.12 156.38 L -216.88 154.75 L -218.50 152.88 L -220.12 150.62 L -221.88 148.00 L -223.50 145.12 L -225.12 141.88 L -226.88 138.50 L -228.50 134.75 L -230.12 130.88 L -231.88 126.75 L -233.50 122.38 L -235.25 117.88 L -236.88 113.38 L -238.50 108.62 L -240.12 103.88 L -241.88 99.00 L -243.50 94.12 L -245.25 89.38 L -246.88 84.50 L -248.50 79.75 L -250.25 75.12 L -251.88 70.50 L -253.50 66.12 L -255.25 61.88 L -256.88 57.75 L -258.50 54.00 L -260.25 50.38 L -261.88 47.00 L -263.62 43.88 L -265.25 41.12 L -266.88 38.62 L -268.50 36.50 L -270.25 34.62 L -271.88 33.12 L -273.62 32.00 L -275.25 31.25 L -276.88 30.88 L -278.50 30.88 L -280.25 31.25 L -281.88 31.88 L -283.62 33.00 L -285.25 34.38 L -286.88 36.12 L -288.62 38.25 L -290.25 40.75 L -291.88 43.38 L -293.62 46.50 L -295.25 49.75 L -296.88 53.38 L -298.62 57.12 L -300.25 61.25 L -302.00 65.38 L -303.62 69.75 L -305.25 74.38 L -306.88 79.00 L -308.62 83.75 L -310.25 88.50 L -312.00 93.38 L -313.62 98.25 L -315.25 103.12 L -317.00 107.88 L -318.62 112.62 L -320.25 117.25 L -322.00 121.75 L -323.62 126.00 L -325.25 130.25 L -327.00 134.12 L -328.62 137.88 L -330.25 141.38 L -332.00 144.62 L -333.62 147.50 L -335.25 150.12 L -337.00 152.50 L -338.62 154.50 L -340.25 156.12 L -342.00 157.38 L -343.62 158.38 L -345.25 159.00 L -347.00 159.12 L -348.62 159.00 L -350.25 158.50 L -352.00 157.62 L -353.62 156.38 L -355.38 154.75 L -357.00 152.88 L -358.62 150.62 L -360.25 148.00 L -362.00 145.12 L -363.62 141.88 L -365.38 138.50 L -367.00 134.75 L -368.62 130.88 L -370.38 126.75 L -372.00 122.38 L -373.62 117.88 L -375.38 113.38 L -377.00 108.62 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av4.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av4.gif deleted file mode 100755 index 184c22afe..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av4.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av5.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av5.eps deleted file mode 100755 index fdc70faf7..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av5.eps +++ /dev/null @@ -1,1342 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 395 208 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Tue, Apr 2, 1996 6:45 PM -%%DocumentFonts: (atend) -%%EndComments -0 208 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -44.50 18.00 44.50 171.00 MacLine -376.50 18.00 376.50 171.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 167.12 373.00 167.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 166.62 373.00 166.62 MacLine -44.50 166.62 48.00 166.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 159.12 373.00 159.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 158.62 373.00 158.62 MacLine -44.50 158.62 48.00 158.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 151.12 373.00 151.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 150.62 373.00 150.62 MacLine -44.50 150.62 48.00 150.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 143.12 373.00 143.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 142.62 373.00 142.62 MacLine -44.50 142.62 48.00 142.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 135.00 369.50 135.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 134.62 369.50 134.62 MacLine -44.50 134.62 51.50 134.62 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(-0.5) 23.88 137.88 17.12 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 127.12 373.00 127.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 126.62 373.00 126.62 MacLine -44.50 126.62 48.00 126.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 119.00 373.00 119.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 118.50 373.00 118.50 MacLine -44.50 118.50 48.00 118.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 111.00 373.00 111.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 110.50 373.00 110.50 MacLine -44.50 110.50 48.00 110.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 103.00 373.00 103.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 102.50 373.00 102.50 MacLine -44.50 102.50 48.00 102.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 94.88 369.50 94.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 94.50 369.50 94.50 MacLine -44.50 94.50 51.50 94.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0.0) 27.25 97.75 13.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 87.00 373.00 87.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 86.50 373.00 86.50 MacLine -44.50 86.50 48.00 86.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 79.00 373.00 79.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 78.50 373.00 78.50 MacLine -44.50 78.50 48.00 78.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 70.88 373.00 70.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 70.38 373.00 70.38 MacLine -44.50 70.38 48.00 70.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 62.88 373.00 62.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 62.38 373.00 62.38 MacLine -44.50 62.38 48.00 62.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 54.75 369.50 54.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 54.38 369.50 54.38 MacLine -44.50 54.38 51.50 54.38 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0.5) 27.25 57.62 13.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 46.88 373.00 46.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 46.38 373.00 46.38 MacLine -44.50 46.38 48.00 46.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 38.88 373.00 38.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 38.38 373.00 38.38 MacLine -44.50 38.38 48.00 38.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 30.88 373.00 30.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 30.38 373.00 30.38 MacLine -44.50 30.38 48.00 30.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 22.75 373.00 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 22.25 373.00 22.25 MacLine -44.50 22.25 48.00 22.25 MacLine -1 ps -gsave 1.00 ps 45.50 95.00 376.50 95.00 2 CapLine grestore -14.00 (_Helvetica) 0 F -gsave 10.75 114.38 translate -90 rotate -(y \(cm\)) 0.00 0.00 38.75 WS -grestore -1.00 ps -44.50 171.50 376.50 171.50 MacLine -44.50 17.50 376.50 17.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -373.50 168.00 373.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -373.00 17.50 373.00 21.00 MacLine -373.00 171.50 373.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -368.38 168.00 368.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -367.88 17.50 367.88 21.00 MacLine -367.88 171.50 367.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -363.25 168.00 363.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -362.75 17.50 362.75 21.00 MacLine -362.75 171.50 362.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -358.12 168.00 358.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -357.62 17.50 357.62 21.00 MacLine -357.62 171.50 357.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -352.88 164.50 352.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -352.50 17.50 352.50 24.50 MacLine -352.50 171.50 352.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(120) 344.75 184.25 16.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -347.88 168.00 347.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -347.38 17.50 347.38 21.00 MacLine -347.38 171.50 347.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -342.75 168.00 342.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -342.25 17.50 342.25 21.00 MacLine -342.25 171.50 342.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -337.62 168.00 337.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -337.12 17.50 337.12 21.00 MacLine -337.12 171.50 337.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -332.50 168.00 332.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -332.00 17.50 332.00 21.00 MacLine -332.00 171.50 332.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -327.38 166.25 327.38 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -326.88 17.50 326.88 22.75 MacLine -326.88 171.50 326.88 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -322.25 168.00 322.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -321.75 17.50 321.75 21.00 MacLine -321.75 171.50 321.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -317.12 168.00 317.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -316.62 17.50 316.62 21.00 MacLine -316.62 171.50 316.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -311.88 168.00 311.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -311.38 17.50 311.38 21.00 MacLine -311.38 171.50 311.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -306.75 168.00 306.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -306.25 17.50 306.25 21.00 MacLine -306.25 171.50 306.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -301.50 164.50 301.50 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -301.12 17.50 301.12 24.50 MacLine -301.12 171.50 301.12 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(100) 293.38 184.25 16.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -296.50 168.00 296.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -296.00 17.50 296.00 21.00 MacLine -296.00 171.50 296.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -291.38 168.00 291.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -290.88 17.50 290.88 21.00 MacLine -290.88 171.50 290.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -286.25 168.00 286.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -285.75 17.50 285.75 21.00 MacLine -285.75 171.50 285.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -281.12 168.00 281.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -280.62 17.50 280.62 21.00 MacLine -280.62 171.50 280.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -276.00 166.25 276.00 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -275.50 17.50 275.50 22.75 MacLine -275.50 171.50 275.50 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -270.88 168.00 270.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -270.38 17.50 270.38 21.00 MacLine -270.38 171.50 270.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -265.75 168.00 265.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -265.25 17.50 265.25 21.00 MacLine -265.25 171.50 265.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -260.62 168.00 260.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -260.12 17.50 260.12 21.00 MacLine -260.12 171.50 260.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -255.50 168.00 255.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -255.00 17.50 255.00 21.00 MacLine -255.00 171.50 255.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -250.25 164.50 250.25 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -249.88 17.50 249.88 24.50 MacLine -249.88 171.50 249.88 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(80) 244.88 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -245.25 168.00 245.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -244.75 17.50 244.75 21.00 MacLine -244.75 171.50 244.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -240.12 168.00 240.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -239.62 17.50 239.62 21.00 MacLine -239.62 171.50 239.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -234.88 168.00 234.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -234.38 17.50 234.38 21.00 MacLine -234.38 171.50 234.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -229.75 168.00 229.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -229.25 17.50 229.25 21.00 MacLine -229.25 171.50 229.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -224.62 166.25 224.62 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -224.12 17.50 224.12 22.75 MacLine -224.12 171.50 224.12 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -219.50 168.00 219.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -219.00 17.50 219.00 21.00 MacLine -219.00 171.50 219.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -214.38 168.00 214.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -213.88 17.50 213.88 21.00 MacLine -213.88 171.50 213.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -209.25 168.00 209.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -208.75 17.50 208.75 21.00 MacLine -208.75 171.50 208.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -204.12 168.00 204.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -203.62 17.50 203.62 21.00 MacLine -203.62 171.50 203.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -198.88 164.50 198.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -198.50 17.50 198.50 24.50 MacLine -198.50 171.50 198.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(60) 193.50 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -193.88 168.00 193.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -193.38 17.50 193.38 21.00 MacLine -193.38 171.50 193.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -188.75 168.00 188.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -188.25 17.50 188.25 21.00 MacLine -188.25 171.50 188.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -183.62 168.00 183.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -183.12 17.50 183.12 21.00 MacLine -183.12 171.50 183.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -178.50 168.00 178.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -178.00 17.50 178.00 21.00 MacLine -178.00 171.50 178.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -173.38 166.25 173.38 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -172.88 17.50 172.88 22.75 MacLine -172.88 171.50 172.88 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -168.25 168.00 168.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -167.75 17.50 167.75 21.00 MacLine -167.75 171.50 167.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -163.12 168.00 163.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -162.62 17.50 162.62 21.00 MacLine -162.62 171.50 162.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -157.88 168.00 157.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -157.38 17.50 157.38 21.00 MacLine -157.38 171.50 157.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -152.75 168.00 152.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -152.25 17.50 152.25 21.00 MacLine -152.25 171.50 152.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -147.50 164.50 147.50 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -147.12 17.50 147.12 24.50 MacLine -147.12 171.50 147.12 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(40) 142.12 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -142.50 168.00 142.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -142.00 17.50 142.00 21.00 MacLine -142.00 171.50 142.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -137.38 168.00 137.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -136.88 17.50 136.88 21.00 MacLine -136.88 171.50 136.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -132.25 168.00 132.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -131.75 17.50 131.75 21.00 MacLine -131.75 171.50 131.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -127.12 168.00 127.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -126.62 17.50 126.62 21.00 MacLine -126.62 171.50 126.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -122.00 166.25 122.00 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -121.50 17.50 121.50 22.75 MacLine -121.50 171.50 121.50 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -116.88 168.00 116.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -116.38 17.50 116.38 21.00 MacLine -116.38 171.50 116.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -111.75 168.00 111.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -111.25 17.50 111.25 21.00 MacLine -111.25 171.50 111.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -106.62 168.00 106.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -106.12 17.50 106.12 21.00 MacLine -106.12 171.50 106.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -101.50 168.00 101.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -101.00 17.50 101.00 21.00 MacLine -101.00 171.50 101.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -96.25 164.50 96.25 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -95.88 17.50 95.88 24.50 MacLine -95.88 171.50 95.88 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(20) 90.88 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -91.25 168.00 91.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -90.75 17.50 90.75 21.00 MacLine -90.75 171.50 90.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -86.12 168.00 86.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -85.62 17.50 85.62 21.00 MacLine -85.62 171.50 85.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -80.88 168.00 80.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -80.38 17.50 80.38 21.00 MacLine -80.38 171.50 80.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -75.75 168.00 75.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -75.25 17.50 75.25 21.00 MacLine -75.25 171.50 75.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -70.62 166.25 70.62 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -70.12 17.50 70.12 22.75 MacLine -70.12 171.50 70.12 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -65.50 168.00 65.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -65.00 17.50 65.00 21.00 MacLine -65.00 171.50 65.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -60.38 168.00 60.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -59.88 17.50 59.88 21.00 MacLine -59.88 171.50 59.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -55.25 168.00 55.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -54.75 17.50 54.75 21.00 MacLine -54.75 171.50 54.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -50.12 168.00 50.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -49.62 17.50 49.62 21.00 MacLine -49.62 171.50 49.62 168.00 MacLine -1 ps -1.00 ps -44.50 17.50 44.50 24.50 MacLine -44.50 171.50 44.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 42.25 184.25 5.50 WS -14.00 (_Helvetica) 0 F -(x \(cm\)) 191.62 204.75 38.75 WS -1 0 0 SetFore UseFore -2.00 ps -newpath 45.00 60.38 M -46.62 64.38 L -48.38 68.75 L -50.00 73.12 L -51.62 77.62 L -53.38 82.25 L -55.00 87.00 L -56.62 91.75 L -58.38 96.50 L -60.00 101.25 L -61.75 106.00 L -63.38 110.62 L -65.00 115.25 L -66.62 119.62 L -68.38 124.00 L -70.00 128.12 L -71.75 132.12 L -73.38 135.88 L -75.00 139.50 L -76.75 142.75 L -78.38 145.88 L -80.00 148.62 L -81.75 151.00 L -83.38 153.25 L -85.00 155.00 L -86.75 156.62 L -88.38 157.75 L -90.00 158.50 L -91.75 159.00 L -93.38 159.12 L -95.00 158.88 L -96.75 158.38 L -98.38 157.38 L -100.00 156.12 L -101.75 154.50 L -103.38 152.62 L -105.00 150.25 L -106.75 147.75 L -108.38 144.88 L -110.00 141.75 L -111.75 138.38 L -113.38 134.75 L -115.12 130.88 L -116.75 126.88 L -118.38 122.62 L -120.00 118.25 L -121.75 113.75 L -123.38 109.12 L -125.12 104.50 L -126.75 99.75 L -128.38 95.00 L -130.12 90.25 L -131.75 85.50 L -133.38 80.75 L -135.12 76.25 L -136.75 71.75 L -138.38 67.38 L -140.12 63.12 L -141.75 59.00 L -143.50 55.25 L -145.12 51.62 L -146.75 48.25 L -148.38 45.12 L -150.12 42.25 L -151.75 39.62 L -153.50 37.38 L -155.12 35.50 L -156.75 33.88 L -158.38 32.62 L -160.12 31.62 L -161.75 31.12 L -163.50 30.88 L -165.12 31.00 L -166.75 31.50 L -168.50 32.25 L -170.12 33.38 L -171.75 35.00 L -173.50 36.75 L -175.12 39.00 L -176.75 41.50 L -178.50 44.25 L -180.12 47.25 L -181.88 50.50 L -183.50 54.12 L -185.12 57.88 L -186.75 61.88 L -188.50 66.00 L -190.12 70.38 L -191.88 74.88 L -193.50 79.38 L -195.12 84.12 L -196.88 88.75 L -198.50 93.50 L -200.12 98.38 L -201.88 103.12 L -203.50 107.75 L -205.12 112.38 L -206.88 117.00 L -208.50 121.38 L -210.12 125.62 L -211.88 129.75 L -213.50 133.62 L -215.12 137.38 L -216.88 140.75 L -218.50 144.00 L -220.12 146.88 L -221.88 149.62 L -223.50 152.00 L -225.12 154.00 L -226.88 155.62 L -228.50 157.12 L -230.12 158.12 L -231.88 158.75 L -233.50 159.12 L -235.25 159.12 L -236.88 158.75 L -238.50 158.00 L -240.12 157.00 L -241.88 155.50 L -243.50 153.75 L -245.25 151.75 L -246.88 149.38 L -248.50 146.62 L -250.25 143.75 L -251.88 140.50 L -253.50 137.00 L -255.25 133.25 L -256.88 129.38 L -258.50 125.25 L -260.25 121.00 L -261.88 116.50 L -263.62 112.00 L -265.25 107.38 L -266.88 102.62 L -268.50 97.88 L -270.25 93.12 L -271.88 88.38 L -273.62 83.62 L -275.25 79.00 L -276.88 74.50 L -278.50 70.00 L -280.25 65.62 L -281.88 61.50 L -283.62 57.50 L -285.25 53.75 L -286.88 50.25 L -288.62 47.00 L -290.25 44.00 L -291.88 41.25 L -293.62 38.75 L -295.25 36.62 L -296.88 34.75 L -298.62 33.38 L -300.25 32.12 L -302.00 31.38 L -303.62 30.88 L -305.25 30.88 L -306.88 31.12 L -308.62 31.75 L -310.25 32.62 L -312.00 34.00 L -313.62 35.62 L -315.25 37.62 L -317.00 39.88 L -318.62 42.50 L -320.25 45.38 L -322.00 48.50 L -323.62 51.88 L -325.25 55.50 L -327.00 59.38 L -328.62 63.50 L -330.25 67.75 L -332.00 72.12 L -333.62 76.62 L -335.25 81.25 L -337.00 85.88 L -338.62 90.62 L -340.25 95.38 L -342.00 100.12 L -343.62 104.88 L -345.25 109.50 L -347.00 114.12 L -348.62 118.62 L -350.25 123.00 L -352.00 127.25 L -353.62 131.25 L -355.38 135.00 L -357.00 138.62 L -358.62 142.00 L -360.25 145.12 L -362.00 148.00 L -363.62 150.50 L -365.38 152.75 L -367.00 154.62 L -368.62 156.25 L -370.38 157.50 L -372.00 158.38 L -373.62 159.00 L -375.38 159.12 L -377.00 159.00 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av5.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av5.gif deleted file mode 100755 index 08d02ae34..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av5.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av6.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av6.eps deleted file mode 100755 index db6dbd507..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av6.eps +++ /dev/null @@ -1,1309 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 395 208 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Tue, Apr 2, 1996 6:47 PM -%%DocumentFonts: (atend) -%%EndComments -0 208 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -44.50 18.00 44.50 171.00 MacLine -376.50 18.00 376.50 171.00 MacLine -1 ps -1.00 ps -376.50 172.12 373.00 172.12 MacLine -44.50 172.12 48.00 172.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 167.50 373.00 167.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 167.00 373.00 167.00 MacLine -44.50 167.00 48.00 167.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 162.25 373.00 162.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 161.75 373.00 161.75 MacLine -44.50 161.75 48.00 161.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 157.00 369.50 157.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 156.62 369.50 156.62 MacLine -44.50 156.62 51.50 156.62 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(-60) 26.62 159.88 14.38 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 151.88 373.00 151.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 151.38 373.00 151.38 MacLine -44.50 151.38 48.00 151.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 146.75 373.00 146.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 146.25 373.00 146.25 MacLine -44.50 146.25 48.00 146.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 141.62 373.00 141.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 141.12 373.00 141.12 MacLine -44.50 141.12 48.00 141.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 136.25 369.50 136.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 135.88 369.50 135.88 MacLine -44.50 135.88 51.50 135.88 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-40) 26.62 139.12 14.38 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 131.25 373.00 131.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 130.75 373.00 130.75 MacLine -44.50 130.75 48.00 130.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 126.00 373.00 126.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 125.50 373.00 125.50 MacLine -44.50 125.50 48.00 125.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 120.88 373.00 120.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 120.38 373.00 120.38 MacLine -44.50 120.38 48.00 120.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 115.62 369.50 115.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 115.25 369.50 115.25 MacLine -44.50 115.25 51.50 115.25 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-20) 26.62 118.50 14.38 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 110.50 373.00 110.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 110.00 373.00 110.00 MacLine -44.50 110.00 48.00 110.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 105.38 373.00 105.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 104.88 373.00 104.88 MacLine -44.50 104.88 48.00 104.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 100.12 373.00 100.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 99.62 373.00 99.62 MacLine -44.50 99.62 48.00 99.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 94.88 369.50 94.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 94.50 369.50 94.50 MacLine -44.50 94.50 51.50 94.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 35.50 97.75 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 89.88 373.00 89.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 89.38 373.00 89.38 MacLine -44.50 89.38 48.00 89.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 84.62 373.00 84.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 84.12 373.00 84.12 MacLine -44.50 84.12 48.00 84.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 79.50 373.00 79.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 79.00 373.00 79.00 MacLine -44.50 79.00 48.00 79.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 74.12 369.50 74.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 73.75 369.50 73.75 MacLine -44.50 73.75 51.50 73.75 MacLine -1 ps -10.00 (_Helvetica) 0 F -(20) 30.00 77.00 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 69.12 373.00 69.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 68.62 373.00 68.62 MacLine -44.50 68.62 48.00 68.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 64.00 373.00 64.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 63.50 373.00 63.50 MacLine -44.50 63.50 48.00 63.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 58.75 373.00 58.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 58.25 373.00 58.25 MacLine -44.50 58.25 48.00 58.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 53.50 369.50 53.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 53.12 369.50 53.12 MacLine -44.50 53.12 51.50 53.12 MacLine -1 ps -10.00 (_Helvetica) 0 F -(40) 30.00 56.38 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 48.38 373.00 48.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 47.88 373.00 47.88 MacLine -44.50 47.88 48.00 47.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 43.25 373.00 43.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 42.75 373.00 42.75 MacLine -44.50 42.75 48.00 42.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 38.12 373.00 38.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 37.62 373.00 37.62 MacLine -44.50 37.62 48.00 37.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 32.75 369.50 32.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 32.38 369.50 32.38 MacLine -44.50 32.38 51.50 32.38 MacLine -1 ps -10.00 (_Helvetica) 0 F -(60) 30.00 35.62 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 27.75 373.00 27.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 27.25 373.00 27.25 MacLine -44.50 27.25 48.00 27.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 22.50 373.00 22.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 22.00 373.00 22.00 MacLine -44.50 22.00 48.00 22.00 MacLine -1 ps -1.00 ps -376.50 16.88 373.00 16.88 MacLine -44.50 16.88 48.00 16.88 MacLine -1 ps -gsave 1.00 ps 45.50 95.00 376.50 95.00 2 CapLine grestore -14.00 (_Helvetica) 0 F -gsave 10.75 114.38 translate -90 rotate -(y \(cm\)) 0.00 0.00 38.75 WS -grestore -1.00 ps -44.50 171.50 376.50 171.50 MacLine -44.50 17.50 376.50 17.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -372.00 168.00 372.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -371.50 17.50 371.50 21.00 MacLine -371.50 171.50 371.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -365.38 168.00 365.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -364.88 17.50 364.88 21.00 MacLine -364.88 171.50 364.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -358.62 168.00 358.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -358.12 17.50 358.12 21.00 MacLine -358.12 171.50 358.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -352.00 168.00 352.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -351.50 17.50 351.50 21.00 MacLine -351.50 171.50 351.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -345.25 166.25 345.25 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -344.75 17.50 344.75 22.75 MacLine -344.75 171.50 344.75 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -338.62 168.00 338.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -338.12 17.50 338.12 21.00 MacLine -338.12 171.50 338.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -332.00 168.00 332.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -331.50 17.50 331.50 21.00 MacLine -331.50 171.50 331.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -325.25 168.00 325.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -324.75 17.50 324.75 21.00 MacLine -324.75 171.50 324.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -318.62 168.00 318.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -318.12 17.50 318.12 21.00 MacLine -318.12 171.50 318.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -311.75 164.50 311.75 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -311.38 17.50 311.38 24.50 MacLine -311.38 171.50 311.38 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(400) 303.62 184.25 16.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -305.25 168.00 305.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -304.75 17.50 304.75 21.00 MacLine -304.75 171.50 304.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -298.62 168.00 298.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -298.12 17.50 298.12 21.00 MacLine -298.12 171.50 298.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -291.88 168.00 291.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -291.38 17.50 291.38 21.00 MacLine -291.38 171.50 291.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -285.25 168.00 285.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -284.75 17.50 284.75 21.00 MacLine -284.75 171.50 284.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -278.62 166.25 278.62 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -278.12 17.50 278.12 22.75 MacLine -278.12 171.50 278.12 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -271.88 168.00 271.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -271.38 17.50 271.38 21.00 MacLine -271.38 171.50 271.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -265.25 168.00 265.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -264.75 17.50 264.75 21.00 MacLine -264.75 171.50 264.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -258.50 168.00 258.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -258.00 17.50 258.00 21.00 MacLine -258.00 171.50 258.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -251.88 168.00 251.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -251.38 17.50 251.38 21.00 MacLine -251.38 171.50 251.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -245.12 164.50 245.12 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -244.75 17.50 244.75 24.50 MacLine -244.75 171.50 244.75 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(300) 237.00 184.25 16.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -238.50 168.00 238.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -238.00 17.50 238.00 21.00 MacLine -238.00 171.50 238.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -231.88 168.00 231.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -231.38 17.50 231.38 21.00 MacLine -231.38 171.50 231.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -225.12 168.00 225.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -224.62 17.50 224.62 21.00 MacLine -224.62 171.50 224.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -218.50 168.00 218.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -218.00 17.50 218.00 21.00 MacLine -218.00 171.50 218.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -211.88 166.25 211.88 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -211.38 17.50 211.38 22.75 MacLine -211.38 171.50 211.38 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -205.12 168.00 205.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -204.62 17.50 204.62 21.00 MacLine -204.62 171.50 204.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -198.50 168.00 198.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -198.00 17.50 198.00 21.00 MacLine -198.00 171.50 198.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -191.88 168.00 191.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -191.38 17.50 191.38 21.00 MacLine -191.38 171.50 191.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -185.12 168.00 185.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -184.62 17.50 184.62 21.00 MacLine -184.62 171.50 184.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -178.38 164.50 178.38 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -178.00 17.50 178.00 24.50 MacLine -178.00 171.50 178.00 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(200) 170.25 184.25 16.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -171.75 168.00 171.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -171.25 17.50 171.25 21.00 MacLine -171.25 171.50 171.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -165.12 168.00 165.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -164.62 17.50 164.62 21.00 MacLine -164.62 171.50 164.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -158.50 168.00 158.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -158.00 17.50 158.00 21.00 MacLine -158.00 171.50 158.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -151.75 168.00 151.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -151.25 17.50 151.25 21.00 MacLine -151.25 171.50 151.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -145.12 166.25 145.12 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -144.62 17.50 144.62 22.75 MacLine -144.62 171.50 144.62 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -138.38 168.00 138.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -137.88 17.50 137.88 21.00 MacLine -137.88 171.50 137.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -131.75 168.00 131.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -131.25 17.50 131.25 21.00 MacLine -131.25 171.50 131.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -125.12 168.00 125.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -124.62 17.50 124.62 21.00 MacLine -124.62 171.50 124.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -118.38 168.00 118.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -117.88 17.50 117.88 21.00 MacLine -117.88 171.50 117.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -111.62 164.50 111.62 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -111.25 17.50 111.25 24.50 MacLine -111.25 171.50 111.25 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(100) 103.50 184.25 16.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -105.00 168.00 105.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -104.50 17.50 104.50 21.00 MacLine -104.50 171.50 104.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -98.38 168.00 98.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -97.88 17.50 97.88 21.00 MacLine -97.88 171.50 97.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -91.75 168.00 91.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -91.25 17.50 91.25 21.00 MacLine -91.25 171.50 91.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -85.00 168.00 85.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -84.50 17.50 84.50 21.00 MacLine -84.50 171.50 84.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -78.38 166.25 78.38 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -77.88 17.50 77.88 22.75 MacLine -77.88 171.50 77.88 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -71.75 168.00 71.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -71.25 17.50 71.25 21.00 MacLine -71.25 171.50 71.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -65.00 168.00 65.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -64.50 17.50 64.50 21.00 MacLine -64.50 171.50 64.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -58.38 168.00 58.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -57.88 17.50 57.88 21.00 MacLine -57.88 171.50 57.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -51.62 168.00 51.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -51.12 17.50 51.12 21.00 MacLine -51.12 171.50 51.12 168.00 MacLine -1 ps -1.00 ps -44.50 17.50 44.50 24.50 MacLine -44.50 171.50 44.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 42.25 184.25 5.50 WS -14.00 (_Helvetica) 0 F -(x \(cm\)) 191.62 204.75 38.75 WS -1 0 0 SetFore UseFore -2.00 ps -newpath 45.00 76.75 M -46.62 72.00 L -48.38 67.38 L -50.00 62.88 L -51.62 58.62 L -53.38 54.62 L -55.00 50.88 L -56.62 47.38 L -58.38 44.12 L -60.00 41.25 L -61.75 38.62 L -63.38 36.38 L -65.00 34.50 L -66.62 33.00 L -68.38 31.88 L -70.00 31.12 L -71.75 30.88 L -73.38 30.88 L -75.00 31.38 L -76.75 32.25 L -78.38 33.50 L -80.00 35.12 L -81.75 37.12 L -83.38 39.38 L -85.00 42.12 L -86.75 45.12 L -88.38 48.38 L -90.00 52.00 L -91.75 55.88 L -93.38 60.00 L -95.00 64.38 L -96.75 68.88 L -98.38 73.50 L -100.00 78.38 L -101.75 83.25 L -103.38 88.25 L -105.00 93.25 L -106.75 98.38 L -108.38 103.38 L -110.00 108.25 L -111.75 113.25 L -113.38 118.00 L -115.12 122.62 L -116.75 127.12 L -118.38 131.38 L -120.00 135.38 L -121.75 139.12 L -123.38 142.62 L -125.12 145.88 L -126.75 148.75 L -128.38 151.38 L -130.12 153.62 L -131.75 155.50 L -133.38 157.00 L -135.12 158.12 L -136.75 158.88 L -138.38 159.12 L -140.12 159.12 L -141.75 158.62 L -143.50 157.75 L -145.12 156.50 L -146.75 154.88 L -148.38 152.88 L -150.12 150.62 L -151.75 147.88 L -153.50 144.88 L -155.12 141.62 L -156.75 138.00 L -158.38 134.12 L -160.12 130.00 L -161.75 125.62 L -163.50 121.12 L -165.12 116.50 L -166.75 111.62 L -168.50 106.75 L -170.12 101.75 L -171.75 96.75 L -173.50 91.62 L -175.12 86.62 L -176.75 81.75 L -178.50 76.75 L -180.12 72.00 L -181.88 67.38 L -183.50 62.88 L -185.12 58.62 L -186.75 54.62 L -188.50 50.88 L -190.12 47.38 L -191.88 44.12 L -193.50 41.25 L -195.12 38.62 L -196.88 36.38 L -198.50 34.50 L -200.12 33.00 L -201.88 31.88 L -203.50 31.12 L -205.12 30.88 L -206.88 30.88 L -208.50 31.38 L -210.12 32.25 L -211.88 33.50 L -213.50 35.12 L -215.12 37.12 L -216.88 39.38 L -218.50 42.12 L -220.12 45.12 L -221.88 48.38 L -223.50 52.00 L -225.12 55.88 L -226.88 60.00 L -228.50 64.38 L -230.12 68.88 L -231.88 73.50 L -233.50 78.38 L -235.25 83.25 L -236.88 88.25 L -238.50 93.25 L -240.12 98.38 L -241.88 103.38 L -243.50 108.25 L -245.25 113.25 L -246.88 118.00 L -248.50 122.62 L -250.25 127.12 L -251.88 131.38 L -253.50 135.38 L -255.25 139.12 L -256.88 142.62 L -258.50 145.88 L -260.25 148.75 L -261.88 151.38 L -263.62 153.62 L -265.25 155.50 L -266.88 157.00 L -268.50 158.12 L -270.25 158.88 L -271.88 159.12 L -273.62 159.12 L -275.25 158.62 L -276.88 157.75 L -278.50 156.50 L -280.25 154.88 L -281.88 152.88 L -283.62 150.62 L -285.25 147.88 L -286.88 144.88 L -288.62 141.62 L -290.25 138.00 L -291.88 134.12 L -293.62 130.00 L -295.25 125.62 L -296.88 121.12 L -298.62 116.50 L -300.25 111.62 L -302.00 106.75 L -303.62 101.75 L -305.25 96.75 L -306.88 91.62 L -308.62 86.62 L -310.25 81.75 L -312.00 76.75 L -313.62 72.00 L -315.25 67.38 L -317.00 62.88 L -318.62 58.62 L -320.25 54.62 L -322.00 50.88 L -323.62 47.38 L -325.25 44.12 L -327.00 41.25 L -328.62 38.62 L -330.25 36.38 L -332.00 34.50 L -333.62 33.00 L -335.25 31.88 L -337.00 31.12 L -338.62 30.88 L -340.25 30.88 L -342.00 31.38 L -343.62 32.25 L -345.25 33.50 L -347.00 35.12 L -348.62 37.12 L -350.25 39.38 L -352.00 42.12 L -353.62 45.12 L -355.38 48.38 L -357.00 52.00 L -358.62 55.88 L -360.25 60.00 L -362.00 64.38 L -363.62 68.88 L -365.38 73.50 L -367.00 78.38 L -368.62 83.25 L -370.38 88.25 L -372.00 93.25 L -373.62 98.38 L -375.38 103.38 L -377.00 108.25 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av6.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av6.gif deleted file mode 100755 index c071086c9..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av6.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av6.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av6.pdf deleted file mode 100644 index c1f9448db..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av6.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av7.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av7.eps deleted file mode 100755 index b00a5ce16..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av7.eps +++ /dev/null @@ -1,1101 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 395 208 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Tue, Apr 2, 1996 6:48 PM -%%DocumentFonts: (atend) -%%EndComments -0 208 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -44.50 18.00 44.50 171.00 MacLine -376.50 18.00 376.50 171.00 MacLine -1 ps -1.00 ps -376.50 170.75 373.00 170.75 MacLine -44.50 170.75 48.00 170.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 167.12 373.00 167.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 166.62 373.00 166.62 MacLine -44.50 166.62 48.00 166.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 163.12 373.00 163.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 162.62 373.00 162.62 MacLine -44.50 162.62 48.00 162.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 159.12 373.00 159.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 158.62 373.00 158.62 MacLine -44.50 158.62 48.00 158.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -49.75 155.12 371.25 155.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 154.62 371.25 154.62 MacLine -44.50 154.62 49.75 154.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 151.12 373.00 151.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 150.62 373.00 150.62 MacLine -44.50 150.62 48.00 150.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 147.12 373.00 147.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 146.62 373.00 146.62 MacLine -44.50 146.62 48.00 146.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 143.12 373.00 143.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 142.62 373.00 142.62 MacLine -44.50 142.62 48.00 142.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 139.12 373.00 139.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 138.62 373.00 138.62 MacLine -44.50 138.62 48.00 138.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 135.00 369.50 135.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 134.62 369.50 134.62 MacLine -44.50 134.62 51.50 134.62 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(-20) 26.62 137.88 14.38 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 131.12 373.00 131.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 130.62 373.00 130.62 MacLine -44.50 130.62 48.00 130.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 127.12 373.00 127.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 126.62 373.00 126.62 MacLine -44.50 126.62 48.00 126.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 123.12 373.00 123.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 122.62 373.00 122.62 MacLine -44.50 122.62 48.00 122.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 119.00 373.00 119.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 118.50 373.00 118.50 MacLine -44.50 118.50 48.00 118.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -49.75 115.00 371.25 115.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 114.50 371.25 114.50 MacLine -44.50 114.50 49.75 114.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 111.00 373.00 111.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 110.50 373.00 110.50 MacLine -44.50 110.50 48.00 110.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 107.00 373.00 107.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 106.50 373.00 106.50 MacLine -44.50 106.50 48.00 106.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 103.00 373.00 103.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 102.50 373.00 102.50 MacLine -44.50 102.50 48.00 102.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 99.00 373.00 99.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 98.50 373.00 98.50 MacLine -44.50 98.50 48.00 98.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 94.88 369.50 94.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 94.50 369.50 94.50 MacLine -44.50 94.50 51.50 94.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 35.50 97.75 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 91.00 373.00 91.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 90.50 373.00 90.50 MacLine -44.50 90.50 48.00 90.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 87.00 373.00 87.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 86.50 373.00 86.50 MacLine -44.50 86.50 48.00 86.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 83.00 373.00 83.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 82.50 373.00 82.50 MacLine -44.50 82.50 48.00 82.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 79.00 373.00 79.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 78.50 373.00 78.50 MacLine -44.50 78.50 48.00 78.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -49.75 75.00 371.25 75.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 74.50 371.25 74.50 MacLine -44.50 74.50 49.75 74.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 70.88 373.00 70.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 70.38 373.00 70.38 MacLine -44.50 70.38 48.00 70.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 66.88 373.00 66.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 66.38 373.00 66.38 MacLine -44.50 66.38 48.00 66.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 62.88 373.00 62.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 62.38 373.00 62.38 MacLine -44.50 62.38 48.00 62.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 58.88 373.00 58.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 58.38 373.00 58.38 MacLine -44.50 58.38 48.00 58.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 54.75 369.50 54.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 54.38 369.50 54.38 MacLine -44.50 54.38 51.50 54.38 MacLine -1 ps -10.00 (_Helvetica) 0 F -(20) 30.00 57.62 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 50.88 373.00 50.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 50.38 373.00 50.38 MacLine -44.50 50.38 48.00 50.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 46.88 373.00 46.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 46.38 373.00 46.38 MacLine -44.50 46.38 48.00 46.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 42.88 373.00 42.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 42.38 373.00 42.38 MacLine -44.50 42.38 48.00 42.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 38.88 373.00 38.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 38.38 373.00 38.38 MacLine -44.50 38.38 48.00 38.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -49.75 34.88 371.25 34.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 34.38 371.25 34.38 MacLine -44.50 34.38 49.75 34.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 30.88 373.00 30.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 30.38 373.00 30.38 MacLine -44.50 30.38 48.00 30.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 26.88 373.00 26.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 26.38 373.00 26.38 MacLine -44.50 26.38 48.00 26.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 22.75 373.00 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 22.25 373.00 22.25 MacLine -44.50 22.25 48.00 22.25 MacLine -1 ps -1.00 ps -376.50 18.25 373.00 18.25 MacLine -44.50 18.25 48.00 18.25 MacLine -1 ps -gsave 1.00 ps 45.50 95.00 376.50 95.00 2 CapLine grestore -14.00 (_Helvetica) 0 F -gsave 10.75 114.38 translate -90 rotate -(y \(cm\)) 0.00 0.00 38.75 WS -grestore -1.00 ps -44.50 171.50 376.50 171.50 MacLine -44.50 17.50 376.50 17.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -362.00 168.00 362.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -361.50 17.50 361.50 21.00 MacLine -361.50 171.50 361.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -345.25 168.00 345.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -344.75 17.50 344.75 21.00 MacLine -344.75 171.50 344.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -328.62 168.00 328.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -328.12 17.50 328.12 21.00 MacLine -328.12 171.50 328.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -311.88 168.00 311.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -311.38 17.50 311.38 21.00 MacLine -311.38 171.50 311.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -295.12 164.50 295.12 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -294.75 17.50 294.75 24.50 MacLine -294.75 171.50 294.75 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(150) 287.00 184.25 16.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -278.62 168.00 278.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -278.12 17.50 278.12 21.00 MacLine -278.12 171.50 278.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -261.88 168.00 261.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -261.38 17.50 261.38 21.00 MacLine -261.38 171.50 261.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -245.25 168.00 245.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -244.75 17.50 244.75 21.00 MacLine -244.75 171.50 244.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -228.50 168.00 228.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -228.00 17.50 228.00 21.00 MacLine -228.00 171.50 228.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -211.75 164.50 211.75 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -211.38 17.50 211.38 24.50 MacLine -211.38 171.50 211.38 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(100) 203.62 184.25 16.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -195.12 168.00 195.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -194.62 17.50 194.62 21.00 MacLine -194.62 171.50 194.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -178.50 168.00 178.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -178.00 17.50 178.00 21.00 MacLine -178.00 171.50 178.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -161.75 168.00 161.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -161.25 17.50 161.25 21.00 MacLine -161.25 171.50 161.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -145.12 168.00 145.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -144.62 17.50 144.62 21.00 MacLine -144.62 171.50 144.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -128.25 164.50 128.25 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -127.88 17.50 127.88 24.50 MacLine -127.88 171.50 127.88 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(50) 122.88 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -111.75 168.00 111.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -111.25 17.50 111.25 21.00 MacLine -111.25 171.50 111.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -95.00 168.00 95.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -94.50 17.50 94.50 21.00 MacLine -94.50 171.50 94.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -78.38 168.00 78.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -77.88 17.50 77.88 21.00 MacLine -77.88 171.50 77.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -61.62 168.00 61.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -61.12 17.50 61.12 21.00 MacLine -61.12 171.50 61.12 168.00 MacLine -1 ps -1.00 ps -44.50 17.50 44.50 24.50 MacLine -44.50 171.50 44.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 42.25 184.25 5.50 WS -14.00 (_Helvetica) 0 F -(x \(cm\)) 191.62 204.75 38.75 WS -1 0 0 SetFore UseFore -2.00 ps -newpath 45.00 76.75 M -46.62 72.50 L -48.38 68.25 L -50.00 64.12 L -51.62 60.25 L -53.38 56.38 L -55.00 52.88 L -56.62 49.50 L -58.38 46.38 L -60.00 43.62 L -61.75 41.00 L -63.38 38.62 L -65.00 36.62 L -66.62 34.88 L -68.38 33.38 L -70.00 32.25 L -71.75 31.50 L -73.38 31.00 L -75.00 30.88 L -76.75 31.00 L -78.38 31.50 L -80.00 32.38 L -81.75 33.50 L -83.38 35.00 L -85.00 36.75 L -86.75 38.75 L -88.38 41.12 L -90.00 43.75 L -91.75 46.62 L -93.38 49.75 L -95.00 53.12 L -96.75 56.62 L -98.38 60.50 L -100.00 64.38 L -101.75 68.50 L -103.38 72.75 L -105.00 77.00 L -106.75 81.50 L -108.38 86.00 L -110.00 90.50 L -111.75 95.12 L -113.38 99.75 L -115.12 104.25 L -116.75 108.75 L -118.38 113.25 L -120.00 117.50 L -121.75 121.75 L -123.38 125.88 L -125.12 129.75 L -126.75 133.62 L -128.38 137.12 L -130.12 140.50 L -131.75 143.62 L -133.38 146.38 L -135.12 149.00 L -136.75 151.38 L -138.38 153.38 L -140.12 155.12 L -141.75 156.62 L -143.50 157.75 L -145.12 158.50 L -146.75 159.00 L -148.38 159.12 L -150.12 159.00 L -151.75 158.50 L -153.50 157.62 L -155.12 156.50 L -156.75 155.00 L -158.38 153.25 L -160.12 151.25 L -161.75 148.88 L -163.50 146.25 L -165.12 143.38 L -166.75 140.25 L -168.50 136.88 L -170.12 133.38 L -171.75 129.50 L -173.50 125.62 L -175.12 121.50 L -176.75 117.25 L -178.50 113.00 L -180.12 108.50 L -181.88 104.00 L -183.50 99.50 L -185.12 94.88 L -186.75 90.25 L -188.50 85.75 L -190.12 81.25 L -191.88 76.75 L -193.50 72.50 L -195.12 68.25 L -196.88 64.12 L -198.50 60.25 L -200.12 56.38 L -201.88 52.88 L -203.50 49.50 L -205.12 46.38 L -206.88 43.62 L -208.50 41.00 L -210.12 38.62 L -211.88 36.62 L -213.50 34.88 L -215.12 33.38 L -216.88 32.25 L -218.50 31.50 L -220.12 31.00 L -221.88 30.88 L -223.50 31.00 L -225.12 31.50 L -226.88 32.38 L -228.50 33.50 L -230.12 35.00 L -231.88 36.75 L -233.50 38.75 L -235.25 41.12 L -236.88 43.75 L -238.50 46.62 L -240.12 49.75 L -241.88 53.12 L -243.50 56.62 L -245.25 60.50 L -246.88 64.38 L -248.50 68.50 L -250.25 72.75 L -251.88 77.00 L -253.50 81.50 L -255.25 86.00 L -256.88 90.50 L -258.50 95.12 L -260.25 99.75 L -261.88 104.25 L -263.62 108.75 L -265.25 113.25 L -266.88 117.50 L -268.50 121.75 L -270.25 125.88 L -271.88 129.75 L -273.62 133.62 L -275.25 137.12 L -276.88 140.50 L -278.50 143.62 L -280.25 146.38 L -281.88 149.00 L -283.62 151.38 L -285.25 153.38 L -286.88 155.12 L -288.62 156.62 L -290.25 157.75 L -291.88 158.50 L -293.62 159.00 L -295.25 159.12 L -296.88 159.00 L -298.62 158.50 L -300.25 157.62 L -302.00 156.50 L -303.62 155.00 L -305.25 153.25 L -306.88 151.25 L -308.62 148.88 L -310.25 146.25 L -312.00 143.38 L -313.62 140.25 L -315.25 136.88 L -317.00 133.38 L -318.62 129.50 L -320.25 125.62 L -322.00 121.50 L -323.62 117.25 L -325.25 113.00 L -327.00 108.50 L -328.62 104.00 L -330.25 99.50 L -332.00 94.88 L -333.62 90.25 L -335.25 85.75 L -337.00 81.25 L -338.62 76.75 L -340.25 72.50 L -342.00 68.25 L -343.62 64.12 L -345.25 60.25 L -347.00 56.38 L -348.62 52.88 L -350.25 49.50 L -352.00 46.38 L -353.62 43.62 L -355.38 41.00 L -357.00 38.62 L -358.62 36.62 L -360.25 34.88 L -362.00 33.38 L -363.62 32.25 L -365.38 31.50 L -367.00 31.00 L -368.62 30.88 L -370.38 31.00 L -372.00 31.50 L -373.62 32.38 L -375.38 33.50 L -377.00 35.00 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av7.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av7.gif deleted file mode 100755 index a6b56c114..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av7.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av8.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av8.eps deleted file mode 100755 index 0198c3c53..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av8.eps +++ /dev/null @@ -1,1142 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 395 208 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Tue, Apr 2, 1996 6:50 PM -%%DocumentFonts: (atend) -%%EndComments -0 208 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -44.50 18.00 44.50 171.00 MacLine -376.50 18.00 376.50 171.00 MacLine -1 ps -1.00 ps -376.50 171.75 373.00 171.75 MacLine -44.50 171.75 48.00 171.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 166.12 369.50 166.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 165.75 369.50 165.75 MacLine -44.50 165.75 51.50 165.75 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(-60) 26.62 169.00 14.38 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 160.38 373.00 160.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 159.88 373.00 159.88 MacLine -44.50 159.88 48.00 159.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 154.38 373.00 154.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 153.88 373.00 153.88 MacLine -44.50 153.88 48.00 153.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 148.50 373.00 148.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 148.00 373.00 148.00 MacLine -44.50 148.00 48.00 148.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 142.38 369.50 142.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 142.00 369.50 142.00 MacLine -44.50 142.00 51.50 142.00 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-40) 26.62 145.25 14.38 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 136.62 373.00 136.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 136.12 373.00 136.12 MacLine -44.50 136.12 48.00 136.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 130.62 373.00 130.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 130.12 373.00 130.12 MacLine -44.50 130.12 48.00 130.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 124.75 373.00 124.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 124.25 373.00 124.25 MacLine -44.50 124.25 48.00 124.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 118.62 369.50 118.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 118.25 369.50 118.25 MacLine -44.50 118.25 51.50 118.25 MacLine -1 ps -10.00 (_Helvetica) 0 F -(-20) 26.62 121.50 14.38 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 112.88 373.00 112.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 112.38 373.00 112.38 MacLine -44.50 112.38 48.00 112.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 106.88 373.00 106.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 106.38 373.00 106.38 MacLine -44.50 106.38 48.00 106.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 101.00 373.00 101.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 100.50 373.00 100.50 MacLine -44.50 100.50 48.00 100.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 94.88 369.50 94.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 94.50 369.50 94.50 MacLine -44.50 94.50 51.50 94.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 35.50 97.75 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 89.00 373.00 89.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 88.50 373.00 88.50 MacLine -44.50 88.50 48.00 88.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 83.12 373.00 83.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 82.62 373.00 82.62 MacLine -44.50 82.62 48.00 82.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 77.12 373.00 77.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 76.62 373.00 76.62 MacLine -44.50 76.62 48.00 76.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 71.12 369.50 71.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 70.75 369.50 70.75 MacLine -44.50 70.75 51.50 70.75 MacLine -1 ps -10.00 (_Helvetica) 0 F -(20) 30.00 74.00 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 65.25 373.00 65.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 64.75 373.00 64.75 MacLine -44.50 64.75 48.00 64.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 59.38 373.00 59.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 58.88 373.00 58.88 MacLine -44.50 58.88 48.00 58.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 53.38 373.00 53.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 52.88 373.00 52.88 MacLine -44.50 52.88 48.00 52.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 47.38 369.50 47.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 47.00 369.50 47.00 MacLine -44.50 47.00 51.50 47.00 MacLine -1 ps -10.00 (_Helvetica) 0 F -(40) 30.00 50.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 41.50 373.00 41.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 41.00 373.00 41.00 MacLine -44.50 41.00 48.00 41.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 35.62 373.00 35.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 35.12 373.00 35.12 MacLine -44.50 35.12 48.00 35.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 29.62 373.00 29.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 29.12 373.00 29.12 MacLine -44.50 29.12 48.00 29.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 23.62 369.50 23.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 23.25 369.50 23.25 MacLine -44.50 23.25 51.50 23.25 MacLine -1 ps -10.00 (_Helvetica) 0 F -(60) 30.00 26.50 11.00 WS -1.00 ps -376.50 17.25 373.00 17.25 MacLine -44.50 17.25 48.00 17.25 MacLine -1 ps -gsave 1.00 ps 45.50 95.00 376.50 95.00 2 CapLine grestore -14.00 (_Helvetica) 0 F -gsave 10.75 114.38 translate -90 rotate -(y \(cm\)) 0.00 0.00 38.75 WS -grestore -1.00 ps -44.50 171.50 376.50 171.50 MacLine -44.50 17.50 376.50 17.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -369.12 168.00 369.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -368.62 17.50 368.62 21.00 MacLine -368.62 171.50 368.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -359.62 168.00 359.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -359.12 17.50 359.12 21.00 MacLine -359.12 171.50 359.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -350.12 168.00 350.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -349.62 17.50 349.62 21.00 MacLine -349.62 171.50 349.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -340.50 168.00 340.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -340.00 17.50 340.00 21.00 MacLine -340.00 171.50 340.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -330.88 164.50 330.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -330.50 17.50 330.50 24.50 MacLine -330.50 171.50 330.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(300) 322.75 184.25 16.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -321.50 168.00 321.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -321.00 17.50 321.00 21.00 MacLine -321.00 171.50 321.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -311.88 168.00 311.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -311.38 17.50 311.38 21.00 MacLine -311.38 171.50 311.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -302.38 168.00 302.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -301.88 17.50 301.88 21.00 MacLine -301.88 171.50 301.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -292.88 168.00 292.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -292.38 17.50 292.38 21.00 MacLine -292.38 171.50 292.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -283.25 164.50 283.25 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -282.88 17.50 282.88 24.50 MacLine -282.88 171.50 282.88 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(250) 275.12 184.25 16.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -273.75 168.00 273.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -273.25 17.50 273.25 21.00 MacLine -273.25 171.50 273.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -264.25 168.00 264.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -263.75 17.50 263.75 21.00 MacLine -263.75 171.50 263.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -254.75 168.00 254.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -254.25 17.50 254.25 21.00 MacLine -254.25 171.50 254.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -245.25 168.00 245.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -244.75 17.50 244.75 21.00 MacLine -244.75 171.50 244.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -235.50 164.50 235.50 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -235.12 17.50 235.12 24.50 MacLine -235.12 171.50 235.12 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(200) 227.38 184.25 16.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -226.12 168.00 226.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -225.62 17.50 225.62 21.00 MacLine -225.62 171.50 225.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -216.62 168.00 216.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -216.12 17.50 216.12 21.00 MacLine -216.12 171.50 216.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -207.12 168.00 207.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -206.62 17.50 206.62 21.00 MacLine -206.62 171.50 206.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -197.50 168.00 197.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -197.00 17.50 197.00 21.00 MacLine -197.00 171.50 197.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -187.88 164.50 187.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -187.50 17.50 187.50 24.50 MacLine -187.50 171.50 187.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(150) 179.75 184.25 16.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -178.50 168.00 178.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -178.00 17.50 178.00 21.00 MacLine -178.00 171.50 178.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -168.88 168.00 168.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -168.38 17.50 168.38 21.00 MacLine -168.38 171.50 168.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -159.38 168.00 159.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -158.88 17.50 158.88 21.00 MacLine -158.88 171.50 158.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -149.88 168.00 149.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -149.38 17.50 149.38 21.00 MacLine -149.38 171.50 149.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -140.25 164.50 140.25 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -139.88 17.50 139.88 24.50 MacLine -139.88 171.50 139.88 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(100) 132.12 184.25 16.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -130.75 168.00 130.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -130.25 17.50 130.25 21.00 MacLine -130.25 171.50 130.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -121.25 168.00 121.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -120.75 17.50 120.75 21.00 MacLine -120.75 171.50 120.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -111.75 168.00 111.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -111.25 17.50 111.25 21.00 MacLine -111.25 171.50 111.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -102.25 168.00 102.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -101.75 17.50 101.75 21.00 MacLine -101.75 171.50 101.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -92.50 164.50 92.50 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -92.12 17.50 92.12 24.50 MacLine -92.12 171.50 92.12 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(50) 87.12 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -83.12 168.00 83.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -82.62 17.50 82.62 21.00 MacLine -82.62 171.50 82.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -73.62 168.00 73.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -73.12 17.50 73.12 21.00 MacLine -73.12 171.50 73.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -64.12 168.00 64.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -63.62 17.50 63.62 21.00 MacLine -63.62 171.50 63.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -54.50 168.00 54.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -54.00 17.50 54.00 21.00 MacLine -54.00 171.50 54.00 168.00 MacLine -1 ps -1.00 ps -44.50 17.50 44.50 24.50 MacLine -44.50 171.50 44.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 42.25 184.25 5.50 WS -14.00 (_Helvetica) 0 F -(x \(cm\)) 191.62 204.75 38.75 WS -1 0 0 SetFore UseFore -2.00 ps -newpath 45.00 76.75 M -46.62 72.50 L -48.38 68.38 L -50.00 64.25 L -51.62 60.38 L -53.38 56.62 L -55.00 53.12 L -56.62 49.88 L -58.38 46.75 L -60.00 43.88 L -61.75 41.25 L -63.38 39.00 L -65.00 36.88 L -66.62 35.12 L -68.38 33.62 L -70.00 32.50 L -71.75 31.62 L -73.38 31.12 L -75.00 30.88 L -76.75 31.00 L -78.38 31.38 L -80.00 32.12 L -81.75 33.12 L -83.38 34.50 L -85.00 36.12 L -86.75 38.00 L -88.38 40.25 L -90.00 42.75 L -91.75 45.50 L -93.38 48.50 L -95.00 51.75 L -96.75 55.25 L -98.38 58.88 L -100.00 62.62 L -101.75 66.62 L -103.38 70.75 L -105.00 75.00 L -106.75 79.38 L -108.38 83.75 L -110.00 88.25 L -111.75 92.75 L -113.38 97.25 L -115.12 101.88 L -116.75 106.25 L -118.38 110.75 L -120.00 115.00 L -121.75 119.25 L -123.38 123.38 L -125.12 127.38 L -126.75 131.25 L -128.38 134.88 L -130.12 138.25 L -131.75 141.50 L -133.38 144.50 L -135.12 147.25 L -136.75 149.75 L -138.38 152.00 L -140.12 153.88 L -141.75 155.50 L -143.50 156.88 L -145.12 157.88 L -146.75 158.62 L -148.38 159.00 L -150.12 159.12 L -151.75 158.88 L -153.50 158.38 L -155.12 157.50 L -156.75 156.38 L -158.38 154.88 L -160.12 153.12 L -161.75 151.00 L -163.50 148.62 L -165.12 146.12 L -166.75 143.25 L -168.50 140.12 L -170.12 136.75 L -171.75 133.25 L -173.50 129.50 L -175.12 125.62 L -176.75 121.62 L -178.50 117.38 L -180.12 113.12 L -181.88 108.75 L -183.50 104.25 L -185.12 99.75 L -186.75 95.25 L -188.50 90.75 L -190.12 86.25 L -191.88 81.75 L -193.50 77.38 L -195.12 73.12 L -196.88 68.88 L -198.50 64.88 L -200.12 61.00 L -201.88 57.25 L -203.50 53.62 L -205.12 50.25 L -206.88 47.12 L -208.50 44.25 L -210.12 41.62 L -211.88 39.25 L -213.50 37.12 L -215.12 35.38 L -216.88 33.88 L -218.50 32.62 L -220.12 31.75 L -221.88 31.12 L -223.50 30.88 L -225.12 30.88 L -226.88 31.25 L -228.50 32.00 L -230.12 33.00 L -231.88 34.25 L -233.50 35.88 L -235.25 37.75 L -236.88 40.00 L -238.50 42.38 L -240.12 45.12 L -241.88 48.12 L -243.50 51.25 L -245.25 54.75 L -246.88 58.38 L -248.50 62.12 L -250.25 66.12 L -251.88 70.12 L -253.50 74.38 L -255.25 78.75 L -256.88 83.12 L -258.50 87.62 L -260.25 92.12 L -261.88 96.62 L -263.62 101.12 L -265.25 105.62 L -266.88 110.12 L -268.50 114.38 L -270.25 118.75 L -271.88 122.88 L -273.62 126.88 L -275.25 130.62 L -276.88 134.38 L -278.50 137.88 L -280.25 141.12 L -281.88 144.12 L -283.62 146.88 L -285.25 149.38 L -286.88 151.62 L -288.62 153.62 L -290.25 155.38 L -291.88 156.75 L -293.62 157.75 L -295.25 158.62 L -296.88 159.00 L -298.62 159.12 L -300.25 159.00 L -302.00 158.50 L -303.62 157.62 L -305.25 156.50 L -306.88 155.12 L -308.62 153.38 L -310.25 151.38 L -312.00 149.00 L -313.62 146.50 L -315.25 143.62 L -317.00 140.62 L -318.62 137.25 L -320.25 133.75 L -322.00 130.12 L -323.62 126.25 L -325.25 122.12 L -327.00 118.00 L -328.62 113.75 L -330.25 109.38 L -332.00 104.88 L -333.62 100.50 L -335.25 95.88 L -337.00 91.38 L -338.62 86.88 L -340.25 82.50 L -342.00 78.00 L -343.62 73.75 L -345.25 69.50 L -347.00 65.38 L -348.62 61.50 L -350.25 57.75 L -352.00 54.12 L -353.62 50.75 L -355.38 47.62 L -357.00 44.62 L -358.62 42.00 L -360.25 39.62 L -362.00 37.38 L -363.62 35.62 L -365.38 34.00 L -367.00 32.75 L -368.62 31.88 L -370.38 31.25 L -372.00 30.88 L -373.62 30.88 L -375.38 31.25 L -377.00 31.88 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av8.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av8.gif deleted file mode 100755 index 89fbd1a70..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob02av8.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob08a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob08a.eps deleted file mode 100755 index 8b3e99932..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob08a.eps +++ /dev/null @@ -1,1427 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 72.0 242.0 540.0 550.0 -%%Creator: Mathematica -%%CreationDate: Wed Oct 6 10:39:14 CDT 1993 -%%EndComments -/Mathdict 100 dict def -Mathdict begin -/Mlmarg 1.0 72 mul def -/Mrmarg 1.0 72 mul def -/Mbmarg 1.0 72 mul def -/Mtmarg 1.0 72 mul def -/Mwidth 8.5 72 mul def -/Mheight 11 72 mul def -/Mtransform { } bind def -/Mnodistort true def -/Mfixwid false def -/Mfixdash false def -/Mrot 0 def -/Mpstart { -MathPictureStart -} bind def -/Mpend { -MathPictureEnd -} bind def -/Mscale { -0 1 0 1 -5 -1 roll -MathScale -} bind def -/ISOLatin1Encoding dup where -{ pop pop } -{ -[ -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright -/parenleft /parenright /asterisk /plus /comma /minus /period /slash -/zero /one /two /three /four /five /six /seven -/eight /nine /colon /semicolon /less /equal /greater /question -/at /A /B /C /D /E /F /G -/H /I /J /K /L /M /N /O -/P /Q /R /S /T /U /V /W -/X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore -/quoteleft /a /b /c /d /e /f /g -/h /i /j /k /l /m /n /o -/p /q /r /s /t /u /v /w -/x /y /z /braceleft /bar /braceright /asciitilde /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent -/dieresis /.notdef /ring /cedilla /.notdef /hungarumlaut /ogonek /caron -/space /exclamdown /cent /sterling /currency /yen /brokenbar /section -/dieresis /copyright /ordfeminine /guillemotleft -/logicalnot /hyphen /registered /macron -/degree /plusminus /twosuperior /threesuperior -/acute /mu /paragraph /periodcentered -/cedilla /onesuperior /ordmasculine /guillemotright -/onequarter /onehalf /threequarters /questiondown -/Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla -/Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis -/Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply -/Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls -/agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla -/egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis -/eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide -/oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis -] def -} ifelse -/MFontDict 50 dict def -/MStrCat -{ -exch -dup length -2 index length add -string -dup 3 1 roll -copy -length -exch dup -4 2 roll exch -putinterval -} def -/MCreateEncoding -{ -1 index -255 string cvs -(-) MStrCat -1 index MStrCat -cvn exch -(Encoding) MStrCat -cvn dup where -{ -exch get -} -{ -pop -StandardEncoding -} ifelse -3 1 roll -dup MFontDict exch known not -{ -1 index findfont -dup length dict -begin -{1 index /FID ne -{def} -{pop pop} -ifelse} forall -/Encoding 3 index -def -currentdict -end -1 index exch definefont pop -MFontDict 1 index -null put -} -if -exch pop -exch pop -} def -/ISOLatin1 { (ISOLatin1) MCreateEncoding } def -/ISO8859 { (ISOLatin1) MCreateEncoding } def -/Mcopyfont { -dup -maxlength -dict -exch -{ -1 index -/FID -eq -{ -pop pop -} -{ -2 index -3 1 roll -put -} -ifelse -} -forall -} def -/Plain /Courier findfont Mcopyfont definefont pop -/Bold /Courier-Bold findfont Mcopyfont definefont pop -/Italic /Courier-Oblique findfont Mcopyfont definefont pop -/MathPictureStart { -gsave -Mtransform -Mlmarg -Mbmarg -translate -/Mtmatrix -matrix currentmatrix -def -/Mgmatrix -matrix currentmatrix -def -} bind def -/MathPictureEnd { -grestore -} bind def -/MathSubStart { -Momatrix -Mgmatrix Mtmatrix -Mlmarg Mrmarg -Mbmarg Mtmarg -Mwidth Mheight -11 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -Mgmatrix setmatrix -13 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -2 copy translate -/Mtmatrix matrix currentmatrix def -/Mlmarg 0 def -/Mrmarg 0 def -/Mbmarg 0 def -/Mtmarg 0 def -3 -1 roll -exch sub -/Mheight exch def -sub -/Mwidth exch def -} bind def -/MathSubEnd { -/Mheight exch def -/Mwidth exch def -/Mtmarg exch def -/Mbmarg exch def -/Mrmarg exch def -/Mlmarg exch def -/Mtmatrix exch def -dup setmatrix -/Mgmatrix exch def -/Momatrix exch def -} bind def -/Mdot { -moveto -0 0 rlineto -stroke -} bind def -/Mtetra { -moveto -lineto -lineto -lineto -fill -} bind def -/Metetra { -moveto -lineto -lineto -lineto -closepath -gsave -fill -grestore -0 setgray -stroke -} bind def -/Mistroke { -flattenpath -0 0 0 -{ -4 2 roll -pop pop -} -{ -4 -1 roll -2 index -sub dup mul -4 -1 roll -2 index -sub dup mul -add sqrt -4 -1 roll -add -3 1 roll -} -{ -stop -} -{ -stop -} -pathforall -pop pop -currentpoint -stroke -moveto -currentdash -3 -1 roll -add -setdash -} bind def -/Mfstroke { -stroke -currentdash -pop 0 -setdash -} bind def -/Mrotsboxa { -gsave -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -grestore -Msboxa -3 -1 roll -/Mtmatrix -exch def -/Mrot -0 def -} bind def -/Msboxa { -newpath -5 -1 roll -Mvboxa -pop -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Msboxa1 -5 -3 roll -Msboxa1 -Mboxrot -[ -7 -2 roll -2 copy -[ -3 1 roll -10 -1 roll -9 -1 roll -] -6 1 roll -5 -2 roll -] -} bind def -/Msboxa1 { -sub -2 div -dup -2 index -1 add -mul -3 -1 roll --1 add -3 -1 roll -mul -} bind def -/Mvboxa { -Mfixwid -{ -Mvboxa1 -} -{ -dup -Mwidthcal -0 exch -{ -add -} -forall -exch -Mvboxa1 -4 index -7 -1 roll -add -4 -1 roll -pop -3 1 roll -} -ifelse -} bind def -/Mvboxa1 { -gsave -newpath -[ true -3 -1 roll -{ -Mbbox -5 -1 roll -{ -0 -5 1 roll -} -{ -7 -1 roll -exch sub -(m) stringwidth pop -.3 mul -sub -7 1 roll -6 -1 roll -4 -1 roll -Mmin -3 -1 roll -5 index -add -5 -1 roll -4 -1 roll -Mmax -4 -1 roll -} -ifelse -false -} -forall -{ stop } if -counttomark -1 add -4 roll -] -grestore -} bind def -/Mbbox { -1 dict begin -0 0 moveto -/temp (T) def -{ gsave -currentpoint newpath moveto -temp 0 3 -1 roll put temp -false charpath flattenpath currentpoint -pathbbox -grestore moveto lineto moveto} forall -pathbbox -newpath -end -} bind def -/Mmin { -2 copy -gt -{ exch } if -pop -} bind def -/Mmax { -2 copy -lt -{ exch } if -pop -} bind def -/Mrotshowa { -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -Mgmatrix setmatrix -Mshowa -/Mtmatrix -exch def -/Mrot 0 def -} bind def -/Mshowa { -4 -2 roll -moveto -2 index -Mtmatrix setmatrix -Mvboxa -7 1 roll -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Mshowa1 -4 1 roll -Mshowa1 -rmoveto -currentpoint -Mfixwid -{ -Mshowax -} -{ -Mshoway -} -ifelse -pop pop pop pop -Mgmatrix setmatrix -} bind def -/Mshowax { -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -Mfixdash -{ -Mfixdashp -} -if -show -} for -} bind def -/Mfixdashp { -dup -length -1 -gt -1 index -true exch -{ -45 -eq -and -} forall -and -{ -gsave -(--) -stringwidth pop -(-) -stringwidth pop -sub -2 div -0 rmoveto -dup -length -1 sub -{ -(-) -show -} -repeat -grestore -} -if -} bind def -/Mshoway { -3 index -Mwidthcal -5 1 roll -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -[ -6 index -aload -length -2 add --1 roll -{ -pop -Strform -stringwidth -pop -neg -exch -add -0 rmoveto -} -exch -kshow -cleartomark -} for -pop -} bind def -/Mwidthcal { -[ -exch -{ -Mwidthcal1 -} -forall -] -[ -exch -dup -Maxlen --1 add -0 1 -3 -1 roll -{ -[ -exch -2 index -{ -1 index -Mget -exch -} -forall -pop -Maxget -exch -} -for -pop -] -Mreva -} bind def -/Mreva { -[ -exch -aload -length --1 1 -{1 roll} -for -] -} bind def -/Mget { -1 index -length --1 add -1 index -ge -{ -get -} -{ -pop pop -0 -} -ifelse -} bind def -/Maxlen { -[ -exch -{ -length -} -forall -Maxget -} bind def -/Maxget { -counttomark --1 add -1 1 -3 -1 roll -{ -pop -Mmax -} -for -exch -pop -} bind def -/Mwidthcal1 { -[ -exch -{ -Strform -stringwidth -pop -} -forall -] -} bind def -/Strform { -/tem (x) def -tem 0 -3 -1 roll -put -tem -} bind def -/Mshowa1 { -2 copy -add -4 1 roll -sub -mul -sub --2 div -} bind def -/MathScale { -Mwidth -Mlmarg Mrmarg add -sub -Mheight -Mbmarg Mtmarg add -sub -0 0 moveto -1 index 0 -lineto -2 copy -lineto -0 1 index -lineto -clip newpath -Mlp -translate -dup -/Mathabs -exch def -scale -/yscale exch def -/ybias exch def -/xscale exch def -/xbias exch def -/Momatrix -xscale yscale matrix scale -xbias ybias matrix translate -matrix concatmatrix def -/Mgmatrix -matrix currentmatrix -def -} bind def -/Mlp { -3 copy -Mlpfirst -{ -Mnodistort -{ -Mmin -dup -} if -4 index -2 index -2 index -Mlprun -11 index -11 -1 roll -10 -4 roll -Mlp1 -8 index -9 -5 roll -Mlp1 -4 -1 roll -and -{ exit } if -3 -1 roll -pop pop -} loop -exch -3 1 roll -7 -3 roll -pop pop pop -} bind def -/Mlpfirst { -3 -1 roll -dup length -2 copy --2 add -get -aload -pop pop pop -4 -2 roll --1 add -get -aload -pop pop pop -6 -1 roll -3 -1 roll -5 -1 roll -sub -div -4 1 roll -exch sub -div -} bind def -/Mlprun { -2 copy -4 index -0 get -dup -4 1 roll -Mlprun1 -3 copy -8 -2 roll -9 -1 roll -{ -3 copy -Mlprun1 -3 copy -11 -3 roll -/gt Mlpminmax -8 3 roll -11 -3 roll -/lt Mlpminmax -8 3 roll -} forall -pop pop pop pop -3 1 roll -pop pop -aload pop -5 -1 roll -aload pop -exch -6 -1 roll -Mlprun2 -8 2 roll -4 -1 roll -Mlprun2 -6 2 roll -3 -1 roll -Mlprun2 -4 2 roll -exch -Mlprun2 -6 2 roll -} bind def -/Mlprun1 { -aload pop -exch -6 -1 roll -5 -1 roll -mul add -4 -2 roll -mul -3 -1 roll -add -} bind def -/Mlprun2 { -2 copy -add 2 div -3 1 roll -exch sub -} bind def -/Mlpminmax { -cvx -2 index -6 index -2 index -exec -{ -7 -3 roll -4 -1 roll -} if -1 index -5 index -3 -1 roll -exec -{ -4 1 roll -pop -5 -1 roll -aload -pop pop -4 -1 roll -aload pop -[ -8 -2 roll -pop -5 -2 roll -pop -6 -2 roll -pop -5 -1 roll -] -4 1 roll -pop -} -{ -pop pop pop -} ifelse -} bind def -/Mlp1 { -5 index -3 index sub -5 index -2 index mul -1 index -le -1 index -0 le -or -dup -not -{ -1 index -3 index div -.99999 mul -8 -1 roll -pop -7 1 roll -} -if -8 -1 roll -2 div -7 -2 roll -pop sub -5 index -6 -3 roll -pop pop -mul sub -exch -} bind def -/intop 0 def -/inrht 0 def -/inflag 0 def -/outflag 0 def -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -/Minner { -outflag -1 -eq -{ -/outflag 0 def -/intop 0 def -/inrht 0 def -} if -5 index -gsave -Mtmatrix setmatrix -Mvboxa pop -grestore -3 -1 roll -pop -dup -intop -gt -{ -/intop -exch def -} -{ pop } -ifelse -dup -inrht -gt -{ -/inrht -exch def -} -{ pop } -ifelse -pop -/inflag -1 def -} bind def -/Mouter { -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -inflag -1 eq -{ -dup -0 lt -{ -dup -intop -mul -neg -/yadtop -exch def -} if -dup -0 gt -{ -dup -intop -mul -/yadbot -exch def -} -if -pop -dup -0 lt -{ -dup -inrht -mul -neg -/xadrht -exch def -} if -dup -0 gt -{ -dup -inrht -mul -/xadlft -exch def -} if -pop -/outflag 1 def -} -{ pop pop} -ifelse -/inflag 0 def -/inrht 0 def -/intop 0 def -} bind def -/Mboxout { -outflag -1 -eq -{ -4 -1 -roll -xadlft -leadjust -add -sub -4 1 roll -3 -1 -roll -yadbot -leadjust -add -sub -3 1 -roll -exch -xadrht -leadjust -add -add -exch -yadtop -leadjust -add -add -/outflag 0 def -/xadlft 0 def -/yadbot 0 def -/xadrht 0 def -/yadtop 0 def -} if -} bind def -/leadjust { -(m) stringwidth pop -.5 mul -} bind def -/Mrotcheck { -dup -90 -eq -{ -yadbot -/yadbot -xadrht -def -/xadrht -yadtop -def -/yadtop -xadlft -def -/xadlft -exch -def -} -if -dup -cos -1 index -sin -Checkaux -dup -cos -1 index -sin neg -exch -Checkaux -3 1 roll -pop pop -} bind def -/Checkaux { -4 index -exch -4 index -mul -3 1 roll -mul add -4 1 roll -} bind def -/Mboxrot { -Mrot -90 eq -{ -brotaux -4 2 -roll -} -if -Mrot -180 eq -{ -4 2 -roll -brotaux -4 2 -roll -brotaux -} -if -Mrot -270 eq -{ -4 2 -roll -brotaux -} -if -} bind def -/brotaux { -neg -exch -neg -} bind def -/Mabswid { -Mathabs -div -setlinewidth -} bind def -/Mabsdash { -exch -Mathabs -[ -3 1 roll -exch -{ -exch -dup -3 -1 roll -exch -div -exch -} -forall -pop ] -exch -setdash -} bind def -/MBeginOrig { Momatrix concat} bind def -/MEndOrig { Mgmatrix setmatrix} bind def -/colorimage where -{ pop } -{ -/colorimage { -3 1 roll -pop pop -5 -1 roll -mul -4 1 roll -{ -currentfile -1 index -readhexstring -pop } -image -} bind def -} ifelse -/sampledsound where -{ pop} -{ /sampledsound { -exch -pop -exch -5 1 roll -mul -4 idiv -mul -2 idiv -exch pop -exch -/Mtempproc exch def -{ Mtempproc pop} -repeat -} bind def -} ifelse -/setcmykcolor where -{ pop} -{ /setcmykcolor { -4 1 -roll -[ -4 1 -roll -] -{ -1 index -sub -1 -sub neg -dup -0 -lt -{ -pop -0 -} -if -dup -1 -gt -{ -pop -1 -} -if -exch -} forall -pop -setrgbcolor -} bind def -} ifelse -%%AspectRatio: 0.61803 -MathPictureStart -/Courier-Oblique findfont 17 scalefont setfont -% Scaling calculations -0.02381 0.202102 0.309017 0.294302 [ -[ 0 0 0 0 ] -[ 1 0.618034 0 0 ] -] MathScale -% Start of Graphics -1 setlinecap -1 setlinejoin -newpath -%%Object: Graphics -[ ] 0 setdash -0 setgray -gsave -grestore -0 0 moveto -1 0 lineto -1 0.61803 lineto -0 0.61803 lineto -closepath -clip -newpath -gsave -gsave -gsave -0.004 setlinewidth -0.02381 0.30902 moveto -0.06349 0.36643 lineto -0.10317 0.42164 lineto -0.14286 0.47252 lineto -0.18254 0.51712 lineto -0.22222 0.55372 lineto -0.24206 0.56857 lineto -0.2619 0.58092 lineto -0.28175 0.59065 lineto -0.29167 0.5945 lineto -0.30159 0.59766 lineto -0.31151 0.60013 lineto -0.31647 0.60111 lineto -0.32143 0.6019 lineto -0.32639 0.60252 lineto -0.32887 0.60277 lineto -0.33135 0.60296 lineto -0.33383 0.60312 lineto -0.33507 0.60318 lineto -0.33631 0.60323 lineto -0.33755 0.60327 lineto -0.33879 0.6033 lineto -0.34003 0.60331 lineto -0.34127 0.60332 lineto -0.34251 0.60331 lineto -0.34375 0.6033 lineto -0.34499 0.60327 lineto -0.34623 0.60323 lineto -0.34747 0.60318 lineto -0.34871 0.60312 lineto -0.35119 0.60296 lineto -0.35367 0.60277 lineto -0.35615 0.60252 lineto -0.36111 0.6019 lineto -0.36607 0.60111 lineto -0.37103 0.60013 lineto -0.38095 0.59766 lineto -0.40079 0.59065 lineto -0.42063 0.58092 lineto -0.46032 0.55372 lineto -0.5 0.51712 lineto -0.53968 0.47252 lineto -0.57937 0.42164 lineto -0.61905 0.36643 lineto -0.65873 0.30902 lineto -0.69841 0.2516 lineto -0.7381 0.19639 lineto -0.77778 0.14551 lineto -0.81746 0.10091 lineto -0.85714 0.06431 lineto -Mistroke -0.87698 0.04947 lineto -0.89683 0.03712 lineto -0.91667 0.02739 lineto -0.92659 0.02354 lineto -0.93651 0.02037 lineto -0.94643 0.0179 lineto -0.95139 0.01693 lineto -0.95635 0.01613 lineto -0.96131 0.01551 lineto -0.96379 0.01527 lineto -0.96627 0.01507 lineto -0.96875 0.01491 lineto -0.96999 0.01485 lineto -0.97123 0.0148 lineto -0.97247 0.01476 lineto -0.97371 0.01474 lineto -0.97495 0.01472 lineto -0.97619 0.01472 lineto -Mfstroke -grestore -grestore -gsave -gsave -0.004 setlinewidth -0.02381 0.30902 moveto -0.06349 0.2516 lineto -0.10317 0.19639 lineto -0.14286 0.14551 lineto -0.18254 0.10091 lineto -0.22222 0.06431 lineto -0.24206 0.04947 lineto -0.2619 0.03712 lineto -0.28175 0.02739 lineto -0.29167 0.02354 lineto -0.30159 0.02037 lineto -0.31151 0.0179 lineto -0.31647 0.01693 lineto -0.32143 0.01613 lineto -0.32639 0.01551 lineto -0.32887 0.01527 lineto -0.33135 0.01507 lineto -0.33383 0.01491 lineto -0.33507 0.01485 lineto -0.33631 0.0148 lineto -0.33755 0.01476 lineto -0.33879 0.01474 lineto -0.34003 0.01472 lineto -0.34127 0.01472 lineto -0.34251 0.01472 lineto -0.34375 0.01474 lineto -0.34499 0.01476 lineto -0.34623 0.0148 lineto -0.34747 0.01485 lineto -0.34871 0.01491 lineto -0.35119 0.01507 lineto -0.35367 0.01527 lineto -0.35615 0.01551 lineto -0.36111 0.01613 lineto -0.36607 0.01693 lineto -0.37103 0.0179 lineto -0.38095 0.02037 lineto -0.40079 0.02739 lineto -0.42063 0.03712 lineto -0.46032 0.06431 lineto -0.5 0.10091 lineto -0.53968 0.14551 lineto -0.57937 0.19639 lineto -0.61905 0.2516 lineto -0.65873 0.30902 lineto -0.69841 0.36643 lineto -0.7381 0.42164 lineto -0.77778 0.47252 lineto -0.81746 0.51712 lineto -0.85714 0.55372 lineto -Mistroke -0.87698 0.56857 lineto -0.89683 0.58092 lineto -0.91667 0.59065 lineto -0.92659 0.5945 lineto -0.93651 0.59766 lineto -0.94643 0.60013 lineto -0.95139 0.60111 lineto -0.95635 0.6019 lineto -0.96131 0.60252 lineto -0.96379 0.60276 lineto -0.96627 0.60296 lineto -0.96875 0.60312 lineto -0.96999 0.60318 lineto -0.97123 0.60323 lineto -0.97247 0.60327 lineto -0.97371 0.6033 lineto -0.97495 0.60331 lineto -0.97619 0.60332 lineto -Mfstroke -grestore -grestore -gsave -gsave -0.004 setlinewidth -0.02381 0.30902 moveto -0.06349 0.30902 lineto -0.10317 0.30902 lineto -0.14286 0.30902 lineto -0.18254 0.30902 lineto -0.22222 0.30902 lineto -0.2619 0.30902 lineto -0.30159 0.30902 lineto -0.34127 0.30902 lineto -0.38095 0.30902 lineto -0.42063 0.30902 lineto -0.46032 0.30902 lineto -0.5 0.30902 lineto -0.53968 0.30902 lineto -0.57937 0.30902 lineto -0.61905 0.30902 lineto -0.65873 0.30902 lineto -0.69841 0.30902 lineto -0.7381 0.30902 lineto -0.77778 0.30902 lineto -0.81746 0.30902 lineto -0.85714 0.30902 lineto -0.89683 0.30902 lineto -0.93651 0.30902 lineto -0.97619 0.30902 lineto -stroke -grestore -grestore -grestore -% End of Graphics -MathPictureEnd -end -showpage diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob08a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob08a.gif deleted file mode 100755 index 938f261ac..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob08a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob08a.pdf b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob08a.pdf deleted file mode 100644 index 87aa04ace..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype35/prob08a.pdf and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype36/prob02a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype36/prob02a.eps deleted file mode 100755 index 79055c652..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype36/prob02a.eps +++ /dev/null @@ -1,439 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: speakers.eps -%%CreationDate: 4/4/1996 -%%Pages: 0 -%%DocumentFonts: Helvetica -%%BoundingBox:74 405 505 701 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica/Helvetica 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -2760 5616 3854 5616 3542 5928 3542 6085 3073 6085 3073 5928 2760 5616 6 P closepath -0.5 sg fill -gr -gs -2760 5616 3854 5616 3542 5928 3542 6085 3073 6085 3073 5928 2760 5616 6 P closepath -1.25 slw 0 sg str -gr -gs -2400 5175 2451 5103 2480 5067 2511 5033 2543 5000 2577 4968 2611 4938 2647 4909 -2685 4882 2723 4857 2762 4833 2803 4811 2844 4791 2886 4772 2929 4756 2973 4741 -3017 4728 3062 4717 3107 4708 3153 4701 3199 4696 3244 4693 3290 4692 3336 4693 -3382 4696 3428 4701 3473 4708 3519 4717 3564 4728 3608 4741 3651 4756 3694 4772 -3737 4791 3778 4811 3818 4833 3858 4857 3896 4882 3933 4909 3969 4938 4004 4968 -4038 5000 4070 5033 4100 5067 4129 5103 4157 5140 4183 5178 4190 5189 46 P -35 slw 0 sg str -gr -gs -1936 4638 1978 4589 2018 4545 2060 4503 2102 4462 2147 4423 2192 4385 2239 4349 -2288 4314 2337 4281 2387 4250 2438 4220 2491 4192 2544 4166 2598 4142 2653 4119 -2708 4099 2765 4080 2822 4063 2879 4048 2937 4035 2995 4024 3054 4015 3113 4008 -3172 4003 3231 4000 3290 3999 3350 4000 3409 4003 3468 4008 3527 4015 3585 4024 -3644 4035 3702 4048 3759 4063 3816 4080 3872 4099 3928 4119 3983 4142 4037 4166 -4090 4192 4142 4220 4194 4250 4244 4281 4293 4314 4341 4349 4388 4385 4434 4423 -4478 4462 4521 4503 4563 4545 4603 4589 4642 4634 4679 4680 4714 4728 4748 4777 -4768 4807 56 P -35 slw 0 sg str -gr -gs -1390 4206 1437 4149 1484 4097 1532 4046 1582 3997 1633 3949 1685 3902 1738 3857 -1793 3813 1849 3771 1906 3731 1965 3692 2024 3655 2085 3620 2146 3586 2209 3555 -2272 3525 2336 3497 2401 3470 2466 3446 2533 3423 2600 3402 2667 3384 2735 3367 -2804 3352 2872 3339 2942 3328 3011 3319 3081 3312 3151 3307 3220 3304 3290 3303 -3361 3304 3430 3307 3500 3312 3570 3319 3639 3328 3708 3339 3777 3352 3846 3367 -3914 3384 3981 3402 4048 3423 4114 3446 4180 3470 4245 3497 4309 3525 4372 3555 -4434 3587 4496 3620 4557 3655 4616 3692 4674 3731 4731 3771 4788 3813 4842 3857 -4896 3902 4948 3949 4999 3997 5049 4046 5097 4097 5143 4149 5189 4203 5232 4258 -5273 4312 64 P -35 slw 0 sg str -gr -gs -3073 5928 3542 6085 R -0.25 sg fill -gr -gs -3073.625 5928.625 3542.375 6085.375 R -1.25 slw 0 sg str -gr -gs -6120 5616 7214 5616 6901 5928 6901 6085 6432 6085 6432 5928 6120 5616 6 P closepath -0.5 sg fill -gr -gs -6120 5616 7214 5616 6901 5928 6901 6085 6432 6085 6432 5928 6120 5616 6 P closepath -1.25 slw 0 sg str -gr -gs -5760 5175 5811 5103 5840 5067 5870 5033 5902 5000 5936 4968 5971 4938 6007 4909 -6044 4882 6082 4857 6122 4833 6162 4811 6204 4791 6246 4772 6289 4756 6332 4741 -6377 4728 6421 4717 6467 4708 6512 4701 6558 4696 6604 4693 6650 4692 6696 4693 -6742 4696 6787 4701 6833 4708 6878 4717 6923 4728 6967 4741 7011 4756 7054 4772 -7096 4791 7137 4811 7178 4833 7217 4857 7256 4882 7293 4909 7329 4938 7364 4968 -7397 5000 7429 5033 7460 5067 7489 5103 7516 5140 7542 5178 7549 5189 46 P -35 slw 0 sg str -gr -gs -5295 4638 5337 4589 5377 4545 5419 4503 5461 4462 5506 4423 5551 4385 5598 4349 -5647 4314 5696 4281 5746 4250 5797 4220 5850 4192 5903 4166 5957 4142 6012 4119 -6067 4099 6124 4080 6181 4063 6238 4048 6296 4035 6354 4024 6413 4015 6472 4008 -6531 4003 6590 4000 6649 3999 6709 4000 6768 4003 6827 4008 6886 4015 6945 4024 -7003 4035 7061 4048 7118 4063 7175 4080 7231 4099 7287 4119 7342 4142 7396 4166 -7449 4192 7501 4220 7553 4250 7603 4281 7653 4314 7700 4349 7747 4385 7793 4423 -7837 4462 7881 4503 7922 4545 7962 4589 8001 4634 8038 4680 8073 4728 8107 4777 -8127 4807 56 P -35 slw 0 sg str -gr -gs -4749 4206 4797 4149 4843 4097 4892 4046 4941 3997 4992 3949 5044 3902 5098 3857 -5153 3813 5209 3771 5266 3731 5324 3692 5384 3655 5444 3620 5506 3586 5568 3555 -5631 3525 5695 3497 5760 3470 5826 3446 5892 3423 5959 3402 6027 3384 6094 3367 -6163 3352 6232 3339 6301 3328 6370 3319 6440 3312 6510 3307 6580 3304 6650 3303 -6720 3304 6790 3307 6860 3312 6929 3319 6999 3328 7068 3339 7137 3352 7205 3367 -7273 3384 7341 3402 7408 3423 7474 3446 7539 3470 7604 3497 7668 3525 7732 3555 -7794 3587 7855 3620 7916 3655 7975 3692 8034 3731 8091 3771 8147 3813 8202 3857 -8255 3902 8307 3949 8358 3997 8408 4046 8456 4097 8503 4149 8548 4203 8591 4258 -8632 4312 64 P -35 slw 0 sg str -gr -gs -6432 5928 6901 6085 R -0.25 sg fill -gr -gs -6432.625 5928.625 6901.375 6085.375 R -1.25 slw 0 sg str -gr -gs -3307 6397 3542 6334 3542 6460 2 P -0 sg fill -gr -gs -6667 6397 6432 6460 6432 6334 2 P -0 sg fill -gr -gs -3542.625 6397.625 m -6432.625 6397.625 L -1.25 slw 0 sg str -gr -gs -6589 1827 6745 1983 OV -0 sg fill -gr -gs -6589.625 1827.625 6745.375 1983.375 OV -1.25 slw 0 sg str -gr -gs -7031 1662 7309 2096 R -1 sg fill -gr -/_Helvetica ff [417 0 0 -417 0 0] mf sf -7031 2009 m 0 sg (A) show -gs -4883 6180 5091 6614 R -1 sg fill -gr -4883 6527 m 4.17 slw 0 sg (x) show -gs -6667 5694 6604 5459 6730 5459 2 P -0 sg fill -gr -gs -6667 1983 6730 2218 6604 2218 2 P -0 sg fill -gr -gs -6667.625 5459.625 m -6667.625 2218.625 L -1.25 slw 0 sg str -gr -gs -6814 3563 6988 3997 R -1 sg fill -gr -6814 3910 m 4.17 slw 0 sg (L) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype36/prob02a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype36/prob02a.gif deleted file mode 100755 index e24c14b28..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype36/prob02a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype38/prob02.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype38/prob02.eps deleted file mode 100755 index 523db7a97..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype38/prob02.eps +++ /dev/null @@ -1,1468 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: radar gun.eps -%%CreationDate: 4/4/1996 -%%Pages: 0 -%%DocumentFonts: Helvetica -%%BoundingBox:33 473 568 672 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica/Helvetica 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -878 3779 1009 3999 OV -0.75 sg fill -gr -gs -878.625 3779.625 1009.375 3999.375 OV -1.25 slw 0 sg str -gr -gs -944 3779 1779 3999 R -0.75 sg fill -gr -gs -1713 3779 1844 3999 OV -0.5 sg fill -gr -gs -1713.625 3779.625 1844.375 3999.375 OV -1.25 slw 0 sg str -gr -gs -944 3999 944 4351 1119 4351 1119 4219 1163 4109 1317 3999 944 3999 6 P closepath -0.25 sg fill -gr -gs -944 3999 944 4351 1119 4351 1119 4219 1163 4109 1317 3999 944 3999 6 P closepath -1.25 slw 0 sg str -gr -gs -944.625 3779.625 m -1779.625 3779.625 L -1.25 slw 0 sg str -gr -gs -944.625 3999.625 m -1779.625 3999.625 L -1.25 slw 0 sg str -gr -gs -900 3823 1713 3889 R -0.87 sg fill -gr -gs -4373 3255 7317 3255 7952 3915 8299 4035 8299 4456 4373 4456 4373 3255 6 P closepath -0.75 sg fill -gr -gs -4637 3225 6600 3898 R -1 sg fill -gr -gs -4637.625 3225.625 6600.375 3898.375 R -1.25 slw 0 sg str -gr -gs -7303 3635 7361 3723 R -1 sg fill -gr -gs -7303.625 3635.625 7361.375 3723.375 R -1.25 slw 0 sg str -gr -gs -8888 3942 9096 4375 R -1 sg fill -gr -/_Helvetica ff [417 0 0 -417 0 0] mf sf -8888 4289 m 0 sg (v) show -gs -7303 4339 8006 5042 OV -0.25 sg fill -gr -gs -7303.25 4339.25 8006.75 5042.75 OV -52.5 slw 0 sg str -gr -gs -7420 4456 7889 4924 OV -1 sg fill -gr -gs -7420.625 4456.625 7889.375 4924.375 OV -1.25 slw 0 sg str -gr -gs -4724 4339 5427 5042 OV -0.25 sg fill -gr -gs -4724.25 4339.25 5427.75 5042.75 OV -52.5 slw 0 sg str -gr -gs -4841 4456 5311 4924 OV -1 sg fill -gr -gs -4841.625 4456.625 5311.375 4924.375 OV -1.25 slw 0 sg str -gr -gs -7039 3225 7291 3225 7304 3226 7318 3227 7332 3228 7346 3230 7359 3233 7373 3236 -7386 3240 7399 3245 7412 3250 7424 3255 7437 3262 7449 3268 7461 3276 7472 3283 -7483 3292 7494 3300 7504 3310 7512 3317 7827 3632 7838 3644 7847 3655 7856 3666 -7864 3677 7871 3689 7878 3700 7885 3713 7891 3725 7896 3738 7901 3751 7905 3764 -7909 3777 7912 3791 7914 3805 7916 3818 7917 3832 7918 3846 7918 3853 7918 3870 -7039 3870 7039 3225 41 P closepath -1 sg fill -gr -gs -7039 3225 7291 3225 7304 3226 7318 3227 7332 3228 7346 3230 7359 3233 7373 3236 -7386 3240 7399 3245 7412 3250 7424 3255 7437 3262 7449 3268 7461 3276 7472 3283 -7483 3292 7494 3300 7504 3310 7512 3317 7827 3632 7838 3644 7847 3655 7856 3666 -7864 3677 7871 3689 7878 3700 7885 3713 7891 3725 7896 3738 7901 3751 7905 3764 -7909 3777 7912 3791 7914 3805 7916 3818 7917 3832 7918 3846 7918 3853 7918 3870 -7039 3870 7039 3225 41 P closepath -1.25 slw 0 sg str -gr -gs -9354 3870 8951 3978 8951 3762 2 P -0 sg fill -gr -gs -8650.5 3870.5 m -8951.5 3870.5 L -35 slw 0 sg str -gr -gs -7303.5 4690.5 m -6365.5 4690.5 L -35 slw 0 sg str -gr -gs -5427.5 4690.5 m -6365.5 4690.5 L -35 slw 0 sg str -gr -gs -4724.5 4690.5 m -4608.5 4690.5 L -35 slw 0 sg str -gr -gs -4373.5 4456.5 m -4373.5 3284.5 L -35 slw 0 sg str -gr -gs -4608.5 3049.5 m -7420.5 3049.5 L -35 slw 0 sg str -gr -gs -7420.5 3049.5 m -8123.5 3753.5 L -35 slw 0 sg str -gr -gs -8123.5 3753.5 m -8462.5 3922.5 L -35 slw 0 sg str -gr -gs -8592.5 4132.5 m -8592.5 4456.5 L -35 slw 0 sg str -gr -gs -8358.5 4690.5 m -8006.5 4690.5 L -35 slw 0 sg str -gr -gs -4356 3267 4357 3245 4360 3224 4365 3203 4372 3182 4381 3163 4391 3144 4403 3126 -4417 3109 4433 3094 4449 3080 4467 3068 4486 3057 4506 3048 4526 3041 4547 3036 -4569 3033 4591 3032 17 P -35 slw 0 sg str -gr -gs -4591 4673 4547 4669 4526 4664 4506 4657 4486 4648 4467 4638 4449 4626 4433 4612 -4417 4597 4403 4580 4391 4562 4381 4543 4372 4523 4365 4503 4360 4482 4357 4460 -4356 4439 16 P -35 slw 0 sg str -gr -gs -0 slc -newpath -8123.5 4221.5 8592.5 4690.5 270 360 A -35 slw 0 sg str -gr -gs -8445 3905 8482 3928 8498 3942 8514 3957 8528 3974 8540 3992 8550 4011 8559 4030 -8566 4051 8571 4072 8574 4093 8575 4115 11 P -35 slw 0 sg str -gr -gs -7172 3417 7434 3678 OV -1 sg fill -gr -gs -7172.625 3417.625 7434.375 3678.375 OV -1.25 slw 0 sg str -gr -gs -7332 3489 7391 3548 OV -1 sg fill -gr -gs -7332.625 3489.625 7391.375 3548.375 OV -1.25 slw 0 sg str -gr -gs -7391 3635 7383 3636 7376 3637 7368 3638 7361 3638 7354 3638 7346 3637 7339 3636 -7332 3635 7324 3633 7317 3630 7310 3627 7303 3624 7295 3620 7288 3616 7281 3611 -7274 3606 16 P -1 sg fill -gr -gs -7391 3635 7383 3636 7376 3637 7368 3638 7361 3638 7354 3638 7346 3637 7339 3636 -7332 3635 7324 3633 7317 3630 7310 3627 7303 3624 7295 3620 7288 3616 7281 3611 -7274 3606 16 P -1.25 slw 0 sg str -gr -gs -7537 3577 7625 3811 OV -1 sg fill -gr -gs -7537.625 3577.625 7625.375 3811.375 OV -1.25 slw 0 sg str -gr -gs -7127 3723 7449 3870 R -1 sg fill -gr -gs -7127.625 3723.625 7449.375 3870.375 R -1.25 slw 0 sg str -gr -gs -7244 3753 7625 3811 OV -1 sg fill -gr -gs -7244.625 3753.625 7625.375 3811.375 OV -1.25 slw 0 sg str -gr -gs -7186.625 3489.625 m -7537.625 3460.625 L -1.25 slw 0 sg str -gr -gs -7186 3489 7178 3478 7173 3467 7169 3457 7166 3448 7165 3439 7166 3431 7168 3423 -7172 3416 7177 3410 7183 3404 7192 3398 7201 3393 7213 3389 7225 3385 7240 3382 -7256 3380 7272 3377 7287 3375 7302 3374 7315 3373 7328 3372 7340 3371 7351 3371 -7361 3372 7370 3372 7379 3373 7386 3374 7393 3376 7399 3378 7404 3380 7408 3383 -7412 3386 7414 3389 7417 3392 7420 3396 7423 3400 7425 3403 7428 3408 7430 3412 -7433 3417 7435 3421 7437 3426 7439 3431 7441 3437 7443 3442 7445 3448 7447 3453 -7449 3460 48 P -1 sg fill -gr -gs -7186 3489 7178 3478 7173 3467 7169 3457 7166 3448 7165 3439 7166 3431 7168 3423 -7172 3416 7177 3410 7183 3404 7192 3398 7201 3393 7213 3389 7225 3385 7240 3382 -7256 3380 7272 3377 7287 3375 7302 3374 7315 3373 7328 3372 7340 3371 7351 3371 -7361 3372 7370 3372 7379 3373 7386 3374 7393 3376 7399 3378 7404 3380 7408 3383 -7412 3386 7414 3389 7417 3392 7420 3396 7423 3400 7425 3403 7428 3408 7430 3412 -7433 3417 7435 3421 7437 3426 7439 3431 7441 3437 7443 3442 7445 3448 7447 3453 -7449 3460 48 P -1.25 slw 0 sg str -gr -gs -4373.25 4251.25 m -7039.25 4251.25 L -52.5 slw 0 sg str -gr -gs -8445.625 4072.625 8563.375 4370.375 OV -1.25 slw 0 sg str -gr -gs -4168.625 4368.625 4373.375 4456.375 R -1.25 slw 0 sg str -gr -gs -642 5042 9509 5471 R -0 0 0 1 1 1 [247 189 255 111 251 191 239 254] patfill -gr -gs -642.625 5042.625 9509.375 5471.375 R -1.25 slw 0 sg str -gr -gs -2009 3674 2029 3699 2043 3720 2055 3742 2066 3765 2075 3789 2082 3814 2087 3839 -2090 3864 2091 3889 2090 3915 2087 3940 2082 3965 2075 3989 2066 4014 2055 4037 -2043 4059 2029 4080 2013 4100 1996 4119 1991 4124 20 P -1.25 slw 0 sg str -gr -gs -2263 3422 2310 3476 2332 3506 2351 3537 2369 3570 2386 3603 2400 3637 2413 3671 -2424 3707 2433 3743 2440 3779 2445 3815 2448 3852 2449 3889 2448 3926 2445 3963 -2440 4000 2433 4036 2424 4072 2413 4107 2400 4142 2386 4176 2369 4209 2351 4241 -2332 4272 2310 4303 2287 4331 2262 4359 2244 4378 28 P -1.25 slw 0 sg str -gr -gs -2456 3146 2495 3184 2526 3218 2555 3252 2583 3288 2609 3325 2633 3363 2656 3402 -2676 3442 2696 3483 2713 3525 2728 3567 2741 3610 2753 3654 2762 3698 2770 3743 -2775 3788 2779 3833 2780 3878 2780 3923 2777 3968 2773 4013 2766 4058 2758 4102 -2747 4146 2735 4190 2721 4233 2704 4275 2686 4316 2666 4357 2645 4396 2621 4435 -2596 4473 2569 4509 2541 4544 2511 4578 2480 4610 2478 4612 37 P -1.25 slw 0 sg str -gr -gs -2691 2912 2741 2961 2776 2999 2809 3039 2841 3079 2872 3122 2900 3165 2928 3209 -2953 3254 2976 3300 2998 3347 3018 3395 3036 3444 3053 3493 3067 3543 3079 3594 -3090 3644 3098 3696 3105 3747 3109 3799 3112 3851 3112 3902 3111 3954 3107 4006 -3101 4057 3094 4109 3085 4160 3073 4210 3060 4260 3045 4310 3028 4359 3008 4407 -2988 4455 2965 4502 2940 4547 2914 4592 2886 4636 2857 4678 2825 4720 2793 4760 -2758 4799 2722 4836 2712 4846 42 P -1.25 slw 0 sg str -gr -gs -2928 2675 3005 2753 3043 2797 3080 2842 3116 2888 3149 2935 3181 2983 3212 3032 -3240 3083 3267 3134 3293 3187 3316 3240 3337 3294 3357 3348 3375 3403 3390 3459 -3405 3516 3416 3572 3426 3629 3434 3687 3441 3744 3444 3802 3446 3860 3446 3918 -3444 3976 3441 4034 3434 4092 3426 4149 3416 4206 3405 4263 3390 4320 3375 4375 -3357 4431 3337 4485 3316 4539 3293 4592 3267 4644 3240 4696 3212 4746 3181 4796 -3149 4844 3116 4891 3080 4937 3043 4982 3025 5003 44 P -1.25 slw 0 sg str -gr -gs -3149 2458 3228 2539 3270 2586 3311 2635 3350 2684 3387 2735 3423 2787 3457 2840 -3489 2894 3520 2950 3549 3006 3576 3063 3602 3121 3625 3179 3647 3238 3666 3299 -3684 3359 3700 3420 3714 3482 3726 3544 3736 3606 3744 3669 3750 3732 3754 3795 -3756 3858 3756 3921 3754 3984 3750 4047 3744 4110 3736 4173 3726 4235 3714 4297 -3700 4358 3684 4419 3666 4480 3647 4540 3625 4599 3602 4658 3576 4716 3549 4773 -3520 4829 3490 4884 3457 4938 3423 4991 3415 5003 44 P -1.25 slw 0 sg str -gr -gs -3463 2302 3514 2358 3559 2410 3601 2463 3642 2518 3682 2573 3719 2630 3756 2688 -3790 2747 3823 2807 3854 2868 3883 2930 3910 2992 3936 3055 3959 3119 3981 3184 -4001 3249 4018 3315 4034 3382 4048 3448 4060 3516 4070 3583 4078 3651 4084 3719 -4088 3787 4090 3855 4090 3924 4088 3992 4084 4060 4078 4128 4070 4195 4060 4263 -4048 4330 4034 4397 4018 4463 4001 4529 3981 4594 3959 4659 3936 4723 3910 4787 -3883 4849 3854 4911 3823 4971 3806 5003 43 P -1.25 slw 0 sg str -gr -gs -4223.625 4098.625 m -4190.625 4073.625 L -1.25 slw 0 sg str -gr -gs -4190.625 4073.625 m -4183.625 4066.625 L -1.25 slw 0 sg str -gr -gs -4149.625 4026.625 m -4145.625 4020.625 L -1.25 slw 0 sg str -gr -gs -4145.625 4020.625 m -4133.625 4000.625 L -1.25 slw 0 sg str -gr -gs -4133.625 4000.625 m -4124.625 3981.625 L -1.25 slw 0 sg str -gr -gs -4107.625 3931.625 m -4103.625 3911.625 L -1.25 slw 0 sg str -gr -gs -4103.625 3911.625 m -4100.625 3888.625 L -1.25 slw 0 sg str -gr -gs -4100.625 3888.625 m -4100.625 3881.625 L -1.25 slw 0 sg str -gr -gs -4103.625 3828.625 m -4105.625 3817.625 L -1.25 slw 0 sg str -gr -gs -4105.625 3817.625 m -4110.625 3794.625 L -1.25 slw 0 sg str -gr -gs -4110.625 3794.625 m -4116.625 3778.625 L -1.25 slw 0 sg str -gr -gs -4138.625 3730.625 m -dot -1.25 slw 0 sg str -gr -gs -4138.625 3730.625 m -4151.625 3710.625 L -1.25 slw 0 sg str -gr -gs -4151.625 3710.625 m -4166.625 3692.625 L -1.25 slw 0 sg str -gr -gs -4166.625 3692.625 m -4168.625 3689.625 L -1.25 slw 0 sg str -gr -gs -4207.625 3653.625 m -4218.625 3645.625 L -1.25 slw 0 sg str -gr -gs -4218.625 3645.625 m -4238.625 3632.625 L -1.25 slw 0 sg str -gr -gs -4238.625 3632.625 m -4240.625 3631.625 L -1.25 slw 0 sg str -gr -gs -4040.625 4299.625 m -4001.625 4266.625 L -1.25 slw 0 sg str -gr -gs -3963.625 4229.625 m -3950.625 4214.625 L -1.25 slw 0 sg str -gr -gs -3950.625 4214.625 m -3930.625 4190.625 L -1.25 slw 0 sg str -gr -gs -3900.625 4146.625 m -3892.625 4133.625 L -1.25 slw 0 sg str -gr -gs -3892.625 4133.625 m -3877.625 4104.625 L -1.25 slw 0 sg str -gr -gs -3877.625 4104.625 m -3876.625 4101.625 L -1.25 slw 0 sg str -gr -gs -3855.625 4053.625 m -3851.625 4043.625 L -1.25 slw 0 sg str -gr -gs -3851.625 4043.625 m -3840.625 4011.625 L -1.25 slw 0 sg str -gr -gs -3840.625 4011.625 m -3838.625 4004.625 L -1.25 slw 0 sg str -gr -gs -3827.625 3952.625 m -3826.625 3946.625 L -1.25 slw 0 sg str -gr -gs -3826.625 3946.625 m -3821.625 3913.625 L -1.25 slw 0 sg str -gr -gs -3821.625 3913.625 m -3820.625 3902.625 L -1.25 slw 0 sg str -gr -gs -3818.625 3849.625 m -3818.625 3847.625 L -1.25 slw 0 sg str -gr -gs -3818.625 3847.625 m -3820.625 3814.625 L -1.25 slw 0 sg str -gr -gs -3820.625 3814.625 m -3821.625 3798.625 L -1.25 slw 0 sg str -gr -gs -3829.625 3745.625 m -3836.625 3715.625 L -1.25 slw 0 sg str -gr -gs -3836.625 3715.625 m -3842.625 3696.625 L -1.25 slw 0 sg str -gr -gs -3859.625 3646.625 m -3870.625 3622.625 L -1.25 slw 0 sg str -gr -gs -3870.625 3622.625 m -3881.625 3599.625 L -1.25 slw 0 sg str -gr -gs -3907.625 3554.625 m -3919.625 3536.625 L -1.25 slw 0 sg str -gr -gs -3919.625 3536.625 m -3937.625 3512.625 L -1.25 slw 0 sg str -gr -gs -3972.625 3472.625 m -3983.625 3460.625 L -1.25 slw 0 sg str -gr -gs -3983.625 3460.625 m -3989.625 3455.625 L -1.25 slw 0 sg str -gr -gs -3806.625 4534.625 m -3769.625 4499.625 L -1.25 slw 0 sg str -gr -gs -3731.625 4462.625 m -3723.625 4453.625 L -1.25 slw 0 sg str -gr -gs -3723.625 4453.625 m -3698.625 4423.625 L -1.25 slw 0 sg str -gr -gs -3666.625 4381.625 m -3647.625 4354.625 L -1.25 slw 0 sg str -gr -gs -3647.625 4354.625 m -3637.625 4338.625 L -1.25 slw 0 sg str -gr -gs -3609.625 4293.625 m -3603.625 4282.625 L -1.25 slw 0 sg str -gr -gs -3603.625 4282.625 m -3586.625 4248.625 L -1.25 slw 0 sg str -gr -gs -3564.625 4199.625 m -3552.625 4167.625 L -1.25 slw 0 sg str -gr -gs -3552.625 4167.625 m -3547.625 4151.625 L -1.25 slw 0 sg str -gr -gs -3531.625 4101.625 m -3527.625 4087.625 L -1.25 slw 0 sg str -gr -gs -3527.625 4087.625 m -3519.625 4051.625 L -1.25 slw 0 sg str -gr -gs -3510.625 3999.625 m -3505.625 3964.625 L -1.25 slw 0 sg str -gr -gs -3505.625 3964.625 m -3504.625 3948.625 L -1.25 slw 0 sg str -gr -gs -3501.625 3895.625 m -3500.625 3880.625 L -1.25 slw 0 sg str -gr -gs -3500.625 3880.625 m -3501.625 3844.625 L -1.25 slw 0 sg str -gr -gs -3504.625 3791.625 m -3508.625 3755.625 L -1.25 slw 0 sg str -gr -gs -3508.625 3755.625 m -3510.625 3740.625 L -1.25 slw 0 sg str -gr -gs -3520.625 3688.625 m -3523.625 3673.625 L -1.25 slw 0 sg str -gr -gs -3523.625 3673.625 m -3531.625 3638.625 L -1.25 slw 0 sg str -gr -gs -3547.625 3588.625 m -3560.625 3553.625 L -1.25 slw 0 sg str -gr -gs -3560.625 3553.625 m -3565.625 3540.625 L -1.25 slw 0 sg str -gr -gs -3587.625 3491.625 m -3594.625 3476.625 L -1.25 slw 0 sg str -gr -gs -3594.625 3476.625 m -3610.625 3446.625 L -1.25 slw 0 sg str -gr -gs -3637.625 3401.625 m -3658.625 3368.625 L -1.25 slw 0 sg str -gr -gs -3658.625 3368.625 m -3666.625 3358.625 L -1.25 slw 0 sg str -gr -gs -3698.625 3316.625 m -3710.625 3302.625 L -1.25 slw 0 sg str -gr -gs -3710.625 3302.625 m -3731.625 3277.625 L -1.25 slw 0 sg str -gr -gs -3769.625 3240.625 m -3798.625 3213.625 L -1.25 slw 0 sg str -gr -gs -3798.625 3213.625 m -3807.625 3206.625 L -1.25 slw 0 sg str -gr -gs -3848.625 3172.625 m -3855.625 3167.625 L -1.25 slw 0 sg str -gr -gs -3572.625 4768.625 m -3535.625 4733.625 L -1.25 slw 0 sg str -gr -gs -3496.625 4695.625 m -3463.625 4658.625 L -1.25 slw 0 sg str -gr -gs -3463.625 4658.625 m -3462.625 4657.625 L -1.25 slw 0 sg str -gr -gs -3428.625 4616.625 m -3402.625 4581.625 L -1.25 slw 0 sg str -gr -gs -3402.625 4581.625 m -3398.625 4575.625 L -1.25 slw 0 sg str -gr -gs -3368.625 4531.625 m -3347.625 4500.625 L -1.25 slw 0 sg str -gr -gs -3347.625 4500.625 m -3340.625 4488.625 L -1.25 slw 0 sg str -gr -gs -3314.625 4442.625 m -3299.625 4414.625 L -1.25 slw 0 sg str -gr -gs -3299.625 4414.625 m -3291.625 4397.625 L -1.25 slw 0 sg str -gr -gs -3269.625 4348.625 m -3259.625 4325.625 L -1.25 slw 0 sg str -gr -gs -3259.625 4325.625 m -3250.625 4301.625 L -1.25 slw 0 sg str -gr -gs -3231.625 4251.625 m -3225.625 4232.625 L -1.25 slw 0 sg str -gr -gs -3225.625 4232.625 m -3216.625 4202.625 L -1.25 slw 0 sg str -gr -gs -3202.625 4151.625 m -3199.625 4138.625 L -1.25 slw 0 sg str -gr -gs -3199.625 4138.625 m -3191.625 4101.625 L -1.25 slw 0 sg str -gr -gs -3182.625 4049.625 m -3181.625 4041.625 L -1.25 slw 0 sg str -gr -gs -3181.625 4041.625 m -3177.625 3998.625 L -1.25 slw 0 sg str -gr -gs -3171.625 3945.625 m -3171.625 3943.625 L -1.25 slw 0 sg str -gr -gs -3171.625 3943.625 m -3170.625 3895.625 L -1.25 slw 0 sg str -gr -gs -3170.625 3895.625 m -3170.625 3894.625 L -1.25 slw 0 sg str -gr -gs -3170.625 3841.625 m -3171.625 3796.625 L -1.25 slw 0 sg str -gr -gs -3171.625 3796.625 m -3171.625 3790.625 L -1.25 slw 0 sg str -gr -gs -3176.625 3737.625 m -3181.625 3699.625 L -1.25 slw 0 sg str -gr -gs -3181.625 3699.625 m -3183.625 3687.625 L -1.25 slw 0 sg str -gr -gs -3192.625 3634.625 m -3199.625 3602.625 L -1.25 slw 0 sg str -gr -gs -3199.625 3602.625 m -3203.625 3585.625 L -1.25 slw 0 sg str -gr -gs -3217.625 3533.625 m -3225.625 3507.625 L -1.25 slw 0 sg str -gr -gs -3225.625 3507.625 m -3233.625 3485.625 L -1.25 slw 0 sg str -gr -gs -3251.625 3435.625 m -3259.625 3415.625 L -1.25 slw 0 sg str -gr -gs -3259.625 3415.625 m -3271.625 3388.625 L -1.25 slw 0 sg str -gr -gs -3292.625 3339.625 m -3299.625 3325.625 L -1.25 slw 0 sg str -gr -gs -3299.625 3325.625 m -3316.625 3294.625 L -1.25 slw 0 sg str -gr -gs -3342.625 3248.625 m -3347.625 3240.625 L -1.25 slw 0 sg str -gr -gs -3347.625 3240.625 m -3370.625 3205.625 L -1.25 slw 0 sg str -gr -gs -3400.625 3161.625 m -3402.625 3158.625 L -1.25 slw 0 sg str -gr -gs -3402.625 3158.625 m -3431.625 3121.625 L -1.25 slw 0 sg str -gr -gs -3465.625 3080.625 m -3496.625 3045.625 L -1.25 slw 0 sg str -gr -gs -3496.625 3045.625 m -3499.625 3042.625 L -1.25 slw 0 sg str -gr -gs -3537.625 3005.625 m -3566.625 2976.625 L -1.25 slw 0 sg str -gr -gs -3566.625 2976.625 m -3574.625 2969.625 L -1.25 slw 0 sg str -gr -gs -3614.625 2935.625 m -3642.625 2913.625 L -1.25 slw 0 sg str -gr -gs -3642.625 2913.625 m -3655.625 2904.625 L -1.25 slw 0 sg str -gr -gs -3322.625 4997.625 m -3286.625 4961.625 L -1.25 slw 0 sg str -gr -gs -3249.625 4923.625 m -3235.625 4909.625 L -1.25 slw 0 sg str -gr -gs -3235.625 4909.625 m -3215.625 4885.625 L -1.25 slw 0 sg str -gr -gs -3180.625 4845.625 m -3163.625 4824.625 L -1.25 slw 0 sg str -gr -gs -3163.625 4824.625 m -3148.625 4805.625 L -1.25 slw 0 sg str -gr -gs -3117.625 4762.625 m -3098.625 4734.625 L -1.25 slw 0 sg str -gr -gs -3098.625 4734.625 m -3088.625 4720.625 L -1.25 slw 0 sg str -gr -gs -3059.625 4675.625 m -3039.625 4640.625 L -1.25 slw 0 sg str -gr -gs -3039.625 4640.625 m -3034.625 4631.625 L -1.25 slw 0 sg str -gr -gs -3008.625 4584.625 m -2987.625 4542.625 L -1.25 slw 0 sg str -gr -gs -2987.625 4542.625 m -2985.625 4539.625 L -1.25 slw 0 sg str -gr -gs -2963.625 4491.625 m -2943.625 4443.625 L -1.25 slw 0 sg str -gr -gs -2924.625 4394.625 m -2922.625 4388.625 L -1.25 slw 0 sg str -gr -gs -2922.625 4388.625 m -2908.625 4346.625 L -1.25 slw 0 sg str -gr -gs -2892.625 4295.625 m -2888.625 4282.625 L -1.25 slw 0 sg str -gr -gs -2888.625 4282.625 m -2879.625 4246.625 L -1.25 slw 0 sg str -gr -gs -2867.625 4194.625 m -2863.625 4174.625 L -1.25 slw 0 sg str -gr -gs -2863.625 4174.625 m -2857.625 4144.625 L -1.25 slw 0 sg str -gr -gs -2849.625 4091.625 m -2845.625 4064.625 L -1.25 slw 0 sg str -gr -gs -2845.625 4064.625 m -2842.625 4041.625 L -1.25 slw 0 sg str -gr -gs -2837.625 3988.625 m -2834.625 3953.625 L -1.25 slw 0 sg str -gr -gs -2834.625 3953.625 m -2834.625 3937.625 L -1.25 slw 0 sg str -gr -gs -2833.625 3884.625 m -2833.625 3842.625 L -1.25 slw 0 sg str -gr -gs -2833.625 3842.625 m -2833.625 3833.625 L -1.25 slw 0 sg str -gr -gs -2835.625 3780.625 m -2839.625 3731.625 L -1.25 slw 0 sg str -gr -gs -2839.625 3731.625 m -2839.625 3729.625 L -1.25 slw 0 sg str -gr -gs -2845.625 3676.625 m -dot -1.25 slw 0 sg str -gr -gs -2845.625 3676.625 m -2852.625 3625.625 L -1.25 slw 0 sg str -gr -gs -2862.625 3573.625 m -2863.625 3566.625 L -1.25 slw 0 sg str -gr -gs -2863.625 3566.625 m -2872.625 3523.625 L -1.25 slw 0 sg str -gr -gs -2884.625 3472.625 m -2888.625 3458.625 L -1.25 slw 0 sg str -gr -gs -2888.625 3458.625 m -2899.625 3423.625 L -1.25 slw 0 sg str -gr -gs -2915.625 3372.625 m -2922.625 3352.625 L -1.25 slw 0 sg str -gr -gs -2922.625 3352.625 m -2933.625 3324.625 L -1.25 slw 0 sg str -gr -gs -2952.625 3275.625 m -2963.625 3248.625 L -1.25 slw 0 sg str -gr -gs -2963.625 3248.625 m -2973.625 3228.625 L -1.25 slw 0 sg str -gr -gs -2996.625 3180.625 m -3012.625 3148.625 L -1.25 slw 0 sg str -gr -gs -3012.625 3148.625 m -3019.625 3135.625 L -1.25 slw 0 sg str -gr -gs -3045.625 3089.625 m -3067.625 3052.625 L -1.25 slw 0 sg str -gr -gs -3067.625 3052.625 m -3072.625 3045.625 L -1.25 slw 0 sg str -gr -gs -3101.625 3001.625 m -3130.625 2959.625 L -1.25 slw 0 sg str -gr -gs -3130.625 2959.625 m -dot -1.25 slw 0 sg str -gr -gs -3162.625 2916.625 m -3163.625 2915.625 L -1.25 slw 0 sg str -gr -gs -3163.625 2915.625 m -3195.625 2877.625 L -1.25 slw 0 sg str -gr -gs -3230.625 2837.625 m -3235.625 2831.625 L -1.25 slw 0 sg str -gr -gs -3235.625 2831.625 m -3265.625 2800.625 L -1.25 slw 0 sg str -gr -gs -3302.625 2762.625 m -3314.625 2751.625 L -1.25 slw 0 sg str -gr -gs -3314.625 2751.625 m -3339.625 2727.625 L -1.25 slw 0 sg str -gr -gs -3379.625 2692.625 m -3397.625 2677.625 L -1.25 slw 0 sg str -gr -gs -3397.625 2677.625 m -3419.625 2660.625 L -1.25 slw 0 sg str -gr -gs -3461.625 2628.625 m -3486.625 2610.625 L -1.25 slw 0 sg str -gr -gs -3486.625 2610.625 m -3502.625 2599.625 L -1.25 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype38/prob02.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype38/prob02.gif deleted file mode 100755 index e00e578b7..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype38/prob02.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype40/prob04.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype40/prob04.eps deleted file mode 100755 index 58beef0a6..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype40/prob04.eps +++ /dev/null @@ -1,411 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: Moving_Source.eps -%%CreationDate: 11/12/1995 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%BoundingBox:155 479 443 642 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -3615 3481 3693 4731 R -0 0 0 1 1 1 [76 210 83 45 150 89 70 179] patfill -gr -gs -3615.625 3481.625 3693.375 4731.375 R -1.25 slw 0 sg str -gr -gs -3693 3637 6193 4575 R -0.96 sg fill -gr -gs -3693.625 3637.625 6193.375 4575.375 R -1.25 slw 0 sg str -gr -gs -6193 3481 7443 4731 R -0.5 sg fill -gr -gs -6193.625 3481.625 7443.375 4731.375 R -1.25 slw 0 sg str -gr -gs -6740 3168 6896 3481 R -0.5 sg fill -gr -gs -6740.625 3168.625 6896.375 3481.375 R -1.25 slw 0 sg str -gr -gs -6506 2856 7131 3168 OV -0.5 sg fill -gr -gs -6506.625 2856.625 7131.375 3168.375 OV -1.25 slw 0 sg str -gr -gs -4474.5 4575.5 m -4552.5 3637.5 L -35 slw 0 sg str -gr -gs -4631.5 4575.5 m -4709.5 3637.5 L -35 slw 0 sg str -gr -gs -4787.5 4575.5 m -4865.5 3637.5 L -35 slw 0 sg str -gr -gs -4943.5 4575.5 m -5021.5 3637.5 L -35 slw 0 sg str -gr -gs -5099.5 4575.5 m -5177.5 3637.5 L -35 slw 0 sg str -gr -gs -5256.5 4575.5 m -5334.5 3637.5 L -35 slw 0 sg str -gr -gs -4474.5 4575.5 m -4474.5 5200.5 L -35 slw 0 sg str -gr -gs -5412.5 4575.5 m -5412.5 5200.5 L -35 slw 0 sg str -gr -gs -3380 3325 3538 3251 3538 3399 2 P -0 sg fill -gr -gs -4006.625 3325.625 m -3380.625 3325.625 L -1.25 slw 0 sg str -gr -gs -2938 3993 3511 4219 R -1 sg fill -gr -/_Times-Roman ff [208 0 0 -208 0 0] mf sf -2938 4149 m 0 sg (Source) show -gs -4882 4852 5004 5078 R -1 sg fill -gr -4882 5008 m 2.08 slw 0 sg (L) show -gs -4474 5044 4632 4970 4632 5118 2 P -0 sg fill -gr -gs -5412 5044 5254 5118 5254 4970 2 P -0 sg fill -gr -gs -4474.625 5044.625 m -5412.625 5044.625 L -1.25 slw 0 sg str -gr -gs -6549 4813 7087 5039 R -1 sg fill -gr -6549 4969 m 2.08 slw 0 sg (Clamp) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype40/prob04.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype40/prob04.gif deleted file mode 100755 index 194c99cb3..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype40/prob04.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype40/prob06.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype40/prob06.eps deleted file mode 100755 index 584d0b8eb..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype40/prob06.eps +++ /dev/null @@ -1,414 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: cracking stick.eps -%%CreationDate: 4/4/1996 -%%Pages: 0 -%%DocumentFonts: Helvetica -%%BoundingBox:91 486 396 666 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica/Helvetica 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -1648 2578 2742 3359 R -0.25 sg fill -gr -gs -1648.625 2578.625 2742.375 3359.375 R -1.25 slw 0 sg str -gr -gs -5711 2578 6805 3359 R -0.25 sg fill -gr -gs -5711.625 2578.625 6805.375 3359.375 R -1.25 slw 0 sg str -gr -gs -2742 2448 5711 2656 R -0.75 sg fill -gr -gs -2742.625 2448.625 5711.375 2656.375 R -1.25 slw 0 sg str -gr -gs -4227.625 2448.625 m -4227.625 2604.625 L -1.25 slw 0 sg str -gr -gs -5711 4453 6805 5234 R -0.25 sg fill -gr -gs -5711.625 4453.625 6805.375 5234.375 R -1.25 slw 0 sg str -gr -gs -1648 4453 2742 5234 R -0.25 sg fill -gr -gs -1648.625 4453.625 2742.375 5234.375 R -1.25 slw 0 sg str -gr -gs -4227 3906 2742 4531 2647 4304 4131 3679 4227 3906 4 P closepath -0.75 sg fill -gr -gs -4227 3906 2742 4531 2647 4304 4131 3679 4227 3906 4 P closepath -1.25 slw 0 sg str -gr -gs -4227 3906 5711 4531 5807 4304 4322 3679 4227 3906 4 P closepath -0.75 sg fill -gr -gs -4227 3906 5711 4531 5807 4304 4322 3679 4227 3906 4 P closepath -1.25 slw 0 sg str -gr -gs -2898.625 4531.625 m -5555.625 4531.625 L -1.25 slw 0 sg str -gr -gs -2742 2969 2910 2924 2910 3014 2 P -0 sg fill -gr -gs -5711 2969 5543 3014 5543 2924 2 P -0 sg fill -gr -gs -2910.625 2969.625 m -5543.625 2969.625 L -1.25 slw 0 sg str -gr -gs -2742 4844 2910 4799 2910 4889 2 P -0 sg fill -gr -gs -5711 4844 5543 4889 5543 4799 2 P -0 sg fill -gr -gs -2910.625 4844.625 m -5543.625 4844.625 L -1.25 slw 0 sg str -gr -gs -4157 2812 4296 3125 R -1 sg fill -gr -/_Helvetica ff [243 0 0 -243 0 0] mf sf -4157 3055 m 0 sg (L) show -gs -4157 4687 4296 5000 R -1 sg fill -gr -4157 4930 m 2.43 slw 0 sg (L) show -gs -4227 3906 4272 4074 4182 4074 2 P -0 sg fill -gr -gs -4227 4531 4182 4363 4272 4363 2 P -0 sg fill -gr -gs -4227.625 4074.625 m -4227.625 4363.625 L -1.25 slw 0 sg str -gr -gs -4305 4062 4461 4375 R -1 sg fill -gr -4305 4305 m 2.43 slw 0 sg (x) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype40/prob06.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype40/prob06.gif deleted file mode 100755 index 95a0783c5..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype40/prob06.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype41/prob08.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype41/prob08.eps deleted file mode 100755 index 9683e3773..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype41/prob08.eps +++ /dev/null @@ -1,2925 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Title: ICEBERG.EPS -%%Creator: DeskScan II - Hewlett-Packard Company -%%CreationDate: Tue Apr 9 17:8:23 1996 -%%BoundingBox: 0 0 214 174 -%%EndComments -%%EndProlog -save -15 dict begin -/xpoints 214 def -/ypoints 174 def -/xpixels 891 def -/ypixels 725 def -/rasterbytes 112 def -/bitspercomponent 1 def -/xunits xpixels xpoints div def -/yunits ypixels ypoints div def -/coords [xunits 0 0 yunits neg 0 ypixels] def -/picstr rasterbytes string def -/readimage { currentfile picstr readhexstring pop } def -xpixels ypixels bitspercomponent coords /readimage load -image -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8003FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00003FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80F001FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FF00FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFC07FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFE03FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFF01FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFC0FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFE07FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFF07FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFF83FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFFF83FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FFFFFF83FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFFFFF03FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFFFFFF03FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFFFFFD81FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFDDC1FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFF700FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFF7300FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFDDC07FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFDDC03FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFF00FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFE33007FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFE01FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFF8CCE007FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFFFDFFF801FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFFFF333000FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFB807FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFCEE403FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFEEE701FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFF99C1FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFB9E0FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFE660FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFE6607FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFB807FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFF9807FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFFFEF607FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFEE6607FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFF07FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFF99907FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFEFF03FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFFFFFFEE6603FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8007FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFFFFEFF501FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0023FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFB99980FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0031FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFFFFFFFBB9DC0FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80038FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFFFFEEE66207FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0863C7FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFEEE77607FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFC38E3E3FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFFFFFFFFFFFBB9DC83FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFF078E3F1FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFFFFFFFFFFFF3BB9DD83FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFE1F1E3F0FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFFFFFFFFFEEF7703FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFF83E3C1FC7FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFFFFFFFFFFCCEE67603FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFF0FC3C1FE3FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFFFFFBDDC03FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFFFFFFE1FC7C0FE1FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFFFFFFFF3B3999C83FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFC3FFFC3F8780FF1FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFFFFFFFFFFFFFFAFF703FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFC1FFF1FF8F807FCFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFFFFFFCCE666303FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFF80FFC3FF1F003FC7FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFEEEF7D83FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFF80FF87FF1F003FE3FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFF3B1999CC3FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFC1FE0FFE3F021FF1FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFF7FB9DFFC3FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFFFC1FC3FFE7E031FF8FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFDCCEE677C1FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FE0FF07FFFFFFFE3F87FFCFE038FFC7FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFDDDEEE77FC1FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FC07C03FFFFFFFF3E1FFF8FC6387FE7FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFF7FBBF9DFC1FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1F000001FFFFFFFF3C3FFF8FC63C7FF3FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFF773BBF9DFE0FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800E0070FFFFFFFF007FFF1F8E3E3FF9FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFE77FE0FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801F01F01FFFFFFE01FFFE3F8E3F1FFCFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFFFFFFFF99DDCCEEE77FF07FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FCFF80FFFFFFE03FFFE3F9E3F1FFC3FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFFFFFFFFFFFFFFFFFDDFF83FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFF80FFFFFFC0FFFFC7F3E3F8FFE3FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFEEF6773FBF99FF81FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFC1FFFFC7F3E3F8FFF1FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFEFFFFFFFFFFFFFC07FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFF81FFFF8FE3E3FC7FF8FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFBB9DDCEEEE7FFFE03FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFF01FFFF1FC7E3FE3FFC7FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFBB9FFFFFFFFFFFF003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFE01FFFF3FC7E3FE3FFE3FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFEEE77773BB9DFFFF800FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FF8FFC21FFFE3FCFE3FF1FFF1FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFEEFF677FFFFFFFFFC007FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00F07FC61FFFE7F8FC3FF1FFF8FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFDDDDFEFF77FFFF003FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00007FCF1FFFC7F1FE3FF8FFFC7FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFF9DDFFFFFFFFFFFE01FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00007FCF1FFFCFF1FE3FFC7FFC7FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFF7FBFBFFDFFFFFC1FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00007FCF1FFF9FF3FE7FFC7FFE3FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFF6773BBFFFFFFFFE0FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FC7FCF1FFF1FE3FE3FFE3FFF1FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFEFFFFFFFFFF0FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FCF1FFF3F87FC3FFF3FFF8FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFDCCEEEE77FFFFFF07FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FCF1FFE3807FE3FFF1FFFC7FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FCF1FFE3807FE3FFF8FFFE3FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFF773BBFDDDFFFFF87FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FCF1FFE3807FE3FFFCFFFF1FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD83FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FCF1FFE1007FE3FFFC7FFF1FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFCCCEEE7777FF9983FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FCF1F800001FE3FFFE7FFF8FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFEFFFFFFFFFF703FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFCF0F800001FE3FFFF3FFFC7FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFF3B9DDCCCEE6603FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFCF0F800001FE3FFFF1FFFE3FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFBBBFFFFFFFFDC3FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01C70F8E3FC1FE3FFFF8FFFF1FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFEEEE773B3BF9C3FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000CF1F1E3C21FE7FFFF8FFFE007FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFC1FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000CF1F3C1C01FE7FFFFC7F80007FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFBBBFDDCCEE7701FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0030CF9E3C1801FE7FFFFC0000007FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFFBBBFDFFFFFFFC0FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FF8CF1E3C1C01FE3FFC000000E07FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFE7F3BBB99C0FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FF8C71E3C1C11FE7FE00001C3F07FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFEEFE7F3BBFFDC07FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FF8C7007FFFF1FE3FE00707E3F07FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFBFFFDFEEEE77307FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FF8C0007FFFF1FC7FC70F87C2007FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFF3B99DDECEE77781FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FF8C007FFFFF1FE7FCF8F8300007FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFFFFFBBB9DD81FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0007FFFFF3FF841FFFFFFF1FE7FC7000000007FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFEEE7777BB99DD807FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0003FFFFF3FF843FFFFFFF1FC7FC0000002787FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEF77203FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00003FFFFF7FF847FFFFFFF1FE7FC00000FFF0FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFF399DDCCCEE677301FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000001FFF7FFC07FFFFFFF1FE7F800FFFFFF0FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDCC1FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000FFFFFFFF1FE7F8FFFFFFFF1FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFEE66773BB999DCE0FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1C7FC00000000001FFFFFFFF9FE7F9FFFFFFFE1FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFEEFFFFFFFFFF7B207FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1C7FE03FE3C00001FFFFFFFF8FE7F9FFFFFFFC3FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFBB9DDCCEEE7733307FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000003FE3E01FC3FFFFFFFF0FC7F1FFFFFFFC7FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFBBDFDFFFFFFFFE03FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000000000000001FFFFFFF00007F1FFFFFFF87FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFEEEE7773BB999DCE83FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0000000000000000000000000007E3FFFFFFF0FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFFFEEEE77F3FFFFFFFF83FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3880000000000000000000000007C7FFFFFFE0FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFBFFDDDEEEE6733303FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE388201887F8162000000000000C787FFFFFFC1FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFF3BB9DDDFEFE7773B81FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE388001983FC7FFF8FFFF83F078E20FFFFFFE03FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFFF777BBB9DDDCEC1FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE388000983FC7FFF9FFFF83F078C01FFFFF0007FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFE6777BBB9DDFDEC0FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000000083FC7FFF9FFFF83F078C03FF0000007FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEF773300FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000000001FC7FFF8FFFF83F07000000000001FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFFFFB9DDCEEEE7733B807FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000000000000807FFF038000000000007C3FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFEE07FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0C00000000000000000000000000001FE0783FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFEEE67773B9FDDCCEE07FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFEA00000000000000001FFFFFFE0387FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFF7BBB83FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFE030FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFF7BBB9DDCCEEE7733B981FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE011FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFF3BBBDDFFFFFFFFFFFFC0FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE001FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFCEE767773BB9DDCCFE607F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFCCEE667773FBFDFFEFF803F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFF000080000C0400220000000 -3F820010000300000000000000000000000000000000000000000000000000FFFFFFFFFFFF -E0 -FFFFFFE0000000001FC207FFFFFFFFFFE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FFFFFF -FFFFCFE77FFFFFF3DC060000C0000000000000000000000000000000000000000000000000 -000000000000000000000000000000000000000000000000000000000000007FFFFFFFFFFF -E0 -FFFFFFC0000000000000000000000000000000000000000000000000000000000000000000 -00000000000000000000000000000000000000000000000000000000000000000000000000 -000000000000000000000000000000000000000000000000000000000000003FFFFFFFFFFF -E0 -FFFFFFC0000000000000000000000000000000000000000000000000000000000000000000 -00000000000000000000000000000000000000000000000000000000000000000000000000 -000000000000000000000000000000000000000000000000000000000000007FFFFFFFFFFF -E0 -FFFFFFC0000000000000000000000000000000000000000000000000000000000000000000 -00000000000000000000000000000000000000000000000000000000000000000000000000 -0000000000000000E3FFBFEFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000FFFFFFFFFFFF -E0 -FFFFFFF7E7C040100000000000000000000000000000000000000000000000000000000000 -0000000000000000000040000500007FFFFEFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFF0 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFFFFE726400000000300002F40FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8 -0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0007FFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00000FFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -81C000FC001F8001FC003F8007F000FF000FC001FC001F8003F8007F000FFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000007FFFFFFFFFFFFFFFFFFFFF0FFFFFFFF -FFFC81FFC73FF801FE003FC001FE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -C0C0007C001F8001F8003F8007F000FF000FC001FC000F8001F8007F0007FFFFFFFFFFFFFF -E0 -FFFFFFFF001FC001FC003F8001FF000FF001FC0000000003FFFFFFFFFFFFFFF001F8007FC0 -07F0007F000FF000FC001FC001FC07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0F01FFF3B3FF18FFD87FFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFF7FFFF91FFFFFFFFFFFFFFF -E0 -FFFFFFFE001FC001FC003F8000FF0007E001F807FE000000000000000000000003F8007FC0 -07F0007F801FF803FE007FFC1FFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFC03FFD83FF907FC003FF000FF003FC4FFFFFC00000000000000000007FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000000007FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FE07FE03FFE1FFF803FF01FFF01FFF00FFF03FFFEFFF803FFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF407FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FE0000003E000FF001FE001FC003F8007FC003F8007F0007F001FF000FE00FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFFFFFFE03F -F00FFF003FC003FE007F0007F000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FF8000003E000FF001FE001FE003FC007FE007F8007F0007F001FF001FE00FFFFFFFFFFFFF -E0 -FFFFFFE07F0007F8007F800FF0007F8003F8003F800FF8007F000FF000FF800FE0007F000F -E001FE001FC003FC003F0007F001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFC0000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFE07F0007F8003F800FF0007F8003F8003F8007F0007F000FF000FF801FE0007F801F -E001FF003FC01FFF3FFFFFFFE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFE0000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFF7DFFFFF7FFFFFFBFFFFFEFFFFEFFFEE0FFFFFFFFFFFFFFFFFFF7FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFE001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFC0000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFC007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFF803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF000001FC003FC003F0007E001FF000FE001FC001FC003FC00FFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFCFFFF80FF001E00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFC00001F8003FC003F0007E001FE0007E001FC001F8001F8003FFFFFFFFFFFFFF -E0 -FFFFFFFF001FF003FF001FF001FF001FE009FF901FF82BFF80FFFC0BFF003FE00FFE001F80 -03F0007F0007F0007E000C01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE00003FC007FC3FFFF27FFC03FF001FF003FE003FE083FC007FFFFFFFFFFFFFF -E0 -FFFFFFFE000FE001FE000FC000FE000FE000FF000FC000FC001FC001FC000FC007FC001F80 -03F0003F0007F8007E000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFF001FF003FE001FE001FF001FE000FF001FE001FC003FE007FE003FE00FFF33FFFF -FFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF0001FFF000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFC07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFC00000000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFC00000000000001DFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFF8000000000000004007FC1FFFE7FFFFFFFFEFBFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF000000FFC000000003F8003F800FE0007F0007F000FF00FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFF87FF807F -F003FF001FE003FC00FC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFE03FFFFFFFC0000003F8007F800FF0007F0007F000FF01FFFFFFFFFFFFF -E0 -FFFFFFC03F8007F0007F8003F8007F8003F8003F8007F800FF001FF000FE000F8001FE003F -E001FE001FC001FC00781FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFE07FC007F0007F8003F8007F8003F8003F8007F800FF001FE000FE000FC001FE007F -E003FF04FFE017FE7BF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFEC7FFE7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFC07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFE00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF00007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE001FFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFE0000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0001FE001FC000FE001FC003FC003FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFE0 -07FC00FF80000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0003FE001FC000FE003FC003FC003FFFFFFFFFFFFFF -E0 -FFFFFFFF0003F000FE0007E001FE000FF0007F001FE001FC001F8003FC003F0003F0003F00 -03F8007F8000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFF0003F000FE0007E001FE0007F0007F001FE000FC001F0003FC003F0003F0003F80 -07FC00FFC00000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFC1FFFFFFF3FFFFC23FFF17FFFEFFE7FFF9FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFF80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFE01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFC07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFDFFF00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFC007803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800000007F8007F000FF000FE01FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFE3FFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF77F -FD000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000007F8007F000FF000FE01FFFFFFFFFFFFF -E0 -FFFFFFE03F8007F8003F0007F8007F8003FC003F800FF800FF000FF800FE0007E000FF000F -E000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000003FFFBFFFFFFFFFDFFF13FFFFFFFFFFFFF -E0 -FFFFFFE03F8007F0003F0007F8007F8003F8003F8007F8007E000FF0007E0007E000FF000F -C000000003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFE00FFF007FE00FFE00FFC007FC007FC00FFC00FF17FFFC0FFFFFFFFFFFFFFE00 -00000FE01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00 -00003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800 -0001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE000 -0003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000 -00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80007F003FE001FC003FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE007F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00002001FE000F8003FFFFFFFFFFFFFF -E0 -FFFFFFFF000FF001FE001FF0007E0007E001FE000FF000FF001FC003FE001FC001FC0001FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00001EFFF9BFFC42FFFFFFFFFFFFFFF -E0 -FFFFFFFE0007F000FE000FF0003E0007E000FE000FF0007E001FC001FC000FC001FC0007FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0007FFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFF80FFFE13FFDFFFF800FF0C3FF00BFF001FF003FF807FF1AFFFEFFFFDFFFE001FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF803FFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03801FF001FC01FFFFFFFFFFFFF -E0 -FFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE001FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000FF000FC00FFFFFFFFFFFFF -E0 -FFFFFFE03FC003F8007F8007F8007FC003F0007F800FFE00FF001FF800FF800FC0007FFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF300003FFFFFFE05FFFFFFFFFFFFF -E0 -FFFFFFC03FC003F8007F8003F8003FC003F0003F8007FC007F001FF800FF80040001FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801FFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFF07FE00FFC00FFC007F8007FC007F0007F800FFE00FF007FFC07FFC0000007FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCC007FFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0001FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8003FFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB800FFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC03FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFC02000FE003FFFFFFFFFFFFFF -E0 -FFFFFFFFFFBFFFFFFFFFFFFFC7FFBF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00000FE001FFFFFFFFFFFFFF -E0 -FFFFFFFF0003F800FF801FE000FE000FF000FE000FE000FF003FE001FE00001FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB0107FFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFF0003F800FF800FE000FF000FF0007E0007E000FF001FE001FE00003FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBF81FFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFEFFFFFFFFFFFFFFC0007FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE41FFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFE61FFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEFFFFBBB80FFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE003FFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEE0FF000FE00FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3B9FFFFEEE607F000FE00FFFFFFFFFFFFF -E0 -FFFFFFE03FC001FC003F800FF8007FC007FC003F800FF8003F800FF80007FFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFCFFFFFFFFFFFFFF -E0 -FFFFFFE03FC001FC003F800FF8007FC003FC001F8007F8003F800FF8001FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFEFFFFFFBB90FFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFC7FFFFFFFFFFFFFF007FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFEEF707FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF73FFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFBBF83FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCCEEFFFFFFFFF0007FC003FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF70007FC001FFFFFFFFFFFFFF -E0 -FFFFFFFFC007E000FC000FE001FF0007F000FF001FE000FE000FC0007FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFF773BBFFFFEFF701FFFFDFFFFFFFFFFFFFFFF -E0 -FFFFFFFF8007E000FC000FE001FF0007F0007F000FE0007E000FC000FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFEFFFFBFFFFE43FF3E1FFFC7FFCC0FFB0FFF005FF847FE001FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3B9DDDEEFFFFFFBFF81FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDCEEF7773BFFFFFFEE760FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBBBFDDEEFFFFFFFBFDC07000FE00FFFFFFFFFFFFF -E0 -FFFFFFFFFFF04FFF07FFF4FFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFBDCFFFFFFFFFFFFE07000FE00FFFFFFFFFFFFF -E0 -FFFFFFE03F8007F8007F8003F8007F8007FC003F800FF800FF000C1FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7BBFFFFFFEE7707FFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFE03F8007FC007FC003F8007F8003F8003F800FF8007F00083FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDCFEEFF7FBFDFFFFFFFFF03FFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFEFEFFFFFFFFFD83FFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF73BBF9FFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7F03FFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9DCEEEF7FFFFFFFFFFFFFF00FFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDC01F8003FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFE7773BBFFFFFFFFFFFFFBFDDC01F0003FFFFFFFFFFFFFF -E0 -FFFFFFFE0003F0007E0007F8007F0007F8007F800FF000FE001FC0FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFF003F859FFFFFFFFFFFFFFF -E0 -FFFFFFFE0003F0007E0003F8007E0003F0003F8007F000FE000FC1FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF99DCEEFFFFFFFFFFDEEFF7F01FFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFC07FFC63FFFFFFC1FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFEE7773BBB9FFFFFFFF73BBFDFC1FFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFEE7F37FFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFB9DDFCFEFF7FFFFFFDDCEEE7F01FFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF199DDEFEFFFFFFFFFFFFFFFFF81801FF01FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFEEEFFFFFFFFFFFFFFF773BBFDDC3000FE00FFFFFFFFFFFFF -E0 -FFFFFFE03FE003FC003F800FFE007FC00FFE007FC00FFC007F801FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFCE6777FBBFFFFFFFFF7FFFFFFF83800FF01FFFFFFFFFFFFF -E0 -FFFFFFC03FC003FC003F0003FC007FC007FC003F8007FC003F801FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9DDCEEFF7703FFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFDFFE00FFE407F8007FE007FC00FFE007FC007FC007F807FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFB999DDCEEE7F7FFF9DDEFFFFFF03FFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7773B9FDC07FFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFCEE6733BFFFFFFFFF6773BBFDE07FFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFEEFFFFFFFFFFFFFFFDDEFEFFFF07FFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFB199DDEFFFFFFFFFFDCCEEF7FE001FC007FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFBBBDDFFFFFFFFFFFFFFFFBFFFC000F8001FFFFFFFFFFFFFF -E0 -FFFFFFFF8007F800FF8007E000FF0007FC1EFF807FFF7BFF0003FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFC6E7777FFFFFFFFFE7773BBDDC000F8001FFFFFFFFFFFFFF -E0 -FFFFFFFF0003F000FF0003C0007E0007F8003E0007F0007E0003FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFCEE77FFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFF0007F800FF8007E0007F0007F8007E0007F0007E0003FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFBBFDDDEFFFFFFFFFDDCFEEFF761FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFBB99DFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFEEE7F7FFFFFFFFFFE7773BBDDC1FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFEE67777FFFFFFFFFF7FFFFFFFC1FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFFFFFFFFFFFEEFF701FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF3998DCEFFFFFFFFFFFFFEFFFFC1F8007F00FFFFFFFFFFFFF -E0 -FFFFFFF67FE007FE007FE03FFF03FFEFFFFFFBFFFF7FFFFFFF03FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFEFFFF7FFFFFFFFFFFFFFBB9DDC1F8007F00FFFFFFFFFFFFF -E0 -FFFFFFC03FC001F8003FC003F8003FC003FC001FC001F8007F03FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFEC66673BBFFFFFFFFFFFFBFFFDC1FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFE03FC001FC003FC003FC003FC001FC001FC001F8003F07FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEFFF61FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFF07FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFB999DDFEFFFFFFFFFFFFEEFFF61FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFFFFFFBBFFFC1FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFEEE6773FFB9FFFFFFFFFF3BFFDC1FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFEEFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFBB9DDFFFE6777BFFFFFFEEF77E003FC000FFFFFFFFFFFFFF -E0 -FFFFFFFFF07FFF8FFFFDFFFFEFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFBBB9DFFFFF7F7FFFFFFFFFFFFFC003FC000FFFFFFFFFFFFFF -E0 -FFFFFFFF8003E0007E0003F0003F0007F8003F0003F0007E000FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFEEFE77FFFB98DCEFFFFFFFB9DCC07FFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFF8007E000FE0003F0003F0007F8003F0003F0007E000FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFCE7E77FFFFD9DCFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6FFF8107F87DFFF81FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFBBBFDDFFFE7773BFFFFFFEE77720FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF33B99DDFFFE7F7FBFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFDDCEFFFFFFFB9FDC1FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFDCCCE6677FFFF9DCCEFFFFFFFFFFFC1FF87FFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFCFFFFFFFFFFFFFFFBFFFFFFFEF7701F8007F00FFFFFFFFFFFFF -E0 -FFFFFFF03F8003FC01FFF803FE007FFC4FFFFFFFFFFFFF3FF03FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFEEF7733B9DDFFFFFF7733BFFFFFFFF7F01F8007F01FFFFFFFFFFFFF -E0 -FFFFFFE01F0001F8003FC001FC001FC003FC003F8003FC00307FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE7F7F7FFFFFFFFFFFFFEFFFFFFFFBFDF83FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFF01F8003FC007FE001FC001FE003FC003F8003FC0020FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFBBB9DCCEEE67FFFFF9DDCEFFFFFFFBDFF03FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF33B9DDFFEFFFFFFFFFFFFFFFFFFFEFFFF07FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFCEE6777FBB9DFFFFFFF733BBFFFFFEFF7F07FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFCEE6677FBFBFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFBBB9FDFEEEFFFFFFFDDDCEFFFFFFBBFDC007FFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF33999DCEEEFFFFFFFFFFFFFFFFFFFFFFFF00007C001FFFFFFFFFFFFFF -E0 -FFFFFFFF0007F8007F8007FC01FFBE0FF801FFF3FFFCC0FF80FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFEFFFF7FFBFFFFFFFFFF733FFFFFFEEF77700007C001FFFFFFFFFFFFFF -E0 -FFFFFFFF0003F8007F0003E000FE0003F0007F0007F0003E00FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFDCEFFE7773B9FFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFF0007F8007F8003F000FE0003F0007F0007E0003E00FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBBB9DC0FFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF73BFFFDCCEEFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF73FFFFFFFFFFFFFFFFFFFFFFFFFFFEFFF770FFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFF33B9FFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF77BBFFDC0FFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFEE6FFFFFFFDFFFFFFF7FBFFFFC07F8007F00FFFFFFFFFFFFF -E0 -FFFFFFE03FF907FF80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF7FFFFFFFFFFBFFFFFFFFFFFFFFFFFFEF77007F8003E00FFFFFFFFFFFFF -E0 -FFFFFFC01FE000FC003FE003FC001FE001FC003FC003FC0020FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF9DFFFFFFFFFFFFFFFCEFFF701FFFFFFFDFFFFFFFFFFFFFF -E0 -FFFFFFC01FF001FC003FE803FE001FE000FC001FC003FC0020FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4E7FE7FFFF1030FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7BBBFFC07FFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDDCEE7F60FFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF773BBB9C0F001FF001FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0F000FF000FFFFFFFFFFFFFF -E0 -FFFFFFFFC001F8007F0003F000FF0007F0003F0007F8007F003FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDDCCEE7760F99FFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFC001F8007F0001F000FE0007F0003F0003F0007F001FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFF05FFE80FF000FF0003F0003F8007F801FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7F7FBBF9C0FFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFF07FFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDEFEF7707FFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9DFDEFFF7707FFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFFF80FF8007F80FFFFFFFFFFFFF -E0 -FFFFFFF0FFFCF7FFFFFFE77FFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEE7733FBFFF807F8003F00FFFFFFFFFFFFF -E0 -FFFFFFE01FF001FC000FC003FC001FE003FE001FE007FC003C1FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFF00FFE007F81FFFFFFFFFFFFF -E0 -FFFFFFE01FF001FC000FC003FC000FE001FC001FC003F8001C1FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF999DCCEE77781FFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFDFFF93BFF00FFE003FE007FC003C3FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFC1FFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEE67773BF9DFC0FFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB999DCCEF777F03FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFF0000FF000FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFDBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEE7733B99DDE80007F0007FFFFFFFFFFFFF -E0 -FFFFFFFFC003F000FF0007F0007E0007F8007F000FF8003F80FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEEE7FFBFFFFFF8000FFC01FFFFFFFFFFFFFF -E0 -FFFFFFFFC001F000FF0007F0007E0007F0007E0007F0001F00FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFDDFEFFFF7F81FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFEFFFFFFFEB1FFC00FF0007F8007F000FF8003F81FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFFF3B9FDFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFBBFFDFEC1FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3BBFFFFCEEE773BBFFFFFE0FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFEFFFFFFA0FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFEE66773B999FCEFFFF7FA07800FF81FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE070007F80FFFFFFFFFFFFF -E0 -FFFFFFE00FE001FC003FC003FE001FE003FFC07FF001FE0001FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF733999CCCE66773BBFDDDEE07C00FFFFFFFFFFFFFFFFF -E0 -FFFFFFE007E001FC001FC001FC001FC001FC003FE001FC0001FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFF73BF9FFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFA3FF803FE003FE003FE001FC001FC003FE001FC0003FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFDCCEE66733B99DCCEEF773BA07FFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFDCEEEF77FFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF773399DCCCEE7773BBBDDDEC0FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF333399FDCEFE7F7FFFFFFFF81FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFDDCCEE6F773B99DCCEFF773B0003FF83FFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFE7FFFFFF9DCCE66777BB99DDFEFFFFFF80003E0007FFFFFFFFFFFFF -E0 -FFFFFFFFF02FFE01FFF06FFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF77FFBB9DCFEEE6773BBFDDDEC0003F0007FFFFFFFFFFFFF -E0 -FFFFFFFF8003F8007E0003F0003E0001F8007F0007F0001E03FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFB999FFFFE66333B99DCCE666773BFFFFFE81FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFF8003FC007E0003F0003E0001F8003E0003F0001E03FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFB9DFFFFFFFFFFFFFF777FFFFFFFFFFFF3B81FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFC00FF800FF8003F03FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFEEEE7FFFFF99DCEE67773BB99DFEFEFFF7F81FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFEEEF7FFFFFFFFFFFFFFFFFFFFFFFFFFFDDEC1FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFBFBDFFFFFE67333B99DCCCEE777BFBFDDFEC1FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFF3B99FFFFFE777FFFFFFFFBFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFEFFFFFFFFF9DCCCE677733B9DCDEEE777FB81F0007FC0FFFFFFFFFFFFF -E0 -FFFFFFF01FF07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFCCEEEFFFFFFF9DDDFEFFFFFFFFFFFFFFFFFFFC1F8007FC0FFFFFFFFFFFFF -E0 -FFFFFFE00FE001FE003FE003FE001FE001FC003FE003FC0007FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFEFF777BBB9DDFEE7F77BB9FDDEEC1FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFE00FE001FE001FE003FE001FE000FC001FC001F80007FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFEE677333B9DFFFFEE7777BBFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFEFFFFE5FFFE01FE003FE007FC0003FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFEEE6777FFFFFFFFFFFFFFCEEF7F733B9DDCEEFF773B81FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFB999DCCEE67FFFFF99DDCEEFFF7FBFBFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFB3999DCEEEFFFFFFFFFFFFFFFDFDEEFFF773B9DDFCEE0FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFCEE677333B9FFFFFEE7773BB99DCEEFFF77FFBFFFFFE07FFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFCEE667333B9FFFFFFFFFFFFFFFFFFBFFFFFFEFF773B80007F000FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFDDFFEEFFFFFF999DDCEE7777BBBDDDEFEFFFFFFB0007F000FFFFFFFFFFFFFF -E0 -FFFFFFFF0003F8003F8007F0007F0007FC007FC09FFE007F007FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF33999DCEEEFFFFFFBFFFFFFFFFFFFFFFFFFFFFFFDFEE003FFC9FFFFFFFFFFFFFFF -E0 -FFFFFFFF0001F8001F0003F0003F0001F8003F8003F8003E003FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFBBBFFFFFEE7733BFF9DCEE7FF37BBBFFFFFF403FFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFE39FFC007F8007F0007F8003FC003F8003F8003E003FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFCEE6737B3BBFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFBD03FFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFCFEFFFFFFFFFFFFFFFDDDCFFFF7373B9DCEEEFFFF3BBF81FFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF3B999DCEEFFFFFFFBFDDFFFFFFFFFFFFFFFFFFFFFFFFF41FFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC067FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFBFBFDFFFFFFFFFFEEE773BFFF9DCEEEE7733B9FDFEFFF60FFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFCEE67733FFFFFFFCEE777FFFFDFFFFFFFFFFFFFFFFFFFC0007FC1FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE099FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFCFEFFFFFFFFFFFFBFFFDFFFFFF777BBDDDEEEE7773BBFC0007F80FFFFFFFFFFFFF -E0 -FFFFFFE07FC001FD003FE003FEF1FFF77FFFFFFFFFFFFFFFFE05DFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFBB9BDDFFFFFFFFFBBDDDFFFFFF3FFFFFFFFFFFFFFFFFFE003FFC7FFFFFFFFFFFFF -E0 -FFFFFFC01FC000FC000F8000FC001FE000FE001FC003FC001E0667FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF3B9BDFFFFFFFFFFFFFFF7FFFFFDCFEE67733B9DC0EEEE703FFFFFFFFFFFFFFFFFF -E0 -FFFFFFE01FC000FC000FC000FC001FE000FE000FC003F8001E0777FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFCEEF77FFFFFFFFCEE6773FFFFFDCEEFFF7FBFFF81FFFFF03FFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7FFF01FFC0FFE099FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFCEE777FFFFFFFFFFFFFFFFFFFF7FFBFFDDFFEFF013BBFD83FFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE099DFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFBFFFFFFFFFFF3B99DDFFFFFF77BBFFDDFEEFF003FFFF83FFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0663FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFBB9F9FFFFFFFFFFBBFFFFFFFFFFFFFFFFFFFFBF80EEFF703FFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0663FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFEFFFFFFFFFFFCCEEFFFFFFFFFDCEEFFF7FBF9FC1FFFFF03F800FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0181FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFCCEE77FFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFF77FBBDD83F800FFFFFFFFFFFFFF -E0 -FFFFFFFFC007FC007F8FD7FC70FF801FFFFFFFFFFFFFFFFFFE0180FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF73B99FFFFFFFFF7BBFFDCEEFFF7FFBBFD83F800FFFFFFFFFFFFFF -E0 -FFFFFFFF8003F8003F0003F0001E0003F0003FC007F8003FC002607FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF3399BFFFFFFFFF73BFFFFFFFFFFFFFFFFFFFFFFFFFFFFF703FFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFC003F8003F8003F8003E0003F0003FC007F8001FC002617FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFF3BFFFFFFFFFFFCFFEEFFFFFFFFFDCEFFF77BBBFDFFFEFF703FFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFF39BFE00181FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFF9FFCCCEE7FFFFFFFFCCEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFFD83FFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF818DFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFB9FFCCCFFFFFFFFFFF773B9DFFFFFFFFFFFFFFDCEEEF777BBBFD83FFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FEEEFFF33BBFFFFFFFE6333B99FFFFFFFFFFFFFFFFFFFFFFFFFFF783FFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC2737FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FE667FF33BBFFFFFFFF7FFFEFFFFFFFFFFFFFFFF7FBBFFDDFEFE6703FFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC07FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFB9FFFFCEFFFFFFFF9DCCCE67FFFFFFFFFFFFFF7FFFFFFFFFFFFF8003F80FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC09CCFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F1B99DCCCEFFFFFFFF9FDFFFFFFFFFFFFFFFFFFFDDFFFF77F3BBDD8003F80FFFFFFFFFFFFF -E0 -FFFFFFE01FE001FE003FF003FF00FFF91FFFCC7FFFFFFFFFFFC01DEFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FBFFF7FFFFFFFFFFFF67333B9FFFFFFFFFFFFFFFDDFFFFFFFFFFFF807FFFFFFFFFFFFFFFFF -E0 -FFFFFFC01FE000FC001FE001FC001FC001FE000F8003FC001F80233FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -EE6663333B9FFFFFE67773FFFFFFFFFFFFFFFFFF77FBB9DDFEEEF703FFFFFFFFFFFFFFFFFF -E0 -FFFFFFF01FE001FE001FE003FE003FC001FE000F8003FC001FC023FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -EE777F6FFFFFFFFFB99DCCCEFFFFFFFFFFFFFFFF33FBBDFFFFFFFF83FFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFE01DCFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -BBB99CCCEEFFFFFF199DCCEEFFFFFFFFFFFFFFFFFFFFFFFFFBFBDDC3FFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80CCFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -BBB9DDDFFFFFFFFEE677733BFFFFFFFFFFFFFFFDCCFEFF7FFBFFFFC3FFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC -EE666733BBFFFFFEE667773BFFFFFFFFFFFFFFFFFFFFFFFFFFFF7701FFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC033FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC -EEE66737FBFFFFFFFF9FDFEFFFFFFFFFFFFFFFFF77BBF9FDFEEFF701F000FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC01CFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3 -B9B9DDCCEEFFFFFBFF9DCEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDC1F000FFFFFFFFFFFFFF -E0 -FFFFFFFF8003F0007F8003F000FF0007F800FF801FFC05FFC00E00CFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3 -3199DDDFEEFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFDCEEEF777BB9DDE1FFFFFFFFFFFFFFFFFF -E0 -FFFFFFFF0003F0007F8001F0007F0003F0007F000FF8003F800301FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FEFF6733BBBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1FFFFFFFFFFFFFFFFFF -E0 -FFFFFFFF8003F8007F8003F0007F0003F8007F000FF8003F8003033FFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCC -EE666333BBFFFFFFFFFFFFFFFFFFFFFFDDFFFFFF7FBBB9DDFEEF7761FFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFBDDDFEFFFFFFFFFFFFFFFFFFFFFFFDDFFFFFFFFFFFFFFFFFFFFE1FFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF633 -339998CECEFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFDCEEF777FBB9DCE1FFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF733 -FBED7373FBFFFFFFFFFFFFFFFFFFFFFF777FFFFFDEFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8CC -EE666333B99FFFFFFFFFFFFFFFFFFFFFFFFFFFFF7F3BB9DCEEEE772007FC1FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFF83FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD8CC -FEEFF17FFFFFFFFFFFFFFFFFFFFFFFFF9DDFFFFF333B99FFFFFFF7E003FC1FFFFFFFFFFFFF -E0 -FFFFFFFC3FF07FFFDDFFFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF733 -BB99D8CCEE7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFE77FFBB9DDC00FFF7FFFFFFFFFFFFF -E0 -FFFFFFE00FE001FC003FE003FC001FE001FC000FC003F8007F8003FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF733 -3B99DDFFFFFFFFFFFFFFFFFFFFFFFFFE6773FFFFDCEEE777BBB9DDC1FFFFFFFFFFFFFFFFFF -E0 -FFFFFFE00FE001FC003FE003FC001FE001FC000FC003F8003F8003FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDDDC -EE666333B99FFFFFFF77FFFFFFFFFFFF7FFFFFFFFFFFFDFFFFEF7701FFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFE003FF1FFFFFFFFE003FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF98CC -EE66737BEFFFFFFFFFDFFFFFFFFFFFF99DCCFFFF333BB9DCFEFF7703FFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF773 -3B99DCCEC6EFFFFFFF9DFFFFFFFFFFFFDFFEFFFFFFFFFFFFFFFFFD83FFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE333 -3B99DDCFEFFFFFFFFF77FFFFFFFFFFEE77331B99DCEE6F77FBB9DC83FFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FE -EE666333B99FFFFFFF777FFFFFFFFFFF77FBBFFFFFFFFFFFFFFF7F07E000FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF99CC -EE677733B9FFFFFFFFDFFFFFFFFFFFF99DCCEE77733BB9DCEEFE7607E000FFFFFFFFFFFFFF -E0 -FFFFFFFF8003F8007FC007FC003F800FFE007FE03FFF9DFFF77C0FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFEEFFFFFFFF9DCFFFFFFFFFF99DEEFFFFFFFFFFFFFFFFFC0FFDEFFFFFFFFFFFFFFF -E0 -FFFFFFFF0001F0003F8003F8001F0007F8001F8001F8007F80001FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7733 -3BBFFFFFEFFFFFFFFFFFFFFFFFFFFFFE77F3BB9DDCEE7777BBB9D81FFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFF8003F8007F8003F8001F0007FC001F8001F8007F80003FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF77FF -FEFFFFFFFFFFFFFFFFF773BFFFFFFEEE77F3BF9DFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFE007FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9DCC -EE7FFFFFFFFFFFFFFFFFFFFFFFFFFFFF9DFFFF7FFFBBFDDCEEE7703FFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDDCE -FFFFFFFFFFFFFFFFFF9CCCEFFFFFFB998DCCEE77FFBBFFFFFFFFF03FFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEEE7733 -39FFFFFFFFFFFFFFFF9DCFFFFFFFFFFFFFFBFFDDFFFFFF77BBB9D87FFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDCCEEEE7733 -BBFFFFFFFFFFFFFFFF63333BFFFFCEE67733BFDDDCFE7F7FFFFDD06003FC0FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF99DDCC -EFFFFFFFFFFFFFFFFF7333BBFFFFFFFFFFFFFFFFFFFFFFFFFEFF604003F80FFFFFFFFFFFFF -E0 -FFFFFFF03FF80FFFC3FFF93FFF4BFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF999DCC -EFFFFFFFFFFFFFFFFF9DCEEEFFFF3B999CECE6773B3B99DEFEFFE0780FFE7FFFFFFFFFFFFF -E0 -FFFFFFC01FF000FE000FE001FE000FF000FE001FE001FC001E0FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7773 -BFFFFFFFFFFFFFFFFF8DCEE6FFFFBBBF9FFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFE01FF001FF001FE001FE000FF000FE001FE001FC001E1FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7333 -BFFFFFFFFFFFFFFFFF633B3BFFFFEE667733BDDDDEEE777FBBBDC0FFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFBBFFFEFFF87FFFA0FFE017C1FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7DCC -FFFFFFFFFFFFFFFFFE63333BFFFFEEF77FFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD8CC -FFFFFFFFFFFFFFFFFFC7CCFFFFFFBBBDDDCCEE7773BBF9DFFEF740FFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFF98CCCEFFFFFBBFDDFEFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFDFFFFFFFFFEEEF7F3BBBFDDEEE7777BBF9C00FF001FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFDFFFFFF73FFFFFFFFEEE7773FBFFFFFFFFFFFFFFFC007F000FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF9FFDFFFFFFFFFFFFFFFFFFBDDFFEFF7F7BFFFFFFFEF7000FF801FFFFFFFFFFFFFF -E0 -FFFFFFFF8003FC007FC007FC00FFC003FC003FC007F800FF800FFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFBBBDDDEEFFFFFFFFFFFFFFFF81FFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFF8003FC007FC003FC00FF8003FC003FC003F8007F8005FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFE66677FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83FFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFE1FFE00FFE03FFE01FFC003FE007FC007F800FF8001FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFEEE67F3B9DDDFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF037FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF999DCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF037FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF3B99CDEEFFF73FBFFFFFFEE00FFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFEE67773FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF801FE003FC0FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80CFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFEFFFFFFFFFFFFFFFFFFFFEEF6773BB9FDFEEFFF7FFB801FE001FC0FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFBB99CCEFFFFFFFFFFFFFFEEFF77FFFFFFFFFFFFFFFE003FF007FFFFFFFFFFFFFFFF -E0 -FFFFFFE01FF001FF001FE001FE001FF000FF000FF001FE001FC033FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF73BBFFFFF -FFFFFFFBB9FFFFFFFFFFFFFFFFFF3B9DDDCEEF777BFFFDFEEC01FFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFE01FF000FF001FE001FE001FE000FE000FF001FE001F807FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFBFFFFFFF -FFFFFFEEE7777FBFFFFFFFFFFFFFBBFDDFFFFFFFFFFFFFFFF007FFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFF84FFFFE3FF801FF83FFF003FE04CFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF77BFFFFFFFFFFFFFFFFFFFFFFBBDDCEEEEFFFFF -FFFFFFEEE7777FFFFFFFFFFFFFFFFFFF7FBBFFDDFEFE7F7FA01FFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9B9DCFEEFFFFFF -FFFFFFFBF9DCFEEFFFFFFBBF9FFEEEF777BBFFFFFFFFFFFF807FFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF033BFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDCCEFFFFFFFFFFFFFFFFFFFFFEEFF773BB9DFFFF -FFFFF37B99DDDFEFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFDFC0FFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF033FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEE77773BB9FFFFF -FFFFFFFFFF7773BBFFFCEEE6773FBB9DDCEEFF7FFFFFFFFF80FE001FC001FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00CEFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE773BBFFFFFFFFFFFFFFFFFFFFBFFDDDFEFF777FF -FFFDDCEE667773BBFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFF00FE001FC001FFFFFFFFFFFFFF -E0 -FFFFFFFF0007F000FF8007F800FF001FFC0FFFFFFFFF9FFFFE700CFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB999DCEEEFFF7FF -FFFFFFFFFDFDCEEEE773BBB99DCEEEF7773BBDDDFEFFFFFF07FFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFF0003E000FF0007F0003E000FF0007F0003F000FF80003BFBFFFFFFFFFFFFBFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9DFEEEFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFDFF -FF773FBBB9DCCCEEE777BBBFDFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFF0007F000FF8007F0003E000FF8007F0003F000FF800013B9FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFEEE677333B9DCCFF -FF7FFFFFFFFFFFFBFDDFEEE77773BB9DCCEEFF7F3FBFFFFC1FFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00EFFFFFFFFFFFFCEFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE6773399FFFFFFFF77FFFFFFFFFFEFFFFFFFFFF7FF -B999DCEEE67773B999DFCEE777FFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00467FFFFFFFFFFFEFFFFF -FFFFFFFFF3BFFFFFFFFFFFFFFFFFFFFFE67F3FBFFFFFFFFDFFFFFFFFFFFB999DCEEE66773B -9BDDDEFFEFFFFFEFFFFFFFBFDDCFEFE777BBBFDDEEFF7F783FFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0019FFFFFFFFFFF33BFFFF -FFFFFFFF33BFFFFFFFFFFFFFFFFFFFFFFDDCCEE67FFFFFF9DCEFFFFFFFFBFBFFFFFFFFFFFE -EFF773BBB9DDCCEEE773FBBFDFFFFFFFFFFFFFFFFFFFFFF03FFFFFF87FFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0001BFFFFFFFFFFFBBFFFF -FFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFB9DDCEEEFFFFFFFFFFFFFFFFFFFEEE777733B9DCCCE -EE7773FBFDFFFFFFFFFFFFFFF77BBB9DDFEFFF7F7FBFFDC078007F8007F80FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000FFFFFFFFFFCEEEFFFF -FFFFFFFCEE6FFFFFFFFFFFFFFFFFFFFFFF733B99DDCCFFF77733BBFFFEEEF7777BFFFFDFFF -BFFFFDFEFF7773B99DDCCEE7F77BBB9DDFFFFFFFFFFFFFC07C007F8007F80FFFFFFFFFFFFF -E0 -FFFFFFE03FE007FC00FFC00FFC007FC007FE027FF03FF81FFFC0000027F33FFFFFCEEFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE6E6733B9DDDDCFFFFFFFFFFF7FFFBB9DFCEEE67773B -999DDFEEFF7FF3FBFFFFFFFFFFFFEFF77F3FFFFFFEFF7700FFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFC01FC003F8007FC003F8007F8003F8001F8007F0007F00040007FBEFFFFFFFBBBFFF -FFFFFF733399FFFCFFFFFFFFFFFFFFFFFFFFFEEE7733BB99DCCCE66773BBB9DFDFEFFFFFFF -FFFFFFFFFDDDFEEE7773FBF9DDCEEE7777BFFDFFFFFFFF01FFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFE03FE007FC007FE007F8007FC003F8003F8007F000FF000F8001CCCEFFFF33BB9FFF -FFFFFF7FFBFFFFFFFFFFFFFFFFFF7FB99DCCCEEE773FBFFDDFFFFFFFFFFFFFFFFFBF9FDCEE -EE7773BBB9DDFEFEFFFFFFFFFFFFFFFFFFFFFF777FBDDC03FFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001FFFBFFFFDFFFFFFF -FFFFFDDCEE666773BFFFFFFFFFFFFFFFFFFFFF9DDDCEEE777733B99DDCCEE777F7BF9FDFFE -FFFFFFFFFF7FFBB9DDDFEFE77733BB9DDFEEFFFFFFFDC807FFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0373B19FFDCEEEE7FF -FFFFFDDCEE7FF77FFFFFFFFFFFFFCEE666733B999DCCEE7F77FBF9FFFFFFFFDFFFEFE7773B -9BDDDCEE777773BBFFFFFFFFFFFFFFFFFFFFFFFFFEE0000FFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0173FBFFFFFFBFFFFF -FFFE773331999CCCEFFFFFFFFFFFDFFFFFFFFFFFFFFFBFFDDCEEE67773B999DDCEE7FF77FF -BFFFFFFFFFFFFFFFFF77BBBDDDCEEF77773BFFDFEC00001FFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0CCCE6763331B9DDF -FFFE7737B9B9DDFFFFFFFFFFFFF773BB9DCCEEE6773BBBFDDDFEFFFFFFFFFFFFFFFFDDDDEE -EE777FBB99DDEEEFFFF7FFFFFFFFFFFFFFFFFFFFF000007800FF000FE000FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC00EEE3FF7DEEFFFFF -FFB999CCEEE7773339BFFFFFFFF7733FFFFFFFFFFFFFEFF77773B9DDDFCEE7773BBB9DDDFF -EF7FFFFFFFFFFFFFFDFFFEFF7773BB9DDFEFFFF7000001F000FF000FE000FFFFFFFFFFFFFF -E0 -FFFFFFFF8C0FF003FF871FFC7FFFC00FFDFFFFFFFFFFFFFFFFFFFFE7E003B1998CCCE66673 -FFB999CCEE67777FBBFFFFFFFFFDDEEFF7773F99DCCCEFE7737BB9DFFFFFFFFFFFFFFF0FFF -BBDDDCEE677773B9FDFFFFFFFFFFFFFFFFFFFFFC00000FFC1FFFEEFFFBFFFFFFFFFFFFFFFF -E0 -FFFFFFFF0007E000FE0007E000FE0007F000FF001FF0007F000FE000E003B99DDDF2FFFFDF -FEFE77373B99DCCC6E67FFFFFF9DCEEFF7FFFFFFFFFFFFFFDCEEEE6773BB9DDDCEEE60013B -BBDFDC067FFFFFFFFFF7FFFFDDCEEFFF77BBBFD800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFF000FE000FE0007E000FE0007F000FF001FF0007F000FE000E00CCEE663333B9D8C -CC6677333399DFCCEEFFFFFFFFFFFFFF9DDFEEE6773BBB99DCEEEE6773FBFFFFFFFF80003F -FF77000001DCCEEFF773BBFFDCC4FFFFFFFFFFF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF27F004CEE773733FFDFE -EBBDFDFCEEE677733999DDFFFE6773BB9DDFFEFF7F7FFFFF7FFBF9DDCDEEFFF733B900000E -EE760000001DFFFFFFFFFFEF60001B9DCFEEFF701FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8013BFDDDCEE66633 -339998CCEE666733B999DFFFFFFFFFFFFFFFFB9DDCCEEE77333BB9DDCCEFFFFFFFF8000000 -0000000000033BB99C800640000001DFFFFFFFE07FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80039B99DCEE67F37 -3BBFFFFFFFFDDDCCC6E7733BFB9DCEE67F77FB9DFDFEFFFFFFFFFF777BFBFFDCCEE0002000 -0000000000017FBFF0000000000000FFFFBBBD80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE006EFF7773BB9D8C -CCE677333B99DCCCC6E7677FFFFFFFFFFFFFFEFF7F3BBF9DDCEE667773BBBFDDCEC003E000 -0000000000000C0660000000000000777F3B9900003F8007F000FF8007F00FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0006777333B99DCC -EEFFF77FFFF7FFFFB9FD8CCEE67777BB9DFCC46E7F3BBFFFFFFFFFFFFFFFF7733B001C0000 -00003C003F000000000000000000001CCC000000003F8003F000FF0007F00FFFFFFFFFFFFF -E0 -FFFFFFE07FE007FC007FE00FFC007FE007FF007FC79FFFBFFFFBFFFE20400BFDFFCEEEF777 -3B9998CCEE667733B9998DEEE7FFFFFFFFF800001DCCEE77733B99DDCEEEE773BB007C0000 -0000FE003F800000000000007801F0000000000705FFF01FFC7FFFFE7FFCFFFFFFFFFFFFFF -E0 -FFFFFFE03FC003FC003FC003F8007F8001FC001F0007F8003F0007F000700199DDCEE67737 -3BB99DDCEEFF7FFFFBE777FFBFDDCEE7F77000000CCCE6777FFFFFFFFFFFFFFDEE03FFFFFF -FFFFFFFFFFF00000007FFFFFFFFFF8000000001FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFE07FC003FC003FE003FC007FC001FC001F0007F8003F0007F0007C01FFFFFFFBDFCE -EEFE77333999DCCCE66773BBBFDDFFFFFFE00000013BA39DDCEEE77773BB99DDCC07FFFFFF -FFFFFFFFFFFF000003FFFFFFFFFFFE000000007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00667333B99DDC -EEEE777BFBBDFFFFFBFDDFEEFF7773BBDF800000003399FDDFFFFFFFFFFFF777F80FFFFFFF -FFFFFFFFFFFFFBC77FFFFFFFFFFFFF80003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00277FFFFFFF7F -3FBFDDFCEE677773B9998CCEEF7773FFFC000000001FFE77F7BBB9DDECCE0002201FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80008CEEE67F33 -3B99DDFEEE7777FBBFFFFFFBBFDDDFE46000FFFF00046E6733BBB9FFEFC00000003FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0001FFFFFFC0E -EEEE777BBFB9DCCEE667733B9F9DCEC00007FFFFF00000000FEEFFF733000000007FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FF803FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00003F3190000 -04667733BBB9DDEEEFF7FFFFFFF73800000FFFFFFC00000000EEE6630000000000FC00FF80 -1FFC007F000FF000FC001FC001FE0003E003F0003F0007E0007E0007F000FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF800003B100000 -0007FFDEEFFF773BB9DDCCCEE77330000000FF001E000000003B98000000000001F8003F00 -07F8007E0007F0007C001F8001FE0003E003F0003F8007F0007F000FF000FFFFFFFFFFFFFF -E0 -FFFFFFFF800FF800FF000FF0007C0007E000FFC03FF000FF803FF003FF000F000004000000 -0001DCCCEE767333B99FDFFFFFFFC00000007F000F8000000011000000001F8001F8003F00 -0FFC007E000FF001FF27FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFF0007F0007E0007F0003C0007E0007F800FF0007F000FE000FC0007C00000000000 -00007F7FFFFDDCEE667773BBBF9D80006000FF01BFE0000000000000001FFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFF8007F800FF0007F0003C0007E0007F800FF0007F800FE000FF000FC00000000000 -00003733BB9800CC002773FBBFFC003FFFFFFFFFFFFFFFFFC000000001FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000FFFF -000007FFFFF000000009DFCEE66001FFFFFFFFFFFFFFFFFFFC0000003FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0007FFFF -FFE0004CEE6000000001CCCEE60007FFFFFFFFFFFFFFFFFFFF8000FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFFFF -FFF80000600000000000030000000FFFFFFFFFFFFFFFFFFFFFE03FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFC3FFE19FFC3FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFC0000000000000000000000003FFFFFFFFFFFFFFFFFFFFFF3FFFF7FFFF9FFFDFFFFE27F -E007FE003F8007FC00FF0007F000FE001FC001FC001FC003FE007F8007F80FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFC0000000000000000000000003FC00FF800FFC007F800FF800FE001FE001FC000FE003F -C003FC003F0003F8007E0007F000FE000FC001FC001FC003FE007F800FF81FFFFFFFFFFFFF -E0 -FFFFFFF07FC003F8007F8003FC007FC003FE00FFC00FFD0CFFC07FFC03FFC007F000FF800F -F00000000000007C0000000000001F8003F0007F8003F0007F000FE001FE001FE000FE003F -C007FE003F8067FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFE03F8001F8003F0001F8003FC001FC001F8007F8003F0007F8007F8003F0007F0007 -E0003E00000000FC001C000000003FC007F800FFE00FFC9FFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFF07F8007F8007F8003F8003FC001FC001F8007F8003F000FF8007FC003F000FF800F -F8E0FFE000783FFFEFFF8003FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF81FFF000FC000FC001FC007FC00FF800FF0007F000FF000FE000FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFA0FFD807F8003F8003FE001FC003F80 -03E0003E0007E000F8000F8000F8003F8007F8007F0007F0007E000FE000FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFF7FFFFFFFFF87FF8C7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB -FFFF8A3FF007FC007F8007F800FF0007E001FC000FC001F0001F8003F8003FC001F8003F80 -03E0003E000FE000FC000FC001FE1BFFFFFFFC1FFF803FFFFFFFFF7FFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFE0003F0007E0007E000FE0003F0007F0007F0007E000FE000FE000FC000FF0007E0 -00FE001FE001FC003F8003F0007F0007C001FC000FC001F8007F8003F8067FFFFFFCFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFE0003F8007E0007E000FE0003F8007F0007E0007E0007C000FE000FE001FF0007E0 -00FE001FE003FC007FC007FC07FF9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFCFFFFF8FFBFBFFEFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFC7FF8007F001FF000FF80BFF003FC007FC00FF000FFC0FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0FFFC03FF001FF001FE003F -E001FE001FC003F0007E0003E000FE000FE001FE001FC003F8007F0007FC0FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF8BFFF9BFFE007FC003FC003FC003F800FF8007F800FF000FF001FF001FC001F -E001FC003FC003F000FE0007F001FF000FF00BFE0C3FE027FE0FFF82CFFE7FFFFFFFFFFFFF -E0 -FFFFFFE01FC003FC007FC007FC003FC003F8007FC007F800FF000FF8007F8007F000FF000F -F8007F801FE000FE001FC003FC003F8003FC001F8007F800FF800FF000FF003FFA03FF07FF -F05FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFC01FC001FC003FC003F8001FC001F8003F8003F8007F0007F0007F8007F000FF000F -F8007F801FF001FE001FC007FC007FC00FFF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFF03FE007FE01FFE007FC003FE003FC007FC007F800FFF01FF800FFEEFFFF03FFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFE007F8011FC007FC007FC00FF800FF0007E000FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC30FFC00FF0007F80 -0FF8003E0007E000FC000F8001F8000F8001F8003F8007F0007F0003C0007FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF3FF800FF0007F0007E000FE001FC007F8003E0007F0007E0007F00 -07F0001C0007E000FC000FC003F8001FC003FC003FC00FF8007F000FE003FFFFFFFFFFFFFF -E0 -FFFFFFFF0007F800FE000FE000FE0007F8007E000FF0007E000FF000FE0007E000FE000FC0 -00F8000F8003F8003F0003F0007E0007E0007C0007E001FC007F8007E0007F8007F000FF80 -8FF8007FFA7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFF0003F8007C0007E0007C0003F0007E0007E0003E0007E0007E0003E0007E000F80 -00F8000F8003F8003F0007F0007F0007F000FF003FFFFFFF3FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFF8007F800FE0007E000FC0003F8007E000FF0003E0007F000FF0007F000FF021FC0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80FFFC7FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FE03FF003FE04FFC00FF000FE001FF000FE001FE007FC007F8007F000FF80FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FF8007F800FE001FF003FF003FE001F -C001FE001FC007F800FF0007E001FF000FE001FE003FC007F8007F000FF80FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFC7FFFFFFFFFFFFE7FFFFFFFFFFFFFFFFFFFFFFFC3FFDFFFFF41FF819F -FC31FF807FF001FF003FE003FC003FC003F8007F8007F0003F0007E001FE001FF001FE001F -C001FE001FC00FFC37FFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFE01FE003F8003F8003F8001F8003F8007FC001FC003F8003F8007F0007F000FF000F -F000FF000FC000FE003FC003FC003FC003F8007F8007F8007F801FFF7FFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFE01FE003F8003FC003F8001FC003F8003FC001F8003F8003F8007F0007F800FF800F -F801FF801FE001FF007FF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8FFFFFFFFF00FFFC3FFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFCCFFC0AFE003FE001FE001FC003F8003F8003F8003F000FE000FF000FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFE3FFE007FC003F8001F8003F80 -07F8003F8007E001FC000FC001F8003F0003F0003F0003E000FE000FF000FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFF7FF80FFC007FC00FF807FF000FF000FE000FE0007F000FC003F8003F0001F8003F80 -03F8003F800FE001FC001FE06FFF1FFFDDFFFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFC003F000FE000FF000FE000FF000FE000FF0007F000FE001FE0007E0007E0007E0 -007E000FC001F8007F0003F803FE0007E000FE000FE0007F001FC003FE107F8667FE1E7FFB -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFF8003F000FE0007E000FC0007F0007E000FF0003F000FC001FC0007C0007C0007E0 -00FE000FC003F8007F800FFE1FFFBFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFC007F801FF801FF801FF000FF800FE000FF0007F801FE007FF0C0FF8DFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFCFFF80FFE01FF800FF001FF801FF000FE001FE003FE007FC007F8007F00FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF93FFFCFFF803FF800FF001FF001FE001F -C001FE003FC007F0007E000FF800FF000FE001FE001FE007FC007F8007F00FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -F8FFFFE0FFFE01FF003FE007FE007FC007F8007F8007F0007F000FE0007E000FE000FE001F -C001FE003FC007F000FFC03FFC7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFE03FE001F8003F8007F8003FC003FC003FC00FF8007F8007F800FF8007F0007F000F -F000FE001FE000FE001FE001FC007FC007F8007F8007F000FF000FE000FF007FF1FFFF03FF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFC01FC001F8001F8003F8001FC003F8001F8007F8003F0003F0007F0003F0003F000F -F000FE001FF000FE001FF007FFFFFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFE03FE003FC003FC01FFC003FE007FC003FC01FF8187FC00FF801FF917FFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE -FFFF3FFFFFDFF001FF000FC003F8003F0003F000FF0007F0007F001FF001FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF003FC007F8003F8003F80 -03E0003F8007E0007C000FC001F8001E0003F0007F0007F0007F000FE001FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFF8FFFE0FFFC007FC00FF8007F0003F0007E0003C001FC000F8001F8003F8001F0001F00 -03E0003F8007F000FE001FC027FE1E7FC01FFFFFFFFFBFFFF3FFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFF8007F000FE0007E000FC000FE0007F0003F0007E001FC003FC000FC001F8001F00 -01FC000F8000F8003F0007F0003E0003E0007E0007C001FC001F8003F8007F8007F8003FFF -FFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFF0003F0007E0003E000FC0007E0003E0003F0007E001FC001F80007C001F8001F00 -01FC000F8001F8003F800FF8007F0007FF7FFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFF8003F002FF8007F001FE000FF0007F0007F800FF003FE003FE000FFDFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF7FFFE00FF001FF001FE001FE003FE001FC003FC007F8007E00FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFE0FFF007FE003FC003F -C001F8003FC003F0007E000FE000FC000FE001FE001F8003FC007F0007E00FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF7FF8FFFF807FF007FC007F8007F8007F8003F000FE001FE001FC001F8003F -C001F8003F8003F000FE001FF003FE003FF003FF003FE007FF20FFC38FF9FFFFFFFFFFFFFF -E0 -FFFFFFF03FF003FE007FC027FE007FC003FC003F800FFC007FC00FF800FF8007F000FF0007 -F000FF000FE000FE003FE001FC001FC007F8003F8003F8003F000FE001FE001FE003FC007F -E00FFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFC01FC001FC003FC003FC003FC001FC001F8003F8003F8007F000FF0003F000FF0007 -E0007F000FE000FE003FE003FC003FC00FFC3CFFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFE03FE001FC003FC003FC003FC001FC003F8007F8007F8007F800FF8007F801FF840F -F840FFC7BFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFBEFFFC0FFC00FFC007F800FF801FE000FE003FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFB9FFF003F00 -07F8003E000FC000FE000FE000F0007F8003F8003F0007F0007E0007C000FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFF8E07F001FF000FE001FC000FC001F8001F8001F8001E00 -03F0003E0007C000FC000FE001F000FF8007F8003F000FF000FE000FE003FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFF05FFF27FFEFFFF1FFFFE3FFF3E7FFFFFFFFFFFFBFFFF81FFE031FF001FE0 -01FC001F8001FC000FC001F0007F8003E000FE000FC000FC000FC001F8001F8003F8003E00 -03F8007F001FFE7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFE0003F0007F0003F0007C0007E000FE0007E0007E0007E0007E0007C000FE000FC0 -00FC001F0000F8000F8001F0007F8003E000FF000FE001FE041FE1FFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFE0003F0007F0007F0007C0007E000FE0007E0007E0007E0007E0007C000FE000FE0 -19FE001F8001FE013FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8F7FFFE1FFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFF73FFEC3FFE07FFFFFFF04FFFE1FF803FF800FFC1FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0DFF -E001FC003FC007F8007F0007F000FC001FE001F8001F8007F0007F0007E00FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF87FF9FFFE01FF8007F0007F800FF001FE000FE001FC003F -C001FC001FC007F8007F0007F000FE001FE001FC003FC007F800FF8007F81FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFF3FFFFFFFFC3FFFFFFFFFFFFFFFFFFFFFFE6FFFF1FFFE17FF005FE003F -F003FF000FF800FF003FC003F8003F8003F800FF0007E0007F000FF001FF000FE003FC003F -C001FC00BFC3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFE01F0001F8007F8003F8003FC003F8003F8007F8003F000FF0007E0007E000FC000F -E001FF000FF000FE003F8003F8003F8007F800FF800FF000FF877FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFE01F0001F8007FC003F8001FC003F8003F8007F8003F000FF8007E0007F000FE000F -E001FF000FFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFFF3FFFF7FFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFF8FFFFAFFFE007F873FFC007FC007F800FF001FC000FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFF989FF8007F00 -0FF0003E0007E000F8001FC003F8003F8007F0003F0007F0007E001FC0007FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFE3FF8807F801FE000FC001FE001F8003F8003F0007E0003F00 -07F0003E0007E000F8001FE003FC007F83FFF8003F8007F800FFE03FE1F7FFFFFFFFFFFFFF -E0 -FFFFFFFFE7FFF020FF001FF000FF801FFE03FF8BDFFF3FFFC83FF001FF000FF000FC000FC0 -00FC003FC003F8007F8003E0007E0003E000FC0007C000FC001F8003FC003F8007F0007F00 -4FF83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFF8003C0007C0007E0003F0007F0003E0003F0007E000FC000FC0007E00078000FC0 -00F8001F8003F8007F8001F000FE0007F000FE020FF0C7FF7FFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFF8003C000FE0007F0003F0007F8003E0003F0007E000FC000FC000FE00078001FE0 -00FC00FFE3DFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFF2FFFE00FFE007FC00FFC3FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFF80FF -E007FF003FC00FFC00FF000FF800FE001FE001FC003FC007FC003F8007F80FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE03FFC08FFC00FF000FF0007C001FE001FE003FC003F -C003FE001FC007F800FF001FFC01FF003FE003FE003FC00FFC00FFC00FF87FFFFFFFFFFFFF -E0 -FFFFFFFFFFFEFFFFFFFFEEFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFE01FFC07FFE03F -F801FF001FF003FE003FE007FC003F800FF0007F8007F0007F0003C001FE001FE007FC003F -C007FF83FFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFC07F8003F8007F8003F8007FC003FC001FC003F8007F000FF000FE0007F000FF000F -F000FF000FF003FE001FE007FC003F800FF000FFC00FF83FFFF7BFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFE03F8003F8007F8003F8007FC003FC001FC003F0007F000FF000FE0007F001FF801F -F001FF835FF91FFFF9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFE1FFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFF00FF803FE001FE000FC001F8001F8007F0007F0003E0007E000F8001FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3FFE5FFF003FC003F0003F8001F8007F00 -0FF0003E000FC000FC0007C001F8001F8007F0007F8003E000FE000FC001FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FF3 -E7FE047FE001FC007F0003F8003E0007F000FF000FC001F8001F8003F0001F8001F8007F00 -0FF0003E003FE183FF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFF0007F000FE0007C0007E0007F0007E000FE000FE003FC001FE000FC001FE000FC0 -00FC003FC001F8003F0003F8003E0007F000FF001FE003FC003F8087F80FFFE7FFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFF0007F000FE0007C0007E0007E0007E0007E0007C001FC000FE000FC001FE000FC0 -00FE007FE001FC007FC01FFFA3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFF51FFF9FFFEE1FF773FF83FFF807FF001FF063FE03FFE7C1FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFE01FFE00FF000FF001FE001FC003F8003F8007F000FF800FF00FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE07FF803FF003FE003FE007F -E003FC003F8007F800FE0007F000FC001FC001F8003F8007F800FF800FF00FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFE7FFF007F8007FC007F8007F8007F800FE000FE001FE001FC003FC003F -E003FE003FC007FC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFE0FFC007FC007F8007FE00FFC007FC00FFC007FC007F801FF800FF8007F000FF801F -F801FF001FE000FE003FE003F8003FC007F8007F800FF800FE000FF003FF1B7FF09FFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFE03F8003F8003F0007FC007FC007FC003F8003F8003F000FF0007F0007F000FF000F -F001FF001FE000FE003FE007F800FFE8EFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFE07FC007FC007F8007FC007FC007FC007F8007FC007F801FF800FF801FF803FFFFFF -FDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFF103FF003FE003FC007F8007E0007F800FF0007C001F8003FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FE00FFC007F00 -1FF0007F000FC001FC000FC001F8007F8007E0003F0007E0007C001F8001FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFF803FF800FF003FF000FE001FE000FC003F8001F8003F8003F00 -0FF0003F000FC001FC001FE003FC00FFC63FF0007F987FFBB8FF07FFC7FFFFFFFFFFFFFFFF -E0 -FFFFFFFF0007F800FE000FF800FF000FF8107F817FFE13FF813FE001FF80DFF003FE001FF0 -01FC001FC003F8007F0007F000FE0007E001FE000FE001FE000FC003FC003F8007F8007FC0 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFE0003F0007C0007F0007E0003F0003F000FF000FC000FC000FE0007E001FC000FE0 -01FC001FC001F8007F000FF000FF001FF003FF81FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFE0003F0007E0007F0007E0003F0003F000FF000FC001FC000FF0007E001FE003FF0 -97FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFC00FF00FFFFFFFE003FC007FCE3FF801FF800FF01FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFE03FF -C003FE007FC007F000FE0007E000FE001FC001F8003F8007F000FF0007E00FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81FFC007F803FFC00FF000FE001FE000FE000FC003F -8001FC007F8007F000FE0007E001FE003FC003F8007F800FFC01FF800FF07FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFF8FFF85FF -F000FF003FE001FC003F8007F8003FC00FF8003F000FF000FF000FE000FF000FE001FC003F -C003FE007FEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFE03F8007F8007F8003F8007F0003F8003F8007F8007F001FF000FF0007F800FF000F -E0007F001FC001FC003F8007F8003FC00FFC007F801FFC19FF8E3FFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFE03F8007F8007F8003F8007F0003F8003F8007F8007F000FF000FF0007F801FF000F -E0007F013FF0C7FF0CFFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFF17FFFFFFFFAFFFEFFFFC07FFFFFFFE7BFFEBFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFBBFF003FE003F800FF8003F000FF000FE003FC003FC001FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF887F8007FC007FC0 -03F0007E000FF000FE000FC001F8007F8003E0007F0007E003FC003FC001FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFF9FFE01FF801FF000FF001FC001FC001FC007F8003F0003F8003F80 -03F0007E000FF000FF000FE033FC07FFFFFFFFC8FFE07FFFBFFFDFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFC00FF001FC000FE003FF800FF801FF80FFF001FE003FE013FE003FE003FE000FC0 -01FC003FC001FC007F0003F8007F0007E000FE000FC001FC001FC007FC007F8007F8007FE6 -1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFF8007E000FC0007C001FF0007F000FF000FE0007C000FC001FC001FC001FE0007C0 -01F8001FC001FC007F0007FC007F801FF001FFD3FFE7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFC007F001FC000FE001FF8007F000FF000FE0007E000FC001FE003FE003FF003FE0 -03FC19FFFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFDFFFFC03FF003FF003FE003FE007FC01FFC00FF800FF00FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB8FFF007FE003F -F003FE003FC00FF800FE000FE001FE001FE001FC007F8007F8007F8007F00FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFF7FFF83FF8007FC00FF000FF000FE001FE001FC001FC003F -E001FE003F800FF800FE001FE001FF007FF007FC00FFC03FFE01FFCE7FFFFFFFFFFFFFFFFF -E0 -FFFFFFF7FFF80FFE00FFC01FFFE1FFE1FFFFFFFFF73FFFBFFFFFFFFC01FF8C07F007FF003F -F801FF001FF000FE003FE003F8003FC007F0003F8007F0007F000FE001FE003FC003FE003F -F87FFFB3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFE03F8001FC003F0007F0007F8003FC001F8007F8003F000FF0007E0007E001FF000F -F000FE001FF000FC003FE007F8007FC00FF800FFC01FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFE03F8003FC007F8007F8007FC003FC001F8007F8003F800FF8007F0007F001FF803F -F801FF9E3FFFFFFFCFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFF3FF003FC007FE00FFC01FF800FF800FE003FF001FF001FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1DFFC007F800FF8003F00 -0FF0001E000FC001FC001F8003FC007F8007F8007F800FE000FF000FF001FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFF9FFFFDBFF801FF001FF001FE003F8000F8003F8003F000FF8003F00 -07F0001E000FC001FE001FC027FF1FFFE79FFC1FFFFEFFFA03FFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFF0007F801FFC03FF003FF001FFC03FF157FFFC7FFC1FFF01FFFA03FE003FC001FC0 -01FE007F8003F000FF000FF0007F0007E000FF000FE003F8000F8003F8003F800FF8007FBA -5FF818FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFF0003F800FF800FE000FE000FF0007E000FE000FF001FE001FE001FE001F8001FC0 -00FC003F8003F000FF000FF000FF8007E003FF807FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFF0007F800FFC01FE001FF000FF800FE000FE000FF003FE001FE001FE003FC003FC3 -E3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFC3FFE01FFE00FF000FF001FF000FE003FE003FE007F800FF800FE00FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03FF803FE003FF001FC003F -C001F8003F800FFC00FE000FE001FF000FE003FC003FE007F800FF800FE00FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFBFFFFFFFFF00FFE007F800FF800FF800FF000FF000FC001FE001FE001FC003F -C001F8007F800FFE0BFF815FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFF03FE007F8007F8003F8007FC007FC01FFF00FFE01FF003FF800FFC00FF001FF001F -F001FF003FE003FC003FC007F8003F000FF800FF000FF000FF001FE007FF007FF9C7FE7FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFE03FC003F8003F8003F8003FC003F0007F800FFC007F001FF8007F800FF000FF001F -F001FF003FE003FC003FC00FFC01FFE71FFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFE07FE007F8007FC003F8007FE007F8007FC00FFE01FF001FF800FFC01FF8E7FFCBFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFDFF807FF001FE001FC001FC007F8007F8007F000FF801FE000FC001FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FF87FFC003F8003F8003F00 -0FF0007E000FE001FE000FC001FC007F8007F8007F000FF801FF000FC003FFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFDFFFE1FFFC01FF800FF000FE003FE001FE001FF003FC003F8001F8003F00 -0FF0007F001FE003FF4FFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFF000FF801FE001FF800FF000FF001FF001FF000FF003FE003FE001FE001FC001FC0 -03FE003F8003F8007F0003F000FF0007E000FC003FC001FE001FF007FC003FC44FFF99FFDF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFE000FF000FC000FF0007E0007E000FE000FF0007E001FC001FC000FC001FC001F80 -03FC003F8003FC007F8007F831FFC01FF9FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFC00FF801FE001FF800FF000FF001FF000FF000FF001FE003FE003FFF1FFFFFFFEF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF83FF800FF000FE001FF001FC003FC007FC003F800FF800FF00FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9BFF801FF003FC003FC003F -8001FC003FC007F0007E0007E000FE000FC001FC003FC003F8007F800FE00FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFDFFFF007FE007FC00FF8007F8007F0007F000FE000FE001FC003FC001F -8001FC003FC00FF800FFB81FF3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFE07FC007F8007F800FF800FFC007FC007FC00FFC05FF000FF800FF0007F000FF000F -E001FE001FE001FC003FC003FC003F8007F8007F8007F0007F000FE001FF007FF04FFF0FFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFC03F8007F0003F0007F8007F8003F8003F8007F8007E0007F0007E0003F0007F000F -E000FE001FE001FC003FC007FE01FFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFF07FE00FF8007F800FF800FFC003FC003F800FF800FF000FF800FF800FF837FFFE3F -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFF98FFF04FFE003F8001F0007E001FE001FE0007F001FE003FE01FFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FF800FE001FE00 -0FF8001E001FE003FC001F0001F0003E001FE000FE0007F001FE003FE00FFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFEFFFFFEFFF001FF001FC001FE001FE001F8003F8003F0007E000FC00 -0FF8001F001FE007FC003F80F3FF30FFFFFFFE7FFF8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFF0007F000FE000FE003FF000FF000FFC07FF01FFE001F800FFC003F800FF8003F80 -03FC003FC003F8003F0007F000FC000FE001FC000FE001FE001F8003F8003F800FE001FE00 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFF0003E000FE0007E001FE0007F0007F001FF000FC000F0003FC001F0003F0001F80 -01FC003FC003F8003F0007F001FE001FF003FE1FFFF00FFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFF0003F000FE000FE001FE0007F0007F001FF001FC000F0003FC003F8007F8003FC0 -07FE09FFFBBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFF07FFD83FF001FE003FE001FC003FC00FF8007F8007F000FF00FFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE63FF003FC003F8003F -8003FC007F0007F000FE000FE001FE001FC003FC007F0003F8003F000FF007FFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFF00FFE07FF800FF800FF000FE001FF001FC001FC001F8003F -8001F8007F0007F001FF001FE03FFF003FE003FE00FF99FFFE77FF803FFFFFFFFFFFFFFFFF -E0 -FFFFFFE07FC007F8007FC003FC00FFC007FC007FC00FFE3FFFC27FF803FF000FE001FF003F -E001FF001FE001FC003F8007F0007F8007F0007F000FE000FE000FF001FE001FC001FC00FF -C07FFE1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFC03F8003F0003F8001F8003F8003F8003F8007F8007F000FF000FE0007C001FE001F -E000FE000FE000FC003F800FF8007FC01FF801FF947FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFE07F8003F8007F8001FC003F8003F8003F8007F8007F001FF000FF000FC001FF003F -F063FFDE7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -E0 -end -restore -%%Trailer diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype41/prob08.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype41/prob08.gif deleted file mode 100755 index bdae64c52..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype41/prob08.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype42/prob02a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype42/prob02a.eps deleted file mode 100755 index f28795e1c..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype42/prob02a.eps +++ /dev/null @@ -1,566 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Tue Jun 14 16:27:22 1994 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 141 202 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /rpath { - newpath moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} bind def /rfpath { - /rad3 exch def /hh3 exch def /ww3 exch def /yy1 exch def /xx1 exch def /xx2 xx1 ww3 add def /yy2 yy1 hh3 add def newpath xx1 yy1 rad3 hh3 0 gt { - add - } { - sub - } ifelse moveto xx1 yy1 xx2 yy1 rad3 arcto 4 { - pop - } repeat xx2 yy1 xx2 yy2 rad3 arcto 4 { - pop - } repeat xx2 yy2 xx1 yy2 rad3 arcto 4 { - pop - } repeat xx1 yy2 xx1 yy1 rad3 arcto 4 { - pop - } repeat closepath -} bind def /rfill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - 4 2 roll rpath crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - rectfill pop - } ifelse grestore -} bind def /rstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse 4 2 roll rpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /rffill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse rfpath filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /rfstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse rfpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /mkrpath { - dodrawctm rpath unpagectm -} bind def end -TopDrawDict begin /defpat { - 7 dict begin /FontDict 9 dict def FontDict begin /cache exch def /key exch def /proc exch cvx def /mtx exch matrix invertmatrix def /height exch def /width exch def /ctm matrix currentmatrix def /ptm matrix identmatrix def /str -(12345678901234567890123456789012) def end /FontBBox [ 0 0 FontDict /width get FontDict /height get ] def /FontMatrix FontDict /mtx get def /Encoding StandardEncoding def /FontType 3 def /BuildChar { - pop begin FontDict begin width 0 cache { - 0 0 width height setcachedevice - } { - setcharwidth - } ifelse 0 0 moveto width 0 lineto width height lineto 0 height lineto closepath clip newpath gsave proc grestore end end - } def FontDict /key get currentdict definefont end -} bind def /patpath { - dup type /dicttype eq { - begin unpagectm - } { - exch begin unpagectm concat - } ifelse currentdict setfont FontDict begin FontMatrix concat width 0 dtransform round width div exch round width div exch 0 height dtransform round height div exch round height div exch 0 0 transform round exch round exch ptm astore setmatrix -errordict begin /*undefinedresult /undefinedresult load def /undefinedresult { - pop 43 - } bind def end 42 pathbbox errordict begin /undefinedresult /*undefinedresult load def end dup 43 ne { - 5 -1 roll - } if 42 eq { - height div ceiling height mul 4 1 roll width div ceiling width mul 4 1 roll height div floor height mul 4 1 roll width div floor width mul 4 1 roll 2 index sub height div ceiling cvi exch 3 index sub width div ceiling cvi exch 4 2 roll moveto -FontMatrix ptm invertmatrix pop { - gsave ptm concat dup str length idiv { - str show - } repeat dup str length mod str exch 0 exch getinterval show grestore 0 height rmoveto - } repeat pop - } { - pop - } ifelse end end -} bind def /patfil { - gsave clip patpath grestore newpath -} bind def /trpatfil { - patfil -} bind def /oppatfil { - gsave 1 setgray 1 setalpha fill grestore patfil -} bind def /trpateofil { - pateofil -} bind def /oppateofil { - gsave 1 setgray 1 setalpha fill grestore pateofil -} bind def /pateofil { - gsave eoclip patpath grestore newpath -} bind def /patstrk { - gsave strokepath clip patpath grestore newpath -} bind def /trpatstrk { - patstrk -} bind def /oppatstrk { - gsave 1 setgray 1 setalpha stroke grestore patstrk -} bind def /patashow { - (0) exch { - 2 copy 0 exch put pop dup false charpath currentpoint 5 index type /dicttype eq { - 5 index patfil - } { - 6 index 6 index patfil - } ifelse moveto 3 copy pop rmoveto - } forall pop pop pop dup type /dicttype ne { - pop - } if pop -} bind def /patshow { - 0 exch 0 exch patashow -} bind def /rpatfil { - gsave setalpha pop setrgbcolor rpath tpatstr cvs cvn invpats { - piddict exch get - } { - ipiddict exch get - } ifelse findfont oppatfil grestore -} bind def /tpatstr 10 string def /getpat { - tpatstr cvs cvn invpats { - piddict exch get - } { - ipiddict exch get - } ifelse -} bind def end -TopDrawDict begin 8 8 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 8 2 rectfill -} bind /hline1 true defpat pop 16 16 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 16 8 rectfill -} bind /hline2 true defpat pop 32 32 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 32 16 rectfill -} bind /hline3 true defpat pop 8 8 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 2 8 rectfill -} bind /vline1 true defpat pop 16 16 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 8 16 rectfill -} bind /vline2 true defpat pop 32 32 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 16 32 rectfill -} bind /vline3 true defpat pop 15 15 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 1 setlinewidth stroke -} bind /rdline1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 2 scale 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 3 setlinewidth stroke -} bind /rdline2 true defpat pop 60 60 [ 300 72 div 0 0 300 72 div 0 0 ] { - 4 4 scale 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 4 setlinewidth stroke -} bind /rdline3 true defpat pop 15 15 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 1 setlinewidth stroke -} bind /ldline1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 2 scale 2 setlinecap 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 3 setlinewidth stroke -} bind /ldline2 true defpat pop 60 60 [ 300 72 div 0 0 300 72 div 0 0 ] { - 4 4 scale 2 setlinecap 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 4 setlinewidth stroke -} bind /ldline3 true defpat pop 7 7 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 4 0 moveto 4 7 lineto 0 4 moveto 7 4 lineto 0.5 setlinewidth stroke -} bind /gray1 true defpat pop 11 11 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 6 0 moveto 6 11 lineto 0 6 moveto 11 6 lineto 0.5 setlinewidth stroke -} bind /gray2 true defpat pop 15 15 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 8 0 moveto 8 15 lineto 0 8 moveto 15 8 lineto 0.5 setlinewidth stroke -} bind /gray3 true defpat pop 19 19 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 10 0 moveto 10 19 lineto 0 10 moveto 19 10 lineto 0.5 setlinewidth stroke -} bind /gray4 true defpat pop 23 23 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 12 0 moveto 12 23 lineto 0 12 moveto 23 12 lineto 0.5 setlinewidth stroke -} bind /gray5 true defpat pop 31 31 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 16 0 moveto 16 31 lineto 0 16 moveto 31 16 lineto 0.5 setlinewidth stroke -} bind /gray6 true defpat pop 20 20 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 10 0 moveto 20 10 lineto 0 10 moveto 10 20 lineto 10 0 moveto 0 10 lineto 20 10 moveto 10 20 lineto 0.25 setlinewidth stroke -} bind /xhatch1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 2 scale 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 0.5 setlinewidth stroke -} bind /xhatch2 true defpat pop 60 60 [ 300 72 div 0 0 300 72 div 0 0 ] { - 4 4 scale 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 2 setlinewidth stroke -} bind /xhatch3 true defpat pop 20 20 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 10 10 4 0 360 arc closepath fill -} bind /dots1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 15 15 8 0 360 arc closepath fill -} bind /dots2 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 25 25 20 0 360 arc closepath fill -} bind /dots3 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 0 26 moveto 50 0 rlineto 0 1 moveto 50 0 rlineto 26 50 moveto 0 -25 rlineto 1 25 moveto 0 -25 rlineto 1 setlinewidth stroke -} bind /bricks true defpat pop 25 25 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0.5 0.5 scale 0 0 25 25 rectfill 25 25 25 25 rectfill -} bind /check1 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 25 25 rectfill 25 25 25 25 rectfill -} bind /check2 true defpat pop 80 80 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 40 40 rectfill 40 40 40 40 rectfill -} bind /check3 true defpat pop 20 20 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 10 0 moveto 20 10 lineto 10 20 lineto 0 10 lineto closepath fill -} bind /diamond1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 15 0 moveto 30 15 lineto 15 30 lineto 0 15 lineto closepath fill -} bind /diamond2 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 25 0 moveto 50 25 lineto 25 50 lineto 0 25 lineto closepath fill -} bind /diamond3 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 10 10 30 30 rectfill 0 0 moveto 50 50 lineto 0 50 moveto 50 0 lineto 1 setlinewidth stroke -} bind /weave true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 25 25 22 0 360 arc closepath 1 setlinewidth stroke -} bind /donut true defpat pop 100 100 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap -20 0 moveto 25 25 rlineto -25 25 rlineto 25 25 rlineto -25 25 rlineto 5 0 moveto 25 25 rlineto -25 25 rlineto 25 25 rlineto -25 25 rlineto 30 0 moveto 25 25 rlineto -25 25 rlineto 25 25 rlineto -25 25 rlineto 55 0 moveto 25 25 rlineto --25 25 rlineto 25 25 rlineto -25 25 rlineto 80 0 moveto 25 25 rlineto -25 25 rlineto 25 25 rlineto -25 25 rlineto 1 setlinewidth stroke -} bind /ziggy true defpat pop 100 100 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 0 -20 moveto 25 25 rlineto 25 -25 rlineto 25 25 rlineto 25 -25 rlineto 0 5 moveto 25 25 rlineto 25 -25 rlineto 25 25 rlineto 25 -25 rlineto 0 30 moveto 25 25 rlineto 25 -25 rlineto 25 25 rlineto 25 -25 rlineto 0 55 moveto 25 25 rlineto 25 --25 rlineto 25 25 rlineto 25 -25 rlineto 0 80 moveto 25 25 rlineto 25 -25 rlineto 25 25 rlineto 25 -25 rlineto 1 setlinewidth stroke -} bind /zaggy true defpat pop 80 80 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 0 0 moveto 0 40 lineto 40 40 lineto 40 80 lineto 80 80 lineto 0 60 moveto 20 60 lineto 20 80 lineto 20 0 moveto 20 20 lineto 60 20 lineto 60 60 lineto 80 60 lineto 1 setlinewidth stroke -} bind /zaggyd true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 0 12.5 moveto 6.25 0 rlineto 0 37.5 moveto 31.25 0 rlineto 50 12.5 moveto -31.25 0 rlineto 50 37.5 moveto -6.25 0 rlineto 12.5 0 moveto 0 6.25 rlineto 37.5 0 moveto 0 31.25 rlineto 12.5 50 moveto 0 -31.25 rlineto 37.5 50 moveto 0 -6.25 -rlineto 1 setlinewidth stroke -} bind /plusses true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 0 10 moveto 10 0 rlineto 0 -10 rlineto 0 40 moveto 10 0 rlineto 0 10 rlineto 50 10 moveto -10 0 rlineto 0 -10 rlineto 50 40 moveto -10 0 rlineto 0 10 rlineto 7 7 moveto 36 0 rlineto 0 36 rlineto -36 0 rlineto closepath 1 setlinewidth -stroke -} bind /boxes true defpat pop 100 100 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 50 50 40 0 360 arc closepath 40 60 moveto 0 8 rlineto 60 60 moveto 0 8 rlineto 50 45 moveto 0 8 rlineto 35 35 moveto 35 21 65 21 65 35 curveto 1 setlinewidth stroke -} bind /smiley true defpat pop /piddict 256 dict def piddict begin /1 /gray3 def /2 /gray2 def /3 /gray1 def /4 /gray6 def /5 /gray5 def /6 /gray4 def /7 /hline3 def /8 /hline2 def /9 /hline1 def /10 /vline3 def /11 /vline2 def /12 /vline1 def /13 -/rdline3 def /14 /rdline2 def /15 /rdline1 def /16 /ldline3 def /17 /ldline2 def /18 /ldline1 def /19 /check3 def /20 /check2 def /21 /check1 def /22 /xhatch3 def /23 /xhatch2 def /24 /xhatch1 def /25 /dots3 def /26 /dots2 def /27 /dots1 def /28 /zaggyd -def /29 /zaggy def /30 /ziggy def /31 /diamond3 def /32 /diamond2 def /33 /diamond1 def /34 /donut def /35 /weave def /36 /bricks def /37 /plusses def /38 /boxes def /39 /smiley def end /invpats true def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 141 203 rectclip --181.144241 -319.90152 translate -181.144241 319.90152 140.756699 201.937836 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 1.61272e-39 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 4 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -/crlinw 4 def -/crfilred 0.818552 def /crfilgrn 0.795618 def /crfilblu 0.618213 def /filinclr true def -1 0 0 1 0 0 sc5mt astore 183 512 137 -24 1 0 0 1.333333 0 -162.666794 sc6mt astore rfill -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 183 512 137 -24 1 0 0 1.333333 0 -162.666794 sc6mt astore rstroke -/txtdraw true def -/txlndraw true def -( ) [0 0] 187 505.965942 /Helvetica [ 14 1 mul 0 0 14 0 0 ] [1 0 0 1 0 0] dotx -/crfilred 0.707221 def /crfilgrn 0.403867 def /crfilblu 0.269311 def /filinclr true def -1 0 0 1 0 0 sc5mt astore 183 357 137 -24 1 0 0 1.458333 0 -163.625 sc6mt astore rfill -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 183 357 137 -24 1 0 0 1.458333 0 -163.625 sc6mt astore rstroke -/crlinw 3 def -/crfilred 0.587634 def /crfilgrn 0.227485 def /crfilblu 0.32696 def /filinclr true def -/filwpat true def -1 0 0 1 0 0 sc5mt astore 229 484 45 -123 1.244444 0 0 0.99187 -61.477783 3.934967 sc6mt astore rfill -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 229 484 45 -123 1.244444 0 0 0.99187 -61.477783 3.934967 sc6mt astore rstroke -/txtdraw true def -/txlndraw true def -( ) [0 0] 257 459.873932 /Helvetica-Bold [ 23 1 mul 0 0 23 0 0 ] [1 0 0 1 -5.5 1] dotx -(Hot ) [16.606003 0 14.052994 0 7.658997 0 0 0] 232.841003 522 /Helvetica-Bold [ 23 1 mul 0 0 23 0 0 ] [1 0 0 1 -1.040497 -26] dotx -/txtdraw true def -/txlndraw true def -(Cold ) [17.328003 0 14.664001 0 6.671997 0 14.664001 0 0 0] 225.335999 308 /Helvetica-Bold [ 24 1 mul 0 0 24 0 0 ] [1 0 0 1 -0.308006 23] dotx -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica -%%+ Helvetica-Bold -%%BoundingBox: 0.000000 0.000000 140.756699 201.937836 diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype42/prob02a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype42/prob02a.gif deleted file mode 100755 index b4bda962b..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype42/prob02a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype42/prob02b.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype42/prob02b.eps deleted file mode 100755 index 7abf3be84..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype42/prob02b.eps +++ /dev/null @@ -1,565 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Tue Jun 14 17:26:40 1994 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 141 202 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /rpath { - newpath moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} bind def /rfpath { - /rad3 exch def /hh3 exch def /ww3 exch def /yy1 exch def /xx1 exch def /xx2 xx1 ww3 add def /yy2 yy1 hh3 add def newpath xx1 yy1 rad3 hh3 0 gt { - add - } { - sub - } ifelse moveto xx1 yy1 xx2 yy1 rad3 arcto 4 { - pop - } repeat xx2 yy1 xx2 yy2 rad3 arcto 4 { - pop - } repeat xx2 yy2 xx1 yy2 rad3 arcto 4 { - pop - } repeat xx1 yy2 xx1 yy1 rad3 arcto 4 { - pop - } repeat closepath -} bind def /rfill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - 4 2 roll rpath crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - rectfill pop - } ifelse grestore -} bind def /rstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse 4 2 roll rpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /rffill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse rfpath filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /rfstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse rfpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /mkrpath { - dodrawctm rpath unpagectm -} bind def end -TopDrawDict begin /defpat { - 7 dict begin /FontDict 9 dict def FontDict begin /cache exch def /key exch def /proc exch cvx def /mtx exch matrix invertmatrix def /height exch def /width exch def /ctm matrix currentmatrix def /ptm matrix identmatrix def /str -(12345678901234567890123456789012) def end /FontBBox [ 0 0 FontDict /width get FontDict /height get ] def /FontMatrix FontDict /mtx get def /Encoding StandardEncoding def /FontType 3 def /BuildChar { - pop begin FontDict begin width 0 cache { - 0 0 width height setcachedevice - } { - setcharwidth - } ifelse 0 0 moveto width 0 lineto width height lineto 0 height lineto closepath clip newpath gsave proc grestore end end - } def FontDict /key get currentdict definefont end -} bind def /patpath { - dup type /dicttype eq { - begin unpagectm - } { - exch begin unpagectm concat - } ifelse currentdict setfont FontDict begin FontMatrix concat width 0 dtransform round width div exch round width div exch 0 height dtransform round height div exch round height div exch 0 0 transform round exch round exch ptm astore setmatrix -errordict begin /*undefinedresult /undefinedresult load def /undefinedresult { - pop 43 - } bind def end 42 pathbbox errordict begin /undefinedresult /*undefinedresult load def end dup 43 ne { - 5 -1 roll - } if 42 eq { - height div ceiling height mul 4 1 roll width div ceiling width mul 4 1 roll height div floor height mul 4 1 roll width div floor width mul 4 1 roll 2 index sub height div ceiling cvi exch 3 index sub width div ceiling cvi exch 4 2 roll moveto -FontMatrix ptm invertmatrix pop { - gsave ptm concat dup str length idiv { - str show - } repeat dup str length mod str exch 0 exch getinterval show grestore 0 height rmoveto - } repeat pop - } { - pop - } ifelse end end -} bind def /patfil { - gsave clip patpath grestore newpath -} bind def /trpatfil { - patfil -} bind def /oppatfil { - gsave 1 setgray 1 setalpha fill grestore patfil -} bind def /trpateofil { - pateofil -} bind def /oppateofil { - gsave 1 setgray 1 setalpha fill grestore pateofil -} bind def /pateofil { - gsave eoclip patpath grestore newpath -} bind def /patstrk { - gsave strokepath clip patpath grestore newpath -} bind def /trpatstrk { - patstrk -} bind def /oppatstrk { - gsave 1 setgray 1 setalpha stroke grestore patstrk -} bind def /patashow { - (0) exch { - 2 copy 0 exch put pop dup false charpath currentpoint 5 index type /dicttype eq { - 5 index patfil - } { - 6 index 6 index patfil - } ifelse moveto 3 copy pop rmoveto - } forall pop pop pop dup type /dicttype ne { - pop - } if pop -} bind def /patshow { - 0 exch 0 exch patashow -} bind def /rpatfil { - gsave setalpha pop setrgbcolor rpath tpatstr cvs cvn invpats { - piddict exch get - } { - ipiddict exch get - } ifelse findfont oppatfil grestore -} bind def /tpatstr 10 string def /getpat { - tpatstr cvs cvn invpats { - piddict exch get - } { - ipiddict exch get - } ifelse -} bind def end -TopDrawDict begin 8 8 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 8 2 rectfill -} bind /hline1 true defpat pop 16 16 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 16 8 rectfill -} bind /hline2 true defpat pop 32 32 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 32 16 rectfill -} bind /hline3 true defpat pop 8 8 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 2 8 rectfill -} bind /vline1 true defpat pop 16 16 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 8 16 rectfill -} bind /vline2 true defpat pop 32 32 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 16 32 rectfill -} bind /vline3 true defpat pop 15 15 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 1 setlinewidth stroke -} bind /rdline1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 2 scale 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 3 setlinewidth stroke -} bind /rdline2 true defpat pop 60 60 [ 300 72 div 0 0 300 72 div 0 0 ] { - 4 4 scale 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 4 setlinewidth stroke -} bind /rdline3 true defpat pop 15 15 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 1 setlinewidth stroke -} bind /ldline1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 2 scale 2 setlinecap 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 3 setlinewidth stroke -} bind /ldline2 true defpat pop 60 60 [ 300 72 div 0 0 300 72 div 0 0 ] { - 4 4 scale 2 setlinecap 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 4 setlinewidth stroke -} bind /ldline3 true defpat pop 7 7 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 4 0 moveto 4 7 lineto 0 4 moveto 7 4 lineto 0.5 setlinewidth stroke -} bind /gray1 true defpat pop 11 11 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 6 0 moveto 6 11 lineto 0 6 moveto 11 6 lineto 0.5 setlinewidth stroke -} bind /gray2 true defpat pop 15 15 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 8 0 moveto 8 15 lineto 0 8 moveto 15 8 lineto 0.5 setlinewidth stroke -} bind /gray3 true defpat pop 19 19 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 10 0 moveto 10 19 lineto 0 10 moveto 19 10 lineto 0.5 setlinewidth stroke -} bind /gray4 true defpat pop 23 23 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 12 0 moveto 12 23 lineto 0 12 moveto 23 12 lineto 0.5 setlinewidth stroke -} bind /gray5 true defpat pop 31 31 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 16 0 moveto 16 31 lineto 0 16 moveto 31 16 lineto 0.5 setlinewidth stroke -} bind /gray6 true defpat pop 20 20 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 10 0 moveto 20 10 lineto 0 10 moveto 10 20 lineto 10 0 moveto 0 10 lineto 20 10 moveto 10 20 lineto 0.25 setlinewidth stroke -} bind /xhatch1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 2 scale 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 0.5 setlinewidth stroke -} bind /xhatch2 true defpat pop 60 60 [ 300 72 div 0 0 300 72 div 0 0 ] { - 4 4 scale 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 2 setlinewidth stroke -} bind /xhatch3 true defpat pop 20 20 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 10 10 4 0 360 arc closepath fill -} bind /dots1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 15 15 8 0 360 arc closepath fill -} bind /dots2 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 25 25 20 0 360 arc closepath fill -} bind /dots3 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 0 26 moveto 50 0 rlineto 0 1 moveto 50 0 rlineto 26 50 moveto 0 -25 rlineto 1 25 moveto 0 -25 rlineto 1 setlinewidth stroke -} bind /bricks true defpat pop 25 25 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0.5 0.5 scale 0 0 25 25 rectfill 25 25 25 25 rectfill -} bind /check1 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 25 25 rectfill 25 25 25 25 rectfill -} bind /check2 true defpat pop 80 80 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 40 40 rectfill 40 40 40 40 rectfill -} bind /check3 true defpat pop 20 20 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 10 0 moveto 20 10 lineto 10 20 lineto 0 10 lineto closepath fill -} bind /diamond1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 15 0 moveto 30 15 lineto 15 30 lineto 0 15 lineto closepath fill -} bind /diamond2 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 25 0 moveto 50 25 lineto 25 50 lineto 0 25 lineto closepath fill -} bind /diamond3 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 10 10 30 30 rectfill 0 0 moveto 50 50 lineto 0 50 moveto 50 0 lineto 1 setlinewidth stroke -} bind /weave true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 25 25 22 0 360 arc closepath 1 setlinewidth stroke -} bind /donut true defpat pop 100 100 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap -20 0 moveto 25 25 rlineto -25 25 rlineto 25 25 rlineto -25 25 rlineto 5 0 moveto 25 25 rlineto -25 25 rlineto 25 25 rlineto -25 25 rlineto 30 0 moveto 25 25 rlineto -25 25 rlineto 25 25 rlineto -25 25 rlineto 55 0 moveto 25 25 rlineto --25 25 rlineto 25 25 rlineto -25 25 rlineto 80 0 moveto 25 25 rlineto -25 25 rlineto 25 25 rlineto -25 25 rlineto 1 setlinewidth stroke -} bind /ziggy true defpat pop 100 100 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 0 -20 moveto 25 25 rlineto 25 -25 rlineto 25 25 rlineto 25 -25 rlineto 0 5 moveto 25 25 rlineto 25 -25 rlineto 25 25 rlineto 25 -25 rlineto 0 30 moveto 25 25 rlineto 25 -25 rlineto 25 25 rlineto 25 -25 rlineto 0 55 moveto 25 25 rlineto 25 --25 rlineto 25 25 rlineto 25 -25 rlineto 0 80 moveto 25 25 rlineto 25 -25 rlineto 25 25 rlineto 25 -25 rlineto 1 setlinewidth stroke -} bind /zaggy true defpat pop 80 80 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 0 0 moveto 0 40 lineto 40 40 lineto 40 80 lineto 80 80 lineto 0 60 moveto 20 60 lineto 20 80 lineto 20 0 moveto 20 20 lineto 60 20 lineto 60 60 lineto 80 60 lineto 1 setlinewidth stroke -} bind /zaggyd true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 0 12.5 moveto 6.25 0 rlineto 0 37.5 moveto 31.25 0 rlineto 50 12.5 moveto -31.25 0 rlineto 50 37.5 moveto -6.25 0 rlineto 12.5 0 moveto 0 6.25 rlineto 37.5 0 moveto 0 31.25 rlineto 12.5 50 moveto 0 -31.25 rlineto 37.5 50 moveto 0 -6.25 -rlineto 1 setlinewidth stroke -} bind /plusses true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 0 10 moveto 10 0 rlineto 0 -10 rlineto 0 40 moveto 10 0 rlineto 0 10 rlineto 50 10 moveto -10 0 rlineto 0 -10 rlineto 50 40 moveto -10 0 rlineto 0 10 rlineto 7 7 moveto 36 0 rlineto 0 36 rlineto -36 0 rlineto closepath 1 setlinewidth -stroke -} bind /boxes true defpat pop 100 100 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 50 50 40 0 360 arc closepath 40 60 moveto 0 8 rlineto 60 60 moveto 0 8 rlineto 50 45 moveto 0 8 rlineto 35 35 moveto 35 21 65 21 65 35 curveto 1 setlinewidth stroke -} bind /smiley true defpat pop /piddict 256 dict def piddict begin /1 /gray3 def /2 /gray2 def /3 /gray1 def /4 /gray6 def /5 /gray5 def /6 /gray4 def /7 /hline3 def /8 /hline2 def /9 /hline1 def /10 /vline3 def /11 /vline2 def /12 /vline1 def /13 -/rdline3 def /14 /rdline2 def /15 /rdline1 def /16 /ldline3 def /17 /ldline2 def /18 /ldline1 def /19 /check3 def /20 /check2 def /21 /check1 def /22 /xhatch3 def /23 /xhatch2 def /24 /xhatch1 def /25 /dots3 def /26 /dots2 def /27 /dots1 def /28 /zaggyd -def /29 /zaggy def /30 /ziggy def /31 /diamond3 def /32 /diamond2 def /33 /diamond1 def /34 /donut def /35 /weave def /36 /bricks def /37 /plusses def /38 /boxes def /39 /smiley def end /invpats true def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 141 202 rectclip --397 -320 translate -397 320 141 202 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 2 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 0.587634 def /crfilgrn 0.227485 def /crfilblu 0.32696 def /filinclr true def -/filwpat true def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 10 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -/crlinw 4 def -/crfilred 0.818552 def /crfilgrn 0.795618 def /crfilblu 0.618213 def /filinclr true def -/filwpat false def -1 0 0 1 0 0 sc5mt astore 183 512 137 -24 1 0 0 1.333333 216 -162.666794 sc6mt astore rfill -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 183 512 137 -24 1 0 0 1.333333 216 -162.666794 sc6mt astore rstroke -/crfilred 0.707221 def /crfilgrn 0.403867 def /crfilblu 0.269311 def /filinclr true def -1 0 0 1 0 0 sc5mt astore 183 357 137 -24 1 0 0 1.458333 216 -163.625 sc6mt astore rfill -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 183 357 137 -24 1 0 0 1.458333 216 -163.625 sc6mt astore rstroke -/txtdraw true def -/txlndraw true def -(Hot ) [16.606003 0 14.052994 0 7.658997 0 0 0] 232.841003 522 /Helvetica-Bold [ 23 1 mul 0 0 23 0 0 ] [1 0 0 1 212.959503 -26] dotx -/txtdraw true def -/txlndraw true def -(Cold ) [17.328003 0 14.664001 0 6.671997 0 14.664001 0 0 0] 225.335999 308 /Helvetica-Bold [ 24 1 mul 0 0 24 0 0 ] [1 0 0 1 213.692001 23] dotx -/crlinw 2 def -/crfilred 0.587634 def /crfilgrn 0.227485 def /crfilblu 0.32696 def /filinclr true def -/filwpat true def -1 0 0 1 0 0 sc5mt astore 229 484 45 -123 0.866667 0 0 0.219512 247.533325 377.756104 sc6mt astore rfill -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 229 484 45 -123 0.866667 0 0 0.219512 247.533325 377.756104 sc6mt astore rstroke -12 getpat /crfilpat exch def -1 0 0 1 0 0 sc5mt astore 229 484 45 -123 0.866667 0 0 0.764228 247.533325 85.113785 sc6mt astore rfill -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 229 484 45 -123 0.866667 0 0 0.764228 247.533325 85.113785 sc6mt astore rstroke -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold -%%BoundingBox: 0.000000 0.000000 141.000000 202.000000 diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype42/prob02b.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype42/prob02b.gif deleted file mode 100755 index 71f1da896..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype42/prob02b.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype42/prob03a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype42/prob03a.eps deleted file mode 100755 index 34879babf..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype42/prob03a.eps +++ /dev/null @@ -1,574 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: PvsV.eps -%%CreationDate: 4/9/1996 -%%Pages: 0 -%%DocumentFonts: Helvetica-Oblique -%%+ Helvetica -%%BoundingBox:127 419 454 672 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Helvetica-Oblique Helvetica-Oblique -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica-Oblique/Helvetica-Oblique 0 Z -%%EndEncoding -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica/Helvetica 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -2703.5 2321.5 m -2703.5 5915.5 L -35 slw 0 sg str -gr -gs -2703.5 5915.5 m -7703.5 5915.5 L -35 slw 0 sg str -gr -gs -3484 3571 3547 3806 3421 3806 2 P -0 sg fill -gr -gs -3484.5 5134.5 m -3484.5 5034.5 L -35 slw 0 sg str -gr -gs -3484.5 4926.5 m -3484.5 4826.5 L -35 slw 0 sg str -gr -gs -3484.5 4717.5 m -3484.5 4617.5 L -35 slw 0 sg str -gr -gs -3484.5 4509.5 m -3484.5 4409.5 L -35 slw 0 sg str -gr -gs -3484.5 4301.5 m -3484.5 4201.5 L -35 slw 0 sg str -gr -gs -3484.5 4092.5 m -3484.5 3992.5 L -35 slw 0 sg str -gr -gs -3484.5 3884.5 m -3484.5 3806.5 L -35 slw 0 sg str -gr -gs -5359 3102 5124 3165 5124 3039 2 P -0 sg fill -gr -gs -3484.5 3102.5 m -3584.5 3102.5 L -35 slw 0 sg str -gr -gs -3692.5 3102.5 m -3792.5 3102.5 L -35 slw 0 sg str -gr -gs -3901.5 3102.5 m -4001.5 3102.5 L -35 slw 0 sg str -gr -gs -4109.5 3102.5 m -4209.5 3102.5 L -35 slw 0 sg str -gr -gs -4317.5 3102.5 m -4417.5 3102.5 L -35 slw 0 sg str -gr -gs -4526.5 3102.5 m -4626.5 3102.5 L -35 slw 0 sg str -gr -gs -4734.5 3102.5 m -4834.5 3102.5 L -35 slw 0 sg str -gr -gs -4942.5 3102.5 m -5042.5 3102.5 L -35 slw 0 sg str -gr -gs -7234 4508 7297 4743 7171 4743 2 P -0 sg fill -gr -gs -7234.5 4743.5 m -7234.5 5134.5 L -35 slw 0 sg str -gr -gs -5359 5134 5124 5197 5124 5071 2 P -0 sg fill -gr -gs -5124.5 5134.5 m -3484.5 5134.5 L -35 slw 0 sg str -gr -gs -3484 5134 3637 4851 3786 4594 3930 4362 4069 4154 4204 3971 4333 3813 4458 3680 -4577 3571 4692 3488 4802 3429 4907 3395 5007 3385 5102 3401 5192 3441 5278 3507 -5359 3597 5439 3691 5525 3768 5615 3829 5710 3873 5810 3901 5915 3911 6025 3905 -6140 3883 6259 3843 6384 3788 6513 3715 6648 3626 6787 3520 6931 3397 7080 3258 -7234 3102 32 P -1 sg fill -gr -gs -3467 5117 3620 4834 3769 4577 3913 4345 4052 4137 4187 3954 4316 3796 4441 3663 -4560 3554 4675 3471 4785 3412 4890 3378 4990 3368 5085 3384 5175 3424 5261 3490 -5342 3580 5422 3674 5508 3751 5598 3812 5693 3856 5793 3884 5898 3894 6008 3888 -6123 3866 6242 3826 6367 3771 6496 3698 6631 3609 6770 3503 6914 3380 7063 3241 -7217 3085 32 P -35 slw 0 sg str -gr -gs -5359.5 5134.5 m -7234.5 5134.5 L -35 slw 0 sg str -gr -gs -7234.5 4508.5 m -7234.5 3102.5 L -35 slw 0 sg str -gr -gs -3484.5 3571.5 m -3484.5 3471.5 L -35 slw 0 sg str -gr -gs -3484.5 3363.5 m -3484.5 3263.5 L -35 slw 0 sg str -gr -gs -3484.5 3154.5 m -3484.5 3102.5 L -35 slw 0 sg str -gr -gs -5359.5 3102.5 m -5459.5 3102.5 L -35 slw 0 sg str -gr -gs -5567.5 3102.5 m -5667.5 3102.5 L -35 slw 0 sg str -gr -gs -5776.5 3102.5 m -5876.5 3102.5 L -35 slw 0 sg str -gr -gs -5984.5 3102.5 m -6084.5 3102.5 L -35 slw 0 sg str -gr -gs -6192.5 3102.5 m -6292.5 3102.5 L -35 slw 0 sg str -gr -gs -6401.5 3102.5 m -6501.5 3102.5 L -35 slw 0 sg str -gr -gs -6609.5 3102.5 m -6709.5 3102.5 L -35 slw 0 sg str -gr -gs -6817.5 3102.5 m -6917.5 3102.5 L -35 slw 0 sg str -gr -gs -7026.5 3102.5 m -7126.5 3102.5 L -35 slw 0 sg str -gr -gs -7234.5 3102.5 m -dot -35 slw 0 sg str -gr -gs -5848 3903 6083 3840 6083 3966 2 P -0 sg fill -gr -gs -6083.625 3903.625 m -6004.625 3903.625 L -1.25 slw 0 sg str -gr -gs -3744 4657 3786 4418 3900 4471 2 P -0 sg fill -gr -gs -3843.625 4444.625 m -3810.625 4516.625 L -1.25 slw 0 sg str -gr -gs -3256 5079 3360 5461 R -1 sg fill -gr -/_Helvetica-Oblique ff [312 0 0 -312 0 0] mf sf -3256 5391 m 0 sg (i) show -gs -3163 2853 3337 3235 R -1 sg fill -gr -3163 3165 m 3.12 slw 0 sg (a) show -gs -7341 2892 7480 3274 R -1 sg fill -gr -7341 3204 m 3.12 slw 0 sg (f) show -gs -7351 5053 7525 5435 R -1 sg fill -gr -7351 5365 m 3.12 slw 0 sg (b) show -gs -2264 2150 2472 2532 R -1 sg fill -gr -/_Helvetica ff [312 0 0 -312 0 0] mf sf -2264 2462 m 0 sg (P) show -gs -7565 6015 7808 6398 R -1 sg fill -gr -7565 6327 m 3.12 slw 0 sg (V) show -gs -2438 5787 2647 6169 R -1 sg fill -gr -2438 6099 m 3.12 slw 0 sg (0) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype42/prob03a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype42/prob03a.gif deleted file mode 100755 index 53203154d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype42/prob03a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype43/prob01a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype43/prob01a.eps deleted file mode 100755 index 9414242d5..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype43/prob01a.eps +++ /dev/null @@ -1,3535 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 67 67 581 365 -%%Creator: Igor -%%Title: Layout0 -%%Creation Date: Wed, Apr 24, 1996 08:16 -%%DocumentFonts: (atend) -%%EndComments -0 432 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -72.00 72.00 576.00 360.00 EraseRect -AnObj restore -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -72 72 translate -1.00 ps -62.50 14.00 62.50 242.00 MacLine -489.50 14.00 489.50 242.00 MacLine -1 ps -gsave 0.25 ps [1] sd -69.50 29.12 482.50 29.12 MacLine -grestore -1.00 ps -489.50 28.75 482.50 28.75 MacLine -62.50 28.75 69.50 28.75 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(14) 41.25 33.62 17.75 WS -gsave 0.25 ps [1] sd -69.50 59.62 482.50 59.62 MacLine -grestore -1.00 ps -489.50 59.25 482.50 59.25 MacLine -62.50 59.25 69.50 59.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 41.25 64.12 17.75 WS -gsave 0.25 ps [1] sd -69.50 90.25 482.50 90.25 MacLine -grestore -1.00 ps -489.50 89.88 482.50 89.88 MacLine -62.50 89.88 69.50 89.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 41.25 94.75 17.75 WS -gsave 0.25 ps [1] sd -69.50 120.75 482.50 120.75 MacLine -grestore -1.00 ps -489.50 120.38 482.50 120.38 MacLine -62.50 120.38 69.50 120.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 50.12 125.25 8.88 WS -gsave 0.25 ps [1] sd -69.50 151.25 482.50 151.25 MacLine -grestore -1.00 ps -489.50 150.88 482.50 150.88 MacLine -62.50 150.88 69.50 150.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 50.12 155.75 8.88 WS -gsave 0.25 ps [1] sd -69.50 181.75 482.50 181.75 MacLine -grestore -1.00 ps -489.50 181.38 482.50 181.38 MacLine -62.50 181.38 69.50 181.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 50.12 186.25 8.88 WS -gsave 0.25 ps [1] sd -69.50 212.38 482.50 212.38 MacLine -grestore -1.00 ps -489.50 212.00 482.50 212.00 MacLine -62.50 212.00 69.50 212.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 50.12 216.88 8.88 WS -1.00 ps -489.50 242.50 482.50 242.50 MacLine -62.50 242.50 69.50 242.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 50.12 247.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 17.00 218.00 translate -90 rotate -(# of particles x 10) 0.00 0.00 125.50 WS -grestore -11.25 (_Helvetica) 0 F -gsave 8.62 92.50 translate -90 rotate -(20) 0.00 0.00 12.50 WS -grestore -16.00 (_Helvetica) 0 F -gsave 17.00 80.00 translate -90 rotate -( \(s/m\)) 0.00 0.00 41.12 WS -grestore -1.00 ps -62.50 242.50 489.50 242.50 MacLine -62.50 13.50 489.50 13.50 MacLine -1 ps -gsave 0.25 ps [1] sd -461.62 235.50 461.62 20.50 MacLine -grestore -1.00 ps -461.25 13.50 461.25 20.50 MacLine -461.25 242.50 461.25 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1400) 444.00 259.88 35.50 WS -gsave 0.25 ps [1] sd -404.75 235.50 404.75 20.50 MacLine -grestore -1.00 ps -404.38 13.50 404.38 20.50 MacLine -404.38 242.50 404.38 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1200) 387.12 259.88 35.50 WS -gsave 0.25 ps [1] sd -347.75 235.50 347.75 20.50 MacLine -grestore -1.00 ps -347.38 13.50 347.38 20.50 MacLine -347.38 242.50 347.38 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1000) 330.12 259.88 35.50 WS -gsave 0.25 ps [1] sd -290.75 235.50 290.75 20.50 MacLine -grestore -1.00 ps -290.38 13.50 290.38 20.50 MacLine -290.38 242.50 290.38 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(800) 277.62 259.88 26.62 WS -gsave 0.25 ps [1] sd -233.75 235.50 233.75 20.50 MacLine -grestore -1.00 ps -233.38 13.50 233.38 20.50 MacLine -233.38 242.50 233.38 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(600) 220.62 259.88 26.62 WS -gsave 0.25 ps [1] sd -176.88 235.50 176.88 20.50 MacLine -grestore -1.00 ps -176.50 13.50 176.50 20.50 MacLine -176.50 242.50 176.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(400) 163.75 259.88 26.62 WS -gsave 0.25 ps [1] sd -119.88 235.50 119.88 20.50 MacLine -grestore -1.00 ps -119.50 13.50 119.50 20.50 MacLine -119.50 242.50 119.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(200) 106.75 259.88 26.62 WS -1.00 ps -62.50 13.50 62.50 20.50 MacLine -62.50 242.50 62.50 235.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 58.62 259.88 8.88 WS -16.00 (_Helvetica) 0 F -(Velocity \(m/s\)) 228.00 284.38 97.00 WS -1.00 ps -newpath 63.00 243.00 M -63.25 243.00 L -63.50 243.00 L -63.75 243.00 L -64.12 242.88 L -64.38 242.88 L -64.62 242.88 L -64.88 242.88 L -65.25 242.88 L -65.50 242.88 L -65.75 242.75 L -66.12 242.75 L -66.38 242.75 L -66.62 242.62 L -66.88 242.62 L -67.25 242.62 L -67.50 242.50 L -67.75 242.50 L -68.12 242.38 L -68.38 242.38 L -68.62 242.25 L -68.88 242.25 L -69.25 242.12 L -69.50 242.00 L -69.75 242.00 L -70.00 241.88 L -70.38 241.75 L -70.62 241.75 L -70.88 241.62 L -71.25 241.50 L -71.50 241.38 L -71.75 241.25 L -72.00 241.25 L -72.38 241.12 L -72.62 241.00 L -72.88 240.88 L -73.25 240.75 L -73.50 240.62 L -73.75 240.50 L -74.00 240.38 L -74.38 240.25 L -74.62 240.12 L -74.88 239.88 L -75.12 239.75 L -75.50 239.62 L -75.75 239.50 L -76.00 239.38 L -76.38 239.12 L -76.62 239.00 L -76.88 238.88 L -77.12 238.62 L -77.50 238.50 L -77.75 238.38 L -78.00 238.12 L -78.38 238.00 L -78.62 237.75 L -78.88 237.62 L -79.12 237.38 L -79.50 237.25 L -79.75 237.00 L -80.00 236.75 L -80.25 236.62 L -80.62 236.38 L -80.88 236.25 L -81.12 236.00 L -81.50 235.75 L -81.75 235.50 L -82.00 235.38 L -82.25 235.12 L -82.62 234.88 L -82.88 234.62 L -83.12 234.38 L -83.50 234.12 L -83.75 233.88 L -84.00 233.75 L -84.25 233.38 L -84.62 233.25 L -84.88 232.88 L -85.12 232.62 L -85.50 232.38 L -85.75 232.12 L -86.00 231.88 L -86.25 231.62 L -86.62 231.38 L -86.88 231.12 L -87.12 230.88 L -87.38 230.50 L -87.75 230.25 L -88.00 230.00 L -88.25 229.62 L -88.62 229.38 L -88.88 229.12 L -89.12 228.75 L -89.38 228.50 L -89.75 228.25 L -90.00 227.88 L -90.25 227.62 L -90.62 227.25 L -90.88 227.00 L -91.12 226.62 L -91.38 226.38 L -91.75 226.00 L -92.00 225.75 L -92.25 225.38 L -92.50 225.00 L -92.88 224.75 L -93.12 224.38 L -93.38 224.00 L -93.75 223.75 L -94.00 223.38 L -94.25 223.00 L -94.50 222.62 L -94.88 222.38 L -95.12 222.00 L -95.38 221.62 L -95.75 221.25 L -96.00 220.88 L -96.25 220.50 L -96.50 220.25 L -96.88 219.88 L -97.12 219.50 L -97.38 219.12 L -97.62 218.75 L -98.00 218.38 L -98.25 218.00 L -98.50 217.62 L -98.88 217.25 L -99.12 216.88 L -99.38 216.50 L -99.62 216.00 L -100.00 215.62 L -100.25 215.25 L -100.50 214.88 L -100.88 214.50 L -101.12 214.12 L -101.38 213.62 L -101.62 213.25 L -102.00 212.88 L -102.25 212.50 L -102.50 212.00 L -102.75 211.62 L -103.12 211.25 L -103.38 210.75 L -103.62 210.38 L -104.00 210.00 L -104.25 209.50 L -104.50 209.12 L -104.75 208.75 L -105.12 208.25 L -105.38 207.88 L -105.62 207.38 L -106.00 207.00 L -106.25 206.62 L -106.50 206.12 L -106.75 205.75 L -107.12 205.25 L -107.38 204.88 L -107.62 204.38 L -108.00 204.00 L -108.25 203.50 L -108.50 203.00 L -108.75 202.62 L -109.12 202.12 L -109.38 201.75 L -109.62 201.25 L -109.88 200.75 L -110.25 200.38 L -110.50 199.88 L -110.75 199.38 L -111.12 199.00 L -111.38 198.50 L -111.62 198.00 L -111.88 197.62 L -112.25 197.12 L -112.50 196.62 L -112.75 196.12 L -113.12 195.75 L -113.38 195.25 L -113.62 194.75 L -113.88 194.38 L -114.25 193.88 L -114.50 193.38 L -114.75 192.88 L -115.00 192.38 L -115.38 192.00 L -115.62 191.50 L -115.88 191.00 L -116.25 190.50 L -116.50 190.00 L -116.75 189.50 L -117.00 189.00 L -117.38 188.62 L -117.62 188.12 L -117.88 187.62 L -118.25 187.12 L -118.50 186.62 L -118.75 186.12 L -119.00 185.62 L -119.38 185.12 L -119.62 184.62 L -119.88 184.25 L -120.12 183.75 L -120.50 183.25 L -120.75 182.75 L -121.00 182.25 L -121.38 181.75 L -121.62 181.25 L -121.88 180.75 L -122.12 180.25 L -122.50 179.75 L -122.75 179.25 L -123.00 178.75 L -123.38 178.25 L -123.62 177.75 L -123.88 177.25 L -124.12 176.75 L -124.50 176.25 L -124.75 175.75 L -125.00 175.25 L -125.38 174.75 L -125.62 174.25 L -125.88 173.75 L -126.12 173.25 L -126.50 172.75 L -126.75 172.25 L -127.00 171.75 L -127.25 171.25 L -127.62 170.75 L -127.88 170.25 L -128.12 169.75 L -128.50 169.25 L -128.75 168.75 L -129.00 168.25 L -129.25 167.75 L -129.62 167.25 L -129.88 166.75 L -130.12 166.25 L -130.50 165.75 L -130.75 165.25 L -131.00 164.75 L -131.25 164.25 L -131.62 163.75 L -131.88 163.25 L -132.12 162.75 L -132.38 162.25 L -132.75 161.75 L -133.00 161.25 L -133.25 160.75 L -133.62 160.25 L -133.88 159.75 L -134.12 159.25 L -134.38 158.75 L -134.75 158.25 L -135.00 157.75 L -135.25 157.25 L -135.62 156.75 L -135.88 156.25 L -136.12 155.75 L -136.38 155.25 L -136.75 154.75 L -137.00 154.38 L -137.25 153.75 L -137.50 153.38 L -137.88 152.88 L -138.12 152.38 L -138.38 151.88 L -138.75 151.38 L -139.00 150.88 L -139.25 150.38 L -139.50 149.88 L -139.88 149.38 L -140.12 149.00 L -140.38 148.50 L -140.75 148.00 L -141.00 147.50 L -141.25 147.00 L -141.50 146.50 L -141.88 146.00 L -142.12 145.62 L -142.38 145.12 L -142.62 144.62 L -143.00 144.12 L -143.25 143.62 L -143.50 143.25 L -143.88 142.75 L -144.12 142.25 L -144.38 141.75 L -144.62 141.38 L -145.00 140.88 L -145.25 140.38 L -145.50 139.88 L -145.88 139.50 L -146.12 139.00 L -146.38 138.50 L -146.62 138.12 L -147.00 137.62 L -147.25 137.12 L -147.50 136.75 L -147.88 136.25 L -148.12 135.75 L -148.38 135.38 L -148.62 134.88 L -149.00 134.38 L -149.25 134.00 L -149.50 133.50 L -149.75 133.12 L -150.12 132.62 L -150.38 132.25 L -150.62 131.75 L -151.00 131.38 L -151.25 130.88 L -151.50 130.50 L -151.75 130.00 L -152.12 129.62 L -152.38 129.12 L -152.62 128.75 L -153.00 128.38 L -153.25 127.88 L -153.50 127.50 L -153.75 127.00 L -154.12 126.62 L -154.38 126.25 L -154.62 125.75 L -154.88 125.38 L -155.25 125.00 L -155.50 124.50 L -155.75 124.12 L -156.12 123.75 L -156.38 123.38 L -156.62 122.88 L -156.88 122.50 L -157.25 122.12 L -157.50 121.75 L -157.75 121.25 L -158.12 120.88 L -158.38 120.50 L -158.62 120.12 L -158.88 119.75 L -159.25 119.38 L -159.50 119.00 L -159.75 118.50 L -160.00 118.12 L -160.38 117.88 L -160.62 117.38 L -160.88 117.00 L -161.25 116.62 L -161.50 116.25 L -161.75 115.88 L -162.00 115.50 L -162.38 115.25 L -162.62 114.88 L -162.88 114.50 L -163.25 114.12 L -163.50 113.75 L -163.75 113.38 L -164.00 113.00 L -164.38 112.62 L -164.62 112.38 L -164.88 112.00 L -165.25 111.62 L -165.50 111.25 L -165.75 111.00 L -166.00 110.62 L -166.38 110.25 L -166.62 110.00 L -166.88 109.62 L -167.12 109.25 L -167.50 109.00 L -167.75 108.62 L -168.00 108.38 L -168.38 108.00 L -168.62 107.62 L -168.88 107.38 L -169.12 107.12 L -169.50 106.75 L -169.75 106.50 L -170.00 106.12 L -170.38 105.88 L -170.62 105.50 L -170.88 105.25 L -171.12 105.00 L -171.50 104.62 L -171.75 104.38 L -172.00 104.12 L -172.25 103.75 L -172.62 103.50 L -172.88 103.25 L -173.12 103.00 L -173.50 102.62 L -173.75 102.38 L -174.00 102.12 L -174.25 101.88 L -174.62 101.62 L -174.88 101.38 L -175.12 101.12 L -175.50 100.75 L -175.75 100.50 L -176.00 100.25 L -176.25 100.00 L -176.62 99.75 L -176.88 99.50 L -mstroke -newpath 176.88 99.50 M -177.12 99.25 L -177.38 99.12 L -177.75 98.88 L -178.00 98.62 L -178.25 98.38 L -178.62 98.12 L -178.88 97.88 L -179.12 97.62 L -179.38 97.50 L -179.75 97.25 L -180.00 97.00 L -180.25 96.75 L -180.62 96.62 L -180.88 96.38 L -181.12 96.12 L -181.38 96.00 L -181.75 95.75 L -182.00 95.50 L -182.25 95.38 L -182.50 95.12 L -182.88 95.00 L -183.12 94.75 L -183.38 94.62 L -183.75 94.38 L -184.00 94.25 L -184.25 94.12 L -184.50 93.88 L -184.88 93.75 L -185.12 93.50 L -185.38 93.38 L -185.75 93.25 L -186.00 93.00 L -186.25 92.88 L -186.50 92.75 L -186.88 92.62 L -187.12 92.38 L -187.38 92.25 L -187.75 92.12 L -188.00 92.00 L -188.25 91.88 L -188.50 91.75 L -188.88 91.62 L -189.12 91.50 L -189.38 91.25 L -189.62 91.12 L -190.00 91.12 L -190.25 90.88 L -190.50 90.75 L -190.88 90.75 L -191.12 90.62 L -191.38 90.50 L -191.62 90.38 L -192.00 90.25 L -192.25 90.12 L -192.50 90.00 L -192.88 90.00 L -193.12 89.88 L -193.38 89.75 L -193.62 89.62 L -194.00 89.62 L -194.25 89.50 L -194.50 89.38 L -194.75 89.38 L -195.12 89.25 L -195.38 89.12 L -195.62 89.12 L -196.00 89.00 L -196.25 89.00 L -196.50 88.88 L -196.75 88.88 L -197.12 88.75 L -197.38 88.75 L -197.62 88.75 L -198.00 88.62 L -198.25 88.62 L -198.50 88.50 L -198.75 88.50 L -199.12 88.50 L -199.38 88.38 L -199.62 88.38 L -199.88 88.38 L -200.25 88.38 L -200.50 88.25 L -200.75 88.25 L -201.12 88.25 L -201.38 88.25 L -201.62 88.25 L -201.88 88.25 L -202.25 88.25 L -202.50 88.25 L -202.75 88.25 L -203.12 88.25 L -203.38 88.25 L -203.62 88.25 L -203.88 88.25 L -204.25 88.25 L -204.50 88.25 L -204.75 88.25 L -205.12 88.25 L -205.38 88.25 L -205.62 88.25 L -205.88 88.25 L -206.25 88.38 L -206.50 88.38 L -206.75 88.38 L -207.00 88.38 L -207.38 88.38 L -207.62 88.50 L -207.88 88.50 L -208.25 88.62 L -208.50 88.62 L -208.75 88.62 L -209.00 88.75 L -209.38 88.75 L -209.62 88.75 L -209.88 88.88 L -210.25 88.88 L -210.50 89.00 L -210.75 89.00 L -211.00 89.12 L -211.38 89.12 L -211.62 89.25 L -211.88 89.38 L -212.12 89.38 L -212.50 89.50 L -212.75 89.50 L -213.00 89.62 L -213.38 89.75 L -213.62 89.75 L -213.88 89.88 L -214.12 90.00 L -214.50 90.12 L -214.75 90.12 L -215.00 90.25 L -215.38 90.38 L -215.62 90.50 L -215.88 90.62 L -216.12 90.75 L -216.50 90.75 L -216.75 90.88 L -217.00 91.00 L -217.25 91.12 L -217.62 91.25 L -217.88 91.38 L -218.12 91.50 L -218.50 91.62 L -218.75 91.75 L -219.00 91.88 L -219.25 92.00 L -219.62 92.12 L -219.88 92.25 L -220.12 92.38 L -220.50 92.50 L -220.75 92.75 L -221.00 92.88 L -221.25 93.00 L -221.62 93.12 L -221.88 93.25 L -222.12 93.38 L -222.38 93.62 L -222.75 93.75 L -223.00 93.88 L -223.25 94.12 L -223.62 94.25 L -223.88 94.38 L -224.12 94.62 L -224.38 94.75 L -224.75 94.88 L -225.00 95.12 L -225.25 95.25 L -225.62 95.38 L -225.88 95.62 L -226.12 95.75 L -226.38 96.00 L -226.75 96.12 L -227.00 96.38 L -227.25 96.50 L -227.62 96.75 L -227.88 96.88 L -228.12 97.12 L -228.38 97.25 L -228.75 97.50 L -229.00 97.75 L -229.25 97.88 L -229.50 98.12 L -229.88 98.25 L -230.12 98.50 L -230.38 98.75 L -230.75 98.88 L -231.00 99.12 L -231.25 99.38 L -231.50 99.50 L -231.88 99.75 L -232.12 100.00 L -232.38 100.12 L -232.75 100.38 L -233.00 100.62 L -233.25 100.88 L -233.50 101.12 L -233.88 101.25 L -234.12 101.50 L -234.38 101.75 L -234.62 102.00 L -235.00 102.25 L -235.25 102.50 L -235.50 102.75 L -235.88 103.00 L -236.12 103.25 L -236.38 103.38 L -236.62 103.62 L -237.00 103.88 L -237.25 104.12 L -237.50 104.38 L -237.88 104.62 L -238.12 104.88 L -238.38 105.12 L -238.62 105.38 L -239.00 105.62 L -239.25 105.88 L -239.50 106.12 L -239.75 106.38 L -240.12 106.62 L -240.38 107.00 L -240.62 107.25 L -241.00 107.50 L -241.25 107.75 L -241.50 108.00 L -241.75 108.25 L -242.12 108.50 L -242.38 108.75 L -242.62 109.12 L -243.00 109.38 L -243.25 109.62 L -243.50 109.88 L -243.75 110.12 L -244.12 110.50 L -244.38 110.75 L -244.62 111.00 L -245.00 111.25 L -245.25 111.62 L -245.50 111.88 L -245.75 112.12 L -246.12 112.38 L -246.38 112.75 L -246.62 113.00 L -246.88 113.25 L -247.25 113.50 L -247.50 113.88 L -247.75 114.12 L -248.12 114.38 L -248.38 114.75 L -248.62 115.00 L -248.88 115.38 L -249.25 115.62 L -249.50 115.88 L -249.75 116.25 L -250.12 116.50 L -250.38 116.75 L -250.62 117.12 L -250.88 117.38 L -251.25 117.75 L -251.50 118.00 L -251.75 118.38 L -252.00 118.62 L -252.38 118.88 L -252.62 119.25 L -252.88 119.50 L -253.25 119.88 L -253.50 120.12 L -253.75 120.50 L -254.00 120.75 L -254.38 121.12 L -254.62 121.38 L -254.88 121.75 L -255.25 122.00 L -255.50 122.38 L -255.75 122.62 L -256.00 123.00 L -256.38 123.25 L -256.62 123.62 L -256.88 123.88 L -257.12 124.25 L -257.50 124.62 L -257.75 124.88 L -258.00 125.25 L -258.38 125.50 L -258.62 125.88 L -258.88 126.12 L -259.12 126.50 L -259.50 126.75 L -259.75 127.12 L -260.00 127.50 L -260.38 127.75 L -260.62 128.12 L -260.88 128.38 L -261.12 128.75 L -261.50 129.12 L -261.75 129.38 L -262.00 129.75 L -262.25 130.12 L -262.62 130.38 L -262.88 130.75 L -263.12 131.00 L -263.50 131.38 L -263.75 131.75 L -264.00 132.00 L -264.25 132.38 L -264.62 132.75 L -264.88 133.00 L -265.12 133.38 L -265.50 133.75 L -265.75 134.00 L -266.00 134.38 L -266.25 134.62 L -266.62 135.00 L -266.88 135.38 L -267.12 135.62 L -267.50 136.00 L -267.75 136.38 L -268.00 136.75 L -268.25 137.00 L -268.62 137.38 L -268.88 137.62 L -269.12 138.00 L -269.38 138.38 L -269.75 138.62 L -270.00 139.00 L -270.25 139.38 L -270.62 139.75 L -270.88 140.00 L -271.12 140.38 L -271.38 140.75 L -271.75 141.00 L -272.00 141.38 L -272.25 141.75 L -272.62 142.00 L -272.88 142.38 L -273.12 142.75 L -273.38 143.12 L -273.75 143.38 L -274.00 143.75 L -274.25 144.12 L -274.50 144.38 L -274.88 144.75 L -275.12 145.12 L -275.38 145.38 L -275.75 145.75 L -276.00 146.12 L -276.25 146.50 L -276.50 146.75 L -276.88 147.12 L -277.12 147.50 L -277.38 147.75 L -277.75 148.12 L -278.00 148.50 L -278.25 148.75 L -278.50 149.12 L -278.88 149.50 L -279.12 149.88 L -279.38 150.12 L -279.62 150.50 L -280.00 150.88 L -280.25 151.12 L -280.50 151.50 L -280.88 151.88 L -281.12 152.12 L -281.38 152.50 L -281.62 152.88 L -282.00 153.12 L -282.25 153.50 L -282.50 153.88 L -282.88 154.12 L -283.12 154.50 L -283.38 154.88 L -283.62 155.25 L -284.00 155.50 L -284.25 155.88 L -284.50 156.12 L -284.88 156.50 L -285.12 156.88 L -285.38 157.12 L -285.62 157.50 L -286.00 157.88 L -286.25 158.12 L -286.50 158.50 L -286.75 158.88 L -287.12 159.12 L -287.38 159.50 L -287.62 159.88 L -288.00 160.12 L -288.25 160.50 L -288.50 160.75 L -288.75 161.12 L -289.12 161.50 L -289.38 161.75 L -289.62 162.12 L -290.00 162.50 L -290.25 162.75 L -290.50 163.12 L -290.75 163.38 L -mstroke -newpath 290.75 163.38 M -291.12 163.75 L -291.38 164.12 L -291.62 164.38 L -291.88 164.75 L -292.25 165.00 L -292.50 165.38 L -292.75 165.75 L -293.12 166.00 L -293.38 166.38 L -293.62 166.62 L -293.88 167.00 L -294.25 167.25 L -294.50 167.62 L -294.75 167.88 L -295.12 168.25 L -295.38 168.62 L -295.62 168.88 L -295.88 169.25 L -296.25 169.50 L -296.50 169.88 L -296.75 170.12 L -297.00 170.50 L -297.38 170.75 L -297.62 171.12 L -297.88 171.38 L -298.25 171.75 L -298.50 172.00 L -298.75 172.38 L -299.00 172.62 L -299.38 173.00 L -299.62 173.25 L -299.88 173.50 L -300.25 173.88 L -300.50 174.25 L -300.75 174.50 L -301.00 174.75 L -301.38 175.12 L -301.62 175.38 L -301.88 175.75 L -302.12 176.00 L -302.50 176.38 L -302.75 176.62 L -303.00 176.88 L -303.38 177.25 L -303.62 177.50 L -303.88 177.88 L -304.12 178.12 L -304.50 178.38 L -304.75 178.75 L -305.00 179.00 L -305.38 179.38 L -305.62 179.62 L -305.88 179.88 L -306.12 180.25 L -306.50 180.50 L -306.75 180.75 L -307.00 181.12 L -307.38 181.38 L -307.62 181.62 L -307.88 182.00 L -308.12 182.25 L -308.50 182.50 L -308.75 182.75 L -309.00 183.12 L -309.25 183.38 L -309.62 183.75 L -309.88 184.00 L -310.12 184.25 L -310.50 184.50 L -310.75 184.88 L -311.00 185.12 L -311.25 185.38 L -311.62 185.62 L -311.88 186.00 L -312.12 186.25 L -312.50 186.50 L -312.75 186.75 L -313.00 187.12 L -313.25 187.38 L -313.62 187.62 L -313.88 187.88 L -314.12 188.12 L -314.38 188.50 L -314.75 188.75 L -315.00 189.00 L -315.25 189.25 L -315.62 189.50 L -315.88 189.75 L -316.12 190.12 L -316.38 190.38 L -316.75 190.62 L -317.00 190.88 L -317.25 191.12 L -317.62 191.38 L -317.88 191.62 L -318.12 191.88 L -318.38 192.12 L -318.75 192.38 L -319.00 192.75 L -319.25 193.00 L -319.50 193.25 L -319.88 193.50 L -320.12 193.75 L -320.38 194.00 L -320.75 194.25 L -321.00 194.50 L -321.25 194.75 L -321.50 195.00 L -321.88 195.25 L -322.12 195.50 L -322.38 195.75 L -322.75 196.00 L -323.00 196.25 L -323.25 196.50 L -323.50 196.75 L -323.88 197.00 L -324.12 197.25 L -324.38 197.50 L -324.75 197.75 L -325.00 198.00 L -325.25 198.25 L -325.50 198.50 L -325.88 198.75 L -326.12 199.00 L -326.38 199.25 L -326.62 199.38 L -327.00 199.62 L -327.25 199.88 L -327.50 200.12 L -327.88 200.38 L -328.12 200.62 L -328.38 200.88 L -328.62 201.12 L -329.00 201.38 L -329.25 201.50 L -329.50 201.75 L -329.88 202.00 L -330.12 202.25 L -330.38 202.50 L -330.62 202.62 L -331.00 202.88 L -331.25 203.12 L -331.50 203.38 L -331.75 203.62 L -332.12 203.75 L -332.38 204.00 L -332.62 204.25 L -333.00 204.50 L -333.25 204.62 L -333.50 204.88 L -333.75 205.12 L -334.12 205.38 L -334.38 205.50 L -334.62 205.75 L -335.00 206.00 L -335.25 206.12 L -335.50 206.38 L -335.75 206.62 L -336.12 206.88 L -336.38 207.00 L -336.62 207.25 L -336.88 207.38 L -337.25 207.62 L -337.50 207.88 L -337.75 208.12 L -338.12 208.25 L -338.38 208.50 L -338.62 208.62 L -338.88 208.88 L -339.25 209.12 L -339.50 209.25 L -339.75 209.50 L -340.12 209.62 L -340.38 209.88 L -340.62 210.00 L -340.88 210.25 L -341.25 210.50 L -341.50 210.62 L -341.75 210.88 L -342.00 211.00 L -342.38 211.25 L -342.62 211.38 L -342.88 211.62 L -343.25 211.88 L -343.50 212.00 L -343.75 212.25 L -344.00 212.38 L -344.38 212.50 L -344.62 212.75 L -344.88 212.88 L -345.25 213.12 L -345.50 213.25 L -345.75 213.50 L -346.00 213.62 L -346.38 213.88 L -346.62 214.00 L -346.88 214.12 L -347.25 214.38 L -347.50 214.50 L -347.75 214.75 L -348.00 214.88 L -348.38 215.12 L -348.62 215.25 L -348.88 215.38 L -349.12 215.62 L -349.50 215.75 L -349.75 215.88 L -350.00 216.12 L -350.38 216.25 L -350.62 216.50 L -350.88 216.62 L -351.12 216.75 L -351.50 217.00 L -351.75 217.12 L -352.00 217.25 L -352.38 217.38 L -352.62 217.62 L -352.88 217.75 L -353.12 217.88 L -353.50 218.12 L -353.75 218.25 L -354.00 218.38 L -354.25 218.62 L -354.62 218.75 L -354.88 218.88 L -355.12 219.00 L -355.50 219.12 L -355.75 219.38 L -356.00 219.50 L -356.25 219.62 L -356.62 219.75 L -356.88 220.00 L -357.12 220.12 L -357.50 220.25 L -357.75 220.38 L -358.00 220.50 L -358.25 220.75 L -358.62 220.88 L -358.88 221.00 L -359.12 221.12 L -359.38 221.25 L -359.75 221.38 L -360.00 221.62 L -360.25 221.75 L -360.62 221.88 L -360.88 222.00 L -361.12 222.12 L -361.38 222.25 L -361.75 222.38 L -362.00 222.50 L -362.25 222.75 L -362.62 222.88 L -362.88 223.00 L -363.12 223.12 L -363.38 223.25 L -363.75 223.38 L -364.00 223.50 L -364.25 223.62 L -364.50 223.75 L -364.88 223.88 L -365.12 224.00 L -365.38 224.12 L -365.75 224.25 L -366.00 224.38 L -366.25 224.50 L -366.50 224.62 L -366.88 224.75 L -367.12 224.88 L -367.38 225.00 L -367.75 225.12 L -368.00 225.25 L -368.25 225.38 L -368.50 225.50 L -368.88 225.62 L -369.12 225.75 L -369.38 225.88 L -369.75 226.00 L -370.00 226.12 L -370.25 226.25 L -370.50 226.38 L -370.88 226.50 L -371.12 226.62 L -371.38 226.75 L -371.62 226.75 L -372.00 227.00 L -372.25 227.00 L -372.50 227.12 L -372.88 227.25 L -373.12 227.38 L -373.38 227.50 L -373.62 227.62 L -374.00 227.75 L -374.25 227.88 L -374.50 227.88 L -374.88 228.00 L -375.12 228.12 L -375.38 228.25 L -375.62 228.38 L -376.00 228.50 L -376.25 228.62 L -376.50 228.62 L -376.75 228.75 L -377.12 228.88 L -377.38 229.00 L -377.62 229.12 L -378.00 229.12 L -378.25 229.25 L -378.50 229.38 L -378.75 229.50 L -379.12 229.62 L -379.38 229.62 L -379.62 229.75 L -380.00 229.88 L -380.25 230.00 L -380.50 230.00 L -380.75 230.12 L -381.12 230.25 L -381.38 230.38 L -381.62 230.38 L -381.88 230.50 L -382.25 230.62 L -382.50 230.75 L -382.75 230.75 L -383.12 230.88 L -383.38 231.00 L -383.62 231.12 L -383.88 231.12 L -384.25 231.25 L -384.50 231.38 L -384.75 231.38 L -385.12 231.50 L -385.38 231.62 L -385.62 231.62 L -385.88 231.75 L -386.25 231.88 L -386.50 232.00 L -386.75 232.00 L -387.12 232.12 L -387.38 232.12 L -387.62 232.25 L -387.88 232.38 L -388.25 232.38 L -388.50 232.50 L -388.75 232.62 L -389.00 232.62 L -389.38 232.75 L -389.62 232.88 L -389.88 232.88 L -390.25 233.00 L -390.50 233.00 L -390.75 233.12 L -391.00 233.25 L -391.38 233.25 L -391.62 233.38 L -391.88 233.38 L -392.25 233.50 L -392.50 233.62 L -392.75 233.62 L -393.00 233.75 L -393.38 233.75 L -393.62 233.88 L -393.88 233.88 L -394.12 234.00 L -394.50 234.12 L -394.75 234.12 L -395.00 234.25 L -395.38 234.25 L -395.62 234.38 L -395.88 234.50 L -396.12 234.50 L -396.50 234.62 L -396.75 234.62 L -397.00 234.75 L -397.38 234.75 L -397.62 234.75 L -397.88 234.88 L -398.12 235.00 L -398.50 235.00 L -398.75 235.12 L -399.00 235.12 L -399.25 235.25 L -399.62 235.25 L -399.88 235.38 L -400.12 235.38 L -400.50 235.50 L -400.75 235.50 L -401.00 235.62 L -401.25 235.62 L -401.62 235.75 L -401.88 235.75 L -402.12 235.75 L -402.50 235.88 L -402.75 235.88 L -403.00 236.00 L -403.25 236.00 L -403.62 236.12 L -403.88 236.12 L -404.12 236.25 L -404.38 236.25 L -404.75 236.38 L -mstroke -newpath 404.75 236.38 M -405.00 236.38 L -405.25 236.38 L -405.62 236.50 L -405.88 236.50 L -406.12 236.62 L -406.38 236.62 L -406.75 236.75 L -407.00 236.75 L -407.25 236.75 L -407.62 236.88 L -407.88 236.88 L -408.12 237.00 L -408.38 237.00 L -408.75 237.00 L -409.00 237.12 L -409.25 237.12 L -409.62 237.12 L -409.88 237.25 L -410.12 237.25 L -410.38 237.38 L -410.75 237.38 L -411.00 237.38 L -411.25 237.50 L -411.50 237.50 L -411.88 237.62 L -412.12 237.62 L -412.38 237.62 L -412.75 237.75 L -413.00 237.75 L -413.25 237.75 L -413.50 237.88 L -413.88 237.88 L -414.12 237.88 L -414.38 238.00 L -414.75 238.00 L -415.00 238.00 L -415.25 238.12 L -415.50 238.12 L -415.88 238.12 L -416.12 238.25 L -416.38 238.25 L -416.62 238.25 L -417.00 238.38 L -417.25 238.38 L -417.50 238.38 L -417.88 238.50 L -418.12 238.50 L -418.38 238.50 L -418.62 238.50 L -419.00 238.62 L -419.25 238.62 L -419.50 238.75 L -419.88 238.75 L -420.12 238.75 L -420.38 238.75 L -420.62 238.88 L -421.00 238.88 L -421.25 238.88 L -421.50 238.88 L -421.75 239.00 L -422.12 239.00 L -422.38 239.00 L -422.62 239.12 L -423.00 239.12 L -423.25 239.12 L -423.50 239.12 L -423.75 239.25 L -424.12 239.25 L -424.38 239.25 L -424.62 239.25 L -425.00 239.38 L -425.25 239.38 L -425.50 239.38 L -425.75 239.50 L -426.12 239.50 L -426.38 239.50 L -426.62 239.50 L -427.00 239.62 L -427.25 239.62 L -427.50 239.62 L -427.75 239.62 L -428.12 239.62 L -428.38 239.75 L -428.62 239.75 L -428.88 239.75 L -429.25 239.75 L -429.50 239.88 L -429.75 239.88 L -430.12 239.88 L -430.38 239.88 L -430.62 240.00 L -430.88 240.00 L -431.25 240.00 L -431.50 240.00 L -431.75 240.00 L -432.12 240.12 L -432.38 240.12 L -432.62 240.12 L -432.88 240.12 L -433.25 240.12 L -433.50 240.25 L -433.75 240.25 L -434.00 240.25 L -434.38 240.25 L -434.62 240.25 L -434.88 240.38 L -435.25 240.38 L -435.50 240.38 L -435.75 240.38 L -436.00 240.38 L -436.38 240.50 L -436.62 240.50 L -436.88 240.50 L -437.25 240.50 L -437.50 240.50 L -437.75 240.50 L -438.00 240.62 L -438.38 240.62 L -438.62 240.62 L -438.88 240.62 L -439.12 240.62 L -439.50 240.62 L -439.75 240.75 L -440.00 240.75 L -440.38 240.75 L -440.62 240.75 L -440.88 240.75 L -441.12 240.88 L -441.50 240.88 L -441.75 240.88 L -442.00 240.88 L -442.38 240.88 L -442.62 240.88 L -442.88 240.88 L -443.12 241.00 L -443.50 241.00 L -443.75 241.00 L -444.00 241.00 L -444.25 241.00 L -444.62 241.00 L -444.88 241.00 L -445.12 241.12 L -445.50 241.12 L -445.75 241.12 L -446.00 241.12 L -446.25 241.12 L -446.62 241.12 L -446.88 241.25 L -447.12 241.25 L -447.50 241.25 L -447.75 241.25 L -448.00 241.25 L -448.25 241.25 L -448.62 241.25 L -448.88 241.25 L -449.12 241.38 L -449.50 241.38 L -449.75 241.38 L -450.00 241.38 L -450.25 241.38 L -450.62 241.38 L -450.88 241.38 L -451.12 241.38 L -451.38 241.38 L -451.75 241.50 L -452.00 241.50 L -452.25 241.50 L -452.62 241.50 L -452.88 241.50 L -453.12 241.50 L -453.38 241.50 L -453.75 241.62 L -454.00 241.62 L -454.25 241.62 L -454.62 241.62 L -454.88 241.62 L -455.12 241.62 L -455.38 241.62 L -455.75 241.62 L -456.00 241.62 L -456.25 241.62 L -456.50 241.75 L -456.88 241.75 L -457.12 241.75 L -457.38 241.75 L -457.75 241.75 L -458.00 241.75 L -458.25 241.75 L -458.50 241.75 L -458.88 241.75 L -459.12 241.75 L -459.38 241.75 L -459.75 241.88 L -460.00 241.88 L -460.25 241.88 L -460.50 241.88 L -460.88 241.88 L -461.12 241.88 L -461.38 241.88 L -461.62 241.88 L -462.00 241.88 L -462.25 241.88 L -462.50 241.88 L -462.88 241.88 L -463.12 241.88 L -463.38 242.00 L -463.62 242.00 L -464.00 242.00 L -464.25 242.00 L -464.50 242.00 L -464.88 242.00 L -465.12 242.00 L -465.38 242.00 L -465.62 242.00 L -466.00 242.00 L -466.25 242.12 L -466.50 242.12 L -466.88 242.12 L -467.12 242.12 L -467.38 242.12 L -467.62 242.12 L -468.00 242.12 L -468.25 242.12 L -468.50 242.12 L -468.75 242.12 L -469.12 242.12 L -469.38 242.12 L -469.62 242.12 L -470.00 242.12 L -470.25 242.12 L -470.50 242.12 L -470.75 242.25 L -471.12 242.25 L -471.38 242.25 L -471.62 242.25 L -472.00 242.25 L -472.25 242.25 L -472.50 242.25 L -472.75 242.25 L -473.12 242.25 L -473.38 242.25 L -473.62 242.25 L -473.88 242.25 L -474.25 242.25 L -474.50 242.25 L -474.75 242.25 L -475.12 242.25 L -475.38 242.25 L -475.62 242.25 L -475.88 242.38 L -476.25 242.38 L -476.50 242.38 L -476.75 242.38 L -477.12 242.38 L -477.38 242.38 L -477.62 242.38 L -477.88 242.38 L -478.25 242.38 L -478.50 242.38 L -478.75 242.38 L -479.00 242.38 L -479.38 242.38 L -479.62 242.38 L -479.88 242.38 L -480.25 242.38 L -480.50 242.38 L -480.75 242.50 L -481.00 242.50 L -481.38 242.50 L -481.62 242.50 L -481.88 242.50 L -482.25 242.50 L -482.50 242.50 L -482.75 242.50 L -483.00 242.50 L -483.38 242.50 L -483.62 242.50 L -483.88 242.50 L -484.12 242.50 L -484.50 242.50 L -484.75 242.50 L -485.00 242.50 L -485.38 242.50 L -485.62 242.50 L -485.88 242.50 L -486.12 242.50 L -486.50 242.50 L -486.75 242.50 L -487.00 242.50 L -487.38 242.50 L -487.62 242.50 L -487.88 242.50 L -488.12 242.50 L -488.50 242.62 L -488.75 242.62 L -489.00 242.62 L -489.38 242.62 L -489.62 242.62 L -489.75 242.62 L -mstroke -[] sd -1 ps -1.00 ps -newpath 63.00 243.00 M -63.25 243.00 L -63.50 243.00 L -63.75 242.88 L -64.12 242.88 L -64.38 242.88 L -64.62 242.75 L -64.88 242.75 L -65.25 242.62 L -65.50 242.62 L -65.75 242.50 L -66.12 242.38 L -66.38 242.25 L -66.62 242.12 L -66.88 242.00 L -67.25 241.88 L -67.50 241.75 L -67.75 241.62 L -68.12 241.38 L -68.38 241.25 L -68.62 241.00 L -68.88 240.88 L -69.25 240.62 L -69.50 240.38 L -69.75 240.12 L -70.00 240.00 L -70.38 239.75 L -70.62 239.50 L -70.88 239.25 L -71.25 238.88 L -71.50 238.62 L -71.75 238.38 L -72.00 238.00 L -72.38 237.75 L -72.62 237.50 L -72.88 237.12 L -73.25 236.75 L -73.50 236.38 L -73.75 236.12 L -74.00 235.75 L -74.38 235.38 L -74.62 235.00 L -74.88 234.62 L -75.12 234.12 L -75.50 233.75 L -75.75 233.38 L -76.00 232.88 L -76.38 232.50 L -76.62 232.00 L -76.88 231.62 L -77.12 231.12 L -77.50 230.62 L -77.75 230.25 L -78.00 229.75 L -78.38 229.25 L -78.62 228.75 L -78.88 228.25 L -79.12 227.62 L -79.50 227.12 L -79.75 226.62 L -80.00 226.12 L -80.25 225.50 L -80.62 225.00 L -80.88 224.38 L -81.12 223.88 L -81.50 223.25 L -81.75 222.75 L -82.00 222.12 L -82.25 221.50 L -82.62 220.88 L -82.88 220.25 L -83.12 219.62 L -83.50 219.00 L -83.75 218.38 L -84.00 217.75 L -84.25 217.00 L -84.62 216.38 L -84.88 215.75 L -85.12 215.00 L -85.50 214.38 L -85.75 213.62 L -86.00 213.00 L -86.25 212.25 L -86.62 211.50 L -86.88 210.88 L -87.12 210.12 L -87.38 209.38 L -87.75 208.62 L -88.00 207.88 L -88.25 207.12 L -88.62 206.38 L -88.88 205.62 L -89.12 204.88 L -89.38 204.12 L -89.75 203.25 L -90.00 202.50 L -90.25 201.75 L -90.62 200.88 L -90.88 200.12 L -91.12 199.38 L -91.38 198.50 L -91.75 197.62 L -92.00 196.88 L -92.25 196.00 L -92.50 195.25 L -92.88 194.38 L -93.12 193.50 L -93.38 192.62 L -93.75 191.75 L -94.00 191.00 L -94.25 190.12 L -94.50 189.25 L -94.88 188.38 L -95.12 187.50 L -95.38 186.50 L -95.75 185.62 L -96.00 184.75 L -96.25 183.88 L -96.50 183.00 L -96.88 182.12 L -97.12 181.25 L -97.38 180.25 L -97.62 179.38 L -98.00 178.50 L -98.25 177.50 L -98.50 176.62 L -98.88 175.75 L -99.12 174.75 L -99.38 173.75 L -99.62 172.88 L -100.00 172.00 L -100.25 171.00 L -100.50 170.00 L -100.88 169.12 L -101.12 168.12 L -101.38 167.12 L -101.62 166.25 L -102.00 165.25 L -102.25 164.25 L -102.50 163.38 L -102.75 162.38 L -103.12 161.38 L -103.38 160.38 L -103.62 159.50 L -104.00 158.50 L -104.25 157.50 L -104.50 156.50 L -104.75 155.62 L -105.12 154.62 L -105.38 153.62 L -105.62 152.62 L -106.00 151.62 L -106.25 150.62 L -106.50 149.62 L -106.75 148.62 L -107.12 147.62 L -107.38 146.62 L -107.62 145.75 L -108.00 144.75 L -108.25 143.75 L -108.50 142.75 L -108.75 141.75 L -109.12 140.75 L -109.38 139.75 L -109.62 138.75 L -109.88 137.75 L -110.25 136.75 L -110.50 135.75 L -110.75 134.75 L -111.12 133.88 L -111.38 132.88 L -111.62 131.88 L -111.88 130.88 L -112.25 129.88 L -112.50 128.88 L -112.75 127.88 L -113.12 126.88 L -113.38 125.88 L -113.62 125.00 L -113.88 124.00 L -114.25 123.00 L -114.50 122.00 L -114.75 121.00 L -115.00 120.00 L -115.38 119.00 L -115.62 118.12 L -115.88 117.12 L -116.25 116.12 L -116.50 115.12 L -116.75 114.25 L -117.00 113.25 L -117.38 112.25 L -117.62 111.25 L -117.88 110.38 L -118.25 109.38 L -118.50 108.38 L -118.75 107.50 L -119.00 106.50 L -119.38 105.62 L -119.62 104.62 L -119.88 103.75 L -120.12 102.75 L -120.50 101.88 L -120.75 100.88 L -121.00 100.00 L -121.38 99.00 L -121.62 98.12 L -121.88 97.25 L -122.12 96.25 L -122.50 95.38 L -122.75 94.50 L -123.00 93.62 L -123.38 92.62 L -123.62 91.75 L -123.88 90.88 L -124.12 90.00 L -124.50 89.12 L -124.75 88.25 L -125.00 87.38 L -125.38 86.50 L -125.62 85.62 L -125.88 84.75 L -126.12 83.88 L -126.50 83.00 L -126.75 82.25 L -127.00 81.38 L -127.25 80.50 L -127.62 79.62 L -127.88 78.88 L -128.12 78.00 L -128.50 77.12 L -128.75 76.38 L -129.00 75.50 L -129.25 74.75 L -129.62 73.88 L -129.88 73.12 L -130.12 72.38 L -130.50 71.50 L -130.75 70.75 L -131.00 70.00 L -131.25 69.25 L -131.62 68.50 L -131.88 67.75 L -132.12 66.88 L -132.38 66.12 L -132.75 65.50 L -133.00 64.75 L -133.25 64.00 L -133.62 63.25 L -133.88 62.50 L -134.12 61.88 L -134.38 61.12 L -134.75 60.38 L -135.00 59.75 L -135.25 59.00 L -135.62 58.38 L -135.88 57.62 L -136.12 57.00 L -136.38 56.38 L -136.75 55.62 L -137.00 55.00 L -137.25 54.38 L -137.50 53.75 L -137.88 53.12 L -138.12 52.50 L -138.38 51.88 L -138.75 51.25 L -139.00 50.62 L -139.25 50.00 L -139.50 49.38 L -139.88 48.88 L -140.12 48.25 L -140.38 47.62 L -140.75 47.12 L -141.00 46.62 L -141.25 46.00 L -141.50 45.50 L -141.88 44.88 L -142.12 44.38 L -142.38 43.88 L -142.62 43.38 L -143.00 42.88 L -143.25 42.38 L -143.50 41.88 L -143.88 41.38 L -144.12 40.88 L -144.38 40.38 L -144.62 39.88 L -145.00 39.50 L -145.25 39.00 L -145.50 38.50 L -145.88 38.12 L -146.12 37.62 L -146.38 37.25 L -146.62 36.88 L -147.00 36.38 L -147.25 36.00 L -147.50 35.62 L -147.88 35.25 L -148.12 34.88 L -148.38 34.50 L -148.62 34.12 L -149.00 33.75 L -149.25 33.38 L -149.50 33.00 L -149.75 32.75 L -150.12 32.38 L -150.38 32.00 L -150.62 31.75 L -151.00 31.50 L -151.25 31.12 L -151.50 30.88 L -151.75 30.50 L -152.12 30.25 L -152.38 30.00 L -152.62 29.75 L -153.00 29.50 L -153.25 29.25 L -153.50 29.00 L -153.75 28.75 L -154.12 28.50 L -154.38 28.38 L -154.62 28.12 L -154.88 27.88 L -155.25 27.75 L -155.50 27.50 L -155.75 27.38 L -156.12 27.12 L -156.38 27.00 L -156.62 26.88 L -156.88 26.75 L -157.25 26.50 L -157.50 26.38 L -157.75 26.25 L -158.12 26.12 L -158.38 26.00 L -158.62 25.88 L -158.88 25.88 L -159.25 25.75 L -159.50 25.62 L -159.75 25.62 L -160.00 25.50 L -160.38 25.50 L -160.62 25.38 L -160.88 25.38 L -161.25 25.25 L -161.50 25.25 L -161.75 25.25 L -162.00 25.25 L -162.38 25.25 L -162.62 25.25 L -162.88 25.25 L -163.25 25.25 L -163.50 25.25 L -163.75 25.25 L -164.00 25.25 L -164.38 25.38 L -164.62 25.38 L -164.88 25.38 L -165.25 25.50 L -165.50 25.50 L -165.75 25.62 L -166.00 25.62 L -166.38 25.75 L -166.62 25.88 L -166.88 26.00 L -167.12 26.12 L -167.50 26.12 L -167.75 26.25 L -168.00 26.38 L -168.38 26.50 L -168.62 26.62 L -168.88 26.88 L -169.12 27.00 L -169.50 27.12 L -169.75 27.38 L -170.00 27.50 L -170.38 27.62 L -170.62 27.88 L -170.88 28.00 L -171.12 28.25 L -171.50 28.38 L -171.75 28.62 L -172.00 28.88 L -172.25 29.12 L -172.62 29.38 L -172.88 29.50 L -173.12 29.75 L -173.50 30.00 L -173.75 30.25 L -174.00 30.50 L -174.25 30.75 L -174.62 31.12 L -174.88 31.38 L -175.12 31.62 L -175.50 31.88 L -175.75 32.25 L -176.00 32.50 L -176.25 32.75 L -176.62 33.12 L -176.88 33.38 L -mstroke -newpath 176.88 33.38 M -177.12 33.75 L -177.38 34.12 L -177.75 34.38 L -178.00 34.75 L -178.25 35.12 L -178.62 35.38 L -178.88 35.75 L -179.12 36.12 L -179.38 36.50 L -179.75 36.88 L -180.00 37.25 L -180.25 37.62 L -180.62 38.00 L -180.88 38.38 L -181.12 38.75 L -181.38 39.25 L -181.75 39.62 L -182.00 40.00 L -182.25 40.38 L -182.50 40.88 L -182.88 41.25 L -183.12 41.75 L -183.38 42.12 L -183.75 42.62 L -184.00 43.00 L -184.25 43.50 L -184.50 43.88 L -184.88 44.38 L -185.12 44.75 L -185.38 45.25 L -185.75 45.75 L -186.00 46.25 L -186.25 46.75 L -186.50 47.12 L -186.88 47.62 L -187.12 48.12 L -187.38 48.62 L -187.75 49.12 L -188.00 49.62 L -188.25 50.12 L -188.50 50.62 L -188.88 51.12 L -189.12 51.62 L -189.38 52.25 L -189.62 52.75 L -190.00 53.25 L -190.25 53.75 L -190.50 54.25 L -190.88 54.88 L -191.12 55.38 L -191.38 55.88 L -191.62 56.50 L -192.00 57.00 L -192.25 57.62 L -192.50 58.12 L -192.88 58.75 L -193.12 59.25 L -193.38 59.88 L -193.62 60.38 L -194.00 61.00 L -194.25 61.50 L -194.50 62.12 L -194.75 62.75 L -195.12 63.25 L -195.38 63.88 L -195.62 64.50 L -196.00 65.00 L -196.25 65.62 L -196.50 66.25 L -196.75 66.88 L -197.12 67.38 L -197.38 68.00 L -197.62 68.62 L -198.00 69.25 L -198.25 69.88 L -198.50 70.50 L -198.75 71.12 L -199.12 71.75 L -199.38 72.38 L -199.62 73.00 L -199.88 73.62 L -200.25 74.25 L -200.50 74.88 L -200.75 75.38 L -201.12 76.12 L -201.38 76.75 L -201.62 77.38 L -201.88 78.00 L -202.25 78.62 L -202.50 79.25 L -202.75 79.88 L -203.12 80.50 L -203.38 81.12 L -203.62 81.88 L -203.88 82.50 L -204.25 83.12 L -204.50 83.75 L -204.75 84.38 L -205.12 85.00 L -205.38 85.75 L -205.62 86.38 L -205.88 87.00 L -206.25 87.62 L -206.50 88.38 L -206.75 89.00 L -207.00 89.62 L -207.38 90.25 L -207.62 91.00 L -207.88 91.62 L -208.25 92.25 L -208.50 93.00 L -208.75 93.62 L -209.00 94.25 L -209.38 94.88 L -209.62 95.62 L -209.88 96.25 L -210.25 96.88 L -210.50 97.62 L -210.75 98.25 L -211.00 99.00 L -211.38 99.62 L -211.62 100.25 L -211.88 100.88 L -212.12 101.62 L -212.50 102.25 L -212.75 102.88 L -213.00 103.62 L -213.38 104.25 L -213.62 105.00 L -213.88 105.62 L -214.12 106.25 L -214.50 107.00 L -214.75 107.62 L -215.00 108.25 L -215.38 108.88 L -215.62 109.62 L -215.88 110.25 L -216.12 111.00 L -216.50 111.62 L -216.75 112.25 L -217.00 113.00 L -217.25 113.62 L -217.62 114.25 L -217.88 115.00 L -218.12 115.62 L -218.50 116.25 L -218.75 116.88 L -219.00 117.62 L -219.25 118.25 L -219.62 118.88 L -219.88 119.62 L -220.12 120.25 L -220.50 120.88 L -220.75 121.50 L -221.00 122.25 L -221.25 122.88 L -221.62 123.50 L -221.88 124.12 L -222.12 124.88 L -222.38 125.50 L -222.75 126.12 L -223.00 126.75 L -223.25 127.38 L -223.62 128.12 L -223.88 128.75 L -224.12 129.38 L -224.38 130.00 L -224.75 130.62 L -225.00 131.38 L -225.25 132.00 L -225.62 132.62 L -225.88 133.25 L -226.12 133.88 L -226.38 134.50 L -226.75 135.12 L -227.00 135.75 L -227.25 136.38 L -227.62 137.00 L -227.88 137.62 L -228.12 138.25 L -228.38 138.88 L -228.75 139.50 L -229.00 140.12 L -229.25 140.75 L -229.50 141.38 L -229.88 142.00 L -230.12 142.62 L -230.38 143.25 L -230.75 143.88 L -231.00 144.50 L -231.25 145.12 L -231.50 145.75 L -231.88 146.25 L -232.12 146.88 L -232.38 147.50 L -232.75 148.12 L -233.00 148.75 L -233.25 149.38 L -233.50 150.00 L -233.88 150.50 L -234.12 151.12 L -234.38 151.75 L -234.62 152.38 L -235.00 152.88 L -235.25 153.50 L -235.50 154.12 L -235.88 154.62 L -236.12 155.25 L -236.38 155.88 L -236.62 156.38 L -237.00 157.00 L -237.25 157.50 L -237.50 158.12 L -237.88 158.75 L -238.12 159.25 L -238.38 159.88 L -238.62 160.38 L -239.00 161.00 L -239.25 161.50 L -239.50 162.12 L -239.75 162.62 L -240.12 163.12 L -240.38 163.75 L -240.62 164.25 L -241.00 164.88 L -241.25 165.38 L -241.50 165.88 L -241.75 166.38 L -242.12 167.00 L -242.38 167.50 L -242.62 168.00 L -243.00 168.62 L -243.25 169.12 L -243.50 169.62 L -243.75 170.12 L -244.12 170.75 L -244.38 171.25 L -244.62 171.75 L -245.00 172.25 L -245.25 172.75 L -245.50 173.25 L -245.75 173.75 L -246.12 174.25 L -246.38 174.75 L -246.62 175.25 L -246.88 175.75 L -247.25 176.25 L -247.50 176.75 L -247.75 177.25 L -248.12 177.75 L -248.38 178.25 L -248.62 178.75 L -248.88 179.25 L -249.25 179.75 L -249.50 180.25 L -249.75 180.62 L -250.12 181.12 L -250.38 181.62 L -250.62 182.12 L -250.88 182.50 L -251.25 183.00 L -251.50 183.50 L -251.75 184.00 L -252.00 184.38 L -252.38 184.88 L -252.62 185.25 L -252.88 185.75 L -253.25 186.25 L -253.50 186.62 L -253.75 187.12 L -254.00 187.50 L -254.38 188.00 L -254.62 188.38 L -254.88 188.88 L -255.25 189.25 L -255.50 189.75 L -255.75 190.12 L -256.00 190.62 L -256.38 191.00 L -256.62 191.38 L -256.88 191.88 L -257.12 192.25 L -257.50 192.62 L -257.75 193.12 L -258.00 193.50 L -258.38 193.88 L -258.62 194.25 L -258.88 194.75 L -259.12 195.12 L -259.50 195.50 L -259.75 195.88 L -260.00 196.25 L -260.38 196.62 L -260.62 197.00 L -260.88 197.50 L -261.12 197.88 L -261.50 198.25 L -261.75 198.62 L -262.00 199.00 L -262.25 199.38 L -262.62 199.75 L -262.88 200.12 L -263.12 200.50 L -263.50 200.75 L -263.75 201.12 L -264.00 201.50 L -264.25 201.88 L -264.62 202.25 L -264.88 202.62 L -265.12 203.00 L -265.50 203.25 L -265.75 203.62 L -266.00 204.00 L -266.25 204.38 L -266.62 204.75 L -266.88 205.00 L -267.12 205.38 L -267.50 205.62 L -267.75 206.00 L -268.00 206.38 L -268.25 206.62 L -268.62 207.00 L -268.88 207.38 L -269.12 207.62 L -269.38 208.00 L -269.75 208.25 L -270.00 208.62 L -270.25 208.88 L -270.62 209.25 L -270.88 209.50 L -271.12 209.88 L -271.38 210.12 L -271.75 210.38 L -272.00 210.75 L -272.25 211.00 L -272.62 211.25 L -272.88 211.62 L -273.12 211.88 L -273.38 212.25 L -273.75 212.50 L -274.00 212.75 L -274.25 213.00 L -274.50 213.38 L -274.88 213.62 L -275.12 213.88 L -275.38 214.12 L -275.75 214.38 L -276.00 214.62 L -276.25 215.00 L -276.50 215.25 L -276.88 215.50 L -277.12 215.75 L -277.38 216.00 L -277.75 216.25 L -278.00 216.50 L -278.25 216.75 L -278.50 217.00 L -278.88 217.25 L -279.12 217.50 L -279.38 217.75 L -279.62 218.00 L -280.00 218.25 L -280.25 218.50 L -280.50 218.75 L -280.88 219.00 L -281.12 219.25 L -281.38 219.50 L -281.62 219.62 L -282.00 219.88 L -282.25 220.12 L -282.50 220.38 L -282.88 220.62 L -283.12 220.75 L -283.38 221.00 L -283.62 221.25 L -284.00 221.50 L -284.25 221.62 L -284.50 221.88 L -284.88 222.12 L -285.12 222.38 L -285.38 222.50 L -285.62 222.75 L -286.00 222.88 L -286.25 223.12 L -286.50 223.38 L -286.75 223.50 L -287.12 223.75 L -287.38 224.00 L -287.62 224.12 L -288.00 224.38 L -288.25 224.50 L -288.50 224.75 L -288.75 224.88 L -289.12 225.12 L -289.38 225.25 L -289.62 225.50 L -290.00 225.62 L -290.25 225.88 L -290.50 226.00 L -290.75 226.12 L -mstroke -newpath 290.75 226.12 M -291.12 226.38 L -291.38 226.50 L -291.62 226.75 L -291.88 226.88 L -292.25 227.00 L -292.50 227.25 L -292.75 227.38 L -293.12 227.50 L -293.38 227.75 L -293.62 227.88 L -293.88 228.00 L -294.25 228.25 L -294.50 228.38 L -294.75 228.50 L -295.12 228.62 L -295.38 228.75 L -295.62 229.00 L -295.88 229.12 L -296.25 229.25 L -296.50 229.38 L -296.75 229.62 L -297.00 229.75 L -297.38 229.88 L -297.62 230.00 L -297.88 230.12 L -298.25 230.25 L -298.50 230.38 L -298.75 230.50 L -299.00 230.75 L -299.38 230.88 L -299.62 231.00 L -299.88 231.12 L -300.25 231.25 L -300.50 231.38 L -300.75 231.50 L -301.00 231.62 L -301.38 231.75 L -301.62 231.88 L -301.88 232.00 L -302.12 232.12 L -302.50 232.25 L -302.75 232.38 L -303.00 232.50 L -303.38 232.62 L -303.62 232.75 L -303.88 232.88 L -304.12 233.00 L -304.50 233.00 L -304.75 233.12 L -305.00 233.25 L -305.38 233.38 L -305.62 233.50 L -305.88 233.62 L -306.12 233.75 L -306.50 233.88 L -306.75 233.88 L -307.00 234.00 L -307.38 234.12 L -307.62 234.25 L -307.88 234.38 L -308.12 234.50 L -308.50 234.50 L -308.75 234.62 L -309.00 234.75 L -309.25 234.88 L -309.62 235.00 L -309.88 235.00 L -310.12 235.12 L -310.50 235.25 L -310.75 235.25 L -311.00 235.38 L -311.25 235.50 L -311.62 235.62 L -311.88 235.62 L -312.12 235.75 L -312.50 235.88 L -312.75 235.88 L -313.00 236.00 L -313.25 236.12 L -313.62 236.12 L -313.88 236.25 L -314.12 236.38 L -314.38 236.38 L -314.75 236.50 L -315.00 236.62 L -315.25 236.62 L -315.62 236.75 L -315.88 236.75 L -316.12 236.88 L -316.38 237.00 L -316.75 237.00 L -317.00 237.12 L -317.25 237.12 L -317.62 237.25 L -317.88 237.25 L -318.12 237.38 L -318.38 237.50 L -318.75 237.50 L -319.00 237.62 L -319.25 237.62 L -319.50 237.75 L -319.88 237.75 L -320.12 237.88 L -320.38 237.88 L -320.75 238.00 L -321.00 238.00 L -321.25 238.12 L -321.50 238.12 L -321.88 238.25 L -322.12 238.25 L -322.38 238.38 L -322.75 238.38 L -323.00 238.50 L -323.25 238.50 L -323.50 238.50 L -323.88 238.62 L -324.12 238.62 L -324.38 238.75 L -324.75 238.75 L -325.00 238.88 L -325.25 238.88 L -325.50 238.88 L -325.88 239.00 L -326.12 239.00 L -326.38 239.12 L -326.62 239.12 L -327.00 239.25 L -327.25 239.25 L -327.50 239.25 L -327.88 239.38 L -328.12 239.38 L -328.38 239.38 L -328.62 239.50 L -329.00 239.50 L -329.25 239.62 L -329.50 239.62 L -329.88 239.62 L -330.12 239.75 L -330.38 239.75 L -330.62 239.75 L -331.00 239.75 L -331.25 239.88 L -331.50 239.88 L -331.75 240.00 L -332.12 240.00 L -332.38 240.00 L -332.62 240.00 L -333.00 240.12 L -333.25 240.12 L -333.50 240.12 L -333.75 240.25 L -334.12 240.25 L -334.38 240.25 L -334.62 240.38 L -335.00 240.38 L -335.25 240.38 L -335.50 240.38 L -335.75 240.50 L -336.12 240.50 L -336.38 240.50 L -336.62 240.50 L -336.88 240.62 L -337.25 240.62 L -337.50 240.62 L -337.75 240.62 L -338.12 240.75 L -338.38 240.75 L -338.62 240.75 L -338.88 240.75 L -339.25 240.88 L -339.50 240.88 L -339.75 240.88 L -340.12 240.88 L -340.38 241.00 L -340.62 241.00 L -340.88 241.00 L -341.25 241.00 L -341.50 241.00 L -341.75 241.12 L -342.00 241.12 L -342.38 241.12 L -342.62 241.12 L -342.88 241.25 L -343.25 241.25 L -343.50 241.25 L -343.75 241.25 L -344.00 241.25 L -344.38 241.25 L -344.62 241.38 L -344.88 241.38 L -345.25 241.38 L -345.50 241.38 L -345.75 241.38 L -346.00 241.38 L -346.38 241.50 L -346.62 241.50 L -346.88 241.50 L -347.25 241.50 L -347.50 241.50 L -347.75 241.62 L -348.00 241.62 L -348.38 241.62 L -348.62 241.62 L -348.88 241.62 L -349.12 241.62 L -349.50 241.62 L -349.75 241.75 L -350.00 241.75 L -350.38 241.75 L -350.62 241.75 L -350.88 241.75 L -351.12 241.75 L -351.50 241.75 L -351.75 241.88 L -352.00 241.88 L -352.38 241.88 L -352.62 241.88 L -352.88 241.88 L -353.12 241.88 L -353.50 241.88 L -353.75 241.88 L -354.00 241.88 L -354.25 242.00 L -354.62 242.00 L -354.88 242.00 L -355.12 242.00 L -355.50 242.00 L -355.75 242.00 L -356.00 242.00 L -356.25 242.12 L -356.62 242.12 L -356.88 242.12 L -357.12 242.12 L -357.50 242.12 L -357.75 242.12 L -358.00 242.12 L -358.25 242.12 L -358.62 242.12 L -358.88 242.12 L -359.12 242.12 L -359.38 242.25 L -359.75 242.25 L -360.00 242.25 L -360.25 242.25 L -360.62 242.25 L -360.88 242.25 L -361.12 242.25 L -361.38 242.25 L -361.75 242.25 L -362.00 242.25 L -362.25 242.25 L -362.62 242.25 L -362.88 242.38 L -363.12 242.38 L -363.38 242.38 L -363.75 242.38 L -364.00 242.38 L -364.25 242.38 L -364.50 242.38 L -364.88 242.38 L -365.12 242.38 L -365.38 242.38 L -365.75 242.38 L -366.00 242.38 L -366.25 242.50 L -366.50 242.50 L -366.88 242.50 L -367.12 242.50 L -367.38 242.50 L -367.75 242.50 L -368.00 242.50 L -368.25 242.50 L -368.50 242.50 L -368.88 242.50 L -369.12 242.50 L -369.38 242.50 L -369.75 242.50 L -370.00 242.50 L -370.25 242.50 L -370.50 242.50 L -370.88 242.50 L -371.12 242.50 L -371.38 242.50 L -371.62 242.62 L -372.00 242.62 L -372.25 242.62 L -372.50 242.62 L -372.88 242.62 L -373.12 242.62 L -373.38 242.62 L -373.62 242.62 L -374.00 242.62 L -374.25 242.62 L -374.50 242.62 L -374.88 242.62 L -375.12 242.62 L -375.38 242.62 L -375.62 242.62 L -376.00 242.62 L -376.25 242.62 L -376.50 242.62 L -376.75 242.62 L -377.12 242.62 L -377.38 242.62 L -377.62 242.62 L -378.00 242.62 L -378.25 242.62 L -378.50 242.62 L -378.75 242.75 L -379.12 242.75 L -379.38 242.75 L -379.62 242.75 L -380.00 242.75 L -380.25 242.75 L -380.50 242.75 L -380.75 242.75 L -381.12 242.75 L -381.38 242.75 L -381.62 242.75 L -381.88 242.75 L -382.25 242.75 L -382.50 242.75 L -382.75 242.75 L -383.12 242.75 L -383.38 242.75 L -383.62 242.75 L -383.88 242.75 L -384.25 242.75 L -384.50 242.75 L -384.75 242.75 L -385.12 242.75 L -385.38 242.75 L -385.62 242.75 L -385.88 242.75 L -386.25 242.75 L -386.50 242.75 L -386.75 242.75 L -387.12 242.75 L -387.38 242.75 L -387.62 242.88 L -387.88 242.88 L -388.25 242.88 L -388.50 242.88 L -388.75 242.88 L -389.00 242.88 L -389.38 242.88 L -389.62 242.88 L -389.88 242.88 L -390.25 242.88 L -390.50 242.88 L -390.75 242.88 L -391.00 242.88 L -391.38 242.88 L -391.62 242.88 L -391.88 242.88 L -392.25 242.88 L -392.50 242.88 L -392.75 242.88 L -393.00 242.88 L -393.38 242.88 L -393.62 242.88 L -393.88 242.88 L -394.12 242.88 L -394.50 242.88 L -394.75 242.88 L -395.00 242.88 L -395.38 242.88 L -395.62 242.88 L -395.88 242.88 L -396.12 242.88 L -396.50 242.88 L -396.75 242.88 L -397.00 242.88 L -397.38 242.88 L -397.62 242.88 L -397.88 242.88 L -398.12 242.88 L -398.50 242.88 L -398.75 242.88 L -399.00 242.88 L -399.25 242.88 L -399.62 242.88 L -399.88 242.88 L -400.12 242.88 L -400.50 242.88 L -400.75 242.88 L -401.00 242.88 L -401.25 242.88 L -401.62 242.88 L -401.88 242.88 L -402.12 242.88 L -402.50 242.88 L -402.75 242.88 L -403.00 242.88 L -403.25 242.88 L -403.62 242.88 L -403.88 242.88 L -404.12 242.88 L -404.38 242.88 L -404.75 242.88 L -mstroke -newpath 404.75 242.88 M -405.00 242.88 L -405.25 242.88 L -405.62 242.88 L -405.88 242.88 L -406.12 242.88 L -406.38 242.88 L -406.75 242.88 L -407.00 242.88 L -407.25 242.88 L -407.62 242.88 L -407.88 242.88 L -408.12 242.88 L -408.38 242.88 L -408.75 242.88 L -409.00 242.88 L -409.25 242.88 L -409.62 242.88 L -409.88 242.88 L -410.12 242.88 L -410.38 242.88 L -410.75 242.88 L -411.00 242.88 L -411.25 242.88 L -411.50 242.88 L -411.88 242.88 L -412.12 242.88 L -412.38 242.88 L -412.75 242.88 L -413.00 242.88 L -413.25 242.88 L -413.50 242.88 L -413.88 242.88 L -414.12 242.88 L -414.38 242.88 L -414.75 242.88 L -415.00 242.88 L -415.25 242.88 L -415.50 242.88 L -415.88 242.88 L -416.12 242.88 L -416.38 243.00 L -416.62 243.00 L -417.00 243.00 L -417.25 243.00 L -417.50 243.00 L -417.88 243.00 L -418.12 243.00 L -418.38 243.00 L -418.62 243.00 L -419.00 243.00 L -419.25 243.00 L -419.50 243.00 L -419.88 243.00 L -420.12 243.00 L -420.38 243.00 L -420.62 243.00 L -421.00 243.00 L -421.25 243.00 L -421.50 243.00 L -421.75 243.00 L -422.12 243.00 L -422.38 243.00 L -422.62 243.00 L -423.00 243.00 L -423.25 243.00 L -423.50 243.00 L -423.75 243.00 L -424.12 243.00 L -424.38 243.00 L -424.62 243.00 L -425.00 243.00 L -425.25 243.00 L -425.50 243.00 L -425.75 243.00 L -426.12 243.00 L -426.38 243.00 L -426.62 243.00 L -427.00 243.00 L -427.25 243.00 L -427.50 243.00 L -427.75 243.00 L -428.12 243.00 L -428.38 243.00 L -428.62 243.00 L -428.88 243.00 L -429.25 243.00 L -429.50 243.00 L -429.75 243.00 L -430.12 243.00 L -430.38 243.00 L -430.62 243.00 L -430.88 243.00 L -431.25 243.00 L -431.50 243.00 L -431.75 243.00 L -432.12 243.00 L -432.38 243.00 L -432.62 243.00 L -432.88 243.00 L -433.25 243.00 L -433.50 243.00 L -433.75 243.00 L -434.00 243.00 L -434.38 243.00 L -434.62 243.00 L -434.88 243.00 L -435.25 243.00 L -435.50 243.00 L -435.75 243.00 L -436.00 243.00 L -436.38 243.00 L -436.62 243.00 L -436.88 243.00 L -437.25 243.00 L -437.50 243.00 L -437.75 243.00 L -438.00 243.00 L -438.38 243.00 L -438.62 243.00 L -438.88 243.00 L -439.12 243.00 L -439.50 243.00 L -439.75 243.00 L -440.00 243.00 L -440.38 243.00 L -440.62 243.00 L -440.88 243.00 L -441.12 243.00 L -441.50 243.00 L -441.75 243.00 L -442.00 243.00 L -442.38 243.00 L -442.62 243.00 L -442.88 243.00 L -443.12 243.00 L -443.50 243.00 L -443.75 243.00 L -444.00 243.00 L -444.25 243.00 L -444.62 243.00 L -444.88 243.00 L -445.12 243.00 L -445.50 243.00 L -445.75 243.00 L -446.00 243.00 L -446.25 243.00 L -446.62 243.00 L -446.88 243.00 L -447.12 243.00 L -447.50 243.00 L -447.75 243.00 L -448.00 243.00 L -448.25 243.00 L -448.62 243.00 L -448.88 243.00 L -449.12 243.00 L -449.50 243.00 L -449.75 243.00 L -450.00 243.00 L -450.25 243.00 L -450.62 243.00 L -450.88 243.00 L -451.12 243.00 L -451.38 243.00 L -451.75 243.00 L -452.00 243.00 L -452.25 243.00 L -452.62 243.00 L -452.88 243.00 L -453.12 243.00 L -453.38 243.00 L -453.75 243.00 L -454.00 243.00 L -454.25 243.00 L -454.62 243.00 L -454.88 243.00 L -455.12 243.00 L -455.38 243.00 L -455.75 243.00 L -456.00 243.00 L -456.25 243.00 L -456.50 243.00 L -456.88 243.00 L -457.12 243.00 L -457.38 243.00 L -457.75 243.00 L -458.00 243.00 L -458.25 243.00 L -458.50 243.00 L -458.88 243.00 L -459.12 243.00 L -459.38 243.00 L -459.75 243.00 L -460.00 243.00 L -460.25 243.00 L -460.50 243.00 L -460.88 243.00 L -461.12 243.00 L -461.38 243.00 L -461.62 243.00 L -462.00 243.00 L -462.25 243.00 L -462.50 243.00 L -462.88 243.00 L -463.12 243.00 L -463.38 243.00 L -463.62 243.00 L -464.00 243.00 L -464.25 243.00 L -464.50 243.00 L -464.88 243.00 L -465.12 243.00 L -465.38 243.00 L -465.62 243.00 L -466.00 243.00 L -466.25 243.00 L -466.50 243.00 L -466.88 243.00 L -467.12 243.00 L -467.38 243.00 L -467.62 243.00 L -468.00 243.00 L -468.25 243.00 L -468.50 243.00 L -468.75 243.00 L -469.12 243.00 L -469.38 243.00 L -469.62 243.00 L -470.00 243.00 L -470.25 243.00 L -470.50 243.00 L -470.75 243.00 L -471.12 243.00 L -471.38 243.00 L -471.62 243.00 L -472.00 243.00 L -472.25 243.00 L -472.50 243.00 L -472.75 243.00 L -473.12 243.00 L -473.38 243.00 L -473.62 243.00 L -473.88 243.00 L -474.25 243.00 L -474.50 243.00 L -474.75 243.00 L -475.12 243.00 L -475.38 243.00 L -475.62 243.00 L -475.88 243.00 L -476.25 243.00 L -476.50 243.00 L -476.75 243.00 L -477.12 243.00 L -477.38 243.00 L -477.62 243.00 L -477.88 243.00 L -478.25 243.00 L -478.50 243.00 L -478.75 243.00 L -479.00 243.00 L -479.38 243.00 L -479.62 243.00 L -479.88 243.00 L -480.25 243.00 L -480.50 243.00 L -480.75 243.00 L -481.00 243.00 L -481.38 243.00 L -481.62 243.00 L -481.88 243.00 L -482.25 243.00 L -482.50 243.00 L -482.75 243.00 L -483.00 243.00 L -483.38 243.00 L -483.62 243.00 L -483.88 243.00 L -484.12 243.00 L -484.50 243.00 L -484.75 243.00 L -485.00 243.00 L -485.38 243.00 L -485.62 243.00 L -485.88 243.00 L -486.12 243.00 L -486.50 243.00 L -486.75 243.00 L -487.00 243.00 L -487.38 243.00 L -487.62 243.00 L -487.88 243.00 L -488.12 243.00 L -488.50 243.00 L -488.75 243.00 L -489.00 243.00 L -489.38 243.00 L -489.62 243.00 L -489.75 243.00 L -mstroke -[] sd -1 ps -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype43/prob01a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype43/prob01a.gif deleted file mode 100755 index cf20feba5..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype43/prob01a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob03a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob03a.eps deleted file mode 100755 index 36b3759d5..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob03a.eps +++ /dev/null @@ -1,346 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: PV_isobar.eps -%%CreationDate: 4/24/1996 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%BoundingBox:188 457 382 655 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -3880 2630 3983 2850 3777 2850 2 P -0 sg fill -gr -gs -3880.625 2630.625 m -3880.625 5130.625 L -1.25 slw 0 sg str -gr -gs -6380 5130 6160 5233 6160 5027 2 P -0 sg fill -gr -gs -3880.625 5130.625 m -6380.625 5130.625 L -1.25 slw 0 sg str -gr -gs -5130 3880 4910 3983 4910 3777 2 P -0 sg fill -gr -gs -4192.625 3880.625 m -5130.625 3880.625 L -1.25 slw 0 sg str -gr -gs -5130.625 3880.625 m -5755.625 3880.625 L -1.25 slw 0 sg str -gr -gs -3498 2951 3637 3246 R -1 sg fill -gr -/_Times-Roman ff [278 0 0 -278 0 0] mf sf -3498 3159 m 0 sg (P) show -gs -5816 5286 6007 5581 R -1 sg fill -gr -5816 5494 m 2.78 slw 0 sg (V) show -gs -4001 3732 4071 4027 R -1 sg fill -gr -4001 3940 m 0 sg (i) show -gs -5868 3732 5955 4027 R -1 sg fill -gr -5868 3940 m 2.78 slw 0 sg (f) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob03a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob03a.gif deleted file mode 100755 index 1059af694..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob03a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob04.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob04.eps deleted file mode 100755 index cf5da5da6..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob04.eps +++ /dev/null @@ -1,379 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: PV_cycle.eps -%%CreationDate: 4/24/1996 -%%Pages: 0 -%%DocumentFonts: Times-Roman -%%BoundingBox:188 457 382 655 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman/Times-Roman 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -3880 2630 3983 2850 3777 2850 2 P -0 sg fill -gr -gs -3880.625 2630.625 m -3880.625 5130.625 L -1.25 slw 0 sg str -gr -gs -6380 5130 6160 5233 6160 5027 2 P -0 sg fill -gr -gs -3880.625 5130.625 m -6380.625 5130.625 L -1.25 slw 0 sg str -gr -gs -5130 3255 4910 3358 4910 3152 2 P -0 sg fill -gr -gs -4192.625 3255.625 m -5130.625 3255.625 L -1.25 slw 0 sg str -gr -gs -5130.625 3255.625 m -5755.625 3255.625 L -1.25 slw 0 sg str -gr -gs -3498 2951 3637 3246 R -1 sg fill -gr -/_Times-Roman ff [278 0 0 -278 0 0] mf sf -3498 3159 m 0 sg (P) show -gs -5816 5286 6007 5581 R -1 sg fill -gr -5816 5494 m 2.78 slw 0 sg (V) show -gs -4817 4192 4900 3964 5045 4109 2 P -0 sg fill -gr -gs -5755.625 3255.625 m -4817.625 4192.625 L -1.25 slw 0 sg str -gr -gs -4817.625 4192.625 m -4192.625 4817.625 L -1.25 slw 0 sg str -gr -gs -4192 3880 4295 4100 4089 4100 2 P -0 sg fill -gr -gs -4192.625 4817.625 m -4192.625 3880.625 L -1.25 slw 0 sg str -gr -gs -4192.625 3880.625 m -4192.625 3255.625 L -1.25 slw 0 sg str -gr -gs -3941 4670 4132 4965 R -1 sg fill -gr -3941 4878 m 2.78 slw 0 sg (A) show -gs -3949 3107 4123 3402 R -1 sg fill -gr -3949 3315 m 2.78 slw 0 sg (B) show -gs -5824 3107 5998 3402 R -1 sg fill -gr -5824 3315 m 2.78 slw 0 sg (C) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob04.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob04.gif deleted file mode 100755 index e7592ad8c..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob04.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob05a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob05a.eps deleted file mode 100755 index f99c0d27a..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob05a.eps +++ /dev/null @@ -1,440 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: PV diagram.eps -%%CreationDate: 6/29/1995 -%%Pages: 0 -%%DocumentFonts: Helvetica -%%BoundingBox:132 443 375 673 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica/Helvetica 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -3507.625 3585.625 m -3507.625 4835.625 L -1.25 slw 0 sg str -gr -gs -3507.625 4835.625 m -5382.625 4835.625 L -1.25 slw 0 sg str -gr -gs -5304 4757 5460 4913 OV -0 sg fill -gr -gs -5382.625 4835.625 m -5382.625 2960.625 L -1.25 slw 0 sg str -gr -gs -5382.625 2960.625 m -3507.625 2960.625 L -1.25 slw 0 sg str -gr -gs -3429 2882 3585 3038 OV -0 sg fill -gr -gs -3507.625 2960.625 m -3507.625 3741.625 L -1.25 slw 0 sg str -gr -gs -3507.625 2960.625 m -5382.625 4835.625 L -1.25 slw 0 sg str -gr -gs -4601 4835 4400 4889 4400 4781 2 P -0 sg fill -gr -gs -4288.625 4835.625 m -4400.625 4835.625 L -1.25 slw 0 sg str -gr -gs -4601 2960 4400 3014 4400 2906 2 P -0 sg fill -gr -gs -4288.625 2960.625 m -4400.625 2960.625 L -1.25 slw 0 sg str -gr -gs -3507 4054 3453 3853 3561 3853 2 P -0 sg fill -gr -gs -3507.625 3741.625 m -3507.625 3853.625 L -1.25 slw 0 sg str -gr -gs -5382 4054 5328 3853 5436 3853 2 P -0 sg fill -gr -gs -5382.625 3741.625 m -5382.625 3853.625 L -1.25 slw 0 sg str -gr -gs -4555 4008 4375 3904 4451 3828 2 P -0 sg fill -gr -gs -4334.625 3787.625 m -4413.625 3866.625 L -1.25 slw 0 sg str -gr -gs -4349 2569 4540 2882 R -1 sg fill -gr -/_Helvetica ff [243 0 0 -243 0 0] mf sf -4349 2812 m 0 sg (A) show -gs -4531 3602 4688 3915 R -1 sg fill -gr -4531 3845 m 0 sg (B) show -gs -4288 4444 4444 4757 R -1 sg fill -gr -4288 4687 m 0 sg (C) show -gs -2960 2491 3116 2804 R -1 sg fill -gr -2960 2734 m 0 sg (P) show -3177 2734 m 0 sg (V) show -/_Helvetica ff [174 0 0 -174 0 0] mf sf -2978 2872 m 0 sg (1) show -3307 2872 m 0 sg (1) show -/_Helvetica ff [208 0 0 -208 0 0] mf sf -3142 2734 m 0 sg (,) show -gs -5304 4991 5460 5304 R -1 sg fill -gr -/_Helvetica ff [243 0 0 -243 0 0] mf sf -5304 5234 m 0 sg (P) show -/_Helvetica ff [174 0 0 -174 0 0] mf sf -5399 5372 m 0 sg (2) show -/_Helvetica ff [208 0 0 -208 0 0] mf sf -5538 5217 m 0 sg (,) show -/_Helvetica ff [174 0 0 -174 0 0] mf sf -5768 5399 m 0 sg (2) show -/_Helvetica ff [243 0 0 -243 0 0] mf sf -5634 5234 m 0 sg (V) show -gs -2726.625 2335.625 m -2726.625 5616.625 L -1.25 slw 0 sg str -gr -gs -2726.625 5616.625 m -6241.625 5616.625 L -1.25 slw 0 sg str -gr -gs -2353 3186 2630 4140 R -1 sg fill -gr -gs 2491 3663 t 270 rotate -2491 -3663 t -/_Helvetica ff [208 0 0 -208 0 0] mf sf -2014 3733 m 0 sg (Pressure) show -gr -gs -4045 5712 4844 5989 R -1 sg fill -gr -4045 5920 m 0 sg (Volume) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob05a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob05a.gif deleted file mode 100755 index 7e21dd53a..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob05a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob06a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob06a.eps deleted file mode 100755 index 15598f9bd..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob06a.eps +++ /dev/null @@ -1,482 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: PVII.eps -%%CreationDate: 5/19/1995 -%%Pages: 0 -%%DocumentFonts: Helvetica -%%BoundingBox:142 457 349 664 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica/Helvetica 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -3507.625 3585.625 m -3507.625 4835.625 L -1.25 slw 0 sg str -gr -gs -3420 4748 3594 4922 OV -0 sg fill -gr -gs -5295 4748 5469 4922 OV -0 sg fill -gr -gs -3507.625 4835.625 m -5382.625 4835.625 L -1.25 slw 0 sg str -gr -gs -3429 2882 3585 3038 OV -0 sg fill -gr -gs -3507.625 2960.625 m -3507.625 3741.625 L -1.25 slw 0 sg str -gr -gs -4288 4835 4489 4781 4489 4889 2 P -0 sg fill -gr -gs -4601.625 4835.625 m -4489.625 4835.625 L -1.25 slw 0 sg str -gr -gs -3507 3741 3561 3942 3453 3942 2 P -0 sg fill -gr -gs -3507.625 4054.625 m -3507.625 3942.625 L -1.25 slw 0 sg str -gr -gs -4360 4047 4180 3943 4256 3867 2 P -0 sg fill -gr -gs -4139.625 3826.625 m -4218.625 3905.625 L -1.25 slw 0 sg str -gr -gs -3242 4874 3381 5187 R -1 sg fill -gr -/_Helvetica ff [243 0 0 -243 0 0] mf sf -3242 5117 m 0 sg (a) show -gs -3214 2687 3370 2999 R -1 sg fill -gr -3214 2930 m 0 sg (b) show -5469 5117 m 0 sg (c) show -gs -3929 3152 3969 3182 4010 3213 4051 3245 4092 3278 4133 3312 4175 3346 4217 3382 -4259 3418 4301 3455 4343 3493 4386 3532 4429 3572 4472 3612 4515 3654 4558 3696 -4602 3740 4645 3783 4687 3826 4728 3869 4769 3912 4809 3955 4848 3997 4886 4040 -4923 4082 4959 4124 4994 4166 5029 4207 5063 4249 5095 4290 5127 4331 5158 4372 -5189 4413 5217 4452 5244 4489 5268 4524 5290 4558 5309 4589 5327 4617 5342 4644 -5355 4669 5365 4691 5374 4712 5380 4730 5383 4746 5385 4760 5384 4772 5381 4782 -5376 4790 5368 4795 5358 4798 5346 4799 5332 4797 5316 4794 5298 4788 5277 4779 -5255 4769 5230 4756 5203 4741 5175 4723 5144 4704 5110 4682 5075 4658 5038 4631 -4999 4603 4958 4572 4917 4541 4876 4509 4835 4476 4794 4442 4752 4408 4710 4373 -4668 4336 4626 4299 4584 4261 4541 4222 4498 4183 4455 4142 4412 4101 4369 4059 -4326 4016 4282 3972 4240 3929 4199 3886 4158 3843 4118 3800 4079 3757 4041 3715 -4004 3673 3968 3631 3933 3589 3898 3547 3864 3506 3832 3465 3800 3424 3769 3383 -3739 3343 3710 3303 3683 3266 3659 3231 3637 3197 3618 3166 3600 3138 3585 3111 -3572 3086 3562 3064 3553 3043 3547 3025 3544 3009 3542 2995 3543 2983 3546 2973 -3552 2966 3559 2960 3569 2957 3581 2956 3595 2958 3611 2961 3629 2967 3650 2976 -3672 2986 3697 2999 3724 3014 3752 3031 3783 3051 3817 3072 3852 3097 3889 3123 -3929 3152 128 P closepath -1.25 slw 0 sg str -gr -gs -3838 3002 3868 3025 3899 3049 3929 3073 3960 3098 3992 3124 4023 3150 4054 3177 -4086 3205 4118 3233 4150 3262 4182 3291 4214 3322 4247 3352 4280 3384 4312 3416 -4346 3449 4378 3481 4410 3514 4442 3547 4472 3579 4503 3611 4532 3644 4561 3675 -4589 3707 4617 3739 4644 3770 4670 3802 4696 3833 4721 3864 4745 3894 4769 3925 -4793 3956 4815 3985 4835 4013 4853 4039 4870 4064 4885 4087 4899 4109 4911 4129 -4921 4147 4929 4164 4935 4179 4940 4192 4943 4204 4945 4214 4944 4223 4942 4230 -4939 4236 4933 4239 4926 4241 4918 4242 4908 4240 4896 4237 4882 4232 4867 4226 -4851 4218 4833 4208 4813 4196 4791 4182 4768 4167 4743 4150 4717 4132 4689 4112 -4660 4090 4629 4066 4598 4042 4568 4018 4537 3993 4506 3967 4474 3941 4443 3914 -4411 3886 4379 3858 4348 3829 4315 3799 4283 3769 4251 3738 4218 3706 4185 3674 -4153 3642 4120 3609 4088 3576 4056 3543 4025 3511 3995 3479 3965 3446 3936 3415 -3908 3383 3880 3351 3853 3320 3827 3288 3801 3257 3776 3226 3752 3196 3728 3165 -3705 3135 3682 3105 3662 3077 3644 3051 3627 3026 3612 3003 3598 2981 3586 2961 -3577 2943 3568 2926 3562 2911 3557 2898 3554 2886 3552 2876 3553 2867 3555 2860 -3559 2855 3564 2851 3571 2849 3580 2848 3590 2850 3602 2853 3615 2858 3630 2864 -3647 2873 3665 2883 3685 2895 3706 2908 3729 2923 3754 2940 3780 2959 3808 2979 -3838 3002 128 P closepath -1 sg fill -gr -gs -3838 3002 3868 3025 3899 3049 3929 3073 3960 3098 3992 3124 4023 3150 4054 3177 -4086 3205 4118 3233 4150 3262 4182 3291 4214 3322 4247 3352 4280 3384 4312 3416 -4346 3449 4378 3481 4410 3514 4442 3547 4472 3579 4503 3611 4532 3644 4561 3675 -4589 3707 4617 3739 4644 3770 4670 3802 4696 3833 4721 3864 4745 3894 4769 3925 -4793 3956 4815 3985 4835 4013 4853 4039 4870 4064 4885 4087 4899 4109 4911 4129 -4921 4147 4929 4164 4935 4179 4940 4192 4943 4204 4945 4214 4944 4223 4942 4230 -4939 4236 4933 4239 4926 4241 4918 4242 4908 4240 4896 4237 4882 4232 4867 4226 -4851 4218 4833 4208 4813 4196 4791 4182 4768 4167 4743 4150 4717 4132 4689 4112 -4660 4090 4629 4066 4598 4042 4568 4018 4537 3993 4506 3967 4474 3941 4443 3914 -4411 3886 4379 3858 4348 3829 4315 3799 4283 3769 4251 3738 4218 3706 4185 3674 -4153 3642 4120 3609 4088 3576 4056 3543 4025 3511 3995 3479 3965 3446 3936 3415 -3908 3383 3880 3351 3853 3320 3827 3288 3801 3257 3776 3226 3752 3196 3728 3165 -3705 3135 3682 3105 3662 3077 3644 3051 3627 3026 3612 3003 3598 2981 3586 2961 -3577 2943 3568 2926 3562 2911 3557 2898 3554 2886 3552 2876 3553 2867 3555 2860 -3559 2855 3564 2851 3571 2849 3580 2848 3590 2850 3602 2853 3615 2858 3630 2864 -3647 2873 3665 2883 3685 2895 3706 2908 3729 2923 3754 2940 3780 2959 3808 2979 -3838 3002 128 P closepath -1.25 slw 1 sg str -gr -gs -4354 3507 4384 3530 4415 3554 4445 3578 4476 3604 4507 3629 4539 3656 4570 3683 -4602 3711 4634 3739 4665 3768 4698 3797 4730 3828 4762 3858 4795 3890 4828 3922 -4861 3955 4893 3987 4925 4020 4957 4053 4988 4085 5018 4117 5048 4150 5077 4181 -5105 4213 5133 4245 5160 4276 5186 4308 5212 4339 5237 4370 5261 4400 5285 4431 -5309 4462 5331 4491 5351 4519 5369 4545 5386 4570 5401 4593 5415 4615 5427 4635 -5437 4653 5445 4670 5451 4685 5456 4698 5459 4710 5461 4720 5460 4729 5458 4736 -5455 4742 5449 4745 5442 4747 5433 4748 5423 4746 5411 4743 5398 4738 5383 4732 -5366 4724 5348 4714 5328 4702 5306 4688 5283 4673 5258 4656 5232 4638 5204 4618 -5175 4596 5144 4572 5114 4548 5083 4524 5052 4499 5021 4473 4990 4447 4958 4420 -4927 4392 4895 4364 4863 4335 4831 4305 4799 4275 4766 4244 4733 4212 4701 4180 -4668 4148 4635 4115 4603 4082 4571 4049 4541 4017 4510 3985 4481 3952 4452 3921 -4424 3889 4396 3857 4369 3826 4343 3794 4317 3763 4292 3732 4268 3702 4244 3671 -4221 3641 4198 3611 4178 3583 4159 3557 4142 3532 4127 3509 4114 3487 4102 3467 -4092 3449 4083 3432 4077 3417 4072 3404 4069 3392 4067 3382 4068 3373 4070 3366 -4074 3361 4079 3357 4086 3355 4095 3354 4105 3356 4117 3359 4130 3364 4145 3370 -4162 3379 4180 3388 4200 3400 4222 3414 4245 3429 4270 3446 4296 3464 4324 3484 -4354 3507 128 P closepath -1 sg fill -gr -gs -4354 3507 4384 3530 4415 3554 4445 3578 4476 3604 4507 3629 4539 3656 4570 3683 -4602 3711 4634 3739 4665 3768 4698 3797 4730 3828 4762 3858 4795 3890 4828 3922 -4861 3955 4893 3987 4925 4020 4957 4053 4988 4085 5018 4117 5048 4150 5077 4181 -5105 4213 5133 4245 5160 4276 5186 4308 5212 4339 5237 4370 5261 4400 5285 4431 -5309 4462 5331 4491 5351 4519 5369 4545 5386 4570 5401 4593 5415 4615 5427 4635 -5437 4653 5445 4670 5451 4685 5456 4698 5459 4710 5461 4720 5460 4729 5458 4736 -5455 4742 5449 4745 5442 4747 5433 4748 5423 4746 5411 4743 5398 4738 5383 4732 -5366 4724 5348 4714 5328 4702 5306 4688 5283 4673 5258 4656 5232 4638 5204 4618 -5175 4596 5144 4572 5114 4548 5083 4524 5052 4499 5021 4473 4990 4447 4958 4420 -4927 4392 4895 4364 4863 4335 4831 4305 4799 4275 4766 4244 4733 4212 4701 4180 -4668 4148 4635 4115 4603 4082 4571 4049 4541 4017 4510 3985 4481 3952 4452 3921 -4424 3889 4396 3857 4369 3826 4343 3794 4317 3763 4292 3732 4268 3702 4244 3671 -4221 3641 4198 3611 4178 3583 4159 3557 4142 3532 4127 3509 4114 3487 4102 3467 -4092 3449 4083 3432 4077 3417 4072 3404 4069 3392 4067 3382 4068 3373 4070 3366 -4074 3361 4079 3357 4086 3355 4095 3354 4105 3356 4117 3359 4130 3364 4145 3370 -4162 3379 4180 3388 4200 3400 4222 3414 4245 3429 4270 3446 4296 3464 4324 3484 -4354 3507 128 P closepath -1.25 slw 1 sg str -gr -gs -2882.625 2491.625 m -2882.625 5362.625 L -1.25 slw 0 sg str -gr -gs -2882.625 5362.625 m -5831.625 5362.625 L -1.25 slw 0 sg str -gr -gs -2528 3400 2806 4355 R -1 sg fill -gr -gs 2667 3877 t 270 rotate -2667 -3877 t -/_Helvetica ff [208 0 0 -208 0 0] mf sf -2190 3946 m 0 sg (Pressure) show -gr -gs -3772 5458 4571 5736 R -1 sg fill -gr -3772 5666 m 0 sg (Volume) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob06a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob06a.gif deleted file mode 100755 index 27b4c02b8..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob06a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av1.eps deleted file mode 100755 index 33e0d69ed..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av1.eps +++ /dev/null @@ -1,802 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 395 208 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Tue, Apr 9, 1996 3:11 PM -%%DocumentFonts: (atend) -%%EndComments -0 208 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -44.50 18.00 44.50 171.00 MacLine -376.50 18.00 376.50 171.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 21.62 369.50 21.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 21.25 369.50 21.25 MacLine -44.50 21.25 51.50 21.25 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(5) 35.50 24.50 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 27.75 373.00 27.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 27.25 373.00 27.25 MacLine -44.50 27.25 48.00 27.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 33.75 373.00 33.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 33.25 373.00 33.25 MacLine -44.50 33.25 48.00 33.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 39.75 373.00 39.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 39.25 373.00 39.25 MacLine -44.50 39.25 48.00 39.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 45.75 373.00 45.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 45.25 373.00 45.25 MacLine -44.50 45.25 48.00 45.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 51.62 369.50 51.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 51.25 369.50 51.25 MacLine -44.50 51.25 51.50 51.25 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 35.50 54.50 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 57.88 373.00 57.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 57.38 373.00 57.38 MacLine -44.50 57.38 48.00 57.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 63.88 373.00 63.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 63.38 373.00 63.38 MacLine -44.50 63.38 48.00 63.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 69.88 373.00 69.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 69.38 373.00 69.38 MacLine -44.50 69.38 48.00 69.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 75.88 373.00 75.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 75.38 373.00 75.38 MacLine -44.50 75.38 48.00 75.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 81.75 369.50 81.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 81.38 369.50 81.38 MacLine -44.50 81.38 51.50 81.38 MacLine -1 ps -10.00 (_Helvetica) 0 F -(3) 35.50 84.62 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 87.88 373.00 87.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 87.38 373.00 87.38 MacLine -44.50 87.38 48.00 87.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 93.88 373.00 93.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 93.38 373.00 93.38 MacLine -44.50 93.38 48.00 93.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 99.88 373.00 99.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 99.38 373.00 99.38 MacLine -44.50 99.38 48.00 99.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 105.88 373.00 105.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 105.38 373.00 105.38 MacLine -44.50 105.38 48.00 105.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 111.75 369.50 111.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 111.38 369.50 111.38 MacLine -44.50 111.38 51.50 111.38 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 35.50 114.62 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 117.88 373.00 117.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 117.38 373.00 117.38 MacLine -44.50 117.38 48.00 117.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 123.88 373.00 123.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 123.38 373.00 123.38 MacLine -44.50 123.38 48.00 123.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 129.88 373.00 129.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 129.38 373.00 129.38 MacLine -44.50 129.38 48.00 129.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 136.00 373.00 136.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 135.50 373.00 135.50 MacLine -44.50 135.50 48.00 135.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 141.88 369.50 141.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 141.50 369.50 141.50 MacLine -44.50 141.50 51.50 141.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(1) 35.50 144.75 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 148.00 373.00 148.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 147.50 373.00 147.50 MacLine -44.50 147.50 48.00 147.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 154.00 373.00 154.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 153.50 373.00 153.50 MacLine -44.50 153.50 48.00 153.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 160.00 373.00 160.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 159.50 373.00 159.50 MacLine -44.50 159.50 48.00 159.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 166.00 373.00 166.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 165.50 373.00 165.50 MacLine -44.50 165.50 48.00 165.50 MacLine -1 ps -1.00 ps -376.50 171.50 369.50 171.50 MacLine -44.50 171.50 51.50 171.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 35.50 174.75 5.50 WS -14.00 (_Helvetica) 0 F -gsave 10.75 114.75 translate -90 rotate -(P \(Pa\)) 0.00 0.00 39.62 WS -grestore -1.00 ps -44.50 171.50 376.50 171.50 MacLine -44.50 17.50 376.50 17.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -363.75 168.00 363.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -363.25 17.50 363.25 21.00 MacLine -363.25 171.50 363.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -346.00 168.00 346.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -345.50 17.50 345.50 21.00 MacLine -345.50 171.50 345.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -328.25 168.00 328.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -327.75 17.50 327.75 21.00 MacLine -327.75 171.50 327.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -310.50 164.50 310.50 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -310.12 17.50 310.12 24.50 MacLine -310.12 171.50 310.12 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(15) 305.12 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -292.88 168.00 292.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -292.38 17.50 292.38 21.00 MacLine -292.38 171.50 292.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -275.12 168.00 275.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -274.62 17.50 274.62 21.00 MacLine -274.62 171.50 274.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -257.50 168.00 257.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -257.00 17.50 257.00 21.00 MacLine -257.00 171.50 257.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -239.75 168.00 239.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -239.25 17.50 239.25 21.00 MacLine -239.25 171.50 239.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -222.00 164.50 222.00 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -221.62 17.50 221.62 24.50 MacLine -221.62 171.50 221.62 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(10) 216.62 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -204.38 168.00 204.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -203.88 17.50 203.88 21.00 MacLine -203.88 171.50 203.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -186.62 168.00 186.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -186.12 17.50 186.12 21.00 MacLine -186.12 171.50 186.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -169.00 168.00 169.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -168.50 17.50 168.50 21.00 MacLine -168.50 171.50 168.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -151.25 168.00 151.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -150.75 17.50 150.75 21.00 MacLine -150.75 171.50 150.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -133.38 164.50 133.38 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -133.00 17.50 133.00 24.50 MacLine -133.00 171.50 133.00 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(5) 130.75 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -115.88 168.00 115.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -115.38 17.50 115.38 21.00 MacLine -115.38 171.50 115.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -98.12 168.00 98.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -97.62 17.50 97.62 21.00 MacLine -97.62 171.50 97.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -80.38 168.00 80.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -79.88 17.50 79.88 21.00 MacLine -79.88 171.50 79.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -62.75 168.00 62.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -62.25 17.50 62.25 21.00 MacLine -62.25 171.50 62.25 168.00 MacLine -1 ps -1.00 ps -44.50 17.50 44.50 24.50 MacLine -44.50 171.50 44.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 42.25 184.25 5.50 WS -14.00 (_Helvetica) 0 F -(V \(m) 191.25 204.75 29.50 WS -9.75 (_Helvetica) 0 F -(3) 220.75 197.62 5.38 WS -14.00 (_Helvetica) 0 F -(\)) 226.12 204.75 4.62 WS -1 0 0 SetFore UseFore -2.00 ps -newpath 133.50 48.75 M -310.62 48.75 L -133.50 154.00 L -133.50 48.75 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -116.25 142.00 126.88 158.00 EraseRect -16.00 (_Helvetica) 0 F -(A) 116.25 154.38 10.62 WS -116.25 36.88 126.88 52.88 EraseRect -16.00 (_Helvetica) 0 F -(B) 116.25 49.25 10.62 WS -318.75 35.88 330.25 51.88 EraseRect -16.00 (_Helvetica) 0 F -(C) 318.75 48.25 11.50 WS -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av1.gif deleted file mode 100755 index 3ac5449c8..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av2.eps deleted file mode 100755 index a676e2358..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av2.eps +++ /dev/null @@ -1,1051 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 395 208 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Tue, Apr 9, 1996 3:13 PM -%%DocumentFonts: (atend) -%%EndComments -0 208 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -44.50 18.00 44.50 171.00 MacLine -376.50 18.00 376.50 171.00 MacLine -1 ps -1.00 ps -376.50 18.12 373.00 18.12 MacLine -44.50 18.12 48.00 18.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 24.12 373.00 24.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 23.62 373.00 23.62 MacLine -44.50 23.62 48.00 23.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 29.62 373.00 29.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 29.12 373.00 29.12 MacLine -44.50 29.12 48.00 29.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 35.00 369.50 35.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 34.62 369.50 34.62 MacLine -44.50 34.62 51.50 34.62 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(50) 30.00 37.88 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 40.62 373.00 40.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 40.12 373.00 40.12 MacLine -44.50 40.12 48.00 40.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 46.00 373.00 46.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 45.50 373.00 45.50 MacLine -44.50 45.50 48.00 45.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 51.50 373.00 51.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 51.00 373.00 51.00 MacLine -44.50 51.00 48.00 51.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 57.00 373.00 57.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 56.50 373.00 56.50 MacLine -44.50 56.50 48.00 56.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 62.38 369.50 62.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 62.00 369.50 62.00 MacLine -44.50 62.00 51.50 62.00 MacLine -1 ps -10.00 (_Helvetica) 0 F -(40) 30.00 65.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 68.00 373.00 68.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 67.50 373.00 67.50 MacLine -44.50 67.50 48.00 67.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 73.50 373.00 73.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 73.00 373.00 73.00 MacLine -44.50 73.00 48.00 73.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 78.88 373.00 78.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 78.38 373.00 78.38 MacLine -44.50 78.38 48.00 78.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 84.38 373.00 84.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 83.88 373.00 83.88 MacLine -44.50 83.88 48.00 83.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 89.75 369.50 89.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 89.38 369.50 89.38 MacLine -44.50 89.38 51.50 89.38 MacLine -1 ps -10.00 (_Helvetica) 0 F -(30) 30.00 92.62 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 95.38 373.00 95.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 94.88 373.00 94.88 MacLine -44.50 94.88 48.00 94.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 100.88 373.00 100.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 100.38 373.00 100.38 MacLine -44.50 100.38 48.00 100.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 106.25 373.00 106.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 105.75 373.00 105.75 MacLine -44.50 105.75 48.00 105.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 111.75 373.00 111.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 111.25 373.00 111.25 MacLine -44.50 111.25 48.00 111.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 117.12 369.50 117.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 116.75 369.50 116.75 MacLine -44.50 116.75 51.50 116.75 MacLine -1 ps -10.00 (_Helvetica) 0 F -(20) 30.00 120.00 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 122.75 373.00 122.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 122.25 373.00 122.25 MacLine -44.50 122.25 48.00 122.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 128.25 373.00 128.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 127.75 373.00 127.75 MacLine -44.50 127.75 48.00 127.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 133.62 373.00 133.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 133.12 373.00 133.12 MacLine -44.50 133.12 48.00 133.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 139.12 373.00 139.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 138.62 373.00 138.62 MacLine -44.50 138.62 48.00 138.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 144.50 369.50 144.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 144.12 369.50 144.12 MacLine -44.50 144.12 51.50 144.12 MacLine -1 ps -10.00 (_Helvetica) 0 F -(10) 30.00 147.38 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 150.12 373.00 150.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 149.62 373.00 149.62 MacLine -44.50 149.62 48.00 149.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 155.62 373.00 155.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 155.12 373.00 155.12 MacLine -44.50 155.12 48.00 155.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 161.00 373.00 161.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 160.50 373.00 160.50 MacLine -44.50 160.50 48.00 160.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 166.50 373.00 166.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 166.00 373.00 166.00 MacLine -44.50 166.00 48.00 166.00 MacLine -1 ps -1.00 ps -376.50 171.50 369.50 171.50 MacLine -44.50 171.50 51.50 171.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 35.50 174.75 5.50 WS -14.00 (_Helvetica) 0 F -gsave 10.75 114.75 translate -90 rotate -(P \(Pa\)) 0.00 0.00 39.62 WS -grestore -1.00 ps -44.50 171.50 376.50 171.50 MacLine -44.50 17.50 376.50 17.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -371.25 168.00 371.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -370.75 17.50 370.75 21.00 MacLine -370.75 171.50 370.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -363.75 168.00 363.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -363.25 17.50 363.25 21.00 MacLine -363.25 171.50 363.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -356.12 168.00 356.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -355.62 17.50 355.62 21.00 MacLine -355.62 171.50 355.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -348.38 164.50 348.38 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -348.00 17.50 348.00 24.50 MacLine -348.00 171.50 348.00 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(8) 345.75 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -341.00 168.00 341.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -340.50 17.50 340.50 21.00 MacLine -340.50 171.50 340.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -333.38 168.00 333.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -332.88 17.50 332.88 21.00 MacLine -332.88 171.50 332.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -325.75 168.00 325.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -325.25 17.50 325.25 21.00 MacLine -325.25 171.50 325.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -318.25 168.00 318.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -317.75 17.50 317.75 21.00 MacLine -317.75 171.50 317.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -310.62 166.25 310.62 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -310.12 17.50 310.12 22.75 MacLine -310.12 171.50 310.12 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -303.00 168.00 303.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -302.50 17.50 302.50 21.00 MacLine -302.50 171.50 302.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -295.38 168.00 295.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -294.88 17.50 294.88 21.00 MacLine -294.88 171.50 294.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -287.88 168.00 287.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -287.38 17.50 287.38 21.00 MacLine -287.38 171.50 287.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -280.25 168.00 280.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -279.75 17.50 279.75 21.00 MacLine -279.75 171.50 279.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -272.50 164.50 272.50 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -272.12 17.50 272.12 24.50 MacLine -272.12 171.50 272.12 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(6) 269.88 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -265.12 168.00 265.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -264.62 17.50 264.62 21.00 MacLine -264.62 171.50 264.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -257.50 168.00 257.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -257.00 17.50 257.00 21.00 MacLine -257.00 171.50 257.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -249.88 168.00 249.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -249.38 17.50 249.38 21.00 MacLine -249.38 171.50 249.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -242.25 168.00 242.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -241.75 17.50 241.75 21.00 MacLine -241.75 171.50 241.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -234.75 166.25 234.75 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -234.25 17.50 234.25 22.75 MacLine -234.25 171.50 234.25 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -227.12 168.00 227.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -226.62 17.50 226.62 21.00 MacLine -226.62 171.50 226.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -219.50 168.00 219.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -219.00 17.50 219.00 21.00 MacLine -219.00 171.50 219.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -212.00 168.00 212.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -211.50 17.50 211.50 21.00 MacLine -211.50 171.50 211.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -204.38 168.00 204.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -203.88 17.50 203.88 21.00 MacLine -203.88 171.50 203.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -196.62 164.50 196.62 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -196.25 17.50 196.25 24.50 MacLine -196.25 171.50 196.25 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 194.00 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -189.12 168.00 189.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -188.62 17.50 188.62 21.00 MacLine -188.62 171.50 188.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -181.62 168.00 181.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -181.12 17.50 181.12 21.00 MacLine -181.12 171.50 181.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -174.00 168.00 174.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -173.50 17.50 173.50 21.00 MacLine -173.50 171.50 173.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -166.38 168.00 166.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -165.88 17.50 165.88 21.00 MacLine -165.88 171.50 165.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -158.88 166.25 158.88 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -158.38 17.50 158.38 22.75 MacLine -158.38 171.50 158.38 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -151.25 168.00 151.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -150.75 17.50 150.75 21.00 MacLine -150.75 171.50 150.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -143.62 168.00 143.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -143.12 17.50 143.12 21.00 MacLine -143.12 171.50 143.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -136.12 168.00 136.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -135.62 17.50 135.62 21.00 MacLine -135.62 171.50 135.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -128.50 168.00 128.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -128.00 17.50 128.00 21.00 MacLine -128.00 171.50 128.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -120.75 164.50 120.75 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -120.38 17.50 120.38 24.50 MacLine -120.38 171.50 120.38 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 118.12 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -113.25 168.00 113.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -112.75 17.50 112.75 21.00 MacLine -112.75 171.50 112.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -105.75 168.00 105.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -105.25 17.50 105.25 21.00 MacLine -105.25 171.50 105.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -98.12 168.00 98.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -97.62 17.50 97.62 21.00 MacLine -97.62 171.50 97.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -90.50 168.00 90.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -90.00 17.50 90.00 21.00 MacLine -90.00 171.50 90.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -83.00 166.25 83.00 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -82.50 17.50 82.50 22.75 MacLine -82.50 171.50 82.50 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -75.38 168.00 75.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -74.88 17.50 74.88 21.00 MacLine -74.88 171.50 74.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -67.75 168.00 67.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -67.25 17.50 67.25 21.00 MacLine -67.25 171.50 67.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -60.12 168.00 60.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -59.62 17.50 59.62 21.00 MacLine -59.62 171.50 59.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -52.62 168.00 52.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -52.12 17.50 52.12 21.00 MacLine -52.12 171.50 52.12 168.00 MacLine -1 ps -1.00 ps -44.50 17.50 44.50 24.50 MacLine -44.50 171.50 44.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 42.25 184.25 5.50 WS -14.00 (_Helvetica) 0 F -(V \(m) 191.25 204.75 29.50 WS -9.75 (_Helvetica) 0 F -(3) 220.75 197.62 5.38 WS -14.00 (_Helvetica) 0 F -(\)) 226.12 204.75 4.62 WS -1 0 0 SetFore UseFore -2.00 ps -newpath 120.88 48.75 M -310.62 48.75 L -120.88 136.38 L -120.88 48.75 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -103.50 124.50 114.12 140.50 EraseRect -16.00 (_Helvetica) 0 F -(A) 103.50 136.88 10.62 WS -103.50 36.88 114.12 52.88 EraseRect -16.00 (_Helvetica) 0 F -(B) 103.50 49.25 10.62 WS -318.75 35.88 330.25 51.88 EraseRect -16.00 (_Helvetica) 0 F -(C) 318.75 48.25 11.50 WS -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av2.gif deleted file mode 100755 index 07c2a2581..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av3.eps deleted file mode 100755 index 6428b73a3..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av3.eps +++ /dev/null @@ -1,1284 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 395 208 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Tue, Apr 9, 1996 3:14 PM -%%DocumentFonts: (atend) -%%EndComments -0 208 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -44.50 18.00 44.50 171.00 MacLine -376.50 18.00 376.50 171.00 MacLine -1 ps -1.00 ps -376.50 17.50 373.00 17.50 MacLine -44.50 17.50 48.00 17.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 23.12 373.00 23.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 22.62 373.00 22.62 MacLine -44.50 22.62 48.00 22.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 28.12 369.50 28.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 27.75 369.50 27.75 MacLine -44.50 27.75 51.50 27.75 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(14) 30.00 31.00 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 33.38 373.00 33.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 32.88 373.00 32.88 MacLine -44.50 32.88 48.00 32.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 38.50 373.00 38.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 38.00 373.00 38.00 MacLine -44.50 38.00 48.00 38.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 43.62 373.00 43.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 43.12 373.00 43.12 MacLine -44.50 43.12 48.00 43.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 48.62 369.50 48.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 48.25 369.50 48.25 MacLine -44.50 48.25 51.50 48.25 MacLine -1 ps -10.00 (_Helvetica) 0 F -(12) 30.00 51.50 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 53.88 373.00 53.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 53.38 373.00 53.38 MacLine -44.50 53.38 48.00 53.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 59.12 373.00 59.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 58.62 373.00 58.62 MacLine -44.50 58.62 48.00 58.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 64.25 373.00 64.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 63.75 373.00 63.75 MacLine -44.50 63.75 48.00 63.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 69.25 369.50 69.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 68.88 369.50 68.88 MacLine -44.50 68.88 51.50 68.88 MacLine -1 ps -10.00 (_Helvetica) 0 F -(10) 30.00 72.12 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 74.50 373.00 74.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 74.00 373.00 74.00 MacLine -44.50 74.00 48.00 74.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 79.62 373.00 79.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 79.12 373.00 79.12 MacLine -44.50 79.12 48.00 79.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 84.75 373.00 84.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 84.25 373.00 84.25 MacLine -44.50 84.25 48.00 84.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 89.75 369.50 89.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 89.38 369.50 89.38 MacLine -44.50 89.38 51.50 89.38 MacLine -1 ps -10.00 (_Helvetica) 0 F -(8) 35.50 92.62 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 95.00 373.00 95.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 94.50 373.00 94.50 MacLine -44.50 94.50 48.00 94.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 100.12 373.00 100.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 99.62 373.00 99.62 MacLine -44.50 99.62 48.00 99.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 105.25 373.00 105.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 104.75 373.00 104.75 MacLine -44.50 104.75 48.00 104.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 110.25 369.50 110.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 109.88 369.50 109.88 MacLine -44.50 109.88 51.50 109.88 MacLine -1 ps -10.00 (_Helvetica) 0 F -(6) 35.50 113.12 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 115.50 373.00 115.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 115.00 373.00 115.00 MacLine -44.50 115.00 48.00 115.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 120.62 373.00 120.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 120.12 373.00 120.12 MacLine -44.50 120.12 48.00 120.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 125.75 373.00 125.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 125.25 373.00 125.25 MacLine -44.50 125.25 48.00 125.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 130.75 369.50 130.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 130.38 369.50 130.38 MacLine -44.50 130.38 51.50 130.38 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 35.50 133.62 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 136.12 373.00 136.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 135.62 373.00 135.62 MacLine -44.50 135.62 48.00 135.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 141.25 373.00 141.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 140.75 373.00 140.75 MacLine -44.50 140.75 48.00 140.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 146.38 373.00 146.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 145.88 373.00 145.88 MacLine -44.50 145.88 48.00 145.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 151.38 369.50 151.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 151.00 369.50 151.00 MacLine -44.50 151.00 51.50 151.00 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 35.50 154.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 156.62 373.00 156.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 156.12 373.00 156.12 MacLine -44.50 156.12 48.00 156.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 161.75 373.00 161.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 161.25 373.00 161.25 MacLine -44.50 161.25 48.00 161.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 166.88 373.00 166.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 166.38 373.00 166.38 MacLine -44.50 166.38 48.00 166.38 MacLine -1 ps -1.00 ps -376.50 171.50 369.50 171.50 MacLine -44.50 171.50 51.50 171.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 35.50 174.75 5.50 WS -14.00 (_Helvetica) 0 F -gsave 10.75 114.75 translate -90 rotate -(P \(Pa\)) 0.00 0.00 39.62 WS -grestore -1.00 ps -44.50 171.50 376.50 171.50 MacLine -44.50 17.50 376.50 17.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -375.75 168.00 375.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -375.25 17.50 375.25 21.00 MacLine -375.25 171.50 375.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -370.75 166.25 370.75 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -370.25 17.50 370.25 22.75 MacLine -370.25 171.50 370.25 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -365.75 168.00 365.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -365.25 17.50 365.25 21.00 MacLine -365.25 171.50 365.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -360.75 168.00 360.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -360.25 17.50 360.25 21.00 MacLine -360.25 171.50 360.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -355.75 168.00 355.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -355.25 17.50 355.25 21.00 MacLine -355.25 171.50 355.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -350.75 168.00 350.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -350.25 17.50 350.25 21.00 MacLine -350.25 171.50 350.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -345.50 164.50 345.50 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -345.12 17.50 345.12 24.50 MacLine -345.12 171.50 345.12 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(6) 342.88 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -340.62 168.00 340.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -340.12 17.50 340.12 21.00 MacLine -340.12 171.50 340.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -335.62 168.00 335.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -335.12 17.50 335.12 21.00 MacLine -335.12 171.50 335.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -330.62 168.00 330.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -330.12 17.50 330.12 21.00 MacLine -330.12 171.50 330.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -325.62 168.00 325.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -325.12 17.50 325.12 21.00 MacLine -325.12 171.50 325.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -320.62 166.25 320.62 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -320.12 17.50 320.12 22.75 MacLine -320.12 171.50 320.12 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -315.62 168.00 315.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -315.12 17.50 315.12 21.00 MacLine -315.12 171.50 315.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -310.62 168.00 310.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -310.12 17.50 310.12 21.00 MacLine -310.12 171.50 310.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -305.62 168.00 305.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -305.12 17.50 305.12 21.00 MacLine -305.12 171.50 305.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -300.62 168.00 300.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -300.12 17.50 300.12 21.00 MacLine -300.12 171.50 300.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -295.50 164.50 295.50 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -295.12 17.50 295.12 24.50 MacLine -295.12 171.50 295.12 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(5) 292.88 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -290.50 168.00 290.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -290.00 17.50 290.00 21.00 MacLine -290.00 171.50 290.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -285.50 168.00 285.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -285.00 17.50 285.00 21.00 MacLine -285.00 171.50 285.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -280.50 168.00 280.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -280.00 17.50 280.00 21.00 MacLine -280.00 171.50 280.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -275.50 168.00 275.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -275.00 17.50 275.00 21.00 MacLine -275.00 171.50 275.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -270.50 166.25 270.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -270.00 17.50 270.00 22.75 MacLine -270.00 171.50 270.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -265.50 168.00 265.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -265.00 17.50 265.00 21.00 MacLine -265.00 171.50 265.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -260.50 168.00 260.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -260.00 17.50 260.00 21.00 MacLine -260.00 171.50 260.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -255.50 168.00 255.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -255.00 17.50 255.00 21.00 MacLine -255.00 171.50 255.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -250.50 168.00 250.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -250.00 17.50 250.00 21.00 MacLine -250.00 171.50 250.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -245.38 164.50 245.38 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -245.00 17.50 245.00 24.50 MacLine -245.00 171.50 245.00 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 242.75 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -240.50 168.00 240.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -240.00 17.50 240.00 21.00 MacLine -240.00 171.50 240.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -235.38 168.00 235.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -234.88 17.50 234.88 21.00 MacLine -234.88 171.50 234.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -230.38 168.00 230.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -229.88 17.50 229.88 21.00 MacLine -229.88 171.50 229.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -225.38 168.00 225.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -224.88 17.50 224.88 21.00 MacLine -224.88 171.50 224.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -220.38 166.25 220.38 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -219.88 17.50 219.88 22.75 MacLine -219.88 171.50 219.88 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -215.38 168.00 215.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -214.88 17.50 214.88 21.00 MacLine -214.88 171.50 214.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -210.38 168.00 210.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -209.88 17.50 209.88 21.00 MacLine -209.88 171.50 209.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -205.38 168.00 205.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -204.88 17.50 204.88 21.00 MacLine -204.88 171.50 204.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -200.38 168.00 200.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -199.88 17.50 199.88 21.00 MacLine -199.88 171.50 199.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -195.25 164.50 195.25 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -194.88 17.50 194.88 24.50 MacLine -194.88 171.50 194.88 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(3) 192.62 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -190.38 168.00 190.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -189.88 17.50 189.88 21.00 MacLine -189.88 171.50 189.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -185.38 168.00 185.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -184.88 17.50 184.88 21.00 MacLine -184.88 171.50 184.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -180.25 168.00 180.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -179.75 17.50 179.75 21.00 MacLine -179.75 171.50 179.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -175.25 168.00 175.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -174.75 17.50 174.75 21.00 MacLine -174.75 171.50 174.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -170.25 166.25 170.25 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -169.75 17.50 169.75 22.75 MacLine -169.75 171.50 169.75 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -165.25 168.00 165.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -164.75 17.50 164.75 21.00 MacLine -164.75 171.50 164.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -160.25 168.00 160.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -159.75 17.50 159.75 21.00 MacLine -159.75 171.50 159.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -155.25 168.00 155.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -154.75 17.50 154.75 21.00 MacLine -154.75 171.50 154.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -150.25 168.00 150.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -149.75 17.50 149.75 21.00 MacLine -149.75 171.50 149.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -145.12 164.50 145.12 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -144.75 17.50 144.75 24.50 MacLine -144.75 171.50 144.75 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 142.50 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -140.25 168.00 140.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -139.75 17.50 139.75 21.00 MacLine -139.75 171.50 139.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -135.25 168.00 135.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -134.75 17.50 134.75 21.00 MacLine -134.75 171.50 134.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -130.25 168.00 130.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -129.75 17.50 129.75 21.00 MacLine -129.75 171.50 129.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -125.12 168.00 125.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -124.62 17.50 124.62 21.00 MacLine -124.62 171.50 124.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -120.12 166.25 120.12 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -119.62 17.50 119.62 22.75 MacLine -119.62 171.50 119.62 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -115.12 168.00 115.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -114.62 17.50 114.62 21.00 MacLine -114.62 171.50 114.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -110.12 168.00 110.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -109.62 17.50 109.62 21.00 MacLine -109.62 171.50 109.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -105.12 168.00 105.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -104.62 17.50 104.62 21.00 MacLine -104.62 171.50 104.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -100.12 168.00 100.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -99.62 17.50 99.62 21.00 MacLine -99.62 171.50 99.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -95.00 164.50 95.00 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -94.62 17.50 94.62 24.50 MacLine -94.62 171.50 94.62 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(1) 92.38 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -90.12 168.00 90.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -89.62 17.50 89.62 21.00 MacLine -89.62 171.50 89.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -85.12 168.00 85.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -84.62 17.50 84.62 21.00 MacLine -84.62 171.50 84.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -80.12 168.00 80.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -79.62 17.50 79.62 21.00 MacLine -79.62 171.50 79.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -75.12 168.00 75.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -74.62 17.50 74.62 21.00 MacLine -74.62 171.50 74.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -70.00 166.25 70.00 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -69.50 17.50 69.50 22.75 MacLine -69.50 171.50 69.50 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -65.00 168.00 65.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -64.50 17.50 64.50 21.00 MacLine -64.50 171.50 64.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -60.00 168.00 60.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -59.50 17.50 59.50 21.00 MacLine -59.50 171.50 59.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -55.00 168.00 55.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -54.50 17.50 54.50 21.00 MacLine -54.50 171.50 54.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -50.00 168.00 50.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -49.50 17.50 49.50 21.00 MacLine -49.50 171.50 49.50 168.00 MacLine -1 ps -1.00 ps -44.50 17.50 44.50 24.50 MacLine -44.50 171.50 44.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 42.25 184.25 5.50 WS -14.00 (_Helvetica) 0 F -(V \(m) 191.25 204.75 29.50 WS -9.75 (_Helvetica) 0 F -(3) 220.75 197.62 5.38 WS -14.00 (_Helvetica) 0 F -(\)) 226.12 204.75 4.62 WS -1 0 0 SetFore UseFore -2.00 ps -newpath 120.12 48.75 M -310.50 48.75 L -120.12 110.38 L -120.12 48.75 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -102.75 98.50 113.38 114.50 EraseRect -16.00 (_Helvetica) 0 F -(A) 102.75 110.88 10.62 WS -102.75 36.88 113.38 52.88 EraseRect -16.00 (_Helvetica) 0 F -(B) 102.75 49.25 10.62 WS -318.75 35.88 330.25 51.88 EraseRect -16.00 (_Helvetica) 0 F -(C) 318.75 48.25 11.50 WS -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av3.gif deleted file mode 100755 index d736d09d5..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av4.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av4.eps deleted file mode 100755 index 8a73319de..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av4.eps +++ /dev/null @@ -1,1062 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 395 208 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Tue, Apr 9, 1996 3:16 PM -%%DocumentFonts: (atend) -%%EndComments -0 208 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -44.50 18.00 44.50 171.00 MacLine -376.50 18.00 376.50 171.00 MacLine -1 ps -1.00 ps -376.50 17.50 373.00 17.50 MacLine -44.50 17.50 48.00 17.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 25.25 369.50 25.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 24.88 369.50 24.88 MacLine -44.50 24.88 51.50 24.88 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(1000) 19.00 28.12 22.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 32.62 373.00 32.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 32.12 373.00 32.12 MacLine -44.50 32.12 48.00 32.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 40.00 373.00 40.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 39.50 373.00 39.50 MacLine -44.50 39.50 48.00 39.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 47.38 373.00 47.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 46.88 373.00 46.88 MacLine -44.50 46.88 48.00 46.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 54.50 369.50 54.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 54.12 369.50 54.12 MacLine -44.50 54.12 51.50 54.12 MacLine -1 ps -10.00 (_Helvetica) 0 F -(800) 24.50 57.38 16.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 62.00 373.00 62.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 61.50 373.00 61.50 MacLine -44.50 61.50 48.00 61.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 69.38 373.00 69.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 68.88 373.00 68.88 MacLine -44.50 68.88 48.00 68.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 76.62 373.00 76.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 76.12 373.00 76.12 MacLine -44.50 76.12 48.00 76.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 83.88 369.50 83.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 83.50 369.50 83.50 MacLine -44.50 83.50 51.50 83.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(600) 24.50 86.75 16.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 91.38 373.00 91.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 90.88 373.00 90.88 MacLine -44.50 90.88 48.00 90.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 98.62 373.00 98.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 98.12 373.00 98.12 MacLine -44.50 98.12 48.00 98.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 106.00 373.00 106.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 105.50 373.00 105.50 MacLine -44.50 105.50 48.00 105.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 113.25 369.50 113.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 112.88 369.50 112.88 MacLine -44.50 112.88 51.50 112.88 MacLine -1 ps -10.00 (_Helvetica) 0 F -(400) 24.50 116.12 16.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 120.62 373.00 120.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 120.12 373.00 120.12 MacLine -44.50 120.12 48.00 120.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 128.00 373.00 128.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 127.50 373.00 127.50 MacLine -44.50 127.50 48.00 127.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 135.38 373.00 135.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 134.88 373.00 134.88 MacLine -44.50 134.88 48.00 134.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 142.50 369.50 142.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 142.12 369.50 142.12 MacLine -44.50 142.12 51.50 142.12 MacLine -1 ps -10.00 (_Helvetica) 0 F -(200) 24.50 145.38 16.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 150.00 373.00 150.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 149.50 373.00 149.50 MacLine -44.50 149.50 48.00 149.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 157.38 373.00 157.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 156.88 373.00 156.88 MacLine -44.50 156.88 48.00 156.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 164.62 373.00 164.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 164.12 373.00 164.12 MacLine -44.50 164.12 48.00 164.12 MacLine -1 ps -1.00 ps -376.50 171.50 369.50 171.50 MacLine -44.50 171.50 51.50 171.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 35.50 174.75 5.50 WS -14.00 (_Helvetica) 0 F -gsave 10.75 114.75 translate -90 rotate -(P \(Pa\)) 0.00 0.00 39.62 WS -grestore -1.00 ps -44.50 171.50 376.50 171.50 MacLine -44.50 17.50 376.50 17.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -375.38 168.00 375.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -374.88 17.50 374.88 21.00 MacLine -374.88 171.50 374.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -368.75 164.50 368.75 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -368.38 17.50 368.38 24.50 MacLine -368.38 171.50 368.38 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(100) 360.62 184.25 16.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -362.38 168.00 362.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -361.88 17.50 361.88 21.00 MacLine -361.88 171.50 361.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -356.00 168.00 356.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -355.50 17.50 355.50 21.00 MacLine -355.50 171.50 355.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -349.50 168.00 349.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -349.00 17.50 349.00 21.00 MacLine -349.00 171.50 349.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -343.00 168.00 343.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -342.50 17.50 342.50 21.00 MacLine -342.50 171.50 342.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -336.50 166.25 336.50 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -336.00 17.50 336.00 22.75 MacLine -336.00 171.50 336.00 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -330.00 168.00 330.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -329.50 17.50 329.50 21.00 MacLine -329.50 171.50 329.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -323.50 168.00 323.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -323.00 17.50 323.00 21.00 MacLine -323.00 171.50 323.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -317.12 168.00 317.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -316.62 17.50 316.62 21.00 MacLine -316.62 171.50 316.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -310.62 168.00 310.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -310.12 17.50 310.12 21.00 MacLine -310.12 171.50 310.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -304.00 164.50 304.00 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -303.62 17.50 303.62 24.50 MacLine -303.62 171.50 303.62 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(80) 298.62 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -297.62 168.00 297.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -297.12 17.50 297.12 21.00 MacLine -297.12 171.50 297.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -291.12 168.00 291.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -290.62 17.50 290.62 21.00 MacLine -290.62 171.50 290.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -284.75 168.00 284.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -284.25 17.50 284.25 21.00 MacLine -284.25 171.50 284.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -278.25 168.00 278.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -277.75 17.50 277.75 21.00 MacLine -277.75 171.50 277.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -271.75 166.25 271.75 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -271.25 17.50 271.25 22.75 MacLine -271.25 171.50 271.25 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -265.25 168.00 265.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -264.75 17.50 264.75 21.00 MacLine -264.75 171.50 264.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -258.75 168.00 258.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -258.25 17.50 258.25 21.00 MacLine -258.25 171.50 258.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -252.25 168.00 252.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -251.75 17.50 251.75 21.00 MacLine -251.75 171.50 251.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -245.88 168.00 245.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -245.38 17.50 245.38 21.00 MacLine -245.38 171.50 245.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -239.25 164.50 239.25 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -238.88 17.50 238.88 24.50 MacLine -238.88 171.50 238.88 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(60) 233.88 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -232.88 168.00 232.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -232.38 17.50 232.38 21.00 MacLine -232.38 171.50 232.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -226.38 168.00 226.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -225.88 17.50 225.88 21.00 MacLine -225.88 171.50 225.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -219.88 168.00 219.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -219.38 17.50 219.38 21.00 MacLine -219.38 171.50 219.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -213.38 168.00 213.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -212.88 17.50 212.88 21.00 MacLine -212.88 171.50 212.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -207.00 166.25 207.00 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -206.50 17.50 206.50 22.75 MacLine -206.50 171.50 206.50 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -200.50 168.00 200.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -200.00 17.50 200.00 21.00 MacLine -200.00 171.50 200.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -194.00 168.00 194.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -193.50 17.50 193.50 21.00 MacLine -193.50 171.50 193.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -187.50 168.00 187.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -187.00 17.50 187.00 21.00 MacLine -187.00 171.50 187.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -181.00 168.00 181.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -180.50 17.50 180.50 21.00 MacLine -180.50 171.50 180.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -174.38 164.50 174.38 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -174.00 17.50 174.00 24.50 MacLine -174.00 171.50 174.00 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(40) 169.00 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -168.12 168.00 168.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -167.62 17.50 167.62 21.00 MacLine -167.62 171.50 167.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -161.62 168.00 161.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -161.12 17.50 161.12 21.00 MacLine -161.12 171.50 161.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -155.12 168.00 155.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -154.62 17.50 154.62 21.00 MacLine -154.62 171.50 154.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -148.62 168.00 148.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -148.12 17.50 148.12 21.00 MacLine -148.12 171.50 148.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -142.12 166.25 142.12 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -141.62 17.50 141.62 22.75 MacLine -141.62 171.50 141.62 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -135.75 168.00 135.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -135.25 17.50 135.25 21.00 MacLine -135.25 171.50 135.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -129.25 168.00 129.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -128.75 17.50 128.75 21.00 MacLine -128.75 171.50 128.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -122.75 168.00 122.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -122.25 17.50 122.25 21.00 MacLine -122.25 171.50 122.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -116.25 168.00 116.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -115.75 17.50 115.75 21.00 MacLine -115.75 171.50 115.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -109.62 164.50 109.62 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -109.25 17.50 109.25 24.50 MacLine -109.25 171.50 109.25 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(20) 104.25 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -103.25 168.00 103.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -102.75 17.50 102.75 21.00 MacLine -102.75 171.50 102.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -96.88 168.00 96.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -96.38 17.50 96.38 21.00 MacLine -96.38 171.50 96.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -90.38 168.00 90.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -89.88 17.50 89.88 21.00 MacLine -89.88 171.50 89.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -83.88 168.00 83.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -83.38 17.50 83.38 21.00 MacLine -83.38 171.50 83.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -77.38 166.25 77.38 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -76.88 17.50 76.88 22.75 MacLine -76.88 171.50 76.88 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -70.88 168.00 70.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -70.38 17.50 70.38 21.00 MacLine -70.38 171.50 70.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -64.38 168.00 64.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -63.88 17.50 63.88 21.00 MacLine -63.88 171.50 63.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -58.00 168.00 58.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -57.50 17.50 57.50 21.00 MacLine -57.50 171.50 57.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -51.50 168.00 51.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -51.00 17.50 51.00 21.00 MacLine -51.00 171.50 51.00 168.00 MacLine -1 ps -1.00 ps -44.50 17.50 44.50 24.50 MacLine -44.50 171.50 44.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 42.25 184.25 5.50 WS -14.00 (_Helvetica) 0 F -(V \(m) 191.25 204.75 29.50 WS -9.75 (_Helvetica) 0 F -(3) 220.75 197.62 5.38 WS -14.00 (_Helvetica) 0 F -(\)) 226.12 204.75 4.62 WS -1 0 0 SetFore UseFore -2.00 ps -newpath 122.75 48.75 M -310.62 48.75 L -122.75 154.38 L -122.75 48.75 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -105.38 142.50 116.00 158.50 EraseRect -16.00 (_Helvetica) 0 F -(A) 105.38 154.88 10.62 WS -105.38 36.88 116.00 52.88 EraseRect -16.00 (_Helvetica) 0 F -(B) 105.38 49.25 10.62 WS -318.75 35.88 330.25 51.88 EraseRect -16.00 (_Helvetica) 0 F -(C) 318.75 48.25 11.50 WS -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av4.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av4.gif deleted file mode 100755 index 1e7a42e05..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av4.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av5.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av5.eps deleted file mode 100755 index 485f142d1..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av5.eps +++ /dev/null @@ -1,1064 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 395 208 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Tue, Apr 9, 1996 3:17 PM -%%DocumentFonts: (atend) -%%EndComments -0 208 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -44.50 18.00 44.50 171.00 MacLine -376.50 18.00 376.50 171.00 MacLine -1 ps -1.00 ps -376.50 17.50 373.00 17.50 MacLine -44.50 17.50 48.00 17.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 23.12 373.00 23.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 22.62 373.00 22.62 MacLine -44.50 22.62 48.00 22.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 28.12 369.50 28.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 27.75 369.50 27.75 MacLine -44.50 27.75 51.50 27.75 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(140) 24.50 31.00 16.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 33.38 373.00 33.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 32.88 373.00 32.88 MacLine -44.50 32.88 48.00 32.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 38.50 373.00 38.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 38.00 373.00 38.00 MacLine -44.50 38.00 48.00 38.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 43.62 373.00 43.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 43.12 373.00 43.12 MacLine -44.50 43.12 48.00 43.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 48.62 369.50 48.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 48.25 369.50 48.25 MacLine -44.50 48.25 51.50 48.25 MacLine -1 ps -10.00 (_Helvetica) 0 F -(120) 24.50 51.50 16.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 53.88 373.00 53.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 53.38 373.00 53.38 MacLine -44.50 53.38 48.00 53.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 59.12 373.00 59.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 58.62 373.00 58.62 MacLine -44.50 58.62 48.00 58.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 64.25 373.00 64.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 63.75 373.00 63.75 MacLine -44.50 63.75 48.00 63.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 69.25 369.50 69.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 68.88 369.50 68.88 MacLine -44.50 68.88 51.50 68.88 MacLine -1 ps -10.00 (_Helvetica) 0 F -(100) 24.50 72.12 16.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 74.50 373.00 74.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 74.00 373.00 74.00 MacLine -44.50 74.00 48.00 74.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 79.62 373.00 79.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 79.12 373.00 79.12 MacLine -44.50 79.12 48.00 79.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 84.75 373.00 84.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 84.25 373.00 84.25 MacLine -44.50 84.25 48.00 84.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 89.75 369.50 89.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 89.38 369.50 89.38 MacLine -44.50 89.38 51.50 89.38 MacLine -1 ps -10.00 (_Helvetica) 0 F -(80) 30.00 92.62 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 95.00 373.00 95.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 94.50 373.00 94.50 MacLine -44.50 94.50 48.00 94.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 100.12 373.00 100.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 99.62 373.00 99.62 MacLine -44.50 99.62 48.00 99.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 105.25 373.00 105.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 104.75 373.00 104.75 MacLine -44.50 104.75 48.00 104.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 110.25 369.50 110.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 109.88 369.50 109.88 MacLine -44.50 109.88 51.50 109.88 MacLine -1 ps -10.00 (_Helvetica) 0 F -(60) 30.00 113.12 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 115.50 373.00 115.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 115.00 373.00 115.00 MacLine -44.50 115.00 48.00 115.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 120.62 373.00 120.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 120.12 373.00 120.12 MacLine -44.50 120.12 48.00 120.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 125.75 373.00 125.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 125.25 373.00 125.25 MacLine -44.50 125.25 48.00 125.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 130.75 369.50 130.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 130.38 369.50 130.38 MacLine -44.50 130.38 51.50 130.38 MacLine -1 ps -10.00 (_Helvetica) 0 F -(40) 30.00 133.62 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 136.12 373.00 136.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 135.62 373.00 135.62 MacLine -44.50 135.62 48.00 135.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 141.25 373.00 141.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 140.75 373.00 140.75 MacLine -44.50 140.75 48.00 140.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 146.38 373.00 146.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 145.88 373.00 145.88 MacLine -44.50 145.88 48.00 145.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 151.38 369.50 151.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 151.00 369.50 151.00 MacLine -44.50 151.00 51.50 151.00 MacLine -1 ps -10.00 (_Helvetica) 0 F -(20) 30.00 154.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 156.62 373.00 156.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 156.12 373.00 156.12 MacLine -44.50 156.12 48.00 156.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 161.75 373.00 161.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 161.25 373.00 161.25 MacLine -44.50 161.25 48.00 161.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 166.88 373.00 166.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 166.38 373.00 166.38 MacLine -44.50 166.38 48.00 166.38 MacLine -1 ps -1.00 ps -376.50 171.50 369.50 171.50 MacLine -44.50 171.50 51.50 171.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 35.50 174.75 5.50 WS -14.00 (_Helvetica) 0 F -gsave 10.75 114.75 translate -90 rotate -(P \(Pa\)) 0.00 0.00 39.62 WS -grestore -1.00 ps -44.50 171.50 376.50 171.50 MacLine -44.50 17.50 376.50 17.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -373.12 168.00 373.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -372.62 17.50 372.62 21.00 MacLine -372.62 171.50 372.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -365.25 168.00 365.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -364.75 17.50 364.75 21.00 MacLine -364.75 171.50 364.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -357.38 164.50 357.38 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -357.00 17.50 357.00 24.50 MacLine -357.00 171.50 357.00 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(8) 354.75 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -349.62 168.00 349.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -349.12 17.50 349.12 21.00 MacLine -349.12 171.50 349.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -341.88 168.00 341.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -341.38 17.50 341.38 21.00 MacLine -341.38 171.50 341.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -334.00 168.00 334.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -333.50 17.50 333.50 21.00 MacLine -333.50 171.50 333.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -326.25 168.00 326.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -325.75 17.50 325.75 21.00 MacLine -325.75 171.50 325.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -318.38 166.25 318.38 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -317.88 17.50 317.88 22.75 MacLine -317.88 171.50 317.88 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -310.62 168.00 310.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -310.12 17.50 310.12 21.00 MacLine -310.12 171.50 310.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -302.75 168.00 302.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -302.25 17.50 302.25 21.00 MacLine -302.25 171.50 302.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -295.00 168.00 295.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -294.50 17.50 294.50 21.00 MacLine -294.50 171.50 294.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -287.12 168.00 287.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -286.62 17.50 286.62 21.00 MacLine -286.62 171.50 286.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -279.25 164.50 279.25 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -278.88 17.50 278.88 24.50 MacLine -278.88 171.50 278.88 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(6) 276.62 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -271.50 168.00 271.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -271.00 17.50 271.00 21.00 MacLine -271.00 171.50 271.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -263.75 168.00 263.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -263.25 17.50 263.25 21.00 MacLine -263.25 171.50 263.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -255.88 168.00 255.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -255.38 17.50 255.38 21.00 MacLine -255.38 171.50 255.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -248.12 168.00 248.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -247.62 17.50 247.62 21.00 MacLine -247.62 171.50 247.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -240.25 166.25 240.25 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -239.75 17.50 239.75 22.75 MacLine -239.75 171.50 239.75 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -232.50 168.00 232.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -232.00 17.50 232.00 21.00 MacLine -232.00 171.50 232.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -224.62 168.00 224.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -224.12 17.50 224.12 21.00 MacLine -224.12 171.50 224.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -216.88 168.00 216.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -216.38 17.50 216.38 21.00 MacLine -216.38 171.50 216.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -209.00 168.00 209.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -208.50 17.50 208.50 21.00 MacLine -208.50 171.50 208.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -201.12 164.50 201.12 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -200.75 17.50 200.75 24.50 MacLine -200.75 171.50 200.75 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 198.50 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -193.38 168.00 193.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -192.88 17.50 192.88 21.00 MacLine -192.88 171.50 192.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -185.62 168.00 185.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -185.12 17.50 185.12 21.00 MacLine -185.12 171.50 185.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -177.75 168.00 177.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -177.25 17.50 177.25 21.00 MacLine -177.25 171.50 177.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -170.00 168.00 170.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -169.50 17.50 169.50 21.00 MacLine -169.50 171.50 169.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -162.12 166.25 162.12 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -161.62 17.50 161.62 22.75 MacLine -161.62 171.50 161.62 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -154.38 168.00 154.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -153.88 17.50 153.88 21.00 MacLine -153.88 171.50 153.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -146.50 168.00 146.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -146.00 17.50 146.00 21.00 MacLine -146.00 171.50 146.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -138.75 168.00 138.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -138.25 17.50 138.25 21.00 MacLine -138.25 171.50 138.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -130.88 168.00 130.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -130.38 17.50 130.38 21.00 MacLine -130.38 171.50 130.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -123.00 164.50 123.00 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -122.62 17.50 122.62 24.50 MacLine -122.62 171.50 122.62 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 120.38 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -115.25 168.00 115.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -114.75 17.50 114.75 21.00 MacLine -114.75 171.50 114.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -107.50 168.00 107.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -107.00 17.50 107.00 21.00 MacLine -107.00 171.50 107.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -99.62 168.00 99.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -99.12 17.50 99.12 21.00 MacLine -99.12 171.50 99.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -91.88 168.00 91.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -91.38 17.50 91.38 21.00 MacLine -91.38 171.50 91.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -84.00 166.25 84.00 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -83.50 17.50 83.50 22.75 MacLine -83.50 171.50 83.50 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -76.25 168.00 76.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -75.75 17.50 75.75 21.00 MacLine -75.75 171.50 75.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -68.38 168.00 68.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -67.88 17.50 67.88 21.00 MacLine -67.88 171.50 67.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -60.62 168.00 60.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -60.12 17.50 60.12 21.00 MacLine -60.12 171.50 60.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -52.75 168.00 52.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -52.25 17.50 52.25 21.00 MacLine -52.25 171.50 52.25 168.00 MacLine -1 ps -1.00 ps -44.50 17.50 44.50 24.50 MacLine -44.50 171.50 44.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 42.25 184.25 5.50 WS -14.00 (_Helvetica) 0 F -(V \(m) 191.25 204.75 29.50 WS -9.75 (_Helvetica) 0 F -(3) 220.75 197.62 5.38 WS -14.00 (_Helvetica) 0 F -(\)) 226.12 204.75 4.62 WS -1 0 0 SetFore UseFore -2.00 ps -newpath 146.50 48.75 M -310.62 48.75 L -146.50 128.88 L -146.50 48.75 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -129.25 117.00 139.88 133.00 EraseRect -16.00 (_Helvetica) 0 F -(A) 129.25 129.38 10.62 WS -129.25 36.88 139.88 52.88 EraseRect -16.00 (_Helvetica) 0 F -(B) 129.25 49.25 10.62 WS -318.75 35.88 330.25 51.88 EraseRect -16.00 (_Helvetica) 0 F -(C) 318.75 48.25 11.50 WS -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av5.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av5.gif deleted file mode 100755 index 392d413ea..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av5.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av6.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av6.eps deleted file mode 100755 index 2c17daa7a..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av6.eps +++ /dev/null @@ -1,990 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 395 208 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Tue, Apr 9, 1996 3:18 PM -%%DocumentFonts: (atend) -%%EndComments -0 208 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -44.50 18.00 44.50 171.00 MacLine -376.50 18.00 376.50 171.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 20.75 373.00 20.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 20.25 373.00 20.25 MacLine -44.50 20.25 48.00 20.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 26.38 373.00 26.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 25.88 373.00 25.88 MacLine -44.50 25.88 48.00 25.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 31.88 369.50 31.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 31.50 369.50 31.50 MacLine -44.50 31.50 51.50 31.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(250) 24.50 34.75 16.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 37.62 373.00 37.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 37.12 373.00 37.12 MacLine -44.50 37.12 48.00 37.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 43.25 373.00 43.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 42.75 373.00 42.75 MacLine -44.50 42.75 48.00 42.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 48.75 373.00 48.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 48.25 373.00 48.25 MacLine -44.50 48.25 48.00 48.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 54.38 373.00 54.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 53.88 373.00 53.88 MacLine -44.50 53.88 48.00 53.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 59.88 369.50 59.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 59.50 369.50 59.50 MacLine -44.50 59.50 51.50 59.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(200) 24.50 62.75 16.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 65.62 373.00 65.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 65.12 373.00 65.12 MacLine -44.50 65.12 48.00 65.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 71.25 373.00 71.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 70.75 373.00 70.75 MacLine -44.50 70.75 48.00 70.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 76.75 373.00 76.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 76.25 373.00 76.25 MacLine -44.50 76.25 48.00 76.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 82.38 373.00 82.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 81.88 373.00 81.88 MacLine -44.50 81.88 48.00 81.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 87.88 369.50 87.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 87.50 369.50 87.50 MacLine -44.50 87.50 51.50 87.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(150) 24.50 90.75 16.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 93.62 373.00 93.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 93.12 373.00 93.12 MacLine -44.50 93.12 48.00 93.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 99.25 373.00 99.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 98.75 373.00 98.75 MacLine -44.50 98.75 48.00 98.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 104.75 373.00 104.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 104.25 373.00 104.25 MacLine -44.50 104.25 48.00 104.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 110.38 373.00 110.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 109.88 373.00 109.88 MacLine -44.50 109.88 48.00 109.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 115.88 369.50 115.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 115.50 369.50 115.50 MacLine -44.50 115.50 51.50 115.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(100) 24.50 118.75 16.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 121.62 373.00 121.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 121.12 373.00 121.12 MacLine -44.50 121.12 48.00 121.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 127.25 373.00 127.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 126.75 373.00 126.75 MacLine -44.50 126.75 48.00 126.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 132.75 373.00 132.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 132.25 373.00 132.25 MacLine -44.50 132.25 48.00 132.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 138.38 373.00 138.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 137.88 373.00 137.88 MacLine -44.50 137.88 48.00 137.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 143.88 369.50 143.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 143.50 369.50 143.50 MacLine -44.50 143.50 51.50 143.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(50) 30.00 146.75 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 149.62 373.00 149.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 149.12 373.00 149.12 MacLine -44.50 149.12 48.00 149.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 155.25 373.00 155.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 154.75 373.00 154.75 MacLine -44.50 154.75 48.00 154.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 160.75 373.00 160.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 160.25 373.00 160.25 MacLine -44.50 160.25 48.00 160.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 166.38 373.00 166.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 165.88 373.00 165.88 MacLine -44.50 165.88 48.00 165.88 MacLine -1 ps -1.00 ps -376.50 171.50 369.50 171.50 MacLine -44.50 171.50 51.50 171.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 35.50 174.75 5.50 WS -14.00 (_Helvetica) 0 F -gsave 10.75 114.75 translate -90 rotate -(P \(Pa\)) 0.00 0.00 39.62 WS -grestore -1.00 ps -44.50 171.50 376.50 171.50 MacLine -44.50 17.50 376.50 17.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -374.75 168.00 374.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -374.25 17.50 374.25 21.00 MacLine -374.25 171.50 374.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -365.38 164.50 365.38 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -365.00 17.50 365.00 24.50 MacLine -365.00 171.50 365.00 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(35) 360.00 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -356.38 168.00 356.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -355.88 17.50 355.88 21.00 MacLine -355.88 171.50 355.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -347.25 168.00 347.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -346.75 17.50 346.75 21.00 MacLine -346.75 171.50 346.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -338.12 168.00 338.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -337.62 17.50 337.62 21.00 MacLine -337.62 171.50 337.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -328.88 168.00 328.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -328.38 17.50 328.38 21.00 MacLine -328.38 171.50 328.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -319.62 164.50 319.62 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -319.25 17.50 319.25 24.50 MacLine -319.25 171.50 319.25 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(30) 314.25 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -310.62 168.00 310.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -310.12 17.50 310.12 21.00 MacLine -310.12 171.50 310.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -301.50 168.00 301.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -301.00 17.50 301.00 21.00 MacLine -301.00 171.50 301.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -292.25 168.00 292.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -291.75 17.50 291.75 21.00 MacLine -291.75 171.50 291.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -283.12 168.00 283.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -282.62 17.50 282.62 21.00 MacLine -282.62 171.50 282.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -273.88 164.50 273.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -273.50 17.50 273.50 24.50 MacLine -273.50 171.50 273.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(25) 268.50 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -264.75 168.00 264.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -264.25 17.50 264.25 21.00 MacLine -264.25 171.50 264.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -255.62 168.00 255.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -255.12 17.50 255.12 21.00 MacLine -255.12 171.50 255.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -246.50 168.00 246.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -246.00 17.50 246.00 21.00 MacLine -246.00 171.50 246.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -237.38 168.00 237.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -236.88 17.50 236.88 21.00 MacLine -236.88 171.50 236.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -228.00 164.50 228.00 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -227.62 17.50 227.62 24.50 MacLine -227.62 171.50 227.62 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(20) 222.62 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -219.00 168.00 219.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -218.50 17.50 218.50 21.00 MacLine -218.50 171.50 218.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -209.88 168.00 209.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -209.38 17.50 209.38 21.00 MacLine -209.38 171.50 209.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -200.75 168.00 200.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -200.25 17.50 200.25 21.00 MacLine -200.25 171.50 200.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -191.50 168.00 191.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -191.00 17.50 191.00 21.00 MacLine -191.00 171.50 191.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -182.25 164.50 182.25 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -181.88 17.50 181.88 24.50 MacLine -181.88 171.50 181.88 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(15) 176.88 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -173.25 168.00 173.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -172.75 17.50 172.75 21.00 MacLine -172.75 171.50 172.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -164.00 168.00 164.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -163.50 17.50 163.50 21.00 MacLine -163.50 171.50 163.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -154.88 168.00 154.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -154.38 17.50 154.38 21.00 MacLine -154.38 171.50 154.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -145.75 168.00 145.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -145.25 17.50 145.25 21.00 MacLine -145.25 171.50 145.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -136.50 164.50 136.50 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -136.12 17.50 136.12 24.50 MacLine -136.12 171.50 136.12 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(10) 131.12 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -127.38 168.00 127.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -126.88 17.50 126.88 21.00 MacLine -126.88 171.50 126.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -118.25 168.00 118.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -117.75 17.50 117.75 21.00 MacLine -117.75 171.50 117.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -109.12 168.00 109.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -108.62 17.50 108.62 21.00 MacLine -108.62 171.50 108.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -100.00 168.00 100.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -99.50 17.50 99.50 21.00 MacLine -99.50 171.50 99.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -90.62 164.50 90.62 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -90.25 17.50 90.25 24.50 MacLine -90.25 171.50 90.25 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(5) 88.00 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -81.62 168.00 81.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -81.12 17.50 81.12 21.00 MacLine -81.12 171.50 81.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -72.50 168.00 72.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -72.00 17.50 72.00 21.00 MacLine -72.00 171.50 72.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -63.38 168.00 63.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -62.88 17.50 62.88 21.00 MacLine -62.88 171.50 62.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -54.12 168.00 54.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -53.62 17.50 53.62 21.00 MacLine -53.62 171.50 53.62 168.00 MacLine -1 ps -1.00 ps -44.50 17.50 44.50 24.50 MacLine -44.50 171.50 44.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 42.25 184.25 5.50 WS -14.00 (_Helvetica) 0 F -(V \(m) 191.25 204.75 29.50 WS -9.75 (_Helvetica) 0 F -(3) 220.75 197.62 5.38 WS -14.00 (_Helvetica) 0 F -(\)) 226.12 204.75 4.62 WS -1 0 0 SetFore UseFore -2.00 ps -newpath 164.12 48.88 M -310.62 48.88 L -164.12 125.00 L -164.12 48.88 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -146.75 113.00 157.38 129.00 EraseRect -16.00 (_Helvetica) 0 F -(A) 146.75 125.38 10.62 WS -146.75 36.88 157.38 52.88 EraseRect -16.00 (_Helvetica) 0 F -(B) 146.75 49.25 10.62 WS -318.75 35.88 330.25 51.88 EraseRect -16.00 (_Helvetica) 0 F -(C) 318.75 48.25 11.50 WS -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av6.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av6.gif deleted file mode 100755 index 23a775075..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av6.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av7.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av7.eps deleted file mode 100755 index 19ff94e75..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av7.eps +++ /dev/null @@ -1,1033 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 395 208 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Tue, Apr 9, 1996 3:20 PM -%%DocumentFonts: (atend) -%%EndComments -0 208 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -44.50 18.00 44.50 171.00 MacLine -376.50 18.00 376.50 171.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 22.50 369.50 22.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 22.12 369.50 22.12 MacLine -44.50 22.12 51.50 22.12 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(80) 30.00 25.38 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 32.00 373.00 32.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 31.50 373.00 31.50 MacLine -44.50 31.50 48.00 31.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 41.38 373.00 41.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 40.88 373.00 40.88 MacLine -44.50 40.88 48.00 40.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 50.62 373.00 50.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 50.12 373.00 50.12 MacLine -44.50 50.12 48.00 50.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 59.88 369.50 59.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 59.50 369.50 59.50 MacLine -44.50 59.50 51.50 59.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(60) 30.00 62.75 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 69.38 373.00 69.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 68.88 373.00 68.88 MacLine -44.50 68.88 48.00 68.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 78.62 373.00 78.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 78.12 373.00 78.12 MacLine -44.50 78.12 48.00 78.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 88.00 373.00 88.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 87.50 373.00 87.50 MacLine -44.50 87.50 48.00 87.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 97.25 369.50 97.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 96.88 369.50 96.88 MacLine -44.50 96.88 51.50 96.88 MacLine -1 ps -10.00 (_Helvetica) 0 F -(40) 30.00 100.12 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 106.62 373.00 106.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 106.12 373.00 106.12 MacLine -44.50 106.12 48.00 106.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 116.00 373.00 116.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 115.50 373.00 115.50 MacLine -44.50 115.50 48.00 115.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 125.38 373.00 125.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 124.88 373.00 124.88 MacLine -44.50 124.88 48.00 124.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 134.50 369.50 134.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 134.12 369.50 134.12 MacLine -44.50 134.12 51.50 134.12 MacLine -1 ps -10.00 (_Helvetica) 0 F -(20) 30.00 137.38 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 144.00 373.00 144.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 143.50 373.00 143.50 MacLine -44.50 143.50 48.00 143.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 153.38 373.00 153.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 152.88 373.00 152.88 MacLine -44.50 152.88 48.00 152.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 162.62 373.00 162.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 162.12 373.00 162.12 MacLine -44.50 162.12 48.00 162.12 MacLine -1 ps -1.00 ps -376.50 171.50 369.50 171.50 MacLine -44.50 171.50 51.50 171.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 35.50 174.75 5.50 WS -14.00 (_Helvetica) 0 F -gsave 10.75 114.75 translate -90 rotate -(P \(Pa\)) 0.00 0.00 39.62 WS -grestore -1.00 ps -44.50 171.50 376.50 171.50 MacLine -44.50 17.50 376.50 17.50 MacLine -1 ps -1.00 ps -375.75 17.50 375.75 21.00 MacLine -375.75 171.50 375.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -370.00 168.00 370.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -369.50 17.50 369.50 21.00 MacLine -369.50 171.50 369.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -363.75 168.00 363.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -363.25 17.50 363.25 21.00 MacLine -363.25 171.50 363.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -357.38 164.50 357.38 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -357.00 17.50 357.00 24.50 MacLine -357.00 171.50 357.00 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(10) 352.00 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -351.25 168.00 351.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -350.75 17.50 350.75 21.00 MacLine -350.75 171.50 350.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -345.00 168.00 345.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -344.50 17.50 344.50 21.00 MacLine -344.50 171.50 344.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -338.75 168.00 338.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -338.25 17.50 338.25 21.00 MacLine -338.25 171.50 338.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -332.50 168.00 332.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -332.00 17.50 332.00 21.00 MacLine -332.00 171.50 332.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -326.25 166.25 326.25 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -325.75 17.50 325.75 22.75 MacLine -325.75 171.50 325.75 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -320.00 168.00 320.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -319.50 17.50 319.50 21.00 MacLine -319.50 171.50 319.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -313.75 168.00 313.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -313.25 17.50 313.25 21.00 MacLine -313.25 171.50 313.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -307.50 168.00 307.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -307.00 17.50 307.00 21.00 MacLine -307.00 171.50 307.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -301.25 168.00 301.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -300.75 17.50 300.75 21.00 MacLine -300.75 171.50 300.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -294.88 164.50 294.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -294.50 17.50 294.50 24.50 MacLine -294.50 171.50 294.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(8) 292.25 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -288.75 168.00 288.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -288.25 17.50 288.25 21.00 MacLine -288.25 171.50 288.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -282.50 168.00 282.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -282.00 17.50 282.00 21.00 MacLine -282.00 171.50 282.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -276.25 168.00 276.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -275.75 17.50 275.75 21.00 MacLine -275.75 171.50 275.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -270.00 168.00 270.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -269.50 17.50 269.50 21.00 MacLine -269.50 171.50 269.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -263.75 166.25 263.75 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -263.25 17.50 263.25 22.75 MacLine -263.25 171.50 263.25 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -257.50 168.00 257.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -257.00 17.50 257.00 21.00 MacLine -257.00 171.50 257.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -251.25 168.00 251.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -250.75 17.50 250.75 21.00 MacLine -250.75 171.50 250.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -245.00 168.00 245.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -244.50 17.50 244.50 21.00 MacLine -244.50 171.50 244.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -238.75 168.00 238.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -238.25 17.50 238.25 21.00 MacLine -238.25 171.50 238.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -232.38 164.50 232.38 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -232.00 17.50 232.00 24.50 MacLine -232.00 171.50 232.00 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(6) 229.75 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -226.25 168.00 226.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -225.75 17.50 225.75 21.00 MacLine -225.75 171.50 225.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -220.00 168.00 220.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -219.50 17.50 219.50 21.00 MacLine -219.50 171.50 219.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -213.75 168.00 213.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -213.25 17.50 213.25 21.00 MacLine -213.25 171.50 213.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -207.50 168.00 207.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -207.00 17.50 207.00 21.00 MacLine -207.00 171.50 207.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -201.25 166.25 201.25 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -200.75 17.50 200.75 22.75 MacLine -200.75 171.50 200.75 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -195.00 168.00 195.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -194.50 17.50 194.50 21.00 MacLine -194.50 171.50 194.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -188.75 168.00 188.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -188.25 17.50 188.25 21.00 MacLine -188.25 171.50 188.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -182.50 168.00 182.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -182.00 17.50 182.00 21.00 MacLine -182.00 171.50 182.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -176.25 168.00 176.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -175.75 17.50 175.75 21.00 MacLine -175.75 171.50 175.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -169.88 164.50 169.88 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -169.50 17.50 169.50 24.50 MacLine -169.50 171.50 169.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(4) 167.25 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -163.75 168.00 163.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -163.25 17.50 163.25 21.00 MacLine -163.25 171.50 163.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -157.50 168.00 157.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -157.00 17.50 157.00 21.00 MacLine -157.00 171.50 157.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -151.25 168.00 151.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -150.75 17.50 150.75 21.00 MacLine -150.75 171.50 150.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -145.00 168.00 145.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -144.50 17.50 144.50 21.00 MacLine -144.50 171.50 144.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -138.75 166.25 138.75 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -138.25 17.50 138.25 22.75 MacLine -138.25 171.50 138.25 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -132.50 168.00 132.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -132.00 17.50 132.00 21.00 MacLine -132.00 171.50 132.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -126.25 168.00 126.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -125.75 17.50 125.75 21.00 MacLine -125.75 171.50 125.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -120.00 168.00 120.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -119.50 17.50 119.50 21.00 MacLine -119.50 171.50 119.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -113.75 168.00 113.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -113.25 17.50 113.25 21.00 MacLine -113.25 171.50 113.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -107.38 164.50 107.38 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -107.00 17.50 107.00 24.50 MacLine -107.00 171.50 107.00 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2) 104.75 184.25 5.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -101.25 168.00 101.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -100.75 17.50 100.75 21.00 MacLine -100.75 171.50 100.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -95.00 168.00 95.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -94.50 17.50 94.50 21.00 MacLine -94.50 171.50 94.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -88.75 168.00 88.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -88.25 17.50 88.25 21.00 MacLine -88.25 171.50 88.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -82.50 168.00 82.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -82.00 17.50 82.00 21.00 MacLine -82.00 171.50 82.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -76.25 166.25 76.25 22.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -75.75 17.50 75.75 22.75 MacLine -75.75 171.50 75.75 166.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -70.00 168.00 70.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -69.50 17.50 69.50 21.00 MacLine -69.50 171.50 69.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -63.75 168.00 63.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -63.25 17.50 63.25 21.00 MacLine -63.25 171.50 63.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -57.50 168.00 57.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -57.00 17.50 57.00 21.00 MacLine -57.00 171.50 57.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -51.25 168.00 51.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -50.75 17.50 50.75 21.00 MacLine -50.75 171.50 50.75 168.00 MacLine -1 ps -1.00 ps -44.50 17.50 44.50 24.50 MacLine -44.50 171.50 44.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 42.25 184.25 5.50 WS -14.00 (_Helvetica) 0 F -(V \(m) 191.25 204.75 29.50 WS -9.75 (_Helvetica) 0 F -(3) 220.75 197.62 5.38 WS -14.00 (_Helvetica) 0 F -(\)) 226.12 204.75 4.62 WS -1 0 0 SetFore UseFore -2.00 ps -newpath 107.50 48.75 M -310.62 48.75 L -107.50 149.62 L -107.50 48.75 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -90.12 137.62 100.75 153.62 EraseRect -16.00 (_Helvetica) 0 F -(A) 90.12 150.00 10.62 WS -90.12 36.88 100.75 52.88 EraseRect -16.00 (_Helvetica) 0 F -(B) 90.12 49.25 10.62 WS -318.75 35.88 330.25 51.88 EraseRect -16.00 (_Helvetica) 0 F -(C) 318.75 48.25 11.50 WS -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av7.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av7.gif deleted file mode 100755 index 17d63e19f..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av7.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av8.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av8.eps deleted file mode 100755 index 82f3adfe0..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av8.eps +++ /dev/null @@ -1,1027 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 395 208 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Tue, Apr 9, 1996 3:22 PM -%%DocumentFonts: (atend) -%%EndComments -0 208 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -44.50 18.00 44.50 171.00 MacLine -376.50 18.00 376.50 171.00 MacLine -1 ps -1.00 ps -376.50 18.12 373.00 18.12 MacLine -44.50 18.12 48.00 18.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 23.25 373.00 23.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 22.75 373.00 22.75 MacLine -44.50 22.75 48.00 22.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 27.88 373.00 27.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 27.38 373.00 27.38 MacLine -44.50 27.38 48.00 27.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 32.38 369.50 32.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 32.00 369.50 32.00 MacLine -44.50 32.00 51.50 32.00 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -10.00 (_Helvetica) 0 F -(3000) 19.00 35.25 22.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 37.12 373.00 37.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 36.62 373.00 36.62 MacLine -44.50 36.62 48.00 36.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 41.88 373.00 41.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 41.38 373.00 41.38 MacLine -44.50 41.38 48.00 41.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 46.50 373.00 46.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 46.00 373.00 46.00 MacLine -44.50 46.00 48.00 46.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 51.12 373.00 51.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 50.62 373.00 50.62 MacLine -44.50 50.62 48.00 50.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 55.62 369.50 55.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 55.25 369.50 55.25 MacLine -44.50 55.25 51.50 55.25 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2500) 19.00 58.50 22.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 60.38 373.00 60.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 59.88 373.00 59.88 MacLine -44.50 59.88 48.00 59.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 65.12 373.00 65.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 64.62 373.00 64.62 MacLine -44.50 64.62 48.00 64.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 69.75 373.00 69.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 69.25 373.00 69.25 MacLine -44.50 69.25 48.00 69.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 74.38 373.00 74.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 73.88 373.00 73.88 MacLine -44.50 73.88 48.00 73.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 78.88 369.50 78.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 78.50 369.50 78.50 MacLine -44.50 78.50 51.50 78.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(2000) 19.00 81.75 22.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 83.62 373.00 83.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 83.12 373.00 83.12 MacLine -44.50 83.12 48.00 83.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 88.38 373.00 88.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 87.88 373.00 87.88 MacLine -44.50 87.88 48.00 87.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 93.00 373.00 93.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 92.50 373.00 92.50 MacLine -44.50 92.50 48.00 92.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 97.62 373.00 97.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 97.12 373.00 97.12 MacLine -44.50 97.12 48.00 97.12 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 102.12 369.50 102.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 101.75 369.50 101.75 MacLine -44.50 101.75 51.50 101.75 MacLine -1 ps -10.00 (_Helvetica) 0 F -(1500) 19.00 105.00 22.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 106.88 373.00 106.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 106.38 373.00 106.38 MacLine -44.50 106.38 48.00 106.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 111.50 373.00 111.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 111.00 373.00 111.00 MacLine -44.50 111.00 48.00 111.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 116.25 373.00 116.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 115.75 373.00 115.75 MacLine -44.50 115.75 48.00 115.75 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 120.88 373.00 120.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 120.38 373.00 120.38 MacLine -44.50 120.38 48.00 120.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 125.38 369.50 125.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 125.00 369.50 125.00 MacLine -44.50 125.00 51.50 125.00 MacLine -1 ps -10.00 (_Helvetica) 0 F -(1000) 19.00 128.25 22.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 130.12 373.00 130.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 129.62 373.00 129.62 MacLine -44.50 129.62 48.00 129.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 134.75 373.00 134.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 134.25 373.00 134.25 MacLine -44.50 134.25 48.00 134.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 139.50 373.00 139.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 139.00 373.00 139.00 MacLine -44.50 139.00 48.00 139.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 144.12 373.00 144.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 143.62 373.00 143.62 MacLine -44.50 143.62 48.00 143.62 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -51.50 148.62 369.50 148.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 148.25 369.50 148.25 MacLine -44.50 148.25 51.50 148.25 MacLine -1 ps -10.00 (_Helvetica) 0 F -(500) 24.50 151.50 16.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 153.38 373.00 153.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 152.88 373.00 152.88 MacLine -44.50 152.88 48.00 152.88 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 158.00 373.00 158.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 157.50 373.00 157.50 MacLine -44.50 157.50 48.00 157.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 162.75 373.00 162.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 162.25 373.00 162.25 MacLine -44.50 162.25 48.00 162.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -48.00 167.38 373.00 167.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.50 166.88 373.00 166.88 MacLine -44.50 166.88 48.00 166.88 MacLine -1 ps -1.00 ps -376.50 171.50 369.50 171.50 MacLine -44.50 171.50 51.50 171.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 35.50 174.75 5.50 WS -14.00 (_Helvetica) 0 F -gsave 10.75 114.75 translate -90 rotate -(P \(Pa\)) 0.00 0.00 39.62 WS -grestore -1.00 ps -44.50 171.50 376.50 171.50 MacLine -44.50 17.50 376.50 17.50 MacLine -1 ps -1.00 ps -376.50 17.50 376.50 24.50 MacLine -376.50 171.50 376.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(70) 371.50 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -367.50 168.00 367.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -367.00 17.50 367.00 21.00 MacLine -367.00 171.50 367.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -358.00 168.00 358.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -357.50 17.50 357.50 21.00 MacLine -357.50 171.50 357.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -348.50 168.00 348.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -348.00 17.50 348.00 21.00 MacLine -348.00 171.50 348.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -339.00 168.00 339.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -338.50 17.50 338.50 21.00 MacLine -338.50 171.50 338.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -329.50 164.50 329.50 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -329.12 17.50 329.12 24.50 MacLine -329.12 171.50 329.12 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(60) 324.12 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -320.12 168.00 320.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -319.62 17.50 319.62 21.00 MacLine -319.62 171.50 319.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -310.62 168.00 310.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -310.12 17.50 310.12 21.00 MacLine -310.12 171.50 310.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -301.12 168.00 301.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -300.62 17.50 300.62 21.00 MacLine -300.62 171.50 300.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -291.62 168.00 291.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -291.12 17.50 291.12 21.00 MacLine -291.12 171.50 291.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -282.00 164.50 282.00 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -281.62 17.50 281.62 24.50 MacLine -281.62 171.50 281.62 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(50) 276.62 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -272.62 168.00 272.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -272.12 17.50 272.12 21.00 MacLine -272.12 171.50 272.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -263.12 168.00 263.12 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -262.62 17.50 262.62 21.00 MacLine -262.62 171.50 262.62 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -253.62 168.00 253.62 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -253.12 17.50 253.12 21.00 MacLine -253.12 171.50 253.12 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -244.25 168.00 244.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -243.75 17.50 243.75 21.00 MacLine -243.75 171.50 243.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -234.62 164.50 234.62 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -234.25 17.50 234.25 24.50 MacLine -234.25 171.50 234.25 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(40) 229.25 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -225.25 168.00 225.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -224.75 17.50 224.75 21.00 MacLine -224.75 171.50 224.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -215.75 168.00 215.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -215.25 17.50 215.25 21.00 MacLine -215.25 171.50 215.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -206.25 168.00 206.25 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -205.75 17.50 205.75 21.00 MacLine -205.75 171.50 205.75 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -196.75 168.00 196.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -196.25 17.50 196.25 21.00 MacLine -196.25 171.50 196.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -187.12 164.50 187.12 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -186.75 17.50 186.75 24.50 MacLine -186.75 171.50 186.75 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(30) 181.75 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -177.75 168.00 177.75 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -177.25 17.50 177.25 21.00 MacLine -177.25 171.50 177.25 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -168.38 168.00 168.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -167.88 17.50 167.88 21.00 MacLine -167.88 171.50 167.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -158.88 168.00 158.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -158.38 17.50 158.38 21.00 MacLine -158.38 171.50 158.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -149.38 168.00 149.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -148.88 17.50 148.88 21.00 MacLine -148.88 171.50 148.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -139.75 164.50 139.75 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -139.38 17.50 139.38 24.50 MacLine -139.38 171.50 139.38 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(20) 134.38 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -130.38 168.00 130.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -129.88 17.50 129.88 21.00 MacLine -129.88 171.50 129.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -120.88 168.00 120.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -120.38 17.50 120.38 21.00 MacLine -120.38 171.50 120.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -111.38 168.00 111.38 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -110.88 17.50 110.88 21.00 MacLine -110.88 171.50 110.88 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -101.88 168.00 101.88 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -101.38 17.50 101.38 21.00 MacLine -101.38 171.50 101.38 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -92.25 164.50 92.25 24.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -91.88 17.50 91.88 24.50 MacLine -91.88 171.50 91.88 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(10) 86.88 184.25 11.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -83.00 168.00 83.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -82.50 17.50 82.50 21.00 MacLine -82.50 171.50 82.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -73.50 168.00 73.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -73.00 17.50 73.00 21.00 MacLine -73.00 171.50 73.00 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -64.00 168.00 64.00 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -63.50 17.50 63.50 21.00 MacLine -63.50 171.50 63.50 168.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -54.50 168.00 54.50 21.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -54.00 17.50 54.00 21.00 MacLine -54.00 171.50 54.00 168.00 MacLine -1 ps -1.00 ps -44.50 17.50 44.50 24.50 MacLine -44.50 171.50 44.50 164.50 MacLine -1 ps -10.00 (_Helvetica) 0 F -(0) 42.25 184.25 5.50 WS -14.00 (_Helvetica) 0 F -(V \(m) 191.25 204.75 29.50 WS -9.75 (_Helvetica) 0 F -(3) 220.75 197.62 5.38 WS -14.00 (_Helvetica) 0 F -(\)) 226.12 204.75 4.62 WS -1 0 0 SetFore UseFore -2.00 ps -newpath 130.38 48.75 M -310.62 48.75 L -130.38 146.38 L -130.38 48.75 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -113.12 134.50 123.75 150.50 EraseRect -16.00 (_Helvetica) 0 F -(A) 113.12 146.88 10.62 WS -113.12 36.88 123.75 52.88 EraseRect -16.00 (_Helvetica) 0 F -(B) 113.12 49.25 10.62 WS -318.75 35.88 330.25 51.88 EraseRect -16.00 (_Helvetica) 0 F -(C) 318.75 48.25 11.50 WS -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av8.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av8.gif deleted file mode 100755 index 4cd2fb71c..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype45/prob07av8.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob01v1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob01v1.eps deleted file mode 100755 index 69e1596b8..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob01v1.eps +++ /dev/null @@ -1,685 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: Untitled3.create -%%Creator: Create -%%CreationDate: Fri Nov 1 10:28:11 1996 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 108 147 504 632 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(T@fr_fnp5]_hl(boY=BQDKp) -% 5@l^1atd>$rEWcNFJn5+k)T>/cr8NU<0LlZ=X82,n$41>Y]P:qC$`90Q4m-CX\PqQ4S\X?FS -% XK)n-H19S%Rc9r=@OVdP:`%jn*fWHY7L_iHC]1l_;f":3'sYdCBT!Foc*ma9POu -% JK[@L<"]4R[S54OOTm&2*.m@>Uj> -% YDae7Mg@^1&r9U#pMW>$*`Sj%?",H7N5p_n_Y^Z-ifeV!C3l>"&kpo,lh!ZQR)W9Tdeb0F/3u+;.'DK4s;h%sZC"B8\BWpucsTFohXnLQ[op*i_b'B`Y8Jb,M:lJ=8_M -% #U$@%PSuFsgMF$))=)1_p?'\f@tse&=s=Re9ICP`9;e?&b%i0,i]/N!T_hS*="8H*4"4U -% j0$C0/J4;V;[/m(TKYuP:r,'D45W=9pZ#K&L]'4qXiN$UV*,gR7g,^"P_m,`R+MRarM45o4+ -% G7oulPtp+9`1EOd*7mL/Ad#hD!_g.6d2[A'E_Ho%0TGFb?8dX$)4H$IQ9/h?D!06Q*,un*/G -% dC6=M'=N!2_/.hXBkN!IfK?dJl+V^%65<(mC9-t!TO6qfSMT[!OC&QTq)JF6B'hE0>n!Y;L(@"ZQDg$ -% PD3AdABq_L)fZE76W2nH/"Kb\jLLN9O[0VsPc=BrNcfpr#*Gnl8!\ctUHuIXsTS6-_b?K4!^ -% O6S%0Pmp>j+)'K"9qHUM'+AP;TFG^Ng+1kZ(Ij&a%^(BuMa8\)&-tRDn7,UZgt&tn6 -% 6+OZ?7/u\$I?]l!FS2!K:m`>JcS4Vb)L9E]OBYnVo-57E!SXL>2_^MK1rejF%=.emm>)`q3g -% T+.>sqjVDnj+n=p4j"@m&7uXmW#P#\b8c`EqKB5\)Ei8=\]Q?e*(&%F9L4 -% 66Uh^<^e';OU"L7)=kF"#V"]K#`+_s!rK>`mQiN4OT_E;>*+Ra"QBRcJ-,ck#;RU*b?];@;f -% G!I(;c#>)@FlpC,\kfYg]&o_<*;*`m*&%%%Q>LOl9>[c?,(XS\oPD1#_@Y/^6(=ounC>3O_eb: -% ie,Q,b72?8B-8889bF%O[9/GJqaKh(BAtQj':'2Fa]@8(EL^TU"H&u2Q*=$cpBEVGKmr41l! -% FNVC,;'.#\$O5UbjX94L$35%tY%ntaY10Zm&h3&?'\9O(DL.T3%)FING1h+:3%\o>OS5F8<: -% "is\p5^:*pWGuR(k_N0>hJk6,WIt9bAV8'#U]F2W!^X\bL,5KR%[FR5:BEq8Zf0pd[g3$\*H93bjon4J5\D:V03(W4#CRE!$0s"H$WH",k<5mNA#-?.p@m[ -% VAelDjW#V*rX-g^bnD'?Jm0jg-KAYk_9;1lN-31Y,5pd7!8C,RlY8mX/MlCG?Zs3A42$^_[m -% %g"$GN7(3g,Q4mUtaX'<%kFT=Ys8J?i?#!%Wn%?a.X;P4\U!"=A].$-&b6>KjZ.C6CgiU5ee -% $69ueJ,h&Q6&;p/inVP3^*b)B/S6OL*:#T#2asTNJ%XU/%f*#j&:abD]O]ckQ,HJTXgJ'`jU -% "38&lU5E!3@a!bOLt9_;d"@n+gO.mKsV+3>7g=>$FERfq<%;nX9p7M#boQY':DkU8=+]W(;U -% lT@fr_foC5]_jB)DPk_BJP9LQ -% o&I&d(/A;N)>H9RW.uEPN%0@Aa"dJ.[6l/9U.5@$?U$_/[Bp9!RPAcCg"(G2T>VhG:k8UH@6 -% Jk4ErkqiPb!'4\LUI>H_7ha,O:0_!H/A^PL,DTMr)4jp)Pti3^0rZ1,f"?(.X>)?L%P'Nj(r -% ^&S4I3S0d0rhq3[(h3[S5U?sY63ns(=HJ@Z6.isWDt7a(=)c&k8(Va+m3Nl`L-918LXQ8X$B -% !Va(C2TkW<7[)l'6Ia5GZ4F=';BXVk5F<"^'c7K+1jcGmcgo+G:J?!_+<7!.`"A]k+^IE+DD -% 8*Jhgs3$NGcAr5)rgA0=UCnaU770$9;Ql_8K>1mD7"TSj:Gsd`sUd%@mZ605Z;Nq.r6*N7H; -% )SR(8L4Yd-HT5T!2.+/(s_g/=<*29k#krHR-0g*_IjXP`VjuB+9hs&_%;6!4%$A=Jg,S\VY4==QVlr5Z=FdWT(e -% ^/EH)qYGZj![smC(g`nuVr!nU&(RPb+fsE*0^;+hYE:9Q-?mOt%JUqDQeU36hdC`5&kEg+m- -% N`qQOO&5+!n.X5&H/QpS(EX7E5.MQSXD*^( -% Pik.AF8N=6&XGNSTY@>n8\^'W??gj[m2eN6ss<"^"W_b2;%D]D0EU,T<)H$qRYM.=`DSJ=P\ -% c8>A'%BmS0@:Ih*+`$CP`"i`(l,Fh!\b0>;/\A^>.tF=F4Q1Ke@6&P*^=[;I48FN6BuhOq@5 -% \$2+tqHtU!$uRrRE#a=IfhgQd2D,1C)0E66Kc_E1=&T -% A/qcTg:mnN,:gns\W?[_;+>9RQ-Jh#Q.%SZ0+$C\m(`&2_Ek]:Ho^GmbX%pdR:i!>:O%J%er1aSOID6$%TD(=2GX1K2qsH"'AeF! -% #WjT;DHf?gmPaKT@!79'K$ -% o!rS"2I18#<>nPo8g5G`)KdecmT[uSH-Hu4?#5\9)?Y6+.S;qXPsQe7,S+1\m>AH3P4\W/A9 -% :P0"iFp0^=+c=l69b\o^b03a?C[)EM_(#dO?kQJQWYr^J#:=O-4^WoBkDEpt5X>Ak!7]c*bH<""=i0r;d]r^M?%FRN*rLSI(':0FP[N#e0E?d-DY:8ZXC14I2HHT -% PU'R(p5gqREZ#@lp2MVT,&d$F1dKU;lW+DJr=,YSB.eTT2/YN^Un,ZPjTa%?$eMHX`!oJ%K9 -% p'j;9SnZQZ;/ULa^+>`RTg(9A-)d_GQe(<9@qXim&hPgmU!N[g3\DF<'W\K"O&8o(pM-rms' -% G2JNKSr$Bqb/,=6i8]3h)J+;7jB!J*t'h#jQU_)+ojPfklOZOef$/XO#.*"H$W_Z2`49!^Gs//l?8bOs0D/:,p]Ce("TVO*TnU,Gm3&e4?E -% Y+^XRi8%LlWkc-8QI90:5HE>i!^Qe2juaok\>65?P/jedb4x -% EndEmbeddedGraphics N 1868 74c E 82 S 34226 R e336b4e9 -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -59 161 494 384 rectclip -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 66 169] concat -0 0 0 1 10 SU -gsave -/Times-Bold findfont 18 scalefont [1 0 0 -1 0 0] makefont -164 -exch -defineuserobject -164 execuserobject setfont -281 62 T -15 flipV -7.5 7.5 T --6.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(A) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -164 execuserobject setfont -159 47 T -15 flipV -7.5 7.5 T --6.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(B) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -164 execuserobject setfont -88 40 T -15 flipV -7.5 7.5 T --6.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(C) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -164 execuserobject setfont -8 175 T -15 flipV -7.5 7.5 T --6.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(D) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -164 execuserobject setfont -158 329 T -15 flipV -6.5 7.5 T --5.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(F) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -164 execuserobject setfont -91 296 T -15 flipV -7.5 7.5 T --6.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(E) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -164 execuserobject setfont -283 293 T -15 flipV -8.5 7.5 T --7.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(G) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -164 execuserobject setfont -286 174 T -15 flipV -8.5 7.5 T --7.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(H) show -0 0 T -grestore -grestore -0 0 2 1 10 SU -[-4.37113e-08 1 1 4.37113e-08 149 161] concat -N -0 nxsetgray -gsave -42 38 0 0 oval fill -grestore -2 L -0 nxsetgray -gsave -42 38 0 0 oval 0.02381 0.026316 S s -grestore -0 0 T -grestore -0 0 2 1 10 SU -[-4.37113e-08 1 1 4.37113e-08 409 11.999999] concat -N -0 nxsetgray -gsave -42 38 0 0 oval fill -grestore -2 L -0 nxsetgray -gsave -42 38 0 0 oval 0.02381 0.026316 S s -grestore -0 0 T -grestore -0 0 2 1 10 SU -[-4.37113e-08 1 1 4.37113e-08 407 316] concat -N -0 nxsetgray -gsave -42 38 0 0 oval fill -grestore -2 L -0 nxsetgray -gsave -42 38 0 0 oval 0.02381 0.026316 S s -grestore -0 0 T -grestore -0 0 2 1 10 SU -[4] 0 setdash -166.88208 185.066956 T -N -0 nxsetgray -266.235809 154.866089 0 0 line -30.186926 266.235809 154.866089 arrow -2 L -0 nxsetgray -266.235809 154.866089 0 0 line -30.186926 266.235809 154.866089 arrow -0 0 T -grestore -0 0 2 1 10 SU -[4] 0 setdash -165.38205 29.933029 T -N -0 nxsetgray -267.23587 -153.133926 0 153.133926 line -150.18515 0 153.133926 arrow -2 L -0 nxsetgray -267.23587 -153.133926 0 153.133926 line -150.18515 0 153.133926 arrow -0 0 T -grestore -0 0 2 1 10 SU -[4] 0 setdash -431.499969 32.499985 T -N -0 nxsetgray -1.000031 -308 0 308 line -90.18338 0 308 arrow -2 L -0 nxsetgray -1.000031 -308 0 308 line -90.18338 0 308 arrow -0 0 T -grestore -0 0 2 1 10 SU -167 69 T -N -0 nxsetgray -112 -111.999969 0 111.999969 line --45.00132 112 0 arrow -2 L -0 nxsetgray -112 -111.999969 0 111.999969 line --45.00132 112 0 arrow -0 0 T -grestore -0 0 2 1 10 SU -167 181 T -N -0 nxsetgray -112 112 0 0 line -45.001328 112 112 arrow -2 L -0 nxsetgray -112 112 0 0 line -45.001328 112 112 arrow -0 0 T -grestore -0 0 2 1 10 SU -27 180 T -N -0 nxsetgray -140 0 0 0 line -180 0 0 arrow -2 L -0 nxsetgray -140 0 0 0 line -180 0 0 arrow -0 0 T -grestore -0 0 2 1 10 SU -167 68 T -N -0 nxsetgray -0 -112 0 112 line --90.002655 0 0 arrow -2 L -0 nxsetgray -0 -112 0 112 line --90.002655 0 0 arrow -0 0 T -grestore -0 0 2 1 10 SU -167 181 T -N -0 nxsetgray -112 0 0 0 line -2 L -0 nxsetgray -112 0 0 0 line -0 0 T -grestore -0 0 0 1 10 SU -gsave -164 execuserobject setfont -460 23 T -11 flipV -5.5 5.5 T --4.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(x) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -164 execuserobject setfont -459 328 T -14 flipV -5.5 7 T --4.5 2 T -N 0 0 m -0 nxsetgray -0 0 m -(y) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -164 execuserobject setfont -146 153 T -11 flipV -5 5.5 T --4 4 T -N 0 0 m -0 nxsetgray -0 0 m -(z) show -0 0 T -grestore -grestore -0 0 2 1 10 SU -96 173 T -N -2 L -0 nxsetgray -72 -108 0 108 line -123.6884 0 108 arrow -0 0 T -grestore -0 0 2 1 10 SU -114 65 T -N -2 L -0 nxsetgray -54 108 0 0 line -243.436829 0 0 arrow -0 0 T -grestore -0 0 2 1 10 SU -167 182 T -N -2 L -0 nxsetgray -0 134 0 0 line -90 0 134 arrow -0 0 T -grestore -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Times-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob01v2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob01v2.gif deleted file mode 100755 index c0ece409c..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob01v2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob01v3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob01v3.eps deleted file mode 100755 index de079c30a..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob01v3.eps +++ /dev/null @@ -1,682 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: Untitled5.create -%%Creator: Create -%%CreationDate: Fri Nov 1 10:41:05 1996 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 106 151 507 629 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(T@fr_fnp5]_hl(boY=BQDKp) -% 5@l^1atd>$rEWcNFJo`+]G%A!8arbTujCkZ=X8VM@5pA>Y]P:qC$`90Q4n9CX\PqQ4S\X?FS -% XK)n-F[dk\!c#dCm=Yf##s'2mbq]2Puma-L#"VL09`"Cr3Kg9eKm!b[#[2XF5OJ2(Qn"/n&l -% &>;g`A<9@tWj1\)F3M`qgN%DpQIfI6&S;l!Ahcgr!2mEWTI8L4UPJj:Hh"L*CY9[;`F!)R!h-']%mH"E:FR[)iPY^M -% qT+N+9,bn.@!j3/$T\lu"g-W[1DH@9rUtVK`fUG`f4H!"4o-sh(faO,6LN@_"9iZPR.?jhukcZeH[Ra.cY!1S(h6p6gh@l_d,gDWKsI\ -% O!YYFYQJ-]&.UbVGL"I-Ml.f>)pq.HQa@*f=>:*$;fD$VeVcB#lL-n>ht=QfdqX:!/ou82iA -% HrdrEuA[l*KVr8mV0na#=]/$ih%^7+4n-5)tUQID)*_qqMuJq1XfQ'dDCR?m`38RE]>_JA_A -% 0(9jBq%XS6;T&0BdM+U_i',(WS-)TZ*X108P%`BIiG\8W85,`m7$Qrmm;[EO;ap+!%8->;7" -% bMCN%;.p.*@c+JScFQJ@)BrKD@m!W"G-heae<[HUdNn0X+Kl1?^+7G-k1c"D$h,3*53he&ba -% Os5==DVo&ciBltmK&^u?K0@>@\__/LFa_]bEjJddkM#+d6]&B%,+O%%ES'BB04Mg%He"e^i. -% dtSgi1^Hnd@iRfP"="pI#Y7S9Nn#p/h=QLa(&%0YJHV/C,4U7?!MBO<3$^)eTn,^[5a$sC,O -% `e-TEu6@PGV6Q-UG;Z8K]5jAMU)A;E;s1[doeQJ0iN>FMa]IOH7QThFnF+KH[-W%V&m6'n]J -% B$(*%D!>keE:dE.5O>1=kr#moE,.FluO._dH7!&^-!Y^BrK]JZ"3VTI55PaIWour(kp=W6Kr -% %hj`390K.>#6h[Y^VuOJ,gMa:q=^=H5!D,3_r'JN7p'!Q^CAG!l34=.2/CYA)BOO2ECU['GF -% CW'2(b.\l_E9VKUE0hC>NV6PuO2!J$jPBkYBa<&InX0o[f_14fKohuTYU._-""6/\4UWin>`"F2M_Tf(a>4FW!5%U3=-)o6*Q$]D>*ak=J%>A\ -% #CdmE!+H@j'le&1W[K@!^R.n1r-ZC9@.<;8mSF5%p!_qDLbXn-3OGO"K;NW)G3i'BADMNkUe -% @LF:1t&'$O.2"g/I">Mk4l[h:GMN@t9^JEEa%J\,Emj$[*WdN\HlW-oO,!:U(tU;?teoY`h_ -% OC@h]X1\U^n%jfFio6DoZ8"$B$j,>j(O$Y+")_n>7a%qRDb7c[I@1WHJVc-R!=->0V3$NrLt -% ^^/_s=no90]MZ&>rtC9pY-c2['<4jM37=!.^?,.ps6uc`K(mEa3TXX1E2q'0k\KR3X>816qU -% HK,C\E%i].,0@mT;'1/;X9A(,K"p\2^5QD#%i5HSfGDJ/]F\ReM*,ff?S1'R+9&PL\Xne&V^ -% kEAZb[J&.=NShq_Pj)Se`T1d.TEY[T@fr_fnp5]_hl(boY]BJP9LQ -% o&I&d(/A;N)>H9RW.uEPN%0@Aa"dJ.[6l/9U._N$A9Y>$*0-fBJNf#XB>RniqfN6QP3]=4pi -% AQX;l6LiH*!7-H+iEf<*!O`iTAO[N;LIa9KfC.G3VMK*`uGb20+>l"0rI9g_,S!^.7pO,>MeI6 -% ((3J5`L`D6s554$%BX*q1DqoVNPp-6.H"2jrneg8Fp_=q4IlJ3HifX3cM5,Y61e:IF0\^Gq6iql?$Xi1mG$<$Gk#l#NW+VKe_DddK.AE*i+G0YZaUj)DPD'.@hVlXB5Rb -% L90a%U[VOheA2^a[jpt:LO9[tLV>YDae7Mg@^1&r9c#pMW>$0^PM%EhY37N5p_d9nAf*0<_p -% $nU=eV.a]O5c.d!f4f8tl5ABEU&mS0?,!-a_'"89!(@G*%&/_;5Nj$SE]WcYToZtr$U?2^P, -% 1blX%5m#!N]tXXg`t6CHs3P"G0#A$WN!-MB'pBl)*q;MX\8#epHk^$?d5i404N!7)6:ol7uh -% ^edDJKq)Jk'>cQ^Zn[)h,S+3rC2HbkGZRH!l+TD:+_[pd_H57!Vp5%r[]ktpVEI2\7$E3?0l -% 'n*fTa;qG!=\PF5K%O.2#oVKBjSYsQ:80O6fs60EWl*8,QgrR0UiPpB>$/&E.j3^b%7(@Y1d -% ^4]JA:;^,R&RFl/`KjaI^U[+L#g8`\h4,,o+G%T]mPj,s?t_[qAQE]%$.o="/@RBqj\&"Lgi -% Ecdp`fjXqq#"#oWJ)oG_mpDt&\?CJdlal&2+YNYa91l0gG^IJIDQ1KV0iiP3Ak#X-:pT('%>W@;-O)g;^j,#oq1O('(R)=24StQ.beGA3JS%kg -% ^oc@d-j?p]D!i#mW)uc`VL56oahSKYF%5="atud1UOXM&cW%9uE@1.!Oi)Kg28nTXr5H\" -% p(A^",`#Y[3A[nqc)QeqjH$&Yn_[1!5Kq!8VL.Ineq1H!I+A9-J6U`BFQ1>dYr]_og4YOQ&r -% guOC8l)!._SD4g&@[S)<>q(TjJ'mo`C3"@/%nY%hVNX$#p4-S3o^Ign&a"Y4#<&Y[(Q]eEr+ -% 0Uk=0`<62AZ#T.m@f0h=^LdpTB2r1moEbNu_-du]*&39ff/SkmD/Fn;#$CC*(26,9Z=8(e/f -% ;f%TLMe!IE*\c,[XY;o@>1B:oeQ4 -% EO.AlLP"]5OV6%u>/$Y43>XmmSq,F=3m3"ShJhHrrbCblX/rY>@7X$Z*OY1P`.P52/FpBKpT -% o)jSi_VuBx -% EndEmbeddedGraphics N 1908 774 E 4b S 35d5d R 736b0bc -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -59 205 494 368 rectclip -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 66 213] concat -0 0 0 1 10 SU -gsave -/Times-Bold findfont 18 scalefont [1 0 0 -1 0 0] makefont -164 -exch -defineuserobject -164 execuserobject setfont -183 293 T -15 flipV -7.5 7.5 T --6.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(A) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -164 execuserobject setfont -306 300 T -15 flipV -7.5 7.5 T --6.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(B) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -164 execuserobject setfont -385 294 T -15 flipV -7.5 7.5 T --6.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(C) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -164 execuserobject setfont -456 172 T -15 flipV -7.5 7.5 T --6.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(D) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -164 execuserobject setfont -309 20 T -15 flipV -6.5 7.5 T --5.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(F) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -164 execuserobject setfont -367 57 T -15 flipV -7.5 7.5 T --6.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(E) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -164 execuserobject setfont -183 54 T -15 flipV -8.5 7.5 T --7.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(G) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -164 execuserobject setfont -173 174 T -15 flipV -8.5 7.5 T --7.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(H) show -0 0 T -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[-4.37113e-08 -1 1 -4.37113e-08 32.000008 352] concat -0 0 2 1 10 SU -[1 0 0 -1 152 300] concat -N -0 nxsetgray -gsave -42 38 0 0 oval fill -grestore -2 L -0 nxsetgray -gsave -42 38 0 0 oval 0.02381 0.026316 S s -grestore -0 0 T -grestore -0 0 2 1 10 SU -[1 0 0 -1 2 40] concat -N -0 nxsetgray -gsave -42 38 0 0 oval fill -grestore -2 L -0 nxsetgray -gsave -42 38 0 0 oval 0.02381 0.026316 S s -grestore -0 0 T -grestore -0 0 2 1 10 SU -[1 0 0 -1 306 42] concat -N -0 nxsetgray -gsave -42 38 0 0 oval fill -grestore -2 L -0 nxsetgray -gsave -42 38 0 0 oval 0.02381 0.026316 S s -grestore -0 0 T -grestore -0 0 2 1 10 SU -[4] 0 setdash -175.566986 15.38208 T -N -0 nxsetgray -154.866028 -266.23584 0 266.23584 line --59.815739 154.866028 0 arrow -2 L -0 nxsetgray -154.866028 -266.23584 0 266.23584 line --59.815739 154.866028 0 arrow -0 0 T -grestore -0 0 2 1 10 SU -[4] 0 setdash -20.433014 15.88208 T -N -0 nxsetgray -153.133972 267.23584 0 0 line -60.187805 153.133972 267.23584 arrow -2 L -0 nxsetgray -153.133972 267.23584 0 0 line -60.187805 153.133972 267.23584 arrow -0 0 T -grestore -0 0 2 1 10 SU -[4] 0 setdash -22.999985 16 T -N -0 nxsetgray -308 0 0 0 line -0 308 0 arrow -2 L -0 nxsetgray -308 0 0 0 line -0 308 0 arrow -0 0 T -grestore -grestore -grestore -0 0 2 1 10 SU -202 180.999969 T -N -0 nxsetgray -112 -112 0 112 line -134.998672 0 112 arrow -2 L -0 nxsetgray -112 -112 0 112 line -134.998672 0 112 arrow -0 0 T -grestore -0 0 2 1 10 SU -201.999969 69 T -N -0 nxsetgray -112.000031 111.999969 0 0 line -225.001312 0 0 arrow -2 L -0 nxsetgray -112.000031 111.999969 0 0 line -225.001312 0 0 arrow -0 0 T -grestore -0 0 2 1 10 SU -314 179.999969 T -N -0 nxsetgray -140 -3.05175e-05 0 3.05175e-05 line --1.24898e-05 140 0 arrow -2 L -0 nxsetgray -140 -3.05175e-05 0 3.05175e-05 line --1.24898e-05 140 0 arrow -0 0 T -grestore -0 0 2 1 10 SU -314 180.999969 T -N -0 nxsetgray -0 112 0 0 line -90.002655 0 112 arrow -2 L -0 nxsetgray -0 112 0 0 line -90.002655 0 112 arrow -0 0 T -grestore -0 0 2 1 10 SU -202 180.999969 T -N -0 nxsetgray -112 -3.05175e-05 0 3.05175e-05 line -179.999985 0 3.05175e-05 arrow -2 L -0 nxsetgray -112 -3.05175e-05 0 3.05175e-05 line -179.999985 0 3.05175e-05 arrow -0 0 T -grestore -0 0 0 1 10 SU -gsave -164 execuserobject setfont -8 328 T -11 flipV -5.5 5.5 T --4.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(x) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -164 execuserobject setfont -17 12 T -14 flipV -5.5 7 T --4.5 2 T -N 0 0 m -0 nxsetgray -0 0 m -(y) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -164 execuserobject setfont -295 145 T -11 flipV -5 5.5 T --4 4 T -N 0 0 m -0 nxsetgray -0 0 m -(z) show -0 0 T -grestore -grestore -0 0 2 1 10 SU -312 181 T -N -2 L -0 nxsetgray -71 109 0 0 line -56.922417 71 109 arrow -0 0 T -grestore -0 0 2 1 10 SU -313 72 T -N -0 nxsetgray -52 -109 0 109 line --64.497757 52 0 arrow -2 L -0 nxsetgray -52 -109 0 109 line --64.497757 52 0 arrow -0 0 T -grestore -0 0 2 1 10 SU -312 39 T -N -0 nxsetgray -0 144 0 0 line --90 0 0 arrow -2 L -0 nxsetgray -0 144 0 0 line --90 0 0 arrow -0 0 T -grestore -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Times-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob01v4.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob01v4.gif deleted file mode 100755 index 6b2aa16cb..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob01v4.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob05.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob05.eps deleted file mode 100755 index 4ed8947f8..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob05.eps +++ /dev/null @@ -1,519 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: prob5105.eps -%%CreationDate: 7/23/1996 -%%Pages: 0 -%%DocumentFonts: Helvetica -%%BoundingBox:47 505 226 664 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica/Helvetica 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -1267 2543 1579 2856 OV -1 sg fill -gr -gs -1267.5 2543.5 1579.5 2856.5 OV -35 slw 0 sg str -gr -gs -1267 4419 1579 4731 OV -1 sg fill -gr -gs -1267.5 4419.5 1579.5 4731.5 OV -35 slw 0 sg str -gr -gs -3142 4419 3454 4731 OV -1 sg fill -gr -gs -3142.5 4419.5 3454.5 4731.5 OV -35 slw 0 sg str -gr -gs -3142 2543 3454 2856 OV -1 sg fill -gr -gs -3142.5 2543.5 3454.5 2856.5 OV -35 slw 0 sg str -gr -gs -1579.5 2700.5 m -1679.5 2700.5 L -35 slw 0 sg str -gr -gs -1787.5 2700.5 m -1887.5 2700.5 L -35 slw 0 sg str -gr -gs -1996.5 2700.5 m -2096.5 2700.5 L -35 slw 0 sg str -gr -gs -2204.5 2700.5 m -2304.5 2700.5 L -35 slw 0 sg str -gr -gs -2412.5 2700.5 m -2512.5 2700.5 L -35 slw 0 sg str -gr -gs -2621.5 2700.5 m -2721.5 2700.5 L -35 slw 0 sg str -gr -gs -2829.5 2700.5 m -2929.5 2700.5 L -35 slw 0 sg str -gr -gs -3037.5 2700.5 m -3137.5 2700.5 L -35 slw 0 sg str -gr -gs -3298.5 2856.5 m -3298.5 2956.5 L -35 slw 0 sg str -gr -gs -3298.5 3064.5 m -3298.5 3164.5 L -35 slw 0 sg str -gr -gs -3298.5 3273.5 m -3298.5 3373.5 L -35 slw 0 sg str -gr -gs -3298.5 3481.5 m -3298.5 3581.5 L -35 slw 0 sg str -gr -gs -3298.5 3689.5 m -3298.5 3789.5 L -35 slw 0 sg str -gr -gs -3298.5 3898.5 m -3298.5 3998.5 L -35 slw 0 sg str -gr -gs -3298.5 4106.5 m -3298.5 4206.5 L -35 slw 0 sg str -gr -gs -3298.5 4314.5 m -3298.5 4414.5 L -35 slw 0 sg str -gr -gs -3142.5 4575.5 m -3042.5 4575.5 L -35 slw 0 sg str -gr -gs -2934.5 4575.5 m -2834.5 4575.5 L -35 slw 0 sg str -gr -gs -2725.5 4575.5 m -2625.5 4575.5 L -35 slw 0 sg str -gr -gs -2517.5 4575.5 m -2417.5 4575.5 L -35 slw 0 sg str -gr -gs -2309.5 4575.5 m -2209.5 4575.5 L -35 slw 0 sg str -gr -gs -2100.5 4575.5 m -2000.5 4575.5 L -35 slw 0 sg str -gr -gs -1892.5 4575.5 m -1792.5 4575.5 L -35 slw 0 sg str -gr -gs -1684.5 4575.5 m -1584.5 4575.5 L -35 slw 0 sg str -gr -gs -1423.5 4419.5 m -1423.5 4319.5 L -35 slw 0 sg str -gr -gs -1423.5 4211.5 m -1423.5 4111.5 L -35 slw 0 sg str -gr -gs -1423.5 4002.5 m -1423.5 3902.5 L -35 slw 0 sg str -gr -gs -1423.5 3794.5 m -1423.5 3694.5 L -35 slw 0 sg str -gr -gs -1423.5 3586.5 m -1423.5 3486.5 L -35 slw 0 sg str -gr -gs -1423.5 3377.5 m -1423.5 3277.5 L -35 slw 0 sg str -gr -gs -1423.5 3169.5 m -1423.5 3069.5 L -35 slw 0 sg str -gr -gs -1423.5 2961.5 m -1423.5 2861.5 L -35 slw 0 sg str -gr -gs -1093 2474 1232 2769 R -1 sg fill -gr -/_Helvetica ff [278 0 0 -278 0 0] mf sf -1093 2682 m 0 sg (q) show -gs -3541 2552 3680 2847 R -1 sg fill -gr -3541 2760 m 2.78 slw 0 sg (q) show -gs -3541 4436 3680 4731 R -1 sg fill -gr -3541 4644 m 2.78 slw 0 sg (q) show -gs -1050 4453 1189 4748 R -1 sg fill -gr -1050 4661 m 2.78 slw 0 sg (q) show -gs -2604 3498 2812 3793 R -1 sg fill -gr -2604 3706 m 2.78 slw 0 sg (Q) show -gs -2204 3481 2517 3793 OV -1 sg fill -gr -gs -2204.5 3481.5 2517.5 3793.5 OV -35 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob05.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob05.gif deleted file mode 100755 index 13a0e3d46..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob05.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob09v1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob09v1.eps deleted file mode 100755 index 8f7d909e9..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob09v1.eps +++ /dev/null @@ -1,3372 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Thu Jan 5 16:16:47 1995 -%%For: prof -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 612 792 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /TDeps_dict 20 dict def TDeps_dict begin /showpage { - -} def /copypage { - -} def /grestoreall { - -} def /erasepage { - -} def /nulldevice { - -} def /exitserver { - -} def /initgraphics { - -} def /renderbands { - -} def /initmatrix { - -} def /banddevice { - -} def /setpageparams { - -} def /framedevice { - -} def /note { - -} def end end -TopDrawDict begin /rpath { - newpath moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} bind def /rfpath { - /rad3 exch def /hh3 exch def /ww3 exch def /yy1 exch def /xx1 exch def /xx2 xx1 ww3 add def /yy2 yy1 hh3 add def newpath xx1 yy1 rad3 hh3 0 gt { - add - } { - sub - } ifelse moveto xx1 yy1 xx2 yy1 rad3 arcto 4 { - pop - } repeat xx2 yy1 xx2 yy2 rad3 arcto 4 { - pop - } repeat xx2 yy2 xx1 yy2 rad3 arcto 4 { - pop - } repeat xx1 yy2 xx1 yy1 rad3 arcto 4 { - pop - } repeat closepath -} bind def /rfill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - 4 2 roll rpath crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - rectfill pop - } ifelse grestore -} bind def /rstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse 4 2 roll rpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /rffill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse rfpath filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /rfstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse rfpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /mkrpath { - dodrawctm rpath unpagectm -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 612 792 rectclip -0 0 612 792 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 0 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 0 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 0 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -end -grestore -gsave clpmt currentmatrix pop newpath -1 0 0 1 0 0 sc5mt astore pop false { - sc5mt dodrawctm 47.5 200 517 392 0 rfpath unpagectm -} { - 517 392 47.5 200 sc5mt mkrpath -} ifelse -clip -newpath -clpmt setmatrix -gsave -/epssave save def 0 setgray 1 setlinewidth 0 setlinecap 0 setlinejoin 10 setmiterlimit [] 0 setdash newpath TDeps_dict begin userdict begin -[1 0 0 1 0 0] dodrawctm -47.5 200 translate -%%BeginFile: /prof/CAPA/physimage/efield_2q_neg.eps -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Wed Aug 4 11:48:32 1993 -%%For: teacher2 -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 517 392 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /TDeps_dict 20 dict def TDeps_dict begin /showpage { - -} def /copypage { - -} def /grestoreall { - -} def /erasepage { - -} def /nulldevice { - -} def /exitserver { - -} def /initgraphics { - -} def /renderbands { - -} def /initmatrix { - -} def /banddevice { - -} def /setpageparams { - -} def /framedevice { - -} def /note { - -} def end end -TopDrawDict begin /rpath { - newpath moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} bind def /rfpath { - /rad3 exch def /hh3 exch def /ww3 exch def /yy1 exch def /xx1 exch def /xx2 xx1 ww3 add def /yy2 yy1 hh3 add def newpath xx1 yy1 rad3 hh3 0 gt { - add - } { - sub - } ifelse moveto xx1 yy1 xx2 yy1 rad3 arcto 4 { - pop - } repeat xx2 yy1 xx2 yy2 rad3 arcto 4 { - pop - } repeat xx2 yy2 xx1 yy2 rad3 arcto 4 { - pop - } repeat xx1 yy2 xx1 yy1 rad3 arcto 4 { - pop - } repeat closepath -} bind def /rfill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - 4 2 roll rpath crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - rectfill pop - } ifelse grestore -} bind def /rstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse 4 2 roll rpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /rffill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse rfpath filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /rfstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse rfpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /mkrpath { - dodrawctm rpath unpagectm -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 516.240051 391.680023 rectclip --47.879982 -199.160004 translate -47.879982 199.160004 516.240051 391.680023 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 2.412863e-35 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -gsave clpmt currentmatrix pop newpath -1 0 0 1 0 -1 sc5mt astore pop false { - sc5mt dodrawctm 47.879974 200.160004 516.240051 391.679993 0 rfpath unpagectm -} { - 516.240051 391.679993 47.879974 200.160004 sc5mt mkrpath -} ifelse -clip -newpath -clpmt setmatrix -gsave -/epssave save def 0 setgray 1 setlinewidth 0 setlinecap 0 setlinejoin 10 setmiterlimit [] 0 setdash newpath TDeps_dict begin userdict begin -[1 0 0 1 0 -1] dodrawctm -26.279968 178.559998 translate -%%BeginFile: /tmp/topdraw_eps_5265_106 -%! -%%BoundingBox: 21.60 21.60 537.84 413.28 -0.23999 dup scale -90 90 translate -2 setlinejoin -/l {lineto} def /m {moveto} def /j {rlineto} def /k {rmoveto} def /s {stroke} def -/m1 {-4 0 k 8 0 j -4 -4 k 0 8 j} bind def -/m2 {-4 -4 k 8 8 j -8 0 k 8 -8 j} bind def -/m3 {-8 0 k 16 0 j -8 -8 k 0 16 j} bind def -/m4 {-8 -8 k 16 16 j -16 0 k 16 -16 j} bind def -/m5 {8 -3 k 0 6 j -5 5 j -6 0 j -5 -5 j 0 -6 j 5 -5 j 6 0 j 5 5 j} bind def -/m6 {0 -8 k 0 16 j -7 -4 k 14 -8 j 0 8 k -14 -8 j} bind def -/m7 {0 9 k -8 -14 j 16 0 j -8 14 j} bind def -/m8 {0 -9 k 8 14 j -16 0 j 8 -14 j} bind def -/m9 {-12 0 k 24 0 j -12 -12 k 0 24 j} bind def -/m10 {-12 -12 k 24 24 j -24 0 k 24 -24 j} bind def -/m11 {12 -5 k 0 10 j -7 7 j -10 0 j -7 -7 j 0 -10 j 7 -7 j 10 0 j 7 7 j} bind def -/m12 {0 -12 k 0 24 j -10 -6 k 20 -12 j 0 12 k -20 -12 j} bind def - 1 setlinewidth -[] 0 setdash -/font1 /Courier-Bold findfont 40 scalefont def -font1 setfont - 4 setlinewidth -3 3 m -2148 3 l -2148 1629 l -3 1629 l -3 3 l -s -3 3 m -534 816 m -m5 s -534 816 m -1617 816 m -m5 s -1617 816 m -534 816 m -m2 s -534 816 m -1617 816 m -m2 s -1617 816 m - 2 setlinewidth -[ 24 8 24 8] 0 setdash -1617 816 m -1585 816 l -1574 816 l -1563 816 l -1552 816 l -1541 816 l -1531 816 l -1520 816 l -1509 816 l -1498 816 l -1487 816 l -1476 816 l -1466 816 l -1455 816 l -1444 816 l -1433 816 l -1422 816 l -1411 816 l -1401 816 l -1390 816 l -1379 816 l -1368 816 l -1357 816 l -1346 816 l -1336 816 l -1325 816 l -1314 816 l -1303 816 l -1292 816 l -1281 816 l -1271 816 l -1260 816 l -1249 816 l -1238 816 l -1227 816 l -1216 816 l -1206 816 l -1195 816 l -1184 816 l -1173 816 l -1162 816 l -1151 816 l -1141 816 l -1130 816 l -1119 816 l -1108 816 l -1097 816 l -1086 816 l -1076 816 l -1065 816 l -s -1065 816 m -1054 816 l -1043 816 l -1032 816 l -1021 816 l -1011 816 l -1000 816 l -989 816 l -978 816 l -967 816 l -956 816 l -946 816 l -935 816 l -924 816 l -913 816 l -902 816 l -891 816 l -881 816 l -870 816 l -859 816 l -848 816 l -837 816 l -826 816 l -816 816 l -805 816 l -794 816 l -783 816 l -772 816 l -761 816 l -751 816 l -740 816 l -729 816 l -718 816 l -707 816 l -696 816 l -686 816 l -675 816 l -664 816 l -653 816 l -642 816 l -631 816 l -621 816 l -610 816 l -599 816 l -588 816 l -577 816 l -566 816 l -534 816 l -s -1617 816 m -1594 824 l -1584 827 l -1573 830 l -1563 834 l -1553 837 l -1542 841 l -1532 844 l -1522 847 l -1512 851 l -1501 854 l -1491 857 l -1481 861 l -1470 864 l -1460 867 l -1450 871 l -1439 874 l -1429 877 l -1419 881 l -1408 884 l -1398 887 l -1388 890 l -1377 893 l -1367 897 l -1357 900 l -1346 903 l -1336 906 l -1325 909 l -1315 912 l -1305 915 l -1294 918 l -1284 920 l -1273 923 l -1263 926 l -1252 929 l -1242 931 l -1231 934 l -1221 936 l -1210 938 l -1199 941 l -1189 943 l -1178 945 l -1168 947 l -1157 949 l -1146 951 l -1136 953 l -1125 954 l -1114 956 l -1103 957 l -1093 958 l -s -1093 958 m -1082 960 l -1071 960 l -1060 961 l -1049 962 l -1039 962 l -1028 963 l -1017 963 l -1006 963 l -995 963 l -984 963 l -974 962 l -963 962 l -952 961 l -941 960 l -930 959 l -920 957 l -909 956 l -898 954 l -888 952 l -877 950 l -866 948 l -856 946 l -845 943 l -835 940 l -824 938 l -814 935 l -803 932 l -793 928 l -783 925 l -773 922 l -762 918 l -752 914 l -742 910 l -732 906 l -722 902 l -712 898 l -702 894 l -692 890 l -682 886 l -672 881 l -662 877 l -652 872 l -642 868 l -633 863 l -623 859 l -613 854 l -603 850 l -593 845 l -584 840 l -s -584 840 m -574 835 l -564 831 l -534 816 l -s -1617 816 m -1595 833 l -1586 839 l -1577 846 l -1569 852 l -1560 859 l -1551 865 l -1543 872 l -1534 878 l -1525 885 l -1516 891 l -1508 897 l -1499 904 l -1490 910 l -1481 917 l -1473 923 l -1464 929 l -1455 936 l -1446 942 l -1437 948 l -1428 954 l -1420 961 l -1411 967 l -1402 973 l -1393 979 l -1384 985 l -1375 991 l -1366 997 l -1357 1003 l -1347 1009 l -1338 1014 l -1329 1020 l -1320 1026 l -1310 1031 l -1301 1037 l -1292 1042 l -1282 1047 l -1273 1053 l -1263 1058 l -1254 1063 l -1244 1068 l -1234 1072 l -1224 1077 l -1215 1082 l -1205 1086 l -1195 1090 l -1185 1094 l -1175 1098 l -1165 1102 l -1154 1106 l -s -1154 1106 m -1144 1109 l -1134 1113 l -1123 1116 l -1113 1119 l -1102 1121 l -1092 1124 l -1081 1126 l -1071 1128 l -1060 1130 l -1049 1132 l -1039 1133 l -1028 1134 l -1017 1135 l -1006 1135 l -995 1136 l -984 1136 l -974 1135 l -963 1135 l -952 1134 l -941 1132 l -931 1131 l -920 1129 l -909 1127 l -899 1125 l -888 1122 l -878 1119 l -867 1116 l -857 1112 l -847 1108 l -837 1104 l -827 1100 l -817 1095 l -808 1090 l -798 1085 l -789 1080 l -780 1074 l -770 1068 l -761 1062 l -753 1056 l -744 1049 l -735 1043 l -727 1036 l -719 1029 l -710 1022 l -702 1015 l -694 1007 l -687 1000 l -679 992 l -671 984 l -s -671 984 m -664 977 l -656 969 l -649 961 l -642 953 l -635 944 l -628 936 l -621 928 l -614 919 l -607 911 l -600 903 l -594 894 l -587 886 l -580 877 l -574 868 l -567 860 l -560 851 l -554 843 l -534 816 l -s -1617 816 m -1599 843 l -1593 852 l -1587 861 l -1581 870 l -1574 879 l -1568 888 l -1562 896 l -1556 905 l -1550 914 l -1544 923 l -1537 932 l -1531 941 l -1525 950 l -1519 959 l -1512 967 l -1506 976 l -1500 985 l -1493 994 l -1487 1003 l -1481 1011 l -1474 1020 l -1468 1029 l -1461 1037 l -1454 1046 l -1448 1054 l -1441 1063 l -1434 1071 l -1428 1080 l -1421 1088 l -1414 1097 l -1407 1105 l -1400 1113 l -1393 1122 l -1386 1130 l -1379 1138 l -1371 1146 l -1364 1154 l -1357 1162 l -1349 1170 l -1342 1177 l -1334 1185 l -1326 1193 l -1318 1200 l -1311 1208 l -1303 1215 l -1295 1222 l -1286 1229 l -1278 1237 l -1270 1244 l -s -1270 1244 m -1262 1250 l -1253 1257 l -1245 1264 l -1236 1270 l -1227 1277 l -1218 1283 l -1209 1289 l -1200 1295 l -1191 1301 l -1182 1306 l -1172 1312 l -1163 1317 l -1153 1322 l -1144 1327 l -1134 1332 l -1124 1336 l -1114 1341 l -1104 1345 l -1094 1349 l -1084 1353 l -1074 1356 l -1063 1359 l -1053 1362 l -1043 1365 l -1032 1368 l -1021 1370 l -1011 1372 l -1000 1374 l -989 1375 l -979 1376 l -968 1377 l -957 1377 l -946 1378 l -935 1377 l -924 1377 l -914 1376 l -903 1375 l -892 1374 l -881 1372 l -871 1370 l -860 1368 l -850 1365 l -839 1362 l -829 1358 l -819 1355 l -809 1351 l -799 1346 l -789 1342 l -780 1337 l -s -780 1337 m -770 1331 l -761 1326 l -752 1320 l -743 1314 l -734 1307 l -726 1300 l -717 1293 l -709 1286 l -701 1279 l -694 1271 l -686 1263 l -679 1255 l -672 1247 l -665 1238 l -659 1230 l -653 1221 l -647 1212 l -641 1203 l -635 1193 l -630 1184 l -624 1175 l -619 1165 l -615 1155 l -610 1145 l -606 1136 l -601 1126 l -597 1116 l -593 1105 l -590 1095 l -586 1085 l -583 1075 l -580 1064 l -576 1054 l -574 1043 l -571 1033 l -568 1023 l -566 1012 l -563 1001 l -561 991 l -559 980 l -557 970 l -555 959 l -553 948 l -551 938 l -549 927 l -547 916 l -546 905 l -544 895 l -543 884 l -s -543 884 m -541 873 l -540 862 l -538 852 l -537 841 l -534 816 l -s -1617 816 m -1610 841 l -1608 852 l -1605 862 l -1602 873 l -1599 883 l -1596 894 l -1594 904 l -1591 915 l -1588 925 l -1585 936 l -1582 946 l -1579 957 l -1576 967 l -1573 977 l -1570 988 l -1567 998 l -1564 1009 l -1561 1019 l -1558 1029 l -1555 1040 l -1552 1050 l -1548 1061 l -1545 1071 l -1542 1081 l -1539 1091 l -1535 1102 l -1532 1112 l -1528 1122 l -1525 1133 l -1521 1143 l -1518 1153 l -1514 1163 l -1510 1173 l -1506 1184 l -1502 1194 l -1499 1204 l -1495 1214 l -1490 1224 l -1486 1234 l -1482 1244 l -1478 1254 l -1474 1264 l -1469 1274 l -1465 1284 l -1460 1294 l -1456 1303 l -1451 1313 l -1446 1323 l -1442 1333 l -s -1442 1333 m -1437 1342 l -1432 1352 l -1427 1361 l -1421 1371 l -1416 1381 l -1411 1390 l -1406 1399 l -1400 1409 l -1395 1418 l -1389 1427 l -1383 1437 l -1377 1446 l -1372 1455 l -1366 1464 l -1360 1473 l -1353 1482 l -1347 1491 l -1341 1499 l -1334 1508 l -1328 1517 l -1321 1525 l -1315 1534 l -1308 1542 l -1301 1551 l -1294 1559 l -1287 1567 l -1280 1575 l -1273 1583 l -1265 1591 l -1258 1599 l -1250 1607 l -1243 1615 l -1235 1622 l -1228 1629 l -s -1617 816 m -1620 847 l -1621 858 l -1622 869 l -1623 880 l -1624 891 l -1625 901 l -1625 912 l -1626 923 l -1627 934 l -1628 945 l -1629 955 l -1630 966 l -1630 977 l -1631 988 l -1632 999 l -1633 1009 l -1633 1020 l -1634 1031 l -1635 1042 l -1635 1053 l -1636 1064 l -1636 1074 l -1637 1085 l -1637 1096 l -1638 1107 l -1638 1118 l -1639 1128 l -1639 1139 l -1639 1150 l -1640 1161 l -1640 1172 l -1640 1183 l -1640 1194 l -1640 1204 l -1640 1215 l -1640 1226 l -1640 1237 l -1640 1248 l -1640 1259 l -1640 1269 l -1640 1280 l -1640 1291 l -1639 1302 l -1639 1313 l -1639 1324 l -1638 1334 l -1638 1345 l -1637 1356 l -1637 1367 l -s -1637 1367 m -1636 1378 l -1635 1389 l -1634 1399 l -1634 1410 l -1633 1421 l -1632 1432 l -1631 1443 l -1630 1453 l -1629 1464 l -1628 1475 l -1627 1486 l -1625 1496 l -1624 1507 l -1623 1518 l -1621 1529 l -1620 1539 l -1619 1550 l -1617 1561 l -1615 1572 l -1614 1582 l -1612 1593 l -1610 1604 l -1609 1614 l -1607 1625 l -1606 1629 l -s -1617 816 m -1628 839 l -1633 849 l -1638 859 l -1642 869 l -1647 878 l -1651 888 l -1656 898 l -1661 908 l -1665 918 l -1670 927 l -1674 937 l -1679 947 l -1684 957 l -1688 967 l -1693 977 l -1697 987 l -1702 996 l -1706 1006 l -1711 1016 l -1715 1026 l -1719 1036 l -1724 1046 l -1728 1056 l -1733 1066 l -1737 1076 l -1741 1086 l -1745 1096 l -1750 1105 l -1754 1115 l -1758 1125 l -1762 1135 l -1767 1145 l -1771 1155 l -1775 1165 l -1779 1176 l -1783 1186 l -1787 1196 l -1791 1206 l -1795 1216 l -1799 1226 l -1803 1236 l -1807 1246 l -1811 1256 l -1815 1266 l -1819 1276 l -1822 1287 l -1826 1297 l -1830 1307 l -1834 1317 l -s -1834 1317 m -1837 1327 l -1841 1337 l -1845 1348 l -1848 1358 l -1852 1368 l -1855 1378 l -1859 1389 l -1862 1399 l -1866 1409 l -1869 1419 l -1873 1430 l -1876 1440 l -1880 1450 l -1883 1461 l -1886 1471 l -1890 1481 l -1893 1492 l -1896 1502 l -1899 1512 l -1902 1523 l -1906 1533 l -1909 1543 l -1912 1554 l -1915 1564 l -1918 1575 l -1921 1585 l -1924 1595 l -1927 1606 l -1930 1616 l -1933 1627 l -1933 1629 l -s -1617 816 m -1640 837 l -1647 845 l -1655 852 l -1663 860 l -1671 867 l -1679 875 l -1687 882 l -1694 890 l -1702 897 l -1710 905 l -1718 912 l -1726 920 l -1733 927 l -1741 935 l -1749 942 l -1757 950 l -1765 958 l -1772 965 l -1780 973 l -1788 980 l -1795 988 l -1803 995 l -1811 1003 l -1819 1011 l -1826 1018 l -1834 1026 l -1842 1034 l -1849 1041 l -1857 1049 l -1864 1057 l -1872 1064 l -1880 1072 l -1887 1080 l -1895 1088 l -1902 1095 l -1910 1103 l -1918 1111 l -1925 1119 l -1933 1127 l -1940 1134 l -1948 1142 l -1955 1150 l -1963 1158 l -1970 1166 l -1978 1174 l -1985 1181 l -1992 1189 l -2000 1197 l -2007 1205 l -s -2007 1205 m -2015 1213 l -2022 1221 l -2029 1229 l -2037 1237 l -2044 1245 l -2051 1253 l -2059 1261 l -2066 1269 l -2073 1277 l -2081 1285 l -2088 1293 l -2095 1301 l -2102 1309 l -2110 1317 l -2117 1325 l -2124 1333 l -2131 1341 l -2139 1349 l -2146 1358 l -2148 1360 l -s -1617 816 m -1640 825 l -1650 830 l -1661 834 l -1671 838 l -1681 842 l -1691 846 l -1701 850 l -1711 854 l -1721 858 l -1731 862 l -1741 866 l -1751 870 l -1761 875 l -1771 879 l -1781 883 l -1791 887 l -1801 891 l -1811 895 l -1821 899 l -1831 904 l -1841 908 l -1851 912 l -1861 916 l -1871 920 l -1881 924 l -1891 929 l -1901 933 l -1911 937 l -1921 941 l -1931 945 l -1941 950 l -1951 954 l -1961 958 l -1971 962 l -1981 967 l -1991 971 l -2001 975 l -2011 979 l -2021 984 l -2030 988 l -2040 992 l -2050 997 l -2060 1001 l -2070 1005 l -2080 1009 l -2090 1014 l -2100 1018 l -2110 1022 l -2120 1027 l -s -2120 1027 m -2130 1031 l -2140 1036 l -2148 1039 l -s -1617 816 m -1647 816 l -1658 816 l -1669 816 l -1680 816 l -1690 816 l -1701 816 l -1712 816 l -1723 816 l -1734 816 l -1745 816 l -1755 816 l -1766 816 l -1777 816 l -1788 816 l -1799 816 l -1810 816 l -1820 816 l -1831 816 l -1842 817 l -1853 817 l -1864 817 l -1875 817 l -1885 817 l -1896 817 l -1907 817 l -1918 817 l -1929 817 l -1940 817 l -1950 817 l -1961 817 l -1972 817 l -1983 817 l -1994 817 l -2005 817 l -2015 817 l -2026 817 l -2037 817 l -2048 817 l -2059 817 l -2070 817 l -2080 817 l -2091 817 l -2102 817 l -2113 817 l -2124 817 l -2135 817 l -2145 817 l -2148 817 l -s -2148 817 m -[] 0 setdash -[ 24 8 24 8] 0 setdash -1617 816 m -1585 816 l -1574 816 l -1563 816 l -1552 816 l -1541 816 l -1531 816 l -1520 816 l -1509 816 l -1498 816 l -1487 816 l -1476 816 l -1466 816 l -1455 816 l -1444 816 l -1433 816 l -1422 816 l -1411 816 l -1401 816 l -1390 816 l -1379 816 l -1368 816 l -1357 816 l -1346 816 l -1336 816 l -1325 816 l -1314 816 l -1303 816 l -1292 816 l -1281 816 l -1271 816 l -1260 816 l -1249 816 l -1238 816 l -1227 816 l -1216 816 l -1206 816 l -1195 816 l -1184 816 l -1173 816 l -1162 816 l -1151 816 l -1141 816 l -1130 816 l -1119 816 l -1108 816 l -1097 816 l -1086 816 l -1076 816 l -1065 816 l -s -1065 816 m -1054 816 l -1043 816 l -1032 816 l -1021 816 l -1011 816 l -1000 816 l -989 816 l -978 816 l -967 816 l -956 816 l -946 816 l -935 816 l -924 816 l -913 816 l -902 816 l -891 816 l -881 816 l -870 816 l -859 816 l -848 816 l -837 816 l -826 816 l -816 816 l -805 816 l -794 816 l -783 816 l -772 816 l -761 816 l -751 816 l -740 816 l -729 816 l -718 816 l -707 816 l -696 816 l -686 816 l -675 816 l -664 816 l -653 816 l -642 816 l -631 816 l -621 816 l -610 816 l -599 816 l -588 816 l -577 816 l -566 816 l -534 816 l -s -1617 816 m -1594 808 l -1584 805 l -1573 802 l -1563 798 l -1553 795 l -1542 791 l -1532 788 l -1522 785 l -1512 781 l -1501 778 l -1491 775 l -1481 771 l -1470 768 l -1460 765 l -1450 761 l -1439 758 l -1429 755 l -1419 751 l -1408 748 l -1398 745 l -1388 742 l -1377 739 l -1367 735 l -1357 732 l -1346 729 l -1336 726 l -1325 723 l -1315 720 l -1305 717 l -1294 714 l -1284 712 l -1273 709 l -1263 706 l -1252 703 l -1242 701 l -1231 698 l -1221 696 l -1210 694 l -1199 691 l -1189 689 l -1178 687 l -1168 685 l -1157 683 l -1146 681 l -1136 679 l -1125 678 l -1114 676 l -1103 675 l -1093 674 l -s -1093 674 m -1082 672 l -1071 672 l -1060 671 l -1049 670 l -1039 670 l -1028 669 l -1017 669 l -1006 669 l -995 669 l -984 669 l -974 670 l -963 670 l -952 671 l -941 672 l -930 673 l -920 675 l -909 676 l -898 678 l -888 680 l -877 682 l -866 684 l -856 686 l -845 689 l -835 692 l -824 694 l -814 697 l -803 700 l -793 704 l -783 707 l -773 710 l -762 714 l -752 718 l -742 722 l -732 726 l -722 730 l -712 734 l -702 738 l -692 742 l -682 746 l -672 751 l -662 755 l -652 760 l -642 764 l -633 769 l -623 773 l -613 778 l -603 782 l -593 787 l -584 792 l -s -584 792 m -574 797 l -564 801 l -534 816 l -s -1617 816 m -1595 799 l -1586 793 l -1577 786 l -1569 780 l -1560 773 l -1551 767 l -1543 760 l -1534 754 l -1525 747 l -1516 741 l -1508 735 l -1499 728 l -1490 722 l -1481 715 l -1473 709 l -1464 703 l -1455 696 l -1446 690 l -1437 684 l -1428 678 l -1420 671 l -1411 665 l -1402 659 l -1393 653 l -1384 647 l -1375 641 l -1366 635 l -1357 629 l -1347 623 l -1338 618 l -1329 612 l -1320 606 l -1310 601 l -1301 595 l -1292 590 l -1282 585 l -1273 579 l -1263 574 l -1254 569 l -1244 564 l -1234 560 l -1224 555 l -1215 550 l -1205 546 l -1195 542 l -1185 538 l -1175 534 l -1165 530 l -1154 526 l -s -1154 526 m -1144 523 l -1134 519 l -1123 516 l -1113 513 l -1102 511 l -1092 508 l -1081 506 l -1071 504 l -1060 502 l -1049 500 l -1039 499 l -1028 498 l -1017 497 l -1006 497 l -995 496 l -984 496 l -974 497 l -963 497 l -952 498 l -941 500 l -931 501 l -920 503 l -909 505 l -899 507 l -888 510 l -878 513 l -867 516 l -857 520 l -847 524 l -837 528 l -827 532 l -817 537 l -808 542 l -798 547 l -789 552 l -780 558 l -770 564 l -761 570 l -753 576 l -744 583 l -735 589 l -727 596 l -719 603 l -710 610 l -702 617 l -694 625 l -687 632 l -679 640 l -671 648 l -s -671 648 m -664 655 l -656 663 l -649 671 l -642 679 l -635 688 l -628 696 l -621 704 l -614 713 l -607 721 l -600 729 l -594 738 l -587 746 l -580 755 l -574 764 l -567 772 l -560 781 l -554 789 l -534 816 l -s -1617 816 m -1599 789 l -1593 780 l -1587 771 l -1581 762 l -1574 753 l -1568 744 l -1562 736 l -1556 727 l -1550 718 l -1544 709 l -1537 700 l -1531 691 l -1525 682 l -1519 673 l -1512 665 l -1506 656 l -1500 647 l -1493 638 l -1487 629 l -1481 621 l -1474 612 l -1468 603 l -1461 595 l -1454 586 l -1448 578 l -1441 569 l -1434 561 l -1428 552 l -1421 544 l -1414 535 l -1407 527 l -1400 519 l -1393 510 l -1386 502 l -1379 494 l -1371 486 l -1364 478 l -1357 470 l -1349 462 l -1342 455 l -1334 447 l -1326 439 l -1318 432 l -1311 424 l -1303 417 l -1295 410 l -1286 403 l -1278 395 l -1270 388 l -s -1270 388 m -1262 382 l -1253 375 l -1245 368 l -1236 362 l -1227 355 l -1218 349 l -1209 343 l -1200 337 l -1191 331 l -1182 326 l -1172 320 l -1163 315 l -1153 310 l -1144 305 l -1134 300 l -1124 296 l -1114 291 l -1104 287 l -1094 283 l -1084 279 l -1074 276 l -1063 273 l -1053 270 l -1043 267 l -1032 264 l -1021 262 l -1011 260 l -1000 258 l -989 257 l -979 256 l -968 255 l -957 255 l -946 254 l -935 255 l -924 255 l -914 256 l -903 257 l -892 258 l -881 260 l -871 262 l -860 264 l -850 267 l -839 270 l -829 274 l -819 277 l -809 281 l -799 286 l -789 290 l -780 295 l -s -780 295 m -770 301 l -761 306 l -752 312 l -743 318 l -734 325 l -726 332 l -717 339 l -709 346 l -701 353 l -694 361 l -686 369 l -679 377 l -672 385 l -665 394 l -659 402 l -653 411 l -647 420 l -641 429 l -635 439 l -630 448 l -624 457 l -619 467 l -615 477 l -610 487 l -606 496 l -601 506 l -597 516 l -593 527 l -590 537 l -586 547 l -583 557 l -580 568 l -576 578 l -574 589 l -571 599 l -568 609 l -566 620 l -563 631 l -561 641 l -559 652 l -557 662 l -555 673 l -553 684 l -551 694 l -549 705 l -547 716 l -546 727 l -544 737 l -543 748 l -s -543 748 m -541 759 l -540 770 l -538 780 l -537 791 l -534 816 l -s -1617 816 m -1610 791 l -1608 780 l -1605 770 l -1602 759 l -1599 749 l -1596 738 l -1594 728 l -1591 717 l -1588 707 l -1585 696 l -1582 686 l -1579 675 l -1576 665 l -1573 655 l -1570 644 l -1567 634 l -1564 623 l -1561 613 l -1558 603 l -1555 592 l -1552 582 l -1548 571 l -1545 561 l -1542 551 l -1539 541 l -1535 530 l -1532 520 l -1528 510 l -1525 499 l -1521 489 l -1518 479 l -1514 469 l -1510 459 l -1506 448 l -1502 438 l -1499 428 l -1495 418 l -1490 408 l -1486 398 l -1482 388 l -1478 378 l -1474 368 l -1469 358 l -1465 348 l -1460 338 l -1456 329 l -1451 319 l -1446 309 l -1442 299 l -s -1442 299 m -1437 290 l -1432 280 l -1427 271 l -1421 261 l -1416 251 l -1411 242 l -1406 233 l -1400 223 l -1395 214 l -1389 205 l -1383 195 l -1377 186 l -1372 177 l -1366 168 l -1360 159 l -1353 150 l -1347 141 l -1341 133 l -1334 124 l -1328 115 l -1321 107 l -1315 98 l -1308 90 l -1301 81 l -1294 73 l -1287 65 l -1280 57 l -1273 49 l -1265 41 l -1258 33 l -1250 25 l -1243 17 l -1235 10 l -1228 3 l -s -1617 816 m -1620 785 l -1621 774 l -1622 763 l -1623 752 l -1624 741 l -1625 731 l -1625 720 l -1626 709 l -1627 698 l -1628 687 l -1629 677 l -1630 666 l -1630 655 l -1631 644 l -1632 633 l -1633 623 l -1633 612 l -1634 601 l -1635 590 l -1635 579 l -1636 568 l -1636 558 l -1637 547 l -1637 536 l -1638 525 l -1638 514 l -1639 504 l -1639 493 l -1639 482 l -1640 471 l -1640 460 l -1640 449 l -1640 438 l -1640 428 l -1640 417 l -1640 406 l -1640 395 l -1640 384 l -1640 373 l -1640 363 l -1640 352 l -1640 341 l -1639 330 l -1639 319 l -1639 308 l -1638 298 l -1638 287 l -1637 276 l -1637 265 l -s -1637 265 m -1636 254 l -1635 243 l -1634 233 l -1634 222 l -1633 211 l -1632 200 l -1631 189 l -1630 179 l -1629 168 l -1628 157 l -1627 146 l -1625 136 l -1624 125 l -1623 114 l -1621 103 l -1620 93 l -1619 82 l -1617 71 l -1615 60 l -1614 50 l -1612 39 l -1610 28 l -1609 18 l -1607 7 l -1606 3 l -s -1617 816 m -1628 793 l -1633 783 l -1638 773 l -1642 763 l -1647 754 l -1651 744 l -1656 734 l -1661 724 l -1665 714 l -1670 705 l -1674 695 l -1679 685 l -1684 675 l -1688 665 l -1693 655 l -1697 645 l -1702 636 l -1706 626 l -1711 616 l -1715 606 l -1719 596 l -1724 586 l -1728 576 l -1733 566 l -1737 556 l -1741 546 l -1745 536 l -1750 527 l -1754 517 l -1758 507 l -1762 497 l -1767 487 l -1771 477 l -1775 467 l -1779 456 l -1783 446 l -1787 436 l -1791 426 l -1795 416 l -1799 406 l -1803 396 l -1807 386 l -1811 376 l -1815 366 l -1819 356 l -1822 345 l -1826 335 l -1830 325 l -1834 315 l -s -1834 315 m -1837 305 l -1841 295 l -1845 284 l -1848 274 l -1852 264 l -1855 254 l -1859 243 l -1862 233 l -1866 223 l -1869 213 l -1873 202 l -1876 192 l -1880 182 l -1883 171 l -1886 161 l -1890 151 l -1893 140 l -1896 130 l -1899 120 l -1902 109 l -1906 99 l -1909 89 l -1912 78 l -1915 68 l -1918 57 l -1921 47 l -1924 37 l -1927 26 l -1930 16 l -1933 5 l -1933 3 l -s -1617 816 m -1640 795 l -1647 787 l -1655 780 l -1663 772 l -1671 765 l -1679 757 l -1687 750 l -1694 742 l -1702 735 l -1710 727 l -1718 720 l -1726 712 l -1733 705 l -1741 697 l -1749 690 l -1757 682 l -1765 674 l -1772 667 l -1780 659 l -1788 652 l -1795 644 l -1803 637 l -1811 629 l -1819 621 l -1826 614 l -1834 606 l -1842 598 l -1849 591 l -1857 583 l -1864 575 l -1872 568 l -1880 560 l -1887 552 l -1895 544 l -1902 537 l -1910 529 l -1918 521 l -1925 513 l -1933 505 l -1940 498 l -1948 490 l -1955 482 l -1963 474 l -1970 466 l -1978 458 l -1985 451 l -1992 443 l -2000 435 l -2007 427 l -s -2007 427 m -2015 419 l -2022 411 l -2029 403 l -2037 395 l -2044 387 l -2051 379 l -2059 371 l -2066 363 l -2073 355 l -2081 347 l -2088 339 l -2095 331 l -2102 323 l -2110 315 l -2117 307 l -2124 299 l -2131 291 l -2139 283 l -2146 274 l -2148 272 l -s -1617 816 m -1640 807 l -1650 802 l -1661 798 l -1671 794 l -1681 790 l -1691 786 l -1701 782 l -1711 778 l -1721 774 l -1731 770 l -1741 766 l -1751 762 l -1761 757 l -1771 753 l -1781 749 l -1791 745 l -1801 741 l -1811 737 l -1821 733 l -1831 728 l -1841 724 l -1851 720 l -1861 716 l -1871 712 l -1881 708 l -1891 703 l -1901 699 l -1911 695 l -1921 691 l -1931 687 l -1941 682 l -1951 678 l -1961 674 l -1971 670 l -1981 665 l -1991 661 l -2001 657 l -2011 653 l -2021 648 l -2030 644 l -2040 640 l -2050 635 l -2060 631 l -2070 627 l -2080 623 l -2090 618 l -2100 614 l -2110 610 l -2120 605 l -s -2120 605 m -2130 601 l -2140 596 l -2148 593 l -s -2148 593 m -[] 0 setdash -[ 24 8 24 8] 0 setdash -3 644 m -10 647 l -21 651 l -31 655 l -41 659 l -51 663 l -61 667 l -71 670 l -81 674 l -92 678 l -102 682 l -112 685 l -122 689 l -132 692 l -143 696 l -153 700 l -163 703 l -173 707 l -184 710 l -194 714 l -204 717 l -214 720 l -225 724 l -235 727 l -245 730 l -256 734 l -266 737 l -276 740 l -287 744 l -297 747 l -307 750 l -318 753 l -328 756 l -338 760 l -349 763 l -359 766 l -370 769 l -380 772 l -390 775 l -401 778 l -411 781 l -421 784 l -432 787 l -442 790 l -453 793 l -463 796 l -474 799 l -484 802 l -494 805 l -505 808 l -s -505 808 m -534 816 l -s -47 3 m -47 10 l -47 20 l -47 31 l -48 42 l -49 53 l -50 64 l -51 74 l -53 85 l -54 96 l -56 107 l -58 117 l -60 128 l -62 139 l -64 149 l -67 160 l -70 170 l -73 181 l -76 191 l -79 201 l -82 212 l -85 222 l -89 232 l -93 242 l -96 253 l -100 263 l -104 273 l -109 283 l -113 293 l -117 303 l -122 312 l -126 322 l -131 332 l -136 342 l -141 351 l -146 361 l -151 370 l -157 380 l -162 389 l -167 399 l -173 408 l -179 417 l -184 426 l -190 436 l -196 445 l -202 454 l -208 463 l -214 472 l -221 480 l -227 489 l -s -227 489 m -233 498 l -240 507 l -246 515 l -253 524 l -259 533 l -266 541 l -273 550 l -280 558 l -287 566 l -294 575 l -301 583 l -308 591 l -315 599 l -322 607 l -329 615 l -337 623 l -344 631 l -351 639 l -359 647 l -366 655 l -374 663 l -381 671 l -389 678 l -396 686 l -404 694 l -412 701 l -420 709 l -427 717 l -435 724 l -443 732 l -451 739 l -459 746 l -467 754 l -474 761 l -482 769 l -490 776 l -498 783 l -506 791 l -514 798 l -534 816 l -s -621 3 m -613 9 l -604 15 l -595 22 l -587 28 l -579 36 l -571 43 l -563 50 l -555 58 l -548 66 l -541 74 l -534 83 l -527 91 l -521 100 l -515 109 l -509 118 l -503 127 l -497 136 l -492 146 l -487 156 l -483 165 l -478 175 l -474 185 l -470 195 l -466 205 l -462 216 l -459 226 l -456 236 l -453 247 l -451 257 l -448 268 l -446 278 l -444 289 l -442 300 l -441 311 l -439 321 l -438 332 l -437 343 l -437 354 l -436 365 l -436 375 l -436 386 l -436 397 l -436 408 l -436 419 l -437 430 l -437 440 l -438 451 l -439 462 l -440 473 l -s -440 473 m -441 484 l -443 494 l -444 505 l -446 516 l -448 526 l -450 537 l -452 548 l -454 558 l -456 569 l -459 579 l -461 590 l -464 601 l -466 611 l -469 622 l -472 632 l -475 642 l -478 653 l -481 663 l -484 674 l -488 684 l -491 694 l -494 704 l -498 715 l -501 725 l -505 735 l -508 746 l -512 756 l -516 766 l -519 776 l -523 786 l -534 816 l -s -534 816 m -[] 0 setdash -[ 24 8 24 8] 0 setdash -3 644 m -10 647 l -21 651 l -31 655 l -41 659 l -51 663 l -61 667 l -71 670 l -81 674 l -92 678 l -102 682 l -112 685 l -122 689 l -132 692 l -143 696 l -153 700 l -163 703 l -173 707 l -184 710 l -194 714 l -204 717 l -214 720 l -225 724 l -235 727 l -245 730 l -256 734 l -266 737 l -276 740 l -287 744 l -297 747 l -307 750 l -318 753 l -328 756 l -338 760 l -349 763 l -359 766 l -370 769 l -380 772 l -390 775 l -401 778 l -411 781 l -421 784 l -432 787 l -442 790 l -453 793 l -463 796 l -474 799 l -484 802 l -494 805 l -505 808 l -s -505 808 m -534 816 l -s -3 935 m -8 934 l -19 931 l -29 928 l -40 925 l -50 923 l -61 920 l -71 917 l -82 915 l -92 912 l -103 909 l -113 907 l -124 904 l -134 902 l -145 899 l -155 896 l -166 894 l -176 891 l -187 889 l -197 887 l -208 884 l -219 882 l -229 879 l -240 877 l -250 875 l -261 872 l -271 870 l -282 868 l -293 865 l -303 863 l -314 861 l -324 858 l -335 856 l -346 854 l -356 852 l -367 850 l -377 847 l -388 845 l -399 843 l -409 841 l -420 839 l -430 837 l -441 834 l -452 832 l -462 830 l -473 828 l -484 826 l -494 824 l -505 822 l -534 816 l -s -534 816 m -3 1482 m -4 1479 l -7 1469 l -10 1459 l -14 1449 l -18 1438 l -22 1428 l -26 1418 l -30 1408 l -34 1398 l -38 1388 l -43 1378 l -47 1368 l -52 1359 l -57 1349 l -61 1339 l -66 1330 l -72 1320 l -77 1311 l -82 1301 l -88 1292 l -93 1282 l -99 1273 l -104 1264 l -110 1255 l -116 1246 l -122 1237 l -128 1228 l -134 1219 l -140 1210 l -147 1201 l -153 1192 l -159 1183 l -166 1175 l -173 1166 l -179 1158 l -186 1149 l -193 1141 l -200 1132 l -206 1124 l -213 1116 l -221 1107 l -228 1099 l -235 1091 l -242 1083 l -249 1075 l -257 1067 l -264 1059 l -271 1051 l -279 1043 l -s -279 1043 m -287 1036 l -294 1028 l -302 1020 l -309 1013 l -317 1005 l -325 997 l -333 990 l -341 983 l -349 975 l -356 968 l -364 960 l -372 953 l -380 946 l -389 939 l -397 931 l -405 924 l -413 917 l -421 910 l -429 903 l -438 896 l -446 889 l -454 882 l -462 875 l -471 868 l -479 861 l -487 854 l -496 847 l -504 840 l -512 833 l -534 816 l -s -577 1629 m -572 1624 l -564 1617 l -556 1610 l -548 1602 l -541 1595 l -533 1587 l -526 1578 l -519 1570 l -513 1562 l -506 1553 l -500 1544 l -494 1535 l -488 1526 l -483 1516 l -478 1507 l -473 1497 l -468 1487 l -464 1477 l -459 1467 l -455 1457 l -452 1447 l -448 1437 l -445 1427 l -442 1416 l -439 1406 l -436 1395 l -434 1385 l -432 1374 l -430 1363 l -428 1353 l -426 1342 l -425 1331 l -424 1320 l -423 1310 l -422 1299 l -422 1288 l -422 1277 l -421 1266 l -422 1256 l -422 1245 l -422 1234 l -423 1223 l -423 1212 l -424 1201 l -425 1191 l -426 1180 l -428 1169 l -429 1158 l -431 1148 l -s -431 1148 m -433 1137 l -435 1126 l -437 1116 l -439 1105 l -441 1094 l -443 1084 l -446 1073 l -448 1063 l -451 1052 l -454 1042 l -457 1031 l -460 1021 l -463 1011 l -466 1000 l -469 990 l -473 979 l -476 969 l -480 959 l -483 949 l -487 938 l -490 928 l -494 918 l -498 908 l -502 898 l -506 888 l -510 878 l -513 867 l -517 857 l -521 847 l -534 816 l -s -534 816 m -[] 0 setdash -showpage - -%%EndFile -end end epssave restore -grestore -grestore -/crlinw 1.9 def -0.75 6.556708e-08 6.556708e-08 -0.75 30.239998 690.119995 sc4mt astore 0.75 6.556708e-08 6.556708e-08 -0.75 30.239998 690.119995 sc5mt astore 14 -7 239 673 0.75 6.556708e-08 6.556708e-08 -0.75 100.989944 893.869995 sc6mt astore ssl -0.75 6.556708e-08 6.556708e-08 -0.75 30.239998 690.119995 sc4mt astore 0.75 6.556708e-08 6.556708e-08 -0.75 30.239998 690.119995 sc5mt astore -13 -9 253 665 0.75 6.556708e-08 6.556708e-08 -0.75 100.989944 893.869995 sc6mt astore ssl -0.336085 -0.670483 0.670483 0.336085 -166.118378 615.741943 sc4mt astore 0.336085 -0.670483 0.670483 0.336085 -166.118378 615.741943 sc5mt astore 14 -7 239 673 0.330245 -0.658832 0.670483 0.336085 -134.073929 459.190857 sc6mt astore ssl -0.336085 -0.670483 0.670483 0.336085 -166.118378 615.741943 sc4mt astore 0.336085 -0.670483 0.670483 0.336085 -166.118378 615.741943 sc5mt astore -13 -9 253 665 0.330245 -0.658832 0.670483 0.336085 -134.073929 459.190857 sc6mt astore ssl -0.716846 -0.220525 0.220525 0.716846 38.798534 224.847916 sc4mt astore 0.716846 -0.220525 0.220525 0.716846 38.798534 224.847916 sc5mt astore 14 -7 239 673 0.716846 -0.220525 0.220525 0.716846 -56.856838 107.116074 sc6mt astore ssl -0.716846 -0.220525 0.220525 0.716846 38.798534 224.847916 sc4mt astore 0.716846 -0.220525 0.220525 0.716846 38.798534 224.847916 sc5mt astore -13 -9 253 665 0.716846 -0.220525 0.220525 0.716846 -56.856838 107.116074 sc6mt astore ssl -0.749091 -0.036912 0.036912 0.749091 89.506111 153.36824 sc4mt astore 0.749091 -0.036912 0.036912 0.749091 89.506111 153.36824 sc5mt astore 14 -7 239 673 0.749091 -0.036912 0.036912 0.749091 63.473656 -18.610775 sc6mt astore ssl -0.749091 -0.036912 0.036912 0.749091 89.506111 153.36824 sc4mt astore 0.749091 -0.036912 0.036912 0.749091 89.506111 153.36824 sc5mt astore -13 -9 253 665 0.749091 -0.036912 0.036912 0.749091 63.473656 -18.610775 sc6mt astore ssl -9.835062e-08 -0.75 0.75 9.835062e-08 -46.515125 926.174866 sc4mt astore 9.835062e-08 -0.75 0.75 9.835062e-08 -46.515125 926.174866 sc5mt astore 14 -7 239 673 9.835062e-08 -0.75 0.75 9.835062e-08 -58.765106 709.424866 sc6mt astore ssl -9.835062e-08 -0.75 0.75 9.835062e-08 -46.515125 926.174866 sc4mt astore 9.835062e-08 -0.75 0.75 9.835062e-08 -46.515125 926.174866 sc5mt astore -13 -9 253 665 9.835062e-08 -0.75 0.75 9.835062e-08 -58.765106 709.424866 sc6mt astore ssl --0.248572 -0.70761 0.70761 -0.248572 157.095444 1116.06189 sc4mt astore -0.248572 -0.70761 0.70761 -0.248572 157.095444 1116.06189 sc5mt astore 14 -7 239 673 -0.248572 -0.70761 0.70761 -0.248572 76.882095 849.793213 sc6mt astore ssl --0.248572 -0.70761 0.70761 -0.248572 157.095444 1116.06189 sc4mt astore -0.248572 -0.70761 0.70761 -0.248572 157.095444 1116.06189 sc5mt astore -13 -9 253 665 -0.248572 -0.70761 0.70761 -0.248572 76.882095 849.793213 sc6mt astore ssl -0.748508 -0.047279 0.047279 0.748508 43.298038 126.778152 sc4mt astore 0.748508 -0.047279 0.047279 0.748508 43.298038 126.778152 sc5mt astore 14 -7 239 673 0.748508 -0.047279 0.050012 0.791778 61.270451 -84.067215 sc6mt astore ssl -0.748508 -0.047279 0.047279 0.748508 43.298038 126.778152 sc4mt astore 0.748508 -0.047279 0.047279 0.748508 43.298038 126.778152 sc5mt astore -13 -9 253 665 0.748508 -0.047279 0.050012 0.791778 61.270451 -84.067215 sc6mt astore ssl -0.743775 -0.096433 0.096433 0.743775 76.271896 97.481522 sc4mt astore 0.743775 -0.096433 0.096433 0.743775 76.271896 97.481522 sc5mt astore 14 -7 239 673 0.743775 -0.096433 0.096433 0.743775 34.886299 -152.736877 sc6mt astore ssl -0.743775 -0.096433 0.096433 0.743775 76.271896 97.481522 sc4mt astore 0.743775 -0.096433 0.096433 0.743775 76.271896 97.481522 sc5mt astore -13 -9 253 665 0.743775 -0.096433 0.096433 0.743775 34.886299 -152.736877 sc6mt astore ssl -0.731118 -0.167232 0.167232 0.731118 10.110463 142.71077 sc4mt astore 0.731118 -0.167232 0.167232 0.731118 10.110463 142.71077 sc5mt astore 14 -7 239 673 0.731118 -0.167232 0.161139 0.704483 -7.141889 -67.48999 sc6mt astore ssl -0.731118 -0.167232 0.167232 0.731118 10.110463 142.71077 sc4mt astore 0.731118 -0.167232 0.167232 0.731118 10.110463 142.71077 sc5mt astore -13 -9 253 665 0.731118 -0.167232 0.161139 0.704483 -7.141889 -67.48999 sc6mt astore ssl -0.744916 0.087182 -0.087182 0.744916 161.049515 56.824364 sc4mt astore 0.744916 0.087182 -0.087182 0.744916 161.049515 56.824364 sc5mt astore 14 -7 239 673 0.744916 0.087182 -0.087182 0.744916 148.001617 -257.625641 sc6mt astore ssl -0.744916 0.087182 -0.087182 0.744916 161.049515 56.824364 sc4mt astore 0.744916 0.087182 -0.087182 0.744916 161.049515 56.824364 sc5mt astore -13 -9 253 665 0.744916 0.087182 -0.087182 0.744916 148.001617 -257.625641 sc6mt astore ssl --0.656329 -0.362949 -0.362949 0.656329 518.684814 197.219818 sc4mt astore -0.656329 -0.362949 -0.362949 0.656329 518.684814 197.219818 sc5mt astore 14 -7 239 673 -0.656329 -0.362949 -0.362949 0.656329 491.52475 20.993069 sc6mt astore ssl --0.656329 -0.362949 -0.362949 0.656329 518.684814 197.219818 sc4mt astore -0.656329 -0.362949 -0.362949 0.656329 518.684814 197.219818 sc5mt astore -13 -9 253 665 -0.656329 -0.362949 -0.362949 0.656329 491.52475 20.993069 sc6mt astore ssl --0.474273 0.581004 -0.581004 -0.474273 714.274902 698.598938 sc4mt astore -0.474273 0.581004 -0.581004 -0.474273 714.274902 698.598938 sc5mt astore 14 -7 239 673 -0.474273 0.581004 -0.581004 -0.474273 1036.974731 469.474487 sc6mt astore ssl --0.474273 0.581004 -0.581004 -0.474273 714.274902 698.598938 sc4mt astore -0.474273 0.581004 -0.581004 -0.474273 714.274902 698.598938 sc5mt astore -13 -9 253 665 -0.474273 0.581004 -0.581004 -0.474273 1036.974731 469.474487 sc6mt astore ssl --0.667424 0.342119 -0.342119 -0.667424 790.056763 986.462646 sc4mt astore -0.667424 0.342119 -0.342119 -0.667424 790.056763 986.462646 sc5mt astore 14 -7 239 673 -0.667424 0.342119 -0.342119 -0.667424 931.667847 711.367737 sc6mt astore ssl --0.667424 0.342119 -0.342119 -0.667424 790.056763 986.462646 sc4mt astore -0.667424 0.342119 -0.342119 -0.667424 790.056763 986.462646 sc5mt astore -13 -9 253 665 -0.667424 0.342119 -0.342119 -0.667424 931.667847 711.367737 sc6mt astore ssl --0.159702 0.7328 -0.7328 -0.159702 967.809814 410.872711 sc4mt astore -0.159702 0.7328 -0.7328 -0.159702 967.809814 410.872711 sc5mt astore 14 -7 239 673 -0.159702 0.7328 -0.7328 -0.159702 1020.42041 184.140686 sc6mt astore ssl --0.159702 0.7328 -0.7328 -0.159702 967.809814 410.872711 sc4mt astore -0.159702 0.7328 -0.7328 -0.159702 967.809814 410.872711 sc5mt astore -13 -9 253 665 -0.159702 0.7328 -0.7328 -0.159702 1020.42041 184.140686 sc6mt astore ssl -0.065001 0.747178 -0.747178 0.065001 896.53064 191.668579 sc4mt astore 0.065001 0.747178 -0.747178 0.065001 896.53064 191.668579 sc5mt astore 14 -7 239 673 0.065001 0.747178 -0.747178 0.065001 921.478638 27.208008 sc6mt astore ssl -0.065001 0.747178 -0.747178 0.065001 896.53064 191.668579 sc4mt astore 0.065001 0.747178 -0.747178 0.065001 896.53064 191.668579 sc5mt astore -13 -9 253 665 0.065001 0.747178 -0.747178 0.065001 921.478638 27.208008 sc6mt astore ssl -0.423067 0.619285 -0.619285 0.423067 661.376282 41.506428 sc4mt astore 0.423067 0.619285 -0.619285 0.423067 661.376282 41.506428 sc5mt astore 14 -7 239 673 0.423067 0.619285 -0.619285 0.423067 697.677307 -171.500122 sc6mt astore ssl -0.423067 0.619285 -0.619285 0.423067 661.376282 41.506428 sc4mt astore 0.423067 0.619285 -0.619285 0.423067 661.376282 41.506428 sc5mt astore -13 -9 253 665 0.423067 0.619285 -0.619285 0.423067 697.677307 -171.500122 sc6mt astore ssl --0.75 -1.311342e-07 -1.311342e-07 0.75 826.320007 100.98008 sc4mt astore -0.75 -1.311342e-07 -1.311342e-07 0.75 826.320007 100.98008 sc5mt astore 14 -7 239 673 -0.75 -1.311342e-07 -1.311342e-07 0.75 725.570007 -104.269867 sc6mt astore ssl --0.75 -1.311342e-07 -1.311342e-07 0.75 826.320007 100.98008 sc4mt astore -0.75 -1.311342e-07 -1.311342e-07 0.75 826.320007 100.98008 sc5mt astore -13 -9 253 665 -0.75 -1.311342e-07 -1.311342e-07 0.75 725.570007 -104.269867 sc6mt astore ssl --0.678186 -0.320257 0.320257 -0.678186 586.556763 1173.768433 sc4mt astore -0.678186 -0.320257 0.320257 -0.678186 586.556763 1173.768433 sc5mt astore 14 -7 239 673 -0.788888 -0.372533 0.343778 -0.727994 503.202484 1013.126404 sc6mt astore ssl --0.678186 -0.320257 0.320257 -0.678186 586.556763 1173.768433 sc4mt astore -0.678186 -0.320257 0.320257 -0.678186 586.556763 1173.768433 sc5mt astore -13 -9 253 665 -0.788888 -0.372533 0.343778 -0.727994 503.202484 1013.126404 sc6mt astore ssl --0.559539 -0.499416 0.499416 -0.559539 355.938416 1136.450073 sc4mt astore -0.559539 -0.499416 0.499416 -0.559539 355.938416 1136.450073 sc5mt astore 14 -7 239 673 -0.559539 -0.499416 0.499416 -0.559539 332.203522 980.66095 sc6mt astore ssl --0.559539 -0.499416 0.499416 -0.559539 355.938416 1136.450073 sc4mt astore -0.559539 -0.499416 0.499416 -0.559539 355.938416 1136.450073 sc5mt astore -13 -9 253 665 -0.559539 -0.499416 0.499416 -0.559539 332.203522 980.66095 sc6mt astore ssl --0.429163 -0.615076 -0.615076 0.429163 596.854065 374.396332 sc4mt astore -0.429163 -0.615076 -0.615076 0.429163 596.854065 374.396332 sc5mt astore 14 -7 239 673 -0.429163 -0.615076 -0.615076 0.429163 626.612427 194.364838 sc6mt astore ssl --0.429163 -0.615076 -0.615076 0.429163 596.854065 374.396332 sc4mt astore -0.429163 -0.615076 -0.615076 0.429163 596.854065 374.396332 sc5mt astore -13 -9 253 665 -0.429163 -0.615076 -0.615076 0.429163 626.612427 194.364838 sc6mt astore ssl --0.064217 0.747246 -0.747246 -0.064217 570.33783 484.102478 sc4mt astore -0.064217 0.747246 -0.747246 -0.064217 570.33783 484.102478 sc5mt astore 14 -7 239 673 -0.064217 0.747246 -0.747246 -0.064217 663.362854 334.241425 sc6mt astore ssl --0.064217 0.747246 -0.747246 -0.064217 570.33783 484.102478 sc4mt astore -0.064217 0.747246 -0.747246 -0.064217 570.33783 484.102478 sc5mt astore -13 -9 253 665 -0.064217 0.747246 -0.747246 -0.064217 663.362854 334.241425 sc6mt astore ssl --0.494022 0.564307 -0.564307 -0.494022 715.240784 733.776001 sc4mt astore -0.494022 0.564307 -0.564307 -0.494022 715.240784 733.776001 sc5mt astore 14 -7 239 673 -0.388547 0.443825 -0.564307 -0.494022 577.319336 676.505615 sc6mt astore ssl --0.494022 0.564307 -0.564307 -0.494022 715.240784 733.776001 sc4mt astore -0.494022 0.564307 -0.564307 -0.494022 715.240784 733.776001 sc5mt astore -13 -9 253 665 -0.388547 0.443825 -0.564307 -0.494022 577.319336 676.505615 sc6mt astore ssl --0.734415 0.152101 0.152101 0.734415 41.008286 115.479607 sc4mt astore -0.734415 0.152101 0.152101 0.734415 41.008286 115.479607 sc5mt astore 14 -7 239 673 -0.734415 0.152101 0.152101 0.734415 164.346115 -112.048782 sc6mt astore ssl --0.734415 0.152101 0.152101 0.734415 41.008286 115.479607 sc4mt astore -0.734415 0.152101 0.152101 0.734415 41.008286 115.479607 sc5mt astore -13 -9 253 665 -0.734415 0.152101 0.152101 0.734415 164.346115 -112.048782 sc6mt astore ssl --0.17246 -0.729903 0.729903 -0.17246 -285.706177 849.927002 sc4mt astore -0.17246 -0.729903 0.729903 -0.17246 -285.706177 849.927002 sc5mt astore 14 -7 239 673 -0.179295 -0.729903 0.758833 -0.17246 -307.84314 611.050476 sc6mt astore ssl --0.17246 -0.729903 0.729903 -0.17246 -285.706177 849.927002 sc4mt astore -0.17246 -0.729903 0.729903 -0.17246 -285.706177 849.927002 sc5mt astore -13 -9 253 665 -0.179295 -0.729903 0.758833 -0.17246 -307.84314 611.050476 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(c ) [20.015991 0 0 0] 201 65 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 -142 332] dotx -(a ) [20.015991 0 0 0] 287 85 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 33.000031 301] dotx -(b ) [21.996002 0 0 0] 358 79 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 -206 164] dotx -/txtdraw true def -/txlndraw true def -(Q) [0 0] 240 87 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 177 337] dotx -/txtdraw true def -/txlndraw true def -(1 ) [20.015991 0 0 0] 268.007996 72.599998 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 177 337] dotx -/txtdraw true def -/txlndraw true def -(Q) [0 0] 396 132 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 -241 289] dotx -/txtdraw true def -/txlndraw true def -(2 ) [20.015991 0 0 0] 424.007996 117.599998 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 -241 289] dotx -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold -%%EndFile -end end epssave restore -grestore -grestore -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -1 0 0 1 0 0 sc5mt astore 55 397 25 21 1 0 0 1 0 0 sc6mt astore rfill -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -13 4 83 415 1 0 0 1 0 0 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(c ) [19.460007 0 0 0] 139 677 /Helvetica-Bold [ 35 1 mul 0 0 35 0 0 ] [1 0 0 1 -86 -294] dotx -end -grestore -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold -%%BoundingBox: 0.000000 0.000000 612.000000 792.000000 diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob09v1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob09v1.gif deleted file mode 100755 index 049eaeeab..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob09v1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob09v2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob09v2.eps deleted file mode 100755 index d035ab2c2..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob09v2.eps +++ /dev/null @@ -1,3370 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Thu Jan 5 16:15:40 1995 -%%For: prof -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 612 792 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /TDeps_dict 20 dict def TDeps_dict begin /showpage { - -} def /copypage { - -} def /grestoreall { - -} def /erasepage { - -} def /nulldevice { - -} def /exitserver { - -} def /initgraphics { - -} def /renderbands { - -} def /initmatrix { - -} def /banddevice { - -} def /setpageparams { - -} def /framedevice { - -} def /note { - -} def end end -TopDrawDict begin /rpath { - newpath moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} bind def /rfpath { - /rad3 exch def /hh3 exch def /ww3 exch def /yy1 exch def /xx1 exch def /xx2 xx1 ww3 add def /yy2 yy1 hh3 add def newpath xx1 yy1 rad3 hh3 0 gt { - add - } { - sub - } ifelse moveto xx1 yy1 xx2 yy1 rad3 arcto 4 { - pop - } repeat xx2 yy1 xx2 yy2 rad3 arcto 4 { - pop - } repeat xx2 yy2 xx1 yy2 rad3 arcto 4 { - pop - } repeat xx1 yy2 xx1 yy1 rad3 arcto 4 { - pop - } repeat closepath -} bind def /rfill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - 4 2 roll rpath crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - rectfill pop - } ifelse grestore -} bind def /rstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse 4 2 roll rpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /rffill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse rfpath filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /rfstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse rfpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /mkrpath { - dodrawctm rpath unpagectm -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 612 792 rectclip -0 0 612 792 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 0 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 0 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 0 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -end -grestore -1 0 0 1 0 0 sc5mt astore 55 397 25 21 1 0 0 1 0 0 sc6mt astore rfill -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -13 4 83 415 1 0 0 1 0 0 sc6mt astore ssl -gsave clpmt currentmatrix pop newpath -1 0 0 1 -1 0 sc5mt astore pop false { - sc5mt dodrawctm 47.5 200 517 392 0 rfpath unpagectm -} { - 517 392 47.5 200 sc5mt mkrpath -} ifelse -clip -newpath -clpmt setmatrix -gsave -/epssave save def 0 setgray 1 setlinewidth 0 setlinecap 0 setlinejoin 10 setmiterlimit [] 0 setdash newpath TDeps_dict begin userdict begin -[1 0 0 1 -1 0] dodrawctm -47.5 200 translate -%%BeginFile: /prof/CAPA/physimage/efield_2q_pos.eps -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Wed Aug 4 11:51:32 1993 -%%For: teacher2 -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 517 392 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /TDeps_dict 20 dict def TDeps_dict begin /showpage { - -} def /copypage { - -} def /grestoreall { - -} def /erasepage { - -} def /nulldevice { - -} def /exitserver { - -} def /initgraphics { - -} def /renderbands { - -} def /initmatrix { - -} def /banddevice { - -} def /setpageparams { - -} def /framedevice { - -} def /note { - -} def end end -TopDrawDict begin /rpath { - newpath moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} bind def /rfpath { - /rad3 exch def /hh3 exch def /ww3 exch def /yy1 exch def /xx1 exch def /xx2 xx1 ww3 add def /yy2 yy1 hh3 add def newpath xx1 yy1 rad3 hh3 0 gt { - add - } { - sub - } ifelse moveto xx1 yy1 xx2 yy1 rad3 arcto 4 { - pop - } repeat xx2 yy1 xx2 yy2 rad3 arcto 4 { - pop - } repeat xx2 yy2 xx1 yy2 rad3 arcto 4 { - pop - } repeat xx1 yy2 xx1 yy1 rad3 arcto 4 { - pop - } repeat closepath -} bind def /rfill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - 4 2 roll rpath crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - rectfill pop - } ifelse grestore -} bind def /rstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse 4 2 roll rpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /rffill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse rfpath filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /rfstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse rfpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /mkrpath { - dodrawctm rpath unpagectm -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 516.23999 391.679993 rectclip --47.879974 -199.160034 translate -47.879974 199.160034 516.23999 391.679993 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 2.412863e-35 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -gsave clpmt currentmatrix pop newpath -1 0 0 1 0 -1 sc5mt astore pop false { - sc5mt dodrawctm 47.879974 200.160004 516.240051 391.679993 0 rfpath unpagectm -} { - 516.240051 391.679993 47.879974 200.160004 sc5mt mkrpath -} ifelse -clip -newpath -clpmt setmatrix -gsave -/epssave save def 0 setgray 1 setlinewidth 0 setlinecap 0 setlinejoin 10 setmiterlimit [] 0 setdash newpath TDeps_dict begin userdict begin -[1 0 0 1 0 -1] dodrawctm -26.279968 178.559998 translate -%%BeginFile: /tmp/topdraw_eps_5265_206 -%! -%%BoundingBox: 21.60 21.60 537.84 413.28 -0.23999 dup scale -90 90 translate -2 setlinejoin -/l {lineto} def /m {moveto} def /j {rlineto} def /k {rmoveto} def /s {stroke} def -/m1 {-4 0 k 8 0 j -4 -4 k 0 8 j} bind def -/m2 {-4 -4 k 8 8 j -8 0 k 8 -8 j} bind def -/m3 {-8 0 k 16 0 j -8 -8 k 0 16 j} bind def -/m4 {-8 -8 k 16 16 j -16 0 k 16 -16 j} bind def -/m5 {8 -3 k 0 6 j -5 5 j -6 0 j -5 -5 j 0 -6 j 5 -5 j 6 0 j 5 5 j} bind def -/m6 {0 -8 k 0 16 j -7 -4 k 14 -8 j 0 8 k -14 -8 j} bind def -/m7 {0 9 k -8 -14 j 16 0 j -8 14 j} bind def -/m8 {0 -9 k 8 14 j -16 0 j 8 -14 j} bind def -/m9 {-12 0 k 24 0 j -12 -12 k 0 24 j} bind def -/m10 {-12 -12 k 24 24 j -24 0 k 24 -24 j} bind def -/m11 {12 -5 k 0 10 j -7 7 j -10 0 j -7 -7 j 0 -10 j 7 -7 j 10 0 j 7 7 j} bind def -/m12 {0 -12 k 0 24 j -10 -6 k 20 -12 j 0 12 k -20 -12 j} bind def - 1 setlinewidth -[] 0 setdash -/font1 /Courier-Bold findfont 40 scalefont def -font1 setfont - 4 setlinewidth -3 3 m -2148 3 l -2148 1629 l -3 1629 l -3 3 l -s -3 3 m -534 816 m -m5 s -534 816 m -1617 816 m -m5 s -1617 816 m -534 816 m -m2 s -534 816 m -1617 816 m -m2 s -1617 816 m - 2 setlinewidth -[ 24 8 24 8] 0 setdash -1617 816 m -1585 816 l -1574 816 l -1563 816 l -1552 816 l -1541 816 l -1531 816 l -1520 816 l -1509 816 l -1498 816 l -1487 816 l -1476 816 l -1466 816 l -1455 816 l -1444 816 l -1433 816 l -1422 816 l -1411 816 l -1401 816 l -1390 816 l -1379 816 l -1368 816 l -1357 816 l -1346 816 l -1336 816 l -1325 816 l -1314 816 l -1303 816 l -1292 816 l -1281 816 l -1271 816 l -1260 816 l -1249 816 l -1238 816 l -1227 816 l -1216 816 l -1206 816 l -1195 816 l -1184 816 l -1173 816 l -1162 816 l -1151 816 l -1141 816 l -1130 816 l -1119 816 l -1108 816 l -1097 816 l -1086 816 l -1076 816 l -1065 816 l -s -1065 816 m -1054 816 l -1043 816 l -1032 816 l -1021 816 l -1011 816 l -1000 816 l -989 816 l -978 816 l -967 816 l -956 816 l -946 816 l -935 816 l -924 816 l -913 816 l -902 816 l -891 816 l -881 816 l -870 816 l -859 816 l -848 816 l -837 816 l -826 816 l -816 816 l -805 816 l -794 816 l -783 816 l -772 816 l -761 816 l -751 816 l -740 816 l -729 816 l -718 816 l -707 816 l -696 816 l -686 816 l -675 816 l -664 816 l -653 816 l -642 816 l -631 816 l -621 816 l -610 816 l -599 816 l -588 816 l -577 816 l -566 816 l -534 816 l -s -1617 816 m -1594 824 l -1584 827 l -1573 830 l -1563 834 l -1553 837 l -1542 841 l -1532 844 l -1522 847 l -1512 851 l -1501 854 l -1491 857 l -1481 861 l -1470 864 l -1460 867 l -1450 871 l -1439 874 l -1429 877 l -1419 881 l -1408 884 l -1398 887 l -1388 890 l -1377 893 l -1367 897 l -1357 900 l -1346 903 l -1336 906 l -1325 909 l -1315 912 l -1305 915 l -1294 918 l -1284 920 l -1273 923 l -1263 926 l -1252 929 l -1242 931 l -1231 934 l -1221 936 l -1210 938 l -1199 941 l -1189 943 l -1178 945 l -1168 947 l -1157 949 l -1146 951 l -1136 953 l -1125 954 l -1114 956 l -1103 957 l -1093 958 l -s -1093 958 m -1082 960 l -1071 960 l -1060 961 l -1049 962 l -1039 962 l -1028 963 l -1017 963 l -1006 963 l -995 963 l -984 963 l -974 962 l -963 962 l -952 961 l -941 960 l -930 959 l -920 957 l -909 956 l -898 954 l -888 952 l -877 950 l -866 948 l -856 946 l -845 943 l -835 940 l -824 938 l -814 935 l -803 932 l -793 928 l -783 925 l -773 922 l -762 918 l -752 914 l -742 910 l -732 906 l -722 902 l -712 898 l -702 894 l -692 890 l -682 886 l -672 881 l -662 877 l -652 872 l -642 868 l -633 863 l -623 859 l -613 854 l -603 850 l -593 845 l -584 840 l -s -584 840 m -574 835 l -564 831 l -534 816 l -s -1617 816 m -1595 833 l -1586 839 l -1577 846 l -1569 852 l -1560 859 l -1551 865 l -1543 872 l -1534 878 l -1525 885 l -1516 891 l -1508 897 l -1499 904 l -1490 910 l -1481 917 l -1473 923 l -1464 929 l -1455 936 l -1446 942 l -1437 948 l -1428 954 l -1420 961 l -1411 967 l -1402 973 l -1393 979 l -1384 985 l -1375 991 l -1366 997 l -1357 1003 l -1347 1009 l -1338 1014 l -1329 1020 l -1320 1026 l -1310 1031 l -1301 1037 l -1292 1042 l -1282 1047 l -1273 1053 l -1263 1058 l -1254 1063 l -1244 1068 l -1234 1072 l -1224 1077 l -1215 1082 l -1205 1086 l -1195 1090 l -1185 1094 l -1175 1098 l -1165 1102 l -1154 1106 l -s -1154 1106 m -1144 1109 l -1134 1113 l -1123 1116 l -1113 1119 l -1102 1121 l -1092 1124 l -1081 1126 l -1071 1128 l -1060 1130 l -1049 1132 l -1039 1133 l -1028 1134 l -1017 1135 l -1006 1135 l -995 1136 l -984 1136 l -974 1135 l -963 1135 l -952 1134 l -941 1132 l -931 1131 l -920 1129 l -909 1127 l -899 1125 l -888 1122 l -878 1119 l -867 1116 l -857 1112 l -847 1108 l -837 1104 l -827 1100 l -817 1095 l -808 1090 l -798 1085 l -789 1080 l -780 1074 l -770 1068 l -761 1062 l -753 1056 l -744 1049 l -735 1043 l -727 1036 l -719 1029 l -710 1022 l -702 1015 l -694 1007 l -687 1000 l -679 992 l -671 984 l -s -671 984 m -664 977 l -656 969 l -649 961 l -642 953 l -635 944 l -628 936 l -621 928 l -614 919 l -607 911 l -600 903 l -594 894 l -587 886 l -580 877 l -574 868 l -567 860 l -560 851 l -554 843 l -534 816 l -s -1617 816 m -1599 843 l -1593 852 l -1587 861 l -1581 870 l -1574 879 l -1568 888 l -1562 896 l -1556 905 l -1550 914 l -1544 923 l -1537 932 l -1531 941 l -1525 950 l -1519 959 l -1512 967 l -1506 976 l -1500 985 l -1493 994 l -1487 1003 l -1481 1011 l -1474 1020 l -1468 1029 l -1461 1037 l -1454 1046 l -1448 1054 l -1441 1063 l -1434 1071 l -1428 1080 l -1421 1088 l -1414 1097 l -1407 1105 l -1400 1113 l -1393 1122 l -1386 1130 l -1379 1138 l -1371 1146 l -1364 1154 l -1357 1162 l -1349 1170 l -1342 1177 l -1334 1185 l -1326 1193 l -1318 1200 l -1311 1208 l -1303 1215 l -1295 1222 l -1286 1229 l -1278 1237 l -1270 1244 l -s -1270 1244 m -1262 1250 l -1253 1257 l -1245 1264 l -1236 1270 l -1227 1277 l -1218 1283 l -1209 1289 l -1200 1295 l -1191 1301 l -1182 1306 l -1172 1312 l -1163 1317 l -1153 1322 l -1144 1327 l -1134 1332 l -1124 1336 l -1114 1341 l -1104 1345 l -1094 1349 l -1084 1353 l -1074 1356 l -1063 1359 l -1053 1362 l -1043 1365 l -1032 1368 l -1021 1370 l -1011 1372 l -1000 1374 l -989 1375 l -979 1376 l -968 1377 l -957 1377 l -946 1378 l -935 1377 l -924 1377 l -914 1376 l -903 1375 l -892 1374 l -881 1372 l -871 1370 l -860 1368 l -850 1365 l -839 1362 l -829 1358 l -819 1355 l -809 1351 l -799 1346 l -789 1342 l -780 1337 l -s -780 1337 m -770 1331 l -761 1326 l -752 1320 l -743 1314 l -734 1307 l -726 1300 l -717 1293 l -709 1286 l -701 1279 l -694 1271 l -686 1263 l -679 1255 l -672 1247 l -665 1238 l -659 1230 l -653 1221 l -647 1212 l -641 1203 l -635 1193 l -630 1184 l -624 1175 l -619 1165 l -615 1155 l -610 1145 l -606 1136 l -601 1126 l -597 1116 l -593 1105 l -590 1095 l -586 1085 l -583 1075 l -580 1064 l -576 1054 l -574 1043 l -571 1033 l -568 1023 l -566 1012 l -563 1001 l -561 991 l -559 980 l -557 970 l -555 959 l -553 948 l -551 938 l -549 927 l -547 916 l -546 905 l -544 895 l -543 884 l -s -543 884 m -541 873 l -540 862 l -538 852 l -537 841 l -534 816 l -s -1617 816 m -1610 841 l -1608 852 l -1605 862 l -1602 873 l -1599 883 l -1596 894 l -1594 904 l -1591 915 l -1588 925 l -1585 936 l -1582 946 l -1579 957 l -1576 967 l -1573 977 l -1570 988 l -1567 998 l -1564 1009 l -1561 1019 l -1558 1029 l -1555 1040 l -1552 1050 l -1548 1061 l -1545 1071 l -1542 1081 l -1539 1091 l -1535 1102 l -1532 1112 l -1528 1122 l -1525 1133 l -1521 1143 l -1518 1153 l -1514 1163 l -1510 1173 l -1506 1184 l -1502 1194 l -1499 1204 l -1495 1214 l -1490 1224 l -1486 1234 l -1482 1244 l -1478 1254 l -1474 1264 l -1469 1274 l -1465 1284 l -1460 1294 l -1456 1303 l -1451 1313 l -1446 1323 l -1442 1333 l -s -1442 1333 m -1437 1342 l -1432 1352 l -1427 1361 l -1421 1371 l -1416 1381 l -1411 1390 l -1406 1399 l -1400 1409 l -1395 1418 l -1389 1427 l -1383 1437 l -1377 1446 l -1372 1455 l -1366 1464 l -1360 1473 l -1353 1482 l -1347 1491 l -1341 1499 l -1334 1508 l -1328 1517 l -1321 1525 l -1315 1534 l -1308 1542 l -1301 1551 l -1294 1559 l -1287 1567 l -1280 1575 l -1273 1583 l -1265 1591 l -1258 1599 l -1250 1607 l -1243 1615 l -1235 1622 l -1228 1629 l -s -1617 816 m -1620 847 l -1621 858 l -1622 869 l -1623 880 l -1624 891 l -1625 901 l -1625 912 l -1626 923 l -1627 934 l -1628 945 l -1629 955 l -1630 966 l -1630 977 l -1631 988 l -1632 999 l -1633 1009 l -1633 1020 l -1634 1031 l -1635 1042 l -1635 1053 l -1636 1064 l -1636 1074 l -1637 1085 l -1637 1096 l -1638 1107 l -1638 1118 l -1639 1128 l -1639 1139 l -1639 1150 l -1640 1161 l -1640 1172 l -1640 1183 l -1640 1194 l -1640 1204 l -1640 1215 l -1640 1226 l -1640 1237 l -1640 1248 l -1640 1259 l -1640 1269 l -1640 1280 l -1640 1291 l -1639 1302 l -1639 1313 l -1639 1324 l -1638 1334 l -1638 1345 l -1637 1356 l -1637 1367 l -s -1637 1367 m -1636 1378 l -1635 1389 l -1634 1399 l -1634 1410 l -1633 1421 l -1632 1432 l -1631 1443 l -1630 1453 l -1629 1464 l -1628 1475 l -1627 1486 l -1625 1496 l -1624 1507 l -1623 1518 l -1621 1529 l -1620 1539 l -1619 1550 l -1617 1561 l -1615 1572 l -1614 1582 l -1612 1593 l -1610 1604 l -1609 1614 l -1607 1625 l -1606 1629 l -s -1617 816 m -1628 839 l -1633 849 l -1638 859 l -1642 869 l -1647 878 l -1651 888 l -1656 898 l -1661 908 l -1665 918 l -1670 927 l -1674 937 l -1679 947 l -1684 957 l -1688 967 l -1693 977 l -1697 987 l -1702 996 l -1706 1006 l -1711 1016 l -1715 1026 l -1719 1036 l -1724 1046 l -1728 1056 l -1733 1066 l -1737 1076 l -1741 1086 l -1745 1096 l -1750 1105 l -1754 1115 l -1758 1125 l -1762 1135 l -1767 1145 l -1771 1155 l -1775 1165 l -1779 1176 l -1783 1186 l -1787 1196 l -1791 1206 l -1795 1216 l -1799 1226 l -1803 1236 l -1807 1246 l -1811 1256 l -1815 1266 l -1819 1276 l -1822 1287 l -1826 1297 l -1830 1307 l -1834 1317 l -s -1834 1317 m -1837 1327 l -1841 1337 l -1845 1348 l -1848 1358 l -1852 1368 l -1855 1378 l -1859 1389 l -1862 1399 l -1866 1409 l -1869 1419 l -1873 1430 l -1876 1440 l -1880 1450 l -1883 1461 l -1886 1471 l -1890 1481 l -1893 1492 l -1896 1502 l -1899 1512 l -1902 1523 l -1906 1533 l -1909 1543 l -1912 1554 l -1915 1564 l -1918 1575 l -1921 1585 l -1924 1595 l -1927 1606 l -1930 1616 l -1933 1627 l -1933 1629 l -s -1617 816 m -1640 837 l -1647 845 l -1655 852 l -1663 860 l -1671 867 l -1679 875 l -1687 882 l -1694 890 l -1702 897 l -1710 905 l -1718 912 l -1726 920 l -1733 927 l -1741 935 l -1749 942 l -1757 950 l -1765 958 l -1772 965 l -1780 973 l -1788 980 l -1795 988 l -1803 995 l -1811 1003 l -1819 1011 l -1826 1018 l -1834 1026 l -1842 1034 l -1849 1041 l -1857 1049 l -1864 1057 l -1872 1064 l -1880 1072 l -1887 1080 l -1895 1088 l -1902 1095 l -1910 1103 l -1918 1111 l -1925 1119 l -1933 1127 l -1940 1134 l -1948 1142 l -1955 1150 l -1963 1158 l -1970 1166 l -1978 1174 l -1985 1181 l -1992 1189 l -2000 1197 l -2007 1205 l -s -2007 1205 m -2015 1213 l -2022 1221 l -2029 1229 l -2037 1237 l -2044 1245 l -2051 1253 l -2059 1261 l -2066 1269 l -2073 1277 l -2081 1285 l -2088 1293 l -2095 1301 l -2102 1309 l -2110 1317 l -2117 1325 l -2124 1333 l -2131 1341 l -2139 1349 l -2146 1358 l -2148 1360 l -s -1617 816 m -1640 825 l -1650 830 l -1661 834 l -1671 838 l -1681 842 l -1691 846 l -1701 850 l -1711 854 l -1721 858 l -1731 862 l -1741 866 l -1751 870 l -1761 875 l -1771 879 l -1781 883 l -1791 887 l -1801 891 l -1811 895 l -1821 899 l -1831 904 l -1841 908 l -1851 912 l -1861 916 l -1871 920 l -1881 924 l -1891 929 l -1901 933 l -1911 937 l -1921 941 l -1931 945 l -1941 950 l -1951 954 l -1961 958 l -1971 962 l -1981 967 l -1991 971 l -2001 975 l -2011 979 l -2021 984 l -2030 988 l -2040 992 l -2050 997 l -2060 1001 l -2070 1005 l -2080 1009 l -2090 1014 l -2100 1018 l -2110 1022 l -2120 1027 l -s -2120 1027 m -2130 1031 l -2140 1036 l -2148 1039 l -s -1617 816 m -1647 816 l -1658 816 l -1669 816 l -1680 816 l -1690 816 l -1701 816 l -1712 816 l -1723 816 l -1734 816 l -1745 816 l -1755 816 l -1766 816 l -1777 816 l -1788 816 l -1799 816 l -1810 816 l -1820 816 l -1831 816 l -1842 817 l -1853 817 l -1864 817 l -1875 817 l -1885 817 l -1896 817 l -1907 817 l -1918 817 l -1929 817 l -1940 817 l -1950 817 l -1961 817 l -1972 817 l -1983 817 l -1994 817 l -2005 817 l -2015 817 l -2026 817 l -2037 817 l -2048 817 l -2059 817 l -2070 817 l -2080 817 l -2091 817 l -2102 817 l -2113 817 l -2124 817 l -2135 817 l -2145 817 l -2148 817 l -s -2148 817 m -[] 0 setdash -[ 24 8 24 8] 0 setdash -1617 816 m -1585 816 l -1574 816 l -1563 816 l -1552 816 l -1541 816 l -1531 816 l -1520 816 l -1509 816 l -1498 816 l -1487 816 l -1476 816 l -1466 816 l -1455 816 l -1444 816 l -1433 816 l -1422 816 l -1411 816 l -1401 816 l -1390 816 l -1379 816 l -1368 816 l -1357 816 l -1346 816 l -1336 816 l -1325 816 l -1314 816 l -1303 816 l -1292 816 l -1281 816 l -1271 816 l -1260 816 l -1249 816 l -1238 816 l -1227 816 l -1216 816 l -1206 816 l -1195 816 l -1184 816 l -1173 816 l -1162 816 l -1151 816 l -1141 816 l -1130 816 l -1119 816 l -1108 816 l -1097 816 l -1086 816 l -1076 816 l -1065 816 l -s -1065 816 m -1054 816 l -1043 816 l -1032 816 l -1021 816 l -1011 816 l -1000 816 l -989 816 l -978 816 l -967 816 l -956 816 l -946 816 l -935 816 l -924 816 l -913 816 l -902 816 l -891 816 l -881 816 l -870 816 l -859 816 l -848 816 l -837 816 l -826 816 l -816 816 l -805 816 l -794 816 l -783 816 l -772 816 l -761 816 l -751 816 l -740 816 l -729 816 l -718 816 l -707 816 l -696 816 l -686 816 l -675 816 l -664 816 l -653 816 l -642 816 l -631 816 l -621 816 l -610 816 l -599 816 l -588 816 l -577 816 l -566 816 l -534 816 l -s -1617 816 m -1594 808 l -1584 805 l -1573 802 l -1563 798 l -1553 795 l -1542 791 l -1532 788 l -1522 785 l -1512 781 l -1501 778 l -1491 775 l -1481 771 l -1470 768 l -1460 765 l -1450 761 l -1439 758 l -1429 755 l -1419 751 l -1408 748 l -1398 745 l -1388 742 l -1377 739 l -1367 735 l -1357 732 l -1346 729 l -1336 726 l -1325 723 l -1315 720 l -1305 717 l -1294 714 l -1284 712 l -1273 709 l -1263 706 l -1252 703 l -1242 701 l -1231 698 l -1221 696 l -1210 694 l -1199 691 l -1189 689 l -1178 687 l -1168 685 l -1157 683 l -1146 681 l -1136 679 l -1125 678 l -1114 676 l -1103 675 l -1093 674 l -s -1093 674 m -1082 672 l -1071 672 l -1060 671 l -1049 670 l -1039 670 l -1028 669 l -1017 669 l -1006 669 l -995 669 l -984 669 l -974 670 l -963 670 l -952 671 l -941 672 l -930 673 l -920 675 l -909 676 l -898 678 l -888 680 l -877 682 l -866 684 l -856 686 l -845 689 l -835 692 l -824 694 l -814 697 l -803 700 l -793 704 l -783 707 l -773 710 l -762 714 l -752 718 l -742 722 l -732 726 l -722 730 l -712 734 l -702 738 l -692 742 l -682 746 l -672 751 l -662 755 l -652 760 l -642 764 l -633 769 l -623 773 l -613 778 l -603 782 l -593 787 l -584 792 l -s -584 792 m -574 797 l -564 801 l -534 816 l -s -1617 816 m -1595 799 l -1586 793 l -1577 786 l -1569 780 l -1560 773 l -1551 767 l -1543 760 l -1534 754 l -1525 747 l -1516 741 l -1508 735 l -1499 728 l -1490 722 l -1481 715 l -1473 709 l -1464 703 l -1455 696 l -1446 690 l -1437 684 l -1428 678 l -1420 671 l -1411 665 l -1402 659 l -1393 653 l -1384 647 l -1375 641 l -1366 635 l -1357 629 l -1347 623 l -1338 618 l -1329 612 l -1320 606 l -1310 601 l -1301 595 l -1292 590 l -1282 585 l -1273 579 l -1263 574 l -1254 569 l -1244 564 l -1234 560 l -1224 555 l -1215 550 l -1205 546 l -1195 542 l -1185 538 l -1175 534 l -1165 530 l -1154 526 l -s -1154 526 m -1144 523 l -1134 519 l -1123 516 l -1113 513 l -1102 511 l -1092 508 l -1081 506 l -1071 504 l -1060 502 l -1049 500 l -1039 499 l -1028 498 l -1017 497 l -1006 497 l -995 496 l -984 496 l -974 497 l -963 497 l -952 498 l -941 500 l -931 501 l -920 503 l -909 505 l -899 507 l -888 510 l -878 513 l -867 516 l -857 520 l -847 524 l -837 528 l -827 532 l -817 537 l -808 542 l -798 547 l -789 552 l -780 558 l -770 564 l -761 570 l -753 576 l -744 583 l -735 589 l -727 596 l -719 603 l -710 610 l -702 617 l -694 625 l -687 632 l -679 640 l -671 648 l -s -671 648 m -664 655 l -656 663 l -649 671 l -642 679 l -635 688 l -628 696 l -621 704 l -614 713 l -607 721 l -600 729 l -594 738 l -587 746 l -580 755 l -574 764 l -567 772 l -560 781 l -554 789 l -534 816 l -s -1617 816 m -1599 789 l -1593 780 l -1587 771 l -1581 762 l -1574 753 l -1568 744 l -1562 736 l -1556 727 l -1550 718 l -1544 709 l -1537 700 l -1531 691 l -1525 682 l -1519 673 l -1512 665 l -1506 656 l -1500 647 l -1493 638 l -1487 629 l -1481 621 l -1474 612 l -1468 603 l -1461 595 l -1454 586 l -1448 578 l -1441 569 l -1434 561 l -1428 552 l -1421 544 l -1414 535 l -1407 527 l -1400 519 l -1393 510 l -1386 502 l -1379 494 l -1371 486 l -1364 478 l -1357 470 l -1349 462 l -1342 455 l -1334 447 l -1326 439 l -1318 432 l -1311 424 l -1303 417 l -1295 410 l -1286 403 l -1278 395 l -1270 388 l -s -1270 388 m -1262 382 l -1253 375 l -1245 368 l -1236 362 l -1227 355 l -1218 349 l -1209 343 l -1200 337 l -1191 331 l -1182 326 l -1172 320 l -1163 315 l -1153 310 l -1144 305 l -1134 300 l -1124 296 l -1114 291 l -1104 287 l -1094 283 l -1084 279 l -1074 276 l -1063 273 l -1053 270 l -1043 267 l -1032 264 l -1021 262 l -1011 260 l -1000 258 l -989 257 l -979 256 l -968 255 l -957 255 l -946 254 l -935 255 l -924 255 l -914 256 l -903 257 l -892 258 l -881 260 l -871 262 l -860 264 l -850 267 l -839 270 l -829 274 l -819 277 l -809 281 l -799 286 l -789 290 l -780 295 l -s -780 295 m -770 301 l -761 306 l -752 312 l -743 318 l -734 325 l -726 332 l -717 339 l -709 346 l -701 353 l -694 361 l -686 369 l -679 377 l -672 385 l -665 394 l -659 402 l -653 411 l -647 420 l -641 429 l -635 439 l -630 448 l -624 457 l -619 467 l -615 477 l -610 487 l -606 496 l -601 506 l -597 516 l -593 527 l -590 537 l -586 547 l -583 557 l -580 568 l -576 578 l -574 589 l -571 599 l -568 609 l -566 620 l -563 631 l -561 641 l -559 652 l -557 662 l -555 673 l -553 684 l -551 694 l -549 705 l -547 716 l -546 727 l -544 737 l -543 748 l -s -543 748 m -541 759 l -540 770 l -538 780 l -537 791 l -534 816 l -s -1617 816 m -1610 791 l -1608 780 l -1605 770 l -1602 759 l -1599 749 l -1596 738 l -1594 728 l -1591 717 l -1588 707 l -1585 696 l -1582 686 l -1579 675 l -1576 665 l -1573 655 l -1570 644 l -1567 634 l -1564 623 l -1561 613 l -1558 603 l -1555 592 l -1552 582 l -1548 571 l -1545 561 l -1542 551 l -1539 541 l -1535 530 l -1532 520 l -1528 510 l -1525 499 l -1521 489 l -1518 479 l -1514 469 l -1510 459 l -1506 448 l -1502 438 l -1499 428 l -1495 418 l -1490 408 l -1486 398 l -1482 388 l -1478 378 l -1474 368 l -1469 358 l -1465 348 l -1460 338 l -1456 329 l -1451 319 l -1446 309 l -1442 299 l -s -1442 299 m -1437 290 l -1432 280 l -1427 271 l -1421 261 l -1416 251 l -1411 242 l -1406 233 l -1400 223 l -1395 214 l -1389 205 l -1383 195 l -1377 186 l -1372 177 l -1366 168 l -1360 159 l -1353 150 l -1347 141 l -1341 133 l -1334 124 l -1328 115 l -1321 107 l -1315 98 l -1308 90 l -1301 81 l -1294 73 l -1287 65 l -1280 57 l -1273 49 l -1265 41 l -1258 33 l -1250 25 l -1243 17 l -1235 10 l -1228 3 l -s -1617 816 m -1620 785 l -1621 774 l -1622 763 l -1623 752 l -1624 741 l -1625 731 l -1625 720 l -1626 709 l -1627 698 l -1628 687 l -1629 677 l -1630 666 l -1630 655 l -1631 644 l -1632 633 l -1633 623 l -1633 612 l -1634 601 l -1635 590 l -1635 579 l -1636 568 l -1636 558 l -1637 547 l -1637 536 l -1638 525 l -1638 514 l -1639 504 l -1639 493 l -1639 482 l -1640 471 l -1640 460 l -1640 449 l -1640 438 l -1640 428 l -1640 417 l -1640 406 l -1640 395 l -1640 384 l -1640 373 l -1640 363 l -1640 352 l -1640 341 l -1639 330 l -1639 319 l -1639 308 l -1638 298 l -1638 287 l -1637 276 l -1637 265 l -s -1637 265 m -1636 254 l -1635 243 l -1634 233 l -1634 222 l -1633 211 l -1632 200 l -1631 189 l -1630 179 l -1629 168 l -1628 157 l -1627 146 l -1625 136 l -1624 125 l -1623 114 l -1621 103 l -1620 93 l -1619 82 l -1617 71 l -1615 60 l -1614 50 l -1612 39 l -1610 28 l -1609 18 l -1607 7 l -1606 3 l -s -1617 816 m -1628 793 l -1633 783 l -1638 773 l -1642 763 l -1647 754 l -1651 744 l -1656 734 l -1661 724 l -1665 714 l -1670 705 l -1674 695 l -1679 685 l -1684 675 l -1688 665 l -1693 655 l -1697 645 l -1702 636 l -1706 626 l -1711 616 l -1715 606 l -1719 596 l -1724 586 l -1728 576 l -1733 566 l -1737 556 l -1741 546 l -1745 536 l -1750 527 l -1754 517 l -1758 507 l -1762 497 l -1767 487 l -1771 477 l -1775 467 l -1779 456 l -1783 446 l -1787 436 l -1791 426 l -1795 416 l -1799 406 l -1803 396 l -1807 386 l -1811 376 l -1815 366 l -1819 356 l -1822 345 l -1826 335 l -1830 325 l -1834 315 l -s -1834 315 m -1837 305 l -1841 295 l -1845 284 l -1848 274 l -1852 264 l -1855 254 l -1859 243 l -1862 233 l -1866 223 l -1869 213 l -1873 202 l -1876 192 l -1880 182 l -1883 171 l -1886 161 l -1890 151 l -1893 140 l -1896 130 l -1899 120 l -1902 109 l -1906 99 l -1909 89 l -1912 78 l -1915 68 l -1918 57 l -1921 47 l -1924 37 l -1927 26 l -1930 16 l -1933 5 l -1933 3 l -s -1617 816 m -1640 795 l -1647 787 l -1655 780 l -1663 772 l -1671 765 l -1679 757 l -1687 750 l -1694 742 l -1702 735 l -1710 727 l -1718 720 l -1726 712 l -1733 705 l -1741 697 l -1749 690 l -1757 682 l -1765 674 l -1772 667 l -1780 659 l -1788 652 l -1795 644 l -1803 637 l -1811 629 l -1819 621 l -1826 614 l -1834 606 l -1842 598 l -1849 591 l -1857 583 l -1864 575 l -1872 568 l -1880 560 l -1887 552 l -1895 544 l -1902 537 l -1910 529 l -1918 521 l -1925 513 l -1933 505 l -1940 498 l -1948 490 l -1955 482 l -1963 474 l -1970 466 l -1978 458 l -1985 451 l -1992 443 l -2000 435 l -2007 427 l -s -2007 427 m -2015 419 l -2022 411 l -2029 403 l -2037 395 l -2044 387 l -2051 379 l -2059 371 l -2066 363 l -2073 355 l -2081 347 l -2088 339 l -2095 331 l -2102 323 l -2110 315 l -2117 307 l -2124 299 l -2131 291 l -2139 283 l -2146 274 l -2148 272 l -s -1617 816 m -1640 807 l -1650 802 l -1661 798 l -1671 794 l -1681 790 l -1691 786 l -1701 782 l -1711 778 l -1721 774 l -1731 770 l -1741 766 l -1751 762 l -1761 757 l -1771 753 l -1781 749 l -1791 745 l -1801 741 l -1811 737 l -1821 733 l -1831 728 l -1841 724 l -1851 720 l -1861 716 l -1871 712 l -1881 708 l -1891 703 l -1901 699 l -1911 695 l -1921 691 l -1931 687 l -1941 682 l -1951 678 l -1961 674 l -1971 670 l -1981 665 l -1991 661 l -2001 657 l -2011 653 l -2021 648 l -2030 644 l -2040 640 l -2050 635 l -2060 631 l -2070 627 l -2080 623 l -2090 618 l -2100 614 l -2110 610 l -2120 605 l -s -2120 605 m -2130 601 l -2140 596 l -2148 593 l -s -2148 593 m -[] 0 setdash -[ 24 8 24 8] 0 setdash -3 644 m -10 647 l -21 651 l -31 655 l -41 659 l -51 663 l -61 667 l -71 670 l -81 674 l -92 678 l -102 682 l -112 685 l -122 689 l -132 692 l -143 696 l -153 700 l -163 703 l -173 707 l -184 710 l -194 714 l -204 717 l -214 720 l -225 724 l -235 727 l -245 730 l -256 734 l -266 737 l -276 740 l -287 744 l -297 747 l -307 750 l -318 753 l -328 756 l -338 760 l -349 763 l -359 766 l -370 769 l -380 772 l -390 775 l -401 778 l -411 781 l -421 784 l -432 787 l -442 790 l -453 793 l -463 796 l -474 799 l -484 802 l -494 805 l -505 808 l -s -505 808 m -534 816 l -s -47 3 m -47 10 l -47 20 l -47 31 l -48 42 l -49 53 l -50 64 l -51 74 l -53 85 l -54 96 l -56 107 l -58 117 l -60 128 l -62 139 l -64 149 l -67 160 l -70 170 l -73 181 l -76 191 l -79 201 l -82 212 l -85 222 l -89 232 l -93 242 l -96 253 l -100 263 l -104 273 l -109 283 l -113 293 l -117 303 l -122 312 l -126 322 l -131 332 l -136 342 l -141 351 l -146 361 l -151 370 l -157 380 l -162 389 l -167 399 l -173 408 l -179 417 l -184 426 l -190 436 l -196 445 l -202 454 l -208 463 l -214 472 l -221 480 l -227 489 l -s -227 489 m -233 498 l -240 507 l -246 515 l -253 524 l -259 533 l -266 541 l -273 550 l -280 558 l -287 566 l -294 575 l -301 583 l -308 591 l -315 599 l -322 607 l -329 615 l -337 623 l -344 631 l -351 639 l -359 647 l -366 655 l -374 663 l -381 671 l -389 678 l -396 686 l -404 694 l -412 701 l -420 709 l -427 717 l -435 724 l -443 732 l -451 739 l -459 746 l -467 754 l -474 761 l -482 769 l -490 776 l -498 783 l -506 791 l -514 798 l -534 816 l -s -621 3 m -613 9 l -604 15 l -595 22 l -587 28 l -579 36 l -571 43 l -563 50 l -555 58 l -548 66 l -541 74 l -534 83 l -527 91 l -521 100 l -515 109 l -509 118 l -503 127 l -497 136 l -492 146 l -487 156 l -483 165 l -478 175 l -474 185 l -470 195 l -466 205 l -462 216 l -459 226 l -456 236 l -453 247 l -451 257 l -448 268 l -446 278 l -444 289 l -442 300 l -441 311 l -439 321 l -438 332 l -437 343 l -437 354 l -436 365 l -436 375 l -436 386 l -436 397 l -436 408 l -436 419 l -437 430 l -437 440 l -438 451 l -439 462 l -440 473 l -s -440 473 m -441 484 l -443 494 l -444 505 l -446 516 l -448 526 l -450 537 l -452 548 l -454 558 l -456 569 l -459 579 l -461 590 l -464 601 l -466 611 l -469 622 l -472 632 l -475 642 l -478 653 l -481 663 l -484 674 l -488 684 l -491 694 l -494 704 l -498 715 l -501 725 l -505 735 l -508 746 l -512 756 l -516 766 l -519 776 l -523 786 l -534 816 l -s -534 816 m -[] 0 setdash -[ 24 8 24 8] 0 setdash -3 644 m -10 647 l -21 651 l -31 655 l -41 659 l -51 663 l -61 667 l -71 670 l -81 674 l -92 678 l -102 682 l -112 685 l -122 689 l -132 692 l -143 696 l -153 700 l -163 703 l -173 707 l -184 710 l -194 714 l -204 717 l -214 720 l -225 724 l -235 727 l -245 730 l -256 734 l -266 737 l -276 740 l -287 744 l -297 747 l -307 750 l -318 753 l -328 756 l -338 760 l -349 763 l -359 766 l -370 769 l -380 772 l -390 775 l -401 778 l -411 781 l -421 784 l -432 787 l -442 790 l -453 793 l -463 796 l -474 799 l -484 802 l -494 805 l -505 808 l -s -505 808 m -534 816 l -s -3 935 m -8 934 l -19 931 l -29 928 l -40 925 l -50 923 l -61 920 l -71 917 l -82 915 l -92 912 l -103 909 l -113 907 l -124 904 l -134 902 l -145 899 l -155 896 l -166 894 l -176 891 l -187 889 l -197 887 l -208 884 l -219 882 l -229 879 l -240 877 l -250 875 l -261 872 l -271 870 l -282 868 l -293 865 l -303 863 l -314 861 l -324 858 l -335 856 l -346 854 l -356 852 l -367 850 l -377 847 l -388 845 l -399 843 l -409 841 l -420 839 l -430 837 l -441 834 l -452 832 l -462 830 l -473 828 l -484 826 l -494 824 l -505 822 l -534 816 l -s -534 816 m -3 1482 m -4 1479 l -7 1469 l -10 1459 l -14 1449 l -18 1438 l -22 1428 l -26 1418 l -30 1408 l -34 1398 l -38 1388 l -43 1378 l -47 1368 l -52 1359 l -57 1349 l -61 1339 l -66 1330 l -72 1320 l -77 1311 l -82 1301 l -88 1292 l -93 1282 l -99 1273 l -104 1264 l -110 1255 l -116 1246 l -122 1237 l -128 1228 l -134 1219 l -140 1210 l -147 1201 l -153 1192 l -159 1183 l -166 1175 l -173 1166 l -179 1158 l -186 1149 l -193 1141 l -200 1132 l -206 1124 l -213 1116 l -221 1107 l -228 1099 l -235 1091 l -242 1083 l -249 1075 l -257 1067 l -264 1059 l -271 1051 l -279 1043 l -s -279 1043 m -287 1036 l -294 1028 l -302 1020 l -309 1013 l -317 1005 l -325 997 l -333 990 l -341 983 l -349 975 l -356 968 l -364 960 l -372 953 l -380 946 l -389 939 l -397 931 l -405 924 l -413 917 l -421 910 l -429 903 l -438 896 l -446 889 l -454 882 l -462 875 l -471 868 l -479 861 l -487 854 l -496 847 l -504 840 l -512 833 l -534 816 l -s -577 1629 m -572 1624 l -564 1617 l -556 1610 l -548 1602 l -541 1595 l -533 1587 l -526 1578 l -519 1570 l -513 1562 l -506 1553 l -500 1544 l -494 1535 l -488 1526 l -483 1516 l -478 1507 l -473 1497 l -468 1487 l -464 1477 l -459 1467 l -455 1457 l -452 1447 l -448 1437 l -445 1427 l -442 1416 l -439 1406 l -436 1395 l -434 1385 l -432 1374 l -430 1363 l -428 1353 l -426 1342 l -425 1331 l -424 1320 l -423 1310 l -422 1299 l -422 1288 l -422 1277 l -421 1266 l -422 1256 l -422 1245 l -422 1234 l -423 1223 l -423 1212 l -424 1201 l -425 1191 l -426 1180 l -428 1169 l -429 1158 l -431 1148 l -s -431 1148 m -433 1137 l -435 1126 l -437 1116 l -439 1105 l -441 1094 l -443 1084 l -446 1073 l -448 1063 l -451 1052 l -454 1042 l -457 1031 l -460 1021 l -463 1011 l -466 1000 l -469 990 l -473 979 l -476 969 l -480 959 l -483 949 l -487 938 l -490 928 l -494 918 l -498 908 l -502 898 l -506 888 l -510 878 l -513 867 l -517 857 l -521 847 l -534 816 l -s -534 816 m -[] 0 setdash -showpage - -%%EndFile -end end epssave restore -grestore -grestore -/crlinw 1.9 def --0.75 0 0 0.75 522.719971 97.559998 sc4mt astore -0.75 0 0 0.75 522.719971 97.559998 sc5mt astore 14 -7 239 673 -0.75 0 0 0.75 460.970001 -104.190002 sc6mt astore ssl --0.75 0 0 0.75 522.719971 97.559998 sc4mt astore -0.75 0 0 0.75 522.719971 97.559998 sc5mt astore -13 -9 253 665 -0.75 0 0 0.75 460.970001 -104.190002 sc6mt astore ssl --0.336085 0.670483 -0.670483 -0.336085 953.79834 429.697937 sc4mt astore -0.336085 0.670483 -0.670483 -0.336085 953.79834 429.697937 sc5mt astore 14 -7 239 673 -0.330245 0.658832 -0.670483 -0.336085 918.753906 585.248962 sc6mt astore ssl --0.336085 0.670483 -0.670483 -0.336085 953.79834 429.697937 sc4mt astore -0.336085 0.670483 -0.670483 -0.336085 953.79834 429.697937 sc5mt astore -13 -9 253 665 -0.330245 0.658832 -0.670483 -0.336085 918.753906 585.248962 sc6mt astore ssl --0.716846 0.220525 -0.220525 -0.716846 580.401489 820.59198 sc4mt astore -0.716846 0.220525 -0.220525 -0.716846 580.401489 820.59198 sc5mt astore 14 -7 239 673 -0.716846 0.220525 -0.220525 -0.716846 632.056885 946.323792 sc6mt astore ssl --0.716846 0.220525 -0.220525 -0.716846 580.401489 820.59198 sc4mt astore -0.716846 0.220525 -0.220525 -0.716846 580.401489 820.59198 sc5mt astore -13 -9 253 665 -0.716846 0.220525 -0.220525 -0.716846 632.056885 946.323792 sc6mt astore ssl --0.749091 0.036912 -0.036912 -0.749091 500.89386 789.831787 sc4mt astore -0.749091 0.036912 -0.036912 -0.749091 500.89386 789.831787 sc5mt astore 14 -7 239 673 -0.749091 0.036912 -0.036912 -0.749091 503.926331 960.810791 sc6mt astore ssl --0.749091 0.036912 -0.036912 -0.749091 500.89386 789.831787 sc4mt astore -0.749091 0.036912 -0.036912 -0.749091 500.89386 789.831787 sc5mt astore -13 -9 253 665 -0.749091 0.036912 -0.036912 -0.749091 503.926331 960.810791 sc6mt astore ssl --3.278354e-08 0.75 -0.75 -3.278354e-08 929.235107 122.145134 sc4mt astore -3.278354e-08 0.75 -0.75 -3.278354e-08 929.235107 122.145134 sc5mt astore 14 -7 239 673 -3.278354e-08 0.75 -0.75 -3.278354e-08 939.485107 339.895142 sc6mt astore ssl --3.278354e-08 0.75 -0.75 -3.278354e-08 929.235107 122.145134 sc4mt astore -3.278354e-08 0.75 -0.75 -3.278354e-08 929.235107 122.145134 sc5mt astore -13 -9 253 665 -3.278354e-08 0.75 -0.75 -3.278354e-08 939.485107 339.895142 sc6mt astore ssl -0.248572 0.70761 -0.70761 0.248572 816.344604 -89.34198 sc4mt astore 0.248572 0.70761 -0.70761 0.248572 816.344604 -89.34198 sc5mt astore 14 -7 239 673 0.248572 0.70761 -0.70761 0.248572 897.557983 174.926666 sc6mt astore ssl -0.248572 0.70761 -0.70761 0.248572 816.344604 -89.34198 sc4mt astore 0.248572 0.70761 -0.70761 0.248572 816.344604 -89.34198 sc5mt astore -13 -9 253 665 0.248572 0.70761 -0.70761 0.248572 897.557983 174.926666 sc6mt astore ssl --0.748508 0.047279 -0.047279 -0.748508 524.062012 732.901855 sc4mt astore -0.748508 0.047279 -0.047279 -0.748508 524.062012 732.901855 sc5mt astore 14 -7 239 673 -0.748508 0.047279 -0.050012 -0.791778 501.0896 944.747253 sc6mt astore ssl --0.748508 0.047279 -0.047279 -0.748508 524.062012 732.901855 sc4mt astore -0.748508 0.047279 -0.047279 -0.748508 524.062012 732.901855 sc5mt astore -13 -9 253 665 -0.748508 0.047279 -0.050012 -0.791778 501.0896 944.747253 sc6mt astore ssl --0.743775 0.096433 -0.096433 -0.743775 504.048096 537.558472 sc4mt astore -0.743775 0.096433 -0.096433 -0.743775 504.048096 537.558472 sc5mt astore 14 -7 239 673 -0.743775 0.096433 -0.096433 -0.743775 537.433716 788.776855 sc6mt astore ssl --0.743775 0.096433 -0.096433 -0.743775 504.048096 537.558472 sc4mt astore -0.743775 0.096433 -0.096433 -0.743775 504.048096 537.558472 sc5mt astore -13 -9 253 665 -0.743775 0.096433 -0.096433 -0.743775 537.433716 788.776855 sc6mt astore ssl --0.731118 0.167232 -0.167232 -0.731118 552.929626 574.40918 sc4mt astore -0.731118 0.167232 -0.167232 -0.731118 552.929626 574.40918 sc5mt astore 14 -7 239 673 -0.731118 0.167232 -0.161139 -0.704483 568.182007 786.609924 sc6mt astore ssl --0.731118 0.167232 -0.167232 -0.731118 552.929626 574.40918 sc4mt astore -0.731118 0.167232 -0.167232 -0.731118 552.929626 574.40918 sc5mt astore -13 -9 253 665 -0.731118 0.167232 -0.161139 -0.704483 568.182007 786.609924 sc6mt astore ssl --0.744916 -0.087182 0.087182 -0.744916 442.310516 473.09552 sc4mt astore -0.744916 -0.087182 0.087182 -0.744916 442.310516 473.09552 sc5mt astore 14 -7 239 673 -0.744916 -0.087182 0.087182 -0.744916 426.358429 780.545532 sc6mt astore ssl --0.744916 -0.087182 0.087182 -0.744916 442.310516 473.09552 sc4mt astore -0.744916 -0.087182 0.087182 -0.744916 442.310516 473.09552 sc5mt astore -13 -9 253 665 -0.744916 -0.087182 0.087182 -0.744916 426.358429 780.545532 sc6mt astore ssl -0.656329 0.362949 0.362949 -0.656329 -338.684814 537.180176 sc4mt astore 0.656329 0.362949 0.362949 -0.656329 -338.684814 537.180176 sc5mt astore 14 -7 239 673 0.656329 0.362949 0.362949 -0.656329 -311.524719 716.406921 sc6mt astore ssl -0.656329 0.362949 0.362949 -0.656329 -338.684814 537.180176 sc4mt astore 0.656329 0.362949 0.362949 -0.656329 -338.684814 537.180176 sc5mt astore -13 -9 253 665 0.656329 0.362949 0.362949 -0.656329 -311.524719 716.406921 sc6mt astore ssl -0.474273 -0.581004 0.581004 0.474273 349.885132 -102.43895 sc4mt astore 0.474273 -0.581004 0.581004 0.474273 349.885132 -102.43895 sc5mt astore 14 -7 239 673 0.474273 -0.581004 0.581004 0.474273 31.185272 123.685547 sc6mt astore ssl -0.474273 -0.581004 0.581004 0.474273 349.885132 -102.43895 sc4mt astore 0.474273 -0.581004 0.581004 0.474273 349.885132 -102.43895 sc5mt astore -13 -9 253 665 0.474273 -0.581004 0.581004 0.474273 31.185272 123.685547 sc6mt astore ssl -0.667424 -0.342119 0.342119 0.667424 288.503052 -279.422638 sc4mt astore 0.667424 -0.342119 0.342119 0.667424 288.503052 -279.422638 sc5mt astore 14 -7 239 673 0.667424 -0.342119 0.342119 0.667424 148.891953 -8.327736 sc6mt astore ssl -0.667424 -0.342119 0.342119 0.667424 288.503052 -279.422638 sc4mt astore 0.667424 -0.342119 0.342119 0.667424 288.503052 -279.422638 sc5mt astore -13 -9 253 665 0.667424 -0.342119 0.342119 0.667424 148.891953 -8.327736 sc6mt astore ssl -0.159702 -0.7328 0.7328 0.159702 20.030182 101.767296 sc4mt astore 0.159702 -0.7328 0.7328 0.159702 20.030182 101.767296 sc5mt astore 14 -7 239 673 0.159702 -0.7328 0.7328 0.159702 -31.580429 329.499329 sc6mt astore ssl -0.159702 -0.7328 0.7328 0.159702 20.030182 101.767296 sc4mt astore 0.159702 -0.7328 0.7328 0.159702 20.030182 101.767296 sc5mt astore -13 -9 253 665 0.159702 -0.7328 0.7328 0.159702 -31.580429 329.499329 sc6mt astore ssl --0.065001 -0.747178 0.747178 -0.065001 -18.130722 316.65155 sc4mt astore -0.065001 -0.747178 0.747178 -0.065001 -18.130722 316.65155 sc5mt astore 14 -7 239 673 -0.065001 -0.747178 0.747178 -0.065001 -42.07869 481.112122 sc6mt astore ssl --0.065001 -0.747178 0.747178 -0.065001 -18.130722 316.65155 sc4mt astore -0.065001 -0.747178 0.747178 -0.065001 -18.130722 316.65155 sc5mt astore -13 -9 253 665 -0.065001 -0.747178 0.747178 -0.065001 -42.07869 481.112122 sc6mt astore ssl --0.423067 -0.619285 0.619285 -0.423067 119.103729 478.333527 sc4mt astore -0.423067 -0.619285 0.619285 -0.423067 119.103729 478.333527 sc5mt astore 14 -7 239 673 -0.423067 -0.619285 0.619285 -0.423067 79.802742 692.340088 sc6mt astore ssl --0.423067 -0.619285 0.619285 -0.423067 119.103729 478.333527 sc4mt astore -0.423067 -0.619285 0.619285 -0.423067 119.103729 478.333527 sc5mt astore -13 -9 253 665 -0.423067 -0.619285 0.619285 -0.423067 79.802742 692.340088 sc6mt astore ssl -0.75 6.556708e-08 6.556708e-08 -0.75 252.239868 691.019958 sc4mt astore 0.75 6.556708e-08 6.556708e-08 -0.75 252.239868 691.019958 sc5mt astore 14 -7 239 673 0.75 6.556708e-08 6.556708e-08 -0.75 354.989868 894.269897 sc6mt astore ssl -0.75 6.556708e-08 6.556708e-08 -0.75 252.239868 691.019958 sc4mt astore 0.75 6.556708e-08 6.556708e-08 -0.75 252.239868 691.019958 sc5mt astore -13 -9 253 665 0.75 6.556708e-08 6.556708e-08 -0.75 354.989868 894.269897 sc6mt astore ssl -0.678186 0.320257 -0.320257 0.678186 489.123138 -304.008392 sc4mt astore 0.678186 0.320257 -0.320257 0.678186 489.123138 -304.008392 sc5mt astore 14 -7 239 673 0.788888 0.372533 -0.343778 0.727994 573.477478 -138.366364 sc6mt astore ssl -0.678186 0.320257 -0.320257 0.678186 489.123138 -304.008392 sc4mt astore 0.678186 0.320257 -0.320257 0.678186 489.123138 -304.008392 sc5mt astore -13 -9 253 665 0.788888 0.372533 -0.343778 0.727994 573.477478 -138.366364 sc6mt astore ssl -0.559539 0.499416 -0.499416 0.559539 701.021545 -161.570038 sc4mt astore 0.559539 0.499416 -0.499416 0.559539 701.021545 -161.570038 sc5mt astore 14 -7 239 673 0.559539 0.499416 -0.499416 0.559539 724.75647 -5.780929 sc6mt astore ssl -0.559539 0.499416 -0.499416 0.559539 701.021545 -161.570038 sc4mt astore 0.559539 0.499416 -0.499416 0.559539 701.021545 -161.570038 sc5mt astore -13 -9 253 665 0.559539 0.499416 -0.499416 0.559539 724.75647 -5.780929 sc6mt astore ssl -0.429163 0.615076 0.615076 -0.429163 -370.774078 289.443726 sc4mt astore 0.429163 0.615076 0.615076 -0.429163 -370.774078 289.443726 sc5mt astore 14 -7 239 673 0.429163 0.615076 0.615076 -0.429163 -399.53244 467.47522 sc6mt astore ssl -0.429163 0.615076 0.615076 -0.429163 -370.774078 289.443726 sc4mt astore 0.429163 0.615076 0.615076 -0.429163 -370.774078 289.443726 sc5mt astore -13 -9 253 665 0.429163 0.615076 0.615076 -0.429163 -399.53244 467.47522 sc6mt astore ssl -0.064217 -0.747246 0.747246 0.064217 -270.81781 467.737579 sc4mt astore 0.064217 -0.747246 0.747246 0.064217 -270.81781 467.737579 sc5mt astore 14 -7 239 673 0.064217 -0.747246 0.747246 0.064217 -361.842865 616.598633 sc6mt astore ssl -0.064217 -0.747246 0.747246 0.064217 -270.81781 467.737579 sc4mt astore 0.064217 -0.747246 0.747246 0.064217 -270.81781 467.737579 sc5mt astore -13 -9 253 665 0.064217 -0.747246 0.747246 0.064217 -361.842865 616.598633 sc6mt astore ssl -0.494022 -0.564307 0.564307 0.494022 -497.800781 176.304077 sc4mt astore 0.494022 -0.564307 0.564307 0.494022 -497.800781 176.304077 sc5mt astore 14 -7 239 673 0.388547 -0.443825 0.564307 0.494022 -359.879364 233.574448 sc6mt astore ssl -0.494022 -0.564307 0.564307 0.494022 -497.800781 176.304077 sc4mt astore 0.494022 -0.564307 0.564307 0.494022 -497.800781 176.304077 sc5mt astore -13 -9 253 665 0.388547 -0.443825 0.564307 0.494022 -359.879364 233.574448 sc6mt astore ssl -0.734415 -0.152102 -0.152102 -0.734415 130.351807 715.400391 sc4mt astore 0.734415 -0.152102 -0.152102 -0.734415 130.351807 715.400391 sc5mt astore 14 -7 239 673 0.734415 -0.152102 -0.152102 -0.734415 7.014052 939.928772 sc6mt astore ssl -0.734415 -0.152102 -0.152102 -0.734415 130.351807 715.400391 sc4mt astore 0.734415 -0.152102 -0.152102 -0.734415 130.351807 715.400391 sc5mt astore -13 -9 253 665 0.734415 -0.152102 -0.152102 -0.734415 7.014052 939.928772 sc6mt astore ssl -0.17246 0.729903 -0.729903 0.17246 592.426147 -213.447052 sc4mt astore 0.17246 0.729903 -0.729903 0.17246 592.426147 -213.447052 sc5mt astore 14 -7 239 673 0.17246 0.729903 -0.729903 0.17246 597.22522 24.429466 sc6mt astore ssl -0.17246 0.729903 -0.729903 0.17246 592.426147 -213.447052 sc4mt astore 0.17246 0.729903 -0.729903 0.17246 592.426147 -213.447052 sc5mt astore -13 -9 253 665 0.17246 0.729903 -0.729903 0.17246 597.22522 24.429466 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(a ) [20.015991 0 0 0] 243 137 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 74 250] dotx -(b ) [21.996002 0 0 0] 370 130 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 -229 136] dotx -(c ) [20.015999 0 0 0] 91 121 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 -32 267] dotx -(Q) [0 0] 172 57 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 246 361] dotx -/txtdraw true def -/txlndraw true def -(1 ) [20.015991 0 0 0] 200.007996 42.599998 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 246 361] dotx -/txtdraw true def -/txlndraw true def -(Q) [0 0] 322 63 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 -168 353] dotx -/txtdraw true def -/txlndraw true def -(2 ) [20.015991 0 0 0] 350.007996 48.599998 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 -168 353] dotx -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold -%%EndFile -end end epssave restore -grestore -grestore -1 0 0 1 0 0 sc5mt astore 57 413 23 -23 1 0 0 1 0 0 sc6mt astore rfill -/txtdraw true def -/txlndraw true def -(c ) [19.460007 0 0 0] 139 677 /Helvetica-Bold [ 35 1 mul 0 0 35 0 0 ] [1 0 0 1 -86 -294] dotx -end -grestore -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold -%%BoundingBox: 0.000000 0.000000 612.000000 792.000000 diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob09v2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob09v2.gif deleted file mode 100755 index cba269a0b..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob09v2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob11a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob11a.eps deleted file mode 100755 index c6422bdb6..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob11a.eps +++ /dev/null @@ -1,474 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: prob5116a.eps -%%CreationDate: 7/23/1996 -%%Pages: 0 -%%DocumentFonts: Helvetica -%%BoundingBox:178 466 386 666 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica/Helvetica 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -3333.5 2577.5 m -6146.5 2577.5 L -35 slw 0 sg str -gr -gs -3646.5 2421.5 m -3333.5 2577.5 L -35 slw 0 sg str -gr -gs -4115.5 2421.5 m -3802.5 2577.5 L -35 slw 0 sg str -gr -gs -5990.5 2421.5 m -5677.5 2577.5 L -35 slw 0 sg str -gr -gs -6459.5 2421.5 m -6146.5 2577.5 L -35 slw 0 sg str -gr -gs -4427.5 2421.5 m -4115.5 2577.5 L -35 slw 0 sg str -gr -gs -4896.5 2421.5 m -4583.5 2577.5 L -35 slw 0 sg str -gr -gs -5208.5 2421.5 m -4896.5 2577.5 L -35 slw 0 sg str -gr -gs -5677.5 2421.5 m -5365.5 2577.5 L -35 slw 0 sg str -gr -gs -4896.5 2577.5 m -3802.5 4765.5 L -35 slw 0 sg str -gr -gs -4896.5 2577.5 m -5990.5 4765.5 L -35 slw 0 sg str -gr -gs -3646 4765 3958 5077 OV -1 sg fill -gr -gs -3646.5 4765.5 3958.5 5077.5 OV -35 slw 0 sg str -gr -gs -4942 3248 5163 3469 OV -1 sg fill -gr -gs -4942.5 3248.5 5163.5 3469.5 OV -35 slw 0 sg str -gr -gs -4942.5 3359.5 m -5163.5 3359.5 L -35 slw 0 sg str -gr -gs -4896.5 2682.5 m -4896.5 2890.5 L -35 slw 0 sg str -gr -gs -4896.5 3046.5 m -4896.5 3200.5 L -35 slw 0 sg str -gr -gs -4601 3133 4671 3168 4723 3185 4792 3185 4844 3203 4 P -35 slw 0 sg str -gr -gs -4879 3106 4966 3099 5018 3081 5070 3064 5122 3047 4 P -35 slw 0 sg str -gr -gs -5833 4765 6146 5077 OV -1 sg fill -gr -gs -5833.5 4765.5 6146.5 5077.5 OV -35 slw 0 sg str -gr -gs -3533 4461 3759 4756 R -1 sg fill -gr -/_Helvetica ff [278 0 0 -278 0 0] mf sf -3533 4669 m 0 sg (m) show -gs -6033 4461 6259 4756 R -1 sg fill -gr -6033 4669 m 2.78 slw 0 sg (m) show -gs -3785 5112 3924 5407 R -1 sg fill -gr -3785 5320 m 2.78 slw 0 sg (q) show -gs -5851 5086 5990 5381 R -1 sg fill -gr -5851 5294 m 2.78 slw 0 sg (q) show -gs -4896 5025 5035 5320 R -1 sg fill -gr -4896 5233 m 2.78 slw 0 sg (x) show -gs -4028 3532 4080 3827 R -1 sg fill -gr -4028 3740 m 2.78 slw 0 sg (l) show -gs -5747 3549 5799 3845 R -1 sg fill -gr -5747 3757 m 2.78 slw 0 sg (l) show -gs -3958.5 4921.5 m -5833.5 4921.5 L -35 slw 0 sg str -gr -gs -4115.5 4765.5 m -3958.5 4921.5 L -35 slw 0 sg str -gr -gs -3958.5 4921.5 m -4115.5 5077.5 L -35 slw 0 sg str -gr -gs -5677.5 4765.5 m -5833.5 4921.5 L -35 slw 0 sg str -gr -gs -5833.5 4921.5 m -5677.5 5077.5 L -35 slw 0 sg str -gr -gs -4896.5 3281.5 m -4896.5 3437.5 L -35 slw 0 sg str -gr -gs -4583 3294 4804 3515 OV -1 sg fill -gr -gs -4583.5 3294.5 4804.5 3515.5 OV -35 slw 0 sg str -gr -gs -4583.5 3405.5 m -4804.5 3405.5 L -35 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob11a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob11a.gif deleted file mode 100755 index 319fafa32..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob11a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob14a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob14a.eps deleted file mode 100755 index c3eee5f05..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob14a.eps +++ /dev/null @@ -1,468 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q1.draw -- /teacher/Apps/Drawfiles/phys121a/set5 -%%Creator: Draw -%%CreationDate: Fri Jun 30 10:48:53 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 90 412 445 609 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -90 412 355 197 rectclip -0 setgray -0.333333 setgray -0 0 0.232558 setup -0 nxsetgray -6 -105 160 551 line -grestore -0 setgray -0.333333 setgray -0 0 0.232558 setup -0 nxsetgray -6 103 154 448 line -grestore -0 0 0.232558 setup -0 nxsetgray -52 -78 364 550 line -grestore -0 0 0.232558 setup -0 0 0.232558 setup -0 nxsetgray -10 8 359 549 oval matrix defaultmatrix setmatrix stroke -grestore -0 0 0.232558 setup -0 nxsetgray -0 -9 364 567 line -grestore -0 0 0.232558 setup -0 nxsetgray -50 80 314 470 line -grestore -0 0 0 setup -gsave -/Times-BoldItalic findfont 16 scalefont [1 0 0 -1 0 0] makefont -70 -exch -defineuserobject -70 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1041] concat -/Symbol findfont 18 scalefont [1 0 0 -1 0 0] makefont -80 -exch -defineuserobject -80 execuserobject setfont -0 nxsetgray -351 527 moveto (q) show -grestore -grestore -0 0 0.232558 setup -0 nxsetgray -0 -128 364 548 line -grestore -0 0 0 setup -0.993103 nxsetgray -361 529 9 6 rectfill -1 nxsetgray -361 529 9 6 rectstroke -grestore -0 0 0 setup -0.993103 nxsetgray -360 511 9 6 rectfill -1 nxsetgray -360 511 9 6 rectstroke -grestore -0 0 0 setup -0.993103 nxsetgray -359 493 9 6 rectfill -1 nxsetgray -359 493 9 6 rectstroke -grestore -0 0 0 setup -0.993103 nxsetgray -358 475 9 6 rectfill -1 nxsetgray -358 475 9 6 rectstroke -grestore -0 0 0 setup -0.993103 nxsetgray -357 457 9 6 rectfill -1 nxsetgray -357 457 9 6 rectstroke -grestore -0 0 0 setup -0.993103 nxsetgray -356 439 9 6 rectfill -1 nxsetgray -356 439 9 6 rectstroke -grestore -0 0 0 setup -grestore -0 0 0 setup -0.993103 nxsetgray -357 418 9 10 rectfill -1 nxsetgray -357 418 9 10 rectstroke -grestore -grestore -0 0 0.232558 setup -0 0 0.232558 setup -0 nxsetgray -10 8 155 550 oval matrix defaultmatrix setmatrix stroke -grestore -0 0 0.232558 setup -0 nxsetgray -0 -9 160 568 line -grestore -grestore -0 setgray -0.333333 setgray -0 0 0 setup -0.627583 nxsetgray -95 568 132 14 rectfill -0 nxsetgray -95 568 132 14 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -0.627583 nxsetgray -296 567 132 14 rectfill -0 nxsetgray -296 567 132 14 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0.232558 setup -gsave -0.4138 nxsetgray -10 10 307 460 oval fill -grestore -0 nxsetgray -10 10 307 460 oval matrix defaultmatrix setmatrix stroke -grestore -0 0 0 setup -gsave -80 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 972] concat -/Symbol findfont 28 scalefont [1 0 0 -1 0 0] makefont -12 -exch -defineuserobject -12 execuserobject setfont -0 nxsetgray -421 496 moveto (+) show -grestore -grestore -0 0 0 setup -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 964] concat -12 execuserobject setfont -0 nxsetgray -294 492 moveto (+) show -grestore -grestore -0 0 0 setup -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1189] concat -/Helvetica findfont 16 scalefont [1 0 0 -1 0 0] makefont -13 -exch -defineuserobject -13 execuserobject setfont -0 nxsetgray -108 600 moveto (Before charge) show -grestore -grestore -0 0 0 setup -gsave -13 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1189] concat -13 execuserobject setfont -0 nxsetgray -317 600 moveto (After Charge) show -grestore -grestore -0 0 0 setup -gsave -13 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1041] concat -80 execuserobject setfont -0 nxsetgray -369 527 moveto (q) show -grestore -grestore -0 setgray -0.333333 setgray -0 0 0.232558 setup -gsave -0.4138 nxsetgray -10 10 412 461 oval fill -grestore -0 nxsetgray -10 10 412 461 oval matrix defaultmatrix setmatrix stroke -grestore -0 setgray -0.333333 setgray -0 0 0.232558 setup -gsave -0.4138 nxsetgray -10 10 160 439 oval fill -grestore -0 nxsetgray -10 10 160 439 oval matrix defaultmatrix setmatrix stroke -grestore -0 setgray -0.333333 setgray -0 0 0.232558 setup -gsave -0.4138 nxsetgray -10 10 149 439 oval fill -grestore -0 nxsetgray -10 10 149 439 oval matrix defaultmatrix setmatrix stroke -grestore -0 0 0.232558 setup -gsave -80 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 994] concat -70 execuserobject setfont -0 nxsetgray -143 494 moveto (l) show -grestore -grestore -0 0 0.232558 setup -gsave -70 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1009] concat -70 execuserobject setfont -0 nxsetgray -173 510 moveto (l) show -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Times-BoldItalic -%%+ Symbol -%%+ Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob14a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob14a.gif deleted file mode 100755 index 5ba621303..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob14a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob18a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob18a.eps deleted file mode 100755 index d8132f17a..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob18a.eps +++ /dev/null @@ -1,616 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q10.draw -- /teacher/Apps/Drawfiles/phys121a/set5 -%%Creator: Draw -%%CreationDate: Sun May 21 00:06:52 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 35 371 432 697 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --43 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -35 371 397 326 rectclip -0 setgray -0.333333 setgray -0 0 0.465116 setup -1 nxsetgray -159 460 150 150 rectfill -0 nxsetgray -159 460 150 150 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -171 599 10 17 rectfill -1 nxsetgray -171 599 10 17 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -192 597 10 17 rectfill -1 nxsetgray -192 597 10 17 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -213 595 10 17 rectfill -1 nxsetgray -213 595 10 17 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -234 593 10 17 rectfill -1 nxsetgray -234 593 10 17 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -253 602 10 17 rectfill -1 nxsetgray -253 602 10 17 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -277 602 10 17 rectfill -1 nxsetgray -277 602 10 17 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -172 454 10 17 rectfill -1 nxsetgray -172 454 10 17 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -194 448 10 17 rectfill -1 nxsetgray -194 448 10 17 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -216 455 10 17 rectfill -1 nxsetgray -216 455 10 17 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -238 451 10 17 rectfill -1 nxsetgray -238 451 10 17 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -260 455 10 17 rectfill -1 nxsetgray -260 455 10 17 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -282 452 10 17 rectfill -1 nxsetgray -282 452 10 17 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -298 576 26 12 rectfill -1 nxsetgray -298 576 26 12 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -295 551 26 12 rectfill -1 nxsetgray -295 551 26 12 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -292 526 26 12 rectfill -1 nxsetgray -292 526 26 12 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -289 501 26 12 rectfill -1 nxsetgray -289 501 26 12 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -297 474 26 12 rectfill -1 nxsetgray -297 474 26 12 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -146 476 26 12 rectfill -1 nxsetgray -146 476 26 12 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -151 501 26 12 rectfill -1 nxsetgray -151 501 26 12 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -142 526 26 12 rectfill -1 nxsetgray -142 526 26 12 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -142 551 26 12 rectfill -1 nxsetgray -142 551 26 12 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -139 579 26 12 rectfill -1 nxsetgray -139 579 26 12 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -gsave -0.455168 nxsetgray -20 20 149 598 oval fill -grestore -1 nxsetgray -20 20 149 598 oval matrix defaultmatrix setmatrix stroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -gsave -0.455168 nxsetgray -20 20 149 450 oval fill -grestore -1 nxsetgray -20 20 149 450 oval matrix defaultmatrix setmatrix stroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -gsave -0.455168 nxsetgray -20 20 299 598 oval fill -grestore -1 nxsetgray -20 20 299 598 oval matrix defaultmatrix setmatrix stroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -gsave -0.455168 nxsetgray -20 20 299 450 oval fill -grestore -1 nxsetgray -20 20 299 450 oval matrix defaultmatrix setmatrix stroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -125 520 24 31 rectfill -1 nxsetgray -125 520 24 31 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -321 519 24 31 rectfill -1 nxsetgray -321 519 24 31 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -222 619 24 31 rectfill -1 nxsetgray -222 619 24 31 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -222 422 24 31 rectfill -1 nxsetgray -222 422 24 31 rectstroke -grestore -0 0 0 setup -gsave -/Helvetica findfont 12 scalefont [1 0 0 -1 0 0] makefont -12 -exch -defineuserobject -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1196] concat -/Helvetica-BoldOblique findfont 14 scalefont [1 0 0 -1 0 0] makefont -97 -exch -defineuserobject -97 execuserobject setfont -0 nxsetgray -166 603 moveto (Aq) show -grestore -grestore -0 0 0 setup -gsave -97 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1198] concat -97 execuserobject setfont -0 nxsetgray -278 604 moveto (Bq) show -grestore -grestore -0 0 0 setup -gsave -97 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 944] concat -97 execuserobject setfont -0 nxsetgray -278 477 moveto (Cq) show -grestore -grestore -0 0 0 setup -gsave -97 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 948] concat -97 execuserobject setfont -0 nxsetgray -166 479 moveto (Dq) show -grestore -grestore -0 0 0 setup -gsave -97 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1100] concat -97 execuserobject setfont -0 nxsetgray -211 555 moveto (Eq) show -grestore -grestore -0 0 1.162791 setup -0 nxsetgray -0 -303 237 684 line -89.997345 237 684 arrow -grestore -0 0 1.162791 setup -0 nxsetgray -314 0 105 535 line -0 419 535 arrow -grestore -0 setgray -0.333333 setgray -0 0 0 setup -gsave -0.455168 nxsetgray -20 20 227 525 oval fill -grestore -1 nxsetgray -20 20 227 525 oval matrix defaultmatrix setmatrix stroke -grestore -0 0 0 setup -gsave -97 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1050] concat -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -98 -exch -defineuserobject -98 execuserobject setfont -0 nxsetgray -416 530 moveto (x) show -grestore -grestore -0 0 0 setup -gsave -98 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1366] concat -98 execuserobject setfont -0 nxsetgray -221 688 moveto (y) show -grestore -grestore -0 0 0 setup -gsave -98 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1044] concat -98 execuserobject setfont -0 nxsetgray -218 527 moveto (O) show -grestore -grestore -0 0 1.162791 setup -0 nxsetgray -45 85 109 421 line -62.104561 154 506 arrow -grestore -0 0 1.162791 setup -0 nxsetgray -89 31 109 420 line -19.20454 198 451 arrow -grestore -0 0 1.162791 setup -gsave -98 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 823] concat -12 execuserobject setfont -0 nxsetgray -47 416 moveto (square of side length, d) show -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-BoldOblique -%%+ Helvetica-Bold -%%+ Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob18a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob18a.gif deleted file mode 100755 index eaff0c914..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob18a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob19a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob19a.eps deleted file mode 100755 index ba00fb778..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob19a.eps +++ /dev/null @@ -1,392 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q13.draw -- /teacher/Apps/Drawfiles/phys121a/set5 -%%Creator: Draw -%%CreationDate: Sun May 28 18:46:59 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 23 342 344 614 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -23 342 321 272 rectclip -0 0 0.465116 setup -0 nxsetgray -0 -241 80 590 line -89.997345 80 590 arrow -grestore -0 setgray -0.333333 setgray -0 0 0.465116 setup -0 nxsetgray -295 0 30 460 line -0 325 460 arrow -grestore -0 setgray -0.333333 setgray -0 0 0 setup -0.489654 nxsetgray -69 380 20 160 rectfill -0 nxsetgray -69 380 20 160 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -gsave -0.489654 nxsetgray -20 20 256 450 oval fill -grestore -0 nxsetgray -20 20 256 450 oval matrix defaultmatrix setmatrix stroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -0.227592 nxsetgray -69 501 20 9 rectfill -0 nxsetgray -69 501 20 9 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0.465116 setup -0 nxsetgray -167 -45 89 505 line -164.918762 89 505 arrow --15.081236 256 460 arrow -grestore -0 setgray -0.333333 setgray -0 0 0.465116 setup -0 nxsetgray -14 0 52 510 line -grestore -0 setgray -0.333333 setgray -0 0 0.465116 setup -0 nxsetgray -14 0 52 500 line -grestore -0 0 0.465116 setup -gsave -/Helvetica findfont 14 scalefont [1 0 0 -1 0 0] makefont -118 -exch -defineuserobject -118 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1009] concat -/Helvetica-Oblique findfont 12 scalefont [1 0 0 -1 0 0] makefont -119 -exch -defineuserobject -119 execuserobject setfont -0 nxsetgray -37 509 moveto (dy) show -grestore -grestore -0 0 0.465116 setup -gsave -119 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1083] concat -/Helvetica-Bold findfont 12 scalefont [1 0 0 -1 0 0] makefont -120 -exch -defineuserobject -120 execuserobject setfont -0 nxsetgray -56 546 moveto (L) show -grestore -grestore -0 0 0.465116 setup -gsave -120 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 769] concat -120 execuserobject setfont -0 nxsetgray -53 389 moveto (-L) show -grestore -grestore -0 0 0.465116 setup -gsave -120 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 879] concat -120 execuserobject setfont -0 nxsetgray -262 444 moveto (D) show -grestore -grestore -0 0 0.465116 setup -gsave -120 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 903] concat -/Helvetica findfont 12 scalefont [1 0 0 -1 0 0] makefont -10 -exch -defineuserobject -10 execuserobject setfont -0 nxsetgray -56 456 moveto (O) show -grestore -grestore -0 0 0.465116 setup -gsave -10 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 957] concat -119 execuserobject setfont -0 nxsetgray -250 483 moveto (q) show -grestore -grestore -0 0 0.465116 setup -gsave -119 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 907] concat -10 execuserobject setfont -0 nxsetgray -328 458 moveto (x) show -grestore -grestore -0 0 0.465116 setup -gsave -10 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1201] concat -10 execuserobject setfont -0 nxsetgray -75 605 moveto (y) show -grestore -grestore -0 0 0.465116 setup -gsave -10 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 986] concat -118 execuserobject setfont -0 nxsetgray -170 498 moveto (r) show -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Oblique -%%+ Helvetica-Bold -%%+ Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob19a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob19a.gif deleted file mode 100755 index 32fed17fe..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob19a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob29a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob29a.eps deleted file mode 100755 index 1d07e2ab9..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob29a.eps +++ /dev/null @@ -1,555 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: chargedballs.create -%%Creator: Create -%%CreationDate: Fri Oct 25 13:37:23 1996 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 45 474 485 756 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(bBA]pY\3"=NG)pcVG*D*6lZjciZ%rir,iA+$*_1/.i$EY#p\TV"B9sQ'hUn"<`=Z]mCB&&fiO:gK -% h=K-WkYFrKa0s!/Qf.CWndT6?CUUGMOD)m.3emhhC6fMkdXL,64OdB4!+c!FUe8!!ki_$jJ% -% e"Y'sF=?n>N?C9]+Prqk]1]Rr7_2,D=An#R*Wb>Up0YY&d5;M*Z?B$n8Q/`uKr"6ni^c^!MG -% "OH=8p;Go,(t2`,,sXp9KH;VPQ:>7V-+A?1ddR8ETuC`&;"U>L)P*r5ULOX&-89:c$#hN^o_ -% icDNWM<-ZCoraK(rX%AJnJkQjK1-X'n*"pA2>ZO!FXB+#=k,]m/X6@,P(]c?RO -% Y1hQW.uj-37dF6Ql:,YSs@FcH:%:[cKsISVU9TV+WR'7aV62%$?8aA$Agb;4OSDE<%c8n1e] -% %[mmE'mc&O?-N_(AoN3O4q.m[g3?S;+0Q[q$@9*UkM?!mNQ#MCN`Aa\*"Rqan@"Db?T8"%;d -% )6V$Kos@mB[Ca])`R@V;#sDHSTb&o#EXcH1/%k1a(:AJ1t*ZcIBmc;#3VGYDCV5&&qQ^kFWc -% HPSa"]((u-1?QF\8*fpSH!:YJ[3Bo!q'#bLS+*Nr1.`gu\RIJ)c,F$2S$V2pW4afG<6p.9q)_U@@rF7)-:^c+FTfT -% 4&i\^4td/sk\E#m;LR&-ts_7=LiO>3I;%3bt/OI&^[^VO$h(f>UL/]W3(M.TV)J*%lm8K:Z= -% 9-G5KZbqLb2?LjC0J=S\REGp]*rG%&$l6U:s9Zu;A[[.<";([?lgKN2YjZrF*%:3^H?^*D.5 -% /@iVE$:2!#hKe=l6-a[99YtI@PsGk"Tf_J1a!K`W&4dBc[huU+pnX?^@f#HG(Po"#]3Wt!gE -% m#Zg6H=V"biXhX<)8]4,/IW''54b\&VgS;_&>)_2iHH8oG2s0S+;+*nH55noq:cY+D%(bp/( -% CuZ/_pV&#tDi]eJ@r`P\Si^4R:Qm=A!)!F65i?X@hc$332X.WtV%Jr-9VNIV#ff$h;1fR`_u -% NC3Jn%8)Q.#OS?;B-Fj/GFX.l?;pIlBer2R8'-]A_0`Bbk(##"RJG@4j>r`34HL7:]>,.n)H -% a-C-E9LI:1_)#6mNjpt6Ie06!2(kBe@DKD@QB,TIg9*g8MK)KuT"U!/r3M$@sc%1aOW+)"lX -% N_:Vx -% EndEmbeddedGraphics N 1327 52f E 4f S 252c5 R c07bd560 -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -45 474 440 282 rectclip -0 nxsetgray -0 0 0.3 1 10 SU -gsave -[1 0 0 1 46 476] concat -0 nxsetgray -0 0 0.3 1 10 SU -gsave -[1 0 0 1 288 26] concat -0 0 2 1 10 SU -26 50 T -N -2 L -0 nxsetgray -0 192 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -[2 0 0 -1 2 50] concat -N -0 nxsetgray -gsave -24 48 0 0 oval fill -grestore -0.15 L -0 nxsetgray -gsave -24 48 0 0 oval 0.020833 0.020833 S s -grestore -0 0 T -grestore -grestore -grestore -0 nxsetgray -0 0 0.3 1 10 SU -gsave -[1 0 0 1 384 26] concat -0 0 2 1 10 SU -26 50 T -N -2 L -0 nxsetgray -0 192 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -[2 0 0 -1 2 50] concat -N -0 nxsetgray -gsave -24 48 0 0 oval fill -grestore -0.15 L -0 nxsetgray -gsave -24 48 0 0 oval 0.020833 0.020833 S s -grestore -0 0 T -grestore -grestore -grestore -0 nxsetgray -0 0 0.3 1 10 SU -gsave -[1 0 0 1 192 26] concat -0 0 2 1 10 SU -26 50 T -N -2 L -0 nxsetgray -0 192 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -[2 0 0 -1 2 50] concat -N -0 nxsetgray -gsave -24 48 0 0 oval fill -grestore -0.15 L -0 nxsetgray -gsave -24 48 0 0 oval 0.020833 0.020833 S s -grestore -0 0 T -grestore -grestore -grestore -0 nxsetgray -0 0 0.3 1 10 SU -gsave -[1 0 0 1 96 26] concat -0 0 2 1 10 SU -26 50 T -N -2 L -0 nxsetgray -0 192 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -[2 0 0 -1 2 50] concat -N -0 nxsetgray -gsave -24 48 0 0 oval fill -grestore -0.15 L -0 nxsetgray -gsave -24 48 0 0 oval 0.020833 0.020833 S s -grestore -0 0 T -grestore -grestore -grestore -0 nxsetgray -0 0 0.3 1 10 SU -gsave -[1 0 0 1 1 26] concat -0 0 2 1 10 SU -26 50 T -N -2 L -0 nxsetgray -0 192 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -[2 0 0 -1 2 50] concat -N -0 nxsetgray -gsave -24 48 0 0 oval fill -grestore -0.15 L -0 nxsetgray -gsave -24 48 0 0 oval 0.020833 0.020833 S s -grestore -0 0 T -grestore -grestore -grestore -0 0 0.15 1 10 SU -gsave -/Times-Bold findfont 18 scalefont [1 0 0 -1 0 0] makefont -221 -exch -defineuserobject -221 execuserobject setfont -22 1 T -15 flipV -5 7.5 T --4 6 T -N 0 0 m -0 nxsetgray -0 0 m -(I) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -221 execuserobject setfont -115 2 T -15 flipV -8.5 7.5 T --7.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(II) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -221 execuserobject setfont -208 3 T -15 flipV -12 7.5 T --11 6 T -N 0 0 m -0 nxsetgray -0 0 m -(III) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -221 execuserobject setfont -305 1 T -15 flipV -11 7.5 T --10 6 T -N 0 0 m -0 nxsetgray -0 0 m -(IV) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -gsave -221 execuserobject setfont -402 1 T -15 flipV -7.5 7.5 T --6.5 6 T -N 0 0 m -0 nxsetgray -0 0 m -(V) show -0 0 T -grestore -grestore -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Times-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob29a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob29a.gif deleted file mode 100755 index 13b6d5d8d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob29a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob30.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob30.eps deleted file mode 100755 index 1bc3ae85b..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob30.eps +++ /dev/null @@ -1,392 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q18.draw -- /teacher/Apps/Drawfiles/phys121a/set5 -%%Creator: Draw -%%CreationDate: Sun May 28 18:48:42 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 103 403 388 587 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -103 403 285 184 rectclip -0 0 0 setup -gsave -/Helvetica-Oblique findfont 12 scalefont [1 0 0 -1 0 0] makefont -65 -exch -defineuserobject -65 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 945] concat -/Helvetica findfont 12 scalefont [1 0 0 -1 0 0] makefont -10 -exch -defineuserobject -10 execuserobject setfont -0 nxsetgray -200 477 moveto (- - - - - - - - -) show -grestore -grestore -0 0 1 setup -0 nxsetgray -119 140 263 431 line -grestore -0 setgray -0.333333 setgray -0 0 0 setup -0.668966 nxsetgray -108 422 275 17 rectfill -0 nxsetgray -108 422 275 17 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -gsave -0.241386 nxsetgray -20 20 220 433 oval fill -grestore -0 nxsetgray -20 20 220 433 oval matrix defaultmatrix setmatrix stroke -grestore -0 setgray -0.333333 setgray -0 0 1 setup -0 nxsetgray -47 52 213 439 line -grestore -0 setgray -0.333333 setgray -0 0 1 setup -0 nxsetgray -47 52 240 439 line -grestore -0 setgray -0.333333 setgray -0 0 1 setup -0 nxsetgray -28 0 258 491 line -grestore -0 setgray -0.333333 setgray -0 0 0 setup -gsave -0 nxsetgray -20 20 256 472 oval fill -grestore -0 nxsetgray -20 20 256 472 oval matrix defaultmatrix setmatrix stroke -grestore -0 0 1 setup -0 nxsetgray -127 140 189 439 line -grestore -0 0 1 setup -0 nxsetgray -119 140 262 439 line -grestore -0 0 1 setup -0 nxsetgray -66 0 315 580 line -grestore -0 0 1 setup -0 nxsetgray -0 -10 381 580 line -grestore -0 0 0 setup -0 nxsetgray -30 34 171 438 line -48.577766 201 472 arrow -228.577759 171 438 arrow -grestore -0 0 0 setup -gsave -10 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 897] concat -/Symbol findfont 18 scalefont [1 0 0 -1 0 0] makefont -66 -exch -defineuserobject -66 execuserobject setfont -0 nxsetgray -285 455 moveto (q) show -grestore -grestore -0 0 0 setup -gsave -66 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1061] concat -65 execuserobject setfont -0 nxsetgray -278 533 moveto (q) show -0 4 rmoveto -(2) show -0 -4 rmoveto -( , m) show -grestore -grestore -0 0 0 setup -gsave -65 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 861] concat -65 execuserobject setfont -0 nxsetgray -211 433 moveto (q) show -0 4 rmoveto -(1) show -0 -4 rmoveto -grestore -grestore -0 0 0 setup -gsave -65 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 919] concat -65 execuserobject setfont -0 nxsetgray -179 464 moveto (l) show -grestore -grestore -0 setgray -0.333333 setgray -0 0 0 setup -0 nxsetgray -13 29 272 492 line -245.8564 272 492 arrow -grestore -0 0 0 setup -gsave -65 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1019] concat -10 execuserobject setfont -0 nxsetgray -123 514 moveto (frictionless groove) show -grestore -grestore -0 setgray -0.333333 setgray -0 0 0 setup -0 nxsetgray -47 -20 203 500 line -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Oblique -%%+ Symbol -%%+ Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob30.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob30.gif deleted file mode 100755 index 94058d4a1..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype51/prob30.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob02v1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob02v1.eps deleted file mode 100755 index 4f21b6a82..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob02v1.eps +++ /dev/null @@ -1,514 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 487 367 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Wed, Jul 10, 1996 1:48 PM -%%DocumentFonts: (atend) -%%EndComments -0 367 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -68.25 16.00 68.25 316.25 MacLine -450.00 16.00 450.00 316.25 MacLine -1 ps -1.00 ps -450.00 15.50 441.62 15.50 MacLine -68.25 15.50 76.62 15.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(100) 37.50 20.38 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -76.62 70.12 441.62 70.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -450.00 69.75 441.62 69.75 MacLine -68.25 69.75 76.62 69.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(80) 46.38 74.62 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -76.62 124.38 441.62 124.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -450.00 124.00 441.62 124.00 MacLine -68.25 124.00 76.62 124.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(60) 46.38 128.88 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -76.62 178.62 441.62 178.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -450.00 178.25 441.62 178.25 MacLine -68.25 178.25 76.62 178.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(40) 46.38 183.12 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -76.62 232.88 441.62 232.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -450.00 232.50 441.62 232.50 MacLine -68.25 232.50 76.62 232.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 46.38 237.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -76.62 287.12 441.62 287.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -450.00 286.75 441.62 286.75 MacLine -68.25 286.75 76.62 286.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 55.25 291.62 8.88 WS -16.00 (_Helvetica) 0 F -gsave 25.38 261.00 translate -90 rotate -(Electric Field \(x10^7 N/C\)) 0.00 0.00 180.75 WS -grestore -1.00 ps -68.25 316.75 450.00 316.75 MacLine -68.25 15.50 450.00 15.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -380.62 308.38 380.62 23.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -380.25 15.50 380.25 23.88 MacLine -380.25 316.75 380.25 308.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(30) 371.88 334.75 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -285.50 308.38 285.50 23.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -285.12 15.50 285.12 23.88 MacLine -285.12 316.75 285.12 308.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 276.75 334.75 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -190.38 308.38 190.38 23.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -190.00 15.50 190.00 23.88 MacLine -190.00 316.75 190.00 308.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 181.62 334.75 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -95.25 308.38 95.25 23.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -94.88 15.50 94.88 23.88 MacLine -94.88 316.75 94.88 308.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 91.00 334.75 8.88 WS -16.00 (_Helvetica) 0 F -(x position \(m\)) 211.62 363.38 96.12 WS -1 0 0 SetFore UseFore -1.00 ps -newpath 104.88 16.00 M -104.88 16.00 L -114.38 151.62 L -123.88 196.88 L -133.38 219.38 L -142.88 233.00 L -152.38 242.00 L -161.88 248.50 L -171.38 253.25 L -180.88 257.12 L -190.50 260.12 L -200.00 262.62 L -209.50 264.62 L -219.00 266.38 L -228.50 267.88 L -238.00 269.12 L -247.50 270.25 L -257.00 271.25 L -266.50 272.12 L -276.00 273.00 L -285.62 273.62 L -295.12 274.25 L -304.62 274.88 L -314.12 275.50 L -323.62 275.88 L -333.12 276.38 L -342.62 276.75 L -352.12 277.25 L -361.62 277.50 L -371.12 277.88 L -380.75 278.12 L -390.25 278.50 L -399.75 278.75 L -409.25 279.00 L -418.75 279.25 L -428.25 279.50 L -437.75 279.75 L -447.25 279.88 L -450.25 279.88 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob02v1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob02v1.gif deleted file mode 100755 index e3dc44b76..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob02v1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob02v2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob02v2.eps deleted file mode 100755 index 529aab354..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob02v2.eps +++ /dev/null @@ -1,505 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 496 374 -%%Creator: Igor -%%Title: Graph2 -%%Creation Date: Wed, Jul 10, 1996 1:43 PM -%%DocumentFonts: (atend) -%%EndComments -0 374 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -77.12 16.00 77.12 326.25 MacLine -459.00 16.00 459.00 326.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -85.50 55.38 450.62 55.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -459.00 55.00 450.62 55.00 MacLine -77.12 55.00 85.50 55.00 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(800) 46.38 59.88 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -85.50 116.38 450.62 116.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -459.00 116.00 450.62 116.00 MacLine -77.12 116.00 85.50 116.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(600) 46.38 120.88 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -85.50 177.50 450.62 177.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -459.00 177.12 450.62 177.12 MacLine -77.12 177.12 85.50 177.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(400) 46.38 182.00 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -85.50 238.62 450.62 238.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -459.00 238.25 450.62 238.25 MacLine -77.12 238.25 85.50 238.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(200) 46.38 243.12 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -85.50 299.75 450.62 299.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -459.00 299.38 450.62 299.38 MacLine -77.12 299.38 85.50 299.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 64.12 304.25 8.88 WS -16.00 (_Helvetica) 0 F -gsave 20.38 273.00 translate -90 rotate -(Electric Field \(x10^5 N/C\)) 0.00 0.00 180.75 WS -grestore -1.00 ps -77.12 326.75 459.00 326.75 MacLine -77.12 15.50 459.00 15.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -407.50 318.38 407.50 23.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -407.12 15.50 407.12 23.88 MacLine -407.12 326.75 407.12 318.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0.6) 396.50 344.75 22.25 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -350.38 318.38 350.38 23.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -350.00 15.50 350.00 23.88 MacLine -350.00 326.75 350.00 318.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0.5) 339.38 344.75 22.25 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -293.38 318.38 293.38 23.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -293.00 15.50 293.00 23.88 MacLine -293.00 326.75 293.00 318.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0.4) 282.38 344.75 22.25 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -236.25 318.38 236.25 23.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -235.88 15.50 235.88 23.88 MacLine -235.88 326.75 235.88 318.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0.3) 225.25 344.75 22.25 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -179.12 318.38 179.12 23.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -178.75 15.50 178.75 23.88 MacLine -178.75 326.75 178.75 318.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0.2) 168.12 344.75 22.25 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -122.12 318.38 122.12 23.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -121.75 15.50 121.75 23.88 MacLine -121.75 326.75 121.75 318.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0.1) 111.12 344.75 22.25 WS -16.00 (_Helvetica) 0 F -(x position) 243.75 366.38 67.50 WS -1 0 0 SetFore UseFore -1.00 ps -newpath 96.50 16.00 M -122.25 223.38 L -150.75 265.88 L -179.38 280.75 L -207.88 287.62 L -236.38 291.25 L -264.88 293.50 L -293.50 295.00 L -322.00 296.00 L -350.50 296.75 L -379.00 297.25 L -407.62 297.62 L -436.12 298.00 L -459.25 298.12 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob02v2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob02v2.gif deleted file mode 100755 index e10cd9f9d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob02v2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob02v3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob02v3.eps deleted file mode 100755 index cc8288bc3..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob02v3.eps +++ /dev/null @@ -1,603 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 516 381 -%%Creator: Igor -%%Title: Graph3 -%%Creation Date: Wed, Jul 10, 1996 1:52 PM -%%DocumentFonts: (atend) -%%EndComments -0 381 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -103.75 16.00 103.75 330.25 MacLine -479.00 16.00 479.00 330.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -112.12 37.12 470.62 37.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -479.00 36.75 470.62 36.75 MacLine -103.75 36.75 112.12 36.75 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(1.0x10) 40.88 41.62 48.00 WS -11.25 (_Helvetica) 0 F -(6) 88.88 33.25 6.25 WS -16.00 (_Helvetica) 0 F -( ) 95.12 41.62 4.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -112.12 90.12 470.62 90.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -479.00 89.75 470.62 89.75 MacLine -103.75 89.75 112.12 89.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0.8) 77.38 94.62 22.25 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -112.12 143.00 470.62 143.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -479.00 142.62 470.62 142.62 MacLine -103.75 142.62 112.12 142.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0.6) 77.38 147.50 22.25 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -112.12 196.00 470.62 196.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -479.00 195.62 470.62 195.62 MacLine -103.75 195.62 112.12 195.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0.4) 77.38 200.50 22.25 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -112.12 249.00 470.62 249.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -479.00 248.62 470.62 248.62 MacLine -103.75 248.62 112.12 248.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0.2) 77.38 253.50 22.25 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -112.12 302.00 470.62 302.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -479.00 301.62 470.62 301.62 MacLine -103.75 301.62 112.12 301.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0.0) 77.38 306.50 22.25 WS -16.00 (_Helvetica) 0 F -gsave 42.38 234.62 translate -90 rotate -(Electric Field \(N/C\)) 0.00 0.00 134.12 WS -grestore -1.00 ps -103.75 330.75 479.00 330.75 MacLine -103.75 15.50 479.00 15.50 MacLine -1 ps -1.00 ps -478.50 15.50 478.50 23.88 MacLine -478.50 330.75 478.50 322.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(100) 465.75 348.75 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -404.38 322.38 404.38 23.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -404.00 15.50 404.00 23.88 MacLine -404.00 330.75 404.00 322.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(80) 395.62 348.75 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -329.88 322.38 329.88 23.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -329.50 15.50 329.50 23.88 MacLine -329.50 330.75 329.50 322.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(60) 321.12 348.75 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -255.25 322.38 255.25 23.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -254.88 15.50 254.88 23.88 MacLine -254.88 330.75 254.88 322.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(40) 246.50 348.75 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -180.75 322.38 180.75 23.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -180.38 15.50 180.38 23.88 MacLine -180.38 330.75 180.38 322.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 172.00 348.75 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -106.25 322.38 106.25 23.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -105.88 15.50 105.88 23.88 MacLine -105.88 330.75 105.88 322.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 102.00 348.75 8.88 WS -16.00 (_Helvetica) 0 F -(x position \(m\)) 243.88 377.38 96.12 WS -1 0 0 SetFore UseFore -1.00 ps -newpath 106.38 302.12 M -110.00 302.12 L -113.75 302.12 L -117.50 302.12 L -121.25 302.12 L -125.00 302.12 L -128.62 302.12 L -132.38 302.12 L -136.12 302.00 L -139.88 302.00 L -143.62 302.00 L -147.25 301.88 L -151.00 301.75 L -154.75 301.75 L -158.50 301.62 L -162.25 301.50 L -166.00 301.25 L -169.62 301.12 L -173.38 300.88 L -177.12 300.75 L -180.88 300.50 L -184.62 300.12 L -188.25 299.75 L -192.00 299.50 L -195.75 299.00 L -199.50 298.62 L -203.25 298.25 L -206.88 297.62 L -210.62 297.12 L -214.38 296.50 L -218.12 295.88 L -221.88 295.25 L -225.62 294.50 L -229.25 293.75 L -233.00 292.88 L -236.75 292.00 L -240.50 291.12 L -244.25 290.12 L -247.88 289.12 L -251.62 288.00 L -255.38 286.88 L -259.12 285.62 L -262.88 284.38 L -266.50 283.00 L -270.25 281.62 L -274.00 280.12 L -277.75 278.50 L -281.50 276.88 L -285.25 275.25 L -288.88 273.38 L -292.62 271.62 L -296.38 269.75 L -300.12 267.75 L -303.88 265.62 L -307.50 263.50 L -311.25 261.25 L -315.00 258.88 L -318.75 256.38 L -322.50 253.88 L -326.12 251.38 L -329.88 248.62 L -333.62 245.88 L -337.38 243.00 L -341.12 240.00 L -344.88 237.00 L -348.50 233.75 L -352.25 230.50 L -356.00 227.12 L -359.75 223.62 L -363.50 220.12 L -367.12 216.38 L -370.88 212.62 L -374.62 208.62 L -378.38 204.62 L -382.12 200.50 L -385.88 196.25 L -389.50 191.88 L -393.25 187.38 L -397.00 182.75 L -400.75 178.00 L -404.50 173.12 L -408.12 168.12 L -411.88 163.12 L -415.62 157.88 L -419.38 152.50 L -423.12 147.00 L -426.75 141.38 L -430.50 135.62 L -434.25 129.62 L -438.00 123.62 L -441.75 117.50 L -445.50 111.12 L -449.12 104.75 L -452.88 98.12 L -456.62 91.38 L -460.38 84.38 L -464.12 77.38 L -467.75 70.12 L -471.50 62.88 L -475.25 55.38 L -479.00 47.75 L -479.25 47.25 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob02v3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob02v3.gif deleted file mode 100755 index 9833717dc..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob02v3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob04.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob04.eps deleted file mode 100755 index 64c2154a4..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob04.eps +++ /dev/null @@ -1,766 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Mon Jan 9 13:02:31 1995 -%%For: prof -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 330 230 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /rpath { - newpath moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} bind def /rfpath { - /rad3 exch def /hh3 exch def /ww3 exch def /yy1 exch def /xx1 exch def /xx2 xx1 ww3 add def /yy2 yy1 hh3 add def newpath xx1 yy1 rad3 hh3 0 gt { - add - } { - sub - } ifelse moveto xx1 yy1 xx2 yy1 rad3 arcto 4 { - pop - } repeat xx2 yy1 xx2 yy2 rad3 arcto 4 { - pop - } repeat xx2 yy2 xx1 yy2 rad3 arcto 4 { - pop - } repeat xx1 yy2 xx1 yy1 rad3 arcto 4 { - pop - } repeat closepath -} bind def /rfill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - 4 2 roll rpath crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - rectfill pop - } ifelse grestore -} bind def /rstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse 4 2 roll rpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /rffill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse rfpath filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /rfstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse rfpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /mkrpath { - dodrawctm rpath unpagectm -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /arwlen 6 def /arw 4 def /arow { - gsave newpath moveto lineto unpagectm concat { - - } { - - } { - - } { - - } pathforall newpath 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath crlinalph setalpha strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - crstrpat findfont exch strwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /arwpath { - sc7mt currentmatrix pop gsave newpath moveto lineto unpagectm dup concat { - - } { - - } { - - } { - - } pathforall grestore unpagectm 5 -1 roll concat 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath sc7mt setmatrix -} bind def end -TopDrawDict begin /estroke { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /efill { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath unpagectm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /apstroke { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc pie chord or { - closepath - } if crlinalph setalpha pie not chord not and { - crfrtarw { - 2 copy crlinw exch gsave newpath angle1 1 add cos radius mul radius add angle1 1 add sin radius mul radius add moveto angle1 cos radius mul radius add angle1 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if crendarw { - 2 copy crlinw exch gsave newpath angle2 1 sub cos radius mul radius add angle2 1 sub sin radius mul radius add moveto angle2 cos radius mul radius add angle2 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if - } if crlincp setlinecap crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /apfill { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup 5 -2 roll arc pie chord or { - closepath - } if 1 xscale div 1 yscale div scale crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /mkepath { - dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def /closed exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc closed pie or chord or { - closepath - } if unpagectm -} bind def end -TopDrawDict begin /defpat { - 7 dict begin /FontDict 9 dict def FontDict begin /cache exch def /key exch def /proc exch cvx def /mtx exch matrix invertmatrix def /height exch def /width exch def /ctm matrix currentmatrix def /ptm matrix identmatrix def /str -(12345678901234567890123456789012) def end /FontBBox [ 0 0 FontDict /width get FontDict /height get ] def /FontMatrix FontDict /mtx get def /Encoding StandardEncoding def /FontType 3 def /BuildChar { - pop begin FontDict begin width 0 cache { - 0 0 width height setcachedevice - } { - setcharwidth - } ifelse 0 0 moveto width 0 lineto width height lineto 0 height lineto closepath clip newpath gsave proc grestore end end - } def FontDict /key get currentdict definefont end -} bind def /patpath { - dup type /dicttype eq { - begin unpagectm - } { - exch begin unpagectm concat - } ifelse currentdict setfont FontDict begin FontMatrix concat width 0 dtransform round width div exch round width div exch 0 height dtransform round height div exch round height div exch 0 0 transform round exch round exch ptm astore setmatrix -errordict begin /*undefinedresult /undefinedresult load def /undefinedresult { - pop 43 - } bind def end 42 pathbbox errordict begin /undefinedresult /*undefinedresult load def end dup 43 ne { - 5 -1 roll - } if 42 eq { - height div ceiling height mul 4 1 roll width div ceiling width mul 4 1 roll height div floor height mul 4 1 roll width div floor width mul 4 1 roll 2 index sub height div ceiling cvi exch 3 index sub width div ceiling cvi exch 4 2 roll moveto -FontMatrix ptm invertmatrix pop { - gsave ptm concat dup str length idiv { - str show - } repeat dup str length mod str exch 0 exch getinterval show grestore 0 height rmoveto - } repeat pop - } { - pop - } ifelse end end -} bind def /patfil { - gsave clip patpath grestore newpath -} bind def /trpatfil { - patfil -} bind def /oppatfil { - gsave 1 setgray 1 setalpha fill grestore patfil -} bind def /trpateofil { - pateofil -} bind def /oppateofil { - gsave 1 setgray 1 setalpha fill grestore pateofil -} bind def /pateofil { - gsave eoclip patpath grestore newpath -} bind def /patstrk { - gsave strokepath clip patpath grestore newpath -} bind def /trpatstrk { - patstrk -} bind def /oppatstrk { - gsave 1 setgray 1 setalpha stroke grestore patstrk -} bind def /patashow { - (0) exch { - 2 copy 0 exch put pop dup false charpath currentpoint 5 index type /dicttype eq { - 5 index patfil - } { - 6 index 6 index patfil - } ifelse moveto 3 copy pop rmoveto - } forall pop pop pop dup type /dicttype ne { - pop - } if pop -} bind def /patshow { - 0 exch 0 exch patashow -} bind def /rpatfil { - gsave setalpha pop setrgbcolor rpath tpatstr cvs cvn invpats { - piddict exch get - } { - ipiddict exch get - } ifelse findfont oppatfil grestore -} bind def /tpatstr 10 string def /getpat { - tpatstr cvs cvn invpats { - piddict exch get - } { - ipiddict exch get - } ifelse -} bind def end -TopDrawDict begin 8 8 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 8 2 rectfill -} bind /hline1 true defpat pop 16 16 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 16 8 rectfill -} bind /hline2 true defpat pop 32 32 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 32 16 rectfill -} bind /hline3 true defpat pop 8 8 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 2 8 rectfill -} bind /vline1 true defpat pop 16 16 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 8 16 rectfill -} bind /vline2 true defpat pop 32 32 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 16 32 rectfill -} bind /vline3 true defpat pop 15 15 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 1 setlinewidth stroke -} bind /rdline1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 2 scale 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 3 setlinewidth stroke -} bind /rdline2 true defpat pop 60 60 [ 300 72 div 0 0 300 72 div 0 0 ] { - 4 4 scale 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 4 setlinewidth stroke -} bind /rdline3 true defpat pop 15 15 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 1 setlinewidth stroke -} bind /ldline1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 2 scale 2 setlinecap 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 3 setlinewidth stroke -} bind /ldline2 true defpat pop 60 60 [ 300 72 div 0 0 300 72 div 0 0 ] { - 4 4 scale 2 setlinecap 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 4 setlinewidth stroke -} bind /ldline3 true defpat pop 7 7 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 4 0 moveto 4 7 lineto 0 4 moveto 7 4 lineto 0.5 setlinewidth stroke -} bind /gray1 true defpat pop 11 11 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 6 0 moveto 6 11 lineto 0 6 moveto 11 6 lineto 0.5 setlinewidth stroke -} bind /gray2 true defpat pop 15 15 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 8 0 moveto 8 15 lineto 0 8 moveto 15 8 lineto 0.5 setlinewidth stroke -} bind /gray3 true defpat pop 19 19 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 10 0 moveto 10 19 lineto 0 10 moveto 19 10 lineto 0.5 setlinewidth stroke -} bind /gray4 true defpat pop 23 23 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 12 0 moveto 12 23 lineto 0 12 moveto 23 12 lineto 0.5 setlinewidth stroke -} bind /gray5 true defpat pop 31 31 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 16 0 moveto 16 31 lineto 0 16 moveto 31 16 lineto 0.5 setlinewidth stroke -} bind /gray6 true defpat pop 20 20 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 10 0 moveto 20 10 lineto 0 10 moveto 10 20 lineto 10 0 moveto 0 10 lineto 20 10 moveto 10 20 lineto 0.25 setlinewidth stroke -} bind /xhatch1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 2 scale 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 0.5 setlinewidth stroke -} bind /xhatch2 true defpat pop 60 60 [ 300 72 div 0 0 300 72 div 0 0 ] { - 4 4 scale 2 setlinecap 7.5 0 moveto 15 7.5 lineto 0 7.5 moveto 7.5 15 lineto 7.5 0 moveto 0 7.5 lineto 15 7.5 moveto 7.5 15 lineto 2 setlinewidth stroke -} bind /xhatch3 true defpat pop 20 20 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 10 10 4 0 360 arc closepath fill -} bind /dots1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 15 15 8 0 360 arc closepath fill -} bind /dots2 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 25 25 20 0 360 arc closepath fill -} bind /dots3 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 0 26 moveto 50 0 rlineto 0 1 moveto 50 0 rlineto 26 50 moveto 0 -25 rlineto 1 25 moveto 0 -25 rlineto 1 setlinewidth stroke -} bind /bricks true defpat pop 25 25 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0.5 0.5 scale 0 0 25 25 rectfill 25 25 25 25 rectfill -} bind /check1 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 25 25 rectfill 25 25 25 25 rectfill -} bind /check2 true defpat pop 80 80 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 0 40 40 rectfill 40 40 40 40 rectfill -} bind /check3 true defpat pop 20 20 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 10 0 moveto 20 10 lineto 10 20 lineto 0 10 lineto closepath fill -} bind /diamond1 true defpat pop 30 30 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 15 0 moveto 30 15 lineto 15 30 lineto 0 15 lineto closepath fill -} bind /diamond2 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - newpath 25 0 moveto 50 25 lineto 25 50 lineto 0 25 lineto closepath fill -} bind /diamond3 true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 10 10 30 30 rectfill 0 0 moveto 50 50 lineto 0 50 moveto 50 0 lineto 1 setlinewidth stroke -} bind /weave true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 25 25 22 0 360 arc closepath 1 setlinewidth stroke -} bind /donut true defpat pop 100 100 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap -20 0 moveto 25 25 rlineto -25 25 rlineto 25 25 rlineto -25 25 rlineto 5 0 moveto 25 25 rlineto -25 25 rlineto 25 25 rlineto -25 25 rlineto 30 0 moveto 25 25 rlineto -25 25 rlineto 25 25 rlineto -25 25 rlineto 55 0 moveto 25 25 rlineto --25 25 rlineto 25 25 rlineto -25 25 rlineto 80 0 moveto 25 25 rlineto -25 25 rlineto 25 25 rlineto -25 25 rlineto 1 setlinewidth stroke -} bind /ziggy true defpat pop 100 100 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 0 -20 moveto 25 25 rlineto 25 -25 rlineto 25 25 rlineto 25 -25 rlineto 0 5 moveto 25 25 rlineto 25 -25 rlineto 25 25 rlineto 25 -25 rlineto 0 30 moveto 25 25 rlineto 25 -25 rlineto 25 25 rlineto 25 -25 rlineto 0 55 moveto 25 25 rlineto 25 --25 rlineto 25 25 rlineto 25 -25 rlineto 0 80 moveto 25 25 rlineto 25 -25 rlineto 25 25 rlineto 25 -25 rlineto 1 setlinewidth stroke -} bind /zaggy true defpat pop 80 80 [ 300 72 div 0 0 300 72 div 0 0 ] { - 2 setlinecap 0 0 moveto 0 40 lineto 40 40 lineto 40 80 lineto 80 80 lineto 0 60 moveto 20 60 lineto 20 80 lineto 20 0 moveto 20 20 lineto 60 20 lineto 60 60 lineto 80 60 lineto 1 setlinewidth stroke -} bind /zaggyd true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 0 12.5 moveto 6.25 0 rlineto 0 37.5 moveto 31.25 0 rlineto 50 12.5 moveto -31.25 0 rlineto 50 37.5 moveto -6.25 0 rlineto 12.5 0 moveto 0 6.25 rlineto 37.5 0 moveto 0 31.25 rlineto 12.5 50 moveto 0 -31.25 rlineto 37.5 50 moveto 0 -6.25 -rlineto 1 setlinewidth stroke -} bind /plusses true defpat pop 50 50 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 0 10 moveto 10 0 rlineto 0 -10 rlineto 0 40 moveto 10 0 rlineto 0 10 rlineto 50 10 moveto -10 0 rlineto 0 -10 rlineto 50 40 moveto -10 0 rlineto 0 10 rlineto 7 7 moveto 36 0 rlineto 0 36 rlineto -36 0 rlineto closepath 1 setlinewidth -stroke -} bind /boxes true defpat pop 100 100 [ 300 72 div 0 0 300 72 div 0 0 ] { - 0 setlinecap 50 50 40 0 360 arc closepath 40 60 moveto 0 8 rlineto 60 60 moveto 0 8 rlineto 50 45 moveto 0 8 rlineto 35 35 moveto 35 21 65 21 65 35 curveto 1 setlinewidth stroke -} bind /smiley true defpat pop /piddict 256 dict def piddict begin /1 /gray3 def /2 /gray2 def /3 /gray1 def /4 /gray6 def /5 /gray5 def /6 /gray4 def /7 /hline3 def /8 /hline2 def /9 /hline1 def /10 /vline3 def /11 /vline2 def /12 /vline1 def /13 -/rdline3 def /14 /rdline2 def /15 /rdline1 def /16 /ldline3 def /17 /ldline2 def /18 /ldline1 def /19 /check3 def /20 /check2 def /21 /check1 def /22 /xhatch3 def /23 /xhatch2 def /24 /xhatch1 def /25 /dots3 def /26 /dots2 def /27 /dots1 def /28 /zaggyd -def /29 /zaggy def /30 /ziggy def /31 /diamond3 def /32 /diamond2 def /33 /diamond1 def /34 /donut def /35 /weave def /36 /bricks def /37 /plusses def /38 /boxes def /39 /smiley def end /invpats true def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 329.799988 230 rectclip --29 -532 translate -29 532 329.799988 230 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 1.4 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 0.5 def /crfilgrn 0.5 def /crfilblu 0.5 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw true def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 259.243164 0 48.256836 577.5 1 0 0 1 0 0 sc6mt astore ssl -/crlinw 1 def -/crfrtarw false def -/crfilalph 0.990005 def -/crfilred 0.666662 def /crfilgrn 0.666662 def /crfilblu 0.666662 def /filinclr true def -/filwpat true def -1 0 0 1 0 0 sc5mt astore 29 762 288 -12 1 0 0 1 0 0 sc6mt astore rfill -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 29 762 288 -12 1 0 0 1 0 0 sc6mt astore rstroke -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 68 156.5 102 593 1 0 0 1 0 0 sc6mt astore ssl -/crfilalph 1 def -/crfilred 0.5 def /crfilgrn 0.5 def /crfilblu 0.5 def /filinclr true def -/filwpat false def -gsave clpmt currentmatrix pop newpath -true 0 360 243 433 1 -1 9.013885 false false 1 0 0 1 -153 164 sc5mt astore mkepath -clip -newpath -clpmt setmatrix -gsave -[1 0 0 1 -153 164] dodrawctm -save /angle 0 cvi 360 mod def 1 0 sub 50 1 sub div /grayinc exch def 1 0 ne { - 18.027832 18.027771 gt { - /radius 18.027832 2 div def - } { - /radius 18.027771 2 div def - } ifelse -} { - 18.027771 2 div /a exch def 18.027832 2 div /b exch def a a mul b b mul add sqrt /radius exch def -} ifelse 18.027771 2 div 243.486115 add /xcenter exch def 18.027832 2 div 414.486084 add /ycenter exch def radius 50 div -1 mul /sizeinc exch def 18.027771 2 div 0.4 mul 50 div -1 mul /xmove exch def 18.027832 2 div 0.4 mul 50 div /ymove exch def gsave 1 -setalpha newpath 243.486115 414.486084 moveto 18.027771 0 rlineto 0 18.027832 rlineto 18.027771 -1 mul 0 rlineto closepath clip xcenter ycenter translate angle rotate 0 grayinc 1 grayinc 0.5 mul add { - setgray newpath 0 0 radius 0 360 arc closepath fill radius sizeinc add /radius exch def xmove ymove translate -} for grestore restore -grestore -grestore -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 9.013885 1 -1 243 433 1 0 0 1 -153 164 sc5mt astore estroke -/usedash true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 218 170 532 1 0 0 1 0 0 sc6mt astore ssl -/crlinw 1.4 def -/usedash false def -/crfrtarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 259.742676 0 47.757324 613.5 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 258.743652 0 48.756348 649 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 255.100006 0.48407 52.399994 685.01593 1 0 0 1 0 0 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(mg ) [16.002014 0 10.997986 0 0 0] 478 555 /Helvetica-Bold [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -152 181] dotx -/txtdraw true def -/txlndraw true def -(uniform ) [10 0 10 0 5.559998 0 6.660004 0 10 0 6.660004 0 15.559998 0 0 0] 339 393 /Times-Roman [ 20 1 mul 0 0 20 0 0 ] [1.022075 0 0 1.07595 -163.456573 125.37764] dotx -/txtdraw true def -/txlndraw true def -(E) [0 0] 408.440002 393 /Times-Bold [ 20 1 mul 0 0 20 0 0 ] [1.022075 0 0 1.07595 -163.456573 125.37764] dotx -/txtdraw true def -/txlndraw true def -(-field) [6.660004 0 6.26001 0 5.559998 0 8.880005 0 5.559998 0 0 0] 421.779999 393 /Times-Roman [ 20 1 mul 0 0 20 0 0 ] [1.022075 0 0 1.07595 -163.456573 125.37764] dotx -/txtdraw true def -/txlndraw true def -( ) [0 0] 464.700012 393 /Times-Bold [ 20 1 mul 0 0 20 0 0 ] [1.022075 0 0 1.07595 -163.456573 125.37764] dotx -/txtdraw true def -/txlndraw true def -(q ) [9.377991 0 0 0] 301 501 /Symbol [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -155 151] dotx -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 35.945312 356 710.054688 1 0 0 1 0 0 sc6mt astore ssl -/crendarw true def -/crfrtarw false def -/esave save def 1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 90 128.632812 323 543 1.072464 -1 34.5 false false 1 0 0 1 -190 193 sc5mt astore apstroke esave restore -/txtdraw true def -/txlndraw true def -(q ) [9.5 0 0 0] 226 436 /Times-Roman [ 19 1 mul 0 0 19 0 0 ] [1 0 0 1 -147 157] dotx -/crendarw false def -/crfrtarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 255.600006 0.48407 51.899994 721.51593 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 259.243164 0 48.256836 539.5 1 0 0 1 0 0 sc6mt astore ssl -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold -%%+ Times-Roman -%%+ Times-Bold -%%+ Symbol -%%BoundingBox: 0.000000 0.000000 329.799988 230.000000 diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob04.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob04.gif deleted file mode 100755 index 35d78f40e..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob04.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob06b.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob06b.eps deleted file mode 100755 index 493113d40..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob06b.eps +++ /dev/null @@ -1,374 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q2.draw -- /teacher/Apps/Drawfiles/phys121a/set6 -%%Creator: Draw -%%CreationDate: Tue Jun 6 09:30:24 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 128 351 371 602 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --43 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -128 351 243 251 rectclip -0 0 0 setup -0 nxsetgray -0 -200 240 569 line -89.997345 240 569 arrow -grestore -0 0 0 setup -0 nxsetgray -200 0 146 469 line -0 346 469 arrow -grestore -0 0 2 setup -0 nxsetgray -100 0 190 468 line -180 190 468 arrow -0 290 468 arrow -grestore -0 0 2 setup -0 nxsetgray -0 -100 240 519 line -89.997345 240 519 arrow --90.002655 240 419 arrow -grestore -0 0 2 setup -0 nxsetgray -50 50 215 444 line -45.001328 265 494 arrow -225.001328 215 444 arrow -grestore -0 0 2 setup -0 nxsetgray -50 -50 214 493 line -134.998672 214 493 arrow --45.001328 264 443 arrow -grestore -0 0 2 setup -gsave -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -91 -exch -defineuserobject -91 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 920] concat -91 execuserobject setfont -0 nxsetgray -227 465 moveto (O) show -grestore -grestore -0 0 2 setup -gsave -91 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 926] concat -91 execuserobject setfont -0 nxsetgray -348 468 moveto (x) show -grestore -grestore -0 0 2 setup -gsave -91 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1162] concat -91 execuserobject setfont -0 nxsetgray -233 586 moveto (y) show -grestore -grestore -0 0 2 setup -gsave -91 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1062] concat -91 execuserobject setfont -0 nxsetgray -235 536 moveto (N) show -grestore -grestore -0 0 2 setup -gsave -91 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 936] concat -91 execuserobject setfont -0 nxsetgray -295 473 moveto (E) show -grestore -grestore -0 0 2 setup -gsave -91 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 812] concat -91 execuserobject setfont -0 nxsetgray -236 411 moveto (S) show -grestore -grestore -0 0 2 setup -gsave -91 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 934] concat -91 execuserobject setfont -0 nxsetgray -169 472 moveto (W) show -grestore -grestore -0 0 2 setup -gsave -91 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1000] concat -91 execuserobject setfont -0 nxsetgray -270 505 moveto (NE) show -grestore -grestore -0 0 2 setup -gsave -91 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 862] concat -91 execuserobject setfont -0 nxsetgray -264 436 moveto (SE) show -grestore -grestore -0 0 2 setup -gsave -91 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 998] concat -91 execuserobject setfont -0 nxsetgray -186 504 moveto (NW) show -grestore -grestore -0 0 2 setup -gsave -91 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 864] concat -91 execuserobject setfont -0 nxsetgray -188 437 moveto (SW) show -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob06b.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob06b.gif deleted file mode 100755 index ad2c0c50f..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob06b.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob07a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob07a.eps deleted file mode 100755 index 668133f3d..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob07a.eps +++ /dev/null @@ -1,382 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q3.draw -- /teacher/Apps/Drawfiles/phys121a/set6 -%%Creator: Draw -%%CreationDate: Tue May 30 08:41:16 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 90 396 430 649 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -90 396 340 253 rectclip -0 setgray -0.333333 setgray -0 0 0.930233 setup -0 nxsetgray -309 0 100 511 line -0 409 511 arrow -grestore -0 setgray -0.333333 setgray -0 0 0.930233 setup -0 nxsetgray -0 220 200 405 line -90.002655 200 625 arrow -grestore -0 setgray -0.333333 setgray -0 0 0.930233 setup -gsave -0 nxsetgray -10 10 116 506 oval fill -grestore -0 nxsetgray -10 10 116 506 oval matrix defaultmatrix setmatrix stroke -grestore -0 setgray -0.333333 setgray -0 0 0.930233 setup -gsave -0 nxsetgray -10 10 275 505 oval fill -grestore -0 nxsetgray -10 10 275 505 oval matrix defaultmatrix setmatrix stroke -grestore -0 0 0.930233 setup -gsave -/Helvetica findfont 14 scalefont [1 0 0 -1 0 0] makefont -50 -exch -defineuserobject -50 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1043] concat -/Helvetica findfont 36 scalefont [1 0 0 -1 0 0] makefont -11 -exch -defineuserobject -11 execuserobject setfont -0 nxsetgray -355 534 moveto (.) show -grestore -grestore -0 0 0.930233 setup -gsave -11 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1056] concat -50 execuserobject setfont -0 nxsetgray -101 533 moveto (\(-L,0\)) show -grestore -grestore -0 0 0.930233 setup -gsave -50 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1054] concat -50 execuserobject setfont -0 nxsetgray -263 532 moveto (\(L,0\)) show -grestore -grestore -0 0 0.930233 setup -gsave -50 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 990] concat -50 execuserobject setfont -0 nxsetgray -111 500 moveto (-) show -/Helvetica-Oblique findfont 14 scalefont [1 0 0 -1 0 0] makefont -51 -exch -defineuserobject -51 execuserobject setfont -(q) show -grestore -grestore -0 0 0.930233 setup -gsave -51 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 992] concat -50 execuserobject setfont -0 nxsetgray -271 501 moveto (+) show -51 execuserobject setfont -(q) show -grestore -grestore -0 0 0.930233 setup -gsave -51 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1054] concat -50 execuserobject setfont -0 nxsetgray -345 532 moveto (\(r,0\)) show -grestore -grestore -0 0 0.930233 setup -gsave -50 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 992] concat -50 execuserobject setfont -0 nxsetgray -356 501 moveto (A) show -grestore -grestore -0 0 0.930233 setup -gsave -50 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 998] concat -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -52 -exch -defineuserobject -52 execuserobject setfont -0 nxsetgray -410 504 moveto (x) show -grestore -grestore -0 0 0.930233 setup -gsave -52 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1262] concat -52 execuserobject setfont -0 nxsetgray -184 636 moveto (y) show -grestore -grestore -0 0 0.930233 setup -gsave -52 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1002] concat -50 execuserobject setfont -0 nxsetgray -187 506 moveto (O) show -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Oblique -%%+ Helvetica-Bold -%%+ Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob07a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob07a.gif deleted file mode 100755 index 6f1a8929d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob07a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob08v1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob08v1.eps deleted file mode 100755 index 70542f8a2..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob08v1.eps +++ /dev/null @@ -1,2847 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Wed Aug 4 11:48:32 1993 -%%For: teacher2 -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 517 392 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /TDeps_dict 20 dict def TDeps_dict begin /showpage { - -} def /copypage { - -} def /grestoreall { - -} def /erasepage { - -} def /nulldevice { - -} def /exitserver { - -} def /initgraphics { - -} def /renderbands { - -} def /initmatrix { - -} def /banddevice { - -} def /setpageparams { - -} def /framedevice { - -} def /note { - -} def end end -TopDrawDict begin /rpath { - newpath moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} bind def /rfpath { - /rad3 exch def /hh3 exch def /ww3 exch def /yy1 exch def /xx1 exch def /xx2 xx1 ww3 add def /yy2 yy1 hh3 add def newpath xx1 yy1 rad3 hh3 0 gt { - add - } { - sub - } ifelse moveto xx1 yy1 xx2 yy1 rad3 arcto 4 { - pop - } repeat xx2 yy1 xx2 yy2 rad3 arcto 4 { - pop - } repeat xx2 yy2 xx1 yy2 rad3 arcto 4 { - pop - } repeat xx1 yy2 xx1 yy1 rad3 arcto 4 { - pop - } repeat closepath -} bind def /rfill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - 4 2 roll rpath crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - rectfill pop - } ifelse grestore -} bind def /rstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse 4 2 roll rpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /rffill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse rfpath filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /rfstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse rfpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /mkrpath { - dodrawctm rpath unpagectm -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 516.240051 391.680023 rectclip --47.879982 -199.160004 translate -47.879982 199.160004 516.240051 391.680023 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 2.412863e-35 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -gsave clpmt currentmatrix pop newpath -1 0 0 1 0 -1 sc5mt astore pop false { - sc5mt dodrawctm 47.879974 200.160004 516.240051 391.679993 0 rfpath unpagectm -} { - 516.240051 391.679993 47.879974 200.160004 sc5mt mkrpath -} ifelse -clip -newpath -clpmt setmatrix -gsave -/epssave save def 0 setgray 1 setlinewidth 0 setlinecap 0 setlinejoin 10 setmiterlimit [] 0 setdash newpath TDeps_dict begin userdict begin -[1 0 0 1 0 -1] dodrawctm -26.279968 178.559998 translate -%%BeginFile: /tmp/topdraw_eps_5265_106 -%! -%%BoundingBox: 21.60 21.60 537.84 413.28 -0.23999 dup scale -90 90 translate -2 setlinejoin -/l {lineto} def /m {moveto} def /j {rlineto} def /k {rmoveto} def /s {stroke} def -/m1 {-4 0 k 8 0 j -4 -4 k 0 8 j} bind def -/m2 {-4 -4 k 8 8 j -8 0 k 8 -8 j} bind def -/m3 {-8 0 k 16 0 j -8 -8 k 0 16 j} bind def -/m4 {-8 -8 k 16 16 j -16 0 k 16 -16 j} bind def -/m5 {8 -3 k 0 6 j -5 5 j -6 0 j -5 -5 j 0 -6 j 5 -5 j 6 0 j 5 5 j} bind def -/m6 {0 -8 k 0 16 j -7 -4 k 14 -8 j 0 8 k -14 -8 j} bind def -/m7 {0 9 k -8 -14 j 16 0 j -8 14 j} bind def -/m8 {0 -9 k 8 14 j -16 0 j 8 -14 j} bind def -/m9 {-12 0 k 24 0 j -12 -12 k 0 24 j} bind def -/m10 {-12 -12 k 24 24 j -24 0 k 24 -24 j} bind def -/m11 {12 -5 k 0 10 j -7 7 j -10 0 j -7 -7 j 0 -10 j 7 -7 j 10 0 j 7 7 j} bind def -/m12 {0 -12 k 0 24 j -10 -6 k 20 -12 j 0 12 k -20 -12 j} bind def - 1 setlinewidth -[] 0 setdash -/font1 /Courier-Bold findfont 40 scalefont def -font1 setfont - 4 setlinewidth -3 3 m -2148 3 l -2148 1629 l -3 1629 l -3 3 l -s -3 3 m -534 816 m -m5 s -534 816 m -1617 816 m -m5 s -1617 816 m -534 816 m -m2 s -534 816 m -1617 816 m -m2 s -1617 816 m - 2 setlinewidth -[ 24 8 24 8] 0 setdash -1617 816 m -1585 816 l -1574 816 l -1563 816 l -1552 816 l -1541 816 l -1531 816 l -1520 816 l -1509 816 l -1498 816 l -1487 816 l -1476 816 l -1466 816 l -1455 816 l -1444 816 l -1433 816 l -1422 816 l -1411 816 l -1401 816 l -1390 816 l -1379 816 l -1368 816 l -1357 816 l -1346 816 l -1336 816 l -1325 816 l -1314 816 l -1303 816 l -1292 816 l -1281 816 l -1271 816 l -1260 816 l -1249 816 l -1238 816 l -1227 816 l -1216 816 l -1206 816 l -1195 816 l -1184 816 l -1173 816 l -1162 816 l -1151 816 l -1141 816 l -1130 816 l -1119 816 l -1108 816 l -1097 816 l -1086 816 l -1076 816 l -1065 816 l -s -1065 816 m -1054 816 l -1043 816 l -1032 816 l -1021 816 l -1011 816 l -1000 816 l -989 816 l -978 816 l -967 816 l -956 816 l -946 816 l -935 816 l -924 816 l -913 816 l -902 816 l -891 816 l -881 816 l -870 816 l -859 816 l -848 816 l -837 816 l -826 816 l -816 816 l -805 816 l -794 816 l -783 816 l -772 816 l -761 816 l -751 816 l -740 816 l -729 816 l -718 816 l -707 816 l -696 816 l -686 816 l -675 816 l -664 816 l -653 816 l -642 816 l -631 816 l -621 816 l -610 816 l -599 816 l -588 816 l -577 816 l -566 816 l -534 816 l -s -1617 816 m -1594 824 l -1584 827 l -1573 830 l -1563 834 l -1553 837 l -1542 841 l -1532 844 l -1522 847 l -1512 851 l -1501 854 l -1491 857 l -1481 861 l -1470 864 l -1460 867 l -1450 871 l -1439 874 l -1429 877 l -1419 881 l -1408 884 l -1398 887 l -1388 890 l -1377 893 l -1367 897 l -1357 900 l -1346 903 l -1336 906 l -1325 909 l -1315 912 l -1305 915 l -1294 918 l -1284 920 l -1273 923 l -1263 926 l -1252 929 l -1242 931 l -1231 934 l -1221 936 l -1210 938 l -1199 941 l -1189 943 l -1178 945 l -1168 947 l -1157 949 l -1146 951 l -1136 953 l -1125 954 l -1114 956 l -1103 957 l -1093 958 l -s -1093 958 m -1082 960 l -1071 960 l -1060 961 l -1049 962 l -1039 962 l -1028 963 l -1017 963 l -1006 963 l -995 963 l -984 963 l -974 962 l -963 962 l -952 961 l -941 960 l -930 959 l -920 957 l -909 956 l -898 954 l -888 952 l -877 950 l -866 948 l -856 946 l -845 943 l -835 940 l -824 938 l -814 935 l -803 932 l -793 928 l -783 925 l -773 922 l -762 918 l -752 914 l -742 910 l -732 906 l -722 902 l -712 898 l -702 894 l -692 890 l -682 886 l -672 881 l -662 877 l -652 872 l -642 868 l -633 863 l -623 859 l -613 854 l -603 850 l -593 845 l -584 840 l -s -584 840 m -574 835 l -564 831 l -534 816 l -s -1617 816 m -1595 833 l -1586 839 l -1577 846 l -1569 852 l -1560 859 l -1551 865 l -1543 872 l -1534 878 l -1525 885 l -1516 891 l -1508 897 l -1499 904 l -1490 910 l -1481 917 l -1473 923 l -1464 929 l -1455 936 l -1446 942 l -1437 948 l -1428 954 l -1420 961 l -1411 967 l -1402 973 l -1393 979 l -1384 985 l -1375 991 l -1366 997 l -1357 1003 l -1347 1009 l -1338 1014 l -1329 1020 l -1320 1026 l -1310 1031 l -1301 1037 l -1292 1042 l -1282 1047 l -1273 1053 l -1263 1058 l -1254 1063 l -1244 1068 l -1234 1072 l -1224 1077 l -1215 1082 l -1205 1086 l -1195 1090 l -1185 1094 l -1175 1098 l -1165 1102 l -1154 1106 l -s -1154 1106 m -1144 1109 l -1134 1113 l -1123 1116 l -1113 1119 l -1102 1121 l -1092 1124 l -1081 1126 l -1071 1128 l -1060 1130 l -1049 1132 l -1039 1133 l -1028 1134 l -1017 1135 l -1006 1135 l -995 1136 l -984 1136 l -974 1135 l -963 1135 l -952 1134 l -941 1132 l -931 1131 l -920 1129 l -909 1127 l -899 1125 l -888 1122 l -878 1119 l -867 1116 l -857 1112 l -847 1108 l -837 1104 l -827 1100 l -817 1095 l -808 1090 l -798 1085 l -789 1080 l -780 1074 l -770 1068 l -761 1062 l -753 1056 l -744 1049 l -735 1043 l -727 1036 l -719 1029 l -710 1022 l -702 1015 l -694 1007 l -687 1000 l -679 992 l -671 984 l -s -671 984 m -664 977 l -656 969 l -649 961 l -642 953 l -635 944 l -628 936 l -621 928 l -614 919 l -607 911 l -600 903 l -594 894 l -587 886 l -580 877 l -574 868 l -567 860 l -560 851 l -554 843 l -534 816 l -s -1617 816 m -1599 843 l -1593 852 l -1587 861 l -1581 870 l -1574 879 l -1568 888 l -1562 896 l -1556 905 l -1550 914 l -1544 923 l -1537 932 l -1531 941 l -1525 950 l -1519 959 l -1512 967 l -1506 976 l -1500 985 l -1493 994 l -1487 1003 l -1481 1011 l -1474 1020 l -1468 1029 l -1461 1037 l -1454 1046 l -1448 1054 l -1441 1063 l -1434 1071 l -1428 1080 l -1421 1088 l -1414 1097 l -1407 1105 l -1400 1113 l -1393 1122 l -1386 1130 l -1379 1138 l -1371 1146 l -1364 1154 l -1357 1162 l -1349 1170 l -1342 1177 l -1334 1185 l -1326 1193 l -1318 1200 l -1311 1208 l -1303 1215 l -1295 1222 l -1286 1229 l -1278 1237 l -1270 1244 l -s -1270 1244 m -1262 1250 l -1253 1257 l -1245 1264 l -1236 1270 l -1227 1277 l -1218 1283 l -1209 1289 l -1200 1295 l -1191 1301 l -1182 1306 l -1172 1312 l -1163 1317 l -1153 1322 l -1144 1327 l -1134 1332 l -1124 1336 l -1114 1341 l -1104 1345 l -1094 1349 l -1084 1353 l -1074 1356 l -1063 1359 l -1053 1362 l -1043 1365 l -1032 1368 l -1021 1370 l -1011 1372 l -1000 1374 l -989 1375 l -979 1376 l -968 1377 l -957 1377 l -946 1378 l -935 1377 l -924 1377 l -914 1376 l -903 1375 l -892 1374 l -881 1372 l -871 1370 l -860 1368 l -850 1365 l -839 1362 l -829 1358 l -819 1355 l -809 1351 l -799 1346 l -789 1342 l -780 1337 l -s -780 1337 m -770 1331 l -761 1326 l -752 1320 l -743 1314 l -734 1307 l -726 1300 l -717 1293 l -709 1286 l -701 1279 l -694 1271 l -686 1263 l -679 1255 l -672 1247 l -665 1238 l -659 1230 l -653 1221 l -647 1212 l -641 1203 l -635 1193 l -630 1184 l -624 1175 l -619 1165 l -615 1155 l -610 1145 l -606 1136 l -601 1126 l -597 1116 l -593 1105 l -590 1095 l -586 1085 l -583 1075 l -580 1064 l -576 1054 l -574 1043 l -571 1033 l -568 1023 l -566 1012 l -563 1001 l -561 991 l -559 980 l -557 970 l -555 959 l -553 948 l -551 938 l -549 927 l -547 916 l -546 905 l -544 895 l -543 884 l -s -543 884 m -541 873 l -540 862 l -538 852 l -537 841 l -534 816 l -s -1617 816 m -1610 841 l -1608 852 l -1605 862 l -1602 873 l -1599 883 l -1596 894 l -1594 904 l -1591 915 l -1588 925 l -1585 936 l -1582 946 l -1579 957 l -1576 967 l -1573 977 l -1570 988 l -1567 998 l -1564 1009 l -1561 1019 l -1558 1029 l -1555 1040 l -1552 1050 l -1548 1061 l -1545 1071 l -1542 1081 l -1539 1091 l -1535 1102 l -1532 1112 l -1528 1122 l -1525 1133 l -1521 1143 l -1518 1153 l -1514 1163 l -1510 1173 l -1506 1184 l -1502 1194 l -1499 1204 l -1495 1214 l -1490 1224 l -1486 1234 l -1482 1244 l -1478 1254 l -1474 1264 l -1469 1274 l -1465 1284 l -1460 1294 l -1456 1303 l -1451 1313 l -1446 1323 l -1442 1333 l -s -1442 1333 m -1437 1342 l -1432 1352 l -1427 1361 l -1421 1371 l -1416 1381 l -1411 1390 l -1406 1399 l -1400 1409 l -1395 1418 l -1389 1427 l -1383 1437 l -1377 1446 l -1372 1455 l -1366 1464 l -1360 1473 l -1353 1482 l -1347 1491 l -1341 1499 l -1334 1508 l -1328 1517 l -1321 1525 l -1315 1534 l -1308 1542 l -1301 1551 l -1294 1559 l -1287 1567 l -1280 1575 l -1273 1583 l -1265 1591 l -1258 1599 l -1250 1607 l -1243 1615 l -1235 1622 l -1228 1629 l -s -1617 816 m -1620 847 l -1621 858 l -1622 869 l -1623 880 l -1624 891 l -1625 901 l -1625 912 l -1626 923 l -1627 934 l -1628 945 l -1629 955 l -1630 966 l -1630 977 l -1631 988 l -1632 999 l -1633 1009 l -1633 1020 l -1634 1031 l -1635 1042 l -1635 1053 l -1636 1064 l -1636 1074 l -1637 1085 l -1637 1096 l -1638 1107 l -1638 1118 l -1639 1128 l -1639 1139 l -1639 1150 l -1640 1161 l -1640 1172 l -1640 1183 l -1640 1194 l -1640 1204 l -1640 1215 l -1640 1226 l -1640 1237 l -1640 1248 l -1640 1259 l -1640 1269 l -1640 1280 l -1640 1291 l -1639 1302 l -1639 1313 l -1639 1324 l -1638 1334 l -1638 1345 l -1637 1356 l -1637 1367 l -s -1637 1367 m -1636 1378 l -1635 1389 l -1634 1399 l -1634 1410 l -1633 1421 l -1632 1432 l -1631 1443 l -1630 1453 l -1629 1464 l -1628 1475 l -1627 1486 l -1625 1496 l -1624 1507 l -1623 1518 l -1621 1529 l -1620 1539 l -1619 1550 l -1617 1561 l -1615 1572 l -1614 1582 l -1612 1593 l -1610 1604 l -1609 1614 l -1607 1625 l -1606 1629 l -s -1617 816 m -1628 839 l -1633 849 l -1638 859 l -1642 869 l -1647 878 l -1651 888 l -1656 898 l -1661 908 l -1665 918 l -1670 927 l -1674 937 l -1679 947 l -1684 957 l -1688 967 l -1693 977 l -1697 987 l -1702 996 l -1706 1006 l -1711 1016 l -1715 1026 l -1719 1036 l -1724 1046 l -1728 1056 l -1733 1066 l -1737 1076 l -1741 1086 l -1745 1096 l -1750 1105 l -1754 1115 l -1758 1125 l -1762 1135 l -1767 1145 l -1771 1155 l -1775 1165 l -1779 1176 l -1783 1186 l -1787 1196 l -1791 1206 l -1795 1216 l -1799 1226 l -1803 1236 l -1807 1246 l -1811 1256 l -1815 1266 l -1819 1276 l -1822 1287 l -1826 1297 l -1830 1307 l -1834 1317 l -s -1834 1317 m -1837 1327 l -1841 1337 l -1845 1348 l -1848 1358 l -1852 1368 l -1855 1378 l -1859 1389 l -1862 1399 l -1866 1409 l -1869 1419 l -1873 1430 l -1876 1440 l -1880 1450 l -1883 1461 l -1886 1471 l -1890 1481 l -1893 1492 l -1896 1502 l -1899 1512 l -1902 1523 l -1906 1533 l -1909 1543 l -1912 1554 l -1915 1564 l -1918 1575 l -1921 1585 l -1924 1595 l -1927 1606 l -1930 1616 l -1933 1627 l -1933 1629 l -s -1617 816 m -1640 837 l -1647 845 l -1655 852 l -1663 860 l -1671 867 l -1679 875 l -1687 882 l -1694 890 l -1702 897 l -1710 905 l -1718 912 l -1726 920 l -1733 927 l -1741 935 l -1749 942 l -1757 950 l -1765 958 l -1772 965 l -1780 973 l -1788 980 l -1795 988 l -1803 995 l -1811 1003 l -1819 1011 l -1826 1018 l -1834 1026 l -1842 1034 l -1849 1041 l -1857 1049 l -1864 1057 l -1872 1064 l -1880 1072 l -1887 1080 l -1895 1088 l -1902 1095 l -1910 1103 l -1918 1111 l -1925 1119 l -1933 1127 l -1940 1134 l -1948 1142 l -1955 1150 l -1963 1158 l -1970 1166 l -1978 1174 l -1985 1181 l -1992 1189 l -2000 1197 l -2007 1205 l -s -2007 1205 m -2015 1213 l -2022 1221 l -2029 1229 l -2037 1237 l -2044 1245 l -2051 1253 l -2059 1261 l -2066 1269 l -2073 1277 l -2081 1285 l -2088 1293 l -2095 1301 l -2102 1309 l -2110 1317 l -2117 1325 l -2124 1333 l -2131 1341 l -2139 1349 l -2146 1358 l -2148 1360 l -s -1617 816 m -1640 825 l -1650 830 l -1661 834 l -1671 838 l -1681 842 l -1691 846 l -1701 850 l -1711 854 l -1721 858 l -1731 862 l -1741 866 l -1751 870 l -1761 875 l -1771 879 l -1781 883 l -1791 887 l -1801 891 l -1811 895 l -1821 899 l -1831 904 l -1841 908 l -1851 912 l -1861 916 l -1871 920 l -1881 924 l -1891 929 l -1901 933 l -1911 937 l -1921 941 l -1931 945 l -1941 950 l -1951 954 l -1961 958 l -1971 962 l -1981 967 l -1991 971 l -2001 975 l -2011 979 l -2021 984 l -2030 988 l -2040 992 l -2050 997 l -2060 1001 l -2070 1005 l -2080 1009 l -2090 1014 l -2100 1018 l -2110 1022 l -2120 1027 l -s -2120 1027 m -2130 1031 l -2140 1036 l -2148 1039 l -s -1617 816 m -1647 816 l -1658 816 l -1669 816 l -1680 816 l -1690 816 l -1701 816 l -1712 816 l -1723 816 l -1734 816 l -1745 816 l -1755 816 l -1766 816 l -1777 816 l -1788 816 l -1799 816 l -1810 816 l -1820 816 l -1831 816 l -1842 817 l -1853 817 l -1864 817 l -1875 817 l -1885 817 l -1896 817 l -1907 817 l -1918 817 l -1929 817 l -1940 817 l -1950 817 l -1961 817 l -1972 817 l -1983 817 l -1994 817 l -2005 817 l -2015 817 l -2026 817 l -2037 817 l -2048 817 l -2059 817 l -2070 817 l -2080 817 l -2091 817 l -2102 817 l -2113 817 l -2124 817 l -2135 817 l -2145 817 l -2148 817 l -s -2148 817 m -[] 0 setdash -[ 24 8 24 8] 0 setdash -1617 816 m -1585 816 l -1574 816 l -1563 816 l -1552 816 l -1541 816 l -1531 816 l -1520 816 l -1509 816 l -1498 816 l -1487 816 l -1476 816 l -1466 816 l -1455 816 l -1444 816 l -1433 816 l -1422 816 l -1411 816 l -1401 816 l -1390 816 l -1379 816 l -1368 816 l -1357 816 l -1346 816 l -1336 816 l -1325 816 l -1314 816 l -1303 816 l -1292 816 l -1281 816 l -1271 816 l -1260 816 l -1249 816 l -1238 816 l -1227 816 l -1216 816 l -1206 816 l -1195 816 l -1184 816 l -1173 816 l -1162 816 l -1151 816 l -1141 816 l -1130 816 l -1119 816 l -1108 816 l -1097 816 l -1086 816 l -1076 816 l -1065 816 l -s -1065 816 m -1054 816 l -1043 816 l -1032 816 l -1021 816 l -1011 816 l -1000 816 l -989 816 l -978 816 l -967 816 l -956 816 l -946 816 l -935 816 l -924 816 l -913 816 l -902 816 l -891 816 l -881 816 l -870 816 l -859 816 l -848 816 l -837 816 l -826 816 l -816 816 l -805 816 l -794 816 l -783 816 l -772 816 l -761 816 l -751 816 l -740 816 l -729 816 l -718 816 l -707 816 l -696 816 l -686 816 l -675 816 l -664 816 l -653 816 l -642 816 l -631 816 l -621 816 l -610 816 l -599 816 l -588 816 l -577 816 l -566 816 l -534 816 l -s -1617 816 m -1594 808 l -1584 805 l -1573 802 l -1563 798 l -1553 795 l -1542 791 l -1532 788 l -1522 785 l -1512 781 l -1501 778 l -1491 775 l -1481 771 l -1470 768 l -1460 765 l -1450 761 l -1439 758 l -1429 755 l -1419 751 l -1408 748 l -1398 745 l -1388 742 l -1377 739 l -1367 735 l -1357 732 l -1346 729 l -1336 726 l -1325 723 l -1315 720 l -1305 717 l -1294 714 l -1284 712 l -1273 709 l -1263 706 l -1252 703 l -1242 701 l -1231 698 l -1221 696 l -1210 694 l -1199 691 l -1189 689 l -1178 687 l -1168 685 l -1157 683 l -1146 681 l -1136 679 l -1125 678 l -1114 676 l -1103 675 l -1093 674 l -s -1093 674 m -1082 672 l -1071 672 l -1060 671 l -1049 670 l -1039 670 l -1028 669 l -1017 669 l -1006 669 l -995 669 l -984 669 l -974 670 l -963 670 l -952 671 l -941 672 l -930 673 l -920 675 l -909 676 l -898 678 l -888 680 l -877 682 l -866 684 l -856 686 l -845 689 l -835 692 l -824 694 l -814 697 l -803 700 l -793 704 l -783 707 l -773 710 l -762 714 l -752 718 l -742 722 l -732 726 l -722 730 l -712 734 l -702 738 l -692 742 l -682 746 l -672 751 l -662 755 l -652 760 l -642 764 l -633 769 l -623 773 l -613 778 l -603 782 l -593 787 l -584 792 l -s -584 792 m -574 797 l -564 801 l -534 816 l -s -1617 816 m -1595 799 l -1586 793 l -1577 786 l -1569 780 l -1560 773 l -1551 767 l -1543 760 l -1534 754 l -1525 747 l -1516 741 l -1508 735 l -1499 728 l -1490 722 l -1481 715 l -1473 709 l -1464 703 l -1455 696 l -1446 690 l -1437 684 l -1428 678 l -1420 671 l -1411 665 l -1402 659 l -1393 653 l -1384 647 l -1375 641 l -1366 635 l -1357 629 l -1347 623 l -1338 618 l -1329 612 l -1320 606 l -1310 601 l -1301 595 l -1292 590 l -1282 585 l -1273 579 l -1263 574 l -1254 569 l -1244 564 l -1234 560 l -1224 555 l -1215 550 l -1205 546 l -1195 542 l -1185 538 l -1175 534 l -1165 530 l -1154 526 l -s -1154 526 m -1144 523 l -1134 519 l -1123 516 l -1113 513 l -1102 511 l -1092 508 l -1081 506 l -1071 504 l -1060 502 l -1049 500 l -1039 499 l -1028 498 l -1017 497 l -1006 497 l -995 496 l -984 496 l -974 497 l -963 497 l -952 498 l -941 500 l -931 501 l -920 503 l -909 505 l -899 507 l -888 510 l -878 513 l -867 516 l -857 520 l -847 524 l -837 528 l -827 532 l -817 537 l -808 542 l -798 547 l -789 552 l -780 558 l -770 564 l -761 570 l -753 576 l -744 583 l -735 589 l -727 596 l -719 603 l -710 610 l -702 617 l -694 625 l -687 632 l -679 640 l -671 648 l -s -671 648 m -664 655 l -656 663 l -649 671 l -642 679 l -635 688 l -628 696 l -621 704 l -614 713 l -607 721 l -600 729 l -594 738 l -587 746 l -580 755 l -574 764 l -567 772 l -560 781 l -554 789 l -534 816 l -s -1617 816 m -1599 789 l -1593 780 l -1587 771 l -1581 762 l -1574 753 l -1568 744 l -1562 736 l -1556 727 l -1550 718 l -1544 709 l -1537 700 l -1531 691 l -1525 682 l -1519 673 l -1512 665 l -1506 656 l -1500 647 l -1493 638 l -1487 629 l -1481 621 l -1474 612 l -1468 603 l -1461 595 l -1454 586 l -1448 578 l -1441 569 l -1434 561 l -1428 552 l -1421 544 l -1414 535 l -1407 527 l -1400 519 l -1393 510 l -1386 502 l -1379 494 l -1371 486 l -1364 478 l -1357 470 l -1349 462 l -1342 455 l -1334 447 l -1326 439 l -1318 432 l -1311 424 l -1303 417 l -1295 410 l -1286 403 l -1278 395 l -1270 388 l -s -1270 388 m -1262 382 l -1253 375 l -1245 368 l -1236 362 l -1227 355 l -1218 349 l -1209 343 l -1200 337 l -1191 331 l -1182 326 l -1172 320 l -1163 315 l -1153 310 l -1144 305 l -1134 300 l -1124 296 l -1114 291 l -1104 287 l -1094 283 l -1084 279 l -1074 276 l -1063 273 l -1053 270 l -1043 267 l -1032 264 l -1021 262 l -1011 260 l -1000 258 l -989 257 l -979 256 l -968 255 l -957 255 l -946 254 l -935 255 l -924 255 l -914 256 l -903 257 l -892 258 l -881 260 l -871 262 l -860 264 l -850 267 l -839 270 l -829 274 l -819 277 l -809 281 l -799 286 l -789 290 l -780 295 l -s -780 295 m -770 301 l -761 306 l -752 312 l -743 318 l -734 325 l -726 332 l -717 339 l -709 346 l -701 353 l -694 361 l -686 369 l -679 377 l -672 385 l -665 394 l -659 402 l -653 411 l -647 420 l -641 429 l -635 439 l -630 448 l -624 457 l -619 467 l -615 477 l -610 487 l -606 496 l -601 506 l -597 516 l -593 527 l -590 537 l -586 547 l -583 557 l -580 568 l -576 578 l -574 589 l -571 599 l -568 609 l -566 620 l -563 631 l -561 641 l -559 652 l -557 662 l -555 673 l -553 684 l -551 694 l -549 705 l -547 716 l -546 727 l -544 737 l -543 748 l -s -543 748 m -541 759 l -540 770 l -538 780 l -537 791 l -534 816 l -s -1617 816 m -1610 791 l -1608 780 l -1605 770 l -1602 759 l -1599 749 l -1596 738 l -1594 728 l -1591 717 l -1588 707 l -1585 696 l -1582 686 l -1579 675 l -1576 665 l -1573 655 l -1570 644 l -1567 634 l -1564 623 l -1561 613 l -1558 603 l -1555 592 l -1552 582 l -1548 571 l -1545 561 l -1542 551 l -1539 541 l -1535 530 l -1532 520 l -1528 510 l -1525 499 l -1521 489 l -1518 479 l -1514 469 l -1510 459 l -1506 448 l -1502 438 l -1499 428 l -1495 418 l -1490 408 l -1486 398 l -1482 388 l -1478 378 l -1474 368 l -1469 358 l -1465 348 l -1460 338 l -1456 329 l -1451 319 l -1446 309 l -1442 299 l -s -1442 299 m -1437 290 l -1432 280 l -1427 271 l -1421 261 l -1416 251 l -1411 242 l -1406 233 l -1400 223 l -1395 214 l -1389 205 l -1383 195 l -1377 186 l -1372 177 l -1366 168 l -1360 159 l -1353 150 l -1347 141 l -1341 133 l -1334 124 l -1328 115 l -1321 107 l -1315 98 l -1308 90 l -1301 81 l -1294 73 l -1287 65 l -1280 57 l -1273 49 l -1265 41 l -1258 33 l -1250 25 l -1243 17 l -1235 10 l -1228 3 l -s -1617 816 m -1620 785 l -1621 774 l -1622 763 l -1623 752 l -1624 741 l -1625 731 l -1625 720 l -1626 709 l -1627 698 l -1628 687 l -1629 677 l -1630 666 l -1630 655 l -1631 644 l -1632 633 l -1633 623 l -1633 612 l -1634 601 l -1635 590 l -1635 579 l -1636 568 l -1636 558 l -1637 547 l -1637 536 l -1638 525 l -1638 514 l -1639 504 l -1639 493 l -1639 482 l -1640 471 l -1640 460 l -1640 449 l -1640 438 l -1640 428 l -1640 417 l -1640 406 l -1640 395 l -1640 384 l -1640 373 l -1640 363 l -1640 352 l -1640 341 l -1639 330 l -1639 319 l -1639 308 l -1638 298 l -1638 287 l -1637 276 l -1637 265 l -s -1637 265 m -1636 254 l -1635 243 l -1634 233 l -1634 222 l -1633 211 l -1632 200 l -1631 189 l -1630 179 l -1629 168 l -1628 157 l -1627 146 l -1625 136 l -1624 125 l -1623 114 l -1621 103 l -1620 93 l -1619 82 l -1617 71 l -1615 60 l -1614 50 l -1612 39 l -1610 28 l -1609 18 l -1607 7 l -1606 3 l -s -1617 816 m -1628 793 l -1633 783 l -1638 773 l -1642 763 l -1647 754 l -1651 744 l -1656 734 l -1661 724 l -1665 714 l -1670 705 l -1674 695 l -1679 685 l -1684 675 l -1688 665 l -1693 655 l -1697 645 l -1702 636 l -1706 626 l -1711 616 l -1715 606 l -1719 596 l -1724 586 l -1728 576 l -1733 566 l -1737 556 l -1741 546 l -1745 536 l -1750 527 l -1754 517 l -1758 507 l -1762 497 l -1767 487 l -1771 477 l -1775 467 l -1779 456 l -1783 446 l -1787 436 l -1791 426 l -1795 416 l -1799 406 l -1803 396 l -1807 386 l -1811 376 l -1815 366 l -1819 356 l -1822 345 l -1826 335 l -1830 325 l -1834 315 l -s -1834 315 m -1837 305 l -1841 295 l -1845 284 l -1848 274 l -1852 264 l -1855 254 l -1859 243 l -1862 233 l -1866 223 l -1869 213 l -1873 202 l -1876 192 l -1880 182 l -1883 171 l -1886 161 l -1890 151 l -1893 140 l -1896 130 l -1899 120 l -1902 109 l -1906 99 l -1909 89 l -1912 78 l -1915 68 l -1918 57 l -1921 47 l -1924 37 l -1927 26 l -1930 16 l -1933 5 l -1933 3 l -s -1617 816 m -1640 795 l -1647 787 l -1655 780 l -1663 772 l -1671 765 l -1679 757 l -1687 750 l -1694 742 l -1702 735 l -1710 727 l -1718 720 l -1726 712 l -1733 705 l -1741 697 l -1749 690 l -1757 682 l -1765 674 l -1772 667 l -1780 659 l -1788 652 l -1795 644 l -1803 637 l -1811 629 l -1819 621 l -1826 614 l -1834 606 l -1842 598 l -1849 591 l -1857 583 l -1864 575 l -1872 568 l -1880 560 l -1887 552 l -1895 544 l -1902 537 l -1910 529 l -1918 521 l -1925 513 l -1933 505 l -1940 498 l -1948 490 l -1955 482 l -1963 474 l -1970 466 l -1978 458 l -1985 451 l -1992 443 l -2000 435 l -2007 427 l -s -2007 427 m -2015 419 l -2022 411 l -2029 403 l -2037 395 l -2044 387 l -2051 379 l -2059 371 l -2066 363 l -2073 355 l -2081 347 l -2088 339 l -2095 331 l -2102 323 l -2110 315 l -2117 307 l -2124 299 l -2131 291 l -2139 283 l -2146 274 l -2148 272 l -s -1617 816 m -1640 807 l -1650 802 l -1661 798 l -1671 794 l -1681 790 l -1691 786 l -1701 782 l -1711 778 l -1721 774 l -1731 770 l -1741 766 l -1751 762 l -1761 757 l -1771 753 l -1781 749 l -1791 745 l -1801 741 l -1811 737 l -1821 733 l -1831 728 l -1841 724 l -1851 720 l -1861 716 l -1871 712 l -1881 708 l -1891 703 l -1901 699 l -1911 695 l -1921 691 l -1931 687 l -1941 682 l -1951 678 l -1961 674 l -1971 670 l -1981 665 l -1991 661 l -2001 657 l -2011 653 l -2021 648 l -2030 644 l -2040 640 l -2050 635 l -2060 631 l -2070 627 l -2080 623 l -2090 618 l -2100 614 l -2110 610 l -2120 605 l -s -2120 605 m -2130 601 l -2140 596 l -2148 593 l -s -2148 593 m -[] 0 setdash -[ 24 8 24 8] 0 setdash -3 644 m -10 647 l -21 651 l -31 655 l -41 659 l -51 663 l -61 667 l -71 670 l -81 674 l -92 678 l -102 682 l -112 685 l -122 689 l -132 692 l -143 696 l -153 700 l -163 703 l -173 707 l -184 710 l -194 714 l -204 717 l -214 720 l -225 724 l -235 727 l -245 730 l -256 734 l -266 737 l -276 740 l -287 744 l -297 747 l -307 750 l -318 753 l -328 756 l -338 760 l -349 763 l -359 766 l -370 769 l -380 772 l -390 775 l -401 778 l -411 781 l -421 784 l -432 787 l -442 790 l -453 793 l -463 796 l -474 799 l -484 802 l -494 805 l -505 808 l -s -505 808 m -534 816 l -s -47 3 m -47 10 l -47 20 l -47 31 l -48 42 l -49 53 l -50 64 l -51 74 l -53 85 l -54 96 l -56 107 l -58 117 l -60 128 l -62 139 l -64 149 l -67 160 l -70 170 l -73 181 l -76 191 l -79 201 l -82 212 l -85 222 l -89 232 l -93 242 l -96 253 l -100 263 l -104 273 l -109 283 l -113 293 l -117 303 l -122 312 l -126 322 l -131 332 l -136 342 l -141 351 l -146 361 l -151 370 l -157 380 l -162 389 l -167 399 l -173 408 l -179 417 l -184 426 l -190 436 l -196 445 l -202 454 l -208 463 l -214 472 l -221 480 l -227 489 l -s -227 489 m -233 498 l -240 507 l -246 515 l -253 524 l -259 533 l -266 541 l -273 550 l -280 558 l -287 566 l -294 575 l -301 583 l -308 591 l -315 599 l -322 607 l -329 615 l -337 623 l -344 631 l -351 639 l -359 647 l -366 655 l -374 663 l -381 671 l -389 678 l -396 686 l -404 694 l -412 701 l -420 709 l -427 717 l -435 724 l -443 732 l -451 739 l -459 746 l -467 754 l -474 761 l -482 769 l -490 776 l -498 783 l -506 791 l -514 798 l -534 816 l -s -621 3 m -613 9 l -604 15 l -595 22 l -587 28 l -579 36 l -571 43 l -563 50 l -555 58 l -548 66 l -541 74 l -534 83 l -527 91 l -521 100 l -515 109 l -509 118 l -503 127 l -497 136 l -492 146 l -487 156 l -483 165 l -478 175 l -474 185 l -470 195 l -466 205 l -462 216 l -459 226 l -456 236 l -453 247 l -451 257 l -448 268 l -446 278 l -444 289 l -442 300 l -441 311 l -439 321 l -438 332 l -437 343 l -437 354 l -436 365 l -436 375 l -436 386 l -436 397 l -436 408 l -436 419 l -437 430 l -437 440 l -438 451 l -439 462 l -440 473 l -s -440 473 m -441 484 l -443 494 l -444 505 l -446 516 l -448 526 l -450 537 l -452 548 l -454 558 l -456 569 l -459 579 l -461 590 l -464 601 l -466 611 l -469 622 l -472 632 l -475 642 l -478 653 l -481 663 l -484 674 l -488 684 l -491 694 l -494 704 l -498 715 l -501 725 l -505 735 l -508 746 l -512 756 l -516 766 l -519 776 l -523 786 l -534 816 l -s -534 816 m -[] 0 setdash -[ 24 8 24 8] 0 setdash -3 644 m -10 647 l -21 651 l -31 655 l -41 659 l -51 663 l -61 667 l -71 670 l -81 674 l -92 678 l -102 682 l -112 685 l -122 689 l -132 692 l -143 696 l -153 700 l -163 703 l -173 707 l -184 710 l -194 714 l -204 717 l -214 720 l -225 724 l -235 727 l -245 730 l -256 734 l -266 737 l -276 740 l -287 744 l -297 747 l -307 750 l -318 753 l -328 756 l -338 760 l -349 763 l -359 766 l -370 769 l -380 772 l -390 775 l -401 778 l -411 781 l -421 784 l -432 787 l -442 790 l -453 793 l -463 796 l -474 799 l -484 802 l -494 805 l -505 808 l -s -505 808 m -534 816 l -s -3 935 m -8 934 l -19 931 l -29 928 l -40 925 l -50 923 l -61 920 l -71 917 l -82 915 l -92 912 l -103 909 l -113 907 l -124 904 l -134 902 l -145 899 l -155 896 l -166 894 l -176 891 l -187 889 l -197 887 l -208 884 l -219 882 l -229 879 l -240 877 l -250 875 l -261 872 l -271 870 l -282 868 l -293 865 l -303 863 l -314 861 l -324 858 l -335 856 l -346 854 l -356 852 l -367 850 l -377 847 l -388 845 l -399 843 l -409 841 l -420 839 l -430 837 l -441 834 l -452 832 l -462 830 l -473 828 l -484 826 l -494 824 l -505 822 l -534 816 l -s -534 816 m -3 1482 m -4 1479 l -7 1469 l -10 1459 l -14 1449 l -18 1438 l -22 1428 l -26 1418 l -30 1408 l -34 1398 l -38 1388 l -43 1378 l -47 1368 l -52 1359 l -57 1349 l -61 1339 l -66 1330 l -72 1320 l -77 1311 l -82 1301 l -88 1292 l -93 1282 l -99 1273 l -104 1264 l -110 1255 l -116 1246 l -122 1237 l -128 1228 l -134 1219 l -140 1210 l -147 1201 l -153 1192 l -159 1183 l -166 1175 l -173 1166 l -179 1158 l -186 1149 l -193 1141 l -200 1132 l -206 1124 l -213 1116 l -221 1107 l -228 1099 l -235 1091 l -242 1083 l -249 1075 l -257 1067 l -264 1059 l -271 1051 l -279 1043 l -s -279 1043 m -287 1036 l -294 1028 l -302 1020 l -309 1013 l -317 1005 l -325 997 l -333 990 l -341 983 l -349 975 l -356 968 l -364 960 l -372 953 l -380 946 l -389 939 l -397 931 l -405 924 l -413 917 l -421 910 l -429 903 l -438 896 l -446 889 l -454 882 l -462 875 l -471 868 l -479 861 l -487 854 l -496 847 l -504 840 l -512 833 l -534 816 l -s -577 1629 m -572 1624 l -564 1617 l -556 1610 l -548 1602 l -541 1595 l -533 1587 l -526 1578 l -519 1570 l -513 1562 l -506 1553 l -500 1544 l -494 1535 l -488 1526 l -483 1516 l -478 1507 l -473 1497 l -468 1487 l -464 1477 l -459 1467 l -455 1457 l -452 1447 l -448 1437 l -445 1427 l -442 1416 l -439 1406 l -436 1395 l -434 1385 l -432 1374 l -430 1363 l -428 1353 l -426 1342 l -425 1331 l -424 1320 l -423 1310 l -422 1299 l -422 1288 l -422 1277 l -421 1266 l -422 1256 l -422 1245 l -422 1234 l -423 1223 l -423 1212 l -424 1201 l -425 1191 l -426 1180 l -428 1169 l -429 1158 l -431 1148 l -s -431 1148 m -433 1137 l -435 1126 l -437 1116 l -439 1105 l -441 1094 l -443 1084 l -446 1073 l -448 1063 l -451 1052 l -454 1042 l -457 1031 l -460 1021 l -463 1011 l -466 1000 l -469 990 l -473 979 l -476 969 l -480 959 l -483 949 l -487 938 l -490 928 l -494 918 l -498 908 l -502 898 l -506 888 l -510 878 l -513 867 l -517 857 l -521 847 l -534 816 l -s -534 816 m -[] 0 setdash -showpage -%%EndFile -end end epssave restore -grestore -grestore -/crlinw 1.9 def -0.75 6.556708e-08 6.556708e-08 -0.75 30.239998 690.119995 sc4mt astore 0.75 6.556708e-08 6.556708e-08 -0.75 30.239998 690.119995 sc5mt astore 14 -7 239 673 0.75 6.556708e-08 6.556708e-08 -0.75 100.989944 893.869995 sc6mt astore ssl -0.75 6.556708e-08 6.556708e-08 -0.75 30.239998 690.119995 sc4mt astore 0.75 6.556708e-08 6.556708e-08 -0.75 30.239998 690.119995 sc5mt astore -13 -9 253 665 0.75 6.556708e-08 6.556708e-08 -0.75 100.989944 893.869995 sc6mt astore ssl -0.336085 -0.670483 0.670483 0.336085 -166.118378 615.741943 sc4mt astore 0.336085 -0.670483 0.670483 0.336085 -166.118378 615.741943 sc5mt astore 14 -7 239 673 0.330245 -0.658832 0.670483 0.336085 -134.073929 459.190857 sc6mt astore ssl -0.336085 -0.670483 0.670483 0.336085 -166.118378 615.741943 sc4mt astore 0.336085 -0.670483 0.670483 0.336085 -166.118378 615.741943 sc5mt astore -13 -9 253 665 0.330245 -0.658832 0.670483 0.336085 -134.073929 459.190857 sc6mt astore ssl -0.716846 -0.220525 0.220525 0.716846 38.798534 224.847916 sc4mt astore 0.716846 -0.220525 0.220525 0.716846 38.798534 224.847916 sc5mt astore 14 -7 239 673 0.716846 -0.220525 0.220525 0.716846 -56.856838 107.116074 sc6mt astore ssl -0.716846 -0.220525 0.220525 0.716846 38.798534 224.847916 sc4mt astore 0.716846 -0.220525 0.220525 0.716846 38.798534 224.847916 sc5mt astore -13 -9 253 665 0.716846 -0.220525 0.220525 0.716846 -56.856838 107.116074 sc6mt astore ssl -0.749091 -0.036912 0.036912 0.749091 89.506111 153.36824 sc4mt astore 0.749091 -0.036912 0.036912 0.749091 89.506111 153.36824 sc5mt astore 14 -7 239 673 0.749091 -0.036912 0.036912 0.749091 63.473656 -18.610775 sc6mt astore ssl -0.749091 -0.036912 0.036912 0.749091 89.506111 153.36824 sc4mt astore 0.749091 -0.036912 0.036912 0.749091 89.506111 153.36824 sc5mt astore -13 -9 253 665 0.749091 -0.036912 0.036912 0.749091 63.473656 -18.610775 sc6mt astore ssl -9.835062e-08 -0.75 0.75 9.835062e-08 -46.515125 926.174866 sc4mt astore 9.835062e-08 -0.75 0.75 9.835062e-08 -46.515125 926.174866 sc5mt astore 14 -7 239 673 9.835062e-08 -0.75 0.75 9.835062e-08 -58.765106 709.424866 sc6mt astore ssl -9.835062e-08 -0.75 0.75 9.835062e-08 -46.515125 926.174866 sc4mt astore 9.835062e-08 -0.75 0.75 9.835062e-08 -46.515125 926.174866 sc5mt astore -13 -9 253 665 9.835062e-08 -0.75 0.75 9.835062e-08 -58.765106 709.424866 sc6mt astore ssl --0.248572 -0.70761 0.70761 -0.248572 157.095444 1116.06189 sc4mt astore -0.248572 -0.70761 0.70761 -0.248572 157.095444 1116.06189 sc5mt astore 14 -7 239 673 -0.248572 -0.70761 0.70761 -0.248572 76.882095 849.793213 sc6mt astore ssl --0.248572 -0.70761 0.70761 -0.248572 157.095444 1116.06189 sc4mt astore -0.248572 -0.70761 0.70761 -0.248572 157.095444 1116.06189 sc5mt astore -13 -9 253 665 -0.248572 -0.70761 0.70761 -0.248572 76.882095 849.793213 sc6mt astore ssl -0.748508 -0.047279 0.047279 0.748508 43.298038 126.778152 sc4mt astore 0.748508 -0.047279 0.047279 0.748508 43.298038 126.778152 sc5mt astore 14 -7 239 673 0.748508 -0.047279 0.050012 0.791778 61.270451 -84.067215 sc6mt astore ssl -0.748508 -0.047279 0.047279 0.748508 43.298038 126.778152 sc4mt astore 0.748508 -0.047279 0.047279 0.748508 43.298038 126.778152 sc5mt astore -13 -9 253 665 0.748508 -0.047279 0.050012 0.791778 61.270451 -84.067215 sc6mt astore ssl -0.743775 -0.096433 0.096433 0.743775 76.271896 97.481522 sc4mt astore 0.743775 -0.096433 0.096433 0.743775 76.271896 97.481522 sc5mt astore 14 -7 239 673 0.743775 -0.096433 0.096433 0.743775 34.886299 -152.736877 sc6mt astore ssl -0.743775 -0.096433 0.096433 0.743775 76.271896 97.481522 sc4mt astore 0.743775 -0.096433 0.096433 0.743775 76.271896 97.481522 sc5mt astore -13 -9 253 665 0.743775 -0.096433 0.096433 0.743775 34.886299 -152.736877 sc6mt astore ssl -0.731118 -0.167232 0.167232 0.731118 10.110463 142.71077 sc4mt astore 0.731118 -0.167232 0.167232 0.731118 10.110463 142.71077 sc5mt astore 14 -7 239 673 0.731118 -0.167232 0.161139 0.704483 -7.141889 -67.48999 sc6mt astore ssl -0.731118 -0.167232 0.167232 0.731118 10.110463 142.71077 sc4mt astore 0.731118 -0.167232 0.167232 0.731118 10.110463 142.71077 sc5mt astore -13 -9 253 665 0.731118 -0.167232 0.161139 0.704483 -7.141889 -67.48999 sc6mt astore ssl -0.744916 0.087182 -0.087182 0.744916 161.049515 56.824364 sc4mt astore 0.744916 0.087182 -0.087182 0.744916 161.049515 56.824364 sc5mt astore 14 -7 239 673 0.744916 0.087182 -0.087182 0.744916 148.001617 -257.625641 sc6mt astore ssl -0.744916 0.087182 -0.087182 0.744916 161.049515 56.824364 sc4mt astore 0.744916 0.087182 -0.087182 0.744916 161.049515 56.824364 sc5mt astore -13 -9 253 665 0.744916 0.087182 -0.087182 0.744916 148.001617 -257.625641 sc6mt astore ssl --0.656329 -0.362949 -0.362949 0.656329 518.684814 197.219818 sc4mt astore -0.656329 -0.362949 -0.362949 0.656329 518.684814 197.219818 sc5mt astore 14 -7 239 673 -0.656329 -0.362949 -0.362949 0.656329 491.52475 20.993069 sc6mt astore ssl --0.656329 -0.362949 -0.362949 0.656329 518.684814 197.219818 sc4mt astore -0.656329 -0.362949 -0.362949 0.656329 518.684814 197.219818 sc5mt astore -13 -9 253 665 -0.656329 -0.362949 -0.362949 0.656329 491.52475 20.993069 sc6mt astore ssl --0.474273 0.581004 -0.581004 -0.474273 714.274902 698.598938 sc4mt astore -0.474273 0.581004 -0.581004 -0.474273 714.274902 698.598938 sc5mt astore 14 -7 239 673 -0.474273 0.581004 -0.581004 -0.474273 1036.974731 469.474487 sc6mt astore ssl --0.474273 0.581004 -0.581004 -0.474273 714.274902 698.598938 sc4mt astore -0.474273 0.581004 -0.581004 -0.474273 714.274902 698.598938 sc5mt astore -13 -9 253 665 -0.474273 0.581004 -0.581004 -0.474273 1036.974731 469.474487 sc6mt astore ssl --0.667424 0.342119 -0.342119 -0.667424 790.056763 986.462646 sc4mt astore -0.667424 0.342119 -0.342119 -0.667424 790.056763 986.462646 sc5mt astore 14 -7 239 673 -0.667424 0.342119 -0.342119 -0.667424 931.667847 711.367737 sc6mt astore ssl --0.667424 0.342119 -0.342119 -0.667424 790.056763 986.462646 sc4mt astore -0.667424 0.342119 -0.342119 -0.667424 790.056763 986.462646 sc5mt astore -13 -9 253 665 -0.667424 0.342119 -0.342119 -0.667424 931.667847 711.367737 sc6mt astore ssl --0.159702 0.7328 -0.7328 -0.159702 967.809814 410.872711 sc4mt astore -0.159702 0.7328 -0.7328 -0.159702 967.809814 410.872711 sc5mt astore 14 -7 239 673 -0.159702 0.7328 -0.7328 -0.159702 1020.42041 184.140686 sc6mt astore ssl --0.159702 0.7328 -0.7328 -0.159702 967.809814 410.872711 sc4mt astore -0.159702 0.7328 -0.7328 -0.159702 967.809814 410.872711 sc5mt astore -13 -9 253 665 -0.159702 0.7328 -0.7328 -0.159702 1020.42041 184.140686 sc6mt astore ssl -0.065001 0.747178 -0.747178 0.065001 896.53064 191.668579 sc4mt astore 0.065001 0.747178 -0.747178 0.065001 896.53064 191.668579 sc5mt astore 14 -7 239 673 0.065001 0.747178 -0.747178 0.065001 921.478638 27.208008 sc6mt astore ssl -0.065001 0.747178 -0.747178 0.065001 896.53064 191.668579 sc4mt astore 0.065001 0.747178 -0.747178 0.065001 896.53064 191.668579 sc5mt astore -13 -9 253 665 0.065001 0.747178 -0.747178 0.065001 921.478638 27.208008 sc6mt astore ssl -0.423067 0.619285 -0.619285 0.423067 661.376282 41.506428 sc4mt astore 0.423067 0.619285 -0.619285 0.423067 661.376282 41.506428 sc5mt astore 14 -7 239 673 0.423067 0.619285 -0.619285 0.423067 697.677307 -171.500122 sc6mt astore ssl -0.423067 0.619285 -0.619285 0.423067 661.376282 41.506428 sc4mt astore 0.423067 0.619285 -0.619285 0.423067 661.376282 41.506428 sc5mt astore -13 -9 253 665 0.423067 0.619285 -0.619285 0.423067 697.677307 -171.500122 sc6mt astore ssl --0.75 -1.311342e-07 -1.311342e-07 0.75 826.320007 100.98008 sc4mt astore -0.75 -1.311342e-07 -1.311342e-07 0.75 826.320007 100.98008 sc5mt astore 14 -7 239 673 -0.75 -1.311342e-07 -1.311342e-07 0.75 725.570007 -104.269867 sc6mt astore ssl --0.75 -1.311342e-07 -1.311342e-07 0.75 826.320007 100.98008 sc4mt astore -0.75 -1.311342e-07 -1.311342e-07 0.75 826.320007 100.98008 sc5mt astore -13 -9 253 665 -0.75 -1.311342e-07 -1.311342e-07 0.75 725.570007 -104.269867 sc6mt astore ssl --0.678186 -0.320257 0.320257 -0.678186 586.556763 1173.768433 sc4mt astore -0.678186 -0.320257 0.320257 -0.678186 586.556763 1173.768433 sc5mt astore 14 -7 239 673 -0.788888 -0.372533 0.343778 -0.727994 503.202484 1013.126404 sc6mt astore ssl --0.678186 -0.320257 0.320257 -0.678186 586.556763 1173.768433 sc4mt astore -0.678186 -0.320257 0.320257 -0.678186 586.556763 1173.768433 sc5mt astore -13 -9 253 665 -0.788888 -0.372533 0.343778 -0.727994 503.202484 1013.126404 sc6mt astore ssl --0.559539 -0.499416 0.499416 -0.559539 355.938416 1136.450073 sc4mt astore -0.559539 -0.499416 0.499416 -0.559539 355.938416 1136.450073 sc5mt astore 14 -7 239 673 -0.559539 -0.499416 0.499416 -0.559539 332.203522 980.66095 sc6mt astore ssl --0.559539 -0.499416 0.499416 -0.559539 355.938416 1136.450073 sc4mt astore -0.559539 -0.499416 0.499416 -0.559539 355.938416 1136.450073 sc5mt astore -13 -9 253 665 -0.559539 -0.499416 0.499416 -0.559539 332.203522 980.66095 sc6mt astore ssl --0.429163 -0.615076 -0.615076 0.429163 596.854065 374.396332 sc4mt astore -0.429163 -0.615076 -0.615076 0.429163 596.854065 374.396332 sc5mt astore 14 -7 239 673 -0.429163 -0.615076 -0.615076 0.429163 626.612427 194.364838 sc6mt astore ssl --0.429163 -0.615076 -0.615076 0.429163 596.854065 374.396332 sc4mt astore -0.429163 -0.615076 -0.615076 0.429163 596.854065 374.396332 sc5mt astore -13 -9 253 665 -0.429163 -0.615076 -0.615076 0.429163 626.612427 194.364838 sc6mt astore ssl --0.064217 0.747246 -0.747246 -0.064217 570.33783 484.102478 sc4mt astore -0.064217 0.747246 -0.747246 -0.064217 570.33783 484.102478 sc5mt astore 14 -7 239 673 -0.064217 0.747246 -0.747246 -0.064217 663.362854 334.241425 sc6mt astore ssl --0.064217 0.747246 -0.747246 -0.064217 570.33783 484.102478 sc4mt astore -0.064217 0.747246 -0.747246 -0.064217 570.33783 484.102478 sc5mt astore -13 -9 253 665 -0.064217 0.747246 -0.747246 -0.064217 663.362854 334.241425 sc6mt astore ssl --0.494022 0.564307 -0.564307 -0.494022 715.240784 733.776001 sc4mt astore -0.494022 0.564307 -0.564307 -0.494022 715.240784 733.776001 sc5mt astore 14 -7 239 673 -0.388547 0.443825 -0.564307 -0.494022 577.319336 676.505615 sc6mt astore ssl --0.494022 0.564307 -0.564307 -0.494022 715.240784 733.776001 sc4mt astore -0.494022 0.564307 -0.564307 -0.494022 715.240784 733.776001 sc5mt astore -13 -9 253 665 -0.388547 0.443825 -0.564307 -0.494022 577.319336 676.505615 sc6mt astore ssl --0.734415 0.152101 0.152101 0.734415 41.008286 115.479607 sc4mt astore -0.734415 0.152101 0.152101 0.734415 41.008286 115.479607 sc5mt astore 14 -7 239 673 -0.734415 0.152101 0.152101 0.734415 164.346115 -112.048782 sc6mt astore ssl --0.734415 0.152101 0.152101 0.734415 41.008286 115.479607 sc4mt astore -0.734415 0.152101 0.152101 0.734415 41.008286 115.479607 sc5mt astore -13 -9 253 665 -0.734415 0.152101 0.152101 0.734415 164.346115 -112.048782 sc6mt astore ssl --0.17246 -0.729903 0.729903 -0.17246 -285.706177 849.927002 sc4mt astore -0.17246 -0.729903 0.729903 -0.17246 -285.706177 849.927002 sc5mt astore 14 -7 239 673 -0.179295 -0.729903 0.758833 -0.17246 -307.84314 611.050476 sc6mt astore ssl --0.17246 -0.729903 0.729903 -0.17246 -285.706177 849.927002 sc4mt astore -0.17246 -0.729903 0.729903 -0.17246 -285.706177 849.927002 sc5mt astore -13 -9 253 665 -0.179295 -0.729903 0.758833 -0.17246 -307.84314 611.050476 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(c ) [20.015991 0 0 0] 201 65 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 -142 332] dotx -(a ) [20.015991 0 0 0] 287 85 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 33.000031 301] dotx -(b ) [21.996002 0 0 0] 358 79 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 -206 164] dotx -/txtdraw true def -/txlndraw true def -(Q) [0 0] 240 87 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 177 337] dotx -/txtdraw true def -/txlndraw true def -(1 ) [20.015991 0 0 0] 268.007996 72.599998 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 177 337] dotx -/txtdraw true def -/txlndraw true def -(Q) [0 0] 396 132 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 -241 289] dotx -/txtdraw true def -/txlndraw true def -(2 ) [20.015991 0 0 0] 424.007996 117.599998 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 -241 289] dotx -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob08v1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob08v1.gif deleted file mode 100755 index 77f91d7a6..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob08v1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob08v2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob08v2.eps deleted file mode 100755 index 3ca0ee0e3..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob08v2.eps +++ /dev/null @@ -1,2845 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Wed Aug 4 11:51:32 1993 -%%For: teacher2 -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 517 392 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /TDeps_dict 20 dict def TDeps_dict begin /showpage { - -} def /copypage { - -} def /grestoreall { - -} def /erasepage { - -} def /nulldevice { - -} def /exitserver { - -} def /initgraphics { - -} def /renderbands { - -} def /initmatrix { - -} def /banddevice { - -} def /setpageparams { - -} def /framedevice { - -} def /note { - -} def end end -TopDrawDict begin /rpath { - newpath moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} bind def /rfpath { - /rad3 exch def /hh3 exch def /ww3 exch def /yy1 exch def /xx1 exch def /xx2 xx1 ww3 add def /yy2 yy1 hh3 add def newpath xx1 yy1 rad3 hh3 0 gt { - add - } { - sub - } ifelse moveto xx1 yy1 xx2 yy1 rad3 arcto 4 { - pop - } repeat xx2 yy1 xx2 yy2 rad3 arcto 4 { - pop - } repeat xx2 yy2 xx1 yy2 rad3 arcto 4 { - pop - } repeat xx1 yy2 xx1 yy1 rad3 arcto 4 { - pop - } repeat closepath -} bind def /rfill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - 4 2 roll rpath crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - rectfill pop - } ifelse grestore -} bind def /rstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse 4 2 roll rpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /rffill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse rfpath filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /rfstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse rfpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /mkrpath { - dodrawctm rpath unpagectm -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 516.23999 391.679993 rectclip --47.879974 -199.160034 translate -47.879974 199.160034 516.23999 391.679993 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 2.412863e-35 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -gsave clpmt currentmatrix pop newpath -1 0 0 1 0 -1 sc5mt astore pop false { - sc5mt dodrawctm 47.879974 200.160004 516.240051 391.679993 0 rfpath unpagectm -} { - 516.240051 391.679993 47.879974 200.160004 sc5mt mkrpath -} ifelse -clip -newpath -clpmt setmatrix -gsave -/epssave save def 0 setgray 1 setlinewidth 0 setlinecap 0 setlinejoin 10 setmiterlimit [] 0 setdash newpath TDeps_dict begin userdict begin -[1 0 0 1 0 -1] dodrawctm -26.279968 178.559998 translate -%%BeginFile: /tmp/topdraw_eps_5265_206 -%! -%%BoundingBox: 21.60 21.60 537.84 413.28 -0.23999 dup scale -90 90 translate -2 setlinejoin -/l {lineto} def /m {moveto} def /j {rlineto} def /k {rmoveto} def /s {stroke} def -/m1 {-4 0 k 8 0 j -4 -4 k 0 8 j} bind def -/m2 {-4 -4 k 8 8 j -8 0 k 8 -8 j} bind def -/m3 {-8 0 k 16 0 j -8 -8 k 0 16 j} bind def -/m4 {-8 -8 k 16 16 j -16 0 k 16 -16 j} bind def -/m5 {8 -3 k 0 6 j -5 5 j -6 0 j -5 -5 j 0 -6 j 5 -5 j 6 0 j 5 5 j} bind def -/m6 {0 -8 k 0 16 j -7 -4 k 14 -8 j 0 8 k -14 -8 j} bind def -/m7 {0 9 k -8 -14 j 16 0 j -8 14 j} bind def -/m8 {0 -9 k 8 14 j -16 0 j 8 -14 j} bind def -/m9 {-12 0 k 24 0 j -12 -12 k 0 24 j} bind def -/m10 {-12 -12 k 24 24 j -24 0 k 24 -24 j} bind def -/m11 {12 -5 k 0 10 j -7 7 j -10 0 j -7 -7 j 0 -10 j 7 -7 j 10 0 j 7 7 j} bind def -/m12 {0 -12 k 0 24 j -10 -6 k 20 -12 j 0 12 k -20 -12 j} bind def - 1 setlinewidth -[] 0 setdash -/font1 /Courier-Bold findfont 40 scalefont def -font1 setfont - 4 setlinewidth -3 3 m -2148 3 l -2148 1629 l -3 1629 l -3 3 l -s -3 3 m -534 816 m -m5 s -534 816 m -1617 816 m -m5 s -1617 816 m -534 816 m -m2 s -534 816 m -1617 816 m -m2 s -1617 816 m - 2 setlinewidth -[ 24 8 24 8] 0 setdash -1617 816 m -1585 816 l -1574 816 l -1563 816 l -1552 816 l -1541 816 l -1531 816 l -1520 816 l -1509 816 l -1498 816 l -1487 816 l -1476 816 l -1466 816 l -1455 816 l -1444 816 l -1433 816 l -1422 816 l -1411 816 l -1401 816 l -1390 816 l -1379 816 l -1368 816 l -1357 816 l -1346 816 l -1336 816 l -1325 816 l -1314 816 l -1303 816 l -1292 816 l -1281 816 l -1271 816 l -1260 816 l -1249 816 l -1238 816 l -1227 816 l -1216 816 l -1206 816 l -1195 816 l -1184 816 l -1173 816 l -1162 816 l -1151 816 l -1141 816 l -1130 816 l -1119 816 l -1108 816 l -1097 816 l -1086 816 l -1076 816 l -1065 816 l -s -1065 816 m -1054 816 l -1043 816 l -1032 816 l -1021 816 l -1011 816 l -1000 816 l -989 816 l -978 816 l -967 816 l -956 816 l -946 816 l -935 816 l -924 816 l -913 816 l -902 816 l -891 816 l -881 816 l -870 816 l -859 816 l -848 816 l -837 816 l -826 816 l -816 816 l -805 816 l -794 816 l -783 816 l -772 816 l -761 816 l -751 816 l -740 816 l -729 816 l -718 816 l -707 816 l -696 816 l -686 816 l -675 816 l -664 816 l -653 816 l -642 816 l -631 816 l -621 816 l -610 816 l -599 816 l -588 816 l -577 816 l -566 816 l -534 816 l -s -1617 816 m -1594 824 l -1584 827 l -1573 830 l -1563 834 l -1553 837 l -1542 841 l -1532 844 l -1522 847 l -1512 851 l -1501 854 l -1491 857 l -1481 861 l -1470 864 l -1460 867 l -1450 871 l -1439 874 l -1429 877 l -1419 881 l -1408 884 l -1398 887 l -1388 890 l -1377 893 l -1367 897 l -1357 900 l -1346 903 l -1336 906 l -1325 909 l -1315 912 l -1305 915 l -1294 918 l -1284 920 l -1273 923 l -1263 926 l -1252 929 l -1242 931 l -1231 934 l -1221 936 l -1210 938 l -1199 941 l -1189 943 l -1178 945 l -1168 947 l -1157 949 l -1146 951 l -1136 953 l -1125 954 l -1114 956 l -1103 957 l -1093 958 l -s -1093 958 m -1082 960 l -1071 960 l -1060 961 l -1049 962 l -1039 962 l -1028 963 l -1017 963 l -1006 963 l -995 963 l -984 963 l -974 962 l -963 962 l -952 961 l -941 960 l -930 959 l -920 957 l -909 956 l -898 954 l -888 952 l -877 950 l -866 948 l -856 946 l -845 943 l -835 940 l -824 938 l -814 935 l -803 932 l -793 928 l -783 925 l -773 922 l -762 918 l -752 914 l -742 910 l -732 906 l -722 902 l -712 898 l -702 894 l -692 890 l -682 886 l -672 881 l -662 877 l -652 872 l -642 868 l -633 863 l -623 859 l -613 854 l -603 850 l -593 845 l -584 840 l -s -584 840 m -574 835 l -564 831 l -534 816 l -s -1617 816 m -1595 833 l -1586 839 l -1577 846 l -1569 852 l -1560 859 l -1551 865 l -1543 872 l -1534 878 l -1525 885 l -1516 891 l -1508 897 l -1499 904 l -1490 910 l -1481 917 l -1473 923 l -1464 929 l -1455 936 l -1446 942 l -1437 948 l -1428 954 l -1420 961 l -1411 967 l -1402 973 l -1393 979 l -1384 985 l -1375 991 l -1366 997 l -1357 1003 l -1347 1009 l -1338 1014 l -1329 1020 l -1320 1026 l -1310 1031 l -1301 1037 l -1292 1042 l -1282 1047 l -1273 1053 l -1263 1058 l -1254 1063 l -1244 1068 l -1234 1072 l -1224 1077 l -1215 1082 l -1205 1086 l -1195 1090 l -1185 1094 l -1175 1098 l -1165 1102 l -1154 1106 l -s -1154 1106 m -1144 1109 l -1134 1113 l -1123 1116 l -1113 1119 l -1102 1121 l -1092 1124 l -1081 1126 l -1071 1128 l -1060 1130 l -1049 1132 l -1039 1133 l -1028 1134 l -1017 1135 l -1006 1135 l -995 1136 l -984 1136 l -974 1135 l -963 1135 l -952 1134 l -941 1132 l -931 1131 l -920 1129 l -909 1127 l -899 1125 l -888 1122 l -878 1119 l -867 1116 l -857 1112 l -847 1108 l -837 1104 l -827 1100 l -817 1095 l -808 1090 l -798 1085 l -789 1080 l -780 1074 l -770 1068 l -761 1062 l -753 1056 l -744 1049 l -735 1043 l -727 1036 l -719 1029 l -710 1022 l -702 1015 l -694 1007 l -687 1000 l -679 992 l -671 984 l -s -671 984 m -664 977 l -656 969 l -649 961 l -642 953 l -635 944 l -628 936 l -621 928 l -614 919 l -607 911 l -600 903 l -594 894 l -587 886 l -580 877 l -574 868 l -567 860 l -560 851 l -554 843 l -534 816 l -s -1617 816 m -1599 843 l -1593 852 l -1587 861 l -1581 870 l -1574 879 l -1568 888 l -1562 896 l -1556 905 l -1550 914 l -1544 923 l -1537 932 l -1531 941 l -1525 950 l -1519 959 l -1512 967 l -1506 976 l -1500 985 l -1493 994 l -1487 1003 l -1481 1011 l -1474 1020 l -1468 1029 l -1461 1037 l -1454 1046 l -1448 1054 l -1441 1063 l -1434 1071 l -1428 1080 l -1421 1088 l -1414 1097 l -1407 1105 l -1400 1113 l -1393 1122 l -1386 1130 l -1379 1138 l -1371 1146 l -1364 1154 l -1357 1162 l -1349 1170 l -1342 1177 l -1334 1185 l -1326 1193 l -1318 1200 l -1311 1208 l -1303 1215 l -1295 1222 l -1286 1229 l -1278 1237 l -1270 1244 l -s -1270 1244 m -1262 1250 l -1253 1257 l -1245 1264 l -1236 1270 l -1227 1277 l -1218 1283 l -1209 1289 l -1200 1295 l -1191 1301 l -1182 1306 l -1172 1312 l -1163 1317 l -1153 1322 l -1144 1327 l -1134 1332 l -1124 1336 l -1114 1341 l -1104 1345 l -1094 1349 l -1084 1353 l -1074 1356 l -1063 1359 l -1053 1362 l -1043 1365 l -1032 1368 l -1021 1370 l -1011 1372 l -1000 1374 l -989 1375 l -979 1376 l -968 1377 l -957 1377 l -946 1378 l -935 1377 l -924 1377 l -914 1376 l -903 1375 l -892 1374 l -881 1372 l -871 1370 l -860 1368 l -850 1365 l -839 1362 l -829 1358 l -819 1355 l -809 1351 l -799 1346 l -789 1342 l -780 1337 l -s -780 1337 m -770 1331 l -761 1326 l -752 1320 l -743 1314 l -734 1307 l -726 1300 l -717 1293 l -709 1286 l -701 1279 l -694 1271 l -686 1263 l -679 1255 l -672 1247 l -665 1238 l -659 1230 l -653 1221 l -647 1212 l -641 1203 l -635 1193 l -630 1184 l -624 1175 l -619 1165 l -615 1155 l -610 1145 l -606 1136 l -601 1126 l -597 1116 l -593 1105 l -590 1095 l -586 1085 l -583 1075 l -580 1064 l -576 1054 l -574 1043 l -571 1033 l -568 1023 l -566 1012 l -563 1001 l -561 991 l -559 980 l -557 970 l -555 959 l -553 948 l -551 938 l -549 927 l -547 916 l -546 905 l -544 895 l -543 884 l -s -543 884 m -541 873 l -540 862 l -538 852 l -537 841 l -534 816 l -s -1617 816 m -1610 841 l -1608 852 l -1605 862 l -1602 873 l -1599 883 l -1596 894 l -1594 904 l -1591 915 l -1588 925 l -1585 936 l -1582 946 l -1579 957 l -1576 967 l -1573 977 l -1570 988 l -1567 998 l -1564 1009 l -1561 1019 l -1558 1029 l -1555 1040 l -1552 1050 l -1548 1061 l -1545 1071 l -1542 1081 l -1539 1091 l -1535 1102 l -1532 1112 l -1528 1122 l -1525 1133 l -1521 1143 l -1518 1153 l -1514 1163 l -1510 1173 l -1506 1184 l -1502 1194 l -1499 1204 l -1495 1214 l -1490 1224 l -1486 1234 l -1482 1244 l -1478 1254 l -1474 1264 l -1469 1274 l -1465 1284 l -1460 1294 l -1456 1303 l -1451 1313 l -1446 1323 l -1442 1333 l -s -1442 1333 m -1437 1342 l -1432 1352 l -1427 1361 l -1421 1371 l -1416 1381 l -1411 1390 l -1406 1399 l -1400 1409 l -1395 1418 l -1389 1427 l -1383 1437 l -1377 1446 l -1372 1455 l -1366 1464 l -1360 1473 l -1353 1482 l -1347 1491 l -1341 1499 l -1334 1508 l -1328 1517 l -1321 1525 l -1315 1534 l -1308 1542 l -1301 1551 l -1294 1559 l -1287 1567 l -1280 1575 l -1273 1583 l -1265 1591 l -1258 1599 l -1250 1607 l -1243 1615 l -1235 1622 l -1228 1629 l -s -1617 816 m -1620 847 l -1621 858 l -1622 869 l -1623 880 l -1624 891 l -1625 901 l -1625 912 l -1626 923 l -1627 934 l -1628 945 l -1629 955 l -1630 966 l -1630 977 l -1631 988 l -1632 999 l -1633 1009 l -1633 1020 l -1634 1031 l -1635 1042 l -1635 1053 l -1636 1064 l -1636 1074 l -1637 1085 l -1637 1096 l -1638 1107 l -1638 1118 l -1639 1128 l -1639 1139 l -1639 1150 l -1640 1161 l -1640 1172 l -1640 1183 l -1640 1194 l -1640 1204 l -1640 1215 l -1640 1226 l -1640 1237 l -1640 1248 l -1640 1259 l -1640 1269 l -1640 1280 l -1640 1291 l -1639 1302 l -1639 1313 l -1639 1324 l -1638 1334 l -1638 1345 l -1637 1356 l -1637 1367 l -s -1637 1367 m -1636 1378 l -1635 1389 l -1634 1399 l -1634 1410 l -1633 1421 l -1632 1432 l -1631 1443 l -1630 1453 l -1629 1464 l -1628 1475 l -1627 1486 l -1625 1496 l -1624 1507 l -1623 1518 l -1621 1529 l -1620 1539 l -1619 1550 l -1617 1561 l -1615 1572 l -1614 1582 l -1612 1593 l -1610 1604 l -1609 1614 l -1607 1625 l -1606 1629 l -s -1617 816 m -1628 839 l -1633 849 l -1638 859 l -1642 869 l -1647 878 l -1651 888 l -1656 898 l -1661 908 l -1665 918 l -1670 927 l -1674 937 l -1679 947 l -1684 957 l -1688 967 l -1693 977 l -1697 987 l -1702 996 l -1706 1006 l -1711 1016 l -1715 1026 l -1719 1036 l -1724 1046 l -1728 1056 l -1733 1066 l -1737 1076 l -1741 1086 l -1745 1096 l -1750 1105 l -1754 1115 l -1758 1125 l -1762 1135 l -1767 1145 l -1771 1155 l -1775 1165 l -1779 1176 l -1783 1186 l -1787 1196 l -1791 1206 l -1795 1216 l -1799 1226 l -1803 1236 l -1807 1246 l -1811 1256 l -1815 1266 l -1819 1276 l -1822 1287 l -1826 1297 l -1830 1307 l -1834 1317 l -s -1834 1317 m -1837 1327 l -1841 1337 l -1845 1348 l -1848 1358 l -1852 1368 l -1855 1378 l -1859 1389 l -1862 1399 l -1866 1409 l -1869 1419 l -1873 1430 l -1876 1440 l -1880 1450 l -1883 1461 l -1886 1471 l -1890 1481 l -1893 1492 l -1896 1502 l -1899 1512 l -1902 1523 l -1906 1533 l -1909 1543 l -1912 1554 l -1915 1564 l -1918 1575 l -1921 1585 l -1924 1595 l -1927 1606 l -1930 1616 l -1933 1627 l -1933 1629 l -s -1617 816 m -1640 837 l -1647 845 l -1655 852 l -1663 860 l -1671 867 l -1679 875 l -1687 882 l -1694 890 l -1702 897 l -1710 905 l -1718 912 l -1726 920 l -1733 927 l -1741 935 l -1749 942 l -1757 950 l -1765 958 l -1772 965 l -1780 973 l -1788 980 l -1795 988 l -1803 995 l -1811 1003 l -1819 1011 l -1826 1018 l -1834 1026 l -1842 1034 l -1849 1041 l -1857 1049 l -1864 1057 l -1872 1064 l -1880 1072 l -1887 1080 l -1895 1088 l -1902 1095 l -1910 1103 l -1918 1111 l -1925 1119 l -1933 1127 l -1940 1134 l -1948 1142 l -1955 1150 l -1963 1158 l -1970 1166 l -1978 1174 l -1985 1181 l -1992 1189 l -2000 1197 l -2007 1205 l -s -2007 1205 m -2015 1213 l -2022 1221 l -2029 1229 l -2037 1237 l -2044 1245 l -2051 1253 l -2059 1261 l -2066 1269 l -2073 1277 l -2081 1285 l -2088 1293 l -2095 1301 l -2102 1309 l -2110 1317 l -2117 1325 l -2124 1333 l -2131 1341 l -2139 1349 l -2146 1358 l -2148 1360 l -s -1617 816 m -1640 825 l -1650 830 l -1661 834 l -1671 838 l -1681 842 l -1691 846 l -1701 850 l -1711 854 l -1721 858 l -1731 862 l -1741 866 l -1751 870 l -1761 875 l -1771 879 l -1781 883 l -1791 887 l -1801 891 l -1811 895 l -1821 899 l -1831 904 l -1841 908 l -1851 912 l -1861 916 l -1871 920 l -1881 924 l -1891 929 l -1901 933 l -1911 937 l -1921 941 l -1931 945 l -1941 950 l -1951 954 l -1961 958 l -1971 962 l -1981 967 l -1991 971 l -2001 975 l -2011 979 l -2021 984 l -2030 988 l -2040 992 l -2050 997 l -2060 1001 l -2070 1005 l -2080 1009 l -2090 1014 l -2100 1018 l -2110 1022 l -2120 1027 l -s -2120 1027 m -2130 1031 l -2140 1036 l -2148 1039 l -s -1617 816 m -1647 816 l -1658 816 l -1669 816 l -1680 816 l -1690 816 l -1701 816 l -1712 816 l -1723 816 l -1734 816 l -1745 816 l -1755 816 l -1766 816 l -1777 816 l -1788 816 l -1799 816 l -1810 816 l -1820 816 l -1831 816 l -1842 817 l -1853 817 l -1864 817 l -1875 817 l -1885 817 l -1896 817 l -1907 817 l -1918 817 l -1929 817 l -1940 817 l -1950 817 l -1961 817 l -1972 817 l -1983 817 l -1994 817 l -2005 817 l -2015 817 l -2026 817 l -2037 817 l -2048 817 l -2059 817 l -2070 817 l -2080 817 l -2091 817 l -2102 817 l -2113 817 l -2124 817 l -2135 817 l -2145 817 l -2148 817 l -s -2148 817 m -[] 0 setdash -[ 24 8 24 8] 0 setdash -1617 816 m -1585 816 l -1574 816 l -1563 816 l -1552 816 l -1541 816 l -1531 816 l -1520 816 l -1509 816 l -1498 816 l -1487 816 l -1476 816 l -1466 816 l -1455 816 l -1444 816 l -1433 816 l -1422 816 l -1411 816 l -1401 816 l -1390 816 l -1379 816 l -1368 816 l -1357 816 l -1346 816 l -1336 816 l -1325 816 l -1314 816 l -1303 816 l -1292 816 l -1281 816 l -1271 816 l -1260 816 l -1249 816 l -1238 816 l -1227 816 l -1216 816 l -1206 816 l -1195 816 l -1184 816 l -1173 816 l -1162 816 l -1151 816 l -1141 816 l -1130 816 l -1119 816 l -1108 816 l -1097 816 l -1086 816 l -1076 816 l -1065 816 l -s -1065 816 m -1054 816 l -1043 816 l -1032 816 l -1021 816 l -1011 816 l -1000 816 l -989 816 l -978 816 l -967 816 l -956 816 l -946 816 l -935 816 l -924 816 l -913 816 l -902 816 l -891 816 l -881 816 l -870 816 l -859 816 l -848 816 l -837 816 l -826 816 l -816 816 l -805 816 l -794 816 l -783 816 l -772 816 l -761 816 l -751 816 l -740 816 l -729 816 l -718 816 l -707 816 l -696 816 l -686 816 l -675 816 l -664 816 l -653 816 l -642 816 l -631 816 l -621 816 l -610 816 l -599 816 l -588 816 l -577 816 l -566 816 l -534 816 l -s -1617 816 m -1594 808 l -1584 805 l -1573 802 l -1563 798 l -1553 795 l -1542 791 l -1532 788 l -1522 785 l -1512 781 l -1501 778 l -1491 775 l -1481 771 l -1470 768 l -1460 765 l -1450 761 l -1439 758 l -1429 755 l -1419 751 l -1408 748 l -1398 745 l -1388 742 l -1377 739 l -1367 735 l -1357 732 l -1346 729 l -1336 726 l -1325 723 l -1315 720 l -1305 717 l -1294 714 l -1284 712 l -1273 709 l -1263 706 l -1252 703 l -1242 701 l -1231 698 l -1221 696 l -1210 694 l -1199 691 l -1189 689 l -1178 687 l -1168 685 l -1157 683 l -1146 681 l -1136 679 l -1125 678 l -1114 676 l -1103 675 l -1093 674 l -s -1093 674 m -1082 672 l -1071 672 l -1060 671 l -1049 670 l -1039 670 l -1028 669 l -1017 669 l -1006 669 l -995 669 l -984 669 l -974 670 l -963 670 l -952 671 l -941 672 l -930 673 l -920 675 l -909 676 l -898 678 l -888 680 l -877 682 l -866 684 l -856 686 l -845 689 l -835 692 l -824 694 l -814 697 l -803 700 l -793 704 l -783 707 l -773 710 l -762 714 l -752 718 l -742 722 l -732 726 l -722 730 l -712 734 l -702 738 l -692 742 l -682 746 l -672 751 l -662 755 l -652 760 l -642 764 l -633 769 l -623 773 l -613 778 l -603 782 l -593 787 l -584 792 l -s -584 792 m -574 797 l -564 801 l -534 816 l -s -1617 816 m -1595 799 l -1586 793 l -1577 786 l -1569 780 l -1560 773 l -1551 767 l -1543 760 l -1534 754 l -1525 747 l -1516 741 l -1508 735 l -1499 728 l -1490 722 l -1481 715 l -1473 709 l -1464 703 l -1455 696 l -1446 690 l -1437 684 l -1428 678 l -1420 671 l -1411 665 l -1402 659 l -1393 653 l -1384 647 l -1375 641 l -1366 635 l -1357 629 l -1347 623 l -1338 618 l -1329 612 l -1320 606 l -1310 601 l -1301 595 l -1292 590 l -1282 585 l -1273 579 l -1263 574 l -1254 569 l -1244 564 l -1234 560 l -1224 555 l -1215 550 l -1205 546 l -1195 542 l -1185 538 l -1175 534 l -1165 530 l -1154 526 l -s -1154 526 m -1144 523 l -1134 519 l -1123 516 l -1113 513 l -1102 511 l -1092 508 l -1081 506 l -1071 504 l -1060 502 l -1049 500 l -1039 499 l -1028 498 l -1017 497 l -1006 497 l -995 496 l -984 496 l -974 497 l -963 497 l -952 498 l -941 500 l -931 501 l -920 503 l -909 505 l -899 507 l -888 510 l -878 513 l -867 516 l -857 520 l -847 524 l -837 528 l -827 532 l -817 537 l -808 542 l -798 547 l -789 552 l -780 558 l -770 564 l -761 570 l -753 576 l -744 583 l -735 589 l -727 596 l -719 603 l -710 610 l -702 617 l -694 625 l -687 632 l -679 640 l -671 648 l -s -671 648 m -664 655 l -656 663 l -649 671 l -642 679 l -635 688 l -628 696 l -621 704 l -614 713 l -607 721 l -600 729 l -594 738 l -587 746 l -580 755 l -574 764 l -567 772 l -560 781 l -554 789 l -534 816 l -s -1617 816 m -1599 789 l -1593 780 l -1587 771 l -1581 762 l -1574 753 l -1568 744 l -1562 736 l -1556 727 l -1550 718 l -1544 709 l -1537 700 l -1531 691 l -1525 682 l -1519 673 l -1512 665 l -1506 656 l -1500 647 l -1493 638 l -1487 629 l -1481 621 l -1474 612 l -1468 603 l -1461 595 l -1454 586 l -1448 578 l -1441 569 l -1434 561 l -1428 552 l -1421 544 l -1414 535 l -1407 527 l -1400 519 l -1393 510 l -1386 502 l -1379 494 l -1371 486 l -1364 478 l -1357 470 l -1349 462 l -1342 455 l -1334 447 l -1326 439 l -1318 432 l -1311 424 l -1303 417 l -1295 410 l -1286 403 l -1278 395 l -1270 388 l -s -1270 388 m -1262 382 l -1253 375 l -1245 368 l -1236 362 l -1227 355 l -1218 349 l -1209 343 l -1200 337 l -1191 331 l -1182 326 l -1172 320 l -1163 315 l -1153 310 l -1144 305 l -1134 300 l -1124 296 l -1114 291 l -1104 287 l -1094 283 l -1084 279 l -1074 276 l -1063 273 l -1053 270 l -1043 267 l -1032 264 l -1021 262 l -1011 260 l -1000 258 l -989 257 l -979 256 l -968 255 l -957 255 l -946 254 l -935 255 l -924 255 l -914 256 l -903 257 l -892 258 l -881 260 l -871 262 l -860 264 l -850 267 l -839 270 l -829 274 l -819 277 l -809 281 l -799 286 l -789 290 l -780 295 l -s -780 295 m -770 301 l -761 306 l -752 312 l -743 318 l -734 325 l -726 332 l -717 339 l -709 346 l -701 353 l -694 361 l -686 369 l -679 377 l -672 385 l -665 394 l -659 402 l -653 411 l -647 420 l -641 429 l -635 439 l -630 448 l -624 457 l -619 467 l -615 477 l -610 487 l -606 496 l -601 506 l -597 516 l -593 527 l -590 537 l -586 547 l -583 557 l -580 568 l -576 578 l -574 589 l -571 599 l -568 609 l -566 620 l -563 631 l -561 641 l -559 652 l -557 662 l -555 673 l -553 684 l -551 694 l -549 705 l -547 716 l -546 727 l -544 737 l -543 748 l -s -543 748 m -541 759 l -540 770 l -538 780 l -537 791 l -534 816 l -s -1617 816 m -1610 791 l -1608 780 l -1605 770 l -1602 759 l -1599 749 l -1596 738 l -1594 728 l -1591 717 l -1588 707 l -1585 696 l -1582 686 l -1579 675 l -1576 665 l -1573 655 l -1570 644 l -1567 634 l -1564 623 l -1561 613 l -1558 603 l -1555 592 l -1552 582 l -1548 571 l -1545 561 l -1542 551 l -1539 541 l -1535 530 l -1532 520 l -1528 510 l -1525 499 l -1521 489 l -1518 479 l -1514 469 l -1510 459 l -1506 448 l -1502 438 l -1499 428 l -1495 418 l -1490 408 l -1486 398 l -1482 388 l -1478 378 l -1474 368 l -1469 358 l -1465 348 l -1460 338 l -1456 329 l -1451 319 l -1446 309 l -1442 299 l -s -1442 299 m -1437 290 l -1432 280 l -1427 271 l -1421 261 l -1416 251 l -1411 242 l -1406 233 l -1400 223 l -1395 214 l -1389 205 l -1383 195 l -1377 186 l -1372 177 l -1366 168 l -1360 159 l -1353 150 l -1347 141 l -1341 133 l -1334 124 l -1328 115 l -1321 107 l -1315 98 l -1308 90 l -1301 81 l -1294 73 l -1287 65 l -1280 57 l -1273 49 l -1265 41 l -1258 33 l -1250 25 l -1243 17 l -1235 10 l -1228 3 l -s -1617 816 m -1620 785 l -1621 774 l -1622 763 l -1623 752 l -1624 741 l -1625 731 l -1625 720 l -1626 709 l -1627 698 l -1628 687 l -1629 677 l -1630 666 l -1630 655 l -1631 644 l -1632 633 l -1633 623 l -1633 612 l -1634 601 l -1635 590 l -1635 579 l -1636 568 l -1636 558 l -1637 547 l -1637 536 l -1638 525 l -1638 514 l -1639 504 l -1639 493 l -1639 482 l -1640 471 l -1640 460 l -1640 449 l -1640 438 l -1640 428 l -1640 417 l -1640 406 l -1640 395 l -1640 384 l -1640 373 l -1640 363 l -1640 352 l -1640 341 l -1639 330 l -1639 319 l -1639 308 l -1638 298 l -1638 287 l -1637 276 l -1637 265 l -s -1637 265 m -1636 254 l -1635 243 l -1634 233 l -1634 222 l -1633 211 l -1632 200 l -1631 189 l -1630 179 l -1629 168 l -1628 157 l -1627 146 l -1625 136 l -1624 125 l -1623 114 l -1621 103 l -1620 93 l -1619 82 l -1617 71 l -1615 60 l -1614 50 l -1612 39 l -1610 28 l -1609 18 l -1607 7 l -1606 3 l -s -1617 816 m -1628 793 l -1633 783 l -1638 773 l -1642 763 l -1647 754 l -1651 744 l -1656 734 l -1661 724 l -1665 714 l -1670 705 l -1674 695 l -1679 685 l -1684 675 l -1688 665 l -1693 655 l -1697 645 l -1702 636 l -1706 626 l -1711 616 l -1715 606 l -1719 596 l -1724 586 l -1728 576 l -1733 566 l -1737 556 l -1741 546 l -1745 536 l -1750 527 l -1754 517 l -1758 507 l -1762 497 l -1767 487 l -1771 477 l -1775 467 l -1779 456 l -1783 446 l -1787 436 l -1791 426 l -1795 416 l -1799 406 l -1803 396 l -1807 386 l -1811 376 l -1815 366 l -1819 356 l -1822 345 l -1826 335 l -1830 325 l -1834 315 l -s -1834 315 m -1837 305 l -1841 295 l -1845 284 l -1848 274 l -1852 264 l -1855 254 l -1859 243 l -1862 233 l -1866 223 l -1869 213 l -1873 202 l -1876 192 l -1880 182 l -1883 171 l -1886 161 l -1890 151 l -1893 140 l -1896 130 l -1899 120 l -1902 109 l -1906 99 l -1909 89 l -1912 78 l -1915 68 l -1918 57 l -1921 47 l -1924 37 l -1927 26 l -1930 16 l -1933 5 l -1933 3 l -s -1617 816 m -1640 795 l -1647 787 l -1655 780 l -1663 772 l -1671 765 l -1679 757 l -1687 750 l -1694 742 l -1702 735 l -1710 727 l -1718 720 l -1726 712 l -1733 705 l -1741 697 l -1749 690 l -1757 682 l -1765 674 l -1772 667 l -1780 659 l -1788 652 l -1795 644 l -1803 637 l -1811 629 l -1819 621 l -1826 614 l -1834 606 l -1842 598 l -1849 591 l -1857 583 l -1864 575 l -1872 568 l -1880 560 l -1887 552 l -1895 544 l -1902 537 l -1910 529 l -1918 521 l -1925 513 l -1933 505 l -1940 498 l -1948 490 l -1955 482 l -1963 474 l -1970 466 l -1978 458 l -1985 451 l -1992 443 l -2000 435 l -2007 427 l -s -2007 427 m -2015 419 l -2022 411 l -2029 403 l -2037 395 l -2044 387 l -2051 379 l -2059 371 l -2066 363 l -2073 355 l -2081 347 l -2088 339 l -2095 331 l -2102 323 l -2110 315 l -2117 307 l -2124 299 l -2131 291 l -2139 283 l -2146 274 l -2148 272 l -s -1617 816 m -1640 807 l -1650 802 l -1661 798 l -1671 794 l -1681 790 l -1691 786 l -1701 782 l -1711 778 l -1721 774 l -1731 770 l -1741 766 l -1751 762 l -1761 757 l -1771 753 l -1781 749 l -1791 745 l -1801 741 l -1811 737 l -1821 733 l -1831 728 l -1841 724 l -1851 720 l -1861 716 l -1871 712 l -1881 708 l -1891 703 l -1901 699 l -1911 695 l -1921 691 l -1931 687 l -1941 682 l -1951 678 l -1961 674 l -1971 670 l -1981 665 l -1991 661 l -2001 657 l -2011 653 l -2021 648 l -2030 644 l -2040 640 l -2050 635 l -2060 631 l -2070 627 l -2080 623 l -2090 618 l -2100 614 l -2110 610 l -2120 605 l -s -2120 605 m -2130 601 l -2140 596 l -2148 593 l -s -2148 593 m -[] 0 setdash -[ 24 8 24 8] 0 setdash -3 644 m -10 647 l -21 651 l -31 655 l -41 659 l -51 663 l -61 667 l -71 670 l -81 674 l -92 678 l -102 682 l -112 685 l -122 689 l -132 692 l -143 696 l -153 700 l -163 703 l -173 707 l -184 710 l -194 714 l -204 717 l -214 720 l -225 724 l -235 727 l -245 730 l -256 734 l -266 737 l -276 740 l -287 744 l -297 747 l -307 750 l -318 753 l -328 756 l -338 760 l -349 763 l -359 766 l -370 769 l -380 772 l -390 775 l -401 778 l -411 781 l -421 784 l -432 787 l -442 790 l -453 793 l -463 796 l -474 799 l -484 802 l -494 805 l -505 808 l -s -505 808 m -534 816 l -s -47 3 m -47 10 l -47 20 l -47 31 l -48 42 l -49 53 l -50 64 l -51 74 l -53 85 l -54 96 l -56 107 l -58 117 l -60 128 l -62 139 l -64 149 l -67 160 l -70 170 l -73 181 l -76 191 l -79 201 l -82 212 l -85 222 l -89 232 l -93 242 l -96 253 l -100 263 l -104 273 l -109 283 l -113 293 l -117 303 l -122 312 l -126 322 l -131 332 l -136 342 l -141 351 l -146 361 l -151 370 l -157 380 l -162 389 l -167 399 l -173 408 l -179 417 l -184 426 l -190 436 l -196 445 l -202 454 l -208 463 l -214 472 l -221 480 l -227 489 l -s -227 489 m -233 498 l -240 507 l -246 515 l -253 524 l -259 533 l -266 541 l -273 550 l -280 558 l -287 566 l -294 575 l -301 583 l -308 591 l -315 599 l -322 607 l -329 615 l -337 623 l -344 631 l -351 639 l -359 647 l -366 655 l -374 663 l -381 671 l -389 678 l -396 686 l -404 694 l -412 701 l -420 709 l -427 717 l -435 724 l -443 732 l -451 739 l -459 746 l -467 754 l -474 761 l -482 769 l -490 776 l -498 783 l -506 791 l -514 798 l -534 816 l -s -621 3 m -613 9 l -604 15 l -595 22 l -587 28 l -579 36 l -571 43 l -563 50 l -555 58 l -548 66 l -541 74 l -534 83 l -527 91 l -521 100 l -515 109 l -509 118 l -503 127 l -497 136 l -492 146 l -487 156 l -483 165 l -478 175 l -474 185 l -470 195 l -466 205 l -462 216 l -459 226 l -456 236 l -453 247 l -451 257 l -448 268 l -446 278 l -444 289 l -442 300 l -441 311 l -439 321 l -438 332 l -437 343 l -437 354 l -436 365 l -436 375 l -436 386 l -436 397 l -436 408 l -436 419 l -437 430 l -437 440 l -438 451 l -439 462 l -440 473 l -s -440 473 m -441 484 l -443 494 l -444 505 l -446 516 l -448 526 l -450 537 l -452 548 l -454 558 l -456 569 l -459 579 l -461 590 l -464 601 l -466 611 l -469 622 l -472 632 l -475 642 l -478 653 l -481 663 l -484 674 l -488 684 l -491 694 l -494 704 l -498 715 l -501 725 l -505 735 l -508 746 l -512 756 l -516 766 l -519 776 l -523 786 l -534 816 l -s -534 816 m -[] 0 setdash -[ 24 8 24 8] 0 setdash -3 644 m -10 647 l -21 651 l -31 655 l -41 659 l -51 663 l -61 667 l -71 670 l -81 674 l -92 678 l -102 682 l -112 685 l -122 689 l -132 692 l -143 696 l -153 700 l -163 703 l -173 707 l -184 710 l -194 714 l -204 717 l -214 720 l -225 724 l -235 727 l -245 730 l -256 734 l -266 737 l -276 740 l -287 744 l -297 747 l -307 750 l -318 753 l -328 756 l -338 760 l -349 763 l -359 766 l -370 769 l -380 772 l -390 775 l -401 778 l -411 781 l -421 784 l -432 787 l -442 790 l -453 793 l -463 796 l -474 799 l -484 802 l -494 805 l -505 808 l -s -505 808 m -534 816 l -s -3 935 m -8 934 l -19 931 l -29 928 l -40 925 l -50 923 l -61 920 l -71 917 l -82 915 l -92 912 l -103 909 l -113 907 l -124 904 l -134 902 l -145 899 l -155 896 l -166 894 l -176 891 l -187 889 l -197 887 l -208 884 l -219 882 l -229 879 l -240 877 l -250 875 l -261 872 l -271 870 l -282 868 l -293 865 l -303 863 l -314 861 l -324 858 l -335 856 l -346 854 l -356 852 l -367 850 l -377 847 l -388 845 l -399 843 l -409 841 l -420 839 l -430 837 l -441 834 l -452 832 l -462 830 l -473 828 l -484 826 l -494 824 l -505 822 l -534 816 l -s -534 816 m -3 1482 m -4 1479 l -7 1469 l -10 1459 l -14 1449 l -18 1438 l -22 1428 l -26 1418 l -30 1408 l -34 1398 l -38 1388 l -43 1378 l -47 1368 l -52 1359 l -57 1349 l -61 1339 l -66 1330 l -72 1320 l -77 1311 l -82 1301 l -88 1292 l -93 1282 l -99 1273 l -104 1264 l -110 1255 l -116 1246 l -122 1237 l -128 1228 l -134 1219 l -140 1210 l -147 1201 l -153 1192 l -159 1183 l -166 1175 l -173 1166 l -179 1158 l -186 1149 l -193 1141 l -200 1132 l -206 1124 l -213 1116 l -221 1107 l -228 1099 l -235 1091 l -242 1083 l -249 1075 l -257 1067 l -264 1059 l -271 1051 l -279 1043 l -s -279 1043 m -287 1036 l -294 1028 l -302 1020 l -309 1013 l -317 1005 l -325 997 l -333 990 l -341 983 l -349 975 l -356 968 l -364 960 l -372 953 l -380 946 l -389 939 l -397 931 l -405 924 l -413 917 l -421 910 l -429 903 l -438 896 l -446 889 l -454 882 l -462 875 l -471 868 l -479 861 l -487 854 l -496 847 l -504 840 l -512 833 l -534 816 l -s -577 1629 m -572 1624 l -564 1617 l -556 1610 l -548 1602 l -541 1595 l -533 1587 l -526 1578 l -519 1570 l -513 1562 l -506 1553 l -500 1544 l -494 1535 l -488 1526 l -483 1516 l -478 1507 l -473 1497 l -468 1487 l -464 1477 l -459 1467 l -455 1457 l -452 1447 l -448 1437 l -445 1427 l -442 1416 l -439 1406 l -436 1395 l -434 1385 l -432 1374 l -430 1363 l -428 1353 l -426 1342 l -425 1331 l -424 1320 l -423 1310 l -422 1299 l -422 1288 l -422 1277 l -421 1266 l -422 1256 l -422 1245 l -422 1234 l -423 1223 l -423 1212 l -424 1201 l -425 1191 l -426 1180 l -428 1169 l -429 1158 l -431 1148 l -s -431 1148 m -433 1137 l -435 1126 l -437 1116 l -439 1105 l -441 1094 l -443 1084 l -446 1073 l -448 1063 l -451 1052 l -454 1042 l -457 1031 l -460 1021 l -463 1011 l -466 1000 l -469 990 l -473 979 l -476 969 l -480 959 l -483 949 l -487 938 l -490 928 l -494 918 l -498 908 l -502 898 l -506 888 l -510 878 l -513 867 l -517 857 l -521 847 l -534 816 l -s -534 816 m -[] 0 setdash -showpage -%%EndFile -end end epssave restore -grestore -grestore -/crlinw 1.9 def --0.75 0 0 0.75 522.719971 97.559998 sc4mt astore -0.75 0 0 0.75 522.719971 97.559998 sc5mt astore 14 -7 239 673 -0.75 0 0 0.75 460.970001 -104.190002 sc6mt astore ssl --0.75 0 0 0.75 522.719971 97.559998 sc4mt astore -0.75 0 0 0.75 522.719971 97.559998 sc5mt astore -13 -9 253 665 -0.75 0 0 0.75 460.970001 -104.190002 sc6mt astore ssl --0.336085 0.670483 -0.670483 -0.336085 953.79834 429.697937 sc4mt astore -0.336085 0.670483 -0.670483 -0.336085 953.79834 429.697937 sc5mt astore 14 -7 239 673 -0.330245 0.658832 -0.670483 -0.336085 918.753906 585.248962 sc6mt astore ssl --0.336085 0.670483 -0.670483 -0.336085 953.79834 429.697937 sc4mt astore -0.336085 0.670483 -0.670483 -0.336085 953.79834 429.697937 sc5mt astore -13 -9 253 665 -0.330245 0.658832 -0.670483 -0.336085 918.753906 585.248962 sc6mt astore ssl --0.716846 0.220525 -0.220525 -0.716846 580.401489 820.59198 sc4mt astore -0.716846 0.220525 -0.220525 -0.716846 580.401489 820.59198 sc5mt astore 14 -7 239 673 -0.716846 0.220525 -0.220525 -0.716846 632.056885 946.323792 sc6mt astore ssl --0.716846 0.220525 -0.220525 -0.716846 580.401489 820.59198 sc4mt astore -0.716846 0.220525 -0.220525 -0.716846 580.401489 820.59198 sc5mt astore -13 -9 253 665 -0.716846 0.220525 -0.220525 -0.716846 632.056885 946.323792 sc6mt astore ssl --0.749091 0.036912 -0.036912 -0.749091 500.89386 789.831787 sc4mt astore -0.749091 0.036912 -0.036912 -0.749091 500.89386 789.831787 sc5mt astore 14 -7 239 673 -0.749091 0.036912 -0.036912 -0.749091 503.926331 960.810791 sc6mt astore ssl --0.749091 0.036912 -0.036912 -0.749091 500.89386 789.831787 sc4mt astore -0.749091 0.036912 -0.036912 -0.749091 500.89386 789.831787 sc5mt astore -13 -9 253 665 -0.749091 0.036912 -0.036912 -0.749091 503.926331 960.810791 sc6mt astore ssl --3.278354e-08 0.75 -0.75 -3.278354e-08 929.235107 122.145134 sc4mt astore -3.278354e-08 0.75 -0.75 -3.278354e-08 929.235107 122.145134 sc5mt astore 14 -7 239 673 -3.278354e-08 0.75 -0.75 -3.278354e-08 939.485107 339.895142 sc6mt astore ssl --3.278354e-08 0.75 -0.75 -3.278354e-08 929.235107 122.145134 sc4mt astore -3.278354e-08 0.75 -0.75 -3.278354e-08 929.235107 122.145134 sc5mt astore -13 -9 253 665 -3.278354e-08 0.75 -0.75 -3.278354e-08 939.485107 339.895142 sc6mt astore ssl -0.248572 0.70761 -0.70761 0.248572 816.344604 -89.34198 sc4mt astore 0.248572 0.70761 -0.70761 0.248572 816.344604 -89.34198 sc5mt astore 14 -7 239 673 0.248572 0.70761 -0.70761 0.248572 897.557983 174.926666 sc6mt astore ssl -0.248572 0.70761 -0.70761 0.248572 816.344604 -89.34198 sc4mt astore 0.248572 0.70761 -0.70761 0.248572 816.344604 -89.34198 sc5mt astore -13 -9 253 665 0.248572 0.70761 -0.70761 0.248572 897.557983 174.926666 sc6mt astore ssl --0.748508 0.047279 -0.047279 -0.748508 524.062012 732.901855 sc4mt astore -0.748508 0.047279 -0.047279 -0.748508 524.062012 732.901855 sc5mt astore 14 -7 239 673 -0.748508 0.047279 -0.050012 -0.791778 501.0896 944.747253 sc6mt astore ssl --0.748508 0.047279 -0.047279 -0.748508 524.062012 732.901855 sc4mt astore -0.748508 0.047279 -0.047279 -0.748508 524.062012 732.901855 sc5mt astore -13 -9 253 665 -0.748508 0.047279 -0.050012 -0.791778 501.0896 944.747253 sc6mt astore ssl --0.743775 0.096433 -0.096433 -0.743775 504.048096 537.558472 sc4mt astore -0.743775 0.096433 -0.096433 -0.743775 504.048096 537.558472 sc5mt astore 14 -7 239 673 -0.743775 0.096433 -0.096433 -0.743775 537.433716 788.776855 sc6mt astore ssl --0.743775 0.096433 -0.096433 -0.743775 504.048096 537.558472 sc4mt astore -0.743775 0.096433 -0.096433 -0.743775 504.048096 537.558472 sc5mt astore -13 -9 253 665 -0.743775 0.096433 -0.096433 -0.743775 537.433716 788.776855 sc6mt astore ssl --0.731118 0.167232 -0.167232 -0.731118 552.929626 574.40918 sc4mt astore -0.731118 0.167232 -0.167232 -0.731118 552.929626 574.40918 sc5mt astore 14 -7 239 673 -0.731118 0.167232 -0.161139 -0.704483 568.182007 786.609924 sc6mt astore ssl --0.731118 0.167232 -0.167232 -0.731118 552.929626 574.40918 sc4mt astore -0.731118 0.167232 -0.167232 -0.731118 552.929626 574.40918 sc5mt astore -13 -9 253 665 -0.731118 0.167232 -0.161139 -0.704483 568.182007 786.609924 sc6mt astore ssl --0.744916 -0.087182 0.087182 -0.744916 442.310516 473.09552 sc4mt astore -0.744916 -0.087182 0.087182 -0.744916 442.310516 473.09552 sc5mt astore 14 -7 239 673 -0.744916 -0.087182 0.087182 -0.744916 426.358429 780.545532 sc6mt astore ssl --0.744916 -0.087182 0.087182 -0.744916 442.310516 473.09552 sc4mt astore -0.744916 -0.087182 0.087182 -0.744916 442.310516 473.09552 sc5mt astore -13 -9 253 665 -0.744916 -0.087182 0.087182 -0.744916 426.358429 780.545532 sc6mt astore ssl -0.656329 0.362949 0.362949 -0.656329 -338.684814 537.180176 sc4mt astore 0.656329 0.362949 0.362949 -0.656329 -338.684814 537.180176 sc5mt astore 14 -7 239 673 0.656329 0.362949 0.362949 -0.656329 -311.524719 716.406921 sc6mt astore ssl -0.656329 0.362949 0.362949 -0.656329 -338.684814 537.180176 sc4mt astore 0.656329 0.362949 0.362949 -0.656329 -338.684814 537.180176 sc5mt astore -13 -9 253 665 0.656329 0.362949 0.362949 -0.656329 -311.524719 716.406921 sc6mt astore ssl -0.474273 -0.581004 0.581004 0.474273 349.885132 -102.43895 sc4mt astore 0.474273 -0.581004 0.581004 0.474273 349.885132 -102.43895 sc5mt astore 14 -7 239 673 0.474273 -0.581004 0.581004 0.474273 31.185272 123.685547 sc6mt astore ssl -0.474273 -0.581004 0.581004 0.474273 349.885132 -102.43895 sc4mt astore 0.474273 -0.581004 0.581004 0.474273 349.885132 -102.43895 sc5mt astore -13 -9 253 665 0.474273 -0.581004 0.581004 0.474273 31.185272 123.685547 sc6mt astore ssl -0.667424 -0.342119 0.342119 0.667424 288.503052 -279.422638 sc4mt astore 0.667424 -0.342119 0.342119 0.667424 288.503052 -279.422638 sc5mt astore 14 -7 239 673 0.667424 -0.342119 0.342119 0.667424 148.891953 -8.327736 sc6mt astore ssl -0.667424 -0.342119 0.342119 0.667424 288.503052 -279.422638 sc4mt astore 0.667424 -0.342119 0.342119 0.667424 288.503052 -279.422638 sc5mt astore -13 -9 253 665 0.667424 -0.342119 0.342119 0.667424 148.891953 -8.327736 sc6mt astore ssl -0.159702 -0.7328 0.7328 0.159702 20.030182 101.767296 sc4mt astore 0.159702 -0.7328 0.7328 0.159702 20.030182 101.767296 sc5mt astore 14 -7 239 673 0.159702 -0.7328 0.7328 0.159702 -31.580429 329.499329 sc6mt astore ssl -0.159702 -0.7328 0.7328 0.159702 20.030182 101.767296 sc4mt astore 0.159702 -0.7328 0.7328 0.159702 20.030182 101.767296 sc5mt astore -13 -9 253 665 0.159702 -0.7328 0.7328 0.159702 -31.580429 329.499329 sc6mt astore ssl --0.065001 -0.747178 0.747178 -0.065001 -18.130722 316.65155 sc4mt astore -0.065001 -0.747178 0.747178 -0.065001 -18.130722 316.65155 sc5mt astore 14 -7 239 673 -0.065001 -0.747178 0.747178 -0.065001 -42.07869 481.112122 sc6mt astore ssl --0.065001 -0.747178 0.747178 -0.065001 -18.130722 316.65155 sc4mt astore -0.065001 -0.747178 0.747178 -0.065001 -18.130722 316.65155 sc5mt astore -13 -9 253 665 -0.065001 -0.747178 0.747178 -0.065001 -42.07869 481.112122 sc6mt astore ssl --0.423067 -0.619285 0.619285 -0.423067 119.103729 478.333527 sc4mt astore -0.423067 -0.619285 0.619285 -0.423067 119.103729 478.333527 sc5mt astore 14 -7 239 673 -0.423067 -0.619285 0.619285 -0.423067 79.802742 692.340088 sc6mt astore ssl --0.423067 -0.619285 0.619285 -0.423067 119.103729 478.333527 sc4mt astore -0.423067 -0.619285 0.619285 -0.423067 119.103729 478.333527 sc5mt astore -13 -9 253 665 -0.423067 -0.619285 0.619285 -0.423067 79.802742 692.340088 sc6mt astore ssl -0.75 6.556708e-08 6.556708e-08 -0.75 252.239868 691.019958 sc4mt astore 0.75 6.556708e-08 6.556708e-08 -0.75 252.239868 691.019958 sc5mt astore 14 -7 239 673 0.75 6.556708e-08 6.556708e-08 -0.75 354.989868 894.269897 sc6mt astore ssl -0.75 6.556708e-08 6.556708e-08 -0.75 252.239868 691.019958 sc4mt astore 0.75 6.556708e-08 6.556708e-08 -0.75 252.239868 691.019958 sc5mt astore -13 -9 253 665 0.75 6.556708e-08 6.556708e-08 -0.75 354.989868 894.269897 sc6mt astore ssl -0.678186 0.320257 -0.320257 0.678186 489.123138 -304.008392 sc4mt astore 0.678186 0.320257 -0.320257 0.678186 489.123138 -304.008392 sc5mt astore 14 -7 239 673 0.788888 0.372533 -0.343778 0.727994 573.477478 -138.366364 sc6mt astore ssl -0.678186 0.320257 -0.320257 0.678186 489.123138 -304.008392 sc4mt astore 0.678186 0.320257 -0.320257 0.678186 489.123138 -304.008392 sc5mt astore -13 -9 253 665 0.788888 0.372533 -0.343778 0.727994 573.477478 -138.366364 sc6mt astore ssl -0.559539 0.499416 -0.499416 0.559539 701.021545 -161.570038 sc4mt astore 0.559539 0.499416 -0.499416 0.559539 701.021545 -161.570038 sc5mt astore 14 -7 239 673 0.559539 0.499416 -0.499416 0.559539 724.75647 -5.780929 sc6mt astore ssl -0.559539 0.499416 -0.499416 0.559539 701.021545 -161.570038 sc4mt astore 0.559539 0.499416 -0.499416 0.559539 701.021545 -161.570038 sc5mt astore -13 -9 253 665 0.559539 0.499416 -0.499416 0.559539 724.75647 -5.780929 sc6mt astore ssl -0.429163 0.615076 0.615076 -0.429163 -370.774078 289.443726 sc4mt astore 0.429163 0.615076 0.615076 -0.429163 -370.774078 289.443726 sc5mt astore 14 -7 239 673 0.429163 0.615076 0.615076 -0.429163 -399.53244 467.47522 sc6mt astore ssl -0.429163 0.615076 0.615076 -0.429163 -370.774078 289.443726 sc4mt astore 0.429163 0.615076 0.615076 -0.429163 -370.774078 289.443726 sc5mt astore -13 -9 253 665 0.429163 0.615076 0.615076 -0.429163 -399.53244 467.47522 sc6mt astore ssl -0.064217 -0.747246 0.747246 0.064217 -270.81781 467.737579 sc4mt astore 0.064217 -0.747246 0.747246 0.064217 -270.81781 467.737579 sc5mt astore 14 -7 239 673 0.064217 -0.747246 0.747246 0.064217 -361.842865 616.598633 sc6mt astore ssl -0.064217 -0.747246 0.747246 0.064217 -270.81781 467.737579 sc4mt astore 0.064217 -0.747246 0.747246 0.064217 -270.81781 467.737579 sc5mt astore -13 -9 253 665 0.064217 -0.747246 0.747246 0.064217 -361.842865 616.598633 sc6mt astore ssl -0.494022 -0.564307 0.564307 0.494022 -497.800781 176.304077 sc4mt astore 0.494022 -0.564307 0.564307 0.494022 -497.800781 176.304077 sc5mt astore 14 -7 239 673 0.388547 -0.443825 0.564307 0.494022 -359.879364 233.574448 sc6mt astore ssl -0.494022 -0.564307 0.564307 0.494022 -497.800781 176.304077 sc4mt astore 0.494022 -0.564307 0.564307 0.494022 -497.800781 176.304077 sc5mt astore -13 -9 253 665 0.388547 -0.443825 0.564307 0.494022 -359.879364 233.574448 sc6mt astore ssl -0.734415 -0.152102 -0.152102 -0.734415 130.351807 715.400391 sc4mt astore 0.734415 -0.152102 -0.152102 -0.734415 130.351807 715.400391 sc5mt astore 14 -7 239 673 0.734415 -0.152102 -0.152102 -0.734415 7.014052 939.928772 sc6mt astore ssl -0.734415 -0.152102 -0.152102 -0.734415 130.351807 715.400391 sc4mt astore 0.734415 -0.152102 -0.152102 -0.734415 130.351807 715.400391 sc5mt astore -13 -9 253 665 0.734415 -0.152102 -0.152102 -0.734415 7.014052 939.928772 sc6mt astore ssl -0.17246 0.729903 -0.729903 0.17246 592.426147 -213.447052 sc4mt astore 0.17246 0.729903 -0.729903 0.17246 592.426147 -213.447052 sc5mt astore 14 -7 239 673 0.17246 0.729903 -0.729903 0.17246 597.22522 24.429466 sc6mt astore ssl -0.17246 0.729903 -0.729903 0.17246 592.426147 -213.447052 sc4mt astore 0.17246 0.729903 -0.729903 0.17246 592.426147 -213.447052 sc5mt astore -13 -9 253 665 0.17246 0.729903 -0.729903 0.17246 597.22522 24.429466 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(a ) [20.015991 0 0 0] 243 137 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 74 250] dotx -(b ) [21.996002 0 0 0] 370 130 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 -229 136] dotx -(c ) [20.015999 0 0 0] 91 121 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 -32 267] dotx -(Q) [0 0] 172 57 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 246 361] dotx -/txtdraw true def -/txlndraw true def -(1 ) [20.015991 0 0 0] 200.007996 42.599998 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 246 361] dotx -/txtdraw true def -/txlndraw true def -(Q) [0 0] 322 63 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 -168 353] dotx -/txtdraw true def -/txlndraw true def -(2 ) [20.015991 0 0 0] 350.007996 48.599998 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 -168 353] dotx -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob08v2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob08v2.gif deleted file mode 100755 index 877c9b800..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob08v2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob10a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob10a.eps deleted file mode 100755 index 4ea0ea277..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob10a.eps +++ /dev/null @@ -1,1787 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad 6.0.1 -%%Title: prob1-2.eps -%%CreationDate: 5/9/1997 -%%DocumentProcSets: Adobe_packedarray 1.0 0 -%%DocumentSuppliedProcSets: Adobe_packedarray 1.0 0 -%%DocumentProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentProcSets: Adobe_cshow 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cshow 1.1 0 -%%DocumentProcSets: Adobe_customcolor 1.0 0 -%%DocumentSuppliedProcSets: Adobe_customcolor 1.0 0 -%%DocumentProcSets: Adobe_pattern 1.9 0 -%%DocumentSuppliedProcSets: Adobe_pattern 1.9 0 -%%DocumentProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentSuppliedProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentFonts: Times-Italic -%%+ Times-Roman -%%BoundingBox:109 463 465 647 -%%TemplateBox:306 396 306 396 -%%DocumentPreview: Header -%%EndComments - -%%BeginProlog -%%BeginProcSet: Adobe_packedarray 1.0 0 -userdict /Adobe_packedarray 5 dict dup begin put -/initialize -{ -/packedarray where - { - pop - } - { - Adobe_packedarray begin - Adobe_packedarray - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - } ifelse -} def -/terminate -{ -} def -/packedarray -{ -array astore readonly -} def -/setpacking -{ -pop -} def -/currentpacking -{ -false -} def -currentdict readonly pop end -%%EndProcSet -Adobe_packedarray /initialize get exec -%%BeginProcSet: Adobe_cmykcolor 1.1 0 -currentpacking true setpacking -userdict /Adobe_cmykcolor 4 dict dup begin put -/initialize -{ -/setcmykcolor where - { - pop - } - { - userdict /Adobe_cmykcolor_vars 2 dict dup begin put - /_setrgbcolor - /setrgbcolor load def - /_currentrgbcolor - /currentrgbcolor load def - Adobe_cmykcolor begin - Adobe_cmykcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - end - Adobe_cmykcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_cmykcolor eq - { - end - } if -} def -/setcmykcolor -{ -1 sub 4 1 roll -3 - { - 3 index add neg dup 0 lt - { - pop 0 - } if - 3 1 roll - } repeat -Adobe_cmykcolor_vars /_setrgbcolor get exec -pop -} def -/currentcmykcolor -{ -Adobe_cmykcolor_vars /_currentrgbcolor get exec -3 - { - 1 sub neg 3 1 roll - } repeat -0 -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_cshow 1.1 0 -currentpacking true setpacking -userdict /Adobe_cshow 3 dict dup begin put -/initialize -{ -/cshow where - { - pop - } - { - userdict /Adobe_cshow_vars 1 dict dup begin put - /_cshow - {} def - Adobe_cshow begin - Adobe_cshow - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - end - } ifelse -} def -/terminate -{ -} def -/cshow -{ -exch -Adobe_cshow_vars - exch /_cshow - exch put - { - 0 0 Adobe_cshow_vars /_cshow get exec - } forall -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_customcolor 1.0 0 -currentpacking true setpacking -userdict /Adobe_customcolor 5 dict dup begin put -/initialize -{ -/setcustomcolor where - { - pop - } - { - Adobe_customcolor begin - Adobe_customcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - Adobe_customcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_customcolor eq - { - end - } if -} def -/findcmykcustomcolor -{ -5 packedarray -} def -/setcustomcolor -{ -exch -aload pop pop -4 - { - 4 index mul 4 1 roll - } repeat -5 -1 roll pop -setcmykcolor -} def -/setoverprint -{ -pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_pattern 1.9 0 -currentpacking true setpacking -userdict /Adobe_pattern 14 dict dup begin put -/initialize -{ -/definepattern where - { - pop - } - { - Adobe_pattern begin - Adobe_pattern - { - dup xcheck - { - bind - } if - pop pop - } forall - mark - cachestatus 7 1 roll pop pop pop pop exch pop exch - { - { - 10000 add - dup 2 index gt - { - break - } if - dup setcachelimit - } loop - } stopped - cleartomark - } ifelse -} def -/terminate -{ -currentdict Adobe_pattern eq - { - end - } if -} def -errordict -/nocurrentpoint -{ -pop -stop -} put -errordict -/invalidaccess -{ -pop -stop -} put -/patternencoding -256 array def -0 1 255 -{ -patternencoding exch ( ) 2 copy exch 0 exch put cvn put -} for -/definepattern -{ -17 dict begin -/uniform exch def -/cache exch def -/key exch def -/procarray exch def -/mtx exch matrix invertmatrix def -/height exch def -/width exch def -/ctm matrix currentmatrix def -/ptm matrix def -/str 32 string def -/slice 9 dict def -slice /s 1 put -slice /q 256 procarray length div sqrt floor cvi put -slice /b 0 put -/FontBBox [0 0 0 0] def -/FontMatrix mtx matrix copy def -/Encoding patternencoding def -/FontType 3 def -/BuildChar - { - exch - begin - slice begin - dup q dup mul mod s idiv /i exch def - dup q dup mul mod s mod /j exch def - q dup mul idiv procarray exch get - /xl j width s div mul def - /xg j 1 add width s div mul def - /yl i height s div mul def - /yg i 1 add height s div mul def - uniform - { - 1 1 - } - { - width 0 dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - 0 height dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - } ifelse - width 0 cache - { - xl 4 index mul yl 4 index mul xg 6 index mul yg 6 index mul - setcachedevice - } - { - setcharwidth - } ifelse - gsave - scale - newpath - xl yl moveto - xg yl lineto - xg yg lineto - xl yg lineto - closepath - clip - newpath - end - end - exec - grestore - } def -key currentdict definefont -end -} def -/patterncachesize -{ -gsave -newpath -0 0 moveto -width 0 lineto -width height lineto -0 height lineto -closepath -patternmatrix setmatrix -pathbbox -exch ceiling 4 -1 roll floor sub 3 1 roll -ceiling exch floor sub -mul 1 add -grestore -} def -/patterncachelimit -{ -cachestatus 7 1 roll pop pop pop pop pop pop 8 mul -} def -/patternpath -{ -exch dup begin setfont -ctm setmatrix -concat -slice exch /b exch slice /q get dup mul mul put -FontMatrix concat -uniform - { - width 0 dtransform round width div exch round width div exch - 0 height dtransform round height div exch height div exch - 0 0 transform round exch round exch - ptm astore setmatrix - } - { - ptm currentmatrix pop - } ifelse -{currentpoint} stopped not - { - pop pop - pathbbox - true - 4 index 3 index eq - 4 index 3 index eq - and - { - pop false - { - {pop pop} - {pop pop pop true} - {pop pop pop pop pop pop pop true} - {pop true} - pathforall - } stopped - { - pop pop pop pop pop true - } if - } if - { - height div ceiling height mul 4 1 roll - width div ceiling width mul 4 1 roll - height div floor height mul 4 1 roll - width div floor width mul 4 1 roll - 2 index sub height div ceiling cvi exch - 3 index sub width div ceiling cvi exch - 4 2 roll moveto - FontMatrix mtx invertmatrix - dup dup 4 get exch 5 get rmoveto - ptm ptm concatmatrix pop - slice /s - patterncachesize patterncachelimit div ceiling sqrt ceiling cvi - dup slice /q get gt - { - pop slice /q get - } if - put - 0 1 slice /s get dup mul 1 sub - { - slice /b get add - gsave - 0 1 str length 1 sub - { - str exch 2 index put - } for - pop - dup - { - gsave - ptm setmatrix - 1 index str length idiv {str show} repeat - 1 index str length mod str exch 0 exch getinterval show - grestore - 0 height rmoveto - } repeat - grestore - } for - pop pop - } - { - pop pop pop pop - } ifelse - } if -end -} def -/patternclip -{ -clip -} def -/patternstrokepath -{ -strokepath -} def -/patternmatrix -matrix def -/patternfill -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternclip -Adobe_pattern /patternpath get exec -grestore -newpath -} def -/patternstroke -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternstrokepath -true - { - { - { - newpath - moveto - } - { - lineto - } - { - curveto - } - { - closepath - 3 copy - Adobe_pattern /patternfill get exec - } pathforall - pop pop pop - } stopped - { - pop pop pop pop pop - patternclip - Adobe_pattern /patternfill get exec - } if - } - { - patternclip - Adobe_pattern /patternfill get exec - } ifelse -grestore -newpath -} def -/patternashow -{ -3 index type /dicttype eq - { - Adobe_pattern /patternmatrix get 4 1 roll - } if - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 6 index 6 index 6 index - Adobe_pattern /patternfill get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop -} def -/patternashowstroke -{ -4 index type /dicttype eq - { - patternmatrix /patternmatrix get 5 1 roll - } if -4 1 roll - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - 7 index 7 index 7 index - Adobe_pattern /patternstroke get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_Illustrator88 1.19 0 -currentpacking true setpacking -userdict /Adobe_Illustrator88 73 dict dup begin put -/initialize -{ -userdict /Adobe_Illustrator88_vars 31 dict dup begin put -/_lp /none def -/_pf {} def -/_ps {} def -/_psf {} def -/_pss {} def -/_a null def -/_as null def -/_tt 2 array def -/_tl 2 array def -/_tm matrix def -/t {} def -/_gf null def -/_cf 4 array def -/_if null def -/_of false def -/_fc {} def -/_gs null def -/_cs 4 array def -/_is null def -/_os false def -/_sc {} def -/_pd 1 dict def -/_ed 15 dict def -/_pm matrix def -/_fm null def -/_fd null def -/_fdd null def -/_sm null def -/_sd null def -/_sdd null def -/_i null def -Adobe_Illustrator88 begin -Adobe_Illustrator88 dup /nc get begin - { - dup xcheck - { - bind - } if - pop pop - } forall -end -end -end -Adobe_Illustrator88 begin -Adobe_Illustrator88_vars begin -newpath -} def -/terminate -{ -end -end -} def -/_ -null def -/ddef -{ -Adobe_Illustrator88_vars 3 1 roll put -} def -/xput -{ -dup load dup length exch maxlength eq - { - dup dup load dup - length 2 mul dict copy def - } if -load begin def end -} def -/npop -{ - { - pop - } repeat -} def -/sw -{ -stringwidth -exch 5 -1 roll 3 index 1 sub mul add -4 1 roll 3 1 roll 1 sub mul add -} def -/ss -{ -3 -1 roll pop -4 1 roll - { - 2 npop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - stroke - grestore - moveto - 2 copy rmoveto - } exch cshow -3 npop -} def -/sp -{ -exch pop - { - 2 npop (0) exch - 2 copy 0 exch put pop - false charpath - 2 copy rmoveto - } exch cshow -2 npop -} def -/pl -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where -{ -pop true setstrokeadjust -/c -{ -curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll curveto -} def -/V -/v load def -/y -{ -2 copy curveto -} def -/Y -/y load def -/l -{ -lineto -} def -/L -/l load def -/m -{ -moveto -} def -} -{ -/c -{ -pl curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll pl curveto -} def -/V -/v load def -/y -{ -pl 2 copy curveto -} def -/Y -/y load def -/l -{ -pl lineto -} def -/L -/l load def -/m -{ -pl moveto -} def -} ifelse -/d -{ -setdash -} def -/cf -currentflat def -/i -{ -dup 0 eq - { - pop cf - } if -setflat -} def -/j -{ -setlinejoin -} def -/J -{ -setlinecap -} def -/M -{ -setmiterlimit -} def -/w -{ -setlinewidth -} def -/H -{} def -/h -{ -closepath -} def -/N -{ -newpath -} def -/n -/N load def -/F -{ -_pf -} def -/f -{ -closepath -F -} def -/S -{ -_ps -} def -/s -{ -closepath -S -} def -/B -{ -gsave F grestore -S -} def -/b -{ -closepath -B -} def -/W -{ -clip -} def -/ta -{ -_as moveto -_tt aload pop 4 -2 roll -} def -/tl -{ -_tl aload pop translate -} def -/as -{ -{ -0 0 -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg 2 div exch neg 2 div -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg exch neg -} -{ -0 0 -} -} cvlit def -/z -{ -/_a exch ddef -/_as as _a get ddef -_a 2 le - { - 0 _tt astore pop - 0 exch neg _tl astore pop - } - { - 0 exch neg _tt astore pop - neg 0 _tl astore pop - } ifelse -exch findfont exch scalefont setfont -} def -/tm -{ -_tm currentmatrix pop -concat -} def -/I -{ -tm -/t - { - ta sp - tl - } ddef -} def -/o -{ -tm -/t - { - ta 4 npop - tl - newpath - } ddef -} def -/e -{ -tm -/t - { - ta _psf - tl - newpath - } ddef -} def -/r -{ -tm -/t - { - ta _tm _pss - tl - newpath - } ddef -} def -/a -{ -tm -/t - { - 2 copy - ta _psf - newpath - ta _tm _pss - tl - newpath - } ddef -} def -/T -{ -_tm setmatrix -} def -/Z -{ -pop -findfont begin -currentdict dup length 1 add dict begin - { - 1 index /FID ne - { - def - } - { - 2 npop - } ifelse - } forall -/FontName exch def dup length 0 ne - { - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - { - Encoding 2 index 2 index put pop - 1 add - } - { - exch pop - } ifelse - } forall - } if pop -currentdict dup end end -/FontName get exch definefont pop -} def -/u -{} def -/U -{} def -/q -{ -gsave -} def -/Q -{ -grestore -} def -/` -{ -/_i save ddef -6 1 roll 4 npop -concat -userdict begin -/showpage {} def -false setoverprint -pop -} def -/~ -{ -end -_i restore -} def -/@ -{} def -/& -{} def -/O -{ -0 ne -/_of exch ddef -/_lp /none ddef -} def -/R -{ -0 ne -/_os exch ddef -/_lp /none ddef -} def -/g -{ -/_gf exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _gf setgray - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/G -{ -/_gs exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _gs setgray - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/k -{ -_cf astore pop -/_fc -{ -_lp /fill ne - { - _of setoverprint - _cf aload pop setcmykcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/K -{ -_cs astore pop -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _cs aload pop setcmykcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/x -{ -/_gf exch ddef -findcmykcustomcolor -/_if exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _if _gf 1 exch sub setcustomcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/X -{ -/_gs exch ddef -findcmykcustomcolor -/_is exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _is _gs 1 exch sub setcustomcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/dp -{ -dup null eq -{ -pop -_dp 0 ne - { - 0 1 _dp 1 sub _dl mod - { - _da exch get 3 get - } for - _dp 1 sub _dl mod 1 add packedarray - _da 0 get aload pop 8 -1 roll 5 -1 roll pop 4 1 roll - definepattern pop - } if -} -{ -_dp 0 ne _dp _dl mod 0 eq and - { - null dp - } if -7 packedarray _da exch _dp _dl mod exch put -_dp _dl mod _da 0 get 4 get 2 packedarray -/_dp _dp 1 add def -} ifelse -} def -/E -{ -_ed begin -dup 0 get type /arraytype ne - { - 0 - { - dup 1 add index type /arraytype eq - { - 1 add - } - { - exit - } ifelse - } loop - array astore - } if -/_dd exch def -/_ury exch def -/_urx exch def -/_lly exch def -/_llx exch def -/_n exch def -/_y 0 def -/_dl 4 def -/_dp 0 def -/_da _dl array def -0 1 _dd length 1 sub - { - /_d exch _dd exch get def - 0 2 _d length 2 sub - { - /_x exch def - /_c _d _x get _ ne def - /_r _d _x 1 add get cvlit def - _r _ ne - { - _urx _llx sub _ury _lly sub [1 0 0 1 0 0] - [ - /save cvx - _llx neg _lly neg /translate cvx - _c - { - nc /begin cvx - } if - _r dup type /stringtype eq - { - cvx - } - { - {exec} /forall cvx - } ifelse - _c - { - /end cvx - } if - /restore cvx - ] cvx - /_fn 12 _n length add string def - _y _fn cvs pop - /_y _y 1 add def - _fn 12 _n putinterval - _fn _c false dp - _d exch _x 1 add exch put - } if - } for - } for -null dp -_n _dd /_pd -end xput -} def -/fc -{ -_fm dup concatmatrix pop -} def -/p -{ -/_fm exch ddef -9 -2 roll _pm translate fc -7 -2 roll _pm scale fc -5 -1 roll _pm rotate fc -4 -2 roll exch 0 ne - { - dup _pm rotate fc - 1 -1 _pm scale fc - neg _pm rotate fc - } - { - pop - } ifelse -dup _pm rotate fc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore fc -neg _pm rotate fc -_pd exch get /_fdd exch ddef -/_pf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - patternfill - } - { - pop - fill - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_psf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - 10 copy 6 npop exch pop patternashow - } - { - pop - 7 copy 3 npop exch pop ashow - } ifelse - grestore - pop - } for - pop - } for -restore -4 npop newpath -} ddef -/_lp /none ddef -} def -/sc -{ -_sm dup concatmatrix pop -} def -/P -{ -/_sm exch ddef -9 -2 roll _pm translate sc -7 -2 roll _pm scale sc -5 -1 roll _pm rotate sc -4 -2 roll exch 0 ne - { - dup _pm rotate sc - 1 -1 _pm scale sc - neg _pm rotate sc - } - { - pop - } ifelse -dup _pm rotate sc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore sc -neg _pm rotate sc -_pd exch get /_sdd exch ddef -/_ps -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - patternstroke - } - { - pop stroke - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_pss -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - 11 copy 6 npop 3 -1 roll pop patternashowstroke - } - { - pop - 8 copy 3 npop ss - } ifelse - grestore - pop - } for - pop - } for -restore -5 npop newpath -} ddef -/_lp /none ddef -} def -/A -{ -pop -} def -/nc 3 dict def -nc begin -/setgray -{ -pop -} bind def -/setcmykcolor -{ -4 npop -} bind def -/setcustomcolor -{ -2 npop -} bind def -currentdict readonly pop end -currentdict readonly pop end -setpacking -%%EndProcSet -%%EndProlog - -%%BeginSetup -Adobe_cmykcolor /initialize get exec -Adobe_cshow /initialize get exec -Adobe_customcolor /initialize get exec -Adobe_pattern /initialize get exec -Adobe_Illustrator88 /initialize get exec -%%BeginEncoding: _Times-Italic Times-Italic -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Italic /Times-Italic 0 Z -%%EndEncoding -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman /Times-Roman 0 Z -%%EndEncoding - -%%EndSetup - -0 A -0 O -0 R -0 g -0 G -0 i 0 J 0 j 1 w 4 M [] 0 d -u -145 635 m -145 629.477 140.523 625 135 625 c -129.477 625 125 629.477 125 635 c -125 640.523 129.477 645 135 645 c -140.523 645 145 640.523 145 635 c -0 g F -U -u -144.496 635 m -144.496 629.755 140.245 625.504 135 625.504 c -129.755 625.504 125.504 629.755 125.504 635 c -125.504 640.245 129.755 644.496 135 644.496 c -140.245 644.496 144.496 640.245 144.496 635 c -1.008 w 0 G S -U -u -307 635 m -307 629.477 302.523 625 297 625 c -291.477 625 287 629.477 287 635 c -287 640.523 291.477 645 297 645 c -302.523 645 307 640.523 307 635 c -0 g F -U -u -306.496 635 m -306.496 629.755 302.245 625.504 297 625.504 c -291.755 625.504 287.504 629.755 287.504 635 c -287.504 640.245 291.755 644.496 297 644.496 c -302.245 644.496 306.496 640.245 306.496 635 c -1.008 w 0 G S -U -u -217 563 m -217 557.477 212.523 553 207 553 c -201.477 553 197 557.477 197 563 c -197 568.523 201.477 573 207 573 c -212.523 573 217 568.523 217 563 c -0 g F -U -u -216.496 563 m -216.496 557.755 212.245 553.504 207 553.504 c -201.755 553.504 197.504 557.755 197.504 563 c -197.504 568.245 201.755 572.496 207 572.496 c -212.245 572.496 216.496 568.245 216.496 563 c -1.008 w 0 G S -U -u -235 563 m -235 557.477 230.523 553 225 553 c -219.477 553 215 557.477 215 563 c -215 568.523 219.477 573 225 573 c -230.523 573 235 568.523 235 563 c -0 g F -U -u -234.496 563 m -234.496 557.755 230.245 553.504 225 553.504 c -219.755 553.504 215.504 557.755 215.504 563 c -215.504 568.245 219.755 572.496 225 572.496 c -230.245 572.496 234.496 568.245 234.496 563 c -1.008 w 0 G S -U -u -145 491 m -145 485.477 140.523 481 135 481 c -129.477 481 125 485.477 125 491 c -125 496.523 129.477 501 135 501 c -140.523 501 145 496.523 145 491 c -0 g F -U -u -144.496 491 m -144.496 485.755 140.245 481.504 135 481.504 c -129.755 481.504 125.504 485.755 125.504 491 c -125.504 496.245 129.755 500.496 135 500.496 c -140.245 500.496 144.496 496.245 144.496 491 c -1.008 w 0 G S -U -u -307 491 m -307 485.477 302.523 481 297 481 c -291.477 481 287 485.477 287 491 c -287 496.523 291.477 501 297 501 c -302.523 501 307 496.523 307 491 c -0 g F -U -u -306.496 491 m -306.496 485.755 302.245 481.504 297 481.504 c -291.755 481.504 287.504 485.755 287.504 491 c -287.504 496.245 291.755 500.496 297 500.496 c -302.245 500.496 306.496 496.245 306.496 491 c -1.008 w 0 G S -U -143.504 617.496 m -287.504 617.496 l -1.008 w 0 G S -u -134.471 617.529 m -143.471 614.529 L -143.471 617.529 L -143.471 620.529 L -134.471 617.529 L - -0 g F -U -u -134.504 617.496 m -143.504 614.496 L -143.504 617.496 L -143.504 620.496 L -134.504 617.496 L - -1.008 w 0 G s -U -u -296.471 617.529 m -287.471 614.529 L -287.471 617.529 L -287.471 620.529 L -296.471 617.529 L - -0 g F -U -u -296.504 617.496 m -287.504 614.496 L -287.504 617.496 L -287.504 620.496 L -296.504 617.496 L - -1.008 w 0 G s -U -143.504 473.496 m -287.504 473.496 l -1.008 w 0 G S -u -134.471 473.529 m -143.471 470.529 L -143.471 473.529 L -143.471 476.529 L -134.471 473.529 L - -0 g F -U -u -134.504 473.496 m -143.504 470.496 L -143.504 473.496 L -143.504 476.496 L -134.504 473.496 L - -1.008 w 0 G s -U -u -296.471 473.529 m -287.471 470.529 L -287.471 473.529 L -287.471 476.529 L -296.471 473.529 L - -0 g F -U -u -296.504 473.496 m -287.504 470.496 L -287.504 473.496 L -287.504 476.496 L -296.504 473.496 L - -1.008 w 0 G s -U -u -219.471 607.529 m -219.471 620.529 L -212.471 620.529 L -212.471 607.529 L -219.471 607.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 212.471 611.529 ]e -1 (r)t -T -u -219.471 464.529 m -219.471 477.529 L -212.471 477.529 L -212.471 464.529 L -219.471 464.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 212.471 468.529 ]e -1 (r)t -T -u -122.471 627.529 m -122.471 640.529 L -111.471 640.529 L -111.471 627.529 L -122.471 627.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 111.471 631.529 ]e -1 (Q)t -T -u -318.471 627.529 m -318.471 640.529 L -309.471 640.529 L -309.471 627.529 L -318.471 627.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 309.471 631.529 ]e -1 (q)t -T -u -463.471 628.529 m -463.471 641.529 L -363.471 641.529 L -363.471 628.529 L -463.471 628.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Roman 12 12 0 0 z -[1 0 0 1 363.471 632.529 ]e -21 (Initial Configuration)t -T -u -459.471 484.529 m -459.471 497.529 L -363.471 497.529 L -363.471 484.529 L -459.471 484.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Roman 12 12 0 0 z -[1 0 0 1 363.471 488.529 ]e -19 (Final Configuration)t -T -u -410.471 556.529 m -410.471 569.529 L -363.471 569.529 L -363.471 556.529 L -410.471 556.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Roman 12 12 0 0 z -[1 0 0 1 363.471 560.529 ]e -8 (Touching)t -T - -%%Trailer -Adobe_Illustrator88 /terminate get exec -Adobe_pattern /terminate get exec -Adobe_customcolor /terminate get exec -Adobe_cshow /terminate get exec -Adobe_cmykcolor /terminate get exec -Adobe_packedarray /terminate get exec -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob10a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob10a.gif deleted file mode 100755 index a0b347904..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype52/prob10a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob03a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob03a.eps deleted file mode 100755 index ba74847a0..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob03a.eps +++ /dev/null @@ -1,369 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 408 303 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Tue, Jul 9, 1996 1:10 PM -%%DocumentFonts: (atend) -%%EndComments -0 303 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -60.00 132.25 296.88 141.12 0.00 PaintRect -gsave 1.00 ps 60.50 132.75 296.38 140.62 FrameRect grestore -1 1 1 SetFore UseFore -186.62 60.50 186.62 128.50 0.00 PaintRect -0 0 0 SetFore UseFore -gsave 1.00 ps 187.12 61.00 186.12 128.00 FrameRect grestore -gsave 1.00 ps 176.75 59.00 176.75 132.25 2 CapLine grestore -gsave 1.00 ps 176.75 58.38 169.38 63.50 2 CapLine grestore -gsave 1.00 ps 176.75 58.38 184.25 63.50 2 CapLine grestore -gsave 1.00 ps 169.38 126.25 176.75 131.50 2 CapLine grestore -gsave 1.00 ps 185.00 125.62 177.62 130.75 2 CapLine grestore -173.50 50.88 180.12 56.88 0.00 PaintOval -gsave 1.00 ps 174.00 51.38 179.62 56.38 FrameOval grestore -1 1 1 SetFore UseFore -199.88 46.50 199.88 47.25 0.00 PaintOval -0 0 0 SetFore UseFore -gsave 1.00 ps 200.38 47.00 199.38 46.75 FrameOval grestore - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(d) 196.62 102.38 8.88 WS -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob03a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob03a.gif deleted file mode 100755 index 29bd49007..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob03a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob03b.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob03b.eps deleted file mode 100755 index db2c86873..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob03b.eps +++ /dev/null @@ -1,361 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 290 219 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Tue, Jul 9, 1996 10:08 AM -%%DocumentFonts: (atend) -%%EndComments -0 219 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -9.12 87.38 167.12 93.50 0.00 PaintRect -gsave 1.00 ps 9.62 87.88 166.62 93.00 FrameRect grestore -gsave 1.00 ps 168.50 90.12 256.00 90.12 2 CapLine grestore - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(d) 207.62 84.75 8.88 WS -257.88 88.38 262.50 92.38 0.00 PaintOval -gsave 1.00 ps 258.38 88.88 262.00 91.88 FrameOval grestore -gsave 1.00 ps 174.38 85.62 168.50 90.12 2 CapLine grestore -gsave 1.00 ps 256.00 90.62 250.12 95.12 2 CapLine grestore -gsave 1.00 ps 169.12 90.12 175.00 94.00 2 CapLine grestore -gsave 1.00 ps 250.12 85.62 256.00 89.50 2 CapLine grestore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob03b.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob03b.gif deleted file mode 100755 index 220e098d7..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob03b.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob04b.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob04b.eps deleted file mode 100755 index 07e8f4a89..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob04b.eps +++ /dev/null @@ -1,587 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 320 233 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Tue, Jul 9, 1996 10:12 AM -%%DocumentFonts: (atend) -%%EndComments -0 233 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1 1 1 SetFore UseFore -gsave -newpath 175.75 24.50 M -179.75 25.12 L -183.75 26.88 L -186.75 29.25 L -191.25 32.12 L -195.25 35.62 L -199.62 39.75 L -203.12 43.25 L -206.12 46.75 L -209.12 51.50 L -211.12 55.00 L -213.12 59.12 L -215.62 63.12 L -217.62 67.25 L -219.12 72.00 L -220.62 76.00 L -222.00 80.75 L -223.50 84.88 L -224.00 90.12 L -224.50 95.38 L -225.00 100.00 L -225.00 103.50 L -224.50 107.62 L -223.50 111.75 L -222.50 115.88 L -221.00 120.50 L -220.12 124.62 L -218.62 128.12 L -217.12 131.62 L -215.62 135.12 L -214.12 138.62 L -212.12 142.25 L -210.62 145.75 L -208.12 149.25 L -205.62 152.75 L -202.62 156.25 L -200.62 159.75 L -197.62 163.25 L -194.25 168.00 L -191.25 170.88 L -188.25 173.75 L -184.75 176.12 L -181.75 177.88 L -178.75 179.12 L -175.75 180.25 L -172.75 182.00 L -closepath 0.00 FillPath grestore -0 0 0 SetFore UseFore -gsave -newpath 175.75 24.50 M -179.75 25.12 L -183.75 26.88 L -186.75 29.25 L -191.25 32.12 L -195.25 35.62 L -199.62 39.75 L -203.12 43.25 L -206.12 46.75 L -209.12 51.50 L -211.12 55.00 L -213.12 59.12 L -215.62 63.12 L -217.62 67.25 L -219.12 72.00 L -220.62 76.00 L -222.00 80.75 L -223.50 84.88 L -224.00 90.12 L -224.50 95.38 L -225.00 100.00 L -225.00 103.50 L -224.50 107.62 L -223.50 111.75 L -222.50 115.88 L -221.00 120.50 L -220.12 124.62 L -218.62 128.12 L -217.12 131.62 L -215.62 135.12 L -214.12 138.62 L -212.12 142.25 L -210.62 145.75 L -208.12 149.25 L -205.62 152.75 L -202.62 156.25 L -200.62 159.75 L -197.62 163.25 L -194.25 168.00 L -191.25 170.88 L -188.25 173.75 L -184.75 176.12 L -181.75 177.88 L -178.75 179.12 L -175.75 180.25 L -172.75 182.00 L -1.00 ps mstroke grestore -1 1 1 SetFore UseFore -gsave -newpath 141.62 24.50 M -146.62 25.12 L -151.50 26.88 L -155.25 29.25 L -160.88 32.12 L -165.88 35.62 L -171.38 39.75 L -175.75 43.25 L -179.50 46.75 L -183.25 51.50 L -185.75 55.00 L -188.25 59.12 L -191.38 63.12 L -193.75 67.25 L -195.62 72.00 L -197.50 76.00 L -199.38 80.75 L -201.25 84.88 L -201.88 90.12 L -202.50 95.38 L -203.12 100.00 L -203.12 103.50 L -202.50 107.62 L -201.25 111.75 L -200.00 115.88 L -198.12 120.50 L -196.88 124.62 L -195.00 128.12 L -193.12 131.62 L -191.38 135.12 L -189.50 138.62 L -187.00 142.25 L -185.12 145.75 L -182.00 149.25 L -178.88 152.75 L -175.12 156.25 L -172.62 159.75 L -169.00 163.25 L -164.62 168.00 L -160.88 170.88 L -157.12 173.75 L -152.75 176.12 L -149.12 177.88 L -145.38 179.12 L -141.62 180.25 L -137.88 182.00 L -closepath 0.00 FillPath grestore -0 0 0 SetFore UseFore -gsave -newpath 141.62 24.50 M -146.62 25.12 L -151.50 26.88 L -155.25 29.25 L -160.88 32.12 L -165.88 35.62 L -171.38 39.75 L -175.75 43.25 L -179.50 46.75 L -183.25 51.50 L -185.75 55.00 L -188.25 59.12 L -191.38 63.12 L -193.75 67.25 L -195.62 72.00 L -197.50 76.00 L -199.38 80.75 L -201.25 84.88 L -201.88 90.12 L -202.50 95.38 L -203.12 100.00 L -203.12 103.50 L -202.50 107.62 L -201.25 111.75 L -200.00 115.88 L -198.12 120.50 L -196.88 124.62 L -195.00 128.12 L -193.12 131.62 L -191.38 135.12 L -189.50 138.62 L -187.00 142.25 L -185.12 145.75 L -182.00 149.25 L -178.88 152.75 L -175.12 156.25 L -172.62 159.75 L -169.00 163.25 L -164.62 168.00 L -160.88 170.88 L -157.12 173.75 L -152.75 176.12 L -149.12 177.88 L -145.38 179.12 L -141.62 180.25 L -137.88 182.00 L -1.00 ps mstroke grestore -gsave 1.00 ps 142.88 24.50 177.62 24.50 2 CapLine grestore -gsave 1.00 ps 137.25 182.62 172.00 182.62 2 CapLine grestore -gsave 1.00 ps 104.38 101.25 163.38 24.50 2 CapLine grestore -gsave 1.00 ps 104.38 101.75 157.12 182.62 2 CapLine grestore -gsave 1.00 ps 184.50 53.75 205.00 45.62 2 CapLine grestore -gsave 1.00 ps 187.00 57.88 207.50 49.75 2 CapLine grestore - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(ds) 212.62 45.12 16.88 WS -16.00 (_Helvetica) 0 F -(ds) 205.88 166.62 16.88 WS -gsave 1.00 ps 187.62 142.25 205.62 152.75 2 CapLine grestore -gsave 1.00 ps 184.50 145.75 202.50 156.25 2 CapLine grestore -16.00 (_Helvetica) 0 F -(r) 126.75 58.38 5.38 WS -1 1 1 SetFore UseFore -gsave -newpath 113.00 114.62 M -116.75 111.12 L -118.62 107.62 L -119.88 104.12 L -119.88 100.62 L -119.25 97.12 L -117.38 93.62 L -114.25 90.12 L -closepath 0.00 FillPath grestore -0 0 0 SetFore UseFore -gsave -newpath 113.00 114.62 M -116.75 111.12 L -118.62 107.62 L -119.88 104.12 L -119.88 100.62 L -119.25 97.12 L -117.38 93.62 L -114.25 90.12 L -1.00 ps mstroke grestore -gsave 1.00 ps 104.38 101.25 212.50 101.25 2 CapLine grestore -gsave 1.00 ps 113.62 90.12 113.00 94.75 2 CapLine grestore -gsave 1.00 ps 113.62 90.12 117.38 90.12 2 CapLine grestore -16.00 (_Helvetica) 0 F -(angle) 121.50 118.00 39.00 WS -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob04b.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob04b.gif deleted file mode 100755 index a3ad998e6..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob04b.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob06.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob06.eps deleted file mode 100755 index 2e29a3104..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob06.eps +++ /dev/null @@ -1,384 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 339 213 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Tue, Jul 9, 1996 10:13 AM -%%DocumentFonts: (atend) -%%EndComments -0 213 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -gsave 1.00 ps 77.50 77.88 144.00 22.00 2 CapLine grestore -gsave 1.00 ps 77.50 174.88 144.00 119.00 2 CapLine grestore -gsave 1.00 ps 76.75 77.88 76.75 174.88 2 CapLine grestore -gsave 1.00 ps 144.75 22.00 144.75 119.00 2 CapLine grestore -gsave 1.00 ps 13.38 91.38 203.75 91.38 2 CapLine grestore -gsave 1.00 ps 13.88 105.62 204.12 105.62 2 CapLine grestore -1 1 1 SetFore UseFore -201.88 91.38 207.75 106.00 0.00 PaintOval -0 0 0 SetFore UseFore -gsave 1.00 ps 202.38 91.88 207.25 105.50 FrameOval grestore -1 1 1 SetFore UseFore -10.62 91.38 16.50 106.00 0.00 PaintOval -0 0 0 SetFore UseFore -gsave 1.00 ps 11.12 91.88 16.00 105.50 FrameOval grestore - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(Q) 212.62 104.75 12.50 WS -16.00 (_Helvetica) 0 F -(P) 164.88 90.12 10.62 WS -16.00 (_Helvetica) 0 F -(+) 128.88 55.88 9.38 WS -16.00 (_Helvetica) 0 F -(+) 109.62 71.75 9.38 WS -16.00 (_Helvetica) 0 F -(+) 130.75 88.12 9.38 WS -16.00 (_Helvetica) 0 F -(+) 90.00 86.00 9.38 WS -16.00 (_Helvetica) 0 F -(+) 88.12 114.12 9.38 WS -16.00 (_Helvetica) 0 F -(+) 129.75 115.75 9.38 WS -16.00 (_Helvetica) 0 F -(+) 108.75 135.12 9.38 WS -16.00 (_Helvetica) 0 F -(+) 89.00 149.38 9.38 WS -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob06.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob06.gif deleted file mode 100755 index e0c409c81..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob06.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob09.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob09.eps deleted file mode 100755 index a3e69e598..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob09.eps +++ /dev/null @@ -1,513 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: prob5309.eps -%%CreationDate: 7/23/1996 -%%Pages: 0 -%%DocumentFonts: Helvetica -%%BoundingBox:-42 272 473 907 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica/Helvetica 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -7135.5 7225.5 m -7978.5 4412.5 L -35 slw 0 sg str -gr -gs -7978.5 4412.5 m -2928.5 1810.5 L -35 slw 0 sg str -gr -gs -2928.5 1810.5 m -2739.5 3813.5 L -35 slw 0 sg str -gr -gs -2739.5 3813.5 m -7135.5 7225.5 L -35 slw 0 sg str -gr -gs -2966.5 8812.5 m -3400.5 5387.5 L -35 slw 0 sg str -gr -gs -3400.5 5387.5 m --475.5 1906.5 L -35 slw 0 sg str -gr -gs --475.5 1906.5 m --415.5 4216.5 L -35 slw 0 sg str -gr -gs --415.5 4216.5 m -2966.5 8812.5 L -35 slw 0 sg str -gr -gs -3400.5 5387.5 m --475.5 1906.5 L -35 slw 0 sg str -gr -gs --475.5 1906.5 m -2928.5 1810.5 L -35 slw 0 sg str -gr -gs -2928.5 1810.5 m -7978.5 4412.5 L -35 slw 0 sg str -gr -gs -7978.5 4412.5 m -3400.5 5387.5 L -35 slw 0 sg str -gr -gs -2966.5 8812.5 m --415.5 4216.5 L -35 slw 0 sg str -gr -gs --415.5 4216.5 m -2739.5 3813.5 L -35 slw 0 sg str -gr -gs -2739.5 3813.5 m -7135.5 7225.5 L -35 slw 0 sg str -gr -gs -7135.5 7225.5 m -2966.5 8812.5 L -35 slw 0 sg str -gr -gs --415.5 4216.5 m --475.5 1906.5 L -35 slw 0 sg str -gr -gs --475.5 1906.5 m -2928.5 1810.5 L -35 slw 0 sg str -gr -gs -2928.5 1810.5 m -2739.5 3813.5 L -35 slw 0 sg str -gr -gs -2739.5 3813.5 m --415.5 4216.5 L -35 slw 0 sg str -gr -gs -2966.5 8812.5 m -3400.5 5387.5 L -35 slw 0 sg str -gr -gs -3400.5 5387.5 m -7978.5 4412.5 L -35 slw 0 sg str -gr -gs -7978.5 4412.5 m -7135.5 7225.5 L -35 slw 0 sg str -gr -gs -7135.5 7225.5 m -2966.5 8812.5 L -35 slw 0 sg str -gr -gs -3125.5 -1745.5 m -3125.5 3723.5 L -35 slw 0 sg str -gr -gs -2337 2465 3914 4043 OV -1 sg fill -gr -gs -2337.5 2465.5 3914.5 4043.5 OV -35 slw 0 sg str -gr -gs -5916 3621 6124 4003 R -1 sg fill -gr -/_Helvetica ff [312 0 0 -312 0 0] mf sf -5916 3933 m 0 sg (+) show -gs -6511 5407 6719 5789 R -1 sg fill -gr -6511 5719 m 0 sg (+) show -gs -4427 5875 4532 6258 R -1 sg fill -gr -4427 6187 m 0 sg (+) show -gs -1302 2125 1406 2508 R -1 sg fill -gr -1302 2437 m 0 sg (+) show -gs -2136 6344 2344 6726 R -1 sg fill -gr -2136 6656 m 0 sg (+) show -gs -1511 4938 1719 5320 R -1 sg fill -gr -1511 5250 m 0 sg (+) show -gs -521 4157 729 4539 R -1 sg fill -gr -521 4469 m 0 sg (+) show -gs -4167 7403 4375 7785 R -1 sg fill -gr -4167 7715 m 0 sg (+) show -gs --52 2559 156 2941 R -1 sg fill -gr --52 2871 m 0 sg (+) show -gs -4844 3966 5052 4348 R -1 sg fill -gr -4844 4278 m 0 sg (+) show -gs -2907 3025 3150 3459 R -1 sg fill -gr -/_Helvetica ff [347 0 0 -347 0 0] mf sf -2907 3372 m 0 sg (-) show -gs -3529 3130 3772 3564 R -1 sg fill -gr -3529 3477 m 0 sg (-) show -gs -2907 3459 3150 3893 R -1 sg fill -gr -2907 3806 m 0 sg (-) show -gs -3334 2808 3438 3242 R -1 sg fill -gr -3334 3155 m 0 sg (-) show -gs -3160 3506 3403 3940 R -1 sg fill -gr -3160 3853 m 0 sg (-) show -gs -2907 2568 3150 3002 R -1 sg fill -gr -2907 2915 m 0 sg (-) show -gs -2379 3025 2622 3459 R -1 sg fill -gr -2379 3372 m 0 sg (-) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob09.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob09.gif deleted file mode 100755 index 2803de52d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob09.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob10a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob10a.eps deleted file mode 100755 index b4880cae2..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob10a.eps +++ /dev/null @@ -1,501 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: 5310.eps -%%CreationDate: 6/5/1996 -%%Pages: 0 -%%DocumentFonts: Helvetica -%%BoundingBox:232 365 414 498 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica/Helvetica 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -5099 6548 5123 6637 5131 6728 5123 6819 5099 6907 5061 6989 5008 7065 4944 7129 -4869 7181 4786 7220 4698 7244 4607 7252 4516 7244 4428 7220 4345 7181 4270 7129 -4206 7065 4153 6989 4115 6907 4091 6819 4083 6728 4091 6637 4115 6548 4153 6465 -4206 6391 4270 6326 4345 6274 4428 6235 4516 6212 4607 6204 4698 6212 4786 6235 -4869 6274 4944 6326 5008 6391 5061 6465 5099 6548 36 P closepath -1 sg fill -gr -gs -5099 6548 5123 6637 5131 6728 5123 6819 5099 6907 5061 6989 5008 7065 4944 7129 -4869 7181 4786 7220 4698 7244 4607 7252 4516 7244 4428 7220 4345 7181 4270 7129 -4206 7065 4153 6989 4115 6907 4091 6819 4083 6728 4091 6637 4115 6548 4153 6465 -4206 6391 4270 6326 4345 6274 4428 6235 4516 6212 4607 6204 4698 6212 4786 6235 -4869 6274 4944 6326 5008 6391 5061 6465 5099 6548 36 P closepath -1.25 slw 0 sg str -gr -gs -4298 6423 4923 7048 OV -1 sg fill -gr -gs -4298.625 6423.625 4923.375 7048.375 OV -1.25 slw 0 sg str -gr -gs -4365.625 6264.625 m -6173.625 5329.625 L -1.25 slw 0 sg str -gr -gs -4848.625 7191.625 m -6954.625 6110.625 L -1.25 slw 0 sg str -gr -gs -4767.625 6989.625 m -6486.625 6110.625 L -1.25 slw 0 sg str -gr -gs -4454.625 6423.625 m -6017.625 5641.625 L -1.25 slw 0 sg str -gr -gs -4610.625 6735.625 m -6955.625 5485.625 L -1.25 slw 0 sg str -gr -gs -6017 5641 6041 5641 6059 5647 6077 5653 6095 5659 6119 5665 6143 5665 6167 5671 -6185 5689 6197 5707 6209 5719 6221 5731 6239 5737 6257 5743 6275 5749 6287 5761 -6299 5773 6323 5785 6366 5791 6389 5797 6420 5797 6431 5815 6431 5839 6426 5869 -6426 5893 6438 5905 6456 5923 6474 5935 6486 5959 6486 5983 6492 6001 6504 6014 -6510 6032 6516 6050 6522 6068 6516 6086 6510 6104 36 P -1.25 slw 0 sg str -gr -gs -6173 5329 6191 5334 6209 5340 6221 5352 6245 5352 6269 5364 6305 5382 6335 5400 -6359 5406 6377 5412 6395 5424 6413 5430 6444 5436 6474 5436 6504 5448 6528 5448 -6564 5454 6576 5472 6588 5490 6600 5514 6612 5526 6648 5551 6666 5556 6684 5569 -6702 5580 6720 5598 6738 5611 6750 5634 6768 5653 6786 5677 6786 5701 6792 5737 -6798 5755 6811 5773 6822 5791 6840 5821 6852 5839 6858 5857 6852 5893 6852 5917 -6865 5935 6883 5947 6907 5959 6919 5971 6943 5983 6961 5996 6973 6014 6985 6025 -6979 6050 6967 6074 6961 6092 6955 6110 51 P -1.25 slw 0 sg str -gr -gs -5626.625 5837.625 m -5784.625 6110.625 L -1.25 slw 0 sg str -gr -gs -5817 5867 5904 6041 R -1 sg fill -gr -/_Helvetica ff [156 0 0 -156 0 0] mf sf -5817 6005 m 0 sg (a) show -gs -5269.625 5797.625 m -5543.625 6270.625 L -1.25 slw 0 sg str -gr -gs -5348 6023 5435 6197 R -1 sg fill -gr -5348 6161 m 1.56 slw 0 sg (b) show -gs -5218 6667 5253 6841 R -1 sg fill -gr -5218 6805 m 1.56 slw 0 sg (-) show -gs -5826 5711 5860 5884 R -1 sg fill -gr -5826 5849 m 1.56 slw 0 sg (-) show -gs -5062 6023 5097 6197 R -1 sg fill -gr -5062 6161 m 1.56 slw 0 sg (-) show -gs -5766 6362 5801 6536 R -1 sg fill -gr -5766 6500 m 1.56 slw 0 sg (-) show -gs -5531 6518 5565 6692 R -1 sg fill -gr -5531 6656 m 1.56 slw 0 sg (-) show -gs -6951 5404 7037 5577 R -1 sg fill -gr -6951 5542 m 1.56 slw 0 sg (+) show -gs -6442 5711 6529 5884 R -1 sg fill -gr -6442 5849 m 1.56 slw 0 sg (+) show -gs -5973 5867 6017 6041 R -1 sg fill -gr -5973 6005 m 1.56 slw 0 sg (+) show -gs -5192 6336 5279 6509 R -1 sg fill -gr -5192 6474 m 1.56 slw 0 sg (+) show -gs -4723 6492 4810 6666 R -1 sg fill -gr -4723 6630 m 1.56 slw 0 sg (+) show -gs -5513 5818 5548 5992 R -1 sg fill -gr -5513 5956 m 1.56 slw 0 sg (-) show -gs -6451 6023 6486 6197 R -1 sg fill -gr -6451 6161 m 1.56 slw 0 sg (-) show -gs -6156 6180 6190 6353 R -1 sg fill -gr -6156 6318 m 1.56 slw 0 sg (-) show -gs -4454 6492 4472 6666 R -1 sg fill -gr -4454 6630 m 1.56 slw 0 sg (-) show -gs -4437 6961 4472 7134 R -1 sg fill -gr -4437 7099 m 1.56 slw 0 sg (-) show -gs -4567 6023 4654 6197 R -1 sg fill -gr -4567 6161 m 1.56 slw 0 sg (+) show -gs -4880 5867 4966 6041 R -1 sg fill -gr -4880 6005 m 1.56 slw 0 sg (+) show -gs -5973 5242 6060 5416 R -1 sg fill -gr -5973 5380 m 1.56 slw 0 sg (+) show -gs -5661 5398 5748 5572 R -1 sg fill -gr -5661 5536 m 1.56 slw 0 sg (+) show -gs -6755 6180 6841 6353 R -1 sg fill -gr -6755 6318 m 1.56 slw 0 sg (+) show -gs -6286 6336 6373 6509 R -1 sg fill -gr -6286 6474 m 1.56 slw 0 sg (+) show -gs -5817 6648 5904 6822 R -1 sg fill -gr -5817 6786 m 1.56 slw 0 sg (+) show -gs -5192 6961 5279 7134 R -1 sg fill -gr -5192 7099 m 1.56 slw 0 sg (+) show -gs -5235 5624 5322 5798 R -1 sg fill -gr -5235 5762 m 1.56 slw 0 sg (+) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob10a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob10a.gif deleted file mode 100755 index c7d4e14d3..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob10a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob11a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob11a.eps deleted file mode 100755 index e7438790e..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob11a.eps +++ /dev/null @@ -1,1704 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad 6.0.1 -%%Title: hw01prob16.eps -%%CreationDate: 9/10/1997 -%%DocumentProcSets: Adobe_packedarray 1.0 0 -%%DocumentSuppliedProcSets: Adobe_packedarray 1.0 0 -%%DocumentProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentProcSets: Adobe_cshow 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cshow 1.1 0 -%%DocumentProcSets: Adobe_customcolor 1.0 0 -%%DocumentSuppliedProcSets: Adobe_customcolor 1.0 0 -%%DocumentProcSets: Adobe_pattern 1.9 0 -%%DocumentSuppliedProcSets: Adobe_pattern 1.9 0 -%%DocumentProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentSuppliedProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentFonts: Helvetica -%%+ Palatino-Roman -%%BoundingBox:179 285 587 730 -%%TemplateBox:306 396 306 396 -%%DocumentPreview: Header -%%EndComments - -%%BeginProlog -%%BeginProcSet: Adobe_packedarray 1.0 0 -userdict /Adobe_packedarray 5 dict dup begin put -/initialize -{ -/packedarray where - { - pop - } - { - Adobe_packedarray begin - Adobe_packedarray - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - } ifelse -} def -/terminate -{ -} def -/packedarray -{ -array astore readonly -} def -/setpacking -{ -pop -} def -/currentpacking -{ -false -} def -currentdict readonly pop end -%%EndProcSet -Adobe_packedarray /initialize get exec -%%BeginProcSet: Adobe_cmykcolor 1.1 0 -currentpacking true setpacking -userdict /Adobe_cmykcolor 4 dict dup begin put -/initialize -{ -/setcmykcolor where - { - pop - } - { - userdict /Adobe_cmykcolor_vars 2 dict dup begin put - /_setrgbcolor - /setrgbcolor load def - /_currentrgbcolor - /currentrgbcolor load def - Adobe_cmykcolor begin - Adobe_cmykcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - end - Adobe_cmykcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_cmykcolor eq - { - end - } if -} def -/setcmykcolor -{ -1 sub 4 1 roll -3 - { - 3 index add neg dup 0 lt - { - pop 0 - } if - 3 1 roll - } repeat -Adobe_cmykcolor_vars /_setrgbcolor get exec -pop -} def -/currentcmykcolor -{ -Adobe_cmykcolor_vars /_currentrgbcolor get exec -3 - { - 1 sub neg 3 1 roll - } repeat -0 -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_cshow 1.1 0 -currentpacking true setpacking -userdict /Adobe_cshow 3 dict dup begin put -/initialize -{ -/cshow where - { - pop - } - { - userdict /Adobe_cshow_vars 1 dict dup begin put - /_cshow - {} def - Adobe_cshow begin - Adobe_cshow - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - end - } ifelse -} def -/terminate -{ -} def -/cshow -{ -exch -Adobe_cshow_vars - exch /_cshow - exch put - { - 0 0 Adobe_cshow_vars /_cshow get exec - } forall -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_customcolor 1.0 0 -currentpacking true setpacking -userdict /Adobe_customcolor 5 dict dup begin put -/initialize -{ -/setcustomcolor where - { - pop - } - { - Adobe_customcolor begin - Adobe_customcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - Adobe_customcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_customcolor eq - { - end - } if -} def -/findcmykcustomcolor -{ -5 packedarray -} def -/setcustomcolor -{ -exch -aload pop pop -4 - { - 4 index mul 4 1 roll - } repeat -5 -1 roll pop -setcmykcolor -} def -/setoverprint -{ -pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_pattern 1.9 0 -currentpacking true setpacking -userdict /Adobe_pattern 14 dict dup begin put -/initialize -{ -/definepattern where - { - pop - } - { - Adobe_pattern begin - Adobe_pattern - { - dup xcheck - { - bind - } if - pop pop - } forall - mark - cachestatus 7 1 roll pop pop pop pop exch pop exch - { - { - 10000 add - dup 2 index gt - { - break - } if - dup setcachelimit - } loop - } stopped - cleartomark - } ifelse -} def -/terminate -{ -currentdict Adobe_pattern eq - { - end - } if -} def -errordict -/nocurrentpoint -{ -pop -stop -} put -errordict -/invalidaccess -{ -pop -stop -} put -/patternencoding -256 array def -0 1 255 -{ -patternencoding exch ( ) 2 copy exch 0 exch put cvn put -} for -/definepattern -{ -17 dict begin -/uniform exch def -/cache exch def -/key exch def -/procarray exch def -/mtx exch matrix invertmatrix def -/height exch def -/width exch def -/ctm matrix currentmatrix def -/ptm matrix def -/str 32 string def -/slice 9 dict def -slice /s 1 put -slice /q 256 procarray length div sqrt floor cvi put -slice /b 0 put -/FontBBox [0 0 0 0] def -/FontMatrix mtx matrix copy def -/Encoding patternencoding def -/FontType 3 def -/BuildChar - { - exch - begin - slice begin - dup q dup mul mod s idiv /i exch def - dup q dup mul mod s mod /j exch def - q dup mul idiv procarray exch get - /xl j width s div mul def - /xg j 1 add width s div mul def - /yl i height s div mul def - /yg i 1 add height s div mul def - uniform - { - 1 1 - } - { - width 0 dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - 0 height dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - } ifelse - width 0 cache - { - xl 4 index mul yl 4 index mul xg 6 index mul yg 6 index mul - setcachedevice - } - { - setcharwidth - } ifelse - gsave - scale - newpath - xl yl moveto - xg yl lineto - xg yg lineto - xl yg lineto - closepath - clip - newpath - end - end - exec - grestore - } def -key currentdict definefont -end -} def -/patterncachesize -{ -gsave -newpath -0 0 moveto -width 0 lineto -width height lineto -0 height lineto -closepath -patternmatrix setmatrix -pathbbox -exch ceiling 4 -1 roll floor sub 3 1 roll -ceiling exch floor sub -mul 1 add -grestore -} def -/patterncachelimit -{ -cachestatus 7 1 roll pop pop pop pop pop pop 8 mul -} def -/patternpath -{ -exch dup begin setfont -ctm setmatrix -concat -slice exch /b exch slice /q get dup mul mul put -FontMatrix concat -uniform - { - width 0 dtransform round width div exch round width div exch - 0 height dtransform round height div exch height div exch - 0 0 transform round exch round exch - ptm astore setmatrix - } - { - ptm currentmatrix pop - } ifelse -{currentpoint} stopped not - { - pop pop - pathbbox - true - 4 index 3 index eq - 4 index 3 index eq - and - { - pop false - { - {pop pop} - {pop pop pop true} - {pop pop pop pop pop pop pop true} - {pop true} - pathforall - } stopped - { - pop pop pop pop pop true - } if - } if - { - height div ceiling height mul 4 1 roll - width div ceiling width mul 4 1 roll - height div floor height mul 4 1 roll - width div floor width mul 4 1 roll - 2 index sub height div ceiling cvi exch - 3 index sub width div ceiling cvi exch - 4 2 roll moveto - FontMatrix mtx invertmatrix - dup dup 4 get exch 5 get rmoveto - ptm ptm concatmatrix pop - slice /s - patterncachesize patterncachelimit div ceiling sqrt ceiling cvi - dup slice /q get gt - { - pop slice /q get - } if - put - 0 1 slice /s get dup mul 1 sub - { - slice /b get add - gsave - 0 1 str length 1 sub - { - str exch 2 index put - } for - pop - dup - { - gsave - ptm setmatrix - 1 index str length idiv {str show} repeat - 1 index str length mod str exch 0 exch getinterval show - grestore - 0 height rmoveto - } repeat - grestore - } for - pop pop - } - { - pop pop pop pop - } ifelse - } if -end -} def -/patternclip -{ -clip -} def -/patternstrokepath -{ -strokepath -} def -/patternmatrix -matrix def -/patternfill -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternclip -Adobe_pattern /patternpath get exec -grestore -newpath -} def -/patternstroke -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternstrokepath -true - { - { - { - newpath - moveto - } - { - lineto - } - { - curveto - } - { - closepath - 3 copy - Adobe_pattern /patternfill get exec - } pathforall - pop pop pop - } stopped - { - pop pop pop pop pop - patternclip - Adobe_pattern /patternfill get exec - } if - } - { - patternclip - Adobe_pattern /patternfill get exec - } ifelse -grestore -newpath -} def -/patternashow -{ -3 index type /dicttype eq - { - Adobe_pattern /patternmatrix get 4 1 roll - } if - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 6 index 6 index 6 index - Adobe_pattern /patternfill get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop -} def -/patternashowstroke -{ -4 index type /dicttype eq - { - patternmatrix /patternmatrix get 5 1 roll - } if -4 1 roll - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - 7 index 7 index 7 index - Adobe_pattern /patternstroke get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_Illustrator88 1.19 0 -currentpacking true setpacking -userdict /Adobe_Illustrator88 73 dict dup begin put -/initialize -{ -userdict /Adobe_Illustrator88_vars 31 dict dup begin put -/_lp /none def -/_pf {} def -/_ps {} def -/_psf {} def -/_pss {} def -/_a null def -/_as null def -/_tt 2 array def -/_tl 2 array def -/_tm matrix def -/t {} def -/_gf null def -/_cf 4 array def -/_if null def -/_of false def -/_fc {} def -/_gs null def -/_cs 4 array def -/_is null def -/_os false def -/_sc {} def -/_pd 1 dict def -/_ed 15 dict def -/_pm matrix def -/_fm null def -/_fd null def -/_fdd null def -/_sm null def -/_sd null def -/_sdd null def -/_i null def -Adobe_Illustrator88 begin -Adobe_Illustrator88 dup /nc get begin - { - dup xcheck - { - bind - } if - pop pop - } forall -end -end -end -Adobe_Illustrator88 begin -Adobe_Illustrator88_vars begin -newpath -} def -/terminate -{ -end -end -} def -/_ -null def -/ddef -{ -Adobe_Illustrator88_vars 3 1 roll put -} def -/xput -{ -dup load dup length exch maxlength eq - { - dup dup load dup - length 2 mul dict copy def - } if -load begin def end -} def -/npop -{ - { - pop - } repeat -} def -/sw -{ -stringwidth -exch 5 -1 roll 3 index 1 sub mul add -4 1 roll 3 1 roll 1 sub mul add -} def -/ss -{ -3 -1 roll pop -4 1 roll - { - 2 npop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - stroke - grestore - moveto - 2 copy rmoveto - } exch cshow -3 npop -} def -/sp -{ -exch pop - { - 2 npop (0) exch - 2 copy 0 exch put pop - false charpath - 2 copy rmoveto - } exch cshow -2 npop -} def -/pl -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where -{ -pop true setstrokeadjust -/c -{ -curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll curveto -} def -/V -/v load def -/y -{ -2 copy curveto -} def -/Y -/y load def -/l -{ -lineto -} def -/L -/l load def -/m -{ -moveto -} def -} -{ -/c -{ -pl curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll pl curveto -} def -/V -/v load def -/y -{ -pl 2 copy curveto -} def -/Y -/y load def -/l -{ -pl lineto -} def -/L -/l load def -/m -{ -pl moveto -} def -} ifelse -/d -{ -setdash -} def -/cf -currentflat def -/i -{ -dup 0 eq - { - pop cf - } if -setflat -} def -/j -{ -setlinejoin -} def -/J -{ -setlinecap -} def -/M -{ -setmiterlimit -} def -/w -{ -setlinewidth -} def -/H -{} def -/h -{ -closepath -} def -/N -{ -newpath -} def -/n -/N load def -/F -{ -_pf -} def -/f -{ -closepath -F -} def -/S -{ -_ps -} def -/s -{ -closepath -S -} def -/B -{ -gsave F grestore -S -} def -/b -{ -closepath -B -} def -/W -{ -clip -} def -/ta -{ -_as moveto -_tt aload pop 4 -2 roll -} def -/tl -{ -_tl aload pop translate -} def -/as -{ -{ -0 0 -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg 2 div exch neg 2 div -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg exch neg -} -{ -0 0 -} -} cvlit def -/z -{ -/_a exch ddef -/_as as _a get ddef -_a 2 le - { - 0 _tt astore pop - 0 exch neg _tl astore pop - } - { - 0 exch neg _tt astore pop - neg 0 _tl astore pop - } ifelse -exch findfont exch scalefont setfont -} def -/tm -{ -_tm currentmatrix pop -concat -} def -/I -{ -tm -/t - { - ta sp - tl - } ddef -} def -/o -{ -tm -/t - { - ta 4 npop - tl - newpath - } ddef -} def -/e -{ -tm -/t - { - ta _psf - tl - newpath - } ddef -} def -/r -{ -tm -/t - { - ta _tm _pss - tl - newpath - } ddef -} def -/a -{ -tm -/t - { - 2 copy - ta _psf - newpath - ta _tm _pss - tl - newpath - } ddef -} def -/T -{ -_tm setmatrix -} def -/Z -{ -pop -findfont begin -currentdict dup length 1 add dict begin - { - 1 index /FID ne - { - def - } - { - 2 npop - } ifelse - } forall -/FontName exch def dup length 0 ne - { - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - { - Encoding 2 index 2 index put pop - 1 add - } - { - exch pop - } ifelse - } forall - } if pop -currentdict dup end end -/FontName get exch definefont pop -} def -/u -{} def -/U -{} def -/q -{ -gsave -} def -/Q -{ -grestore -} def -/` -{ -/_i save ddef -6 1 roll 4 npop -concat -userdict begin -/showpage {} def -false setoverprint -pop -} def -/~ -{ -end -_i restore -} def -/@ -{} def -/& -{} def -/O -{ -0 ne -/_of exch ddef -/_lp /none ddef -} def -/R -{ -0 ne -/_os exch ddef -/_lp /none ddef -} def -/g -{ -/_gf exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _gf setgray - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/G -{ -/_gs exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _gs setgray - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/k -{ -_cf astore pop -/_fc -{ -_lp /fill ne - { - _of setoverprint - _cf aload pop setcmykcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/K -{ -_cs astore pop -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _cs aload pop setcmykcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/x -{ -/_gf exch ddef -findcmykcustomcolor -/_if exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _if _gf 1 exch sub setcustomcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/X -{ -/_gs exch ddef -findcmykcustomcolor -/_is exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _is _gs 1 exch sub setcustomcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/dp -{ -dup null eq -{ -pop -_dp 0 ne - { - 0 1 _dp 1 sub _dl mod - { - _da exch get 3 get - } for - _dp 1 sub _dl mod 1 add packedarray - _da 0 get aload pop 8 -1 roll 5 -1 roll pop 4 1 roll - definepattern pop - } if -} -{ -_dp 0 ne _dp _dl mod 0 eq and - { - null dp - } if -7 packedarray _da exch _dp _dl mod exch put -_dp _dl mod _da 0 get 4 get 2 packedarray -/_dp _dp 1 add def -} ifelse -} def -/E -{ -_ed begin -dup 0 get type /arraytype ne - { - 0 - { - dup 1 add index type /arraytype eq - { - 1 add - } - { - exit - } ifelse - } loop - array astore - } if -/_dd exch def -/_ury exch def -/_urx exch def -/_lly exch def -/_llx exch def -/_n exch def -/_y 0 def -/_dl 4 def -/_dp 0 def -/_da _dl array def -0 1 _dd length 1 sub - { - /_d exch _dd exch get def - 0 2 _d length 2 sub - { - /_x exch def - /_c _d _x get _ ne def - /_r _d _x 1 add get cvlit def - _r _ ne - { - _urx _llx sub _ury _lly sub [1 0 0 1 0 0] - [ - /save cvx - _llx neg _lly neg /translate cvx - _c - { - nc /begin cvx - } if - _r dup type /stringtype eq - { - cvx - } - { - {exec} /forall cvx - } ifelse - _c - { - /end cvx - } if - /restore cvx - ] cvx - /_fn 12 _n length add string def - _y _fn cvs pop - /_y _y 1 add def - _fn 12 _n putinterval - _fn _c false dp - _d exch _x 1 add exch put - } if - } for - } for -null dp -_n _dd /_pd -end xput -} def -/fc -{ -_fm dup concatmatrix pop -} def -/p -{ -/_fm exch ddef -9 -2 roll _pm translate fc -7 -2 roll _pm scale fc -5 -1 roll _pm rotate fc -4 -2 roll exch 0 ne - { - dup _pm rotate fc - 1 -1 _pm scale fc - neg _pm rotate fc - } - { - pop - } ifelse -dup _pm rotate fc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore fc -neg _pm rotate fc -_pd exch get /_fdd exch ddef -/_pf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - patternfill - } - { - pop - fill - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_psf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - 10 copy 6 npop exch pop patternashow - } - { - pop - 7 copy 3 npop exch pop ashow - } ifelse - grestore - pop - } for - pop - } for -restore -4 npop newpath -} ddef -/_lp /none ddef -} def -/sc -{ -_sm dup concatmatrix pop -} def -/P -{ -/_sm exch ddef -9 -2 roll _pm translate sc -7 -2 roll _pm scale sc -5 -1 roll _pm rotate sc -4 -2 roll exch 0 ne - { - dup _pm rotate sc - 1 -1 _pm scale sc - neg _pm rotate sc - } - { - pop - } ifelse -dup _pm rotate sc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore sc -neg _pm rotate sc -_pd exch get /_sdd exch ddef -/_ps -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - patternstroke - } - { - pop stroke - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_pss -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - 11 copy 6 npop 3 -1 roll pop patternashowstroke - } - { - pop - 8 copy 3 npop ss - } ifelse - grestore - pop - } for - pop - } for -restore -5 npop newpath -} ddef -/_lp /none ddef -} def -/A -{ -pop -} def -/nc 3 dict def -nc begin -/setgray -{ -pop -} bind def -/setcmykcolor -{ -4 npop -} bind def -/setcustomcolor -{ -2 npop -} bind def -currentdict readonly pop end -currentdict readonly pop end -setpacking -%%EndProcSet -%%EndProlog - -%%BeginSetup -Adobe_cmykcolor /initialize get exec -Adobe_cshow /initialize get exec -Adobe_customcolor /initialize get exec -Adobe_pattern /initialize get exec -Adobe_Illustrator88 /initialize get exec - -%%BeginPattern: (0) -(0) 10 10 18 18 [ -(0 O 0 R 0.000000 0.000000 0.000000 0 (New Color 0) 0 x 0.000000 0.000000 0.000000 0 (New Color 0) 0 X) @ -_ & -(0 O 0 R 0.533325 0.533325 0.533325 0 (New Color 52) 0 x 0.533325 0.533325 0.533325 0 (New Color 52) 0 X) @ -( -0 i 1 J 0 j 1.5 w 4 M []0 d -%%Note: -9 20 m -20 9 l -S -9 12 m -12 9 l -S -17 20 m -20 17 l -S -) & -] E -%%EndPattern -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica /Helvetica 0 Z -%%EndEncoding -%%BeginEncoding: _Palatino-Roman Palatino-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Palatino-Roman /Palatino-Roman 0 Z -%%EndEncoding - -%%EndSetup - -0 A -0 O -0 R -0 g -0 G -0 i 0 J 0 j 1 w 4 M [] 0 d -u -334.1 540.194 m -537.688 422.606 l -3.023 w 0 G S -537.688 422.606 m -435.865 363.841 l -3.023 w 0 G S -435.865 363.841 m -232.276 481.429 l -3.023 w 0 G S -232.276 481.429 m -334.1 540.194 l -3.023 w 0 G S -383.507 453.493 m -383.507 705.493 l -0.072 w 0 G S -u -388.059 705.529 m -388.059 703.028 386.018 701 383.5 701 c -380.982 701 378.941 703.028 378.941 705.529 c -378.941 708.031 380.982 710.059 383.5 710.059 c -386.018 710.059 388.059 708.031 388.059 705.529 c -0 g F -U -u -388.023 705.529 m -388.023 703.048 385.998 701.036 383.5 701.036 c -381.002 701.036 378.977 703.048 378.977 705.529 c -378.977 708.011 381.002 710.023 383.5 710.023 c -385.998 710.023 388.023 708.011 388.023 705.529 c -0.072 w 0 G S -U -u -228.507 478.964 m -190.271 412.729 l -0.072 w 0 G S -432.154 361.435 m -393.918 295.14 l -0.072 w 0 G S -199.052 421.772 m -190.464 419.419 l -0.574 w 0 G S -402.64 304.183 m -394.052 301.83 l -0.574 w 0 G S -194.801 420.552 m -398.389 302.964 l -0.072 w 0 G S -190.86 422.788 m -194.801 420.552 l -0.072 w 0 G S -398.389 302.964 m -402.33 300.729 l -0.072 w 0 G S -u -u -317.588 353.765 m -317.588 369.765 L -275.588 369.765 L -275.588 353.765 L -317.588 353.765 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Helvetica 12 16 0 0 z -[1 0 0 1 275.588 357.765 ]e -6 (3 1/4")t -T -U -U -u -538.507 420.199 m -576.742 353.964 l -0.072 w 0 G S -436.683 361.435 m -474.918 295.14 l -0.072 w 0 G S -573.346 366.066 m -570.993 357.477 l -0.574 w 0 G S -471.523 307.301 m -469.17 298.713 l -0.574 w 0 G S -572.212 361.729 m -470.389 302.964 l -0.072 w 0 G S -576.154 364.023 m -572.212 361.729 l -0.072 w 0 G S -470.389 302.964 m -466.507 300.729 l -0.072 w 0 G S -u -u -542.294 324.412 m -542.294 340.412 L -500.294 340.412 L -500.294 324.412 L -542.294 324.412 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Helvetica 12 16 0 0 z -[1 0 0 1 500.294 328.412 ]e -6 (1 5/8")t -T -U -U -u -317.588 349.294 m -317.588 374.294 L -275.588 374.294 L -275.588 349.294 L -317.588 349.294 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Palatino-Roman 24 26 0 0 z -[1 0 0 1 275.588 356.294 ]e -5 ( L )t -T -u -547.294 319.882 m -547.294 344.882 L -495.294 344.882 L -495.294 319.882 L -547.294 319.882 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Palatino-Roman 24 26 0 0 z -[1 0 0 1 495.294 326.882 ]e -5 ( W )t -T -u -392.471 567.059 m -392.471 592 L -374.471 592 L -374.471 567.059 L -392.471 567.059 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Palatino-Roman 24 26 0 0 z -[1 0 0 1 374.471 574 ]e -1 (d)t -T -u -412.471 693.059 m -412.471 718.059 L -390.471 718.059 L -390.471 693.059 L -412.471 693.059 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Palatino-Roman 24 26 0 0 z -[1 0 0 1 390.471 700.059 ]e -1 (A)t -T -U - -%%Trailer -Adobe_Illustrator88 /terminate get exec -Adobe_pattern /terminate get exec -Adobe_customcolor /terminate get exec -Adobe_cshow /terminate get exec -Adobe_cmykcolor /terminate get exec -Adobe_packedarray /terminate get exec -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob11a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob11a.gif deleted file mode 100755 index 20f4de891..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob11a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob12a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob12a.eps deleted file mode 100755 index 6916a8e28..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob12a.eps +++ /dev/null @@ -1,2117 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad 6.0.1 -%%Title: Dipole_in_Field.eps -%%CreationDate: 9/2/1997 -%%DocumentProcSets: Adobe_packedarray 1.0 0 -%%DocumentSuppliedProcSets: Adobe_packedarray 1.0 0 -%%DocumentProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentProcSets: Adobe_cshow 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cshow 1.1 0 -%%DocumentProcSets: Adobe_customcolor 1.0 0 -%%DocumentSuppliedProcSets: Adobe_customcolor 1.0 0 -%%DocumentProcSets: Adobe_pattern 1.9 0 -%%DocumentSuppliedProcSets: Adobe_pattern 1.9 0 -%%DocumentProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentSuppliedProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentFonts: Times-Roman -%%+ Symbol -%%BoundingBox:212 441 524 715 -%%TemplateBox:306 396 306 396 -%%DocumentPreview: Header -%%EndComments - -%%BeginProlog -%%BeginProcSet: Adobe_packedarray 1.0 0 -userdict /Adobe_packedarray 5 dict dup begin put -/initialize -{ -/packedarray where - { - pop - } - { - Adobe_packedarray begin - Adobe_packedarray - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - } ifelse -} def -/terminate -{ -} def -/packedarray -{ -array astore readonly -} def -/setpacking -{ -pop -} def -/currentpacking -{ -false -} def -currentdict readonly pop end -%%EndProcSet -Adobe_packedarray /initialize get exec -%%BeginProcSet: Adobe_cmykcolor 1.1 0 -currentpacking true setpacking -userdict /Adobe_cmykcolor 4 dict dup begin put -/initialize -{ -/setcmykcolor where - { - pop - } - { - userdict /Adobe_cmykcolor_vars 2 dict dup begin put - /_setrgbcolor - /setrgbcolor load def - /_currentrgbcolor - /currentrgbcolor load def - Adobe_cmykcolor begin - Adobe_cmykcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - end - Adobe_cmykcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_cmykcolor eq - { - end - } if -} def -/setcmykcolor -{ -1 sub 4 1 roll -3 - { - 3 index add neg dup 0 lt - { - pop 0 - } if - 3 1 roll - } repeat -Adobe_cmykcolor_vars /_setrgbcolor get exec -pop -} def -/currentcmykcolor -{ -Adobe_cmykcolor_vars /_currentrgbcolor get exec -3 - { - 1 sub neg 3 1 roll - } repeat -0 -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_cshow 1.1 0 -currentpacking true setpacking -userdict /Adobe_cshow 3 dict dup begin put -/initialize -{ -/cshow where - { - pop - } - { - userdict /Adobe_cshow_vars 1 dict dup begin put - /_cshow - {} def - Adobe_cshow begin - Adobe_cshow - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - end - } ifelse -} def -/terminate -{ -} def -/cshow -{ -exch -Adobe_cshow_vars - exch /_cshow - exch put - { - 0 0 Adobe_cshow_vars /_cshow get exec - } forall -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_customcolor 1.0 0 -currentpacking true setpacking -userdict /Adobe_customcolor 5 dict dup begin put -/initialize -{ -/setcustomcolor where - { - pop - } - { - Adobe_customcolor begin - Adobe_customcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - Adobe_customcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_customcolor eq - { - end - } if -} def -/findcmykcustomcolor -{ -5 packedarray -} def -/setcustomcolor -{ -exch -aload pop pop -4 - { - 4 index mul 4 1 roll - } repeat -5 -1 roll pop -setcmykcolor -} def -/setoverprint -{ -pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_pattern 1.9 0 -currentpacking true setpacking -userdict /Adobe_pattern 14 dict dup begin put -/initialize -{ -/definepattern where - { - pop - } - { - Adobe_pattern begin - Adobe_pattern - { - dup xcheck - { - bind - } if - pop pop - } forall - mark - cachestatus 7 1 roll pop pop pop pop exch pop exch - { - { - 10000 add - dup 2 index gt - { - break - } if - dup setcachelimit - } loop - } stopped - cleartomark - } ifelse -} def -/terminate -{ -currentdict Adobe_pattern eq - { - end - } if -} def -errordict -/nocurrentpoint -{ -pop -stop -} put -errordict -/invalidaccess -{ -pop -stop -} put -/patternencoding -256 array def -0 1 255 -{ -patternencoding exch ( ) 2 copy exch 0 exch put cvn put -} for -/definepattern -{ -17 dict begin -/uniform exch def -/cache exch def -/key exch def -/procarray exch def -/mtx exch matrix invertmatrix def -/height exch def -/width exch def -/ctm matrix currentmatrix def -/ptm matrix def -/str 32 string def -/slice 9 dict def -slice /s 1 put -slice /q 256 procarray length div sqrt floor cvi put -slice /b 0 put -/FontBBox [0 0 0 0] def -/FontMatrix mtx matrix copy def -/Encoding patternencoding def -/FontType 3 def -/BuildChar - { - exch - begin - slice begin - dup q dup mul mod s idiv /i exch def - dup q dup mul mod s mod /j exch def - q dup mul idiv procarray exch get - /xl j width s div mul def - /xg j 1 add width s div mul def - /yl i height s div mul def - /yg i 1 add height s div mul def - uniform - { - 1 1 - } - { - width 0 dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - 0 height dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - } ifelse - width 0 cache - { - xl 4 index mul yl 4 index mul xg 6 index mul yg 6 index mul - setcachedevice - } - { - setcharwidth - } ifelse - gsave - scale - newpath - xl yl moveto - xg yl lineto - xg yg lineto - xl yg lineto - closepath - clip - newpath - end - end - exec - grestore - } def -key currentdict definefont -end -} def -/patterncachesize -{ -gsave -newpath -0 0 moveto -width 0 lineto -width height lineto -0 height lineto -closepath -patternmatrix setmatrix -pathbbox -exch ceiling 4 -1 roll floor sub 3 1 roll -ceiling exch floor sub -mul 1 add -grestore -} def -/patterncachelimit -{ -cachestatus 7 1 roll pop pop pop pop pop pop 8 mul -} def -/patternpath -{ -exch dup begin setfont -ctm setmatrix -concat -slice exch /b exch slice /q get dup mul mul put -FontMatrix concat -uniform - { - width 0 dtransform round width div exch round width div exch - 0 height dtransform round height div exch height div exch - 0 0 transform round exch round exch - ptm astore setmatrix - } - { - ptm currentmatrix pop - } ifelse -{currentpoint} stopped not - { - pop pop - pathbbox - true - 4 index 3 index eq - 4 index 3 index eq - and - { - pop false - { - {pop pop} - {pop pop pop true} - {pop pop pop pop pop pop pop true} - {pop true} - pathforall - } stopped - { - pop pop pop pop pop true - } if - } if - { - height div ceiling height mul 4 1 roll - width div ceiling width mul 4 1 roll - height div floor height mul 4 1 roll - width div floor width mul 4 1 roll - 2 index sub height div ceiling cvi exch - 3 index sub width div ceiling cvi exch - 4 2 roll moveto - FontMatrix mtx invertmatrix - dup dup 4 get exch 5 get rmoveto - ptm ptm concatmatrix pop - slice /s - patterncachesize patterncachelimit div ceiling sqrt ceiling cvi - dup slice /q get gt - { - pop slice /q get - } if - put - 0 1 slice /s get dup mul 1 sub - { - slice /b get add - gsave - 0 1 str length 1 sub - { - str exch 2 index put - } for - pop - dup - { - gsave - ptm setmatrix - 1 index str length idiv {str show} repeat - 1 index str length mod str exch 0 exch getinterval show - grestore - 0 height rmoveto - } repeat - grestore - } for - pop pop - } - { - pop pop pop pop - } ifelse - } if -end -} def -/patternclip -{ -clip -} def -/patternstrokepath -{ -strokepath -} def -/patternmatrix -matrix def -/patternfill -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternclip -Adobe_pattern /patternpath get exec -grestore -newpath -} def -/patternstroke -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternstrokepath -true - { - { - { - newpath - moveto - } - { - lineto - } - { - curveto - } - { - closepath - 3 copy - Adobe_pattern /patternfill get exec - } pathforall - pop pop pop - } stopped - { - pop pop pop pop pop - patternclip - Adobe_pattern /patternfill get exec - } if - } - { - patternclip - Adobe_pattern /patternfill get exec - } ifelse -grestore -newpath -} def -/patternashow -{ -3 index type /dicttype eq - { - Adobe_pattern /patternmatrix get 4 1 roll - } if - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 6 index 6 index 6 index - Adobe_pattern /patternfill get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop -} def -/patternashowstroke -{ -4 index type /dicttype eq - { - patternmatrix /patternmatrix get 5 1 roll - } if -4 1 roll - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - 7 index 7 index 7 index - Adobe_pattern /patternstroke get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_Illustrator88 1.19 0 -currentpacking true setpacking -userdict /Adobe_Illustrator88 73 dict dup begin put -/initialize -{ -userdict /Adobe_Illustrator88_vars 31 dict dup begin put -/_lp /none def -/_pf {} def -/_ps {} def -/_psf {} def -/_pss {} def -/_a null def -/_as null def -/_tt 2 array def -/_tl 2 array def -/_tm matrix def -/t {} def -/_gf null def -/_cf 4 array def -/_if null def -/_of false def -/_fc {} def -/_gs null def -/_cs 4 array def -/_is null def -/_os false def -/_sc {} def -/_pd 1 dict def -/_ed 15 dict def -/_pm matrix def -/_fm null def -/_fd null def -/_fdd null def -/_sm null def -/_sd null def -/_sdd null def -/_i null def -Adobe_Illustrator88 begin -Adobe_Illustrator88 dup /nc get begin - { - dup xcheck - { - bind - } if - pop pop - } forall -end -end -end -Adobe_Illustrator88 begin -Adobe_Illustrator88_vars begin -newpath -} def -/terminate -{ -end -end -} def -/_ -null def -/ddef -{ -Adobe_Illustrator88_vars 3 1 roll put -} def -/xput -{ -dup load dup length exch maxlength eq - { - dup dup load dup - length 2 mul dict copy def - } if -load begin def end -} def -/npop -{ - { - pop - } repeat -} def -/sw -{ -stringwidth -exch 5 -1 roll 3 index 1 sub mul add -4 1 roll 3 1 roll 1 sub mul add -} def -/ss -{ -3 -1 roll pop -4 1 roll - { - 2 npop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - stroke - grestore - moveto - 2 copy rmoveto - } exch cshow -3 npop -} def -/sp -{ -exch pop - { - 2 npop (0) exch - 2 copy 0 exch put pop - false charpath - 2 copy rmoveto - } exch cshow -2 npop -} def -/pl -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where -{ -pop true setstrokeadjust -/c -{ -curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll curveto -} def -/V -/v load def -/y -{ -2 copy curveto -} def -/Y -/y load def -/l -{ -lineto -} def -/L -/l load def -/m -{ -moveto -} def -} -{ -/c -{ -pl curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll pl curveto -} def -/V -/v load def -/y -{ -pl 2 copy curveto -} def -/Y -/y load def -/l -{ -pl lineto -} def -/L -/l load def -/m -{ -pl moveto -} def -} ifelse -/d -{ -setdash -} def -/cf -currentflat def -/i -{ -dup 0 eq - { - pop cf - } if -setflat -} def -/j -{ -setlinejoin -} def -/J -{ -setlinecap -} def -/M -{ -setmiterlimit -} def -/w -{ -setlinewidth -} def -/H -{} def -/h -{ -closepath -} def -/N -{ -newpath -} def -/n -/N load def -/F -{ -_pf -} def -/f -{ -closepath -F -} def -/S -{ -_ps -} def -/s -{ -closepath -S -} def -/B -{ -gsave F grestore -S -} def -/b -{ -closepath -B -} def -/W -{ -clip -} def -/ta -{ -_as moveto -_tt aload pop 4 -2 roll -} def -/tl -{ -_tl aload pop translate -} def -/as -{ -{ -0 0 -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg 2 div exch neg 2 div -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg exch neg -} -{ -0 0 -} -} cvlit def -/z -{ -/_a exch ddef -/_as as _a get ddef -_a 2 le - { - 0 _tt astore pop - 0 exch neg _tl astore pop - } - { - 0 exch neg _tt astore pop - neg 0 _tl astore pop - } ifelse -exch findfont exch scalefont setfont -} def -/tm -{ -_tm currentmatrix pop -concat -} def -/I -{ -tm -/t - { - ta sp - tl - } ddef -} def -/o -{ -tm -/t - { - ta 4 npop - tl - newpath - } ddef -} def -/e -{ -tm -/t - { - ta _psf - tl - newpath - } ddef -} def -/r -{ -tm -/t - { - ta _tm _pss - tl - newpath - } ddef -} def -/a -{ -tm -/t - { - 2 copy - ta _psf - newpath - ta _tm _pss - tl - newpath - } ddef -} def -/T -{ -_tm setmatrix -} def -/Z -{ -pop -findfont begin -currentdict dup length 1 add dict begin - { - 1 index /FID ne - { - def - } - { - 2 npop - } ifelse - } forall -/FontName exch def dup length 0 ne - { - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - { - Encoding 2 index 2 index put pop - 1 add - } - { - exch pop - } ifelse - } forall - } if pop -currentdict dup end end -/FontName get exch definefont pop -} def -/u -{} def -/U -{} def -/q -{ -gsave -} def -/Q -{ -grestore -} def -/` -{ -/_i save ddef -6 1 roll 4 npop -concat -userdict begin -/showpage {} def -false setoverprint -pop -} def -/~ -{ -end -_i restore -} def -/@ -{} def -/& -{} def -/O -{ -0 ne -/_of exch ddef -/_lp /none ddef -} def -/R -{ -0 ne -/_os exch ddef -/_lp /none ddef -} def -/g -{ -/_gf exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _gf setgray - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/G -{ -/_gs exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _gs setgray - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/k -{ -_cf astore pop -/_fc -{ -_lp /fill ne - { - _of setoverprint - _cf aload pop setcmykcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/K -{ -_cs astore pop -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _cs aload pop setcmykcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/x -{ -/_gf exch ddef -findcmykcustomcolor -/_if exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _if _gf 1 exch sub setcustomcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/X -{ -/_gs exch ddef -findcmykcustomcolor -/_is exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _is _gs 1 exch sub setcustomcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/dp -{ -dup null eq -{ -pop -_dp 0 ne - { - 0 1 _dp 1 sub _dl mod - { - _da exch get 3 get - } for - _dp 1 sub _dl mod 1 add packedarray - _da 0 get aload pop 8 -1 roll 5 -1 roll pop 4 1 roll - definepattern pop - } if -} -{ -_dp 0 ne _dp _dl mod 0 eq and - { - null dp - } if -7 packedarray _da exch _dp _dl mod exch put -_dp _dl mod _da 0 get 4 get 2 packedarray -/_dp _dp 1 add def -} ifelse -} def -/E -{ -_ed begin -dup 0 get type /arraytype ne - { - 0 - { - dup 1 add index type /arraytype eq - { - 1 add - } - { - exit - } ifelse - } loop - array astore - } if -/_dd exch def -/_ury exch def -/_urx exch def -/_lly exch def -/_llx exch def -/_n exch def -/_y 0 def -/_dl 4 def -/_dp 0 def -/_da _dl array def -0 1 _dd length 1 sub - { - /_d exch _dd exch get def - 0 2 _d length 2 sub - { - /_x exch def - /_c _d _x get _ ne def - /_r _d _x 1 add get cvlit def - _r _ ne - { - _urx _llx sub _ury _lly sub [1 0 0 1 0 0] - [ - /save cvx - _llx neg _lly neg /translate cvx - _c - { - nc /begin cvx - } if - _r dup type /stringtype eq - { - cvx - } - { - {exec} /forall cvx - } ifelse - _c - { - /end cvx - } if - /restore cvx - ] cvx - /_fn 12 _n length add string def - _y _fn cvs pop - /_y _y 1 add def - _fn 12 _n putinterval - _fn _c false dp - _d exch _x 1 add exch put - } if - } for - } for -null dp -_n _dd /_pd -end xput -} def -/fc -{ -_fm dup concatmatrix pop -} def -/p -{ -/_fm exch ddef -9 -2 roll _pm translate fc -7 -2 roll _pm scale fc -5 -1 roll _pm rotate fc -4 -2 roll exch 0 ne - { - dup _pm rotate fc - 1 -1 _pm scale fc - neg _pm rotate fc - } - { - pop - } ifelse -dup _pm rotate fc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore fc -neg _pm rotate fc -_pd exch get /_fdd exch ddef -/_pf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - patternfill - } - { - pop - fill - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_psf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - 10 copy 6 npop exch pop patternashow - } - { - pop - 7 copy 3 npop exch pop ashow - } ifelse - grestore - pop - } for - pop - } for -restore -4 npop newpath -} ddef -/_lp /none ddef -} def -/sc -{ -_sm dup concatmatrix pop -} def -/P -{ -/_sm exch ddef -9 -2 roll _pm translate sc -7 -2 roll _pm scale sc -5 -1 roll _pm rotate sc -4 -2 roll exch 0 ne - { - dup _pm rotate sc - 1 -1 _pm scale sc - neg _pm rotate sc - } - { - pop - } ifelse -dup _pm rotate sc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore sc -neg _pm rotate sc -_pd exch get /_sdd exch ddef -/_ps -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - patternstroke - } - { - pop stroke - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_pss -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - 11 copy 6 npop 3 -1 roll pop patternashowstroke - } - { - pop - 8 copy 3 npop ss - } ifelse - grestore - pop - } for - pop - } for -restore -5 npop newpath -} ddef -/_lp /none ddef -} def -/A -{ -pop -} def -/nc 3 dict def -nc begin -/setgray -{ -pop -} bind def -/setcmykcolor -{ -4 npop -} bind def -/setcustomcolor -{ -2 npop -} bind def -currentdict readonly pop end -currentdict readonly pop end -setpacking -%%EndProcSet -%%EndProlog - -%%BeginSetup -Adobe_cmykcolor /initialize get exec -Adobe_cshow /initialize get exec -Adobe_customcolor /initialize get exec -Adobe_pattern /initialize get exec -Adobe_Illustrator88 /initialize get exec -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman /Times-Roman 0 Z -%%EndEncoding -%%BeginEncoding: _Symbol Symbol -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Symbol /Symbol 0 Z -%%EndEncoding - -%%EndSetup - -0 A -0 O -0 R -0 g -0 G -0 i 0 J 0 j 1 w 4 M [] 0 d -u -u -449.471 671.294 m -449.471 695.294 L -420.471 695.294 L -420.471 671.294 L -449.471 671.294 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Roman 24 24 0 0 z -[1 0 0 1 420.471 677.294 ]e -2 (+q)t -T -u -315.941 459.765 m -315.941 483.765 L -293 483.765 L -293 459.765 L -315.941 459.765 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Roman 24 24 0 0 z -[1 0 0 1 293 465.765 ]e -2 (-q)t -T -u -391.706 579.294 m -391.941 579.176 L -392.176 579 L -392.471 578.882 L -392.706 578.706 L -392.941 578.588 L -393.176 578.412 L -393.471 578.235 L -393.706 578.059 L -393.941 577.941 L -394.176 577.765 L -394.412 577.588 L -394.647 577.412 L -394.882 577.235 L -395.118 577 L -395.353 576.824 L -395.588 576.647 L -395.765 576.471 L -396 576.235 L -396.235 576.059 L -396.471 575.882 L -396.647 575.647 L -396.882 575.471 L -397.059 575.235 L -397.294 575.059 L -397.471 574.824 L -397.706 574.588 L -397.882 574.353 L -398.059 574.176 L -398.235 573.941 L -398.471 573.706 L -398.647 573.471 L -398.824 573.235 L -399 573 L -399.176 572.765 L -399.353 572.529 L -399.529 572.294 L -399.647 572.059 L -399.824 571.765 L -400 571.529 L -400.176 571.294 L -400.294 571.059 L -400.471 570.765 L -400.588 570.529 L -400.765 570.294 L -400.882 570 L -401 569.765 L -401.118 569.471 L -401.294 569.235 L -401.412 568.941 L -401.529 568.706 L -401.647 568.412 L -401.765 568.118 L -401.882 567.882 L -402 567.588 L -402.059 567.294 L -402.176 567.059 L -402.294 566.765 L -402.353 566.471 L -402.471 566.176 L -402.529 565.941 L -402.647 565.647 L -402.706 565.353 L -402.765 565.059 L -402.824 564.765 L -402.941 564.471 L -403 564.235 L -403.059 563.941 L -403.118 563.647 L -403.118 563.353 L -403.176 563.059 L -403.235 562.765 L -403.294 562.471 L -403.294 562.176 L -403.353 561.882 L -403.353 561.588 L -403.412 561.294 L -403.412 561 L -403.412 560.706 L -403.471 560.412 L -403.471 560.118 L -403.471 559.824 L -403.471 559.529 L -381 559.529 L -391.706 579.294 L - -1 g F -U -391.742 579.258 m -391.977 579.14 l -0.072 w 0 G S -391.977 579.14 m -392.212 578.964 l -0.072 w 0 G S -392.212 578.964 m -392.507 578.846 l -0.072 w 0 G S -392.507 578.846 m -392.742 578.67 l -0.072 w 0 G S -392.742 578.67 m -392.977 578.552 l -0.072 w 0 G S -392.977 578.552 m -393.212 578.376 l -0.072 w 0 G S -393.212 578.376 m -393.507 578.199 l -0.072 w 0 G S -393.507 578.199 m -393.742 578.023 l -0.072 w 0 G S -393.742 578.023 m -393.977 577.905 l -0.072 w 0 G S -393.977 577.905 m -394.212 577.729 l -0.072 w 0 G S -394.212 577.729 m -394.448 577.552 l -0.072 w 0 G S -394.448 577.552 m -394.683 577.376 l -0.072 w 0 G S -394.683 577.376 m -394.918 577.199 l -0.072 w 0 G S -394.918 577.199 m -395.154 576.964 l -0.072 w 0 G S -395.154 576.964 m -395.389 576.788 l -0.072 w 0 G S -395.389 576.788 m -395.624 576.611 l -0.072 w 0 G S -395.624 576.611 m -395.801 576.435 l -0.072 w 0 G S -395.801 576.435 m -396.036 576.199 l -0.072 w 0 G S -396.036 576.199 m -396.271 576.023 l -0.072 w 0 G S -396.271 576.023 m -396.507 575.846 l -0.072 w 0 G S -396.507 575.846 m -396.683 575.611 l -0.072 w 0 G S -396.683 575.611 m -396.918 575.435 l -0.072 w 0 G S -396.918 575.435 m -397.095 575.199 l -0.072 w 0 G S -397.095 575.199 m -397.33 575.023 l -0.072 w 0 G S -397.33 575.023 m -397.507 574.788 l -0.072 w 0 G S -397.507 574.788 m -397.742 574.552 l -0.072 w 0 G S -397.742 574.552 m -397.918 574.317 l -0.072 w 0 G S -397.918 574.317 m -398.095 574.14 l -0.072 w 0 G S -398.095 574.14 m -398.271 573.905 l -0.072 w 0 G S -398.271 573.905 m -398.507 573.67 l -0.072 w 0 G S -398.507 573.67 m -398.683 573.435 l -0.072 w 0 G S -398.683 573.435 m -398.86 573.199 l -0.072 w 0 G S -398.86 573.199 m -399.036 572.964 l -0.072 w 0 G S -399.036 572.964 m -399.212 572.729 l -0.072 w 0 G S -399.212 572.729 m -399.389 572.493 l -0.072 w 0 G S -399.389 572.493 m -399.565 572.258 l -0.072 w 0 G S -399.565 572.258 m -399.683 572.023 l -0.072 w 0 G S -399.683 572.023 m -399.86 571.729 l -0.072 w 0 G S -399.86 571.729 m -400.036 571.493 l -0.072 w 0 G S -400.036 571.493 m -400.212 571.258 l -0.072 w 0 G S -400.212 571.258 m -400.33 571.023 l -0.072 w 0 G S -400.33 571.023 m -400.507 570.729 l -0.072 w 0 G S -400.507 570.729 m -400.624 570.493 l -0.072 w 0 G S -400.624 570.493 m -400.801 570.258 l -0.072 w 0 G S -400.801 570.258 m -400.918 569.964 l -0.072 w 0 G S -400.918 569.964 m -401.036 569.729 l -0.072 w 0 G S -401.036 569.729 m -401.154 569.435 l -0.072 w 0 G S -401.154 569.435 m -401.33 569.199 l -0.072 w 0 G S -401.33 569.199 m -401.448 568.905 l -0.072 w 0 G S -401.448 568.905 m -401.565 568.67 l -0.072 w 0 G S -401.565 568.67 m -401.683 568.376 l -0.072 w 0 G S -401.683 568.376 m -401.801 568.082 l -0.072 w 0 G S -401.801 568.082 m -401.918 567.846 l -0.072 w 0 G S -401.918 567.846 m -402.036 567.552 l -0.072 w 0 G S -402.036 567.552 m -402.095 567.258 l -0.072 w 0 G S -402.095 567.258 m -402.212 567.023 l -0.072 w 0 G S -402.212 567.023 m -402.33 566.729 l -0.072 w 0 G S -402.33 566.729 m -402.389 566.435 l -0.072 w 0 G S -402.389 566.435 m -402.507 566.14 l -0.072 w 0 G S -402.507 566.14 m -402.565 565.905 l -0.072 w 0 G S -402.565 565.905 m -402.683 565.611 l -0.072 w 0 G S -402.683 565.611 m -402.742 565.317 l -0.072 w 0 G S -402.742 565.317 m -402.801 565.023 l -0.072 w 0 G S -402.801 565.023 m -402.86 564.729 l -0.072 w 0 G S -402.86 564.729 m -402.977 564.435 l -0.072 w 0 G S -402.977 564.435 m -403.036 564.199 l -0.072 w 0 G S -403.036 564.199 m -403.095 563.905 l -0.072 w 0 G S -403.095 563.905 m -403.154 563.611 l -0.072 w 0 G S -403.154 563.611 m -403.154 563.317 l -0.072 w 0 G S -403.154 563.317 m -403.212 563.023 l -0.072 w 0 G S -403.212 563.023 m -403.271 562.729 l -0.072 w 0 G S -403.271 562.729 m -403.33 562.435 l -0.072 w 0 G S -403.33 562.435 m -403.33 562.14 l -0.072 w 0 G S -403.33 562.14 m -403.389 561.846 l -0.072 w 0 G S -403.389 561.846 m -403.389 561.552 l -0.072 w 0 G S -403.389 561.552 m -403.448 561.258 l -0.072 w 0 G S -403.448 561.258 m -403.448 560.964 l -0.072 w 0 G S -403.448 560.964 m -403.448 560.67 l -0.072 w 0 G S -403.448 560.67 m -403.507 560.376 l -0.072 w 0 G S -403.507 560.376 m -403.507 560.082 l -0.072 w 0 G S -403.507 560.082 m -403.507 559.788 l -0.072 w 0 G S -403.507 559.788 m -403.507 559.493 l -0.072 w 0 G S -u -u -511.471 631.529 m -502.471 626.294 L -502.471 636.765 L -511.471 631.529 L - -0 g F -U -u -511.507 631.493 m -502.507 626.258 L -502.507 636.729 L -511.507 631.493 L - -0.072 w 0 G s -U -223.507 631.493 m -503.683 631.493 l -0.072 w 0 G S -u -511.471 595.529 m -502.471 590.294 L -502.471 600.765 L -511.471 595.529 L - -0 g F -U -u -511.507 595.493 m -502.507 590.258 L -502.507 600.729 L -511.507 595.493 L - -0.072 w 0 G s -U -223.507 595.493 m -503.683 595.493 l -0.072 w 0 G S -u -511.471 559.529 m -502.471 554.294 L -502.471 564.765 L -511.471 559.529 L - -0 g F -U -u -511.507 559.493 m -502.507 554.258 L -502.507 564.729 L -511.507 559.493 L - -0.072 w 0 G s -U -223.507 559.493 m -503.683 559.493 l -0.072 w 0 G S -u -511.471 523.529 m -502.471 518.294 L -502.471 528.765 L -511.471 523.529 L - -0 g F -U -u -511.507 523.493 m -502.507 518.258 L -502.507 528.729 L -511.507 523.493 L - -0.072 w 0 G s -U -223.507 523.493 m -503.683 523.493 l -0.072 w 0 G S -u -511.471 487.529 m -502.471 482.294 L -502.471 492.765 L -511.471 487.529 L - -0 g F -U -u -511.507 487.493 m -502.507 482.258 L -502.507 492.729 L -511.507 487.493 L - -0.072 w 0 G s -U -223.507 487.493 m -503.683 487.493 l -0.072 w 0 G S -u -511.471 451.529 m -502.471 446.294 L -502.471 456.765 L -511.471 451.529 L - -0 g F -U -u -511.507 451.493 m -502.507 446.258 L -502.507 456.729 L -511.507 451.493 L - -0.072 w 0 G s -U -223.507 451.493 m -503.683 451.493 l -0.072 w 0 G S -u -511.471 667.529 m -502.471 662.294 L -502.471 672.765 L -511.471 667.529 L - -0 g F -U -u -511.507 667.493 m -502.507 662.258 L -502.507 672.729 L -511.507 667.493 L - -0.072 w 0 G s -U -223.507 667.493 m -503.683 667.493 l -0.072 w 0 G S -u -513.706 703.529 m -504.706 698.294 L -504.706 708.765 L -513.706 703.529 L - -0 g F -U -u -513.742 703.493 m -504.742 698.258 L -504.742 708.729 L -513.742 703.493 L - -0.072 w 0 G s -U -225.742 703.493 m -505.918 703.493 l -0.072 w 0 G S -U -u -u -300.118 493 m -408.118 680.059 L -439.294 662.059 L -331.294 475 L -300.118 493 L - -1 g F -U -u -300.154 492.964 m -408.154 680.023 L -439.33 662.023 L -331.33 474.964 L -300.154 492.964 L - -0.072 w 0 G s -U -u -329.294 499.529 m -329.294 497.028 327.266 495 324.765 495 c -322.263 495 320.235 497.028 320.235 499.529 c -320.235 502.031 322.263 504.059 324.765 504.059 c -327.266 504.059 329.294 502.031 329.294 499.529 c -0 g F -U -u -329.258 499.529 m -329.258 497.048 327.246 495.036 324.765 495.036 c -322.283 495.036 320.271 497.048 320.271 499.529 c -320.271 502.011 322.283 504.023 324.765 504.023 c -327.246 504.023 329.258 502.011 329.258 499.529 c -0.072 w 0 G S -U -u -419.294 655.471 m -419.294 652.969 417.266 650.941 414.765 650.941 c -412.263 650.941 410.235 652.969 410.235 655.471 c -410.235 657.972 412.263 660 414.765 660 c -417.266 660 419.294 657.972 419.294 655.471 c -0 g F -U -u -419.258 655.471 m -419.258 652.989 417.246 650.977 414.765 650.977 c -412.283 650.977 410.271 652.989 410.271 655.471 c -410.271 657.952 412.283 659.964 414.765 659.964 c -417.246 659.964 419.258 657.952 419.258 655.471 c -0.072 w 0 G S -U -U -u -420.471 562 m -420.471 593.059 L -404.471 593.059 L -404.471 562 L -420.471 562 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Symbol 24 24 0 0 z -[1 0 0 1 404.471 570.059 ]e -1 (q)t -T -u -500.471 563.529 m -500.471 587.529 L -482.471 587.529 L -482.471 563.529 L -500.471 563.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Roman 24 24 0 0 z -[1 0 0 1 482.471 569.529 ]e -1 (E)t -T -U - -%%Trailer -Adobe_Illustrator88 /terminate get exec -Adobe_pattern /terminate get exec -Adobe_customcolor /terminate get exec -Adobe_cshow /terminate get exec -Adobe_cmykcolor /terminate get exec -Adobe_packedarray /terminate get exec -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob12a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob12a.gif deleted file mode 100755 index 599629a1e..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob12a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob16.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob16.eps deleted file mode 100755 index efeb9bfb9..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob16.eps +++ /dev/null @@ -1,326 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q5.draw -- /teacher/Apps/Drawfiles/phys121a/set7 -%%Creator: Draw -%%CreationDate: Tue May 30 08:57:04 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 40 453 375 641 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -40 453 335 188 rectclip -0 0 1.27907 setup -0 nxsetgray -40 98 110 500 oval matrix defaultmatrix setmatrix stroke -grestore -0 0 1.27907 setup -0 nxsetgray -40 98 270 500 oval matrix defaultmatrix setmatrix stroke -grestore -0 0 1.27907 setup -0 nxsetgray -161 0 128 598 line -grestore -0 0 1.27907 setup -0 nxsetgray -161 0 126 500 line -grestore -0 0 1.27907 setup -0 nxsetgray -20 48 207 525 oval matrix defaultmatrix setmatrix stroke -grestore -0 0 1.27907 setup -gsave -/Symbol findfont 14 scalefont [1 0 0 -1 0 0] makefont -57 -exch -defineuserobject -57 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1099] concat -/Helvetica findfont 12 scalefont [1 0 0 -1 0 0] makefont -10 -exch -defineuserobject -10 execuserobject setfont -0 nxsetgray -49 554 moveto (- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -) show -grestore -grestore -0 0 0.581395 setup -0 nxsetgray -7 15 217 549 line -grestore -0 0 0.581395 setup -0 nxsetgray -13 34 290 549 line -grestore -0 0 0.581395 setup -gsave -10 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1124] concat -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -58 -exch -defineuserobject -58 execuserobject setfont -0 nxsetgray -231 567 moveto (r) show -grestore -grestore -0 0 0.581395 setup -gsave -58 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1182] concat -58 execuserobject setfont -0 nxsetgray -309 596 moveto (R) show -grestore -grestore -0 0 0 setup -gsave -58 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1236] concat -/Helvetica findfont 14 scalefont [1 0 0 -1 0 0] makefont -59 -exch -defineuserobject -59 execuserobject setfont -0 nxsetgray -147 614 moveto (section of infinitely) show -147 632 moveto (long cylinder) show -grestore -grestore -0 0 0 setup -gsave -59 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 954] concat -59 execuserobject setfont -0 nxsetgray -145 472 moveto (uniform volume charge) show -145 491 moveto (density, ) show -57 execuserobject setfont -(r) show -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Symbol -%%+ Helvetica-Bold -%%+ Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob16.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob16.gif deleted file mode 100755 index dbd17dd38..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob16.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob17a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob17a.eps deleted file mode 100755 index 80e6785e8..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob17a.eps +++ /dev/null @@ -1,318 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q6.draw -- /teacher/Apps/Drawfiles/phys121a/set7 -%%Creator: Draw -%%CreationDate: Tue Jun 6 09:40:51 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 21 453 320 665 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -21 453 299 212 rectclip -0 0 1.27907 setup -0 nxsetgray -40 98 110 500 oval matrix defaultmatrix setmatrix stroke -grestore -0 0 1.27907 setup -0 nxsetgray -40 98 270 500 oval matrix defaultmatrix setmatrix stroke -grestore -0 0 0.581395 setup -0 nxsetgray -10 20 130 548 line -63.436821 140 568 arrow -grestore -0 0 0.581395 setup -gsave -/Helvetica findfont 14 scalefont [1 0 0 -1 0 0] makefont -149 -exch -defineuserobject -149 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1146] concat -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -91 -exch -defineuserobject -91 execuserobject setfont -0 nxsetgray -130 578 moveto (r) show -grestore -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -251 488 38 136 rectfill -1 nxsetgray -251 488 38 136 rectstroke -grestore -0 0 1.27907 setup -0 nxsetgray -161 0 128 500 line -grestore -0 0 1.27907 setup -0 nxsetgray -161 0 128 598 line -grestore -0 0 5 setup -0 nxsetgray -221 0 89 549 line -grestore -0 0 0.581395 setup -gsave -91 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1273] concat -149 execuserobject setfont -0 nxsetgray -122 630 moveto (A thin, cylindrical) show -122 648 moveto (copper shell \(d) show -0 5 rmoveto -(s) show -0 -5 rmoveto -(\)) show -grestore -grestore -0 0 0.581395 setup -gsave -149 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 963] concat -149 execuserobject setfont -0 nxsetgray -31 475 moveto (A thin metal) show -31 493 moveto (wire \(d) show -0 5 rmoveto -(w) show -0 -5 rmoveto -(\)) show -grestore -grestore -0 0 0.581395 setup -0 nxsetgray -28 37 73 509 line -52.884701 101 546 arrow -grestore -0 0 0.581395 setup -0 nxsetgray -5 -22 184 621 line --77.198013 189 599 arrow -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold -%%+ Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob17a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob17a.gif deleted file mode 100755 index e7c6d01ec..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob17a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob18a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob18a.eps deleted file mode 100755 index 5789797b9..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob18a.eps +++ /dev/null @@ -1,453 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q8.draw -- /teacher/Apps/Drawfiles/phys121a/set7 -%%Creator: Draw -%%CreationDate: Thu Jul 6 09:24:07 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 120 388 513 654 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -120 388 393 266 rectclip -0 setgray -0.333333 setgray -0 0 1.046512 setup -gsave -69 -71 translate -1 1 scale -0.593097 nxsetgray -gsave -newpath -systemdict -begin -119 501 170 650 setbbox -120 501 moveto --1 129 rlineto -51 20 rlineto --1 -130 rlineto --49 -19 rlineto -end -fill -grestore -grestore -69 -71 translate -1 1 scale -0 nxsetgray -gsave -newpath -systemdict -begin -119 501 170 650 setbbox -120 501 moveto --1 129 rlineto -51 20 rlineto --1 -130 rlineto --49 -19 rlineto -end -stroke -grestore -grestore -0 setgray -0.333333 setgray -0 0 1.046512 setup -gsave -151 -71 translate -1 1 scale -0.593097 nxsetgray -gsave -newpath -systemdict -begin -119 501 170 650 setbbox -120 501 moveto --1 129 rlineto -51 20 rlineto --1 -130 rlineto --49 -19 rlineto -end -fill -grestore -grestore -151 -71 translate -1 1 scale -0 nxsetgray -gsave -newpath -systemdict -begin -119 501 170 650 setbbox -120 501 moveto --1 129 rlineto -51 20 rlineto --1 -130 rlineto --49 -19 rlineto -end -stroke -grestore -grestore -0 0 0.465116 setup -0 nxsetgray -80 0 189 418 line -180 189 418 arrow -0 269 418 arrow -grestore -0 0 1.046512 setup -gsave -/Symbol findfont 14 scalefont [1 0 0 -1 0 0] makefont -78 -exch -defineuserobject -78 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1258] concat -/Helvetica findfont 14 scalefont [1 0 0 -1 0 0] makefont -79 -exch -defineuserobject -79 execuserobject setfont -0 nxsetgray -129 625 moveto (Two infinite-plane nonconducting, thin) show -129 643 moveto (sheets of uniform surface charge) show -grestore -grestore -0 0 0.465116 setup -0 nxsetgray -22 31 215 570 line -grestore -0 0 0.465116 setup -0 nxsetgray -48 -35 237 601 line -grestore -0 0 0.465116 setup -gsave -79 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 810] concat -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -80 -exch -defineuserobject -80 execuserobject setfont -0 nxsetgray -222 410 moveto (d) show -grestore -grestore -0 setgray -0.333333 setgray -0 0 0.465116 setup -gsave -0 nxsetgray -5 5 356 516 oval fill -grestore -0 nxsetgray -5 5 356 516 oval matrix defaultmatrix setmatrix stroke -grestore -0 0 0.465116 setup -gsave -80 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1060] concat -80 execuserobject setfont -0 nxsetgray -353 535 moveto (A) show -grestore -grestore -0 0 2.44186 setup -0 nxsetgray -63 0 336 460 line -0 399 460 arrow -grestore -0 0 0 setup -0 0 0 setup -gsave -80 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 913] concat -/Helvetica-Bold findfont 12 scalefont [1 0 0 -1 0 0] makefont -81 -exch -defineuserobject -81 execuserobject setfont -0 nxsetgray -406 461 moveto (x) show -grestore -grestore -0 0 0 setup -gsave -81 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 921] concat -81 execuserobject setfont -0 nxsetgray -406 465 moveto (^) show -grestore -grestore -grestore -0 0 0 setup -gsave -81 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 816] concat -/Helvetica findfont 12 scalefont [1 0 0 -1 0 0] makefont -10 -exch -defineuserobject -10 execuserobject setfont -0 nxsetgray -330 405 moveto (positive direction of unit vector) show -330 420 moveto (\(perpendicular to plates\)) show -grestore -grestore -0 0 0.465116 setup -0 nxsetgray -24 -37 375 461 line -grestore -0 0 0 setup -gsave -10 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1013] concat -/Symbol findfont 18 scalefont [1 0 0 -1 0 0] makefont -82 -exch -defineuserobject -82 execuserobject setfont -0 nxsetgray -291 511 moveto (s) show -78 execuserobject setfont -0 5 rmoveto -(1) show -0 -5 rmoveto -grestore -grestore -0 0 0 setup -gsave -78 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1015] concat -82 execuserobject setfont -0 nxsetgray -210 512 moveto (s) show -78 execuserobject setfont -0 5 rmoveto -(2) show -0 -5 rmoveto -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Symbol -%%+ Helvetica-Bold -%%+ Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob18a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob18a.gif deleted file mode 100755 index 2fbde6453..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob18a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob19a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob19a.eps deleted file mode 100755 index cf6bfa034..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob19a.eps +++ /dev/null @@ -1,327 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q11.draw -- /teacher/Apps/Drawfiles/phys121a/set7 -%%Creator: Draw -%%CreationDate: Mon May 29 15:08:40 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 122 450 394 663 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --43 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -122 450 272 213 rectclip -0 setgray -0.333333 setgray -0 0 0.930233 setup -gsave -0.4138 nxsetgray -200 200 188 457 oval fill -grestore -0 nxsetgray -200 200 188 457 oval matrix defaultmatrix setmatrix stroke -grestore -0 setgray -0.333333 setgray -0 0 0.930233 setup -gsave -1 nxsetgray -180 180 198 468 oval fill -grestore -0 nxsetgray -180 180 198 468 oval matrix defaultmatrix setmatrix stroke -grestore -0 setgray -0.333333 setgray -0 0 0.930233 setup -gsave -0.4138 nxsetgray -70 70 252 524 oval fill -grestore -0 nxsetgray -70 70 252 524 oval matrix defaultmatrix setmatrix stroke -grestore -0 0 1.046512 setup -0.372417 nxsetgray -117 119 227 498 oval matrix defaultmatrix setmatrix stroke -grestore -0 0 1.046512 setup -0 nxsetgray -33 0 287 561 line -grestore -0 0 1.046512 setup -0 nxsetgray -1 103 287 457 line -grestore -0 0 1.046512 setup -0 nxsetgray -58 -72 288 561 line -grestore -0 0 1.046512 setup -gsave -/Helvetica findfont 14 scalefont [1 0 0 -1 0 0] makefont -86 -exch -defineuserobject -86 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 974] concat -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -87 -exch -defineuserobject -87 execuserobject setfont -0 nxsetgray -270 492 moveto (R) show -grestore -grestore -0 0 1.046512 setup -gsave -87 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1138] concat -87 execuserobject setfont -0 nxsetgray -301 574 moveto (a) show -grestore -grestore -0 0 1.046512 setup -gsave -87 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1026] concat -87 execuserobject setfont -0 nxsetgray -333 518 moveto (b) show -grestore -grestore -0 0 1.046512 setup -gsave -87 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1258] concat -86 execuserobject setfont -0 nxsetgray -131 625 moveto (Gaussian) show -131 643 moveto (surface) show -grestore -grestore -0 0 1.046512 setup -0 nxsetgray -49 -36 187 626 line --36.305569 236 590 arrow -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold -%%+ Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob19a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob19a.gif deleted file mode 100755 index 64a59514f..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob19a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob20.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob20.eps deleted file mode 100755 index 59635f3d7..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob20.eps +++ /dev/null @@ -1,525 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: set6.q6.create -%%Creator: Create -%%CreationDate: Thu Oct 12 13:59:01 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 125 335 521 709 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(2u_n\R%AdlucPU\sE@&Bok5YqLbRM*D/+=.pF%,&dGCQ]rL!<`r -% AJ8EoFKHPABbB?G0!+X?tPoJ,p+AJ7ZpkUmV8AmLg4Se:W`)C&n.9@-)6spC^R5Gp?R6iT$R -% PSX@>]`p,.)c6^2L"R\EC#dDFM\/$>4a5?8c^[V![L?+O?o7-"W9):b*GOaAs_0u6ke7`ETM -% 'V$Q&6d\X`*Mot`'gU47h*$dO2\H6U/@ZqI7d+7O6\&ll!W!#@D-#/6\k=3>C -% 2fR`oFV9XA!X_DQ!_t'*e0*Y&`uoZP0io-#BiLH(!J13n]aKJ!2I= -% W(NT0$7n"W7!CK4!\,!LCNs,S]TKf5;q1G.KRT0]L)Og5*Le`sYQschjaJ+SH`\n!`R?ntjcQ,"dP>"G)_kuNm\n,nb;T`R!JS9T_-J:M#BVLCpOli+.+M-eG5K" -% GkS/E)M-\uO"g#Sb(oVpu1/\W(^!eZ#d8In*0l:e7=aqpk>1sB(MllaV0qW`TIb0$]cA`6hUS\8e4CPfn(fqKX\O;cYK)^b/rf'Y1=G&4dK=@h -% gS9dsgU7!1%*[/!Gfi6GOtg`\q%<\)k&&NrSW?gr)J'-"NP&Ak\b6$[4MTEXcsMMfB%SQ-WAL\o_MRugFAgAaebilN/>+^-MQ3A+.`s0_SkA;'c=b78ool -% `Im-WT&g.eTHKW5r9X7$B2lQD`g4nYt&[S7sN6ZH=rg/@7WB:2S_:qQRMF2%:KYC24YT<"ie\d2TE?J#Y$iGqt3g)#Q+^kHf/Z6.n -% QLEthUn1amK&u\t<^b,dWKC"eZ#7nhiGWASq&Y,N\.QFM%5eogbTgBXd5_ml$`@*tW^hXQJ/ -% p')>%09kP"JSmTQ]3\2_)'o5rtTE.uEPhE3A,gDlV0O*mQ.aFF$27E%7ERZ3Rm>+7qo -% $Ikp"Jd.HBh1WAdLER2Ub3sm8X2b#PEk4)-UE#J2N4paA8l*0$c5N,_GZ\t9W9U`WCpRoEh' -% ulVDaR9b\&hTRaMls26D]?Cb?G5gg$^0^DY=l;R2g?7&N*!kt]OBF.R!B-Pu1W!taO%T*jfF -% 5:^^REp5q@km.8UWQ;qI0bcb\h;Mcd$@mu-;2oC6,95gTd@,BgO+.T!+:EJ96nYd-/nJ`C1C -% MZ+Y'$V8ZmdGFHHMe]ZB_9bkq"PN<%d6PQf=g@;P0@NXlA<=;N7\0Vts)fHF'*q"QqS]$.a0 -% pF.M]Gk?2@]:OD(7%rdda+TQ6WE]M$G%hQM`.)8pA=U^37e7'Q%iC,HC+9jYN,=N2kdD]k-N -% fLNG)1.LsfXG84;d.tRFm&,!sYafC#_aESKiMD.UW&+(Vfh.0-0rui0 -% =Z%Ot/-RB+J7r"HsUd$qBV7*t6X;#^+"f26)WjN(a](ppM6HZ%tua>8*c6"tE(sMd;9A(a"' -% o284'jfskPQQ5,uUAo:eCgK#L;)9MeU1-c.2XqaL(I1hq;^d,Sgr -% A$h[46AYk\\<-pDgqH8h_G$FZN4qmJMh.LRYl-m3mG!,q&JA$!kQ7_]Q&Zbgu/c"Z^Qi-VPC -% =$knU[PS!K'dN@c-69cH##4AN%^6f$P*iq!IJ`o%t7OGZ*gL'^fR7=W7Q19sJE0(rcbg9-qk -% Re8=H3D8>/cJgY@h2U=s*sBFqI^HAVN_P(Wg>F*@.oStmG.?[Cf)>gQx -% EndEmbeddedGraphics N 2059 80b E a7 S 3afef R d07407cb -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -125 335 396 374 rectclip -0 0 1 1 10 SU -245.660751 382.650757 T -N -1 L -0 nxsetgray -71.678391 125.698242 0 0 line -240.308182 0 0 arrow -0 0 T -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -/Times-BoldItalic findfont 16 scalefont [1 0 0 -1 0 0] makefont -124 -exch -defineuserobject -124 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1038] concat -/Helvetica-Bold findfont 16 scalefont [1 0 0 -1 0 0] makefont -123 -exch -defineuserobject -123 execuserobject setfont -0 nxsetgray -301 525 moveto (O) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -123 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1072] concat -123 execuserobject setfont -0 nxsetgray -366 542 moveto (plate) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -123 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1074] concat -123 execuserobject setfont -0 nxsetgray -208 543 moveto (plate) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -123 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 997] concat -124 execuserobject setfont -0 nxsetgray -508 504 moveto (x) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -124 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1397] concat -124 execuserobject setfont -0 nxsetgray -325 704 moveto (y) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -124 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 753] concat -124 execuserobject setfont -0 nxsetgray -234 382 moveto (z) show -grestore -grestore -0 0 1 1 10 SU -135 509 T -N -1 L -0 nxsetgray -373 0 0 0 line -0 373 0 arrow -0 0 T -grestore -0 0 1 1 10 SU -316.999969 509 T -N -1 L -0 nxsetgray -1 -187.000061 0 187.000061 line -90.303749 0 187.000061 arrow -0 0 T -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 173 337] concat -0 0 2 1 10 SU -11 11.850006 T -N -2 L -0 nxsetgray -0 181.300018 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -83 136.849976 T -N -2 L -0 nxsetgray -0 181.299988 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -11.660767 10.650757 T -N -2 L -0 nxsetgray -71.678391 125.698242 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -10.660767 193.650757 T -N -2 L -0 nxsetgray -71.678391 125.698242 0 0 line -0 0 T -grestore -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 336 339] concat -0 0 2 1 10 SU -11 11.850006 T -N -2 L -0 nxsetgray -0 181.300018 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -83 136.849976 T -N -2 L -0 nxsetgray -0 181.299988 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -11.660767 10.650757 T -N -2 L -0 nxsetgray -71.678391 125.698242 0 0 line -0 0 T -grestore -0 0 2 1 10 SU -10.660767 193.650757 T -N -2 L -0 nxsetgray -71.678391 125.698242 0 0 line -0 0 T -grestore -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Times-BoldItalic -%%+ Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob20.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob20.gif deleted file mode 100755 index 9ee64928f..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob20.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob21.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob21.eps deleted file mode 100755 index 5e855b056..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob21.eps +++ /dev/null @@ -1,463 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q11.draw -- /teacher/Apps/Drawfiles/phys121a/set6 -%%Creator: Draw -%%CreationDate: Mon May 29 11:09:11 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 76 418 427 669 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --43 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -76 418 351 251 rectclip -0 0 0.697674 setup -0 nxsetgray -0 216 110 426 line -90.002655 110 642 arrow -grestore -0 0 0.697674 setup -0 nxsetgray -322 0 84 540 line -0 406 540 arrow -grestore -0 setgray -0.333333 setgray -0 0 0.697674 setup -gsave -0.52414 nxsetgray -15 15 228 579 oval fill -grestore -0 nxsetgray -15 15 228 579 oval matrix defaultmatrix setmatrix stroke -grestore -0 setgray -0.333333 setgray -0 0 0.697674 setup -gsave -0.52414 nxsetgray -15 15 151 477 oval fill -grestore -0 nxsetgray -15 15 151 477 oval matrix defaultmatrix setmatrix stroke -grestore -0 setgray -0.333333 setgray -0 0 0.697674 setup -0 nxsetgray -70 90 162 491 line -grestore -0 setgray -0.333333 setgray -0 0 1.27907 setup -0 nxsetgray -21 27 181 529 line -52.126553 202 556 arrow -grestore -0 setgray -0.333333 setgray -0 0 2.093023 setup -0.275857 nxsetgray -95 0 286 608 line -0 381 608 arrow -grestore -0 setgray -0.333333 setgray -0 0 2.093023 setup -0.275857 nxsetgray -95 0 288 496 line -0 383 496 arrow -grestore -0 setgray -0.333333 setgray -0 0 2.093023 setup -0.275857 nxsetgray -95 0 286 557 line -0 381 557 arrow -grestore -0 0 2.093023 setup -gsave -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -103 -exch -defineuserobject -103 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1026] concat -103 execuserobject setfont -0 nxsetgray -341 518 moveto (E) show -grestore -grestore -0 0 2.093023 setup -gsave -103 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1248] concat -103 execuserobject setfont -0 nxsetgray -340 629 moveto (E) show -grestore -grestore -0 0 2.093023 setup -gsave -103 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1100] concat -103 execuserobject setfont -0 nxsetgray -175 555 moveto (p) show -grestore -grestore -0 0 2.093023 setup -gsave -103 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1190] concat -/Helvetica findfont 14 scalefont [1 0 0 -1 0 0] makefont -104 -exch -defineuserobject -104 execuserobject setfont -0 nxsetgray -205 600 moveto (+e) show -grestore -grestore -0 0 2.093023 setup -gsave -104 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 980] concat -104 execuserobject setfont -0 nxsetgray -133 495 moveto (-e) show -grestore -grestore -0 0 2.093023 setup -gsave -104 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1228] concat -104 execuserobject setfont -0 nxsetgray -194 619 moveto (Alkali metal) show -grestore -grestore -0 0 2.093023 setup -gsave -104 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 914] concat -104 execuserobject setfont -0 nxsetgray -124 462 moveto (Halogen) show -grestore -grestore -0 0 2.093023 setup -gsave -104 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1052] concat -103 execuserobject setfont -0 nxsetgray -403 531 moveto (x) show -grestore -grestore -0 0 2.093023 setup -gsave -103 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1294] concat -103 execuserobject setfont -0 nxsetgray -94 652 moveto (y) show -grestore -grestore -0 0 2.093023 setup -gsave -103 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1058] concat -103 execuserobject setfont -0 nxsetgray -94 534 moveto (O) show -grestore -grestore -0 setgray -0.333333 setgray -0 0 0.930233 setup -0 nxsetgray -77 102 174 475 line -52.952332 251 577 arrow -232.952332 174 475 arrow -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -199 516 24 15 rectfill -1 nxsetgray -199 516 24 15 rectstroke -grestore -0 0 0 setup -gsave -103 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1044] concat -104 execuserobject setfont -0 nxsetgray -206 527 moveto (a) show -grestore -grestore -0 0 0 setup -gsave -104 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1174] concat -/Helvetica findfont 18 scalefont [1 0 0 -1 0 0] makefont -105 -exch -defineuserobject -105 execuserobject setfont -0 nxsetgray -231 593 moveto (+) show -grestore -grestore -0 0 0 setup -gsave -105 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 971] concat -/Helvetica-Bold findfont 18 scalefont [1 0 0 -1 0 0] makefont -106 -exch -defineuserobject -106 execuserobject setfont -0 nxsetgray -156 492 moveto (-) show -grestore -grestore -0 0 2.093023 setup -gsave -106 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1150] concat -103 execuserobject setfont -0 nxsetgray -339 580 moveto (E) show -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold -%%+ Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob21.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob21.gif deleted file mode 100755 index 37a95b9a3..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob21.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob23.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob23.eps deleted file mode 100755 index 39c906a65..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob23.eps +++ /dev/null @@ -1,1746 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad 6.0.1 -%%Title: hw02prob09.eps -%%CreationDate: 9/12/1997 -%%DocumentProcSets: Adobe_packedarray 1.0 0 -%%DocumentSuppliedProcSets: Adobe_packedarray 1.0 0 -%%DocumentProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentProcSets: Adobe_cshow 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cshow 1.1 0 -%%DocumentProcSets: Adobe_customcolor 1.0 0 -%%DocumentSuppliedProcSets: Adobe_customcolor 1.0 0 -%%DocumentProcSets: Adobe_pattern 1.9 0 -%%DocumentSuppliedProcSets: Adobe_pattern 1.9 0 -%%DocumentProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentSuppliedProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentFonts: Palatino-Roman -%%BoundingBox:196 261 648 683 -%%TemplateBox:306 396 306 396 -%%DocumentPreview: Header -%%EndComments - -%%BeginProlog -%%BeginProcSet: Adobe_packedarray 1.0 0 -userdict /Adobe_packedarray 5 dict dup begin put -/initialize -{ -/packedarray where - { - pop - } - { - Adobe_packedarray begin - Adobe_packedarray - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - } ifelse -} def -/terminate -{ -} def -/packedarray -{ -array astore readonly -} def -/setpacking -{ -pop -} def -/currentpacking -{ -false -} def -currentdict readonly pop end -%%EndProcSet -Adobe_packedarray /initialize get exec -%%BeginProcSet: Adobe_cmykcolor 1.1 0 -currentpacking true setpacking -userdict /Adobe_cmykcolor 4 dict dup begin put -/initialize -{ -/setcmykcolor where - { - pop - } - { - userdict /Adobe_cmykcolor_vars 2 dict dup begin put - /_setrgbcolor - /setrgbcolor load def - /_currentrgbcolor - /currentrgbcolor load def - Adobe_cmykcolor begin - Adobe_cmykcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - end - Adobe_cmykcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_cmykcolor eq - { - end - } if -} def -/setcmykcolor -{ -1 sub 4 1 roll -3 - { - 3 index add neg dup 0 lt - { - pop 0 - } if - 3 1 roll - } repeat -Adobe_cmykcolor_vars /_setrgbcolor get exec -pop -} def -/currentcmykcolor -{ -Adobe_cmykcolor_vars /_currentrgbcolor get exec -3 - { - 1 sub neg 3 1 roll - } repeat -0 -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_cshow 1.1 0 -currentpacking true setpacking -userdict /Adobe_cshow 3 dict dup begin put -/initialize -{ -/cshow where - { - pop - } - { - userdict /Adobe_cshow_vars 1 dict dup begin put - /_cshow - {} def - Adobe_cshow begin - Adobe_cshow - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - end - } ifelse -} def -/terminate -{ -} def -/cshow -{ -exch -Adobe_cshow_vars - exch /_cshow - exch put - { - 0 0 Adobe_cshow_vars /_cshow get exec - } forall -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_customcolor 1.0 0 -currentpacking true setpacking -userdict /Adobe_customcolor 5 dict dup begin put -/initialize -{ -/setcustomcolor where - { - pop - } - { - Adobe_customcolor begin - Adobe_customcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - Adobe_customcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_customcolor eq - { - end - } if -} def -/findcmykcustomcolor -{ -5 packedarray -} def -/setcustomcolor -{ -exch -aload pop pop -4 - { - 4 index mul 4 1 roll - } repeat -5 -1 roll pop -setcmykcolor -} def -/setoverprint -{ -pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_pattern 1.9 0 -currentpacking true setpacking -userdict /Adobe_pattern 14 dict dup begin put -/initialize -{ -/definepattern where - { - pop - } - { - Adobe_pattern begin - Adobe_pattern - { - dup xcheck - { - bind - } if - pop pop - } forall - mark - cachestatus 7 1 roll pop pop pop pop exch pop exch - { - { - 10000 add - dup 2 index gt - { - break - } if - dup setcachelimit - } loop - } stopped - cleartomark - } ifelse -} def -/terminate -{ -currentdict Adobe_pattern eq - { - end - } if -} def -errordict -/nocurrentpoint -{ -pop -stop -} put -errordict -/invalidaccess -{ -pop -stop -} put -/patternencoding -256 array def -0 1 255 -{ -patternencoding exch ( ) 2 copy exch 0 exch put cvn put -} for -/definepattern -{ -17 dict begin -/uniform exch def -/cache exch def -/key exch def -/procarray exch def -/mtx exch matrix invertmatrix def -/height exch def -/width exch def -/ctm matrix currentmatrix def -/ptm matrix def -/str 32 string def -/slice 9 dict def -slice /s 1 put -slice /q 256 procarray length div sqrt floor cvi put -slice /b 0 put -/FontBBox [0 0 0 0] def -/FontMatrix mtx matrix copy def -/Encoding patternencoding def -/FontType 3 def -/BuildChar - { - exch - begin - slice begin - dup q dup mul mod s idiv /i exch def - dup q dup mul mod s mod /j exch def - q dup mul idiv procarray exch get - /xl j width s div mul def - /xg j 1 add width s div mul def - /yl i height s div mul def - /yg i 1 add height s div mul def - uniform - { - 1 1 - } - { - width 0 dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - 0 height dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - } ifelse - width 0 cache - { - xl 4 index mul yl 4 index mul xg 6 index mul yg 6 index mul - setcachedevice - } - { - setcharwidth - } ifelse - gsave - scale - newpath - xl yl moveto - xg yl lineto - xg yg lineto - xl yg lineto - closepath - clip - newpath - end - end - exec - grestore - } def -key currentdict definefont -end -} def -/patterncachesize -{ -gsave -newpath -0 0 moveto -width 0 lineto -width height lineto -0 height lineto -closepath -patternmatrix setmatrix -pathbbox -exch ceiling 4 -1 roll floor sub 3 1 roll -ceiling exch floor sub -mul 1 add -grestore -} def -/patterncachelimit -{ -cachestatus 7 1 roll pop pop pop pop pop pop 8 mul -} def -/patternpath -{ -exch dup begin setfont -ctm setmatrix -concat -slice exch /b exch slice /q get dup mul mul put -FontMatrix concat -uniform - { - width 0 dtransform round width div exch round width div exch - 0 height dtransform round height div exch height div exch - 0 0 transform round exch round exch - ptm astore setmatrix - } - { - ptm currentmatrix pop - } ifelse -{currentpoint} stopped not - { - pop pop - pathbbox - true - 4 index 3 index eq - 4 index 3 index eq - and - { - pop false - { - {pop pop} - {pop pop pop true} - {pop pop pop pop pop pop pop true} - {pop true} - pathforall - } stopped - { - pop pop pop pop pop true - } if - } if - { - height div ceiling height mul 4 1 roll - width div ceiling width mul 4 1 roll - height div floor height mul 4 1 roll - width div floor width mul 4 1 roll - 2 index sub height div ceiling cvi exch - 3 index sub width div ceiling cvi exch - 4 2 roll moveto - FontMatrix mtx invertmatrix - dup dup 4 get exch 5 get rmoveto - ptm ptm concatmatrix pop - slice /s - patterncachesize patterncachelimit div ceiling sqrt ceiling cvi - dup slice /q get gt - { - pop slice /q get - } if - put - 0 1 slice /s get dup mul 1 sub - { - slice /b get add - gsave - 0 1 str length 1 sub - { - str exch 2 index put - } for - pop - dup - { - gsave - ptm setmatrix - 1 index str length idiv {str show} repeat - 1 index str length mod str exch 0 exch getinterval show - grestore - 0 height rmoveto - } repeat - grestore - } for - pop pop - } - { - pop pop pop pop - } ifelse - } if -end -} def -/patternclip -{ -clip -} def -/patternstrokepath -{ -strokepath -} def -/patternmatrix -matrix def -/patternfill -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternclip -Adobe_pattern /patternpath get exec -grestore -newpath -} def -/patternstroke -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternstrokepath -true - { - { - { - newpath - moveto - } - { - lineto - } - { - curveto - } - { - closepath - 3 copy - Adobe_pattern /patternfill get exec - } pathforall - pop pop pop - } stopped - { - pop pop pop pop pop - patternclip - Adobe_pattern /patternfill get exec - } if - } - { - patternclip - Adobe_pattern /patternfill get exec - } ifelse -grestore -newpath -} def -/patternashow -{ -3 index type /dicttype eq - { - Adobe_pattern /patternmatrix get 4 1 roll - } if - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 6 index 6 index 6 index - Adobe_pattern /patternfill get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop -} def -/patternashowstroke -{ -4 index type /dicttype eq - { - patternmatrix /patternmatrix get 5 1 roll - } if -4 1 roll - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - 7 index 7 index 7 index - Adobe_pattern /patternstroke get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_Illustrator88 1.19 0 -currentpacking true setpacking -userdict /Adobe_Illustrator88 73 dict dup begin put -/initialize -{ -userdict /Adobe_Illustrator88_vars 31 dict dup begin put -/_lp /none def -/_pf {} def -/_ps {} def -/_psf {} def -/_pss {} def -/_a null def -/_as null def -/_tt 2 array def -/_tl 2 array def -/_tm matrix def -/t {} def -/_gf null def -/_cf 4 array def -/_if null def -/_of false def -/_fc {} def -/_gs null def -/_cs 4 array def -/_is null def -/_os false def -/_sc {} def -/_pd 1 dict def -/_ed 15 dict def -/_pm matrix def -/_fm null def -/_fd null def -/_fdd null def -/_sm null def -/_sd null def -/_sdd null def -/_i null def -Adobe_Illustrator88 begin -Adobe_Illustrator88 dup /nc get begin - { - dup xcheck - { - bind - } if - pop pop - } forall -end -end -end -Adobe_Illustrator88 begin -Adobe_Illustrator88_vars begin -newpath -} def -/terminate -{ -end -end -} def -/_ -null def -/ddef -{ -Adobe_Illustrator88_vars 3 1 roll put -} def -/xput -{ -dup load dup length exch maxlength eq - { - dup dup load dup - length 2 mul dict copy def - } if -load begin def end -} def -/npop -{ - { - pop - } repeat -} def -/sw -{ -stringwidth -exch 5 -1 roll 3 index 1 sub mul add -4 1 roll 3 1 roll 1 sub mul add -} def -/ss -{ -3 -1 roll pop -4 1 roll - { - 2 npop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - stroke - grestore - moveto - 2 copy rmoveto - } exch cshow -3 npop -} def -/sp -{ -exch pop - { - 2 npop (0) exch - 2 copy 0 exch put pop - false charpath - 2 copy rmoveto - } exch cshow -2 npop -} def -/pl -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where -{ -pop true setstrokeadjust -/c -{ -curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll curveto -} def -/V -/v load def -/y -{ -2 copy curveto -} def -/Y -/y load def -/l -{ -lineto -} def -/L -/l load def -/m -{ -moveto -} def -} -{ -/c -{ -pl curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll pl curveto -} def -/V -/v load def -/y -{ -pl 2 copy curveto -} def -/Y -/y load def -/l -{ -pl lineto -} def -/L -/l load def -/m -{ -pl moveto -} def -} ifelse -/d -{ -setdash -} def -/cf -currentflat def -/i -{ -dup 0 eq - { - pop cf - } if -setflat -} def -/j -{ -setlinejoin -} def -/J -{ -setlinecap -} def -/M -{ -setmiterlimit -} def -/w -{ -setlinewidth -} def -/H -{} def -/h -{ -closepath -} def -/N -{ -newpath -} def -/n -/N load def -/F -{ -_pf -} def -/f -{ -closepath -F -} def -/S -{ -_ps -} def -/s -{ -closepath -S -} def -/B -{ -gsave F grestore -S -} def -/b -{ -closepath -B -} def -/W -{ -clip -} def -/ta -{ -_as moveto -_tt aload pop 4 -2 roll -} def -/tl -{ -_tl aload pop translate -} def -/as -{ -{ -0 0 -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg 2 div exch neg 2 div -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg exch neg -} -{ -0 0 -} -} cvlit def -/z -{ -/_a exch ddef -/_as as _a get ddef -_a 2 le - { - 0 _tt astore pop - 0 exch neg _tl astore pop - } - { - 0 exch neg _tt astore pop - neg 0 _tl astore pop - } ifelse -exch findfont exch scalefont setfont -} def -/tm -{ -_tm currentmatrix pop -concat -} def -/I -{ -tm -/t - { - ta sp - tl - } ddef -} def -/o -{ -tm -/t - { - ta 4 npop - tl - newpath - } ddef -} def -/e -{ -tm -/t - { - ta _psf - tl - newpath - } ddef -} def -/r -{ -tm -/t - { - ta _tm _pss - tl - newpath - } ddef -} def -/a -{ -tm -/t - { - 2 copy - ta _psf - newpath - ta _tm _pss - tl - newpath - } ddef -} def -/T -{ -_tm setmatrix -} def -/Z -{ -pop -findfont begin -currentdict dup length 1 add dict begin - { - 1 index /FID ne - { - def - } - { - 2 npop - } ifelse - } forall -/FontName exch def dup length 0 ne - { - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - { - Encoding 2 index 2 index put pop - 1 add - } - { - exch pop - } ifelse - } forall - } if pop -currentdict dup end end -/FontName get exch definefont pop -} def -/u -{} def -/U -{} def -/q -{ -gsave -} def -/Q -{ -grestore -} def -/` -{ -/_i save ddef -6 1 roll 4 npop -concat -userdict begin -/showpage {} def -false setoverprint -pop -} def -/~ -{ -end -_i restore -} def -/@ -{} def -/& -{} def -/O -{ -0 ne -/_of exch ddef -/_lp /none ddef -} def -/R -{ -0 ne -/_os exch ddef -/_lp /none ddef -} def -/g -{ -/_gf exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _gf setgray - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/G -{ -/_gs exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _gs setgray - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/k -{ -_cf astore pop -/_fc -{ -_lp /fill ne - { - _of setoverprint - _cf aload pop setcmykcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/K -{ -_cs astore pop -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _cs aload pop setcmykcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/x -{ -/_gf exch ddef -findcmykcustomcolor -/_if exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _if _gf 1 exch sub setcustomcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/X -{ -/_gs exch ddef -findcmykcustomcolor -/_is exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _is _gs 1 exch sub setcustomcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/dp -{ -dup null eq -{ -pop -_dp 0 ne - { - 0 1 _dp 1 sub _dl mod - { - _da exch get 3 get - } for - _dp 1 sub _dl mod 1 add packedarray - _da 0 get aload pop 8 -1 roll 5 -1 roll pop 4 1 roll - definepattern pop - } if -} -{ -_dp 0 ne _dp _dl mod 0 eq and - { - null dp - } if -7 packedarray _da exch _dp _dl mod exch put -_dp _dl mod _da 0 get 4 get 2 packedarray -/_dp _dp 1 add def -} ifelse -} def -/E -{ -_ed begin -dup 0 get type /arraytype ne - { - 0 - { - dup 1 add index type /arraytype eq - { - 1 add - } - { - exit - } ifelse - } loop - array astore - } if -/_dd exch def -/_ury exch def -/_urx exch def -/_lly exch def -/_llx exch def -/_n exch def -/_y 0 def -/_dl 4 def -/_dp 0 def -/_da _dl array def -0 1 _dd length 1 sub - { - /_d exch _dd exch get def - 0 2 _d length 2 sub - { - /_x exch def - /_c _d _x get _ ne def - /_r _d _x 1 add get cvlit def - _r _ ne - { - _urx _llx sub _ury _lly sub [1 0 0 1 0 0] - [ - /save cvx - _llx neg _lly neg /translate cvx - _c - { - nc /begin cvx - } if - _r dup type /stringtype eq - { - cvx - } - { - {exec} /forall cvx - } ifelse - _c - { - /end cvx - } if - /restore cvx - ] cvx - /_fn 12 _n length add string def - _y _fn cvs pop - /_y _y 1 add def - _fn 12 _n putinterval - _fn _c false dp - _d exch _x 1 add exch put - } if - } for - } for -null dp -_n _dd /_pd -end xput -} def -/fc -{ -_fm dup concatmatrix pop -} def -/p -{ -/_fm exch ddef -9 -2 roll _pm translate fc -7 -2 roll _pm scale fc -5 -1 roll _pm rotate fc -4 -2 roll exch 0 ne - { - dup _pm rotate fc - 1 -1 _pm scale fc - neg _pm rotate fc - } - { - pop - } ifelse -dup _pm rotate fc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore fc -neg _pm rotate fc -_pd exch get /_fdd exch ddef -/_pf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - patternfill - } - { - pop - fill - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_psf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - 10 copy 6 npop exch pop patternashow - } - { - pop - 7 copy 3 npop exch pop ashow - } ifelse - grestore - pop - } for - pop - } for -restore -4 npop newpath -} ddef -/_lp /none ddef -} def -/sc -{ -_sm dup concatmatrix pop -} def -/P -{ -/_sm exch ddef -9 -2 roll _pm translate sc -7 -2 roll _pm scale sc -5 -1 roll _pm rotate sc -4 -2 roll exch 0 ne - { - dup _pm rotate sc - 1 -1 _pm scale sc - neg _pm rotate sc - } - { - pop - } ifelse -dup _pm rotate sc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore sc -neg _pm rotate sc -_pd exch get /_sdd exch ddef -/_ps -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - patternstroke - } - { - pop stroke - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_pss -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - 11 copy 6 npop 3 -1 roll pop patternashowstroke - } - { - pop - 8 copy 3 npop ss - } ifelse - grestore - pop - } for - pop - } for -restore -5 npop newpath -} ddef -/_lp /none ddef -} def -/A -{ -pop -} def -/nc 3 dict def -nc begin -/setgray -{ -pop -} bind def -/setcmykcolor -{ -4 npop -} bind def -/setcustomcolor -{ -2 npop -} bind def -currentdict readonly pop end -currentdict readonly pop end -setpacking -%%EndProcSet -%%EndProlog - -%%BeginSetup -Adobe_cmykcolor /initialize get exec -Adobe_cshow /initialize get exec -Adobe_customcolor /initialize get exec -Adobe_pattern /initialize get exec -Adobe_Illustrator88 /initialize get exec - -%%BeginPattern: (0) -(0) 10 10 18 18 [ -(0 O 0 R 0.000000 0.000000 0.000000 0 (New Color 0) 0 x 0.000000 0.000000 0.000000 0 (New Color 0) 0 X) @ -_ & -(0 O 0 R 0.533325 0.533325 0.533325 0 (New Color 52) 0 x 0.533325 0.533325 0.533325 0 (New Color 52) 0 X) @ -( -0 i 1 J 0 j 1.5 w 4 M []0 d -%%Note: -9 20 m -20 9 l -S -9 12 m -12 9 l -S -17 20 m -20 17 l -S -) & -] E -%%EndPattern -%%BeginEncoding: _Palatino-Roman Palatino-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Palatino-Roman /Palatino-Roman 0 Z -%%EndEncoding - -%%EndSetup - -0 A -0 O -0 R -0 g -0 G -0 i 0 J 0 j 1 w 4 M [] 0 d -u -u -330.471 363.059 m -330.471 388 L -314.471 388 L -314.471 363.059 L -330.471 363.059 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Palatino-Roman 24 26 0 0 z -[1 0 0 1 314.471 370 ]e -1 (a)t -T -u -272.941 345.059 m -272.941 370 L -209.941 370 L -209.941 345.059 L -272.941 345.059 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Palatino-Roman 24 26 0 0 z -[1 0 0 1 209.941 352 ]e -6 (x axis)t -T -u -582.471 402.529 m -582.471 427.529 L -518.471 427.529 L -518.471 402.529 L -582.471 402.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Palatino-Roman 24 26 0 0 z -[1 0 0 1 518.471 409.529 ]e -6 (y axis)t -T -u -435 633.059 m -435 658.059 L -372 658.059 L -372 633.059 L -435 633.059 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Palatino-Roman 24 26 0 0 z -[1 0 0 1 372 640.059 ]e -6 (z axis)t -T -u -447.471 363.059 m -447.471 388 L -431.471 388 L -431.471 363.059 L -447.471 363.059 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Palatino-Roman 24 26 0 0 z -[1 0 0 1 431.471 370 ]e -1 (a)t -T -u -267.471 462.059 m -267.471 487 L -251.471 487 L -251.471 462.059 L -267.471 462.059 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Palatino-Roman 24 26 0 0 z -[1 0 0 1 251.471 469 ]e -1 (a)t -T -U -u -275.824 399.059 m -275.882 537.529 L -367.471 568 L -367.471 429.529 L - -0.4 0 0 0 (New Color 0) 0 x - F -U -u -367.471 429.529 m -367.471 568 L -478.588 542.824 L -478.588 404.353 L - -1 0.333 0.4 0 (New Color 9) 0 x - F -U -u -275.824 399.059 m -367.471 429.529 L -275.824 399.059 L - -1 g F -U -u -478.588 404.353 m -367.471 429.529 L - -1 g F -U -u -275.824 399.059 m -367.471 429.529 L -478.588 404.353 L -386.941 373.882 L - -1 0.333 0.4 0 (New Color 194) 0 x - F -U -u -367.471 568 m -367.471 429.529 L - -1 g F -U -u -275.882 537.529 m -367.471 568 L -478.588 542.824 L -386.941 512.353 L - -1 0.333 0.4 0 (New Color 194) 0 x - F -U -u -367.471 568 m -367.529 671.824 L -367.471 568 L - -1 g F -U -u -386.941 373.882 m -386.941 512.353 L -275.882 537.529 L -275.824 399.059 L - -1 0.333 0.4 0 (New Color 9) 0 x - F -U -u -275.824 399.059 m -207.118 376.176 L - -1 g F -U -u -478.588 404.353 m -478.588 542.824 L -386.941 512.353 L -386.941 373.882 L - -0.4 0 0 0 (New Color 0) 0 x - F -U -u -478.588 404.353 m -561.882 385.471 L -478.588 404.353 L - -1 g F -U -368.537 670.816 m -368.478 566.992 l -2.016 w 0 G S -368.537 670.816 m -368.478 566.992 l -2.016 w 0 G S -478.624 404.317 m -478.624 542.788 l -0.072 w 1 1 0 0 (New Color 4) 0 X - S -478.624 542.788 m -367.507 567.964 l -0.072 w 1 1 0 0 (New Color 4) 0 X - S -367.507 567.964 m -275.918 537.493 l -0.072 w 1 1 0 0 (New Color 4) 0 X - S -275.918 537.493 m -275.86 399.023 l -0.072 w 1 1 0 0 (New Color 4) 0 X - S -562.89 384.463 m -479.596 403.345 l -2.016 w 0 G S -562.89 384.463 m -479.596 403.345 l -2.016 w 0 G S -276.831 398.051 m -208.125 375.169 l -2.016 w 0 G S -208.125 375.169 m -276.831 398.051 l -2.016 w 0 G S -275.86 399.023 m -386.977 373.846 l -0.072 w 1 1 0 0 (New Color 4) 0 X - S -386.977 373.846 m -478.624 404.317 l -0.072 w 1 1 0 0 (New Color 4) 0 X - S -275.918 537.493 m -386.977 512.317 l -0.072 w 1 1 0 0 (New Color 4) 0 X - S -386.977 512.317 m -478.624 542.788 l -0.072 w 1 1 0 0 (New Color 4) 0 X - S -386.977 373.846 m -386.977 512.317 l -0.072 w 1 1 0 0 (New Color 4) 0 X - S - -%%Trailer -Adobe_Illustrator88 /terminate get exec -Adobe_pattern /terminate get exec -Adobe_customcolor /terminate get exec -Adobe_cshow /terminate get exec -Adobe_cmykcolor /terminate get exec -Adobe_packedarray /terminate get exec -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob23.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob23.gif deleted file mode 100755 index e7660a8e4..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob23.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob24a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob24a.eps deleted file mode 100755 index 2418b14b1..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob24a.eps +++ /dev/null @@ -1,344 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q16.draw -- /teacher/Apps/Drawfiles/phys121a/set7 -%%Creator: Draw -%%CreationDate: Mon May 29 15:21:40 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 41 422 383 644 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --43 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -41 422 342 222 rectclip -0 0 1.046512 setup -0 nxsetgray -101 38 168 542 oval matrix defaultmatrix setmatrix stroke -grestore -0 0 1.046512 setup -0 nxsetgray -101 38 168 431 oval matrix defaultmatrix setmatrix stroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -160 453 132 22 rectfill -1 nxsetgray -160 453 132 22 rectstroke -grestore -0 0 1.046512 setup -0 nxsetgray -0 -111 168 561 line -grestore -0 0 1.046512 setup -0 nxsetgray -65 65 188 464 oval matrix defaultmatrix setmatrix stroke -grestore -0 0 1.046512 setup -0 nxsetgray -0 -111 268 561 line -grestore -0 setgray -0.333333 setgray -0 0 1.046512 setup -gsave -0.386212 nxsetgray -25 25 208 484 oval fill -grestore -0 nxsetgray -25 25 208 484 oval matrix defaultmatrix setmatrix stroke -grestore -0 0 1.046512 setup -gsave -/Helvetica findfont 14 scalefont [1 0 0 -1 0 0] makefont -86 -exch -defineuserobject -86 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1038] concat -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -87 -exch -defineuserobject -87 execuserobject setfont -0 nxsetgray -214 524 moveto (q) show -grestore -grestore -0 0 1.046512 setup -gsave -87 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 986] concat -/Helvetica-Bold findfont 24 scalefont [1 0 0 -1 0 0] makefont -116 -exch -defineuserobject -116 execuserobject setfont -0 nxsetgray -217 496 moveto (-) show -grestore -grestore -0 0 1.046512 setup -gsave -116 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1238] concat -86 execuserobject setfont -0 nxsetgray -251 615 moveto (solid conducting) show -251 633 moveto (cylinder) show -grestore -grestore -0 0 1.046512 setup -gsave -86 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1008] concat -86 execuserobject setfont -0 nxsetgray -283 509 moveto (hollow sphere) show -grestore -grestore -0 0 1.046512 setup -gsave -86 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1014] concat -86 execuserobject setfont -0 nxsetgray -50 503 moveto (charge) show -50 521 moveto (\(inside sphere\)) show -grestore -grestore -0 0 1.046512 setup -0 nxsetgray -74 -17 135 518 line --12.938437 209 501 arrow -grestore -0 0 1.046512 setup -0 nxsetgray -27 -6 249 509 line -167.470825 249 509 arrow -grestore -0 0 1.046512 setup -0 nxsetgray -35 35 237 565 line -225.001328 237 565 arrow -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold -%%+ Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob24a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob24a.gif deleted file mode 100755 index 849804cc0..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob24a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob25.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob25.eps deleted file mode 100755 index 59dd14a4e..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob25.eps +++ /dev/null @@ -1,1584 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad 6.0.1 -%%Title: prob1-5.eps -%%CreationDate: 5/9/1997 -%%DocumentProcSets: Adobe_packedarray 1.0 0 -%%DocumentSuppliedProcSets: Adobe_packedarray 1.0 0 -%%DocumentProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentProcSets: Adobe_cshow 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cshow 1.1 0 -%%DocumentProcSets: Adobe_customcolor 1.0 0 -%%DocumentSuppliedProcSets: Adobe_customcolor 1.0 0 -%%DocumentProcSets: Adobe_pattern 1.9 0 -%%DocumentSuppliedProcSets: Adobe_pattern 1.9 0 -%%DocumentProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentSuppliedProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentFonts: Times-Italic -%%BoundingBox:171 490 396 616 -%%TemplateBox:306 396 306 396 -%%DocumentPreview: Header -%%EndComments - -%%BeginProlog -%%BeginProcSet: Adobe_packedarray 1.0 0 -userdict /Adobe_packedarray 5 dict dup begin put -/initialize -{ -/packedarray where - { - pop - } - { - Adobe_packedarray begin - Adobe_packedarray - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - } ifelse -} def -/terminate -{ -} def -/packedarray -{ -array astore readonly -} def -/setpacking -{ -pop -} def -/currentpacking -{ -false -} def -currentdict readonly pop end -%%EndProcSet -Adobe_packedarray /initialize get exec -%%BeginProcSet: Adobe_cmykcolor 1.1 0 -currentpacking true setpacking -userdict /Adobe_cmykcolor 4 dict dup begin put -/initialize -{ -/setcmykcolor where - { - pop - } - { - userdict /Adobe_cmykcolor_vars 2 dict dup begin put - /_setrgbcolor - /setrgbcolor load def - /_currentrgbcolor - /currentrgbcolor load def - Adobe_cmykcolor begin - Adobe_cmykcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - end - Adobe_cmykcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_cmykcolor eq - { - end - } if -} def -/setcmykcolor -{ -1 sub 4 1 roll -3 - { - 3 index add neg dup 0 lt - { - pop 0 - } if - 3 1 roll - } repeat -Adobe_cmykcolor_vars /_setrgbcolor get exec -pop -} def -/currentcmykcolor -{ -Adobe_cmykcolor_vars /_currentrgbcolor get exec -3 - { - 1 sub neg 3 1 roll - } repeat -0 -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_cshow 1.1 0 -currentpacking true setpacking -userdict /Adobe_cshow 3 dict dup begin put -/initialize -{ -/cshow where - { - pop - } - { - userdict /Adobe_cshow_vars 1 dict dup begin put - /_cshow - {} def - Adobe_cshow begin - Adobe_cshow - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - end - } ifelse -} def -/terminate -{ -} def -/cshow -{ -exch -Adobe_cshow_vars - exch /_cshow - exch put - { - 0 0 Adobe_cshow_vars /_cshow get exec - } forall -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_customcolor 1.0 0 -currentpacking true setpacking -userdict /Adobe_customcolor 5 dict dup begin put -/initialize -{ -/setcustomcolor where - { - pop - } - { - Adobe_customcolor begin - Adobe_customcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - Adobe_customcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_customcolor eq - { - end - } if -} def -/findcmykcustomcolor -{ -5 packedarray -} def -/setcustomcolor -{ -exch -aload pop pop -4 - { - 4 index mul 4 1 roll - } repeat -5 -1 roll pop -setcmykcolor -} def -/setoverprint -{ -pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_pattern 1.9 0 -currentpacking true setpacking -userdict /Adobe_pattern 14 dict dup begin put -/initialize -{ -/definepattern where - { - pop - } - { - Adobe_pattern begin - Adobe_pattern - { - dup xcheck - { - bind - } if - pop pop - } forall - mark - cachestatus 7 1 roll pop pop pop pop exch pop exch - { - { - 10000 add - dup 2 index gt - { - break - } if - dup setcachelimit - } loop - } stopped - cleartomark - } ifelse -} def -/terminate -{ -currentdict Adobe_pattern eq - { - end - } if -} def -errordict -/nocurrentpoint -{ -pop -stop -} put -errordict -/invalidaccess -{ -pop -stop -} put -/patternencoding -256 array def -0 1 255 -{ -patternencoding exch ( ) 2 copy exch 0 exch put cvn put -} for -/definepattern -{ -17 dict begin -/uniform exch def -/cache exch def -/key exch def -/procarray exch def -/mtx exch matrix invertmatrix def -/height exch def -/width exch def -/ctm matrix currentmatrix def -/ptm matrix def -/str 32 string def -/slice 9 dict def -slice /s 1 put -slice /q 256 procarray length div sqrt floor cvi put -slice /b 0 put -/FontBBox [0 0 0 0] def -/FontMatrix mtx matrix copy def -/Encoding patternencoding def -/FontType 3 def -/BuildChar - { - exch - begin - slice begin - dup q dup mul mod s idiv /i exch def - dup q dup mul mod s mod /j exch def - q dup mul idiv procarray exch get - /xl j width s div mul def - /xg j 1 add width s div mul def - /yl i height s div mul def - /yg i 1 add height s div mul def - uniform - { - 1 1 - } - { - width 0 dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - 0 height dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - } ifelse - width 0 cache - { - xl 4 index mul yl 4 index mul xg 6 index mul yg 6 index mul - setcachedevice - } - { - setcharwidth - } ifelse - gsave - scale - newpath - xl yl moveto - xg yl lineto - xg yg lineto - xl yg lineto - closepath - clip - newpath - end - end - exec - grestore - } def -key currentdict definefont -end -} def -/patterncachesize -{ -gsave -newpath -0 0 moveto -width 0 lineto -width height lineto -0 height lineto -closepath -patternmatrix setmatrix -pathbbox -exch ceiling 4 -1 roll floor sub 3 1 roll -ceiling exch floor sub -mul 1 add -grestore -} def -/patterncachelimit -{ -cachestatus 7 1 roll pop pop pop pop pop pop 8 mul -} def -/patternpath -{ -exch dup begin setfont -ctm setmatrix -concat -slice exch /b exch slice /q get dup mul mul put -FontMatrix concat -uniform - { - width 0 dtransform round width div exch round width div exch - 0 height dtransform round height div exch height div exch - 0 0 transform round exch round exch - ptm astore setmatrix - } - { - ptm currentmatrix pop - } ifelse -{currentpoint} stopped not - { - pop pop - pathbbox - true - 4 index 3 index eq - 4 index 3 index eq - and - { - pop false - { - {pop pop} - {pop pop pop true} - {pop pop pop pop pop pop pop true} - {pop true} - pathforall - } stopped - { - pop pop pop pop pop true - } if - } if - { - height div ceiling height mul 4 1 roll - width div ceiling width mul 4 1 roll - height div floor height mul 4 1 roll - width div floor width mul 4 1 roll - 2 index sub height div ceiling cvi exch - 3 index sub width div ceiling cvi exch - 4 2 roll moveto - FontMatrix mtx invertmatrix - dup dup 4 get exch 5 get rmoveto - ptm ptm concatmatrix pop - slice /s - patterncachesize patterncachelimit div ceiling sqrt ceiling cvi - dup slice /q get gt - { - pop slice /q get - } if - put - 0 1 slice /s get dup mul 1 sub - { - slice /b get add - gsave - 0 1 str length 1 sub - { - str exch 2 index put - } for - pop - dup - { - gsave - ptm setmatrix - 1 index str length idiv {str show} repeat - 1 index str length mod str exch 0 exch getinterval show - grestore - 0 height rmoveto - } repeat - grestore - } for - pop pop - } - { - pop pop pop pop - } ifelse - } if -end -} def -/patternclip -{ -clip -} def -/patternstrokepath -{ -strokepath -} def -/patternmatrix -matrix def -/patternfill -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternclip -Adobe_pattern /patternpath get exec -grestore -newpath -} def -/patternstroke -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternstrokepath -true - { - { - { - newpath - moveto - } - { - lineto - } - { - curveto - } - { - closepath - 3 copy - Adobe_pattern /patternfill get exec - } pathforall - pop pop pop - } stopped - { - pop pop pop pop pop - patternclip - Adobe_pattern /patternfill get exec - } if - } - { - patternclip - Adobe_pattern /patternfill get exec - } ifelse -grestore -newpath -} def -/patternashow -{ -3 index type /dicttype eq - { - Adobe_pattern /patternmatrix get 4 1 roll - } if - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 6 index 6 index 6 index - Adobe_pattern /patternfill get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop -} def -/patternashowstroke -{ -4 index type /dicttype eq - { - patternmatrix /patternmatrix get 5 1 roll - } if -4 1 roll - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - 7 index 7 index 7 index - Adobe_pattern /patternstroke get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_Illustrator88 1.19 0 -currentpacking true setpacking -userdict /Adobe_Illustrator88 73 dict dup begin put -/initialize -{ -userdict /Adobe_Illustrator88_vars 31 dict dup begin put -/_lp /none def -/_pf {} def -/_ps {} def -/_psf {} def -/_pss {} def -/_a null def -/_as null def -/_tt 2 array def -/_tl 2 array def -/_tm matrix def -/t {} def -/_gf null def -/_cf 4 array def -/_if null def -/_of false def -/_fc {} def -/_gs null def -/_cs 4 array def -/_is null def -/_os false def -/_sc {} def -/_pd 1 dict def -/_ed 15 dict def -/_pm matrix def -/_fm null def -/_fd null def -/_fdd null def -/_sm null def -/_sd null def -/_sdd null def -/_i null def -Adobe_Illustrator88 begin -Adobe_Illustrator88 dup /nc get begin - { - dup xcheck - { - bind - } if - pop pop - } forall -end -end -end -Adobe_Illustrator88 begin -Adobe_Illustrator88_vars begin -newpath -} def -/terminate -{ -end -end -} def -/_ -null def -/ddef -{ -Adobe_Illustrator88_vars 3 1 roll put -} def -/xput -{ -dup load dup length exch maxlength eq - { - dup dup load dup - length 2 mul dict copy def - } if -load begin def end -} def -/npop -{ - { - pop - } repeat -} def -/sw -{ -stringwidth -exch 5 -1 roll 3 index 1 sub mul add -4 1 roll 3 1 roll 1 sub mul add -} def -/ss -{ -3 -1 roll pop -4 1 roll - { - 2 npop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - stroke - grestore - moveto - 2 copy rmoveto - } exch cshow -3 npop -} def -/sp -{ -exch pop - { - 2 npop (0) exch - 2 copy 0 exch put pop - false charpath - 2 copy rmoveto - } exch cshow -2 npop -} def -/pl -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where -{ -pop true setstrokeadjust -/c -{ -curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll curveto -} def -/V -/v load def -/y -{ -2 copy curveto -} def -/Y -/y load def -/l -{ -lineto -} def -/L -/l load def -/m -{ -moveto -} def -} -{ -/c -{ -pl curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll pl curveto -} def -/V -/v load def -/y -{ -pl 2 copy curveto -} def -/Y -/y load def -/l -{ -pl lineto -} def -/L -/l load def -/m -{ -pl moveto -} def -} ifelse -/d -{ -setdash -} def -/cf -currentflat def -/i -{ -dup 0 eq - { - pop cf - } if -setflat -} def -/j -{ -setlinejoin -} def -/J -{ -setlinecap -} def -/M -{ -setmiterlimit -} def -/w -{ -setlinewidth -} def -/H -{} def -/h -{ -closepath -} def -/N -{ -newpath -} def -/n -/N load def -/F -{ -_pf -} def -/f -{ -closepath -F -} def -/S -{ -_ps -} def -/s -{ -closepath -S -} def -/B -{ -gsave F grestore -S -} def -/b -{ -closepath -B -} def -/W -{ -clip -} def -/ta -{ -_as moveto -_tt aload pop 4 -2 roll -} def -/tl -{ -_tl aload pop translate -} def -/as -{ -{ -0 0 -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg 2 div exch neg 2 div -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg exch neg -} -{ -0 0 -} -} cvlit def -/z -{ -/_a exch ddef -/_as as _a get ddef -_a 2 le - { - 0 _tt astore pop - 0 exch neg _tl astore pop - } - { - 0 exch neg _tt astore pop - neg 0 _tl astore pop - } ifelse -exch findfont exch scalefont setfont -} def -/tm -{ -_tm currentmatrix pop -concat -} def -/I -{ -tm -/t - { - ta sp - tl - } ddef -} def -/o -{ -tm -/t - { - ta 4 npop - tl - newpath - } ddef -} def -/e -{ -tm -/t - { - ta _psf - tl - newpath - } ddef -} def -/r -{ -tm -/t - { - ta _tm _pss - tl - newpath - } ddef -} def -/a -{ -tm -/t - { - 2 copy - ta _psf - newpath - ta _tm _pss - tl - newpath - } ddef -} def -/T -{ -_tm setmatrix -} def -/Z -{ -pop -findfont begin -currentdict dup length 1 add dict begin - { - 1 index /FID ne - { - def - } - { - 2 npop - } ifelse - } forall -/FontName exch def dup length 0 ne - { - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - { - Encoding 2 index 2 index put pop - 1 add - } - { - exch pop - } ifelse - } forall - } if pop -currentdict dup end end -/FontName get exch definefont pop -} def -/u -{} def -/U -{} def -/q -{ -gsave -} def -/Q -{ -grestore -} def -/` -{ -/_i save ddef -6 1 roll 4 npop -concat -userdict begin -/showpage {} def -false setoverprint -pop -} def -/~ -{ -end -_i restore -} def -/@ -{} def -/& -{} def -/O -{ -0 ne -/_of exch ddef -/_lp /none ddef -} def -/R -{ -0 ne -/_os exch ddef -/_lp /none ddef -} def -/g -{ -/_gf exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _gf setgray - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/G -{ -/_gs exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _gs setgray - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/k -{ -_cf astore pop -/_fc -{ -_lp /fill ne - { - _of setoverprint - _cf aload pop setcmykcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/K -{ -_cs astore pop -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _cs aload pop setcmykcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/x -{ -/_gf exch ddef -findcmykcustomcolor -/_if exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _if _gf 1 exch sub setcustomcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/X -{ -/_gs exch ddef -findcmykcustomcolor -/_is exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _is _gs 1 exch sub setcustomcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/dp -{ -dup null eq -{ -pop -_dp 0 ne - { - 0 1 _dp 1 sub _dl mod - { - _da exch get 3 get - } for - _dp 1 sub _dl mod 1 add packedarray - _da 0 get aload pop 8 -1 roll 5 -1 roll pop 4 1 roll - definepattern pop - } if -} -{ -_dp 0 ne _dp _dl mod 0 eq and - { - null dp - } if -7 packedarray _da exch _dp _dl mod exch put -_dp _dl mod _da 0 get 4 get 2 packedarray -/_dp _dp 1 add def -} ifelse -} def -/E -{ -_ed begin -dup 0 get type /arraytype ne - { - 0 - { - dup 1 add index type /arraytype eq - { - 1 add - } - { - exit - } ifelse - } loop - array astore - } if -/_dd exch def -/_ury exch def -/_urx exch def -/_lly exch def -/_llx exch def -/_n exch def -/_y 0 def -/_dl 4 def -/_dp 0 def -/_da _dl array def -0 1 _dd length 1 sub - { - /_d exch _dd exch get def - 0 2 _d length 2 sub - { - /_x exch def - /_c _d _x get _ ne def - /_r _d _x 1 add get cvlit def - _r _ ne - { - _urx _llx sub _ury _lly sub [1 0 0 1 0 0] - [ - /save cvx - _llx neg _lly neg /translate cvx - _c - { - nc /begin cvx - } if - _r dup type /stringtype eq - { - cvx - } - { - {exec} /forall cvx - } ifelse - _c - { - /end cvx - } if - /restore cvx - ] cvx - /_fn 12 _n length add string def - _y _fn cvs pop - /_y _y 1 add def - _fn 12 _n putinterval - _fn _c false dp - _d exch _x 1 add exch put - } if - } for - } for -null dp -_n _dd /_pd -end xput -} def -/fc -{ -_fm dup concatmatrix pop -} def -/p -{ -/_fm exch ddef -9 -2 roll _pm translate fc -7 -2 roll _pm scale fc -5 -1 roll _pm rotate fc -4 -2 roll exch 0 ne - { - dup _pm rotate fc - 1 -1 _pm scale fc - neg _pm rotate fc - } - { - pop - } ifelse -dup _pm rotate fc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore fc -neg _pm rotate fc -_pd exch get /_fdd exch ddef -/_pf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - patternfill - } - { - pop - fill - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_psf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - 10 copy 6 npop exch pop patternashow - } - { - pop - 7 copy 3 npop exch pop ashow - } ifelse - grestore - pop - } for - pop - } for -restore -4 npop newpath -} ddef -/_lp /none ddef -} def -/sc -{ -_sm dup concatmatrix pop -} def -/P -{ -/_sm exch ddef -9 -2 roll _pm translate sc -7 -2 roll _pm scale sc -5 -1 roll _pm rotate sc -4 -2 roll exch 0 ne - { - dup _pm rotate sc - 1 -1 _pm scale sc - neg _pm rotate sc - } - { - pop - } ifelse -dup _pm rotate sc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore sc -neg _pm rotate sc -_pd exch get /_sdd exch ddef -/_ps -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - patternstroke - } - { - pop stroke - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_pss -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - 11 copy 6 npop 3 -1 roll pop patternashowstroke - } - { - pop - 8 copy 3 npop ss - } ifelse - grestore - pop - } for - pop - } for -restore -5 npop newpath -} ddef -/_lp /none ddef -} def -/A -{ -pop -} def -/nc 3 dict def -nc begin -/setgray -{ -pop -} bind def -/setcmykcolor -{ -4 npop -} bind def -/setcustomcolor -{ -2 npop -} bind def -currentdict readonly pop end -currentdict readonly pop end -setpacking -%%EndProcSet -%%EndProlog - -%%BeginSetup -Adobe_cmykcolor /initialize get exec -Adobe_cshow /initialize get exec -Adobe_customcolor /initialize get exec -Adobe_pattern /initialize get exec -Adobe_Illustrator88 /initialize get exec -%%BeginEncoding: _Times-Italic Times-Italic -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Italic /Times-Italic 0 Z -%%EndEncoding - -%%EndSetup - -0 A -0 O -0 R -0 g -0 G -0 i 0 J 0 j 1 w 4 M [] 0 d -u -392.471 602.029 m -392.471 542.107 343.893 493.529 283.971 493.529 c -283.971 493.529 283.971 602.029 283.971 602.029 c -283.971 602.029 392.471 602.029 392.471 602.029 c -1 g F -283.971 493.529 m -224.048 493.529 175.471 542.107 175.471 602.029 c -175.471 602.029 283.971 602.029 283.971 602.029 c -283.971 602.029 283.971 493.529 283.971 493.529 c -1 g F -U -u -392.496 602 m -392.496 542.079 343.921 493.504 284 493.504 c -1.008 w 0 G S -284 493.504 m -224.079 493.504 175.504 542.079 175.504 602 c -1.008 w 0 G S -U -388.504 602.496 m -391.504 602.496 l -1.008 w 0 G S -283.504 602.496 m -283.504 506.496 l -1.008 w 0 G S -u -283.471 497.529 m -280.471 506.529 L -283.471 506.529 L -286.471 506.529 L -283.471 497.529 L - -0 g F -U -u -283.504 497.496 m -280.504 506.496 L -283.504 506.496 L -286.504 506.496 L -283.504 497.496 L - -1.008 w 0 G s -U -u -287 602.5 m -287 600.567 285.433 599 283.5 599 c -281.567 599 280 600.567 280 602.5 c -280 604.433 281.567 606 283.5 606 c -285.433 606 287 604.433 287 602.5 c -0 g F -U -u -286.496 602.5 m -286.496 600.845 285.155 599.504 283.5 599.504 c -281.845 599.504 280.504 600.845 280.504 602.5 c -280.504 604.155 281.845 605.496 283.5 605.496 c -285.155 605.496 286.496 604.155 286.496 602.5 c -1.008 w 0 G S -U -u -290.471 551.529 m -290.471 564.529 L -280.471 564.529 L -280.471 551.529 L -290.471 551.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 280.471 555.529 ]e -1 (R)t -T -u -298.471 600.529 m -298.471 613.529 L -288.471 613.529 L -288.471 600.529 L -298.471 600.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 288.471 604.529 ]e -1 (P)t -T - -%%Trailer -Adobe_Illustrator88 /terminate get exec -Adobe_pattern /terminate get exec -Adobe_customcolor /terminate get exec -Adobe_cshow /terminate get exec -Adobe_cmykcolor /terminate get exec -Adobe_packedarray /terminate get exec -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob25.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob25.gif deleted file mode 100755 index 333257b74..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob25.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob30.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob30.eps deleted file mode 100755 index 4b7b6a055..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob30.eps +++ /dev/null @@ -1,1679 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad 6.0.1 -%%Title: prob2-5.eps -%%CreationDate: 5/9/1997 -%%DocumentProcSets: Adobe_packedarray 1.0 0 -%%DocumentSuppliedProcSets: Adobe_packedarray 1.0 0 -%%DocumentProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentProcSets: Adobe_cshow 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cshow 1.1 0 -%%DocumentProcSets: Adobe_customcolor 1.0 0 -%%DocumentSuppliedProcSets: Adobe_customcolor 1.0 0 -%%DocumentProcSets: Adobe_pattern 1.9 0 -%%DocumentSuppliedProcSets: Adobe_pattern 1.9 0 -%%DocumentProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentSuppliedProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentFonts: Times-Italic -%%BoundingBox:92 455 481 652 -%%TemplateBox:306 396 306 396 -%%DocumentPreview: Header -%%EndComments - -%%BeginProlog -%%BeginProcSet: Adobe_packedarray 1.0 0 -userdict /Adobe_packedarray 5 dict dup begin put -/initialize -{ -/packedarray where - { - pop - } - { - Adobe_packedarray begin - Adobe_packedarray - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - } ifelse -} def -/terminate -{ -} def -/packedarray -{ -array astore readonly -} def -/setpacking -{ -pop -} def -/currentpacking -{ -false -} def -currentdict readonly pop end -%%EndProcSet -Adobe_packedarray /initialize get exec -%%BeginProcSet: Adobe_cmykcolor 1.1 0 -currentpacking true setpacking -userdict /Adobe_cmykcolor 4 dict dup begin put -/initialize -{ -/setcmykcolor where - { - pop - } - { - userdict /Adobe_cmykcolor_vars 2 dict dup begin put - /_setrgbcolor - /setrgbcolor load def - /_currentrgbcolor - /currentrgbcolor load def - Adobe_cmykcolor begin - Adobe_cmykcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - end - Adobe_cmykcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_cmykcolor eq - { - end - } if -} def -/setcmykcolor -{ -1 sub 4 1 roll -3 - { - 3 index add neg dup 0 lt - { - pop 0 - } if - 3 1 roll - } repeat -Adobe_cmykcolor_vars /_setrgbcolor get exec -pop -} def -/currentcmykcolor -{ -Adobe_cmykcolor_vars /_currentrgbcolor get exec -3 - { - 1 sub neg 3 1 roll - } repeat -0 -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_cshow 1.1 0 -currentpacking true setpacking -userdict /Adobe_cshow 3 dict dup begin put -/initialize -{ -/cshow where - { - pop - } - { - userdict /Adobe_cshow_vars 1 dict dup begin put - /_cshow - {} def - Adobe_cshow begin - Adobe_cshow - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - end - } ifelse -} def -/terminate -{ -} def -/cshow -{ -exch -Adobe_cshow_vars - exch /_cshow - exch put - { - 0 0 Adobe_cshow_vars /_cshow get exec - } forall -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_customcolor 1.0 0 -currentpacking true setpacking -userdict /Adobe_customcolor 5 dict dup begin put -/initialize -{ -/setcustomcolor where - { - pop - } - { - Adobe_customcolor begin - Adobe_customcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - Adobe_customcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_customcolor eq - { - end - } if -} def -/findcmykcustomcolor -{ -5 packedarray -} def -/setcustomcolor -{ -exch -aload pop pop -4 - { - 4 index mul 4 1 roll - } repeat -5 -1 roll pop -setcmykcolor -} def -/setoverprint -{ -pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_pattern 1.9 0 -currentpacking true setpacking -userdict /Adobe_pattern 14 dict dup begin put -/initialize -{ -/definepattern where - { - pop - } - { - Adobe_pattern begin - Adobe_pattern - { - dup xcheck - { - bind - } if - pop pop - } forall - mark - cachestatus 7 1 roll pop pop pop pop exch pop exch - { - { - 10000 add - dup 2 index gt - { - break - } if - dup setcachelimit - } loop - } stopped - cleartomark - } ifelse -} def -/terminate -{ -currentdict Adobe_pattern eq - { - end - } if -} def -errordict -/nocurrentpoint -{ -pop -stop -} put -errordict -/invalidaccess -{ -pop -stop -} put -/patternencoding -256 array def -0 1 255 -{ -patternencoding exch ( ) 2 copy exch 0 exch put cvn put -} for -/definepattern -{ -17 dict begin -/uniform exch def -/cache exch def -/key exch def -/procarray exch def -/mtx exch matrix invertmatrix def -/height exch def -/width exch def -/ctm matrix currentmatrix def -/ptm matrix def -/str 32 string def -/slice 9 dict def -slice /s 1 put -slice /q 256 procarray length div sqrt floor cvi put -slice /b 0 put -/FontBBox [0 0 0 0] def -/FontMatrix mtx matrix copy def -/Encoding patternencoding def -/FontType 3 def -/BuildChar - { - exch - begin - slice begin - dup q dup mul mod s idiv /i exch def - dup q dup mul mod s mod /j exch def - q dup mul idiv procarray exch get - /xl j width s div mul def - /xg j 1 add width s div mul def - /yl i height s div mul def - /yg i 1 add height s div mul def - uniform - { - 1 1 - } - { - width 0 dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - 0 height dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - } ifelse - width 0 cache - { - xl 4 index mul yl 4 index mul xg 6 index mul yg 6 index mul - setcachedevice - } - { - setcharwidth - } ifelse - gsave - scale - newpath - xl yl moveto - xg yl lineto - xg yg lineto - xl yg lineto - closepath - clip - newpath - end - end - exec - grestore - } def -key currentdict definefont -end -} def -/patterncachesize -{ -gsave -newpath -0 0 moveto -width 0 lineto -width height lineto -0 height lineto -closepath -patternmatrix setmatrix -pathbbox -exch ceiling 4 -1 roll floor sub 3 1 roll -ceiling exch floor sub -mul 1 add -grestore -} def -/patterncachelimit -{ -cachestatus 7 1 roll pop pop pop pop pop pop 8 mul -} def -/patternpath -{ -exch dup begin setfont -ctm setmatrix -concat -slice exch /b exch slice /q get dup mul mul put -FontMatrix concat -uniform - { - width 0 dtransform round width div exch round width div exch - 0 height dtransform round height div exch height div exch - 0 0 transform round exch round exch - ptm astore setmatrix - } - { - ptm currentmatrix pop - } ifelse -{currentpoint} stopped not - { - pop pop - pathbbox - true - 4 index 3 index eq - 4 index 3 index eq - and - { - pop false - { - {pop pop} - {pop pop pop true} - {pop pop pop pop pop pop pop true} - {pop true} - pathforall - } stopped - { - pop pop pop pop pop true - } if - } if - { - height div ceiling height mul 4 1 roll - width div ceiling width mul 4 1 roll - height div floor height mul 4 1 roll - width div floor width mul 4 1 roll - 2 index sub height div ceiling cvi exch - 3 index sub width div ceiling cvi exch - 4 2 roll moveto - FontMatrix mtx invertmatrix - dup dup 4 get exch 5 get rmoveto - ptm ptm concatmatrix pop - slice /s - patterncachesize patterncachelimit div ceiling sqrt ceiling cvi - dup slice /q get gt - { - pop slice /q get - } if - put - 0 1 slice /s get dup mul 1 sub - { - slice /b get add - gsave - 0 1 str length 1 sub - { - str exch 2 index put - } for - pop - dup - { - gsave - ptm setmatrix - 1 index str length idiv {str show} repeat - 1 index str length mod str exch 0 exch getinterval show - grestore - 0 height rmoveto - } repeat - grestore - } for - pop pop - } - { - pop pop pop pop - } ifelse - } if -end -} def -/patternclip -{ -clip -} def -/patternstrokepath -{ -strokepath -} def -/patternmatrix -matrix def -/patternfill -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternclip -Adobe_pattern /patternpath get exec -grestore -newpath -} def -/patternstroke -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternstrokepath -true - { - { - { - newpath - moveto - } - { - lineto - } - { - curveto - } - { - closepath - 3 copy - Adobe_pattern /patternfill get exec - } pathforall - pop pop pop - } stopped - { - pop pop pop pop pop - patternclip - Adobe_pattern /patternfill get exec - } if - } - { - patternclip - Adobe_pattern /patternfill get exec - } ifelse -grestore -newpath -} def -/patternashow -{ -3 index type /dicttype eq - { - Adobe_pattern /patternmatrix get 4 1 roll - } if - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 6 index 6 index 6 index - Adobe_pattern /patternfill get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop -} def -/patternashowstroke -{ -4 index type /dicttype eq - { - patternmatrix /patternmatrix get 5 1 roll - } if -4 1 roll - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - 7 index 7 index 7 index - Adobe_pattern /patternstroke get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_Illustrator88 1.19 0 -currentpacking true setpacking -userdict /Adobe_Illustrator88 73 dict dup begin put -/initialize -{ -userdict /Adobe_Illustrator88_vars 31 dict dup begin put -/_lp /none def -/_pf {} def -/_ps {} def -/_psf {} def -/_pss {} def -/_a null def -/_as null def -/_tt 2 array def -/_tl 2 array def -/_tm matrix def -/t {} def -/_gf null def -/_cf 4 array def -/_if null def -/_of false def -/_fc {} def -/_gs null def -/_cs 4 array def -/_is null def -/_os false def -/_sc {} def -/_pd 1 dict def -/_ed 15 dict def -/_pm matrix def -/_fm null def -/_fd null def -/_fdd null def -/_sm null def -/_sd null def -/_sdd null def -/_i null def -Adobe_Illustrator88 begin -Adobe_Illustrator88 dup /nc get begin - { - dup xcheck - { - bind - } if - pop pop - } forall -end -end -end -Adobe_Illustrator88 begin -Adobe_Illustrator88_vars begin -newpath -} def -/terminate -{ -end -end -} def -/_ -null def -/ddef -{ -Adobe_Illustrator88_vars 3 1 roll put -} def -/xput -{ -dup load dup length exch maxlength eq - { - dup dup load dup - length 2 mul dict copy def - } if -load begin def end -} def -/npop -{ - { - pop - } repeat -} def -/sw -{ -stringwidth -exch 5 -1 roll 3 index 1 sub mul add -4 1 roll 3 1 roll 1 sub mul add -} def -/ss -{ -3 -1 roll pop -4 1 roll - { - 2 npop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - stroke - grestore - moveto - 2 copy rmoveto - } exch cshow -3 npop -} def -/sp -{ -exch pop - { - 2 npop (0) exch - 2 copy 0 exch put pop - false charpath - 2 copy rmoveto - } exch cshow -2 npop -} def -/pl -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where -{ -pop true setstrokeadjust -/c -{ -curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll curveto -} def -/V -/v load def -/y -{ -2 copy curveto -} def -/Y -/y load def -/l -{ -lineto -} def -/L -/l load def -/m -{ -moveto -} def -} -{ -/c -{ -pl curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll pl curveto -} def -/V -/v load def -/y -{ -pl 2 copy curveto -} def -/Y -/y load def -/l -{ -pl lineto -} def -/L -/l load def -/m -{ -pl moveto -} def -} ifelse -/d -{ -setdash -} def -/cf -currentflat def -/i -{ -dup 0 eq - { - pop cf - } if -setflat -} def -/j -{ -setlinejoin -} def -/J -{ -setlinecap -} def -/M -{ -setmiterlimit -} def -/w -{ -setlinewidth -} def -/H -{} def -/h -{ -closepath -} def -/N -{ -newpath -} def -/n -/N load def -/F -{ -_pf -} def -/f -{ -closepath -F -} def -/S -{ -_ps -} def -/s -{ -closepath -S -} def -/B -{ -gsave F grestore -S -} def -/b -{ -closepath -B -} def -/W -{ -clip -} def -/ta -{ -_as moveto -_tt aload pop 4 -2 roll -} def -/tl -{ -_tl aload pop translate -} def -/as -{ -{ -0 0 -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg 2 div exch neg 2 div -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg exch neg -} -{ -0 0 -} -} cvlit def -/z -{ -/_a exch ddef -/_as as _a get ddef -_a 2 le - { - 0 _tt astore pop - 0 exch neg _tl astore pop - } - { - 0 exch neg _tt astore pop - neg 0 _tl astore pop - } ifelse -exch findfont exch scalefont setfont -} def -/tm -{ -_tm currentmatrix pop -concat -} def -/I -{ -tm -/t - { - ta sp - tl - } ddef -} def -/o -{ -tm -/t - { - ta 4 npop - tl - newpath - } ddef -} def -/e -{ -tm -/t - { - ta _psf - tl - newpath - } ddef -} def -/r -{ -tm -/t - { - ta _tm _pss - tl - newpath - } ddef -} def -/a -{ -tm -/t - { - 2 copy - ta _psf - newpath - ta _tm _pss - tl - newpath - } ddef -} def -/T -{ -_tm setmatrix -} def -/Z -{ -pop -findfont begin -currentdict dup length 1 add dict begin - { - 1 index /FID ne - { - def - } - { - 2 npop - } ifelse - } forall -/FontName exch def dup length 0 ne - { - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - { - Encoding 2 index 2 index put pop - 1 add - } - { - exch pop - } ifelse - } forall - } if pop -currentdict dup end end -/FontName get exch definefont pop -} def -/u -{} def -/U -{} def -/q -{ -gsave -} def -/Q -{ -grestore -} def -/` -{ -/_i save ddef -6 1 roll 4 npop -concat -userdict begin -/showpage {} def -false setoverprint -pop -} def -/~ -{ -end -_i restore -} def -/@ -{} def -/& -{} def -/O -{ -0 ne -/_of exch ddef -/_lp /none ddef -} def -/R -{ -0 ne -/_os exch ddef -/_lp /none ddef -} def -/g -{ -/_gf exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _gf setgray - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/G -{ -/_gs exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _gs setgray - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/k -{ -_cf astore pop -/_fc -{ -_lp /fill ne - { - _of setoverprint - _cf aload pop setcmykcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/K -{ -_cs astore pop -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _cs aload pop setcmykcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/x -{ -/_gf exch ddef -findcmykcustomcolor -/_if exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _if _gf 1 exch sub setcustomcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/X -{ -/_gs exch ddef -findcmykcustomcolor -/_is exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _is _gs 1 exch sub setcustomcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/dp -{ -dup null eq -{ -pop -_dp 0 ne - { - 0 1 _dp 1 sub _dl mod - { - _da exch get 3 get - } for - _dp 1 sub _dl mod 1 add packedarray - _da 0 get aload pop 8 -1 roll 5 -1 roll pop 4 1 roll - definepattern pop - } if -} -{ -_dp 0 ne _dp _dl mod 0 eq and - { - null dp - } if -7 packedarray _da exch _dp _dl mod exch put -_dp _dl mod _da 0 get 4 get 2 packedarray -/_dp _dp 1 add def -} ifelse -} def -/E -{ -_ed begin -dup 0 get type /arraytype ne - { - 0 - { - dup 1 add index type /arraytype eq - { - 1 add - } - { - exit - } ifelse - } loop - array astore - } if -/_dd exch def -/_ury exch def -/_urx exch def -/_lly exch def -/_llx exch def -/_n exch def -/_y 0 def -/_dl 4 def -/_dp 0 def -/_da _dl array def -0 1 _dd length 1 sub - { - /_d exch _dd exch get def - 0 2 _d length 2 sub - { - /_x exch def - /_c _d _x get _ ne def - /_r _d _x 1 add get cvlit def - _r _ ne - { - _urx _llx sub _ury _lly sub [1 0 0 1 0 0] - [ - /save cvx - _llx neg _lly neg /translate cvx - _c - { - nc /begin cvx - } if - _r dup type /stringtype eq - { - cvx - } - { - {exec} /forall cvx - } ifelse - _c - { - /end cvx - } if - /restore cvx - ] cvx - /_fn 12 _n length add string def - _y _fn cvs pop - /_y _y 1 add def - _fn 12 _n putinterval - _fn _c false dp - _d exch _x 1 add exch put - } if - } for - } for -null dp -_n _dd /_pd -end xput -} def -/fc -{ -_fm dup concatmatrix pop -} def -/p -{ -/_fm exch ddef -9 -2 roll _pm translate fc -7 -2 roll _pm scale fc -5 -1 roll _pm rotate fc -4 -2 roll exch 0 ne - { - dup _pm rotate fc - 1 -1 _pm scale fc - neg _pm rotate fc - } - { - pop - } ifelse -dup _pm rotate fc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore fc -neg _pm rotate fc -_pd exch get /_fdd exch ddef -/_pf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - patternfill - } - { - pop - fill - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_psf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - 10 copy 6 npop exch pop patternashow - } - { - pop - 7 copy 3 npop exch pop ashow - } ifelse - grestore - pop - } for - pop - } for -restore -4 npop newpath -} ddef -/_lp /none ddef -} def -/sc -{ -_sm dup concatmatrix pop -} def -/P -{ -/_sm exch ddef -9 -2 roll _pm translate sc -7 -2 roll _pm scale sc -5 -1 roll _pm rotate sc -4 -2 roll exch 0 ne - { - dup _pm rotate sc - 1 -1 _pm scale sc - neg _pm rotate sc - } - { - pop - } ifelse -dup _pm rotate sc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore sc -neg _pm rotate sc -_pd exch get /_sdd exch ddef -/_ps -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - patternstroke - } - { - pop stroke - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_pss -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - 11 copy 6 npop 3 -1 roll pop patternashowstroke - } - { - pop - 8 copy 3 npop ss - } ifelse - grestore - pop - } for - pop - } for -restore -5 npop newpath -} ddef -/_lp /none ddef -} def -/A -{ -pop -} def -/nc 3 dict def -nc begin -/setgray -{ -pop -} bind def -/setcmykcolor -{ -4 npop -} bind def -/setcustomcolor -{ -2 npop -} bind def -currentdict readonly pop end -currentdict readonly pop end -setpacking -%%EndProcSet -%%EndProlog - -%%BeginSetup -Adobe_cmykcolor /initialize get exec -Adobe_cshow /initialize get exec -Adobe_customcolor /initialize get exec -Adobe_pattern /initialize get exec -Adobe_Illustrator88 /initialize get exec -%%BeginEncoding: _Times-Italic Times-Italic -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Italic /Times-Italic 0 Z -%%EndEncoding - -%%EndSetup - -0 A -0 O -0 R -0 g -0 G -0 i 0 J 0 j 1 w 4 M [] 0 d -u -275 566 m -275 525.683 242.317 493 202 493 c -161.683 493 129 525.683 129 566 c -129 606.317 161.683 639 202 639 c -242.317 639 275 606.317 275 566 c -0 g F -U -u -274.496 566 m -274.496 525.962 242.038 493.504 202 493.504 c -161.962 493.504 129.504 525.962 129.504 566 c -129.504 606.038 161.962 638.496 202 638.496 c -242.038 638.496 274.496 606.038 274.496 566 c -1.008 w 0 G S -U -u -275 566 m -275 545.565 258.435 529 238 529 c -217.565 529 201 545.565 201 566 c -201 586.435 217.565 603 238 603 c -258.435 603 275 586.435 275 566 c -1 g F -U -u -274.496 566 m -274.496 545.844 258.156 529.504 238 529.504 c -217.844 529.504 201.504 545.844 201.504 566 c -201.504 586.156 217.844 602.496 238 602.496 c -258.156 602.496 274.496 586.156 274.496 566 c -1.008 w 0 G S -U -210.504 476.496 m -264.504 476.496 l -1.008 w 0 G S -u -201.471 476.529 m -210.471 473.529 L -210.471 476.529 L -210.471 479.529 L -201.471 476.529 L - -0 g F -U -u -201.504 476.496 m -210.504 473.496 L -210.504 476.496 L -210.504 479.496 L -201.504 476.496 L - -1.008 w 0 G s -U -u -273.471 476.529 m -264.471 473.529 L -264.471 476.529 L -264.471 479.529 L -273.471 476.529 L - -0 g F -U -u -273.504 476.496 m -264.504 473.496 L -264.504 476.496 L -264.504 479.496 L -273.504 476.496 L - -1.008 w 0 G s -U -u -243.471 466.529 m -243.471 479.529 L -233.471 479.529 L -233.471 466.529 L -243.471 466.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 233.471 470.529 ]e -1 (R)t -T -417.504 571.496 m -417.504 562.496 l -1.008 w 0 G S -421.504 566.496 m -412.504 566.496 l -1.008 w 0 G S -u -439.471 555.529 m -439.471 568.529 L -429.471 568.529 L -429.471 555.529 L -439.471 555.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 429.471 559.529 ]e -1 (P)t -T -210.504 566.496 m -408.504 566.496 l -1.008 w 0 G S -u -201.471 566.529 m -210.471 563.529 L -210.471 566.529 L -210.471 569.529 L -201.471 566.529 L - -0 g F -U -u -201.504 566.496 m -210.504 563.496 L -210.504 566.496 L -210.504 569.496 L -201.504 566.496 L - -1.008 w 0 G s -U -u -417.471 566.529 m -408.471 563.529 L -408.471 566.529 L -408.471 569.529 L -417.471 566.529 L - -0 g F -U -u -417.504 566.496 m -408.504 563.496 L -408.504 566.496 L -408.504 569.496 L -417.504 566.496 L - -1.008 w 0 G s -U -u -318.471 556.529 m -318.471 569.529 L -311.471 569.529 L -311.471 556.529 L -318.471 556.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 311.471 560.529 ]e -1 (r)t -T -u -100.471 636.529 m -100.471 649.529 L -94.471 649.529 L -94.471 636.529 L -100.471 636.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 94.471 640.529 ]e -1 ( )t -T -u -479.471 456.529 m -479.471 469.529 L -473.471 469.529 L -473.471 456.529 L -479.471 456.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 473.471 460.529 ]e -1 ( )t -T - -%%Trailer -Adobe_Illustrator88 /terminate get exec -Adobe_pattern /terminate get exec -Adobe_customcolor /terminate get exec -Adobe_cshow /terminate get exec -Adobe_cmykcolor /terminate get exec -Adobe_packedarray /terminate get exec -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob30.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob30.gif deleted file mode 100755 index 436725349..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype53/prob30.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype54/prob01av1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype54/prob01av1.eps deleted file mode 100755 index f6708a108..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype54/prob01av1.eps +++ /dev/null @@ -1,750 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 433 374 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Wed, Jul 31, 1996 10:16 AM -%%DocumentFonts: (atend) -%%EndComments -0 374 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -55.12 14.00 55.12 321.38 MacLine -401.00 14.00 401.00 321.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -55.12 35.25 401.00 35.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -409.38 34.88 401.00 34.88 MacLine -46.75 34.88 55.12 34.88 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -12.00 (_Helvetica) 0 F -(1.4) 23.00 39.88 19.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -55.12 76.12 401.00 76.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -409.38 75.75 401.00 75.75 MacLine -46.75 75.75 55.12 75.75 MacLine -1 ps -12.00 (_Helvetica) 0 F -(1.2) 23.00 80.75 19.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -55.12 117.00 401.00 117.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -409.38 116.62 401.00 116.62 MacLine -46.75 116.62 55.12 116.62 MacLine -1 ps -12.00 (_Helvetica) 0 F -(1.0) 23.00 121.62 19.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -55.12 157.88 401.00 157.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -409.38 157.50 401.00 157.50 MacLine -46.75 157.50 55.12 157.50 MacLine -1 ps -12.00 (_Helvetica) 0 F -(0.8) 23.00 162.50 19.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -55.12 198.75 401.00 198.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -409.38 198.38 401.00 198.38 MacLine -46.75 198.38 55.12 198.38 MacLine -1 ps -12.00 (_Helvetica) 0 F -(0.6) 23.00 203.38 19.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -55.12 239.50 401.00 239.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -409.38 239.12 401.00 239.12 MacLine -46.75 239.12 55.12 239.12 MacLine -1 ps -12.00 (_Helvetica) 0 F -(0.4) 23.00 244.12 19.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -55.12 280.38 401.00 280.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -409.38 280.00 401.00 280.00 MacLine -46.75 280.00 55.12 280.00 MacLine -1 ps -12.00 (_Helvetica) 0 F -(0.2) 23.00 285.00 19.62 WS -1.00 ps -409.38 320.88 401.00 320.88 MacLine -46.75 320.88 55.12 320.88 MacLine -1 ps -12.00 (_Helvetica) 0 F -(0.0) 23.00 325.88 19.62 WS - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -gsave 12.38 212.12 translate -90 rotate -(distance \(m\)) 0.00 0.00 88.12 WS -grestore -1.00 ps -55.12 322.38 401.00 322.38 MacLine -55.12 13.00 401.00 13.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -377.00 322.38 377.00 13.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -376.62 4.62 376.62 13.00 MacLine -376.62 330.75 376.62 322.38 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -12.00 (_Helvetica) 0 F -(1.4) 367.38 348.38 19.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -331.25 322.38 331.25 13.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -330.88 4.62 330.88 13.00 MacLine -330.88 330.75 330.88 322.38 MacLine -1 ps -12.00 (_Helvetica) 0 F -(1.2) 321.62 348.38 19.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -285.62 322.38 285.62 13.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -285.25 4.62 285.25 13.00 MacLine -285.25 330.75 285.25 322.38 MacLine -1 ps -12.00 (_Helvetica) 0 F -(1.0) 276.00 348.38 19.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -239.88 322.38 239.88 13.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -239.50 4.62 239.50 13.00 MacLine -239.50 330.75 239.50 322.38 MacLine -1 ps -12.00 (_Helvetica) 0 F -(0.8) 230.25 348.38 19.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -194.12 322.38 194.12 13.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -193.75 4.62 193.75 13.00 MacLine -193.75 330.75 193.75 322.38 MacLine -1 ps -12.00 (_Helvetica) 0 F -(0.6) 184.50 348.38 19.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -148.38 322.38 148.38 13.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -148.00 4.62 148.00 13.00 MacLine -148.00 330.75 148.00 322.38 MacLine -1 ps -12.00 (_Helvetica) 0 F -(0.4) 138.75 348.38 19.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -102.75 322.38 102.75 13.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -102.38 4.62 102.38 13.00 MacLine -102.38 330.75 102.38 322.38 MacLine -1 ps -12.00 (_Helvetica) 0 F -(0.2) 93.12 348.38 19.62 WS -1.00 ps -56.62 4.62 56.62 13.00 MacLine -56.62 330.75 56.62 322.38 MacLine -1 ps -12.00 (_Helvetica) 0 F -(0.0) 47.38 348.38 19.62 WS - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(distance \(m\)) 184.50 369.38 88.12 WS -1 0 0 SetFore UseFore -1.00 ps -newpath 285.75 321.38 M -284.62 301.00 L -281.12 280.75 L -275.50 261.00 L -267.62 241.88 L -257.75 223.38 L -245.75 206.00 L -232.00 189.75 L -216.38 174.88 L -199.25 161.38 L -180.62 149.50 L -160.88 139.38 L -140.00 131.00 L -118.25 124.62 L -96.00 120.12 L -73.38 117.62 L -57.12 117.38 L -mstroke -newpath 285.62 321.38 M -285.75 318.00 L -284.25 297.50 L -280.38 277.38 L -274.38 257.75 L -266.12 238.62 L -255.88 220.38 L -243.62 203.25 L -229.50 187.12 L -213.62 172.50 L -196.25 159.25 L -177.38 147.62 L -157.38 137.88 L -136.38 129.75 L -114.62 123.62 L -92.25 119.50 L -69.50 117.38 L -57.12 117.38 L -mstroke -newpath 285.50 321.38 M -285.62 314.50 L -283.75 294.12 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -1 0 0 SetFore UseFore -1.00 ps -newpath 314.25 321.38 M -313.00 298.38 L -309.12 275.75 L -302.75 253.50 L -294.00 231.88 L -282.75 211.25 L -269.38 191.62 L -253.75 173.25 L -236.25 156.50 L -217.00 141.38 L -196.12 128.00 L -173.75 116.62 L -150.38 107.25 L -125.88 100.00 L -100.88 95.00 L -75.38 92.25 L -57.12 92.00 L -mstroke -newpath 314.12 321.38 M -314.25 317.50 L -312.50 294.50 L -308.25 271.88 L -301.50 249.75 L -292.25 228.38 L -280.62 207.88 L -266.88 188.50 L -251.00 170.38 L -233.12 153.88 L -213.62 139.00 L -192.50 126.00 L -169.88 114.88 L -146.25 105.88 L -121.75 99.00 L -96.62 94.38 L -71.00 91.88 L -57.12 91.88 L -mstroke -newpath 314.00 321.38 M -314.12 313.62 L -312.00 290.75 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -1 0 0 SetFore UseFore -1.00 ps -newpath 351.00 321.38 M -349.50 295.12 L -345.12 269.25 L -337.88 243.75 L -327.75 219.12 L -315.00 195.50 L -299.62 173.12 L -281.88 152.25 L -261.88 133.00 L -239.75 115.62 L -215.88 100.38 L -190.50 87.38 L -163.62 76.62 L -135.75 68.38 L -107.12 62.62 L -77.88 59.38 L -57.12 59.12 L -mstroke -newpath 350.88 321.38 M -351.00 316.88 L -349.00 290.75 L -344.12 264.88 L -336.38 239.50 L -325.88 215.00 L -312.62 191.62 L -296.88 169.50 L -278.62 148.88 L -258.25 130.00 L -235.88 113.00 L -211.75 98.12 L -186.00 85.38 L -159.00 75.12 L -131.00 67.25 L -102.25 61.88 L -73.00 59.12 L -57.12 59.12 L -mstroke -newpath 350.75 321.38 M -350.88 312.50 L -348.38 286.38 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -1 0 0 SetFore UseFore -1.00 ps -newpath 400.00 321.38 M -398.25 290.75 L -393.12 260.50 L -384.62 230.88 L -372.88 202.00 L -358.00 174.50 L -340.12 148.38 L -319.38 124.00 L -296.00 101.62 L -270.25 81.38 L -242.38 63.62 L -212.62 48.38 L -181.38 35.88 L -148.88 26.12 L -115.38 19.50 L -81.38 15.75 L -57.12 15.38 L -mstroke -newpath 399.75 321.38 M -399.88 316.25 L -397.62 285.62 L -392.00 255.50 L -382.88 225.88 L -370.62 197.38 L -355.25 170.00 L -336.75 144.12 L -315.62 120.12 L -291.75 98.12 L -265.75 78.25 L -237.50 60.88 L -207.50 46.00 L -176.00 34.00 L -143.25 24.88 L -109.75 18.62 L -75.62 15.50 L -57.12 15.50 L -mstroke -newpath 399.62 321.38 M -399.75 311.00 L -396.88 280.50 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -58.00 318.38 178.62 18.88 5.12 10.00 0 Arrow -gsave 1.00 ps 58.00 318.38 174.88 28.12 2 CapLine grestore -58.00 321.38 319.25 15.88 5.12 10.00 0 Arrow -gsave 1.00 ps 58.00 321.38 312.75 23.50 2 CapLine grestore -56.12 321.38 374.00 111.38 5.12 10.00 0 Arrow -gsave 1.00 ps 56.12 321.38 365.62 116.88 2 CapLine grestore -56.12 322.25 392.00 229.75 5.12 10.00 0 Arrow -gsave 1.00 ps 56.12 322.25 382.38 232.38 2 CapLine grestore -57.12 320.38 104.88 26.88 5.12 10.00 0 Arrow -gsave 1.00 ps 57.12 320.38 103.25 36.75 2 CapLine grestore -56.12 322.25 386.00 301.38 5.12 10.00 0 Arrow -gsave 1.00 ps 56.12 322.25 376.00 302.00 2 CapLine grestore -93.00 117.38 134.75 133.38 EraseRect -16.00 (_Helvetica) 0 F -(900 V) 93.00 129.75 41.75 WS -159.75 115.38 201.50 131.38 EraseRect -16.00 (_Helvetica) 0 F -(800 V) 159.75 127.75 41.75 WS -290.38 183.00 332.12 199.00 EraseRect -16.00 (_Helvetica) 0 F -(700 V) 290.38 195.38 41.75 WS -354.12 199.88 395.88 215.88 EraseRect -16.00 (_Helvetica) 0 F -(600 V) 354.12 212.25 41.75 WS -173.38 205.88 184.00 221.88 EraseRect -16.00 (_Helvetica) 0 F -(A) 173.38 218.25 10.62 WS -316.00 88.50 326.62 104.50 EraseRect -16.00 (_Helvetica) 0 F -(B) 316.00 100.88 10.62 WS -254.62 143.25 266.12 159.25 EraseRect -16.00 (_Helvetica) 0 F -(C) 254.62 155.62 11.50 WS -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype54/prob01av1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype54/prob01av1.gif deleted file mode 100755 index afcf12838..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype54/prob01av1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype54/prob01av2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype54/prob01av2.eps deleted file mode 100755 index b3846ae4b..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype54/prob01av2.eps +++ /dev/null @@ -1,751 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 404 374 -%%Creator: Igor -%%Title: Graph1 -%%Creation Date: Wed, Jul 31, 1996 10:17 AM -%%DocumentFonts: (atend) -%%EndComments -0 374 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -49.62 12.00 49.62 331.25 MacLine -378.50 12.00 378.50 331.25 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -58.00 33.25 370.12 33.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -378.50 32.88 370.12 32.88 MacLine -49.62 32.88 58.00 32.88 MacLine -1 ps - OurEncoding /_Times-Roman /Times-Roman EncodeFont -12.00 (_Times-Roman) 0 F -(1.4) 30.50 36.38 15.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -58.00 75.88 370.12 75.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -378.50 75.50 370.12 75.50 MacLine -49.62 75.50 58.00 75.50 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(1.2) 30.50 79.00 15.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -58.00 118.62 370.12 118.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -378.50 118.25 370.12 118.25 MacLine -49.62 118.25 58.00 118.25 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(1.0) 30.50 121.75 15.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -58.00 161.38 370.12 161.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -378.50 161.00 370.12 161.00 MacLine -49.62 161.00 58.00 161.00 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(0.8) 30.50 164.50 15.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -58.00 204.00 370.12 204.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -378.50 203.62 370.12 203.62 MacLine -49.62 203.62 58.00 203.62 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(0.6) 30.50 207.12 15.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -58.00 246.75 370.12 246.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -378.50 246.38 370.12 246.38 MacLine -49.62 246.38 58.00 246.38 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(0.4) 30.50 249.88 15.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -58.00 289.38 370.12 289.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -378.50 289.00 370.12 289.00 MacLine -49.62 289.00 58.00 289.00 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(0.2) 30.50 292.50 15.00 WS -1.00 ps -378.50 331.75 370.12 331.75 MacLine -49.62 331.75 58.00 331.75 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(0.0) 30.50 335.25 15.00 WS - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -gsave 12.38 213.12 translate -90 rotate -(distance \(m\)) 0.00 0.00 88.12 WS -grestore -1.00 ps -49.62 331.75 378.50 331.75 MacLine -49.62 11.50 378.50 11.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -357.00 323.38 357.00 19.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -356.62 11.50 356.62 19.88 MacLine -356.62 331.75 356.62 323.38 MacLine -1 ps - OurEncoding /_Times-Roman /Times-Roman EncodeFont -12.00 (_Times-Roman) 0 F -(1.4) 349.62 346.38 15.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -313.12 323.38 313.12 19.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -312.75 11.50 312.75 19.88 MacLine -312.75 331.75 312.75 323.38 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(1.2) 305.75 346.38 15.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -269.25 323.38 269.25 19.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -268.88 11.50 268.88 19.88 MacLine -268.88 331.75 268.88 323.38 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(1.0) 261.88 346.38 15.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -225.38 323.38 225.38 19.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -225.00 11.50 225.00 19.88 MacLine -225.00 331.75 225.00 323.38 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(0.8) 218.00 346.38 15.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -181.50 323.38 181.50 19.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -181.12 11.50 181.12 19.88 MacLine -181.12 331.75 181.12 323.38 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(0.6) 174.12 346.38 15.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -137.75 323.38 137.75 19.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -137.38 11.50 137.38 19.88 MacLine -137.38 331.75 137.38 323.38 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(0.4) 130.38 346.38 15.00 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -93.88 323.38 93.88 19.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -93.50 11.50 93.50 19.88 MacLine -93.50 331.75 93.50 323.38 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(0.2) 86.50 346.38 15.00 WS -1.00 ps -49.62 11.50 49.62 19.88 MacLine -49.62 331.75 49.62 323.38 MacLine -1 ps -12.00 (_Times-Roman) 0 F -(0.0) 42.62 346.38 15.00 WS - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(distance \(m\)) 170.50 370.38 88.12 WS -1 0 0 SetFore UseFore -1.00 ps -newpath 50.12 118.75 M -72.00 119.75 L -93.62 123.00 L -114.88 128.25 L -135.50 135.62 L -155.25 144.88 L -174.00 156.00 L -191.38 169.00 L -207.38 183.50 L -221.88 199.50 L -234.62 216.88 L -245.50 235.38 L -254.50 254.88 L -261.38 275.12 L -266.25 296.00 L -268.88 317.12 L -269.12 332.25 L -mstroke -newpath 50.12 118.88 M -53.75 118.75 L -75.75 120.12 L -97.38 123.75 L -118.50 129.38 L -138.88 137.00 L -158.50 146.62 L -177.00 158.00 L -194.12 171.25 L -210.00 186.12 L -224.12 202.38 L -236.62 219.88 L -247.12 238.62 L -255.75 258.25 L -262.38 278.62 L -266.75 299.50 L -269.00 320.75 L -269.00 332.25 L -mstroke -newpath 50.12 119.00 M -57.50 118.88 L -79.38 120.62 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -1 0 0 SetFore UseFore -1.00 ps -newpath 296.75 332.25 M -295.50 308.25 L -291.88 284.50 L -285.75 261.25 L -277.25 238.75 L -266.50 217.12 L -253.62 196.62 L -238.75 177.50 L -222.00 160.00 L -203.50 144.12 L -183.38 130.12 L -162.00 118.25 L -139.50 108.38 L -116.12 100.88 L -92.12 95.62 L -67.62 92.75 L -50.12 92.38 L -mstroke -newpath 296.62 332.25 M -296.75 328.12 L -295.12 304.25 L -291.00 280.62 L -284.50 257.38 L -275.62 235.00 L -264.50 213.62 L -251.25 193.38 L -236.00 174.38 L -219.00 157.25 L -200.25 141.62 L -179.88 128.00 L -158.38 116.38 L -135.62 107.00 L -112.12 99.75 L -88.00 94.88 L -63.50 92.38 L -50.12 92.38 L -mstroke -newpath 296.50 332.25 M -296.62 324.12 L -294.62 300.25 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -1 0 0 SetFore UseFore -1.00 ps -newpath 332.00 332.25 M -330.62 304.75 L -326.38 277.75 L -319.38 251.12 L -309.75 225.38 L -297.50 200.62 L -282.75 177.25 L -265.75 155.38 L -246.50 135.38 L -225.38 117.25 L -202.50 101.25 L -178.00 87.62 L -152.25 76.38 L -125.50 67.75 L -98.00 61.75 L -70.12 58.50 L -50.12 58.12 L -mstroke -newpath 331.88 332.25 M -332.00 327.62 L -330.00 300.25 L -325.38 273.12 L -318.00 246.75 L -307.88 221.12 L -295.12 196.62 L -280.00 173.50 L -262.62 151.88 L -243.12 132.12 L -221.62 114.38 L -198.38 98.88 L -173.75 85.62 L -147.88 74.75 L -121.00 66.62 L -93.38 61.00 L -65.38 58.12 L -50.12 58.12 L -mstroke -newpath 331.75 332.25 M -331.88 323.00 L -329.50 295.62 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -1 0 0 SetFore UseFore -1.00 ps -newpath 379.00 332.25 M -377.38 300.25 L -372.38 268.62 L -364.25 237.62 L -353.00 207.50 L -338.75 178.75 L -321.50 151.50 L -301.62 126.00 L -279.25 102.50 L -254.50 81.38 L -227.75 62.75 L -199.25 46.88 L -169.38 33.75 L -138.12 23.75 L -106.00 16.75 L -73.38 12.88 L -50.12 12.38 L -mstroke -newpath 378.75 332.25 M -378.88 326.88 L -376.75 294.88 L -371.25 263.38 L -362.62 232.50 L -350.88 202.62 L -336.00 174.00 L -318.38 147.00 L -298.00 121.88 L -275.25 98.88 L -250.12 78.12 L -223.12 59.88 L -194.38 44.50 L -164.12 31.88 L -132.75 22.25 L -100.62 15.75 L -67.88 12.50 L -50.12 12.50 L -mstroke -newpath 378.62 332.25 M -378.75 321.50 L -376.00 289.50 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -gsave 1.00 ps 51.00 332.25 151.75 17.88 2 CapLine grestore -gsave 1.00 ps 51.00 333.12 327.12 28.88 2 CapLine grestore -gsave 1.00 ps 48.12 334.12 363.00 160.62 2 CapLine grestore -gsave 1.00 ps 50.12 333.12 359.00 300.25 2 CapLine grestore -gsave 1.00 ps 216.50 309.25 207.50 315.25 2 CapLine grestore -gsave 1.00 ps 206.50 316.25 217.50 320.25 2 CapLine grestore -gsave 1.00 ps 190.62 248.38 181.62 261.38 2 CapLine grestore -gsave 1.00 ps 181.62 261.38 195.62 260.38 2 CapLine grestore -gsave 1.00 ps 167.62 191.50 163.62 208.50 2 CapLine grestore -gsave 1.00 ps 164.62 208.50 178.62 203.50 2 CapLine grestore -gsave 1.00 ps 93.88 175.50 96.88 188.50 2 CapLine grestore -gsave 1.00 ps 96.88 187.50 105.88 180.50 2 CapLine grestore -136.62 141.12 192.62 157.12 EraseRect -16.00 (_Helvetica) 0 F -(-9000 V) 136.62 153.50 56.00 WS -259.25 248.88 315.25 264.88 EraseRect -16.00 (_Helvetica) 0 F -(-8000 V) 259.25 261.25 56.00 WS -188.75 106.25 240.25 122.25 EraseRect -16.00 (_Helvetica) 0 F -(-7000V) 188.75 118.62 51.50 WS -312.12 195.00 368.12 211.00 EraseRect -16.00 (_Helvetica) 0 F -(-6000 V) 312.12 207.38 56.00 WS -173.38 222.00 184.00 238.00 EraseRect -16.00 (_Helvetica) 0 F -(A) 173.38 234.38 10.62 WS -311.88 110.25 322.50 126.25 EraseRect -16.00 (_Helvetica) 0 F -(B) 311.88 122.62 10.62 WS -247.62 162.12 259.12 178.12 EraseRect -16.00 (_Helvetica) 0 F -(C) 247.62 174.50 11.50 WS -AnObj restore -end -IgorSave restore -%%DocumentFonts: Times-Roman -%%+Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype54/prob01av2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype54/prob01av2.gif deleted file mode 100755 index fc50956e6..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype54/prob01av2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype54/prob02.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype54/prob02.eps deleted file mode 100755 index 01a743f8c..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype54/prob02.eps +++ /dev/null @@ -1,644 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: prob5402.eps -%%CreationDate: 7/9/1996 -%%Pages: 0 -%%DocumentFonts: Helvetica -%%BoundingBox:149 533 420 579 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -gs -0 792 t -0.058 -0.058 sc -2 slc -save -2673 4419 translate -17.363985 -17.388889 scale --108 -569 translate -userdict begin -/showpage {} def -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -10 setmiterlimit [] 0 setdash newpath -/languagelevel where -{pop languagelevel 1 ne{false setstrokeadjust false setoverprint}if}if -%%BeginDocument: prob10pic.eps -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: prob10pic.eps -%%CreationDate: 5/28/1996 -%%Pages: 0 -%%DocumentFonts: Helvetica -%%BoundingBox:108 569 369 605 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica/Helvetica 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -2100.625 3481.625 m -5059.625 3481.625 L -1.25 slw 0 sg str -gr -gs -2041 3540 2163 3783 R -1 sg fill -gr -/_Helvetica ff [243 0 0 -243 0 0] mf sf -2041 3730 m 0 sg (0) show -gs -2317 3552 2438 3795 R -1 sg fill -gr -2317 3742 m 2.43 slw 0 sg (a) show -gs -2627 3529 2888 3772 R -1 sg fill -gr -2627 3719 m 2.43 slw 0 sg (2a) show -gs -3272 3531 3532 3774 R -1 sg fill -gr -3272 3721 m 2.43 slw 0 sg (4a) show -gs -4481 3537 4707 3780 R -1 sg fill -gr -/_Helvetica ff [208 0 0 -208 0 0] mf sf -4481 3710 m 0 sg (8a) show -gs -5069.625 3481.625 m -5190.625 3481.625 L -1.25 slw 0 sg str -gr -gs -5243.625 3481.625 m -5363.625 3481.625 L -1.25 slw 0 sg str -gr -gs -5416.625 3481.625 m -5537.625 3481.625 L -1.25 slw 0 sg str -gr -gs -5590.625 3481.625 m -5710.625 3481.625 L -1.25 slw 0 sg str -gr -gs -5763.625 3481.625 m -5884.625 3481.625 L -1.25 slw 0 sg str -gr -gs -5937.625 3481.625 m -6058.625 3481.625 L -1.25 slw 0 sg str -gr -gs -6111.625 3481.625 m -6163.625 3481.625 L -1.25 slw 0 sg str -gr -gr -%%Trailer -restore -%%EndDocument -end restore -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype54/prob02.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype54/prob02.gif deleted file mode 100755 index 38b466482..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype54/prob02.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype54/prob04.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype54/prob04.eps deleted file mode 100755 index 82a783b36..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype54/prob04.eps +++ /dev/null @@ -1,3372 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Mon Jan 16 09:21:23 1995 -%%For: prof -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 72.0 242.0 540.0 550.0 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /TDeps_dict 20 dict def TDeps_dict begin /showpage { - -} def /copypage { - -} def /grestoreall { - -} def /erasepage { - -} def /nulldevice { - -} def /exitserver { - -} def /initgraphics { - -} def /renderbands { - -} def /initmatrix { - -} def /banddevice { - -} def /setpageparams { - -} def /framedevice { - -} def /note { - -} def end end -TopDrawDict begin /rpath { - newpath moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} bind def /rfpath { - /rad3 exch def /hh3 exch def /ww3 exch def /yy1 exch def /xx1 exch def /xx2 xx1 ww3 add def /yy2 yy1 hh3 add def newpath xx1 yy1 rad3 hh3 0 gt { - add - } { - sub - } ifelse moveto xx1 yy1 xx2 yy1 rad3 arcto 4 { - pop - } repeat xx2 yy1 xx2 yy2 rad3 arcto 4 { - pop - } repeat xx2 yy2 xx1 yy2 rad3 arcto 4 { - pop - } repeat xx1 yy2 xx1 yy1 rad3 arcto 4 { - pop - } repeat closepath -} bind def /rfill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - 4 2 roll rpath crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - rectfill pop - } ifelse grestore -} bind def /rstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse 4 2 roll rpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /rffill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse rfpath filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /rfstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse rfpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /mkrpath { - dodrawctm rpath unpagectm -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 612 792 rectclip -0 0 612 792 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 0 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 0 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 0 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -end -grestore -1 0 0 1 0 0 sc5mt astore 55 397 25 21 1 0 0 1 0 0 sc6mt astore rfill -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -13 4 83 415 1 0 0 1 0 0 sc6mt astore ssl -gsave clpmt currentmatrix pop newpath -1 0 0 1 -1 2 sc5mt astore pop false { - sc5mt dodrawctm 47.5 200 517 392 0 rfpath unpagectm -} { - 517 392 47.5 200 sc5mt mkrpath -} ifelse -clip -newpath -clpmt setmatrix -gsave -/epssave save def 0 setgray 1 setlinewidth 0 setlinecap 0 setlinejoin 10 setmiterlimit [] 0 setdash newpath TDeps_dict begin userdict begin -[1 0 0 1 -1 2] dodrawctm -47.5 200 translate -%%BeginFile: /prof/CAPA/physimage/efield_2q_pos.eps -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Wed Aug 4 11:51:32 1993 -%%For: teacher2 -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 517 392 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /TDeps_dict 20 dict def TDeps_dict begin /showpage { - -} def /copypage { - -} def /grestoreall { - -} def /erasepage { - -} def /nulldevice { - -} def /exitserver { - -} def /initgraphics { - -} def /renderbands { - -} def /initmatrix { - -} def /banddevice { - -} def /setpageparams { - -} def /framedevice { - -} def /note { - -} def end end -TopDrawDict begin /rpath { - newpath moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} bind def /rfpath { - /rad3 exch def /hh3 exch def /ww3 exch def /yy1 exch def /xx1 exch def /xx2 xx1 ww3 add def /yy2 yy1 hh3 add def newpath xx1 yy1 rad3 hh3 0 gt { - add - } { - sub - } ifelse moveto xx1 yy1 xx2 yy1 rad3 arcto 4 { - pop - } repeat xx2 yy1 xx2 yy2 rad3 arcto 4 { - pop - } repeat xx2 yy2 xx1 yy2 rad3 arcto 4 { - pop - } repeat xx1 yy2 xx1 yy1 rad3 arcto 4 { - pop - } repeat closepath -} bind def /rfill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - 4 2 roll rpath crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - rectfill pop - } ifelse grestore -} bind def /rstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse 4 2 roll rpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /rffill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse rfpath filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /rfstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse rfpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /mkrpath { - dodrawctm rpath unpagectm -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 516.23999 391.679993 rectclip --47.879974 -199.160034 translate -47.879974 199.160034 516.23999 391.679993 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 2.412863e-35 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -gsave clpmt currentmatrix pop newpath -1 0 0 1 0 -1 sc5mt astore pop false { - sc5mt dodrawctm 47.879974 200.160004 516.240051 391.679993 0 rfpath unpagectm -} { - 516.240051 391.679993 47.879974 200.160004 sc5mt mkrpath -} ifelse -clip -newpath -clpmt setmatrix -gsave -/epssave save def 0 setgray 1 setlinewidth 0 setlinecap 0 setlinejoin 10 setmiterlimit [] 0 setdash newpath TDeps_dict begin userdict begin -[1 0 0 1 0 -1] dodrawctm -26.279968 178.559998 translate -%%BeginFile: /tmp/topdraw_eps_5265_206 -%! -%%BoundingBox: 21.60 21.60 537.84 413.28 -0.23999 dup scale -90 90 translate -2 setlinejoin -/l {lineto} def /m {moveto} def /j {rlineto} def /k {rmoveto} def /s {stroke} def -/m1 {-4 0 k 8 0 j -4 -4 k 0 8 j} bind def -/m2 {-4 -4 k 8 8 j -8 0 k 8 -8 j} bind def -/m3 {-8 0 k 16 0 j -8 -8 k 0 16 j} bind def -/m4 {-8 -8 k 16 16 j -16 0 k 16 -16 j} bind def -/m5 {8 -3 k 0 6 j -5 5 j -6 0 j -5 -5 j 0 -6 j 5 -5 j 6 0 j 5 5 j} bind def -/m6 {0 -8 k 0 16 j -7 -4 k 14 -8 j 0 8 k -14 -8 j} bind def -/m7 {0 9 k -8 -14 j 16 0 j -8 14 j} bind def -/m8 {0 -9 k 8 14 j -16 0 j 8 -14 j} bind def -/m9 {-12 0 k 24 0 j -12 -12 k 0 24 j} bind def -/m10 {-12 -12 k 24 24 j -24 0 k 24 -24 j} bind def -/m11 {12 -5 k 0 10 j -7 7 j -10 0 j -7 -7 j 0 -10 j 7 -7 j 10 0 j 7 7 j} bind def -/m12 {0 -12 k 0 24 j -10 -6 k 20 -12 j 0 12 k -20 -12 j} bind def - 1 setlinewidth -[] 0 setdash -/font1 /Courier-Bold findfont 40 scalefont def -font1 setfont - 4 setlinewidth -3 3 m -2148 3 l -2148 1629 l -3 1629 l -3 3 l -s -3 3 m -534 816 m -m5 s -534 816 m -1617 816 m -m5 s -1617 816 m -534 816 m -m2 s -534 816 m -1617 816 m -m2 s -1617 816 m - 2 setlinewidth -[ 24 8 24 8] 0 setdash -1617 816 m -1585 816 l -1574 816 l -1563 816 l -1552 816 l -1541 816 l -1531 816 l -1520 816 l -1509 816 l -1498 816 l -1487 816 l -1476 816 l -1466 816 l -1455 816 l -1444 816 l -1433 816 l -1422 816 l -1411 816 l -1401 816 l -1390 816 l -1379 816 l -1368 816 l -1357 816 l -1346 816 l -1336 816 l -1325 816 l -1314 816 l -1303 816 l -1292 816 l -1281 816 l -1271 816 l -1260 816 l -1249 816 l -1238 816 l -1227 816 l -1216 816 l -1206 816 l -1195 816 l -1184 816 l -1173 816 l -1162 816 l -1151 816 l -1141 816 l -1130 816 l -1119 816 l -1108 816 l -1097 816 l -1086 816 l -1076 816 l -1065 816 l -s -1065 816 m -1054 816 l -1043 816 l -1032 816 l -1021 816 l -1011 816 l -1000 816 l -989 816 l -978 816 l -967 816 l -956 816 l -946 816 l -935 816 l -924 816 l -913 816 l -902 816 l -891 816 l -881 816 l -870 816 l -859 816 l -848 816 l -837 816 l -826 816 l -816 816 l -805 816 l -794 816 l -783 816 l -772 816 l -761 816 l -751 816 l -740 816 l -729 816 l -718 816 l -707 816 l -696 816 l -686 816 l -675 816 l -664 816 l -653 816 l -642 816 l -631 816 l -621 816 l -610 816 l -599 816 l -588 816 l -577 816 l -566 816 l -534 816 l -s -1617 816 m -1594 824 l -1584 827 l -1573 830 l -1563 834 l -1553 837 l -1542 841 l -1532 844 l -1522 847 l -1512 851 l -1501 854 l -1491 857 l -1481 861 l -1470 864 l -1460 867 l -1450 871 l -1439 874 l -1429 877 l -1419 881 l -1408 884 l -1398 887 l -1388 890 l -1377 893 l -1367 897 l -1357 900 l -1346 903 l -1336 906 l -1325 909 l -1315 912 l -1305 915 l -1294 918 l -1284 920 l -1273 923 l -1263 926 l -1252 929 l -1242 931 l -1231 934 l -1221 936 l -1210 938 l -1199 941 l -1189 943 l -1178 945 l -1168 947 l -1157 949 l -1146 951 l -1136 953 l -1125 954 l -1114 956 l -1103 957 l -1093 958 l -s -1093 958 m -1082 960 l -1071 960 l -1060 961 l -1049 962 l -1039 962 l -1028 963 l -1017 963 l -1006 963 l -995 963 l -984 963 l -974 962 l -963 962 l -952 961 l -941 960 l -930 959 l -920 957 l -909 956 l -898 954 l -888 952 l -877 950 l -866 948 l -856 946 l -845 943 l -835 940 l -824 938 l -814 935 l -803 932 l -793 928 l -783 925 l -773 922 l -762 918 l -752 914 l -742 910 l -732 906 l -722 902 l -712 898 l -702 894 l -692 890 l -682 886 l -672 881 l -662 877 l -652 872 l -642 868 l -633 863 l -623 859 l -613 854 l -603 850 l -593 845 l -584 840 l -s -584 840 m -574 835 l -564 831 l -534 816 l -s -1617 816 m -1595 833 l -1586 839 l -1577 846 l -1569 852 l -1560 859 l -1551 865 l -1543 872 l -1534 878 l -1525 885 l -1516 891 l -1508 897 l -1499 904 l -1490 910 l -1481 917 l -1473 923 l -1464 929 l -1455 936 l -1446 942 l -1437 948 l -1428 954 l -1420 961 l -1411 967 l -1402 973 l -1393 979 l -1384 985 l -1375 991 l -1366 997 l -1357 1003 l -1347 1009 l -1338 1014 l -1329 1020 l -1320 1026 l -1310 1031 l -1301 1037 l -1292 1042 l -1282 1047 l -1273 1053 l -1263 1058 l -1254 1063 l -1244 1068 l -1234 1072 l -1224 1077 l -1215 1082 l -1205 1086 l -1195 1090 l -1185 1094 l -1175 1098 l -1165 1102 l -1154 1106 l -s -1154 1106 m -1144 1109 l -1134 1113 l -1123 1116 l -1113 1119 l -1102 1121 l -1092 1124 l -1081 1126 l -1071 1128 l -1060 1130 l -1049 1132 l -1039 1133 l -1028 1134 l -1017 1135 l -1006 1135 l -995 1136 l -984 1136 l -974 1135 l -963 1135 l -952 1134 l -941 1132 l -931 1131 l -920 1129 l -909 1127 l -899 1125 l -888 1122 l -878 1119 l -867 1116 l -857 1112 l -847 1108 l -837 1104 l -827 1100 l -817 1095 l -808 1090 l -798 1085 l -789 1080 l -780 1074 l -770 1068 l -761 1062 l -753 1056 l -744 1049 l -735 1043 l -727 1036 l -719 1029 l -710 1022 l -702 1015 l -694 1007 l -687 1000 l -679 992 l -671 984 l -s -671 984 m -664 977 l -656 969 l -649 961 l -642 953 l -635 944 l -628 936 l -621 928 l -614 919 l -607 911 l -600 903 l -594 894 l -587 886 l -580 877 l -574 868 l -567 860 l -560 851 l -554 843 l -534 816 l -s -1617 816 m -1599 843 l -1593 852 l -1587 861 l -1581 870 l -1574 879 l -1568 888 l -1562 896 l -1556 905 l -1550 914 l -1544 923 l -1537 932 l -1531 941 l -1525 950 l -1519 959 l -1512 967 l -1506 976 l -1500 985 l -1493 994 l -1487 1003 l -1481 1011 l -1474 1020 l -1468 1029 l -1461 1037 l -1454 1046 l -1448 1054 l -1441 1063 l -1434 1071 l -1428 1080 l -1421 1088 l -1414 1097 l -1407 1105 l -1400 1113 l -1393 1122 l -1386 1130 l -1379 1138 l -1371 1146 l -1364 1154 l -1357 1162 l -1349 1170 l -1342 1177 l -1334 1185 l -1326 1193 l -1318 1200 l -1311 1208 l -1303 1215 l -1295 1222 l -1286 1229 l -1278 1237 l -1270 1244 l -s -1270 1244 m -1262 1250 l -1253 1257 l -1245 1264 l -1236 1270 l -1227 1277 l -1218 1283 l -1209 1289 l -1200 1295 l -1191 1301 l -1182 1306 l -1172 1312 l -1163 1317 l -1153 1322 l -1144 1327 l -1134 1332 l -1124 1336 l -1114 1341 l -1104 1345 l -1094 1349 l -1084 1353 l -1074 1356 l -1063 1359 l -1053 1362 l -1043 1365 l -1032 1368 l -1021 1370 l -1011 1372 l -1000 1374 l -989 1375 l -979 1376 l -968 1377 l -957 1377 l -946 1378 l -935 1377 l -924 1377 l -914 1376 l -903 1375 l -892 1374 l -881 1372 l -871 1370 l -860 1368 l -850 1365 l -839 1362 l -829 1358 l -819 1355 l -809 1351 l -799 1346 l -789 1342 l -780 1337 l -s -780 1337 m -770 1331 l -761 1326 l -752 1320 l -743 1314 l -734 1307 l -726 1300 l -717 1293 l -709 1286 l -701 1279 l -694 1271 l -686 1263 l -679 1255 l -672 1247 l -665 1238 l -659 1230 l -653 1221 l -647 1212 l -641 1203 l -635 1193 l -630 1184 l -624 1175 l -619 1165 l -615 1155 l -610 1145 l -606 1136 l -601 1126 l -597 1116 l -593 1105 l -590 1095 l -586 1085 l -583 1075 l -580 1064 l -576 1054 l -574 1043 l -571 1033 l -568 1023 l -566 1012 l -563 1001 l -561 991 l -559 980 l -557 970 l -555 959 l -553 948 l -551 938 l -549 927 l -547 916 l -546 905 l -544 895 l -543 884 l -s -543 884 m -541 873 l -540 862 l -538 852 l -537 841 l -534 816 l -s -1617 816 m -1610 841 l -1608 852 l -1605 862 l -1602 873 l -1599 883 l -1596 894 l -1594 904 l -1591 915 l -1588 925 l -1585 936 l -1582 946 l -1579 957 l -1576 967 l -1573 977 l -1570 988 l -1567 998 l -1564 1009 l -1561 1019 l -1558 1029 l -1555 1040 l -1552 1050 l -1548 1061 l -1545 1071 l -1542 1081 l -1539 1091 l -1535 1102 l -1532 1112 l -1528 1122 l -1525 1133 l -1521 1143 l -1518 1153 l -1514 1163 l -1510 1173 l -1506 1184 l -1502 1194 l -1499 1204 l -1495 1214 l -1490 1224 l -1486 1234 l -1482 1244 l -1478 1254 l -1474 1264 l -1469 1274 l -1465 1284 l -1460 1294 l -1456 1303 l -1451 1313 l -1446 1323 l -1442 1333 l -s -1442 1333 m -1437 1342 l -1432 1352 l -1427 1361 l -1421 1371 l -1416 1381 l -1411 1390 l -1406 1399 l -1400 1409 l -1395 1418 l -1389 1427 l -1383 1437 l -1377 1446 l -1372 1455 l -1366 1464 l -1360 1473 l -1353 1482 l -1347 1491 l -1341 1499 l -1334 1508 l -1328 1517 l -1321 1525 l -1315 1534 l -1308 1542 l -1301 1551 l -1294 1559 l -1287 1567 l -1280 1575 l -1273 1583 l -1265 1591 l -1258 1599 l -1250 1607 l -1243 1615 l -1235 1622 l -1228 1629 l -s -1617 816 m -1620 847 l -1621 858 l -1622 869 l -1623 880 l -1624 891 l -1625 901 l -1625 912 l -1626 923 l -1627 934 l -1628 945 l -1629 955 l -1630 966 l -1630 977 l -1631 988 l -1632 999 l -1633 1009 l -1633 1020 l -1634 1031 l -1635 1042 l -1635 1053 l -1636 1064 l -1636 1074 l -1637 1085 l -1637 1096 l -1638 1107 l -1638 1118 l -1639 1128 l -1639 1139 l -1639 1150 l -1640 1161 l -1640 1172 l -1640 1183 l -1640 1194 l -1640 1204 l -1640 1215 l -1640 1226 l -1640 1237 l -1640 1248 l -1640 1259 l -1640 1269 l -1640 1280 l -1640 1291 l -1639 1302 l -1639 1313 l -1639 1324 l -1638 1334 l -1638 1345 l -1637 1356 l -1637 1367 l -s -1637 1367 m -1636 1378 l -1635 1389 l -1634 1399 l -1634 1410 l -1633 1421 l -1632 1432 l -1631 1443 l -1630 1453 l -1629 1464 l -1628 1475 l -1627 1486 l -1625 1496 l -1624 1507 l -1623 1518 l -1621 1529 l -1620 1539 l -1619 1550 l -1617 1561 l -1615 1572 l -1614 1582 l -1612 1593 l -1610 1604 l -1609 1614 l -1607 1625 l -1606 1629 l -s -1617 816 m -1628 839 l -1633 849 l -1638 859 l -1642 869 l -1647 878 l -1651 888 l -1656 898 l -1661 908 l -1665 918 l -1670 927 l -1674 937 l -1679 947 l -1684 957 l -1688 967 l -1693 977 l -1697 987 l -1702 996 l -1706 1006 l -1711 1016 l -1715 1026 l -1719 1036 l -1724 1046 l -1728 1056 l -1733 1066 l -1737 1076 l -1741 1086 l -1745 1096 l -1750 1105 l -1754 1115 l -1758 1125 l -1762 1135 l -1767 1145 l -1771 1155 l -1775 1165 l -1779 1176 l -1783 1186 l -1787 1196 l -1791 1206 l -1795 1216 l -1799 1226 l -1803 1236 l -1807 1246 l -1811 1256 l -1815 1266 l -1819 1276 l -1822 1287 l -1826 1297 l -1830 1307 l -1834 1317 l -s -1834 1317 m -1837 1327 l -1841 1337 l -1845 1348 l -1848 1358 l -1852 1368 l -1855 1378 l -1859 1389 l -1862 1399 l -1866 1409 l -1869 1419 l -1873 1430 l -1876 1440 l -1880 1450 l -1883 1461 l -1886 1471 l -1890 1481 l -1893 1492 l -1896 1502 l -1899 1512 l -1902 1523 l -1906 1533 l -1909 1543 l -1912 1554 l -1915 1564 l -1918 1575 l -1921 1585 l -1924 1595 l -1927 1606 l -1930 1616 l -1933 1627 l -1933 1629 l -s -1617 816 m -1640 837 l -1647 845 l -1655 852 l -1663 860 l -1671 867 l -1679 875 l -1687 882 l -1694 890 l -1702 897 l -1710 905 l -1718 912 l -1726 920 l -1733 927 l -1741 935 l -1749 942 l -1757 950 l -1765 958 l -1772 965 l -1780 973 l -1788 980 l -1795 988 l -1803 995 l -1811 1003 l -1819 1011 l -1826 1018 l -1834 1026 l -1842 1034 l -1849 1041 l -1857 1049 l -1864 1057 l -1872 1064 l -1880 1072 l -1887 1080 l -1895 1088 l -1902 1095 l -1910 1103 l -1918 1111 l -1925 1119 l -1933 1127 l -1940 1134 l -1948 1142 l -1955 1150 l -1963 1158 l -1970 1166 l -1978 1174 l -1985 1181 l -1992 1189 l -2000 1197 l -2007 1205 l -s -2007 1205 m -2015 1213 l -2022 1221 l -2029 1229 l -2037 1237 l -2044 1245 l -2051 1253 l -2059 1261 l -2066 1269 l -2073 1277 l -2081 1285 l -2088 1293 l -2095 1301 l -2102 1309 l -2110 1317 l -2117 1325 l -2124 1333 l -2131 1341 l -2139 1349 l -2146 1358 l -2148 1360 l -s -1617 816 m -1640 825 l -1650 830 l -1661 834 l -1671 838 l -1681 842 l -1691 846 l -1701 850 l -1711 854 l -1721 858 l -1731 862 l -1741 866 l -1751 870 l -1761 875 l -1771 879 l -1781 883 l -1791 887 l -1801 891 l -1811 895 l -1821 899 l -1831 904 l -1841 908 l -1851 912 l -1861 916 l -1871 920 l -1881 924 l -1891 929 l -1901 933 l -1911 937 l -1921 941 l -1931 945 l -1941 950 l -1951 954 l -1961 958 l -1971 962 l -1981 967 l -1991 971 l -2001 975 l -2011 979 l -2021 984 l -2030 988 l -2040 992 l -2050 997 l -2060 1001 l -2070 1005 l -2080 1009 l -2090 1014 l -2100 1018 l -2110 1022 l -2120 1027 l -s -2120 1027 m -2130 1031 l -2140 1036 l -2148 1039 l -s -1617 816 m -1647 816 l -1658 816 l -1669 816 l -1680 816 l -1690 816 l -1701 816 l -1712 816 l -1723 816 l -1734 816 l -1745 816 l -1755 816 l -1766 816 l -1777 816 l -1788 816 l -1799 816 l -1810 816 l -1820 816 l -1831 816 l -1842 817 l -1853 817 l -1864 817 l -1875 817 l -1885 817 l -1896 817 l -1907 817 l -1918 817 l -1929 817 l -1940 817 l -1950 817 l -1961 817 l -1972 817 l -1983 817 l -1994 817 l -2005 817 l -2015 817 l -2026 817 l -2037 817 l -2048 817 l -2059 817 l -2070 817 l -2080 817 l -2091 817 l -2102 817 l -2113 817 l -2124 817 l -2135 817 l -2145 817 l -2148 817 l -s -2148 817 m -[] 0 setdash -[ 24 8 24 8] 0 setdash -1617 816 m -1585 816 l -1574 816 l -1563 816 l -1552 816 l -1541 816 l -1531 816 l -1520 816 l -1509 816 l -1498 816 l -1487 816 l -1476 816 l -1466 816 l -1455 816 l -1444 816 l -1433 816 l -1422 816 l -1411 816 l -1401 816 l -1390 816 l -1379 816 l -1368 816 l -1357 816 l -1346 816 l -1336 816 l -1325 816 l -1314 816 l -1303 816 l -1292 816 l -1281 816 l -1271 816 l -1260 816 l -1249 816 l -1238 816 l -1227 816 l -1216 816 l -1206 816 l -1195 816 l -1184 816 l -1173 816 l -1162 816 l -1151 816 l -1141 816 l -1130 816 l -1119 816 l -1108 816 l -1097 816 l -1086 816 l -1076 816 l -1065 816 l -s -1065 816 m -1054 816 l -1043 816 l -1032 816 l -1021 816 l -1011 816 l -1000 816 l -989 816 l -978 816 l -967 816 l -956 816 l -946 816 l -935 816 l -924 816 l -913 816 l -902 816 l -891 816 l -881 816 l -870 816 l -859 816 l -848 816 l -837 816 l -826 816 l -816 816 l -805 816 l -794 816 l -783 816 l -772 816 l -761 816 l -751 816 l -740 816 l -729 816 l -718 816 l -707 816 l -696 816 l -686 816 l -675 816 l -664 816 l -653 816 l -642 816 l -631 816 l -621 816 l -610 816 l -599 816 l -588 816 l -577 816 l -566 816 l -534 816 l -s -1617 816 m -1594 808 l -1584 805 l -1573 802 l -1563 798 l -1553 795 l -1542 791 l -1532 788 l -1522 785 l -1512 781 l -1501 778 l -1491 775 l -1481 771 l -1470 768 l -1460 765 l -1450 761 l -1439 758 l -1429 755 l -1419 751 l -1408 748 l -1398 745 l -1388 742 l -1377 739 l -1367 735 l -1357 732 l -1346 729 l -1336 726 l -1325 723 l -1315 720 l -1305 717 l -1294 714 l -1284 712 l -1273 709 l -1263 706 l -1252 703 l -1242 701 l -1231 698 l -1221 696 l -1210 694 l -1199 691 l -1189 689 l -1178 687 l -1168 685 l -1157 683 l -1146 681 l -1136 679 l -1125 678 l -1114 676 l -1103 675 l -1093 674 l -s -1093 674 m -1082 672 l -1071 672 l -1060 671 l -1049 670 l -1039 670 l -1028 669 l -1017 669 l -1006 669 l -995 669 l -984 669 l -974 670 l -963 670 l -952 671 l -941 672 l -930 673 l -920 675 l -909 676 l -898 678 l -888 680 l -877 682 l -866 684 l -856 686 l -845 689 l -835 692 l -824 694 l -814 697 l -803 700 l -793 704 l -783 707 l -773 710 l -762 714 l -752 718 l -742 722 l -732 726 l -722 730 l -712 734 l -702 738 l -692 742 l -682 746 l -672 751 l -662 755 l -652 760 l -642 764 l -633 769 l -623 773 l -613 778 l -603 782 l -593 787 l -584 792 l -s -584 792 m -574 797 l -564 801 l -534 816 l -s -1617 816 m -1595 799 l -1586 793 l -1577 786 l -1569 780 l -1560 773 l -1551 767 l -1543 760 l -1534 754 l -1525 747 l -1516 741 l -1508 735 l -1499 728 l -1490 722 l -1481 715 l -1473 709 l -1464 703 l -1455 696 l -1446 690 l -1437 684 l -1428 678 l -1420 671 l -1411 665 l -1402 659 l -1393 653 l -1384 647 l -1375 641 l -1366 635 l -1357 629 l -1347 623 l -1338 618 l -1329 612 l -1320 606 l -1310 601 l -1301 595 l -1292 590 l -1282 585 l -1273 579 l -1263 574 l -1254 569 l -1244 564 l -1234 560 l -1224 555 l -1215 550 l -1205 546 l -1195 542 l -1185 538 l -1175 534 l -1165 530 l -1154 526 l -s -1154 526 m -1144 523 l -1134 519 l -1123 516 l -1113 513 l -1102 511 l -1092 508 l -1081 506 l -1071 504 l -1060 502 l -1049 500 l -1039 499 l -1028 498 l -1017 497 l -1006 497 l -995 496 l -984 496 l -974 497 l -963 497 l -952 498 l -941 500 l -931 501 l -920 503 l -909 505 l -899 507 l -888 510 l -878 513 l -867 516 l -857 520 l -847 524 l -837 528 l -827 532 l -817 537 l -808 542 l -798 547 l -789 552 l -780 558 l -770 564 l -761 570 l -753 576 l -744 583 l -735 589 l -727 596 l -719 603 l -710 610 l -702 617 l -694 625 l -687 632 l -679 640 l -671 648 l -s -671 648 m -664 655 l -656 663 l -649 671 l -642 679 l -635 688 l -628 696 l -621 704 l -614 713 l -607 721 l -600 729 l -594 738 l -587 746 l -580 755 l -574 764 l -567 772 l -560 781 l -554 789 l -534 816 l -s -1617 816 m -1599 789 l -1593 780 l -1587 771 l -1581 762 l -1574 753 l -1568 744 l -1562 736 l -1556 727 l -1550 718 l -1544 709 l -1537 700 l -1531 691 l -1525 682 l -1519 673 l -1512 665 l -1506 656 l -1500 647 l -1493 638 l -1487 629 l -1481 621 l -1474 612 l -1468 603 l -1461 595 l -1454 586 l -1448 578 l -1441 569 l -1434 561 l -1428 552 l -1421 544 l -1414 535 l -1407 527 l -1400 519 l -1393 510 l -1386 502 l -1379 494 l -1371 486 l -1364 478 l -1357 470 l -1349 462 l -1342 455 l -1334 447 l -1326 439 l -1318 432 l -1311 424 l -1303 417 l -1295 410 l -1286 403 l -1278 395 l -1270 388 l -s -1270 388 m -1262 382 l -1253 375 l -1245 368 l -1236 362 l -1227 355 l -1218 349 l -1209 343 l -1200 337 l -1191 331 l -1182 326 l -1172 320 l -1163 315 l -1153 310 l -1144 305 l -1134 300 l -1124 296 l -1114 291 l -1104 287 l -1094 283 l -1084 279 l -1074 276 l -1063 273 l -1053 270 l -1043 267 l -1032 264 l -1021 262 l -1011 260 l -1000 258 l -989 257 l -979 256 l -968 255 l -957 255 l -946 254 l -935 255 l -924 255 l -914 256 l -903 257 l -892 258 l -881 260 l -871 262 l -860 264 l -850 267 l -839 270 l -829 274 l -819 277 l -809 281 l -799 286 l -789 290 l -780 295 l -s -780 295 m -770 301 l -761 306 l -752 312 l -743 318 l -734 325 l -726 332 l -717 339 l -709 346 l -701 353 l -694 361 l -686 369 l -679 377 l -672 385 l -665 394 l -659 402 l -653 411 l -647 420 l -641 429 l -635 439 l -630 448 l -624 457 l -619 467 l -615 477 l -610 487 l -606 496 l -601 506 l -597 516 l -593 527 l -590 537 l -586 547 l -583 557 l -580 568 l -576 578 l -574 589 l -571 599 l -568 609 l -566 620 l -563 631 l -561 641 l -559 652 l -557 662 l -555 673 l -553 684 l -551 694 l -549 705 l -547 716 l -546 727 l -544 737 l -543 748 l -s -543 748 m -541 759 l -540 770 l -538 780 l -537 791 l -534 816 l -s -1617 816 m -1610 791 l -1608 780 l -1605 770 l -1602 759 l -1599 749 l -1596 738 l -1594 728 l -1591 717 l -1588 707 l -1585 696 l -1582 686 l -1579 675 l -1576 665 l -1573 655 l -1570 644 l -1567 634 l -1564 623 l -1561 613 l -1558 603 l -1555 592 l -1552 582 l -1548 571 l -1545 561 l -1542 551 l -1539 541 l -1535 530 l -1532 520 l -1528 510 l -1525 499 l -1521 489 l -1518 479 l -1514 469 l -1510 459 l -1506 448 l -1502 438 l -1499 428 l -1495 418 l -1490 408 l -1486 398 l -1482 388 l -1478 378 l -1474 368 l -1469 358 l -1465 348 l -1460 338 l -1456 329 l -1451 319 l -1446 309 l -1442 299 l -s -1442 299 m -1437 290 l -1432 280 l -1427 271 l -1421 261 l -1416 251 l -1411 242 l -1406 233 l -1400 223 l -1395 214 l -1389 205 l -1383 195 l -1377 186 l -1372 177 l -1366 168 l -1360 159 l -1353 150 l -1347 141 l -1341 133 l -1334 124 l -1328 115 l -1321 107 l -1315 98 l -1308 90 l -1301 81 l -1294 73 l -1287 65 l -1280 57 l -1273 49 l -1265 41 l -1258 33 l -1250 25 l -1243 17 l -1235 10 l -1228 3 l -s -1617 816 m -1620 785 l -1621 774 l -1622 763 l -1623 752 l -1624 741 l -1625 731 l -1625 720 l -1626 709 l -1627 698 l -1628 687 l -1629 677 l -1630 666 l -1630 655 l -1631 644 l -1632 633 l -1633 623 l -1633 612 l -1634 601 l -1635 590 l -1635 579 l -1636 568 l -1636 558 l -1637 547 l -1637 536 l -1638 525 l -1638 514 l -1639 504 l -1639 493 l -1639 482 l -1640 471 l -1640 460 l -1640 449 l -1640 438 l -1640 428 l -1640 417 l -1640 406 l -1640 395 l -1640 384 l -1640 373 l -1640 363 l -1640 352 l -1640 341 l -1639 330 l -1639 319 l -1639 308 l -1638 298 l -1638 287 l -1637 276 l -1637 265 l -s -1637 265 m -1636 254 l -1635 243 l -1634 233 l -1634 222 l -1633 211 l -1632 200 l -1631 189 l -1630 179 l -1629 168 l -1628 157 l -1627 146 l -1625 136 l -1624 125 l -1623 114 l -1621 103 l -1620 93 l -1619 82 l -1617 71 l -1615 60 l -1614 50 l -1612 39 l -1610 28 l -1609 18 l -1607 7 l -1606 3 l -s -1617 816 m -1628 793 l -1633 783 l -1638 773 l -1642 763 l -1647 754 l -1651 744 l -1656 734 l -1661 724 l -1665 714 l -1670 705 l -1674 695 l -1679 685 l -1684 675 l -1688 665 l -1693 655 l -1697 645 l -1702 636 l -1706 626 l -1711 616 l -1715 606 l -1719 596 l -1724 586 l -1728 576 l -1733 566 l -1737 556 l -1741 546 l -1745 536 l -1750 527 l -1754 517 l -1758 507 l -1762 497 l -1767 487 l -1771 477 l -1775 467 l -1779 456 l -1783 446 l -1787 436 l -1791 426 l -1795 416 l -1799 406 l -1803 396 l -1807 386 l -1811 376 l -1815 366 l -1819 356 l -1822 345 l -1826 335 l -1830 325 l -1834 315 l -s -1834 315 m -1837 305 l -1841 295 l -1845 284 l -1848 274 l -1852 264 l -1855 254 l -1859 243 l -1862 233 l -1866 223 l -1869 213 l -1873 202 l -1876 192 l -1880 182 l -1883 171 l -1886 161 l -1890 151 l -1893 140 l -1896 130 l -1899 120 l -1902 109 l -1906 99 l -1909 89 l -1912 78 l -1915 68 l -1918 57 l -1921 47 l -1924 37 l -1927 26 l -1930 16 l -1933 5 l -1933 3 l -s -1617 816 m -1640 795 l -1647 787 l -1655 780 l -1663 772 l -1671 765 l -1679 757 l -1687 750 l -1694 742 l -1702 735 l -1710 727 l -1718 720 l -1726 712 l -1733 705 l -1741 697 l -1749 690 l -1757 682 l -1765 674 l -1772 667 l -1780 659 l -1788 652 l -1795 644 l -1803 637 l -1811 629 l -1819 621 l -1826 614 l -1834 606 l -1842 598 l -1849 591 l -1857 583 l -1864 575 l -1872 568 l -1880 560 l -1887 552 l -1895 544 l -1902 537 l -1910 529 l -1918 521 l -1925 513 l -1933 505 l -1940 498 l -1948 490 l -1955 482 l -1963 474 l -1970 466 l -1978 458 l -1985 451 l -1992 443 l -2000 435 l -2007 427 l -s -2007 427 m -2015 419 l -2022 411 l -2029 403 l -2037 395 l -2044 387 l -2051 379 l -2059 371 l -2066 363 l -2073 355 l -2081 347 l -2088 339 l -2095 331 l -2102 323 l -2110 315 l -2117 307 l -2124 299 l -2131 291 l -2139 283 l -2146 274 l -2148 272 l -s -1617 816 m -1640 807 l -1650 802 l -1661 798 l -1671 794 l -1681 790 l -1691 786 l -1701 782 l -1711 778 l -1721 774 l -1731 770 l -1741 766 l -1751 762 l -1761 757 l -1771 753 l -1781 749 l -1791 745 l -1801 741 l -1811 737 l -1821 733 l -1831 728 l -1841 724 l -1851 720 l -1861 716 l -1871 712 l -1881 708 l -1891 703 l -1901 699 l -1911 695 l -1921 691 l -1931 687 l -1941 682 l -1951 678 l -1961 674 l -1971 670 l -1981 665 l -1991 661 l -2001 657 l -2011 653 l -2021 648 l -2030 644 l -2040 640 l -2050 635 l -2060 631 l -2070 627 l -2080 623 l -2090 618 l -2100 614 l -2110 610 l -2120 605 l -s -2120 605 m -2130 601 l -2140 596 l -2148 593 l -s -2148 593 m -[] 0 setdash -[ 24 8 24 8] 0 setdash -3 644 m -10 647 l -21 651 l -31 655 l -41 659 l -51 663 l -61 667 l -71 670 l -81 674 l -92 678 l -102 682 l -112 685 l -122 689 l -132 692 l -143 696 l -153 700 l -163 703 l -173 707 l -184 710 l -194 714 l -204 717 l -214 720 l -225 724 l -235 727 l -245 730 l -256 734 l -266 737 l -276 740 l -287 744 l -297 747 l -307 750 l -318 753 l -328 756 l -338 760 l -349 763 l -359 766 l -370 769 l -380 772 l -390 775 l -401 778 l -411 781 l -421 784 l -432 787 l -442 790 l -453 793 l -463 796 l -474 799 l -484 802 l -494 805 l -505 808 l -s -505 808 m -534 816 l -s -47 3 m -47 10 l -47 20 l -47 31 l -48 42 l -49 53 l -50 64 l -51 74 l -53 85 l -54 96 l -56 107 l -58 117 l -60 128 l -62 139 l -64 149 l -67 160 l -70 170 l -73 181 l -76 191 l -79 201 l -82 212 l -85 222 l -89 232 l -93 242 l -96 253 l -100 263 l -104 273 l -109 283 l -113 293 l -117 303 l -122 312 l -126 322 l -131 332 l -136 342 l -141 351 l -146 361 l -151 370 l -157 380 l -162 389 l -167 399 l -173 408 l -179 417 l -184 426 l -190 436 l -196 445 l -202 454 l -208 463 l -214 472 l -221 480 l -227 489 l -s -227 489 m -233 498 l -240 507 l -246 515 l -253 524 l -259 533 l -266 541 l -273 550 l -280 558 l -287 566 l -294 575 l -301 583 l -308 591 l -315 599 l -322 607 l -329 615 l -337 623 l -344 631 l -351 639 l -359 647 l -366 655 l -374 663 l -381 671 l -389 678 l -396 686 l -404 694 l -412 701 l -420 709 l -427 717 l -435 724 l -443 732 l -451 739 l -459 746 l -467 754 l -474 761 l -482 769 l -490 776 l -498 783 l -506 791 l -514 798 l -534 816 l -s -621 3 m -613 9 l -604 15 l -595 22 l -587 28 l -579 36 l -571 43 l -563 50 l -555 58 l -548 66 l -541 74 l -534 83 l -527 91 l -521 100 l -515 109 l -509 118 l -503 127 l -497 136 l -492 146 l -487 156 l -483 165 l -478 175 l -474 185 l -470 195 l -466 205 l -462 216 l -459 226 l -456 236 l -453 247 l -451 257 l -448 268 l -446 278 l -444 289 l -442 300 l -441 311 l -439 321 l -438 332 l -437 343 l -437 354 l -436 365 l -436 375 l -436 386 l -436 397 l -436 408 l -436 419 l -437 430 l -437 440 l -438 451 l -439 462 l -440 473 l -s -440 473 m -441 484 l -443 494 l -444 505 l -446 516 l -448 526 l -450 537 l -452 548 l -454 558 l -456 569 l -459 579 l -461 590 l -464 601 l -466 611 l -469 622 l -472 632 l -475 642 l -478 653 l -481 663 l -484 674 l -488 684 l -491 694 l -494 704 l -498 715 l -501 725 l -505 735 l -508 746 l -512 756 l -516 766 l -519 776 l -523 786 l -534 816 l -s -534 816 m -[] 0 setdash -[ 24 8 24 8] 0 setdash -3 644 m -10 647 l -21 651 l -31 655 l -41 659 l -51 663 l -61 667 l -71 670 l -81 674 l -92 678 l -102 682 l -112 685 l -122 689 l -132 692 l -143 696 l -153 700 l -163 703 l -173 707 l -184 710 l -194 714 l -204 717 l -214 720 l -225 724 l -235 727 l -245 730 l -256 734 l -266 737 l -276 740 l -287 744 l -297 747 l -307 750 l -318 753 l -328 756 l -338 760 l -349 763 l -359 766 l -370 769 l -380 772 l -390 775 l -401 778 l -411 781 l -421 784 l -432 787 l -442 790 l -453 793 l -463 796 l -474 799 l -484 802 l -494 805 l -505 808 l -s -505 808 m -534 816 l -s -3 935 m -8 934 l -19 931 l -29 928 l -40 925 l -50 923 l -61 920 l -71 917 l -82 915 l -92 912 l -103 909 l -113 907 l -124 904 l -134 902 l -145 899 l -155 896 l -166 894 l -176 891 l -187 889 l -197 887 l -208 884 l -219 882 l -229 879 l -240 877 l -250 875 l -261 872 l -271 870 l -282 868 l -293 865 l -303 863 l -314 861 l -324 858 l -335 856 l -346 854 l -356 852 l -367 850 l -377 847 l -388 845 l -399 843 l -409 841 l -420 839 l -430 837 l -441 834 l -452 832 l -462 830 l -473 828 l -484 826 l -494 824 l -505 822 l -534 816 l -s -534 816 m -3 1482 m -4 1479 l -7 1469 l -10 1459 l -14 1449 l -18 1438 l -22 1428 l -26 1418 l -30 1408 l -34 1398 l -38 1388 l -43 1378 l -47 1368 l -52 1359 l -57 1349 l -61 1339 l -66 1330 l -72 1320 l -77 1311 l -82 1301 l -88 1292 l -93 1282 l -99 1273 l -104 1264 l -110 1255 l -116 1246 l -122 1237 l -128 1228 l -134 1219 l -140 1210 l -147 1201 l -153 1192 l -159 1183 l -166 1175 l -173 1166 l -179 1158 l -186 1149 l -193 1141 l -200 1132 l -206 1124 l -213 1116 l -221 1107 l -228 1099 l -235 1091 l -242 1083 l -249 1075 l -257 1067 l -264 1059 l -271 1051 l -279 1043 l -s -279 1043 m -287 1036 l -294 1028 l -302 1020 l -309 1013 l -317 1005 l -325 997 l -333 990 l -341 983 l -349 975 l -356 968 l -364 960 l -372 953 l -380 946 l -389 939 l -397 931 l -405 924 l -413 917 l -421 910 l -429 903 l -438 896 l -446 889 l -454 882 l -462 875 l -471 868 l -479 861 l -487 854 l -496 847 l -504 840 l -512 833 l -534 816 l -s -577 1629 m -572 1624 l -564 1617 l -556 1610 l -548 1602 l -541 1595 l -533 1587 l -526 1578 l -519 1570 l -513 1562 l -506 1553 l -500 1544 l -494 1535 l -488 1526 l -483 1516 l -478 1507 l -473 1497 l -468 1487 l -464 1477 l -459 1467 l -455 1457 l -452 1447 l -448 1437 l -445 1427 l -442 1416 l -439 1406 l -436 1395 l -434 1385 l -432 1374 l -430 1363 l -428 1353 l -426 1342 l -425 1331 l -424 1320 l -423 1310 l -422 1299 l -422 1288 l -422 1277 l -421 1266 l -422 1256 l -422 1245 l -422 1234 l -423 1223 l -423 1212 l -424 1201 l -425 1191 l -426 1180 l -428 1169 l -429 1158 l -431 1148 l -s -431 1148 m -433 1137 l -435 1126 l -437 1116 l -439 1105 l -441 1094 l -443 1084 l -446 1073 l -448 1063 l -451 1052 l -454 1042 l -457 1031 l -460 1021 l -463 1011 l -466 1000 l -469 990 l -473 979 l -476 969 l -480 959 l -483 949 l -487 938 l -490 928 l -494 918 l -498 908 l -502 898 l -506 888 l -510 878 l -513 867 l -517 857 l -521 847 l -534 816 l -s -534 816 m -[] 0 setdash -showpage - -%%EndFile -end end epssave restore -grestore -grestore -/crlinw 1.9 def --0.75 0 0 0.75 522.719971 97.559998 sc4mt astore -0.75 0 0 0.75 522.719971 97.559998 sc5mt astore 14 -7 239 673 -0.75 0 0 0.75 460.970001 -104.190002 sc6mt astore ssl --0.75 0 0 0.75 522.719971 97.559998 sc4mt astore -0.75 0 0 0.75 522.719971 97.559998 sc5mt astore -13 -9 253 665 -0.75 0 0 0.75 460.970001 -104.190002 sc6mt astore ssl --0.336085 0.670483 -0.670483 -0.336085 953.79834 429.697937 sc4mt astore -0.336085 0.670483 -0.670483 -0.336085 953.79834 429.697937 sc5mt astore 14 -7 239 673 -0.330245 0.658832 -0.670483 -0.336085 918.753906 585.248962 sc6mt astore ssl --0.336085 0.670483 -0.670483 -0.336085 953.79834 429.697937 sc4mt astore -0.336085 0.670483 -0.670483 -0.336085 953.79834 429.697937 sc5mt astore -13 -9 253 665 -0.330245 0.658832 -0.670483 -0.336085 918.753906 585.248962 sc6mt astore ssl --0.716846 0.220525 -0.220525 -0.716846 580.401489 820.59198 sc4mt astore -0.716846 0.220525 -0.220525 -0.716846 580.401489 820.59198 sc5mt astore 14 -7 239 673 -0.716846 0.220525 -0.220525 -0.716846 632.056885 946.323792 sc6mt astore ssl --0.716846 0.220525 -0.220525 -0.716846 580.401489 820.59198 sc4mt astore -0.716846 0.220525 -0.220525 -0.716846 580.401489 820.59198 sc5mt astore -13 -9 253 665 -0.716846 0.220525 -0.220525 -0.716846 632.056885 946.323792 sc6mt astore ssl --0.749091 0.036912 -0.036912 -0.749091 500.89386 789.831787 sc4mt astore -0.749091 0.036912 -0.036912 -0.749091 500.89386 789.831787 sc5mt astore 14 -7 239 673 -0.749091 0.036912 -0.036912 -0.749091 503.926331 960.810791 sc6mt astore ssl --0.749091 0.036912 -0.036912 -0.749091 500.89386 789.831787 sc4mt astore -0.749091 0.036912 -0.036912 -0.749091 500.89386 789.831787 sc5mt astore -13 -9 253 665 -0.749091 0.036912 -0.036912 -0.749091 503.926331 960.810791 sc6mt astore ssl --3.278354e-08 0.75 -0.75 -3.278354e-08 929.235107 122.145134 sc4mt astore -3.278354e-08 0.75 -0.75 -3.278354e-08 929.235107 122.145134 sc5mt astore 14 -7 239 673 -3.278354e-08 0.75 -0.75 -3.278354e-08 939.485107 339.895142 sc6mt astore ssl --3.278354e-08 0.75 -0.75 -3.278354e-08 929.235107 122.145134 sc4mt astore -3.278354e-08 0.75 -0.75 -3.278354e-08 929.235107 122.145134 sc5mt astore -13 -9 253 665 -3.278354e-08 0.75 -0.75 -3.278354e-08 939.485107 339.895142 sc6mt astore ssl -0.248572 0.70761 -0.70761 0.248572 816.344604 -89.34198 sc4mt astore 0.248572 0.70761 -0.70761 0.248572 816.344604 -89.34198 sc5mt astore 14 -7 239 673 0.248572 0.70761 -0.70761 0.248572 897.557983 174.926666 sc6mt astore ssl -0.248572 0.70761 -0.70761 0.248572 816.344604 -89.34198 sc4mt astore 0.248572 0.70761 -0.70761 0.248572 816.344604 -89.34198 sc5mt astore -13 -9 253 665 0.248572 0.70761 -0.70761 0.248572 897.557983 174.926666 sc6mt astore ssl --0.748508 0.047279 -0.047279 -0.748508 524.062012 732.901855 sc4mt astore -0.748508 0.047279 -0.047279 -0.748508 524.062012 732.901855 sc5mt astore 14 -7 239 673 -0.748508 0.047279 -0.050012 -0.791778 501.0896 944.747253 sc6mt astore ssl --0.748508 0.047279 -0.047279 -0.748508 524.062012 732.901855 sc4mt astore -0.748508 0.047279 -0.047279 -0.748508 524.062012 732.901855 sc5mt astore -13 -9 253 665 -0.748508 0.047279 -0.050012 -0.791778 501.0896 944.747253 sc6mt astore ssl --0.743775 0.096433 -0.096433 -0.743775 504.048096 537.558472 sc4mt astore -0.743775 0.096433 -0.096433 -0.743775 504.048096 537.558472 sc5mt astore 14 -7 239 673 -0.743775 0.096433 -0.096433 -0.743775 537.433716 788.776855 sc6mt astore ssl --0.743775 0.096433 -0.096433 -0.743775 504.048096 537.558472 sc4mt astore -0.743775 0.096433 -0.096433 -0.743775 504.048096 537.558472 sc5mt astore -13 -9 253 665 -0.743775 0.096433 -0.096433 -0.743775 537.433716 788.776855 sc6mt astore ssl --0.731118 0.167232 -0.167232 -0.731118 552.929626 574.40918 sc4mt astore -0.731118 0.167232 -0.167232 -0.731118 552.929626 574.40918 sc5mt astore 14 -7 239 673 -0.731118 0.167232 -0.161139 -0.704483 568.182007 786.609924 sc6mt astore ssl --0.731118 0.167232 -0.167232 -0.731118 552.929626 574.40918 sc4mt astore -0.731118 0.167232 -0.167232 -0.731118 552.929626 574.40918 sc5mt astore -13 -9 253 665 -0.731118 0.167232 -0.161139 -0.704483 568.182007 786.609924 sc6mt astore ssl --0.744916 -0.087182 0.087182 -0.744916 442.310516 473.09552 sc4mt astore -0.744916 -0.087182 0.087182 -0.744916 442.310516 473.09552 sc5mt astore 14 -7 239 673 -0.744916 -0.087182 0.087182 -0.744916 426.358429 780.545532 sc6mt astore ssl --0.744916 -0.087182 0.087182 -0.744916 442.310516 473.09552 sc4mt astore -0.744916 -0.087182 0.087182 -0.744916 442.310516 473.09552 sc5mt astore -13 -9 253 665 -0.744916 -0.087182 0.087182 -0.744916 426.358429 780.545532 sc6mt astore ssl -0.656329 0.362949 0.362949 -0.656329 -338.684814 537.180176 sc4mt astore 0.656329 0.362949 0.362949 -0.656329 -338.684814 537.180176 sc5mt astore 14 -7 239 673 0.656329 0.362949 0.362949 -0.656329 -311.524719 716.406921 sc6mt astore ssl -0.656329 0.362949 0.362949 -0.656329 -338.684814 537.180176 sc4mt astore 0.656329 0.362949 0.362949 -0.656329 -338.684814 537.180176 sc5mt astore -13 -9 253 665 0.656329 0.362949 0.362949 -0.656329 -311.524719 716.406921 sc6mt astore ssl -0.474273 -0.581004 0.581004 0.474273 349.885132 -102.43895 sc4mt astore 0.474273 -0.581004 0.581004 0.474273 349.885132 -102.43895 sc5mt astore 14 -7 239 673 0.474273 -0.581004 0.581004 0.474273 31.185272 123.685547 sc6mt astore ssl -0.474273 -0.581004 0.581004 0.474273 349.885132 -102.43895 sc4mt astore 0.474273 -0.581004 0.581004 0.474273 349.885132 -102.43895 sc5mt astore -13 -9 253 665 0.474273 -0.581004 0.581004 0.474273 31.185272 123.685547 sc6mt astore ssl -0.667424 -0.342119 0.342119 0.667424 288.503052 -279.422638 sc4mt astore 0.667424 -0.342119 0.342119 0.667424 288.503052 -279.422638 sc5mt astore 14 -7 239 673 0.667424 -0.342119 0.342119 0.667424 148.891953 -8.327736 sc6mt astore ssl -0.667424 -0.342119 0.342119 0.667424 288.503052 -279.422638 sc4mt astore 0.667424 -0.342119 0.342119 0.667424 288.503052 -279.422638 sc5mt astore -13 -9 253 665 0.667424 -0.342119 0.342119 0.667424 148.891953 -8.327736 sc6mt astore ssl -0.159702 -0.7328 0.7328 0.159702 20.030182 101.767296 sc4mt astore 0.159702 -0.7328 0.7328 0.159702 20.030182 101.767296 sc5mt astore 14 -7 239 673 0.159702 -0.7328 0.7328 0.159702 -31.580429 329.499329 sc6mt astore ssl -0.159702 -0.7328 0.7328 0.159702 20.030182 101.767296 sc4mt astore 0.159702 -0.7328 0.7328 0.159702 20.030182 101.767296 sc5mt astore -13 -9 253 665 0.159702 -0.7328 0.7328 0.159702 -31.580429 329.499329 sc6mt astore ssl --0.065001 -0.747178 0.747178 -0.065001 -18.130722 316.65155 sc4mt astore -0.065001 -0.747178 0.747178 -0.065001 -18.130722 316.65155 sc5mt astore 14 -7 239 673 -0.065001 -0.747178 0.747178 -0.065001 -42.07869 481.112122 sc6mt astore ssl --0.065001 -0.747178 0.747178 -0.065001 -18.130722 316.65155 sc4mt astore -0.065001 -0.747178 0.747178 -0.065001 -18.130722 316.65155 sc5mt astore -13 -9 253 665 -0.065001 -0.747178 0.747178 -0.065001 -42.07869 481.112122 sc6mt astore ssl --0.423067 -0.619285 0.619285 -0.423067 119.103729 478.333527 sc4mt astore -0.423067 -0.619285 0.619285 -0.423067 119.103729 478.333527 sc5mt astore 14 -7 239 673 -0.423067 -0.619285 0.619285 -0.423067 79.802742 692.340088 sc6mt astore ssl --0.423067 -0.619285 0.619285 -0.423067 119.103729 478.333527 sc4mt astore -0.423067 -0.619285 0.619285 -0.423067 119.103729 478.333527 sc5mt astore -13 -9 253 665 -0.423067 -0.619285 0.619285 -0.423067 79.802742 692.340088 sc6mt astore ssl -0.75 6.556708e-08 6.556708e-08 -0.75 252.239868 691.019958 sc4mt astore 0.75 6.556708e-08 6.556708e-08 -0.75 252.239868 691.019958 sc5mt astore 14 -7 239 673 0.75 6.556708e-08 6.556708e-08 -0.75 354.989868 894.269897 sc6mt astore ssl -0.75 6.556708e-08 6.556708e-08 -0.75 252.239868 691.019958 sc4mt astore 0.75 6.556708e-08 6.556708e-08 -0.75 252.239868 691.019958 sc5mt astore -13 -9 253 665 0.75 6.556708e-08 6.556708e-08 -0.75 354.989868 894.269897 sc6mt astore ssl -0.678186 0.320257 -0.320257 0.678186 489.123138 -304.008392 sc4mt astore 0.678186 0.320257 -0.320257 0.678186 489.123138 -304.008392 sc5mt astore 14 -7 239 673 0.788888 0.372533 -0.343778 0.727994 573.477478 -138.366364 sc6mt astore ssl -0.678186 0.320257 -0.320257 0.678186 489.123138 -304.008392 sc4mt astore 0.678186 0.320257 -0.320257 0.678186 489.123138 -304.008392 sc5mt astore -13 -9 253 665 0.788888 0.372533 -0.343778 0.727994 573.477478 -138.366364 sc6mt astore ssl -0.559539 0.499416 -0.499416 0.559539 701.021545 -161.570038 sc4mt astore 0.559539 0.499416 -0.499416 0.559539 701.021545 -161.570038 sc5mt astore 14 -7 239 673 0.559539 0.499416 -0.499416 0.559539 724.75647 -5.780929 sc6mt astore ssl -0.559539 0.499416 -0.499416 0.559539 701.021545 -161.570038 sc4mt astore 0.559539 0.499416 -0.499416 0.559539 701.021545 -161.570038 sc5mt astore -13 -9 253 665 0.559539 0.499416 -0.499416 0.559539 724.75647 -5.780929 sc6mt astore ssl -0.429163 0.615076 0.615076 -0.429163 -370.774078 289.443726 sc4mt astore 0.429163 0.615076 0.615076 -0.429163 -370.774078 289.443726 sc5mt astore 14 -7 239 673 0.429163 0.615076 0.615076 -0.429163 -399.53244 467.47522 sc6mt astore ssl -0.429163 0.615076 0.615076 -0.429163 -370.774078 289.443726 sc4mt astore 0.429163 0.615076 0.615076 -0.429163 -370.774078 289.443726 sc5mt astore -13 -9 253 665 0.429163 0.615076 0.615076 -0.429163 -399.53244 467.47522 sc6mt astore ssl -0.064217 -0.747246 0.747246 0.064217 -270.81781 467.737579 sc4mt astore 0.064217 -0.747246 0.747246 0.064217 -270.81781 467.737579 sc5mt astore 14 -7 239 673 0.064217 -0.747246 0.747246 0.064217 -361.842865 616.598633 sc6mt astore ssl -0.064217 -0.747246 0.747246 0.064217 -270.81781 467.737579 sc4mt astore 0.064217 -0.747246 0.747246 0.064217 -270.81781 467.737579 sc5mt astore -13 -9 253 665 0.064217 -0.747246 0.747246 0.064217 -361.842865 616.598633 sc6mt astore ssl -0.494022 -0.564307 0.564307 0.494022 -497.800781 176.304077 sc4mt astore 0.494022 -0.564307 0.564307 0.494022 -497.800781 176.304077 sc5mt astore 14 -7 239 673 0.388547 -0.443825 0.564307 0.494022 -359.879364 233.574448 sc6mt astore ssl -0.494022 -0.564307 0.564307 0.494022 -497.800781 176.304077 sc4mt astore 0.494022 -0.564307 0.564307 0.494022 -497.800781 176.304077 sc5mt astore -13 -9 253 665 0.388547 -0.443825 0.564307 0.494022 -359.879364 233.574448 sc6mt astore ssl -0.734415 -0.152102 -0.152102 -0.734415 130.351807 715.400391 sc4mt astore 0.734415 -0.152102 -0.152102 -0.734415 130.351807 715.400391 sc5mt astore 14 -7 239 673 0.734415 -0.152102 -0.152102 -0.734415 7.014052 939.928772 sc6mt astore ssl -0.734415 -0.152102 -0.152102 -0.734415 130.351807 715.400391 sc4mt astore 0.734415 -0.152102 -0.152102 -0.734415 130.351807 715.400391 sc5mt astore -13 -9 253 665 0.734415 -0.152102 -0.152102 -0.734415 7.014052 939.928772 sc6mt astore ssl -0.17246 0.729903 -0.729903 0.17246 592.426147 -213.447052 sc4mt astore 0.17246 0.729903 -0.729903 0.17246 592.426147 -213.447052 sc5mt astore 14 -7 239 673 0.17246 0.729903 -0.729903 0.17246 597.22522 24.429466 sc6mt astore ssl -0.17246 0.729903 -0.729903 0.17246 592.426147 -213.447052 sc4mt astore 0.17246 0.729903 -0.729903 0.17246 592.426147 -213.447052 sc5mt astore -13 -9 253 665 0.17246 0.729903 -0.729903 0.17246 597.22522 24.429466 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(a ) [20.015991 0 0 0] 243 137 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 74 250] dotx -(b ) [21.996002 0 0 0] 370 130 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 -229 136] dotx -(c ) [20.015999 0 0 0] 91 121 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 -32 267] dotx -(Q) [0 0] 172 57 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 246 361] dotx -/txtdraw true def -/txlndraw true def -(1 ) [20.015991 0 0 0] 200.007996 42.599998 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 246 361] dotx -/txtdraw true def -/txlndraw true def -(Q) [0 0] 322 63 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 -168 353] dotx -/txtdraw true def -/txlndraw true def -(2 ) [20.015991 0 0 0] 350.007996 48.599998 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 -168 353] dotx -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold -%%EndFile -end end epssave restore -grestore -grestore -1 0 0 1 0 0 sc5mt astore 57 413 23 -23 1 0 0 1 0 0 sc6mt astore rfill -/txtdraw true def -/txlndraw true def -(c ) [19.460007 0 0 0] 139 677 /Helvetica-Bold [ 35 1 mul 0 0 35 0 0 ] [1 0 0 0.975001 143 -99.597595] dotx -(d ) [21.384995 0 0 0] 139 677 /Helvetica-Bold [ 35 1 mul 0 0 35 0 0 ] [1 0 0 0.975001 -2 -163.597595] dotx -(e ) [19.460007 0 0 0] 139 677 /Helvetica-Bold [ 35 1 mul 0 0 35 0 0 ] [1 0 0 0.975001 303 -304.597595] dotx -end -grestore -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold -%%BoundingBox: 0.000000 0.000000 612.000000 792.000000 diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype54/prob04.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype54/prob04.gif deleted file mode 100755 index e889980a0..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype54/prob04.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype54/prob05a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype54/prob05a.eps deleted file mode 100755 index 7a892e577..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype54/prob05a.eps +++ /dev/null @@ -1,623 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: prob5101.eps -%%CreationDate: 7/16/1996 -%%Pages: 0 -%%DocumentFonts: Helvetica -%%BoundingBox:71 458 554 720 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica/Helvetica 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -3637 3420 4001 3715 R -1 sg fill -gr -/_Helvetica ff [278 0 0 -278 0 0] mf sf -3637 3628 m 0 sg (Q1) show -gs -8325 1823 8689 2118 R -1 sg fill -gr -8325 2031 m 2.78 slw 0 sg (Q2) show -gs -7543 4045 7682 4340 R -1 sg fill -gr -7543 4253 m 2.78 slw 0 sg (3) show -gs -1475 4982 1840 5277 R -1 sg fill -gr -1475 5190 m 2.78 slw 0 sg (cm) show -gs -2257 5095 2396 5390 R -1 sg fill -gr -2257 5303 m 2.78 slw 0 sg (1) show -gs -3038 5095 3177 5390 R -1 sg fill -gr -3038 5303 m 2.78 slw 0 sg (2) show -gs -3819 5095 3958 5390 R -1 sg fill -gr -3819 5303 m 2.78 slw 0 sg (3) show -gs -4600 5095 4739 5390 R -1 sg fill -gr -4600 5303 m 2.78 slw 0 sg (4) show -gs -5382 5095 5521 5390 R -1 sg fill -gr -5382 5303 m 2.78 slw 0 sg (5) show -gs -6163 5095 6302 5390 R -1 sg fill -gr -6163 5303 m 2.78 slw 0 sg (6) show -gs -6944 5095 7066 5390 R -1 sg fill -gr -6944 5303 m 2.78 slw 0 sg (7) show -gs -1475.625 5564.625 m -9288.625 5564.625 L -1.25 slw 0 sg str -gr -gs -1475.625 5408.625 m -1475.625 5564.625 L -1.25 slw 0 sg str -gr -gs -2100 5494 2100 5564 1 P -1.25 slw 0 sg str -gr -gs -1944 5494 1944 5564 1 P -1.25 slw 0 sg str -gr -gs -1788 5494 1788 5564 1 P -1.25 slw 0 sg str -gr -gs -2257.625 5408.625 m -2257.625 5564.625 L -1.25 slw 0 sg str -gr -gs -1632 5494 1632 5564 1 P -1.25 slw 0 sg str -gr -gs -2882 5494 2882 5564 1 P -1.25 slw 0 sg str -gr -gs -2725 5494 2725 5564 1 P -1.25 slw 0 sg str -gr -gs -2569 5494 2569 5564 1 P -1.25 slw 0 sg str -gr -gs -3038.625 5408.625 m -3038.625 5564.625 L -1.25 slw 0 sg str -gr -gs -2413 5494 2413 5564 1 P -1.25 slw 0 sg str -gr -gs -3663 5494 3663 5564 1 P -1.25 slw 0 sg str -gr -gs -3507 5494 3507 5564 1 P -1.25 slw 0 sg str -gr -gs -3350 5494 3350 5564 1 P -1.25 slw 0 sg str -gr -gs -3819.625 5408.625 m -3819.625 5564.625 L -1.25 slw 0 sg str -gr -gs -3194 5494 3194 5564 1 P -1.25 slw 0 sg str -gr -gs -4444 5494 4444 5564 1 P -1.25 slw 0 sg str -gr -gs -4288 5494 4288 5564 1 P -1.25 slw 0 sg str -gr -gs -4132 5494 4132 5564 1 P -1.25 slw 0 sg str -gr -gs -4600.625 5408.625 m -4600.625 5564.625 L -1.25 slw 0 sg str -gr -gs -3975 5494 3975 5564 1 P -1.25 slw 0 sg str -gr -gs -5225 5494 5225 5564 1 P -1.25 slw 0 sg str -gr -gs -5069 5494 5069 5564 1 P -1.25 slw 0 sg str -gr -gs -4913 5494 4913 5564 1 P -1.25 slw 0 sg str -gr -gs -5382.625 5408.625 m -5382.625 5564.625 L -1.25 slw 0 sg str -gr -gs -4757 5494 4757 5564 1 P -1.25 slw 0 sg str -gr -gs -6007 5494 6007 5564 1 P -1.25 slw 0 sg str -gr -gs -5850 5494 5850 5564 1 P -1.25 slw 0 sg str -gr -gs -5694 5494 5694 5564 1 P -1.25 slw 0 sg str -gr -gs -6163.625 5408.625 m -6163.625 5564.625 L -1.25 slw 0 sg str -gr -gs -5538 5494 5538 5564 1 P -1.25 slw 0 sg str -gr -gs -6788 5494 6788 5564 1 P -1.25 slw 0 sg str -gr -gs -6632 5494 6632 5564 1 P -1.25 slw 0 sg str -gr -gs -6476 5494 6476 5564 1 P -1.25 slw 0 sg str -gr -gs -6944.625 5408.625 m -6944.625 5564.625 L -1.25 slw 0 sg str -gr -gs -6319 5494 6319 5564 1 P -1.25 slw 0 sg str -gr -gs -7569 5494 7569 5564 1 P -1.25 slw 0 sg str -gr -gs -7413 5494 7413 5564 1 P -1.25 slw 0 sg str -gr -gs -7257 5494 7257 5564 1 P -1.25 slw 0 sg str -gr -gs -7726.625 5408.625 m -7726.625 5564.625 L -1.25 slw 0 sg str -gr -gs -7101 5494 7101 5564 1 P -1.25 slw 0 sg str -gr -gs -8351 5494 8351 5564 1 P -1.25 slw 0 sg str -gr -gs -8194 5494 8194 5564 1 P -1.25 slw 0 sg str -gr -gs -8038 5494 8038 5564 1 P -1.25 slw 0 sg str -gr -gs -8507.625 5408.625 m -8507.625 5564.625 L -1.25 slw 0 sg str -gr -gs -7882 5494 7882 5564 1 P -1.25 slw 0 sg str -gr -gs -9132 5494 9132 5564 1 P -1.25 slw 0 sg str -gr -gs -8976 5494 8976 5564 1 P -1.25 slw 0 sg str -gr -gs -8819 5494 8819 5564 1 P -1.25 slw 0 sg str -gr -gs -9288.625 5408.625 m -9288.625 5564.625 L -1.25 slw 0 sg str -gr -gs -8663 5494 8663 5564 1 P -1.25 slw 0 sg str -gr -gs -7726 5095 7864 5390 R -1 sg fill -gr -7726 5303 m 2.78 slw 0 sg (8) show -gs -8507 5095 8628 5390 R -1 sg fill -gr -8507 5303 m 2.78 slw 0 sg (9) show -gs -3923 3081 4236 3394 OV -1 sg fill -gr -gs -3923.625 3081.625 4236.375 3394.375 OV -1.25 slw 0 sg str -gr -gs -4097 3272 4149 3203 4114 3238 4080 3272 4097 3220 4114 3272 4080 3238 4114 3203 -4097 3255 4080 3203 4132 3220 10 P -1.25 slw 0 sg str -gr -gs -8741 1501 9054 1814 OV -1 sg fill -gr -gs -8741.625 1501.625 9054.375 1814.375 OV -1.25 slw 0 sg str -gr -gs -8897 1710 8950 1640 8915 1675 8880 1710 8897 1658 8915 1710 8880 1675 8915 1640 -8897 1693 8880 1640 8932 1658 10 P -1.25 slw 0 sg str -gr -gs -7118 4314 7430 4627 OV -1 sg fill -gr -gs -7118.625 4314.625 7430.375 4627.375 OV -1.25 slw 0 sg str -gr -gs -7274 4470 7326 4401 7292 4435 7257 4470 7274 4418 7292 4470 7257 4435 7292 4401 -7274 4453 7257 4401 7309 4418 10 P -1.25 slw 0 sg str -gr -gs -9132 5095 9427 5390 R -1 sg fill -gr -9132 5303 m 2.78 slw 0 sg (10) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype54/prob05a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype54/prob05a.gif deleted file mode 100755 index d11a250b6..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype54/prob05a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/p05av2.log b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/p05av2.log deleted file mode 100755 index b2237e9f9..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/p05av2.log +++ /dev/null @@ -1,220 +0,0 @@ -This is TeX, Version 3.1415 (C version 6.1) (format=lplain 96.1.26) 24 SEP 1998 16:20 -**p05av2.tex -(p05av2.tex -LaTeX2e <1994/12/01> -! Undefined control sequence. -l.1 \epsfxsize - =3.4 in -? - -! LaTeX Error: Missing \begin{document}. - -See the LaTeX manual or LaTeX Companion for explanation. -Type H for immediate help. - ... - -l.1 \epsfxsize= - 3.4 in -? -Missing character: There is no = in font nullfont! -Missing character: There is no 3 in font nullfont! -Missing character: There is no . in font nullfont! -Missing character: There is no 4 in font nullfont! -Missing character: There is no i in font nullfont! -Missing character: There is no n in font nullfont! -! Undefined control sequence. -l.2 \epsffile - {threeqcontdot.ps} \vskip -7.6 cm -? -Missing character: There is no t in font nullfont! -Missing character: There is no h in font nullfont! -Missing character: There is no r in font nullfont! -Missing character: There is no e in font nullfont! -Missing character: There is no e in font nullfont! -Missing character: There is no q in font nullfont! -Missing character: There is no c in font nullfont! -Missing character: There is no o in font nullfont! -Missing character: There is no n in font nullfont! -Missing character: There is no t in font nullfont! -Missing character: There is no d in font nullfont! -Missing character: There is no o in font nullfont! -Missing character: There is no t in font nullfont! -Missing character: There is no . in font nullfont! -Missing character: There is no p in font nullfont! -Missing character: There is no s in font nullfont! - -! LaTeX Error: Missing \begin{document}. - -See the LaTeX manual or LaTeX Companion for explanation. -Type H for immediate help. - ... - -l.4 \noindent - \begin{picture}(87,86)(0,0) -? -Missing character: There is no c in font nullfont! -Missing character: There is no m in font nullfont! -! Undefined control sequence. - \footnotesize - 1 -l.6 \put(12,5){\makebox(0,0)[b]{\footnotesize 1}} - -? -Missing character: There is no 1 in font nullfont! -! Undefined control sequence. - \footnotesize - 2 -l.7 \put(24,5){\makebox(0,0)[b]{\footnotesize 2}} - -? q! -OK, entering \batchmode... -Missing character: There is no 2 in font nullfont! -! Undefined control sequence. - \footnotesize - 3 -l.8 \put(36,5){\makebox(0,0)[b]{\footnotesize 3}} - -The control sequence at the end of the top line -of your error message was never \def'ed. If you have -misspelled it (e.g., `\hobx'), type `I' and the correct -spelling (e.g., `I\hbox'). Otherwise just continue, -and I'll forget about whatever was undefined. - -Missing character: There is no 3 in font nullfont! -! Undefined control sequence. - \footnotesize - 4 -l.9 \put(48,5){\makebox(0,0)[b]{\footnotesize 4}} - -The control sequence at the end of the top line -of your error message was never \def'ed. If you have -misspelled it (e.g., `\hobx'), type `I' and the correct -spelling (e.g., `I\hbox'). Otherwise just continue, -and I'll forget about whatever was undefined. - -Missing character: There is no 4 in font nullfont! -! Undefined control sequence. - \footnotesize - 5 -l.10 \put(60,5){\makebox(0,0)[b]{\footnotesize 5}} - -The control sequence at the end of the top line -of your error message was never \def'ed. If you have -misspelled it (e.g., `\hobx'), type `I' and the correct -spelling (e.g., `I\hbox'). Otherwise just continue, -and I'll forget about whatever was undefined. - -Missing character: There is no 5 in font nullfont! -Missing character: There is no a in font nullfont! -Missing character: There is no b in font nullfont! -Missing character: There is no c in font nullfont! -Missing character: There is no d in font nullfont! -Missing character: There is no f in font nullfont! -Missing character: There is no g in font nullfont! -Missing character: There is no i in font nullfont! -Missing character: There is no j in font nullfont! -Missing character: There is no k in font nullfont! -Missing character: There is no m in font nullfont! -! Undefined control sequence. - \footnotesize - $Q_1$ -l.22 ...8,80){\shortstack[l]{\footnotesize $Q_1$}} - -The control sequence at the end of the top line -of your error message was never \def'ed. If you have -misspelled it (e.g., `\hobx'), type `I' and the correct -spelling (e.g., `I\hbox'). Otherwise just continue, -and I'll forget about whatever was undefined. - -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line 22. -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line 22. -! Undefined control sequence. - \footnotesize - $Q_2$ -l.23 ...74.5){\shortstack[l]{\footnotesize $Q_2$}} - -The control sequence at the end of the top line -of your error message was never \def'ed. If you have -misspelled it (e.g., `\hobx'), type `I' and the correct -spelling (e.g., `I\hbox'). Otherwise just continue, -and I'll forget about whatever was undefined. - -! Undefined control sequence. - \footnotesize - $Q_3$ -l.24 ...6,22){\shortstack[l]{\footnotesize $Q_3$}} - -The control sequence at the end of the top line -of your error message was never \def'ed. If you have -misspelled it (e.g., `\hobx'), type `I' and the correct -spelling (e.g., `I\hbox'). Otherwise just continue, -and I'll forget about whatever was undefined. - -! Undefined control sequence. - \footnotesize - 0 Volts -l.25 ...40){\shortstack[l]{\footnotesize 0 Volts}} - -The control sequence at the end of the top line -of your error message was never \def'ed. If you have -misspelled it (e.g., `\hobx'), type `I' and the correct -spelling (e.g., `I\hbox'). Otherwise just continue, -and I'll forget about whatever was undefined. - -Missing character: There is no 0 in font nullfont! -Missing character: There is no V in font nullfont! -Missing character: There is no o in font nullfont! -Missing character: There is no l in font nullfont! -Missing character: There is no t in font nullfont! -Missing character: There is no s in font nullfont! -! Undefined control sequence. - \footnotesize - $-5$ -l.26 ...64,68){\shortstack[l]{\footnotesize $-5$}} - -The control sequence at the end of the top line -of your error message was never \def'ed. If you have -misspelled it (e.g., `\hobx'), type `I' and the correct -spelling (e.g., `I\hbox'). Otherwise just continue, -and I'll forget about whatever was undefined. - -! Undefined control sequence. - \footnotesize - $-5$ -l.27 ...15,70){\shortstack[l]{\footnotesize $-5$}} - -The control sequence at the end of the top line -of your error message was never \def'ed. If you have -misspelled it (e.g., `\hobx'), type `I' and the correct -spelling (e.g., `I\hbox'). Otherwise just continue, -and I'll forget about whatever was undefined. - -! Undefined control sequence. - \footnotesize - $+5$ -l.28 ...48,33){\shortstack[l]{\footnotesize $+5$}} - -The control sequence at the end of the top line -of your error message was never \def'ed. If you have -misspelled it (e.g., `\hobx'), type `I' and the correct -spelling (e.g., `I\hbox'). Otherwise just continue, -and I'll forget about whatever was undefined. - -) -! Emergency stop. -<*> p05av2.tex - -*** (job aborted, no legal \end found) - - -Here is how much of TeX's memory you used: - 6 strings out of 10953 - 58 string characters out of 72769 - 45064 words of memory out of 262141 - 2938 multiletter control sequences out of 9500 - 3640 words of font info for 14 fonts, out of 100000 for 255 - 14 hyphenation exceptions out of 607 - 21i,8n,16p,77b,117s stack positions out of 300i,40n,60p,3000b,4000s -No pages of output. diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/p05av2.tex b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/p05av2.tex deleted file mode 100755 index d5e8ca20b..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/p05av2.tex +++ /dev/null @@ -1,35 +0,0 @@ -\epsfxsize=3.4 in -\epsffile{pictures/threeqcontdot.ps} \vskip -7.6 cm -\setlength{\unitlength}{1mm} -\noindent \begin{picture}(87,86)(0,0) -\put(0,5){\makebox(0,0)[bl]{cm}} -\put(12,5){\makebox(0,0)[b]{\footnotesize 1}} -\put(24,5){\makebox(0,0)[b]{\footnotesize 2}} -\put(36,5){\makebox(0,0)[b]{\footnotesize 3}} -\put(48,5){\makebox(0,0)[b]{\footnotesize 4}} -\put(60,5){\makebox(0,0)[b]{\footnotesize 5}} -\setlength{\unitlength}{1mm} -\put(2.5,90){\shortstack[l]{a}} -\put(35,88){\shortstack[l]{b}} -\put(66,81){\shortstack[l]{c}} -\put(30,65){\shortstack[l]{d}} -\put(31,56){\shortstack[l]{f}} -\put(64,55){\shortstack[l]{g}} -\put(56,41){\shortstack[l]{i}} -\put(75,40){\shortstack[l]{j}} -\put(44,52){\shortstack[l]{k}} -\put(73,21){\shortstack[l]{m}} -\put(18,80){\shortstack[l]{\footnotesize $Q_1$}} -\put(64,74.5){\shortstack[l]{\footnotesize $Q_2$}} -\put(56,22){\shortstack[l]{\footnotesize $Q_3$}} -\put(17,40){\shortstack[l]{\footnotesize 0 Volts}} -\put(64,68){\shortstack[l]{\footnotesize $-5$}} -\put(15,70){\shortstack[l]{\footnotesize $-5$}} -\put(48,33){\shortstack[l]{\footnotesize $+5$}} -\setlength{\unitlength}{1.2mm} -\multiput(1,0)(1,0){49}{\line(0,1){1.5}} -\multiput(5,0)(10,0){5}{\line(0,1){2.5}} -\thicklines -\put(0,0){\line(1,0){50}} -\multiput(0,0)(10,0){6}{\line(0,1){3.5}} -\end{picture} diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/p05av3.tex b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/p05av3.tex deleted file mode 100755 index f5e071a8c..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/p05av3.tex +++ /dev/null @@ -1,35 +0,0 @@ -\epsfxsize=3.4 in -\epsffile{/teacher/capalibrary/Graphics/Gtype55/prob05.ps} \vskip -7.6 cm -\setlength{\unitlength}{1mm} -\noindent \begin{picture}(87,86)(0,0) -\put(0,5){\makebox(0,0)[bl]{cm}} -\put(13,5){\makebox(0,0)[b]{\footnotesize 1}} -\put(26,5){\makebox(0,0)[b]{\footnotesize 2}} -\put(39,5){\makebox(0,0)[b]{\footnotesize 3}} -\put(52,5){\makebox(0,0)[b]{\footnotesize 4}} -\put(65,5){\makebox(0,0)[b]{\footnotesize 5}} -\setlength{\unitlength}{1mm} -\put(2.5,90){\shortstack[l]{a}} -\put(35,88){\shortstack[l]{b}} -\put(66,81){\shortstack[l]{c}} -\put(30,65){\shortstack[l]{d}} -\put(31,56){\shortstack[l]{f}} -\put(64,55){\shortstack[l]{g}} -\put(56,41){\shortstack[l]{i}} -\put(75,40){\shortstack[l]{j}} -\put(44,52){\shortstack[l]{k}} -\put(73,21){\shortstack[l]{m}} -\put(18,80){\shortstack[l]{\footnotesize $Q_1$}} -\put(64,74.5){\shortstack[l]{\footnotesize $Q_2$}} -\put(56,22){\shortstack[l]{\footnotesize $Q_3$}} -\put(17,40){\shortstack[l]{\footnotesize 0 Volts}} -\put(64,68){\shortstack[l]{\footnotesize $-5$}} -\put(15,70){\shortstack[l]{\footnotesize $-5$}} -\put(48,33){\shortstack[l]{\footnotesize $+5$}} -\setlength{\unitlength}{1.3mm} -\multiput(1,0)(1,0){49}{\line(0,1){1.5}} -\multiput(5,0)(10,0){5}{\line(0,1){2.5}} -\thicklines -\put(0,0){\line(1,0){50}} -\multiput(0,0)(10,0){6}{\line(0,1){3.5}} -\end{picture} diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/p05av4.tex b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/p05av4.tex deleted file mode 100755 index 5069cbba8..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/p05av4.tex +++ /dev/null @@ -1,35 +0,0 @@ -\epsfxsize=3.4 in -\epsffile{/teacher/capalibrary/Graphics/Gtype55/prob05.ps} \vskip -7.6 cm -\setlength{\unitlength}{1mm} -\noindent \begin{picture}(87,86)(0,0) -\put(0,5){\makebox(0,0)[bl]{cm}} -\put(14,5){\makebox(0,0)[b]{\footnotesize 1}} -\put(28,5){\makebox(0,0)[b]{\footnotesize 2}} -\put(42,5){\makebox(0,0)[b]{\footnotesize 3}} -\put(56,5){\makebox(0,0)[b]{\footnotesize 4}} -\put(70,5){\makebox(0,0)[b]{\footnotesize 5}} -\setlength{\unitlength}{1mm} -\put(2.5,90){\shortstack[l]{a}} -\put(35,88){\shortstack[l]{b}} -\put(66,81){\shortstack[l]{c}} -\put(30,65){\shortstack[l]{d}} -\put(31,56){\shortstack[l]{f}} -\put(64,55){\shortstack[l]{g}} -\put(56,41){\shortstack[l]{i}} -\put(75,40){\shortstack[l]{j}} -\put(44,52){\shortstack[l]{k}} -\put(73,21){\shortstack[l]{m}} -\put(18,80){\shortstack[l]{\footnotesize $Q_1$}} -\put(64,74.5){\shortstack[l]{\footnotesize $Q_2$}} -\put(56,22){\shortstack[l]{\footnotesize $Q_3$}} -\put(17,40){\shortstack[l]{\footnotesize 0 Volts}} -\put(64,68){\shortstack[l]{\footnotesize $-5$}} -\put(15,70){\shortstack[l]{\footnotesize $-5$}} -\put(48,33){\shortstack[l]{\footnotesize $+5$}} -\setlength{\unitlength}{1.4mm} -\multiput(1,0)(1,0){49}{\line(0,1){1.5}} -\multiput(5,0)(10,0){5}{\line(0,1){2.5}} -\thicklines -\put(0,0){\line(1,0){50}} -\multiput(0,0)(10,0){6}{\line(0,1){3.5}} -\end{picture} diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob01a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob01a.eps deleted file mode 100755 index ab47cefe8..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob01a.eps +++ /dev/null @@ -1,646 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 521 382 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Thu, Jul 11, 1996 12:47 PM -%%DocumentFonts: (atend) -%%EndComments -0 382 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -59.38 16.00 59.38 331.25 MacLine -484.00 16.00 484.00 331.25 MacLine -1 ps -1.00 ps -484.00 15.50 475.62 15.50 MacLine -59.38 15.50 67.75 15.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(30) 37.50 20.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -67.75 68.62 475.62 68.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -484.00 68.25 475.62 68.25 MacLine -59.38 68.25 67.75 68.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(25) 37.50 73.12 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -67.75 121.25 475.62 121.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -484.00 120.88 475.62 120.88 MacLine -59.38 120.88 67.75 120.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 37.50 125.75 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -67.75 174.00 475.62 174.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -484.00 173.62 475.62 173.62 MacLine -59.38 173.62 67.75 173.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(15) 37.50 178.50 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -67.75 226.75 475.62 226.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -484.00 226.38 475.62 226.38 MacLine -59.38 226.38 67.75 226.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 37.50 231.25 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -67.75 279.38 475.62 279.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -484.00 279.00 475.62 279.00 MacLine -59.38 279.00 67.75 279.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 46.38 283.88 8.88 WS -1.00 ps -484.00 331.75 475.62 331.75 MacLine -59.38 331.75 67.75 331.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 46.38 336.62 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 241.12 translate -90 rotate -(Electric Field \(N/C\)) 0.00 0.00 134.12 WS -grestore -1.00 ps -59.38 331.75 484.00 331.75 MacLine -59.38 15.50 484.00 15.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -461.00 323.38 461.00 23.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -460.62 15.50 460.62 23.88 MacLine -460.62 331.75 460.62 323.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 452.25 349.75 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -394.12 323.38 394.12 23.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -393.75 15.50 393.75 23.88 MacLine -393.75 331.75 393.75 323.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 385.38 349.75 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -327.25 323.38 327.25 23.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -326.88 15.50 326.88 23.88 MacLine -326.88 331.75 326.88 323.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 323.00 349.75 8.88 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -260.38 323.38 260.38 23.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -260.00 15.50 260.00 23.88 MacLine -260.00 331.75 260.00 323.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 256.12 349.75 8.88 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -193.50 323.38 193.50 23.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -193.12 15.50 193.12 23.88 MacLine -193.12 331.75 193.12 323.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 189.25 349.75 8.88 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -126.62 323.38 126.62 23.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -126.25 15.50 126.25 23.88 MacLine -126.25 331.75 126.25 323.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 122.38 349.75 8.88 WS -1.00 ps -59.38 15.50 59.38 23.88 MacLine -59.38 331.75 59.38 323.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 55.50 349.75 8.88 WS -16.00 (_Helvetica) 0 F -(r \(m\)) 255.12 378.38 34.00 WS -1 0 0 SetFore UseFore -1.00 ps -newpath 59.88 332.25 M -63.12 332.25 L -66.50 332.25 L -69.88 332.25 L -73.25 332.25 L -76.50 332.25 L -79.88 332.25 L -83.25 332.25 L -86.62 332.25 L -89.88 332.25 L -93.25 332.25 L -96.62 332.25 L -100.00 332.25 L -103.25 332.25 L -106.62 332.25 L -110.00 332.25 L -113.38 332.25 L -116.62 332.25 L -120.00 332.25 L -123.38 40.25 L -126.75 68.75 L -130.00 93.25 L -133.38 114.38 L -136.75 133.00 L -140.12 149.25 L -143.38 163.62 L -146.75 176.25 L -150.12 187.62 L -153.50 197.75 L -156.75 206.88 L -160.12 215.12 L -163.50 222.50 L -166.88 229.25 L -170.12 235.38 L -173.50 241.00 L -176.88 246.12 L -180.25 250.88 L -183.50 255.12 L -186.88 259.25 L -190.25 262.88 L -193.62 266.25 L -196.88 269.50 L -200.25 272.38 L -203.62 275.12 L -207.00 277.75 L -210.25 280.12 L -213.62 282.38 L -217.00 284.50 L -220.38 286.50 L -223.62 288.25 L -227.00 290.00 L -230.38 291.62 L -233.75 293.25 L -237.00 294.62 L -240.38 296.00 L -243.75 297.38 L -247.12 298.50 L -250.38 299.75 L -253.75 300.88 L -257.12 301.88 L -260.50 302.88 L -263.75 303.88 L -267.12 304.75 L -270.50 305.62 L -273.88 306.50 L -277.12 307.25 L -280.50 308.00 L -283.88 308.75 L -287.25 309.38 L -290.50 310.00 L -293.88 310.62 L -297.25 311.25 L -300.62 311.88 L -303.88 312.38 L -307.25 312.88 L -310.62 313.50 L -314.00 314.00 L -317.25 314.38 L -320.62 314.88 L -324.00 315.38 L -327.38 315.75 L -330.62 316.12 L -334.00 316.50 L -337.38 316.88 L -340.75 317.25 L -344.00 317.62 L -347.38 318.00 L -350.75 318.25 L -354.12 318.62 L -357.38 318.88 L -360.75 319.12 L -364.12 319.50 L -367.50 319.75 L -370.75 320.00 L -374.12 320.25 L -377.50 320.50 L -380.88 320.75 L -384.12 321.00 L -387.50 321.25 L -390.88 321.50 L -394.25 321.62 L -397.50 321.88 L -400.88 322.00 L -404.25 322.25 L -407.62 322.50 L -410.88 322.62 L -414.25 322.75 L -417.62 323.00 L -421.00 323.12 L -424.25 323.38 L -427.62 323.50 L -431.00 323.62 L -434.38 323.75 L -437.62 324.00 L -441.00 324.12 L -444.38 324.25 L -447.75 324.38 L -451.00 324.50 L -454.38 324.62 L -457.75 324.75 L -461.12 324.88 L -464.38 325.00 L -467.75 325.12 L -471.12 325.25 L -474.50 325.38 L -477.75 325.38 L -481.12 325.50 L -484.25 325.50 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -388.50 352.62 399.12 368.62 EraseRect -16.00 (_Helvetica) 0 F -(A) 388.50 365.00 10.62 WS -115.38 350.62 126.88 366.62 EraseRect -16.00 (_Helvetica) 0 F -(R) 115.38 363.00 11.50 WS -189.00 352.62 199.62 368.62 EraseRect -16.00 (_Helvetica) 0 F -(B) 189.00 365.00 10.62 WS -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob01a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob01a.gif deleted file mode 100755 index 68416e1e7..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob01a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob02.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob02.eps deleted file mode 100755 index 4432dffb3..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob02.eps +++ /dev/null @@ -1,1650 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad 6.0.1 -%%Title: hw03prob04.eps -%%CreationDate: 9/14/1997 -%%DocumentProcSets: Adobe_packedarray 1.0 0 -%%DocumentSuppliedProcSets: Adobe_packedarray 1.0 0 -%%DocumentProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentProcSets: Adobe_cshow 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cshow 1.1 0 -%%DocumentProcSets: Adobe_customcolor 1.0 0 -%%DocumentSuppliedProcSets: Adobe_customcolor 1.0 0 -%%DocumentProcSets: Adobe_pattern 1.9 0 -%%DocumentSuppliedProcSets: Adobe_pattern 1.9 0 -%%DocumentProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentSuppliedProcSets: Adobe_Illustrator88 1.19 0 -%%BoundingBox:315 310 571 521 -%%TemplateBox:306 396 306 396 -%%DocumentPreview: Header -%%EndComments - -%%BeginProlog -%%BeginProcSet: Adobe_packedarray 1.0 0 -userdict /Adobe_packedarray 5 dict dup begin put -/initialize -{ -/packedarray where - { - pop - } - { - Adobe_packedarray begin - Adobe_packedarray - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - } ifelse -} def -/terminate -{ -} def -/packedarray -{ -array astore readonly -} def -/setpacking -{ -pop -} def -/currentpacking -{ -false -} def -currentdict readonly pop end -%%EndProcSet -Adobe_packedarray /initialize get exec -%%BeginProcSet: Adobe_cmykcolor 1.1 0 -currentpacking true setpacking -userdict /Adobe_cmykcolor 4 dict dup begin put -/initialize -{ -/setcmykcolor where - { - pop - } - { - userdict /Adobe_cmykcolor_vars 2 dict dup begin put - /_setrgbcolor - /setrgbcolor load def - /_currentrgbcolor - /currentrgbcolor load def - Adobe_cmykcolor begin - Adobe_cmykcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - end - Adobe_cmykcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_cmykcolor eq - { - end - } if -} def -/setcmykcolor -{ -1 sub 4 1 roll -3 - { - 3 index add neg dup 0 lt - { - pop 0 - } if - 3 1 roll - } repeat -Adobe_cmykcolor_vars /_setrgbcolor get exec -pop -} def -/currentcmykcolor -{ -Adobe_cmykcolor_vars /_currentrgbcolor get exec -3 - { - 1 sub neg 3 1 roll - } repeat -0 -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_cshow 1.1 0 -currentpacking true setpacking -userdict /Adobe_cshow 3 dict dup begin put -/initialize -{ -/cshow where - { - pop - } - { - userdict /Adobe_cshow_vars 1 dict dup begin put - /_cshow - {} def - Adobe_cshow begin - Adobe_cshow - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - end - } ifelse -} def -/terminate -{ -} def -/cshow -{ -exch -Adobe_cshow_vars - exch /_cshow - exch put - { - 0 0 Adobe_cshow_vars /_cshow get exec - } forall -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_customcolor 1.0 0 -currentpacking true setpacking -userdict /Adobe_customcolor 5 dict dup begin put -/initialize -{ -/setcustomcolor where - { - pop - } - { - Adobe_customcolor begin - Adobe_customcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - Adobe_customcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_customcolor eq - { - end - } if -} def -/findcmykcustomcolor -{ -5 packedarray -} def -/setcustomcolor -{ -exch -aload pop pop -4 - { - 4 index mul 4 1 roll - } repeat -5 -1 roll pop -setcmykcolor -} def -/setoverprint -{ -pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_pattern 1.9 0 -currentpacking true setpacking -userdict /Adobe_pattern 14 dict dup begin put -/initialize -{ -/definepattern where - { - pop - } - { - Adobe_pattern begin - Adobe_pattern - { - dup xcheck - { - bind - } if - pop pop - } forall - mark - cachestatus 7 1 roll pop pop pop pop exch pop exch - { - { - 10000 add - dup 2 index gt - { - break - } if - dup setcachelimit - } loop - } stopped - cleartomark - } ifelse -} def -/terminate -{ -currentdict Adobe_pattern eq - { - end - } if -} def -errordict -/nocurrentpoint -{ -pop -stop -} put -errordict -/invalidaccess -{ -pop -stop -} put -/patternencoding -256 array def -0 1 255 -{ -patternencoding exch ( ) 2 copy exch 0 exch put cvn put -} for -/definepattern -{ -17 dict begin -/uniform exch def -/cache exch def -/key exch def -/procarray exch def -/mtx exch matrix invertmatrix def -/height exch def -/width exch def -/ctm matrix currentmatrix def -/ptm matrix def -/str 32 string def -/slice 9 dict def -slice /s 1 put -slice /q 256 procarray length div sqrt floor cvi put -slice /b 0 put -/FontBBox [0 0 0 0] def -/FontMatrix mtx matrix copy def -/Encoding patternencoding def -/FontType 3 def -/BuildChar - { - exch - begin - slice begin - dup q dup mul mod s idiv /i exch def - dup q dup mul mod s mod /j exch def - q dup mul idiv procarray exch get - /xl j width s div mul def - /xg j 1 add width s div mul def - /yl i height s div mul def - /yg i 1 add height s div mul def - uniform - { - 1 1 - } - { - width 0 dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - 0 height dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - } ifelse - width 0 cache - { - xl 4 index mul yl 4 index mul xg 6 index mul yg 6 index mul - setcachedevice - } - { - setcharwidth - } ifelse - gsave - scale - newpath - xl yl moveto - xg yl lineto - xg yg lineto - xl yg lineto - closepath - clip - newpath - end - end - exec - grestore - } def -key currentdict definefont -end -} def -/patterncachesize -{ -gsave -newpath -0 0 moveto -width 0 lineto -width height lineto -0 height lineto -closepath -patternmatrix setmatrix -pathbbox -exch ceiling 4 -1 roll floor sub 3 1 roll -ceiling exch floor sub -mul 1 add -grestore -} def -/patterncachelimit -{ -cachestatus 7 1 roll pop pop pop pop pop pop 8 mul -} def -/patternpath -{ -exch dup begin setfont -ctm setmatrix -concat -slice exch /b exch slice /q get dup mul mul put -FontMatrix concat -uniform - { - width 0 dtransform round width div exch round width div exch - 0 height dtransform round height div exch height div exch - 0 0 transform round exch round exch - ptm astore setmatrix - } - { - ptm currentmatrix pop - } ifelse -{currentpoint} stopped not - { - pop pop - pathbbox - true - 4 index 3 index eq - 4 index 3 index eq - and - { - pop false - { - {pop pop} - {pop pop pop true} - {pop pop pop pop pop pop pop true} - {pop true} - pathforall - } stopped - { - pop pop pop pop pop true - } if - } if - { - height div ceiling height mul 4 1 roll - width div ceiling width mul 4 1 roll - height div floor height mul 4 1 roll - width div floor width mul 4 1 roll - 2 index sub height div ceiling cvi exch - 3 index sub width div ceiling cvi exch - 4 2 roll moveto - FontMatrix mtx invertmatrix - dup dup 4 get exch 5 get rmoveto - ptm ptm concatmatrix pop - slice /s - patterncachesize patterncachelimit div ceiling sqrt ceiling cvi - dup slice /q get gt - { - pop slice /q get - } if - put - 0 1 slice /s get dup mul 1 sub - { - slice /b get add - gsave - 0 1 str length 1 sub - { - str exch 2 index put - } for - pop - dup - { - gsave - ptm setmatrix - 1 index str length idiv {str show} repeat - 1 index str length mod str exch 0 exch getinterval show - grestore - 0 height rmoveto - } repeat - grestore - } for - pop pop - } - { - pop pop pop pop - } ifelse - } if -end -} def -/patternclip -{ -clip -} def -/patternstrokepath -{ -strokepath -} def -/patternmatrix -matrix def -/patternfill -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternclip -Adobe_pattern /patternpath get exec -grestore -newpath -} def -/patternstroke -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternstrokepath -true - { - { - { - newpath - moveto - } - { - lineto - } - { - curveto - } - { - closepath - 3 copy - Adobe_pattern /patternfill get exec - } pathforall - pop pop pop - } stopped - { - pop pop pop pop pop - patternclip - Adobe_pattern /patternfill get exec - } if - } - { - patternclip - Adobe_pattern /patternfill get exec - } ifelse -grestore -newpath -} def -/patternashow -{ -3 index type /dicttype eq - { - Adobe_pattern /patternmatrix get 4 1 roll - } if - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 6 index 6 index 6 index - Adobe_pattern /patternfill get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop -} def -/patternashowstroke -{ -4 index type /dicttype eq - { - patternmatrix /patternmatrix get 5 1 roll - } if -4 1 roll - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - 7 index 7 index 7 index - Adobe_pattern /patternstroke get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_Illustrator88 1.19 0 -currentpacking true setpacking -userdict /Adobe_Illustrator88 73 dict dup begin put -/initialize -{ -userdict /Adobe_Illustrator88_vars 31 dict dup begin put -/_lp /none def -/_pf {} def -/_ps {} def -/_psf {} def -/_pss {} def -/_a null def -/_as null def -/_tt 2 array def -/_tl 2 array def -/_tm matrix def -/t {} def -/_gf null def -/_cf 4 array def -/_if null def -/_of false def -/_fc {} def -/_gs null def -/_cs 4 array def -/_is null def -/_os false def -/_sc {} def -/_pd 1 dict def -/_ed 15 dict def -/_pm matrix def -/_fm null def -/_fd null def -/_fdd null def -/_sm null def -/_sd null def -/_sdd null def -/_i null def -Adobe_Illustrator88 begin -Adobe_Illustrator88 dup /nc get begin - { - dup xcheck - { - bind - } if - pop pop - } forall -end -end -end -Adobe_Illustrator88 begin -Adobe_Illustrator88_vars begin -newpath -} def -/terminate -{ -end -end -} def -/_ -null def -/ddef -{ -Adobe_Illustrator88_vars 3 1 roll put -} def -/xput -{ -dup load dup length exch maxlength eq - { - dup dup load dup - length 2 mul dict copy def - } if -load begin def end -} def -/npop -{ - { - pop - } repeat -} def -/sw -{ -stringwidth -exch 5 -1 roll 3 index 1 sub mul add -4 1 roll 3 1 roll 1 sub mul add -} def -/ss -{ -3 -1 roll pop -4 1 roll - { - 2 npop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - stroke - grestore - moveto - 2 copy rmoveto - } exch cshow -3 npop -} def -/sp -{ -exch pop - { - 2 npop (0) exch - 2 copy 0 exch put pop - false charpath - 2 copy rmoveto - } exch cshow -2 npop -} def -/pl -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where -{ -pop true setstrokeadjust -/c -{ -curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll curveto -} def -/V -/v load def -/y -{ -2 copy curveto -} def -/Y -/y load def -/l -{ -lineto -} def -/L -/l load def -/m -{ -moveto -} def -} -{ -/c -{ -pl curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll pl curveto -} def -/V -/v load def -/y -{ -pl 2 copy curveto -} def -/Y -/y load def -/l -{ -pl lineto -} def -/L -/l load def -/m -{ -pl moveto -} def -} ifelse -/d -{ -setdash -} def -/cf -currentflat def -/i -{ -dup 0 eq - { - pop cf - } if -setflat -} def -/j -{ -setlinejoin -} def -/J -{ -setlinecap -} def -/M -{ -setmiterlimit -} def -/w -{ -setlinewidth -} def -/H -{} def -/h -{ -closepath -} def -/N -{ -newpath -} def -/n -/N load def -/F -{ -_pf -} def -/f -{ -closepath -F -} def -/S -{ -_ps -} def -/s -{ -closepath -S -} def -/B -{ -gsave F grestore -S -} def -/b -{ -closepath -B -} def -/W -{ -clip -} def -/ta -{ -_as moveto -_tt aload pop 4 -2 roll -} def -/tl -{ -_tl aload pop translate -} def -/as -{ -{ -0 0 -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg 2 div exch neg 2 div -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg exch neg -} -{ -0 0 -} -} cvlit def -/z -{ -/_a exch ddef -/_as as _a get ddef -_a 2 le - { - 0 _tt astore pop - 0 exch neg _tl astore pop - } - { - 0 exch neg _tt astore pop - neg 0 _tl astore pop - } ifelse -exch findfont exch scalefont setfont -} def -/tm -{ -_tm currentmatrix pop -concat -} def -/I -{ -tm -/t - { - ta sp - tl - } ddef -} def -/o -{ -tm -/t - { - ta 4 npop - tl - newpath - } ddef -} def -/e -{ -tm -/t - { - ta _psf - tl - newpath - } ddef -} def -/r -{ -tm -/t - { - ta _tm _pss - tl - newpath - } ddef -} def -/a -{ -tm -/t - { - 2 copy - ta _psf - newpath - ta _tm _pss - tl - newpath - } ddef -} def -/T -{ -_tm setmatrix -} def -/Z -{ -pop -findfont begin -currentdict dup length 1 add dict begin - { - 1 index /FID ne - { - def - } - { - 2 npop - } ifelse - } forall -/FontName exch def dup length 0 ne - { - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - { - Encoding 2 index 2 index put pop - 1 add - } - { - exch pop - } ifelse - } forall - } if pop -currentdict dup end end -/FontName get exch definefont pop -} def -/u -{} def -/U -{} def -/q -{ -gsave -} def -/Q -{ -grestore -} def -/` -{ -/_i save ddef -6 1 roll 4 npop -concat -userdict begin -/showpage {} def -false setoverprint -pop -} def -/~ -{ -end -_i restore -} def -/@ -{} def -/& -{} def -/O -{ -0 ne -/_of exch ddef -/_lp /none ddef -} def -/R -{ -0 ne -/_os exch ddef -/_lp /none ddef -} def -/g -{ -/_gf exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _gf setgray - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/G -{ -/_gs exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _gs setgray - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/k -{ -_cf astore pop -/_fc -{ -_lp /fill ne - { - _of setoverprint - _cf aload pop setcmykcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/K -{ -_cs astore pop -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _cs aload pop setcmykcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/x -{ -/_gf exch ddef -findcmykcustomcolor -/_if exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _if _gf 1 exch sub setcustomcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/X -{ -/_gs exch ddef -findcmykcustomcolor -/_is exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _is _gs 1 exch sub setcustomcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/dp -{ -dup null eq -{ -pop -_dp 0 ne - { - 0 1 _dp 1 sub _dl mod - { - _da exch get 3 get - } for - _dp 1 sub _dl mod 1 add packedarray - _da 0 get aload pop 8 -1 roll 5 -1 roll pop 4 1 roll - definepattern pop - } if -} -{ -_dp 0 ne _dp _dl mod 0 eq and - { - null dp - } if -7 packedarray _da exch _dp _dl mod exch put -_dp _dl mod _da 0 get 4 get 2 packedarray -/_dp _dp 1 add def -} ifelse -} def -/E -{ -_ed begin -dup 0 get type /arraytype ne - { - 0 - { - dup 1 add index type /arraytype eq - { - 1 add - } - { - exit - } ifelse - } loop - array astore - } if -/_dd exch def -/_ury exch def -/_urx exch def -/_lly exch def -/_llx exch def -/_n exch def -/_y 0 def -/_dl 4 def -/_dp 0 def -/_da _dl array def -0 1 _dd length 1 sub - { - /_d exch _dd exch get def - 0 2 _d length 2 sub - { - /_x exch def - /_c _d _x get _ ne def - /_r _d _x 1 add get cvlit def - _r _ ne - { - _urx _llx sub _ury _lly sub [1 0 0 1 0 0] - [ - /save cvx - _llx neg _lly neg /translate cvx - _c - { - nc /begin cvx - } if - _r dup type /stringtype eq - { - cvx - } - { - {exec} /forall cvx - } ifelse - _c - { - /end cvx - } if - /restore cvx - ] cvx - /_fn 12 _n length add string def - _y _fn cvs pop - /_y _y 1 add def - _fn 12 _n putinterval - _fn _c false dp - _d exch _x 1 add exch put - } if - } for - } for -null dp -_n _dd /_pd -end xput -} def -/fc -{ -_fm dup concatmatrix pop -} def -/p -{ -/_fm exch ddef -9 -2 roll _pm translate fc -7 -2 roll _pm scale fc -5 -1 roll _pm rotate fc -4 -2 roll exch 0 ne - { - dup _pm rotate fc - 1 -1 _pm scale fc - neg _pm rotate fc - } - { - pop - } ifelse -dup _pm rotate fc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore fc -neg _pm rotate fc -_pd exch get /_fdd exch ddef -/_pf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - patternfill - } - { - pop - fill - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_psf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - 10 copy 6 npop exch pop patternashow - } - { - pop - 7 copy 3 npop exch pop ashow - } ifelse - grestore - pop - } for - pop - } for -restore -4 npop newpath -} ddef -/_lp /none ddef -} def -/sc -{ -_sm dup concatmatrix pop -} def -/P -{ -/_sm exch ddef -9 -2 roll _pm translate sc -7 -2 roll _pm scale sc -5 -1 roll _pm rotate sc -4 -2 roll exch 0 ne - { - dup _pm rotate sc - 1 -1 _pm scale sc - neg _pm rotate sc - } - { - pop - } ifelse -dup _pm rotate sc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore sc -neg _pm rotate sc -_pd exch get /_sdd exch ddef -/_ps -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - patternstroke - } - { - pop stroke - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_pss -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - 11 copy 6 npop 3 -1 roll pop patternashowstroke - } - { - pop - 8 copy 3 npop ss - } ifelse - grestore - pop - } for - pop - } for -restore -5 npop newpath -} ddef -/_lp /none ddef -} def -/A -{ -pop -} def -/nc 3 dict def -nc begin -/setgray -{ -pop -} bind def -/setcmykcolor -{ -4 npop -} bind def -/setcustomcolor -{ -2 npop -} bind def -currentdict readonly pop end -currentdict readonly pop end -setpacking -%%EndProcSet -%%EndProlog - -%%BeginSetup -Adobe_cmykcolor /initialize get exec -Adobe_cshow /initialize get exec -Adobe_customcolor /initialize get exec -Adobe_pattern /initialize get exec -Adobe_Illustrator88 /initialize get exec - -%%EndSetup - -0 A -0 O -0 R -0 g -0 G -0 i 0 J 0 j 1 w 4 M [] 0 d -u -u -u -551.463 356.537 m -551.463 500.522 L -407.478 500.522 L -407.478 356.537 L -551.463 356.537 L -2.016 w 1 1 0 0 (New Color 4) 0 X - S -U -u -417.471 500.529 m -417.471 495.007 412.993 490.529 407.471 490.529 c -401.948 490.529 397.471 495.007 397.471 500.529 c -397.471 506.052 401.948 510.529 407.471 510.529 c -412.993 510.529 417.471 506.052 417.471 500.529 c -0 1 1 0 (New Color 0) 0 x - F -U -u -416.463 500.529 m -416.463 495.563 412.437 491.537 407.471 491.537 c -402.504 491.537 398.478 495.563 398.478 500.529 c -398.478 505.496 402.504 509.522 407.471 509.522 c -412.437 509.522 416.463 505.496 416.463 500.529 c -2.016 w 0 G S -U -u -561.471 500.529 m -561.471 495.007 556.993 490.529 551.471 490.529 c -545.948 490.529 541.471 495.007 541.471 500.529 c -541.471 506.052 545.948 510.529 551.471 510.529 c -556.993 510.529 561.471 506.052 561.471 500.529 c -0 1 1 0 (New Color 0) 0 x - F -U -u -560.463 500.529 m -560.463 495.563 556.437 491.537 551.471 491.537 c -546.504 491.537 542.478 495.563 542.478 500.529 c -542.478 505.496 546.504 509.522 551.471 509.522 c -556.437 509.522 560.463 505.496 560.463 500.529 c -2.016 w 0 G S -U -u -561.471 356.529 m -561.471 351.007 556.993 346.529 551.471 346.529 c -545.948 346.529 541.471 351.007 541.471 356.529 c -541.471 362.052 545.948 366.529 551.471 366.529 c -556.993 366.529 561.471 362.052 561.471 356.529 c -0 1 1 0 (New Color 0) 0 x - F -U -u -560.463 356.529 m -560.463 351.563 556.437 347.537 551.471 347.537 c -546.504 347.537 542.478 351.563 542.478 356.529 c -542.478 361.496 546.504 365.522 551.471 365.522 c -556.437 365.522 560.463 361.496 560.463 356.529 c -2.016 w 0 G S -U -u -417.471 356.529 m -417.471 351.007 412.993 346.529 407.471 346.529 c -401.948 346.529 397.471 351.007 397.471 356.529 c -397.471 362.052 401.948 366.529 407.471 366.529 c -412.993 366.529 417.471 362.052 417.471 356.529 c -0 1 1 0 (New Color 0) 0 x - F -U -u -416.463 356.529 m -416.463 351.563 412.437 347.537 407.471 347.537 c -402.504 347.537 398.478 351.563 398.478 356.529 c -398.478 361.496 402.504 365.522 407.471 365.522 c -412.437 365.522 416.463 361.496 416.463 356.529 c -2.016 w 0 G S -U -U -335.478 473.522 m -407.478 500.522 l -2.016 w 1 1 0 0 (New Color 4) 0 X - S -479.478 473.522 m -551.478 500.522 l -2.016 w 1 1 0 0 (New Color 4) 0 X - S -335.478 329.522 m -407.478 356.522 l -2.016 w 1 1 0 0 (New Color 4) 0 X - S -479.478 329.522 m -551.478 356.522 l -2.016 w 1 1 0 0 (New Color 4) 0 X - S -u -u -479.463 329.537 m -479.463 473.522 L -335.478 473.522 L -335.478 329.537 L -479.463 329.537 L -2.016 w 1 1 0 0 (New Color 4) 0 X - S -U -u -345.471 473.529 m -345.471 468.007 340.993 463.529 335.471 463.529 c -329.948 463.529 325.471 468.007 325.471 473.529 c -325.471 479.052 329.948 483.529 335.471 483.529 c -340.993 483.529 345.471 479.052 345.471 473.529 c -0 1 1 0 (New Color 0) 0 x - F -U -u -344.463 473.529 m -344.463 468.563 340.437 464.537 335.471 464.537 c -330.504 464.537 326.478 468.563 326.478 473.529 c -326.478 478.496 330.504 482.522 335.471 482.522 c -340.437 482.522 344.463 478.496 344.463 473.529 c -2.016 w 0 G S -U -u -489.471 473.529 m -489.471 468.007 484.993 463.529 479.471 463.529 c -473.948 463.529 469.471 468.007 469.471 473.529 c -469.471 479.052 473.948 483.529 479.471 483.529 c -484.993 483.529 489.471 479.052 489.471 473.529 c -0 1 1 0 (New Color 0) 0 x - F -U -u -488.463 473.529 m -488.463 468.563 484.437 464.537 479.471 464.537 c -474.504 464.537 470.478 468.563 470.478 473.529 c -470.478 478.496 474.504 482.522 479.471 482.522 c -484.437 482.522 488.463 478.496 488.463 473.529 c -2.016 w 0 G S -U -u -489.471 329.529 m -489.471 324.007 484.993 319.529 479.471 319.529 c -473.948 319.529 469.471 324.007 469.471 329.529 c -469.471 335.052 473.948 339.529 479.471 339.529 c -484.993 339.529 489.471 335.052 489.471 329.529 c -0 1 1 0 (New Color 0) 0 x - F -U -u -488.463 329.529 m -488.463 324.563 484.437 320.537 479.471 320.537 c -474.504 320.537 470.478 324.563 470.478 329.529 c -470.478 334.496 474.504 338.522 479.471 338.522 c -484.437 338.522 488.463 334.496 488.463 329.529 c -2.016 w 0 G S -U -u -345.471 329.529 m -345.471 324.007 340.993 319.529 335.471 319.529 c -329.948 319.529 325.471 324.007 325.471 329.529 c -325.471 335.052 329.948 339.529 335.471 339.529 c -340.993 339.529 345.471 335.052 345.471 329.529 c -0 1 1 0 (New Color 0) 0 x - F -U -u -344.463 329.529 m -344.463 324.563 340.437 320.537 335.471 320.537 c -330.504 320.537 326.478 324.563 326.478 329.529 c -326.478 334.496 330.504 338.522 335.471 338.522 c -340.437 338.522 344.463 334.496 344.463 329.529 c -2.016 w 0 G S -U -U -U - -%%Trailer -Adobe_Illustrator88 /terminate get exec -Adobe_pattern /terminate get exec -Adobe_customcolor /terminate get exec -Adobe_cshow /terminate get exec -Adobe_cmykcolor /terminate get exec -Adobe_packedarray /terminate get exec -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob02.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob02.gif deleted file mode 100755 index f059e9dab..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob02.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob03a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob03a.eps deleted file mode 100755 index 9fd0e26c0..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob03a.eps +++ /dev/null @@ -1,396 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: prob5503a.eps -%%CreationDate: 7/23/1996 -%%Pages: 0 -%%DocumentFonts: Helvetica -%%BoundingBox:59 607 288 703 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica/Helvetica 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -1267 2075 1892 2700 OV -1 sg fill -gr -gs -1267.5 2075.5 1892.5 2700.5 OV -35 slw 0 sg str -gr -gs -3923 1918 4861 2856 OV -1 sg fill -gr -gs -3923.5 1918.5 4861.5 2856.5 OV -35 slw 0 sg str -gr -gs -1892.5 2387.5 m -3923.5 2387.5 L -35 slw 0 sg str -gr -gs -1892.5 2543.5 m -2673.5 2543.5 L -35 slw 0 sg str -gr -gs -2986.5 2543.5 m -3923.5 2543.5 L -35 slw 0 sg str -gr -gs -2777 2422 2916 2717 R -1 sg fill -gr -/_Helvetica ff [278 0 0 -278 0 0] mf sf -2777 2630 m 0 sg (L) show -gs -1510 2266 1684 2561 R -1 sg fill -gr -1510 2474 m 2.78 slw 0 sg (A) show -gs -4322 2266 4496 2561 R -1 sg fill -gr -4322 2474 m 2.78 slw 0 sg (B) show -gs -1519 1797 1640 2040 R -1 sg fill -gr -/_Helvetica ff [208 0 0 -208 0 0] mf sf -1519 1970 m 0 sg (+) show -gs -1111 2110 1232 2352 R -1 sg fill -gr -1111 2283 m 2.08 slw 0 sg (+) show -gs -1206 2578 1328 2821 R -1 sg fill -gr -1206 2751 m 2.08 slw 0 sg (+) show -gs -1675 2735 1796 2977 R -1 sg fill -gr -1675 2908 m 2.08 slw 0 sg (+) show -gs -1892 2110 2013 2352 R -1 sg fill -gr -1892 2283 m 2.08 slw 0 sg (+) show -gs -3863 1953 3984 2196 R -1 sg fill -gr -3863 2126 m 2.08 slw 0 sg (+) show -gs -4800 1953 4921 2196 R -1 sg fill -gr -4800 2126 m 2.08 slw 0 sg (+) show -gs -4800 2578 4921 2821 R -1 sg fill -gr -4800 2751 m 2.08 slw 0 sg (+) show -gs -4331 2891 4453 3134 R -1 sg fill -gr -4331 3064 m 2.08 slw 0 sg (+) show -gs -4331 1641 4453 1884 R -1 sg fill -gr -4331 1814 m 2.08 slw 0 sg (+) show -gs -3923 2735 4045 2977 R -1 sg fill -gr -3923 2908 m 2.08 slw 0 sg (+) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob03a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob03a.gif deleted file mode 100755 index bc9206c55..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob03a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob04a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob04a.eps deleted file mode 100755 index bb3b57bb9..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob04a.eps +++ /dev/null @@ -1,368 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: prob5504.eps -%%CreationDate: 7/23/1996 -%%Pages: 0 -%%DocumentFonts: Helvetica -%%BoundingBox:95 505 466 660 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica/Helvetica 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -1736 3021 2986 4271 OV -1 sg fill -gr -gs -1736.5 3021.5 2986.5 4271.5 OV -35 slw 0 sg str -gr -gs -5591 2658 7568 4634 OV -1 sg fill -gr -gs -5591.5 2658.5 7568.5 4634.5 OV -35 slw 0 sg str -gr -gs -5668 3481 5911 3776 R -1 sg fill -gr -/_Helvetica ff [278 0 0 -278 0 0] mf sf -5668 3689 m 0 sg (r2) show -gs -1918 3481 2161 3776 R -1 sg fill -gr -1918 3689 m 2.78 slw 0 sg (r1) show -gs -7274 2493 7430 2788 R -1 sg fill -gr -7274 2701 m 2.78 slw 0 sg () show -gs -7847 3299 8003 3594 R -1 sg fill -gr -7847 3507 m 2.78 slw 0 sg () show -gs -7552 4097 7708 4393 R -1 sg fill -gr -7552 4305 m 2.78 slw 0 sg () show -gs -6840 4601 6996 4896 R -1 sg fill -gr -6840 4809 m 2.78 slw 0 sg () show -gs -5712 4419 5868 4714 R -1 sg fill -gr -5712 4627 m 2.78 slw 0 sg () show -gs -5868 2387 6024 2682 R -1 sg fill -gr -5868 2595 m 2.78 slw 0 sg () show -gs -5364 3386 5521 3681 R -1 sg fill -gr -5364 3594 m 2.78 slw 0 sg () show -gs -6406 3481 6545 3776 R -1 sg fill -gr -6406 3689 m 2.78 slw 0 sg (q) show -gs -2969 3317 2899 3334 2969 3264 3038 3247 3073 3213 3125 3195 3160 3160 3229 3143 -3281 3126 3368 3091 3490 3126 3559 3160 3611 3195 3663 3213 3733 3247 3837 3230 -3906 3230 4201 3091 4254 3056 4323 3056 4445 3074 4496 3108 4549 3126 4618 3160 -4687 3178 4757 3195 4844 3213 4913 3230 4983 3230 5052 3230 5121 3213 5191 3195 -5260 3178 5313 3160 5365 3143 5434 3143 5486 3160 5573 3178 5608 3213 38 P -35 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob04a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob04a.gif deleted file mode 100755 index bf14a7dee..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob04a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob05.ps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob05.ps deleted file mode 100755 index c37dab0af..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob05.ps and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob05av1.tex b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob05av1.tex deleted file mode 100755 index 9cc4682b4..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob05av1.tex +++ /dev/null @@ -1,35 +0,0 @@ -\epsfxsize=3.4 in -\epsffile{/teacher/capalibrary/Graphics/Gtype55/prob05.ps} \vskip -7.6 cm -\setlength{\unitlength}{1mm} -\noindent \begin{picture}(87,86)(0,0) -\put(0,5){\makebox(0,0)[bl]{cm}} -\put(11,5){\makebox(0,0)[b]{\footnotesize 1}} -\put(22,5){\makebox(0,0)[b]{\footnotesize 2}} -\put(33,5){\makebox(0,0)[b]{\footnotesize 3}} -\put(44,5){\makebox(0,0)[b]{\footnotesize 4}} -\put(55,5){\makebox(0,0)[b]{\footnotesize 5}} -\setlength{\unitlength}{1mm} -\put(2.5,90){\shortstack[l]{a}} -\put(35,88){\shortstack[l]{b}} -\put(66,81){\shortstack[l]{c}} -\put(30,65){\shortstack[l]{d}} -\put(31,56){\shortstack[l]{f}} -\put(64,55){\shortstack[l]{g}} -\put(56,41){\shortstack[l]{i}} -\put(75,40){\shortstack[l]{j}} -\put(44,52){\shortstack[l]{k}} -\put(73,21){\shortstack[l]{m}} -\put(18,80){\shortstack[l]{\footnotesize $Q_1$}} -\put(64,74.5){\shortstack[l]{\footnotesize $Q_2$}} -\put(56,22){\shortstack[l]{\footnotesize $Q_3$}} -\put(17,40){\shortstack[l]{\footnotesize 0 Volts}} -\put(64,68){\shortstack[l]{\footnotesize $-5$}} -\put(15,70){\shortstack[l]{\footnotesize $-5$}} -\put(48,33){\shortstack[l]{\footnotesize $+5$}} -\setlength{\unitlength}{1.1mm} -\multiput(1,0)(1,0){49}{\line(0,1){1.5}} -\multiput(5,0)(10,0){5}{\line(0,1){2.5}} -\thicklines -\put(0,0){\line(1,0){50}} -\multiput(0,0)(10,0){6}{\line(0,1){3.5}} -\end{picture} diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob05av2.tex b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob05av2.tex deleted file mode 100755 index 688a2e6d4..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob05av2.tex +++ /dev/null @@ -1,35 +0,0 @@ -\epsfxsize=3.4 in -\epsffile{/teacher/capalibrary/Graphics/Gtype55/prob05.ps} \vskip -7.6 cm -\setlength{\unitlength}{1mm} -\noindent \begin{picture}(87,86)(0,0) -\put(0,5){\makebox(0,0)[bl]{cm}} -\put(12,5){\makebox(0,0)[b]{\footnotesize 1}} -\put(24,5){\makebox(0,0)[b]{\footnotesize 2}} -\put(36,5){\makebox(0,0)[b]{\footnotesize 3}} -\put(48,5){\makebox(0,0)[b]{\footnotesize 4}} -\put(60,5){\makebox(0,0)[b]{\footnotesize 5}} -\setlength{\unitlength}{1mm} -\put(2.5,90){\shortstack[l]{a}} -\put(35,88){\shortstack[l]{b}} -\put(66,81){\shortstack[l]{c}} -\put(30,65){\shortstack[l]{d}} -\put(31,56){\shortstack[l]{f}} -\put(64,55){\shortstack[l]{g}} -\put(56,41){\shortstack[l]{i}} -\put(75,40){\shortstack[l]{j}} -\put(44,52){\shortstack[l]{k}} -\put(73,21){\shortstack[l]{m}} -\put(18,80){\shortstack[l]{\footnotesize $Q_1$}} -\put(64,74.5){\shortstack[l]{\footnotesize $Q_2$}} -\put(56,22){\shortstack[l]{\footnotesize $Q_3$}} -\put(17,40){\shortstack[l]{\footnotesize 0 Volts}} -\put(64,68){\shortstack[l]{\footnotesize $-5$}} -\put(15,70){\shortstack[l]{\footnotesize $-5$}} -\put(48,33){\shortstack[l]{\footnotesize $+5$}} -\setlength{\unitlength}{1.2mm} -\multiput(1,0)(1,0){49}{\line(0,1){1.5}} -\multiput(5,0)(10,0){5}{\line(0,1){2.5}} -\thicklines -\put(0,0){\line(1,0){50}} -\multiput(0,0)(10,0){6}{\line(0,1){3.5}} -\end{picture} diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob05av3.log b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob05av3.log deleted file mode 100755 index a1844f0fb..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob05av3.log +++ /dev/null @@ -1,261 +0,0 @@ -This is TeX, Version 3.1415 (C version 6.1) (format=lplain 96.1.26) 24 SEP 1998 16:17 -**prob05av3.tex -(prob05av3.tex -LaTeX2e <1994/12/01> -! Undefined control sequence. -l.1 \epsfxsize - =3.4 in -? - -! LaTeX Error: Missing \begin{document}. - -See the LaTeX manual or LaTeX Companion for explanation. -Type H for immediate help. - ... - -l.1 \epsfxsize= - 3.4 in -? -Missing character: There is no = in font nullfont! -Missing character: There is no 3 in font nullfont! -Missing character: There is no . in font nullfont! -Missing character: There is no 4 in font nullfont! -Missing character: There is no i in font nullfont! -Missing character: There is no n in font nullfont! -! Undefined control sequence. -l.2 \epsffile - {/teacher/capalibrary/Graphics/Gtype55/prob05.ps} \vskip -7.6 cm -? -Missing character: There is no / in font nullfont! -Missing character: There is no t in font nullfont! -Missing character: There is no e in font nullfont! -Missing character: There is no a in font nullfont! -Missing character: There is no c in font nullfont! -Missing character: There is no h in font nullfont! -Missing character: There is no e in font nullfont! -Missing character: There is no r in font nullfont! -Missing character: There is no / in font nullfont! -Missing character: There is no c in font nullfont! -Missing character: There is no a in font nullfont! -Missing character: There is no p in font nullfont! -Missing character: There is no a in font nullfont! -Missing character: There is no l in font nullfont! -Missing character: There is no i in font nullfont! -Missing character: There is no b in font nullfont! -Missing character: There is no r in font nullfont! -Missing character: There is no a in font nullfont! -Missing character: There is no r in font nullfont! -Missing character: There is no y in font nullfont! -Missing character: There is no / in font nullfont! -Missing character: There is no G in font nullfont! -Missing character: There is no r in font nullfont! -Missing character: There is no a in font nullfont! -Missing character: There is no p in font nullfont! -Missing character: There is no h in font nullfont! -Missing character: There is no i in font nullfont! -Missing character: There is no c in font nullfont! -Missing character: There is no s in font nullfont! -Missing character: There is no / in font nullfont! -Missing character: There is no G in font nullfont! -Missing character: There is no t in font nullfont! -Missing character: There is no y in font nullfont! -Missing character: There is no p in font nullfont! -Missing character: There is no e in font nullfont! -Missing character: There is no 5 in font nullfont! -Missing character: There is no 5 in font nullfont! -Missing character: There is no / in font nullfont! -Missing character: There is no p in font nullfont! -Missing character: There is no r in font nullfont! -Missing character: There is no o in font nullfont! -Missing character: There is no b in font nullfont! -Missing character: There is no 0 in font nullfont! -Missing character: There is no 5 in font nullfont! -Missing character: There is no . in font nullfont! -Missing character: There is no p in font nullfont! -Missing character: There is no s in font nullfont! - -! LaTeX Error: Missing \begin{document}. - -See the LaTeX manual or LaTeX Companion for explanation. -Type H for immediate help. - ... - -l.4 \noindent - \begin{picture}(87,86)(0,0) -? q! -OK, entering \batchmode... -Missing character: There is no c in font nullfont! -Missing character: There is no m in font nullfont! -! Undefined control sequence. - \footnotesize - 1 -l.6 \put(13,5){\makebox(0,0)[b]{\footnotesize 1}} - -The control sequence at the end of the top line -of your error message was never \def'ed. If you have -misspelled it (e.g., `\hobx'), type `I' and the correct -spelling (e.g., `I\hbox'). Otherwise just continue, -and I'll forget about whatever was undefined. - -Missing character: There is no 1 in font nullfont! -! Undefined control sequence. - \footnotesize - 2 -l.7 \put(26,5){\makebox(0,0)[b]{\footnotesize 2}} - -The control sequence at the end of the top line -of your error message was never \def'ed. If you have -misspelled it (e.g., `\hobx'), type `I' and the correct -spelling (e.g., `I\hbox'). Otherwise just continue, -and I'll forget about whatever was undefined. - -Missing character: There is no 2 in font nullfont! -! Undefined control sequence. - \footnotesize - 3 -l.8 \put(39,5){\makebox(0,0)[b]{\footnotesize 3}} - -The control sequence at the end of the top line -of your error message was never \def'ed. If you have -misspelled it (e.g., `\hobx'), type `I' and the correct -spelling (e.g., `I\hbox'). Otherwise just continue, -and I'll forget about whatever was undefined. - -Missing character: There is no 3 in font nullfont! -! Undefined control sequence. - \footnotesize - 4 -l.9 \put(52,5){\makebox(0,0)[b]{\footnotesize 4}} - -The control sequence at the end of the top line -of your error message was never \def'ed. If you have -misspelled it (e.g., `\hobx'), type `I' and the correct -spelling (e.g., `I\hbox'). Otherwise just continue, -and I'll forget about whatever was undefined. - -Missing character: There is no 4 in font nullfont! -! Undefined control sequence. - \footnotesize - 5 -l.10 \put(65,5){\makebox(0,0)[b]{\footnotesize 5}} - -The control sequence at the end of the top line -of your error message was never \def'ed. If you have -misspelled it (e.g., `\hobx'), type `I' and the correct -spelling (e.g., `I\hbox'). Otherwise just continue, -and I'll forget about whatever was undefined. - -Missing character: There is no 5 in font nullfont! -Missing character: There is no a in font nullfont! -Missing character: There is no b in font nullfont! -Missing character: There is no c in font nullfont! -Missing character: There is no d in font nullfont! -Missing character: There is no f in font nullfont! -Missing character: There is no g in font nullfont! -Missing character: There is no i in font nullfont! -Missing character: There is no j in font nullfont! -Missing character: There is no k in font nullfont! -Missing character: There is no m in font nullfont! -! Undefined control sequence. - \footnotesize - $Q_1$ -l.22 ...8,80){\shortstack[l]{\footnotesize $Q_1$}} - -The control sequence at the end of the top line -of your error message was never \def'ed. If you have -misspelled it (e.g., `\hobx'), type `I' and the correct -spelling (e.g., `I\hbox'). Otherwise just continue, -and I'll forget about whatever was undefined. - -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line 22. -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line 22. -! Undefined control sequence. - \footnotesize - $Q_2$ -l.23 ...74.5){\shortstack[l]{\footnotesize $Q_2$}} - -The control sequence at the end of the top line -of your error message was never \def'ed. If you have -misspelled it (e.g., `\hobx'), type `I' and the correct -spelling (e.g., `I\hbox'). Otherwise just continue, -and I'll forget about whatever was undefined. - -! Undefined control sequence. - \footnotesize - $Q_3$ -l.24 ...6,22){\shortstack[l]{\footnotesize $Q_3$}} - -The control sequence at the end of the top line -of your error message was never \def'ed. If you have -misspelled it (e.g., `\hobx'), type `I' and the correct -spelling (e.g., `I\hbox'). Otherwise just continue, -and I'll forget about whatever was undefined. - -! Undefined control sequence. - \footnotesize - 0 Volts -l.25 ...40){\shortstack[l]{\footnotesize 0 Volts}} - -The control sequence at the end of the top line -of your error message was never \def'ed. If you have -misspelled it (e.g., `\hobx'), type `I' and the correct -spelling (e.g., `I\hbox'). Otherwise just continue, -and I'll forget about whatever was undefined. - -Missing character: There is no 0 in font nullfont! -Missing character: There is no V in font nullfont! -Missing character: There is no o in font nullfont! -Missing character: There is no l in font nullfont! -Missing character: There is no t in font nullfont! -Missing character: There is no s in font nullfont! -! Undefined control sequence. - \footnotesize - $-5$ -l.26 ...64,68){\shortstack[l]{\footnotesize $-5$}} - -The control sequence at the end of the top line -of your error message was never \def'ed. If you have -misspelled it (e.g., `\hobx'), type `I' and the correct -spelling (e.g., `I\hbox'). Otherwise just continue, -and I'll forget about whatever was undefined. - -! Undefined control sequence. - \footnotesize - $-5$ -l.27 ...15,70){\shortstack[l]{\footnotesize $-5$}} - -The control sequence at the end of the top line -of your error message was never \def'ed. If you have -misspelled it (e.g., `\hobx'), type `I' and the correct -spelling (e.g., `I\hbox'). Otherwise just continue, -and I'll forget about whatever was undefined. - -! Undefined control sequence. - \footnotesize - $+5$ -l.28 ...48,33){\shortstack[l]{\footnotesize $+5$}} - -The control sequence at the end of the top line -of your error message was never \def'ed. If you have -misspelled it (e.g., `\hobx'), type `I' and the correct -spelling (e.g., `I\hbox'). Otherwise just continue, -and I'll forget about whatever was undefined. - -) -! Emergency stop. -<*> prob05av3.tex - -*** (job aborted, no legal \end found) - - -Here is how much of TeX's memory you used: - 6 strings out of 10953 - 67 string characters out of 72769 - 45064 words of memory out of 262141 - 2938 multiletter control sequences out of 9500 - 3640 words of font info for 14 fonts, out of 100000 for 255 - 14 hyphenation exceptions out of 607 - 21i,8n,16p,90b,117s stack positions out of 300i,40n,60p,3000b,4000s -No pages of output. diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob05av3.tex b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob05av3.tex deleted file mode 100755 index 8824b1ecb..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob05av3.tex +++ /dev/null @@ -1,36 +0,0 @@ -\epsfxsize=3.4 in -\epsffile{/teacher/capalibrary/Graphics/Gtype55/prob05.ps} -\vskip -7.6cm -\setlength{\unitlength}{1mm} -\noindent \begin{picture}(87,86)(0,0) -\put(0,5){\makebox(0,0)[bl]{cm}} -\put(13,5){\makebox(0,0)[b]{\footnotesize 1}} -\put(26,5){\makebox(0,0)[b]{\footnotesize 2}} -\put(39,5){\makebox(0,0)[b]{\footnotesize 3}} -\put(52,5){\makebox(0,0)[b]{\footnotesize 4}} -\put(65,5){\makebox(0,0)[b]{\footnotesize 5}} -\setlength{\unitlength}{1mm} -\put(2.5,90){\shortstack[l]{a}} -\put(35,88){\shortstack[l]{b}} -\put(66,81){\shortstack[l]{c}} -\put(30,65){\shortstack[l]{d}} -\put(31,56){\shortstack[l]{f}} -\put(64,55){\shortstack[l]{g}} -\put(56,41){\shortstack[l]{i}} -\put(75,40){\shortstack[l]{j}} -\put(44,52){\shortstack[l]{k}} -\put(73,21){\shortstack[l]{m}} -\put(18,80){\shortstack[l]{\footnotesize $Q_1$}} -\put(64,74.5){\shortstack[l]{\footnotesize $Q_2$}} -\put(56,22){\shortstack[l]{\footnotesize $Q_3$}} -\put(17,40){\shortstack[l]{\footnotesize 0 Volts}} -\put(64,68){\shortstack[l]{\footnotesize $-5$}} -\put(15,70){\shortstack[l]{\footnotesize $-5$}} -\put(48,33){\shortstack[l]{\footnotesize $+5$}} -\setlength{\unitlength}{1.3mm} -\multiput(1,0)(1,0){49}{\line(0,1){1.5}} -\multiput(5,0)(10,0){5}{\line(0,1){2.5}} -\thicklines -\put(0,0){\line(1,0){50}} -\multiput(0,0)(10,0){6}{\line(0,1){3.5}} -\end{picture} diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob05av3.texty b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob05av3.texty deleted file mode 100755 index f5e071a8c..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob05av3.texty +++ /dev/null @@ -1,35 +0,0 @@ -\epsfxsize=3.4 in -\epsffile{/teacher/capalibrary/Graphics/Gtype55/prob05.ps} \vskip -7.6 cm -\setlength{\unitlength}{1mm} -\noindent \begin{picture}(87,86)(0,0) -\put(0,5){\makebox(0,0)[bl]{cm}} -\put(13,5){\makebox(0,0)[b]{\footnotesize 1}} -\put(26,5){\makebox(0,0)[b]{\footnotesize 2}} -\put(39,5){\makebox(0,0)[b]{\footnotesize 3}} -\put(52,5){\makebox(0,0)[b]{\footnotesize 4}} -\put(65,5){\makebox(0,0)[b]{\footnotesize 5}} -\setlength{\unitlength}{1mm} -\put(2.5,90){\shortstack[l]{a}} -\put(35,88){\shortstack[l]{b}} -\put(66,81){\shortstack[l]{c}} -\put(30,65){\shortstack[l]{d}} -\put(31,56){\shortstack[l]{f}} -\put(64,55){\shortstack[l]{g}} -\put(56,41){\shortstack[l]{i}} -\put(75,40){\shortstack[l]{j}} -\put(44,52){\shortstack[l]{k}} -\put(73,21){\shortstack[l]{m}} -\put(18,80){\shortstack[l]{\footnotesize $Q_1$}} -\put(64,74.5){\shortstack[l]{\footnotesize $Q_2$}} -\put(56,22){\shortstack[l]{\footnotesize $Q_3$}} -\put(17,40){\shortstack[l]{\footnotesize 0 Volts}} -\put(64,68){\shortstack[l]{\footnotesize $-5$}} -\put(15,70){\shortstack[l]{\footnotesize $-5$}} -\put(48,33){\shortstack[l]{\footnotesize $+5$}} -\setlength{\unitlength}{1.3mm} -\multiput(1,0)(1,0){49}{\line(0,1){1.5}} -\multiput(5,0)(10,0){5}{\line(0,1){2.5}} -\thicklines -\put(0,0){\line(1,0){50}} -\multiput(0,0)(10,0){6}{\line(0,1){3.5}} -\end{picture} diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob05av4.tex b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob05av4.tex deleted file mode 100755 index 5069cbba8..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob05av4.tex +++ /dev/null @@ -1,35 +0,0 @@ -\epsfxsize=3.4 in -\epsffile{/teacher/capalibrary/Graphics/Gtype55/prob05.ps} \vskip -7.6 cm -\setlength{\unitlength}{1mm} -\noindent \begin{picture}(87,86)(0,0) -\put(0,5){\makebox(0,0)[bl]{cm}} -\put(14,5){\makebox(0,0)[b]{\footnotesize 1}} -\put(28,5){\makebox(0,0)[b]{\footnotesize 2}} -\put(42,5){\makebox(0,0)[b]{\footnotesize 3}} -\put(56,5){\makebox(0,0)[b]{\footnotesize 4}} -\put(70,5){\makebox(0,0)[b]{\footnotesize 5}} -\setlength{\unitlength}{1mm} -\put(2.5,90){\shortstack[l]{a}} -\put(35,88){\shortstack[l]{b}} -\put(66,81){\shortstack[l]{c}} -\put(30,65){\shortstack[l]{d}} -\put(31,56){\shortstack[l]{f}} -\put(64,55){\shortstack[l]{g}} -\put(56,41){\shortstack[l]{i}} -\put(75,40){\shortstack[l]{j}} -\put(44,52){\shortstack[l]{k}} -\put(73,21){\shortstack[l]{m}} -\put(18,80){\shortstack[l]{\footnotesize $Q_1$}} -\put(64,74.5){\shortstack[l]{\footnotesize $Q_2$}} -\put(56,22){\shortstack[l]{\footnotesize $Q_3$}} -\put(17,40){\shortstack[l]{\footnotesize 0 Volts}} -\put(64,68){\shortstack[l]{\footnotesize $-5$}} -\put(15,70){\shortstack[l]{\footnotesize $-5$}} -\put(48,33){\shortstack[l]{\footnotesize $+5$}} -\setlength{\unitlength}{1.4mm} -\multiput(1,0)(1,0){49}{\line(0,1){1.5}} -\multiput(5,0)(10,0){5}{\line(0,1){2.5}} -\thicklines -\put(0,0){\line(1,0){50}} -\multiput(0,0)(10,0){6}{\line(0,1){3.5}} -\end{picture} diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob07v1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob07v1.eps deleted file mode 100755 index 2c10f73a4..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob07v1.eps +++ /dev/null @@ -1,2189 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 72.0 242.0 540.0 560.0 -%%Creator: Mathematica -%%CreationDate: Thu Jan 27 13:39:54 CST 1994 -%%EndComments - -/Mathdict 100 dict def -Mathdict begin -/Mlmarg 1.0 72 mul def -/Mrmarg 1.0 72 mul def -/Mbmarg 1.0 72 mul def -/Mtmarg 1.0 72 mul def -/Mwidth 8.5 72 mul def -/Mheight 11 72 mul def -/Mtransform { } bind def -/Mnodistort true def -/Mfixwid false def -/Mfixdash false def -/Mrot 0 def -/Mpstart { -MathPictureStart -} bind def -/Mpend { -MathPictureEnd -} bind def -/Mscale { -0 1 0 1 -5 -1 roll -MathScale -} bind def -/ISOLatin1Encoding dup where -{ pop pop } -{ -[ -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright -/parenleft /parenright /asterisk /plus /comma /minus /period /slash -/zero /one /two /three /four /five /six /seven -/eight /nine /colon /semicolon /less /equal /greater /question -/at /A /B /C /D /E /F /G -/H /I /J /K /L /M /N /O -/P /Q /R /S /T /U /V /W -/X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore -/quoteleft /a /b /c /d /e /f /g -/h /i /j /k /l /m /n /o -/p /q /r /s /t /u /v /w -/x /y /z /braceleft /bar /braceright /asciitilde /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent -/dieresis /.notdef /ring /cedilla /.notdef /hungarumlaut /ogonek /caron -/space /exclamdown /cent /sterling /currency /yen /brokenbar /section -/dieresis /copyright /ordfeminine /guillemotleft -/logicalnot /hyphen /registered /macron -/degree /plusminus /twosuperior /threesuperior -/acute /mu /paragraph /periodcentered -/cedilla /onesuperior /ordmasculine /guillemotright -/onequarter /onehalf /threequarters /questiondown -/Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla -/Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis -/Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply -/Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls -/agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla -/egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis -/eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide -/oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis -] def -} ifelse -/MFontDict 50 dict def -/MStrCat -{ -exch -dup length -2 index length add -string -dup 3 1 roll -copy -length -exch dup -4 2 roll exch -putinterval -} def -/MCreateEncoding -{ -1 index -255 string cvs -(-) MStrCat -1 index MStrCat -cvn exch -(Encoding) MStrCat -cvn dup where -{ -exch get -} -{ -pop -StandardEncoding -} ifelse -3 1 roll -dup MFontDict exch known not -{ -1 index findfont -dup length dict -begin -{1 index /FID ne -{def} -{pop pop} -ifelse} forall -/Encoding 3 index -def -currentdict -end -1 index exch definefont pop -MFontDict 1 index -null put -} -if -exch pop -exch pop -} def -/ISOLatin1 { (ISOLatin1) MCreateEncoding } def -/ISO8859 { (ISOLatin1) MCreateEncoding } def -/Mcopyfont { -dup -maxlength -dict -exch -{ -1 index -/FID -eq -{ -pop pop -} -{ -2 index -3 1 roll -put -} -ifelse -} -forall -} def -/Plain /Courier findfont Mcopyfont definefont pop -/Bold /Courier-Bold findfont Mcopyfont definefont pop -/Italic /Courier-Oblique findfont Mcopyfont definefont pop -/MathPictureStart { -gsave -Mtransform -Mlmarg -Mbmarg -translate -/Mtmatrix -matrix currentmatrix -def -/Mgmatrix -matrix currentmatrix -def -} bind def -/MathPictureEnd { -grestore -} bind def -/MathSubStart { -Momatrix -Mgmatrix Mtmatrix -Mlmarg Mrmarg -Mbmarg Mtmarg -Mwidth Mheight -11 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -Mgmatrix setmatrix -13 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -2 copy translate -/Mtmatrix matrix currentmatrix def -/Mlmarg 0 def -/Mrmarg 0 def -/Mbmarg 0 def -/Mtmarg 0 def -3 -1 roll -exch sub -/Mheight exch def -sub -/Mwidth exch def -} bind def -/MathSubEnd { -/Mheight exch def -/Mwidth exch def -/Mtmarg exch def -/Mbmarg exch def -/Mrmarg exch def -/Mlmarg exch def -/Mtmatrix exch def -dup setmatrix -/Mgmatrix exch def -/Momatrix exch def -} bind def -/Mdot { -moveto -0 0 rlineto -stroke -} bind def -/Mtetra { -moveto -lineto -lineto -lineto -fill -} bind def -/Metetra { -moveto -lineto -lineto -lineto -closepath -gsave -fill -grestore -0 setgray -stroke -} bind def -/Mistroke { -flattenpath -0 0 0 -{ -4 2 roll -pop pop -} -{ -4 -1 roll -2 index -sub dup mul -4 -1 roll -2 index -sub dup mul -add sqrt -4 -1 roll -add -3 1 roll -} -{ -stop -} -{ -stop -} -pathforall -pop pop -currentpoint -stroke -moveto -currentdash -3 -1 roll -add -setdash -} bind def -/Mfstroke { -stroke -currentdash -pop 0 -setdash -} bind def -/Mrotsboxa { -gsave -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -grestore -Msboxa -3 -1 roll -/Mtmatrix -exch def -/Mrot -0 def -} bind def -/Msboxa { -newpath -5 -1 roll -Mvboxa -pop -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Msboxa1 -5 -3 roll -Msboxa1 -Mboxrot -[ -7 -2 roll -2 copy -[ -3 1 roll -10 -1 roll -9 -1 roll -] -6 1 roll -5 -2 roll -] -} bind def -/Msboxa1 { -sub -2 div -dup -2 index -1 add -mul -3 -1 roll --1 add -3 -1 roll -mul -} bind def -/Mvboxa { -Mfixwid -{ -Mvboxa1 -} -{ -dup -Mwidthcal -0 exch -{ -add -} -forall -exch -Mvboxa1 -4 index -7 -1 roll -add -4 -1 roll -pop -3 1 roll -} -ifelse -} bind def -/Mvboxa1 { -gsave -newpath -[ true -3 -1 roll -{ -Mbbox -5 -1 roll -{ -0 -5 1 roll -} -{ -7 -1 roll -exch sub -(m) stringwidth pop -.3 mul -sub -7 1 roll -6 -1 roll -4 -1 roll -Mmin -3 -1 roll -5 index -add -5 -1 roll -4 -1 roll -Mmax -4 -1 roll -} -ifelse -false -} -forall -{ stop } if -counttomark -1 add -4 roll -] -grestore -} bind def -/Mbbox { -1 dict begin -0 0 moveto -/temp (T) def -{ gsave -currentpoint newpath moveto -temp 0 3 -1 roll put temp -false charpath flattenpath currentpoint -pathbbox -grestore moveto lineto moveto} forall -pathbbox -newpath -end -} bind def -/Mmin { -2 copy -gt -{ exch } if -pop -} bind def -/Mmax { -2 copy -lt -{ exch } if -pop -} bind def -/Mrotshowa { -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -Mgmatrix setmatrix -Mshowa -/Mtmatrix -exch def -/Mrot 0 def -} bind def -/Mshowa { -4 -2 roll -moveto -2 index -Mtmatrix setmatrix -Mvboxa -7 1 roll -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Mshowa1 -4 1 roll -Mshowa1 -rmoveto -currentpoint -Mfixwid -{ -Mshowax -} -{ -Mshoway -} -ifelse -pop pop pop pop -Mgmatrix setmatrix -} bind def -/Mshowax { -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -Mfixdash -{ -Mfixdashp -} -if -show -} for -} bind def -/Mfixdashp { -dup -length -1 -gt -1 index -true exch -{ -45 -eq -and -} forall -and -{ -gsave -(--) -stringwidth pop -(-) -stringwidth pop -sub -2 div -0 rmoveto -dup -length -1 sub -{ -(-) -show -} -repeat -grestore -} -if -} bind def -/Mshoway { -3 index -Mwidthcal -5 1 roll -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -[ -6 index -aload -length -2 add --1 roll -{ -pop -Strform -stringwidth -pop -neg -exch -add -0 rmoveto -} -exch -kshow -cleartomark -} for -pop -} bind def -/Mwidthcal { -[ -exch -{ -Mwidthcal1 -} -forall -] -[ -exch -dup -Maxlen --1 add -0 1 -3 -1 roll -{ -[ -exch -2 index -{ -1 index -Mget -exch -} -forall -pop -Maxget -exch -} -for -pop -] -Mreva -} bind def -/Mreva { -[ -exch -aload -length --1 1 -{1 roll} -for -] -} bind def -/Mget { -1 index -length --1 add -1 index -ge -{ -get -} -{ -pop pop -0 -} -ifelse -} bind def -/Maxlen { -[ -exch -{ -length -} -forall -Maxget -} bind def -/Maxget { -counttomark --1 add -1 1 -3 -1 roll -{ -pop -Mmax -} -for -exch -pop -} bind def -/Mwidthcal1 { -[ -exch -{ -Strform -stringwidth -pop -} -forall -] -} bind def -/Strform { -/tem (x) def -tem 0 -3 -1 roll -put -tem -} bind def -/Mshowa1 { -2 copy -add -4 1 roll -sub -mul -sub --2 div -} bind def -/MathScale { -Mwidth -Mlmarg Mrmarg add -sub -Mheight -Mbmarg Mtmarg add -sub -0 0 moveto -1 index 0 -lineto -2 copy -lineto -0 1 index -lineto -clip newpath -Mlp -translate -dup -/Mathabs -exch def -scale -/yscale exch def -/ybias exch def -/xscale exch def -/xbias exch def -/Momatrix -xscale yscale matrix scale -xbias ybias matrix translate -matrix concatmatrix def -/Mgmatrix -matrix currentmatrix -def -} bind def -/Mlp { -3 copy -Mlpfirst -{ -Mnodistort -{ -Mmin -dup -} if -4 index -2 index -2 index -Mlprun -11 index -11 -1 roll -10 -4 roll -Mlp1 -8 index -9 -5 roll -Mlp1 -4 -1 roll -and -{ exit } if -3 -1 roll -pop pop -} loop -exch -3 1 roll -7 -3 roll -pop pop pop -} bind def -/Mlpfirst { -3 -1 roll -dup length -2 copy --2 add -get -aload -pop pop pop -4 -2 roll --1 add -get -aload -pop pop pop -6 -1 roll -3 -1 roll -5 -1 roll -sub -div -4 1 roll -exch sub -div -} bind def -/Mlprun { -2 copy -4 index -0 get -dup -4 1 roll -Mlprun1 -3 copy -8 -2 roll -9 -1 roll -{ -3 copy -Mlprun1 -3 copy -11 -3 roll -/gt Mlpminmax -8 3 roll -11 -3 roll -/lt Mlpminmax -8 3 roll -} forall -pop pop pop pop -3 1 roll -pop pop -aload pop -5 -1 roll -aload pop -exch -6 -1 roll -Mlprun2 -8 2 roll -4 -1 roll -Mlprun2 -6 2 roll -3 -1 roll -Mlprun2 -4 2 roll -exch -Mlprun2 -6 2 roll -} bind def -/Mlprun1 { -aload pop -exch -6 -1 roll -5 -1 roll -mul add -4 -2 roll -mul -3 -1 roll -add -} bind def -/Mlprun2 { -2 copy -add 2 div -3 1 roll -exch sub -} bind def -/Mlpminmax { -cvx -2 index -6 index -2 index -exec -{ -7 -3 roll -4 -1 roll -} if -1 index -5 index -3 -1 roll -exec -{ -4 1 roll -pop -5 -1 roll -aload -pop pop -4 -1 roll -aload pop -[ -8 -2 roll -pop -5 -2 roll -pop -6 -2 roll -pop -5 -1 roll -] -4 1 roll -pop -} -{ -pop pop pop -} ifelse -} bind def -/Mlp1 { -5 index -3 index sub -5 index -2 index mul -1 index -le -1 index -0 le -or -dup -not -{ -1 index -3 index div -.99999 mul -8 -1 roll -pop -7 1 roll -} -if -8 -1 roll -2 div -7 -2 roll -pop sub -5 index -6 -3 roll -pop pop -mul sub -exch -} bind def -/intop 0 def -/inrht 0 def -/inflag 0 def -/outflag 0 def -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -/Minner { -outflag -1 -eq -{ -/outflag 0 def -/intop 0 def -/inrht 0 def -} if -5 index -gsave -Mtmatrix setmatrix -Mvboxa pop -grestore -3 -1 roll -pop -dup -intop -gt -{ -/intop -exch def -} -{ pop } -ifelse -dup -inrht -gt -{ -/inrht -exch def -} -{ pop } -ifelse -pop -/inflag -1 def -} bind def -/Mouter { -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -inflag -1 eq -{ -dup -0 lt -{ -dup -intop -mul -neg -/yadtop -exch def -} if -dup -0 gt -{ -dup -intop -mul -/yadbot -exch def -} -if -pop -dup -0 lt -{ -dup -inrht -mul -neg -/xadrht -exch def -} if -dup -0 gt -{ -dup -inrht -mul -/xadlft -exch def -} if -pop -/outflag 1 def -} -{ pop pop} -ifelse -/inflag 0 def -/inrht 0 def -/intop 0 def -} bind def -/Mboxout { -outflag -1 -eq -{ -4 -1 -roll -xadlft -leadjust -add -sub -4 1 roll -3 -1 -roll -yadbot -leadjust -add -sub -3 1 -roll -exch -xadrht -leadjust -add -add -exch -yadtop -leadjust -add -add -/outflag 0 def -/xadlft 0 def -/yadbot 0 def -/xadrht 0 def -/yadtop 0 def -} if -} bind def -/leadjust { -(m) stringwidth pop -.5 mul -} bind def -/Mrotcheck { -dup -90 -eq -{ -yadbot -/yadbot -xadrht -def -/xadrht -yadtop -def -/yadtop -xadlft -def -/xadlft -exch -def -} -if -dup -cos -1 index -sin -Checkaux -dup -cos -1 index -sin neg -exch -Checkaux -3 1 roll -pop pop -} bind def -/Checkaux { -4 index -exch -4 index -mul -3 1 roll -mul add -4 1 roll -} bind def -/Mboxrot { -Mrot -90 eq -{ -brotaux -4 2 -roll -} -if -Mrot -180 eq -{ -4 2 -roll -brotaux -4 2 -roll -brotaux -} -if -Mrot -270 eq -{ -4 2 -roll -brotaux -} -if -} bind def -/brotaux { -neg -exch -neg -} bind def -/Mabswid { -Mathabs -div -setlinewidth -} bind def -/Mabsdash { -exch -Mathabs -[ -3 1 roll -exch -{ -exch -dup -3 -1 roll -exch -div -exch -} -forall -pop ] -exch -setdash -} bind def -/MBeginOrig { Momatrix concat} bind def -/MEndOrig { Mgmatrix setmatrix} bind def -/colorimage where -{ pop } -{ -/colorimage { -3 1 roll -pop pop -5 -1 roll -mul -4 1 roll -{ -currentfile -1 index -readhexstring -pop } -image -} bind def -} ifelse -/sampledsound where -{ pop} -{ /sampledsound { -exch -pop -exch -5 1 roll -mul -4 idiv -mul -2 idiv -exch pop -exch -/Mtempproc exch def -{ Mtempproc pop} -repeat -} bind def -} ifelse -/setcmykcolor where -{ pop} -{ /setcmykcolor { -4 1 -roll -[ -4 1 -roll -] -{ -1 index -sub -1 -sub neg -dup -0 -lt -{ -pop -0 -} -if -dup -1 -gt -{ -pop -1 -} -if -exch -} forall -pop -setrgbcolor -} bind def -} ifelse - -%%AspectRatio: 0.61803 -MathPictureStart -/Courier-Oblique findfont 17 scalefont setfont -% Scaling calculations -0.584034 0.112045 0.140567 0.017093 [ -[(-4)] 0.13585 0 0 2 0 Minner Mrotsboxa -[(-2)] 0.35994 0 0 2 0 Minner Mrotsboxa -[(0)] 0.58403 0 0 2 0 Minner Mrotsboxa -[(2)] 0.80812 0 0 2 0 Minner Mrotsboxa -[(x, \(m\))] 0.5 0 0 2 0 0 -1 Mouter Mrotsboxa -[(-5)] -0.0125 0.0551 1 0 0 Minner Mrotsboxa -[(0)] -0.0125 0.14057 1 0 0 Minner Mrotsboxa -[(5)] -0.0125 0.22603 1 0 0 Minner Mrotsboxa -[(10)] -0.0125 0.31149 1 0 0 Minner Mrotsboxa -[(15)] -0.0125 0.39696 1 0 0 Minner Mrotsboxa -[(20)] -0.0125 0.48242 1 0 0 Minner Mrotsboxa -[(25)] -0.0125 0.56788 1 0 0 Minner Mrotsboxa -[(Voltage, \(kV\))] -0.0125 0.30902 1 0 90 -1 0 Mouter Mrotsboxa -[ -0.001 -0.001 0 0 ] -[ 1.001 0.61903 0 0 ] -] MathScale -% Start of Graphics -1 setlinecap -1 setlinejoin -newpath -%%Object: Graphics -[ ] 0 setdash -0 setgray -gsave -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.13585 0 moveto -0.13585 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.35994 0 moveto -0.35994 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.58403 0 moveto -0.58403 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.80812 0 moveto -0.80812 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.0551 moveto -1 0.0551 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.14057 moveto -1 0.14057 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.22603 moveto -1 0.22603 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.31149 moveto -1 0.31149 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.39696 moveto -1 0.39696 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.48242 moveto -1 0.48242 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.56788 moveto -1 0.56788 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.13585 0 moveto -0.13585 0.00625 lineto -stroke -grestore -[(-4)] 0.13585 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.35994 0 moveto -0.35994 0.00625 lineto -stroke -grestore -[(-2)] 0.35994 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.58403 0 moveto -0.58403 0.00625 lineto -stroke -grestore -[(0)] 0.58403 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.80812 0 moveto -0.80812 0.00625 lineto -stroke -grestore -[(2)] 0.80812 0 0 2 0 Minner Mrotshowa -gsave -0.001 setlinewidth -0.18067 0 moveto -0.18067 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.22549 0 moveto -0.22549 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.27031 0 moveto -0.27031 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.31513 0 moveto -0.31513 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.40476 0 moveto -0.40476 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.44958 0 moveto -0.44958 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.4944 0 moveto -0.4944 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.53922 0 moveto -0.53922 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.62885 0 moveto -0.62885 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.67367 0 moveto -0.67367 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.71849 0 moveto -0.71849 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.76331 0 moveto -0.76331 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.09104 0 moveto -0.09104 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.04622 0 moveto -0.04622 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.0014 0 moveto -0.0014 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.85294 0 moveto -0.85294 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.89776 0 moveto -0.89776 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.94258 0 moveto -0.94258 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.98739 0 moveto -0.98739 0.00375 lineto -stroke -grestore -[(x, \(m\))] 0.5 0 0 2 0 0 -1 Mouter Mrotshowa -gsave -0.002 setlinewidth -0 0 moveto -1 0 lineto -stroke -grestore -gsave -0.002 setlinewidth -0 0.0551 moveto -0.00625 0.0551 lineto -stroke -grestore -[(-5)] -0.0125 0.0551 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.14057 moveto -0.00625 0.14057 lineto -stroke -grestore -[(0)] -0.0125 0.14057 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.22603 moveto -0.00625 0.22603 lineto -stroke -grestore -[(5)] -0.0125 0.22603 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.31149 moveto -0.00625 0.31149 lineto -stroke -grestore -[(10)] -0.0125 0.31149 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.39696 moveto -0.00625 0.39696 lineto -stroke -grestore -[(15)] -0.0125 0.39696 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.48242 moveto -0.00625 0.48242 lineto -stroke -grestore -[(20)] -0.0125 0.48242 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.56788 moveto -0.00625 0.56788 lineto -stroke -grestore -[(25)] -0.0125 0.56788 1 0 0 Minner Mrotshowa -gsave -0.001 setlinewidth -0 0.0722 moveto -0.00375 0.0722 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.08929 moveto -0.00375 0.08929 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.10638 moveto -0.00375 0.10638 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.12347 moveto -0.00375 0.12347 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.15766 moveto -0.00375 0.15766 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.17475 moveto -0.00375 0.17475 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.19184 moveto -0.00375 0.19184 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.20894 moveto -0.00375 0.20894 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.24312 moveto -0.00375 0.24312 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.26022 moveto -0.00375 0.26022 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.27731 moveto -0.00375 0.27731 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.2944 moveto -0.00375 0.2944 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.32859 moveto -0.00375 0.32859 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.34568 moveto -0.00375 0.34568 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.36277 moveto -0.00375 0.36277 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.37986 moveto -0.00375 0.37986 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.41405 moveto -0.00375 0.41405 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.43114 moveto -0.00375 0.43114 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.44823 moveto -0.00375 0.44823 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.46533 moveto -0.00375 0.46533 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.49951 moveto -0.00375 0.49951 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.5166 moveto -0.00375 0.5166 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.5337 moveto -0.00375 0.5337 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.55079 moveto -0.00375 0.55079 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.03801 moveto -0.00375 0.03801 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.02092 moveto -0.00375 0.02092 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.00383 moveto -0.00375 0.00383 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.58497 moveto -0.00375 0.58497 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.60207 moveto -0.00375 0.60207 lineto -stroke -grestore -[(Voltage, \(kV\))] -0.0125 0.30902 1 0 90 -1 0 Mouter Mrotshowa -gsave -0.002 setlinewidth -0 0 moveto -0 0.61803 lineto -stroke -grestore -grestore -gsave -gsave -0.002 setlinewidth -0.13585 0.61178 moveto -0.13585 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.35994 0.61178 moveto -0.35994 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.58403 0.61178 moveto -0.58403 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.80812 0.61178 moveto -0.80812 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.18067 0.61428 moveto -0.18067 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.22549 0.61428 moveto -0.22549 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.27031 0.61428 moveto -0.27031 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.31513 0.61428 moveto -0.31513 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.40476 0.61428 moveto -0.40476 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.44958 0.61428 moveto -0.44958 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.4944 0.61428 moveto -0.4944 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.53922 0.61428 moveto -0.53922 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.62885 0.61428 moveto -0.62885 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.67367 0.61428 moveto -0.67367 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.71849 0.61428 moveto -0.71849 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.76331 0.61428 moveto -0.76331 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.09104 0.61428 moveto -0.09104 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.04622 0.61428 moveto -0.04622 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.0014 0.61428 moveto -0.0014 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.85294 0.61428 moveto -0.85294 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.89776 0.61428 moveto -0.89776 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.94258 0.61428 moveto -0.94258 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.98739 0.61428 moveto -0.98739 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0 0.61803 moveto -1 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.0551 moveto -1 0.0551 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.14057 moveto -1 0.14057 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.22603 moveto -1 0.22603 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.31149 moveto -1 0.31149 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.39696 moveto -1 0.39696 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.48242 moveto -1 0.48242 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.56788 moveto -1 0.56788 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.0722 moveto -1 0.0722 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.08929 moveto -1 0.08929 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.10638 moveto -1 0.10638 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.12347 moveto -1 0.12347 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.15766 moveto -1 0.15766 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.17475 moveto -1 0.17475 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.19184 moveto -1 0.19184 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.20894 moveto -1 0.20894 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.24312 moveto -1 0.24312 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.26022 moveto -1 0.26022 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.27731 moveto -1 0.27731 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.2944 moveto -1 0.2944 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.32859 moveto -1 0.32859 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.34568 moveto -1 0.34568 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.36277 moveto -1 0.36277 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.37986 moveto -1 0.37986 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.41405 moveto -1 0.41405 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.43114 moveto -1 0.43114 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.44823 moveto -1 0.44823 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.46533 moveto -1 0.46533 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.49951 moveto -1 0.49951 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.5166 moveto -1 0.5166 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.5337 moveto -1 0.5337 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.55079 moveto -1 0.55079 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.03801 moveto -1 0.03801 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.02092 moveto -1 0.02092 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.00383 moveto -1 0.00383 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.58497 moveto -1 0.58497 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.60207 moveto -1 0.60207 lineto -stroke -grestore -gsave -0.002 setlinewidth -1 0 moveto -1 0.61803 lineto -stroke -grestore -grestore -gsave -gsave -0.002 setlinewidth -0 0.14057 moveto -1 0.14057 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.58403 0 moveto -0.58403 0.61803 lineto -stroke -grestore -grestore -0 0 moveto -1 0 lineto -1 0.61803 lineto -0 0.61803 lineto -closepath -clip -newpath -gsave -gsave -0.004 setlinewidth -stroke -stroke -0.08867 0.61803 moveto -0.10317 0.55061 lineto -stroke -0.10317 0.55061 moveto -0.14286 0.39828 lineto -0.18254 0.27551 lineto -0.22222 0.17976 lineto -0.2619 0.10847 lineto -0.28175 0.0812 lineto -0.30159 0.05909 lineto -0.32143 0.04182 lineto -0.33135 0.0349 lineto -0.34127 0.02907 lineto -0.35119 0.02429 lineto -0.36111 0.02053 lineto -0.37103 0.01773 lineto -0.37599 0.01668 lineto -0.38095 0.01586 lineto -0.38591 0.01527 lineto -0.38839 0.01505 lineto -0.38963 0.01496 lineto -0.39087 0.01489 lineto -0.39211 0.01483 lineto -0.39335 0.01478 lineto -0.39459 0.01475 lineto -0.39583 0.01472 lineto -0.39707 0.01472 lineto -0.39831 0.01472 lineto -0.39955 0.01474 lineto -0.40079 0.01477 lineto -0.40203 0.01481 lineto -0.40327 0.01486 lineto -0.40575 0.01501 lineto -0.40823 0.01521 lineto -0.41071 0.01545 lineto -0.41567 0.01609 lineto -0.42063 0.01691 lineto -0.43056 0.0191 lineto -0.44048 0.02199 lineto -0.46032 0.02967 lineto -0.48016 0.03964 lineto -0.5 0.05158 lineto -0.53968 0.08009 lineto -0.57937 0.11266 lineto -0.61905 0.14672 lineto -0.65873 0.17974 lineto -0.69841 0.20915 lineto -0.71825 0.22171 lineto -0.7381 0.23242 lineto -0.75794 0.24094 lineto -0.76786 0.24429 lineto -0.77778 0.24697 lineto -0.78274 0.24805 lineto -Mistroke -0.7877 0.24895 lineto -0.79266 0.24967 lineto -0.79514 0.24995 lineto -0.79762 0.25019 lineto -0.8001 0.25038 lineto -0.80134 0.25045 lineto -0.80258 0.25052 lineto -0.80382 0.25057 lineto -0.80506 0.2506 lineto -0.8063 0.25063 lineto -0.80754 0.25064 lineto -0.80878 0.25064 lineto -0.81002 0.25063 lineto -0.81126 0.2506 lineto -0.8125 0.25056 lineto -0.81498 0.25044 lineto -0.81622 0.25036 lineto -0.81746 0.25027 lineto -0.82242 0.24977 lineto -0.8249 0.24943 lineto -0.82738 0.24904 lineto -0.8373 0.2469 lineto -0.84226 0.24549 lineto -0.84722 0.24383 lineto -0.85714 0.23977 lineto -0.87698 0.22854 lineto -0.89683 0.2129 lineto -0.91667 0.19253 lineto -0.93651 0.16712 lineto -0.97619 0.09989 lineto -Mfstroke -grestore -grestore -% End of Graphics -MathPictureEnd -end -showpage diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob07v1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob07v1.gif deleted file mode 100755 index df4e19150..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob07v1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob07v2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob07v2.eps deleted file mode 100755 index 8e8d47b82..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob07v2.eps +++ /dev/null @@ -1,2076 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 72.0 242.0 540.0 560.0 -%%Creator: Mathematica -%%CreationDate: Thu Jan 27 14:05:07 CST 1994 -%%EndComments - -/Mathdict 100 dict def -Mathdict begin -/Mlmarg 1.0 72 mul def -/Mrmarg 1.0 72 mul def -/Mbmarg 1.0 72 mul def -/Mtmarg 1.0 72 mul def -/Mwidth 8.5 72 mul def -/Mheight 11 72 mul def -/Mtransform { } bind def -/Mnodistort true def -/Mfixwid false def -/Mfixdash false def -/Mrot 0 def -/Mpstart { -MathPictureStart -} bind def -/Mpend { -MathPictureEnd -} bind def -/Mscale { -0 1 0 1 -5 -1 roll -MathScale -} bind def -/ISOLatin1Encoding dup where -{ pop pop } -{ -[ -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright -/parenleft /parenright /asterisk /plus /comma /minus /period /slash -/zero /one /two /three /four /five /six /seven -/eight /nine /colon /semicolon /less /equal /greater /question -/at /A /B /C /D /E /F /G -/H /I /J /K /L /M /N /O -/P /Q /R /S /T /U /V /W -/X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore -/quoteleft /a /b /c /d /e /f /g -/h /i /j /k /l /m /n /o -/p /q /r /s /t /u /v /w -/x /y /z /braceleft /bar /braceright /asciitilde /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent -/dieresis /.notdef /ring /cedilla /.notdef /hungarumlaut /ogonek /caron -/space /exclamdown /cent /sterling /currency /yen /brokenbar /section -/dieresis /copyright /ordfeminine /guillemotleft -/logicalnot /hyphen /registered /macron -/degree /plusminus /twosuperior /threesuperior -/acute /mu /paragraph /periodcentered -/cedilla /onesuperior /ordmasculine /guillemotright -/onequarter /onehalf /threequarters /questiondown -/Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla -/Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis -/Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply -/Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls -/agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla -/egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis -/eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide -/oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis -] def -} ifelse -/MFontDict 50 dict def -/MStrCat -{ -exch -dup length -2 index length add -string -dup 3 1 roll -copy -length -exch dup -4 2 roll exch -putinterval -} def -/MCreateEncoding -{ -1 index -255 string cvs -(-) MStrCat -1 index MStrCat -cvn exch -(Encoding) MStrCat -cvn dup where -{ -exch get -} -{ -pop -StandardEncoding -} ifelse -3 1 roll -dup MFontDict exch known not -{ -1 index findfont -dup length dict -begin -{1 index /FID ne -{def} -{pop pop} -ifelse} forall -/Encoding 3 index -def -currentdict -end -1 index exch definefont pop -MFontDict 1 index -null put -} -if -exch pop -exch pop -} def -/ISOLatin1 { (ISOLatin1) MCreateEncoding } def -/ISO8859 { (ISOLatin1) MCreateEncoding } def -/Mcopyfont { -dup -maxlength -dict -exch -{ -1 index -/FID -eq -{ -pop pop -} -{ -2 index -3 1 roll -put -} -ifelse -} -forall -} def -/Plain /Courier findfont Mcopyfont definefont pop -/Bold /Courier-Bold findfont Mcopyfont definefont pop -/Italic /Courier-Oblique findfont Mcopyfont definefont pop -/MathPictureStart { -gsave -Mtransform -Mlmarg -Mbmarg -translate -/Mtmatrix -matrix currentmatrix -def -/Mgmatrix -matrix currentmatrix -def -} bind def -/MathPictureEnd { -grestore -} bind def -/MathSubStart { -Momatrix -Mgmatrix Mtmatrix -Mlmarg Mrmarg -Mbmarg Mtmarg -Mwidth Mheight -11 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -Mgmatrix setmatrix -13 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -2 copy translate -/Mtmatrix matrix currentmatrix def -/Mlmarg 0 def -/Mrmarg 0 def -/Mbmarg 0 def -/Mtmarg 0 def -3 -1 roll -exch sub -/Mheight exch def -sub -/Mwidth exch def -} bind def -/MathSubEnd { -/Mheight exch def -/Mwidth exch def -/Mtmarg exch def -/Mbmarg exch def -/Mrmarg exch def -/Mlmarg exch def -/Mtmatrix exch def -dup setmatrix -/Mgmatrix exch def -/Momatrix exch def -} bind def -/Mdot { -moveto -0 0 rlineto -stroke -} bind def -/Mtetra { -moveto -lineto -lineto -lineto -fill -} bind def -/Metetra { -moveto -lineto -lineto -lineto -closepath -gsave -fill -grestore -0 setgray -stroke -} bind def -/Mistroke { -flattenpath -0 0 0 -{ -4 2 roll -pop pop -} -{ -4 -1 roll -2 index -sub dup mul -4 -1 roll -2 index -sub dup mul -add sqrt -4 -1 roll -add -3 1 roll -} -{ -stop -} -{ -stop -} -pathforall -pop pop -currentpoint -stroke -moveto -currentdash -3 -1 roll -add -setdash -} bind def -/Mfstroke { -stroke -currentdash -pop 0 -setdash -} bind def -/Mrotsboxa { -gsave -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -grestore -Msboxa -3 -1 roll -/Mtmatrix -exch def -/Mrot -0 def -} bind def -/Msboxa { -newpath -5 -1 roll -Mvboxa -pop -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Msboxa1 -5 -3 roll -Msboxa1 -Mboxrot -[ -7 -2 roll -2 copy -[ -3 1 roll -10 -1 roll -9 -1 roll -] -6 1 roll -5 -2 roll -] -} bind def -/Msboxa1 { -sub -2 div -dup -2 index -1 add -mul -3 -1 roll --1 add -3 -1 roll -mul -} bind def -/Mvboxa { -Mfixwid -{ -Mvboxa1 -} -{ -dup -Mwidthcal -0 exch -{ -add -} -forall -exch -Mvboxa1 -4 index -7 -1 roll -add -4 -1 roll -pop -3 1 roll -} -ifelse -} bind def -/Mvboxa1 { -gsave -newpath -[ true -3 -1 roll -{ -Mbbox -5 -1 roll -{ -0 -5 1 roll -} -{ -7 -1 roll -exch sub -(m) stringwidth pop -.3 mul -sub -7 1 roll -6 -1 roll -4 -1 roll -Mmin -3 -1 roll -5 index -add -5 -1 roll -4 -1 roll -Mmax -4 -1 roll -} -ifelse -false -} -forall -{ stop } if -counttomark -1 add -4 roll -] -grestore -} bind def -/Mbbox { -1 dict begin -0 0 moveto -/temp (T) def -{ gsave -currentpoint newpath moveto -temp 0 3 -1 roll put temp -false charpath flattenpath currentpoint -pathbbox -grestore moveto lineto moveto} forall -pathbbox -newpath -end -} bind def -/Mmin { -2 copy -gt -{ exch } if -pop -} bind def -/Mmax { -2 copy -lt -{ exch } if -pop -} bind def -/Mrotshowa { -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -Mgmatrix setmatrix -Mshowa -/Mtmatrix -exch def -/Mrot 0 def -} bind def -/Mshowa { -4 -2 roll -moveto -2 index -Mtmatrix setmatrix -Mvboxa -7 1 roll -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Mshowa1 -4 1 roll -Mshowa1 -rmoveto -currentpoint -Mfixwid -{ -Mshowax -} -{ -Mshoway -} -ifelse -pop pop pop pop -Mgmatrix setmatrix -} bind def -/Mshowax { -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -Mfixdash -{ -Mfixdashp -} -if -show -} for -} bind def -/Mfixdashp { -dup -length -1 -gt -1 index -true exch -{ -45 -eq -and -} forall -and -{ -gsave -(--) -stringwidth pop -(-) -stringwidth pop -sub -2 div -0 rmoveto -dup -length -1 sub -{ -(-) -show -} -repeat -grestore -} -if -} bind def -/Mshoway { -3 index -Mwidthcal -5 1 roll -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -[ -6 index -aload -length -2 add --1 roll -{ -pop -Strform -stringwidth -pop -neg -exch -add -0 rmoveto -} -exch -kshow -cleartomark -} for -pop -} bind def -/Mwidthcal { -[ -exch -{ -Mwidthcal1 -} -forall -] -[ -exch -dup -Maxlen --1 add -0 1 -3 -1 roll -{ -[ -exch -2 index -{ -1 index -Mget -exch -} -forall -pop -Maxget -exch -} -for -pop -] -Mreva -} bind def -/Mreva { -[ -exch -aload -length --1 1 -{1 roll} -for -] -} bind def -/Mget { -1 index -length --1 add -1 index -ge -{ -get -} -{ -pop pop -0 -} -ifelse -} bind def -/Maxlen { -[ -exch -{ -length -} -forall -Maxget -} bind def -/Maxget { -counttomark --1 add -1 1 -3 -1 roll -{ -pop -Mmax -} -for -exch -pop -} bind def -/Mwidthcal1 { -[ -exch -{ -Strform -stringwidth -pop -} -forall -] -} bind def -/Strform { -/tem (x) def -tem 0 -3 -1 roll -put -tem -} bind def -/Mshowa1 { -2 copy -add -4 1 roll -sub -mul -sub --2 div -} bind def -/MathScale { -Mwidth -Mlmarg Mrmarg add -sub -Mheight -Mbmarg Mtmarg add -sub -0 0 moveto -1 index 0 -lineto -2 copy -lineto -0 1 index -lineto -clip newpath -Mlp -translate -dup -/Mathabs -exch def -scale -/yscale exch def -/ybias exch def -/xscale exch def -/xbias exch def -/Momatrix -xscale yscale matrix scale -xbias ybias matrix translate -matrix concatmatrix def -/Mgmatrix -matrix currentmatrix -def -} bind def -/Mlp { -3 copy -Mlpfirst -{ -Mnodistort -{ -Mmin -dup -} if -4 index -2 index -2 index -Mlprun -11 index -11 -1 roll -10 -4 roll -Mlp1 -8 index -9 -5 roll -Mlp1 -4 -1 roll -and -{ exit } if -3 -1 roll -pop pop -} loop -exch -3 1 roll -7 -3 roll -pop pop pop -} bind def -/Mlpfirst { -3 -1 roll -dup length -2 copy --2 add -get -aload -pop pop pop -4 -2 roll --1 add -get -aload -pop pop pop -6 -1 roll -3 -1 roll -5 -1 roll -sub -div -4 1 roll -exch sub -div -} bind def -/Mlprun { -2 copy -4 index -0 get -dup -4 1 roll -Mlprun1 -3 copy -8 -2 roll -9 -1 roll -{ -3 copy -Mlprun1 -3 copy -11 -3 roll -/gt Mlpminmax -8 3 roll -11 -3 roll -/lt Mlpminmax -8 3 roll -} forall -pop pop pop pop -3 1 roll -pop pop -aload pop -5 -1 roll -aload pop -exch -6 -1 roll -Mlprun2 -8 2 roll -4 -1 roll -Mlprun2 -6 2 roll -3 -1 roll -Mlprun2 -4 2 roll -exch -Mlprun2 -6 2 roll -} bind def -/Mlprun1 { -aload pop -exch -6 -1 roll -5 -1 roll -mul add -4 -2 roll -mul -3 -1 roll -add -} bind def -/Mlprun2 { -2 copy -add 2 div -3 1 roll -exch sub -} bind def -/Mlpminmax { -cvx -2 index -6 index -2 index -exec -{ -7 -3 roll -4 -1 roll -} if -1 index -5 index -3 -1 roll -exec -{ -4 1 roll -pop -5 -1 roll -aload -pop pop -4 -1 roll -aload pop -[ -8 -2 roll -pop -5 -2 roll -pop -6 -2 roll -pop -5 -1 roll -] -4 1 roll -pop -} -{ -pop pop pop -} ifelse -} bind def -/Mlp1 { -5 index -3 index sub -5 index -2 index mul -1 index -le -1 index -0 le -or -dup -not -{ -1 index -3 index div -.99999 mul -8 -1 roll -pop -7 1 roll -} -if -8 -1 roll -2 div -7 -2 roll -pop sub -5 index -6 -3 roll -pop pop -mul sub -exch -} bind def -/intop 0 def -/inrht 0 def -/inflag 0 def -/outflag 0 def -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -/Minner { -outflag -1 -eq -{ -/outflag 0 def -/intop 0 def -/inrht 0 def -} if -5 index -gsave -Mtmatrix setmatrix -Mvboxa pop -grestore -3 -1 roll -pop -dup -intop -gt -{ -/intop -exch def -} -{ pop } -ifelse -dup -inrht -gt -{ -/inrht -exch def -} -{ pop } -ifelse -pop -/inflag -1 def -} bind def -/Mouter { -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -inflag -1 eq -{ -dup -0 lt -{ -dup -intop -mul -neg -/yadtop -exch def -} if -dup -0 gt -{ -dup -intop -mul -/yadbot -exch def -} -if -pop -dup -0 lt -{ -dup -inrht -mul -neg -/xadrht -exch def -} if -dup -0 gt -{ -dup -inrht -mul -/xadlft -exch def -} if -pop -/outflag 1 def -} -{ pop pop} -ifelse -/inflag 0 def -/inrht 0 def -/intop 0 def -} bind def -/Mboxout { -outflag -1 -eq -{ -4 -1 -roll -xadlft -leadjust -add -sub -4 1 roll -3 -1 -roll -yadbot -leadjust -add -sub -3 1 -roll -exch -xadrht -leadjust -add -add -exch -yadtop -leadjust -add -add -/outflag 0 def -/xadlft 0 def -/yadbot 0 def -/xadrht 0 def -/yadtop 0 def -} if -} bind def -/leadjust { -(m) stringwidth pop -.5 mul -} bind def -/Mrotcheck { -dup -90 -eq -{ -yadbot -/yadbot -xadrht -def -/xadrht -yadtop -def -/yadtop -xadlft -def -/xadlft -exch -def -} -if -dup -cos -1 index -sin -Checkaux -dup -cos -1 index -sin neg -exch -Checkaux -3 1 roll -pop pop -} bind def -/Checkaux { -4 index -exch -4 index -mul -3 1 roll -mul add -4 1 roll -} bind def -/Mboxrot { -Mrot -90 eq -{ -brotaux -4 2 -roll -} -if -Mrot -180 eq -{ -4 2 -roll -brotaux -4 2 -roll -brotaux -} -if -Mrot -270 eq -{ -4 2 -roll -brotaux -} -if -} bind def -/brotaux { -neg -exch -neg -} bind def -/Mabswid { -Mathabs -div -setlinewidth -} bind def -/Mabsdash { -exch -Mathabs -[ -3 1 roll -exch -{ -exch -dup -3 -1 roll -exch -div -exch -} -forall -pop ] -exch -setdash -} bind def -/MBeginOrig { Momatrix concat} bind def -/MEndOrig { Mgmatrix setmatrix} bind def -/colorimage where -{ pop } -{ -/colorimage { -3 1 roll -pop pop -5 -1 roll -mul -4 1 roll -{ -currentfile -1 index -readhexstring -pop } -image -} bind def -} ifelse -/sampledsound where -{ pop} -{ /sampledsound { -exch -pop -exch -5 1 roll -mul -4 idiv -mul -2 idiv -exch pop -exch -/Mtempproc exch def -{ Mtempproc pop} -repeat -} bind def -} ifelse -/setcmykcolor where -{ pop} -{ /setcmykcolor { -4 1 -roll -[ -4 1 -roll -] -{ -1 index -sub -1 -sub neg -dup -0 -lt -{ -pop -0 -} -if -dup -1 -gt -{ -pop -1 -} -if -exch -} forall -pop -setrgbcolor -} bind def -} ifelse - -%%AspectRatio: 0.61803 -MathPictureStart -/Courier-Oblique findfont 17 scalefont setfont -% Scaling calculations -0.584034 0.112045 0.117375 0.020899 [ -[(-4)] 0.13585 0 0 2 0 Minner Mrotsboxa -[(-2)] 0.35994 0 0 2 0 Minner Mrotsboxa -[(0)] 0.58403 0 0 2 0 Minner Mrotsboxa -[(2)] 0.80812 0 0 2 0 Minner Mrotsboxa -[(x, \(m\))] 0.5 0 0 2 0 0 -1 Mouter Mrotsboxa -[(-5)] -0.0125 0.01288 1 0 0 Minner Mrotsboxa -[(0)] -0.0125 0.11737 1 0 0 Minner Mrotsboxa -[(5)] -0.0125 0.22187 1 0 0 Minner Mrotsboxa -[(10)] -0.0125 0.32636 1 0 0 Minner Mrotsboxa -[(15)] -0.0125 0.43086 1 0 0 Minner Mrotsboxa -[(20)] -0.0125 0.53535 1 0 0 Minner Mrotsboxa -[(Voltage, \(kV\))] -0.0125 0.30902 1 0 90 -1 0 Mouter Mrotsboxa -[ -0.001 -0.001 0 0 ] -[ 1.001 0.61903 0 0 ] -] MathScale -% Start of Graphics -1 setlinecap -1 setlinejoin -newpath -%%Object: Graphics -[ ] 0 setdash -0 setgray -gsave -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.13585 0 moveto -0.13585 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.35994 0 moveto -0.35994 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.58403 0 moveto -0.58403 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.80812 0 moveto -0.80812 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.11737 moveto -1 0.11737 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.22187 moveto -1 0.22187 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.32636 moveto -1 0.32636 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.43086 moveto -1 0.43086 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.53535 moveto -1 0.53535 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.13585 0 moveto -0.13585 0.00625 lineto -stroke -grestore -[(-4)] 0.13585 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.35994 0 moveto -0.35994 0.00625 lineto -stroke -grestore -[(-2)] 0.35994 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.58403 0 moveto -0.58403 0.00625 lineto -stroke -grestore -[(0)] 0.58403 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.80812 0 moveto -0.80812 0.00625 lineto -stroke -grestore -[(2)] 0.80812 0 0 2 0 Minner Mrotshowa -gsave -0.001 setlinewidth -0.18067 0 moveto -0.18067 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.22549 0 moveto -0.22549 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.27031 0 moveto -0.27031 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.31513 0 moveto -0.31513 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.40476 0 moveto -0.40476 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.44958 0 moveto -0.44958 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.4944 0 moveto -0.4944 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.53922 0 moveto -0.53922 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.62885 0 moveto -0.62885 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.67367 0 moveto -0.67367 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.71849 0 moveto -0.71849 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.76331 0 moveto -0.76331 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.09104 0 moveto -0.09104 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.04622 0 moveto -0.04622 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.0014 0 moveto -0.0014 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.85294 0 moveto -0.85294 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.89776 0 moveto -0.89776 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.94258 0 moveto -0.94258 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.98739 0 moveto -0.98739 0.00375 lineto -stroke -grestore -[(x, \(m\))] 0.5 0 0 2 0 0 -1 Mouter Mrotshowa -gsave -0.002 setlinewidth -0 0 moveto -1 0 lineto -stroke -grestore -gsave -0.002 setlinewidth -0 0.01288 moveto -0.00625 0.01288 lineto -stroke -grestore -[(-5)] -0.0125 0.01288 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.11737 moveto -0.00625 0.11737 lineto -stroke -grestore -[(0)] -0.0125 0.11737 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.22187 moveto -0.00625 0.22187 lineto -stroke -grestore -[(5)] -0.0125 0.22187 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.32636 moveto -0.00625 0.32636 lineto -stroke -grestore -[(10)] -0.0125 0.32636 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.43086 moveto -0.00625 0.43086 lineto -stroke -grestore -[(15)] -0.0125 0.43086 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.53535 moveto -0.00625 0.53535 lineto -stroke -grestore -[(20)] -0.0125 0.53535 1 0 0 Minner Mrotshowa -gsave -0.001 setlinewidth -0 0.03378 moveto -0.00375 0.03378 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.05468 moveto -0.00375 0.05468 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.07558 moveto -0.00375 0.07558 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.09648 moveto -0.00375 0.09648 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.13827 moveto -0.00375 0.13827 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.15917 moveto -0.00375 0.15917 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.18007 moveto -0.00375 0.18007 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.20097 moveto -0.00375 0.20097 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.24277 moveto -0.00375 0.24277 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.26367 moveto -0.00375 0.26367 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.28457 moveto -0.00375 0.28457 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.30546 moveto -0.00375 0.30546 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.34726 moveto -0.00375 0.34726 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.36816 moveto -0.00375 0.36816 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.38906 moveto -0.00375 0.38906 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.40996 moveto -0.00375 0.40996 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.45176 moveto -0.00375 0.45176 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.47266 moveto -0.00375 0.47266 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.49355 moveto -0.00375 0.49355 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.51445 moveto -0.00375 0.51445 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.55625 moveto -0.00375 0.55625 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.57715 moveto -0.00375 0.57715 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.59805 moveto -0.00375 0.59805 lineto -stroke -grestore -[(Voltage, \(kV\))] -0.0125 0.30902 1 0 90 -1 0 Mouter Mrotshowa -gsave -0.002 setlinewidth -0 0 moveto -0 0.61803 lineto -stroke -grestore -grestore -gsave -gsave -0.002 setlinewidth -0.13585 0.61178 moveto -0.13585 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.35994 0.61178 moveto -0.35994 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.58403 0.61178 moveto -0.58403 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.80812 0.61178 moveto -0.80812 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.18067 0.61428 moveto -0.18067 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.22549 0.61428 moveto -0.22549 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.27031 0.61428 moveto -0.27031 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.31513 0.61428 moveto -0.31513 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.40476 0.61428 moveto -0.40476 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.44958 0.61428 moveto -0.44958 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.4944 0.61428 moveto -0.4944 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.53922 0.61428 moveto -0.53922 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.62885 0.61428 moveto -0.62885 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.67367 0.61428 moveto -0.67367 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.71849 0.61428 moveto -0.71849 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.76331 0.61428 moveto -0.76331 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.09104 0.61428 moveto -0.09104 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.04622 0.61428 moveto -0.04622 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.0014 0.61428 moveto -0.0014 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.85294 0.61428 moveto -0.85294 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.89776 0.61428 moveto -0.89776 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.94258 0.61428 moveto -0.94258 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.98739 0.61428 moveto -0.98739 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0 0.61803 moveto -1 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.01288 moveto -1 0.01288 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.11737 moveto -1 0.11737 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.22187 moveto -1 0.22187 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.32636 moveto -1 0.32636 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.43086 moveto -1 0.43086 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.53535 moveto -1 0.53535 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.03378 moveto -1 0.03378 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.05468 moveto -1 0.05468 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.07558 moveto -1 0.07558 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.09648 moveto -1 0.09648 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.13827 moveto -1 0.13827 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.15917 moveto -1 0.15917 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.18007 moveto -1 0.18007 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.20097 moveto -1 0.20097 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.24277 moveto -1 0.24277 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.26367 moveto -1 0.26367 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.28457 moveto -1 0.28457 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.30546 moveto -1 0.30546 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.34726 moveto -1 0.34726 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.36816 moveto -1 0.36816 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.38906 moveto -1 0.38906 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.40996 moveto -1 0.40996 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.45176 moveto -1 0.45176 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.47266 moveto -1 0.47266 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.49355 moveto -1 0.49355 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.51445 moveto -1 0.51445 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.55625 moveto -1 0.55625 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.57715 moveto -1 0.57715 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.59805 moveto -1 0.59805 lineto -stroke -grestore -gsave -0.002 setlinewidth -1 0 moveto -1 0.61803 lineto -stroke -grestore -grestore -gsave -gsave -0.002 setlinewidth -0 0.11737 moveto -1 0.11737 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.58403 0 moveto -0.58403 0.61803 lineto -stroke -grestore -grestore -0 0 moveto -1 0 lineto -1 0.61803 lineto -0 0.61803 lineto -closepath -clip -newpath -gsave -gsave -0.004 setlinewidth -0.02381 0.45385 moveto -0.06349 0.33099 lineto -0.10317 0.23079 lineto -0.14286 0.15169 lineto -0.1627 0.11957 lineto -0.18254 0.09214 lineto -0.20238 0.06921 lineto -0.22222 0.05057 lineto -0.24206 0.03605 lineto -0.2619 0.02543 lineto -0.27183 0.02153 lineto -0.28175 0.01853 lineto -0.28671 0.01736 lineto -0.29167 0.01641 lineto -0.29663 0.01567 lineto -0.29911 0.01538 lineto -0.30159 0.01515 lineto -0.30407 0.01496 lineto -0.30655 0.01483 lineto -0.30779 0.01478 lineto -0.30903 0.01475 lineto -0.31027 0.01472 lineto -0.31151 0.01472 lineto -0.31275 0.01472 lineto -0.31399 0.01473 lineto -0.31523 0.01476 lineto -0.31647 0.0148 lineto -0.31895 0.01492 lineto -0.32143 0.01509 lineto -0.32391 0.01531 lineto -0.32639 0.01557 lineto -0.33135 0.01625 lineto -0.34127 0.01817 lineto -0.35119 0.02082 lineto -0.36111 0.02418 lineto -0.38095 0.03293 lineto -0.40079 0.04423 lineto -0.42063 0.05788 lineto -0.46032 0.09146 lineto -0.5 0.1321 lineto -0.53968 0.17824 lineto -0.57937 0.22833 lineto -0.61905 0.2808 lineto -0.65873 0.3341 lineto -0.69841 0.38667 lineto -0.7381 0.43694 lineto -0.77778 0.48336 lineto -0.81746 0.52437 lineto -0.85714 0.5584 lineto -0.89683 0.5839 lineto -Mistroke -0.90675 0.58876 lineto -0.91667 0.59296 lineto -0.92659 0.59649 lineto -0.93651 0.59931 lineto -0.94147 0.60045 lineto -0.94643 0.6014 lineto -0.95139 0.60217 lineto -0.95387 0.60248 lineto -0.95635 0.60274 lineto -0.95883 0.60295 lineto -0.96131 0.60312 lineto -0.96255 0.60318 lineto -0.96379 0.60324 lineto -0.96503 0.60328 lineto -0.96627 0.6033 lineto -0.96751 0.60332 lineto -0.96875 0.60332 lineto -0.96999 0.60331 lineto -0.97123 0.60328 lineto -0.97247 0.60325 lineto -0.97371 0.6032 lineto -0.97619 0.60306 lineto -Mfstroke -grestore -grestore -% End of Graphics -MathPictureEnd -end -showpage diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob07v2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob07v2.gif deleted file mode 100755 index 679c45f08..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob07v2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob07v3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob07v3.eps deleted file mode 100755 index 92bd3456f..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob07v3.eps +++ /dev/null @@ -1,2093 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 72.0 242.0 540.0 560.0 -%%Creator: Mathematica -%%CreationDate: Thu Jan 27 14:09:40 CST 1994 -%%EndComments - -/Mathdict 100 dict def -Mathdict begin -/Mlmarg 1.0 72 mul def -/Mrmarg 1.0 72 mul def -/Mbmarg 1.0 72 mul def -/Mtmarg 1.0 72 mul def -/Mwidth 8.5 72 mul def -/Mheight 11 72 mul def -/Mtransform { } bind def -/Mnodistort true def -/Mfixwid false def -/Mfixdash false def -/Mrot 0 def -/Mpstart { -MathPictureStart -} bind def -/Mpend { -MathPictureEnd -} bind def -/Mscale { -0 1 0 1 -5 -1 roll -MathScale -} bind def -/ISOLatin1Encoding dup where -{ pop pop } -{ -[ -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright -/parenleft /parenright /asterisk /plus /comma /minus /period /slash -/zero /one /two /three /four /five /six /seven -/eight /nine /colon /semicolon /less /equal /greater /question -/at /A /B /C /D /E /F /G -/H /I /J /K /L /M /N /O -/P /Q /R /S /T /U /V /W -/X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore -/quoteleft /a /b /c /d /e /f /g -/h /i /j /k /l /m /n /o -/p /q /r /s /t /u /v /w -/x /y /z /braceleft /bar /braceright /asciitilde /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent -/dieresis /.notdef /ring /cedilla /.notdef /hungarumlaut /ogonek /caron -/space /exclamdown /cent /sterling /currency /yen /brokenbar /section -/dieresis /copyright /ordfeminine /guillemotleft -/logicalnot /hyphen /registered /macron -/degree /plusminus /twosuperior /threesuperior -/acute /mu /paragraph /periodcentered -/cedilla /onesuperior /ordmasculine /guillemotright -/onequarter /onehalf /threequarters /questiondown -/Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla -/Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis -/Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply -/Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls -/agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla -/egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis -/eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide -/oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis -] def -} ifelse -/MFontDict 50 dict def -/MStrCat -{ -exch -dup length -2 index length add -string -dup 3 1 roll -copy -length -exch dup -4 2 roll exch -putinterval -} def -/MCreateEncoding -{ -1 index -255 string cvs -(-) MStrCat -1 index MStrCat -cvn exch -(Encoding) MStrCat -cvn dup where -{ -exch get -} -{ -pop -StandardEncoding -} ifelse -3 1 roll -dup MFontDict exch known not -{ -1 index findfont -dup length dict -begin -{1 index /FID ne -{def} -{pop pop} -ifelse} forall -/Encoding 3 index -def -currentdict -end -1 index exch definefont pop -MFontDict 1 index -null put -} -if -exch pop -exch pop -} def -/ISOLatin1 { (ISOLatin1) MCreateEncoding } def -/ISO8859 { (ISOLatin1) MCreateEncoding } def -/Mcopyfont { -dup -maxlength -dict -exch -{ -1 index -/FID -eq -{ -pop pop -} -{ -2 index -3 1 roll -put -} -ifelse -} -forall -} def -/Plain /Courier findfont Mcopyfont definefont pop -/Bold /Courier-Bold findfont Mcopyfont definefont pop -/Italic /Courier-Oblique findfont Mcopyfont definefont pop -/MathPictureStart { -gsave -Mtransform -Mlmarg -Mbmarg -translate -/Mtmatrix -matrix currentmatrix -def -/Mgmatrix -matrix currentmatrix -def -} bind def -/MathPictureEnd { -grestore -} bind def -/MathSubStart { -Momatrix -Mgmatrix Mtmatrix -Mlmarg Mrmarg -Mbmarg Mtmarg -Mwidth Mheight -11 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -Mgmatrix setmatrix -13 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -2 copy translate -/Mtmatrix matrix currentmatrix def -/Mlmarg 0 def -/Mrmarg 0 def -/Mbmarg 0 def -/Mtmarg 0 def -3 -1 roll -exch sub -/Mheight exch def -sub -/Mwidth exch def -} bind def -/MathSubEnd { -/Mheight exch def -/Mwidth exch def -/Mtmarg exch def -/Mbmarg exch def -/Mrmarg exch def -/Mlmarg exch def -/Mtmatrix exch def -dup setmatrix -/Mgmatrix exch def -/Momatrix exch def -} bind def -/Mdot { -moveto -0 0 rlineto -stroke -} bind def -/Mtetra { -moveto -lineto -lineto -lineto -fill -} bind def -/Metetra { -moveto -lineto -lineto -lineto -closepath -gsave -fill -grestore -0 setgray -stroke -} bind def -/Mistroke { -flattenpath -0 0 0 -{ -4 2 roll -pop pop -} -{ -4 -1 roll -2 index -sub dup mul -4 -1 roll -2 index -sub dup mul -add sqrt -4 -1 roll -add -3 1 roll -} -{ -stop -} -{ -stop -} -pathforall -pop pop -currentpoint -stroke -moveto -currentdash -3 -1 roll -add -setdash -} bind def -/Mfstroke { -stroke -currentdash -pop 0 -setdash -} bind def -/Mrotsboxa { -gsave -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -grestore -Msboxa -3 -1 roll -/Mtmatrix -exch def -/Mrot -0 def -} bind def -/Msboxa { -newpath -5 -1 roll -Mvboxa -pop -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Msboxa1 -5 -3 roll -Msboxa1 -Mboxrot -[ -7 -2 roll -2 copy -[ -3 1 roll -10 -1 roll -9 -1 roll -] -6 1 roll -5 -2 roll -] -} bind def -/Msboxa1 { -sub -2 div -dup -2 index -1 add -mul -3 -1 roll --1 add -3 -1 roll -mul -} bind def -/Mvboxa { -Mfixwid -{ -Mvboxa1 -} -{ -dup -Mwidthcal -0 exch -{ -add -} -forall -exch -Mvboxa1 -4 index -7 -1 roll -add -4 -1 roll -pop -3 1 roll -} -ifelse -} bind def -/Mvboxa1 { -gsave -newpath -[ true -3 -1 roll -{ -Mbbox -5 -1 roll -{ -0 -5 1 roll -} -{ -7 -1 roll -exch sub -(m) stringwidth pop -.3 mul -sub -7 1 roll -6 -1 roll -4 -1 roll -Mmin -3 -1 roll -5 index -add -5 -1 roll -4 -1 roll -Mmax -4 -1 roll -} -ifelse -false -} -forall -{ stop } if -counttomark -1 add -4 roll -] -grestore -} bind def -/Mbbox { -1 dict begin -0 0 moveto -/temp (T) def -{ gsave -currentpoint newpath moveto -temp 0 3 -1 roll put temp -false charpath flattenpath currentpoint -pathbbox -grestore moveto lineto moveto} forall -pathbbox -newpath -end -} bind def -/Mmin { -2 copy -gt -{ exch } if -pop -} bind def -/Mmax { -2 copy -lt -{ exch } if -pop -} bind def -/Mrotshowa { -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -Mgmatrix setmatrix -Mshowa -/Mtmatrix -exch def -/Mrot 0 def -} bind def -/Mshowa { -4 -2 roll -moveto -2 index -Mtmatrix setmatrix -Mvboxa -7 1 roll -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Mshowa1 -4 1 roll -Mshowa1 -rmoveto -currentpoint -Mfixwid -{ -Mshowax -} -{ -Mshoway -} -ifelse -pop pop pop pop -Mgmatrix setmatrix -} bind def -/Mshowax { -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -Mfixdash -{ -Mfixdashp -} -if -show -} for -} bind def -/Mfixdashp { -dup -length -1 -gt -1 index -true exch -{ -45 -eq -and -} forall -and -{ -gsave -(--) -stringwidth pop -(-) -stringwidth pop -sub -2 div -0 rmoveto -dup -length -1 sub -{ -(-) -show -} -repeat -grestore -} -if -} bind def -/Mshoway { -3 index -Mwidthcal -5 1 roll -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -[ -6 index -aload -length -2 add --1 roll -{ -pop -Strform -stringwidth -pop -neg -exch -add -0 rmoveto -} -exch -kshow -cleartomark -} for -pop -} bind def -/Mwidthcal { -[ -exch -{ -Mwidthcal1 -} -forall -] -[ -exch -dup -Maxlen --1 add -0 1 -3 -1 roll -{ -[ -exch -2 index -{ -1 index -Mget -exch -} -forall -pop -Maxget -exch -} -for -pop -] -Mreva -} bind def -/Mreva { -[ -exch -aload -length --1 1 -{1 roll} -for -] -} bind def -/Mget { -1 index -length --1 add -1 index -ge -{ -get -} -{ -pop pop -0 -} -ifelse -} bind def -/Maxlen { -[ -exch -{ -length -} -forall -Maxget -} bind def -/Maxget { -counttomark --1 add -1 1 -3 -1 roll -{ -pop -Mmax -} -for -exch -pop -} bind def -/Mwidthcal1 { -[ -exch -{ -Strform -stringwidth -pop -} -forall -] -} bind def -/Strform { -/tem (x) def -tem 0 -3 -1 roll -put -tem -} bind def -/Mshowa1 { -2 copy -add -4 1 roll -sub -mul -sub --2 div -} bind def -/MathScale { -Mwidth -Mlmarg Mrmarg add -sub -Mheight -Mbmarg Mtmarg add -sub -0 0 moveto -1 index 0 -lineto -2 copy -lineto -0 1 index -lineto -clip newpath -Mlp -translate -dup -/Mathabs -exch def -scale -/yscale exch def -/ybias exch def -/xscale exch def -/xbias exch def -/Momatrix -xscale yscale matrix scale -xbias ybias matrix translate -matrix concatmatrix def -/Mgmatrix -matrix currentmatrix -def -} bind def -/Mlp { -3 copy -Mlpfirst -{ -Mnodistort -{ -Mmin -dup -} if -4 index -2 index -2 index -Mlprun -11 index -11 -1 roll -10 -4 roll -Mlp1 -8 index -9 -5 roll -Mlp1 -4 -1 roll -and -{ exit } if -3 -1 roll -pop pop -} loop -exch -3 1 roll -7 -3 roll -pop pop pop -} bind def -/Mlpfirst { -3 -1 roll -dup length -2 copy --2 add -get -aload -pop pop pop -4 -2 roll --1 add -get -aload -pop pop pop -6 -1 roll -3 -1 roll -5 -1 roll -sub -div -4 1 roll -exch sub -div -} bind def -/Mlprun { -2 copy -4 index -0 get -dup -4 1 roll -Mlprun1 -3 copy -8 -2 roll -9 -1 roll -{ -3 copy -Mlprun1 -3 copy -11 -3 roll -/gt Mlpminmax -8 3 roll -11 -3 roll -/lt Mlpminmax -8 3 roll -} forall -pop pop pop pop -3 1 roll -pop pop -aload pop -5 -1 roll -aload pop -exch -6 -1 roll -Mlprun2 -8 2 roll -4 -1 roll -Mlprun2 -6 2 roll -3 -1 roll -Mlprun2 -4 2 roll -exch -Mlprun2 -6 2 roll -} bind def -/Mlprun1 { -aload pop -exch -6 -1 roll -5 -1 roll -mul add -4 -2 roll -mul -3 -1 roll -add -} bind def -/Mlprun2 { -2 copy -add 2 div -3 1 roll -exch sub -} bind def -/Mlpminmax { -cvx -2 index -6 index -2 index -exec -{ -7 -3 roll -4 -1 roll -} if -1 index -5 index -3 -1 roll -exec -{ -4 1 roll -pop -5 -1 roll -aload -pop pop -4 -1 roll -aload pop -[ -8 -2 roll -pop -5 -2 roll -pop -6 -2 roll -pop -5 -1 roll -] -4 1 roll -pop -} -{ -pop pop pop -} ifelse -} bind def -/Mlp1 { -5 index -3 index sub -5 index -2 index mul -1 index -le -1 index -0 le -or -dup -not -{ -1 index -3 index div -.99999 mul -8 -1 roll -pop -7 1 roll -} -if -8 -1 roll -2 div -7 -2 roll -pop sub -5 index -6 -3 roll -pop pop -mul sub -exch -} bind def -/intop 0 def -/inrht 0 def -/inflag 0 def -/outflag 0 def -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -/Minner { -outflag -1 -eq -{ -/outflag 0 def -/intop 0 def -/inrht 0 def -} if -5 index -gsave -Mtmatrix setmatrix -Mvboxa pop -grestore -3 -1 roll -pop -dup -intop -gt -{ -/intop -exch def -} -{ pop } -ifelse -dup -inrht -gt -{ -/inrht -exch def -} -{ pop } -ifelse -pop -/inflag -1 def -} bind def -/Mouter { -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -inflag -1 eq -{ -dup -0 lt -{ -dup -intop -mul -neg -/yadtop -exch def -} if -dup -0 gt -{ -dup -intop -mul -/yadbot -exch def -} -if -pop -dup -0 lt -{ -dup -inrht -mul -neg -/xadrht -exch def -} if -dup -0 gt -{ -dup -inrht -mul -/xadlft -exch def -} if -pop -/outflag 1 def -} -{ pop pop} -ifelse -/inflag 0 def -/inrht 0 def -/intop 0 def -} bind def -/Mboxout { -outflag -1 -eq -{ -4 -1 -roll -xadlft -leadjust -add -sub -4 1 roll -3 -1 -roll -yadbot -leadjust -add -sub -3 1 -roll -exch -xadrht -leadjust -add -add -exch -yadtop -leadjust -add -add -/outflag 0 def -/xadlft 0 def -/yadbot 0 def -/xadrht 0 def -/yadtop 0 def -} if -} bind def -/leadjust { -(m) stringwidth pop -.5 mul -} bind def -/Mrotcheck { -dup -90 -eq -{ -yadbot -/yadbot -xadrht -def -/xadrht -yadtop -def -/yadtop -xadlft -def -/xadlft -exch -def -} -if -dup -cos -1 index -sin -Checkaux -dup -cos -1 index -sin neg -exch -Checkaux -3 1 roll -pop pop -} bind def -/Checkaux { -4 index -exch -4 index -mul -3 1 roll -mul add -4 1 roll -} bind def -/Mboxrot { -Mrot -90 eq -{ -brotaux -4 2 -roll -} -if -Mrot -180 eq -{ -4 2 -roll -brotaux -4 2 -roll -brotaux -} -if -Mrot -270 eq -{ -4 2 -roll -brotaux -} -if -} bind def -/brotaux { -neg -exch -neg -} bind def -/Mabswid { -Mathabs -div -setlinewidth -} bind def -/Mabsdash { -exch -Mathabs -[ -3 1 roll -exch -{ -exch -dup -3 -1 roll -exch -div -exch -} -forall -pop ] -exch -setdash -} bind def -/MBeginOrig { Momatrix concat} bind def -/MEndOrig { Mgmatrix setmatrix} bind def -/colorimage where -{ pop } -{ -/colorimage { -3 1 roll -pop pop -5 -1 roll -mul -4 1 roll -{ -currentfile -1 index -readhexstring -pop } -image -} bind def -} ifelse -/sampledsound where -{ pop} -{ /sampledsound { -exch -pop -exch -5 1 roll -mul -4 idiv -mul -2 idiv -exch pop -exch -/Mtempproc exch def -{ Mtempproc pop} -repeat -} bind def -} ifelse -/setcmykcolor where -{ pop} -{ /setcmykcolor { -4 1 -roll -[ -4 1 -roll -] -{ -1 index -sub -1 -sub neg -dup -0 -lt -{ -pop -0 -} -if -dup -1 -gt -{ -pop -1 -} -if -exch -} forall -pop -setrgbcolor -} bind def -} ifelse - -%%AspectRatio: 0.61803 -MathPictureStart -/Courier-Oblique findfont 17 scalefont setfont -% Scaling calculations -0.584034 0.112045 0.090028 0.020656 [ -[(-4)] 0.13585 0 0 2 0 Minner Mrotsboxa -[(-2)] 0.35994 0 0 2 0 Minner Mrotsboxa -[(0)] 0.58403 0 0 2 0 Minner Mrotsboxa -[(2)] 0.80812 0 0 2 0 Minner Mrotsboxa -[(x, \(m\))] 0.5 0 0 2 0 0 -1 Mouter Mrotsboxa -[(0)] -0.0125 0.09003 1 0 0 Minner Mrotsboxa -[(5)] -0.0125 0.19331 1 0 0 Minner Mrotsboxa -[(10)] -0.0125 0.29658 1 0 0 Minner Mrotsboxa -[(15)] -0.0125 0.39986 1 0 0 Minner Mrotsboxa -[(20)] -0.0125 0.50314 1 0 0 Minner Mrotsboxa -[(25)] -0.0125 0.60642 1 0 0 Minner Mrotsboxa -[(Voltage, \(kV\))] -0.0125 0.30902 1 0 90 -1 0 Mouter Mrotsboxa -[ -0.001 -0.001 0 0 ] -[ 1.001 0.61903 0 0 ] -] MathScale -% Start of Graphics -1 setlinecap -1 setlinejoin -newpath -%%Object: Graphics -[ ] 0 setdash -0 setgray -gsave -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.13585 0 moveto -0.13585 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.35994 0 moveto -0.35994 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.58403 0 moveto -0.58403 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0.80812 0 moveto -0.80812 0.61803 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.09003 moveto -1 0.09003 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.19331 moveto -1 0.19331 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.29658 moveto -1 0.29658 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.39986 moveto -1 0.39986 lineto -stroke -grestore -gsave -0 0 0.5 setrgbcolor -0.001 setlinewidth -0 0.50314 moveto -1 0.50314 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.13585 0 moveto -0.13585 0.00625 lineto -stroke -grestore -[(-4)] 0.13585 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.35994 0 moveto -0.35994 0.00625 lineto -stroke -grestore -[(-2)] 0.35994 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.58403 0 moveto -0.58403 0.00625 lineto -stroke -grestore -[(0)] 0.58403 0 0 2 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0.80812 0 moveto -0.80812 0.00625 lineto -stroke -grestore -[(2)] 0.80812 0 0 2 0 Minner Mrotshowa -gsave -0.001 setlinewidth -0.18067 0 moveto -0.18067 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.22549 0 moveto -0.22549 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.27031 0 moveto -0.27031 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.31513 0 moveto -0.31513 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.40476 0 moveto -0.40476 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.44958 0 moveto -0.44958 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.4944 0 moveto -0.4944 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.53922 0 moveto -0.53922 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.62885 0 moveto -0.62885 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.67367 0 moveto -0.67367 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.71849 0 moveto -0.71849 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.76331 0 moveto -0.76331 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.09104 0 moveto -0.09104 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.04622 0 moveto -0.04622 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.0014 0 moveto -0.0014 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.85294 0 moveto -0.85294 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.89776 0 moveto -0.89776 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.94258 0 moveto -0.94258 0.00375 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.98739 0 moveto -0.98739 0.00375 lineto -stroke -grestore -[(x, \(m\))] 0.5 0 0 2 0 0 -1 Mouter Mrotshowa -gsave -0.002 setlinewidth -0 0 moveto -1 0 lineto -stroke -grestore -gsave -0.002 setlinewidth -0 0.09003 moveto -0.00625 0.09003 lineto -stroke -grestore -[(0)] -0.0125 0.09003 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.19331 moveto -0.00625 0.19331 lineto -stroke -grestore -[(5)] -0.0125 0.19331 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.29658 moveto -0.00625 0.29658 lineto -stroke -grestore -[(10)] -0.0125 0.29658 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.39986 moveto -0.00625 0.39986 lineto -stroke -grestore -[(15)] -0.0125 0.39986 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.50314 moveto -0.00625 0.50314 lineto -stroke -grestore -[(20)] -0.0125 0.50314 1 0 0 Minner Mrotshowa -gsave -0.002 setlinewidth -0 0.60642 moveto -0.00625 0.60642 lineto -stroke -grestore -[(25)] -0.0125 0.60642 1 0 0 Minner Mrotshowa -gsave -0.001 setlinewidth -0 0.11068 moveto -0.00375 0.11068 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.13134 moveto -0.00375 0.13134 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.15199 moveto -0.00375 0.15199 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.17265 moveto -0.00375 0.17265 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.21396 moveto -0.00375 0.21396 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.23462 moveto -0.00375 0.23462 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.25527 moveto -0.00375 0.25527 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.27593 moveto -0.00375 0.27593 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.31724 moveto -0.00375 0.31724 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.33789 moveto -0.00375 0.33789 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.35855 moveto -0.00375 0.35855 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.37921 moveto -0.00375 0.37921 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.42052 moveto -0.00375 0.42052 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.44117 moveto -0.00375 0.44117 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.46183 moveto -0.00375 0.46183 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.48248 moveto -0.00375 0.48248 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.52379 moveto -0.00375 0.52379 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.54445 moveto -0.00375 0.54445 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.56511 moveto -0.00375 0.56511 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.58576 moveto -0.00375 0.58576 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.06937 moveto -0.00375 0.06937 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.04872 moveto -0.00375 0.04872 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.02806 moveto -0.00375 0.02806 lineto -stroke -grestore -gsave -0.001 setlinewidth -0 0.00741 moveto -0.00375 0.00741 lineto -stroke -grestore -[(Voltage, \(kV\))] -0.0125 0.30902 1 0 90 -1 0 Mouter Mrotshowa -gsave -0.002 setlinewidth -0 0 moveto -0 0.61803 lineto -stroke -grestore -grestore -gsave -gsave -0.002 setlinewidth -0.13585 0.61178 moveto -0.13585 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.35994 0.61178 moveto -0.35994 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.58403 0.61178 moveto -0.58403 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.80812 0.61178 moveto -0.80812 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.18067 0.61428 moveto -0.18067 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.22549 0.61428 moveto -0.22549 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.27031 0.61428 moveto -0.27031 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.31513 0.61428 moveto -0.31513 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.40476 0.61428 moveto -0.40476 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.44958 0.61428 moveto -0.44958 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.4944 0.61428 moveto -0.4944 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.53922 0.61428 moveto -0.53922 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.62885 0.61428 moveto -0.62885 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.67367 0.61428 moveto -0.67367 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.71849 0.61428 moveto -0.71849 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.76331 0.61428 moveto -0.76331 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.09104 0.61428 moveto -0.09104 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.04622 0.61428 moveto -0.04622 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.0014 0.61428 moveto -0.0014 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.85294 0.61428 moveto -0.85294 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.89776 0.61428 moveto -0.89776 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.94258 0.61428 moveto -0.94258 0.61803 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.98739 0.61428 moveto -0.98739 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0 0.61803 moveto -1 0.61803 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.09003 moveto -1 0.09003 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.19331 moveto -1 0.19331 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.29658 moveto -1 0.29658 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.39986 moveto -1 0.39986 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.50314 moveto -1 0.50314 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.99375 0.60642 moveto -1 0.60642 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.11068 moveto -1 0.11068 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.13134 moveto -1 0.13134 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.15199 moveto -1 0.15199 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.17265 moveto -1 0.17265 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.21396 moveto -1 0.21396 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.23462 moveto -1 0.23462 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.25527 moveto -1 0.25527 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.27593 moveto -1 0.27593 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.31724 moveto -1 0.31724 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.33789 moveto -1 0.33789 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.35855 moveto -1 0.35855 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.37921 moveto -1 0.37921 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.42052 moveto -1 0.42052 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.44117 moveto -1 0.44117 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.46183 moveto -1 0.46183 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.48248 moveto -1 0.48248 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.52379 moveto -1 0.52379 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.54445 moveto -1 0.54445 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.56511 moveto -1 0.56511 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.58576 moveto -1 0.58576 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.06937 moveto -1 0.06937 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.04872 moveto -1 0.04872 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.02806 moveto -1 0.02806 lineto -stroke -grestore -gsave -0.001 setlinewidth -0.99625 0.00741 moveto -1 0.00741 lineto -stroke -grestore -gsave -0.002 setlinewidth -1 0 moveto -1 0.61803 lineto -stroke -grestore -grestore -gsave -gsave -0.002 setlinewidth -0 0.09003 moveto -1 0.09003 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.58403 0 moveto -0.58403 0.61803 lineto -stroke -grestore -grestore -0 0 moveto -1 0 lineto -1 0.61803 lineto -0 0.61803 lineto -closepath -clip -newpath -gsave -gsave -0.004 setlinewidth -0.02381 0.60332 moveto -0.06349 0.47704 lineto -0.10317 0.36882 lineto -0.14286 0.27752 lineto -0.18254 0.20197 lineto -0.22222 0.14102 lineto -0.2619 0.09352 lineto -0.28175 0.07445 lineto -0.30159 0.05831 lineto -0.32143 0.04494 lineto -0.34127 0.03422 lineto -0.36111 0.02599 lineto -0.37103 0.02277 lineto -0.38095 0.02011 lineto -0.39087 0.01801 lineto -0.40079 0.01644 lineto -0.40575 0.01584 lineto -0.41071 0.01538 lineto -0.41567 0.01504 lineto -0.41815 0.01491 lineto -0.41939 0.01486 lineto -0.42063 0.01482 lineto -0.42188 0.01478 lineto -0.42312 0.01476 lineto -0.42436 0.01473 lineto -0.4256 0.01472 lineto -0.42684 0.01472 lineto -0.42808 0.01472 lineto -0.42932 0.01472 lineto -0.43056 0.01474 lineto -0.4318 0.01476 lineto -0.43304 0.01479 lineto -0.43552 0.01487 lineto -0.438 0.01498 lineto -0.44048 0.01512 lineto -0.44544 0.01548 lineto -0.4504 0.01594 lineto -0.46032 0.01719 lineto -0.47024 0.01885 lineto -0.48016 0.02089 lineto -0.5 0.02607 lineto -0.53968 0.0403 lineto -0.57937 0.05872 lineto -0.61905 0.08018 lineto -0.65873 0.10352 lineto -0.69841 0.12759 lineto -0.7381 0.15123 lineto -0.77778 0.17328 lineto -0.81746 0.19258 lineto -0.8373 0.20085 lineto -Mistroke -0.85714 0.20799 lineto -0.87698 0.21387 lineto -0.89683 0.21834 lineto -0.90675 0.22 lineto -0.91171 0.22068 lineto -0.91667 0.22126 lineto -0.92163 0.22173 lineto -0.92659 0.22209 lineto -0.92907 0.22223 lineto -0.93155 0.22234 lineto -0.93403 0.22243 lineto -0.93527 0.22246 lineto -0.93651 0.22248 lineto -0.93775 0.2225 lineto -0.93899 0.22251 lineto -0.94023 0.22251 lineto -0.94147 0.22251 lineto -0.94271 0.22249 lineto -0.94395 0.22247 lineto -0.94519 0.22245 lineto -0.94643 0.22241 lineto -0.94891 0.22232 lineto -0.95139 0.2222 lineto -0.95635 0.22186 lineto -0.96131 0.2214 lineto -0.96627 0.22082 lineto -0.97619 0.21925 lineto -Mfstroke -grestore -grestore -% End of Graphics -MathPictureEnd -end -showpage diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob07v3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob07v3.gif deleted file mode 100755 index 0245fa2a4..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob07v3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av34129.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av34129.eps deleted file mode 100755 index 6696c538d..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av34129.eps +++ /dev/null @@ -1,392 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Wed Sep 29 14:38:37 1993 -%%For: kashy -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 297 237 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /arwlen 6 def /arw 4 def /arow { - gsave newpath moveto lineto unpagectm concat { - - } { - - } { - - } { - - } pathforall newpath 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath crlinalph setalpha strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - crstrpat findfont exch strwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /arwpath { - sc7mt currentmatrix pop gsave newpath moveto lineto unpagectm dup concat { - - } { - - } { - - } { - - } pathforall grestore unpagectm 5 -1 roll concat 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath sc7mt setmatrix -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 296.210358 236.994141 rectclip --195.399994 -463.264465 translate -195.399994 463.264465 296.210358 236.994141 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 2.412863e-35 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 27 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -/crlinw 1.1 def -/crendarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 342 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 324 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 306 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 288 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 270 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 252 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 234 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 216 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 198 1 0 0 1 60 306 sc6mt astore ssl -/crlinw 1.8 def -/crendarw false def -/crfrtarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -223.200012 54 637.200012 1 0 0 0.9774 145 62.220825 sc6mt astore ssl -/crendarw true def -/crfrtarw false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 280.199982 0 54 414 1 0 0 0.9774 144 62.220825 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(Y ) [10.672001 0 0 0] 50 662 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1 0 0 0.9774 158 36.220825] dotx -(X ) [10.671997 0 0 0] 398 416 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1.173709 0 0 0.892327 9.600845 103.791786] dotx -/txtdraw true def -/txlndraw true def -(. ) [10.007996 0 0 0] 73 583 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 174 -46] dotx -/txtdraw true def -/txlndraw true def -(1 ) [7.783997 0 0 0] 63 493 /Helvetica-Bold [ 14 1 mul 0 0 14 0 0 ] [1 0 0 1 177 42] dotx -/txtdraw true def -/txlndraw true def -(. ) [10.007996 0 0 0] 73 583 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 336 44] dotx -/txtdraw true def -/txlndraw true def -(2 ) [7.783997 0 0 0] 81 550 /Helvetica-Bold [ 14 1 mul 0 0 14 0 0 ] [1 0 0 1 321 75] dotx -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av34129.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av34129.gif deleted file mode 100755 index e5822a25d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av34129.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av34139.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av34139.eps deleted file mode 100755 index 940afb27c..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av34139.eps +++ /dev/null @@ -1,392 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Wed Sep 29 14:23:18 1993 -%%For: kashy -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 297 237 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /arwlen 6 def /arw 4 def /arow { - gsave newpath moveto lineto unpagectm concat { - - } { - - } { - - } { - - } pathforall newpath 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath crlinalph setalpha strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - crstrpat findfont exch strwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /arwpath { - sc7mt currentmatrix pop gsave newpath moveto lineto unpagectm dup concat { - - } { - - } { - - } { - - } pathforall grestore unpagectm 5 -1 roll concat 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath sc7mt setmatrix -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 296.210358 236.994141 rectclip --195.399994 -463.264465 translate -195.399994 463.264465 296.210358 236.994141 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 2.412863e-35 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 27 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -/crlinw 1.1 def -/crendarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 342 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 324 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 306 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 288 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 270 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 252 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 234 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 216 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 198 1 0 0 1 60 306 sc6mt astore ssl -/crlinw 1.8 def -/crendarw false def -/crfrtarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -223.200012 54 637.200012 1 0 0 0.9774 145 62.220825 sc6mt astore ssl -/crendarw true def -/crfrtarw false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 280.199982 0 54 414 1 0 0 0.9774 144 62.220825 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(Y ) [10.672001 0 0 0] 50 662 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1 0 0 0.9774 158 36.220825] dotx -(X ) [10.671997 0 0 0] 398 416 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1.173709 0 0 0.892327 9.600845 103.791786] dotx -/txtdraw true def -/txlndraw true def -(. ) [10.007996 0 0 0] 73 583 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 174 -46] dotx -/txtdraw true def -/txlndraw true def -(1 ) [7.783997 0 0 0] 63 493 /Helvetica-Bold [ 14 1 mul 0 0 14 0 0 ] [1 0 0 1 177 42] dotx -/txtdraw true def -/txlndraw true def -(. ) [10.007996 0 0 0] 73 583 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 354 44] dotx -/txtdraw true def -/txlndraw true def -(2 ) [7.783997 0 0 0] 81 550 /Helvetica-Bold [ 14 1 mul 0 0 14 0 0 ] [1 0 0 1 339 75] dotx -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av34139.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av34139.gif deleted file mode 100755 index e46766822..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av34139.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av44129.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av44129.eps deleted file mode 100755 index a93b25779..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av44129.eps +++ /dev/null @@ -1,392 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Wed Sep 29 14:38:21 1993 -%%For: kashy -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 297 237 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /arwlen 6 def /arw 4 def /arow { - gsave newpath moveto lineto unpagectm concat { - - } { - - } { - - } { - - } pathforall newpath 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath crlinalph setalpha strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - crstrpat findfont exch strwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /arwpath { - sc7mt currentmatrix pop gsave newpath moveto lineto unpagectm dup concat { - - } { - - } { - - } { - - } pathforall grestore unpagectm 5 -1 roll concat 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath sc7mt setmatrix -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 296.210358 236.994141 rectclip --195.399994 -463.264465 translate -195.399994 463.264465 296.210358 236.994141 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 2.412863e-35 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 27 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -/crlinw 1.1 def -/crendarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 342 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 324 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 306 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 288 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 270 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 252 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 234 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 216 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 198 1 0 0 1 60 306 sc6mt astore ssl -/crlinw 1.8 def -/crendarw false def -/crfrtarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -223.200012 54 637.200012 1 0 0 0.9774 145 62.220825 sc6mt astore ssl -/crendarw true def -/crfrtarw false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 280.199982 0 54 414 1 0 0 0.9774 144 62.220825 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(Y ) [10.672001 0 0 0] 50 662 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1 0 0 0.9774 158 36.220825] dotx -(X ) [10.671997 0 0 0] 398 416 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1.173709 0 0 0.892327 9.600845 103.791786] dotx -/txtdraw true def -/txlndraw true def -(. ) [10.007996 0 0 0] 73 583 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 192 -46] dotx -/txtdraw true def -/txlndraw true def -(1 ) [7.783997 0 0 0] 63 493 /Helvetica-Bold [ 14 1 mul 0 0 14 0 0 ] [1 0 0 1 195 42] dotx -/txtdraw true def -/txlndraw true def -(. ) [10.007996 0 0 0] 73 583 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 336 44] dotx -/txtdraw true def -/txlndraw true def -(2 ) [7.783997 0 0 0] 81 550 /Helvetica-Bold [ 14 1 mul 0 0 14 0 0 ] [1 0 0 1 321 75] dotx -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av44129.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av44129.gif deleted file mode 100755 index c456092b9..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av44129.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av44139.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av44139.eps deleted file mode 100755 index 56322056c..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av44139.eps +++ /dev/null @@ -1,392 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Wed Sep 29 14:23:40 1993 -%%For: kashy -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 297 237 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /arwlen 6 def /arw 4 def /arow { - gsave newpath moveto lineto unpagectm concat { - - } { - - } { - - } { - - } pathforall newpath 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath crlinalph setalpha strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - crstrpat findfont exch strwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /arwpath { - sc7mt currentmatrix pop gsave newpath moveto lineto unpagectm dup concat { - - } { - - } { - - } { - - } pathforall grestore unpagectm 5 -1 roll concat 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath sc7mt setmatrix -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 296.210358 236.994141 rectclip --195.399994 -463.264465 translate -195.399994 463.264465 296.210358 236.994141 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 2.412863e-35 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 27 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -/crlinw 1.1 def -/crendarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 342 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 324 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 306 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 288 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 270 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 252 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 234 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 216 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 198 1 0 0 1 60 306 sc6mt astore ssl -/crlinw 1.8 def -/crendarw false def -/crfrtarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -223.200012 54 637.200012 1 0 0 0.9774 145 62.220825 sc6mt astore ssl -/crendarw true def -/crfrtarw false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 280.199982 0 54 414 1 0 0 0.9774 144 62.220825 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(Y ) [10.672001 0 0 0] 50 662 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1 0 0 0.9774 158 36.220825] dotx -(X ) [10.671997 0 0 0] 398 416 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1.173709 0 0 0.892327 9.600845 103.791786] dotx -/txtdraw true def -/txlndraw true def -(. ) [10.007996 0 0 0] 73 583 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 192 -46] dotx -/txtdraw true def -/txlndraw true def -(1 ) [7.783997 0 0 0] 63 493 /Helvetica-Bold [ 14 1 mul 0 0 14 0 0 ] [1 0 0 1 195 42] dotx -/txtdraw true def -/txlndraw true def -(. ) [10.007996 0 0 0] 73 583 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 354 44] dotx -/txtdraw true def -/txlndraw true def -(2 ) [7.783997 0 0 0] 81 550 /Helvetica-Bold [ 14 1 mul 0 0 14 0 0 ] [1 0 0 1 339 75] dotx -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av44139.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av44139.gif deleted file mode 100755 index 1dbcb3ca8..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av44139.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av54129.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av54129.eps deleted file mode 100755 index 4aeb1c93b..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av54129.eps +++ /dev/null @@ -1,392 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Wed Sep 29 14:37:49 1993 -%%For: kashy -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 297 237 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /arwlen 6 def /arw 4 def /arow { - gsave newpath moveto lineto unpagectm concat { - - } { - - } { - - } { - - } pathforall newpath 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath crlinalph setalpha strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - crstrpat findfont exch strwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /arwpath { - sc7mt currentmatrix pop gsave newpath moveto lineto unpagectm dup concat { - - } { - - } { - - } { - - } pathforall grestore unpagectm 5 -1 roll concat 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath sc7mt setmatrix -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 296.210358 236.994141 rectclip --195.399994 -463.264465 translate -195.399994 463.264465 296.210358 236.994141 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 2.412863e-35 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 27 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -/crlinw 1.1 def -/crendarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 342 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 324 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 306 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 288 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 270 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 252 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 234 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 216 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 198 1 0 0 1 60 306 sc6mt astore ssl -/crlinw 1.8 def -/crendarw false def -/crfrtarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -223.200012 54 637.200012 1 0 0 0.9774 145 62.220825 sc6mt astore ssl -/crendarw true def -/crfrtarw false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 280.199982 0 54 414 1 0 0 0.9774 144 62.220825 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(Y ) [10.672001 0 0 0] 50 662 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1 0 0 0.9774 158 36.220825] dotx -(X ) [10.671997 0 0 0] 398 416 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1.173709 0 0 0.892327 9.600845 103.791786] dotx -/txtdraw true def -/txlndraw true def -(. ) [10.007996 0 0 0] 73 583 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 210 -46] dotx -/txtdraw true def -/txlndraw true def -(1 ) [7.783997 0 0 0] 63 493 /Helvetica-Bold [ 14 1 mul 0 0 14 0 0 ] [1 0 0 1 213 42] dotx -/txtdraw true def -/txlndraw true def -(. ) [10.007996 0 0 0] 73 583 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 336 44] dotx -/txtdraw true def -/txlndraw true def -(2 ) [7.783997 0 0 0] 81 550 /Helvetica-Bold [ 14 1 mul 0 0 14 0 0 ] [1 0 0 1 321 75] dotx -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av54129.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av54129.gif deleted file mode 100755 index 1feb9709d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av54129.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av54139.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av54139.eps deleted file mode 100755 index 7ca46db42..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av54139.eps +++ /dev/null @@ -1,392 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Wed Sep 29 14:23:56 1993 -%%For: kashy -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 297 237 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /arwlen 6 def /arw 4 def /arow { - gsave newpath moveto lineto unpagectm concat { - - } { - - } { - - } { - - } pathforall newpath 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath crlinalph setalpha strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - crstrpat findfont exch strwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /arwpath { - sc7mt currentmatrix pop gsave newpath moveto lineto unpagectm dup concat { - - } { - - } { - - } { - - } pathforall grestore unpagectm 5 -1 roll concat 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath sc7mt setmatrix -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 296.210358 236.994141 rectclip --195.399994 -463.264465 translate -195.399994 463.264465 296.210358 236.994141 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 2.412863e-35 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 27 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -/crlinw 1.1 def -/crendarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 342 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 324 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 306 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 288 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 270 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 252 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 234 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 216 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 198 1 0 0 1 60 306 sc6mt astore ssl -/crlinw 1.8 def -/crendarw false def -/crfrtarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -223.200012 54 637.200012 1 0 0 0.9774 145 62.220825 sc6mt astore ssl -/crendarw true def -/crfrtarw false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 280.199982 0 54 414 1 0 0 0.9774 144 62.220825 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(Y ) [10.672001 0 0 0] 50 662 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1 0 0 0.9774 158 36.220825] dotx -(X ) [10.671997 0 0 0] 398 416 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1.173709 0 0 0.892327 9.600845 103.791786] dotx -/txtdraw true def -/txlndraw true def -(. ) [10.007996 0 0 0] 73 583 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 210 -46] dotx -/txtdraw true def -/txlndraw true def -(1 ) [7.783997 0 0 0] 63 493 /Helvetica-Bold [ 14 1 mul 0 0 14 0 0 ] [1 0 0 1 213 42] dotx -/txtdraw true def -/txlndraw true def -(. ) [10.007996 0 0 0] 73 583 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 354 44] dotx -/txtdraw true def -/txlndraw true def -(2 ) [7.783997 0 0 0] 81 550 /Helvetica-Bold [ 14 1 mul 0 0 14 0 0 ] [1 0 0 1 339 75] dotx -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av54139.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av54139.gif deleted file mode 100755 index 0435cd6ae..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av54139.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av64129.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av64129.eps deleted file mode 100755 index 702016ea8..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av64129.eps +++ /dev/null @@ -1,392 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Wed Sep 29 14:37:24 1993 -%%For: kashy -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 297 237 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /arwlen 6 def /arw 4 def /arow { - gsave newpath moveto lineto unpagectm concat { - - } { - - } { - - } { - - } pathforall newpath 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath crlinalph setalpha strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - crstrpat findfont exch strwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /arwpath { - sc7mt currentmatrix pop gsave newpath moveto lineto unpagectm dup concat { - - } { - - } { - - } { - - } pathforall grestore unpagectm 5 -1 roll concat 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath sc7mt setmatrix -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 296.210358 236.994141 rectclip --195.399994 -463.264465 translate -195.399994 463.264465 296.210358 236.994141 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 2.412863e-35 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 27 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -/crlinw 1.1 def -/crendarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 342 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 324 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 306 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 288 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 270 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 252 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 234 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 216 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 198 1 0 0 1 60 306 sc6mt astore ssl -/crlinw 1.8 def -/crendarw false def -/crfrtarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -223.200012 54 637.200012 1 0 0 0.9774 145 62.220825 sc6mt astore ssl -/crendarw true def -/crfrtarw false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 280.199982 0 54 414 1 0 0 0.9774 144 62.220825 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(Y ) [10.672001 0 0 0] 50 662 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1 0 0 0.9774 158 36.220825] dotx -(X ) [10.671997 0 0 0] 398 416 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1.173709 0 0 0.892327 9.600845 103.791786] dotx -/txtdraw true def -/txlndraw true def -(. ) [10.007996 0 0 0] 73 583 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 228 -46] dotx -/txtdraw true def -/txlndraw true def -(1 ) [7.783997 0 0 0] 63 493 /Helvetica-Bold [ 14 1 mul 0 0 14 0 0 ] [1 0 0 1 231 42] dotx -/txtdraw true def -/txlndraw true def -(. ) [10.007996 0 0 0] 73 583 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 336 44] dotx -/txtdraw true def -/txlndraw true def -(2 ) [7.783997 0 0 0] 81 550 /Helvetica-Bold [ 14 1 mul 0 0 14 0 0 ] [1 0 0 1 321 75] dotx -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av64129.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av64129.gif deleted file mode 100755 index ab51765b1..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av64129.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av64139.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av64139.eps deleted file mode 100755 index 4eb75b600..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av64139.eps +++ /dev/null @@ -1,392 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Wed Sep 29 14:24:16 1993 -%%For: kashy -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 297 237 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /arwlen 6 def /arw 4 def /arow { - gsave newpath moveto lineto unpagectm concat { - - } { - - } { - - } { - - } pathforall newpath 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath crlinalph setalpha strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - crstrpat findfont exch strwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /arwpath { - sc7mt currentmatrix pop gsave newpath moveto lineto unpagectm dup concat { - - } { - - } { - - } { - - } pathforall grestore unpagectm 5 -1 roll concat 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath sc7mt setmatrix -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 296.210358 236.994141 rectclip --195.399994 -463.264465 translate -195.399994 463.264465 296.210358 236.994141 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 2.412863e-35 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 27 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -/crlinw 1.1 def -/crendarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 342 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 324 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 306 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 288 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 270 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 252 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 234 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 216 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 198 1 0 0 1 60 306 sc6mt astore ssl -/crlinw 1.8 def -/crendarw false def -/crfrtarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -223.200012 54 637.200012 1 0 0 0.9774 145 62.220825 sc6mt astore ssl -/crendarw true def -/crfrtarw false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 280.199982 0 54 414 1 0 0 0.9774 144 62.220825 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(Y ) [10.672001 0 0 0] 50 662 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1 0 0 0.9774 158 36.220825] dotx -(X ) [10.671997 0 0 0] 398 416 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1.173709 0 0 0.892327 9.600845 103.791786] dotx -/txtdraw true def -/txlndraw true def -(. ) [10.007996 0 0 0] 73 583 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 228 -46] dotx -/txtdraw true def -/txlndraw true def -(1 ) [7.783997 0 0 0] 63 493 /Helvetica-Bold [ 14 1 mul 0 0 14 0 0 ] [1 0 0 1 231 42] dotx -/txtdraw true def -/txlndraw true def -(. ) [10.007996 0 0 0] 73 583 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 354 44] dotx -/txtdraw true def -/txlndraw true def -(2 ) [7.783997 0 0 0] 81 550 /Helvetica-Bold [ 14 1 mul 0 0 14 0 0 ] [1 0 0 1 339 75] dotx -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av64139.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av64139.gif deleted file mode 100755 index ab8e14a6e..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av64139.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av74129.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av74129.eps deleted file mode 100755 index a00732a65..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av74129.eps +++ /dev/null @@ -1,392 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Wed Sep 29 14:36:57 1993 -%%For: kashy -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 297 237 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /arwlen 6 def /arw 4 def /arow { - gsave newpath moveto lineto unpagectm concat { - - } { - - } { - - } { - - } pathforall newpath 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath crlinalph setalpha strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - crstrpat findfont exch strwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /arwpath { - sc7mt currentmatrix pop gsave newpath moveto lineto unpagectm dup concat { - - } { - - } { - - } { - - } pathforall grestore unpagectm 5 -1 roll concat 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath sc7mt setmatrix -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 296.210358 236.994141 rectclip --195.399994 -463.264465 translate -195.399994 463.264465 296.210358 236.994141 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 2.412863e-35 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 27 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -/crlinw 1.1 def -/crendarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 342 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 324 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 306 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 288 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 270 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 252 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 234 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 216 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 198 1 0 0 1 60 306 sc6mt astore ssl -/crlinw 1.8 def -/crendarw false def -/crfrtarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -223.200012 54 637.200012 1 0 0 0.9774 145 62.220825 sc6mt astore ssl -/crendarw true def -/crfrtarw false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 280.199982 0 54 414 1 0 0 0.9774 144 62.220825 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(Y ) [10.672001 0 0 0] 50 662 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1 0 0 0.9774 158 36.220825] dotx -(X ) [10.671997 0 0 0] 398 416 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1.173709 0 0 0.892327 9.600845 103.791786] dotx -/txtdraw true def -/txlndraw true def -(. ) [10.007996 0 0 0] 73 583 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 246 -46] dotx -/txtdraw true def -/txlndraw true def -(1 ) [7.783997 0 0 0] 63 493 /Helvetica-Bold [ 14 1 mul 0 0 14 0 0 ] [1 0 0 1 249 42] dotx -/txtdraw true def -/txlndraw true def -(. ) [10.007996 0 0 0] 73 583 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 336 44] dotx -/txtdraw true def -/txlndraw true def -(2 ) [7.783997 0 0 0] 81 550 /Helvetica-Bold [ 14 1 mul 0 0 14 0 0 ] [1 0 0 1 321 75] dotx -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av74129.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av74129.gif deleted file mode 100755 index 61a46b135..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av74129.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av74139.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av74139.eps deleted file mode 100755 index b6f6805ec..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av74139.eps +++ /dev/null @@ -1,392 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Wed Sep 29 14:24:44 1993 -%%For: kashy -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 297 237 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /arwlen 6 def /arw 4 def /arow { - gsave newpath moveto lineto unpagectm concat { - - } { - - } { - - } { - - } pathforall newpath 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath crlinalph setalpha strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - crstrpat findfont exch strwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /arwpath { - sc7mt currentmatrix pop gsave newpath moveto lineto unpagectm dup concat { - - } { - - } { - - } { - - } pathforall grestore unpagectm 5 -1 roll concat 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath sc7mt setmatrix -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 296.210358 236.994141 rectclip --195.399994 -463.264465 translate -195.399994 463.264465 296.210358 236.994141 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 2.412863e-35 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 27 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -/crlinw 1.1 def -/crendarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 342 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 324 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 306 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 288 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 270 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 252 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 234 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 216 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 198 1 0 0 1 60 306 sc6mt astore ssl -/crlinw 1.8 def -/crendarw false def -/crfrtarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -223.200012 54 637.200012 1 0 0 0.9774 145 62.220825 sc6mt astore ssl -/crendarw true def -/crfrtarw false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 280.199982 0 54 414 1 0 0 0.9774 144 62.220825 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(Y ) [10.672001 0 0 0] 50 662 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1 0 0 0.9774 158 36.220825] dotx -(X ) [10.671997 0 0 0] 398 416 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1.173709 0 0 0.892327 9.600845 103.791786] dotx -/txtdraw true def -/txlndraw true def -(. ) [10.007996 0 0 0] 73 583 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 246 -46] dotx -/txtdraw true def -/txlndraw true def -(1 ) [7.783997 0 0 0] 63 493 /Helvetica-Bold [ 14 1 mul 0 0 14 0 0 ] [1 0 0 1 249 42] dotx -/txtdraw true def -/txlndraw true def -(. ) [10.007996 0 0 0] 73 583 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 354 44] dotx -/txtdraw true def -/txlndraw true def -(2 ) [7.783997 0 0 0] 81 550 /Helvetica-Bold [ 14 1 mul 0 0 14 0 0 ] [1 0 0 1 339 75] dotx -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av74139.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av74139.gif deleted file mode 100755 index 47632b573..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av74139.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av84129.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av84129.eps deleted file mode 100755 index 90cdf33c9..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av84129.eps +++ /dev/null @@ -1,392 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Wed Sep 29 16:37:22 1993 -%%For: kashy -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 297 237 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /arwlen 6 def /arw 4 def /arow { - gsave newpath moveto lineto unpagectm concat { - - } { - - } { - - } { - - } pathforall newpath 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath crlinalph setalpha strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - crstrpat findfont exch strwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /arwpath { - sc7mt currentmatrix pop gsave newpath moveto lineto unpagectm dup concat { - - } { - - } { - - } { - - } pathforall grestore unpagectm 5 -1 roll concat 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath sc7mt setmatrix -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 297 238 rectclip --195.399994 -463.264435 translate -195.399994 463.264435 296.210358 236.994171 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 2.412863e-35 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -/crlinw 1.1 def -/crendarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.399994 0 168.599976 342 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 324 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 306 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 288 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 270 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 252 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 234 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 216 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 198 1 0 0 1 60 306 sc6mt astore ssl -/crlinw 1.8 def -/crendarw false def -/crfrtarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -222.950317 54 636.950317 1 0 0 0.9774 145 62.220825 sc6mt astore ssl -/crendarw true def -/crfrtarw false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 280.199982 0 54 414 1 0 0 0.9774 144 62.220825 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(Y ) [10.672001 0 0 0] 50 662 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1 0 0 0.9774 158 36.220825] dotx -(X ) [10.671997 0 0 0] 398 416 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1.173709 0 0 0.892327 9.600845 103.791786] dotx -/txtdraw true def -/txlndraw true def -(. ) [10.007996 0 0 0] 73 583 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 264 -46] dotx -/txtdraw true def -/txlndraw true def -(1 ) [7.783997 0 0 0] 63 493 /Helvetica-Bold [ 14 1 mul 0 0 14 0 0 ] [1 0 0 1 267 42] dotx -/txtdraw true def -/txlndraw true def -(. ) [10.007996 0 0 0] 73 583 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 336 44] dotx -/txtdraw true def -/txlndraw true def -(2 ) [7.783997 0 0 0] 81 550 /Helvetica-Bold [ 14 1 mul 0 0 14 0 0 ] [1 0 0 1 321 75] dotx -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av84129.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av84129.gif deleted file mode 100755 index 1d5de4394..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av84129.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av84139.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av84139.eps deleted file mode 100755 index 2b1db94c9..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av84139.eps +++ /dev/null @@ -1,392 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Wed Sep 29 14:25:05 1993 -%%For: kashy -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 297 237 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /arwlen 6 def /arw 4 def /arow { - gsave newpath moveto lineto unpagectm concat { - - } { - - } { - - } { - - } pathforall newpath 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath crlinalph setalpha strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - crstrpat findfont exch strwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /arwpath { - sc7mt currentmatrix pop gsave newpath moveto lineto unpagectm dup concat { - - } { - - } { - - } { - - } pathforall grestore unpagectm 5 -1 roll concat 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath sc7mt setmatrix -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 296.210358 236.994141 rectclip --195.399994 -463.264465 translate -195.399994 463.264465 296.210358 236.994141 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 2.412863e-35 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 27 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -/crlinw 1.1 def -/crendarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 342 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 324 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 306 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 288 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 270 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 252 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 234 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 216 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 198 1 0 0 1 60 306 sc6mt astore ssl -/crlinw 1.8 def -/crendarw false def -/crfrtarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -223.200012 54 637.200012 1 0 0 0.9774 145 62.220825 sc6mt astore ssl -/crendarw true def -/crfrtarw false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 280.199982 0 54 414 1 0 0 0.9774 144 62.220825 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(Y ) [10.672001 0 0 0] 50 662 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1 0 0 0.9774 158 36.220825] dotx -(X ) [10.671997 0 0 0] 398 416 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1.173709 0 0 0.892327 9.600845 103.791786] dotx -/txtdraw true def -/txlndraw true def -(. ) [10.007996 0 0 0] 73 583 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 264 -46] dotx -/txtdraw true def -/txlndraw true def -(1 ) [7.783997 0 0 0] 63 493 /Helvetica-Bold [ 14 1 mul 0 0 14 0 0 ] [1 0 0 1 267 42] dotx -/txtdraw true def -/txlndraw true def -(. ) [10.007996 0 0 0] 73 583 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 354 44] dotx -/txtdraw true def -/txlndraw true def -(2 ) [7.783997 0 0 0] 81 550 /Helvetica-Bold [ 14 1 mul 0 0 14 0 0 ] [1 0 0 1 339 75] dotx -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av84139.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av84139.gif deleted file mode 100755 index 87207e249..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av84139.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av94129.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av94129.eps deleted file mode 100755 index d4a0497f6..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av94129.eps +++ /dev/null @@ -1,392 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Wed Sep 29 14:26:31 1993 -%%For: kashy -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 297 237 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /arwlen 6 def /arw 4 def /arow { - gsave newpath moveto lineto unpagectm concat { - - } { - - } { - - } { - - } pathforall newpath 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath crlinalph setalpha strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - crstrpat findfont exch strwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /arwpath { - sc7mt currentmatrix pop gsave newpath moveto lineto unpagectm dup concat { - - } { - - } { - - } { - - } pathforall grestore unpagectm 5 -1 roll concat 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath sc7mt setmatrix -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 296.210358 236.994141 rectclip --195.399994 -463.264465 translate -195.399994 463.264465 296.210358 236.994141 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 2.412863e-35 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 27 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -/crlinw 1.1 def -/crendarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 342 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 324 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 306 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 288 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 270 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 252 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 234 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 216 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 198 1 0 0 1 60 306 sc6mt astore ssl -/crlinw 1.8 def -/crendarw false def -/crfrtarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -223.200012 54 637.200012 1 0 0 0.9774 145 62.220825 sc6mt astore ssl -/crendarw true def -/crfrtarw false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 280.199982 0 54 414 1 0 0 0.9774 144 62.220825 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(Y ) [10.672001 0 0 0] 50 662 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1 0 0 0.9774 158 36.220825] dotx -(X ) [10.671997 0 0 0] 398 416 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1.173709 0 0 0.892327 9.600845 103.791786] dotx -/txtdraw true def -/txlndraw true def -(. ) [10.007996 0 0 0] 73 583 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 282 -46] dotx -/txtdraw true def -/txlndraw true def -(1 ) [7.783997 0 0 0] 63 493 /Helvetica-Bold [ 14 1 mul 0 0 14 0 0 ] [1 0 0 1 285 42] dotx -/txtdraw true def -/txlndraw true def -(. ) [10.007996 0 0 0] 73 583 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 336 44] dotx -/txtdraw true def -/txlndraw true def -(2 ) [7.783997 0 0 0] 81 550 /Helvetica-Bold [ 14 1 mul 0 0 14 0 0 ] [1 0 0 1 321 75] dotx -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av94129.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av94129.gif deleted file mode 100755 index 35c36972d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av94129.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av94139.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av94139.eps deleted file mode 100755 index d83ae6479..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av94139.eps +++ /dev/null @@ -1,392 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Wed Sep 29 14:25:25 1993 -%%For: kashy -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 297 237 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /arwlen 6 def /arw 4 def /arow { - gsave newpath moveto lineto unpagectm concat { - - } { - - } { - - } { - - } pathforall newpath 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath crlinalph setalpha strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - crstrpat findfont exch strwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /arwpath { - sc7mt currentmatrix pop gsave newpath moveto lineto unpagectm dup concat { - - } { - - } { - - } { - - } pathforall grestore unpagectm 5 -1 roll concat 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath sc7mt setmatrix -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 296.210358 236.994141 rectclip --195.399994 -463.264465 translate -195.399994 463.264465 296.210358 236.994141 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 2.412863e-35 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 27 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -/crlinw 1.1 def -/crendarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 342 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 324 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 306 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 288 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 270 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 252 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 234 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 216 1 0 0 1 60 306 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 227.400024 0 168.599976 198 1 0 0 1 60 306 sc6mt astore ssl -/crlinw 1.8 def -/crendarw false def -/crfrtarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -223.200012 54 637.200012 1 0 0 0.9774 145 62.220825 sc6mt astore ssl -/crendarw true def -/crfrtarw false def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 280.199982 0 54 414 1 0 0 0.9774 144 62.220825 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(Y ) [10.672001 0 0 0] 50 662 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1 0 0 0.9774 158 36.220825] dotx -(X ) [10.671997 0 0 0] 398 416 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1.173709 0 0 0.892327 9.600845 103.791786] dotx -/txtdraw true def -/txlndraw true def -(. ) [10.007996 0 0 0] 73 583 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 282 -46] dotx -/txtdraw true def -/txlndraw true def -(1 ) [7.783997 0 0 0] 63 493 /Helvetica-Bold [ 14 1 mul 0 0 14 0 0 ] [1 0 0 1 285 42] dotx -/txtdraw true def -/txlndraw true def -(. ) [10.007996 0 0 0] 73 583 /Helvetica-Bold [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 354 44] dotx -/txtdraw true def -/txlndraw true def -(2 ) [7.783997 0 0 0] 81 550 /Helvetica-Bold [ 14 1 mul 0 0 14 0 0 ] [1 0 0 1 339 75] dotx -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av94139.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av94139.gif deleted file mode 100755 index 4e4b85ad8..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob08av94139.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob09.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob09.eps deleted file mode 100755 index 7e56d714a..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob09.eps +++ /dev/null @@ -1,859 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: 3chg.eps -%%CreationDate: 7/26/1996 -%%Pages: 0 -%%BoundingBox:88 232 490 623 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -1614 9644 t -0 sg -6806 -6615 sc -392 381 true [392 0 0 381 0 0] -{<0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000002000400000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000400020000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000400020000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000220E4891C088421000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000221188922088421000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000014108510208842100000000000 -0000000000000000000000000000000000000000000000000000000000000000 -00000000080C8210208842100000000000000000000000000000000000000000 -00000000000000000000000000000000000000000008038211C0884210000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000001400851200884210000000000000000000000000000000000000 -000000000000000000000000000000000000000000000022108892208CA41000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000220F0891C04B182000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000004000 -2000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000010002000400000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -00081C000000000040E000000000003800000000000E00000000000038000000 -0000040E00000000002070000000000000000822000000000041100000000000 -4400000000001100000000000044000000000004110000000000208800000000 -0000000801000000000041100000000000020000000000110000000000000200 -0000000004110000000000200400000000000000080100000000004110000000 -0000020000000000110000000000000200000000000411000000000020040000 -000000000F080100000000784110000000001E02000000000011000000000000 -0200000000000411000000000020040000000000000008220000000000411000 -0000000044000000000011000000000000440000000000041100000000002088 -00000000000000083C0000000000411000000000007800000000001100000000 -00007800000000000411000000000020F0000000000000002820000000000141 -1000000000004000000000001100000000000040000000000014110000000000 -A0800000000000000018200000000000C1100000000000400000000000110000 -000000004000000000000C110000000000608000000000000000083F00000000 -0040E000000000007E00000000000E0000000000007E0000000000040E000000 -000020FC00000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000200000000000010000000000000400000 -0000000200000000000008000000000000200000000000010000000000000000 -0200000000000010000000000000400000000000020000000000000800000000 -0000200000000000010000000000000000020000000000001000000000000040 -0000000000020000000000000800000000000020000000000001000000000000 -0000020000000000001000000000000040000000000002000000000000080000 -0000000020000000000001000000000000000002004010020040100200400802 -0040080200400802004008010040080100400801002008010020080100000000 -0000000002004010020040100200400802004008020040080200400801004008 -0100400801002008010020080100000000000000000200401002004010020040 -0802004008020040080200400801004008010040080100200801002008010000 -0000000000000200401002004010020040080200400802004008020040080100 -4008010040080100200801002008010000000000000000FFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC00000000000000800000000000000000000000000000000000000000000000 -0000000000000000000000000000000000040000000000000080000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -00000400000007E3800080000000000000000000000000000000000000000000 -0000000000000000000000000000000000000004000000040440008000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000004000000020440008000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000400000001044000800300 -0000000000000000000000000002000000000000000000000000000020000000 -00000000000004000000008440FF800C00000000000000000000000000000180 -0000000000000000000000000020000000000000000000040000000044400080 -7000000000000000000000000000000040000000000000000000000000002000 -0000000000000000040000000424400081800000000000000000000000000000 -0030000000000000000000000000004000000000000000000004000000042440 -0082000000000000000000000000000000000C00000000000000000000000000 -4000000000000000000004000000024440008000000000000000000000000000 -0000000200000000000000000000000000400000000000000000000400000001 -8380008000000000000000000000000000000000010000000000000000000000 -0000400000000000000000000400000000000000800000000000000000000000 -0000000000008000000000000000000000000040000000000000000000040000 -0000000000800000000000000000000000000000000000400000000000000000 -0000000080000000000000000000040000000000000080000000000000000000 -0000000000000000200000000000000000000000008000000000000000000004 -0000000000000080000000000000000000000000000000000010000000000000 -0000000000008000000000000000000004000000000000008000000000000000 -0000000000000000000000000000000000000000000000800000000000000000 -00040000000000000080000000000000000000000000000000000078208E0000 -0000000000000001000000000000000000000400000000000000800000000000 -0000000000000000000000008420110000000000000000000100000000000000 -000000040000000000000F800000000000000000000000000000000000842000 -8000000000000000000100000000000000000000040000000000000080000000 -0000000000000000000000000000841000800000000000000000020000000000 -0000000000040000000000000080000000000000000000000000000000000084 -1001000000000000000000020000000000000000000004000000000000008000 -0000000000000000000000000000000078080600000000000000000002000000 -0000000000000004000000000000008000000000000000000000000000000000 -0084080100000000000000000004000000000000000000000400000000000000 -8000000000000000000000000000000000008404008000000000000000000400 -0000000000000000000400000000000000800000000000000000000000000000 -0000008404110000000000000000000400000000000000000000040000000000 -000080000000000000000000000000000000000078FC0E000000000000000000 -0800000000000000000000040000000000000080000000000000000000000000 -0000000000000000000000000000000000080000000000000000000004000000 -0000000080000000000000000000000000000000000000000000000000000000 -0000080000000000000000000004000000000000008000000000000000000000 -0000000000000000000000000000000000000010000000000000000000000400 -0000000000008000000000000000000000000000000000000000000000000000 -000000001000000000000000000000040000000000000F800000000000000000 -0000000000000000000000100000000000000000002000000000000000000000 -0400000000000000800000000000000000000000000000000000000010000000 -0000000000002000000000000000000000040000000000000080000000000000 -0000000000000000000000000008000000000000000000400000000000000000 -0000040000000000000080000000000000000000000000000000000000000400 -0000000000000000400000000000000000000004000000000000008000000000 -0000000000000000000000000000000400000000000000000080000000000000 -0000000004000000000000008000000000000000000000000000000000000000 -0200000000000000000080000000000000000000000400000000000000800000 -0000000000000000000000000000000000010000000000000000000000000000 -0000000000000400000000000000800000000000000000000000000000000000 -0000010000000000000070708400000000000000000000040000000000000080 -0000000000000000000000000000000000000000800000000000008888040000 -0000000000000000040000000000000080000000000000000000000000000000 -0000000000400000000000000404040000000000000000000004000000000000 -0080000000000000000000000000000000000000000040000000000000040402 -0000000000000000000004000000000000008000000000000000000202078840 -0000000000000020000000000000040802000000000000000000000400000000 -0000008000000000000000000202084040000000000000002000000000000088 -300100000000000000000000040000000000000F800000000000000000020208 -40400000000000000010000000000000F0080100000000000000000000040000 -0000000000800000000000000000020208404000000000000000100000000000 -0080040080000000000000000000040000000000000080000000000000000002 -0208404000000000000000080000000000008088008000000000000000000004 -0000000000000080000000000000000002020780400000000000000008000000 -000000FC701F8000000000000000000004000000000000008000000000000000 -0002020840400000000000000004000000000000000000000000000000000000 -0004000000000000008000000000000000000A0A084140000000000000000400 -0000000000000000000000000000000000000400000000000000800000000000 -00000FC6060840C0000000000000000200000000000000000000000000000000 -00000004000000000000008000000000000001F0020207804180000000000000 -0200000000000000000000000000000000000000040000000000000080000000 -0000001E00000000000078000000000000010000000000000080000000000000 -0000000000040000000000000080000000000000E00000000000000780000000 -0000010000000000000100000000000000000000000004000000000000008000 -0000000003000000000000000060000000000001000000000000020000000000 -0000000000000004000000000000008000000000001C00000000000000001800 -0000000000800000000000020000000000000000000000000400000000000000 -8000000000006000000000000000000400000000000080000000000004000000 -000000000000000000040000000000000F800000000001800000000000000000 -0300000000000040000000000004000000000000000000000000040000000000 -000080000000000600000000000000000000C000000000004000000000000400 -0000000000000000000000040000000000000080000000001800000000000000 -0000003000000000004000000000000800000000000000000000000004000000 -000000008000000000E000000000000000000000080000000000200000000000 -0800000000000000000000000004000000000000008000000007000000000000 -0000000000060000000000200000000000100000000000000000000000000400 -0000000000008000000008000000000000000000000001800000000020000000 -0000100000000000000000000000000400000000000000800000003000000000 -0000000000000000400000000010000000000020000000000000000000000000 -0400000000000000800000004000000000000000000000000030000000001000 -00000000200000000E0F10C00000000000040000000000000080000030000000 -0000000000000000000008000000001000000000004000000011108120000000 -0000040000000103800080000048000000000000000000000000000400000000 -1000000000008000000000908010000000000004000000010440008000008000 -000000000000000000000000020000000008000000000080000000009080D000 -0000000004000000010020008000008000000000000000000000000000010000 -00000800000000010000000001108133FF800000000400000001002000800000 -8000000000000000000000000000008000000008000000000200000000060F02 -10007C00000004000000010020FF800000800000000000000000000000000000 -6000000008000000000400000000011082100003C00000040000000104400080 -0000480000000000000000000000000000100000000800000000040000000000 -90821000003C0000040000000107800080000C30000000000000000000000000 -0000100000000800000000080000000011108120000003C00004000000050400 -0080001000000000000000000000000000000008000000040000000008000000 -038E0F00C0000000300004000000030400008000200000000000000000000000 -00000000040000000400000000100000000C000000000000000C000400000001 -07E0008000400000000000000000000000000000000068000004000000002000 -0000700000000000000003000400000000000000800080000000000000000000 -00000000000000980000040000000040000003800000000000000000C0040000 -0000000000800100000000000000000000000000000000010800000400000000 -4000000C00000000000000000020040000000000000080020000000000000000 -0000000000000000010800000400000000800000300000000000000000001804 -00000000000000800C0000000000000000000000000000000001080000020000 -0000800000400000000000000000000604000000000000008010000000000000 -0000000000000000000001080000020000000080000080000000000000000000 -0104000000000000008020000000000000000000000000000000000098000002 -000000010000010000000000000000000000840000000000000F804000000000 -0000000000000000000000000068000002000000010000060000000000000000 -0000000400000000000000808000000000000000000000000000000000000800 -0002000000020000080000000000000000000000040000000000000081000000 -0000000000000000000000000000000800000200000004000030000000000000 -0000000000040000000000000082000000000000000000000000000000000000 -00000002000000080000C0000000000000000000000004000000000000008000 -0000000000000000000000000000000000020000010000000800030000000000 -0000000000000004000000000000008000000000000000000000000000000000 -0000010000010000001000040000000000000000000000000400000000000000 -8000000000000000000000000000000000000001000001000000200008000000 -0000000000000000000400000000000000800000000000000000000000000000 -0000000000800001000000200010000000000000000000000000040000000000 -0000800000000000000000000000000000000000000080000100000040006000 -0000000000000000000000040000000000000080000000000000000000000000 -0000000000000040000100000080008000000000000000000000000004000000 -0000000080000000000000000000000000000000000000002000010000008001 -0000000000000000000000000004000000000000008000000000000000000000 -0000000000000000002000010000010002000000000000000000000000000400 -0000000000008000000000000000000000000000000000000000100001000001 -000200000000000000000000000000040000000000000F800000000000000000 -0000000000000000000000100001000002000C00000000000000000000000000 -0400000000000000800000000000000000000000000000000000000008000100 -0002001000000000000000000000000000040000000000000080000000000000 -0000000000000000000000000008000100000400200000000000000000000000 -0000040000000000000080000000000000000000000000000000000000000800 -0100000400400000000000000000000000000004000000000000008000000000 -0000000000000000000000000000000400010000040080000000000000000000 -0000000004000000000000008000000000000000000000000000000000000000 -0400010000080100000000000000000000000000000400000000000000800000 -0000000000000000000000000000000000020001000008010000000000000000 -0000000000000400000000000000800000000000000000000000000000000000 -0000020001000008020000000000000000000000000000040000000000000080 -000000000000000000000000000000000000000100010000100400000007FF00 -0000000000000000040000000000000080000000000000000000000000000000 -0000000001000100002008000000F800F080C238000000000004000000000000 -0080000000000000000000000000000000000000000080010000201000001F00 -0000812044000000000004000000000000008000000000000000000000000000 -000000000000008001000040100000E000000082100200000000000400000000 -0000008000000000000000000000000000000000000000008001000040200003 -000000008210020000000000040000000000000F800000000000000000000000 -000000000000000000800100008040000C000000008210040000000000040000 -0000000000800000000000000000000000000000000000000000800100008080 -0070000000008320180000000000040000000000000080000000000000000000 -000000000000000000000040010001008000800000000082C004000000000004 -0000000000000080000000000000000000000000000000000000000040010001 -0100030000000002820002000000000004000000000000008000000000000000 -000000000000000000000000004001000202000C000000000181204400000000 -0004000000000000008000000000000000000000000000000000000000002001 -0002020010000000000080C03800000000000400000000000000800000000000 -000000000000000000000000000000200100020400200000F800000000000000 -00000004000000000000008000000000000000000003F3F08210000000000000 -20010004040040003F07E0000000000000000000040000000000000080000000 -00000000000002020080100000000000002001000408018003C0001F00000000 -0000000000040000000000000080000000000000000000010100801000000000 -0000200100081002001C000000F0000000000000000004000000000000008000 -0000000000000000008080800800000000000010010008200400E00000000C00 -0001000000000004000000000000008000000000000000000000404080080000 -000000001001000840180300000000030000010000000000040000000000000F -8000000000000000000000202080040000000000001001001040200C00000000 -0080000080000000000400000000000000800000000000000000000212108004 -0000000000001001001080203000000000006000004000000000040000000000 -0000800000000000000000000212128002400000000000080100208040400000 -0000001800002000000000040000000000000080000000000000000000012121 -80023C0000000000080100210040800000000000060000100000000004000000 -000000008000000000000000000000C0C0807E03800000000008020021008300 -0000000000010000080000000004000000000000008000000000000000000000 -0000000000700000000004020042010400000000000000C00008000000000400 -0000000000008000000000000000000030000000000008000000000402004202 -0800000000000000200004000000000400000000000000800000000000000000 -00C0000000000004000000000402004404100000000000000020000200000000 -0400000000000000800000000000000000010000000000000300000000040200 -8408200000000000000010000100000000040000000103800080000000000000 -00000200000000000000C0000000040200881040000000000000000800010000 -000004000000010440008000000000000000000C000000000000002000000002 -0200882080000000000000000400008000000004000000010440008000000000 -0000000030000000000000002000000002020110410000000000000000020000 -400000000400000001044000800000000000000000C000000000000000100000 -00020201104200000000000000000100004000000004000000010440FF800000 -00000000000100000000000000000C0000000202012084000000000000000000 -8000200000000400000001044000800000000000000002000000000000000002 -0000000202022088000000000000000000400010000000040000000104400080 -000000000000000C000000000000000001800000020204411000000000000000 -0000200010000000040C02000504400080000000000000001000000000000000 -0000400000020204412000000000000000000010000800000004030200030440 -0080000000000000002000000000000000000020000002040842200000000000 -000000001000080000000400CC00010380008000000000000000400000000000 -0000000020000002040884400000000000000000000800080000000400300000 -0000008000000000000000800000000000000000001000000204088480000000 -0000000000000000040000000400C00000000000800000000000000100000000 -0000000000000800000204088880000007E00000000000708E04000000040300 -0000000000800000000000000200000000000000000000040000020409090000 -00F81E0000000000881102000000040C00000000000080000000000000040000 -00000000000000000400000204091200001F0000000000000088110200000004 -0000000000000080000000000000080000000000000000000002000001040912 -0000E000001E1C23800088110100000004000000000000008000000000000010 -00000000003FF000000001000001040A24000100000021220440008811010000 -00040000000000000080000000000000100000000003C00FE000000080000104 -122400060000002101044000881100800000040460000000000F800000000000 -0020000000001C00001E00000080000104144800180000002101044000881100 -8000000408900000000000800000000000004000000000E0000001C000004000 -01041448002000000F2102044000881100800000040890000000000080000000 -00000040000000070000000030000020000104149000400000001E0C04400088 -1100400000040910000000000080000000000000800000001800000000080000 -10000084189000400000002102044000700E0040000004092000000000008000 -00000000010000000020000000000600000800008428A0008000000021010440 -000000004000000407E000000000008000000000000100000000400000000001 -8000080000842920010000000021220440000000004000000400100000000000 -8000000000000200000000800000000000400004000084314002000000001E1C -0380000000004000000400000000000000800000000000040000000300000000 -0000200004000084314004000000000000000000000000200000040000000000 -0000800000000000080000000400000000000018000200008432800800000000 -0000000000000800200000040C30000000000080000000000010000000080000 -0000000004000200008432801000000000000000000000080020000004024000 -0000000080000000000020000000100000000000000200010000885280200000 -0000000000000000080010000004018000000000008000000000002000000020 -0000000000000100008000886500C00000000000001000000004001000000402 -4000000000008000000000004000000040000000000000008000800088650100 -000000000000080000000400100000040C30000000000F800000000000400000 -0080000000000000004000400088650100000000000000040000000400100000 -0400000000000000800000000000800000010000000000000000400040008865 -0200000000000000020000000200100000040000000000000080000000000080 -000001000000000000000020002000486A020000000000000002000000020010 -0000042FF0000000000080000000000100000002000000000000000010001000 -48CA040000000000000001000000020008000004000000000000008000000000 -010000000400000001F80000000800100048CA04000000000000000080000001 -000800000400000000000000800000000002000000080000001E078000000400 -080048CA04000000000000000080000001000800000406200000000000800000 -00000200000008000000E0007000000200080048CA0800000FF0000000008000 -00010000000004091000000000008000000000040000001000000300000C0000 -0200040028CC080000700E000000004000000100000000040910000000000080 -00000000040000002000000C00000300000100040028CC100003800180000000 -4000000100160000040910000000000080000000000800000040000010000000 -C0000080040024CC10000C00004000000040000001001900000404E000000000 -008000000000080000008000002000000030000080020024D410003000003000 -0000200000010010800004000000000000008000000000080000008000004000 -000008000040020024D820004000000000000020000000801080000400000000 -00000F8000000000100000010000008000000004000020010024D8200040000E -0E0410C010000000801080000400000000000000800000000010000001000001 -0000000002000010010024D82000800011110401201000000080108000040000 -00000000008000000000200000020000020000000001000008008024D8400080 -0000808400100800000080190000040000000000000080000000002000000200 -00020000000000800004008024D84001000000808200D0080000008016000004 -07F000000000008000000000400000040000040000000000800004008014D840 -0200078100820130080000008010000004180C00000000008000000000400000 -040000080000000000400002004014D880020000061101021004000000801000 -0004200200000000008000000000800000040000100000000000200002004014 -D880040000011E01021004000000800000000400000000000000800000000080 -0000080000200000000000100002004014D88004000000900082100400000080 -080000040FF000000000008000000000800000080000400000F8000010000100 -4014D88008000011100081200400000080080000040400000000000080000000 -0100000010000040000F070000080001002014D8800800000E1F9F80C0040000 -0080100000040800000000000080000000010000001000008000100080000400 -0080200AD9001000000000000000020000008010000004080000000000008000 -00000100000020000080002000400002000040100AD900200000000000000002 -00000080100000040400000000000080000000020000002000008000C0003000 -01000020100AD900200000000000000002000000801000000403F0000000000F -800000000200000040000100010000080000800010080AD90040000000000000 -0002000000801000000404000000000000800000000200000040000100010000 -080000400008080AD90040000000000200000200000080100000040800000000 -0000800000000200000080000200020000040000400004040559004000000000 -0200000200000100100000040800000000000080000000040000008000020002 -00E0040000200004020559004000000000020000020000010020000004040000 -0000000080000000040000008000020004011802000010000202057900800000 -000001000002000001002000000403F000000000008000000004000001000004 -000406060100000800010102B900800000000001000002000001002000000400 -0000000000008000000008000001000004000408010080000400010102B90080 -0000000001000002000001002000000400000000000000800000000800000100 -0004000808010080000200008082AD0080000000000000000200000100400000 -04200200000000008000000008000001000004000810008040000200008081BD -008000000000000000020000010040000004180C000003800080000000080000 -010000040010100080400001000040815D008000000000072000020000010040 -00000407F0000004400080000000100000020000080010200080400000800040 -415480800000000008C000020000010040000004000000000020008000000010 -000002000008001020004020000040002040DE80800000000008400002000002 -0080000004000000000020008000000010000002000008002040004020000020 -001020DE808000000000064000020000020080000004000000000020FF800000 -0010000002000008002040004020000010001020AE80800000000001C0000200 -0002008000000400000000044000800000001000000200000800202000402000 -00080008106E8080000000000040000200000200800000040000000007800080 -0000001000000200000800202000802000000600041057408000000000084000 -0400000401000000040000000004000080000000200000040000100020100080 -2000000100020857404000000000078000040000040100000004000000000400 -0080000000200000040000100010100080200000008002042F40400000000002 -00000400000401000000040000000007E0008000000020000004000010001010 -0100200000004001042FA0400000000002000008000008020000000400000000 -000000800000002000000400001000100C0300200000003000821BA040000000 -0002000008000008020000000400000000000000800000002000000400001000 -10020C00200000000800420FA040000000000200000800000802000000040000 -00000000008000000020000004000010000801B000200000000400410AD02000 -0000000400001000001004000000040000000000000080000000200000040000 -1000080040004000000002002087D01000000000040000100000200800000084 -00000000000000800000004000000400000800080000004000000001001085D0 -1000000000040000100000200800000084000000000000008000000040000004 -00000800040000004000000000801045E8080000000008000020000040100000 -0104000000000000008000000040000004000008000400000040000000004008 -436808000000000800002000004010000002040000000000000F800000004000 -000400000800030000008000000000300421D404000000001000004000008020 -0000020400000000000000800000004000000400000800008000008000000000 -080411BA02000000002000004000008040000004040000000000000080000000 -4000000400000800000000000000000000060208D90200000000400000400001 -004000000804000000000000008000000080000004000004003C7E3C43000000 -00000101047C8100000000800000800001008000001004000000000000008000 -000080000004000004004240420480000000000080C46C810000000100000100 -0002010000002004000000000000008000000080000004000004004220420040 -000000000040223E408000000200000100000201000000400400000000000000 -80000000800000040000040042104203400000000000201237204000000C0000 -0200000402000000800400000000000000800000008000000400000400420842 -04C0000000000010091B10300000100000020000040200000100040000000000 -00008000000080000004000002003C043C0840000000000008090D900E000060 -0000040000080400000200040000000000000080000000800000040000020042 -424208400000000000040487C801800080000008000010080000040004000000 -0000000080000000800000040000020042424208400000000000040243E40070 -0700000010000010100000080004000000000000008000000080000004000001 -0042244204800000000000020222B2000FF80000002000002020000010000400 -00000000000F8000000080000004000001003C183C03000000000000018121DA -0000000000004000004020000060000400000000000000800000008000000400 -0001000000000000000000000000409175000000000000800000804000008000 -0400000000000000800000008000000400000080000000000000001FF8000020 -88BAC00000000001000001018000010000040000000000000080000000800000 -040000008000000000000000E007800010445D20000000000200000602000006 -0000040000000000000080000000800000020000008000000000000003000070 -0008242F18000000000400000804000008000004000000000000008000000080 -000002000000400000000000001C00000C000412178400000000180000100800 -0010000004000000000000008000000080000002000000400000000000006000 -00038004110DC200000000E00000601000006000000400000000000000800000 -0000000002000000400000000000008000000040020886F18000000300000080 -2000008000000400000000000000800000000000000200000020000000000001 -0000000020010443687000000400000100400001000000040000000000000080 -00000000000002000000200000000000020000000010008221960E0000180000 -0201800006000000040000000000000080000000600000010000002000000000 -00020000000008008110CB81C000E00000040200000800000004000000000000 -00800000009000000100000010000000000004000000000400408866E03FFF00 -0000080400001000000004000000000000008000000108000001000000080000 -0000000800000000020040843BF0000000000030080000200000000400000000 -00000F800000010000000100000008000000000010000000000100204417AC00 -00000000C0300000C0000000040000000000000080000001F800000100000004 -00000000002000000000008010220D5B000000000700C0000700000000040000 -0000000000800000010800000100000004000000000040000000000040082102 -BFC0000000180300001800000000040000000000000080000000900000010000 -00020000000000800000000000200410814EF0000000E00C0000600000000004 -0000000000000080000000600000008000000200000000008000000000002004 -0880A73E00000F00700000800000000004000000000000008000000000000000 -8000000200000000008000000000001002084051CFE000700780000300000000 -0004000000000000008000000040000000800000000000000001000000078000 -1002042028F1FFFF80F800000C00000000038400000000000000800000004000 -000080000410184700000100000078700008010410163E1F003F000000700000 -00003C0400000000000000800000004000000080000410240880000100000380 -0C00080102080D0F80FFC00000078000000003C0040000000000000080000000 -400000008000041042004000020000040002000400810402C1F000000000F800 -0000003C00040000000000000080000000400000004000FE0842004000020000 -080001000200408201307F0000003F0000000003C00004000000000000008000 -0000400000004000840842004000020000100000C00200404100CC0EFFE007C0 -000000003C000004000000000000008000000040000000400044046408800004 -00002000002001002020802381801FF8000000000FC00000040000000000000F -800000004000000040002404580F000004000040000020008010208010607C00 -0000000007F00000000400000000000000800000004000000040001402400800 -00040000400000100080101040081003E000000000F800000000040000000000 -0000800000004000000020000C02240800000400008000001000400810400608 -001F0000003F0000000000040000000000000080000000200000002000047E18 -0FC00004000080000008004008082001060000FFFFFFC0000000000004000000 -0000000080000000200000002000000000000000040000800000080040080820 -00C1000000000000000000000004000000000000008000000020000000100000 -00000000000000000000000800200408100020C0000000000000000000000400 -0000000000008000000020000000100000000000000020303070860004002004 -0408001030000000000000000000000400000000000000800000002000000010 -0000000000000020484888090004002004040400080E00000000000000000000 -0400000000038000800000002000000010000000040000002084840410800200 -2002020200060180000000000000000000040000000004400080000000200000 -0008000000040000002084840410800200200202010001007000000000000000 -0000040000000004400080000000100000000800000002000000208484081080 -0200100201010000800C00000000000000000004000000000440008000000010 -000000080000000200000020C8C8301900010010010100800040038000000000 -0000000004000000000440FF8000000010000000080000000100000020B0B008 -1600010010010080800030006000000000000000000400000000044000800000 -00100000000400000001000000A0808004100001001001008040000C00100000 -0000000000000400000000044000800000000800000004000000010000006048 -48880900010010010040400002000C0000000000000000040000000004400080 -0000000800000002000000010000002030307006000100100100402000010003 -0000000000000000040000000004400080000000080000000200000000800000 -0000000000000200100080401000008000C00000000000000004000000000380 -0080000000040000000100000000800000000000000000020010008020100000 -4000380000000000000004000000000000008000000004000000010000000080 -0000000000000000020010008020080000200006000000000000000400000000 -0000008000000004000000010000000040000000000000000002001000802008 -0000100001000000000000000400000000000000800000000400000001000000 -00400000010000800000040010008010040000080000C0000000000000040000 -0000000000800000000200000000800000002000000100008000000400100080 -1004000004000030000000000000040000000000000080000000020000000080 -0000002000000100008000000400200080100400000200000C00000000000004 -0000000000000080000000020000000080000000200000010000400000080020 -0080080200000180000300000000000004000000000000008000000002000000 -0080000000100000010000400000080020008008020000004000008000000000 -00040000000000000F8000000002000000004000000010000000800020000010 -0020008008010000002000006000000000000400000000000000800000000200 -0000004000000010000000800010000020002000800801000000100000180000 -0000000400000000000000800000000100000000400000000800000080000800 -00C0004000800800800000080000040000000000040000000000000080000000 -0100000000200000000800000040000600010000400080080080000004000003 -0000000000040000000000000080000000010000000020000000040000002000 -0100060000800100080080000004000000800000000004000000000000008000 -000000800000002000000004000000200000C018000080010004004000000200 -0000400000000004000000000000008000000000800000000000000002000000 -10000038E0000100010004004000000100000030000000000400000000000000 -80000000008000038107E4200002000000100000070000010001000400400000 -0080000008000000000400000000000000800000000040000441040020000100 -0000080000000000020001000400400000004000000600000000040000000000 -0000800000000040000021020020000100000004000000000002000100040020 -0000002000000100000000040000000000000080000000004000002101002000 -0100000004000000000004000200040020000000200000008000000004000000 -0000000080000000002000004100802000008000000200000000000400020004 -0020000000100000004000000004000000000000008000000000200001810040 -2000008000000200000000001800020004001000000008000000200000000400 -00000000000F8000000000200000410420200000400000010000000000200002 -0004001000000004000000100000000400000000000000800000000020000025 -0420A00000400000008000000000200002000400100000000400000010000000 -0400000000000000800000000010000443024060000020000000800000000040 -0004000400100000000200000008000000040000000000000080000000001000 -0381018020000020000000400000000080000400040010000000010000000400 -0000040000000000000080000000001000000000000000001000000030000000 -0300000400040008000000008000000200000004000000000000008000000000 -0800000000000000000800000008000000000000080004000800000000800000 -01000000040000000000000080000000000800000000000000000800000000F1 -F8F10C0000080004000800000000400000008000000400000000000000800000 -0000080000000000000000040000000109010812000008000400080000000040 -0000004000000400000000000000800000000004000000002000000004000000 -0108810801000010000400080000000020000000200000040000000000000080 -0000000004000000001000000002000000010841080D00001000080008000000 -0020000000200000040000000000000080000000000400000000100000000100 -0000010821081300001000080008000000001000000010000004000000000000 -0080000000000200000000080000000080000000F010F0210000200008000800 -0000001000000008000004000000000000008000000000020000000008000000 -0080000001090908210000200008000800000000080000000400000400000000 -00000F8000000000010000000004000000004000000109090821000040000800 -0800000000040000000200000400000000000000800000000001000000000400 -0000004000000108910812000080000800080000000004000000020000040000 -000000000080000000000080000000020000000030000000F060F00C00010000 -1000080000000002000000010000040000000000000080000000000080000000 -0200000000080000000000000000020000100008000000000200000001000004 -0000000000000080000000000040000000010000000004000000000000000002 -0000100008000000000200000000800004000000000000008000000000004000 -0000010000000004000000000000000004000020000800000000010000000080 -0004000000000000008000000000004000000000800000000200000000000000 -0008000020000800000000010000000040000400000000000000800000000000 -2000000000800000000100000000000000001000002000080000000001000000 -004000040000000000000080000000000010000000004000000000C000000000 -0000001000004000080000000000800000002000040000000000000080000000 -0000100000000020000000002000000000000000200000400008000000000080 -0000002000040000000000000080000000000008000000001000000000100000 -0000000000400000400008000000000080000000200004000000000000008000 -0000000008000000001000000000080000000000000080000080001000000000 -00400000001000040000000000000F8000000000000400000000080000000004 -0000000000000100000080001000000000004000000008000400000000000000 -8000000000000200000000080000000003000000000000060000008000100000 -0000004000000004000400000000000000800000000000020000000004000000 -0000C00000000000080000010000100000000000200000000400040000000000 -0000800000000000010000000002000000000020000000000030000001000010 -0000000000200000000400040000000000000080000000000001000000000100 -00000000100000000000C0000002000010000000000020000000020004000000 -0000000080000000000000800000000100000000000C00000000030000000200 -0010000000000020000000020004000000000000008000000000000080000000 -0080000000000300000000040000000400002000000000001000000002000400 -000000000000800000000000004000000000400000000000C000000018000000 -0400002000000000001000000001000400000000000000800000000000004000 -0000002000000000003800000060000000080000200000000000100000000100 -040000000003800080000000000000200000000010000000000007C000038000 -0000100000200000000000100000000100040000000004400080000000000000 -2000000000100000000000003F003C0000000010000020000000000010000000 -008004000000000020008000000000000010000000000800000000000000FFC0 -0000000020000040000000000008000000008004000000000020008000000000 -0000100000000004000000000000000000000000002000004000000000000800 -000000800400000001E020FF8000000000000008000000000200000000000000 -0000000000004000004000000000000800000000400400000000044000800000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000400000000078000800000000000000000000000000000000000 -0000000000000000000000000000000000000000000000040000000004000080 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000040000000004000080000000000000000000000000000000 -00000000000000000000000000000000000000000000000000040000000007E0 -0080000000000000000000000000000000000000000000000000000000000000 -0000000000000000000004000000000000008000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000400000000 -000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFC>} imagemask -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob09.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob09.gif deleted file mode 100755 index 9c858ea63..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob09.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob10.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob10.eps deleted file mode 100755 index 8cd0abeec..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob10.eps +++ /dev/null @@ -1,869 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: 2chrgmincad.eps -%%CreationDate: 7/26/1996 -%%Pages: 0 -%%BoundingBox:183 289 587 679 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -3264 8655 t -0 sg -6840 -6598 sc -394 380 true [394 0 0 380 0 0] -{<0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000010000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000003000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -000000000000000000000000000000000000000000000000000E000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000200000000000000000000000000000000000000000 -0000000000000000000800100000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000001000080000 -0000000000000000000000000000003000000000000000000000000000000000 -0000000000000000000000000010000800000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000088392247022 -1084000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000884622488221084000000000000000000000000 -00000000000C0000000000000000000000000000000000000000000000000504 -2144082210840000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000002032084082210840000000000000000 -0000000000000000000800000000000000000000000000000000000000000000 -00000200E0847022108400000000000000000000000000000000000800000000 -0000000000000000000000000000000000000000050021448022108400000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000884222488232904000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000883C2247012C608 -0000000000000000000000000000000000310000000000000000000000000000 -0000000000000000000000000000001000080000000000000000000000000000 -0000000100000000000000000000000000000000000000000000000000000004 -0008001000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000001000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000020000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000080000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000002B00000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0021000000000000000000000000000000000000000000000000000000000000 -00000000000000000000000000000000000000070000000000000007E3800000 -00000000000103800000000000000001C00000000000000000081C0000000000 -0000003F1C000000000000000004044000000000000000010440000000000000 -0002200000000000000000082200000000000000002022210000000000000002 -0440000000000000000104400000000000000002200000000000000000082200 -0000000000000010220400000000000000010440000000000000000104400000 -0000000000022000000000000000000822000000000000000008220C00000000 -000001E0844000000000000001E1044000000000000000022000000000000000 -000822000000000000000004220B000000000000000044400000000000000001 -0440000000000000000220000000000000000008220000000000000000022200 -0000000000000004244000000000000000010440000000000000000220000000 -0000000000082200000000000000002122080000000000000004244000000000 -0000000504400000000000000002200000000000000000282200000000000000 -0021221800000000000000024440000000000000000304400000000000000002 -2000000000000000001822000000000000000012220000000000000000018380 -000000000000000103800000000000000001C00000000000000000081C000000 -00000000000C1C01000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000180000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000030000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000004000000000000000 -0000400000000000000000004000000000000000000040000000000000000000 -4030000000000000000040000000000000000000400000000000000000004000 -0000000000000000400000000000000000004032000000000000000040000000 -0000000000004000000000000000000040000000000000000000400000000000 -0000000040000000000000000000400000000000000000004000000000000000 -0000400000000000000000004000000000000000000040180000000000000000 -4000400040004000400040004000400040004000400040004000400040004000 -4000400040004000402000000000000000004000400040004000400040004000 -4000400040004000400040004000400040004000400040004000401000000000 -0000000040004000400040004000400040004000400040004000400040004000 -4000400040004000400040004006000000000000000040004000400040004000 -4000400040004000400040004000400040004000400040004000400040004000 -000000003F1C0007FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC000000000020220004000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000040800000000102200040000000000000000000000000000000000000000 -0000000000000000000000000000000000000000040000000000082200040000 -0000000000000000000000000000000000000000000000000000000000000000 -000000000000040000000000042207FC0000000000000000000000000C000000 -0000000000000000000000000000000000000000018000000400000000000222 -0004000000000000000000000000700000000000000000000000000000000000 -0000000000000060000004010000000021220004000000000000000000000003 -8000000000000000000000000000000000000000000000000018000004000000 -00002122000400000000000000000000001C0000000000000000000000000000 -0000000000000000000000060000040000000000122200040000000000000000 -0000006000000000000000000000000000000000000000000000000000018000 -0400000000000C1C000400000000000000000000038000000000000000000000 -0000000000000000000000000000000060000404000000000000000400000000 -0000000000001C00000000000000000000000000000000000000000000000000 -0000180004030000000000000004000000000000000000006000000000000000 -0000000000000000000000000000000000000000060004010000000000000004 -0000000000000000000180000000000000000000000000000000000000000000 -0000000000000180043000000000000000040000000000000000000600000000 -0000000000000000000000000000000000000000000000000060040000000000 -0000000400000000000000000018000000000000000000000000000000000000 -000000000000000000000010041C000000000000000400000000000000000060 -00000000000000000000000000000000000000000000000000000000000C0403 -0000000000000004000000000000000003800000000000000000000000000000 -0000000000000000000000000000000304000000000000000004000000000000 -00001C0000000000000000000000000000000000000000000000000000000000 -0000840800000000000000040000000000000000600000000000000000000000 -0000000000000000000000000000000000000000441200000000000000040000 -0000000000008000000000000000000000000000000000000000000000000000 -000000000000043C000000000000007C00000000000000030000000000000000 -0000000010408000000000000000000000000000000000000400000000000000 -0004000000000000001C000000000000000000000000100080000007FFFC0000 -00000000000000000000040C0000000000000004000000000020840000000000 -000000000000000010008007FFF80003FFFC0000000000000000000004000000 -0000000000040000000000200400000000000000000000000000101FC7F80000 -00000003FC000000000000000000040100000000000000040000000000200400 -0000000000000000000000001010880000000000000003F00000000000000000 -0403000000000000000400000000002004000000000000000000000000001008 -8000000000000000000F0000000000000000042C000000000000000400000000 -00200400000000000000000000000000100480000000000000000000F0000000 -0000000004000000000000000004000000000020040000000000000000000000 -00005002800000000000000000000E0000000000000004010000000000000004 -00000000002004000000000000000000000000FE300180000000000000000000 -01E0000000000000040200000000000000040000000000A01400000000000000 -000000000F00100080000000000000000000001C000000000000041900000000 -000000040000000000600C0000000000000000000000F0000000000000000000 -000000000003800000000000043C000000000000000400000000002004000000 -000000000000000F00000000000000000000000000000000600000000000040C -00000000000000040000000000000000000000000000000000F0000000000000 -000000000000000000001C000000000004000000000000000004000000000000 -000000000000000000000F000000000000000000000000000000000003800000 -00000424000000000000000400000000000000000000000000000000F0000000 -0000000000000000000000000000006000000000040300000000000000040000 -0000040000000000000000000007000000000000000000000000000000000000 -001C000000000420000000000000007C00000000180000000000000000000078 -0000000000000000000000000000000000000003000000000400000000000000 -0004000000006000000000000000000003800000000000000000000000000000 -000000000000E000000004000000000000000004000000008000000000000000 -00001C0000000000000000000000000000000000000000001000000004000000 -0000000000040000000100000000000000000000E00000000000000000000000 -000000000000000000000C000000042000000000000000040000000600000000 -00000000000F0000000000000000000000000000000000000000000003000000 -0400000000000000000400000008000000000000000000700000000000000000 -0000000000000000000000000000008000000400000000000000000400000010 -0000000000000000038000000000000000000000000000000000000000000000 -00600000040000000000000000040000002000000000000000001C0000000000 -0000000000000000000000000000000000000018000004000000000000000004 -000000C00000000000000001E000000000000000000000000000000000000000 -00000000000600000400000000000000000400000100000000000000000E0000 -0000000000000000000000000000000000000000000000018000042000000000 -0000000400000200000000000000007000000000000000000000000000000000 -0000000000000000000060000400000000000000000400000400000000000000 -0380000000000000000000000000000000000000000000000000000010000400 -0000000000000004000008000000000000001C00000000000000000000000000 -0000000000000000000000000000080004180000000000000004000010000000 -0000000060000000000000000000000000000000000000000000000000000000 -0600040000000000000000040000600000000000000180000000000000000000 -0000000000000000000000000000000000000100040000000000000000040000 -8000000000000006000000000000000000000000000000000000000000000000 -0000000000800401000000000000007C00010000000000000018000000000000 -0000000000000000000000000000000000000000000000600400000000000000 -0004000200000000000000600000000000000000000000000000000000000000 -0000000000000000001004000000000000000004000400000000000003800000 -00000000000000000000000000000000000000000000000000000008043F0000 -00000000000400080000000000001C0000000000000000000000000000000000 -0000000000000000000000000006043F00000000000000040010000000000000 -6000000000000000000000000000000000000000000000000000000000000001 -043F000000000000000400200000000000018000000000000000000000000000 -000000000000000000000000000000000000843F000000000000000400400000 -0000000200000000000000000000000000000000000000000000000000000000 -00000000443F0000000000000004008000000000000C00000000000000000000 -00000000000000000000000000000000000000000000043F0000000000000004 -0100000000000070000000000000000000000000000000000000000000000000 -0000000000000000043F00000000000000040200000000000080000000000000 -0000000000000000000000000000000000000000000000000000041500000000 -0000000404000000000003000000000000000000000000000000001047800000 -000000000000000000000000040000000000000000040800000000000C000000 -0000000000000000000000000010084007FFFFFC000000000000000000000400 -0000000000000004100000000000100000000000000000000000000000000010 -0847F8000003FC00000000000000000004320000000000000004200000000000 -60000000000000000000000000000000001008480000000003F0000000000000 -0000042000000000000000040000000000008000000000000000000000000000 -00000010084000000000000F0000000000000000041000000000000000040000 -000000010000000000000000000000000000000000100780000000000000F000 -0000000000000400000000000000007C00000000000600000000000000000000 -000000000000001008400000000000000F000000000000000433000000000000 -0004000000000018000000000000000000000000000000000050084000000000 -000000E000000000000004000000000000000004000000000060000000000000 -000000000000000000001E300840000000000000001C00000000000004110000 -00000000000400000000008000000000000000000000000000000000E0100780 -0000000000000003800000000000041700000000000000040000000001000000 -0000000000000000000000000007000000000000000000000000600000000000 -0400000000000000000400000000020000000000000000000000000000000038 -0000000000000000000000001800000000000400000000000000000400000000 -0400000000000000000000000000000000C00000000000000000000000000600 -0000000004210000000000000004000000000800000000000000000000000000 -0000070000000000000000000000000001800000000004330000000000000004 -0000000030000000000000000000000000000000F80000000000000000000000 -0000006000000000042E00000000000000040000000040000000000000000000 -00000000000F0000000000000000000000000000001800000000042F00000000 -0000000400000000800000000000000000000000000000700000000000000000 -000000000000000600000000042C000000000000000400000001000000000000 -0000000000000000038000000000000000000000000000000001800000000432 -00000000081C00040000000200000000000000000000000000001C0000000000 -0000000000000000000000006000000004210000000008220004000000040000 -000000000000000000000003E000000000000000000000000000000000001000 -0000041600000000082200040000000800000000000000000000000000FC0000 -000000000000000007FC00000000000008000000043600000000082200040000 -0010000000000000000000000000070000000000000000000007F803FC000000 -000004000000040000000000082207FC00000020000000000000000000000003 -F800000000000000000007F8000003FC00000000030000000400000000000822 -0004000000400000000000000000000003FC000000000000007E4FC1F8000000 -0003E00000000080000004130000000008220004000000800000000000000000 -0003FC000000000000000040080E0000000000001C00000000400000042E0000 -00002822000400000100000000000000000003FC000000000000000000200400 -0000000000000380000000200000040000000000182200040000020000000000 -00000000FC000000000000000000001002000000000000000060000000100000 -040000000000081C000400000400000000000000000F00000000000000000000 -0008010000000000000000180000000800000400000000000000000400000800 -00000000000000F0000000000000000000000004008000000000000000060000 -0004000004000000000000000004000010000000000000000F00000000000000 -0000000000420840000000000000000180000002000004000000000000000004 -00002000000000000000F0000000000000000000000000420840000000000000 -0000600000018000040000000000000000040000200000000000000F00000000 -0000000000000000002404800000000000000000180000004000042100000000 -0000000400004000000000000070000000000000000000000000021803000000 -0000000000000600000040000400000000000000000400008000000000000380 -0000000000000000000000000C00000000000000000000000180000020000400 -000000000000000400010000000000001C000000000000000000000000003000 -0000000000000000000000600000100004340000000000000004000100000000 -00006000000000000000000000000000C0000000000000000000000000100000 -0800040100000000000000040002000000000000800000000000000000000000 -0001000000000000000000000000000800000400040000000000000000040004 -000000000003000000000000000000000000000600000000000000FFE0000000 -0004000002000400000000000000007C000800000000000C0000000000000000 -000000000018000000000001FF001FF00000000300000100043C000000000000 -0004001000000000007000000000000000000000000000E000000000001E0000 -000F000000008000008004000000000000000004002000000000008000000000 -000000000000000003000000000000E000000000E00000004000004004000000 -0000000000040020000000000100000000000000000000000000040000000000 -0700000000001C00000020000040040000000000000000040040000000000600 -0000000000000000000000001800000000003800000000000380000010000020 -0410000000000000000400800000000008000000000000000000000000006000 -00000000C0000000000000600000080000100400000000000000000400800000 -0000100000000000000000000000000180000000000300000000000000100000 -0400001004200000000000000004010000000000200000000000000000000000 -000E00000000000C000000000000000C00000200000804010000000000000004 -020000000000C000000003FFFFFE0000000000F00000000000F0000000000000 -00030000010000040400000000000000000402000000000100000000FC000001 -FE0000000F000000000001000000000000000000800000800004040000000000 -000000040400000000020000000F0000000001FE0003F0000000000006000000 -0000000000006000004000020430000000000000000404000000000C00000070 -000000000001FFFC0000000000001800000001FFFC0000001000004000010400 -0000000000000004080000000010000003800000000000000000000000000000 -200000001E0003F00000080000200001043F0000000000000004080000000020 -00001C00000000000000000000000000000040000000E000000F000006000010 -0000840000000000000000041000000000200000600000000000000000000000 -000000008000000700000000E000010000080000440100000000000000041000 -0000004000008000000000000000000000000000000100000038000000001000 -0080000400000414000000000000007C20000000008000030000000000000000 -0000000000000006000000C0000000000C000040000200000400000000000000 -0004000000000080000400000000000000000000000000000008000003000000 -0000038000200002000004050000000000000004000000000100001800000000 -00000000000000000000001000000C0000000000006000100001000004050000 -0000000000040000000002000060000000000000000000000000000000200000 -3000000000000010000800008000041600000000000000040000000004000080 -000000000000000000000000000000400000C000000000000008000400004000 -0439000000000000000400000000080001000000000000000000000000000000 -008000010000000000000006000200004000042E000000000000000400000000 -1000020000000000000000000000000000000100000200000000000000010001 -0000200004210000000000000004000000002000040000007FF8000000000000 -0000000002000004000000000000000080008000200004250000000000000004 -000000004000180000078007F00000000000000000000C000018000000000000 -0000400040001000042500000000000000040000000040002000007800000E00 -0000000000000000100000200000000000000000200040001000043700000000 -0000000400000000800020000380000001C00000000000000000200000400000 -0000000000001000200008000404000000000000000400000001000040001C00 -0000003000000000000000004000008000000000000000000800100008000433 -0000000000000004000000010000800060000000000C00000000000000004000 -0100000000000000000004001000040004390000000000000004000000020001 -0000800680000003000000000000000080000200000000000000000002000800 -0400042500000000000000040000000200020001000980000000C00000000000 -0001000004000000000000000000010008000200041300000000000000040000 -0004000400020010800000002000000000000002000008000000000000000000 -0080040002000436000000000000007C000000080008000C001081F000001800 -0000000000040000100000000000000000000040020001000400000000000000 -000400000008000800100010800E000006000000000000040000000000000000 -0000000000400200010004000000000000000004000000100010002000108000 -384FC1000000000000080384FC00000000000000000000200100008004300C02 -000000000004000000100020004002098000440800C000000000001004408000 -0000000000000000001000800080040003020000000000040000001000200080 -0C06800002040020000000000020002040000000000000000000001000800040 -040A00CC00000000000400000020004001001000800002020010000000000040 -0020200000000001F00000000008004000400400003000000000000400000020 -008002006000800004010008000000000040004010000000001E0F0000000008 -00400040040000C0000000000004000000400080040080000000180080040000 -00000080018008000000006000C0000000040020002004140300000000000004 -0000004001000801000000000408400200000000010000408400000001800030 -000000020020002004000C000000000000040000004001000801000000000208 -4002000000000100002084000000060000000000000200200020041900000000 -0000000400000080020010020000000044048001000000000200044048000000 -3800000184700001001000200400000000000000000400000080020010040000 -0000380300008000000004000380300000004000000240880001001000100438 -0000000000000004000000800200200800000000000000004000000004000000 -0000000080000004208800008010001004000460000000000004000001000400 -2010000000000000000020000000080000000000000100000004208800008008 -0010040008900000000000040000010004004020000000000000000010000000 -0800000000000002000000042088000080080010043808900000000000040000 -0100040040400000000000000000080000001000000000000004000000064088 -0000400800080400091000000000007C00000200080080800000000000004000 -0400000020000020000000080000000580880000400400080420092000000000 -000400000200080080800000F800000040000400000020000020000000080000 -00040088000040040008042907E00000000000040000020008010100000F0780 -0000200002000000200000400000001000000002408800004004000804290010 -0000000000040000020010010100003000600000200002000000200000400000 -0020000000018070000020040004042900000000000000040000020010010100 -0020002000001000010000004000004000000020000000000000000020040004 -0400000000000000000400000400100202000040001000001000010000008000 -00400000004000000000000000002002000404360C3000000000000400000400 -1002020000800008000010000080000080000080000000400000000000000000 -2002000404070240000000000004000004002002020001000004000008000080 -00010000008000000080000000000000000010020002041F0180000000000004 -0000040020040400020000020000080000400002000000800000008000000000 -0020000010020002043202400000000000040000040020040400000000020000 -080000400002000000800000008000000000002000001002000204000C300000 -00000004000004002004040611C0000100000800002000020000008000000080 -0000000000200000100200020400000000000000000400000400200404090220 -0001000004000020000400000080000000800000000000200000100200020416 -00000000001C0004000008002008081082200000800004000010000400000100 -0000010000000000001000000801000204022FF0000000220004000008004008 -0810822000008000040000100004000001000000010000000000001000000801 -0002043F00000000002200040000080040080810822000008000020000100008 -0000010000000100000000000010000008010002042500000000002200040000 -0800400808190220000040000200000800080000010000000100000000000010 -000008010002040006200000002207FC00000800400808160220000040000200 -0008000800000100000001000000000000100000080100020400091000000022 -0004000008004008081002200000800002000010000800000100000001000000 -00000010000008010002042B0910000000220004000008004008080902200000 -8000040000100004000001000000010000000000001000000801000204020910 -000000220004000008002008080601C000008000040000100004000001000000 -0100000000000010000008010002043F04E00000002200040000040020040400 -0000000100000400002000040000008000000080000000000020000010020002 -040C00000000001C000400000400200404000000000100000400002000040000 -0080000000800000000000200000100200020400000000000000000400000400 -2004040000000001000008000020000200000080000000800000000000200000 -1002000204000000000000000004000004002004040000000002000008000040 -00020000008000000080000000000020000010020002042D0000000000000004 -0000040020040400020000020000080000400002000000800000008000000000 -0040000010020002040100000000000000040000040020020200010000040000 -1000008000000000008000000040000000000040000010020002043F07F00000 -00000004000004001002020000800008000010000080003F2100008000000040 -0000000000800000200200040433180C00000000000400000400100202000040 -0010000010000100002001000040000000400000000000800000200200040400 -20020000000000040000020010010100003800E0000020000100001001000040 -0000002000000000010000002004000404000000000000000004000002001001 -010000078F000000200002000008008000400000001000000000020000002004 -0004041E0FF00000000000040000020008010100000070000000200002000004 -0080004000000010000000000200000040040008040104000000000000040000 -0200080080800000000000004000040000020040002000000008000000000400 -000040040008043F080000000000007C00000200080080400000000000004000 -0800002100400020000000040000000004000000400400080400080000000000 -0004000001000400402000000000000080001000002100200010000000020000 -0000080000004008000804000400000000000004000001000400402000000000 -00010000200000120020001000000001000000001000000080080010040003F0 -000000000004000001000400201000000000000200002000000C07E000080000 -0000800000002000000080080010042B04000000000000040000008002002008 -000000000004000000000000000000080000000060000000C000000100100010 -0401080000000000000400000080020010040000000000087E42000000000000 -000400000000180000030000000100100010043F080000000000000400000080 -0200100200000000001040020000000000000004000000000700001C00000001 -001000200412040000000000000400000040010008018000000000E020020000 -00000000000200000000008000200000000200200020040003F0000000000004 -00000040010004004000000001001001000000000100000200000000007001C0 -0000000200200020040000000000000000040000002000800200300000000200 -0801000000000080000100000000000F1E000000000400400020040A00000000 -000000040000002000400100080000000C000400800000000040000100000000 -0000E00000000008004000400403200200000000000400000020004000800600 -000010004200800000000040000080000000000000000000000800400040043F -180C000000000004000000100020004001800000600042004000000000200000 -80000000000000000000001000800040041507F0000000000004000000100020 -0030004000038000240040000000001000004000000000000000000000100100 -0080040000000000000000040000001000100008003E001C0000180FC0000000 -0008000020000000000000000000002001000080040000000000000000040000 -0008000800060001FFE000000000000000000004000010000000000000000000 -0040020001000413000000000000007C00000008000800010000000000000000 -0000000000040000080000000000000000000080020001000401000000000000 -0004000000040004000080000000000000000000000000020000040000000000 -00000000010004000200043F0000000000000004000000020002000040000000 -0006000000000000000100000200000000000000000002000800020004000000 -0000000000040000000200010000300000000018000000000000000080000100 -0000000000000000040008000400040000000000000000040000000100008000 -0E00000000600000000000000000600000800000000000000000080010000400 -04000000000000000004000000010000400001C0000003800000000000000000 -1000006000000000000000001000100008000415000000000000000400000000 -80003000003C00001C0000000000000000000800001000000000000000002000 -20000800040000000000000000040000000040000C000003C00FE00000000000 -000000000400000C0000000000000000C00040001000043F0000000000000004 -000000002000020000003FF00000000000000000000002000002000000000000 -0001000080001000042400000000000000040000000020000100000000000000 -0000000000000000010000010000000000000002000100002000040000000000 -0000000400000000100000800000000000000000000000000000008000008000 -00000000000C0002000020000400000000000000000400000000080000400000 -000000000000000000000000006000006000000000000010000400004000043E -0000000000000004000000000400003000000000000000000000000000000010 -0000180000000000002000080000400004000000000000000004000000000200 -000800000000000000000000000000000008000006000000000000C000100000 -8000043F00000000000000040000000001000006000000000000000000000000 -0000000400000100C00000000700002000010000040E00000000000000042000 -0000008000018000000000000000000000000000000200000001200000001800 -00C0000200000400000000000000007C20000000008000004000000000000000 -0000000000000001000000020000000020000100000200000400000000000000 -0004100000000040000030000000000000000000000000000000800000020000 -0001C0000200000400004416000000000000000410000000003000000E000000 -0000000000003F27E0000000600000020000001E00000C000008000044000000 -000000000004080000000008000001C000000000000000002004000000001000 -0002000007E00000100000100000843F00000000000000040800000000040000 -0038000000000003FFFE1002000000000C00000120FFF8000000200000200001 -04130000000000000004040000000003000000078000000003FC000108010000 -000003000000C00000000000C000004000010400000000000000000404000000 -0000800000007E000003FC000000040080000000008000000000000000010000 -00800002040000000000000000040200000000004000000001FFFFFC00000000 -02004000000000780000000000000006000001000004041C0000000000000004 -0200000000003000000000000000000000002104200000000006000000000000 -0008000002000004040000000000000000040100000000000800000000000000 -0000000021042000000000018000000000000030000004000008043F00000000 -0000000400800000000004000000000000000000000012024000000000006000 -0000000000C00000080000100413000000000000000400800000000003000000 -00000000000000000C018400000000001C000000000007000000100000100400 -0000000000000004004000000000008000000000000000000000000002000000 -0000038000000000380000002000002004000000000000000004002000000000 -0040000000000000000000000000018000000000007000000001C0000000C000 -0040043600000000000000040010000000000030000000000000000000000000 -006000000000000F0000001E0000000100000080040000000000000000040008 -00000000000E000000000000000000000000001C000000000000FF803FE00000 -000600000100043F000000000000007C00080000000000010000000000000000 -000000000002000000000000007FC0000000000800000100040E000000000000 -00040004000000000000C0000000000000000000000000018000000000000000 -0000000000100000020004000000000000000004000200000000000030000000 -0000000000000000000060000000000000000000000000200000040004000000 -00000000000400010000000000000E0000000000000000000000000018000000 -000000000000000000C000000800040600000000000000040001000000000000 -01C0000000000000000000000000060000000000000000000000030000001000 -0400000000000000000400008000000000000038000000000000000000000000 -0180000000000000000000000C0000002000043F000000000000000400004000 -0000000000078000000000000000000000000070000000000000000000003000 -0000C00004010000000000000004000020000000000000007800000000000000 -00000000000E00000000000000000000C0000001000004000000000000000004 -0000100000000000000007800000000000000000000000018000000000000000 -0003000000020000040000000000000000040000080000000000000000780000 -000000000000000000006000000000000000000C000000040000043500000000 -000000040000040000000000000000078000000000000000000000001C000000 -0000000000300000000800000401000000000000000400000200000000000000 -00007E0000000000000000000000038000000000000000C0000000100000043F -00000000081C000400000100000000000000000001FE00000000000000000000 -00700000000000000700000000200000040D0000000008220004000000800000 -0000000000000001FE000010478000000000000F0000000000003800000000C0 -000004000000000008220004000000400000000000000000000001FE00100840 -000000000000F80000000007C000000001000000040000000000082200040000 -0020000000000000000000000001FC10084000000000000007FC000007F80000 -00000600000004190000000F082207FC00000010000000000000000000000000 -021008400000000000000003FC07F80000000000080000000400000000000822 -00040000000800000000000000000000000000100840000000000000000003F8 -00000000000010000000043F0000000008220004000000040000000000000000 -0000000000100780000000000000000000000000000000002000000004010000 -0000282200040000000200000000000000000000000000100840000000000000 -00000000000000000000C0000000040000000000182200040000000100000000 -0000000000000000005008400000000000000000000000000000000300000000 -040000000000081C000400000000800000000000000000000000003008480000 -000000000000000000000000000C000000000435000000000000000400000000 -4000000000000000000000000010078780000000000000000000000000000030 -0000000004000000000000000004000000003800000000000000000000000000 -0000780000000000000000000000000000C000000000043F0000000000000004 -0000000004000000000000000000000000000000070000000000000000000000 -0000030000000000040A00000000000000040000000002000000000000000000 -00000000000000E00000000000000000000000000C0000000000040000000000 -000000040000000001000000000000000000000000000000001C000000000000 -0000000000003000000000000400000000000000000400000000008000000000 -000000000000000000000003800000000000000000000000C000000000000436 -0000000000000004000000000040000000000000000000000000000000007000 -0000000000000000000700000000000004000000000000000004000000000030 -000000000000000000000000000000000F000000000000000000003800000000 -0000043F000000000000000400000000000C0000000000000000000000000000 -000000F00000000000002C0001C0000000000000040800000000000000040000 -0000000300000000000000000000000000000000000F00000000000032001E00 -000000000000040B000000000000007C00000000000080000000000000000000 -0000000000000000F000000000002101E000000000000000040D000000000000 -00040000000000004000000000000000000000000000000000000F0000000000 -210E0000000000000000041E0000000000000004200000000000300000000000 -00000000000000000000000000FC000000002100000000000000000004070000 -0000000000041000000000000800000000000000000000000000000000000003 -FC00000021000000000000000000042000000000000000040800000000000600 -00000000000000000000000000000000000003FFFFF032000000000000000000 -0405000000000000000404000000000001072000000000000000000000000000 -00000000000000002C000000000000000000042E000000000000000402000000 -00000008C0000000000000000000000000000000000000000000200000000000 -0000000004030000000000000004010000000000000840000000000000000000 -00000000000000000000000020000000000000000000040C0000000000000004 -0080000000000006400000000000000000000000000000000000000000000000 -0000000000000000043000000000000000040040000000000001C00000000000 -0000000000000000000000000000000000000000000000000000C42100000000 -0000000400200000000000004000000000000000000000000000000000000000 -000000000000000000000001042F000000000000000400100000000000084000 -0000000000000000000000000000000000000000000000000000000000020420 -0000000000000004000800000000000780000000000000000000000000000000 -0000000000000000000000000000000C04290000000000000004000400000000 -000000C000000000000000000000000000000000000000000000000000000000 -0010043400000000000000040002000000000000003000000000000000000000 -0000000000000000000000000000000000000020043600000000000000040001 -800000000000000C000000000000000000000000000000000000000000000000 -0000000000C0042A000000000000007C00004000000000000003000000000000 -0000000000000000000000000000000000000000000001000407000000000000 -000400003000000000000000C000000000000000000000000000000000000000 -0000000000000000020004000000000000000004000008000000000000003000 -00000000000000000000000000000000000000000000000000000C00043C0000 -000000000004000004000000000000000E000000000000000000000000000000 -0000000000000000000000001000043A00000000000000040000020000000000 -000001C000000000000000000000000000000000000000000000000000002000 -043A000000000000000400000100000000000000003800000000000000000000 -00000000000000000000000000000000C0000412000000000000000400000080 -0000000000000007000000000000000000000000000000000000000000000000 -00030000041F0000000000000004000000400000000000000000F00000000000 -000000000000000000000000000000000000000C0000042C0000000000000004 -0000003000000000000000000E00000000000000000000000000000000000000 -0000000000300000042E000000000000000400000008000000000000000001C0 -1040800000000000000000000000000000000000000000C00000043600000000 -0000000400000004000000000000000000381000800000000000000000000000 -000000000000000001000000042B000000000000000400000003000000000000 -0000000610008000000000000000000000000000000000000000060000000412 -00000000000000040000000080000000000000000000101FC000000000000000 -00000000000000000000000018000000043C0000000000000004000000004000 -0000000000000000101080000000000000000000000000000000000000002000 -0000040800000000000000040000000030000000000000000000100880000000 -00000000000000000000000000000000C0000000042D00000000000000040000 -00000C0000000000000000001004800000000000000000000000000000000000 -0007000000000413000000000000007C00000000020000000000000000005002 -8000000000000000000000000000000000000038000000000408000000000000 -0004000000000180000000000000000030018800000000000000000000000000 -0000000000C000000000042B0000000000000004000000000040000000000000 -0000100087800000000000000000000000000000000007000000000004340000 -0000000000040000000000300000000000000000000000780000000000000000 -0000000000000000380000000000040400000000000000040000000000080000 -0000000000000000000780000000000000000000000000000000C00000000000 -042E000000000000000400000000000600000000000000000000000078000000 -0000000000000000000000070000000000000427000000000000000400000000 -0001000000000000000000000000078000000000000000000000000000380000 -00000000042D0000000000000004000000000000C00000000000000000000000 -007F00000000000000000000000003C0000000000000041F0000000000000004 -0000000000003000000000000000000000000000F80000000000000000000000 -1C00000000000000042700000000000000040000000000000800000000000000 -000000000000070000000000000000000001E000000000000000042A00000000 -00000004000000000000060000000000000000000000000000FC000000000000 -0000001E0000000000000000041F000000000000000400000000000000104200 -000000000000000000000003FC0000000000000007E00000000000000000040A -00000000000000040000000000000010020000000000000000000000000003FC -000000000007F8000000000000000000042D0000000000000004000000000000 -001002000000000000000000000000000003FFFC0007FFF80000000000000000 -0000042D00000000000000040000000000000010020000000000000000000000 -000000000003FFF8000000000000000000000000043600000000000000040000 -0000000000100200000000000000000000000000000000000000000000000000 -000000000000042D000000000000007C00000000000000100200000000000000 -000000000000000000000000000000000000000000000000042D000000000000 -0004000000000000001002000000000000000000000000000000000000000000 -00000000000000000000C41E000000000000000400000000000000500A000000 -0000000000000000000000000000000000000000000000000000000104120000 -0000000000040000000000000030060000000000000000000000000000000000 -0000000000000000000000000006040100000000000000040000000000000010 -0200000000000000000000000000000000000000000000000000000000000018 -041000000000000000040000000000000000000C000000000000000000000000 -000000000000000000000000000000000020040B000000000000000400000000 -0000000000030000000000000000000000000000000000000000000000000000 -000000C0042D000000000000000400000000000000000000C000000000000000 -00000000000000000000000000000000000000000300042E0000000000000004 -0000000000000000000030000000000000000000000000000000000000000000 -0000000000000C0004080000000000000004000000000000000000000E000000 -0000000000000000000000000000000000000000000000003000041200000000 -000000040000000000000000000001C000000000000000000000000000000000 -00000000000000000000C0000435000000000000000400000000000000000000 -003000000000000000000000000000000000000000000000000000030000042E -000000003F1C000400000000000000000000000E000000000000000000000000 -000000000000000000000000000C000004210000000020220004000000000000 -000000000001C000000000000000000000000000000000000000000000000030 -0000042E00000000102200040000000000000000000000003000000000000000 -0000000000000000000000000000000000C00000041F00000000082200040000 -000000000000000000000C000000000000000000000000000000000000000000 -00000100000004000000000F042207FC00000000000000000000000000000000 -000000000000000000000000000000000000000000000000042E000000000222 -0004000000000000000000000000000000000000000000000000000000000000 -00000000000000000000041F0000000021220004000000000000000000000000 -0000000000000000000000000000000000000000000000000000000004080000 -0000212200040000000000000000000000000000000000000000000000000000 -000000000000000000000000000004190000000012220007FFFFFFFFFFFFFFFF -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FC13000000000C1C000000000000000000000000000000000000000000000000 -000000000000000000000000000000000000001F000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000300000000000000000000000000000000000000000000000000000 -000000000000000000000000000000000000000000000028>} imagemask -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob10.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob10.gif deleted file mode 100755 index 9b87c54a6..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob10.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob11.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob11.eps deleted file mode 100755 index 178bd819c..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob11.eps +++ /dev/null @@ -1,311 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q9.draw -- /teacher/Apps/Drawfiles/phys121a/set8 -%%Creator: Draw -%%CreationDate: Tue Jun 6 09:51:35 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 128 351 371 602 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --43 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -128 351 243 251 rectclip -0 0 2 setup -gsave -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -91 -exch -defineuserobject -91 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 926] concat -91 execuserobject setfont -0 nxsetgray -348 468 moveto (x) show -grestore -grestore -0 0 2 setup -gsave -91 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1162] concat -91 execuserobject setfont -0 nxsetgray -233 586 moveto (y) show -grestore -grestore -0 0 3 setup -0 nxsetgray -115 115 183 407 oval matrix defaultmatrix setmatrix stroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -146 385 163 83 rectfill -1 nxsetgray -146 385 163 83 rectstroke -grestore -0 0 0 setup -0 nxsetgray -200 0 146 469 line -0 346 469 arrow -grestore -0 0 0 setup -0 nxsetgray -0 -200 240 569 line -89.997345 240 569 arrow -grestore -0 0 2 setup -gsave -91 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 916] concat -91 execuserobject setfont -0 nxsetgray -225 463 moveto (O) show -grestore -grestore -0 0 0.5 setup -0 nxsetgray -36 40 240 468 line -grestore -0 0 0.5 setup -gsave -91 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1000] concat -91 execuserobject setfont -0 nxsetgray -252 505 moveto (R) show -grestore -grestore -0 0 0.5 setup -gsave -91 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1070] concat -/Helvetica findfont 14 scalefont [1 0 0 -1 0 0] makefont -149 -exch -defineuserobject -149 execuserobject setfont -0 nxsetgray -162 540 moveto (Semi-circle, radius R) show -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold -%%+ Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob11.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob11.gif deleted file mode 100755 index a21a9f477..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob11.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob16.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob16.eps deleted file mode 100755 index e2a5eca62..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob16.eps +++ /dev/null @@ -1,1995 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad 6.0.1 -%%Title: prob3-5.eps -%%CreationDate: 5/9/1997 -%%DocumentProcSets: Adobe_packedarray 1.0 0 -%%DocumentSuppliedProcSets: Adobe_packedarray 1.0 0 -%%DocumentProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentProcSets: Adobe_cshow 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cshow 1.1 0 -%%DocumentProcSets: Adobe_customcolor 1.0 0 -%%DocumentSuppliedProcSets: Adobe_customcolor 1.0 0 -%%DocumentProcSets: Adobe_pattern 1.9 0 -%%DocumentSuppliedProcSets: Adobe_pattern 1.9 0 -%%DocumentProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentSuppliedProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentFonts: Times-Roman -%%+ Times-Italic -%%BoundingBox:66 415 496 697 -%%TemplateBox:306 396 306 396 -%%DocumentPreview: Header -%%EndComments - -%%BeginProlog -%%BeginProcSet: Adobe_packedarray 1.0 0 -userdict /Adobe_packedarray 5 dict dup begin put -/initialize -{ -/packedarray where - { - pop - } - { - Adobe_packedarray begin - Adobe_packedarray - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - } ifelse -} def -/terminate -{ -} def -/packedarray -{ -array astore readonly -} def -/setpacking -{ -pop -} def -/currentpacking -{ -false -} def -currentdict readonly pop end -%%EndProcSet -Adobe_packedarray /initialize get exec -%%BeginProcSet: Adobe_cmykcolor 1.1 0 -currentpacking true setpacking -userdict /Adobe_cmykcolor 4 dict dup begin put -/initialize -{ -/setcmykcolor where - { - pop - } - { - userdict /Adobe_cmykcolor_vars 2 dict dup begin put - /_setrgbcolor - /setrgbcolor load def - /_currentrgbcolor - /currentrgbcolor load def - Adobe_cmykcolor begin - Adobe_cmykcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - end - Adobe_cmykcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_cmykcolor eq - { - end - } if -} def -/setcmykcolor -{ -1 sub 4 1 roll -3 - { - 3 index add neg dup 0 lt - { - pop 0 - } if - 3 1 roll - } repeat -Adobe_cmykcolor_vars /_setrgbcolor get exec -pop -} def -/currentcmykcolor -{ -Adobe_cmykcolor_vars /_currentrgbcolor get exec -3 - { - 1 sub neg 3 1 roll - } repeat -0 -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_cshow 1.1 0 -currentpacking true setpacking -userdict /Adobe_cshow 3 dict dup begin put -/initialize -{ -/cshow where - { - pop - } - { - userdict /Adobe_cshow_vars 1 dict dup begin put - /_cshow - {} def - Adobe_cshow begin - Adobe_cshow - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - end - } ifelse -} def -/terminate -{ -} def -/cshow -{ -exch -Adobe_cshow_vars - exch /_cshow - exch put - { - 0 0 Adobe_cshow_vars /_cshow get exec - } forall -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_customcolor 1.0 0 -currentpacking true setpacking -userdict /Adobe_customcolor 5 dict dup begin put -/initialize -{ -/setcustomcolor where - { - pop - } - { - Adobe_customcolor begin - Adobe_customcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - Adobe_customcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_customcolor eq - { - end - } if -} def -/findcmykcustomcolor -{ -5 packedarray -} def -/setcustomcolor -{ -exch -aload pop pop -4 - { - 4 index mul 4 1 roll - } repeat -5 -1 roll pop -setcmykcolor -} def -/setoverprint -{ -pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_pattern 1.9 0 -currentpacking true setpacking -userdict /Adobe_pattern 14 dict dup begin put -/initialize -{ -/definepattern where - { - pop - } - { - Adobe_pattern begin - Adobe_pattern - { - dup xcheck - { - bind - } if - pop pop - } forall - mark - cachestatus 7 1 roll pop pop pop pop exch pop exch - { - { - 10000 add - dup 2 index gt - { - break - } if - dup setcachelimit - } loop - } stopped - cleartomark - } ifelse -} def -/terminate -{ -currentdict Adobe_pattern eq - { - end - } if -} def -errordict -/nocurrentpoint -{ -pop -stop -} put -errordict -/invalidaccess -{ -pop -stop -} put -/patternencoding -256 array def -0 1 255 -{ -patternencoding exch ( ) 2 copy exch 0 exch put cvn put -} for -/definepattern -{ -17 dict begin -/uniform exch def -/cache exch def -/key exch def -/procarray exch def -/mtx exch matrix invertmatrix def -/height exch def -/width exch def -/ctm matrix currentmatrix def -/ptm matrix def -/str 32 string def -/slice 9 dict def -slice /s 1 put -slice /q 256 procarray length div sqrt floor cvi put -slice /b 0 put -/FontBBox [0 0 0 0] def -/FontMatrix mtx matrix copy def -/Encoding patternencoding def -/FontType 3 def -/BuildChar - { - exch - begin - slice begin - dup q dup mul mod s idiv /i exch def - dup q dup mul mod s mod /j exch def - q dup mul idiv procarray exch get - /xl j width s div mul def - /xg j 1 add width s div mul def - /yl i height s div mul def - /yg i 1 add height s div mul def - uniform - { - 1 1 - } - { - width 0 dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - 0 height dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - } ifelse - width 0 cache - { - xl 4 index mul yl 4 index mul xg 6 index mul yg 6 index mul - setcachedevice - } - { - setcharwidth - } ifelse - gsave - scale - newpath - xl yl moveto - xg yl lineto - xg yg lineto - xl yg lineto - closepath - clip - newpath - end - end - exec - grestore - } def -key currentdict definefont -end -} def -/patterncachesize -{ -gsave -newpath -0 0 moveto -width 0 lineto -width height lineto -0 height lineto -closepath -patternmatrix setmatrix -pathbbox -exch ceiling 4 -1 roll floor sub 3 1 roll -ceiling exch floor sub -mul 1 add -grestore -} def -/patterncachelimit -{ -cachestatus 7 1 roll pop pop pop pop pop pop 8 mul -} def -/patternpath -{ -exch dup begin setfont -ctm setmatrix -concat -slice exch /b exch slice /q get dup mul mul put -FontMatrix concat -uniform - { - width 0 dtransform round width div exch round width div exch - 0 height dtransform round height div exch height div exch - 0 0 transform round exch round exch - ptm astore setmatrix - } - { - ptm currentmatrix pop - } ifelse -{currentpoint} stopped not - { - pop pop - pathbbox - true - 4 index 3 index eq - 4 index 3 index eq - and - { - pop false - { - {pop pop} - {pop pop pop true} - {pop pop pop pop pop pop pop true} - {pop true} - pathforall - } stopped - { - pop pop pop pop pop true - } if - } if - { - height div ceiling height mul 4 1 roll - width div ceiling width mul 4 1 roll - height div floor height mul 4 1 roll - width div floor width mul 4 1 roll - 2 index sub height div ceiling cvi exch - 3 index sub width div ceiling cvi exch - 4 2 roll moveto - FontMatrix mtx invertmatrix - dup dup 4 get exch 5 get rmoveto - ptm ptm concatmatrix pop - slice /s - patterncachesize patterncachelimit div ceiling sqrt ceiling cvi - dup slice /q get gt - { - pop slice /q get - } if - put - 0 1 slice /s get dup mul 1 sub - { - slice /b get add - gsave - 0 1 str length 1 sub - { - str exch 2 index put - } for - pop - dup - { - gsave - ptm setmatrix - 1 index str length idiv {str show} repeat - 1 index str length mod str exch 0 exch getinterval show - grestore - 0 height rmoveto - } repeat - grestore - } for - pop pop - } - { - pop pop pop pop - } ifelse - } if -end -} def -/patternclip -{ -clip -} def -/patternstrokepath -{ -strokepath -} def -/patternmatrix -matrix def -/patternfill -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternclip -Adobe_pattern /patternpath get exec -grestore -newpath -} def -/patternstroke -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternstrokepath -true - { - { - { - newpath - moveto - } - { - lineto - } - { - curveto - } - { - closepath - 3 copy - Adobe_pattern /patternfill get exec - } pathforall - pop pop pop - } stopped - { - pop pop pop pop pop - patternclip - Adobe_pattern /patternfill get exec - } if - } - { - patternclip - Adobe_pattern /patternfill get exec - } ifelse -grestore -newpath -} def -/patternashow -{ -3 index type /dicttype eq - { - Adobe_pattern /patternmatrix get 4 1 roll - } if - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 6 index 6 index 6 index - Adobe_pattern /patternfill get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop -} def -/patternashowstroke -{ -4 index type /dicttype eq - { - patternmatrix /patternmatrix get 5 1 roll - } if -4 1 roll - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - 7 index 7 index 7 index - Adobe_pattern /patternstroke get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_Illustrator88 1.19 0 -currentpacking true setpacking -userdict /Adobe_Illustrator88 73 dict dup begin put -/initialize -{ -userdict /Adobe_Illustrator88_vars 31 dict dup begin put -/_lp /none def -/_pf {} def -/_ps {} def -/_psf {} def -/_pss {} def -/_a null def -/_as null def -/_tt 2 array def -/_tl 2 array def -/_tm matrix def -/t {} def -/_gf null def -/_cf 4 array def -/_if null def -/_of false def -/_fc {} def -/_gs null def -/_cs 4 array def -/_is null def -/_os false def -/_sc {} def -/_pd 1 dict def -/_ed 15 dict def -/_pm matrix def -/_fm null def -/_fd null def -/_fdd null def -/_sm null def -/_sd null def -/_sdd null def -/_i null def -Adobe_Illustrator88 begin -Adobe_Illustrator88 dup /nc get begin - { - dup xcheck - { - bind - } if - pop pop - } forall -end -end -end -Adobe_Illustrator88 begin -Adobe_Illustrator88_vars begin -newpath -} def -/terminate -{ -end -end -} def -/_ -null def -/ddef -{ -Adobe_Illustrator88_vars 3 1 roll put -} def -/xput -{ -dup load dup length exch maxlength eq - { - dup dup load dup - length 2 mul dict copy def - } if -load begin def end -} def -/npop -{ - { - pop - } repeat -} def -/sw -{ -stringwidth -exch 5 -1 roll 3 index 1 sub mul add -4 1 roll 3 1 roll 1 sub mul add -} def -/ss -{ -3 -1 roll pop -4 1 roll - { - 2 npop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - stroke - grestore - moveto - 2 copy rmoveto - } exch cshow -3 npop -} def -/sp -{ -exch pop - { - 2 npop (0) exch - 2 copy 0 exch put pop - false charpath - 2 copy rmoveto - } exch cshow -2 npop -} def -/pl -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where -{ -pop true setstrokeadjust -/c -{ -curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll curveto -} def -/V -/v load def -/y -{ -2 copy curveto -} def -/Y -/y load def -/l -{ -lineto -} def -/L -/l load def -/m -{ -moveto -} def -} -{ -/c -{ -pl curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll pl curveto -} def -/V -/v load def -/y -{ -pl 2 copy curveto -} def -/Y -/y load def -/l -{ -pl lineto -} def -/L -/l load def -/m -{ -pl moveto -} def -} ifelse -/d -{ -setdash -} def -/cf -currentflat def -/i -{ -dup 0 eq - { - pop cf - } if -setflat -} def -/j -{ -setlinejoin -} def -/J -{ -setlinecap -} def -/M -{ -setmiterlimit -} def -/w -{ -setlinewidth -} def -/H -{} def -/h -{ -closepath -} def -/N -{ -newpath -} def -/n -/N load def -/F -{ -_pf -} def -/f -{ -closepath -F -} def -/S -{ -_ps -} def -/s -{ -closepath -S -} def -/B -{ -gsave F grestore -S -} def -/b -{ -closepath -B -} def -/W -{ -clip -} def -/ta -{ -_as moveto -_tt aload pop 4 -2 roll -} def -/tl -{ -_tl aload pop translate -} def -/as -{ -{ -0 0 -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg 2 div exch neg 2 div -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg exch neg -} -{ -0 0 -} -} cvlit def -/z -{ -/_a exch ddef -/_as as _a get ddef -_a 2 le - { - 0 _tt astore pop - 0 exch neg _tl astore pop - } - { - 0 exch neg _tt astore pop - neg 0 _tl astore pop - } ifelse -exch findfont exch scalefont setfont -} def -/tm -{ -_tm currentmatrix pop -concat -} def -/I -{ -tm -/t - { - ta sp - tl - } ddef -} def -/o -{ -tm -/t - { - ta 4 npop - tl - newpath - } ddef -} def -/e -{ -tm -/t - { - ta _psf - tl - newpath - } ddef -} def -/r -{ -tm -/t - { - ta _tm _pss - tl - newpath - } ddef -} def -/a -{ -tm -/t - { - 2 copy - ta _psf - newpath - ta _tm _pss - tl - newpath - } ddef -} def -/T -{ -_tm setmatrix -} def -/Z -{ -pop -findfont begin -currentdict dup length 1 add dict begin - { - 1 index /FID ne - { - def - } - { - 2 npop - } ifelse - } forall -/FontName exch def dup length 0 ne - { - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - { - Encoding 2 index 2 index put pop - 1 add - } - { - exch pop - } ifelse - } forall - } if pop -currentdict dup end end -/FontName get exch definefont pop -} def -/u -{} def -/U -{} def -/q -{ -gsave -} def -/Q -{ -grestore -} def -/` -{ -/_i save ddef -6 1 roll 4 npop -concat -userdict begin -/showpage {} def -false setoverprint -pop -} def -/~ -{ -end -_i restore -} def -/@ -{} def -/& -{} def -/O -{ -0 ne -/_of exch ddef -/_lp /none ddef -} def -/R -{ -0 ne -/_os exch ddef -/_lp /none ddef -} def -/g -{ -/_gf exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _gf setgray - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/G -{ -/_gs exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _gs setgray - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/k -{ -_cf astore pop -/_fc -{ -_lp /fill ne - { - _of setoverprint - _cf aload pop setcmykcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/K -{ -_cs astore pop -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _cs aload pop setcmykcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/x -{ -/_gf exch ddef -findcmykcustomcolor -/_if exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _if _gf 1 exch sub setcustomcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/X -{ -/_gs exch ddef -findcmykcustomcolor -/_is exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _is _gs 1 exch sub setcustomcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/dp -{ -dup null eq -{ -pop -_dp 0 ne - { - 0 1 _dp 1 sub _dl mod - { - _da exch get 3 get - } for - _dp 1 sub _dl mod 1 add packedarray - _da 0 get aload pop 8 -1 roll 5 -1 roll pop 4 1 roll - definepattern pop - } if -} -{ -_dp 0 ne _dp _dl mod 0 eq and - { - null dp - } if -7 packedarray _da exch _dp _dl mod exch put -_dp _dl mod _da 0 get 4 get 2 packedarray -/_dp _dp 1 add def -} ifelse -} def -/E -{ -_ed begin -dup 0 get type /arraytype ne - { - 0 - { - dup 1 add index type /arraytype eq - { - 1 add - } - { - exit - } ifelse - } loop - array astore - } if -/_dd exch def -/_ury exch def -/_urx exch def -/_lly exch def -/_llx exch def -/_n exch def -/_y 0 def -/_dl 4 def -/_dp 0 def -/_da _dl array def -0 1 _dd length 1 sub - { - /_d exch _dd exch get def - 0 2 _d length 2 sub - { - /_x exch def - /_c _d _x get _ ne def - /_r _d _x 1 add get cvlit def - _r _ ne - { - _urx _llx sub _ury _lly sub [1 0 0 1 0 0] - [ - /save cvx - _llx neg _lly neg /translate cvx - _c - { - nc /begin cvx - } if - _r dup type /stringtype eq - { - cvx - } - { - {exec} /forall cvx - } ifelse - _c - { - /end cvx - } if - /restore cvx - ] cvx - /_fn 12 _n length add string def - _y _fn cvs pop - /_y _y 1 add def - _fn 12 _n putinterval - _fn _c false dp - _d exch _x 1 add exch put - } if - } for - } for -null dp -_n _dd /_pd -end xput -} def -/fc -{ -_fm dup concatmatrix pop -} def -/p -{ -/_fm exch ddef -9 -2 roll _pm translate fc -7 -2 roll _pm scale fc -5 -1 roll _pm rotate fc -4 -2 roll exch 0 ne - { - dup _pm rotate fc - 1 -1 _pm scale fc - neg _pm rotate fc - } - { - pop - } ifelse -dup _pm rotate fc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore fc -neg _pm rotate fc -_pd exch get /_fdd exch ddef -/_pf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - patternfill - } - { - pop - fill - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_psf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - 10 copy 6 npop exch pop patternashow - } - { - pop - 7 copy 3 npop exch pop ashow - } ifelse - grestore - pop - } for - pop - } for -restore -4 npop newpath -} ddef -/_lp /none ddef -} def -/sc -{ -_sm dup concatmatrix pop -} def -/P -{ -/_sm exch ddef -9 -2 roll _pm translate sc -7 -2 roll _pm scale sc -5 -1 roll _pm rotate sc -4 -2 roll exch 0 ne - { - dup _pm rotate sc - 1 -1 _pm scale sc - neg _pm rotate sc - } - { - pop - } ifelse -dup _pm rotate sc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore sc -neg _pm rotate sc -_pd exch get /_sdd exch ddef -/_ps -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - patternstroke - } - { - pop stroke - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_pss -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - 11 copy 6 npop 3 -1 roll pop patternashowstroke - } - { - pop - 8 copy 3 npop ss - } ifelse - grestore - pop - } for - pop - } for -restore -5 npop newpath -} ddef -/_lp /none ddef -} def -/A -{ -pop -} def -/nc 3 dict def -nc begin -/setgray -{ -pop -} bind def -/setcmykcolor -{ -4 npop -} bind def -/setcustomcolor -{ -2 npop -} bind def -currentdict readonly pop end -currentdict readonly pop end -setpacking -%%EndProcSet -%%EndProlog - -%%BeginSetup -Adobe_cmykcolor /initialize get exec -Adobe_cshow /initialize get exec -Adobe_customcolor /initialize get exec -Adobe_pattern /initialize get exec -Adobe_Illustrator88 /initialize get exec -%%BeginEncoding: _Times-Roman Times-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Roman /Times-Roman 0 Z -%%EndEncoding -%%BeginEncoding: _Times-Italic Times-Italic -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Italic /Times-Italic 0 Z -%%EndEncoding - -%%EndSetup - -0 A -0 O -0 R -0 g -0 G -0 i 0 J 0 j 1 w 4 M [] 0 d -u -u -294.471 574.529 m -294.471 584.529 L -77.471 584.529 L -77.471 574.529 L -294.471 574.529 L -0 g F -U -u -294.496 574.504 m -294.496 584.496 L -77.504 584.496 L -77.504 574.504 L -294.496 574.504 L -1.008 w 0 G S -U -u -190.471 468.529 m -190.471 685.529 L -180.471 685.529 L -180.471 468.529 L -190.471 468.529 L -1 g F -U -u -190.496 468.504 m -190.496 685.496 L -180.504 685.496 L -180.504 468.504 L -190.496 468.504 L -1.008 w 0 G S -U -u -u -86.471 586.529 m -86.471 599.529 L -78.471 599.529 L -78.471 586.529 L -86.471 586.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Roman 12 12 0 0 z -[1 0 0 1 78.471 590.529 ]e -1 (+)t -T -u -100.471 586.529 m -100.471 599.529 L -92.471 599.529 L -92.471 586.529 L -100.471 586.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Roman 12 12 0 0 z -[1 0 0 1 92.471 590.529 ]e -1 (+)t -T -u -113.471 586.529 m -113.471 599.529 L -105.471 599.529 L -105.471 586.529 L -113.471 586.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Roman 12 12 0 0 z -[1 0 0 1 105.471 590.529 ]e -1 (+)t -T -u -127.471 586.529 m -127.471 599.529 L -119.471 599.529 L -119.471 586.529 L -127.471 586.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Roman 12 12 0 0 z -[1 0 0 1 119.471 590.529 ]e -1 (+)t -T -u -140.471 586.529 m -140.471 599.529 L -132.471 599.529 L -132.471 586.529 L -140.471 586.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Roman 12 12 0 0 z -[1 0 0 1 132.471 590.529 ]e -1 (+)t -T -u -154.471 586.529 m -154.471 599.529 L -146.471 599.529 L -146.471 586.529 L -154.471 586.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Roman 12 12 0 0 z -[1 0 0 1 146.471 590.529 ]e -1 (+)t -T -U -u -u -224.471 586.529 m -224.471 599.529 L -216.471 599.529 L -216.471 586.529 L -224.471 586.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Roman 12 12 0 0 z -[1 0 0 1 216.471 590.529 ]e -1 (+)t -T -u -238.471 586.529 m -238.471 599.529 L -230.471 599.529 L -230.471 586.529 L -238.471 586.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Roman 12 12 0 0 z -[1 0 0 1 230.471 590.529 ]e -1 (+)t -T -u -251.471 586.529 m -251.471 599.529 L -243.471 599.529 L -243.471 586.529 L -251.471 586.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Roman 12 12 0 0 z -[1 0 0 1 243.471 590.529 ]e -1 (+)t -T -u -265.471 586.529 m -265.471 599.529 L -257.471 599.529 L -257.471 586.529 L -265.471 586.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Roman 12 12 0 0 z -[1 0 0 1 257.471 590.529 ]e -1 (+)t -T -u -278.471 586.529 m -278.471 599.529 L -270.471 599.529 L -270.471 586.529 L -278.471 586.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Roman 12 12 0 0 z -[1 0 0 1 270.471 590.529 ]e -1 (+)t -T -u -292.471 586.529 m -292.471 599.529 L -284.471 599.529 L -284.471 586.529 L -292.471 586.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Roman 12 12 0 0 z -[1 0 0 1 284.471 590.529 ]e -1 (+)t -T -U -u -u -172.471 672.529 m -172.471 685.529 L -167.471 685.529 L -167.471 672.529 L -172.471 672.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Roman 12 12 0 0 z -[1 0 0 1 167.471 676.529 ]e -1 (-)t -T -u -172.471 654.529 m -172.471 667.529 L -167.471 667.529 L -167.471 654.529 L -172.471 654.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Roman 12 12 0 0 z -[1 0 0 1 167.471 658.529 ]e -1 (-)t -T -u -172.471 636.529 m -172.471 649.529 L -167.471 649.529 L -167.471 636.529 L -172.471 636.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Roman 12 12 0 0 z -[1 0 0 1 167.471 640.529 ]e -1 (-)t -T -u -172.471 618.529 m -172.471 631.529 L -167.471 631.529 L -167.471 618.529 L -172.471 618.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Roman 12 12 0 0 z -[1 0 0 1 167.471 622.529 ]e -1 (-)t -T -u -172.471 600.529 m -172.471 613.529 L -167.471 613.529 L -167.471 600.529 L -172.471 600.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Roman 12 12 0 0 z -[1 0 0 1 167.471 604.529 ]e -1 (-)t -T -U -u -u -172.471 541.529 m -172.471 554.529 L -167.471 554.529 L -167.471 541.529 L -172.471 541.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Roman 12 12 0 0 z -[1 0 0 1 167.471 545.529 ]e -1 (-)t -T -u -172.471 523.529 m -172.471 536.529 L -167.471 536.529 L -167.471 523.529 L -172.471 523.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Roman 12 12 0 0 z -[1 0 0 1 167.471 527.529 ]e -1 (-)t -T -u -172.471 505.529 m -172.471 518.529 L -167.471 518.529 L -167.471 505.529 L -172.471 505.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Roman 12 12 0 0 z -[1 0 0 1 167.471 509.529 ]e -1 (-)t -T -u -172.471 487.529 m -172.471 500.529 L -167.471 500.529 L -167.471 487.529 L -172.471 487.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Roman 12 12 0 0 z -[1 0 0 1 167.471 491.529 ]e -1 (-)t -T -u -172.471 469.529 m -172.471 482.529 L -167.471 482.529 L -167.471 469.529 L -172.471 469.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Roman 12 12 0 0 z -[1 0 0 1 167.471 473.529 ]e -1 (-)t -T -U -U -77.504 454.496 m -77.504 418.496 l -1.008 w 0 G S -293.504 454.496 m -293.504 418.496 l -1.008 w 0 G S -86.504 436.496 m -284.504 436.496 l -1.008 w 0 G S -u -77.471 436.529 m -86.471 433.529 L -86.471 436.529 L -86.471 439.529 L -77.471 436.529 L - -0 g F -U -u -77.504 436.496 m -86.504 433.496 L -86.504 436.496 L -86.504 439.496 L -77.504 436.496 L - -1.008 w 0 G s -U -u -293.471 436.529 m -284.471 433.529 L -284.471 436.529 L -284.471 439.529 L -293.471 436.529 L - -0 g F -U -u -293.504 436.496 m -284.504 433.496 L -284.504 436.496 L -284.504 439.496 L -293.504 436.496 L - -1.008 w 0 G s -U -u -193.471 425.529 m -193.471 438.529 L -184.471 438.529 L -184.471 425.529 L -193.471 425.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 184.471 429.529 ]e -1 (L)t -T -u -477 579.5 m -477 577.567 475.433 576 473.5 576 c -471.567 576 470 577.567 470 579.5 c -470 581.433 471.567 583 473.5 583 c -475.433 583 477 581.433 477 579.5 c -0 g F -U -u -476.496 579.5 m -476.496 577.845 475.155 576.504 473.5 576.504 c -471.845 576.504 470.504 577.845 470.504 579.5 c -470.504 581.155 471.845 582.496 473.5 582.496 c -475.155 582.496 476.496 581.155 476.496 579.5 c -1.008 w 0 G S -U -293.504 571.496 m -293.504 544.496 l -1.008 w 0 G S -473.504 575.496 m -473.504 544.496 l -1.008 w 0 G S -302.504 553.496 m -464.504 553.496 l -1.008 w 0 G S -u -293.471 553.529 m -302.471 550.529 L -302.471 553.529 L -302.471 556.529 L -293.471 553.529 L - -0 g F -U -u -293.504 553.496 m -302.504 550.496 L -302.504 553.496 L -302.504 556.496 L -293.504 553.496 L - -1.008 w 0 G s -U -u -473.471 553.529 m -464.471 550.529 L -464.471 553.529 L -464.471 556.529 L -473.471 553.529 L - -0 g F -U -u -473.504 553.496 m -464.504 550.496 L -464.504 553.496 L -464.504 556.496 L -473.504 553.496 L - -1.008 w 0 G s -U -u -391.471 542.529 m -391.471 555.529 L -383.471 555.529 L -383.471 542.529 L -391.471 542.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 383.471 546.529 ]e -1 (x)t -T -u -494.471 570.529 m -494.471 583.529 L -484.471 583.529 L -484.471 570.529 L -494.471 570.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 484.471 574.529 ]e -1 (P)t -T - -%%Trailer -Adobe_Illustrator88 /terminate get exec -Adobe_pattern /terminate get exec -Adobe_customcolor /terminate get exec -Adobe_cshow /terminate get exec -Adobe_cmykcolor /terminate get exec -Adobe_packedarray /terminate get exec -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob16.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob16.gif deleted file mode 100755 index 2bab78907..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob16.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob17.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob17.eps deleted file mode 100755 index 1ac6601a7..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob17.eps +++ /dev/null @@ -1,1686 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad 6.0.1 -%%Title: prob3-7.eps -%%CreationDate: 5/9/1997 -%%DocumentProcSets: Adobe_packedarray 1.0 0 -%%DocumentSuppliedProcSets: Adobe_packedarray 1.0 0 -%%DocumentProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentProcSets: Adobe_cshow 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cshow 1.1 0 -%%DocumentProcSets: Adobe_customcolor 1.0 0 -%%DocumentSuppliedProcSets: Adobe_customcolor 1.0 0 -%%DocumentProcSets: Adobe_pattern 1.9 0 -%%DocumentSuppliedProcSets: Adobe_pattern 1.9 0 -%%DocumentProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentSuppliedProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentFonts: Times-Italic -%%BoundingBox:129 464 429 654 -%%TemplateBox:306 396 306 396 -%%DocumentPreview: Header -%%EndComments - -%%BeginProlog -%%BeginProcSet: Adobe_packedarray 1.0 0 -userdict /Adobe_packedarray 5 dict dup begin put -/initialize -{ -/packedarray where - { - pop - } - { - Adobe_packedarray begin - Adobe_packedarray - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - } ifelse -} def -/terminate -{ -} def -/packedarray -{ -array astore readonly -} def -/setpacking -{ -pop -} def -/currentpacking -{ -false -} def -currentdict readonly pop end -%%EndProcSet -Adobe_packedarray /initialize get exec -%%BeginProcSet: Adobe_cmykcolor 1.1 0 -currentpacking true setpacking -userdict /Adobe_cmykcolor 4 dict dup begin put -/initialize -{ -/setcmykcolor where - { - pop - } - { - userdict /Adobe_cmykcolor_vars 2 dict dup begin put - /_setrgbcolor - /setrgbcolor load def - /_currentrgbcolor - /currentrgbcolor load def - Adobe_cmykcolor begin - Adobe_cmykcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - end - Adobe_cmykcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_cmykcolor eq - { - end - } if -} def -/setcmykcolor -{ -1 sub 4 1 roll -3 - { - 3 index add neg dup 0 lt - { - pop 0 - } if - 3 1 roll - } repeat -Adobe_cmykcolor_vars /_setrgbcolor get exec -pop -} def -/currentcmykcolor -{ -Adobe_cmykcolor_vars /_currentrgbcolor get exec -3 - { - 1 sub neg 3 1 roll - } repeat -0 -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_cshow 1.1 0 -currentpacking true setpacking -userdict /Adobe_cshow 3 dict dup begin put -/initialize -{ -/cshow where - { - pop - } - { - userdict /Adobe_cshow_vars 1 dict dup begin put - /_cshow - {} def - Adobe_cshow begin - Adobe_cshow - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - end - } ifelse -} def -/terminate -{ -} def -/cshow -{ -exch -Adobe_cshow_vars - exch /_cshow - exch put - { - 0 0 Adobe_cshow_vars /_cshow get exec - } forall -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_customcolor 1.0 0 -currentpacking true setpacking -userdict /Adobe_customcolor 5 dict dup begin put -/initialize -{ -/setcustomcolor where - { - pop - } - { - Adobe_customcolor begin - Adobe_customcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - Adobe_customcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_customcolor eq - { - end - } if -} def -/findcmykcustomcolor -{ -5 packedarray -} def -/setcustomcolor -{ -exch -aload pop pop -4 - { - 4 index mul 4 1 roll - } repeat -5 -1 roll pop -setcmykcolor -} def -/setoverprint -{ -pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_pattern 1.9 0 -currentpacking true setpacking -userdict /Adobe_pattern 14 dict dup begin put -/initialize -{ -/definepattern where - { - pop - } - { - Adobe_pattern begin - Adobe_pattern - { - dup xcheck - { - bind - } if - pop pop - } forall - mark - cachestatus 7 1 roll pop pop pop pop exch pop exch - { - { - 10000 add - dup 2 index gt - { - break - } if - dup setcachelimit - } loop - } stopped - cleartomark - } ifelse -} def -/terminate -{ -currentdict Adobe_pattern eq - { - end - } if -} def -errordict -/nocurrentpoint -{ -pop -stop -} put -errordict -/invalidaccess -{ -pop -stop -} put -/patternencoding -256 array def -0 1 255 -{ -patternencoding exch ( ) 2 copy exch 0 exch put cvn put -} for -/definepattern -{ -17 dict begin -/uniform exch def -/cache exch def -/key exch def -/procarray exch def -/mtx exch matrix invertmatrix def -/height exch def -/width exch def -/ctm matrix currentmatrix def -/ptm matrix def -/str 32 string def -/slice 9 dict def -slice /s 1 put -slice /q 256 procarray length div sqrt floor cvi put -slice /b 0 put -/FontBBox [0 0 0 0] def -/FontMatrix mtx matrix copy def -/Encoding patternencoding def -/FontType 3 def -/BuildChar - { - exch - begin - slice begin - dup q dup mul mod s idiv /i exch def - dup q dup mul mod s mod /j exch def - q dup mul idiv procarray exch get - /xl j width s div mul def - /xg j 1 add width s div mul def - /yl i height s div mul def - /yg i 1 add height s div mul def - uniform - { - 1 1 - } - { - width 0 dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - 0 height dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - } ifelse - width 0 cache - { - xl 4 index mul yl 4 index mul xg 6 index mul yg 6 index mul - setcachedevice - } - { - setcharwidth - } ifelse - gsave - scale - newpath - xl yl moveto - xg yl lineto - xg yg lineto - xl yg lineto - closepath - clip - newpath - end - end - exec - grestore - } def -key currentdict definefont -end -} def -/patterncachesize -{ -gsave -newpath -0 0 moveto -width 0 lineto -width height lineto -0 height lineto -closepath -patternmatrix setmatrix -pathbbox -exch ceiling 4 -1 roll floor sub 3 1 roll -ceiling exch floor sub -mul 1 add -grestore -} def -/patterncachelimit -{ -cachestatus 7 1 roll pop pop pop pop pop pop 8 mul -} def -/patternpath -{ -exch dup begin setfont -ctm setmatrix -concat -slice exch /b exch slice /q get dup mul mul put -FontMatrix concat -uniform - { - width 0 dtransform round width div exch round width div exch - 0 height dtransform round height div exch height div exch - 0 0 transform round exch round exch - ptm astore setmatrix - } - { - ptm currentmatrix pop - } ifelse -{currentpoint} stopped not - { - pop pop - pathbbox - true - 4 index 3 index eq - 4 index 3 index eq - and - { - pop false - { - {pop pop} - {pop pop pop true} - {pop pop pop pop pop pop pop true} - {pop true} - pathforall - } stopped - { - pop pop pop pop pop true - } if - } if - { - height div ceiling height mul 4 1 roll - width div ceiling width mul 4 1 roll - height div floor height mul 4 1 roll - width div floor width mul 4 1 roll - 2 index sub height div ceiling cvi exch - 3 index sub width div ceiling cvi exch - 4 2 roll moveto - FontMatrix mtx invertmatrix - dup dup 4 get exch 5 get rmoveto - ptm ptm concatmatrix pop - slice /s - patterncachesize patterncachelimit div ceiling sqrt ceiling cvi - dup slice /q get gt - { - pop slice /q get - } if - put - 0 1 slice /s get dup mul 1 sub - { - slice /b get add - gsave - 0 1 str length 1 sub - { - str exch 2 index put - } for - pop - dup - { - gsave - ptm setmatrix - 1 index str length idiv {str show} repeat - 1 index str length mod str exch 0 exch getinterval show - grestore - 0 height rmoveto - } repeat - grestore - } for - pop pop - } - { - pop pop pop pop - } ifelse - } if -end -} def -/patternclip -{ -clip -} def -/patternstrokepath -{ -strokepath -} def -/patternmatrix -matrix def -/patternfill -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternclip -Adobe_pattern /patternpath get exec -grestore -newpath -} def -/patternstroke -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternstrokepath -true - { - { - { - newpath - moveto - } - { - lineto - } - { - curveto - } - { - closepath - 3 copy - Adobe_pattern /patternfill get exec - } pathforall - pop pop pop - } stopped - { - pop pop pop pop pop - patternclip - Adobe_pattern /patternfill get exec - } if - } - { - patternclip - Adobe_pattern /patternfill get exec - } ifelse -grestore -newpath -} def -/patternashow -{ -3 index type /dicttype eq - { - Adobe_pattern /patternmatrix get 4 1 roll - } if - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 6 index 6 index 6 index - Adobe_pattern /patternfill get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop -} def -/patternashowstroke -{ -4 index type /dicttype eq - { - patternmatrix /patternmatrix get 5 1 roll - } if -4 1 roll - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - 7 index 7 index 7 index - Adobe_pattern /patternstroke get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_Illustrator88 1.19 0 -currentpacking true setpacking -userdict /Adobe_Illustrator88 73 dict dup begin put -/initialize -{ -userdict /Adobe_Illustrator88_vars 31 dict dup begin put -/_lp /none def -/_pf {} def -/_ps {} def -/_psf {} def -/_pss {} def -/_a null def -/_as null def -/_tt 2 array def -/_tl 2 array def -/_tm matrix def -/t {} def -/_gf null def -/_cf 4 array def -/_if null def -/_of false def -/_fc {} def -/_gs null def -/_cs 4 array def -/_is null def -/_os false def -/_sc {} def -/_pd 1 dict def -/_ed 15 dict def -/_pm matrix def -/_fm null def -/_fd null def -/_fdd null def -/_sm null def -/_sd null def -/_sdd null def -/_i null def -Adobe_Illustrator88 begin -Adobe_Illustrator88 dup /nc get begin - { - dup xcheck - { - bind - } if - pop pop - } forall -end -end -end -Adobe_Illustrator88 begin -Adobe_Illustrator88_vars begin -newpath -} def -/terminate -{ -end -end -} def -/_ -null def -/ddef -{ -Adobe_Illustrator88_vars 3 1 roll put -} def -/xput -{ -dup load dup length exch maxlength eq - { - dup dup load dup - length 2 mul dict copy def - } if -load begin def end -} def -/npop -{ - { - pop - } repeat -} def -/sw -{ -stringwidth -exch 5 -1 roll 3 index 1 sub mul add -4 1 roll 3 1 roll 1 sub mul add -} def -/ss -{ -3 -1 roll pop -4 1 roll - { - 2 npop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - stroke - grestore - moveto - 2 copy rmoveto - } exch cshow -3 npop -} def -/sp -{ -exch pop - { - 2 npop (0) exch - 2 copy 0 exch put pop - false charpath - 2 copy rmoveto - } exch cshow -2 npop -} def -/pl -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where -{ -pop true setstrokeadjust -/c -{ -curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll curveto -} def -/V -/v load def -/y -{ -2 copy curveto -} def -/Y -/y load def -/l -{ -lineto -} def -/L -/l load def -/m -{ -moveto -} def -} -{ -/c -{ -pl curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll pl curveto -} def -/V -/v load def -/y -{ -pl 2 copy curveto -} def -/Y -/y load def -/l -{ -pl lineto -} def -/L -/l load def -/m -{ -pl moveto -} def -} ifelse -/d -{ -setdash -} def -/cf -currentflat def -/i -{ -dup 0 eq - { - pop cf - } if -setflat -} def -/j -{ -setlinejoin -} def -/J -{ -setlinecap -} def -/M -{ -setmiterlimit -} def -/w -{ -setlinewidth -} def -/H -{} def -/h -{ -closepath -} def -/N -{ -newpath -} def -/n -/N load def -/F -{ -_pf -} def -/f -{ -closepath -F -} def -/S -{ -_ps -} def -/s -{ -closepath -S -} def -/B -{ -gsave F grestore -S -} def -/b -{ -closepath -B -} def -/W -{ -clip -} def -/ta -{ -_as moveto -_tt aload pop 4 -2 roll -} def -/tl -{ -_tl aload pop translate -} def -/as -{ -{ -0 0 -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg 2 div exch neg 2 div -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg exch neg -} -{ -0 0 -} -} cvlit def -/z -{ -/_a exch ddef -/_as as _a get ddef -_a 2 le - { - 0 _tt astore pop - 0 exch neg _tl astore pop - } - { - 0 exch neg _tt astore pop - neg 0 _tl astore pop - } ifelse -exch findfont exch scalefont setfont -} def -/tm -{ -_tm currentmatrix pop -concat -} def -/I -{ -tm -/t - { - ta sp - tl - } ddef -} def -/o -{ -tm -/t - { - ta 4 npop - tl - newpath - } ddef -} def -/e -{ -tm -/t - { - ta _psf - tl - newpath - } ddef -} def -/r -{ -tm -/t - { - ta _tm _pss - tl - newpath - } ddef -} def -/a -{ -tm -/t - { - 2 copy - ta _psf - newpath - ta _tm _pss - tl - newpath - } ddef -} def -/T -{ -_tm setmatrix -} def -/Z -{ -pop -findfont begin -currentdict dup length 1 add dict begin - { - 1 index /FID ne - { - def - } - { - 2 npop - } ifelse - } forall -/FontName exch def dup length 0 ne - { - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - { - Encoding 2 index 2 index put pop - 1 add - } - { - exch pop - } ifelse - } forall - } if pop -currentdict dup end end -/FontName get exch definefont pop -} def -/u -{} def -/U -{} def -/q -{ -gsave -} def -/Q -{ -grestore -} def -/` -{ -/_i save ddef -6 1 roll 4 npop -concat -userdict begin -/showpage {} def -false setoverprint -pop -} def -/~ -{ -end -_i restore -} def -/@ -{} def -/& -{} def -/O -{ -0 ne -/_of exch ddef -/_lp /none ddef -} def -/R -{ -0 ne -/_os exch ddef -/_lp /none ddef -} def -/g -{ -/_gf exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _gf setgray - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/G -{ -/_gs exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _gs setgray - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/k -{ -_cf astore pop -/_fc -{ -_lp /fill ne - { - _of setoverprint - _cf aload pop setcmykcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/K -{ -_cs astore pop -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _cs aload pop setcmykcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/x -{ -/_gf exch ddef -findcmykcustomcolor -/_if exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _if _gf 1 exch sub setcustomcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/X -{ -/_gs exch ddef -findcmykcustomcolor -/_is exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _is _gs 1 exch sub setcustomcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/dp -{ -dup null eq -{ -pop -_dp 0 ne - { - 0 1 _dp 1 sub _dl mod - { - _da exch get 3 get - } for - _dp 1 sub _dl mod 1 add packedarray - _da 0 get aload pop 8 -1 roll 5 -1 roll pop 4 1 roll - definepattern pop - } if -} -{ -_dp 0 ne _dp _dl mod 0 eq and - { - null dp - } if -7 packedarray _da exch _dp _dl mod exch put -_dp _dl mod _da 0 get 4 get 2 packedarray -/_dp _dp 1 add def -} ifelse -} def -/E -{ -_ed begin -dup 0 get type /arraytype ne - { - 0 - { - dup 1 add index type /arraytype eq - { - 1 add - } - { - exit - } ifelse - } loop - array astore - } if -/_dd exch def -/_ury exch def -/_urx exch def -/_lly exch def -/_llx exch def -/_n exch def -/_y 0 def -/_dl 4 def -/_dp 0 def -/_da _dl array def -0 1 _dd length 1 sub - { - /_d exch _dd exch get def - 0 2 _d length 2 sub - { - /_x exch def - /_c _d _x get _ ne def - /_r _d _x 1 add get cvlit def - _r _ ne - { - _urx _llx sub _ury _lly sub [1 0 0 1 0 0] - [ - /save cvx - _llx neg _lly neg /translate cvx - _c - { - nc /begin cvx - } if - _r dup type /stringtype eq - { - cvx - } - { - {exec} /forall cvx - } ifelse - _c - { - /end cvx - } if - /restore cvx - ] cvx - /_fn 12 _n length add string def - _y _fn cvs pop - /_y _y 1 add def - _fn 12 _n putinterval - _fn _c false dp - _d exch _x 1 add exch put - } if - } for - } for -null dp -_n _dd /_pd -end xput -} def -/fc -{ -_fm dup concatmatrix pop -} def -/p -{ -/_fm exch ddef -9 -2 roll _pm translate fc -7 -2 roll _pm scale fc -5 -1 roll _pm rotate fc -4 -2 roll exch 0 ne - { - dup _pm rotate fc - 1 -1 _pm scale fc - neg _pm rotate fc - } - { - pop - } ifelse -dup _pm rotate fc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore fc -neg _pm rotate fc -_pd exch get /_fdd exch ddef -/_pf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - patternfill - } - { - pop - fill - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_psf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - 10 copy 6 npop exch pop patternashow - } - { - pop - 7 copy 3 npop exch pop ashow - } ifelse - grestore - pop - } for - pop - } for -restore -4 npop newpath -} ddef -/_lp /none ddef -} def -/sc -{ -_sm dup concatmatrix pop -} def -/P -{ -/_sm exch ddef -9 -2 roll _pm translate sc -7 -2 roll _pm scale sc -5 -1 roll _pm rotate sc -4 -2 roll exch 0 ne - { - dup _pm rotate sc - 1 -1 _pm scale sc - neg _pm rotate sc - } - { - pop - } ifelse -dup _pm rotate sc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore sc -neg _pm rotate sc -_pd exch get /_sdd exch ddef -/_ps -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - patternstroke - } - { - pop stroke - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_pss -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - 11 copy 6 npop 3 -1 roll pop patternashowstroke - } - { - pop - 8 copy 3 npop ss - } ifelse - grestore - pop - } for - pop - } for -restore -5 npop newpath -} ddef -/_lp /none ddef -} def -/A -{ -pop -} def -/nc 3 dict def -nc begin -/setgray -{ -pop -} bind def -/setcmykcolor -{ -4 npop -} bind def -/setcustomcolor -{ -2 npop -} bind def -currentdict readonly pop end -currentdict readonly pop end -setpacking -%%EndProcSet -%%EndProlog - -%%BeginSetup -Adobe_cmykcolor /initialize get exec -Adobe_cshow /initialize get exec -Adobe_customcolor /initialize get exec -Adobe_pattern /initialize get exec -Adobe_Illustrator88 /initialize get exec -%%BeginEncoding: _Times-Italic Times-Italic -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Italic /Times-Italic 0 Z -%%EndEncoding - -%%EndSetup - -0 A -0 O -0 R -0 g -0 G -0 i 0 J 0 j 1 w 4 M [] 0 d -u -134.471 503.529 m -134.471 583.611 199.389 648.529 279.471 648.529 c -279.471 648.529 279.471 503.529 279.471 503.529 c -279.471 503.529 134.471 503.529 134.471 503.529 c -1 g F -279.471 648.529 m -359.552 648.529 424.471 583.611 424.471 503.529 c -424.471 503.529 279.471 503.529 279.471 503.529 c -279.471 503.529 279.471 648.529 279.471 648.529 c -1 g F -U -u -134.478 503.529 m -134.478 583.606 199.394 648.522 279.471 648.522 c -2.016 w 0 G S -279.471 648.522 m -359.548 648.522 424.463 583.606 424.463 503.529 c -2.016 w 0 G S -U -u -206.471 503.529 m -206.471 543.846 239.154 576.529 279.471 576.529 c -279.471 576.529 279.471 503.529 279.471 503.529 c -279.471 503.529 206.471 503.529 206.471 503.529 c -1 g F -279.471 576.529 m -319.787 576.529 352.471 543.846 352.471 503.529 c -352.471 503.529 279.471 503.529 279.471 503.529 c -279.471 503.529 279.471 576.529 279.471 576.529 c -1 g F -U -u -206.478 503.529 m -206.478 543.842 239.158 576.522 279.471 576.522 c -2.016 w 0 G S -279.471 576.522 m -319.783 576.522 352.463 543.842 352.463 503.529 c -2.016 w 0 G S -U -136.478 503.522 m -206.478 503.522 l -2.016 w 0 G S -352.478 503.522 m -422.478 503.522 l -2.016 w 0 G S -207.504 499.496 m -207.504 467.496 l -1.008 w 0 G S -279.504 499.496 m -279.504 467.496 l -1.008 w 0 G S -423.504 499.496 m -423.504 467.496 l -1.008 w 0 G S -216.504 485.496 m -270.504 485.496 l -1.008 w 0 G S -u -207.471 485.529 m -216.471 482.529 L -216.471 485.529 L -216.471 488.529 L -207.471 485.529 L - -0 g F -U -u -207.504 485.496 m -216.504 482.496 L -216.504 485.496 L -216.504 488.496 L -207.504 485.496 L - -1.008 w 0 G s -U -u -279.471 485.529 m -270.471 482.529 L -270.471 485.529 L -270.471 488.529 L -279.471 485.529 L - -0 g F -U -u -279.504 485.496 m -270.504 482.496 L -270.504 485.496 L -270.504 488.496 L -279.504 485.496 L - -1.008 w 0 G s -U -288.504 485.496 m -414.504 485.496 l -1.008 w 0 G S -u -279.471 485.529 m -288.471 482.529 L -288.471 485.529 L -288.471 488.529 L -279.471 485.529 L - -0 g F -U -u -279.504 485.496 m -288.504 482.496 L -288.504 485.496 L -288.504 488.496 L -279.504 485.496 L - -1.008 w 0 G s -U -u -423.471 485.529 m -414.471 482.529 L -414.471 485.529 L -414.471 488.529 L -423.471 485.529 L - -0 g F -U -u -423.504 485.496 m -414.504 482.496 L -414.504 485.496 L -414.504 488.496 L -423.504 485.496 L - -1.008 w 0 G s -U -u -250.471 476.529 m -250.471 489.529 L -234.471 489.529 L -234.471 476.529 L -250.471 476.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 234.471 480.529 ]e -2 (R1)t -T -u -363.471 476.529 m -363.471 489.529 L -347.471 489.529 L -347.471 476.529 L -363.471 476.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 347.471 480.529 ]e -2 (R2)t -T -u -293.471 503.529 m -293.471 516.529 L -283.471 516.529 L -283.471 503.529 L -293.471 503.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 283.471 507.529 ]e -1 (P)t -T -u -283 503.5 m -283 501.567 281.433 500 279.5 500 c -277.567 500 276 501.567 276 503.5 c -276 505.433 277.567 507 279.5 507 c -281.433 507 283 505.433 283 503.5 c -0 g F -U -u -282.496 503.5 m -282.496 501.845 281.155 500.504 279.5 500.504 c -277.845 500.504 276.504 501.845 276.504 503.5 c -276.504 505.155 277.845 506.496 279.5 506.496 c -281.155 506.496 282.496 505.155 282.496 503.5 c -1.008 w 0 G S -U - -%%Trailer -Adobe_Illustrator88 /terminate get exec -Adobe_pattern /terminate get exec -Adobe_customcolor /terminate get exec -Adobe_cshow /terminate get exec -Adobe_cmykcolor /terminate get exec -Adobe_packedarray /terminate get exec -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob17.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob17.gif deleted file mode 100755 index 0f4695737..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob17.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob18.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob18.eps deleted file mode 100755 index 59dd14a4e..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob18.eps +++ /dev/null @@ -1,1584 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad 6.0.1 -%%Title: prob1-5.eps -%%CreationDate: 5/9/1997 -%%DocumentProcSets: Adobe_packedarray 1.0 0 -%%DocumentSuppliedProcSets: Adobe_packedarray 1.0 0 -%%DocumentProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentProcSets: Adobe_cshow 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cshow 1.1 0 -%%DocumentProcSets: Adobe_customcolor 1.0 0 -%%DocumentSuppliedProcSets: Adobe_customcolor 1.0 0 -%%DocumentProcSets: Adobe_pattern 1.9 0 -%%DocumentSuppliedProcSets: Adobe_pattern 1.9 0 -%%DocumentProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentSuppliedProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentFonts: Times-Italic -%%BoundingBox:171 490 396 616 -%%TemplateBox:306 396 306 396 -%%DocumentPreview: Header -%%EndComments - -%%BeginProlog -%%BeginProcSet: Adobe_packedarray 1.0 0 -userdict /Adobe_packedarray 5 dict dup begin put -/initialize -{ -/packedarray where - { - pop - } - { - Adobe_packedarray begin - Adobe_packedarray - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - } ifelse -} def -/terminate -{ -} def -/packedarray -{ -array astore readonly -} def -/setpacking -{ -pop -} def -/currentpacking -{ -false -} def -currentdict readonly pop end -%%EndProcSet -Adobe_packedarray /initialize get exec -%%BeginProcSet: Adobe_cmykcolor 1.1 0 -currentpacking true setpacking -userdict /Adobe_cmykcolor 4 dict dup begin put -/initialize -{ -/setcmykcolor where - { - pop - } - { - userdict /Adobe_cmykcolor_vars 2 dict dup begin put - /_setrgbcolor - /setrgbcolor load def - /_currentrgbcolor - /currentrgbcolor load def - Adobe_cmykcolor begin - Adobe_cmykcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - end - Adobe_cmykcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_cmykcolor eq - { - end - } if -} def -/setcmykcolor -{ -1 sub 4 1 roll -3 - { - 3 index add neg dup 0 lt - { - pop 0 - } if - 3 1 roll - } repeat -Adobe_cmykcolor_vars /_setrgbcolor get exec -pop -} def -/currentcmykcolor -{ -Adobe_cmykcolor_vars /_currentrgbcolor get exec -3 - { - 1 sub neg 3 1 roll - } repeat -0 -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_cshow 1.1 0 -currentpacking true setpacking -userdict /Adobe_cshow 3 dict dup begin put -/initialize -{ -/cshow where - { - pop - } - { - userdict /Adobe_cshow_vars 1 dict dup begin put - /_cshow - {} def - Adobe_cshow begin - Adobe_cshow - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - end - } ifelse -} def -/terminate -{ -} def -/cshow -{ -exch -Adobe_cshow_vars - exch /_cshow - exch put - { - 0 0 Adobe_cshow_vars /_cshow get exec - } forall -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_customcolor 1.0 0 -currentpacking true setpacking -userdict /Adobe_customcolor 5 dict dup begin put -/initialize -{ -/setcustomcolor where - { - pop - } - { - Adobe_customcolor begin - Adobe_customcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - Adobe_customcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_customcolor eq - { - end - } if -} def -/findcmykcustomcolor -{ -5 packedarray -} def -/setcustomcolor -{ -exch -aload pop pop -4 - { - 4 index mul 4 1 roll - } repeat -5 -1 roll pop -setcmykcolor -} def -/setoverprint -{ -pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_pattern 1.9 0 -currentpacking true setpacking -userdict /Adobe_pattern 14 dict dup begin put -/initialize -{ -/definepattern where - { - pop - } - { - Adobe_pattern begin - Adobe_pattern - { - dup xcheck - { - bind - } if - pop pop - } forall - mark - cachestatus 7 1 roll pop pop pop pop exch pop exch - { - { - 10000 add - dup 2 index gt - { - break - } if - dup setcachelimit - } loop - } stopped - cleartomark - } ifelse -} def -/terminate -{ -currentdict Adobe_pattern eq - { - end - } if -} def -errordict -/nocurrentpoint -{ -pop -stop -} put -errordict -/invalidaccess -{ -pop -stop -} put -/patternencoding -256 array def -0 1 255 -{ -patternencoding exch ( ) 2 copy exch 0 exch put cvn put -} for -/definepattern -{ -17 dict begin -/uniform exch def -/cache exch def -/key exch def -/procarray exch def -/mtx exch matrix invertmatrix def -/height exch def -/width exch def -/ctm matrix currentmatrix def -/ptm matrix def -/str 32 string def -/slice 9 dict def -slice /s 1 put -slice /q 256 procarray length div sqrt floor cvi put -slice /b 0 put -/FontBBox [0 0 0 0] def -/FontMatrix mtx matrix copy def -/Encoding patternencoding def -/FontType 3 def -/BuildChar - { - exch - begin - slice begin - dup q dup mul mod s idiv /i exch def - dup q dup mul mod s mod /j exch def - q dup mul idiv procarray exch get - /xl j width s div mul def - /xg j 1 add width s div mul def - /yl i height s div mul def - /yg i 1 add height s div mul def - uniform - { - 1 1 - } - { - width 0 dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - 0 height dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - } ifelse - width 0 cache - { - xl 4 index mul yl 4 index mul xg 6 index mul yg 6 index mul - setcachedevice - } - { - setcharwidth - } ifelse - gsave - scale - newpath - xl yl moveto - xg yl lineto - xg yg lineto - xl yg lineto - closepath - clip - newpath - end - end - exec - grestore - } def -key currentdict definefont -end -} def -/patterncachesize -{ -gsave -newpath -0 0 moveto -width 0 lineto -width height lineto -0 height lineto -closepath -patternmatrix setmatrix -pathbbox -exch ceiling 4 -1 roll floor sub 3 1 roll -ceiling exch floor sub -mul 1 add -grestore -} def -/patterncachelimit -{ -cachestatus 7 1 roll pop pop pop pop pop pop 8 mul -} def -/patternpath -{ -exch dup begin setfont -ctm setmatrix -concat -slice exch /b exch slice /q get dup mul mul put -FontMatrix concat -uniform - { - width 0 dtransform round width div exch round width div exch - 0 height dtransform round height div exch height div exch - 0 0 transform round exch round exch - ptm astore setmatrix - } - { - ptm currentmatrix pop - } ifelse -{currentpoint} stopped not - { - pop pop - pathbbox - true - 4 index 3 index eq - 4 index 3 index eq - and - { - pop false - { - {pop pop} - {pop pop pop true} - {pop pop pop pop pop pop pop true} - {pop true} - pathforall - } stopped - { - pop pop pop pop pop true - } if - } if - { - height div ceiling height mul 4 1 roll - width div ceiling width mul 4 1 roll - height div floor height mul 4 1 roll - width div floor width mul 4 1 roll - 2 index sub height div ceiling cvi exch - 3 index sub width div ceiling cvi exch - 4 2 roll moveto - FontMatrix mtx invertmatrix - dup dup 4 get exch 5 get rmoveto - ptm ptm concatmatrix pop - slice /s - patterncachesize patterncachelimit div ceiling sqrt ceiling cvi - dup slice /q get gt - { - pop slice /q get - } if - put - 0 1 slice /s get dup mul 1 sub - { - slice /b get add - gsave - 0 1 str length 1 sub - { - str exch 2 index put - } for - pop - dup - { - gsave - ptm setmatrix - 1 index str length idiv {str show} repeat - 1 index str length mod str exch 0 exch getinterval show - grestore - 0 height rmoveto - } repeat - grestore - } for - pop pop - } - { - pop pop pop pop - } ifelse - } if -end -} def -/patternclip -{ -clip -} def -/patternstrokepath -{ -strokepath -} def -/patternmatrix -matrix def -/patternfill -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternclip -Adobe_pattern /patternpath get exec -grestore -newpath -} def -/patternstroke -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternstrokepath -true - { - { - { - newpath - moveto - } - { - lineto - } - { - curveto - } - { - closepath - 3 copy - Adobe_pattern /patternfill get exec - } pathforall - pop pop pop - } stopped - { - pop pop pop pop pop - patternclip - Adobe_pattern /patternfill get exec - } if - } - { - patternclip - Adobe_pattern /patternfill get exec - } ifelse -grestore -newpath -} def -/patternashow -{ -3 index type /dicttype eq - { - Adobe_pattern /patternmatrix get 4 1 roll - } if - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 6 index 6 index 6 index - Adobe_pattern /patternfill get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop -} def -/patternashowstroke -{ -4 index type /dicttype eq - { - patternmatrix /patternmatrix get 5 1 roll - } if -4 1 roll - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - 7 index 7 index 7 index - Adobe_pattern /patternstroke get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_Illustrator88 1.19 0 -currentpacking true setpacking -userdict /Adobe_Illustrator88 73 dict dup begin put -/initialize -{ -userdict /Adobe_Illustrator88_vars 31 dict dup begin put -/_lp /none def -/_pf {} def -/_ps {} def -/_psf {} def -/_pss {} def -/_a null def -/_as null def -/_tt 2 array def -/_tl 2 array def -/_tm matrix def -/t {} def -/_gf null def -/_cf 4 array def -/_if null def -/_of false def -/_fc {} def -/_gs null def -/_cs 4 array def -/_is null def -/_os false def -/_sc {} def -/_pd 1 dict def -/_ed 15 dict def -/_pm matrix def -/_fm null def -/_fd null def -/_fdd null def -/_sm null def -/_sd null def -/_sdd null def -/_i null def -Adobe_Illustrator88 begin -Adobe_Illustrator88 dup /nc get begin - { - dup xcheck - { - bind - } if - pop pop - } forall -end -end -end -Adobe_Illustrator88 begin -Adobe_Illustrator88_vars begin -newpath -} def -/terminate -{ -end -end -} def -/_ -null def -/ddef -{ -Adobe_Illustrator88_vars 3 1 roll put -} def -/xput -{ -dup load dup length exch maxlength eq - { - dup dup load dup - length 2 mul dict copy def - } if -load begin def end -} def -/npop -{ - { - pop - } repeat -} def -/sw -{ -stringwidth -exch 5 -1 roll 3 index 1 sub mul add -4 1 roll 3 1 roll 1 sub mul add -} def -/ss -{ -3 -1 roll pop -4 1 roll - { - 2 npop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - stroke - grestore - moveto - 2 copy rmoveto - } exch cshow -3 npop -} def -/sp -{ -exch pop - { - 2 npop (0) exch - 2 copy 0 exch put pop - false charpath - 2 copy rmoveto - } exch cshow -2 npop -} def -/pl -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where -{ -pop true setstrokeadjust -/c -{ -curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll curveto -} def -/V -/v load def -/y -{ -2 copy curveto -} def -/Y -/y load def -/l -{ -lineto -} def -/L -/l load def -/m -{ -moveto -} def -} -{ -/c -{ -pl curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll pl curveto -} def -/V -/v load def -/y -{ -pl 2 copy curveto -} def -/Y -/y load def -/l -{ -pl lineto -} def -/L -/l load def -/m -{ -pl moveto -} def -} ifelse -/d -{ -setdash -} def -/cf -currentflat def -/i -{ -dup 0 eq - { - pop cf - } if -setflat -} def -/j -{ -setlinejoin -} def -/J -{ -setlinecap -} def -/M -{ -setmiterlimit -} def -/w -{ -setlinewidth -} def -/H -{} def -/h -{ -closepath -} def -/N -{ -newpath -} def -/n -/N load def -/F -{ -_pf -} def -/f -{ -closepath -F -} def -/S -{ -_ps -} def -/s -{ -closepath -S -} def -/B -{ -gsave F grestore -S -} def -/b -{ -closepath -B -} def -/W -{ -clip -} def -/ta -{ -_as moveto -_tt aload pop 4 -2 roll -} def -/tl -{ -_tl aload pop translate -} def -/as -{ -{ -0 0 -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg 2 div exch neg 2 div -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg exch neg -} -{ -0 0 -} -} cvlit def -/z -{ -/_a exch ddef -/_as as _a get ddef -_a 2 le - { - 0 _tt astore pop - 0 exch neg _tl astore pop - } - { - 0 exch neg _tt astore pop - neg 0 _tl astore pop - } ifelse -exch findfont exch scalefont setfont -} def -/tm -{ -_tm currentmatrix pop -concat -} def -/I -{ -tm -/t - { - ta sp - tl - } ddef -} def -/o -{ -tm -/t - { - ta 4 npop - tl - newpath - } ddef -} def -/e -{ -tm -/t - { - ta _psf - tl - newpath - } ddef -} def -/r -{ -tm -/t - { - ta _tm _pss - tl - newpath - } ddef -} def -/a -{ -tm -/t - { - 2 copy - ta _psf - newpath - ta _tm _pss - tl - newpath - } ddef -} def -/T -{ -_tm setmatrix -} def -/Z -{ -pop -findfont begin -currentdict dup length 1 add dict begin - { - 1 index /FID ne - { - def - } - { - 2 npop - } ifelse - } forall -/FontName exch def dup length 0 ne - { - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - { - Encoding 2 index 2 index put pop - 1 add - } - { - exch pop - } ifelse - } forall - } if pop -currentdict dup end end -/FontName get exch definefont pop -} def -/u -{} def -/U -{} def -/q -{ -gsave -} def -/Q -{ -grestore -} def -/` -{ -/_i save ddef -6 1 roll 4 npop -concat -userdict begin -/showpage {} def -false setoverprint -pop -} def -/~ -{ -end -_i restore -} def -/@ -{} def -/& -{} def -/O -{ -0 ne -/_of exch ddef -/_lp /none ddef -} def -/R -{ -0 ne -/_os exch ddef -/_lp /none ddef -} def -/g -{ -/_gf exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _gf setgray - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/G -{ -/_gs exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _gs setgray - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/k -{ -_cf astore pop -/_fc -{ -_lp /fill ne - { - _of setoverprint - _cf aload pop setcmykcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/K -{ -_cs astore pop -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _cs aload pop setcmykcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/x -{ -/_gf exch ddef -findcmykcustomcolor -/_if exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _if _gf 1 exch sub setcustomcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/X -{ -/_gs exch ddef -findcmykcustomcolor -/_is exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _is _gs 1 exch sub setcustomcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/dp -{ -dup null eq -{ -pop -_dp 0 ne - { - 0 1 _dp 1 sub _dl mod - { - _da exch get 3 get - } for - _dp 1 sub _dl mod 1 add packedarray - _da 0 get aload pop 8 -1 roll 5 -1 roll pop 4 1 roll - definepattern pop - } if -} -{ -_dp 0 ne _dp _dl mod 0 eq and - { - null dp - } if -7 packedarray _da exch _dp _dl mod exch put -_dp _dl mod _da 0 get 4 get 2 packedarray -/_dp _dp 1 add def -} ifelse -} def -/E -{ -_ed begin -dup 0 get type /arraytype ne - { - 0 - { - dup 1 add index type /arraytype eq - { - 1 add - } - { - exit - } ifelse - } loop - array astore - } if -/_dd exch def -/_ury exch def -/_urx exch def -/_lly exch def -/_llx exch def -/_n exch def -/_y 0 def -/_dl 4 def -/_dp 0 def -/_da _dl array def -0 1 _dd length 1 sub - { - /_d exch _dd exch get def - 0 2 _d length 2 sub - { - /_x exch def - /_c _d _x get _ ne def - /_r _d _x 1 add get cvlit def - _r _ ne - { - _urx _llx sub _ury _lly sub [1 0 0 1 0 0] - [ - /save cvx - _llx neg _lly neg /translate cvx - _c - { - nc /begin cvx - } if - _r dup type /stringtype eq - { - cvx - } - { - {exec} /forall cvx - } ifelse - _c - { - /end cvx - } if - /restore cvx - ] cvx - /_fn 12 _n length add string def - _y _fn cvs pop - /_y _y 1 add def - _fn 12 _n putinterval - _fn _c false dp - _d exch _x 1 add exch put - } if - } for - } for -null dp -_n _dd /_pd -end xput -} def -/fc -{ -_fm dup concatmatrix pop -} def -/p -{ -/_fm exch ddef -9 -2 roll _pm translate fc -7 -2 roll _pm scale fc -5 -1 roll _pm rotate fc -4 -2 roll exch 0 ne - { - dup _pm rotate fc - 1 -1 _pm scale fc - neg _pm rotate fc - } - { - pop - } ifelse -dup _pm rotate fc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore fc -neg _pm rotate fc -_pd exch get /_fdd exch ddef -/_pf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - patternfill - } - { - pop - fill - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_psf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - 10 copy 6 npop exch pop patternashow - } - { - pop - 7 copy 3 npop exch pop ashow - } ifelse - grestore - pop - } for - pop - } for -restore -4 npop newpath -} ddef -/_lp /none ddef -} def -/sc -{ -_sm dup concatmatrix pop -} def -/P -{ -/_sm exch ddef -9 -2 roll _pm translate sc -7 -2 roll _pm scale sc -5 -1 roll _pm rotate sc -4 -2 roll exch 0 ne - { - dup _pm rotate sc - 1 -1 _pm scale sc - neg _pm rotate sc - } - { - pop - } ifelse -dup _pm rotate sc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore sc -neg _pm rotate sc -_pd exch get /_sdd exch ddef -/_ps -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - patternstroke - } - { - pop stroke - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_pss -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - 11 copy 6 npop 3 -1 roll pop patternashowstroke - } - { - pop - 8 copy 3 npop ss - } ifelse - grestore - pop - } for - pop - } for -restore -5 npop newpath -} ddef -/_lp /none ddef -} def -/A -{ -pop -} def -/nc 3 dict def -nc begin -/setgray -{ -pop -} bind def -/setcmykcolor -{ -4 npop -} bind def -/setcustomcolor -{ -2 npop -} bind def -currentdict readonly pop end -currentdict readonly pop end -setpacking -%%EndProcSet -%%EndProlog - -%%BeginSetup -Adobe_cmykcolor /initialize get exec -Adobe_cshow /initialize get exec -Adobe_customcolor /initialize get exec -Adobe_pattern /initialize get exec -Adobe_Illustrator88 /initialize get exec -%%BeginEncoding: _Times-Italic Times-Italic -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Italic /Times-Italic 0 Z -%%EndEncoding - -%%EndSetup - -0 A -0 O -0 R -0 g -0 G -0 i 0 J 0 j 1 w 4 M [] 0 d -u -392.471 602.029 m -392.471 542.107 343.893 493.529 283.971 493.529 c -283.971 493.529 283.971 602.029 283.971 602.029 c -283.971 602.029 392.471 602.029 392.471 602.029 c -1 g F -283.971 493.529 m -224.048 493.529 175.471 542.107 175.471 602.029 c -175.471 602.029 283.971 602.029 283.971 602.029 c -283.971 602.029 283.971 493.529 283.971 493.529 c -1 g F -U -u -392.496 602 m -392.496 542.079 343.921 493.504 284 493.504 c -1.008 w 0 G S -284 493.504 m -224.079 493.504 175.504 542.079 175.504 602 c -1.008 w 0 G S -U -388.504 602.496 m -391.504 602.496 l -1.008 w 0 G S -283.504 602.496 m -283.504 506.496 l -1.008 w 0 G S -u -283.471 497.529 m -280.471 506.529 L -283.471 506.529 L -286.471 506.529 L -283.471 497.529 L - -0 g F -U -u -283.504 497.496 m -280.504 506.496 L -283.504 506.496 L -286.504 506.496 L -283.504 497.496 L - -1.008 w 0 G s -U -u -287 602.5 m -287 600.567 285.433 599 283.5 599 c -281.567 599 280 600.567 280 602.5 c -280 604.433 281.567 606 283.5 606 c -285.433 606 287 604.433 287 602.5 c -0 g F -U -u -286.496 602.5 m -286.496 600.845 285.155 599.504 283.5 599.504 c -281.845 599.504 280.504 600.845 280.504 602.5 c -280.504 604.155 281.845 605.496 283.5 605.496 c -285.155 605.496 286.496 604.155 286.496 602.5 c -1.008 w 0 G S -U -u -290.471 551.529 m -290.471 564.529 L -280.471 564.529 L -280.471 551.529 L -290.471 551.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 280.471 555.529 ]e -1 (R)t -T -u -298.471 600.529 m -298.471 613.529 L -288.471 613.529 L -288.471 600.529 L -298.471 600.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 288.471 604.529 ]e -1 (P)t -T - -%%Trailer -Adobe_Illustrator88 /terminate get exec -Adobe_pattern /terminate get exec -Adobe_customcolor /terminate get exec -Adobe_cshow /terminate get exec -Adobe_cmykcolor /terminate get exec -Adobe_packedarray /terminate get exec -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob18.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob18.gif deleted file mode 100755 index 333257b74..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/prob18.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/texput.log b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/texput.log deleted file mode 100755 index a9bb4da85..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype55/texput.log +++ /dev/null @@ -1,18 +0,0 @@ -This is TeX, Version 3.1415 (C version 6.1) (format=lplain 96.1.26) 24 SEP 1998 16:20 -**p05av2.tes - -! Emergency stop. -<*> p05av2.tes - -End of file on the terminal! - - -Here is how much of TeX's memory you used: - 4 strings out of 10953 - 20 string characters out of 72769 - 42064 words of memory out of 262141 - 2936 multiletter control sequences out of 9500 - 3640 words of font info for 14 fonts, out of 100000 for 255 - 14 hyphenation exceptions out of 607 - 0i,0n,0p,13b,6s stack positions out of 300i,40n,60p,3000b,4000s -No pages of output. diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob10.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob10.eps deleted file mode 100755 index 873ec0ffd..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob10.eps +++ /dev/null @@ -1,544 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: prob5602.eps -%%CreationDate: 7/23/1996 -%%Pages: 0 -%%DocumentFonts: Helvetica -%%BoundingBox:181 494 303 585 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica/Helvetica 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -4218.5 4223.5 m -4140.5 4223.5 L -35 slw 0 sg str -gr -gs -4140.5 4145.5 m -4140.5 4301.5 L -35 slw 0 sg str -gr -gs -3983.5 4223.5 m -4061.5 4223.5 L -35 slw 0 sg str -gr -gs -4061.5 4145.5 m -4061.5 4301.5 L -35 slw 0 sg str -gr -gs -4751.5 4223.5 m -4673.5 4223.5 L -35 slw 0 sg str -gr -gs -4673.5 4145.5 m -4673.5 4301.5 L -35 slw 0 sg str -gr -gs -4517.5 4223.5 m -4595.5 4223.5 L -35 slw 0 sg str -gr -gs -4595.5 4145.5 m -4595.5 4301.5 L -35 slw 0 sg str -gr -gs -4218.5 4028.5 m -4140.5 4028.5 L -35 slw 0 sg str -gr -gs -4140.5 3950.5 m -4140.5 4106.5 L -35 slw 0 sg str -gr -gs -3983.5 4028.5 m -4061.5 4028.5 L -35 slw 0 sg str -gr -gs -4061.5 3950.5 m -4061.5 4106.5 L -35 slw 0 sg str -gr -gs -4218.5 4431.5 m -4140.5 4431.5 L -35 slw 0 sg str -gr -gs -4140.5 4353.5 m -4140.5 4509.5 L -35 slw 0 sg str -gr -gs -3983.5 4431.5 m -4061.5 4431.5 L -35 slw 0 sg str -gr -gs -4061.5 4353.5 m -4061.5 4509.5 L -35 slw 0 sg str -gr -gs -3983.5 4028.5 m -3983.5 4431.5 L -35 slw 0 sg str -gr -gs -4218.5 4028.5 m -4218.5 4431.5 L -35 slw 0 sg str -gr -gs -4218.5 4223.5 m -4517.5 4223.5 L -35 slw 0 sg str -gr -gs -3983.5 4223.5 m -3684.5 4223.5 L -35 slw 0 sg str -gr -gs -4751.5 4223.5 m -4751.5 4731.5 L -35 slw 0 sg str -gr -gs -3684.5 4230.5 m -3684.5 4731.5 L -35 slw 0 sg str -gr -gs -3879 3837 4035 4010 R -1 sg fill -gr -/_Helvetica ff [156 0 0 -156 0 0] mf sf -3879 3975 m 0 sg (c1) show -gs -4244 4032 4400 4206 R -1 sg fill -gr -4244 4170 m 1.56 slw 0 sg (c2) show -gs -3801 4371 3957 4544 R -1 sg fill -gr -3801 4509 m 1.56 slw 0 sg (c3) show -gs -4699 4006 4856 4180 R -1 sg fill -gr -4699 4144 m 1.56 slw 0 sg (c4) show -gs -4660 4748 4817 4922 R -1 sg fill -gr -4660 4886 m 1.56 slw 0 sg (c7) show -gs -4244 4462 4400 4635 R -1 sg fill -gr -4244 4600 m 1.56 slw 0 sg (c6) show -gs -3840 4753 3996 4926 R -1 sg fill -gr -3840 4891 m 1.56 slw 0 sg (c5) show -gs -4406.5 4627.5 m -4406.5 4835.5 L -35 slw 0 sg str -gr -gs -3684.5 4444.5 m -3528.5 4444.5 L -35 slw 0 sg str -gr -gs -4751.5 4438.5 m -4908.5 4438.5 L -35 slw 0 sg str -gr -gs -3389 4358 3458 4531 R -1 sg fill -gr -3389 4496 m 1.56 slw 0 sg (x) show -gs -4960 4358 5029 4531 R -1 sg fill -gr -4960 4496 m 1.56 slw 0 sg (y) show -gs -4641.5 4627.5 m -4563.5 4627.5 L -35 slw 0 sg str -gr -gs -4563.5 4549.5 m -4563.5 4705.5 L -35 slw 0 sg str -gr -gs -4406.5 4627.5 m -4485.5 4627.5 L -35 slw 0 sg str -gr -gs -4485.5 4549.5 m -4485.5 4705.5 L -35 slw 0 sg str -gr -gs -4641.5 4835.5 m -4563.5 4835.5 L -35 slw 0 sg str -gr -gs -4563.5 4757.5 m -4563.5 4913.5 L -35 slw 0 sg str -gr -gs -4406.5 4835.5 m -4485.5 4835.5 L -35 slw 0 sg str -gr -gs -4485.5 4757.5 m -4485.5 4913.5 L -35 slw 0 sg str -gr -gs -4641.5 4627.5 m -4641.5 4835.5 L -35 slw 0 sg str -gr -gs -4641.5 4731.5 m -4758.5 4731.5 L -35 slw 0 sg str -gr -gs -4185.5 4731.5 m -4107.5 4731.5 L -35 slw 0 sg str -gr -gs -4107.5 4653.5 m -4107.5 4809.5 L -35 slw 0 sg str -gr -gs -3951.5 4731.5 m -4029.5 4731.5 L -35 slw 0 sg str -gr -gs -4029.5 4653.5 m -4029.5 4809.5 L -35 slw 0 sg str -gr -gs -3690.5 4731.5 m -3990.5 4731.5 L -35 slw 0 sg str -gr -gs -4185.5 4731.5 m -4406.5 4731.5 L -35 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob10.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob10.gif deleted file mode 100755 index 3df070bee..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob10.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob12.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob12.eps deleted file mode 100755 index 5447a2e35..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob12.eps +++ /dev/null @@ -1,804 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: set9.q5.create -%%Creator: Create -%%CreationDate: Mon Jun 19 10:06:49 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 132 467 485 711 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr($"Ce'ed"3TUk_(r?-O^tOBu]N+H%;hjUe5o1W^M@K!Adj&"I]Q*\;@tI+="5oA-:I.0%p;`$Wh -% npBku>(@6FdXXP,BP"^,>Jj\,Jf>cVRZV]e;j7KKPlEt9niK0W\_OrY -% eAk?>Zg0uj;o)ITLU!\-L+*_dQo7K?,I"I(OgooO\hSH(q-A6CPK\NWp[=0o-PSBTO>QO%9k9IZLVn:FNX@eXe2%q*mtu_!0uH>SjoWKa -% ]brd00kVTM`]KAUjac)e%)J,7%e4i6*RM_9Bui"5) -% `mKl*W_]hOFRHHYh@l[!:WLJS,go-*/=-g_N#[%FSb54Pu7B\?NBf/f78lJg)9snD)d?LT[# -% T5D'+L7^aSmkG?g`#7E1i^,Jna>+dZ/KJ0kq'YQ4`e_W;kEE10C+Y8C_NC4DSiQ"lhVYr,o3 -% Sog5e!7/@t.u,/-g=rb8/=EWENYPc9,nLo&8@`<'RH=h;R9]-*OZ:6]Cl;6b)$*tjX1K -% i0&aeh@\=p$!.-#R5Uo]5)&/Ce,n!"Q`cUlK!%hjrD7FUPr0bKk@QQBMgM2Zsf+*^.=s-fME -% cosuCD!mH!"o)s.E+ -% KpMm8bf%fFHjR.'bV2`E3R,Dfl-p"''+mn*.iX@\R2sRW'=d[63;/#J;Rk;!s!qg$=T#`)T!U$7"J -% _O7L?sLdQiRHa?b>71n`=#UdIIjU(RVXN@qe_JFbT?HC05KAYaI:m)eLD9*Eh;PkCgk!:#Z) -% i_(C>'*q6%Z:u$t:D39=4[#bi4KBSm.>pd]I=8YudGdL]\Mk:RcUW=&LM0A?j]10d[ -% MZ^hPIDAnT>&oc$!g+SDnCLLI5'S*f$o/PF!(U9^`bojA9&:"iM^;qQl;OT@KL850_U1_kP: -% 9'IJ]VH21A?ei9+I;*<6nS;hcZT45F75V4[XpN`H?/>CmnkEGR-Dh,rpua5*90;,GL2ssF.q -% C]-9/sn9-0NX&EneI8,^>#Ql7\q_#-SCk%W;kM(Y3:d3h.ug!===PaV_'W&=1$:"C^LB+99& -% 7.oXJ1/3:o?+K1(5cKSQi3eeJ]rE@\KLq>%`hY#ZV(Kfhb=S^3/loq=<]35$\NVQS%G'9K/`MH^kMH7- -% Rl#,mf=g5nWR -% JcD#1p\W7gl^0\Cdk:,<=;m)"sTS@/SAmrlI,Aop:OPa.QuC1e+WVrXJ>mbG_\B7io6;KqG$ -% AGQKqA'3gWOj*G&Q:2-l1g_7EjgDFb'q;XTk#]87!c@f9G;aP'\#\.tlP5K?uuEYcN`NA"ro -% CgXQ8[]%=008Eg@?;3O>Wp4[WD3$*;Qqe('$LTBVH^dqV9A#k)SgH`VI+euN[D*`RlU3UM@M -% &\XUO:l!MB/bWa0M(t(j%'r@][uq[oCN3%2XUFS),/uYf@7Anp>R1A=nV0AjjnI;3dX#DuQ* -% &.=JL<$XDF9h\ODHjY;+qjkc&4ilbo0Da9.@k-\ZCdRpZaF6Q:D3P/G*).cbdk);oog0)$>^ -% =Zk&ggos'(sp"bjeicn?;WYKe.5l-OF?D-<I!cb/=3#M@-#Nj@\ip)2Lce,*Ed;Q2sUqPsG75!)Z9P[+a$; -% ls=;9_VPf8W=!KBWK#kBH$I7LSNg2B3OL-gYd((#0)ttPx -% EndEmbeddedGraphics N 2049 801 E ce S 3b48c R 3b8b8b80 -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -132 467 353 244 rectclip -0 0 0.15 1 10 SU -[2] 0 setdash -243 639 T -N -4 L -1 nxsetgray -81 -9 0 9 line --6.340379 81 0 arrow -2.716667 L -0.666662 nxsetgray -81 -9 0 9 line --6.340379 81 0 arrow -1.433333 L -0.333338 nxsetgray -81 -9 0 9 line --6.340379 81 0 arrow -0.15 L -0 nxsetgray -81 -9 0 9 line --6.340379 81 0 arrow -0 0 T -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 186 519] concat -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 109 1] concat -0 0 0.15 1 10 SU -[1 0 0 1 18 9] concat -N -0.68276 nxsetgray -N 66 66 m -66 66 65 45 -135 arcn -C -f -0.15 L -0 nxsetgray -N 66 66 m -66 66 65 45 -135 arcn -C -s -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 1 9 9] concat -N -0.503449 nxsetgray -N 65 65 m -65 65 65 0 -180 arcn -C -f -0.15 L -0 nxsetgray -N 65 65 m -65 65 65 0 -180 arcn -C -s -0 0 T -grestore -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 91 1] concat -0 0 0.15 1 10 SU -[1 0 0 1 18 9] concat -N -0.68276 nxsetgray -N 66 66 m -66 66 65 45 -135 arcn -C -f -0.15 L -0 nxsetgray -N 66 66 m -66 66 65 45 -135 arcn -C -s -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 1 9 9] concat -N -0.503449 nxsetgray -N 65 65 m -65 65 65 0 -180 arcn -C -f -0.15 L -0 nxsetgray -N 65 65 m -65 65 65 0 -180 arcn -C -s -0 0 T -grestore -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 73 1] concat -0 0 0.15 1 10 SU -[1 0 0 1 18 9] concat -N -0.68276 nxsetgray -N 66 66 m -66 66 65 45 -135 arcn -C -f -0.15 L -0 nxsetgray -N 66 66 m -66 66 65 45 -135 arcn -C -s -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 1 9 9] concat -N -0.503449 nxsetgray -N 65 65 m -65 65 65 0 -180 arcn -C -f -0.15 L -0 nxsetgray -N 65 65 m -65 65 65 0 -180 arcn -C -s -0 0 T -grestore -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 55 1] concat -0 0 0.15 1 10 SU -[1 0 0 1 18 9] concat -N -0.68276 nxsetgray -N 66 66 m -66 66 65 45 -135 arcn -C -f -0.15 L -0 nxsetgray -N 66 66 m -66 66 65 45 -135 arcn -C -s -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 1 9 9] concat -N -0.503449 nxsetgray -N 65 65 m -65 65 65 0 -180 arcn -C -f -0.15 L -0 nxsetgray -N 65 65 m -65 65 65 0 -180 arcn -C -s -0 0 T -grestore -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 37 1] concat -0 0 0.15 1 10 SU -[1 0 0 1 18 9] concat -N -0.68276 nxsetgray -N 66 66 m -66 66 65 45 -135 arcn -C -f -0.15 L -0 nxsetgray -N 66 66 m -66 66 65 45 -135 arcn -C -s -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 1 9 9] concat -N -0.503449 nxsetgray -N 65 65 m -65 65 65 0 -180 arcn -C -f -0.15 L -0 nxsetgray -N 65 65 m -65 65 65 0 -180 arcn -C -s -0 0 T -grestore -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 19 1] concat -0 0 0.15 1 10 SU -[1 0 0 1 18 9] concat -N -0.68276 nxsetgray -N 66 66 m -66 66 65 45 -135 arcn -C -f -0.15 L -0 nxsetgray -N 66 66 m -66 66 65 45 -135 arcn -C -s -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 1 9 9] concat -N -0.503449 nxsetgray -N 65 65 m -65 65 65 0 -180 arcn -C -f -0.15 L -0 nxsetgray -N 65 65 m -65 65 65 0 -180 arcn -C -s -0 0 T -grestore -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 1 1] concat -0 0 0.15 1 10 SU -[1 0 0 1 18 9] concat -N -0.68276 nxsetgray -N 66 66 m -66 66 65 45 -135 arcn -C -f -0.15 L -0 nxsetgray -N 66 66 m -66 66 65 45 -135 arcn -C -s -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 1 9 9] concat -N -0.503449 nxsetgray -N 65 65 m -65 65 65 0 -180 arcn -C -f -0.15 L -0 nxsetgray -N 65 65 m -65 65 65 0 -180 arcn -C -s -0 0 T -grestore -grestore -grestore -grestore -grestore -0 0 0 1 10 SU -[1 0 0 -1 212 710] concat -gsave -/Helvetica-Bold findfont 18 scalefont [1 0 0 -1 0 0] makefont -64 -exch -defineuserobject -64 execuserobject setfont -89.5 9.5 T --88.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(A Variable Capacitor) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -[1 0 0 -1 304 615] concat -gsave -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -68 -exch -defineuserobject -68 execuserobject setfont -6.5 6.5 T --5.5 5 T -N 0 0 m -0 nxsetgray -0 0 m -(A) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -[1 0 0 -1 259 570] concat -gsave -68 execuserobject setfont -6.5 6.5 T --5.5 5 T -N 0 0 m -0 nxsetgray -0 0 m -(A) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 326.458038 681.458008] concat -[1 0 0 -1 1 138] concat -N -0.15 L -0 nxsetgray -N -68.541962 68.541962 68.541962 85.909088 0 arcn -s -175.909088 73.431694 136.909286 arrow --90 137.083923 68.541962 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[2] 0 setdash -198 495 T -N -0.15 L -0 nxsetgray -45 90 0 0 line -63.436821 45 90 arrow -0 0 T -grestore -0 0 0 1 10 SU -[2] 0 setdash -[1 0 0 -1 178 489] concat -gsave -68 execuserobject setfont -19 6.5 T --18 5 T -N 0 0 m -0 nxsetgray -0 0 m -(Knob) show -0 0 T -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 229 576] concat -1 1 7 1 10 SU -19 19 T -N -0 nxsetgray -27 0 0 0 line -4 L -1 nxsetgray -27 0 0 0 line -5 L -0.666662 nxsetgray -27 0 0 0 line -6 L -0.333338 nxsetgray -27 0 0 0 line -7 L -0 nxsetgray -27 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -[0.980174 0 0 -0.980174 14.178436 26.821564] concat -N -0 nxsetgray -gsave -18 18 0 0 oval fill -grestore -0.15 L -0 nxsetgray -gsave -18 18 0 0 oval 0.055556 0.055556 S s -grestore -0 0 T -grestore -grestore -grestore -0 0 7 1 10 SU -[1 0 0 -1 133 663] concat -gsave -/Helvetica findfont 14 scalefont [1 0 0 -1 0 0] makefont -161 -exch -defineuserobject -161 execuserobject setfont -78.5 8 T --77.5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(\(These plates can move\)) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[2] 0 setdash -243 630 T -N -4 L -1 nxsetgray -54 -18 0 18 line --18.435492 54 0 arrow -2.716667 L -0.666662 nxsetgray -54 -18 0 18 line --18.435492 54 0 arrow -1.433333 L -0.333338 nxsetgray -54 -18 0 18 line --18.435492 54 0 arrow -0.15 L -0 nxsetgray -54 -18 0 18 line --18.435492 54 0 arrow -0 0 T -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Helvetica-Bold -%%+ Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob12.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob12.gif deleted file mode 100755 index 37f151de8..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob12.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob13v1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob13v1.eps deleted file mode 100755 index 1fbb78d41..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob13v1.eps +++ /dev/null @@ -1,396 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q9a1.draw -- /teacher/Apps/Drawfiles/phys121a/set9 -%%Creator: Draw -%%CreationDate: Sat Jun 3 16:29:02 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 104 530 358 680 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --43 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -104 530 254 150 rectclip -0 0 3 setup -0 nxsetgray -100 -100 147 639 line -grestore -0 0 3 setup -0 nxsetgray -50 100 245 539 line -grestore -0 0 3 setup -0 nxsetgray -54 -100 295 639 line -grestore -0 0 3 setup -0 nxsetgray -200 0 149 540 line -grestore -0 0 3 setup -0 nxsetgray -0 100 147 538 line -grestore -0 0 3 setup -0 nxsetgray -150 0 146 639 line -grestore -0 0 1.2 setup -0 nxsetgray -25 0 134 596 line -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -216 624 15 30 rectfill -0.993103 nxsetgray -216 624 15 30 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -190 575 8 30 rectfill -0.993103 nxsetgray -190 575 8 30 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -268 575 5 30 rectfill -0.993103 nxsetgray -268 575 5 30 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -318 580 5 30 rectfill -0.993103 nxsetgray -318 580 5 30 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -135 585 24 10 rectfill -0.993103 nxsetgray -135 585 24 10 rectstroke -grestore -0 0 3 setup -0 nxsetgray -10 0 142 585 line -grestore -0 0 3 setup -0 nxsetgray -15 -15 268 602 line -grestore -0 0 3 setup -0 nxsetgray -15 15 182 589 line -grestore -0 0 3 setup -0 nxsetgray -15 -15 260 593 line -grestore -0 0 3 setup -0 nxsetgray -15 15 191 580 line -grestore -0 0 3 setup -0 nxsetgray -15 15 310 589 line -grestore -0 0 3 setup -0 nxsetgray -15 15 316 580 line -grestore -0 0 3 setup -0 nxsetgray -0 -21 230 650 line -grestore -0 0 3 setup -0 nxsetgray -0 -21 217 650 line -grestore -0 0 3 setup -gsave -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -81 -exch -defineuserobject -81 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1211] concat -81 execuserobject setfont -0 nxsetgray -200 608 moveto (C) show -0 5 rmoveto -(1) show -0 -5 rmoveto -grestore -grestore -0 0 3 setup -gsave -81 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1321] concat -81 execuserobject setfont -0 nxsetgray -214 663 moveto (C) show -0 5 rmoveto -(2) show -0 -5 rmoveto -grestore -grestore -0 0 3 setup -gsave -81 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1213] concat -81 execuserobject setfont -0 nxsetgray -243 609 moveto (C) show -0 5 rmoveto -(3) show -0 -5 rmoveto -grestore -grestore -0 0 3 setup -gsave -81 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1205] concat -81 execuserobject setfont -0 nxsetgray -328 605 moveto (C) show -0 5 rmoveto -(4) show -0 -5 rmoveto -grestore -grestore -0 0 3 setup -gsave -81 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1182] concat -81 execuserobject setfont -0 nxsetgray -114 596 moveto (V) show -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob13v1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob13v1.gif deleted file mode 100755 index 3d9ef0e56..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob13v1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob13v2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob13v2.eps deleted file mode 100755 index 36b4e8213..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob13v2.eps +++ /dev/null @@ -1,396 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: qa2.draw -- /teacher/Apps/Drawfiles/phys121a/set9 -%%Creator: Draw -%%CreationDate: Sat Jun 3 16:31:51 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 104 496 360 648 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --43 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -104 496 256 152 rectclip -0 0 3 setup -0 nxsetgray -100 -100 147 639 line -grestore -0 0 3 setup -0 nxsetgray -50 100 245 539 line -grestore -0 0 3 setup -0 nxsetgray -54 -100 295 639 line -grestore -0 0 3 setup -0 nxsetgray -200 0 149 540 line -grestore -0 0 3 setup -0 nxsetgray -0 100 147 538 line -grestore -0 0 3 setup -0 nxsetgray -150 0 146 639 line -grestore -0 0 1.2 setup -0 nxsetgray -25 0 134 596 line -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -287 526 15 30 rectfill -0.993103 nxsetgray -287 526 15 30 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -190 575 8 30 rectfill -0.993103 nxsetgray -190 575 8 30 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -268 575 5 30 rectfill -0.993103 nxsetgray -268 575 5 30 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -318 580 5 30 rectfill -0.993103 nxsetgray -318 580 5 30 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -135 585 24 10 rectfill -0.993103 nxsetgray -135 585 24 10 rectstroke -grestore -0 0 3 setup -0 nxsetgray -10 0 142 585 line -grestore -0 0 3 setup -0 nxsetgray -15 -15 268 602 line -grestore -0 0 3 setup -0 nxsetgray -15 15 182 589 line -grestore -0 0 3 setup -0 nxsetgray -15 -15 260 593 line -grestore -0 0 3 setup -0 nxsetgray -15 15 191 580 line -grestore -0 0 3 setup -0 nxsetgray -15 15 310 589 line -grestore -0 0 3 setup -0 nxsetgray -15 15 316 580 line -grestore -0 0 3 setup -0 nxsetgray -0 -21 301 549 line -grestore -0 0 3 setup -0 nxsetgray -0 -21 287 549 line -grestore -0 0 3 setup -gsave -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -81 -exch -defineuserobject -81 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1211] concat -81 execuserobject setfont -0 nxsetgray -200 608 moveto (C) show -0 5 rmoveto -(1) show -0 -5 rmoveto -grestore -grestore -0 0 3 setup -gsave -81 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1211] concat -81 execuserobject setfont -0 nxsetgray -246 608 moveto (C) show -0 5 rmoveto -(2) show -0 -5 rmoveto -grestore -grestore -0 0 3 setup -gsave -81 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1203] concat -81 execuserobject setfont -0 nxsetgray -330 604 moveto (C) show -0 5 rmoveto -(3) show -0 -5 rmoveto -grestore -grestore -0 0 3 setup -gsave -81 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1031] concat -81 execuserobject setfont -0 nxsetgray -286 518 moveto (C) show -0 5 rmoveto -(4) show -0 -5 rmoveto -grestore -grestore -0 0 3 setup -gsave -81 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1182] concat -81 execuserobject setfont -0 nxsetgray -114 596 moveto (V) show -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob13v2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob13v2.gif deleted file mode 100755 index 44b806095..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob13v2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob13v3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob13v3.eps deleted file mode 100755 index 3aa559a39..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob13v3.eps +++ /dev/null @@ -1,392 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q9a3.draw -- /teacher/Apps/Drawfiles/phys121a/set9 -%%Creator: Draw -%%CreationDate: Sat Jun 3 16:34:58 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 104 496 360 677 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --43 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -104 496 256 181 rectclip -0 0 3 setup -0 nxsetgray -50 100 245 539 line -grestore -0 0 3 setup -0 nxsetgray -54 -100 295 639 line -grestore -0 0 3 setup -0 nxsetgray -200 0 149 540 line -grestore -0 0 3 setup -0 nxsetgray -0 100 147 538 line -grestore -0 0 3 setup -0 nxsetgray -150 0 146 639 line -grestore -0 0 1.2 setup -0 nxsetgray -25 0 134 596 line -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -287 526 15 30 rectfill -0.993103 nxsetgray -287 526 15 30 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -268 575 5 30 rectfill -0.993103 nxsetgray -268 575 5 30 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -318 580 5 30 rectfill -0.993103 nxsetgray -318 580 5 30 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -135 585 24 10 rectfill -0.993103 nxsetgray -135 585 24 10 rectstroke -grestore -0 0 3 setup -0 nxsetgray -10 0 142 585 line -grestore -0 0 3 setup -0 nxsetgray -15 -15 268 602 line -grestore -0 0 3 setup -0 nxsetgray -15 -15 260 593 line -grestore -0 0 3 setup -0 nxsetgray -15 15 310 589 line -grestore -0 0 3 setup -0 nxsetgray -15 15 316 580 line -grestore -0 0 3 setup -0 nxsetgray -0 -21 301 549 line -grestore -0 0 3 setup -0 nxsetgray -0 -21 287 549 line -grestore -0 0 3 setup -gsave -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -81 -exch -defineuserobject -81 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1211] concat -81 execuserobject setfont -0 nxsetgray -246 608 moveto (C) show -0 5 rmoveto -(2) show -0 -5 rmoveto -grestore -grestore -0 0 3 setup -gsave -81 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1203] concat -81 execuserobject setfont -0 nxsetgray -330 604 moveto (C) show -0 5 rmoveto -(3) show -0 -5 rmoveto -grestore -grestore -0 0 3 setup -gsave -81 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1031] concat -81 execuserobject setfont -0 nxsetgray -286 518 moveto (C) show -0 5 rmoveto -(4) show -0 -5 rmoveto -grestore -grestore -0 0 3 setup -gsave -81 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1182] concat -81 execuserobject setfont -0 nxsetgray -114 596 moveto (V) show -grestore -grestore -0 0 3 setup -0 nxsetgray -0 -21 220 649 line -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -203 625 15 30 rectfill -0.993103 nxsetgray -203 625 15 30 rectstroke -grestore -0 0 3 setup -0 nxsetgray -0 -21 203 649 line -grestore -0 0 3 setup -gsave -81 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1315] concat -81 execuserobject setfont -0 nxsetgray -201 660 moveto (C) show -0 5 rmoveto -(1) show -0 -5 rmoveto -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob13v3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob13v3.gif deleted file mode 100755 index 5c57dca1e..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob13v3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob14.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob14.eps deleted file mode 100755 index 280db993e..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob14.eps +++ /dev/null @@ -1,408 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q10.draw -- /teacher/Apps/Drawfiles/phys121a/set9 -%%Creator: Draw -%%CreationDate: Sat Jun 3 16:52:01 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 131 498 299 635 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --43 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -131 498 168 137 rectclip -0 0 3 setup -0 nxsetgray -60 60 154 567 line -grestore -0 0 3 setup -0 nxsetgray -60 -60 213 627 line -grestore -0 0 3 setup -0 nxsetgray -60 -60 155 567 line -grestore -0 0 3 setup -0 nxsetgray -60 60 215 507 line -grestore -0 0 3 setup -0 nxsetgray -0 120 215 506 line -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -166 593 32 8 rectfill -1 nxsetgray -166 593 32 8 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -199 565 32 8 rectfill -1 nxsetgray -199 565 32 8 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -236 536 32 8 rectfill -1 nxsetgray -236 536 32 8 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -232 593 32 8 rectfill -1 nxsetgray -232 593 32 8 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -164 538 32 8 rectfill -1 nxsetgray -164 538 32 8 rectstroke -grestore -0 0 3 setup -0 nxsetgray -10 -10 240 540 line -grestore -0 0 3 setup -0 nxsetgray -10 -10 247 547 line -grestore -0 0 3 setup -0 nxsetgray -10 -10 176 598 line -grestore -0 0 3 setup -0 nxsetgray -10 -10 184 605 line -grestore -0 0 3 setup -0 nxsetgray -10 10 235 596 line -grestore -0 0 3 setup -0 nxsetgray -10 10 243 589 line -grestore -0 0 3 setup -0 nxsetgray -10 10 179 534 line -grestore -0 0 3 setup -0 nxsetgray -10 10 171 542 line -grestore -0 0 3 setup -0 nxsetgray -14 0 208 574 line -grestore -0 0 3 setup -0 nxsetgray -14 0 208 565 line -grestore -0 0 3 setup -gsave -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -82 -exch -defineuserobject -82 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1142] concat -82 execuserobject setfont -0 nxsetgray -141 576 moveto (a) show -grestore -grestore -0 0 3 setup -gsave -82 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1138] concat -82 execuserobject setfont -0 nxsetgray -279 574 moveto (b) show -grestore -grestore -0 0 3 setup -gsave -82 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1218] concat -82 execuserobject setfont -0 nxsetgray -167 614 moveto (C) show -grestore -grestore -0 0 3 setup -gsave -82 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1139] concat -82 execuserobject setfont -0 nxsetgray -225 575 moveto (C) show -/Helvetica-Bold findfont 10 scalefont [1 0 0 -1 0 0] makefont -83 -exch -defineuserobject -83 execuserobject setfont -0 -5 rmoveto -(/) show -0 5 rmoveto -grestore -grestore -0 0 3 setup -gsave -83 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1214] concat -82 execuserobject setfont -0 nxsetgray -251 612 moveto (C) show -grestore -grestore -0 0 3 setup -gsave -82 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1062] concat -82 execuserobject setfont -0 nxsetgray -164 536 moveto (C) show -grestore -grestore -0 0 3 setup -gsave -82 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1054] concat -82 execuserobject setfont -0 nxsetgray -255 532 moveto (C) show -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob14.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob14.gif deleted file mode 100755 index 02836cec5..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob14.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob15a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob15a.eps deleted file mode 100755 index aa79489eb..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob15a.eps +++ /dev/null @@ -1,363 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q11.draw -- /teacher/Apps/Drawfiles/phys121a/set9 -%%Creator: Draw -%%CreationDate: Sat Jun 3 17:03:53 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 60 507 441 672 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --43 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -60 507 381 165 rectclip -0 setgray -0.333333 setgray -0 0 0 setup -gsave -0.420682 nxsetgray -125 125 198 512 oval fill -grestore -0.455168 nxsetgray -125 125 198 512 oval matrix defaultmatrix setmatrix stroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -gsave -0 nxsetgray -115 115 203 517 oval fill -grestore -0 nxsetgray -115 115 203 517 oval matrix defaultmatrix setmatrix stroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -gsave -1 nxsetgray -100 100 211 525 oval fill -grestore -0 nxsetgray -100 100 211 525 oval matrix defaultmatrix setmatrix stroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -gsave -0 nxsetgray -50 50 235 549 oval fill -grestore -0 nxsetgray -50 50 235 549 oval matrix defaultmatrix setmatrix stroke -grestore -0 0 0 setup -gsave -/Helvetica findfont 10 scalefont [1 0 0 -1 0 0] makefont -138 -exch -defineuserobject -138 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1319] concat -/Helvetica-Bold findfont 12 scalefont [1 0 0 -1 0 0] makefont -139 -exch -defineuserobject -139 execuserobject setfont -0 nxsetgray -211 664 moveto (CO-AXIAL CABLE) show -grestore -grestore -0 0 0 setup -gsave -139 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1095] concat -138 execuserobject setfont -0 nxsetgray -67 549 moveto (inner wire \(diameter d) show -0 4 rmoveto -(i) show -0 -4 rmoveto -(\)) show -grestore -grestore -0 0 0 setup -gsave -138 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1112] concat -138 execuserobject setfont -0 nxsetgray -346 551 moveto (outer sheath wire) show -346 564 moveto (\(diameter d) show -0 4 rmoveto -(o) show -0 -4 rmoveto -(\)) show -grestore -grestore -0 0 0 setup -gsave -138 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1234] concat -138 execuserobject setfont -0 nxsetgray -115 614 moveto (material placed in) show -115 627 moveto (space between) show -grestore -grestore -0 0 0 setup -gsave -138 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1257] concat -138 execuserobject setfont -0 nxsetgray -323 632 moveto (insulation) show -grestore -grestore -0 setgray -0.333333 setgray -0 0 0.5 setup -0 nxsetgray -38 -20 194 614 line --27.759359 232 594 arrow -grestore -0 setgray -0.333333 setgray -0 0 0.5 setup -0 nxsetgray -14 11 314 609 line -218.158356 314 609 arrow -grestore -0 setgray -0.333333 setgray -0 0 0.5 setup -0 nxsetgray -29 -3 312 564 line -174.093689 312 564 arrow -grestore -0 setgray -0.333333 setgray -0 0 0.5 setup -0 nxsetgray -55 15 182 551 line -15.255569 237 566 arrow -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold -%%+ Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob15a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob15a.gif deleted file mode 100755 index 638364290..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob15a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob18av1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob18av1.eps deleted file mode 100755 index 40f9a433c..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob18av1.eps +++ /dev/null @@ -1,420 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q9a1.draw -- /teacher/Apps/Drawfiles/phys121a/set9 -%%Creator: Draw -%%CreationDate: Thu Oct 12 20:45:52 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 104 512 358 680 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -104 512 254 168 rectclip -0 0 3 setup -0 nxsetgray -100 -100 147 639 line -grestore -0 0 3 setup -0 nxsetgray -50 100 245 539 line -grestore -0 0 3 setup -0 nxsetgray -54 -100 295 639 line -grestore -0 0 3 setup -0 nxsetgray -200 0 149 540 line -grestore -0 0 3 setup -0 nxsetgray -0 100 147 538 line -grestore -0 0 3 setup -0 nxsetgray -150 0 146 639 line -grestore -0 0 1.2 setup -0 nxsetgray -25 0 134 596 line -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -216 624 15 30 rectfill -0.993103 nxsetgray -216 624 15 30 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -190 575 8 30 rectfill -0.993103 nxsetgray -190 575 8 30 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -268 575 5 30 rectfill -0.993103 nxsetgray -268 575 5 30 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -318 580 5 30 rectfill -0.993103 nxsetgray -318 580 5 30 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -135 585 24 10 rectfill -0.993103 nxsetgray -135 585 24 10 rectstroke -grestore -0 0 3 setup -0 nxsetgray -10 0 142 585 line -grestore -0 0 3 setup -0 nxsetgray -15 -15 268 602 line -grestore -0 0 3 setup -0 nxsetgray -15 15 182 589 line -grestore -0 0 3 setup -0 nxsetgray -15 -15 260 593 line -grestore -0 0 3 setup -0 nxsetgray -15 15 191 580 line -grestore -0 0 3 setup -0 nxsetgray -15 15 310 589 line -grestore -0 0 3 setup -0 nxsetgray -15 15 316 580 line -grestore -0 0 3 setup -0 nxsetgray -0 -21 230 650 line -grestore -0 0 3 setup -0 nxsetgray -0 -21 217 650 line -grestore -0 0 3 setup -gsave -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -72 -exch -defineuserobject -72 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1211] concat -72 execuserobject setfont -0 nxsetgray -200 608 moveto (C) show -0 5 rmoveto -(1) show -0 -5 rmoveto -grestore -grestore -0 0 3 setup -gsave -72 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1321] concat -72 execuserobject setfont -0 nxsetgray -214 663 moveto (C) show -0 5 rmoveto -(2) show -0 -5 rmoveto -grestore -grestore -0 0 3 setup -gsave -72 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1213] concat -72 execuserobject setfont -0 nxsetgray -243 609 moveto (C) show -0 5 rmoveto -(3) show -0 -5 rmoveto -grestore -grestore -0 0 3 setup -gsave -72 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1205] concat -72 execuserobject setfont -0 nxsetgray -328 605 moveto (C) show -0 5 rmoveto -(4) show -0 -5 rmoveto -grestore -grestore -0 0 3 setup -gsave -72 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1182] concat -72 execuserobject setfont -0 nxsetgray -114 596 moveto (V) show -grestore -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -177 520 15 36 rectfill -1 nxsetgray -177 520 15 36 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 3.139535 setup -0 nxsetgray -14 11 177 540 line -grestore -0 0 3.139535 setup -gsave -72 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1060] concat -72 execuserobject setfont -0 nxsetgray -180 535 moveto (S) show -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob18av1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob18av1.gif deleted file mode 100755 index 28e022482..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob18av1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob18av2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob18av2.eps deleted file mode 100755 index 231c22bb1..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob18av2.eps +++ /dev/null @@ -1,418 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q9a2.draw -- /teacher/Apps/Drawfiles/phys121a/set9 -%%Creator: Draw -%%CreationDate: Thu Oct 12 20:47:58 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 104 496 360 648 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -104 496 256 152 rectclip -0 0 3 setup -0 nxsetgray -100 -100 147 639 line -grestore -0 0 3 setup -0 nxsetgray -50 100 245 539 line -grestore -0 0 3 setup -0 nxsetgray -54 -100 295 639 line -grestore -0 0 3 setup -0 nxsetgray -200 0 149 540 line -grestore -0 0 3 setup -0 nxsetgray -0 100 147 538 line -grestore -0 0 3 setup -0 nxsetgray -150 0 146 639 line -grestore -0 0 1.2 setup -0 nxsetgray -25 0 134 596 line -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -287 526 15 30 rectfill -0.993103 nxsetgray -287 526 15 30 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -190 575 8 30 rectfill -0.993103 nxsetgray -190 575 8 30 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -268 575 5 30 rectfill -0.993103 nxsetgray -268 575 5 30 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -318 580 5 30 rectfill -0.993103 nxsetgray -318 580 5 30 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -135 585 24 10 rectfill -0.993103 nxsetgray -135 585 24 10 rectstroke -grestore -0 0 3 setup -0 nxsetgray -10 0 142 585 line -grestore -0 0 3 setup -0 nxsetgray -15 -15 268 602 line -grestore -0 0 3 setup -0 nxsetgray -15 15 182 589 line -grestore -0 0 3 setup -0 nxsetgray -15 -15 260 593 line -grestore -0 0 3 setup -0 nxsetgray -15 15 191 580 line -grestore -0 0 3 setup -0 nxsetgray -15 15 310 589 line -grestore -0 0 3 setup -0 nxsetgray -15 15 316 580 line -grestore -0 0 3 setup -0 nxsetgray -0 -21 301 549 line -grestore -0 0 3 setup -0 nxsetgray -0 -21 287 549 line -grestore -0 0 3 setup -gsave -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -50 -exch -defineuserobject -50 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1211] concat -50 execuserobject setfont -0 nxsetgray -200 608 moveto (C) show -0 5 rmoveto -(1) show -0 -5 rmoveto -grestore -grestore -0 0 3 setup -gsave -50 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1211] concat -50 execuserobject setfont -0 nxsetgray -246 608 moveto (C) show -0 5 rmoveto -(2) show -0 -5 rmoveto -grestore -grestore -0 0 3 setup -gsave -50 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1203] concat -50 execuserobject setfont -0 nxsetgray -330 604 moveto (C) show -0 5 rmoveto -(3) show -0 -5 rmoveto -grestore -grestore -0 0 3 setup -gsave -50 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1031] concat -50 execuserobject setfont -0 nxsetgray -286 518 moveto (C) show -0 5 rmoveto -(4) show -0 -5 rmoveto -grestore -grestore -0 0 3 setup -gsave -50 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1182] concat -50 execuserobject setfont -0 nxsetgray -114 596 moveto (V) show -grestore -grestore -0 0 3.139535 setup -0 0 0 setup -1 nxsetgray -175 532 15 36 rectfill -1 nxsetgray -175 532 15 36 rectstroke -grestore -0 0 3.139535 setup -0 nxsetgray -14 11 175 539 line -grestore -0 0 3.139535 setup -gsave -50 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1056] concat -50 execuserobject setfont -0 nxsetgray -179 533 moveto (S) show -grestore -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob18av2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob18av2.gif deleted file mode 100755 index ed7f2e9db..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob18av2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob18av3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob18av3.eps deleted file mode 100755 index ba0f7fdcb..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob18av3.eps +++ /dev/null @@ -1,414 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q9a3.draw -- /teacher/Apps/Drawfiles/phys121a/set9 -%%Creator: Draw -%%CreationDate: Thu Oct 12 20:48:54 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 104 496 360 677 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -104 496 256 181 rectclip -0 0 3 setup -0 nxsetgray -50 100 245 539 line -grestore -0 0 3 setup -0 nxsetgray -54 -100 295 639 line -grestore -0 0 3 setup -0 nxsetgray -200 0 149 540 line -grestore -0 0 3 setup -0 nxsetgray -0 100 147 538 line -grestore -0 0 3 setup -0 nxsetgray -150 0 146 639 line -grestore -0 0 1.2 setup -0 nxsetgray -25 0 134 596 line -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -287 526 15 30 rectfill -0.993103 nxsetgray -287 526 15 30 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -268 575 5 30 rectfill -0.993103 nxsetgray -268 575 5 30 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -318 580 5 30 rectfill -0.993103 nxsetgray -318 580 5 30 rectstroke -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -135 585 24 10 rectfill -0.993103 nxsetgray -135 585 24 10 rectstroke -grestore -0 0 3 setup -0 nxsetgray -10 0 142 585 line -grestore -0 0 3 setup -0 nxsetgray -15 -15 268 602 line -grestore -0 0 3 setup -0 nxsetgray -15 -15 260 593 line -grestore -0 0 3 setup -0 nxsetgray -15 15 310 589 line -grestore -0 0 3 setup -0 nxsetgray -15 15 316 580 line -grestore -0 0 3 setup -0 nxsetgray -0 -21 301 549 line -grestore -0 0 3 setup -0 nxsetgray -0 -21 287 549 line -grestore -0 0 3 setup -gsave -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -50 -exch -defineuserobject -50 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1211] concat -50 execuserobject setfont -0 nxsetgray -246 608 moveto (C) show -0 5 rmoveto -(2) show -0 -5 rmoveto -grestore -grestore -0 0 3 setup -gsave -50 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1203] concat -50 execuserobject setfont -0 nxsetgray -330 604 moveto (C) show -0 5 rmoveto -(3) show -0 -5 rmoveto -grestore -grestore -0 0 3 setup -gsave -50 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1031] concat -50 execuserobject setfont -0 nxsetgray -286 518 moveto (C) show -0 5 rmoveto -(4) show -0 -5 rmoveto -grestore -grestore -0 0 3 setup -gsave -50 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1182] concat -50 execuserobject setfont -0 nxsetgray -114 596 moveto (V) show -grestore -grestore -0 0 3 setup -0 nxsetgray -0 -21 220 649 line -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -203 625 15 30 rectfill -0.993103 nxsetgray -203 625 15 30 rectstroke -grestore -0 0 3 setup -0 nxsetgray -0 -21 203 649 line -grestore -0 0 3 setup -gsave -50 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1315] concat -50 execuserobject setfont -0 nxsetgray -201 660 moveto (C) show -0 5 rmoveto -(1) show -0 -5 rmoveto -grestore -grestore -0 0 3.139535 setup -0 0 0 setup -1 nxsetgray -179 533 15 36 rectfill -1 nxsetgray -179 533 15 36 rectstroke -grestore -0 0 3.139535 setup -0 nxsetgray -14 11 179 540 line -grestore -0 0 3.139535 setup -gsave -50 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1058] concat -50 execuserobject setfont -0 nxsetgray -183 534 moveto (S) show -grestore -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob18av3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob18av3.gif deleted file mode 100755 index eb29a867c..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob18av3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob20a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob20a.eps deleted file mode 100755 index eb366f0b9..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob20a.eps +++ /dev/null @@ -1,1992 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad 6.0.1 -%%Title: prob4-6a.eps -%%CreationDate: 5/9/1997 -%%DocumentProcSets: Adobe_packedarray 1.0 0 -%%DocumentSuppliedProcSets: Adobe_packedarray 1.0 0 -%%DocumentProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentProcSets: Adobe_cshow 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cshow 1.1 0 -%%DocumentProcSets: Adobe_customcolor 1.0 0 -%%DocumentSuppliedProcSets: Adobe_customcolor 1.0 0 -%%DocumentProcSets: Adobe_pattern 1.9 0 -%%DocumentSuppliedProcSets: Adobe_pattern 1.9 0 -%%DocumentProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentSuppliedProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentFonts: Times-Italic -%%+ Symbol -%%BoundingBox:155 584 422 701 -%%TemplateBox:306 396 306 396 -%%DocumentPreview: Header -%%EndComments - -%%BeginProlog -%%BeginProcSet: Adobe_packedarray 1.0 0 -userdict /Adobe_packedarray 5 dict dup begin put -/initialize -{ -/packedarray where - { - pop - } - { - Adobe_packedarray begin - Adobe_packedarray - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - } ifelse -} def -/terminate -{ -} def -/packedarray -{ -array astore readonly -} def -/setpacking -{ -pop -} def -/currentpacking -{ -false -} def -currentdict readonly pop end -%%EndProcSet -Adobe_packedarray /initialize get exec -%%BeginProcSet: Adobe_cmykcolor 1.1 0 -currentpacking true setpacking -userdict /Adobe_cmykcolor 4 dict dup begin put -/initialize -{ -/setcmykcolor where - { - pop - } - { - userdict /Adobe_cmykcolor_vars 2 dict dup begin put - /_setrgbcolor - /setrgbcolor load def - /_currentrgbcolor - /currentrgbcolor load def - Adobe_cmykcolor begin - Adobe_cmykcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - end - Adobe_cmykcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_cmykcolor eq - { - end - } if -} def -/setcmykcolor -{ -1 sub 4 1 roll -3 - { - 3 index add neg dup 0 lt - { - pop 0 - } if - 3 1 roll - } repeat -Adobe_cmykcolor_vars /_setrgbcolor get exec -pop -} def -/currentcmykcolor -{ -Adobe_cmykcolor_vars /_currentrgbcolor get exec -3 - { - 1 sub neg 3 1 roll - } repeat -0 -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_cshow 1.1 0 -currentpacking true setpacking -userdict /Adobe_cshow 3 dict dup begin put -/initialize -{ -/cshow where - { - pop - } - { - userdict /Adobe_cshow_vars 1 dict dup begin put - /_cshow - {} def - Adobe_cshow begin - Adobe_cshow - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - end - } ifelse -} def -/terminate -{ -} def -/cshow -{ -exch -Adobe_cshow_vars - exch /_cshow - exch put - { - 0 0 Adobe_cshow_vars /_cshow get exec - } forall -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_customcolor 1.0 0 -currentpacking true setpacking -userdict /Adobe_customcolor 5 dict dup begin put -/initialize -{ -/setcustomcolor where - { - pop - } - { - Adobe_customcolor begin - Adobe_customcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - Adobe_customcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_customcolor eq - { - end - } if -} def -/findcmykcustomcolor -{ -5 packedarray -} def -/setcustomcolor -{ -exch -aload pop pop -4 - { - 4 index mul 4 1 roll - } repeat -5 -1 roll pop -setcmykcolor -} def -/setoverprint -{ -pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_pattern 1.9 0 -currentpacking true setpacking -userdict /Adobe_pattern 14 dict dup begin put -/initialize -{ -/definepattern where - { - pop - } - { - Adobe_pattern begin - Adobe_pattern - { - dup xcheck - { - bind - } if - pop pop - } forall - mark - cachestatus 7 1 roll pop pop pop pop exch pop exch - { - { - 10000 add - dup 2 index gt - { - break - } if - dup setcachelimit - } loop - } stopped - cleartomark - } ifelse -} def -/terminate -{ -currentdict Adobe_pattern eq - { - end - } if -} def -errordict -/nocurrentpoint -{ -pop -stop -} put -errordict -/invalidaccess -{ -pop -stop -} put -/patternencoding -256 array def -0 1 255 -{ -patternencoding exch ( ) 2 copy exch 0 exch put cvn put -} for -/definepattern -{ -17 dict begin -/uniform exch def -/cache exch def -/key exch def -/procarray exch def -/mtx exch matrix invertmatrix def -/height exch def -/width exch def -/ctm matrix currentmatrix def -/ptm matrix def -/str 32 string def -/slice 9 dict def -slice /s 1 put -slice /q 256 procarray length div sqrt floor cvi put -slice /b 0 put -/FontBBox [0 0 0 0] def -/FontMatrix mtx matrix copy def -/Encoding patternencoding def -/FontType 3 def -/BuildChar - { - exch - begin - slice begin - dup q dup mul mod s idiv /i exch def - dup q dup mul mod s mod /j exch def - q dup mul idiv procarray exch get - /xl j width s div mul def - /xg j 1 add width s div mul def - /yl i height s div mul def - /yg i 1 add height s div mul def - uniform - { - 1 1 - } - { - width 0 dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - 0 height dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - } ifelse - width 0 cache - { - xl 4 index mul yl 4 index mul xg 6 index mul yg 6 index mul - setcachedevice - } - { - setcharwidth - } ifelse - gsave - scale - newpath - xl yl moveto - xg yl lineto - xg yg lineto - xl yg lineto - closepath - clip - newpath - end - end - exec - grestore - } def -key currentdict definefont -end -} def -/patterncachesize -{ -gsave -newpath -0 0 moveto -width 0 lineto -width height lineto -0 height lineto -closepath -patternmatrix setmatrix -pathbbox -exch ceiling 4 -1 roll floor sub 3 1 roll -ceiling exch floor sub -mul 1 add -grestore -} def -/patterncachelimit -{ -cachestatus 7 1 roll pop pop pop pop pop pop 8 mul -} def -/patternpath -{ -exch dup begin setfont -ctm setmatrix -concat -slice exch /b exch slice /q get dup mul mul put -FontMatrix concat -uniform - { - width 0 dtransform round width div exch round width div exch - 0 height dtransform round height div exch height div exch - 0 0 transform round exch round exch - ptm astore setmatrix - } - { - ptm currentmatrix pop - } ifelse -{currentpoint} stopped not - { - pop pop - pathbbox - true - 4 index 3 index eq - 4 index 3 index eq - and - { - pop false - { - {pop pop} - {pop pop pop true} - {pop pop pop pop pop pop pop true} - {pop true} - pathforall - } stopped - { - pop pop pop pop pop true - } if - } if - { - height div ceiling height mul 4 1 roll - width div ceiling width mul 4 1 roll - height div floor height mul 4 1 roll - width div floor width mul 4 1 roll - 2 index sub height div ceiling cvi exch - 3 index sub width div ceiling cvi exch - 4 2 roll moveto - FontMatrix mtx invertmatrix - dup dup 4 get exch 5 get rmoveto - ptm ptm concatmatrix pop - slice /s - patterncachesize patterncachelimit div ceiling sqrt ceiling cvi - dup slice /q get gt - { - pop slice /q get - } if - put - 0 1 slice /s get dup mul 1 sub - { - slice /b get add - gsave - 0 1 str length 1 sub - { - str exch 2 index put - } for - pop - dup - { - gsave - ptm setmatrix - 1 index str length idiv {str show} repeat - 1 index str length mod str exch 0 exch getinterval show - grestore - 0 height rmoveto - } repeat - grestore - } for - pop pop - } - { - pop pop pop pop - } ifelse - } if -end -} def -/patternclip -{ -clip -} def -/patternstrokepath -{ -strokepath -} def -/patternmatrix -matrix def -/patternfill -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternclip -Adobe_pattern /patternpath get exec -grestore -newpath -} def -/patternstroke -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternstrokepath -true - { - { - { - newpath - moveto - } - { - lineto - } - { - curveto - } - { - closepath - 3 copy - Adobe_pattern /patternfill get exec - } pathforall - pop pop pop - } stopped - { - pop pop pop pop pop - patternclip - Adobe_pattern /patternfill get exec - } if - } - { - patternclip - Adobe_pattern /patternfill get exec - } ifelse -grestore -newpath -} def -/patternashow -{ -3 index type /dicttype eq - { - Adobe_pattern /patternmatrix get 4 1 roll - } if - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 6 index 6 index 6 index - Adobe_pattern /patternfill get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop -} def -/patternashowstroke -{ -4 index type /dicttype eq - { - patternmatrix /patternmatrix get 5 1 roll - } if -4 1 roll - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - 7 index 7 index 7 index - Adobe_pattern /patternstroke get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_Illustrator88 1.19 0 -currentpacking true setpacking -userdict /Adobe_Illustrator88 73 dict dup begin put -/initialize -{ -userdict /Adobe_Illustrator88_vars 31 dict dup begin put -/_lp /none def -/_pf {} def -/_ps {} def -/_psf {} def -/_pss {} def -/_a null def -/_as null def -/_tt 2 array def -/_tl 2 array def -/_tm matrix def -/t {} def -/_gf null def -/_cf 4 array def -/_if null def -/_of false def -/_fc {} def -/_gs null def -/_cs 4 array def -/_is null def -/_os false def -/_sc {} def -/_pd 1 dict def -/_ed 15 dict def -/_pm matrix def -/_fm null def -/_fd null def -/_fdd null def -/_sm null def -/_sd null def -/_sdd null def -/_i null def -Adobe_Illustrator88 begin -Adobe_Illustrator88 dup /nc get begin - { - dup xcheck - { - bind - } if - pop pop - } forall -end -end -end -Adobe_Illustrator88 begin -Adobe_Illustrator88_vars begin -newpath -} def -/terminate -{ -end -end -} def -/_ -null def -/ddef -{ -Adobe_Illustrator88_vars 3 1 roll put -} def -/xput -{ -dup load dup length exch maxlength eq - { - dup dup load dup - length 2 mul dict copy def - } if -load begin def end -} def -/npop -{ - { - pop - } repeat -} def -/sw -{ -stringwidth -exch 5 -1 roll 3 index 1 sub mul add -4 1 roll 3 1 roll 1 sub mul add -} def -/ss -{ -3 -1 roll pop -4 1 roll - { - 2 npop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - stroke - grestore - moveto - 2 copy rmoveto - } exch cshow -3 npop -} def -/sp -{ -exch pop - { - 2 npop (0) exch - 2 copy 0 exch put pop - false charpath - 2 copy rmoveto - } exch cshow -2 npop -} def -/pl -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where -{ -pop true setstrokeadjust -/c -{ -curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll curveto -} def -/V -/v load def -/y -{ -2 copy curveto -} def -/Y -/y load def -/l -{ -lineto -} def -/L -/l load def -/m -{ -moveto -} def -} -{ -/c -{ -pl curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll pl curveto -} def -/V -/v load def -/y -{ -pl 2 copy curveto -} def -/Y -/y load def -/l -{ -pl lineto -} def -/L -/l load def -/m -{ -pl moveto -} def -} ifelse -/d -{ -setdash -} def -/cf -currentflat def -/i -{ -dup 0 eq - { - pop cf - } if -setflat -} def -/j -{ -setlinejoin -} def -/J -{ -setlinecap -} def -/M -{ -setmiterlimit -} def -/w -{ -setlinewidth -} def -/H -{} def -/h -{ -closepath -} def -/N -{ -newpath -} def -/n -/N load def -/F -{ -_pf -} def -/f -{ -closepath -F -} def -/S -{ -_ps -} def -/s -{ -closepath -S -} def -/B -{ -gsave F grestore -S -} def -/b -{ -closepath -B -} def -/W -{ -clip -} def -/ta -{ -_as moveto -_tt aload pop 4 -2 roll -} def -/tl -{ -_tl aload pop translate -} def -/as -{ -{ -0 0 -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg 2 div exch neg 2 div -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg exch neg -} -{ -0 0 -} -} cvlit def -/z -{ -/_a exch ddef -/_as as _a get ddef -_a 2 le - { - 0 _tt astore pop - 0 exch neg _tl astore pop - } - { - 0 exch neg _tt astore pop - neg 0 _tl astore pop - } ifelse -exch findfont exch scalefont setfont -} def -/tm -{ -_tm currentmatrix pop -concat -} def -/I -{ -tm -/t - { - ta sp - tl - } ddef -} def -/o -{ -tm -/t - { - ta 4 npop - tl - newpath - } ddef -} def -/e -{ -tm -/t - { - ta _psf - tl - newpath - } ddef -} def -/r -{ -tm -/t - { - ta _tm _pss - tl - newpath - } ddef -} def -/a -{ -tm -/t - { - 2 copy - ta _psf - newpath - ta _tm _pss - tl - newpath - } ddef -} def -/T -{ -_tm setmatrix -} def -/Z -{ -pop -findfont begin -currentdict dup length 1 add dict begin - { - 1 index /FID ne - { - def - } - { - 2 npop - } ifelse - } forall -/FontName exch def dup length 0 ne - { - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - { - Encoding 2 index 2 index put pop - 1 add - } - { - exch pop - } ifelse - } forall - } if pop -currentdict dup end end -/FontName get exch definefont pop -} def -/u -{} def -/U -{} def -/q -{ -gsave -} def -/Q -{ -grestore -} def -/` -{ -/_i save ddef -6 1 roll 4 npop -concat -userdict begin -/showpage {} def -false setoverprint -pop -} def -/~ -{ -end -_i restore -} def -/@ -{} def -/& -{} def -/O -{ -0 ne -/_of exch ddef -/_lp /none ddef -} def -/R -{ -0 ne -/_os exch ddef -/_lp /none ddef -} def -/g -{ -/_gf exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _gf setgray - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/G -{ -/_gs exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _gs setgray - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/k -{ -_cf astore pop -/_fc -{ -_lp /fill ne - { - _of setoverprint - _cf aload pop setcmykcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/K -{ -_cs astore pop -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _cs aload pop setcmykcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/x -{ -/_gf exch ddef -findcmykcustomcolor -/_if exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _if _gf 1 exch sub setcustomcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/X -{ -/_gs exch ddef -findcmykcustomcolor -/_is exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _is _gs 1 exch sub setcustomcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/dp -{ -dup null eq -{ -pop -_dp 0 ne - { - 0 1 _dp 1 sub _dl mod - { - _da exch get 3 get - } for - _dp 1 sub _dl mod 1 add packedarray - _da 0 get aload pop 8 -1 roll 5 -1 roll pop 4 1 roll - definepattern pop - } if -} -{ -_dp 0 ne _dp _dl mod 0 eq and - { - null dp - } if -7 packedarray _da exch _dp _dl mod exch put -_dp _dl mod _da 0 get 4 get 2 packedarray -/_dp _dp 1 add def -} ifelse -} def -/E -{ -_ed begin -dup 0 get type /arraytype ne - { - 0 - { - dup 1 add index type /arraytype eq - { - 1 add - } - { - exit - } ifelse - } loop - array astore - } if -/_dd exch def -/_ury exch def -/_urx exch def -/_lly exch def -/_llx exch def -/_n exch def -/_y 0 def -/_dl 4 def -/_dp 0 def -/_da _dl array def -0 1 _dd length 1 sub - { - /_d exch _dd exch get def - 0 2 _d length 2 sub - { - /_x exch def - /_c _d _x get _ ne def - /_r _d _x 1 add get cvlit def - _r _ ne - { - _urx _llx sub _ury _lly sub [1 0 0 1 0 0] - [ - /save cvx - _llx neg _lly neg /translate cvx - _c - { - nc /begin cvx - } if - _r dup type /stringtype eq - { - cvx - } - { - {exec} /forall cvx - } ifelse - _c - { - /end cvx - } if - /restore cvx - ] cvx - /_fn 12 _n length add string def - _y _fn cvs pop - /_y _y 1 add def - _fn 12 _n putinterval - _fn _c false dp - _d exch _x 1 add exch put - } if - } for - } for -null dp -_n _dd /_pd -end xput -} def -/fc -{ -_fm dup concatmatrix pop -} def -/p -{ -/_fm exch ddef -9 -2 roll _pm translate fc -7 -2 roll _pm scale fc -5 -1 roll _pm rotate fc -4 -2 roll exch 0 ne - { - dup _pm rotate fc - 1 -1 _pm scale fc - neg _pm rotate fc - } - { - pop - } ifelse -dup _pm rotate fc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore fc -neg _pm rotate fc -_pd exch get /_fdd exch ddef -/_pf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - patternfill - } - { - pop - fill - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_psf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - 10 copy 6 npop exch pop patternashow - } - { - pop - 7 copy 3 npop exch pop ashow - } ifelse - grestore - pop - } for - pop - } for -restore -4 npop newpath -} ddef -/_lp /none ddef -} def -/sc -{ -_sm dup concatmatrix pop -} def -/P -{ -/_sm exch ddef -9 -2 roll _pm translate sc -7 -2 roll _pm scale sc -5 -1 roll _pm rotate sc -4 -2 roll exch 0 ne - { - dup _pm rotate sc - 1 -1 _pm scale sc - neg _pm rotate sc - } - { - pop - } ifelse -dup _pm rotate sc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore sc -neg _pm rotate sc -_pd exch get /_sdd exch ddef -/_ps -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - patternstroke - } - { - pop stroke - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_pss -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - 11 copy 6 npop 3 -1 roll pop patternashowstroke - } - { - pop - 8 copy 3 npop ss - } ifelse - grestore - pop - } for - pop - } for -restore -5 npop newpath -} ddef -/_lp /none ddef -} def -/A -{ -pop -} def -/nc 3 dict def -nc begin -/setgray -{ -pop -} bind def -/setcmykcolor -{ -4 npop -} bind def -/setcustomcolor -{ -2 npop -} bind def -currentdict readonly pop end -currentdict readonly pop end -setpacking -%%EndProcSet -%%EndProlog - -%%BeginSetup -Adobe_cmykcolor /initialize get exec -Adobe_cshow /initialize get exec -Adobe_customcolor /initialize get exec -Adobe_pattern /initialize get exec -Adobe_Illustrator88 /initialize get exec - -%%BeginPattern: (0) -(0) 10 10 18 18 [ -(0 O 0 R 0.000000 0.000000 0.000000 0 (New Color 0) 0 x 0.000000 0.000000 0.000000 0 (New Color 0) 0 X) @ -_ & -(0 O 0 R 0.999985 0.999985 0.999985 0 (New Color 255) 0 x 0.999985 0.999985 0.999985 0 (New Color 255) 0 X) @ -( -0 i 0 J 0 j 1 w 4 M []0 d -%Note: -14 17 m -15 17 l -15 18 l -14 18 l -14 17 l -f -16 16 m -17 16 l -17 17 l -16 17 l -16 16 l -f -11 16 m -12 16 l -12 17 l -11 17 l -11 16 l -f -13 14 m -14 14 l -14 15 l -13 15 l -13 14 l -f -10 14 m -11 14 l -11 15 l -10 15 l -10 14 l -f -15 13 m -16 13 l -16 14 l -15 14 l -15 13 l -f -11 12 m -12 12 l -12 13 l -11 13 l -11 12 l -f -13 11 m -14 11 l -14 12 l -13 12 l -13 11 l -f -17 10 m -18 10 l -18 11 l -17 11 l -17 10 l -f -) & -] E -%%EndPattern - -%%BeginPattern: (1) -(1) 10 10 18 18 [ -(0 O 0 R 0.000000 0.000000 0.000000 0 (New Color 0) 0 x 0.000000 0.000000 0.000000 0 (New Color 0) 0 X) @ -_ & -(0 O 0 R 0.999985 0.999985 0.999985 0 (New Color 255) 0 x 0.999985 0.999985 0.999985 0 (New Color 255) 0 X) @ -( -0 i 0 J 0 j 1 w 4 M []0 d -%Note: -15 17 m -16 17 l -16 18 l -15 18 l -15 17 l -f -14 17 m -15 17 l -15 18 l -14 18 l -14 17 l -f -11 17 m -12 17 l -12 18 l -11 18 l -11 17 l -f -16 16 m -17 16 l -17 17 l -16 17 l -16 16 l -f -13 16 m -14 16 l -14 17 l -13 17 l -13 16 l -f -11 16 m -12 16 l -12 17 l -11 17 l -11 16 l -f -10 16 m -11 16 l -11 17 l -10 17 l -10 16 l -f -17 15 m -18 15 l -18 16 l -17 16 l -17 15 l -f -16 15 m -17 15 l -17 16 l -16 16 l -16 15 l -f -13 15 m -14 15 l -14 16 l -13 16 l -13 15 l -f -11 15 m -12 15 l -12 16 l -11 16 l -11 15 l -f -17 14 m -18 14 l -18 15 l -17 15 l -17 14 l -f -15 14 m -16 14 l -16 15 l -15 15 l -15 14 l -f -14 14 m -15 14 l -15 15 l -14 15 l -14 14 l -f -12 14 m -13 14 l -13 15 l -12 15 l -12 14 l -f -16 13 m -17 13 l -17 14 l -16 14 l -16 13 l -f -15 13 m -16 13 l -16 14 l -15 14 l -15 13 l -f -13 13 m -14 13 l -14 14 l -13 14 l -13 13 l -f -10 13 m -11 13 l -11 14 l -10 14 l -10 13 l -f -17 12 m -18 12 l -18 13 l -17 13 l -17 12 l -f -14 12 m -15 12 l -15 13 l -14 13 l -14 12 l -f -13 12 m -14 12 l -14 13 l -13 13 l -13 12 l -f -11 12 m -12 12 l -12 13 l -11 13 l -11 12 l -f -16 11 m -17 11 l -17 12 l -16 12 l -16 11 l -f -15 11 m -16 11 l -16 12 l -15 12 l -15 11 l -f -11 11 m -12 11 l -12 12 l -11 12 l -11 11 l -f -17 10 m -18 10 l -18 11 l -17 11 l -17 10 l -f -16 10 m -17 10 l -17 11 l -16 11 l -16 10 l -f -13 10 m -14 10 l -14 11 l -13 11 l -13 10 l -f -12 10 m -13 10 l -13 11 l -12 11 l -12 10 l -f -10 10 m -11 10 l -11 11 l -10 11 l -10 10 l -f -) & -] E -%%EndPattern -%%BeginEncoding: _Times-Italic Times-Italic -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Italic /Times-Italic 0 Z -%%EndEncoding -%%BeginEncoding: _Symbol Symbol -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Symbol /Symbol 0 Z -%%EndEncoding - -%%EndSetup - -0 A -0 O -0 R -0 g -0 G -0 i 0 J 0 j 1 w 4 M [] 0 d -u -374.471 688.529 m -374.471 698.529 L -157.471 698.529 L -157.471 688.529 L -374.471 688.529 L -0 g F -U -u -374.496 688.504 m -374.496 698.496 L -157.504 698.496 L -157.504 688.504 L -374.496 688.504 L -1.008 w 0 G S -U -u -374.471 643.529 m -374.471 685.529 L -157.471 685.529 L -157.471 643.529 L -374.471 643.529 L -(0) 0 0 1 1 0 0 0 0 0 [1 0 0 1 0 0] p f -U -u -374.496 643.504 m -374.496 685.496 L -157.504 685.496 L -157.504 643.504 L -374.496 643.504 L -1.008 w 0 G S -U -u -374.471 598.529 m -374.471 640.529 L -157.471 640.529 L -157.471 598.529 L -374.471 598.529 L -(1) 0 0 1 1 0 0 0 0 0 [1 0 0 1 0 0] p f -U -u -374.496 598.504 m -374.496 640.496 L -157.504 640.496 L -157.504 598.504 L -374.496 598.504 L -1.008 w 0 G S -U -u -374.471 585.529 m -374.471 595.529 L -157.471 595.529 L -157.471 585.529 L -374.471 585.529 L -0 g F -U -u -374.496 585.504 m -374.496 595.496 L -157.504 595.496 L -157.504 585.504 L -374.496 585.504 L -1.008 w 0 G S -U -391.504 676.496 m -391.504 653.496 l -1.008 w 0 G S -u -391.471 685.529 m -388.471 676.529 L -391.471 676.529 L -394.471 676.529 L -391.471 685.529 L - -0 g F -U -u -391.504 685.496 m -388.504 676.496 L -391.504 676.496 L -394.504 676.496 L -391.504 685.496 L - -1.008 w 0 G s -U -u -391.471 644.529 m -388.471 653.529 L -391.471 653.529 L -394.471 653.529 L -391.471 644.529 L - -0 g F -U -u -391.504 644.496 m -388.504 653.496 L -391.504 653.496 L -394.504 653.496 L -391.504 644.496 L - -1.008 w 0 G s -U -391.504 631.496 m -391.504 608.496 l -1.008 w 0 G S -u -391.471 640.529 m -388.471 631.529 L -391.471 631.529 L -394.471 631.529 L -391.471 640.529 L - -0 g F -U -u -391.504 640.496 m -388.504 631.496 L -391.504 631.496 L -394.504 631.496 L -391.504 640.496 L - -1.008 w 0 G s -U -u -391.471 599.529 m -388.471 608.529 L -391.471 608.529 L -394.471 608.529 L -391.471 599.529 L - -0 g F -U -u -391.504 599.496 m -388.504 608.496 L -391.504 608.496 L -394.504 608.496 L -391.504 599.496 L - -1.008 w 0 G s -U -377.504 685.496 m -400.504 685.496 l -1.008 w 0 G S -377.504 644.496 m -400.504 644.496 l -1.008 w 0 G S -377.504 640.496 m -400.504 640.496 l -1.008 w 0 G S -377.504 599.496 m -400.504 599.496 l -1.008 w 0 G S -u -420.471 656.529 m -420.471 669.529 L -402.471 669.529 L -402.471 656.529 L -420.471 656.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 402.471 660.529 ]e -3 (d/2)t -T -u -420.471 608.529 m -420.471 621.529 L -402.471 621.529 L -402.471 608.529 L -420.471 608.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 402.471 612.529 ]e -3 (d/2)t -T -u -275.471 653.529 m -275.471 671.529 L -260.471 671.529 L -260.471 653.529 L -275.471 653.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Symbol 12 12 0 0 z -[1 0 0 1 260.471 658.529 ]e -2 (k1)t -T -u -275.471 609.529 m -275.471 627.529 L -260.471 627.529 L -260.471 609.529 L -275.471 609.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Symbol 12 12 0 0 z -[1 0 0 1 260.471 614.529 ]e -2 (k2)t -T - -%%Trailer -Adobe_Illustrator88 /terminate get exec -Adobe_pattern /terminate get exec -Adobe_customcolor /terminate get exec -Adobe_cshow /terminate get exec -Adobe_cmykcolor /terminate get exec -Adobe_packedarray /terminate get exec -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob20a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob20a.gif deleted file mode 100755 index e8b770eae..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob20a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob20b.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob20b.eps deleted file mode 100755 index d23770d05..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob20b.eps +++ /dev/null @@ -1,1936 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad 6.0.1 -%%Title: prob4-6b.eps -%%CreationDate: 5/9/1997 -%%DocumentProcSets: Adobe_packedarray 1.0 0 -%%DocumentSuppliedProcSets: Adobe_packedarray 1.0 0 -%%DocumentProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentProcSets: Adobe_cshow 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cshow 1.1 0 -%%DocumentProcSets: Adobe_customcolor 1.0 0 -%%DocumentSuppliedProcSets: Adobe_customcolor 1.0 0 -%%DocumentProcSets: Adobe_pattern 1.9 0 -%%DocumentSuppliedProcSets: Adobe_pattern 1.9 0 -%%DocumentProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentSuppliedProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentFonts: Symbol -%%+ Times-Italic -%%BoundingBox:148 508 426 603 -%%TemplateBox:306 396 306 396 -%%DocumentPreview: Header -%%EndComments - -%%BeginProlog -%%BeginProcSet: Adobe_packedarray 1.0 0 -userdict /Adobe_packedarray 5 dict dup begin put -/initialize -{ -/packedarray where - { - pop - } - { - Adobe_packedarray begin - Adobe_packedarray - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - } ifelse -} def -/terminate -{ -} def -/packedarray -{ -array astore readonly -} def -/setpacking -{ -pop -} def -/currentpacking -{ -false -} def -currentdict readonly pop end -%%EndProcSet -Adobe_packedarray /initialize get exec -%%BeginProcSet: Adobe_cmykcolor 1.1 0 -currentpacking true setpacking -userdict /Adobe_cmykcolor 4 dict dup begin put -/initialize -{ -/setcmykcolor where - { - pop - } - { - userdict /Adobe_cmykcolor_vars 2 dict dup begin put - /_setrgbcolor - /setrgbcolor load def - /_currentrgbcolor - /currentrgbcolor load def - Adobe_cmykcolor begin - Adobe_cmykcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - end - Adobe_cmykcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_cmykcolor eq - { - end - } if -} def -/setcmykcolor -{ -1 sub 4 1 roll -3 - { - 3 index add neg dup 0 lt - { - pop 0 - } if - 3 1 roll - } repeat -Adobe_cmykcolor_vars /_setrgbcolor get exec -pop -} def -/currentcmykcolor -{ -Adobe_cmykcolor_vars /_currentrgbcolor get exec -3 - { - 1 sub neg 3 1 roll - } repeat -0 -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_cshow 1.1 0 -currentpacking true setpacking -userdict /Adobe_cshow 3 dict dup begin put -/initialize -{ -/cshow where - { - pop - } - { - userdict /Adobe_cshow_vars 1 dict dup begin put - /_cshow - {} def - Adobe_cshow begin - Adobe_cshow - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - end - } ifelse -} def -/terminate -{ -} def -/cshow -{ -exch -Adobe_cshow_vars - exch /_cshow - exch put - { - 0 0 Adobe_cshow_vars /_cshow get exec - } forall -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_customcolor 1.0 0 -currentpacking true setpacking -userdict /Adobe_customcolor 5 dict dup begin put -/initialize -{ -/setcustomcolor where - { - pop - } - { - Adobe_customcolor begin - Adobe_customcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - Adobe_customcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_customcolor eq - { - end - } if -} def -/findcmykcustomcolor -{ -5 packedarray -} def -/setcustomcolor -{ -exch -aload pop pop -4 - { - 4 index mul 4 1 roll - } repeat -5 -1 roll pop -setcmykcolor -} def -/setoverprint -{ -pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_pattern 1.9 0 -currentpacking true setpacking -userdict /Adobe_pattern 14 dict dup begin put -/initialize -{ -/definepattern where - { - pop - } - { - Adobe_pattern begin - Adobe_pattern - { - dup xcheck - { - bind - } if - pop pop - } forall - mark - cachestatus 7 1 roll pop pop pop pop exch pop exch - { - { - 10000 add - dup 2 index gt - { - break - } if - dup setcachelimit - } loop - } stopped - cleartomark - } ifelse -} def -/terminate -{ -currentdict Adobe_pattern eq - { - end - } if -} def -errordict -/nocurrentpoint -{ -pop -stop -} put -errordict -/invalidaccess -{ -pop -stop -} put -/patternencoding -256 array def -0 1 255 -{ -patternencoding exch ( ) 2 copy exch 0 exch put cvn put -} for -/definepattern -{ -17 dict begin -/uniform exch def -/cache exch def -/key exch def -/procarray exch def -/mtx exch matrix invertmatrix def -/height exch def -/width exch def -/ctm matrix currentmatrix def -/ptm matrix def -/str 32 string def -/slice 9 dict def -slice /s 1 put -slice /q 256 procarray length div sqrt floor cvi put -slice /b 0 put -/FontBBox [0 0 0 0] def -/FontMatrix mtx matrix copy def -/Encoding patternencoding def -/FontType 3 def -/BuildChar - { - exch - begin - slice begin - dup q dup mul mod s idiv /i exch def - dup q dup mul mod s mod /j exch def - q dup mul idiv procarray exch get - /xl j width s div mul def - /xg j 1 add width s div mul def - /yl i height s div mul def - /yg i 1 add height s div mul def - uniform - { - 1 1 - } - { - width 0 dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - 0 height dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - } ifelse - width 0 cache - { - xl 4 index mul yl 4 index mul xg 6 index mul yg 6 index mul - setcachedevice - } - { - setcharwidth - } ifelse - gsave - scale - newpath - xl yl moveto - xg yl lineto - xg yg lineto - xl yg lineto - closepath - clip - newpath - end - end - exec - grestore - } def -key currentdict definefont -end -} def -/patterncachesize -{ -gsave -newpath -0 0 moveto -width 0 lineto -width height lineto -0 height lineto -closepath -patternmatrix setmatrix -pathbbox -exch ceiling 4 -1 roll floor sub 3 1 roll -ceiling exch floor sub -mul 1 add -grestore -} def -/patterncachelimit -{ -cachestatus 7 1 roll pop pop pop pop pop pop 8 mul -} def -/patternpath -{ -exch dup begin setfont -ctm setmatrix -concat -slice exch /b exch slice /q get dup mul mul put -FontMatrix concat -uniform - { - width 0 dtransform round width div exch round width div exch - 0 height dtransform round height div exch height div exch - 0 0 transform round exch round exch - ptm astore setmatrix - } - { - ptm currentmatrix pop - } ifelse -{currentpoint} stopped not - { - pop pop - pathbbox - true - 4 index 3 index eq - 4 index 3 index eq - and - { - pop false - { - {pop pop} - {pop pop pop true} - {pop pop pop pop pop pop pop true} - {pop true} - pathforall - } stopped - { - pop pop pop pop pop true - } if - } if - { - height div ceiling height mul 4 1 roll - width div ceiling width mul 4 1 roll - height div floor height mul 4 1 roll - width div floor width mul 4 1 roll - 2 index sub height div ceiling cvi exch - 3 index sub width div ceiling cvi exch - 4 2 roll moveto - FontMatrix mtx invertmatrix - dup dup 4 get exch 5 get rmoveto - ptm ptm concatmatrix pop - slice /s - patterncachesize patterncachelimit div ceiling sqrt ceiling cvi - dup slice /q get gt - { - pop slice /q get - } if - put - 0 1 slice /s get dup mul 1 sub - { - slice /b get add - gsave - 0 1 str length 1 sub - { - str exch 2 index put - } for - pop - dup - { - gsave - ptm setmatrix - 1 index str length idiv {str show} repeat - 1 index str length mod str exch 0 exch getinterval show - grestore - 0 height rmoveto - } repeat - grestore - } for - pop pop - } - { - pop pop pop pop - } ifelse - } if -end -} def -/patternclip -{ -clip -} def -/patternstrokepath -{ -strokepath -} def -/patternmatrix -matrix def -/patternfill -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternclip -Adobe_pattern /patternpath get exec -grestore -newpath -} def -/patternstroke -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternstrokepath -true - { - { - { - newpath - moveto - } - { - lineto - } - { - curveto - } - { - closepath - 3 copy - Adobe_pattern /patternfill get exec - } pathforall - pop pop pop - } stopped - { - pop pop pop pop pop - patternclip - Adobe_pattern /patternfill get exec - } if - } - { - patternclip - Adobe_pattern /patternfill get exec - } ifelse -grestore -newpath -} def -/patternashow -{ -3 index type /dicttype eq - { - Adobe_pattern /patternmatrix get 4 1 roll - } if - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 6 index 6 index 6 index - Adobe_pattern /patternfill get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop -} def -/patternashowstroke -{ -4 index type /dicttype eq - { - patternmatrix /patternmatrix get 5 1 roll - } if -4 1 roll - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - 7 index 7 index 7 index - Adobe_pattern /patternstroke get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_Illustrator88 1.19 0 -currentpacking true setpacking -userdict /Adobe_Illustrator88 73 dict dup begin put -/initialize -{ -userdict /Adobe_Illustrator88_vars 31 dict dup begin put -/_lp /none def -/_pf {} def -/_ps {} def -/_psf {} def -/_pss {} def -/_a null def -/_as null def -/_tt 2 array def -/_tl 2 array def -/_tm matrix def -/t {} def -/_gf null def -/_cf 4 array def -/_if null def -/_of false def -/_fc {} def -/_gs null def -/_cs 4 array def -/_is null def -/_os false def -/_sc {} def -/_pd 1 dict def -/_ed 15 dict def -/_pm matrix def -/_fm null def -/_fd null def -/_fdd null def -/_sm null def -/_sd null def -/_sdd null def -/_i null def -Adobe_Illustrator88 begin -Adobe_Illustrator88 dup /nc get begin - { - dup xcheck - { - bind - } if - pop pop - } forall -end -end -end -Adobe_Illustrator88 begin -Adobe_Illustrator88_vars begin -newpath -} def -/terminate -{ -end -end -} def -/_ -null def -/ddef -{ -Adobe_Illustrator88_vars 3 1 roll put -} def -/xput -{ -dup load dup length exch maxlength eq - { - dup dup load dup - length 2 mul dict copy def - } if -load begin def end -} def -/npop -{ - { - pop - } repeat -} def -/sw -{ -stringwidth -exch 5 -1 roll 3 index 1 sub mul add -4 1 roll 3 1 roll 1 sub mul add -} def -/ss -{ -3 -1 roll pop -4 1 roll - { - 2 npop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - stroke - grestore - moveto - 2 copy rmoveto - } exch cshow -3 npop -} def -/sp -{ -exch pop - { - 2 npop (0) exch - 2 copy 0 exch put pop - false charpath - 2 copy rmoveto - } exch cshow -2 npop -} def -/pl -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where -{ -pop true setstrokeadjust -/c -{ -curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll curveto -} def -/V -/v load def -/y -{ -2 copy curveto -} def -/Y -/y load def -/l -{ -lineto -} def -/L -/l load def -/m -{ -moveto -} def -} -{ -/c -{ -pl curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll pl curveto -} def -/V -/v load def -/y -{ -pl 2 copy curveto -} def -/Y -/y load def -/l -{ -pl lineto -} def -/L -/l load def -/m -{ -pl moveto -} def -} ifelse -/d -{ -setdash -} def -/cf -currentflat def -/i -{ -dup 0 eq - { - pop cf - } if -setflat -} def -/j -{ -setlinejoin -} def -/J -{ -setlinecap -} def -/M -{ -setmiterlimit -} def -/w -{ -setlinewidth -} def -/H -{} def -/h -{ -closepath -} def -/N -{ -newpath -} def -/n -/N load def -/F -{ -_pf -} def -/f -{ -closepath -F -} def -/S -{ -_ps -} def -/s -{ -closepath -S -} def -/B -{ -gsave F grestore -S -} def -/b -{ -closepath -B -} def -/W -{ -clip -} def -/ta -{ -_as moveto -_tt aload pop 4 -2 roll -} def -/tl -{ -_tl aload pop translate -} def -/as -{ -{ -0 0 -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg 2 div exch neg 2 div -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg exch neg -} -{ -0 0 -} -} cvlit def -/z -{ -/_a exch ddef -/_as as _a get ddef -_a 2 le - { - 0 _tt astore pop - 0 exch neg _tl astore pop - } - { - 0 exch neg _tt astore pop - neg 0 _tl astore pop - } ifelse -exch findfont exch scalefont setfont -} def -/tm -{ -_tm currentmatrix pop -concat -} def -/I -{ -tm -/t - { - ta sp - tl - } ddef -} def -/o -{ -tm -/t - { - ta 4 npop - tl - newpath - } ddef -} def -/e -{ -tm -/t - { - ta _psf - tl - newpath - } ddef -} def -/r -{ -tm -/t - { - ta _tm _pss - tl - newpath - } ddef -} def -/a -{ -tm -/t - { - 2 copy - ta _psf - newpath - ta _tm _pss - tl - newpath - } ddef -} def -/T -{ -_tm setmatrix -} def -/Z -{ -pop -findfont begin -currentdict dup length 1 add dict begin - { - 1 index /FID ne - { - def - } - { - 2 npop - } ifelse - } forall -/FontName exch def dup length 0 ne - { - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - { - Encoding 2 index 2 index put pop - 1 add - } - { - exch pop - } ifelse - } forall - } if pop -currentdict dup end end -/FontName get exch definefont pop -} def -/u -{} def -/U -{} def -/q -{ -gsave -} def -/Q -{ -grestore -} def -/` -{ -/_i save ddef -6 1 roll 4 npop -concat -userdict begin -/showpage {} def -false setoverprint -pop -} def -/~ -{ -end -_i restore -} def -/@ -{} def -/& -{} def -/O -{ -0 ne -/_of exch ddef -/_lp /none ddef -} def -/R -{ -0 ne -/_os exch ddef -/_lp /none ddef -} def -/g -{ -/_gf exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _gf setgray - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/G -{ -/_gs exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _gs setgray - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/k -{ -_cf astore pop -/_fc -{ -_lp /fill ne - { - _of setoverprint - _cf aload pop setcmykcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/K -{ -_cs astore pop -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _cs aload pop setcmykcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/x -{ -/_gf exch ddef -findcmykcustomcolor -/_if exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _if _gf 1 exch sub setcustomcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/X -{ -/_gs exch ddef -findcmykcustomcolor -/_is exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _is _gs 1 exch sub setcustomcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/dp -{ -dup null eq -{ -pop -_dp 0 ne - { - 0 1 _dp 1 sub _dl mod - { - _da exch get 3 get - } for - _dp 1 sub _dl mod 1 add packedarray - _da 0 get aload pop 8 -1 roll 5 -1 roll pop 4 1 roll - definepattern pop - } if -} -{ -_dp 0 ne _dp _dl mod 0 eq and - { - null dp - } if -7 packedarray _da exch _dp _dl mod exch put -_dp _dl mod _da 0 get 4 get 2 packedarray -/_dp _dp 1 add def -} ifelse -} def -/E -{ -_ed begin -dup 0 get type /arraytype ne - { - 0 - { - dup 1 add index type /arraytype eq - { - 1 add - } - { - exit - } ifelse - } loop - array astore - } if -/_dd exch def -/_ury exch def -/_urx exch def -/_lly exch def -/_llx exch def -/_n exch def -/_y 0 def -/_dl 4 def -/_dp 0 def -/_da _dl array def -0 1 _dd length 1 sub - { - /_d exch _dd exch get def - 0 2 _d length 2 sub - { - /_x exch def - /_c _d _x get _ ne def - /_r _d _x 1 add get cvlit def - _r _ ne - { - _urx _llx sub _ury _lly sub [1 0 0 1 0 0] - [ - /save cvx - _llx neg _lly neg /translate cvx - _c - { - nc /begin cvx - } if - _r dup type /stringtype eq - { - cvx - } - { - {exec} /forall cvx - } ifelse - _c - { - /end cvx - } if - /restore cvx - ] cvx - /_fn 12 _n length add string def - _y _fn cvs pop - /_y _y 1 add def - _fn 12 _n putinterval - _fn _c false dp - _d exch _x 1 add exch put - } if - } for - } for -null dp -_n _dd /_pd -end xput -} def -/fc -{ -_fm dup concatmatrix pop -} def -/p -{ -/_fm exch ddef -9 -2 roll _pm translate fc -7 -2 roll _pm scale fc -5 -1 roll _pm rotate fc -4 -2 roll exch 0 ne - { - dup _pm rotate fc - 1 -1 _pm scale fc - neg _pm rotate fc - } - { - pop - } ifelse -dup _pm rotate fc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore fc -neg _pm rotate fc -_pd exch get /_fdd exch ddef -/_pf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - patternfill - } - { - pop - fill - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_psf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - 10 copy 6 npop exch pop patternashow - } - { - pop - 7 copy 3 npop exch pop ashow - } ifelse - grestore - pop - } for - pop - } for -restore -4 npop newpath -} ddef -/_lp /none ddef -} def -/sc -{ -_sm dup concatmatrix pop -} def -/P -{ -/_sm exch ddef -9 -2 roll _pm translate sc -7 -2 roll _pm scale sc -5 -1 roll _pm rotate sc -4 -2 roll exch 0 ne - { - dup _pm rotate sc - 1 -1 _pm scale sc - neg _pm rotate sc - } - { - pop - } ifelse -dup _pm rotate sc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore sc -neg _pm rotate sc -_pd exch get /_sdd exch ddef -/_ps -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - patternstroke - } - { - pop stroke - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_pss -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - 11 copy 6 npop 3 -1 roll pop patternashowstroke - } - { - pop - 8 copy 3 npop ss - } ifelse - grestore - pop - } for - pop - } for -restore -5 npop newpath -} ddef -/_lp /none ddef -} def -/A -{ -pop -} def -/nc 3 dict def -nc begin -/setgray -{ -pop -} bind def -/setcmykcolor -{ -4 npop -} bind def -/setcustomcolor -{ -2 npop -} bind def -currentdict readonly pop end -currentdict readonly pop end -setpacking -%%EndProcSet -%%EndProlog - -%%BeginSetup -Adobe_cmykcolor /initialize get exec -Adobe_cshow /initialize get exec -Adobe_customcolor /initialize get exec -Adobe_pattern /initialize get exec -Adobe_Illustrator88 /initialize get exec - -%%BeginPattern: (0) -(0) 10 10 18 18 [ -(0 O 0 R 0.000000 0.000000 0.000000 0 (New Color 0) 0 x 0.000000 0.000000 0.000000 0 (New Color 0) 0 X) @ -_ & -(0 O 0 R 0.999985 0.999985 0.999985 0 (New Color 255) 0 x 0.999985 0.999985 0.999985 0 (New Color 255) 0 X) @ -( -0 i 0 J 0 j 1 w 4 M []0 d -%Note: -14 17 m -15 17 l -15 18 l -14 18 l -14 17 l -f -16 16 m -17 16 l -17 17 l -16 17 l -16 16 l -f -11 16 m -12 16 l -12 17 l -11 17 l -11 16 l -f -13 14 m -14 14 l -14 15 l -13 15 l -13 14 l -f -10 14 m -11 14 l -11 15 l -10 15 l -10 14 l -f -15 13 m -16 13 l -16 14 l -15 14 l -15 13 l -f -11 12 m -12 12 l -12 13 l -11 13 l -11 12 l -f -13 11 m -14 11 l -14 12 l -13 12 l -13 11 l -f -17 10 m -18 10 l -18 11 l -17 11 l -17 10 l -f -) & -] E -%%EndPattern - -%%BeginPattern: (1) -(1) 10 10 18 18 [ -(0 O 0 R 0.000000 0.000000 0.000000 0 (New Color 0) 0 x 0.000000 0.000000 0.000000 0 (New Color 0) 0 X) @ -_ & -(0 O 0 R 0.999985 0.999985 0.999985 0 (New Color 255) 0 x 0.999985 0.999985 0.999985 0 (New Color 255) 0 X) @ -( -0 i 0 J 0 j 1 w 4 M []0 d -%Note: -15 17 m -16 17 l -16 18 l -15 18 l -15 17 l -f -14 17 m -15 17 l -15 18 l -14 18 l -14 17 l -f -11 17 m -12 17 l -12 18 l -11 18 l -11 17 l -f -16 16 m -17 16 l -17 17 l -16 17 l -16 16 l -f -13 16 m -14 16 l -14 17 l -13 17 l -13 16 l -f -11 16 m -12 16 l -12 17 l -11 17 l -11 16 l -f -10 16 m -11 16 l -11 17 l -10 17 l -10 16 l -f -17 15 m -18 15 l -18 16 l -17 16 l -17 15 l -f -16 15 m -17 15 l -17 16 l -16 16 l -16 15 l -f -13 15 m -14 15 l -14 16 l -13 16 l -13 15 l -f -11 15 m -12 15 l -12 16 l -11 16 l -11 15 l -f -17 14 m -18 14 l -18 15 l -17 15 l -17 14 l -f -15 14 m -16 14 l -16 15 l -15 15 l -15 14 l -f -14 14 m -15 14 l -15 15 l -14 15 l -14 14 l -f -12 14 m -13 14 l -13 15 l -12 15 l -12 14 l -f -16 13 m -17 13 l -17 14 l -16 14 l -16 13 l -f -15 13 m -16 13 l -16 14 l -15 14 l -15 13 l -f -13 13 m -14 13 l -14 14 l -13 14 l -13 13 l -f -10 13 m -11 13 l -11 14 l -10 14 l -10 13 l -f -17 12 m -18 12 l -18 13 l -17 13 l -17 12 l -f -14 12 m -15 12 l -15 13 l -14 13 l -14 12 l -f -13 12 m -14 12 l -14 13 l -13 13 l -13 12 l -f -11 12 m -12 12 l -12 13 l -11 13 l -11 12 l -f -16 11 m -17 11 l -17 12 l -16 12 l -16 11 l -f -15 11 m -16 11 l -16 12 l -15 12 l -15 11 l -f -11 11 m -12 11 l -12 12 l -11 12 l -11 11 l -f -17 10 m -18 10 l -18 11 l -17 11 l -17 10 l -f -16 10 m -17 10 l -17 11 l -16 11 l -16 10 l -f -13 10 m -14 10 l -14 11 l -13 11 l -13 10 l -f -12 10 m -13 10 l -13 11 l -12 11 l -12 10 l -f -10 10 m -11 10 l -11 11 l -10 11 l -10 10 l -f -) & -] E -%%EndPattern -%%BeginEncoding: _Symbol Symbol -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Symbol /Symbol 0 Z -%%EndEncoding -%%BeginEncoding: _Times-Italic Times-Italic -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Italic /Times-Italic 0 Z -%%EndEncoding - -%%EndSetup - -0 A -0 O -0 R -0 g -0 G -0 i 0 J 0 j 1 w 4 M [] 0 d -u -u -376.471 581.529 m -376.471 591.529 L -159.471 591.529 L -159.471 581.529 L -376.471 581.529 L -0 g F -U -u -376.496 581.504 m -376.496 591.496 L -159.504 591.496 L -159.504 581.504 L -376.496 581.504 L -1.008 w 0 G S -U -u -263.471 532.529 m -263.471 578.529 L -159.471 578.529 L -159.471 532.529 L -263.471 532.529 L -(0) 0 0 1 1 0 0 0 0 0 [1 0 0 1 0 0] p f -U -u -263.496 532.504 m -263.496 578.496 L -159.504 578.496 L -159.504 532.504 L -263.496 532.504 L -1.008 w 0 G S -U -u -376.471 532.529 m -376.471 578.529 L -271.471 578.529 L -271.471 532.529 L -376.471 532.529 L -(1) 0 0 1 1 0 0 0 0 0 [1 0 0 1 0 0] p f -U -u -376.496 532.504 m -376.496 578.496 L -271.504 578.496 L -271.504 532.504 L -376.496 532.504 L -1.008 w 0 G S -U -u -376.471 518.529 m -376.471 528.529 L -159.471 528.529 L -159.471 518.529 L -376.471 518.529 L -0 g F -U -u -376.496 518.504 m -376.496 528.496 L -159.504 528.496 L -159.504 518.504 L -376.496 518.504 L -1.008 w 0 G S -U -u -219.471 543.529 m -219.471 561.529 L -204.471 561.529 L -204.471 543.529 L -219.471 543.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Symbol 12 12 0 0 z -[1 0 0 1 204.471 548.529 ]e -2 (k1)t -T -u -331.471 543.529 m -331.471 561.529 L -316.471 561.529 L -316.471 543.529 L -331.471 543.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Symbol 12 12 0 0 z -[1 0 0 1 316.471 548.529 ]e -2 (k2)t -T -393.504 569.496 m -393.504 542.496 l -1.008 w 0 G S -u -393.471 578.529 m -390.471 569.529 L -393.471 569.529 L -396.471 569.529 L -393.471 578.529 L - -0 g F -U -u -393.504 578.496 m -390.504 569.496 L -393.504 569.496 L -396.504 569.496 L -393.504 578.496 L - -1.008 w 0 G s -U -u -393.471 533.529 m -390.471 542.529 L -393.471 542.529 L -396.471 542.529 L -393.471 533.529 L - -0 g F -U -u -393.504 533.496 m -390.504 542.496 L -393.504 542.496 L -396.504 542.496 L -393.504 533.496 L - -1.008 w 0 G s -U -379.504 578.496 m -402.504 578.496 l -1.008 w 0 G S -379.504 533.496 m -402.504 533.496 l -1.008 w 0 G S -u -415.471 545.529 m -415.471 558.529 L -406.471 558.529 L -406.471 545.529 L -415.471 545.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 406.471 549.529 ]e -1 (d)t -T -U - -%%Trailer -Adobe_Illustrator88 /terminate get exec -Adobe_pattern /terminate get exec -Adobe_customcolor /terminate get exec -Adobe_cshow /terminate get exec -Adobe_cmykcolor /terminate get exec -Adobe_packedarray /terminate get exec -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob20b.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob20b.gif deleted file mode 100755 index 0c9dab24b..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob20b.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob23.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob23.eps deleted file mode 100755 index 09ea632b2..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob23.eps +++ /dev/null @@ -1,1679 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad 6.0.1 -%%Title: Capacitor_Bridge.eps -%%CreationDate: 9/21/1997 -%%DocumentProcSets: Adobe_packedarray 1.0 0 -%%DocumentSuppliedProcSets: Adobe_packedarray 1.0 0 -%%DocumentProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentProcSets: Adobe_cshow 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cshow 1.1 0 -%%DocumentProcSets: Adobe_customcolor 1.0 0 -%%DocumentSuppliedProcSets: Adobe_customcolor 1.0 0 -%%DocumentProcSets: Adobe_pattern 1.9 0 -%%DocumentSuppliedProcSets: Adobe_pattern 1.9 0 -%%DocumentProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentSuppliedProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentFonts: Palatino-Roman -%%BoundingBox:360 363 598 529 -%%TemplateBox:306 396 306 396 -%%DocumentPreview: Header -%%EndComments - -%%BeginProlog -%%BeginProcSet: Adobe_packedarray 1.0 0 -userdict /Adobe_packedarray 5 dict dup begin put -/initialize -{ -/packedarray where - { - pop - } - { - Adobe_packedarray begin - Adobe_packedarray - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - } ifelse -} def -/terminate -{ -} def -/packedarray -{ -array astore readonly -} def -/setpacking -{ -pop -} def -/currentpacking -{ -false -} def -currentdict readonly pop end -%%EndProcSet -Adobe_packedarray /initialize get exec -%%BeginProcSet: Adobe_cmykcolor 1.1 0 -currentpacking true setpacking -userdict /Adobe_cmykcolor 4 dict dup begin put -/initialize -{ -/setcmykcolor where - { - pop - } - { - userdict /Adobe_cmykcolor_vars 2 dict dup begin put - /_setrgbcolor - /setrgbcolor load def - /_currentrgbcolor - /currentrgbcolor load def - Adobe_cmykcolor begin - Adobe_cmykcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - end - Adobe_cmykcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_cmykcolor eq - { - end - } if -} def -/setcmykcolor -{ -1 sub 4 1 roll -3 - { - 3 index add neg dup 0 lt - { - pop 0 - } if - 3 1 roll - } repeat -Adobe_cmykcolor_vars /_setrgbcolor get exec -pop -} def -/currentcmykcolor -{ -Adobe_cmykcolor_vars /_currentrgbcolor get exec -3 - { - 1 sub neg 3 1 roll - } repeat -0 -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_cshow 1.1 0 -currentpacking true setpacking -userdict /Adobe_cshow 3 dict dup begin put -/initialize -{ -/cshow where - { - pop - } - { - userdict /Adobe_cshow_vars 1 dict dup begin put - /_cshow - {} def - Adobe_cshow begin - Adobe_cshow - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - end - } ifelse -} def -/terminate -{ -} def -/cshow -{ -exch -Adobe_cshow_vars - exch /_cshow - exch put - { - 0 0 Adobe_cshow_vars /_cshow get exec - } forall -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_customcolor 1.0 0 -currentpacking true setpacking -userdict /Adobe_customcolor 5 dict dup begin put -/initialize -{ -/setcustomcolor where - { - pop - } - { - Adobe_customcolor begin - Adobe_customcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - Adobe_customcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_customcolor eq - { - end - } if -} def -/findcmykcustomcolor -{ -5 packedarray -} def -/setcustomcolor -{ -exch -aload pop pop -4 - { - 4 index mul 4 1 roll - } repeat -5 -1 roll pop -setcmykcolor -} def -/setoverprint -{ -pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_pattern 1.9 0 -currentpacking true setpacking -userdict /Adobe_pattern 14 dict dup begin put -/initialize -{ -/definepattern where - { - pop - } - { - Adobe_pattern begin - Adobe_pattern - { - dup xcheck - { - bind - } if - pop pop - } forall - mark - cachestatus 7 1 roll pop pop pop pop exch pop exch - { - { - 10000 add - dup 2 index gt - { - break - } if - dup setcachelimit - } loop - } stopped - cleartomark - } ifelse -} def -/terminate -{ -currentdict Adobe_pattern eq - { - end - } if -} def -errordict -/nocurrentpoint -{ -pop -stop -} put -errordict -/invalidaccess -{ -pop -stop -} put -/patternencoding -256 array def -0 1 255 -{ -patternencoding exch ( ) 2 copy exch 0 exch put cvn put -} for -/definepattern -{ -17 dict begin -/uniform exch def -/cache exch def -/key exch def -/procarray exch def -/mtx exch matrix invertmatrix def -/height exch def -/width exch def -/ctm matrix currentmatrix def -/ptm matrix def -/str 32 string def -/slice 9 dict def -slice /s 1 put -slice /q 256 procarray length div sqrt floor cvi put -slice /b 0 put -/FontBBox [0 0 0 0] def -/FontMatrix mtx matrix copy def -/Encoding patternencoding def -/FontType 3 def -/BuildChar - { - exch - begin - slice begin - dup q dup mul mod s idiv /i exch def - dup q dup mul mod s mod /j exch def - q dup mul idiv procarray exch get - /xl j width s div mul def - /xg j 1 add width s div mul def - /yl i height s div mul def - /yg i 1 add height s div mul def - uniform - { - 1 1 - } - { - width 0 dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - 0 height dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - } ifelse - width 0 cache - { - xl 4 index mul yl 4 index mul xg 6 index mul yg 6 index mul - setcachedevice - } - { - setcharwidth - } ifelse - gsave - scale - newpath - xl yl moveto - xg yl lineto - xg yg lineto - xl yg lineto - closepath - clip - newpath - end - end - exec - grestore - } def -key currentdict definefont -end -} def -/patterncachesize -{ -gsave -newpath -0 0 moveto -width 0 lineto -width height lineto -0 height lineto -closepath -patternmatrix setmatrix -pathbbox -exch ceiling 4 -1 roll floor sub 3 1 roll -ceiling exch floor sub -mul 1 add -grestore -} def -/patterncachelimit -{ -cachestatus 7 1 roll pop pop pop pop pop pop 8 mul -} def -/patternpath -{ -exch dup begin setfont -ctm setmatrix -concat -slice exch /b exch slice /q get dup mul mul put -FontMatrix concat -uniform - { - width 0 dtransform round width div exch round width div exch - 0 height dtransform round height div exch height div exch - 0 0 transform round exch round exch - ptm astore setmatrix - } - { - ptm currentmatrix pop - } ifelse -{currentpoint} stopped not - { - pop pop - pathbbox - true - 4 index 3 index eq - 4 index 3 index eq - and - { - pop false - { - {pop pop} - {pop pop pop true} - {pop pop pop pop pop pop pop true} - {pop true} - pathforall - } stopped - { - pop pop pop pop pop true - } if - } if - { - height div ceiling height mul 4 1 roll - width div ceiling width mul 4 1 roll - height div floor height mul 4 1 roll - width div floor width mul 4 1 roll - 2 index sub height div ceiling cvi exch - 3 index sub width div ceiling cvi exch - 4 2 roll moveto - FontMatrix mtx invertmatrix - dup dup 4 get exch 5 get rmoveto - ptm ptm concatmatrix pop - slice /s - patterncachesize patterncachelimit div ceiling sqrt ceiling cvi - dup slice /q get gt - { - pop slice /q get - } if - put - 0 1 slice /s get dup mul 1 sub - { - slice /b get add - gsave - 0 1 str length 1 sub - { - str exch 2 index put - } for - pop - dup - { - gsave - ptm setmatrix - 1 index str length idiv {str show} repeat - 1 index str length mod str exch 0 exch getinterval show - grestore - 0 height rmoveto - } repeat - grestore - } for - pop pop - } - { - pop pop pop pop - } ifelse - } if -end -} def -/patternclip -{ -clip -} def -/patternstrokepath -{ -strokepath -} def -/patternmatrix -matrix def -/patternfill -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternclip -Adobe_pattern /patternpath get exec -grestore -newpath -} def -/patternstroke -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternstrokepath -true - { - { - { - newpath - moveto - } - { - lineto - } - { - curveto - } - { - closepath - 3 copy - Adobe_pattern /patternfill get exec - } pathforall - pop pop pop - } stopped - { - pop pop pop pop pop - patternclip - Adobe_pattern /patternfill get exec - } if - } - { - patternclip - Adobe_pattern /patternfill get exec - } ifelse -grestore -newpath -} def -/patternashow -{ -3 index type /dicttype eq - { - Adobe_pattern /patternmatrix get 4 1 roll - } if - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 6 index 6 index 6 index - Adobe_pattern /patternfill get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop -} def -/patternashowstroke -{ -4 index type /dicttype eq - { - patternmatrix /patternmatrix get 5 1 roll - } if -4 1 roll - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - 7 index 7 index 7 index - Adobe_pattern /patternstroke get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_Illustrator88 1.19 0 -currentpacking true setpacking -userdict /Adobe_Illustrator88 73 dict dup begin put -/initialize -{ -userdict /Adobe_Illustrator88_vars 31 dict dup begin put -/_lp /none def -/_pf {} def -/_ps {} def -/_psf {} def -/_pss {} def -/_a null def -/_as null def -/_tt 2 array def -/_tl 2 array def -/_tm matrix def -/t {} def -/_gf null def -/_cf 4 array def -/_if null def -/_of false def -/_fc {} def -/_gs null def -/_cs 4 array def -/_is null def -/_os false def -/_sc {} def -/_pd 1 dict def -/_ed 15 dict def -/_pm matrix def -/_fm null def -/_fd null def -/_fdd null def -/_sm null def -/_sd null def -/_sdd null def -/_i null def -Adobe_Illustrator88 begin -Adobe_Illustrator88 dup /nc get begin - { - dup xcheck - { - bind - } if - pop pop - } forall -end -end -end -Adobe_Illustrator88 begin -Adobe_Illustrator88_vars begin -newpath -} def -/terminate -{ -end -end -} def -/_ -null def -/ddef -{ -Adobe_Illustrator88_vars 3 1 roll put -} def -/xput -{ -dup load dup length exch maxlength eq - { - dup dup load dup - length 2 mul dict copy def - } if -load begin def end -} def -/npop -{ - { - pop - } repeat -} def -/sw -{ -stringwidth -exch 5 -1 roll 3 index 1 sub mul add -4 1 roll 3 1 roll 1 sub mul add -} def -/ss -{ -3 -1 roll pop -4 1 roll - { - 2 npop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - stroke - grestore - moveto - 2 copy rmoveto - } exch cshow -3 npop -} def -/sp -{ -exch pop - { - 2 npop (0) exch - 2 copy 0 exch put pop - false charpath - 2 copy rmoveto - } exch cshow -2 npop -} def -/pl -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where -{ -pop true setstrokeadjust -/c -{ -curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll curveto -} def -/V -/v load def -/y -{ -2 copy curveto -} def -/Y -/y load def -/l -{ -lineto -} def -/L -/l load def -/m -{ -moveto -} def -} -{ -/c -{ -pl curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll pl curveto -} def -/V -/v load def -/y -{ -pl 2 copy curveto -} def -/Y -/y load def -/l -{ -pl lineto -} def -/L -/l load def -/m -{ -pl moveto -} def -} ifelse -/d -{ -setdash -} def -/cf -currentflat def -/i -{ -dup 0 eq - { - pop cf - } if -setflat -} def -/j -{ -setlinejoin -} def -/J -{ -setlinecap -} def -/M -{ -setmiterlimit -} def -/w -{ -setlinewidth -} def -/H -{} def -/h -{ -closepath -} def -/N -{ -newpath -} def -/n -/N load def -/F -{ -_pf -} def -/f -{ -closepath -F -} def -/S -{ -_ps -} def -/s -{ -closepath -S -} def -/B -{ -gsave F grestore -S -} def -/b -{ -closepath -B -} def -/W -{ -clip -} def -/ta -{ -_as moveto -_tt aload pop 4 -2 roll -} def -/tl -{ -_tl aload pop translate -} def -/as -{ -{ -0 0 -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg 2 div exch neg 2 div -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg exch neg -} -{ -0 0 -} -} cvlit def -/z -{ -/_a exch ddef -/_as as _a get ddef -_a 2 le - { - 0 _tt astore pop - 0 exch neg _tl astore pop - } - { - 0 exch neg _tt astore pop - neg 0 _tl astore pop - } ifelse -exch findfont exch scalefont setfont -} def -/tm -{ -_tm currentmatrix pop -concat -} def -/I -{ -tm -/t - { - ta sp - tl - } ddef -} def -/o -{ -tm -/t - { - ta 4 npop - tl - newpath - } ddef -} def -/e -{ -tm -/t - { - ta _psf - tl - newpath - } ddef -} def -/r -{ -tm -/t - { - ta _tm _pss - tl - newpath - } ddef -} def -/a -{ -tm -/t - { - 2 copy - ta _psf - newpath - ta _tm _pss - tl - newpath - } ddef -} def -/T -{ -_tm setmatrix -} def -/Z -{ -pop -findfont begin -currentdict dup length 1 add dict begin - { - 1 index /FID ne - { - def - } - { - 2 npop - } ifelse - } forall -/FontName exch def dup length 0 ne - { - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - { - Encoding 2 index 2 index put pop - 1 add - } - { - exch pop - } ifelse - } forall - } if pop -currentdict dup end end -/FontName get exch definefont pop -} def -/u -{} def -/U -{} def -/q -{ -gsave -} def -/Q -{ -grestore -} def -/` -{ -/_i save ddef -6 1 roll 4 npop -concat -userdict begin -/showpage {} def -false setoverprint -pop -} def -/~ -{ -end -_i restore -} def -/@ -{} def -/& -{} def -/O -{ -0 ne -/_of exch ddef -/_lp /none ddef -} def -/R -{ -0 ne -/_os exch ddef -/_lp /none ddef -} def -/g -{ -/_gf exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _gf setgray - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/G -{ -/_gs exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _gs setgray - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/k -{ -_cf astore pop -/_fc -{ -_lp /fill ne - { - _of setoverprint - _cf aload pop setcmykcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/K -{ -_cs astore pop -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _cs aload pop setcmykcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/x -{ -/_gf exch ddef -findcmykcustomcolor -/_if exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _if _gf 1 exch sub setcustomcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/X -{ -/_gs exch ddef -findcmykcustomcolor -/_is exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _is _gs 1 exch sub setcustomcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/dp -{ -dup null eq -{ -pop -_dp 0 ne - { - 0 1 _dp 1 sub _dl mod - { - _da exch get 3 get - } for - _dp 1 sub _dl mod 1 add packedarray - _da 0 get aload pop 8 -1 roll 5 -1 roll pop 4 1 roll - definepattern pop - } if -} -{ -_dp 0 ne _dp _dl mod 0 eq and - { - null dp - } if -7 packedarray _da exch _dp _dl mod exch put -_dp _dl mod _da 0 get 4 get 2 packedarray -/_dp _dp 1 add def -} ifelse -} def -/E -{ -_ed begin -dup 0 get type /arraytype ne - { - 0 - { - dup 1 add index type /arraytype eq - { - 1 add - } - { - exit - } ifelse - } loop - array astore - } if -/_dd exch def -/_ury exch def -/_urx exch def -/_lly exch def -/_llx exch def -/_n exch def -/_y 0 def -/_dl 4 def -/_dp 0 def -/_da _dl array def -0 1 _dd length 1 sub - { - /_d exch _dd exch get def - 0 2 _d length 2 sub - { - /_x exch def - /_c _d _x get _ ne def - /_r _d _x 1 add get cvlit def - _r _ ne - { - _urx _llx sub _ury _lly sub [1 0 0 1 0 0] - [ - /save cvx - _llx neg _lly neg /translate cvx - _c - { - nc /begin cvx - } if - _r dup type /stringtype eq - { - cvx - } - { - {exec} /forall cvx - } ifelse - _c - { - /end cvx - } if - /restore cvx - ] cvx - /_fn 12 _n length add string def - _y _fn cvs pop - /_y _y 1 add def - _fn 12 _n putinterval - _fn _c false dp - _d exch _x 1 add exch put - } if - } for - } for -null dp -_n _dd /_pd -end xput -} def -/fc -{ -_fm dup concatmatrix pop -} def -/p -{ -/_fm exch ddef -9 -2 roll _pm translate fc -7 -2 roll _pm scale fc -5 -1 roll _pm rotate fc -4 -2 roll exch 0 ne - { - dup _pm rotate fc - 1 -1 _pm scale fc - neg _pm rotate fc - } - { - pop - } ifelse -dup _pm rotate fc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore fc -neg _pm rotate fc -_pd exch get /_fdd exch ddef -/_pf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - patternfill - } - { - pop - fill - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_psf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - 10 copy 6 npop exch pop patternashow - } - { - pop - 7 copy 3 npop exch pop ashow - } ifelse - grestore - pop - } for - pop - } for -restore -4 npop newpath -} ddef -/_lp /none ddef -} def -/sc -{ -_sm dup concatmatrix pop -} def -/P -{ -/_sm exch ddef -9 -2 roll _pm translate sc -7 -2 roll _pm scale sc -5 -1 roll _pm rotate sc -4 -2 roll exch 0 ne - { - dup _pm rotate sc - 1 -1 _pm scale sc - neg _pm rotate sc - } - { - pop - } ifelse -dup _pm rotate sc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore sc -neg _pm rotate sc -_pd exch get /_sdd exch ddef -/_ps -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - patternstroke - } - { - pop stroke - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_pss -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - 11 copy 6 npop 3 -1 roll pop patternashowstroke - } - { - pop - 8 copy 3 npop ss - } ifelse - grestore - pop - } for - pop - } for -restore -5 npop newpath -} ddef -/_lp /none ddef -} def -/A -{ -pop -} def -/nc 3 dict def -nc begin -/setgray -{ -pop -} bind def -/setcmykcolor -{ -4 npop -} bind def -/setcustomcolor -{ -2 npop -} bind def -currentdict readonly pop end -currentdict readonly pop end -setpacking -%%EndProcSet -%%EndProlog - -%%BeginSetup -Adobe_cmykcolor /initialize get exec -Adobe_cshow /initialize get exec -Adobe_customcolor /initialize get exec -Adobe_pattern /initialize get exec -Adobe_Illustrator88 /initialize get exec -%%BeginEncoding: _Palatino-Roman Palatino-Roman -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Palatino-Roman /Palatino-Roman 0 Z -%%EndEncoding - -%%EndSetup - -0 A -0 O -0 R -0 g -0 G -0 i 0 J 0 j 1 w 4 M [] 0 d -u -407.478 445.522 m -434.478 472.522 l -2.016 w 1 1 0 0 (New Color 4) 0 X - S -425.478 481.522 m -443.478 463.522 l -2.016 w 0 1 1 0 (New Color 7) 0 X - S -434.478 490.522 m -452.478 472.522 l -2.016 w 0 1 1 0 (New Color 7) 0 X - S -443.478 481.522 m -479.478 517.522 l -2.016 w 1 1 0 0 (New Color 4) 0 X - S -407.478 445.522 m -434.478 418.522 l -2.016 w 1 1 0 0 (New Color 4) 0 X - S -443.478 427.522 m -425.478 409.522 l -2.016 w 0 1 1 0 (New Color 7) 0 X - S -434.478 400.522 m -452.478 418.522 l -2.016 w 0 1 1 0 (New Color 7) 0 X - S -443.478 409.522 m -479.478 373.522 l -2.016 w 1 1 0 0 (New Color 4) 0 X - S -479.478 373.522 m -515.478 409.522 l -2.016 w 1 1 0 0 (New Color 4) 0 X - S -506.478 418.522 m -524.478 400.522 l -2.016 w 0 1 1 0 (New Color 7) 0 X - S -515.478 427.522 m -533.478 409.522 l -2.016 w 0 1 1 0 (New Color 7) 0 X - S -524.478 418.522 m -551.478 445.522 l -2.016 w 1 1 0 0 (New Color 4) 0 X - S -479.478 517.522 m -515.478 481.522 l -2.016 w 1 1 0 0 (New Color 4) 0 X - S -524.478 490.522 m -506.478 472.522 l -2.016 w 0 1 1 0 (New Color 7) 0 X - S -515.478 463.522 m -533.478 481.522 l -2.016 w 0 1 1 0 (New Color 7) 0 X - S -524.478 472.522 m -551.478 445.522 l -2.016 w 1 1 0 0 (New Color 4) 0 X - S -407.478 445.522 m -389.478 445.522 l -2.016 w 1 1 0 0 (New Color 4) 0 X - S -551.478 445.522 m -569.478 445.522 l -2.016 w 1 1 0 0 (New Color 4) 0 X - S -479.478 517.522 m -479.478 454.522 l -2.016 w 1 1 0 0 (New Color 4) 0 X - S -470.478 454.522 m -488.478 454.522 l -2.016 w 0 1 1 0 (New Color 7) 0 X - S -470.478 445.522 m -488.478 445.522 l -2.016 w 0 1 1 0 (New Color 7) 0 X - S -479.478 445.522 m -479.478 373.522 l -2.016 w 1 1 0 0 (New Color 4) 0 X - S -u -388.471 434.529 m -388.471 454.529 L -371.471 454.529 L -371.471 434.529 L -388.471 434.529 L -1 g F -U -1 1 1 0 (New Color 0) 0 x -/_Palatino-Roman 18 20 0 0 z -[1 0 0 1 371.471 439.529 ]e -1 (A)t -T -u -587.471 434.529 m -587.471 454.529 L -574 454.529 L -574 434.529 L -587.471 434.529 L -1 g F -U -1 1 1 0 (New Color 0) 0 x -/_Palatino-Roman 18 20 0 0 z -[1 0 0 1 574 439.529 ]e -1 (B)t -T -u -428.706 485 m -428.706 505.059 L -413.235 505.059 L -413.235 485 L -428.706 485 L -1 g F -U -1 1 1 0 (New Color 0) 0 x -/_Palatino-Roman 18 20 0 0 z -[1 0 0 1 413.235 490.059 ]e -1 (C)t -T -u -545.706 485 m -545.706 505.059 L -530.235 505.059 L -530.235 485 L -545.706 485 L -1 g F -U -1 1 1 0 (New Color 0) 0 x -/_Palatino-Roman 18 20 0 0 z -[1 0 0 1 530.235 490.059 ]e -1 (C)t -T -u -428.706 386 m -428.706 406.059 L -413.235 406.059 L -413.235 386 L -428.706 386 L -1 g F -U -1 1 1 0 (New Color 0) 0 x -/_Palatino-Roman 18 20 0 0 z -[1 0 0 1 413.235 391.059 ]e -1 (C)t -T -u -545.706 386 m -545.706 406.059 L -530.235 406.059 L -530.235 386 L -545.706 386 L -1 g F -U -1 1 1 0 (New Color 0) 0 x -/_Palatino-Roman 18 20 0 0 z -[1 0 0 1 530.235 391.059 ]e -1 (C)t -T -u -511.706 440 m -511.706 460.059 L -492.235 460.059 L -492.235 440 L -511.706 440 L -1 g F -U -1 1 1 0 (New Color 0) 0 x -/_Palatino-Roman 18 20 0 0 z -[1 0 0 1 492.235 445.059 ]e -2 (C')t -T -U - -%%Trailer -Adobe_Illustrator88 /terminate get exec -Adobe_pattern /terminate get exec -Adobe_customcolor /terminate get exec -Adobe_cshow /terminate get exec -Adobe_cmykcolor /terminate get exec -Adobe_packedarray /terminate get exec -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob23.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob23.gif deleted file mode 100755 index 08fb7e98a..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype56/prob23.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v1.eps deleted file mode 100755 index 378d4e82d..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v1.eps +++ /dev/null @@ -1,723 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 421 263 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Tue, Jul 9, 1996 1:04 PM -%%DocumentFonts: (atend) -%%EndComments -0 263 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.75 15.00 53.75 216.00 MacLine -385.50 15.00 385.50 216.00 MacLine -1 ps -1.00 ps -389.00 15.50 385.50 15.50 MacLine -50.25 15.50 53.75 15.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -53.75 35.88 385.50 35.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 35.50 385.50 35.50 MacLine -46.75 35.50 53.75 35.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2.8) 21.00 40.38 22.25 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.75 56.00 385.50 56.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -389.00 55.50 385.50 55.50 MacLine -50.25 55.50 53.75 55.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -53.75 75.88 385.50 75.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 75.50 385.50 75.50 MacLine -46.75 75.50 53.75 75.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2.4) 21.00 80.38 22.25 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.75 96.00 385.50 96.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -389.00 95.50 385.50 95.50 MacLine -50.25 95.50 53.75 95.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -53.75 115.88 385.50 115.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 115.50 385.50 115.50 MacLine -46.75 115.50 53.75 115.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2.0) 21.00 120.38 22.25 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.75 136.00 385.50 136.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -389.00 135.50 385.50 135.50 MacLine -50.25 135.50 53.75 135.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -53.75 155.88 385.50 155.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 155.50 385.50 155.50 MacLine -46.75 155.50 53.75 155.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1.6) 21.00 160.38 22.25 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.75 176.00 385.50 176.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -389.00 175.50 385.50 175.50 MacLine -50.25 175.50 53.75 175.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -53.75 195.88 385.50 195.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 195.50 385.50 195.50 MacLine -46.75 195.50 53.75 195.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1.2) 21.00 200.38 22.25 WS -1.00 ps -389.00 215.50 385.50 215.50 MacLine -50.25 215.50 53.75 215.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -gsave 12.38 155.62 translate -90 rotate -(Current \(A\)) 0.00 0.00 79.25 WS -grestore -1.00 ps -53.75 217.00 385.50 217.00 MacLine -53.75 14.00 385.50 14.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -366.25 217.00 366.25 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -365.88 7.00 365.88 14.00 MacLine -365.88 224.00 365.88 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(120) 353.12 241.38 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -340.50 217.00 340.50 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -340.00 10.50 340.00 14.00 MacLine -340.00 220.50 340.00 217.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -314.50 217.00 314.50 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -314.12 7.00 314.12 14.00 MacLine -314.12 224.00 314.12 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(100) 301.38 241.38 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -288.75 217.00 288.75 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -288.25 10.50 288.25 14.00 MacLine -288.25 220.50 288.25 217.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -262.75 217.00 262.75 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -262.38 7.00 262.38 14.00 MacLine -262.38 224.00 262.38 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(80) 254.00 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -237.00 217.00 237.00 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -236.50 10.50 236.50 14.00 MacLine -236.50 220.50 236.50 217.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -211.00 217.00 211.00 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -210.62 7.00 210.62 14.00 MacLine -210.62 224.00 210.62 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(60) 202.25 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -185.12 217.00 185.12 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -184.62 10.50 184.62 14.00 MacLine -184.62 220.50 184.62 217.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -159.12 217.00 159.12 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -158.75 7.00 158.75 14.00 MacLine -158.75 224.00 158.75 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(40) 150.38 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -133.38 217.00 133.38 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -132.88 10.50 132.88 14.00 MacLine -132.88 220.50 132.88 217.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -107.38 217.00 107.38 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -107.00 7.00 107.00 14.00 MacLine -107.00 224.00 107.00 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 98.62 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -81.62 217.00 81.62 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -81.12 10.50 81.12 14.00 MacLine -81.12 220.50 81.12 217.00 MacLine -1 ps -1.00 ps -55.25 7.00 55.25 14.00 MacLine -55.25 224.00 55.25 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 51.38 241.38 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 190.75 259.38 58.75 WS -1 0 0 SetFore UseFore -1.00 ps -newpath 55.75 116.00 M -58.25 106.00 L -60.88 96.12 L -63.50 86.38 L -66.00 77.00 L -68.62 68.00 L -71.25 59.50 L -73.75 51.50 L -76.38 44.25 L -79.00 37.62 L -81.62 31.88 L -84.12 26.88 L -86.75 22.75 L -89.38 19.62 L -91.88 17.38 L -94.50 16.25 L -97.12 16.00 L -99.75 16.75 L -102.25 18.62 L -104.88 21.38 L -107.50 25.00 L -110.00 29.62 L -112.62 35.12 L -115.25 41.38 L -117.88 48.38 L -120.38 56.12 L -123.00 64.38 L -125.62 73.25 L -128.12 82.50 L -130.75 92.00 L -133.38 101.88 L -136.00 111.88 L -138.50 121.75 L -141.12 131.75 L -143.75 141.50 L -146.25 151.00 L -148.88 160.25 L -151.50 169.00 L -154.12 177.12 L -156.62 184.75 L -159.25 191.62 L -161.88 197.75 L -164.38 203.12 L -167.00 207.62 L -169.62 211.12 L -172.12 213.75 L -174.75 215.38 L -177.38 216.00 L -180.00 215.62 L -182.50 214.25 L -185.12 211.88 L -187.75 208.62 L -190.25 204.38 L -192.88 199.25 L -195.50 193.25 L -198.12 186.50 L -200.62 179.12 L -203.25 171.00 L -205.88 162.38 L -208.38 153.38 L -211.00 143.88 L -213.62 134.25 L -216.25 124.25 L -218.75 114.38 L -221.38 104.38 L -224.00 94.50 L -226.50 84.88 L -229.12 75.50 L -231.75 66.50 L -234.38 58.12 L -236.88 50.25 L -239.50 43.12 L -242.12 36.62 L -244.62 31.00 L -247.25 26.12 L -249.88 22.12 L -252.50 19.12 L -255.00 17.12 L -257.62 16.12 L -260.25 16.12 L -262.75 17.00 L -265.38 19.00 L -268.00 21.88 L -270.62 25.75 L -273.12 30.50 L -275.75 36.12 L -278.38 42.50 L -280.88 49.75 L -283.50 57.50 L -286.12 65.88 L -288.62 74.75 L -291.25 84.12 L -293.88 93.62 L -296.50 103.50 L -299.00 113.50 L -301.62 123.50 L -304.25 133.38 L -306.75 143.12 L -309.38 152.62 L -312.00 161.75 L -314.62 170.38 L -317.12 178.50 L -319.75 186.00 L -322.38 192.75 L -324.88 198.75 L -327.50 204.00 L -330.12 208.25 L -332.75 211.62 L -335.25 214.12 L -337.88 215.50 L -340.50 216.00 L -343.00 215.50 L -345.62 213.88 L -348.25 211.38 L -350.88 207.88 L -353.38 203.50 L -356.00 198.25 L -358.62 192.12 L -361.12 185.38 L -363.75 177.75 L -366.38 169.62 L -369.00 161.00 L -371.50 151.75 L -374.12 142.25 L -376.75 132.50 L -379.25 122.62 L -381.88 112.62 L -384.25 103.62 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v1.gif deleted file mode 100755 index be105fb96..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v2.eps deleted file mode 100755 index 82b4e37f5..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v2.eps +++ /dev/null @@ -1,669 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 421 263 -%%Creator: Igor -%%Title: Graph1 -%%Creation Date: Tue, Jul 9, 1996 1:04 PM -%%DocumentFonts: (atend) -%%EndComments -0 263 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.75 15.00 53.75 216.00 MacLine -385.50 15.00 385.50 216.00 MacLine -1 ps -1.00 ps -389.00 15.50 385.50 15.50 MacLine -50.25 15.50 53.75 15.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -53.75 35.88 385.50 35.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 35.50 385.50 35.50 MacLine -46.75 35.50 53.75 35.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2.8) 21.00 40.38 22.25 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.75 56.00 385.50 56.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -389.00 55.50 385.50 55.50 MacLine -50.25 55.50 53.75 55.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -53.75 75.88 385.50 75.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 75.50 385.50 75.50 MacLine -46.75 75.50 53.75 75.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2.4) 21.00 80.38 22.25 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.75 96.00 385.50 96.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -389.00 95.50 385.50 95.50 MacLine -50.25 95.50 53.75 95.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -53.75 115.88 385.50 115.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 115.50 385.50 115.50 MacLine -46.75 115.50 53.75 115.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2.0) 21.00 120.38 22.25 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.75 136.00 385.50 136.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -389.00 135.50 385.50 135.50 MacLine -50.25 135.50 53.75 135.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -53.75 155.88 385.50 155.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 155.50 385.50 155.50 MacLine -46.75 155.50 53.75 155.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1.6) 21.00 160.38 22.25 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.75 176.00 385.50 176.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -389.00 175.50 385.50 175.50 MacLine -50.25 175.50 53.75 175.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -53.75 195.88 385.50 195.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 195.50 385.50 195.50 MacLine -46.75 195.50 53.75 195.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1.2) 21.00 200.38 22.25 WS -1.00 ps -389.00 215.50 385.50 215.50 MacLine -50.25 215.50 53.75 215.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -gsave 12.38 155.62 translate -90 rotate -(Current \(A\)) 0.00 0.00 79.25 WS -grestore -1.00 ps -53.75 217.00 385.50 217.00 MacLine -53.75 14.00 385.50 14.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -366.25 217.00 366.25 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -365.88 7.00 365.88 14.00 MacLine -365.88 224.00 365.88 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(120) 353.12 241.38 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -314.50 217.00 314.50 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -314.12 7.00 314.12 14.00 MacLine -314.12 224.00 314.12 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(100) 301.38 241.38 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -262.75 217.00 262.75 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -262.38 7.00 262.38 14.00 MacLine -262.38 224.00 262.38 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(80) 254.00 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -211.00 217.00 211.00 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -210.62 7.00 210.62 14.00 MacLine -210.62 224.00 210.62 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(60) 202.25 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -159.12 217.00 159.12 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -158.75 7.00 158.75 14.00 MacLine -158.75 224.00 158.75 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(40) 150.38 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -107.38 217.00 107.38 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -107.00 7.00 107.00 14.00 MacLine -107.00 224.00 107.00 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 98.62 241.38 17.75 WS -1.00 ps -55.25 7.00 55.25 14.00 MacLine -55.25 224.00 55.25 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 51.38 241.38 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 190.75 259.38 58.75 WS -1 0 0 SetFore UseFore -1.00 ps -newpath 55.75 116.00 M -58.25 104.88 L -60.88 94.00 L -63.50 83.25 L -66.00 73.00 L -68.62 63.25 L -71.25 54.12 L -73.75 45.88 L -76.38 38.38 L -79.00 31.88 L -81.62 26.38 L -84.12 22.00 L -86.75 18.75 L -89.38 16.75 L -91.88 16.00 L -94.50 16.50 L -97.12 18.12 L -99.75 21.00 L -102.25 25.12 L -104.88 30.25 L -107.50 36.50 L -110.00 43.62 L -112.62 51.75 L -115.25 60.75 L -117.88 70.25 L -120.38 80.38 L -123.00 91.00 L -125.62 101.88 L -128.12 113.00 L -130.75 124.00 L -133.38 135.00 L -136.00 145.75 L -138.50 156.25 L -141.12 166.12 L -143.75 175.38 L -146.25 184.00 L -148.88 191.62 L -151.50 198.50 L -154.12 204.25 L -156.62 208.88 L -159.25 212.38 L -161.88 214.75 L -164.38 215.88 L -167.00 215.75 L -169.62 214.38 L -172.12 211.88 L -174.75 208.12 L -177.38 203.25 L -180.00 197.38 L -182.50 190.38 L -185.12 182.50 L -187.75 173.75 L -190.25 164.38 L -192.88 154.38 L -195.50 143.88 L -198.12 133.12 L -200.62 122.12 L -203.25 111.00 L -205.88 100.00 L -208.38 89.12 L -211.00 78.62 L -213.62 68.50 L -216.25 59.12 L -218.75 50.25 L -221.38 42.38 L -224.00 35.25 L -226.50 29.25 L -229.12 24.25 L -231.75 20.38 L -234.38 17.75 L -236.88 16.25 L -239.50 16.12 L -242.12 17.12 L -244.62 19.25 L -247.25 22.75 L -249.88 27.25 L -252.50 33.00 L -255.00 39.62 L -257.62 47.25 L -260.25 55.75 L -262.75 65.00 L -265.38 74.75 L -268.00 85.12 L -270.62 95.88 L -273.12 106.88 L -275.75 118.00 L -278.38 129.00 L -280.88 139.88 L -283.50 150.50 L -286.12 160.75 L -288.62 170.38 L -291.25 179.38 L -293.88 187.50 L -296.50 194.88 L -299.00 201.12 L -301.62 206.50 L -304.25 210.62 L -306.75 213.62 L -309.38 215.38 L -312.00 216.00 L -314.62 215.38 L -317.12 213.38 L -319.75 210.38 L -322.38 206.12 L -324.88 200.75 L -327.50 194.25 L -330.12 186.88 L -332.75 178.62 L -335.25 169.62 L -337.88 160.00 L -340.50 149.75 L -343.00 139.12 L -345.62 128.12 L -348.25 117.12 L -350.88 106.00 L -353.38 95.00 L -356.00 84.25 L -358.62 74.00 L -361.12 64.25 L -363.75 55.00 L -366.38 46.62 L -369.00 39.00 L -371.50 32.50 L -374.12 26.88 L -376.75 22.38 L -379.25 19.12 L -381.88 16.88 L -384.25 16.12 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v2.gif deleted file mode 100755 index 277958a60..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v3.eps deleted file mode 100755 index 7339ba329..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v3.eps +++ /dev/null @@ -1,669 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 421 263 -%%Creator: Igor -%%Title: Graph2 -%%Creation Date: Tue, Jul 9, 1996 1:05 PM -%%DocumentFonts: (atend) -%%EndComments -0 263 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.75 15.00 53.75 216.00 MacLine -385.50 15.00 385.50 216.00 MacLine -1 ps -1.00 ps -389.00 15.50 385.50 15.50 MacLine -50.25 15.50 53.75 15.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -53.75 35.88 385.50 35.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 35.50 385.50 35.50 MacLine -46.75 35.50 53.75 35.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2.8) 21.00 40.38 22.25 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.75 56.00 385.50 56.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -389.00 55.50 385.50 55.50 MacLine -50.25 55.50 53.75 55.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -53.75 75.88 385.50 75.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 75.50 385.50 75.50 MacLine -46.75 75.50 53.75 75.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2.4) 21.00 80.38 22.25 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.75 96.00 385.50 96.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -389.00 95.50 385.50 95.50 MacLine -50.25 95.50 53.75 95.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -53.75 115.88 385.50 115.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 115.50 385.50 115.50 MacLine -46.75 115.50 53.75 115.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2.0) 21.00 120.38 22.25 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.75 136.00 385.50 136.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -389.00 135.50 385.50 135.50 MacLine -50.25 135.50 53.75 135.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -53.75 155.88 385.50 155.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 155.50 385.50 155.50 MacLine -46.75 155.50 53.75 155.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1.6) 21.00 160.38 22.25 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.75 176.00 385.50 176.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -389.00 175.50 385.50 175.50 MacLine -50.25 175.50 53.75 175.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -53.75 195.88 385.50 195.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 195.50 385.50 195.50 MacLine -46.75 195.50 53.75 195.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1.2) 21.00 200.38 22.25 WS -1.00 ps -389.00 215.50 385.50 215.50 MacLine -50.25 215.50 53.75 215.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -gsave 12.38 155.62 translate -90 rotate -(Current \(A\)) 0.00 0.00 79.25 WS -grestore -1.00 ps -53.75 217.00 385.50 217.00 MacLine -53.75 14.00 385.50 14.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -366.25 217.00 366.25 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -365.88 7.00 365.88 14.00 MacLine -365.88 224.00 365.88 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(120) 353.12 241.38 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -314.50 217.00 314.50 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -314.12 7.00 314.12 14.00 MacLine -314.12 224.00 314.12 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(100) 301.38 241.38 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -262.75 217.00 262.75 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -262.38 7.00 262.38 14.00 MacLine -262.38 224.00 262.38 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(80) 254.00 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -211.00 217.00 211.00 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -210.62 7.00 210.62 14.00 MacLine -210.62 224.00 210.62 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(60) 202.25 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -159.12 217.00 159.12 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -158.75 7.00 158.75 14.00 MacLine -158.75 224.00 158.75 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(40) 150.38 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -107.38 217.00 107.38 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -107.00 7.00 107.00 14.00 MacLine -107.00 224.00 107.00 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 98.62 241.38 17.75 WS -1.00 ps -55.25 7.00 55.25 14.00 MacLine -55.25 224.00 55.25 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 51.38 241.38 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 190.75 259.38 58.75 WS -1 0 0 SetFore UseFore -1.00 ps -newpath 55.75 116.00 M -58.25 103.50 L -60.88 91.25 L -63.50 79.38 L -66.00 68.12 L -68.62 57.50 L -71.25 47.88 L -73.75 39.25 L -76.38 31.88 L -79.00 25.75 L -81.62 21.12 L -84.12 17.88 L -86.75 16.25 L -89.38 16.12 L -91.88 17.62 L -94.50 20.62 L -97.12 25.12 L -99.75 31.00 L -102.25 38.25 L -104.88 46.62 L -107.50 56.12 L -110.00 66.62 L -112.62 77.88 L -115.25 89.62 L -117.88 101.88 L -120.38 114.38 L -123.00 126.88 L -125.62 139.12 L -128.12 151.00 L -130.75 162.50 L -133.38 173.12 L -136.00 182.88 L -138.50 191.62 L -141.12 199.25 L -143.75 205.50 L -146.25 210.38 L -148.88 213.75 L -151.50 215.62 L -154.12 215.88 L -156.62 214.62 L -159.25 211.88 L -161.88 207.62 L -164.38 201.88 L -167.00 194.88 L -169.62 186.50 L -172.12 177.12 L -174.75 166.75 L -177.38 155.62 L -180.00 143.88 L -182.50 131.75 L -185.12 119.25 L -187.75 106.88 L -190.25 94.50 L -192.88 82.50 L -195.50 71.00 L -198.12 60.25 L -200.62 50.25 L -203.25 41.38 L -205.88 33.75 L -208.38 27.25 L -211.00 22.25 L -213.62 18.62 L -216.25 16.50 L -218.75 16.00 L -221.38 17.12 L -224.00 19.62 L -226.50 23.75 L -229.12 29.25 L -231.75 36.12 L -234.38 44.25 L -236.88 53.50 L -239.50 63.75 L -242.12 74.75 L -244.62 86.50 L -247.25 98.62 L -249.88 111.00 L -252.50 123.50 L -255.00 135.88 L -257.62 147.88 L -260.25 159.50 L -262.75 170.38 L -265.38 180.38 L -268.00 189.50 L -270.62 197.38 L -273.12 204.00 L -275.75 209.25 L -278.38 213.00 L -280.88 215.25 L -283.50 216.00 L -286.12 215.12 L -288.62 212.75 L -291.25 208.88 L -293.88 203.50 L -296.50 196.88 L -299.00 188.88 L -301.62 179.75 L -304.25 169.62 L -306.75 158.75 L -309.38 147.12 L -312.00 135.00 L -314.62 122.62 L -317.12 110.12 L -319.75 97.75 L -322.38 85.62 L -324.88 74.00 L -327.50 63.00 L -330.12 52.88 L -332.75 43.62 L -335.25 35.62 L -337.88 28.88 L -340.50 23.38 L -343.00 19.38 L -345.62 17.00 L -348.25 16.00 L -350.88 16.62 L -353.38 18.75 L -356.00 22.50 L -358.62 27.62 L -361.12 34.25 L -363.75 42.00 L -366.38 51.00 L -369.00 61.00 L -371.50 71.75 L -374.12 83.38 L -376.75 95.38 L -379.25 107.75 L -381.88 120.12 L -384.25 131.38 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v3.gif deleted file mode 100755 index b3628e7c3..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v4.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v4.eps deleted file mode 100755 index 40a3f28a8..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v4.eps +++ /dev/null @@ -1,669 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 421 263 -%%Creator: Igor -%%Title: Graph3 -%%Creation Date: Tue, Jul 9, 1996 1:06 PM -%%DocumentFonts: (atend) -%%EndComments -0 263 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.75 15.00 53.75 216.00 MacLine -385.50 15.00 385.50 216.00 MacLine -1 ps -1.00 ps -389.00 15.50 385.50 15.50 MacLine -50.25 15.50 53.75 15.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -53.75 35.88 385.50 35.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 35.50 385.50 35.50 MacLine -46.75 35.50 53.75 35.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2.8) 21.00 40.38 22.25 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.75 56.00 385.50 56.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -389.00 55.50 385.50 55.50 MacLine -50.25 55.50 53.75 55.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -53.75 75.88 385.50 75.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 75.50 385.50 75.50 MacLine -46.75 75.50 53.75 75.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2.4) 21.00 80.38 22.25 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.75 96.00 385.50 96.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -389.00 95.50 385.50 95.50 MacLine -50.25 95.50 53.75 95.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -53.75 115.88 385.50 115.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 115.50 385.50 115.50 MacLine -46.75 115.50 53.75 115.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2.0) 21.00 120.38 22.25 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.75 136.00 385.50 136.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -389.00 135.50 385.50 135.50 MacLine -50.25 135.50 53.75 135.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -53.75 155.88 385.50 155.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 155.50 385.50 155.50 MacLine -46.75 155.50 53.75 155.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1.6) 21.00 160.38 22.25 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.75 176.00 385.50 176.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -389.00 175.50 385.50 175.50 MacLine -50.25 175.50 53.75 175.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -53.75 195.88 385.50 195.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 195.50 385.50 195.50 MacLine -46.75 195.50 53.75 195.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1.2) 21.00 200.38 22.25 WS -1.00 ps -389.00 215.50 385.50 215.50 MacLine -50.25 215.50 53.75 215.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -gsave 12.38 155.62 translate -90 rotate -(Current \(A\)) 0.00 0.00 79.25 WS -grestore -1.00 ps -53.75 217.00 385.50 217.00 MacLine -53.75 14.00 385.50 14.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -366.25 217.00 366.25 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -365.88 7.00 365.88 14.00 MacLine -365.88 224.00 365.88 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(120) 353.12 241.38 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -314.50 217.00 314.50 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -314.12 7.00 314.12 14.00 MacLine -314.12 224.00 314.12 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(100) 301.38 241.38 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -262.75 217.00 262.75 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -262.38 7.00 262.38 14.00 MacLine -262.38 224.00 262.38 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(80) 254.00 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -211.00 217.00 211.00 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -210.62 7.00 210.62 14.00 MacLine -210.62 224.00 210.62 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(60) 202.25 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -159.12 217.00 159.12 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -158.75 7.00 158.75 14.00 MacLine -158.75 224.00 158.75 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(40) 150.38 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -107.38 217.00 107.38 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -107.00 7.00 107.00 14.00 MacLine -107.00 224.00 107.00 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 98.62 241.38 17.75 WS -1.00 ps -55.25 7.00 55.25 14.00 MacLine -55.25 224.00 55.25 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 51.38 241.38 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 190.75 259.38 58.75 WS -1 0 0 SetFore UseFore -1.00 ps -newpath 55.75 116.00 M -58.25 101.75 L -60.88 87.88 L -63.50 74.50 L -66.00 61.88 L -68.62 50.50 L -71.25 40.38 L -73.75 31.88 L -76.38 25.00 L -79.00 20.00 L -81.62 17.00 L -84.12 16.00 L -86.75 17.00 L -89.38 20.12 L -91.88 25.12 L -94.50 32.00 L -97.12 40.50 L -99.75 50.62 L -102.25 62.00 L -104.88 74.62 L -107.50 88.00 L -110.00 101.88 L -112.62 116.12 L -115.25 130.38 L -117.88 144.25 L -120.38 157.62 L -123.00 170.12 L -125.62 181.62 L -128.12 191.62 L -130.75 200.25 L -133.38 207.00 L -136.00 212.00 L -138.50 215.00 L -141.12 216.00 L -143.75 215.00 L -146.25 211.88 L -148.88 206.88 L -151.50 200.00 L -154.12 191.38 L -156.62 181.25 L -159.25 169.88 L -161.88 157.25 L -164.38 143.88 L -167.00 130.00 L -169.62 115.75 L -172.12 101.50 L -174.75 87.62 L -177.38 74.25 L -180.00 61.75 L -182.50 50.25 L -185.12 40.25 L -187.75 31.75 L -190.25 24.88 L -192.88 20.00 L -195.50 17.00 L -198.12 16.00 L -200.62 17.12 L -203.25 20.12 L -205.88 25.12 L -208.38 32.12 L -211.00 40.62 L -213.62 50.75 L -216.25 62.25 L -218.75 74.75 L -221.38 88.25 L -224.00 102.12 L -226.50 116.38 L -229.12 130.62 L -231.75 144.50 L -234.38 157.88 L -236.88 170.38 L -239.50 181.75 L -242.12 191.88 L -244.62 200.38 L -247.25 207.12 L -249.88 212.12 L -252.50 215.00 L -255.00 216.00 L -257.62 214.88 L -260.25 211.75 L -262.75 206.75 L -265.38 199.88 L -268.00 191.25 L -270.62 181.12 L -273.12 169.62 L -275.75 157.12 L -278.38 143.62 L -280.88 129.75 L -283.50 115.50 L -286.12 101.25 L -288.62 87.38 L -291.25 74.00 L -293.88 61.50 L -296.50 50.12 L -299.00 40.12 L -301.62 31.62 L -304.25 24.88 L -306.75 19.88 L -309.38 17.00 L -312.00 16.00 L -314.62 17.12 L -317.12 20.25 L -319.75 25.25 L -322.38 32.25 L -324.88 40.88 L -327.50 51.00 L -330.12 62.50 L -332.75 75.00 L -335.25 88.38 L -337.88 102.38 L -340.50 116.62 L -343.00 130.88 L -345.62 144.75 L -348.25 158.12 L -350.88 170.62 L -353.38 182.00 L -356.00 192.00 L -358.62 200.50 L -361.12 207.25 L -363.75 212.12 L -366.38 215.12 L -369.00 216.00 L -371.50 214.88 L -374.12 211.75 L -376.75 206.62 L -379.25 199.75 L -381.88 191.12 L -384.25 181.88 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v4.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v4.gif deleted file mode 100755 index 9362d3e07..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v4.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v5.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v5.eps deleted file mode 100755 index cd69c810d..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v5.eps +++ /dev/null @@ -1,669 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 421 263 -%%Creator: Igor -%%Title: Graph4 -%%Creation Date: Tue, Jul 9, 1996 1:06 PM -%%DocumentFonts: (atend) -%%EndComments -0 263 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.75 15.00 53.75 216.00 MacLine -385.50 15.00 385.50 216.00 MacLine -1 ps -1.00 ps -389.00 15.50 385.50 15.50 MacLine -50.25 15.50 53.75 15.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -53.75 35.88 385.50 35.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 35.50 385.50 35.50 MacLine -46.75 35.50 53.75 35.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2.8) 21.00 40.38 22.25 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.75 56.00 385.50 56.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -389.00 55.50 385.50 55.50 MacLine -50.25 55.50 53.75 55.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -53.75 75.88 385.50 75.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 75.50 385.50 75.50 MacLine -46.75 75.50 53.75 75.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2.4) 21.00 80.38 22.25 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.75 96.00 385.50 96.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -389.00 95.50 385.50 95.50 MacLine -50.25 95.50 53.75 95.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -53.75 115.88 385.50 115.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 115.50 385.50 115.50 MacLine -46.75 115.50 53.75 115.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2.0) 21.00 120.38 22.25 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.75 136.00 385.50 136.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -389.00 135.50 385.50 135.50 MacLine -50.25 135.50 53.75 135.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -53.75 155.88 385.50 155.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 155.50 385.50 155.50 MacLine -46.75 155.50 53.75 155.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1.6) 21.00 160.38 22.25 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.75 176.00 385.50 176.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -389.00 175.50 385.50 175.50 MacLine -50.25 175.50 53.75 175.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -53.75 195.88 385.50 195.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 195.50 385.50 195.50 MacLine -46.75 195.50 53.75 195.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1.2) 21.00 200.38 22.25 WS -1.00 ps -389.00 215.50 385.50 215.50 MacLine -50.25 215.50 53.75 215.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -gsave 12.38 155.62 translate -90 rotate -(Current \(A\)) 0.00 0.00 79.25 WS -grestore -1.00 ps -53.75 217.00 385.50 217.00 MacLine -53.75 14.00 385.50 14.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -366.25 217.00 366.25 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -365.88 7.00 365.88 14.00 MacLine -365.88 224.00 365.88 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(120) 353.12 241.38 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -314.50 217.00 314.50 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -314.12 7.00 314.12 14.00 MacLine -314.12 224.00 314.12 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(100) 301.38 241.38 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -262.75 217.00 262.75 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -262.38 7.00 262.38 14.00 MacLine -262.38 224.00 262.38 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(80) 254.00 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -211.00 217.00 211.00 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -210.62 7.00 210.62 14.00 MacLine -210.62 224.00 210.62 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(60) 202.25 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -159.12 217.00 159.12 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -158.75 7.00 158.75 14.00 MacLine -158.75 224.00 158.75 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(40) 150.38 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -107.38 217.00 107.38 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -107.00 7.00 107.00 14.00 MacLine -107.00 224.00 107.00 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 98.62 241.38 17.75 WS -1.00 ps -55.25 7.00 55.25 14.00 MacLine -55.25 224.00 55.25 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 51.38 241.38 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 190.75 259.38 58.75 WS -1 0 0 SetFore UseFore -1.00 ps -newpath 55.75 116.00 M -58.25 99.38 L -60.88 83.25 L -63.50 68.00 L -66.00 54.12 L -68.62 42.00 L -71.25 31.88 L -73.75 24.00 L -76.38 18.75 L -79.00 16.25 L -81.62 16.50 L -84.12 19.38 L -86.75 25.00 L -89.38 33.25 L -91.88 43.62 L -94.50 56.12 L -97.12 70.25 L -99.75 85.62 L -102.25 101.88 L -104.88 118.50 L -107.50 135.00 L -110.00 151.00 L -112.62 166.12 L -115.25 179.75 L -117.88 191.62 L -120.38 201.50 L -123.00 208.88 L -125.62 213.75 L -128.12 215.88 L -130.75 215.25 L -133.38 211.88 L -136.00 205.88 L -138.50 197.38 L -141.12 186.50 L -143.75 173.75 L -146.25 159.50 L -148.88 143.88 L -151.50 127.62 L -154.12 111.00 L -156.62 94.50 L -159.25 78.62 L -161.88 63.75 L -164.38 50.25 L -167.00 38.75 L -169.62 29.25 L -172.12 22.25 L -174.75 17.75 L -177.38 16.00 L -180.00 17.00 L -182.50 20.88 L -185.12 27.25 L -187.75 36.12 L -190.25 47.25 L -192.88 60.25 L -195.50 74.75 L -198.12 90.50 L -200.62 106.88 L -203.25 123.50 L -205.88 139.88 L -208.38 155.75 L -211.00 170.38 L -213.62 183.50 L -216.25 194.88 L -218.75 204.00 L -221.38 210.62 L -224.00 214.62 L -226.50 216.00 L -229.12 214.50 L -231.75 210.38 L -234.38 203.50 L -236.88 194.25 L -239.50 182.88 L -242.12 169.62 L -244.62 154.88 L -247.25 139.12 L -249.88 122.62 L -252.50 106.00 L -255.00 89.62 L -257.62 74.00 L -260.25 59.50 L -262.75 46.62 L -265.38 35.62 L -268.00 26.88 L -270.62 20.62 L -273.12 16.88 L -275.75 16.00 L -278.38 17.88 L -280.88 22.50 L -283.50 29.75 L -286.12 39.25 L -288.62 51.00 L -291.25 64.50 L -293.88 79.38 L -296.50 95.38 L -299.00 111.88 L -301.62 128.50 L -304.25 144.75 L -306.75 160.25 L -309.38 174.50 L -312.00 187.12 L -314.62 197.88 L -317.12 206.25 L -319.75 212.12 L -322.38 215.38 L -324.88 215.88 L -327.50 213.50 L -330.12 208.50 L -332.75 201.00 L -335.25 191.12 L -337.88 179.12 L -340.50 165.38 L -343.00 150.25 L -345.62 134.12 L -348.25 117.62 L -350.88 101.00 L -353.38 84.88 L -356.00 69.50 L -358.62 55.50 L -361.12 43.12 L -363.75 32.75 L -366.38 24.75 L -369.00 19.25 L -371.50 16.38 L -374.12 16.38 L -376.75 19.00 L -379.25 24.38 L -381.88 32.38 L -384.25 41.50 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v5.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v5.gif deleted file mode 100755 index 3f7ecfcc6..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v5.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v6.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v6.eps deleted file mode 100755 index 07396fa59..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v6.eps +++ /dev/null @@ -1,669 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 421 263 -%%Creator: Igor -%%Title: Graph5 -%%Creation Date: Tue, Jul 9, 1996 1:07 PM -%%DocumentFonts: (atend) -%%EndComments -0 263 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.75 15.00 53.75 216.00 MacLine -385.50 15.00 385.50 216.00 MacLine -1 ps -1.00 ps -389.00 15.50 385.50 15.50 MacLine -50.25 15.50 53.75 15.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -53.75 35.88 385.50 35.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 35.50 385.50 35.50 MacLine -46.75 35.50 53.75 35.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2.8) 21.00 40.38 22.25 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.75 56.00 385.50 56.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -389.00 55.50 385.50 55.50 MacLine -50.25 55.50 53.75 55.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -53.75 75.88 385.50 75.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 75.50 385.50 75.50 MacLine -46.75 75.50 53.75 75.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2.4) 21.00 80.38 22.25 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.75 96.00 385.50 96.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -389.00 95.50 385.50 95.50 MacLine -50.25 95.50 53.75 95.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -53.75 115.88 385.50 115.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 115.50 385.50 115.50 MacLine -46.75 115.50 53.75 115.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2.0) 21.00 120.38 22.25 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.75 136.00 385.50 136.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -389.00 135.50 385.50 135.50 MacLine -50.25 135.50 53.75 135.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -53.75 155.88 385.50 155.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 155.50 385.50 155.50 MacLine -46.75 155.50 53.75 155.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1.6) 21.00 160.38 22.25 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.75 176.00 385.50 176.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -389.00 175.50 385.50 175.50 MacLine -50.25 175.50 53.75 175.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -53.75 195.88 385.50 195.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 195.50 385.50 195.50 MacLine -46.75 195.50 53.75 195.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1.2) 21.00 200.38 22.25 WS -1.00 ps -389.00 215.50 385.50 215.50 MacLine -50.25 215.50 53.75 215.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -gsave 12.38 155.62 translate -90 rotate -(Current \(A\)) 0.00 0.00 79.25 WS -grestore -1.00 ps -53.75 217.00 385.50 217.00 MacLine -53.75 14.00 385.50 14.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -366.25 217.00 366.25 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -365.88 7.00 365.88 14.00 MacLine -365.88 224.00 365.88 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(120) 353.12 241.38 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -314.50 217.00 314.50 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -314.12 7.00 314.12 14.00 MacLine -314.12 224.00 314.12 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(100) 301.38 241.38 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -262.75 217.00 262.75 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -262.38 7.00 262.38 14.00 MacLine -262.38 224.00 262.38 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(80) 254.00 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -211.00 217.00 211.00 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -210.62 7.00 210.62 14.00 MacLine -210.62 224.00 210.62 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(60) 202.25 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -159.12 217.00 159.12 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -158.75 7.00 158.75 14.00 MacLine -158.75 224.00 158.75 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(40) 150.38 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -107.38 217.00 107.38 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -107.00 7.00 107.00 14.00 MacLine -107.00 224.00 107.00 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 98.62 241.38 17.75 WS -1.00 ps -55.25 7.00 55.25 14.00 MacLine -55.25 224.00 55.25 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 51.38 241.38 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 190.75 259.38 58.75 WS -1 0 0 SetFore UseFore -1.00 ps -newpath 55.75 116.00 M -58.25 96.12 L -60.88 77.00 L -63.50 59.50 L -66.00 44.25 L -68.62 31.88 L -71.25 22.75 L -73.75 17.50 L -76.38 16.00 L -79.00 18.62 L -81.62 25.00 L -84.12 35.12 L -86.75 48.50 L -89.38 64.38 L -91.88 82.50 L -94.50 101.88 L -97.12 121.75 L -99.75 141.50 L -102.25 160.25 L -104.88 177.12 L -107.50 191.62 L -110.00 203.12 L -112.62 211.12 L -115.25 215.38 L -117.88 215.62 L -120.38 211.88 L -123.00 204.38 L -125.62 193.25 L -128.12 179.12 L -130.75 162.38 L -133.38 143.88 L -136.00 124.25 L -138.50 104.38 L -141.12 84.88 L -143.75 66.62 L -146.25 50.25 L -148.88 36.62 L -151.50 26.12 L -154.12 19.25 L -156.62 16.12 L -159.25 17.00 L -161.88 21.88 L -164.38 30.50 L -167.00 42.50 L -169.62 57.50 L -172.12 74.75 L -174.75 93.75 L -177.38 113.50 L -180.00 133.38 L -182.50 152.62 L -185.12 170.38 L -187.75 186.00 L -190.25 198.75 L -192.88 208.25 L -195.50 214.12 L -198.12 216.00 L -200.62 213.88 L -203.25 207.88 L -205.88 198.25 L -208.38 185.38 L -211.00 169.62 L -213.62 151.88 L -216.25 132.50 L -218.75 112.62 L -221.38 92.88 L -224.00 74.00 L -226.50 56.75 L -229.12 42.00 L -231.75 30.12 L -234.38 21.62 L -236.88 16.88 L -239.50 16.25 L -242.12 19.38 L -244.62 26.50 L -247.25 37.12 L -249.88 51.00 L -252.50 67.38 L -255.00 85.62 L -257.62 105.25 L -260.25 125.12 L -262.75 144.75 L -265.38 163.25 L -268.00 179.75 L -270.62 193.88 L -273.12 204.75 L -275.75 212.12 L -278.38 215.62 L -280.88 215.25 L -283.50 210.88 L -286.12 202.75 L -288.62 191.12 L -291.25 176.50 L -293.88 159.38 L -296.50 140.62 L -299.00 120.88 L -301.62 101.00 L -304.25 81.62 L -306.75 63.62 L -309.38 47.75 L -312.00 34.62 L -314.62 24.75 L -317.12 18.38 L -319.75 16.00 L -322.38 17.62 L -324.88 23.12 L -327.50 32.38 L -330.12 44.88 L -332.75 60.25 L -335.25 77.88 L -337.88 97.00 L -340.50 116.88 L -343.00 136.75 L -345.62 155.75 L -348.25 173.12 L -350.88 188.38 L -353.38 200.62 L -356.00 209.50 L -358.62 214.62 L -361.12 215.88 L -363.75 213.12 L -366.38 206.50 L -369.00 196.38 L -371.50 182.88 L -374.12 166.75 L -376.75 148.62 L -379.25 129.25 L -381.88 109.25 L -384.25 91.50 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v6.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v6.gif deleted file mode 100755 index 8e7d73b93..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v6.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v7.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v7.eps deleted file mode 100755 index 822f055e8..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v7.eps +++ /dev/null @@ -1,669 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 421 263 -%%Creator: Igor -%%Title: Graph6 -%%Creation Date: Tue, Jul 9, 1996 1:07 PM -%%DocumentFonts: (atend) -%%EndComments -0 263 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -53.75 15.00 53.75 216.00 MacLine -385.50 15.00 385.50 216.00 MacLine -1 ps -1.00 ps -389.00 15.38 385.50 15.38 MacLine -50.25 15.38 53.75 15.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -53.75 35.75 385.50 35.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 35.38 385.50 35.38 MacLine -46.75 35.38 53.75 35.38 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2.8) 21.00 40.25 22.25 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.75 55.88 385.50 55.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -389.00 55.38 385.50 55.38 MacLine -50.25 55.38 53.75 55.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -53.75 75.75 385.50 75.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 75.38 385.50 75.38 MacLine -46.75 75.38 53.75 75.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2.4) 21.00 80.25 22.25 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.75 95.88 385.50 95.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -389.00 95.38 385.50 95.38 MacLine -50.25 95.38 53.75 95.38 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -53.75 115.88 385.50 115.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 115.50 385.50 115.50 MacLine -46.75 115.50 53.75 115.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2.0) 21.00 120.38 22.25 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.75 136.00 385.50 136.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -389.00 135.50 385.50 135.50 MacLine -50.25 135.50 53.75 135.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -53.75 155.88 385.50 155.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 155.50 385.50 155.50 MacLine -46.75 155.50 53.75 155.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1.6) 21.00 160.38 22.25 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.125 ps [1] sd -53.75 176.00 385.50 176.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -389.00 175.50 385.50 175.50 MacLine -50.25 175.50 53.75 175.50 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -53.75 195.88 385.50 195.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 195.50 385.50 195.50 MacLine -46.75 195.50 53.75 195.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1.2) 21.00 200.38 22.25 WS -1.00 ps -389.00 215.50 385.50 215.50 MacLine -50.25 215.50 53.75 215.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -gsave 12.38 155.62 translate -90 rotate -(Current \(A\)) 0.00 0.00 79.25 WS -grestore -1.00 ps -53.75 217.00 385.50 217.00 MacLine -53.75 14.00 385.50 14.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -366.25 217.00 366.25 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -365.88 7.00 365.88 14.00 MacLine -365.88 224.00 365.88 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(120) 353.12 241.38 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -314.50 217.00 314.50 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -314.12 7.00 314.12 14.00 MacLine -314.12 224.00 314.12 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(100) 301.38 241.38 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -262.75 217.00 262.75 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -262.38 7.00 262.38 14.00 MacLine -262.38 224.00 262.38 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(80) 254.00 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -211.00 217.00 211.00 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -210.62 7.00 210.62 14.00 MacLine -210.62 224.00 210.62 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(60) 202.25 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -159.12 217.00 159.12 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -158.75 7.00 158.75 14.00 MacLine -158.75 224.00 158.75 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(40) 150.38 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -107.38 217.00 107.38 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -107.00 7.00 107.00 14.00 MacLine -107.00 224.00 107.00 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 98.62 241.38 17.75 WS -1.00 ps -55.25 7.00 55.25 14.00 MacLine -55.25 224.00 55.25 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 51.38 241.38 8.88 WS -16.00 (_Helvetica) 0 F -(Time \(s\)) 190.75 259.38 58.75 WS -1 0 0 SetFore UseFore -1.00 ps -newpath 55.75 116.00 M -58.25 91.25 L -60.88 68.00 L -63.50 47.75 L -66.00 31.75 L -68.62 21.00 L -71.25 16.12 L -73.75 17.50 L -76.38 25.00 L -79.00 38.12 L -81.62 56.12 L -84.12 77.75 L -86.75 101.88 L -89.38 126.75 L -91.88 151.00 L -94.50 173.12 L -97.12 191.62 L -99.75 205.50 L -102.25 213.75 L -104.88 215.88 L -107.50 211.88 L -110.00 201.88 L -112.62 186.50 L -115.25 166.75 L -117.88 143.88 L -120.38 119.25 L -123.00 94.50 L -125.62 70.88 L -128.12 50.25 L -130.75 33.62 L -133.38 22.12 L -136.00 16.50 L -138.50 17.00 L -141.12 23.62 L -143.75 36.12 L -146.25 53.50 L -148.88 74.75 L -151.50 98.62 L -154.12 123.50 L -156.62 147.88 L -159.25 170.38 L -161.88 189.38 L -164.38 204.00 L -167.00 213.00 L -169.62 216.00 L -172.12 212.75 L -174.75 203.50 L -177.38 188.88 L -180.00 169.62 L -182.50 147.00 L -185.12 122.62 L -187.75 97.75 L -190.25 73.88 L -192.88 52.75 L -195.50 35.50 L -198.12 23.25 L -200.62 16.88 L -203.25 16.50 L -205.88 22.38 L -208.38 34.12 L -211.00 50.88 L -213.62 71.75 L -216.25 95.25 L -218.75 120.12 L -221.38 144.75 L -224.00 167.50 L -226.50 187.12 L -229.12 202.38 L -231.75 212.12 L -234.38 216.00 L -236.88 213.50 L -239.50 205.12 L -242.12 191.12 L -244.62 172.38 L -247.25 150.25 L -249.88 125.88 L -252.50 101.00 L -255.00 77.00 L -257.62 55.38 L -260.25 37.50 L -262.75 24.62 L -265.38 17.38 L -268.00 16.25 L -270.62 21.25 L -273.12 32.25 L -275.75 48.38 L -278.38 68.75 L -280.88 92.12 L -283.50 116.88 L -286.12 141.50 L -288.62 164.62 L -291.25 184.75 L -293.88 200.62 L -296.50 211.12 L -299.00 215.75 L -301.62 214.25 L -304.25 206.50 L -306.75 193.25 L -309.38 175.12 L -312.00 153.25 L -314.62 129.12 L -317.12 104.25 L -319.75 80.00 L -322.38 58.00 L -324.88 39.62 L -327.50 26.00 L -330.12 18.00 L -332.75 16.00 L -335.25 20.25 L -337.88 30.50 L -340.50 46.00 L -343.00 65.88 L -345.62 88.88 L -348.25 113.50 L -350.88 138.38 L -353.38 161.75 L -356.00 182.38 L -358.62 198.75 L -361.12 210.12 L -363.75 215.50 L -366.38 214.75 L -369.00 207.88 L -371.50 195.25 L -374.12 177.75 L -376.75 156.38 L -379.25 132.50 L -381.88 107.50 L -384.25 85.50 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v7.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v7.gif deleted file mode 100755 index 8fb83714c..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob01v7.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob03.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob03.eps deleted file mode 100755 index 692f0c6b7..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob03.eps +++ /dev/null @@ -1,383 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: prob5703.eps -%%CreationDate: 7/23/1996 -%%Pages: 0 -%%DocumentFonts: Helvetica -%%BoundingBox:77 462 323 633 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica/Helvetica 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -3142 4106 3177 4071 3229 4002 3246 3950 3281 3898 3316 3846 3350 3811 3368 3759 -3402 3724 3437 3672 3489 3602 3524 3568 3559 3533 3611 3498 3663 3481 3732 3481 -3784 3498 3854 3498 3923 3516 3993 3533 4062 3551 4114 3568 4166 3585 4236 3585 -4305 3585 4375 3585 4444 3585 4496 3568 4548 3551 4600 3533 4670 3533 4722 3516 -4774 3481 4826 3464 4878 3446 4913 3411 4965 3394 5000 3360 5052 3325 5104 3290 -5156 3255 5191 3221 5243 3203 5295 3186 5364 3186 44 P -1 sg fill -gr -gs -3125 4089 3160 4054 3212 3985 3229 3933 3264 3881 3299 3829 3333 3794 3351 3742 -3385 3707 3420 3655 3472 3585 3507 3551 3542 3516 3594 3481 3646 3464 3715 3464 -3767 3481 3837 3481 3906 3499 3976 3516 4045 3534 4097 3551 4149 3568 4219 3568 -4288 3568 4358 3568 4427 3568 4479 3551 4531 3534 4583 3516 4653 3516 4705 3499 -4757 3464 4809 3447 4861 3429 4896 3394 4948 3377 4983 3343 5035 3308 5087 3273 -5139 3238 5174 3204 5226 3186 5278 3169 5347 3169 44 P -35 slw 0 sg str -gr -gs -1579.5 4106.5 m -3142.5 4106.5 L -35 slw 0 sg str -gr -gs -3142 4106 3194 4123 3229 4158 3246 4210 3281 4245 3316 4280 3350 4332 3368 4384 -3420 4436 3454 4471 3489 4505 3541 4575 3611 4644 3715 4731 3784 4801 3854 4835 -3906 4870 4010 4922 4097 4939 4166 4957 4236 4957 4288 4974 4375 4974 4444 4974 -4513 4974 4566 4991 4618 5009 4670 5026 4722 5043 4757 5078 4791 5113 4843 5165 -4896 5200 4930 5235 4982 5252 5034 5304 5087 5321 36 P -1 sg fill -gr -gs -3125 4089 3177 4106 3212 4141 3229 4193 3264 4228 3299 4263 3333 4315 3351 4367 -3403 4419 3437 4454 3472 4488 3524 4558 3594 4627 3698 4714 3767 4784 3837 4818 -3889 4853 3993 4905 4080 4922 4149 4940 4219 4940 4271 4957 4358 4957 4427 4957 -4496 4957 4549 4974 4601 4992 4653 5009 4705 5026 4740 5061 4774 5096 4826 5148 -4879 5183 4913 5218 4965 5235 5017 5287 5070 5304 36 P -35 slw 0 sg str -gr -gs -2413 3637 2621 3932 R -1 sg fill -gr -/_Helvetica ff [278 0 0 -278 0 0] mf sf -2413 3845 m 0 sg (i2) show -gs -3394 3967 3533 4262 R -1 sg fill -gr -3394 4175 m 2.78 slw 0 sg (a) show -gs -4444 3021 4652 3316 R -1 sg fill -gr -4444 3229 m 2.78 slw 0 sg (i1) show -gs -3975 5208 4184 5503 R -1 sg fill -gr -3975 5416 m 2.78 slw 0 sg (i3) show -gs -2712.5 3950.5 m -2869.5 4106.5 L -35 slw 0 sg str -gr -gs -2673.5 4262.5 m -2829.5 4106.5 L -35 slw 0 sg str -gr -gs -3980.5 4731.5 m -4136.5 4887.5 L -35 slw 0 sg str -gr -gs -3941.5 5043.5 m -4097.5 4887.5 L -35 slw 0 sg str -gr -gs -4379.5 3412.5 m -4253.5 3568.5 L -35 slw strokepath 0 0 0 1 1 1 [247 189 255 111 251 191 239 254] patfill -gr -gs -4410.5 3724.5 m -4285.5 3568.5 L -35 slw strokepath 0 0 0 1 1 1 [247 189 255 111 251 191 239 254] patfill -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob03.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob03.gif deleted file mode 100755 index 09710ee08..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob03.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob09.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob09.eps deleted file mode 100755 index a002f64ca..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob09.eps +++ /dev/null @@ -1,413 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q5.draw -- /teacher/Apps/Drawfiles/phys121a/set10 -%%Creator: Draw -%%CreationDate: Wed Jun 7 07:59:38 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 60 357 367 652 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -60 357 307 295 rectclip -0 0 1.27907 setup -0 0 1.27907 setup -0 nxsetgray -38 60 170 550 oval matrix defaultmatrix setmatrix stroke -grestore -0 0 1.27907 setup -0 nxsetgray -38 60 321 550 oval matrix defaultmatrix setmatrix stroke -grestore -0 0 0 setup -1 nxsetgray -294 499 45 146 rectfill -1 nxsetgray -294 499 45 146 rectstroke -grestore -1 1 1.27907 setup -0 nxsetgray -152 0 189 610 line -grestore -1 1 1.27907 setup -0 nxsetgray -152 0 188 550 line -grestore -grestore -0 0 1.27907 setup -0 0 1.27907 setup -0 nxsetgray -38 60 171 415 oval matrix defaultmatrix setmatrix stroke -grestore -0 0 1.27907 setup -0 nxsetgray -38 60 322 415 oval matrix defaultmatrix setmatrix stroke -grestore -0 0 0 setup -1 nxsetgray -295 364 45 146 rectfill -1 nxsetgray -295 364 45 146 rectstroke -grestore -1 1 1.27907 setup -0 nxsetgray -152 0 190 475 line -grestore -1 1 1.27907 setup -0 nxsetgray -152 0 189 415 line -grestore -grestore -0 0 0.581395 setup -0 nxsetgray -0 -18 187 598 line -grestore -0 0 0.581395 setup -0 nxsetgray -16 -19 187 580 line -grestore -0 0 0.581395 setup -0 nxsetgray -13 -22 190 446 line -grestore -0 0 2.906977 setup -0 nxsetgray -45 0 142 598 line -180 142 598 arrow -grestore -0 0 2.906977 setup -0 nxsetgray -72 0 116 581 line -180 116 581 arrow -grestore -0 0 2.906977 setup -0 nxsetgray -84 0 106 446 line -180 106 446 arrow -grestore -0 0 2.906977 setup -0 nxsetgray -83 -1 106 474 line -179.309708 106 474 arrow -grestore -0 0 2.906977 setup -gsave -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -105 -exch -defineuserobject -105 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1248] concat -105 execuserobject setfont -0 nxsetgray -242 629 moveto (WIRE 1) show -grestore -grestore -0 0 2.906977 setup -gsave -105 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 978] concat -105 execuserobject setfont -0 nxsetgray -244 494 moveto (WIRE 2) show -grestore -grestore -0 0 2.906977 setup -gsave -105 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1180] concat -105 execuserobject setfont -0 nxsetgray -189 595 moveto (r) show -grestore -grestore -0 0 2.906977 setup -gsave -105 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 856] concat -105 execuserobject setfont -0 nxsetgray -184 433 moveto (R) show -grestore -grestore -0 0 2.906977 setup -gsave -105 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 887] concat -105 execuserobject setfont -0 nxsetgray -84 446 moveto (fv) show -0 5 rmoveto -(0) show -0 -5 rmoveto -grestore -grestore -0 0 2.906977 setup -gsave -105 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1157] concat -105 execuserobject setfont -0 nxsetgray -94 581 moveto (v) show -0 5 rmoveto -(0) show -0 -5 rmoveto -grestore -grestore -0 0 2.906977 setup -gsave -105 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1199] concat -105 execuserobject setfont -0 nxsetgray -78 602 moveto (v) show -0 5 rmoveto -(0) show -0 -5 rmoveto -(\(1-r/R\)) show -grestore -grestore -0 0 2.906977 setup -gsave -105 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 945] concat -105 execuserobject setfont -0 nxsetgray -82 475 moveto (fv) show -0 5 rmoveto -(0) show -0 -5 rmoveto -grestore -grestore -0 0 2.906977 setup -gsave -105 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1126] concat -105 execuserobject setfont -0 nxsetgray -182 568 moveto (R) show -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob09.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob09.gif deleted file mode 100755 index b56267c48..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype57/prob09.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v1.eps deleted file mode 100755 index 06009e897..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v1.eps +++ /dev/null @@ -1,646 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 421 263 -%%Creator: Igor -%%Title: Graph9 -%%Creation Date: Thu, Jul 11, 1996 12:39 PM -%%DocumentFonts: (atend) -%%EndComments -0 263 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -98.12 15.00 98.12 216.00 MacLine -385.50 15.00 385.50 216.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -98.12 26.88 385.50 26.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 26.50 385.50 26.50 MacLine -91.12 26.50 98.12 26.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(120x10) 24.50 31.38 52.38 WS -11.25 (_Helvetica) 0 F -(6) 76.88 23.00 6.25 WS -16.00 (_Helvetica) 0 F -( ) 83.12 31.38 4.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -98.12 58.38 385.50 58.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 58.00 385.50 58.00 MacLine -91.12 58.00 98.12 58.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(100) 61.00 62.88 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -98.12 89.88 385.50 89.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 89.50 385.50 89.50 MacLine -91.12 89.50 98.12 89.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(80) 69.88 94.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -98.12 121.38 385.50 121.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 121.00 385.50 121.00 MacLine -91.12 121.00 98.12 121.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(60) 69.88 125.88 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -98.12 152.88 385.50 152.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 152.50 385.50 152.50 MacLine -91.12 152.50 98.12 152.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(40) 69.88 157.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -98.12 184.38 385.50 184.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 184.00 385.50 184.00 MacLine -91.12 184.00 98.12 184.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 69.88 188.88 17.75 WS -1.00 ps -392.50 215.50 385.50 215.50 MacLine -91.12 215.50 98.12 215.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 78.75 220.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 156.00 translate -90 rotate -(Voltage \(V\)) 0.00 0.00 80.00 WS -grestore -1.00 ps -98.12 217.00 385.50 217.00 MacLine -98.12 14.00 385.50 14.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -368.75 217.00 368.75 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -368.38 7.00 368.38 14.00 MacLine -368.38 224.00 368.38 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(120) 355.62 241.38 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -323.88 217.00 323.88 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -323.50 7.00 323.50 14.00 MacLine -323.50 224.00 323.50 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(100) 310.75 241.38 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -279.12 217.00 279.12 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -278.75 7.00 278.75 14.00 MacLine -278.75 224.00 278.75 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(80) 270.38 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -234.38 217.00 234.38 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -234.00 7.00 234.00 14.00 MacLine -234.00 224.00 234.00 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(60) 225.62 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -189.62 217.00 189.62 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -189.25 7.00 189.25 14.00 MacLine -189.25 224.00 189.25 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(40) 180.88 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -144.75 217.00 144.75 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -144.38 7.00 144.38 14.00 MacLine -144.38 224.00 144.38 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 136.00 241.38 17.75 WS -1.00 ps -99.62 7.00 99.62 14.00 MacLine -99.62 224.00 99.62 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 95.75 241.38 8.88 WS -16.00 (_Helvetica) 0 F -(Current \(Amps\)) 187.50 259.38 109.50 WS -1 0 0 SetFore UseFore -1.00 ps -newpath 100.12 216.00 M -102.25 214.38 L -104.50 212.88 L -106.75 211.25 L -109.00 209.62 L -111.25 208.12 L -113.50 206.50 L -115.75 205.00 L -118.00 203.38 L -120.25 201.88 L -122.50 200.25 L -124.75 198.62 L -126.88 197.12 L -129.12 195.50 L -131.38 193.88 L -133.62 192.38 L -135.88 190.75 L -138.12 189.25 L -140.38 187.62 L -142.62 186.12 L -144.88 184.50 L -147.12 182.88 L -149.38 181.38 L -151.62 179.75 L -153.75 178.12 L -156.00 176.62 L -158.25 175.00 L -160.50 173.50 L -162.75 171.88 L -165.00 170.38 L -167.25 168.75 L -169.50 167.12 L -171.75 165.62 L -174.00 164.00 L -176.25 162.38 L -178.38 160.88 L -180.62 159.25 L -182.88 157.75 L -185.12 156.12 L -187.38 154.62 L -189.62 153.00 L -191.88 151.38 L -194.12 149.88 L -196.38 148.25 L -198.62 146.75 L -200.88 145.12 L -203.12 143.50 L -205.25 142.00 L -207.50 140.38 L -209.75 138.88 L -212.00 137.25 L -214.25 135.62 L -216.50 134.12 L -218.75 132.50 L -221.00 131.00 L -223.25 129.38 L -225.50 127.75 L -227.75 126.25 L -230.00 124.62 L -232.12 123.12 L -234.38 121.50 L -236.62 119.88 L -238.88 118.38 L -241.12 116.75 L -243.38 115.25 L -245.62 113.62 L -247.88 112.12 L -250.12 110.50 L -252.38 108.88 L -254.62 107.38 L -256.75 105.75 L -259.00 104.25 L -261.25 102.62 L -263.50 101.00 L -265.75 99.50 L -268.00 97.88 L -270.25 96.38 L -272.50 94.75 L -274.75 93.12 L -277.00 91.62 L -279.25 90.00 L -281.50 88.50 L -283.62 86.88 L -285.88 85.25 L -288.12 83.75 L -290.38 82.12 L -292.62 80.62 L -294.88 79.00 L -297.12 77.38 L -299.38 75.88 L -301.62 74.25 L -303.88 72.75 L -306.12 71.12 L -308.38 69.62 L -310.50 68.00 L -312.75 66.38 L -315.00 64.88 L -317.25 63.25 L -319.50 61.62 L -321.75 60.12 L -324.00 58.50 L -326.25 57.00 L -328.50 55.38 L -330.75 53.88 L -333.00 52.25 L -335.12 50.62 L -337.38 49.12 L -339.62 47.50 L -341.88 45.88 L -344.12 44.38 L -346.38 42.75 L -348.62 41.25 L -350.88 39.62 L -353.12 38.12 L -355.38 36.50 L -357.62 34.88 L -359.88 33.38 L -362.00 31.75 L -364.25 30.12 L -366.50 28.62 L -368.75 27.00 L -371.00 25.50 L -373.25 23.88 L -375.50 22.38 L -377.75 20.75 L -380.00 19.12 L -382.25 17.62 L -384.25 16.25 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v1.gif deleted file mode 100755 index a9ae822ad..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v10.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v10.eps deleted file mode 100755 index 362bd9559..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v10.eps +++ /dev/null @@ -1,657 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 421 263 -%%Creator: Igor -%%Title: Graph6 -%%Creation Date: Thu, Jul 11, 1996 12:36 PM -%%DocumentFonts: (atend) -%%EndComments -0 263 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -80.38 15.00 80.38 216.00 MacLine -385.50 15.00 385.50 216.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -80.38 19.00 385.50 19.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 18.62 385.50 18.62 MacLine -73.38 18.62 80.38 18.62 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(7x10) 24.50 23.50 34.62 WS -11.25 (_Helvetica) 0 F -(6) 59.12 15.12 6.25 WS -16.00 (_Helvetica) 0 F -( ) 65.38 23.50 4.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -80.38 47.12 385.50 47.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 46.75 385.50 46.75 MacLine -73.38 46.75 80.38 46.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 61.00 51.62 8.88 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -80.38 75.25 385.50 75.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 74.88 385.50 74.88 MacLine -73.38 74.88 80.38 74.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 61.00 79.75 8.88 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -80.38 103.38 385.50 103.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 103.00 385.50 103.00 MacLine -73.38 103.00 80.38 103.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 61.00 107.88 8.88 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -80.38 131.50 385.50 131.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 131.12 385.50 131.12 MacLine -73.38 131.12 80.38 131.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(3) 61.00 136.00 8.88 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -80.38 159.62 385.50 159.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 159.25 385.50 159.25 MacLine -73.38 159.25 80.38 159.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 61.00 164.12 8.88 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -80.38 187.75 385.50 187.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 187.38 385.50 187.38 MacLine -73.38 187.38 80.38 187.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1) 61.00 192.25 8.88 WS -1.00 ps -392.50 215.50 385.50 215.50 MacLine -73.38 215.50 80.38 215.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 61.00 220.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 29.38 159.00 translate -90 rotate -(Voltage \(V\)) 0.00 0.00 80.00 WS -grestore -1.00 ps -80.38 217.00 385.50 217.00 MacLine -80.38 14.00 385.50 14.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -367.75 217.00 367.75 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -367.38 7.00 367.38 14.00 MacLine -367.38 224.00 367.38 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(120) 354.62 241.38 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -320.12 217.00 320.12 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -319.75 7.00 319.75 14.00 MacLine -319.75 224.00 319.75 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(100) 307.00 241.38 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -272.62 217.00 272.62 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -272.25 7.00 272.25 14.00 MacLine -272.25 224.00 272.25 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(80) 263.88 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -225.00 217.00 225.00 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -224.62 7.00 224.62 14.00 MacLine -224.62 224.00 224.62 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(60) 216.25 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -177.38 217.00 177.38 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -177.00 7.00 177.00 14.00 MacLine -177.00 224.00 177.00 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(40) 168.62 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -129.88 217.00 129.88 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -129.50 7.00 129.50 14.00 MacLine -129.50 224.00 129.50 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 121.12 241.38 17.75 WS -1.00 ps -81.88 7.00 81.88 14.00 MacLine -81.88 224.00 81.88 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 78.00 241.38 8.88 WS -16.00 (_Helvetica) 0 F -(Current \(Amps\)) 178.62 259.38 109.50 WS -1 0 0 SetFore UseFore -1.00 ps -newpath 82.38 216.00 M -84.75 214.38 L -87.12 212.88 L -89.50 211.25 L -91.88 209.62 L -94.25 208.12 L -96.62 206.50 L -99.00 205.00 L -101.38 203.38 L -103.75 201.88 L -106.12 200.25 L -108.50 198.62 L -110.88 197.12 L -113.25 195.50 L -115.62 193.88 L -118.00 192.38 L -120.38 190.75 L -122.75 189.25 L -125.12 187.62 L -127.50 186.12 L -129.88 184.50 L -132.25 182.88 L -134.62 181.38 L -137.00 179.75 L -139.38 178.12 L -141.75 176.62 L -144.12 175.00 L -146.50 173.50 L -148.88 171.88 L -151.25 170.38 L -153.62 168.75 L -156.00 167.12 L -158.50 165.62 L -160.88 164.00 L -163.25 162.38 L -165.62 160.88 L -168.00 159.25 L -170.38 157.75 L -172.75 156.12 L -175.12 154.62 L -177.50 153.00 L -179.88 151.38 L -182.25 149.88 L -184.62 148.25 L -187.00 146.75 L -189.38 145.12 L -191.75 143.50 L -194.12 142.00 L -196.50 140.38 L -198.88 138.88 L -201.25 137.25 L -203.62 135.62 L -206.00 134.12 L -208.38 132.50 L -210.75 131.00 L -213.12 129.38 L -215.50 127.75 L -217.88 126.25 L -220.25 124.62 L -222.62 123.12 L -225.00 121.50 L -227.38 119.88 L -229.75 118.38 L -232.12 116.75 L -234.62 115.25 L -237.00 113.62 L -239.38 112.12 L -241.75 110.50 L -244.12 108.88 L -246.50 107.38 L -248.88 105.75 L -251.25 104.25 L -253.62 102.62 L -256.00 101.00 L -258.38 99.50 L -260.75 97.88 L -263.12 96.38 L -265.50 94.75 L -267.88 93.12 L -270.25 91.62 L -272.62 90.00 L -275.00 88.50 L -277.38 86.88 L -279.75 85.25 L -282.12 83.75 L -284.50 82.12 L -286.88 80.62 L -289.25 79.00 L -291.62 77.38 L -294.00 75.88 L -296.38 74.25 L -298.75 72.75 L -301.12 71.12 L -303.50 69.62 L -305.88 68.00 L -308.25 66.38 L -310.75 64.88 L -313.12 63.25 L -315.50 61.62 L -317.88 60.12 L -320.25 58.50 L -322.62 57.00 L -325.00 55.38 L -327.38 53.88 L -329.75 52.25 L -332.12 50.62 L -334.50 49.12 L -336.88 47.50 L -339.25 45.88 L -341.62 44.38 L -344.00 42.75 L -346.38 41.25 L -348.75 39.62 L -351.12 38.12 L -353.50 36.50 L -355.88 34.88 L -358.25 33.38 L -360.62 31.75 L -363.00 30.12 L -365.38 28.62 L -367.75 27.00 L -370.12 25.50 L -372.50 23.88 L -374.88 22.38 L -377.25 20.75 L -379.62 19.12 L -382.00 17.62 L -384.25 16.12 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v10.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v10.gif deleted file mode 100755 index 16a00e984..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v10.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v2.eps deleted file mode 100755 index ee6b3b9e5..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v2.eps +++ /dev/null @@ -1,646 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 421 263 -%%Creator: Igor -%%Title: Graph7 -%%Creation Date: Thu, Jul 11, 1996 12:35 PM -%%DocumentFonts: (atend) -%%EndComments -0 263 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -89.25 15.00 89.25 216.00 MacLine -385.50 15.00 385.50 216.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -89.25 26.88 385.50 26.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 26.50 385.50 26.50 MacLine -82.25 26.50 89.25 26.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(12x10) 24.50 31.38 43.50 WS -11.25 (_Helvetica) 0 F -(6) 68.00 23.00 6.25 WS -16.00 (_Helvetica) 0 F -( ) 74.25 31.38 4.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -89.25 58.38 385.50 58.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 58.00 385.50 58.00 MacLine -82.25 58.00 89.25 58.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 61.00 62.88 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -89.25 89.88 385.50 89.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 89.50 385.50 89.50 MacLine -82.25 89.50 89.25 89.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 69.88 94.38 8.88 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -89.25 121.38 385.50 121.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 121.00 385.50 121.00 MacLine -82.25 121.00 89.25 121.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 69.88 125.88 8.88 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -89.25 152.88 385.50 152.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 152.50 385.50 152.50 MacLine -82.25 152.50 89.25 152.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 69.88 157.38 8.88 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -89.25 184.38 385.50 184.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 184.00 385.50 184.00 MacLine -82.25 184.00 89.25 184.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 69.88 188.88 8.88 WS -1.00 ps -392.50 215.50 385.50 215.50 MacLine -82.25 215.50 89.25 215.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 69.88 220.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 26.38 157.00 translate -90 rotate -(Voltage \(V\)) 0.00 0.00 80.00 WS -grestore -1.00 ps -89.25 217.00 385.50 217.00 MacLine -89.25 14.00 385.50 14.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -368.25 217.00 368.25 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -367.88 7.00 367.88 14.00 MacLine -367.88 224.00 367.88 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(120) 355.12 241.38 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -322.00 217.00 322.00 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -321.62 7.00 321.62 14.00 MacLine -321.62 224.00 321.62 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(100) 308.88 241.38 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -275.88 217.00 275.88 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -275.50 7.00 275.50 14.00 MacLine -275.50 224.00 275.50 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(80) 267.12 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -229.62 217.00 229.62 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -229.25 7.00 229.25 14.00 MacLine -229.25 224.00 229.25 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(60) 220.88 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -183.50 217.00 183.50 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -183.12 7.00 183.12 14.00 MacLine -183.12 224.00 183.12 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(40) 174.75 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -137.25 217.00 137.25 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -136.88 7.00 136.88 14.00 MacLine -136.88 224.00 136.88 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 128.50 241.38 17.75 WS -1.00 ps -90.75 7.00 90.75 14.00 MacLine -90.75 224.00 90.75 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 86.88 241.38 8.88 WS -16.00 (_Helvetica) 0 F -(Current \(Amps\)) 183.12 259.38 109.50 WS -1 0 0 SetFore UseFore -1.00 ps -newpath 91.25 216.00 M -93.50 214.38 L -95.75 212.88 L -98.12 211.25 L -100.38 209.62 L -102.75 208.12 L -105.00 206.50 L -107.38 205.00 L -109.62 203.38 L -112.00 201.88 L -114.25 200.25 L -116.62 198.62 L -118.88 197.12 L -121.25 195.50 L -123.50 193.88 L -125.88 192.38 L -128.12 190.75 L -130.38 189.25 L -132.75 187.62 L -135.00 186.12 L -137.38 184.50 L -139.62 182.88 L -142.00 181.38 L -144.25 179.75 L -146.62 178.12 L -148.88 176.62 L -151.25 175.00 L -153.50 173.50 L -155.88 171.88 L -158.12 170.38 L -160.50 168.75 L -162.75 167.12 L -165.12 165.62 L -167.38 164.00 L -169.62 162.38 L -172.00 160.88 L -174.25 159.25 L -176.62 157.75 L -178.88 156.12 L -181.25 154.62 L -183.50 153.00 L -185.88 151.38 L -188.12 149.88 L -190.50 148.25 L -192.75 146.75 L -195.12 145.12 L -197.38 143.50 L -199.75 142.00 L -202.00 140.38 L -204.25 138.88 L -206.62 137.25 L -208.88 135.62 L -211.25 134.12 L -213.50 132.50 L -215.88 131.00 L -218.12 129.38 L -220.50 127.75 L -222.75 126.25 L -225.12 124.62 L -227.38 123.12 L -229.75 121.50 L -232.00 119.88 L -234.38 118.38 L -236.62 116.75 L -239.00 115.25 L -241.25 113.62 L -243.50 112.12 L -245.88 110.50 L -248.12 108.88 L -250.50 107.38 L -252.75 105.75 L -255.12 104.25 L -257.38 102.62 L -259.75 101.00 L -262.00 99.50 L -264.38 97.88 L -266.62 96.38 L -269.00 94.75 L -271.25 93.12 L -273.62 91.62 L -275.88 90.00 L -278.12 88.50 L -280.50 86.88 L -282.75 85.25 L -285.12 83.75 L -287.38 82.12 L -289.75 80.62 L -292.00 79.00 L -294.38 77.38 L -296.62 75.88 L -299.00 74.25 L -301.25 72.75 L -303.62 71.12 L -305.88 69.62 L -308.25 68.00 L -310.50 66.38 L -312.88 64.88 L -315.12 63.25 L -317.38 61.62 L -319.75 60.12 L -322.00 58.50 L -324.38 57.00 L -326.62 55.38 L -329.00 53.88 L -331.25 52.25 L -333.62 50.62 L -335.88 49.12 L -338.25 47.50 L -340.50 45.88 L -342.88 44.38 L -345.12 42.75 L -347.50 41.25 L -349.75 39.62 L -352.00 38.12 L -354.38 36.50 L -356.62 34.88 L -359.00 33.38 L -361.25 31.75 L -363.62 30.12 L -365.88 28.62 L -368.25 27.00 L -370.50 25.50 L -372.88 23.88 L -375.12 22.38 L -377.50 20.75 L -379.75 19.12 L -382.12 17.62 L -384.25 16.12 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v2.gif deleted file mode 100755 index c10c64171..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v3.eps deleted file mode 100755 index 7ca1de67e..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v3.eps +++ /dev/null @@ -1,646 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 421 263 -%%Creator: Igor -%%Title: Graph3 -%%Creation Date: Thu, Jul 11, 1996 12:38 PM -%%DocumentFonts: (atend) -%%EndComments -0 263 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -98.12 15.00 98.12 216.00 MacLine -385.50 15.00 385.50 216.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -98.12 26.88 385.50 26.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 26.50 385.50 26.50 MacLine -91.12 26.50 98.12 26.50 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(120x10) 24.50 31.38 52.38 WS -11.25 (_Helvetica) 0 F -(3) 76.88 23.00 6.25 WS -16.00 (_Helvetica) 0 F -( ) 83.12 31.38 4.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -98.12 58.38 385.50 58.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 58.00 385.50 58.00 MacLine -91.12 58.00 98.12 58.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(100) 61.00 62.88 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -98.12 89.88 385.50 89.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 89.50 385.50 89.50 MacLine -91.12 89.50 98.12 89.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(80) 69.88 94.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -98.12 121.38 385.50 121.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 121.00 385.50 121.00 MacLine -91.12 121.00 98.12 121.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(60) 69.88 125.88 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -98.12 152.88 385.50 152.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 152.50 385.50 152.50 MacLine -91.12 152.50 98.12 152.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(40) 69.88 157.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -98.12 184.38 385.50 184.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 184.00 385.50 184.00 MacLine -91.12 184.00 98.12 184.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 69.88 188.88 17.75 WS -1.00 ps -392.50 215.50 385.50 215.50 MacLine -91.12 215.50 98.12 215.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 78.75 220.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 156.00 translate -90 rotate -(Voltage \(V\)) 0.00 0.00 80.00 WS -grestore -1.00 ps -98.12 217.00 385.50 217.00 MacLine -98.12 14.00 385.50 14.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -368.75 217.00 368.75 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -368.38 7.00 368.38 14.00 MacLine -368.38 224.00 368.38 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(120) 355.62 241.38 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -323.88 217.00 323.88 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -323.50 7.00 323.50 14.00 MacLine -323.50 224.00 323.50 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(100) 310.75 241.38 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -279.12 217.00 279.12 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -278.75 7.00 278.75 14.00 MacLine -278.75 224.00 278.75 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(80) 270.38 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -234.38 217.00 234.38 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -234.00 7.00 234.00 14.00 MacLine -234.00 224.00 234.00 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(60) 225.62 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -189.62 217.00 189.62 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -189.25 7.00 189.25 14.00 MacLine -189.25 224.00 189.25 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(40) 180.88 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -144.75 217.00 144.75 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -144.38 7.00 144.38 14.00 MacLine -144.38 224.00 144.38 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 136.00 241.38 17.75 WS -1.00 ps -99.62 7.00 99.62 14.00 MacLine -99.62 224.00 99.62 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 95.75 241.38 8.88 WS -16.00 (_Helvetica) 0 F -(Current \(Amps\)) 187.50 259.38 109.50 WS -1 0 0 SetFore UseFore -1.00 ps -newpath 100.12 216.00 M -102.25 214.38 L -104.50 212.88 L -106.75 211.25 L -109.00 209.62 L -111.25 208.12 L -113.50 206.50 L -115.75 205.00 L -118.00 203.38 L -120.25 201.88 L -122.50 200.25 L -124.75 198.62 L -126.88 197.12 L -129.12 195.50 L -131.38 193.88 L -133.62 192.38 L -135.88 190.75 L -138.12 189.25 L -140.38 187.62 L -142.62 186.12 L -144.88 184.50 L -147.12 182.88 L -149.38 181.38 L -151.62 179.75 L -153.75 178.12 L -156.00 176.62 L -158.25 175.00 L -160.50 173.50 L -162.75 171.88 L -165.00 170.38 L -167.25 168.75 L -169.50 167.12 L -171.75 165.62 L -174.00 164.00 L -176.25 162.38 L -178.38 160.88 L -180.62 159.25 L -182.88 157.75 L -185.12 156.12 L -187.38 154.62 L -189.62 153.00 L -191.88 151.38 L -194.12 149.88 L -196.38 148.25 L -198.62 146.75 L -200.88 145.12 L -203.12 143.50 L -205.25 142.00 L -207.50 140.38 L -209.75 138.88 L -212.00 137.25 L -214.25 135.62 L -216.50 134.12 L -218.75 132.50 L -221.00 131.00 L -223.25 129.38 L -225.50 127.75 L -227.75 126.25 L -230.00 124.62 L -232.12 123.12 L -234.38 121.50 L -236.62 119.88 L -238.88 118.38 L -241.12 116.75 L -243.38 115.25 L -245.62 113.62 L -247.88 112.12 L -250.12 110.50 L -252.38 108.88 L -254.62 107.38 L -256.75 105.75 L -259.00 104.25 L -261.25 102.62 L -263.50 101.00 L -265.75 99.50 L -268.00 97.88 L -270.25 96.38 L -272.50 94.75 L -274.75 93.12 L -277.00 91.62 L -279.25 90.00 L -281.50 88.50 L -283.62 86.88 L -285.88 85.25 L -288.12 83.75 L -290.38 82.12 L -292.62 80.62 L -294.88 79.00 L -297.12 77.38 L -299.38 75.88 L -301.62 74.25 L -303.88 72.75 L -306.12 71.12 L -308.38 69.62 L -310.50 68.00 L -312.75 66.38 L -315.00 64.88 L -317.25 63.25 L -319.50 61.62 L -321.75 60.12 L -324.00 58.50 L -326.25 57.00 L -328.50 55.38 L -330.75 53.88 L -333.00 52.25 L -335.12 50.62 L -337.38 49.12 L -339.62 47.50 L -341.88 45.88 L -344.12 44.38 L -346.38 42.75 L -348.62 41.25 L -350.88 39.62 L -353.12 38.12 L -355.38 36.50 L -357.62 34.88 L -359.88 33.38 L -362.00 31.75 L -364.25 30.12 L -366.50 28.62 L -368.75 27.00 L -371.00 25.50 L -373.25 23.88 L -375.50 22.38 L -377.75 20.75 L -380.00 19.12 L -382.25 17.62 L -384.25 16.25 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v3.gif deleted file mode 100755 index fac055a6c..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v4.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v4.eps deleted file mode 100755 index e69316f04..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v4.eps +++ /dev/null @@ -1,657 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 421 263 -%%Creator: Igor -%%Title: Graph5 -%%Creation Date: Thu, Jul 11, 1996 12:37 PM -%%DocumentFonts: (atend) -%%EndComments -0 263 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -89.25 15.00 89.25 216.00 MacLine -385.50 15.00 385.50 216.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -89.25 32.12 385.50 32.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 31.75 385.50 31.75 MacLine -82.25 31.75 89.25 31.75 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(14x10) 24.50 36.62 43.50 WS -11.25 (_Helvetica) 0 F -(6) 68.00 28.25 6.25 WS -16.00 (_Helvetica) 0 F -( ) 74.25 36.62 4.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -89.25 58.38 385.50 58.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 58.00 385.50 58.00 MacLine -82.25 58.00 89.25 58.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(12) 61.00 62.88 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -89.25 84.62 385.50 84.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 84.25 385.50 84.25 MacLine -82.25 84.25 89.25 84.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 61.00 89.12 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -89.25 110.88 385.50 110.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 110.50 385.50 110.50 MacLine -82.25 110.50 89.25 110.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(8) 69.88 115.38 8.88 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -89.25 137.12 385.50 137.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 136.75 385.50 136.75 MacLine -82.25 136.75 89.25 136.75 MacLine -1 ps -16.00 (_Helvetica) 0 F -(6) 69.88 141.62 8.88 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -89.25 163.38 385.50 163.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 163.00 385.50 163.00 MacLine -82.25 163.00 89.25 163.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(4) 69.88 167.88 8.88 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -89.25 189.62 385.50 189.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 189.25 385.50 189.25 MacLine -82.25 189.25 89.25 189.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 69.88 194.12 8.88 WS -1.00 ps -392.50 215.50 385.50 215.50 MacLine -82.25 215.50 89.25 215.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 69.88 220.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 23.38 158.00 translate -90 rotate -(Voltage \(V\)) 0.00 0.00 80.00 WS -grestore -1.00 ps -89.25 217.00 385.50 217.00 MacLine -89.25 14.00 385.50 14.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -368.25 217.00 368.25 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -367.88 7.00 367.88 14.00 MacLine -367.88 224.00 367.88 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(120) 355.12 241.38 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -322.00 217.00 322.00 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -321.62 7.00 321.62 14.00 MacLine -321.62 224.00 321.62 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(100) 308.88 241.38 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -275.88 217.00 275.88 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -275.50 7.00 275.50 14.00 MacLine -275.50 224.00 275.50 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(80) 267.12 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -229.62 217.00 229.62 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -229.25 7.00 229.25 14.00 MacLine -229.25 224.00 229.25 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(60) 220.88 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -183.50 217.00 183.50 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -183.12 7.00 183.12 14.00 MacLine -183.12 224.00 183.12 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(40) 174.75 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -137.25 217.00 137.25 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -136.88 7.00 136.88 14.00 MacLine -136.88 224.00 136.88 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 128.50 241.38 17.75 WS -1.00 ps -90.75 7.00 90.75 14.00 MacLine -90.75 224.00 90.75 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 86.88 241.38 8.88 WS -16.00 (_Helvetica) 0 F -(Current \(Amps\)) 183.12 259.38 109.50 WS -1 0 0 SetFore UseFore -1.00 ps -newpath 91.25 216.00 M -93.50 214.38 L -95.75 212.88 L -98.12 211.25 L -100.38 209.62 L -102.75 208.12 L -105.00 206.50 L -107.38 205.00 L -109.62 203.38 L -112.00 201.88 L -114.25 200.25 L -116.62 198.62 L -118.88 197.12 L -121.25 195.50 L -123.50 193.88 L -125.88 192.38 L -128.12 190.75 L -130.38 189.25 L -132.75 187.62 L -135.00 186.12 L -137.38 184.50 L -139.62 182.88 L -142.00 181.38 L -144.25 179.75 L -146.62 178.12 L -148.88 176.62 L -151.25 175.00 L -153.50 173.50 L -155.88 171.88 L -158.12 170.38 L -160.50 168.75 L -162.75 167.12 L -165.12 165.62 L -167.38 164.00 L -169.62 162.38 L -172.00 160.88 L -174.25 159.25 L -176.62 157.75 L -178.88 156.12 L -181.25 154.62 L -183.50 153.00 L -185.88 151.38 L -188.12 149.88 L -190.50 148.25 L -192.75 146.75 L -195.12 145.12 L -197.38 143.50 L -199.75 142.00 L -202.00 140.38 L -204.25 138.88 L -206.62 137.25 L -208.88 135.62 L -211.25 134.12 L -213.50 132.50 L -215.88 131.00 L -218.12 129.38 L -220.50 127.75 L -222.75 126.25 L -225.12 124.62 L -227.38 123.12 L -229.75 121.50 L -232.00 119.88 L -234.38 118.38 L -236.62 116.75 L -239.00 115.25 L -241.25 113.62 L -243.50 112.12 L -245.88 110.50 L -248.12 108.88 L -250.50 107.38 L -252.75 105.75 L -255.12 104.25 L -257.38 102.62 L -259.75 101.00 L -262.00 99.50 L -264.38 97.88 L -266.62 96.38 L -269.00 94.75 L -271.25 93.12 L -273.62 91.62 L -275.88 90.00 L -278.12 88.50 L -280.50 86.88 L -282.75 85.25 L -285.12 83.75 L -287.38 82.12 L -289.75 80.62 L -292.00 79.00 L -294.38 77.38 L -296.62 75.88 L -299.00 74.25 L -301.25 72.75 L -303.62 71.12 L -305.88 69.62 L -308.25 68.00 L -310.50 66.38 L -312.88 64.88 L -315.12 63.25 L -317.38 61.62 L -319.75 60.12 L -322.00 58.50 L -324.38 57.00 L -326.62 55.38 L -329.00 53.88 L -331.25 52.25 L -333.62 50.62 L -335.88 49.12 L -338.25 47.50 L -340.50 45.88 L -342.88 44.38 L -345.12 42.75 L -347.50 41.25 L -349.75 39.62 L -352.00 38.12 L -354.38 36.50 L -356.62 34.88 L -359.00 33.38 L -361.25 31.75 L -363.62 30.12 L -365.88 28.62 L -368.25 27.00 L -370.50 25.50 L -372.88 23.88 L -375.12 22.38 L -377.50 20.75 L -379.75 19.12 L -382.12 17.62 L -384.25 16.12 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v4.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v4.gif deleted file mode 100755 index aebba8114..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v4.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v5.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v5.eps deleted file mode 100755 index 14494de87..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v5.eps +++ /dev/null @@ -1,613 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 421 263 -%%Creator: Igor -%%Title: Graph8 -%%Creation Date: Thu, Jul 11, 1996 12:37 PM -%%DocumentFonts: (atend) -%%EndComments -0 263 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -89.25 15.00 89.25 216.00 MacLine -385.50 15.00 385.50 216.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -89.25 58.38 385.50 58.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 58.00 385.50 58.00 MacLine -82.25 58.00 89.25 58.00 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(15x10) 24.50 62.88 43.50 WS -11.25 (_Helvetica) 0 F -(6) 68.00 54.50 6.25 WS -16.00 (_Helvetica) 0 F -( ) 74.25 62.88 4.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -89.25 110.88 385.50 110.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 110.50 385.50 110.50 MacLine -82.25 110.50 89.25 110.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 61.00 115.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -89.25 163.38 385.50 163.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 163.00 385.50 163.00 MacLine -82.25 163.00 89.25 163.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 69.88 167.88 8.88 WS -1.00 ps -392.50 215.50 385.50 215.50 MacLine -82.25 215.50 89.25 215.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 69.88 220.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 29.38 161.00 translate -90 rotate -(Voltage \(V\)) 0.00 0.00 80.00 WS -grestore -1.00 ps -89.25 217.00 385.50 217.00 MacLine -89.25 14.00 385.50 14.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -368.25 217.00 368.25 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -367.88 7.00 367.88 14.00 MacLine -367.88 224.00 367.88 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(120) 355.12 241.38 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -322.00 217.00 322.00 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -321.62 7.00 321.62 14.00 MacLine -321.62 224.00 321.62 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(100) 308.88 241.38 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -275.88 217.00 275.88 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -275.50 7.00 275.50 14.00 MacLine -275.50 224.00 275.50 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(80) 267.12 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -229.62 217.00 229.62 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -229.25 7.00 229.25 14.00 MacLine -229.25 224.00 229.25 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(60) 220.88 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -183.50 217.00 183.50 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -183.12 7.00 183.12 14.00 MacLine -183.12 224.00 183.12 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(40) 174.75 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -137.25 217.00 137.25 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -136.88 7.00 136.88 14.00 MacLine -136.88 224.00 136.88 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 128.50 241.38 17.75 WS -1.00 ps -90.75 7.00 90.75 14.00 MacLine -90.75 224.00 90.75 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 86.88 241.38 8.88 WS -16.00 (_Helvetica) 0 F -(Current \(Amps\)) 183.12 259.38 109.50 WS -1 0 0 SetFore UseFore -1.00 ps -newpath 91.25 216.00 M -93.50 214.38 L -95.75 212.88 L -98.12 211.25 L -100.38 209.62 L -102.75 208.12 L -105.00 206.50 L -107.38 205.00 L -109.62 203.38 L -112.00 201.88 L -114.25 200.25 L -116.62 198.62 L -118.88 197.12 L -121.25 195.50 L -123.50 193.88 L -125.88 192.38 L -128.12 190.75 L -130.38 189.25 L -132.75 187.62 L -135.00 186.12 L -137.38 184.50 L -139.62 182.88 L -142.00 181.38 L -144.25 179.75 L -146.62 178.12 L -148.88 176.62 L -151.25 175.00 L -153.50 173.50 L -155.88 171.88 L -158.12 170.38 L -160.50 168.75 L -162.75 167.12 L -165.12 165.62 L -167.38 164.00 L -169.62 162.38 L -172.00 160.88 L -174.25 159.25 L -176.62 157.75 L -178.88 156.12 L -181.25 154.62 L -183.50 153.00 L -185.88 151.38 L -188.12 149.88 L -190.50 148.25 L -192.75 146.75 L -195.12 145.12 L -197.38 143.50 L -199.75 142.00 L -202.00 140.38 L -204.25 138.88 L -206.62 137.25 L -208.88 135.62 L -211.25 134.12 L -213.50 132.50 L -215.88 131.00 L -218.12 129.38 L -220.50 127.75 L -222.75 126.25 L -225.12 124.62 L -227.38 123.12 L -229.75 121.50 L -232.00 119.88 L -234.38 118.38 L -236.62 116.75 L -239.00 115.25 L -241.25 113.62 L -243.50 112.12 L -245.88 110.50 L -248.12 108.88 L -250.50 107.38 L -252.75 105.75 L -255.12 104.25 L -257.38 102.62 L -259.75 101.00 L -262.00 99.50 L -264.38 97.88 L -266.62 96.38 L -269.00 94.75 L -271.25 93.12 L -273.62 91.62 L -275.88 90.00 L -278.12 88.50 L -280.50 86.88 L -282.75 85.25 L -285.12 83.75 L -287.38 82.12 L -289.75 80.62 L -292.00 79.00 L -294.38 77.38 L -296.62 75.88 L -299.00 74.25 L -301.25 72.75 L -303.62 71.12 L -305.88 69.62 L -308.25 68.00 L -310.50 66.38 L -312.88 64.88 L -315.12 63.25 L -317.38 61.62 L -319.75 60.12 L -322.00 58.50 L -324.38 57.00 L -326.62 55.38 L -329.00 53.88 L -331.25 52.25 L -333.62 50.62 L -335.88 49.12 L -338.25 47.50 L -340.50 45.88 L -342.88 44.38 L -345.12 42.75 L -347.50 41.25 L -349.75 39.62 L -352.00 38.12 L -354.38 36.50 L -356.62 34.88 L -359.00 33.38 L -361.25 31.75 L -363.62 30.12 L -365.88 28.62 L -368.25 27.00 L -370.50 25.50 L -372.88 23.88 L -375.12 22.38 L -377.50 20.75 L -379.75 19.12 L -382.12 17.62 L -384.25 16.12 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v5.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v5.gif deleted file mode 100755 index 6b8b9ba2c..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v5.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v6.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v6.eps deleted file mode 100755 index 4f66959fb..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v6.eps +++ /dev/null @@ -1,631 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 421 263 -%%Creator: Igor -%%Title: Graph0 -%%Creation Date: Thu, Jul 11, 1996 12:39 PM -%%DocumentFonts: (atend) -%%EndComments -0 263 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -71.50 15.00 71.50 219.00 MacLine -385.50 15.00 385.50 219.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -71.50 28.62 385.50 28.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 28.25 385.50 28.25 MacLine -64.50 28.25 71.50 28.25 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(2500) 25.50 33.12 35.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -71.50 66.62 385.50 66.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 66.25 385.50 66.25 MacLine -64.50 66.25 71.50 66.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2000) 25.50 71.12 35.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -71.50 104.75 385.50 104.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 104.38 385.50 104.38 MacLine -64.50 104.38 71.50 104.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1500) 25.50 109.25 35.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -71.50 142.75 385.50 142.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 142.38 385.50 142.38 MacLine -64.50 142.38 71.50 142.38 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1000) 25.50 147.25 35.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -71.50 180.88 385.50 180.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 180.50 385.50 180.50 MacLine -64.50 180.50 71.50 180.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(500) 34.38 185.38 26.62 WS -1.00 ps -392.50 218.50 385.50 218.50 MacLine -64.50 218.50 71.50 218.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 52.12 223.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 157.50 translate -90 rotate -(Volatge \(V\)) 0.00 0.00 80.00 WS -grestore -1.00 ps -71.50 220.00 385.50 220.00 MacLine -71.50 14.00 385.50 14.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -367.25 220.00 367.25 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -366.88 7.00 366.88 14.00 MacLine -366.88 227.00 366.88 220.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(120) 354.12 244.38 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -318.25 220.00 318.25 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -317.88 7.00 317.88 14.00 MacLine -317.88 227.00 317.88 220.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(100) 305.12 244.38 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -269.25 220.00 269.25 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -268.88 7.00 268.88 14.00 MacLine -268.88 227.00 268.88 220.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(80) 260.50 244.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -220.25 220.00 220.25 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -219.88 7.00 219.88 14.00 MacLine -219.88 227.00 219.88 220.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(60) 211.50 244.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -171.38 220.00 171.38 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -171.00 7.00 171.00 14.00 MacLine -171.00 227.00 171.00 220.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(40) 162.62 244.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -122.38 220.00 122.38 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -122.00 7.00 122.00 14.00 MacLine -122.00 227.00 122.00 220.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 113.62 244.38 17.75 WS -1.00 ps -73.00 7.00 73.00 14.00 MacLine -73.00 227.00 73.00 220.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 69.12 244.38 8.88 WS -16.00 (_Helvetica) 0 F -(Current \(Amps\)) 174.25 259.38 109.50 WS -1 0 0 SetFore UseFore -1.00 ps -newpath 73.50 219.00 M -75.88 217.38 L -78.38 215.75 L -80.75 214.25 L -83.25 212.62 L -85.62 211.00 L -88.12 209.38 L -90.62 207.75 L -93.00 206.25 L -95.50 204.62 L -97.88 203.00 L -100.38 201.38 L -102.88 199.75 L -105.25 198.25 L -107.75 196.62 L -110.12 195.00 L -112.62 193.38 L -115.12 191.88 L -117.50 190.25 L -120.00 188.62 L -122.38 187.00 L -124.88 185.38 L -127.38 183.75 L -129.75 182.25 L -132.25 180.62 L -134.62 179.00 L -137.12 177.38 L -139.62 175.88 L -142.00 174.25 L -144.50 172.62 L -146.88 171.00 L -149.38 169.50 L -151.88 167.88 L -154.25 166.25 L -156.75 164.62 L -159.12 163.00 L -161.62 161.38 L -164.00 159.88 L -166.50 158.25 L -169.00 156.62 L -171.38 155.00 L -173.88 153.50 L -176.25 151.88 L -178.75 150.25 L -181.25 148.62 L -183.62 147.12 L -186.12 145.50 L -188.50 143.88 L -191.00 142.25 L -193.50 140.62 L -195.88 139.00 L -198.38 137.50 L -200.75 135.88 L -203.25 134.25 L -205.75 132.62 L -208.12 131.12 L -210.62 129.50 L -213.00 127.88 L -215.50 126.25 L -218.00 124.62 L -220.38 123.12 L -222.88 121.50 L -225.25 119.88 L -227.75 118.25 L -230.25 116.75 L -232.62 115.12 L -235.12 113.50 L -237.50 111.88 L -240.00 110.38 L -242.38 108.75 L -244.88 107.12 L -247.38 105.50 L -249.75 103.88 L -252.25 102.38 L -254.62 100.75 L -257.12 99.12 L -259.62 97.50 L -262.00 96.00 L -264.50 94.38 L -266.88 92.75 L -269.38 91.12 L -271.88 89.50 L -274.25 87.88 L -276.75 86.38 L -279.12 84.75 L -281.62 83.12 L -284.12 81.50 L -286.50 80.00 L -289.00 78.38 L -291.38 76.75 L -293.88 75.12 L -296.38 73.62 L -298.75 72.00 L -301.25 70.38 L -303.62 68.75 L -306.12 67.12 L -308.62 65.50 L -311.00 64.00 L -313.50 62.38 L -315.88 60.75 L -318.38 59.12 L -320.75 57.62 L -323.25 56.00 L -325.75 54.38 L -328.12 52.75 L -330.62 51.25 L -333.00 49.62 L -335.50 48.00 L -338.00 46.38 L -340.38 44.75 L -342.88 43.12 L -345.25 41.62 L -347.75 40.00 L -350.25 38.38 L -352.62 36.75 L -355.12 35.25 L -357.50 33.62 L -360.00 32.00 L -362.50 30.38 L -364.88 28.75 L -367.38 27.25 L -369.75 25.62 L -372.25 24.00 L -374.75 22.38 L -377.12 20.75 L -379.62 19.25 L -382.00 17.62 L -384.25 16.25 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v6.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v6.gif deleted file mode 100755 index e142292b4..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v6.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v7.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v7.eps deleted file mode 100755 index 90bc63835..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v7.eps +++ /dev/null @@ -1,635 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 421 263 -%%Creator: Igor -%%Title: Graph1 -%%Creation Date: Thu, Jul 11, 1996 12:39 PM -%%DocumentFonts: (atend) -%%EndComments -0 263 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -89.25 15.00 89.25 216.00 MacLine -385.50 15.00 385.50 216.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -89.25 37.75 385.50 37.75 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 37.38 385.50 37.38 MacLine -82.25 37.38 89.25 37.38 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(25x10) 24.50 42.25 43.50 WS -11.25 (_Helvetica) 0 F -(3) 68.00 33.88 6.25 WS -16.00 (_Helvetica) 0 F -( ) 74.25 42.25 4.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -89.25 73.38 385.50 73.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 73.00 385.50 73.00 MacLine -82.25 73.00 89.25 73.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 61.00 77.88 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -89.25 109.00 385.50 109.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 108.62 385.50 108.62 MacLine -82.25 108.62 89.25 108.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(15) 61.00 113.50 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -89.25 144.62 385.50 144.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 144.25 385.50 144.25 MacLine -82.25 144.25 89.25 144.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 61.00 149.12 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -89.25 180.25 385.50 180.25 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 179.88 385.50 179.88 MacLine -82.25 179.88 89.25 179.88 MacLine -1 ps -16.00 (_Helvetica) 0 F -(5) 69.88 184.75 8.88 WS -1.00 ps -392.50 215.50 385.50 215.50 MacLine -82.25 215.50 89.25 215.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 69.88 220.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 23.38 162.00 translate -90 rotate -(Voltage \(V\)) 0.00 0.00 80.00 WS -grestore -1.00 ps -89.25 217.00 385.50 217.00 MacLine -89.25 14.00 385.50 14.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -368.25 217.00 368.25 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -367.88 7.00 367.88 14.00 MacLine -367.88 224.00 367.88 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(120) 355.12 241.38 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -322.00 217.00 322.00 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -321.62 7.00 321.62 14.00 MacLine -321.62 224.00 321.62 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(100) 308.88 241.38 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -275.88 217.00 275.88 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -275.50 7.00 275.50 14.00 MacLine -275.50 224.00 275.50 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(80) 267.12 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -229.62 217.00 229.62 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -229.25 7.00 229.25 14.00 MacLine -229.25 224.00 229.25 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(60) 220.88 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -183.50 217.00 183.50 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -183.12 7.00 183.12 14.00 MacLine -183.12 224.00 183.12 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(40) 174.75 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -137.25 217.00 137.25 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -136.88 7.00 136.88 14.00 MacLine -136.88 224.00 136.88 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 128.50 241.38 17.75 WS -1.00 ps -90.75 7.00 90.75 14.00 MacLine -90.75 224.00 90.75 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 86.88 241.38 8.88 WS -16.00 (_Helvetica) 0 F -(Current \(Amps\)) 183.12 259.38 109.50 WS -1 0 0 SetFore UseFore -1.00 ps -newpath 91.25 216.00 M -93.50 214.38 L -95.75 212.88 L -98.12 211.25 L -100.38 209.62 L -102.75 208.12 L -105.00 206.50 L -107.38 205.00 L -109.62 203.38 L -112.00 201.88 L -114.25 200.25 L -116.62 198.62 L -118.88 197.12 L -121.25 195.50 L -123.50 193.88 L -125.88 192.38 L -128.12 190.75 L -130.38 189.25 L -132.75 187.62 L -135.00 186.12 L -137.38 184.50 L -139.62 182.88 L -142.00 181.38 L -144.25 179.75 L -146.62 178.12 L -148.88 176.62 L -151.25 175.00 L -153.50 173.50 L -155.88 171.88 L -158.12 170.38 L -160.50 168.75 L -162.75 167.12 L -165.12 165.62 L -167.38 164.00 L -169.62 162.38 L -172.00 160.88 L -174.25 159.25 L -176.62 157.75 L -178.88 156.12 L -181.25 154.62 L -183.50 153.00 L -185.88 151.38 L -188.12 149.88 L -190.50 148.25 L -192.75 146.75 L -195.12 145.12 L -197.38 143.50 L -199.75 142.00 L -202.00 140.38 L -204.25 138.88 L -206.62 137.25 L -208.88 135.62 L -211.25 134.12 L -213.50 132.50 L -215.88 131.00 L -218.12 129.38 L -220.50 127.75 L -222.75 126.25 L -225.12 124.62 L -227.38 123.12 L -229.75 121.50 L -232.00 119.88 L -234.38 118.38 L -236.62 116.75 L -239.00 115.25 L -241.25 113.62 L -243.50 112.12 L -245.88 110.50 L -248.12 108.88 L -250.50 107.38 L -252.75 105.75 L -255.12 104.25 L -257.38 102.62 L -259.75 101.00 L -262.00 99.50 L -264.38 97.88 L -266.62 96.38 L -269.00 94.75 L -271.25 93.12 L -273.62 91.62 L -275.88 90.00 L -278.12 88.50 L -280.50 86.88 L -282.75 85.25 L -285.12 83.75 L -287.38 82.12 L -289.75 80.62 L -292.00 79.00 L -294.38 77.38 L -296.62 75.88 L -299.00 74.25 L -301.25 72.75 L -303.62 71.12 L -305.88 69.62 L -308.25 68.00 L -310.50 66.38 L -312.88 64.88 L -315.12 63.25 L -317.38 61.62 L -319.75 60.12 L -322.00 58.50 L -324.38 57.00 L -326.62 55.38 L -329.00 53.88 L -331.25 52.25 L -333.62 50.62 L -335.88 49.12 L -338.25 47.50 L -340.50 45.88 L -342.88 44.38 L -345.12 42.75 L -347.50 41.25 L -349.75 39.62 L -352.00 38.12 L -354.38 36.50 L -356.62 34.88 L -359.00 33.38 L -361.25 31.75 L -363.62 30.12 L -365.88 28.62 L -368.25 27.00 L -370.50 25.50 L -372.88 23.88 L -375.12 22.38 L -377.50 20.75 L -379.75 19.12 L -382.12 17.62 L -384.25 16.12 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v7.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v7.gif deleted file mode 100755 index 2ffe9a1f2..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v7.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v8.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v8.eps deleted file mode 100755 index 8ced20607..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v8.eps +++ /dev/null @@ -1,613 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 421 263 -%%Creator: Igor -%%Title: Graph2 -%%Creation Date: Thu, Jul 11, 1996 12:38 PM -%%DocumentFonts: (atend) -%%EndComments -0 263 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -89.25 15.00 89.25 216.00 MacLine -385.50 15.00 385.50 216.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -89.25 58.38 385.50 58.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 58.00 385.50 58.00 MacLine -82.25 58.00 89.25 58.00 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(30x10) 24.50 62.88 43.50 WS -11.25 (_Helvetica) 0 F -(3) 68.00 54.50 6.25 WS -16.00 (_Helvetica) 0 F -( ) 74.25 62.88 4.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -89.25 110.88 385.50 110.88 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 110.50 385.50 110.50 MacLine -82.25 110.50 89.25 110.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 61.00 115.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -89.25 163.38 385.50 163.38 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 163.00 385.50 163.00 MacLine -82.25 163.00 89.25 163.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(10) 61.00 167.88 17.75 WS -1.00 ps -392.50 215.50 385.50 215.50 MacLine -82.25 215.50 89.25 215.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 69.88 220.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 12.38 156.00 translate -90 rotate -(Voltage \(V\)) 0.00 0.00 80.00 WS -grestore -1.00 ps -89.25 217.00 385.50 217.00 MacLine -89.25 14.00 385.50 14.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -368.25 217.00 368.25 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -367.88 7.00 367.88 14.00 MacLine -367.88 224.00 367.88 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(120) 355.12 241.38 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -322.00 217.00 322.00 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -321.62 7.00 321.62 14.00 MacLine -321.62 224.00 321.62 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(100) 308.88 241.38 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -275.88 217.00 275.88 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -275.50 7.00 275.50 14.00 MacLine -275.50 224.00 275.50 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(80) 267.12 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -229.62 217.00 229.62 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -229.25 7.00 229.25 14.00 MacLine -229.25 224.00 229.25 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(60) 220.88 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -183.50 217.00 183.50 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -183.12 7.00 183.12 14.00 MacLine -183.12 224.00 183.12 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(40) 174.75 241.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -137.25 217.00 137.25 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -136.88 7.00 136.88 14.00 MacLine -136.88 224.00 136.88 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 128.50 241.38 17.75 WS -1.00 ps -90.75 7.00 90.75 14.00 MacLine -90.75 224.00 90.75 217.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 86.88 241.38 8.88 WS -16.00 (_Helvetica) 0 F -(Current \(Amps\)) 183.12 259.38 109.50 WS -1 0 0 SetFore UseFore -1.00 ps -newpath 91.25 216.00 M -93.50 214.38 L -95.75 212.88 L -98.12 211.25 L -100.38 209.62 L -102.75 208.12 L -105.00 206.50 L -107.38 205.00 L -109.62 203.38 L -112.00 201.88 L -114.25 200.25 L -116.62 198.62 L -118.88 197.12 L -121.25 195.50 L -123.50 193.88 L -125.88 192.38 L -128.12 190.75 L -130.38 189.25 L -132.75 187.62 L -135.00 186.12 L -137.38 184.50 L -139.62 182.88 L -142.00 181.38 L -144.25 179.75 L -146.62 178.12 L -148.88 176.62 L -151.25 175.00 L -153.50 173.50 L -155.88 171.88 L -158.12 170.38 L -160.50 168.75 L -162.75 167.12 L -165.12 165.62 L -167.38 164.00 L -169.62 162.38 L -172.00 160.88 L -174.25 159.25 L -176.62 157.75 L -178.88 156.12 L -181.25 154.62 L -183.50 153.00 L -185.88 151.38 L -188.12 149.88 L -190.50 148.25 L -192.75 146.75 L -195.12 145.12 L -197.38 143.50 L -199.75 142.00 L -202.00 140.38 L -204.25 138.88 L -206.62 137.25 L -208.88 135.62 L -211.25 134.12 L -213.50 132.50 L -215.88 131.00 L -218.12 129.38 L -220.50 127.75 L -222.75 126.25 L -225.12 124.62 L -227.38 123.12 L -229.75 121.50 L -232.00 119.88 L -234.38 118.38 L -236.62 116.75 L -239.00 115.25 L -241.25 113.62 L -243.50 112.12 L -245.88 110.50 L -248.12 108.88 L -250.50 107.38 L -252.75 105.75 L -255.12 104.25 L -257.38 102.62 L -259.75 101.00 L -262.00 99.50 L -264.38 97.88 L -266.62 96.38 L -269.00 94.75 L -271.25 93.12 L -273.62 91.62 L -275.88 90.00 L -278.12 88.50 L -280.50 86.88 L -282.75 85.25 L -285.12 83.75 L -287.38 82.12 L -289.75 80.62 L -292.00 79.00 L -294.38 77.38 L -296.62 75.88 L -299.00 74.25 L -301.25 72.75 L -303.62 71.12 L -305.88 69.62 L -308.25 68.00 L -310.50 66.38 L -312.88 64.88 L -315.12 63.25 L -317.38 61.62 L -319.75 60.12 L -322.00 58.50 L -324.38 57.00 L -326.62 55.38 L -329.00 53.88 L -331.25 52.25 L -333.62 50.62 L -335.88 49.12 L -338.25 47.50 L -340.50 45.88 L -342.88 44.38 L -345.12 42.75 L -347.50 41.25 L -349.75 39.62 L -352.00 38.12 L -354.38 36.50 L -356.62 34.88 L -359.00 33.38 L -361.25 31.75 L -363.62 30.12 L -365.88 28.62 L -368.25 27.00 L -370.50 25.50 L -372.88 23.88 L -375.12 22.38 L -377.50 20.75 L -379.75 19.12 L -382.12 17.62 L -384.25 16.12 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v8.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v8.gif deleted file mode 100755 index ad4b21c57..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v8.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v9.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v9.eps deleted file mode 100755 index f0f12db38..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v9.eps +++ /dev/null @@ -1,624 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 0 0 421 263 -%%Creator: Igor -%%Title: Graph4 -%%Creation Date: Thu, Jul 11, 1996 12:36 PM -%%DocumentFonts: (atend) -%%EndComments -0 263 translate 1 -1 scale -/IgorSave save def - -1000 dict begin - -0 setgray 0 setlinecap -1 setlinewidth 0 setlinejoin -1 setmiterlimit [] 0 setdash - -/aw 0 def /ah 0 def -/x0 0 def /y0 0 def /x1 0 def /y1 0 def -/x 0 def /y 0 def /w 0 def /c 0 string def - -/rbak 1 def /gbak 1 def /bbak 1 def -/rfor 0 def /gfor 0 def /bfor 0 def - -/bdef{bind def}bind def -/ldef{load def}bdef -/xdef{exch def}bdef - -/UseBack{ rbak gbak bbak setrgbcolor }bdef -/UseFore{ rfor gfor bfor setrgbcolor }bdef -/SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef -/SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef - - -/ps {setlinewidth} bdef -/clw {currentlinewidth} bdef -/sd {0 setdash} bdef - -/mstroke {0 clw eq {newpath}{stroke} ifelse} bdef - -/_R{ .25 sub round .25 add}bdef -/allign { transform _R exch _R exch itransform }bdef -/L {allign lineto} bdef -/M {allign moveto} bdef - -/addto { dup load exec 3 -1 roll add store }bdef -/MacLine{ % xto yto xfrom yfrom MacLine -- - newpath % only handles horizontal or vertical lines - /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x1 x0 sub abs - y1 y0 sub abs gt - {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto} - {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto} - ifelse - x0 y0 M - x1 y1 L - mstroke -}bdef - -/FillPath{ % graylevel FillPath -- fills current path and leaves path alive - gsave - dup 1 exch sub % glev 1-glev - rbak 2 index mul rfor 2 index mul add - gbak 3 index mul gfor 3 index mul add - bbak 4 index mul bfor 4 index mul add - setrgbcolor - pop pop - fill - grestore -}bdef - -/StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive - gsave - setlinejoin - mstroke - grestore -}bdef - -/RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y0 L - x1 y1 L - x0 y1 L - closepath -}bdef - -/PaintRect{ % x0 y0 x1 y1 graylevel PaintRect -- - gsave - 5 1 roll - RectPath - FillPath - grestore -}bdef - -/EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color - gsave - RectPath - UseBack fill - grestore -}bdef - -/FrameRect{ % x0 y0 x1 y1 FrameRect -- - RectPath - mstroke -}bdef - -/FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version - RectPath - mstroke -}bdef - - -/ellipse{ - /savematrix matrix currentmatrix def - translate scale 0 0 1 0 360 arc - savematrix setmatrix -}bdef - - - -/OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse - closepath -}bdef - - -/PaintOval{ % x0 y0 x1 y1 graylevel PaintOval -- - gsave - 5 1 roll - OvalPath - FillPath - grestore -}bdef - -/EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color - gsave - OvalPath - UseBack fill - grestore -}bdef - -/FrameOval{ % x0 y0 x1 y1 FrameOval -- - OvalPath - mstroke -}bdef - - -/RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r - /radius xdef - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 radius add y0 M - x1 y0 x1 y1 radius arcto 4{pop}repeat - x1 y1 x0 y1 radius arcto 4{pop}repeat - x0 y1 x0 y0 radius arcto 4{pop}repeat - x0 y0 x1 y0 radius arcto 4{pop}repeat - closepath -}bdef - - -/PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect -- - gsave - 6 1 roll - RRectPath - FillPath - grestore -}bdef - -/EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color - gsave - RRectPath - UseBack fill - grestore -}bdef - -/FrameRRect{ % x0 y0 x1 y1 r FrameRect -- - RRectPath - mstroke -}bdef - - - - -/CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap - gsave - setlinecap - /y1 xdef /x1 xdef /y0 xdef /x0 xdef - newpath - x0 y0 M - x1 y1 L - mstroke - grestore -}bdef - -/Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1 - gsave - /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef - x0 y0 translate - /x1 x1 x0 sub def - /y1 y1 y0 sub def - y1 x1 atan rotate - newpath - 0 0 M - aw ah 2 div L - aw ah 2 div neg L - closepath - gl FillPath -% 10 setmiterlimit -% 1 ps -% 0 StrokePath - grestore -}bdef - - -% ************ fonts ************ - - -/normal 0 def -/bold 1 def -/italic 2 def -/underline 4 def -/outline 8 def -/shadow 16 def - -/FACE1 bold italic or def -/FACE2 outline shadow or def - -/Shadow { - gsave - siz 0.08 mul 1 index mul x add - exch siz 0.07 mul mul y add M - c show - grestore -} def - -/Outline { - gsave - siz .02 mul setlinewidth - x y M c true charpath - gsave UseBack fill grestore stroke - grestore -} def - -/Underline{ - gsave - siz 0.08 mul ps - x y clw add M x c stringwidth pop add y clw add L stroke - grestore -}bdef - -/DoShow{ % assumes x,y,c are already set - fontkind FACE2 and - dup normal eq {c x y M show} if - dup outline eq {Outline} if - dup shadow eq {1 Shadow Outline} if - outline shadow or eq {1 Shadow 1.5 Shadow Outline} if - fontkind underline and 0 ne { Underline } if -}bdef - -/DoWShow{ % assumes x,y,c & w are already set - gsave - x y translate - /x 0 def /y 0 def - w c stringwidth pop div 1 scale - DoShow - grestore -}bdef - -/S{ - /y xdef /x xdef /c xdef - DoShow -}bdef - -/WS{ % string x y desiredwidth WS - - /w xdef /y xdef /x xdef /c xdef - DoWShow -}bdef - -/F{ - /fontkind xdef - findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont -}bdef - - - -/Re-encode { - dup length array copy - /eap 0 def - exch { - dup type /integertype eq - { /eap xdef } - { - 1 index - exch - eap exch - put - /eap eap 1 add def - } - ifelse - } forall -} bind def - -[ 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef -/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash -/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron] -/zzz xdef - -/OurEncoding{ zzz StandardEncoding Re-encode }bdef - -/EncodeFont { - findfont - dup length dict begin - { - 1 index /FID ne - { def } - { pop pop } - ifelse - } forall - /FontName xdef - /Encoding xdef - FontName currentdict - end - definefont pop -} bind def - -/AnObj save def -1 1 1 SetBack 0 0 0 SetFore UseFore -0 0 translate -1.00 ps -75.50 15.00 75.50 219.00 MacLine -385.50 15.00 385.50 219.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -75.50 25.12 385.50 25.12 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 24.75 385.50 24.75 MacLine -68.50 24.75 75.50 24.75 MacLine -1 ps - OurEncoding /_Helvetica /Helvetica EncodeFont -16.00 (_Helvetica) 0 F -(4x10) 19.62 29.62 34.62 WS -11.25 (_Helvetica) 0 F -(6) 54.25 21.25 6.25 WS -16.00 (_Helvetica) 0 F -( ) 60.50 29.62 4.50 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -75.50 73.62 385.50 73.62 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 73.25 385.50 73.25 MacLine -68.50 73.25 75.50 73.25 MacLine -1 ps -16.00 (_Helvetica) 0 F -(3) 56.12 78.12 8.88 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -75.50 122.00 385.50 122.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 121.62 385.50 121.62 MacLine -68.50 121.62 75.50 121.62 MacLine -1 ps -16.00 (_Helvetica) 0 F -(2) 56.12 126.50 8.88 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -75.50 170.50 385.50 170.50 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -392.50 170.12 385.50 170.12 MacLine -68.50 170.12 75.50 170.12 MacLine -1 ps -16.00 (_Helvetica) 0 F -(1) 56.12 175.00 8.88 WS -1.00 ps -392.50 218.50 385.50 218.50 MacLine -68.50 218.50 75.50 218.50 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 56.12 223.38 8.88 WS -16.00 (_Helvetica) 0 F -gsave 26.38 156.50 translate -90 rotate -(Voltage \(V\)) 0.00 0.00 80.00 WS -grestore -1.00 ps -75.50 220.00 385.50 220.00 MacLine -75.50 14.00 385.50 14.00 MacLine -1 ps -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -367.50 220.00 367.50 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -367.12 7.00 367.12 14.00 MacLine -367.12 227.00 367.12 220.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(120) 354.38 244.38 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -319.12 220.00 319.12 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -318.75 7.00 318.75 14.00 MacLine -318.75 227.00 318.75 220.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(100) 306.00 244.38 26.62 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -270.75 220.00 270.75 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -270.38 7.00 270.38 14.00 MacLine -270.38 227.00 270.38 220.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(80) 262.00 244.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -222.38 220.00 222.38 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -222.00 7.00 222.00 14.00 MacLine -222.00 227.00 222.00 220.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(60) 213.62 244.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -174.12 220.00 174.12 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -173.75 7.00 173.75 14.00 MacLine -173.75 227.00 173.75 220.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(40) 165.38 244.38 17.75 WS -0.375006 0.375006 1 SetFore UseFore -gsave 0.25 ps [1] sd -125.75 220.00 125.75 14.00 MacLine -grestore -0 0 0 SetFore UseFore -1.00 ps -125.38 7.00 125.38 14.00 MacLine -125.38 227.00 125.38 220.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(20) 117.00 244.38 17.75 WS -1.00 ps -77.00 7.00 77.00 14.00 MacLine -77.00 227.00 77.00 220.00 MacLine -1 ps -16.00 (_Helvetica) 0 F -(0) 73.12 244.38 8.88 WS -16.00 (_Helvetica) 0 F -(Current \(Amps\)) 174.25 258.38 109.50 WS -1 0 0 SetFore UseFore -1.00 ps -newpath 77.50 219.00 M -79.88 217.38 L -82.25 215.75 L -84.75 214.25 L -87.12 212.62 L -89.50 211.00 L -92.00 209.38 L -94.38 207.75 L -96.75 206.25 L -99.25 204.62 L -101.62 203.00 L -104.00 201.38 L -106.50 199.75 L -108.88 198.25 L -111.25 196.62 L -113.75 195.00 L -116.12 193.38 L -118.50 191.88 L -121.00 190.25 L -123.38 188.62 L -125.75 187.00 L -128.25 185.38 L -130.62 183.75 L -133.00 182.25 L -135.50 180.62 L -137.88 179.00 L -140.25 177.38 L -142.75 175.88 L -145.12 174.25 L -147.50 172.62 L -150.00 171.00 L -152.38 169.50 L -154.75 167.88 L -157.25 166.25 L -159.62 164.62 L -162.00 163.00 L -164.50 161.38 L -166.88 159.88 L -169.25 158.25 L -171.75 156.62 L -174.12 155.00 L -176.50 153.50 L -179.00 151.88 L -181.38 150.25 L -183.75 148.62 L -186.25 147.12 L -188.62 145.50 L -191.00 143.88 L -193.50 142.25 L -195.88 140.62 L -198.25 139.00 L -200.75 137.50 L -203.12 135.88 L -205.50 134.25 L -208.00 132.62 L -210.38 131.12 L -212.75 129.50 L -215.25 127.88 L -217.62 126.25 L -220.00 124.62 L -222.50 123.12 L -224.88 121.50 L -227.25 119.88 L -229.75 118.25 L -232.12 116.75 L -234.50 115.12 L -237.00 113.50 L -239.38 111.88 L -241.75 110.38 L -244.25 108.75 L -246.62 107.12 L -249.00 105.50 L -251.50 103.88 L -253.88 102.38 L -256.25 100.75 L -258.75 99.12 L -261.12 97.50 L -263.50 96.00 L -266.00 94.38 L -268.38 92.75 L -270.75 91.12 L -273.25 89.50 L -275.62 87.88 L -278.00 86.38 L -280.50 84.75 L -282.88 83.12 L -285.25 81.50 L -287.75 80.00 L -290.12 78.38 L -292.50 76.75 L -295.00 75.12 L -297.38 73.62 L -299.75 72.00 L -302.25 70.38 L -304.62 68.75 L -307.00 67.12 L -309.50 65.50 L -311.88 64.00 L -314.25 62.38 L -316.75 60.75 L -319.12 59.12 L -321.50 57.62 L -324.00 56.00 L -326.38 54.38 L -328.75 52.75 L -331.25 51.25 L -333.62 49.62 L -336.00 48.00 L -338.50 46.38 L -340.88 44.75 L -343.25 43.12 L -345.75 41.62 L -348.12 40.00 L -350.50 38.38 L -353.00 36.75 L -355.38 35.25 L -357.75 33.62 L -360.25 32.00 L -362.62 30.38 L -365.00 28.75 L -367.50 27.25 L -369.88 25.62 L -372.25 24.00 L -374.75 22.38 L -377.12 20.75 L -379.50 19.25 L -382.00 17.62 L -384.25 16.12 L -mstroke -[] sd -1 ps -0 0 0 SetFore UseFore -AnObj restore -end -IgorSave restore -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v9.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v9.gif deleted file mode 100755 index e2c6712e5..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob01v9.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob08.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob08.eps deleted file mode 100755 index cbbd42887..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob08.eps +++ /dev/null @@ -1,1936 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad 6.0.1 -%%Title: prob5-5.eps -%%CreationDate: 5/9/1997 -%%DocumentProcSets: Adobe_packedarray 1.0 0 -%%DocumentSuppliedProcSets: Adobe_packedarray 1.0 0 -%%DocumentProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentProcSets: Adobe_cshow 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cshow 1.1 0 -%%DocumentProcSets: Adobe_customcolor 1.0 0 -%%DocumentSuppliedProcSets: Adobe_customcolor 1.0 0 -%%DocumentProcSets: Adobe_pattern 1.9 0 -%%DocumentSuppliedProcSets: Adobe_pattern 1.9 0 -%%DocumentProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentSuppliedProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentFonts: Times-Italic -%%BoundingBox:89 531 483 576 -%%TemplateBox:306 396 306 396 -%%DocumentPreview: Header -%%EndComments - -%%BeginProlog -%%BeginProcSet: Adobe_packedarray 1.0 0 -userdict /Adobe_packedarray 5 dict dup begin put -/initialize -{ -/packedarray where - { - pop - } - { - Adobe_packedarray begin - Adobe_packedarray - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - } ifelse -} def -/terminate -{ -} def -/packedarray -{ -array astore readonly -} def -/setpacking -{ -pop -} def -/currentpacking -{ -false -} def -currentdict readonly pop end -%%EndProcSet -Adobe_packedarray /initialize get exec -%%BeginProcSet: Adobe_cmykcolor 1.1 0 -currentpacking true setpacking -userdict /Adobe_cmykcolor 4 dict dup begin put -/initialize -{ -/setcmykcolor where - { - pop - } - { - userdict /Adobe_cmykcolor_vars 2 dict dup begin put - /_setrgbcolor - /setrgbcolor load def - /_currentrgbcolor - /currentrgbcolor load def - Adobe_cmykcolor begin - Adobe_cmykcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - end - Adobe_cmykcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_cmykcolor eq - { - end - } if -} def -/setcmykcolor -{ -1 sub 4 1 roll -3 - { - 3 index add neg dup 0 lt - { - pop 0 - } if - 3 1 roll - } repeat -Adobe_cmykcolor_vars /_setrgbcolor get exec -pop -} def -/currentcmykcolor -{ -Adobe_cmykcolor_vars /_currentrgbcolor get exec -3 - { - 1 sub neg 3 1 roll - } repeat -0 -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_cshow 1.1 0 -currentpacking true setpacking -userdict /Adobe_cshow 3 dict dup begin put -/initialize -{ -/cshow where - { - pop - } - { - userdict /Adobe_cshow_vars 1 dict dup begin put - /_cshow - {} def - Adobe_cshow begin - Adobe_cshow - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - end - } ifelse -} def -/terminate -{ -} def -/cshow -{ -exch -Adobe_cshow_vars - exch /_cshow - exch put - { - 0 0 Adobe_cshow_vars /_cshow get exec - } forall -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_customcolor 1.0 0 -currentpacking true setpacking -userdict /Adobe_customcolor 5 dict dup begin put -/initialize -{ -/setcustomcolor where - { - pop - } - { - Adobe_customcolor begin - Adobe_customcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - Adobe_customcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_customcolor eq - { - end - } if -} def -/findcmykcustomcolor -{ -5 packedarray -} def -/setcustomcolor -{ -exch -aload pop pop -4 - { - 4 index mul 4 1 roll - } repeat -5 -1 roll pop -setcmykcolor -} def -/setoverprint -{ -pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_pattern 1.9 0 -currentpacking true setpacking -userdict /Adobe_pattern 14 dict dup begin put -/initialize -{ -/definepattern where - { - pop - } - { - Adobe_pattern begin - Adobe_pattern - { - dup xcheck - { - bind - } if - pop pop - } forall - mark - cachestatus 7 1 roll pop pop pop pop exch pop exch - { - { - 10000 add - dup 2 index gt - { - break - } if - dup setcachelimit - } loop - } stopped - cleartomark - } ifelse -} def -/terminate -{ -currentdict Adobe_pattern eq - { - end - } if -} def -errordict -/nocurrentpoint -{ -pop -stop -} put -errordict -/invalidaccess -{ -pop -stop -} put -/patternencoding -256 array def -0 1 255 -{ -patternencoding exch ( ) 2 copy exch 0 exch put cvn put -} for -/definepattern -{ -17 dict begin -/uniform exch def -/cache exch def -/key exch def -/procarray exch def -/mtx exch matrix invertmatrix def -/height exch def -/width exch def -/ctm matrix currentmatrix def -/ptm matrix def -/str 32 string def -/slice 9 dict def -slice /s 1 put -slice /q 256 procarray length div sqrt floor cvi put -slice /b 0 put -/FontBBox [0 0 0 0] def -/FontMatrix mtx matrix copy def -/Encoding patternencoding def -/FontType 3 def -/BuildChar - { - exch - begin - slice begin - dup q dup mul mod s idiv /i exch def - dup q dup mul mod s mod /j exch def - q dup mul idiv procarray exch get - /xl j width s div mul def - /xg j 1 add width s div mul def - /yl i height s div mul def - /yg i 1 add height s div mul def - uniform - { - 1 1 - } - { - width 0 dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - 0 height dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - } ifelse - width 0 cache - { - xl 4 index mul yl 4 index mul xg 6 index mul yg 6 index mul - setcachedevice - } - { - setcharwidth - } ifelse - gsave - scale - newpath - xl yl moveto - xg yl lineto - xg yg lineto - xl yg lineto - closepath - clip - newpath - end - end - exec - grestore - } def -key currentdict definefont -end -} def -/patterncachesize -{ -gsave -newpath -0 0 moveto -width 0 lineto -width height lineto -0 height lineto -closepath -patternmatrix setmatrix -pathbbox -exch ceiling 4 -1 roll floor sub 3 1 roll -ceiling exch floor sub -mul 1 add -grestore -} def -/patterncachelimit -{ -cachestatus 7 1 roll pop pop pop pop pop pop 8 mul -} def -/patternpath -{ -exch dup begin setfont -ctm setmatrix -concat -slice exch /b exch slice /q get dup mul mul put -FontMatrix concat -uniform - { - width 0 dtransform round width div exch round width div exch - 0 height dtransform round height div exch height div exch - 0 0 transform round exch round exch - ptm astore setmatrix - } - { - ptm currentmatrix pop - } ifelse -{currentpoint} stopped not - { - pop pop - pathbbox - true - 4 index 3 index eq - 4 index 3 index eq - and - { - pop false - { - {pop pop} - {pop pop pop true} - {pop pop pop pop pop pop pop true} - {pop true} - pathforall - } stopped - { - pop pop pop pop pop true - } if - } if - { - height div ceiling height mul 4 1 roll - width div ceiling width mul 4 1 roll - height div floor height mul 4 1 roll - width div floor width mul 4 1 roll - 2 index sub height div ceiling cvi exch - 3 index sub width div ceiling cvi exch - 4 2 roll moveto - FontMatrix mtx invertmatrix - dup dup 4 get exch 5 get rmoveto - ptm ptm concatmatrix pop - slice /s - patterncachesize patterncachelimit div ceiling sqrt ceiling cvi - dup slice /q get gt - { - pop slice /q get - } if - put - 0 1 slice /s get dup mul 1 sub - { - slice /b get add - gsave - 0 1 str length 1 sub - { - str exch 2 index put - } for - pop - dup - { - gsave - ptm setmatrix - 1 index str length idiv {str show} repeat - 1 index str length mod str exch 0 exch getinterval show - grestore - 0 height rmoveto - } repeat - grestore - } for - pop pop - } - { - pop pop pop pop - } ifelse - } if -end -} def -/patternclip -{ -clip -} def -/patternstrokepath -{ -strokepath -} def -/patternmatrix -matrix def -/patternfill -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternclip -Adobe_pattern /patternpath get exec -grestore -newpath -} def -/patternstroke -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternstrokepath -true - { - { - { - newpath - moveto - } - { - lineto - } - { - curveto - } - { - closepath - 3 copy - Adobe_pattern /patternfill get exec - } pathforall - pop pop pop - } stopped - { - pop pop pop pop pop - patternclip - Adobe_pattern /patternfill get exec - } if - } - { - patternclip - Adobe_pattern /patternfill get exec - } ifelse -grestore -newpath -} def -/patternashow -{ -3 index type /dicttype eq - { - Adobe_pattern /patternmatrix get 4 1 roll - } if - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 6 index 6 index 6 index - Adobe_pattern /patternfill get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop -} def -/patternashowstroke -{ -4 index type /dicttype eq - { - patternmatrix /patternmatrix get 5 1 roll - } if -4 1 roll - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - 7 index 7 index 7 index - Adobe_pattern /patternstroke get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_Illustrator88 1.19 0 -currentpacking true setpacking -userdict /Adobe_Illustrator88 73 dict dup begin put -/initialize -{ -userdict /Adobe_Illustrator88_vars 31 dict dup begin put -/_lp /none def -/_pf {} def -/_ps {} def -/_psf {} def -/_pss {} def -/_a null def -/_as null def -/_tt 2 array def -/_tl 2 array def -/_tm matrix def -/t {} def -/_gf null def -/_cf 4 array def -/_if null def -/_of false def -/_fc {} def -/_gs null def -/_cs 4 array def -/_is null def -/_os false def -/_sc {} def -/_pd 1 dict def -/_ed 15 dict def -/_pm matrix def -/_fm null def -/_fd null def -/_fdd null def -/_sm null def -/_sd null def -/_sdd null def -/_i null def -Adobe_Illustrator88 begin -Adobe_Illustrator88 dup /nc get begin - { - dup xcheck - { - bind - } if - pop pop - } forall -end -end -end -Adobe_Illustrator88 begin -Adobe_Illustrator88_vars begin -newpath -} def -/terminate -{ -end -end -} def -/_ -null def -/ddef -{ -Adobe_Illustrator88_vars 3 1 roll put -} def -/xput -{ -dup load dup length exch maxlength eq - { - dup dup load dup - length 2 mul dict copy def - } if -load begin def end -} def -/npop -{ - { - pop - } repeat -} def -/sw -{ -stringwidth -exch 5 -1 roll 3 index 1 sub mul add -4 1 roll 3 1 roll 1 sub mul add -} def -/ss -{ -3 -1 roll pop -4 1 roll - { - 2 npop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - stroke - grestore - moveto - 2 copy rmoveto - } exch cshow -3 npop -} def -/sp -{ -exch pop - { - 2 npop (0) exch - 2 copy 0 exch put pop - false charpath - 2 copy rmoveto - } exch cshow -2 npop -} def -/pl -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where -{ -pop true setstrokeadjust -/c -{ -curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll curveto -} def -/V -/v load def -/y -{ -2 copy curveto -} def -/Y -/y load def -/l -{ -lineto -} def -/L -/l load def -/m -{ -moveto -} def -} -{ -/c -{ -pl curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll pl curveto -} def -/V -/v load def -/y -{ -pl 2 copy curveto -} def -/Y -/y load def -/l -{ -pl lineto -} def -/L -/l load def -/m -{ -pl moveto -} def -} ifelse -/d -{ -setdash -} def -/cf -currentflat def -/i -{ -dup 0 eq - { - pop cf - } if -setflat -} def -/j -{ -setlinejoin -} def -/J -{ -setlinecap -} def -/M -{ -setmiterlimit -} def -/w -{ -setlinewidth -} def -/H -{} def -/h -{ -closepath -} def -/N -{ -newpath -} def -/n -/N load def -/F -{ -_pf -} def -/f -{ -closepath -F -} def -/S -{ -_ps -} def -/s -{ -closepath -S -} def -/B -{ -gsave F grestore -S -} def -/b -{ -closepath -B -} def -/W -{ -clip -} def -/ta -{ -_as moveto -_tt aload pop 4 -2 roll -} def -/tl -{ -_tl aload pop translate -} def -/as -{ -{ -0 0 -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg 2 div exch neg 2 div -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg exch neg -} -{ -0 0 -} -} cvlit def -/z -{ -/_a exch ddef -/_as as _a get ddef -_a 2 le - { - 0 _tt astore pop - 0 exch neg _tl astore pop - } - { - 0 exch neg _tt astore pop - neg 0 _tl astore pop - } ifelse -exch findfont exch scalefont setfont -} def -/tm -{ -_tm currentmatrix pop -concat -} def -/I -{ -tm -/t - { - ta sp - tl - } ddef -} def -/o -{ -tm -/t - { - ta 4 npop - tl - newpath - } ddef -} def -/e -{ -tm -/t - { - ta _psf - tl - newpath - } ddef -} def -/r -{ -tm -/t - { - ta _tm _pss - tl - newpath - } ddef -} def -/a -{ -tm -/t - { - 2 copy - ta _psf - newpath - ta _tm _pss - tl - newpath - } ddef -} def -/T -{ -_tm setmatrix -} def -/Z -{ -pop -findfont begin -currentdict dup length 1 add dict begin - { - 1 index /FID ne - { - def - } - { - 2 npop - } ifelse - } forall -/FontName exch def dup length 0 ne - { - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - { - Encoding 2 index 2 index put pop - 1 add - } - { - exch pop - } ifelse - } forall - } if pop -currentdict dup end end -/FontName get exch definefont pop -} def -/u -{} def -/U -{} def -/q -{ -gsave -} def -/Q -{ -grestore -} def -/` -{ -/_i save ddef -6 1 roll 4 npop -concat -userdict begin -/showpage {} def -false setoverprint -pop -} def -/~ -{ -end -_i restore -} def -/@ -{} def -/& -{} def -/O -{ -0 ne -/_of exch ddef -/_lp /none ddef -} def -/R -{ -0 ne -/_os exch ddef -/_lp /none ddef -} def -/g -{ -/_gf exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _gf setgray - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/G -{ -/_gs exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _gs setgray - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/k -{ -_cf astore pop -/_fc -{ -_lp /fill ne - { - _of setoverprint - _cf aload pop setcmykcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/K -{ -_cs astore pop -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _cs aload pop setcmykcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/x -{ -/_gf exch ddef -findcmykcustomcolor -/_if exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _if _gf 1 exch sub setcustomcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/X -{ -/_gs exch ddef -findcmykcustomcolor -/_is exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _is _gs 1 exch sub setcustomcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/dp -{ -dup null eq -{ -pop -_dp 0 ne - { - 0 1 _dp 1 sub _dl mod - { - _da exch get 3 get - } for - _dp 1 sub _dl mod 1 add packedarray - _da 0 get aload pop 8 -1 roll 5 -1 roll pop 4 1 roll - definepattern pop - } if -} -{ -_dp 0 ne _dp _dl mod 0 eq and - { - null dp - } if -7 packedarray _da exch _dp _dl mod exch put -_dp _dl mod _da 0 get 4 get 2 packedarray -/_dp _dp 1 add def -} ifelse -} def -/E -{ -_ed begin -dup 0 get type /arraytype ne - { - 0 - { - dup 1 add index type /arraytype eq - { - 1 add - } - { - exit - } ifelse - } loop - array astore - } if -/_dd exch def -/_ury exch def -/_urx exch def -/_lly exch def -/_llx exch def -/_n exch def -/_y 0 def -/_dl 4 def -/_dp 0 def -/_da _dl array def -0 1 _dd length 1 sub - { - /_d exch _dd exch get def - 0 2 _d length 2 sub - { - /_x exch def - /_c _d _x get _ ne def - /_r _d _x 1 add get cvlit def - _r _ ne - { - _urx _llx sub _ury _lly sub [1 0 0 1 0 0] - [ - /save cvx - _llx neg _lly neg /translate cvx - _c - { - nc /begin cvx - } if - _r dup type /stringtype eq - { - cvx - } - { - {exec} /forall cvx - } ifelse - _c - { - /end cvx - } if - /restore cvx - ] cvx - /_fn 12 _n length add string def - _y _fn cvs pop - /_y _y 1 add def - _fn 12 _n putinterval - _fn _c false dp - _d exch _x 1 add exch put - } if - } for - } for -null dp -_n _dd /_pd -end xput -} def -/fc -{ -_fm dup concatmatrix pop -} def -/p -{ -/_fm exch ddef -9 -2 roll _pm translate fc -7 -2 roll _pm scale fc -5 -1 roll _pm rotate fc -4 -2 roll exch 0 ne - { - dup _pm rotate fc - 1 -1 _pm scale fc - neg _pm rotate fc - } - { - pop - } ifelse -dup _pm rotate fc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore fc -neg _pm rotate fc -_pd exch get /_fdd exch ddef -/_pf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - patternfill - } - { - pop - fill - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_psf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - 10 copy 6 npop exch pop patternashow - } - { - pop - 7 copy 3 npop exch pop ashow - } ifelse - grestore - pop - } for - pop - } for -restore -4 npop newpath -} ddef -/_lp /none ddef -} def -/sc -{ -_sm dup concatmatrix pop -} def -/P -{ -/_sm exch ddef -9 -2 roll _pm translate sc -7 -2 roll _pm scale sc -5 -1 roll _pm rotate sc -4 -2 roll exch 0 ne - { - dup _pm rotate sc - 1 -1 _pm scale sc - neg _pm rotate sc - } - { - pop - } ifelse -dup _pm rotate sc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore sc -neg _pm rotate sc -_pd exch get /_sdd exch ddef -/_ps -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - patternstroke - } - { - pop stroke - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_pss -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - 11 copy 6 npop 3 -1 roll pop patternashowstroke - } - { - pop - 8 copy 3 npop ss - } ifelse - grestore - pop - } for - pop - } for -restore -5 npop newpath -} ddef -/_lp /none ddef -} def -/A -{ -pop -} def -/nc 3 dict def -nc begin -/setgray -{ -pop -} bind def -/setcmykcolor -{ -4 npop -} bind def -/setcustomcolor -{ -2 npop -} bind def -currentdict readonly pop end -currentdict readonly pop end -setpacking -%%EndProcSet -%%EndProlog - -%%BeginSetup -Adobe_cmykcolor /initialize get exec -Adobe_cshow /initialize get exec -Adobe_customcolor /initialize get exec -Adobe_pattern /initialize get exec -Adobe_Illustrator88 /initialize get exec - -%%BeginPattern: (0) -(0) 10 10 18 18 [ -(0 O 0 R 0.000000 0.000000 0.000000 0 (New Color 0) 0 x 0.000000 0.000000 0.000000 0 (New Color 0) 0 X) @ -_ & -(0 O 0 R 0.999985 0.999985 0.999985 0 (New Color 255) 0 x 0.999985 0.999985 0.999985 0 (New Color 255) 0 X) @ -( -0 i 0 J 0 j 1 w 4 M []0 d -%Note: -14 17 m -15 17 l -15 18 l -14 18 l -14 17 l -f -16 16 m -17 16 l -17 17 l -16 17 l -16 16 l -f -11 16 m -12 16 l -12 17 l -11 17 l -11 16 l -f -13 14 m -14 14 l -14 15 l -13 15 l -13 14 l -f -10 14 m -11 14 l -11 15 l -10 15 l -10 14 l -f -15 13 m -16 13 l -16 14 l -15 14 l -15 13 l -f -11 12 m -12 12 l -12 13 l -11 13 l -11 12 l -f -13 11 m -14 11 l -14 12 l -13 12 l -13 11 l -f -17 10 m -18 10 l -18 11 l -17 11 l -17 10 l -f -) & -] E -%%EndPattern - -%%BeginPattern: (1) -(1) 10 10 18 18 [ -(0 O 0 R 0.000000 0.000000 0.000000 0 (New Color 0) 0 x 0.000000 0.000000 0.000000 0 (New Color 0) 0 X) @ -_ & -(0 O 0 R 0.999985 0.999985 0.999985 0 (New Color 255) 0 x 0.999985 0.999985 0.999985 0 (New Color 255) 0 X) @ -( -0 i 0 J 0 j 1 w 4 M []0 d -%Note: -15 17 m -16 17 l -16 18 l -15 18 l -15 17 l -f -14 17 m -15 17 l -15 18 l -14 18 l -14 17 l -f -11 17 m -12 17 l -12 18 l -11 18 l -11 17 l -f -16 16 m -17 16 l -17 17 l -16 17 l -16 16 l -f -13 16 m -14 16 l -14 17 l -13 17 l -13 16 l -f -11 16 m -12 16 l -12 17 l -11 17 l -11 16 l -f -10 16 m -11 16 l -11 17 l -10 17 l -10 16 l -f -17 15 m -18 15 l -18 16 l -17 16 l -17 15 l -f -16 15 m -17 15 l -17 16 l -16 16 l -16 15 l -f -13 15 m -14 15 l -14 16 l -13 16 l -13 15 l -f -11 15 m -12 15 l -12 16 l -11 16 l -11 15 l -f -17 14 m -18 14 l -18 15 l -17 15 l -17 14 l -f -15 14 m -16 14 l -16 15 l -15 15 l -15 14 l -f -14 14 m -15 14 l -15 15 l -14 15 l -14 14 l -f -12 14 m -13 14 l -13 15 l -12 15 l -12 14 l -f -16 13 m -17 13 l -17 14 l -16 14 l -16 13 l -f -15 13 m -16 13 l -16 14 l -15 14 l -15 13 l -f -13 13 m -14 13 l -14 14 l -13 14 l -13 13 l -f -10 13 m -11 13 l -11 14 l -10 14 l -10 13 l -f -17 12 m -18 12 l -18 13 l -17 13 l -17 12 l -f -14 12 m -15 12 l -15 13 l -14 13 l -14 12 l -f -13 12 m -14 12 l -14 13 l -13 13 l -13 12 l -f -11 12 m -12 12 l -12 13 l -11 13 l -11 12 l -f -16 11 m -17 11 l -17 12 l -16 12 l -16 11 l -f -15 11 m -16 11 l -16 12 l -15 12 l -15 11 l -f -11 11 m -12 11 l -12 12 l -11 12 l -11 11 l -f -17 10 m -18 10 l -18 11 l -17 11 l -17 10 l -f -16 10 m -17 10 l -17 11 l -16 11 l -16 10 l -f -13 10 m -14 10 l -14 11 l -13 11 l -13 10 l -f -12 10 m -13 10 l -13 11 l -12 11 l -12 10 l -f -10 10 m -11 10 l -11 11 l -10 11 l -10 10 l -f -) & -] E -%%EndPattern -%%BeginEncoding: _Times-Italic Times-Italic -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Italic /Times-Italic 0 Z -%%EndEncoding - -%%EndSetup - -0 A -0 O -0 R -0 g -0 G -0 i 0 J 0 j 1 w 4 M [] 0 d -103.504 560.496 m -463.504 560.496 l -1.008 w 0 G S -u -175.471 542.029 m -175.471 552.247 183.753 560.529 193.971 560.529 c -193.971 560.529 193.971 542.029 193.971 542.029 c -193.971 542.029 175.471 542.029 175.471 542.029 c -1 g F -193.971 560.529 m -204.188 560.529 212.471 552.247 212.471 542.029 c -212.471 542.029 193.971 542.029 193.971 542.029 c -193.971 542.029 193.971 560.529 193.971 560.529 c -1 g F -U -u -175.504 542 m -175.504 552.215 183.785 560.496 194 560.496 c -1.008 w 0 G S -194 560.496 m -204.215 560.496 212.496 552.215 212.496 542 c -1.008 w 0 G S -U -103.504 542.496 m -175.504 542.496 l -1.008 w 0 G S -211.504 542.496 m -463.504 542.496 l -1.008 w 0 G S -u -106 542 m -106 540.895 105.105 540 104 540 c -102.895 540 102 540.895 102 542 c -102 543.105 102.895 544 104 544 c -105.105 544 106 543.105 106 542 c -0 g F -U -u -105.496 542 m -105.496 541.174 104.826 540.504 104 540.504 c -103.174 540.504 102.504 541.174 102.504 542 c -102.504 542.826 103.174 543.496 104 543.496 c -104.826 543.496 105.496 542.826 105.496 542 c -1.008 w 0 G S -U -u -106 560 m -106 558.895 105.105 558 104 558 c -102.895 558 102 558.895 102 560 c -102 561.105 102.895 562 104 562 c -105.105 562 106 561.105 106 560 c -0 g F -U -u -105.496 560 m -105.496 559.174 104.826 558.504 104 558.504 c -103.174 558.504 102.504 559.174 102.504 560 c -102.504 560.826 103.174 561.496 104 561.496 c -104.826 561.496 105.496 560.826 105.496 560 c -1.008 w 0 G S -U -u -196 560 m -196 558.895 195.105 558 194 558 c -192.895 558 192 558.895 192 560 c -192 561.105 192.895 562 194 562 c -195.105 562 196 561.105 196 560 c -0 g F -U -u -195.496 560 m -195.496 559.174 194.826 558.504 194 558.504 c -193.174 558.504 192.504 559.174 192.504 560 c -192.504 560.826 193.174 561.496 194 561.496 c -194.826 561.496 195.496 560.826 195.496 560 c -1.008 w 0 G S -U -u -466 560 m -466 558.895 465.105 558 464 558 c -462.895 558 462 558.895 462 560 c -462 561.105 462.895 562 464 562 c -465.105 562 466 561.105 466 560 c -0 g F -U -u -465.496 560 m -465.496 559.174 464.826 558.504 464 558.504 c -463.174 558.504 462.504 559.174 462.504 560 c -462.504 560.826 463.174 561.496 464 561.496 c -464.826 561.496 465.496 560.826 465.496 560 c -1.008 w 0 G S -U -u -467 542 m -467 540.895 466.105 540 465 540 c -463.895 540 463 540.895 463 542 c -463 543.105 463.895 544 465 544 c -466.105 544 467 543.105 467 542 c -0 g F -U -u -466.496 542 m -466.496 541.174 465.826 540.504 465 540.504 c -464.174 540.504 463.504 541.174 463.504 542 c -463.504 542.826 464.174 543.496 465 543.496 c -465.826 543.496 466.496 542.826 466.496 542 c -1.008 w 0 G S -U -u -480.471 552.529 m -480.471 565.529 L -469.471 565.529 L -469.471 552.529 L -480.471 552.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 469.471 556.529 ]e -1 (C)t -T -u -481.471 532.529 m -481.471 545.529 L -470.471 545.529 L -470.471 532.529 L -481.471 532.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 470.471 536.529 ]e -1 (D)t -T -u -101.471 551.529 m -101.471 564.529 L -91.471 564.529 L -91.471 551.529 L -101.471 551.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 91.471 555.529 ]e -1 (A)t -T -u -101.471 532.529 m -101.471 545.529 L -91.471 545.529 L -91.471 532.529 L -101.471 532.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 91.471 536.529 ]e -1 (B)t -T -u -201.471 560.529 m -201.471 573.529 L -191.471 573.529 L -191.471 560.529 L -201.471 560.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 191.471 564.529 ]e -1 (P)t -T - -%%Trailer -Adobe_Illustrator88 /terminate get exec -Adobe_pattern /terminate get exec -Adobe_customcolor /terminate get exec -Adobe_cshow /terminate get exec -Adobe_cmykcolor /terminate get exec -Adobe_packedarray /terminate get exec -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob08.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob08.gif deleted file mode 100755 index cbbee814c..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob08.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob09.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob09.eps deleted file mode 100755 index 1e34a1209..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob09.eps +++ /dev/null @@ -1,1926 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad 6.0.1 -%%Title: prob5-7.eps -%%CreationDate: 5/9/1997 -%%DocumentProcSets: Adobe_packedarray 1.0 0 -%%DocumentSuppliedProcSets: Adobe_packedarray 1.0 0 -%%DocumentProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentProcSets: Adobe_cshow 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cshow 1.1 0 -%%DocumentProcSets: Adobe_customcolor 1.0 0 -%%DocumentSuppliedProcSets: Adobe_customcolor 1.0 0 -%%DocumentProcSets: Adobe_pattern 1.9 0 -%%DocumentSuppliedProcSets: Adobe_pattern 1.9 0 -%%DocumentProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentSuppliedProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentFonts: Times-Italic -%%BoundingBox:184 456 387 661 -%%TemplateBox:306 396 306 396 -%%DocumentPreview: Header -%%EndComments - -%%BeginProlog -%%BeginProcSet: Adobe_packedarray 1.0 0 -userdict /Adobe_packedarray 5 dict dup begin put -/initialize -{ -/packedarray where - { - pop - } - { - Adobe_packedarray begin - Adobe_packedarray - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - } ifelse -} def -/terminate -{ -} def -/packedarray -{ -array astore readonly -} def -/setpacking -{ -pop -} def -/currentpacking -{ -false -} def -currentdict readonly pop end -%%EndProcSet -Adobe_packedarray /initialize get exec -%%BeginProcSet: Adobe_cmykcolor 1.1 0 -currentpacking true setpacking -userdict /Adobe_cmykcolor 4 dict dup begin put -/initialize -{ -/setcmykcolor where - { - pop - } - { - userdict /Adobe_cmykcolor_vars 2 dict dup begin put - /_setrgbcolor - /setrgbcolor load def - /_currentrgbcolor - /currentrgbcolor load def - Adobe_cmykcolor begin - Adobe_cmykcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - end - Adobe_cmykcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_cmykcolor eq - { - end - } if -} def -/setcmykcolor -{ -1 sub 4 1 roll -3 - { - 3 index add neg dup 0 lt - { - pop 0 - } if - 3 1 roll - } repeat -Adobe_cmykcolor_vars /_setrgbcolor get exec -pop -} def -/currentcmykcolor -{ -Adobe_cmykcolor_vars /_currentrgbcolor get exec -3 - { - 1 sub neg 3 1 roll - } repeat -0 -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_cshow 1.1 0 -currentpacking true setpacking -userdict /Adobe_cshow 3 dict dup begin put -/initialize -{ -/cshow where - { - pop - } - { - userdict /Adobe_cshow_vars 1 dict dup begin put - /_cshow - {} def - Adobe_cshow begin - Adobe_cshow - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - end - } ifelse -} def -/terminate -{ -} def -/cshow -{ -exch -Adobe_cshow_vars - exch /_cshow - exch put - { - 0 0 Adobe_cshow_vars /_cshow get exec - } forall -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_customcolor 1.0 0 -currentpacking true setpacking -userdict /Adobe_customcolor 5 dict dup begin put -/initialize -{ -/setcustomcolor where - { - pop - } - { - Adobe_customcolor begin - Adobe_customcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - Adobe_customcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_customcolor eq - { - end - } if -} def -/findcmykcustomcolor -{ -5 packedarray -} def -/setcustomcolor -{ -exch -aload pop pop -4 - { - 4 index mul 4 1 roll - } repeat -5 -1 roll pop -setcmykcolor -} def -/setoverprint -{ -pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_pattern 1.9 0 -currentpacking true setpacking -userdict /Adobe_pattern 14 dict dup begin put -/initialize -{ -/definepattern where - { - pop - } - { - Adobe_pattern begin - Adobe_pattern - { - dup xcheck - { - bind - } if - pop pop - } forall - mark - cachestatus 7 1 roll pop pop pop pop exch pop exch - { - { - 10000 add - dup 2 index gt - { - break - } if - dup setcachelimit - } loop - } stopped - cleartomark - } ifelse -} def -/terminate -{ -currentdict Adobe_pattern eq - { - end - } if -} def -errordict -/nocurrentpoint -{ -pop -stop -} put -errordict -/invalidaccess -{ -pop -stop -} put -/patternencoding -256 array def -0 1 255 -{ -patternencoding exch ( ) 2 copy exch 0 exch put cvn put -} for -/definepattern -{ -17 dict begin -/uniform exch def -/cache exch def -/key exch def -/procarray exch def -/mtx exch matrix invertmatrix def -/height exch def -/width exch def -/ctm matrix currentmatrix def -/ptm matrix def -/str 32 string def -/slice 9 dict def -slice /s 1 put -slice /q 256 procarray length div sqrt floor cvi put -slice /b 0 put -/FontBBox [0 0 0 0] def -/FontMatrix mtx matrix copy def -/Encoding patternencoding def -/FontType 3 def -/BuildChar - { - exch - begin - slice begin - dup q dup mul mod s idiv /i exch def - dup q dup mul mod s mod /j exch def - q dup mul idiv procarray exch get - /xl j width s div mul def - /xg j 1 add width s div mul def - /yl i height s div mul def - /yg i 1 add height s div mul def - uniform - { - 1 1 - } - { - width 0 dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - 0 height dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - } ifelse - width 0 cache - { - xl 4 index mul yl 4 index mul xg 6 index mul yg 6 index mul - setcachedevice - } - { - setcharwidth - } ifelse - gsave - scale - newpath - xl yl moveto - xg yl lineto - xg yg lineto - xl yg lineto - closepath - clip - newpath - end - end - exec - grestore - } def -key currentdict definefont -end -} def -/patterncachesize -{ -gsave -newpath -0 0 moveto -width 0 lineto -width height lineto -0 height lineto -closepath -patternmatrix setmatrix -pathbbox -exch ceiling 4 -1 roll floor sub 3 1 roll -ceiling exch floor sub -mul 1 add -grestore -} def -/patterncachelimit -{ -cachestatus 7 1 roll pop pop pop pop pop pop 8 mul -} def -/patternpath -{ -exch dup begin setfont -ctm setmatrix -concat -slice exch /b exch slice /q get dup mul mul put -FontMatrix concat -uniform - { - width 0 dtransform round width div exch round width div exch - 0 height dtransform round height div exch height div exch - 0 0 transform round exch round exch - ptm astore setmatrix - } - { - ptm currentmatrix pop - } ifelse -{currentpoint} stopped not - { - pop pop - pathbbox - true - 4 index 3 index eq - 4 index 3 index eq - and - { - pop false - { - {pop pop} - {pop pop pop true} - {pop pop pop pop pop pop pop true} - {pop true} - pathforall - } stopped - { - pop pop pop pop pop true - } if - } if - { - height div ceiling height mul 4 1 roll - width div ceiling width mul 4 1 roll - height div floor height mul 4 1 roll - width div floor width mul 4 1 roll - 2 index sub height div ceiling cvi exch - 3 index sub width div ceiling cvi exch - 4 2 roll moveto - FontMatrix mtx invertmatrix - dup dup 4 get exch 5 get rmoveto - ptm ptm concatmatrix pop - slice /s - patterncachesize patterncachelimit div ceiling sqrt ceiling cvi - dup slice /q get gt - { - pop slice /q get - } if - put - 0 1 slice /s get dup mul 1 sub - { - slice /b get add - gsave - 0 1 str length 1 sub - { - str exch 2 index put - } for - pop - dup - { - gsave - ptm setmatrix - 1 index str length idiv {str show} repeat - 1 index str length mod str exch 0 exch getinterval show - grestore - 0 height rmoveto - } repeat - grestore - } for - pop pop - } - { - pop pop pop pop - } ifelse - } if -end -} def -/patternclip -{ -clip -} def -/patternstrokepath -{ -strokepath -} def -/patternmatrix -matrix def -/patternfill -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternclip -Adobe_pattern /patternpath get exec -grestore -newpath -} def -/patternstroke -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternstrokepath -true - { - { - { - newpath - moveto - } - { - lineto - } - { - curveto - } - { - closepath - 3 copy - Adobe_pattern /patternfill get exec - } pathforall - pop pop pop - } stopped - { - pop pop pop pop pop - patternclip - Adobe_pattern /patternfill get exec - } if - } - { - patternclip - Adobe_pattern /patternfill get exec - } ifelse -grestore -newpath -} def -/patternashow -{ -3 index type /dicttype eq - { - Adobe_pattern /patternmatrix get 4 1 roll - } if - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 6 index 6 index 6 index - Adobe_pattern /patternfill get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop -} def -/patternashowstroke -{ -4 index type /dicttype eq - { - patternmatrix /patternmatrix get 5 1 roll - } if -4 1 roll - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - 7 index 7 index 7 index - Adobe_pattern /patternstroke get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_Illustrator88 1.19 0 -currentpacking true setpacking -userdict /Adobe_Illustrator88 73 dict dup begin put -/initialize -{ -userdict /Adobe_Illustrator88_vars 31 dict dup begin put -/_lp /none def -/_pf {} def -/_ps {} def -/_psf {} def -/_pss {} def -/_a null def -/_as null def -/_tt 2 array def -/_tl 2 array def -/_tm matrix def -/t {} def -/_gf null def -/_cf 4 array def -/_if null def -/_of false def -/_fc {} def -/_gs null def -/_cs 4 array def -/_is null def -/_os false def -/_sc {} def -/_pd 1 dict def -/_ed 15 dict def -/_pm matrix def -/_fm null def -/_fd null def -/_fdd null def -/_sm null def -/_sd null def -/_sdd null def -/_i null def -Adobe_Illustrator88 begin -Adobe_Illustrator88 dup /nc get begin - { - dup xcheck - { - bind - } if - pop pop - } forall -end -end -end -Adobe_Illustrator88 begin -Adobe_Illustrator88_vars begin -newpath -} def -/terminate -{ -end -end -} def -/_ -null def -/ddef -{ -Adobe_Illustrator88_vars 3 1 roll put -} def -/xput -{ -dup load dup length exch maxlength eq - { - dup dup load dup - length 2 mul dict copy def - } if -load begin def end -} def -/npop -{ - { - pop - } repeat -} def -/sw -{ -stringwidth -exch 5 -1 roll 3 index 1 sub mul add -4 1 roll 3 1 roll 1 sub mul add -} def -/ss -{ -3 -1 roll pop -4 1 roll - { - 2 npop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - stroke - grestore - moveto - 2 copy rmoveto - } exch cshow -3 npop -} def -/sp -{ -exch pop - { - 2 npop (0) exch - 2 copy 0 exch put pop - false charpath - 2 copy rmoveto - } exch cshow -2 npop -} def -/pl -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where -{ -pop true setstrokeadjust -/c -{ -curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll curveto -} def -/V -/v load def -/y -{ -2 copy curveto -} def -/Y -/y load def -/l -{ -lineto -} def -/L -/l load def -/m -{ -moveto -} def -} -{ -/c -{ -pl curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll pl curveto -} def -/V -/v load def -/y -{ -pl 2 copy curveto -} def -/Y -/y load def -/l -{ -pl lineto -} def -/L -/l load def -/m -{ -pl moveto -} def -} ifelse -/d -{ -setdash -} def -/cf -currentflat def -/i -{ -dup 0 eq - { - pop cf - } if -setflat -} def -/j -{ -setlinejoin -} def -/J -{ -setlinecap -} def -/M -{ -setmiterlimit -} def -/w -{ -setlinewidth -} def -/H -{} def -/h -{ -closepath -} def -/N -{ -newpath -} def -/n -/N load def -/F -{ -_pf -} def -/f -{ -closepath -F -} def -/S -{ -_ps -} def -/s -{ -closepath -S -} def -/B -{ -gsave F grestore -S -} def -/b -{ -closepath -B -} def -/W -{ -clip -} def -/ta -{ -_as moveto -_tt aload pop 4 -2 roll -} def -/tl -{ -_tl aload pop translate -} def -/as -{ -{ -0 0 -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg 2 div exch neg 2 div -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg exch neg -} -{ -0 0 -} -} cvlit def -/z -{ -/_a exch ddef -/_as as _a get ddef -_a 2 le - { - 0 _tt astore pop - 0 exch neg _tl astore pop - } - { - 0 exch neg _tt astore pop - neg 0 _tl astore pop - } ifelse -exch findfont exch scalefont setfont -} def -/tm -{ -_tm currentmatrix pop -concat -} def -/I -{ -tm -/t - { - ta sp - tl - } ddef -} def -/o -{ -tm -/t - { - ta 4 npop - tl - newpath - } ddef -} def -/e -{ -tm -/t - { - ta _psf - tl - newpath - } ddef -} def -/r -{ -tm -/t - { - ta _tm _pss - tl - newpath - } ddef -} def -/a -{ -tm -/t - { - 2 copy - ta _psf - newpath - ta _tm _pss - tl - newpath - } ddef -} def -/T -{ -_tm setmatrix -} def -/Z -{ -pop -findfont begin -currentdict dup length 1 add dict begin - { - 1 index /FID ne - { - def - } - { - 2 npop - } ifelse - } forall -/FontName exch def dup length 0 ne - { - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - { - Encoding 2 index 2 index put pop - 1 add - } - { - exch pop - } ifelse - } forall - } if pop -currentdict dup end end -/FontName get exch definefont pop -} def -/u -{} def -/U -{} def -/q -{ -gsave -} def -/Q -{ -grestore -} def -/` -{ -/_i save ddef -6 1 roll 4 npop -concat -userdict begin -/showpage {} def -false setoverprint -pop -} def -/~ -{ -end -_i restore -} def -/@ -{} def -/& -{} def -/O -{ -0 ne -/_of exch ddef -/_lp /none ddef -} def -/R -{ -0 ne -/_os exch ddef -/_lp /none ddef -} def -/g -{ -/_gf exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _gf setgray - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/G -{ -/_gs exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _gs setgray - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/k -{ -_cf astore pop -/_fc -{ -_lp /fill ne - { - _of setoverprint - _cf aload pop setcmykcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/K -{ -_cs astore pop -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _cs aload pop setcmykcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/x -{ -/_gf exch ddef -findcmykcustomcolor -/_if exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _if _gf 1 exch sub setcustomcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/X -{ -/_gs exch ddef -findcmykcustomcolor -/_is exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _is _gs 1 exch sub setcustomcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/dp -{ -dup null eq -{ -pop -_dp 0 ne - { - 0 1 _dp 1 sub _dl mod - { - _da exch get 3 get - } for - _dp 1 sub _dl mod 1 add packedarray - _da 0 get aload pop 8 -1 roll 5 -1 roll pop 4 1 roll - definepattern pop - } if -} -{ -_dp 0 ne _dp _dl mod 0 eq and - { - null dp - } if -7 packedarray _da exch _dp _dl mod exch put -_dp _dl mod _da 0 get 4 get 2 packedarray -/_dp _dp 1 add def -} ifelse -} def -/E -{ -_ed begin -dup 0 get type /arraytype ne - { - 0 - { - dup 1 add index type /arraytype eq - { - 1 add - } - { - exit - } ifelse - } loop - array astore - } if -/_dd exch def -/_ury exch def -/_urx exch def -/_lly exch def -/_llx exch def -/_n exch def -/_y 0 def -/_dl 4 def -/_dp 0 def -/_da _dl array def -0 1 _dd length 1 sub - { - /_d exch _dd exch get def - 0 2 _d length 2 sub - { - /_x exch def - /_c _d _x get _ ne def - /_r _d _x 1 add get cvlit def - _r _ ne - { - _urx _llx sub _ury _lly sub [1 0 0 1 0 0] - [ - /save cvx - _llx neg _lly neg /translate cvx - _c - { - nc /begin cvx - } if - _r dup type /stringtype eq - { - cvx - } - { - {exec} /forall cvx - } ifelse - _c - { - /end cvx - } if - /restore cvx - ] cvx - /_fn 12 _n length add string def - _y _fn cvs pop - /_y _y 1 add def - _fn 12 _n putinterval - _fn _c false dp - _d exch _x 1 add exch put - } if - } for - } for -null dp -_n _dd /_pd -end xput -} def -/fc -{ -_fm dup concatmatrix pop -} def -/p -{ -/_fm exch ddef -9 -2 roll _pm translate fc -7 -2 roll _pm scale fc -5 -1 roll _pm rotate fc -4 -2 roll exch 0 ne - { - dup _pm rotate fc - 1 -1 _pm scale fc - neg _pm rotate fc - } - { - pop - } ifelse -dup _pm rotate fc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore fc -neg _pm rotate fc -_pd exch get /_fdd exch ddef -/_pf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - patternfill - } - { - pop - fill - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_psf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - 10 copy 6 npop exch pop patternashow - } - { - pop - 7 copy 3 npop exch pop ashow - } ifelse - grestore - pop - } for - pop - } for -restore -4 npop newpath -} ddef -/_lp /none ddef -} def -/sc -{ -_sm dup concatmatrix pop -} def -/P -{ -/_sm exch ddef -9 -2 roll _pm translate sc -7 -2 roll _pm scale sc -5 -1 roll _pm rotate sc -4 -2 roll exch 0 ne - { - dup _pm rotate sc - 1 -1 _pm scale sc - neg _pm rotate sc - } - { - pop - } ifelse -dup _pm rotate sc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore sc -neg _pm rotate sc -_pd exch get /_sdd exch ddef -/_ps -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - patternstroke - } - { - pop stroke - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_pss -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - 11 copy 6 npop 3 -1 roll pop patternashowstroke - } - { - pop - 8 copy 3 npop ss - } ifelse - grestore - pop - } for - pop - } for -restore -5 npop newpath -} ddef -/_lp /none ddef -} def -/A -{ -pop -} def -/nc 3 dict def -nc begin -/setgray -{ -pop -} bind def -/setcmykcolor -{ -4 npop -} bind def -/setcustomcolor -{ -2 npop -} bind def -currentdict readonly pop end -currentdict readonly pop end -setpacking -%%EndProcSet -%%EndProlog - -%%BeginSetup -Adobe_cmykcolor /initialize get exec -Adobe_cshow /initialize get exec -Adobe_customcolor /initialize get exec -Adobe_pattern /initialize get exec -Adobe_Illustrator88 /initialize get exec - -%%BeginPattern: (0) -(0) 10 10 18 18 [ -(0 O 0 R 0.000000 0.000000 0.000000 0 (New Color 0) 0 x 0.000000 0.000000 0.000000 0 (New Color 0) 0 X) @ -_ & -(0 O 0 R 0.999985 0.999985 0.999985 0 (New Color 255) 0 x 0.999985 0.999985 0.999985 0 (New Color 255) 0 X) @ -( -0 i 0 J 0 j 1 w 4 M []0 d -%Note: -14 17 m -15 17 l -15 18 l -14 18 l -14 17 l -f -16 16 m -17 16 l -17 17 l -16 17 l -16 16 l -f -11 16 m -12 16 l -12 17 l -11 17 l -11 16 l -f -13 14 m -14 14 l -14 15 l -13 15 l -13 14 l -f -10 14 m -11 14 l -11 15 l -10 15 l -10 14 l -f -15 13 m -16 13 l -16 14 l -15 14 l -15 13 l -f -11 12 m -12 12 l -12 13 l -11 13 l -11 12 l -f -13 11 m -14 11 l -14 12 l -13 12 l -13 11 l -f -17 10 m -18 10 l -18 11 l -17 11 l -17 10 l -f -) & -] E -%%EndPattern - -%%BeginPattern: (1) -(1) 10 10 18 18 [ -(0 O 0 R 0.000000 0.000000 0.000000 0 (New Color 0) 0 x 0.000000 0.000000 0.000000 0 (New Color 0) 0 X) @ -_ & -(0 O 0 R 0.999985 0.999985 0.999985 0 (New Color 255) 0 x 0.999985 0.999985 0.999985 0 (New Color 255) 0 X) @ -( -0 i 0 J 0 j 1 w 4 M []0 d -%Note: -15 17 m -16 17 l -16 18 l -15 18 l -15 17 l -f -14 17 m -15 17 l -15 18 l -14 18 l -14 17 l -f -11 17 m -12 17 l -12 18 l -11 18 l -11 17 l -f -16 16 m -17 16 l -17 17 l -16 17 l -16 16 l -f -13 16 m -14 16 l -14 17 l -13 17 l -13 16 l -f -11 16 m -12 16 l -12 17 l -11 17 l -11 16 l -f -10 16 m -11 16 l -11 17 l -10 17 l -10 16 l -f -17 15 m -18 15 l -18 16 l -17 16 l -17 15 l -f -16 15 m -17 15 l -17 16 l -16 16 l -16 15 l -f -13 15 m -14 15 l -14 16 l -13 16 l -13 15 l -f -11 15 m -12 15 l -12 16 l -11 16 l -11 15 l -f -17 14 m -18 14 l -18 15 l -17 15 l -17 14 l -f -15 14 m -16 14 l -16 15 l -15 15 l -15 14 l -f -14 14 m -15 14 l -15 15 l -14 15 l -14 14 l -f -12 14 m -13 14 l -13 15 l -12 15 l -12 14 l -f -16 13 m -17 13 l -17 14 l -16 14 l -16 13 l -f -15 13 m -16 13 l -16 14 l -15 14 l -15 13 l -f -13 13 m -14 13 l -14 14 l -13 14 l -13 13 l -f -10 13 m -11 13 l -11 14 l -10 14 l -10 13 l -f -17 12 m -18 12 l -18 13 l -17 13 l -17 12 l -f -14 12 m -15 12 l -15 13 l -14 13 l -14 12 l -f -13 12 m -14 12 l -14 13 l -13 13 l -13 12 l -f -11 12 m -12 12 l -12 13 l -11 13 l -11 12 l -f -16 11 m -17 11 l -17 12 l -16 12 l -16 11 l -f -15 11 m -16 11 l -16 12 l -15 12 l -15 11 l -f -11 11 m -12 11 l -12 12 l -11 12 l -11 11 l -f -17 10 m -18 10 l -18 11 l -17 11 l -17 10 l -f -16 10 m -17 10 l -17 11 l -16 11 l -16 10 l -f -13 10 m -14 10 l -14 11 l -13 11 l -13 10 l -f -12 10 m -13 10 l -13 11 l -12 11 l -12 10 l -f -10 10 m -11 10 l -11 11 l -10 11 l -10 10 l -f -) & -] E -%%EndPattern -%%BeginEncoding: _Times-Italic Times-Italic -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Italic /Times-Italic 0 Z -%%EndEncoding - -%%EndSetup - -0 A -0 O -0 R -0 g -0 G -0 i 0 J 0 j 1 w 4 M [] 0 d -u -206 539 m -206 523.536 201.523 511 196 511 c -190.477 511 186 523.536 186 539 c -186 554.464 190.477 567 196 567 c -201.523 567 206 554.464 206 539 c -1 g F -U -u -205.496 539 m -205.496 523.814 201.245 511.504 196 511.504 c -190.755 511.504 186.504 523.814 186.504 539 c -186.504 554.186 190.755 566.496 196 566.496 c -201.245 566.496 205.496 554.186 205.496 539 c -1.008 w 0 G S -U -u -386 539 m -386 493.713 373.464 457 358 457 c -342.536 457 330 493.713 330 539 c -330 584.287 342.536 621 358 621 c -373.464 621 386 584.287 386 539 c -1 g F -U -u -385.496 539 m -385.496 493.991 373.186 457.504 358 457.504 c -342.814 457.504 330.504 493.991 330.504 539 c -330.504 584.009 342.814 620.496 358 620.496 c -373.186 620.496 385.496 584.009 385.496 539 c -1.008 w 0 G S -U -195.504 566.496 m -357.504 620.496 l -1.008 w 0 G S -195.504 512.496 m -357.504 458.496 l -1.008 w 0 G S -357.504 539.496 m -357.504 611.496 l -1.008 w 0 G S -u -357.471 620.529 m -360.471 611.529 L -357.471 611.529 L -354.471 611.529 L -357.471 620.529 L - -0 g F -U -u -357.504 620.496 m -360.504 611.496 L -357.504 611.496 L -354.504 611.496 L -357.504 620.496 L - -1.008 w 0 G s -U -195.504 539.496 m -195.504 557.496 l -1.008 w 0 G S -u -195.471 566.529 m -198.471 557.529 L -195.471 557.529 L -192.471 557.529 L -195.471 566.529 L - -0 g F -U -u -195.504 566.496 m -198.504 557.496 L -195.504 557.496 L -192.504 557.496 L -195.504 566.496 L - -1.008 w 0 G s -U -195.504 573.496 m -195.504 656.496 l -1.008 w 0 G S -357.504 627.496 m -357.504 656.496 l -1.008 w 0 G S -204.504 647.496 m -348.504 647.496 l -1.008 w 0 G S -u -195.471 647.529 m -204.471 644.529 L -204.471 647.529 L -204.471 650.529 L -195.471 647.529 L - -0 g F -U -u -195.504 647.496 m -204.504 644.496 L -204.504 647.496 L -204.504 650.496 L -195.504 647.496 L - -1.008 w 0 G s -U -u -357.471 647.529 m -348.471 644.529 L -348.471 647.529 L -348.471 650.529 L -357.471 647.529 L - -0 g F -U -u -357.504 647.496 m -348.504 644.496 L -348.504 647.496 L -348.504 650.496 L -357.504 647.496 L - -1.008 w 0 G s -U -u -281.471 637.529 m -281.471 650.529 L -272.471 650.529 L -272.471 637.529 L -281.471 637.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 272.471 641.529 ]e -1 (h)t -T -u -370.471 570.529 m -370.471 583.529 L -361.471 583.529 L -361.471 570.529 L -370.471 570.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 361.471 574.529 ]e -1 (b)t -T -u -210.471 539.529 m -210.471 552.529 L -201.471 552.529 L -201.471 539.529 L -210.471 539.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 201.471 543.529 ]e -1 (a)t -T - -%%Trailer -Adobe_Illustrator88 /terminate get exec -Adobe_pattern /terminate get exec -Adobe_customcolor /terminate get exec -Adobe_cshow /terminate get exec -Adobe_cmykcolor /terminate get exec -Adobe_packedarray /terminate get exec -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob09.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob09.gif deleted file mode 100755 index ada76deac..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob09.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob12a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob12a.eps deleted file mode 100755 index 5f620981b..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob12a.eps +++ /dev/null @@ -1,2015 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad 6.0.1 -%%Title: prob5-2.eps -%%CreationDate: 5/9/1997 -%%DocumentProcSets: Adobe_packedarray 1.0 0 -%%DocumentSuppliedProcSets: Adobe_packedarray 1.0 0 -%%DocumentProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentProcSets: Adobe_cshow 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cshow 1.1 0 -%%DocumentProcSets: Adobe_customcolor 1.0 0 -%%DocumentSuppliedProcSets: Adobe_customcolor 1.0 0 -%%DocumentProcSets: Adobe_pattern 1.9 0 -%%DocumentSuppliedProcSets: Adobe_pattern 1.9 0 -%%DocumentProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentSuppliedProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentFonts: Times-Italic -%%BoundingBox:78 453 489 663 -%%TemplateBox:306 396 306 396 -%%DocumentPreview: Header -%%EndComments - -%%BeginProlog -%%BeginProcSet: Adobe_packedarray 1.0 0 -userdict /Adobe_packedarray 5 dict dup begin put -/initialize -{ -/packedarray where - { - pop - } - { - Adobe_packedarray begin - Adobe_packedarray - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - } ifelse -} def -/terminate -{ -} def -/packedarray -{ -array astore readonly -} def -/setpacking -{ -pop -} def -/currentpacking -{ -false -} def -currentdict readonly pop end -%%EndProcSet -Adobe_packedarray /initialize get exec -%%BeginProcSet: Adobe_cmykcolor 1.1 0 -currentpacking true setpacking -userdict /Adobe_cmykcolor 4 dict dup begin put -/initialize -{ -/setcmykcolor where - { - pop - } - { - userdict /Adobe_cmykcolor_vars 2 dict dup begin put - /_setrgbcolor - /setrgbcolor load def - /_currentrgbcolor - /currentrgbcolor load def - Adobe_cmykcolor begin - Adobe_cmykcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - end - Adobe_cmykcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_cmykcolor eq - { - end - } if -} def -/setcmykcolor -{ -1 sub 4 1 roll -3 - { - 3 index add neg dup 0 lt - { - pop 0 - } if - 3 1 roll - } repeat -Adobe_cmykcolor_vars /_setrgbcolor get exec -pop -} def -/currentcmykcolor -{ -Adobe_cmykcolor_vars /_currentrgbcolor get exec -3 - { - 1 sub neg 3 1 roll - } repeat -0 -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_cshow 1.1 0 -currentpacking true setpacking -userdict /Adobe_cshow 3 dict dup begin put -/initialize -{ -/cshow where - { - pop - } - { - userdict /Adobe_cshow_vars 1 dict dup begin put - /_cshow - {} def - Adobe_cshow begin - Adobe_cshow - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - end - } ifelse -} def -/terminate -{ -} def -/cshow -{ -exch -Adobe_cshow_vars - exch /_cshow - exch put - { - 0 0 Adobe_cshow_vars /_cshow get exec - } forall -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_customcolor 1.0 0 -currentpacking true setpacking -userdict /Adobe_customcolor 5 dict dup begin put -/initialize -{ -/setcustomcolor where - { - pop - } - { - Adobe_customcolor begin - Adobe_customcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - Adobe_customcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_customcolor eq - { - end - } if -} def -/findcmykcustomcolor -{ -5 packedarray -} def -/setcustomcolor -{ -exch -aload pop pop -4 - { - 4 index mul 4 1 roll - } repeat -5 -1 roll pop -setcmykcolor -} def -/setoverprint -{ -pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_pattern 1.9 0 -currentpacking true setpacking -userdict /Adobe_pattern 14 dict dup begin put -/initialize -{ -/definepattern where - { - pop - } - { - Adobe_pattern begin - Adobe_pattern - { - dup xcheck - { - bind - } if - pop pop - } forall - mark - cachestatus 7 1 roll pop pop pop pop exch pop exch - { - { - 10000 add - dup 2 index gt - { - break - } if - dup setcachelimit - } loop - } stopped - cleartomark - } ifelse -} def -/terminate -{ -currentdict Adobe_pattern eq - { - end - } if -} def -errordict -/nocurrentpoint -{ -pop -stop -} put -errordict -/invalidaccess -{ -pop -stop -} put -/patternencoding -256 array def -0 1 255 -{ -patternencoding exch ( ) 2 copy exch 0 exch put cvn put -} for -/definepattern -{ -17 dict begin -/uniform exch def -/cache exch def -/key exch def -/procarray exch def -/mtx exch matrix invertmatrix def -/height exch def -/width exch def -/ctm matrix currentmatrix def -/ptm matrix def -/str 32 string def -/slice 9 dict def -slice /s 1 put -slice /q 256 procarray length div sqrt floor cvi put -slice /b 0 put -/FontBBox [0 0 0 0] def -/FontMatrix mtx matrix copy def -/Encoding patternencoding def -/FontType 3 def -/BuildChar - { - exch - begin - slice begin - dup q dup mul mod s idiv /i exch def - dup q dup mul mod s mod /j exch def - q dup mul idiv procarray exch get - /xl j width s div mul def - /xg j 1 add width s div mul def - /yl i height s div mul def - /yg i 1 add height s div mul def - uniform - { - 1 1 - } - { - width 0 dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - 0 height dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - } ifelse - width 0 cache - { - xl 4 index mul yl 4 index mul xg 6 index mul yg 6 index mul - setcachedevice - } - { - setcharwidth - } ifelse - gsave - scale - newpath - xl yl moveto - xg yl lineto - xg yg lineto - xl yg lineto - closepath - clip - newpath - end - end - exec - grestore - } def -key currentdict definefont -end -} def -/patterncachesize -{ -gsave -newpath -0 0 moveto -width 0 lineto -width height lineto -0 height lineto -closepath -patternmatrix setmatrix -pathbbox -exch ceiling 4 -1 roll floor sub 3 1 roll -ceiling exch floor sub -mul 1 add -grestore -} def -/patterncachelimit -{ -cachestatus 7 1 roll pop pop pop pop pop pop 8 mul -} def -/patternpath -{ -exch dup begin setfont -ctm setmatrix -concat -slice exch /b exch slice /q get dup mul mul put -FontMatrix concat -uniform - { - width 0 dtransform round width div exch round width div exch - 0 height dtransform round height div exch height div exch - 0 0 transform round exch round exch - ptm astore setmatrix - } - { - ptm currentmatrix pop - } ifelse -{currentpoint} stopped not - { - pop pop - pathbbox - true - 4 index 3 index eq - 4 index 3 index eq - and - { - pop false - { - {pop pop} - {pop pop pop true} - {pop pop pop pop pop pop pop true} - {pop true} - pathforall - } stopped - { - pop pop pop pop pop true - } if - } if - { - height div ceiling height mul 4 1 roll - width div ceiling width mul 4 1 roll - height div floor height mul 4 1 roll - width div floor width mul 4 1 roll - 2 index sub height div ceiling cvi exch - 3 index sub width div ceiling cvi exch - 4 2 roll moveto - FontMatrix mtx invertmatrix - dup dup 4 get exch 5 get rmoveto - ptm ptm concatmatrix pop - slice /s - patterncachesize patterncachelimit div ceiling sqrt ceiling cvi - dup slice /q get gt - { - pop slice /q get - } if - put - 0 1 slice /s get dup mul 1 sub - { - slice /b get add - gsave - 0 1 str length 1 sub - { - str exch 2 index put - } for - pop - dup - { - gsave - ptm setmatrix - 1 index str length idiv {str show} repeat - 1 index str length mod str exch 0 exch getinterval show - grestore - 0 height rmoveto - } repeat - grestore - } for - pop pop - } - { - pop pop pop pop - } ifelse - } if -end -} def -/patternclip -{ -clip -} def -/patternstrokepath -{ -strokepath -} def -/patternmatrix -matrix def -/patternfill -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternclip -Adobe_pattern /patternpath get exec -grestore -newpath -} def -/patternstroke -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternstrokepath -true - { - { - { - newpath - moveto - } - { - lineto - } - { - curveto - } - { - closepath - 3 copy - Adobe_pattern /patternfill get exec - } pathforall - pop pop pop - } stopped - { - pop pop pop pop pop - patternclip - Adobe_pattern /patternfill get exec - } if - } - { - patternclip - Adobe_pattern /patternfill get exec - } ifelse -grestore -newpath -} def -/patternashow -{ -3 index type /dicttype eq - { - Adobe_pattern /patternmatrix get 4 1 roll - } if - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 6 index 6 index 6 index - Adobe_pattern /patternfill get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop -} def -/patternashowstroke -{ -4 index type /dicttype eq - { - patternmatrix /patternmatrix get 5 1 roll - } if -4 1 roll - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - 7 index 7 index 7 index - Adobe_pattern /patternstroke get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_Illustrator88 1.19 0 -currentpacking true setpacking -userdict /Adobe_Illustrator88 73 dict dup begin put -/initialize -{ -userdict /Adobe_Illustrator88_vars 31 dict dup begin put -/_lp /none def -/_pf {} def -/_ps {} def -/_psf {} def -/_pss {} def -/_a null def -/_as null def -/_tt 2 array def -/_tl 2 array def -/_tm matrix def -/t {} def -/_gf null def -/_cf 4 array def -/_if null def -/_of false def -/_fc {} def -/_gs null def -/_cs 4 array def -/_is null def -/_os false def -/_sc {} def -/_pd 1 dict def -/_ed 15 dict def -/_pm matrix def -/_fm null def -/_fd null def -/_fdd null def -/_sm null def -/_sd null def -/_sdd null def -/_i null def -Adobe_Illustrator88 begin -Adobe_Illustrator88 dup /nc get begin - { - dup xcheck - { - bind - } if - pop pop - } forall -end -end -end -Adobe_Illustrator88 begin -Adobe_Illustrator88_vars begin -newpath -} def -/terminate -{ -end -end -} def -/_ -null def -/ddef -{ -Adobe_Illustrator88_vars 3 1 roll put -} def -/xput -{ -dup load dup length exch maxlength eq - { - dup dup load dup - length 2 mul dict copy def - } if -load begin def end -} def -/npop -{ - { - pop - } repeat -} def -/sw -{ -stringwidth -exch 5 -1 roll 3 index 1 sub mul add -4 1 roll 3 1 roll 1 sub mul add -} def -/ss -{ -3 -1 roll pop -4 1 roll - { - 2 npop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - stroke - grestore - moveto - 2 copy rmoveto - } exch cshow -3 npop -} def -/sp -{ -exch pop - { - 2 npop (0) exch - 2 copy 0 exch put pop - false charpath - 2 copy rmoveto - } exch cshow -2 npop -} def -/pl -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where -{ -pop true setstrokeadjust -/c -{ -curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll curveto -} def -/V -/v load def -/y -{ -2 copy curveto -} def -/Y -/y load def -/l -{ -lineto -} def -/L -/l load def -/m -{ -moveto -} def -} -{ -/c -{ -pl curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll pl curveto -} def -/V -/v load def -/y -{ -pl 2 copy curveto -} def -/Y -/y load def -/l -{ -pl lineto -} def -/L -/l load def -/m -{ -pl moveto -} def -} ifelse -/d -{ -setdash -} def -/cf -currentflat def -/i -{ -dup 0 eq - { - pop cf - } if -setflat -} def -/j -{ -setlinejoin -} def -/J -{ -setlinecap -} def -/M -{ -setmiterlimit -} def -/w -{ -setlinewidth -} def -/H -{} def -/h -{ -closepath -} def -/N -{ -newpath -} def -/n -/N load def -/F -{ -_pf -} def -/f -{ -closepath -F -} def -/S -{ -_ps -} def -/s -{ -closepath -S -} def -/B -{ -gsave F grestore -S -} def -/b -{ -closepath -B -} def -/W -{ -clip -} def -/ta -{ -_as moveto -_tt aload pop 4 -2 roll -} def -/tl -{ -_tl aload pop translate -} def -/as -{ -{ -0 0 -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg 2 div exch neg 2 div -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg exch neg -} -{ -0 0 -} -} cvlit def -/z -{ -/_a exch ddef -/_as as _a get ddef -_a 2 le - { - 0 _tt astore pop - 0 exch neg _tl astore pop - } - { - 0 exch neg _tt astore pop - neg 0 _tl astore pop - } ifelse -exch findfont exch scalefont setfont -} def -/tm -{ -_tm currentmatrix pop -concat -} def -/I -{ -tm -/t - { - ta sp - tl - } ddef -} def -/o -{ -tm -/t - { - ta 4 npop - tl - newpath - } ddef -} def -/e -{ -tm -/t - { - ta _psf - tl - newpath - } ddef -} def -/r -{ -tm -/t - { - ta _tm _pss - tl - newpath - } ddef -} def -/a -{ -tm -/t - { - 2 copy - ta _psf - newpath - ta _tm _pss - tl - newpath - } ddef -} def -/T -{ -_tm setmatrix -} def -/Z -{ -pop -findfont begin -currentdict dup length 1 add dict begin - { - 1 index /FID ne - { - def - } - { - 2 npop - } ifelse - } forall -/FontName exch def dup length 0 ne - { - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - { - Encoding 2 index 2 index put pop - 1 add - } - { - exch pop - } ifelse - } forall - } if pop -currentdict dup end end -/FontName get exch definefont pop -} def -/u -{} def -/U -{} def -/q -{ -gsave -} def -/Q -{ -grestore -} def -/` -{ -/_i save ddef -6 1 roll 4 npop -concat -userdict begin -/showpage {} def -false setoverprint -pop -} def -/~ -{ -end -_i restore -} def -/@ -{} def -/& -{} def -/O -{ -0 ne -/_of exch ddef -/_lp /none ddef -} def -/R -{ -0 ne -/_os exch ddef -/_lp /none ddef -} def -/g -{ -/_gf exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _gf setgray - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/G -{ -/_gs exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _gs setgray - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/k -{ -_cf astore pop -/_fc -{ -_lp /fill ne - { - _of setoverprint - _cf aload pop setcmykcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/K -{ -_cs astore pop -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _cs aload pop setcmykcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/x -{ -/_gf exch ddef -findcmykcustomcolor -/_if exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _if _gf 1 exch sub setcustomcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/X -{ -/_gs exch ddef -findcmykcustomcolor -/_is exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _is _gs 1 exch sub setcustomcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/dp -{ -dup null eq -{ -pop -_dp 0 ne - { - 0 1 _dp 1 sub _dl mod - { - _da exch get 3 get - } for - _dp 1 sub _dl mod 1 add packedarray - _da 0 get aload pop 8 -1 roll 5 -1 roll pop 4 1 roll - definepattern pop - } if -} -{ -_dp 0 ne _dp _dl mod 0 eq and - { - null dp - } if -7 packedarray _da exch _dp _dl mod exch put -_dp _dl mod _da 0 get 4 get 2 packedarray -/_dp _dp 1 add def -} ifelse -} def -/E -{ -_ed begin -dup 0 get type /arraytype ne - { - 0 - { - dup 1 add index type /arraytype eq - { - 1 add - } - { - exit - } ifelse - } loop - array astore - } if -/_dd exch def -/_ury exch def -/_urx exch def -/_lly exch def -/_llx exch def -/_n exch def -/_y 0 def -/_dl 4 def -/_dp 0 def -/_da _dl array def -0 1 _dd length 1 sub - { - /_d exch _dd exch get def - 0 2 _d length 2 sub - { - /_x exch def - /_c _d _x get _ ne def - /_r _d _x 1 add get cvlit def - _r _ ne - { - _urx _llx sub _ury _lly sub [1 0 0 1 0 0] - [ - /save cvx - _llx neg _lly neg /translate cvx - _c - { - nc /begin cvx - } if - _r dup type /stringtype eq - { - cvx - } - { - {exec} /forall cvx - } ifelse - _c - { - /end cvx - } if - /restore cvx - ] cvx - /_fn 12 _n length add string def - _y _fn cvs pop - /_y _y 1 add def - _fn 12 _n putinterval - _fn _c false dp - _d exch _x 1 add exch put - } if - } for - } for -null dp -_n _dd /_pd -end xput -} def -/fc -{ -_fm dup concatmatrix pop -} def -/p -{ -/_fm exch ddef -9 -2 roll _pm translate fc -7 -2 roll _pm scale fc -5 -1 roll _pm rotate fc -4 -2 roll exch 0 ne - { - dup _pm rotate fc - 1 -1 _pm scale fc - neg _pm rotate fc - } - { - pop - } ifelse -dup _pm rotate fc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore fc -neg _pm rotate fc -_pd exch get /_fdd exch ddef -/_pf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - patternfill - } - { - pop - fill - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_psf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - 10 copy 6 npop exch pop patternashow - } - { - pop - 7 copy 3 npop exch pop ashow - } ifelse - grestore - pop - } for - pop - } for -restore -4 npop newpath -} ddef -/_lp /none ddef -} def -/sc -{ -_sm dup concatmatrix pop -} def -/P -{ -/_sm exch ddef -9 -2 roll _pm translate sc -7 -2 roll _pm scale sc -5 -1 roll _pm rotate sc -4 -2 roll exch 0 ne - { - dup _pm rotate sc - 1 -1 _pm scale sc - neg _pm rotate sc - } - { - pop - } ifelse -dup _pm rotate sc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore sc -neg _pm rotate sc -_pd exch get /_sdd exch ddef -/_ps -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - patternstroke - } - { - pop stroke - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_pss -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - 11 copy 6 npop 3 -1 roll pop patternashowstroke - } - { - pop - 8 copy 3 npop ss - } ifelse - grestore - pop - } for - pop - } for -restore -5 npop newpath -} ddef -/_lp /none ddef -} def -/A -{ -pop -} def -/nc 3 dict def -nc begin -/setgray -{ -pop -} bind def -/setcmykcolor -{ -4 npop -} bind def -/setcustomcolor -{ -2 npop -} bind def -currentdict readonly pop end -currentdict readonly pop end -setpacking -%%EndProcSet -%%EndProlog - -%%BeginSetup -Adobe_cmykcolor /initialize get exec -Adobe_cshow /initialize get exec -Adobe_customcolor /initialize get exec -Adobe_pattern /initialize get exec -Adobe_Illustrator88 /initialize get exec - -%%BeginPattern: (0) -(0) 10 10 18 18 [ -(0 O 0 R 0.000000 0.000000 0.000000 0 (New Color 0) 0 x 0.000000 0.000000 0.000000 0 (New Color 0) 0 X) @ -_ & -(0 O 0 R 0.999985 0.999985 0.999985 0 (New Color 255) 0 x 0.999985 0.999985 0.999985 0 (New Color 255) 0 X) @ -( -0 i 0 J 0 j 1 w 4 M []0 d -%Note: -14 17 m -15 17 l -15 18 l -14 18 l -14 17 l -f -16 16 m -17 16 l -17 17 l -16 17 l -16 16 l -f -11 16 m -12 16 l -12 17 l -11 17 l -11 16 l -f -13 14 m -14 14 l -14 15 l -13 15 l -13 14 l -f -10 14 m -11 14 l -11 15 l -10 15 l -10 14 l -f -15 13 m -16 13 l -16 14 l -15 14 l -15 13 l -f -11 12 m -12 12 l -12 13 l -11 13 l -11 12 l -f -13 11 m -14 11 l -14 12 l -13 12 l -13 11 l -f -17 10 m -18 10 l -18 11 l -17 11 l -17 10 l -f -) & -] E -%%EndPattern - -%%BeginPattern: (1) -(1) 10 10 18 18 [ -(0 O 0 R 0.000000 0.000000 0.000000 0 (New Color 0) 0 x 0.000000 0.000000 0.000000 0 (New Color 0) 0 X) @ -_ & -(0 O 0 R 0.999985 0.999985 0.999985 0 (New Color 255) 0 x 0.999985 0.999985 0.999985 0 (New Color 255) 0 X) @ -( -0 i 0 J 0 j 1 w 4 M []0 d -%Note: -15 17 m -16 17 l -16 18 l -15 18 l -15 17 l -f -14 17 m -15 17 l -15 18 l -14 18 l -14 17 l -f -11 17 m -12 17 l -12 18 l -11 18 l -11 17 l -f -16 16 m -17 16 l -17 17 l -16 17 l -16 16 l -f -13 16 m -14 16 l -14 17 l -13 17 l -13 16 l -f -11 16 m -12 16 l -12 17 l -11 17 l -11 16 l -f -10 16 m -11 16 l -11 17 l -10 17 l -10 16 l -f -17 15 m -18 15 l -18 16 l -17 16 l -17 15 l -f -16 15 m -17 15 l -17 16 l -16 16 l -16 15 l -f -13 15 m -14 15 l -14 16 l -13 16 l -13 15 l -f -11 15 m -12 15 l -12 16 l -11 16 l -11 15 l -f -17 14 m -18 14 l -18 15 l -17 15 l -17 14 l -f -15 14 m -16 14 l -16 15 l -15 15 l -15 14 l -f -14 14 m -15 14 l -15 15 l -14 15 l -14 14 l -f -12 14 m -13 14 l -13 15 l -12 15 l -12 14 l -f -16 13 m -17 13 l -17 14 l -16 14 l -16 13 l -f -15 13 m -16 13 l -16 14 l -15 14 l -15 13 l -f -13 13 m -14 13 l -14 14 l -13 14 l -13 13 l -f -10 13 m -11 13 l -11 14 l -10 14 l -10 13 l -f -17 12 m -18 12 l -18 13 l -17 13 l -17 12 l -f -14 12 m -15 12 l -15 13 l -14 13 l -14 12 l -f -13 12 m -14 12 l -14 13 l -13 13 l -13 12 l -f -11 12 m -12 12 l -12 13 l -11 13 l -11 12 l -f -16 11 m -17 11 l -17 12 l -16 12 l -16 11 l -f -15 11 m -16 11 l -16 12 l -15 12 l -15 11 l -f -11 11 m -12 11 l -12 12 l -11 12 l -11 11 l -f -17 10 m -18 10 l -18 11 l -17 11 l -17 10 l -f -16 10 m -17 10 l -17 11 l -16 11 l -16 10 l -f -13 10 m -14 10 l -14 11 l -13 11 l -13 10 l -f -12 10 m -13 10 l -13 11 l -12 11 l -12 10 l -f -10 10 m -11 10 l -11 11 l -10 11 l -10 10 l -f -) & -] E -%%EndPattern -%%BeginEncoding: _Times-Italic Times-Italic -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Italic /Times-Italic 0 Z -%%EndEncoding - -%%EndSetup - -0 A -0 O -0 R -0 g -0 G -0 i 0 J 0 j 1 w 4 M [] 0 d -u -89.504 546.496 m -139.504 546.496 l -1.008 w 0 G S -139.504 546.496 m -143.504 564.496 l -1.008 w 0 G S -143.504 564.496 m -152.504 528.496 l -1.008 w 0 G S -152.504 528.496 m -161.504 564.496 l -1.008 w 0 G S -161.504 564.496 m -170.504 528.496 l -1.008 w 0 G S -170.504 528.496 m -179.504 564.496 l -1.008 w 0 G S -179.504 564.496 m -188.504 528.496 l -1.008 w 0 G S -188.504 528.496 m -197.504 564.496 l -1.008 w 0 G S -197.504 564.496 m -206.504 528.496 l -1.008 w 0 G S -206.504 528.496 m -211.504 546.496 l -1.008 w 0 G S -211.504 546.496 m -260.504 546.496 l -1.008 w 0 G S -U -u -278.504 492.496 m -328.504 492.496 l -1.008 w 0 G S -328.504 492.496 m -332.504 510.496 l -1.008 w 0 G S -332.504 510.496 m -341.504 474.496 l -1.008 w 0 G S -341.504 474.496 m -350.504 510.496 l -1.008 w 0 G S -350.504 510.496 m -359.504 474.496 l -1.008 w 0 G S -359.504 474.496 m -368.504 510.496 l -1.008 w 0 G S -368.504 510.496 m -377.504 474.496 l -1.008 w 0 G S -377.504 474.496 m -386.504 510.496 l -1.008 w 0 G S -386.504 510.496 m -395.504 474.496 l -1.008 w 0 G S -395.504 474.496 m -400.504 492.496 l -1.008 w 0 G S -400.504 492.496 m -449.504 492.496 l -1.008 w 0 G S -U -260.504 600.496 m -260.504 492.496 l -1.008 w 0 G S -260.504 492.496 m -278.504 492.496 l -1.008 w 0 G S -467.504 600.496 m -467.504 492.496 l -1.008 w 0 G S -467.504 492.496 m -449.504 492.496 l -1.008 w 0 G S -467.504 546.496 m -485.504 546.496 l -1.008 w 0 G S -u -487 546 m -487 544.343 485.657 543 484 543 c -482.343 543 481 544.343 481 546 c -481 547.657 482.343 549 484 549 c -485.657 549 487 547.657 487 546 c -0 g F -U -u -486.496 546 m -486.496 544.621 485.379 543.504 484 543.504 c -482.621 543.504 481.504 544.621 481.504 546 c -481.504 547.379 482.621 548.496 484 548.496 c -485.379 548.496 486.496 547.379 486.496 546 c -1.008 w 0 G S -U -u -96 546 m -96 544.343 94.433 543 92.5 543 c -90.567 543 89 544.343 89 546 c -89 547.657 90.567 549 92.5 549 c -94.433 549 96 547.657 96 546 c -0 g F -U -u -95.496 546 m -95.496 544.621 94.155 543.504 92.5 543.504 c -90.845 543.504 89.504 544.621 89.504 546 c -89.504 547.379 90.845 548.496 92.5 548.496 c -94.155 548.496 95.496 547.379 95.496 546 c -1.008 w 0 G S -U -u -368.471 454.529 m -368.471 467.529 L -352.471 467.529 L -352.471 454.529 L -368.471 454.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 352.471 458.529 ]e -2 (R1)t -T -u -368.471 524.529 m -368.471 537.529 L -352.471 537.529 L -352.471 524.529 L -368.471 524.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 352.471 528.529 ]e -2 (R2)t -T -u -179.471 566.529 m -179.471 579.529 L -163.471 579.529 L -163.471 566.529 L -179.471 566.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 163.471 570.529 ]e -2 (R4)t -T -u -u -278.504 564.496 m -328.504 564.496 l -1.008 w 0 G S -328.504 564.496 m -332.504 582.496 l -1.008 w 0 G S -332.504 582.496 m -341.504 546.496 l -1.008 w 0 G S -341.504 546.496 m -350.504 582.496 l -1.008 w 0 G S -350.504 582.496 m -359.504 546.496 l -1.008 w 0 G S -359.504 546.496 m -368.504 582.496 l -1.008 w 0 G S -368.504 582.496 m -377.504 546.496 l -1.008 w 0 G S -377.504 546.496 m -386.504 582.496 l -1.008 w 0 G S -386.504 582.496 m -395.504 546.496 l -1.008 w 0 G S -395.504 546.496 m -400.504 564.496 l -1.008 w 0 G S -400.504 564.496 m -449.504 564.496 l -1.008 w 0 G S -U -u -278.504 618.496 m -328.504 618.496 l -1.008 w 0 G S -328.504 618.496 m -332.504 636.496 l -1.008 w 0 G S -332.504 636.496 m -341.504 600.496 l -1.008 w 0 G S -341.504 600.496 m -350.504 636.496 l -1.008 w 0 G S -350.504 636.496 m -359.504 600.496 l -1.008 w 0 G S -359.504 600.496 m -368.504 636.496 l -1.008 w 0 G S -368.504 636.496 m -377.504 600.496 l -1.008 w 0 G S -377.504 600.496 m -386.504 636.496 l -1.008 w 0 G S -386.504 636.496 m -395.504 600.496 l -1.008 w 0 G S -395.504 600.496 m -400.504 618.496 l -1.008 w 0 G S -400.504 618.496 m -449.504 618.496 l -1.008 w 0 G S -U -278.504 618.496 m -278.504 564.496 l -1.008 w 0 G S -260.504 600.496 m -278.504 600.496 l -1.008 w 0 G S -449.504 618.496 m -449.504 564.496 l -1.008 w 0 G S -449.504 600.496 m -467.504 600.496 l -1.008 w 0 G S -u -368.471 638.529 m -368.471 651.529 L -352.471 651.529 L -352.471 638.529 L -368.471 638.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 352.471 642.529 ]e -2 (R3)t -T -U - -%%Trailer -Adobe_Illustrator88 /terminate get exec -Adobe_pattern /terminate get exec -Adobe_customcolor /terminate get exec -Adobe_cshow /terminate get exec -Adobe_cmykcolor /terminate get exec -Adobe_packedarray /terminate get exec -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob12a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob12a.gif deleted file mode 100755 index 48121d3e9..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob12a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob13a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob13a.eps deleted file mode 100755 index 73d0311cb..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob13a.eps +++ /dev/null @@ -1,2117 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad 6.0.1 -%%Title: prob6-4.eps -%%CreationDate: 5/9/1997 -%%DocumentProcSets: Adobe_packedarray 1.0 0 -%%DocumentSuppliedProcSets: Adobe_packedarray 1.0 0 -%%DocumentProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentProcSets: Adobe_cshow 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cshow 1.1 0 -%%DocumentProcSets: Adobe_customcolor 1.0 0 -%%DocumentSuppliedProcSets: Adobe_customcolor 1.0 0 -%%DocumentProcSets: Adobe_pattern 1.9 0 -%%DocumentSuppliedProcSets: Adobe_pattern 1.9 0 -%%DocumentProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentSuppliedProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentFonts: Symbol -%%+ Times-Italic -%%BoundingBox:131 418 427 704 -%%TemplateBox:306 396 306 396 -%%DocumentPreview: Header -%%EndComments - -%%BeginProlog -%%BeginProcSet: Adobe_packedarray 1.0 0 -userdict /Adobe_packedarray 5 dict dup begin put -/initialize -{ -/packedarray where - { - pop - } - { - Adobe_packedarray begin - Adobe_packedarray - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - } ifelse -} def -/terminate -{ -} def -/packedarray -{ -array astore readonly -} def -/setpacking -{ -pop -} def -/currentpacking -{ -false -} def -currentdict readonly pop end -%%EndProcSet -Adobe_packedarray /initialize get exec -%%BeginProcSet: Adobe_cmykcolor 1.1 0 -currentpacking true setpacking -userdict /Adobe_cmykcolor 4 dict dup begin put -/initialize -{ -/setcmykcolor where - { - pop - } - { - userdict /Adobe_cmykcolor_vars 2 dict dup begin put - /_setrgbcolor - /setrgbcolor load def - /_currentrgbcolor - /currentrgbcolor load def - Adobe_cmykcolor begin - Adobe_cmykcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - end - Adobe_cmykcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_cmykcolor eq - { - end - } if -} def -/setcmykcolor -{ -1 sub 4 1 roll -3 - { - 3 index add neg dup 0 lt - { - pop 0 - } if - 3 1 roll - } repeat -Adobe_cmykcolor_vars /_setrgbcolor get exec -pop -} def -/currentcmykcolor -{ -Adobe_cmykcolor_vars /_currentrgbcolor get exec -3 - { - 1 sub neg 3 1 roll - } repeat -0 -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_cshow 1.1 0 -currentpacking true setpacking -userdict /Adobe_cshow 3 dict dup begin put -/initialize -{ -/cshow where - { - pop - } - { - userdict /Adobe_cshow_vars 1 dict dup begin put - /_cshow - {} def - Adobe_cshow begin - Adobe_cshow - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - end - } ifelse -} def -/terminate -{ -} def -/cshow -{ -exch -Adobe_cshow_vars - exch /_cshow - exch put - { - 0 0 Adobe_cshow_vars /_cshow get exec - } forall -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_customcolor 1.0 0 -currentpacking true setpacking -userdict /Adobe_customcolor 5 dict dup begin put -/initialize -{ -/setcustomcolor where - { - pop - } - { - Adobe_customcolor begin - Adobe_customcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - Adobe_customcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_customcolor eq - { - end - } if -} def -/findcmykcustomcolor -{ -5 packedarray -} def -/setcustomcolor -{ -exch -aload pop pop -4 - { - 4 index mul 4 1 roll - } repeat -5 -1 roll pop -setcmykcolor -} def -/setoverprint -{ -pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_pattern 1.9 0 -currentpacking true setpacking -userdict /Adobe_pattern 14 dict dup begin put -/initialize -{ -/definepattern where - { - pop - } - { - Adobe_pattern begin - Adobe_pattern - { - dup xcheck - { - bind - } if - pop pop - } forall - mark - cachestatus 7 1 roll pop pop pop pop exch pop exch - { - { - 10000 add - dup 2 index gt - { - break - } if - dup setcachelimit - } loop - } stopped - cleartomark - } ifelse -} def -/terminate -{ -currentdict Adobe_pattern eq - { - end - } if -} def -errordict -/nocurrentpoint -{ -pop -stop -} put -errordict -/invalidaccess -{ -pop -stop -} put -/patternencoding -256 array def -0 1 255 -{ -patternencoding exch ( ) 2 copy exch 0 exch put cvn put -} for -/definepattern -{ -17 dict begin -/uniform exch def -/cache exch def -/key exch def -/procarray exch def -/mtx exch matrix invertmatrix def -/height exch def -/width exch def -/ctm matrix currentmatrix def -/ptm matrix def -/str 32 string def -/slice 9 dict def -slice /s 1 put -slice /q 256 procarray length div sqrt floor cvi put -slice /b 0 put -/FontBBox [0 0 0 0] def -/FontMatrix mtx matrix copy def -/Encoding patternencoding def -/FontType 3 def -/BuildChar - { - exch - begin - slice begin - dup q dup mul mod s idiv /i exch def - dup q dup mul mod s mod /j exch def - q dup mul idiv procarray exch get - /xl j width s div mul def - /xg j 1 add width s div mul def - /yl i height s div mul def - /yg i 1 add height s div mul def - uniform - { - 1 1 - } - { - width 0 dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - 0 height dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - } ifelse - width 0 cache - { - xl 4 index mul yl 4 index mul xg 6 index mul yg 6 index mul - setcachedevice - } - { - setcharwidth - } ifelse - gsave - scale - newpath - xl yl moveto - xg yl lineto - xg yg lineto - xl yg lineto - closepath - clip - newpath - end - end - exec - grestore - } def -key currentdict definefont -end -} def -/patterncachesize -{ -gsave -newpath -0 0 moveto -width 0 lineto -width height lineto -0 height lineto -closepath -patternmatrix setmatrix -pathbbox -exch ceiling 4 -1 roll floor sub 3 1 roll -ceiling exch floor sub -mul 1 add -grestore -} def -/patterncachelimit -{ -cachestatus 7 1 roll pop pop pop pop pop pop 8 mul -} def -/patternpath -{ -exch dup begin setfont -ctm setmatrix -concat -slice exch /b exch slice /q get dup mul mul put -FontMatrix concat -uniform - { - width 0 dtransform round width div exch round width div exch - 0 height dtransform round height div exch height div exch - 0 0 transform round exch round exch - ptm astore setmatrix - } - { - ptm currentmatrix pop - } ifelse -{currentpoint} stopped not - { - pop pop - pathbbox - true - 4 index 3 index eq - 4 index 3 index eq - and - { - pop false - { - {pop pop} - {pop pop pop true} - {pop pop pop pop pop pop pop true} - {pop true} - pathforall - } stopped - { - pop pop pop pop pop true - } if - } if - { - height div ceiling height mul 4 1 roll - width div ceiling width mul 4 1 roll - height div floor height mul 4 1 roll - width div floor width mul 4 1 roll - 2 index sub height div ceiling cvi exch - 3 index sub width div ceiling cvi exch - 4 2 roll moveto - FontMatrix mtx invertmatrix - dup dup 4 get exch 5 get rmoveto - ptm ptm concatmatrix pop - slice /s - patterncachesize patterncachelimit div ceiling sqrt ceiling cvi - dup slice /q get gt - { - pop slice /q get - } if - put - 0 1 slice /s get dup mul 1 sub - { - slice /b get add - gsave - 0 1 str length 1 sub - { - str exch 2 index put - } for - pop - dup - { - gsave - ptm setmatrix - 1 index str length idiv {str show} repeat - 1 index str length mod str exch 0 exch getinterval show - grestore - 0 height rmoveto - } repeat - grestore - } for - pop pop - } - { - pop pop pop pop - } ifelse - } if -end -} def -/patternclip -{ -clip -} def -/patternstrokepath -{ -strokepath -} def -/patternmatrix -matrix def -/patternfill -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternclip -Adobe_pattern /patternpath get exec -grestore -newpath -} def -/patternstroke -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternstrokepath -true - { - { - { - newpath - moveto - } - { - lineto - } - { - curveto - } - { - closepath - 3 copy - Adobe_pattern /patternfill get exec - } pathforall - pop pop pop - } stopped - { - pop pop pop pop pop - patternclip - Adobe_pattern /patternfill get exec - } if - } - { - patternclip - Adobe_pattern /patternfill get exec - } ifelse -grestore -newpath -} def -/patternashow -{ -3 index type /dicttype eq - { - Adobe_pattern /patternmatrix get 4 1 roll - } if - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 6 index 6 index 6 index - Adobe_pattern /patternfill get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop -} def -/patternashowstroke -{ -4 index type /dicttype eq - { - patternmatrix /patternmatrix get 5 1 roll - } if -4 1 roll - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - 7 index 7 index 7 index - Adobe_pattern /patternstroke get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_Illustrator88 1.19 0 -currentpacking true setpacking -userdict /Adobe_Illustrator88 73 dict dup begin put -/initialize -{ -userdict /Adobe_Illustrator88_vars 31 dict dup begin put -/_lp /none def -/_pf {} def -/_ps {} def -/_psf {} def -/_pss {} def -/_a null def -/_as null def -/_tt 2 array def -/_tl 2 array def -/_tm matrix def -/t {} def -/_gf null def -/_cf 4 array def -/_if null def -/_of false def -/_fc {} def -/_gs null def -/_cs 4 array def -/_is null def -/_os false def -/_sc {} def -/_pd 1 dict def -/_ed 15 dict def -/_pm matrix def -/_fm null def -/_fd null def -/_fdd null def -/_sm null def -/_sd null def -/_sdd null def -/_i null def -Adobe_Illustrator88 begin -Adobe_Illustrator88 dup /nc get begin - { - dup xcheck - { - bind - } if - pop pop - } forall -end -end -end -Adobe_Illustrator88 begin -Adobe_Illustrator88_vars begin -newpath -} def -/terminate -{ -end -end -} def -/_ -null def -/ddef -{ -Adobe_Illustrator88_vars 3 1 roll put -} def -/xput -{ -dup load dup length exch maxlength eq - { - dup dup load dup - length 2 mul dict copy def - } if -load begin def end -} def -/npop -{ - { - pop - } repeat -} def -/sw -{ -stringwidth -exch 5 -1 roll 3 index 1 sub mul add -4 1 roll 3 1 roll 1 sub mul add -} def -/ss -{ -3 -1 roll pop -4 1 roll - { - 2 npop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - stroke - grestore - moveto - 2 copy rmoveto - } exch cshow -3 npop -} def -/sp -{ -exch pop - { - 2 npop (0) exch - 2 copy 0 exch put pop - false charpath - 2 copy rmoveto - } exch cshow -2 npop -} def -/pl -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where -{ -pop true setstrokeadjust -/c -{ -curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll curveto -} def -/V -/v load def -/y -{ -2 copy curveto -} def -/Y -/y load def -/l -{ -lineto -} def -/L -/l load def -/m -{ -moveto -} def -} -{ -/c -{ -pl curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll pl curveto -} def -/V -/v load def -/y -{ -pl 2 copy curveto -} def -/Y -/y load def -/l -{ -pl lineto -} def -/L -/l load def -/m -{ -pl moveto -} def -} ifelse -/d -{ -setdash -} def -/cf -currentflat def -/i -{ -dup 0 eq - { - pop cf - } if -setflat -} def -/j -{ -setlinejoin -} def -/J -{ -setlinecap -} def -/M -{ -setmiterlimit -} def -/w -{ -setlinewidth -} def -/H -{} def -/h -{ -closepath -} def -/N -{ -newpath -} def -/n -/N load def -/F -{ -_pf -} def -/f -{ -closepath -F -} def -/S -{ -_ps -} def -/s -{ -closepath -S -} def -/B -{ -gsave F grestore -S -} def -/b -{ -closepath -B -} def -/W -{ -clip -} def -/ta -{ -_as moveto -_tt aload pop 4 -2 roll -} def -/tl -{ -_tl aload pop translate -} def -/as -{ -{ -0 0 -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg 2 div exch neg 2 div -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg exch neg -} -{ -0 0 -} -} cvlit def -/z -{ -/_a exch ddef -/_as as _a get ddef -_a 2 le - { - 0 _tt astore pop - 0 exch neg _tl astore pop - } - { - 0 exch neg _tt astore pop - neg 0 _tl astore pop - } ifelse -exch findfont exch scalefont setfont -} def -/tm -{ -_tm currentmatrix pop -concat -} def -/I -{ -tm -/t - { - ta sp - tl - } ddef -} def -/o -{ -tm -/t - { - ta 4 npop - tl - newpath - } ddef -} def -/e -{ -tm -/t - { - ta _psf - tl - newpath - } ddef -} def -/r -{ -tm -/t - { - ta _tm _pss - tl - newpath - } ddef -} def -/a -{ -tm -/t - { - 2 copy - ta _psf - newpath - ta _tm _pss - tl - newpath - } ddef -} def -/T -{ -_tm setmatrix -} def -/Z -{ -pop -findfont begin -currentdict dup length 1 add dict begin - { - 1 index /FID ne - { - def - } - { - 2 npop - } ifelse - } forall -/FontName exch def dup length 0 ne - { - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - { - Encoding 2 index 2 index put pop - 1 add - } - { - exch pop - } ifelse - } forall - } if pop -currentdict dup end end -/FontName get exch definefont pop -} def -/u -{} def -/U -{} def -/q -{ -gsave -} def -/Q -{ -grestore -} def -/` -{ -/_i save ddef -6 1 roll 4 npop -concat -userdict begin -/showpage {} def -false setoverprint -pop -} def -/~ -{ -end -_i restore -} def -/@ -{} def -/& -{} def -/O -{ -0 ne -/_of exch ddef -/_lp /none ddef -} def -/R -{ -0 ne -/_os exch ddef -/_lp /none ddef -} def -/g -{ -/_gf exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _gf setgray - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/G -{ -/_gs exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _gs setgray - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/k -{ -_cf astore pop -/_fc -{ -_lp /fill ne - { - _of setoverprint - _cf aload pop setcmykcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/K -{ -_cs astore pop -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _cs aload pop setcmykcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/x -{ -/_gf exch ddef -findcmykcustomcolor -/_if exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _if _gf 1 exch sub setcustomcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/X -{ -/_gs exch ddef -findcmykcustomcolor -/_is exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _is _gs 1 exch sub setcustomcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/dp -{ -dup null eq -{ -pop -_dp 0 ne - { - 0 1 _dp 1 sub _dl mod - { - _da exch get 3 get - } for - _dp 1 sub _dl mod 1 add packedarray - _da 0 get aload pop 8 -1 roll 5 -1 roll pop 4 1 roll - definepattern pop - } if -} -{ -_dp 0 ne _dp _dl mod 0 eq and - { - null dp - } if -7 packedarray _da exch _dp _dl mod exch put -_dp _dl mod _da 0 get 4 get 2 packedarray -/_dp _dp 1 add def -} ifelse -} def -/E -{ -_ed begin -dup 0 get type /arraytype ne - { - 0 - { - dup 1 add index type /arraytype eq - { - 1 add - } - { - exit - } ifelse - } loop - array astore - } if -/_dd exch def -/_ury exch def -/_urx exch def -/_lly exch def -/_llx exch def -/_n exch def -/_y 0 def -/_dl 4 def -/_dp 0 def -/_da _dl array def -0 1 _dd length 1 sub - { - /_d exch _dd exch get def - 0 2 _d length 2 sub - { - /_x exch def - /_c _d _x get _ ne def - /_r _d _x 1 add get cvlit def - _r _ ne - { - _urx _llx sub _ury _lly sub [1 0 0 1 0 0] - [ - /save cvx - _llx neg _lly neg /translate cvx - _c - { - nc /begin cvx - } if - _r dup type /stringtype eq - { - cvx - } - { - {exec} /forall cvx - } ifelse - _c - { - /end cvx - } if - /restore cvx - ] cvx - /_fn 12 _n length add string def - _y _fn cvs pop - /_y _y 1 add def - _fn 12 _n putinterval - _fn _c false dp - _d exch _x 1 add exch put - } if - } for - } for -null dp -_n _dd /_pd -end xput -} def -/fc -{ -_fm dup concatmatrix pop -} def -/p -{ -/_fm exch ddef -9 -2 roll _pm translate fc -7 -2 roll _pm scale fc -5 -1 roll _pm rotate fc -4 -2 roll exch 0 ne - { - dup _pm rotate fc - 1 -1 _pm scale fc - neg _pm rotate fc - } - { - pop - } ifelse -dup _pm rotate fc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore fc -neg _pm rotate fc -_pd exch get /_fdd exch ddef -/_pf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - patternfill - } - { - pop - fill - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_psf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - 10 copy 6 npop exch pop patternashow - } - { - pop - 7 copy 3 npop exch pop ashow - } ifelse - grestore - pop - } for - pop - } for -restore -4 npop newpath -} ddef -/_lp /none ddef -} def -/sc -{ -_sm dup concatmatrix pop -} def -/P -{ -/_sm exch ddef -9 -2 roll _pm translate sc -7 -2 roll _pm scale sc -5 -1 roll _pm rotate sc -4 -2 roll exch 0 ne - { - dup _pm rotate sc - 1 -1 _pm scale sc - neg _pm rotate sc - } - { - pop - } ifelse -dup _pm rotate sc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore sc -neg _pm rotate sc -_pd exch get /_sdd exch ddef -/_ps -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - patternstroke - } - { - pop stroke - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_pss -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - 11 copy 6 npop 3 -1 roll pop patternashowstroke - } - { - pop - 8 copy 3 npop ss - } ifelse - grestore - pop - } for - pop - } for -restore -5 npop newpath -} ddef -/_lp /none ddef -} def -/A -{ -pop -} def -/nc 3 dict def -nc begin -/setgray -{ -pop -} bind def -/setcmykcolor -{ -4 npop -} bind def -/setcustomcolor -{ -2 npop -} bind def -currentdict readonly pop end -currentdict readonly pop end -setpacking -%%EndProcSet -%%EndProlog - -%%BeginSetup -Adobe_cmykcolor /initialize get exec -Adobe_cshow /initialize get exec -Adobe_customcolor /initialize get exec -Adobe_pattern /initialize get exec -Adobe_Illustrator88 /initialize get exec - -%%BeginPattern: (0) -(0) 10 10 18 18 [ -(0 O 0 R 0.000000 0.000000 0.000000 0 (New Color 0) 0 x 0.000000 0.000000 0.000000 0 (New Color 0) 0 X) @ -_ & -(0 O 0 R 0.999985 0.999985 0.999985 0 (New Color 255) 0 x 0.999985 0.999985 0.999985 0 (New Color 255) 0 X) @ -( -0 i 0 J 0 j 1 w 4 M []0 d -%Note: -14 17 m -15 17 l -15 18 l -14 18 l -14 17 l -f -16 16 m -17 16 l -17 17 l -16 17 l -16 16 l -f -11 16 m -12 16 l -12 17 l -11 17 l -11 16 l -f -13 14 m -14 14 l -14 15 l -13 15 l -13 14 l -f -10 14 m -11 14 l -11 15 l -10 15 l -10 14 l -f -15 13 m -16 13 l -16 14 l -15 14 l -15 13 l -f -11 12 m -12 12 l -12 13 l -11 13 l -11 12 l -f -13 11 m -14 11 l -14 12 l -13 12 l -13 11 l -f -17 10 m -18 10 l -18 11 l -17 11 l -17 10 l -f -) & -] E -%%EndPattern - -%%BeginPattern: (1) -(1) 10 10 18 18 [ -(0 O 0 R 0.000000 0.000000 0.000000 0 (New Color 0) 0 x 0.000000 0.000000 0.000000 0 (New Color 0) 0 X) @ -_ & -(0 O 0 R 0.999985 0.999985 0.999985 0 (New Color 255) 0 x 0.999985 0.999985 0.999985 0 (New Color 255) 0 X) @ -( -0 i 0 J 0 j 1 w 4 M []0 d -%Note: -15 17 m -16 17 l -16 18 l -15 18 l -15 17 l -f -14 17 m -15 17 l -15 18 l -14 18 l -14 17 l -f -11 17 m -12 17 l -12 18 l -11 18 l -11 17 l -f -16 16 m -17 16 l -17 17 l -16 17 l -16 16 l -f -13 16 m -14 16 l -14 17 l -13 17 l -13 16 l -f -11 16 m -12 16 l -12 17 l -11 17 l -11 16 l -f -10 16 m -11 16 l -11 17 l -10 17 l -10 16 l -f -17 15 m -18 15 l -18 16 l -17 16 l -17 15 l -f -16 15 m -17 15 l -17 16 l -16 16 l -16 15 l -f -13 15 m -14 15 l -14 16 l -13 16 l -13 15 l -f -11 15 m -12 15 l -12 16 l -11 16 l -11 15 l -f -17 14 m -18 14 l -18 15 l -17 15 l -17 14 l -f -15 14 m -16 14 l -16 15 l -15 15 l -15 14 l -f -14 14 m -15 14 l -15 15 l -14 15 l -14 14 l -f -12 14 m -13 14 l -13 15 l -12 15 l -12 14 l -f -16 13 m -17 13 l -17 14 l -16 14 l -16 13 l -f -15 13 m -16 13 l -16 14 l -15 14 l -15 13 l -f -13 13 m -14 13 l -14 14 l -13 14 l -13 13 l -f -10 13 m -11 13 l -11 14 l -10 14 l -10 13 l -f -17 12 m -18 12 l -18 13 l -17 13 l -17 12 l -f -14 12 m -15 12 l -15 13 l -14 13 l -14 12 l -f -13 12 m -14 12 l -14 13 l -13 13 l -13 12 l -f -11 12 m -12 12 l -12 13 l -11 13 l -11 12 l -f -16 11 m -17 11 l -17 12 l -16 12 l -16 11 l -f -15 11 m -16 11 l -16 12 l -15 12 l -15 11 l -f -11 11 m -12 11 l -12 12 l -11 12 l -11 11 l -f -17 10 m -18 10 l -18 11 l -17 11 l -17 10 l -f -16 10 m -17 10 l -17 11 l -16 11 l -16 10 l -f -13 10 m -14 10 l -14 11 l -13 11 l -13 10 l -f -12 10 m -13 10 l -13 11 l -12 11 l -12 10 l -f -10 10 m -11 10 l -11 11 l -10 11 l -10 10 l -f -) & -] E -%%EndPattern -%%BeginEncoding: _Symbol Symbol -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Symbol /Symbol 0 Z -%%EndEncoding -%%BeginEncoding: _Times-Italic Times-Italic -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Italic /Times-Italic 0 Z -%%EndEncoding - -%%EndSetup - -0 A -0 O -0 R -0 g -0 G -0 i 0 J 0 j 1 w 4 M [] 0 d -177.504 590.496 m -202.504 615.496 l -1.008 w 0 G S -202.504 615.496 m -193.504 631.496 l -1.008 w 0 G S -193.504 631.496 m -225.504 612.496 l -1.008 w 0 G S -225.504 612.496 m -206.504 644.496 l -1.008 w 0 G S -206.504 644.496 m -237.504 625.496 l -1.008 w 0 G S -237.504 625.496 m -218.504 657.496 l -1.008 w 0 G S -218.504 657.496 m -250.504 638.496 l -1.008 w 0 G S -250.504 638.496 m -231.504 669.496 l -1.008 w 0 G S -231.504 669.496 m -263.504 650.496 l -1.008 w 0 G S -263.504 650.496 m -253.504 666.496 l -1.008 w 0 G S -253.504 666.496 m -279.504 692.496 l -1.008 w 0 G S -279.504 522.496 m -279.504 558.496 l -1.008 w 0 G S -279.504 558.496 m -261.504 562.496 l -1.008 w 0 G S -261.504 562.496 m -297.504 571.496 l -1.008 w 0 G S -297.504 571.496 m -261.504 580.496 l -1.008 w 0 G S -261.504 580.496 m -297.504 589.496 l -1.008 w 0 G S -297.504 589.496 m -261.504 598.496 l -1.008 w 0 G S -261.504 598.496 m -297.504 607.496 l -1.008 w 0 G S -297.504 607.496 m -261.504 616.496 l -1.008 w 0 G S -261.504 616.496 m -297.504 625.496 l -1.008 w 0 G S -297.504 625.496 m -279.504 630.496 l -1.008 w 0 G S -279.504 630.496 m -279.504 666.496 l -1.008 w 0 G S -279.504 488.496 m -253.504 513.496 l -1.008 w 0 G S -253.504 513.496 m -237.504 503.496 l -1.008 w 0 G S -237.504 503.496 m -257.504 535.496 l -1.008 w 0 G S -257.504 535.496 m -225.504 516.496 l -1.008 w 0 G S -225.504 516.496 m -244.504 548.496 l -1.008 w 0 G S -244.504 548.496 m -212.504 529.496 l -1.008 w 0 G S -212.504 529.496 m -231.504 561.496 l -1.008 w 0 G S -231.504 561.496 m -199.504 542.496 l -1.008 w 0 G S -199.504 542.496 m -218.504 573.496 l -1.008 w 0 G S -218.504 573.496 m -202.504 564.496 l -1.008 w 0 G S -202.504 564.496 m -177.504 589.496 l -1.008 w 0 G S -381.504 590.496 m -356.504 615.496 l -1.008 w 0 G S -356.504 615.496 m -340.504 606.496 l -1.008 w 0 G S -340.504 606.496 m -359.504 638.496 l -1.008 w 0 G S -359.504 638.496 m -327.504 619.496 l -1.008 w 0 G S -327.504 619.496 m -346.504 650.496 l -1.008 w 0 G S -346.504 650.496 m -314.504 631.496 l -1.008 w 0 G S -314.504 631.496 m -333.504 663.496 l -1.008 w 0 G S -333.504 663.496 m -302.504 644.496 l -1.008 w 0 G S -302.504 644.496 m -321.504 676.496 l -1.008 w 0 G S -321.504 676.496 m -305.504 666.496 l -1.008 w 0 G S -305.504 666.496 m -279.504 692.496 l -1.008 w 0 G S -279.504 489.496 m -305.504 514.496 l -1.008 w 0 G S -305.504 514.496 m -295.504 530.496 l -1.008 w 0 G S -295.504 530.496 m -327.504 511.496 l -1.008 w 0 G S -327.504 511.496 m -308.504 543.496 l -1.008 w 0 G S -308.504 543.496 m -340.504 524.496 l -1.008 w 0 G S -340.504 524.496 m -321.504 555.496 l -1.008 w 0 G S -321.504 555.496 m -353.504 536.496 l -1.008 w 0 G S -353.504 536.496 m -333.504 568.496 l -1.008 w 0 G S -333.504 568.496 m -365.504 549.496 l -1.008 w 0 G S -365.504 549.496 m -356.504 565.496 l -1.008 w 0 G S -356.504 565.496 m -381.504 590.496 l -1.008 w 0 G S -279.504 661.496 m -279.504 691.496 l -1.008 w 0 G S -279.504 522.496 m -279.504 488.496 l -1.008 w 0 G S -176.504 590.496 m -135.504 590.496 l -1.008 w 0 G S -381.504 590.496 m -423.504 590.496 l -1.008 w 0 G S -135.504 590.496 m -135.504 439.496 l -1.008 w 0 G S -135.504 439.496 m -207.504 439.496 l -1.008 w 0 G S -207.504 457.496 m -207.504 421.496 l -1.008 w 0 G S -212.504 448.496 m -212.504 430.496 l -1.008 w 0 G S -212.504 439.496 m -423.504 439.496 l -1.008 w 0 G S -423.504 439.496 m -423.504 590.496 l -1.008 w 0 G S -u -225.471 441.529 m -225.471 459.529 L -217.471 459.529 L -217.471 441.529 L -225.471 441.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Symbol 12 12 0 0 z -[1 0 0 1 217.471 446.529 ]e -1 (e)t -T -u -220.471 653.529 m -220.471 666.529 L -204.471 666.529 L -204.471 653.529 L -220.471 653.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 204.471 657.529 ]e -2 (R1)t -T -u -364.471 653.529 m -364.471 666.529 L -348.471 666.529 L -348.471 653.529 L -364.471 653.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 348.471 657.529 ]e -2 (R2)t -T -u -220.471 509.529 m -220.471 522.529 L -204.471 522.529 L -204.471 509.529 L -220.471 509.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 204.471 513.529 ]e -2 (R3)t -T -u -364.471 509.529 m -364.471 522.529 L -348.471 522.529 L -348.471 509.529 L -364.471 509.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 348.471 513.529 ]e -2 (R4)t -T -u -318.471 581.529 m -318.471 594.529 L -302.471 594.529 L -302.471 581.529 L -318.471 581.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 302.471 585.529 ]e -2 (R5)t -T -u -285 691.5 m -285 688.462 282.538 686 279.5 686 c -276.462 686 274 688.462 274 691.5 c -274 694.538 276.462 697 279.5 697 c -282.538 697 285 694.538 285 691.5 c -0 g F -U -u -284.496 691.5 m -284.496 688.741 282.259 686.504 279.5 686.504 c -276.741 686.504 274.504 688.741 274.504 691.5 c -274.504 694.259 276.741 696.496 279.5 696.496 c -282.259 696.496 284.496 694.259 284.496 691.5 c -1.008 w 0 G S -U -u -299.471 688.529 m -299.471 701.529 L -289.471 701.529 L -289.471 688.529 L -299.471 688.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 289.471 692.529 ]e -1 (P)t -T -u -284 489 m -284 486.239 281.761 484 279 484 c -276.239 484 274 486.239 274 489 c -274 491.761 276.239 494 279 494 c -281.761 494 284 491.761 284 489 c -0 g F -U -u -283.496 489 m -283.496 486.517 281.483 484.504 279 484.504 c -276.517 484.504 274.504 486.517 274.504 489 c -274.504 491.483 276.517 493.496 279 493.496 c -281.483 493.496 283.496 491.483 283.496 489 c -1.008 w 0 G S -U -u -300.471 472.529 m -300.471 485.529 L -288.471 485.529 L -288.471 472.529 L -300.471 472.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 288.471 476.529 ]e -2 (P')t -T - -%%Trailer -Adobe_Illustrator88 /terminate get exec -Adobe_pattern /terminate get exec -Adobe_customcolor /terminate get exec -Adobe_cshow /terminate get exec -Adobe_cmykcolor /terminate get exec -Adobe_packedarray /terminate get exec -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob13a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob13a.gif deleted file mode 100755 index adcb0b3e6..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype58/prob13a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob01.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob01.eps deleted file mode 100755 index ff8a7f10d..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob01.eps +++ /dev/null @@ -1,388 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Tue Jan 17 10:52:30 1995 -%%For: prof -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 420 147 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 419.007996 146.95401 rectclip --79 -369.876007 translate -79 369.876007 419.007996 146.95401 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 2.412863e-35 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -/crlinw 1 def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -10.25 -10.25 205.25 480.25 1 0 0 1.627907 0 -302.70929 sc6mt astore ssl --4.371139e-08 1 -1 -4.371139e-08 660.23999 327.600037 sc4mt astore -4.371139e-08 1 -1 -4.371139e-08 660.23999 327.600037 sc5mt astore -10 -10 171 499 -4.371139e-08 1.627907 -1 -7.115807e-08 704.23999 200.476807 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -10.5 -10.5 225.5 480.5 1 0 0 1.627907 0 -302.70929 sc6mt astore ssl --4.371139e-08 1 -1 -4.371139e-08 660.23999 327.600037 sc4mt astore -4.371139e-08 1 -1 -4.371139e-08 660.23999 327.600037 sc5mt astore -10 -10 171 499 -4.371139e-08 1.627907 -1 -7.115807e-08 724.73999 200.476807 sc6mt astore ssl --4.371139e-08 1 -1 -4.371139e-08 660.23999 327.600037 sc4mt astore -4.371139e-08 1 -1 -4.371139e-08 660.23999 327.600037 sc5mt astore 9.76001 -9.850006 185.23999 479.600006 1 0 0 1.627907 0 -302.70929 sc6mt astore ssl --4.371139e-08 1 -1 -4.371139e-08 660.23999 327.600037 sc4mt astore -4.371139e-08 1 -1 -4.371139e-08 660.23999 327.600037 sc5mt astore 10.25 -10.25 245.25 480.25 1 0 0 1.627907 0 -302.70929 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -10 -10 187.5 469.5 1 0 0 1.627907 58 -285.616272 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -5.5 -5.5 185 480 1 0 0 1.627907 0 -302.70929 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -42.5 0 179.5 474.5 1 0 0 1.627907 0 -302.70929 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -42.5 0 244 463.5 1 0 0 1.627907 58.375 -284.552307 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -4.75 -4.75 260.25 474.75 1 0 0 1.627907 0 -302.70929 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -10.25 -10.25 205.25 480.25 1 0 0 1.627907 129 -302.70929 sc6mt astore ssl --4.371139e-08 1 -1 -4.371139e-08 660.23999 327.600037 sc4mt astore -4.371139e-08 1 -1 -4.371139e-08 660.23999 327.600037 sc5mt astore -10 -10 171 499 -4.371139e-08 1.627907 -1 -7.115807e-08 833.23999 200.476807 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -10.5 -10.5 225.5 480.5 1 0 0 1.627907 129 -302.70929 sc6mt astore ssl --4.371139e-08 1 -1 -4.371139e-08 660.23999 327.600037 sc4mt astore -4.371139e-08 1 -1 -4.371139e-08 660.23999 327.600037 sc5mt astore -10 -10 171 499 -4.371139e-08 1.627907 -1 -7.115807e-08 853.73999 200.476807 sc6mt astore ssl --4.371139e-08 1 -1 -4.371139e-08 660.23999 327.600037 sc4mt astore -4.371139e-08 1 -1 -4.371139e-08 660.23999 327.600037 sc5mt astore 9.76001 -9.850006 185.23999 479.600006 1 0 0 1.627907 129 -302.70929 sc6mt astore ssl --4.371139e-08 1 -1 -4.371139e-08 660.23999 327.600037 sc4mt astore -4.371139e-08 1 -1 -4.371139e-08 660.23999 327.600037 sc5mt astore 10.25 -10.25 245.25 480.25 1 0 0 1.627907 129 -302.70929 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -10 -10 187.5 469.5 1 0 0 1.627907 187 -285.616272 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -5.5 -5.5 185 480 1 0 0 1.627907 129 -302.70929 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -42.5 0 179.5 474.5 1 0 0 1.627907 129 -302.70929 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -42.5 0 244 463.5 1 0 0 1.627907 187.375 -284.552307 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -4.75 -4.75 260.25 474.75 1 0 0 1.627907 129 -302.70929 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -10.25 -10.25 205.25 480.25 1 0 0 1.627907 62 -358.70929 sc6mt astore ssl --4.371139e-08 1 -1 -4.371139e-08 660.23999 327.600037 sc4mt astore -4.371139e-08 1 -1 -4.371139e-08 660.23999 327.600037 sc5mt astore -10 -10 171 499 -4.371139e-08 1.627907 -1 -7.115807e-08 766.23999 144.476807 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -10.5 -10.5 225.5 480.5 1 0 0 1.627907 62 -358.70929 sc6mt astore ssl --4.371139e-08 1 -1 -4.371139e-08 660.23999 327.600037 sc4mt astore -4.371139e-08 1 -1 -4.371139e-08 660.23999 327.600037 sc5mt astore -10 -10 171 499 -4.371139e-08 1.627907 -1 -7.115807e-08 786.73999 144.476807 sc6mt astore ssl --4.371139e-08 1 -1 -4.371139e-08 660.23999 327.600037 sc4mt astore -4.371139e-08 1 -1 -4.371139e-08 660.23999 327.600037 sc5mt astore 9.76001 -9.850006 185.23999 479.600006 1 0 0 1.627907 62 -358.70929 sc6mt astore ssl --4.371139e-08 1 -1 -4.371139e-08 660.23999 327.600037 sc4mt astore -4.371139e-08 1 -1 -4.371139e-08 660.23999 327.600037 sc5mt astore 10.25 -10.25 245.25 480.25 1 0 0 1.627907 62 -358.70929 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -10 -10 187.5 469.5 1 0 0 1.627907 120 -341.616272 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -5.5 -5.5 185 480 1 0 0 1.627907 62 -358.70929 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -42.5 0 179.5 474.5 1 0 0 1.627907 62 -358.70929 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -42.5 0 244 463.5 1 0 0 1.627907 120.375 -340.552307 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -4.75 -4.75 260.25 474.75 1 0 0 1.627907 62 -358.70929 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -55 1 487 442 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -69 0 432 414 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 56 431 414 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 56 136 414 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -69 0 206 414 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -55 1 136 442 1 0 0 1 0 0 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(R) [0 0] 195 507 /Times-Bold [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 8 -9] dotx -/txtdraw true def -/txlndraw true def -(2 ) [9 0 0 0] 207.996002 499.799988 /Times-Bold [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 8 -9] dotx -/txtdraw true def -/txlndraw true def -(R) [0 0] 341 507 /Times-Bold [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 0 -11] dotx -/txtdraw true def -/txlndraw true def -(3 ) [9 0 0 0] 353.996002 499.799988 /Times-Bold [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 0 -11] dotx -/txtdraw true def -/txlndraw true def -(R) [0 0] 270 373 /Times-Bold [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 3 9] dotx -/txtdraw true def -/txlndraw true def -(1 ) [9 0 0 0] 282.996002 365.799988 /Times-Bold [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 3 9] dotx -/txtdraw true def -/txlndraw true def -(a ) [9 0 0 0] 82 476 /Times-Bold [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -2 -11] dotx -/txtdraw true def -/txlndraw true def -(. ) [5.5 0 0 0] 82 451.506012 /Times-Bold [ 22 1 mul 0 0 22 0 0 ] [1 0 0 1 -2 -11] dotx -/txtdraw true def -/txlndraw true def -(b ) [10.007996 0 0 0] 82 476 /Times-Bold [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 404 -11] dotx -/txtdraw true def -/txlndraw true def -(. ) [5.5 0 0 0] 82 451.506012 /Times-Bold [ 22 1 mul 0 0 22 0 0 ] [1 0 0 1 404 -11] dotx -end -grestore -grestore -%%Trailer -%%DocumentFonts: Times-Bold -%%BoundingBox: 0.000000 0.000000 419.007996 146.954010 diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob01.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob01.gif deleted file mode 100755 index fd04b9614..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob01.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob02a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob02a.eps deleted file mode 100755 index 1fd2f6190..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob02a.eps +++ /dev/null @@ -1,719 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: prob5902a.eps -%%CreationDate: 7/23/1996 -%%Pages: 0 -%%DocumentFonts: Helvetica -%%BoundingBox:78 542 475 669 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica/Helvetica 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -2065.5 2543.5 m -2222.5 2387.5 L -35 slw 0 sg str -gr -gs -2222.5 2387.5 m -2378.5 2543.5 L -35 slw 0 sg str -gr -gs -2378.5 2543.5 m -2534.5 2387.5 L -35 slw 0 sg str -gr -gs -2534.5 2387.5 m -2690.5 2543.5 L -35 slw 0 sg str -gr -gs -2690.5 2543.5 m -2847.5 2387.5 L -35 slw 0 sg str -gr -gs -2847.5 2387.5 m -3003.5 2543.5 L -35 slw 0 sg str -gr -gs -3003.5 2543.5 m -3315.5 2543.5 L -35 slw 0 sg str -gr -gs -1753.5 2543.5 m -2065.5 2543.5 L -35 slw 0 sg str -gr -gs -3315.5 2543.5 m -3472.5 2387.5 L -35 slw 0 sg str -gr -gs -3472.5 2387.5 m -3628.5 2543.5 L -35 slw 0 sg str -gr -gs -3628.5 2543.5 m -3784.5 2387.5 L -35 slw 0 sg str -gr -gs -3784.5 2387.5 m -3940.5 2543.5 L -35 slw 0 sg str -gr -gs -3940.5 2543.5 m -4097.5 2387.5 L -35 slw 0 sg str -gr -gs -4097.5 2387.5 m -4253.5 2543.5 L -35 slw 0 sg str -gr -gs -4253.5 2543.5 m -4565.5 2543.5 L -35 slw 0 sg str -gr -gs -3003.5 2543.5 m -3315.5 2543.5 L -35 slw 0 sg str -gr -gs -4565.5 2543.5 m -4722.5 2387.5 L -35 slw 0 sg str -gr -gs -4722.5 2387.5 m -4878.5 2543.5 L -35 slw 0 sg str -gr -gs -4878.5 2543.5 m -5034.5 2387.5 L -35 slw 0 sg str -gr -gs -5034.5 2387.5 m -5191.5 2543.5 L -35 slw 0 sg str -gr -gs -5191.5 2543.5 m -5347.5 2387.5 L -35 slw 0 sg str -gr -gs -5347.5 2387.5 m -5503.5 2543.5 L -35 slw 0 sg str -gr -gs -5503.5 2543.5 m -5816.5 2543.5 L -35 slw 0 sg str -gr -gs -4253.5 2543.5 m -4565.5 2543.5 L -35 slw 0 sg str -gr -gs -5816.5 2543.5 m -5972.5 2387.5 L -35 slw 0 sg str -gr -gs -5972.5 2387.5 m -6128.5 2543.5 L -35 slw 0 sg str -gr -gs -6128.5 2543.5 m -6284.5 2387.5 L -35 slw 0 sg str -gr -gs -6284.5 2387.5 m -6441.5 2543.5 L -35 slw 0 sg str -gr -gs -6441.5 2543.5 m -6597.5 2387.5 L -35 slw 0 sg str -gr -gs -6597.5 2387.5 m -6753.5 2543.5 L -35 slw 0 sg str -gr -gs -6753.5 2543.5 m -7066.5 2543.5 L -35 slw 0 sg str -gr -gs -5503.5 2543.5 m -5816.5 2543.5 L -35 slw 0 sg str -gr -gs -7066.5 2543.5 m -7166.5 2543.5 L -35 slw 0 sg str -gr -gs -7274.5 2543.5 m -7374.5 2543.5 L -35 slw 0 sg str -gr -gs -7483.5 2543.5 m -7583.5 2543.5 L -35 slw 0 sg str -gr -gs -7691.5 2543.5 m -7791.5 2543.5 L -35 slw 0 sg str -gr -gs -4409.5 2856.5 m -4565.5 3012.5 L -35 slw 0 sg str -gr -gs -4565.5 3012.5 m -4409.5 3168.5 L -35 slw 0 sg str -gr -gs -4409.5 3168.5 m -4565.5 3325.5 L -35 slw 0 sg str -gr -gs -4565.5 3325.5 m -4409.5 3481.5 L -35 slw 0 sg str -gr -gs -4409.5 3481.5 m -4565.5 3637.5 L -35 slw 0 sg str -gr -gs -4565.5 3637.5 m -4409.5 3793.5 L -35 slw 0 sg str -gr -gs -4409.5 3793.5 m -4409.5 4106.5 L -35 slw 0 sg str -gr -gs -4409.5 2543.5 m -4409.5 2856.5 L -35 slw 0 sg str -gr -gs -3159.5 2856.5 m -3315.5 3012.5 L -35 slw 0 sg str -gr -gs -3315.5 3012.5 m -3159.5 3168.5 L -35 slw 0 sg str -gr -gs -3159.5 3168.5 m -3315.5 3325.5 L -35 slw 0 sg str -gr -gs -3315.5 3325.5 m -3159.5 3481.5 L -35 slw 0 sg str -gr -gs -3159.5 3481.5 m -3315.5 3637.5 L -35 slw 0 sg str -gr -gs -3315.5 3637.5 m -3159.5 3793.5 L -35 slw 0 sg str -gr -gs -3159.5 3793.5 m -3159.5 4106.5 L -35 slw 0 sg str -gr -gs -3159.5 2543.5 m -3159.5 2856.5 L -35 slw 0 sg str -gr -gs -5659.5 2856.5 m -5816.5 3012.5 L -35 slw 0 sg str -gr -gs -5816.5 3012.5 m -5659.5 3168.5 L -35 slw 0 sg str -gr -gs -5659.5 3168.5 m -5816.5 3325.5 L -35 slw 0 sg str -gr -gs -5816.5 3325.5 m -5659.5 3481.5 L -35 slw 0 sg str -gr -gs -5659.5 3481.5 m -5816.5 3637.5 L -35 slw 0 sg str -gr -gs -5816.5 3637.5 m -5659.5 3793.5 L -35 slw 0 sg str -gr -gs -5659.5 3793.5 m -5659.5 4106.5 L -35 slw 0 sg str -gr -gs -5659.5 2543.5 m -5659.5 2856.5 L -35 slw 0 sg str -gr -gs -1753.5 4106.5 m -7222.5 4106.5 L -35 slw 0 sg str -gr -gs -7222.5 4106.5 m -7322.5 4106.5 L -35 slw 0 sg str -gr -gs -7430.5 4106.5 m -7530.5 4106.5 L -35 slw 0 sg str -gr -gs -7639.5 4106.5 m -7739.5 4106.5 L -35 slw 0 sg str -gr -gs -7847.5 4106.5 m -7947.5 4106.5 L -35 slw 0 sg str -gr -gs -2534 2543 2621 2839 R -1 sg fill -gr -/_Helvetica ff [278 0 0 -278 0 0] mf sf -2534 2751 m 0 sg (r) show -gs -3784 2543 3871 2839 R -1 sg fill -gr -3784 2751 m 2.78 slw 0 sg (r) show -gs -4722 3168 4808 3464 R -1 sg fill -gr -4722 3376 m 2.78 slw 0 sg (r) show -gs -3472 3168 3558 3464 R -1 sg fill -gr -3472 3376 m 2.78 slw 0 sg (r) show -gs -5972 3168 6058 3464 R -1 sg fill -gr -5972 3376 m 2.78 slw 0 sg (r) show -gs -6441 2543 6527 2839 R -1 sg fill -gr -6441 2751 m 2.78 slw 0 sg (r) show -gs -1614 3177 1805 3472 R -1 sg fill -gr -1614 3385 m 2.78 slw 0 sg (R) show -gs -1597 2708 1770 3003 R -1 sg fill -gr -1597 2916 m 2.78 slw 0 sg (A) show -gs -1597 3793 1770 4089 R -1 sg fill -gr -1597 4001 m 2.78 slw 0 sg (B) show -gs -7066.5 2856.5 m -7222.5 3012.5 L -35 slw 0 sg str -gr -gs -7222.5 3012.5 m -7066.5 3168.5 L -35 slw 0 sg str -gr -gs -7066.5 3168.5 m -7222.5 3325.5 L -35 slw 0 sg str -gr -gs -7222.5 3325.5 m -7066.5 3481.5 L -35 slw 0 sg str -gr -gs -7066.5 3481.5 m -7222.5 3637.5 L -35 slw 0 sg str -gr -gs -7222.5 3637.5 m -7066.5 3793.5 L -35 slw 0 sg str -gr -gs -7066.5 3793.5 m -7066.5 4106.5 L -35 slw 0 sg str -gr -gs -7066.5 2543.5 m -7066.5 2856.5 L -35 slw 0 sg str -gr -gs -1849.5 3325.5 m -2317.5 3325.5 L -35 slw 0 sg str -gr -gs -2161.5 3168.5 m -2317.5 3325.5 L -35 slw 0 sg str -gr -gs -2317.5 3325.5 m -2161.5 3481.5 L -35 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob02a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob02a.gif deleted file mode 100755 index f50bdb235..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob02a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob03av1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob03av1.eps deleted file mode 100755 index f12c1f4d4..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob03av1.eps +++ /dev/null @@ -1,706 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q5a1.draw -- /teacher/Apps/Drawfiles/phys121a/set11 -%%Creator: Draw -%%CreationDate: Mon Jun 12 09:35:05 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 109 349 380 670 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --43 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -109 349 271 321 rectclip -1 1 2.674419 setup -0 nxsetgray -150 0 160 551 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 150 311 401 line -grestore -1 1 2.674419 setup -0 nxsetgray -75 50 160 552 line -grestore -1 1 2.674419 setup -0 nxsetgray -75 -50 237 601 line -grestore -1 1 2.674419 setup -0 nxsetgray -40 0 160 400 line -grestore -1 1 2.674419 setup -0 nxsetgray -40 0 271 400 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 -60 200 430 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 -60 270 429 line -grestore -1 1 2.674419 setup -0 nxsetgray -70 0 200 430 line -grestore -1 1 2.674419 setup -0 nxsetgray -70 0 200 369 line -grestore -1 1 2.674419 setup -0 nxsetgray -60 0 312 400 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 -60 235 662 line -grestore -1 1 2.674419 setup -0 nxsetgray -42 42 312 551 line -grestore -1 1 2.674419 setup -0 nxsetgray -42 42 117 357 line -grestore -1 1 2.674419 setup -0 nxsetgray -42 -42 118 594 line -grestore -1 1 2.674419 setup -0 nxsetgray -42 -42 118 441 line -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -223 416 24 36 rectfill -1 nxsetgray -223 416 24 36 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 223 429 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 226 439 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 231 419 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 233 429 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 236 439 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 241 419 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2.000001 10 243 429 line -grestore -1 1 1.744186 setup -0 nxsetgray -2.000001 -10 245.999954 439 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -223 356 24 36 rectfill -1 nxsetgray -223 356 24 36 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 223 369 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 226 379 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 231 359 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 233 369 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 236 379 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 241 359 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2.000001 10 243 369 line -grestore -1 1 1.744186 setup -0 nxsetgray -2.000001 -10 245.999954 379 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -223 539 24 36 rectfill -1 nxsetgray -223 539 24 36 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 223 552 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 226 562 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 231 542 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 233 552 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 236 562 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 241 542 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2.000001 10 243 552 line -grestore -1 1 1.744186 setup -0 nxsetgray -2.000001 -10 245.999954 562 line -grestore -grestore -grestore -grestore -1 1 2.674419 setup -0 nxsetgray -0 150 160 400 line -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -142 472 37 26 rectfill -1 nxsetgray -142 472 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 161 498 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 151 491 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 152 490 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 161 487 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 151 480 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 152 479 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 161 477.000031 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 161 472 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -gsave --20.63266 318.500031 translate -0.959184 0.961538 scale -1 nxsetgray -gsave -newpath -systemdict -begin -205 247 254 299 setbbox -228 249 moveto --23 29 rlineto -23 21 rlineto -26 -33 rlineto --27 -19 rlineto -1 2 rlineto -end -fill -grestore -grestore --20.63266 318.500031 translate -0.959184 0.961538 scale -1 nxsetgray -gsave -newpath -systemdict -begin -205 247 254 299 setbbox -228 249 moveto --23 29 rlineto -23 21 rlineto -26 -33 rlineto --27 -19 rlineto -1 2 rlineto -end -stroke -grestore -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 -11 186 581 line -grestore -1 1 1.744186 setup -0 nxsetgray -14.999999 -15.000002 187 581 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 -11 200 578 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 -11 197.999969 590 line -grestore -1 1 1.744186 setup -0 nxsetgray -14.999999 -15.000002 198.999969 590 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 -11 211.999969 587 line -grestore -grestore -grestore -grestore -0 0 6.744186 setup -1 1 6.744186 setup -1 nxsetgray -15 -10 263 584 line -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -3 11 270 580 line -grestore -1 1 1.744186 setup -0 nxsetgray -15 15 256 575 line -grestore -1 1 1.744186 setup -0 nxsetgray -3 11 257 576 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -3 11 281 574 line -grestore -1 1 1.744186 setup -0 nxsetgray -15 15 267 569 line -grestore -1 1 1.744186 setup -0 nxsetgray -3 11 268 570 line -grestore -grestore -grestore -grestore -0 setgray -0.333333 setgray -1 1 0 setup -1 nxsetgray -296 479 28 13 rectfill -1 nxsetgray -296 479 28 13 rectstroke -grestore -1 1 5.813953 setup -0 nxsetgray -10 0 307 490 line -grestore -1 1 1.627907 setup -0 nxsetgray -30 0 297 478 line -grestore -1 1 1.627907 setup -gsave -/Helvetica-Bold findfont 20 scalefont [1 0 0 -1 0 0] makefont -225 -exch -defineuserobject -225 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1092] concat -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -230 -exch -defineuserobject -230 execuserobject setfont -0 nxsetgray -146 551 moveto (a) show -grestore -grestore -1 1 1.627907 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1216] concat -230 execuserobject setfont -0 nxsetgray -220 613 moveto (b) show -grestore -grestore -1 1 1.627907 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1096] concat -230 execuserobject setfont -0 nxsetgray -317 553 moveto (c) show -grestore -grestore -1 1 1.627907 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 818] concat -230 execuserobject setfont -0 nxsetgray -317 414 moveto (d) show -grestore -grestore -1 1 1.627907 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 780] concat -230 execuserobject setfont -0 nxsetgray -276 395 moveto (e) show -grestore -grestore -1 1 1.627907 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 774] concat -230 execuserobject setfont -0 nxsetgray -191 392 moveto (f) show -grestore -grestore -1 1 1.627907 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 802] concat -230 execuserobject setfont -0 nxsetgray -140 406 moveto (g) show -grestore -grestore -1 1 1.627907 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1001] concat -225 execuserobject setfont -0 nxsetgray -321 508 moveto (-) show -grestore -grestore -1 1 1.627907 setup -gsave -225 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 935] concat -225 execuserobject setfont -0 nxsetgray -320 475 moveto (+) show -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob03av1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob03av1.gif deleted file mode 100755 index 8005f3a46..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob03av1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob03av2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob03av2.eps deleted file mode 100755 index bfd530697..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob03av2.eps +++ /dev/null @@ -1,706 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q5a2.draw -- /teacher/Apps/Drawfiles/phys121a/set11 -%%Creator: Draw -%%CreationDate: Mon Jun 12 09:39:55 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 109 349 380 670 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --43 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -109 349 271 321 rectclip -1 1 2.674419 setup -0 nxsetgray -150 0 160 551 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 150 311 401 line -grestore -1 1 2.674419 setup -0 nxsetgray -75 50 160 552 line -grestore -1 1 2.674419 setup -0 nxsetgray -75 -50 237 601 line -grestore -1 1 2.674419 setup -0 nxsetgray -40 0 160 400 line -grestore -1 1 2.674419 setup -0 nxsetgray -40 0 271 400 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 -60 200 430 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 -60 270 429 line -grestore -1 1 2.674419 setup -0 nxsetgray -70 0 200 430 line -grestore -1 1 2.674419 setup -0 nxsetgray -70 0 200 369 line -grestore -1 1 2.674419 setup -0 nxsetgray -60 0 312 400 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 -60 235 662 line -grestore -1 1 2.674419 setup -0 nxsetgray -42 42 312 551 line -grestore -1 1 2.674419 setup -0 nxsetgray -42 42 117 357 line -grestore -1 1 2.674419 setup -0 nxsetgray -42 -42 118 594 line -grestore -1 1 2.674419 setup -0 nxsetgray -42 -42 118 441 line -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -223 416 24 36 rectfill -1 nxsetgray -223 416 24 36 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 223 429 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 226 439 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 231 419 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 233 429 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 236 439 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 241 419 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2.000001 10 243 429 line -grestore -1 1 1.744186 setup -0 nxsetgray -2.000001 -10 245.999954 439 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -223 356 24 36 rectfill -1 nxsetgray -223 356 24 36 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 223 369 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 226 379 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 231 359 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 233 369 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 236 379 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 241 359 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2.000001 10 243 369 line -grestore -1 1 1.744186 setup -0 nxsetgray -2.000001 -10 245.999954 379 line -grestore -grestore -grestore -grestore -1 1 2.674419 setup -0 nxsetgray -0 150 160 400 line -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -142 472 37 26 rectfill -1 nxsetgray -142 472 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 161 498 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 151 491 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 152 490 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 161 487 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 151 480 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 152 479 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 161 477.000031 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 161 472 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -gsave --20.63266 318.500031 translate -0.959184 0.961538 scale -1 nxsetgray -gsave -newpath -systemdict -begin -205 247 254 299 setbbox -228 249 moveto --23 29 rlineto -23 21 rlineto -26 -33 rlineto --27 -19 rlineto -1 2 rlineto -end -fill -grestore -grestore --20.63266 318.500031 translate -0.959184 0.961538 scale -1 nxsetgray -gsave -newpath -systemdict -begin -205 247 254 299 setbbox -228 249 moveto --23 29 rlineto -23 21 rlineto -26 -33 rlineto --27 -19 rlineto -1 2 rlineto -end -stroke -grestore -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 -11 186 581 line -grestore -1 1 1.744186 setup -0 nxsetgray -14.999999 -15.000002 187 581 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 -11 200 578 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 -11 197.999969 590 line -grestore -1 1 1.744186 setup -0 nxsetgray -14.999999 -15.000002 198.999969 590 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 -11 211.999969 587 line -grestore -grestore -grestore -grestore -0 0 6.744186 setup -1 1 6.744186 setup -1 nxsetgray -15 -10 263 584 line -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -3 11 270 580 line -grestore -1 1 1.744186 setup -0 nxsetgray -15 15 256 575 line -grestore -1 1 1.744186 setup -0 nxsetgray -3 11 257 576 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -3 11 281 574 line -grestore -1 1 1.744186 setup -0 nxsetgray -15 15 267 569 line -grestore -1 1 1.744186 setup -0 nxsetgray -3 11 268 570 line -grestore -grestore -grestore -grestore -0 setgray -0.333333 setgray -1 1 0 setup -1 nxsetgray -227 537 13 28 rectfill -1 nxsetgray -227 537 13 28 rectstroke -grestore -1 1 5.813953 setup -0 nxsetgray -0 10 239 545 line -grestore -1 1 1.627907 setup -0 nxsetgray -0 30 227 536 line -grestore -1 1 1.627907 setup -gsave -/Helvetica-Bold findfont 20 scalefont [1 0 0 -1 0 0] makefont -225 -exch -defineuserobject -225 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1092] concat -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -230 -exch -defineuserobject -230 execuserobject setfont -0 nxsetgray -146 551 moveto (a) show -grestore -grestore -1 1 1.627907 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1216] concat -230 execuserobject setfont -0 nxsetgray -220 613 moveto (b) show -grestore -grestore -1 1 1.627907 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1096] concat -230 execuserobject setfont -0 nxsetgray -317 553 moveto (c) show -grestore -grestore -1 1 1.627907 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 818] concat -230 execuserobject setfont -0 nxsetgray -317 414 moveto (d) show -grestore -grestore -1 1 1.627907 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 780] concat -230 execuserobject setfont -0 nxsetgray -276 395 moveto (e) show -grestore -grestore -1 1 1.627907 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 774] concat -230 execuserobject setfont -0 nxsetgray -191 392 moveto (f) show -grestore -grestore -1 1 1.627907 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 802] concat -230 execuserobject setfont -0 nxsetgray -140 406 moveto (g) show -grestore -grestore -1 1 1.627907 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1127] concat -225 execuserobject setfont -0 nxsetgray -243 571 moveto (-) show -grestore -grestore -1 1 1.627907 setup -gsave -225 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1131] concat -225 execuserobject setfont -0 nxsetgray -213 573 moveto (+) show -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -292 470 37 26 rectfill -1 nxsetgray -292 470 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 311 496 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 301 489 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 302 488 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 311 485 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 301 478 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 302 477 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 311 475.000031 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 311 470 line -grestore -grestore -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob03av2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob03av2.gif deleted file mode 100755 index 0e92d5b92..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob03av2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob03av3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob03av3.eps deleted file mode 100755 index fd690bfa7..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob03av3.eps +++ /dev/null @@ -1,678 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q5a3.draw -- /teacher/Apps/Drawfiles/phys121a/set11 -%%Creator: Draw -%%CreationDate: Fri Jun 23 12:21:49 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 109 349 380 670 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -109 349 271 321 rectclip -1 1 2.674419 setup -0 nxsetgray -150 0 160 551 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 150 311 401 line -grestore -1 1 2.674419 setup -0 nxsetgray -75 50 160 552 line -grestore -1 1 2.674419 setup -0 nxsetgray -75 -50 237 601 line -grestore -1 1 2.674419 setup -0 nxsetgray -110 0 160 400 line -grestore -1 1 2.674419 setup -0 nxsetgray -40 0 271 400 line -grestore -1 1 2.674419 setup -0 nxsetgray -60 0 312 400 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 -60 235 662 line -grestore -1 1 2.674419 setup -0 nxsetgray -42 42 312 551 line -grestore -1 1 2.674419 setup -0 nxsetgray -42 42 117 357 line -grestore -1 1 2.674419 setup -0 nxsetgray -42 -42 118 594 line -grestore -1 1 2.674419 setup -0 nxsetgray -42 -42 118 441 line -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -223 539 24 36 rectfill -1 nxsetgray -223 539 24 36 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 223 552 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 226 562 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 231 542 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 233 552 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 236 562 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 241 542 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2.000001 10 243 552 line -grestore -1 1 1.744186 setup -0 nxsetgray -2.000001 -10 245.999954 562 line -grestore -grestore -grestore -grestore -1 1 2.674419 setup -0 nxsetgray -0 150 160 400 line -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -293 473 37 26 rectfill -1 nxsetgray -293 473 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 312 499 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 302 492 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 303 491 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 312 488 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 302 481 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 303 480 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 312 478.000031 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 312 473 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -gsave --20.63266 318.500031 translate -0.959184 0.961538 scale -1 nxsetgray -gsave -newpath -systemdict -begin -205 247 254 299 setbbox -228 249 moveto --23 29 rlineto -23 21 rlineto -26 -33 rlineto --27 -19 rlineto -1 2 rlineto -end -fill -grestore -grestore --20.63266 318.500031 translate -0.959184 0.961538 scale -1 nxsetgray -gsave -newpath -systemdict -begin -205 247 254 299 setbbox -228 249 moveto --23 29 rlineto -23 21 rlineto -26 -33 rlineto --27 -19 rlineto -1 2 rlineto -end -stroke -grestore -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 -11 186 581 line -grestore -1 1 1.744186 setup -0 nxsetgray -14.999999 -15.000002 187 581 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 -11 200 578 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 -11 197.999969 590 line -grestore -1 1 1.744186 setup -0 nxsetgray -14.999999 -15.000002 198.999969 590 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 -11 211.999969 587 line -grestore -grestore -grestore -grestore -0 0 6.744186 setup -1 1 6.744186 setup -1 nxsetgray -15 -10 263 584 line -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -3 11 270 580 line -grestore -1 1 1.744186 setup -0 nxsetgray -15 15 256 575 line -grestore -1 1 1.744186 setup -0 nxsetgray -3 11 257 576 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -3 11 281 574 line -grestore -1 1 1.744186 setup -0 nxsetgray -15 15 267 569 line -grestore -1 1 1.744186 setup -0 nxsetgray -3 11 268 570 line -grestore -grestore -grestore -grestore -1 1 1.627907 setup -gsave -/Helvetica-Bold findfont 20 scalefont [1 0 0 -1 0 0] makefont -12 -exch -defineuserobject -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1092] concat -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -124 -exch -defineuserobject -124 execuserobject setfont -0 nxsetgray -146 551 moveto (a) show -grestore -grestore -1 1 1.627907 setup -gsave -124 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1216] concat -124 execuserobject setfont -0 nxsetgray -220 613 moveto (b) show -grestore -grestore -1 1 1.627907 setup -gsave -124 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1096] concat -124 execuserobject setfont -0 nxsetgray -317 553 moveto (c) show -grestore -grestore -1 1 1.627907 setup -gsave -124 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 818] concat -124 execuserobject setfont -0 nxsetgray -317 414 moveto (d) show -grestore -grestore -1 1 1.627907 setup -gsave -124 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 782] concat -124 execuserobject setfont -0 nxsetgray -283 396 moveto (e) show -grestore -grestore -1 1 1.627907 setup -gsave -124 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 820] concat -124 execuserobject setfont -0 nxsetgray -191 415 moveto (f) show -grestore -grestore -1 1 1.627907 setup -gsave -124 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 802] concat -124 execuserobject setfont -0 nxsetgray -140 406 moveto (g) show -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -201 388 24 36 rectfill -1 nxsetgray -201 388 24 36 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 201 401 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 204 411 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 209 391 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 211 401 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 214 411 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 219 391 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2.000001 10 221 401 line -grestore -1 1 1.744186 setup -0 nxsetgray -2.000001 -10 223.999954 411 line -grestore -grestore -grestore -grestore -0 0 5.813953 setup -1 1 0 setup -1 nxsetgray -143 481 28 13 rectfill -1 nxsetgray -143 481 28 13 rectstroke -grestore -1 1 5.813953 setup -0 nxsetgray -10 0 154 480 line -grestore -1 1 1.627907 setup -0 nxsetgray -30 0 143 492 line -grestore -1 1 1.627907 setup -gsave -124 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 949] concat -12 execuserobject setfont -0 nxsetgray -168 482 moveto (-) show -grestore -grestore -1 1 1.627907 setup -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1009] concat -12 execuserobject setfont -0 nxsetgray -165 512 moveto (+) show -grestore -grestore -grestore -0 setgray -0.333333 setgray -1 1 0 setup -1 nxsetgray -263 387 13 28 rectfill -1 nxsetgray -263 387 13 28 rectstroke -grestore -1 1 5.813953 setup -0 nxsetgray -0 10 267 395 line -grestore -1 1 1.627907 setup -0 nxsetgray -0 30 276 386 line -grestore -1 1 1.627907 setup -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 831] concat -12 execuserobject setfont -0 nxsetgray -253 423 moveto (-) show -grestore -grestore -1 1 1.627907 setup -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 829] concat -12 execuserobject setfont -0 nxsetgray -282 422 moveto (+) show -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob03av3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob03av3.gif deleted file mode 100755 index 350662ed8..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob03av3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob04.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob04.eps deleted file mode 100755 index e9ad6d968..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob04.eps +++ /dev/null @@ -1,510 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: prob5904.eps -%%CreationDate: 7/23/1996 -%%Pages: 0 -%%DocumentFonts: Helvetica -%%BoundingBox:157 495 429 640 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica/Helvetica 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -4844.5 3342.5 m -5312.5 3342.5 L -35 slw 0 sg str -gr -gs -3906.5 3342.5 m -4062.5 3185.5 L -35 slw 0 sg str -gr -gs -4062.5 3185.5 m -4219.5 3342.5 L -35 slw 0 sg str -gr -gs -4219.5 3342.5 m -4375.5 3185.5 L -35 slw 0 sg str -gr -gs -4375.5 3185.5 m -4531.5 3342.5 L -35 slw 0 sg str -gr -gs -4531.5 3342.5 m -4687.5 3185.5 L -35 slw 0 sg str -gr -gs -4687.5 3185.5 m -4844.5 3342.5 L -35 slw 0 sg str -gr -gs -5312.5 3342.5 m -5469.5 3185.5 L -35 slw 0 sg str -gr -gs -5469.5 3185.5 m -5625.5 3342.5 L -35 slw 0 sg str -gr -gs -5625.5 3342.5 m -5781.5 3185.5 L -35 slw 0 sg str -gr -gs -5781.5 3185.5 m -5937.5 3342.5 L -35 slw 0 sg str -gr -gs -5937.5 3342.5 m -6094.5 3185.5 L -35 slw 0 sg str -gr -gs -6094.5 3185.5 m -6250.5 3342.5 L -35 slw 0 sg str -gr -gs -6250.5 3342.5 m -6563.5 3342.5 L -35 slw 0 sg str -gr -gs -3594.5 3342.5 m -3906.5 3342.5 L -35 slw 0 sg str -gr -gs -3594.5 3342.5 m -3594.5 3810.5 L -35 slw 0 sg str -gr -gs -6563.5 3342.5 m -6563.5 3810.5 L -35 slw 0 sg str -gr -gs -5156.5 3342.5 m -5156.5 3654.5 L -35 slw 0 sg str -gr -gs -5156.5 4592.5 m -5000.5 4435.5 L -35 slw 0 sg str -gr -gs -5000.5 4435.5 m -5156.5 4279.5 L -35 slw 0 sg str -gr -gs -5156.5 4279.5 m -5000.5 4123.5 L -35 slw 0 sg str -gr -gs -5000.5 4123.5 m -5156.5 3967.5 L -35 slw 0 sg str -gr -gs -5156.5 3967.5 m -5000.5 3810.5 L -35 slw 0 sg str -gr -gs -5000.5 3810.5 m -5156.5 3654.5 L -35 slw 0 sg str -gr -gs -3373 3789 3815 4231 OV -1 sg fill -gr -gs -3373.5 3789.5 3815.5 4231.5 OV -35 slw 0 sg str -gr -gs -6342 3832 6783 4274 OV -1 sg fill -gr -gs -6342.5 3832.5 6783.5 4274.5 OV -35 slw 0 sg str -gr -gs -3594.5 4231.5 m -3594.5 4904.5 L -35 slw 0 sg str -gr -gs -3594.5 4904.5 m -6563.5 4904.5 L -35 slw 0 sg str -gr -gs -6563.5 4274.5 m -6563.5 4904.5 L -35 slw 0 sg str -gr -gs -5156.5 4592.5 m -5156.5 4904.5 L -35 slw 0 sg str -gr -gs -2969 3819 3299 4114 R -1 sg fill -gr -/_Helvetica ff [278 0 0 -278 0 0] mf sf -2969 4027 m 0 sg (V1) show -gs -6866 3975 7196 4270 R -1 sg fill -gr -6866 4183 m 2.78 slw 0 sg (V2) show -gs -4201 2873 4549 3168 R -1 sg fill -gr -4201 3081 m 2.78 slw 0 sg (R1) show -gs -5625 2873 5972 3168 R -1 sg fill -gr -5625 3081 m 2.78 slw 0 sg (R3) show -gs -5295 4132 5642 4427 R -1 sg fill -gr -5295 4340 m 2.78 slw 0 sg (R2) show -gs -3594.5 3810.5 m -3594.5 4010.5 L -35 slw 0 sg str -gr -gs -3437.5 3910.5 m -3750.5 3910.5 L -35 slw 0 sg str -gr -gs -3437.5 4123.5 m -3750.5 4123.5 L -35 slw 0 sg str -gr -gs -6406.5 3967.5 m -6719.5 3967.5 L -35 slw 0 sg str -gr -gs -6406.5 4123.5 m -6719.5 4123.5 L -35 slw 0 sg str -gr -gs -6563.5 4053.5 m -6563.5 4123.5 L -35 slw 0 sg str -gr -gs -6563.5 4013.5 m -6563.5 4279.5 L -35 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob04.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob04.gif deleted file mode 100755 index a723fed8e..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob04.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob05a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob05a.eps deleted file mode 100755 index 97d8ec122..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob05a.eps +++ /dev/null @@ -1,517 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: resist3.eps - View 1 -- /Net/capa1.nscl.msu.edu/usr/user1/teacher/CAPA4/phy232f5/pictures -%%Creator: Tailor -%%CreationDate: Fri Sep 1 09:43:52 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 459 149 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -%%BeginResource: procset (Tailor 1.0) -/TailorGroupBegin {pop} def /TailorGroupEnd {} def -/TailorBlockBegin {pop pop pop} def /TailorBlockEnd {} def -/TailorSetUniformStroke {pop} def -%%EndResource - -gsave -[0.5 0 0 0.5 -39 -110] concat - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -%%EndSetup -gsave -0 0 612 792 rectclip -0 0 612 792 rectclip -gsave -0 setgray -1 setlinewidth -(* Creator: AppsoftDraw\012* Created for: teacher\012* Creation date: Wed Jun 23 09:24:59 1993\012) TailorGroupBegin -gsave -[1 0 0 1 0 0] matrix invertmatrix concat -[1 0 0 1 -40.9286 -620.75] concat -newpath -systemdict -begin -40.9286 620.75 498.341003 768.757996 setbbox -40.9286 620.75 moveto -498.341003 620.75 lineto -498.341003 768.757996 lineto -40.9286 768.757996 lineto -closepath -end -clip -gsave -newpath -systemdict -begin -57.393101 693.213989 64.464203 700.286011 setbbox -57.393101 696.75 moveto -57.393101 694.797974 58.977001 693.213989 60.9286 693.213989 curveto -62.880299 693.213989 64.464203 694.797974 64.464203 696.75 curveto -64.464203 698.702026 62.880299 700.286011 60.9286 700.286011 curveto -58.977001 700.286011 57.393101 698.702026 57.393101 696.75 curveto -closepath -end -fill -grestore -[1 0 0 1 -40.9286 -620.75] matrix invertmatrix concat -[1 0 0 1 -40.9286 -621.75] concat -4.4 setlinewidth -gsave -newpath -systemdict -begin -57.393101 693.213989 64.464203 700.286011 setbbox -57.393101 696.75 moveto -57.393101 694.797974 58.977001 693.213989 60.9286 693.213989 curveto -62.880299 693.213989 64.464203 694.797974 64.464203 696.75 curveto -64.464203 698.702026 62.880299 700.286011 60.9286 700.286011 curveto -58.977001 700.286011 57.393101 698.702026 57.393101 696.75 curveto -closepath -end -stroke -grestore -[1 0 0 1 -40.9286 -621.75] matrix invertmatrix concat -[-0.999997 0.002298 -0.002298 -0.999997 667.166992 127.119019] concat -1.9 setlinewidth -gsave -newpath -systemdict -begin -505.972992 39.687901 619.755981 61.293201 setbbox -505.972992 54.031601 moveto -505.972992 54.031601 526.526001 54.087002 526.526001 54.087002 curveto -526.526001 54.087002 533.182983 39.687901 533.182983 39.687901 curveto -533.182983 39.687901 546.505005 61.2896 546.505005 61.2896 curveto -546.505005 61.2896 559.820984 39.691399 559.820984 39.691399 curveto -559.820984 39.691399 573.142029 61.293201 573.142029 61.293201 curveto -573.142029 61.293201 586.458008 39.694901 586.458008 39.694901 curveto -586.458008 39.694901 593.119019 54.095798 593.119019 54.095798 curveto -593.119019 54.095798 619.755981 54.0993 619.755981 54.0993 curveto -end -stroke -grestore -gsave -newpath -systemdict -begin -333.053009 4.29036 446.837006 25.8957 setbbox -333.053009 18.634199 moveto -333.053009 18.634199 353.606995 18.6896 353.606995 18.6896 curveto -353.606995 18.6896 360.264008 4.29036 360.264008 4.29036 curveto -360.264008 4.29036 373.585999 25.892099 373.585999 25.892099 curveto -373.585999 25.892099 386.901001 4.2939 386.901001 4.2939 curveto -386.901001 4.2939 400.222992 25.8957 400.222992 25.8957 curveto -400.222992 25.8957 413.539001 4.29743 413.539001 4.29743 curveto -413.539001 4.29743 420.200012 18.6984 420.200012 18.6984 curveto -420.200012 18.6984 446.837006 18.7019 446.837006 18.7019 curveto -end -stroke -grestore -gsave -newpath -systemdict -begin -332.890015 75.290199 446.674011 96.8955 setbbox -332.890015 89.634003 moveto -332.890015 89.634003 353.444 89.6894 353.444 89.6894 curveto -353.444 89.6894 360.101013 75.290199 360.101013 75.290199 curveto -360.101013 75.290199 373.421997 96.891998 373.421997 96.891998 curveto -373.421997 96.891998 386.738007 75.2938 386.738007 75.2938 curveto -386.738007 75.2938 400.059998 96.8955 400.059998 96.8955 curveto -400.059998 96.8955 413.376007 75.297302 413.376007 75.297302 curveto -413.376007 75.297302 420.036987 89.698196 420.036987 89.698196 curveto -420.036987 89.698196 446.674011 89.701698 446.674011 89.701698 curveto -end -stroke -grestore -[-0.999997 0.002298 -0.002298 -0.999997 667.166992 127.119019] matrix invertmatrix concat -[1 0 0 1 -40.9286 -620.75] concat -gsave -newpath -systemdict -begin -200.5 695 253.5 695 setbbox -200.5 695 moveto -253.5 695 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -253.5 694.5 253.5 730.5 setbbox -253.5 694.5 moveto -253.5 730.5 lineto -end -stroke -grestore -[1 0 0 1 -40.9286 -620.75] matrix invertmatrix concat -[1 0 0 1 -42.4286 -621.25] concat -gsave -newpath -systemdict -begin -254 731 278.200012 731 setbbox -254 731 moveto -278.200012 731 lineto -end -stroke -grestore -[1 0 0 1 -42.4286 -621.25] matrix invertmatrix concat -[1 0 0 1 -40.9286 -620.75] concat -gsave -newpath -systemdict -begin -253.5 660.442993 253.5 695.5 setbbox -253.5 695.5 moveto -253.5 660.442993 lineto -end -stroke -grestore -[1 0 0 1 -40.9286 -620.75] matrix invertmatrix concat -[1 0 0 1 -41.4286 -621.25] concat -gsave -newpath -systemdict -begin -253 660 278.019989 660 setbbox -253 660 moveto -278.019989 660 lineto -end -stroke -grestore -[1 0 0 1 -41.4286 -621.25] matrix invertmatrix concat -[1 0 0 1 -40.9286 -620.75] concat -gsave -newpath -systemdict -begin -368 659 387.312988 659 setbbox -368 659 moveto -387.312988 659 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -369 730 387 730 setbbox -369 730 moveto -387 730 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -387 658.827026 387 731 setbbox -387 731 moveto -387 658.827026 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -387 696 498.161987 696 setbbox -387 696 moveto -498.161987 696 lineto -end -stroke -grestore -[1 0 0 1 -40.9286 -620.75] matrix invertmatrix concat -[1 0 0 1 -39.4286 -621.25] concat -gsave -newpath -systemdict -begin -41 696 87.5 696 setbbox -87.5 696 moveto -41 696 lineto -end -stroke -grestore -[1 0 0 1 -39.4286 -621.25] matrix invertmatrix concat -[1 0 0 1 -40.9286 -620.75] concat -gsave -newpath -systemdict -begin -470.393005 692.213989 477.463989 699.286011 setbbox -470.393005 695.75 moveto -470.393005 693.797974 471.97699 692.213989 473.928986 692.213989 curveto -475.880005 692.213989 477.463989 693.797974 477.463989 695.75 curveto -477.463989 697.702026 475.880005 699.286011 473.928986 699.286011 curveto -471.97699 699.286011 470.393005 697.702026 470.393005 695.75 curveto -closepath -end -fill -grestore -4.4 setlinewidth -gsave -newpath -systemdict -begin -470.393005 692.213989 477.463989 699.286011 setbbox -470.393005 695.75 moveto -470.393005 693.797974 471.97699 692.213989 473.928986 692.213989 curveto -475.880005 692.213989 477.463989 693.797974 477.463989 695.75 curveto -477.463989 697.702026 475.880005 699.286011 473.928986 699.286011 curveto -471.97699 699.286011 470.393005 697.702026 470.393005 695.75 curveto -closepath -end -stroke -grestore -[1 0 0 1 -40.9286 -620.75] matrix invertmatrix concat -[1 0 0 1 -71.928596 -498.75] concat -/Helvetica findfont 1 scalefont [18 0 0 18 0 0] makefont -23 -exch -defineuserobject -23 execuserobject setfont -169 596 moveto -(R) show -181.996002 588.799988 moveto -(1 ) show -[1 0 0 1 -71.928596 -498.75] matrix invertmatrix concat -[1 0 0 1 -2.92864 -465.75] concat -277 595 moveto -(R) show -289.996002 587.799988 moveto -(2 ) show -[1 0 0 1 -2.92864 -465.75] matrix invertmatrix concat -[1 0 0 1 31.0714 -502.75] concat -242 515 moveto -(R) show -254.996002 507.799988 moveto -(3 ) show -[1 0 0 1 31.0714 -502.75] matrix invertmatrix concat -[1 0 0 1 -40.9286 -620.75] concat -1.9 setlinewidth -gsave -newpath -systemdict -begin -89.5 694.900024 96.699997 702.099976 setbbox -89.5 702.099976 moveto -96.699997 694.900024 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -89.5 687.700012 96.699997 694.900024 setbbox -89.5 687.700012 moveto -96.699997 694.900024 lineto -end -stroke -grestore -[1 0 0 1 -40.9286 -620.75] matrix invertmatrix concat -[1 0 0 1 -320.928986 -451.75] concat -373 496 moveto -(i ) show -[1 0 0 1 -320.928986 -451.75] matrix invertmatrix concat -[1 0 0 1 -167.929001 -228.75] concat -183 317 moveto -(a ) show -[1 0 0 1 -167.929001 -228.75] matrix invertmatrix concat -[1 0 0 1 89.071404 -194.75] concat -337 286 moveto -(b ) show -grestore -TailorGroupEnd -grestore -gsave -[1 0 0 -1 0 792] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob05a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob05a.gif deleted file mode 100755 index 09000f353..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob05a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob06v1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob06v1.eps deleted file mode 100755 index 1f2602f27..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob06v1.eps +++ /dev/null @@ -1,739 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q8a1.draw -- /teacher/Apps/Drawfiles/phys121a/set11 -%%Creator: Draw -%%CreationDate: Mon Jun 12 10:03:03 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 105 455 448 642 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -105 455 343 187 rectclip -1 1 2.674419 setup -0 nxsetgray -0 -100 149 600 line -grestore -1 1 2.674419 setup -0 nxsetgray -200 0 150 601 line -grestore -1 1 2.674419 setup -0 nxsetgray -200 0 150 500 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 -100 249 601 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 -100 350 600 line -grestore -0 0 5.813953 setup -1 1 0 setup -1 nxsetgray -134 547 28 13 rectfill -1 nxsetgray -134 547 28 13 rectstroke -grestore -1 1 5.813953 setup -0 nxsetgray -10 0 144 558 line -grestore -1 1 1.627907 setup -0 nxsetgray -30 0 134 547 line -grestore -1 1 1.627907 setup -gsave -/Helvetica-Bold findfont 20 scalefont [1 0 0 -1 0 0] makefont -225 -exch -defineuserobject -225 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1137] concat -225 execuserobject setfont -0 nxsetgray -157 576 moveto (-) show -grestore -grestore -1 1 1.627907 setup -gsave -225 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1081] concat -225 execuserobject setfont -0 nxsetgray -155 548 moveto (+) show -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -284 588 24 36 rectfill -1 nxsetgray -284 588 24 36 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 284 601 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 287 611 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 292 591 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 294 601 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 297 611 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 302 591 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2.000001 10 304 601 line -grestore -1 1 1.744186 setup -0 nxsetgray -2.000001 -10 306.999939 611 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -285 488 24 36 rectfill -1 nxsetgray -285 488 24 36 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 285 501 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 288 511 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 293 491 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 295 501 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 298 511 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 303 491 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2.000001 10 305 501 line -grestore -1 1 1.744186 setup -0 nxsetgray -2.000001 -10 307.999939 511 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -184 587 24 36 rectfill -1 nxsetgray -184 587 24 36 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 184 600 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 187 610 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 192 590 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 194 600 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 197 610 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 202 590 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2.000001 10 204 600 line -grestore -1 1 1.744186 setup -0 nxsetgray -2.000001 -10 206.999939 610 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -332 516 37 26 rectfill -1 nxsetgray -332 516 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 351 542 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 341 535 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 342 534 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 351 531 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 341 524 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 342 523 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 351 521 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 351 516 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -332 562 37 26 rectfill -1 nxsetgray -332 562 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 351 588 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 341 581 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 342 580 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 351 577 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 341 570 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 342 569 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 351 567 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 351 562 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -230 539 37 26 rectfill -1 nxsetgray -230 539 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 249 565 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 239 558 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 240 557 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 249 554 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 239 547 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 240 546 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 249 544 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 249 539 line -grestore -grestore -grestore -grestore -1 1 2.674419 setup -0 nxsetgray -50 0 350 551 line -grestore -1 1 2.674419 setup -0 nxsetgray -50 0 350 500 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 50 400 500 line -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -382 515 37 26 rectfill -1 nxsetgray -382 515 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 401 541 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 391 534 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 392 533 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 401 530 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 391 523 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 392 522 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 401 520 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 401 515 line -grestore -grestore -grestore -grestore -1 1 2.674419 setup -gsave -225 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1245] concat -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -230 -exch -defineuserobject -230 execuserobject setfont -0 nxsetgray -186 625 moveto (R) show -0 5 rmoveto -(1) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1243] concat -230 execuserobject setfont -0 nxsetgray -286 624 moveto (R) show -0 5 rmoveto -(2) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1147] concat -230 execuserobject setfont -0 nxsetgray -369 576 moveto (R) show -0 5 rmoveto -(3) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1055] concat -230 execuserobject setfont -0 nxsetgray -418 530 moveto (R) show -0 5 rmoveto -(4) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 949] concat -230 execuserobject setfont -0 nxsetgray -289 477 moveto (R) show -0 5 rmoveto -(6) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1103] concat -230 execuserobject setfont -0 nxsetgray -215 554 moveto (R) show -0 5 rmoveto -(7) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1061] concat -230 execuserobject setfont -0 nxsetgray -314 533 moveto (R) show -0 5 rmoveto -(5) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1106] concat -230 execuserobject setfont -0 nxsetgray -115 558 moveto (V) show -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob06v1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob06v1.gif deleted file mode 100755 index ee55a8238..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob06v1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob06v2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob06v2.eps deleted file mode 100755 index 34af742eb..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob06v2.eps +++ /dev/null @@ -1,747 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q8a3.draw -- /teacher/Apps/Drawfiles/phys121a/set11 -%%Creator: Draw -%%CreationDate: Mon Jun 12 10:12:11 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 105 455 421 644 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -105 455 316 189 rectclip -1 1 2.674419 setup -0 nxsetgray -0 -100 149 600 line -grestore -1 1 2.674419 setup -0 nxsetgray -200 0 150 601 line -grestore -1 1 2.674419 setup -0 nxsetgray -200 0 150 500 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 -100 249 601 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 -40 350 600 line -grestore -0 0 5.813953 setup -1 1 0 setup -1 nxsetgray -134 547 28 13 rectfill -1 nxsetgray -134 547 28 13 rectstroke -grestore -1 1 5.813953 setup -0 nxsetgray -10 0 144 558 line -grestore -1 1 1.627907 setup -0 nxsetgray -30 0 134 547 line -grestore -1 1 1.627907 setup -gsave -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -230 -exch -defineuserobject -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1137] concat -/Helvetica-Bold findfont 20 scalefont [1 0 0 -1 0 0] makefont -225 -exch -defineuserobject -225 execuserobject setfont -0 nxsetgray -157 576 moveto (-) show -grestore -grestore -1 1 1.627907 setup -gsave -225 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1081] concat -225 execuserobject setfont -0 nxsetgray -155 548 moveto (+) show -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -284 588 24 36 rectfill -1 nxsetgray -284 588 24 36 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 284 601 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 287 611 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 292 591 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 294 601 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 297 611 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 302 591 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2.000001 10 304 601 line -grestore -1 1 1.744186 setup -0 nxsetgray -2.000001 -10 306.999939 611 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -231 561 37 26 rectfill -1 nxsetgray -231 561 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 250 587 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 240 580 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 241 579 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 250 576 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 240 569 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 241 568 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 250 566 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 250 561 line -grestore -grestore -grestore -grestore -1 1 2.674419 setup -0 nxsetgray -50 0 325 560 line -grestore -1 1 2.674419 setup -0 nxsetgray -25 0 349 500 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 60 324 500 line -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -305 521 37 26 rectfill -1 nxsetgray -305 521 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 324 547 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 314 540 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 315 539 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 324 536 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 314 529 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 315 528 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 324 526 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 324 521 line -grestore -grestore -grestore -grestore -1 1 2.674419 setup -gsave -225 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1153] concat -230 execuserobject setfont -0 nxsetgray -175 579 moveto (R) show -0 5 rmoveto -(1) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1249] concat -230 execuserobject setfont -0 nxsetgray -288 627 moveto (R) show -0 5 rmoveto -(2) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1106] concat -230 execuserobject setfont -0 nxsetgray -115 558 moveto (V) show -grestore -grestore -1 1 2.674419 setup -0 nxsetgray -0 -100 198 599 line -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -232 518 37 26 rectfill -1 nxsetgray -232 518 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 251 544 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 241 537 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 242 536 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 251 533 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 241 526 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 242 525 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 251 523 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 251 518 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -180 538 37 26 rectfill -1 nxsetgray -180 538 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 199 564 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 189 557 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 190 556 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 199 553 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 189 546 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 190 545 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 199 543 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 199 538 line -grestore -grestore -grestore -grestore -1 1 2.674419 setup -0 nxsetgray -0 60 375 500 line -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -356 521 37 26 rectfill -1 nxsetgray -356 521 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 375 547 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 365 540 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 366 539 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 375 536 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 365 529 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 366 528 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 375 526 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 375 521 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -338 486 24 36 rectfill -1 nxsetgray -338 486 24 36 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 338 499 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 341 509 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 346 489 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 348 499 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 351 509 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 356 489 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2.000001 10 358 499 line -grestore -1 1 1.744186 setup -0 nxsetgray -2.000001 -10 360.999939 509 line -grestore -grestore -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1055] concat -230 execuserobject setfont -0 nxsetgray -219 530 moveto (R) show -0 5 rmoveto -(6) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1151] concat -230 execuserobject setfont -0 nxsetgray -217 578 moveto (R) show -0 5 rmoveto -(7) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1063] concat -230 execuserobject setfont -0 nxsetgray -391 534 moveto (R) show -0 5 rmoveto -(3) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 949] concat -230 execuserobject setfont -0 nxsetgray -344 477 moveto (R) show -0 5 rmoveto -(4) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1075] concat -230 execuserobject setfont -0 nxsetgray -290 540 moveto (R) show -0 5 rmoveto -(5) show -0 -5 rmoveto -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob06v2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob06v2.gif deleted file mode 100755 index 56f1c26b6..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob06v2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob06v3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob06v3.eps deleted file mode 100755 index 2061dccfa..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob06v3.eps +++ /dev/null @@ -1,747 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q8a3.draw -- /teacher/Apps/Drawfiles/phys121a/set11 -%%Creator: Draw -%%CreationDate: Mon Jun 12 10:17:35 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 105 453 423 642 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -105 453 318 189 rectclip -1 1 2.674419 setup -0 nxsetgray -0 -100 149 600 line -grestore -1 1 2.674419 setup -0 nxsetgray -200 0 150 601 line -grestore -1 1 2.674419 setup -0 nxsetgray -200 0 150 500 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 -100 249 601 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 -20 350 520 line -grestore -0 0 5.813953 setup -1 1 0 setup -1 nxsetgray -134 547 28 13 rectfill -1 nxsetgray -134 547 28 13 rectstroke -grestore -1 1 5.813953 setup -0 nxsetgray -10 0 144 558 line -grestore -1 1 1.627907 setup -0 nxsetgray -30 0 134 547 line -grestore -1 1 1.627907 setup -gsave -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -230 -exch -defineuserobject -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1137] concat -/Helvetica-Bold findfont 20 scalefont [1 0 0 -1 0 0] makefont -225 -exch -defineuserobject -225 execuserobject setfont -0 nxsetgray -157 576 moveto (-) show -grestore -grestore -1 1 1.627907 setup -gsave -225 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1081] concat -225 execuserobject setfont -0 nxsetgray -155 548 moveto (+) show -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -284 588 24 36 rectfill -1 nxsetgray -284 588 24 36 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 284 601 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 287 611 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 292 591 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 294 601 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 297 611 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 302 591 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2.000001 10 304 601 line -grestore -1 1 1.744186 setup -0 nxsetgray -2.000001 -10 306.999939 611 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -186 487 24 36 rectfill -1 nxsetgray -186 487 24 36 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 186 500 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 189 510 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 194 490 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 196 500 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 199 510 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 204 490 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2.000001 10 206 500 line -grestore -1 1 1.744186 setup -0 nxsetgray -2.000001 -10 208.999939 510 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -184 587 24 36 rectfill -1 nxsetgray -184 587 24 36 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 184 600 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 187 610 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 192 590 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 194 600 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 197 610 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 202 590 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2.000001 10 204 600 line -grestore -1 1 1.744186 setup -0 nxsetgray -2.000001 -10 206.999939 610 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -230 518 37 26 rectfill -1 nxsetgray -230 518 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 249 544 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 239 537 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 240 536 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 249 533 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 239 526 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 240 525 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 249 523 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 249 518 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -230 557 37 26 rectfill -1 nxsetgray -230 557 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 249 583 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 239 576 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 240 575 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 249 572 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 239 565 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 240 564 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 249 562 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 249 557 line -grestore -grestore -grestore -grestore -1 1 2.674419 setup -0 nxsetgray -50 0 325 521 line -grestore -1 1 2.674419 setup -0 nxsetgray -50 0 325 573 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 50 325 522 line -grestore -1 1 2.674419 setup -gsave -225 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1245] concat -230 execuserobject setfont -0 nxsetgray -186 625 moveto (R) show -0 5 rmoveto -(1) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1243] concat -230 execuserobject setfont -0 nxsetgray -286 624 moveto (R) show -0 5 rmoveto -(2) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 945] concat -230 execuserobject setfont -0 nxsetgray -190 475 moveto (R) show -0 5 rmoveto -(7) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1106] concat -230 execuserobject setfont -0 nxsetgray -115 558 moveto (V) show -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1065] concat -230 execuserobject setfont -0 nxsetgray -214 535 moveto (R) show -0 5 rmoveto -(5) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1137] concat -230 execuserobject setfont -0 nxsetgray -214 571 moveto (R) show -0 5 rmoveto -(6) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -0 nxsetgray -0 50 375 522 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 -25 350 600 line -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -307 535 37 26 rectfill -1 nxsetgray -307 535 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 326 561 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 316 554 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 317 553 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 326 550 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 316 543 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 317 542 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 326 540 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 326 535 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -357 536 37 26 rectfill -1 nxsetgray -357 536 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 376 562 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 366 555 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 367 554 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 376 551 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 366 544 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 367 543 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 376 541 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 376 536 line -grestore -grestore -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1093] concat -230 execuserobject setfont -0 nxsetgray -393 549 moveto (R) show -0 5 rmoveto -(3) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1093] concat -230 execuserobject setfont -0 nxsetgray -292 549 moveto (R) show -0 5 rmoveto -(4) show -0 -5 rmoveto -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob06v3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob06v3.gif deleted file mode 100755 index ea8ae10ef..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob06v3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob08av1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob08av1.eps deleted file mode 100755 index e3abe5913..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob08av1.eps +++ /dev/null @@ -1,590 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Mon Jul 26 14:25:26 1993 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 224 145 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /estroke { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /efill { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath unpagectm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /apstroke { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc pie chord or { - closepath - } if crlinalph setalpha pie not chord not and { - crfrtarw { - 2 copy crlinw exch gsave newpath angle1 1 add cos radius mul radius add angle1 1 add sin radius mul radius add moveto angle1 cos radius mul radius add angle1 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if crendarw { - 2 copy crlinw exch gsave newpath angle2 1 sub cos radius mul radius add angle2 1 sub sin radius mul radius add moveto angle2 cos radius mul radius add angle2 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if - } if crlincp setlinecap crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /apfill { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup 5 -2 roll arc pie chord or { - closepath - } if 1 xscale div 1 yscale div scale crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /mkepath { - dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def /closed exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc closed pie or chord or { - closepath - } if unpagectm -} bind def end -TopDrawDict begin /closedspl false def /nspans 0 def /sstrt { - gsave dodrawctm /closedspl exch def /nspans 0 def newpath -} bind def /sstrtpath { - dodrawctm /closedspl exch def /nspans 0 def newpath -} bind def /sadd { - nspans 0 eq { - moveto - } { - pop pop - } ifelse curveto /nspans nspans 1 add def -} bind def /splstroke { - nspans 0 gt { - unpagectm concat closedspl { - closepath - } if crlincp setlinecap crlinjn setlinejoin crlinalph setalpha crlinw setlinewidth crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - flattenpath crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse - } { - pop pop - } ifelse grestore -} bind def /splfill { - nspans 0 gt { - closedspl { - closepath - } if crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - flattenpath crfilpat findfont exch crfilstyl 0 eq { - filwittrans { - trpateofil - } { - oppateofil - } ifelse - } { - filwittrans { - trpatfil - } { - oppatfil - } ifelse - } ifelse - } { - crfilstyl 0 eq { - eofill - } { - fill - } ifelse pop - } ifelse - } if grestore -} bind def /mksplpath { - nspans 0 gt { - closedspl { - closepath - } if - } if -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 223.776001 144.810822 rectclip --324 -179.351166 translate -324 179.351166 223.776001 144.810822 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 2.412863e-35 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -/crlinw 3.2 def -false 0.00065 -0.647283 0.699837 0.000518 86.540558 397.339752 sc5mt astore sstrt -systemdict -begin -158.129608 489.600006 302.400024 511.943359 setbbox -173.76564 504.160278 moveto -173.76564 504.160278 201.600006 504.000031 201.600006 504.000031 curveto -201.600006 504.000031 208.800003 489.600006 208.800003 489.600006 curveto -208.800003 489.600006 223.200012 511.200012 223.200012 511.200012 curveto -223.200012 511.200012 237.600006 489.600006 237.600006 489.600006 curveto -237.600006 489.600006 252.000015 511.200012 252.000015 511.200012 curveto -252.000015 511.200012 266.400024 489.600006 266.400024 489.600006 curveto -266.400024 489.600006 273.600006 504.000031 273.600006 504.000031 curveto -273.600006 504.000031 295.670044 504.047119 295.670044 504.047119 curveto -end -/nspans 8 def 0.00061 -0.699838 0.699838 0.00061 49.412254 467.366791 sc5mt astore 0.00061 -0.699838 0.699838 0.00061 49.412254 467.366791 sc6mt astore splstroke -false -0.455523 -0.459864 -0.49733 0.492376 831.067383 73.689758 sc5mt astore sstrt -systemdict -begin -158.129608 489.600006 302.400024 511.943359 setbbox -173.76564 504.160278 moveto -173.76564 504.160278 201.600006 504.000031 201.600006 504.000031 curveto -201.600006 504.000031 208.800003 489.600006 208.800003 489.600006 curveto -208.800003 489.600006 223.200012 511.200012 223.200012 511.200012 curveto -223.200012 511.200012 237.600006 489.600006 237.600006 489.600006 curveto -237.600006 489.600006 252.000015 511.200012 252.000015 511.200012 curveto -252.000015 511.200012 266.400024 489.600006 266.400024 489.600006 curveto -266.400024 489.600006 273.600006 504.000031 273.600006 504.000031 curveto -273.600006 504.000031 295.670044 504.047119 295.670044 504.047119 curveto -end -/nspans 8 def -0.492442 -0.497266 -0.497266 0.492442 772.17041 99.283951 sc5mt astore -0.492442 -0.497266 -0.497266 0.492442 772.17041 99.283951 sc6mt astore splstroke -/crlinw 1.9 def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 39 439.5 284 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -39 439.5 218.5 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14 -14 439 323.5 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -15 -15 455 195 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -15.508057 -15.508057 439.5 323.5 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -17.328156 17.328171 439.5 180 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0.000122 0 sc4mt astore 1 0 0 1 0.000122 0 sc5mt astore -11.180328 -11.180344 377.5 255.5 1 0 0 1 2.000122 7.5 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 18.069305 -18.069305 368 252 1 0 0 1 0 0 sc6mt astore ssl -/crlinw 3.2 def -false -0.455523 -0.459864 -0.49733 0.492376 762.567383 148.689758 sc5mt astore sstrt -systemdict -begin -158.129608 489.600006 302.400024 511.943359 setbbox -173.76564 504.160278 moveto -173.76564 504.160278 201.600006 504.000031 201.600006 504.000031 curveto -201.600006 504.000031 208.800003 489.600006 208.800003 489.600006 curveto -208.800003 489.600006 223.200012 511.200012 223.200012 511.200012 curveto -223.200012 511.200012 237.600006 489.600006 237.600006 489.600006 curveto -237.600006 489.600006 252.000015 511.200012 252.000015 511.200012 curveto -252.000015 511.200012 266.400024 489.600006 266.400024 489.600006 curveto -266.400024 489.600006 273.600006 504.000031 273.600006 504.000031 curveto -273.600006 504.000031 295.670044 504.047119 295.670044 504.047119 curveto -end -/nspans 8 def -0.492442 -0.497266 -0.497266 0.492442 772.17041 99.283951 sc5mt astore -0.492442 -0.497266 -0.497266 0.492442 772.17041 99.283951 sc6mt astore splstroke -false 0.455523 -0.459864 0.49733 0.492376 47.489014 74.689758 sc5mt astore sstrt -systemdict -begin -158.129608 489.600006 302.400024 511.943359 setbbox -173.76564 504.160278 moveto -173.76564 504.160278 201.600006 504.000031 201.600006 504.000031 curveto -201.600006 504.000031 208.800003 489.600006 208.800003 489.600006 curveto -208.800003 489.600006 223.200012 511.200012 223.200012 511.200012 curveto -223.200012 511.200012 237.600006 489.600006 237.600006 489.600006 curveto -237.600006 489.600006 252.000015 511.200012 252.000015 511.200012 curveto -252.000015 511.200012 266.400024 489.600006 266.400024 489.600006 curveto -266.400024 489.600006 273.600006 504.000031 273.600006 504.000031 curveto -273.600006 504.000031 295.670044 504.047119 295.670044 504.047119 curveto -end -/nspans 8 def 0.492442 -0.497266 0.497266 0.492442 327.885986 99.283951 sc5mt astore 0.492442 -0.497266 0.497266 0.492442 327.885986 99.283951 sc6mt astore splstroke -false 0.455523 -0.459864 0.49733 0.492376 116.489014 148.189758 sc5mt astore sstrt -systemdict -begin -158.129608 489.600006 302.400024 511.943359 setbbox -173.76564 504.160278 moveto -173.76564 504.160278 201.600006 504.000031 201.600006 504.000031 curveto -201.600006 504.000031 208.800003 489.600006 208.800003 489.600006 curveto -208.800003 489.600006 223.200012 511.200012 223.200012 511.200012 curveto -223.200012 511.200012 237.600006 489.600006 237.600006 489.600006 curveto -237.600006 489.600006 252.000015 511.200012 252.000015 511.200012 curveto -252.000015 511.200012 266.400024 489.600006 266.400024 489.600006 curveto -266.400024 489.600006 273.600006 504.000031 273.600006 504.000031 curveto -273.600006 504.000031 295.670044 504.047119 295.670044 504.047119 curveto -end -/nspans 8 def 0.492442 -0.497266 0.497266 0.492442 327.885986 99.283951 sc5mt astore 0.492442 -0.497266 0.497266 0.492442 327.885986 99.283951 sc6mt astore splstroke -/crlinw 1.9 def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -11.319244 -11.319229 511 251.5 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 13.009613 -13.009613 498 264 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 26.5047 0 510.5 252 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -33.514923 0 368 251.5 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 3.807892 1 -1 273 287 1 0 0 1 265 -31 sc5mt astore estroke -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 3.807892 1 -1 273 287 1 0 0 1 53 -31 sc5mt astore estroke -/txtdraw true def -/txlndraw true def -(R ) [11.552002 0 0 0] 118 141 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1 0 0 1 266 152] dotx -(R) [0 0] 209 145 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1 0 0 1 198 101] dotx -/txtdraw true def -/txlndraw true def -(1 ) [8.895996 0 0 0] 220.552002 138.600006 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1 0 0 1 198 101] dotx -(a ) [8.895996 0 0 0] 126 89.599998 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1 0 0 1 199 175] dotx -(b ) [9.776001 0 0 0] 167 104.599998 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1 0 0 1 369 159] dotx -/txtdraw true def -/txlndraw true def -(R ) [11.552002 0 0 0] 118 141 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1 0 0 1 362 154] dotx -(R ) [11.552002 0 0 0] 118 141 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1 0 0 1 265 61] dotx -(R ) [11.552002 0 0 0] 118 141 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1 0 0 1 368.000122 61] dotx -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob08av1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob08av1.gif deleted file mode 100755 index 27a155193..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob08av1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob08av2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob08av2.eps deleted file mode 100755 index 3897b82aa..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob08av2.eps +++ /dev/null @@ -1,502 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Mon Jul 26 14:25:12 1993 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 237 170 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /arwlen 6 def /arw 4 def /arow { - gsave newpath moveto lineto unpagectm concat { - - } { - - } { - - } { - - } pathforall newpath 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath crlinalph setalpha strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - crstrpat findfont exch strwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /arwpath { - sc7mt currentmatrix pop gsave newpath moveto lineto unpagectm dup concat { - - } { - - } { - - } { - - } pathforall grestore unpagectm 5 -1 roll concat 4 2 roll 2 copy moveto 4 2 roll exch 4 -1 roll exch sub 3 1 roll sub exch atan rotate dup 1 lt { - pop 1 1 scale - } { - dup scale - } ifelse -1 2 rlineto 7 -2 rlineto -7 -2 rlineto closepath sc7mt setmatrix -} bind def end -TopDrawDict begin /estroke { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /efill { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath unpagectm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /apstroke { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc pie chord or { - closepath - } if crlinalph setalpha pie not chord not and { - crfrtarw { - 2 copy crlinw exch gsave newpath angle1 1 add cos radius mul radius add angle1 1 add sin radius mul radius add moveto angle1 cos radius mul radius add angle1 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if crendarw { - 2 copy crlinw exch gsave newpath angle2 1 sub cos radius mul radius add angle2 1 sub sin radius mul radius add moveto angle2 cos radius mul radius add angle2 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if - } if crlincp setlinecap crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /apfill { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup 5 -2 roll arc pie chord or { - closepath - } if 1 xscale div 1 yscale div scale crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /mkepath { - dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def /closed exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc closed pie or chord or { - closepath - } if unpagectm -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 238 171 rectclip --24.196709 -210.936188 translate -24.196709 210.936188 236.979965 169.931061 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 1 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -/crlinw 1.9 def --4.371139e-08 -1 1 -4.371139e-08 -129 476 sc4mt astore -4.371139e-08 -1 1 -4.371139e-08 -129 476 sc5mt astore -43.5 -3.051758e-05 356.5 490 1 0 0 1 -126 -230.5 sc6mt astore ssl --4.371139e-08 -1 1 -4.371139e-08 -129 476 sc4mt astore -4.371139e-08 -1 1 -4.371139e-08 -129 476 sc5mt astore -43 -3.051758e-05 356.5 484 1 0 0 1 -126 -230.5 sc6mt astore ssl --4.371139e-08 -1 1 -4.371139e-08 -129 476 sc4mt astore -4.371139e-08 -1 1 -4.371139e-08 -129 476 sc5mt astore 36 0 177 303 -4.371139e-08 -1 1 -4.371139e-08 -94 429.5 sc6mt astore ssl --4.371139e-08 -1 1 -4.371139e-08 -129 476 sc4mt astore -4.371139e-08 -1 1 -4.371139e-08 -129 476 sc5mt astore -36 0 153 447 -4.371139e-08 -1 1 -4.371139e-08 -238 413 sc6mt astore ssl -/crlinw 3 def --4.371139e-08 -1 1 -4.371139e-08 -129 476 sc4mt astore -4.371139e-08 -1 1 -4.371139e-08 -129 476 sc5mt astore -43.5 -3.051758e-05 356.5 490 1 0 0 1 -95.5 -151.5 sc6mt astore ssl --4.371139e-08 -1 1 -4.371139e-08 -129 476 sc4mt astore -4.371139e-08 -1 1 -4.371139e-08 -129 476 sc5mt astore -43 -3.051758e-05 356.5 484 1 0 0 1 -95.5 -151.5 sc6mt astore ssl -/crlinw 1.9 def --4.371139e-08 -1 1 -4.371139e-08 -129 476 sc4mt astore -4.371139e-08 -1 1 -4.371139e-08 -129 476 sc5mt astore 36 0 177 303 -4.371139e-08 -1 1 -4.371139e-08 -63.5 508.5 sc6mt astore ssl --4.371139e-08 -1 1 -4.371139e-08 -129 476 sc4mt astore -4.371139e-08 -1 1 -4.371139e-08 -129 476 sc5mt astore -36 0 153 447 -4.371139e-08 -1 1 -4.371139e-08 -207.5 492 sc6mt astore ssl -/crlinw 3 def --4.371139e-08 -1 1 -4.371139e-08 -129 476 sc4mt astore -4.371139e-08 -1 1 -4.371139e-08 -129 476 sc5mt astore -43.5 -3.051758e-05 356.5 490 1 0 0 1 -156.5 -151.5 sc6mt astore ssl --4.371139e-08 -1 1 -4.371139e-08 -129 476 sc4mt astore -4.371139e-08 -1 1 -4.371139e-08 -129 476 sc5mt astore -43 -3.051758e-05 356.5 484 1 0 0 1 -156.5 -151.5 sc6mt astore ssl -/crlinw 1.9 def --4.371139e-08 -1 1 -4.371139e-08 -129 476 sc4mt astore -4.371139e-08 -1 1 -4.371139e-08 -129 476 sc5mt astore 36 0 177 303 -4.371139e-08 -1 1 -4.371139e-08 -124.5 508.5 sc6mt astore ssl --4.371139e-08 -1 1 -4.371139e-08 -129 476 sc4mt astore -4.371139e-08 -1 1 -4.371139e-08 -129 476 sc5mt astore -36 0 153 447 -4.371139e-08 -1 1 -4.371139e-08 -268.5 492 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -202 0 239 374 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 62 0 178 296 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -171 0 209 217 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 6.082764 1 -1 53 462 1 0 0 1 -28 -82 sc5mt astore estroke -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 6.082764 1 -1 53 462 1 0 0 1 -27.999998 -238 sc5mt astore estroke -/txtdraw true def -/txlndraw true def -(C) [0 0] 65 133 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1 0 0 1 89 218] dotx -/txtdraw true def -/txlndraw true def -(1 ) [8.896004 0 0 0] 76.552002 126.599998 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1 0 0 1 89 218] dotx -/txtdraw true def -/txlndraw true def -(C) [0 0] 65 133 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [0.905303 0 0 1 125.221985 138] dotx -/txtdraw true def -/txlndraw true def -(3 ) [8.896004 0 0 0] 76.552002 126.599998 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [0.905303 0 0 1 125.221985 138] dotx -/txtdraw true def -/txlndraw true def -(C) [0 0] 65 133 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1 0 0 1 149 218] dotx -/txtdraw true def -/txlndraw true def -(2 ) [8.896004 0 0 0] 76.552002 126.599998 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1 0 0 1 149 218] dotx -/txtdraw true def -/txlndraw true def -(V ) [10.671997 0 0 0] 139 135 /Helvetica-Bold [ 16 1 mul 0 0 16 0 0 ] [1 0 0 1 -112.5 151.5] dotx -/crlinw 1 def -/crendarw true def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 51 32 305 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -43.5 31.5 279 1 0 0 1 0 0 sc6mt astore ssl -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob08av2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob08av2.gif deleted file mode 100755 index 34762e5ae..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob08av2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob09v1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob09v1.eps deleted file mode 100755 index 1f2602f27..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob09v1.eps +++ /dev/null @@ -1,739 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q8a1.draw -- /teacher/Apps/Drawfiles/phys121a/set11 -%%Creator: Draw -%%CreationDate: Mon Jun 12 10:03:03 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 105 455 448 642 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -105 455 343 187 rectclip -1 1 2.674419 setup -0 nxsetgray -0 -100 149 600 line -grestore -1 1 2.674419 setup -0 nxsetgray -200 0 150 601 line -grestore -1 1 2.674419 setup -0 nxsetgray -200 0 150 500 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 -100 249 601 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 -100 350 600 line -grestore -0 0 5.813953 setup -1 1 0 setup -1 nxsetgray -134 547 28 13 rectfill -1 nxsetgray -134 547 28 13 rectstroke -grestore -1 1 5.813953 setup -0 nxsetgray -10 0 144 558 line -grestore -1 1 1.627907 setup -0 nxsetgray -30 0 134 547 line -grestore -1 1 1.627907 setup -gsave -/Helvetica-Bold findfont 20 scalefont [1 0 0 -1 0 0] makefont -225 -exch -defineuserobject -225 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1137] concat -225 execuserobject setfont -0 nxsetgray -157 576 moveto (-) show -grestore -grestore -1 1 1.627907 setup -gsave -225 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1081] concat -225 execuserobject setfont -0 nxsetgray -155 548 moveto (+) show -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -284 588 24 36 rectfill -1 nxsetgray -284 588 24 36 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 284 601 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 287 611 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 292 591 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 294 601 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 297 611 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 302 591 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2.000001 10 304 601 line -grestore -1 1 1.744186 setup -0 nxsetgray -2.000001 -10 306.999939 611 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -285 488 24 36 rectfill -1 nxsetgray -285 488 24 36 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 285 501 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 288 511 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 293 491 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 295 501 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 298 511 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 303 491 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2.000001 10 305 501 line -grestore -1 1 1.744186 setup -0 nxsetgray -2.000001 -10 307.999939 511 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -184 587 24 36 rectfill -1 nxsetgray -184 587 24 36 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 184 600 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 187 610 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 192 590 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 194 600 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 197 610 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 202 590 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2.000001 10 204 600 line -grestore -1 1 1.744186 setup -0 nxsetgray -2.000001 -10 206.999939 610 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -332 516 37 26 rectfill -1 nxsetgray -332 516 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 351 542 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 341 535 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 342 534 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 351 531 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 341 524 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 342 523 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 351 521 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 351 516 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -332 562 37 26 rectfill -1 nxsetgray -332 562 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 351 588 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 341 581 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 342 580 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 351 577 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 341 570 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 342 569 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 351 567 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 351 562 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -230 539 37 26 rectfill -1 nxsetgray -230 539 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 249 565 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 239 558 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 240 557 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 249 554 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 239 547 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 240 546 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 249 544 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 249 539 line -grestore -grestore -grestore -grestore -1 1 2.674419 setup -0 nxsetgray -50 0 350 551 line -grestore -1 1 2.674419 setup -0 nxsetgray -50 0 350 500 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 50 400 500 line -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -382 515 37 26 rectfill -1 nxsetgray -382 515 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 401 541 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 391 534 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 392 533 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 401 530 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 391 523 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 392 522 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 401 520 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 401 515 line -grestore -grestore -grestore -grestore -1 1 2.674419 setup -gsave -225 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1245] concat -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -230 -exch -defineuserobject -230 execuserobject setfont -0 nxsetgray -186 625 moveto (R) show -0 5 rmoveto -(1) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1243] concat -230 execuserobject setfont -0 nxsetgray -286 624 moveto (R) show -0 5 rmoveto -(2) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1147] concat -230 execuserobject setfont -0 nxsetgray -369 576 moveto (R) show -0 5 rmoveto -(3) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1055] concat -230 execuserobject setfont -0 nxsetgray -418 530 moveto (R) show -0 5 rmoveto -(4) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 949] concat -230 execuserobject setfont -0 nxsetgray -289 477 moveto (R) show -0 5 rmoveto -(6) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1103] concat -230 execuserobject setfont -0 nxsetgray -215 554 moveto (R) show -0 5 rmoveto -(7) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1061] concat -230 execuserobject setfont -0 nxsetgray -314 533 moveto (R) show -0 5 rmoveto -(5) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1106] concat -230 execuserobject setfont -0 nxsetgray -115 558 moveto (V) show -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob09v1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob09v1.gif deleted file mode 100755 index ee55a8238..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob09v1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob09v2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob09v2.eps deleted file mode 100755 index 34af742eb..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob09v2.eps +++ /dev/null @@ -1,747 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q8a3.draw -- /teacher/Apps/Drawfiles/phys121a/set11 -%%Creator: Draw -%%CreationDate: Mon Jun 12 10:12:11 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 105 455 421 644 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -105 455 316 189 rectclip -1 1 2.674419 setup -0 nxsetgray -0 -100 149 600 line -grestore -1 1 2.674419 setup -0 nxsetgray -200 0 150 601 line -grestore -1 1 2.674419 setup -0 nxsetgray -200 0 150 500 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 -100 249 601 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 -40 350 600 line -grestore -0 0 5.813953 setup -1 1 0 setup -1 nxsetgray -134 547 28 13 rectfill -1 nxsetgray -134 547 28 13 rectstroke -grestore -1 1 5.813953 setup -0 nxsetgray -10 0 144 558 line -grestore -1 1 1.627907 setup -0 nxsetgray -30 0 134 547 line -grestore -1 1 1.627907 setup -gsave -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -230 -exch -defineuserobject -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1137] concat -/Helvetica-Bold findfont 20 scalefont [1 0 0 -1 0 0] makefont -225 -exch -defineuserobject -225 execuserobject setfont -0 nxsetgray -157 576 moveto (-) show -grestore -grestore -1 1 1.627907 setup -gsave -225 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1081] concat -225 execuserobject setfont -0 nxsetgray -155 548 moveto (+) show -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -284 588 24 36 rectfill -1 nxsetgray -284 588 24 36 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 284 601 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 287 611 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 292 591 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 294 601 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 297 611 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 302 591 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2.000001 10 304 601 line -grestore -1 1 1.744186 setup -0 nxsetgray -2.000001 -10 306.999939 611 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -231 561 37 26 rectfill -1 nxsetgray -231 561 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 250 587 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 240 580 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 241 579 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 250 576 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 240 569 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 241 568 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 250 566 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 250 561 line -grestore -grestore -grestore -grestore -1 1 2.674419 setup -0 nxsetgray -50 0 325 560 line -grestore -1 1 2.674419 setup -0 nxsetgray -25 0 349 500 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 60 324 500 line -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -305 521 37 26 rectfill -1 nxsetgray -305 521 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 324 547 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 314 540 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 315 539 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 324 536 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 314 529 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 315 528 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 324 526 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 324 521 line -grestore -grestore -grestore -grestore -1 1 2.674419 setup -gsave -225 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1153] concat -230 execuserobject setfont -0 nxsetgray -175 579 moveto (R) show -0 5 rmoveto -(1) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1249] concat -230 execuserobject setfont -0 nxsetgray -288 627 moveto (R) show -0 5 rmoveto -(2) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1106] concat -230 execuserobject setfont -0 nxsetgray -115 558 moveto (V) show -grestore -grestore -1 1 2.674419 setup -0 nxsetgray -0 -100 198 599 line -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -232 518 37 26 rectfill -1 nxsetgray -232 518 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 251 544 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 241 537 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 242 536 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 251 533 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 241 526 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 242 525 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 251 523 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 251 518 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -180 538 37 26 rectfill -1 nxsetgray -180 538 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 199 564 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 189 557 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 190 556 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 199 553 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 189 546 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 190 545 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 199 543 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 199 538 line -grestore -grestore -grestore -grestore -1 1 2.674419 setup -0 nxsetgray -0 60 375 500 line -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -356 521 37 26 rectfill -1 nxsetgray -356 521 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 375 547 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 365 540 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 366 539 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 375 536 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 365 529 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 366 528 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 375 526 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 375 521 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -338 486 24 36 rectfill -1 nxsetgray -338 486 24 36 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 338 499 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 341 509 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 346 489 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 348 499 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 351 509 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 356 489 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2.000001 10 358 499 line -grestore -1 1 1.744186 setup -0 nxsetgray -2.000001 -10 360.999939 509 line -grestore -grestore -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1055] concat -230 execuserobject setfont -0 nxsetgray -219 530 moveto (R) show -0 5 rmoveto -(6) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1151] concat -230 execuserobject setfont -0 nxsetgray -217 578 moveto (R) show -0 5 rmoveto -(7) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1063] concat -230 execuserobject setfont -0 nxsetgray -391 534 moveto (R) show -0 5 rmoveto -(3) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 949] concat -230 execuserobject setfont -0 nxsetgray -344 477 moveto (R) show -0 5 rmoveto -(4) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1075] concat -230 execuserobject setfont -0 nxsetgray -290 540 moveto (R) show -0 5 rmoveto -(5) show -0 -5 rmoveto -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob09v2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob09v2.gif deleted file mode 100755 index 56f1c26b6..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob09v2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob09v3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob09v3.eps deleted file mode 100755 index 2061dccfa..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob09v3.eps +++ /dev/null @@ -1,747 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q8a3.draw -- /teacher/Apps/Drawfiles/phys121a/set11 -%%Creator: Draw -%%CreationDate: Mon Jun 12 10:17:35 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 105 453 423 642 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -105 453 318 189 rectclip -1 1 2.674419 setup -0 nxsetgray -0 -100 149 600 line -grestore -1 1 2.674419 setup -0 nxsetgray -200 0 150 601 line -grestore -1 1 2.674419 setup -0 nxsetgray -200 0 150 500 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 -100 249 601 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 -20 350 520 line -grestore -0 0 5.813953 setup -1 1 0 setup -1 nxsetgray -134 547 28 13 rectfill -1 nxsetgray -134 547 28 13 rectstroke -grestore -1 1 5.813953 setup -0 nxsetgray -10 0 144 558 line -grestore -1 1 1.627907 setup -0 nxsetgray -30 0 134 547 line -grestore -1 1 1.627907 setup -gsave -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -230 -exch -defineuserobject -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1137] concat -/Helvetica-Bold findfont 20 scalefont [1 0 0 -1 0 0] makefont -225 -exch -defineuserobject -225 execuserobject setfont -0 nxsetgray -157 576 moveto (-) show -grestore -grestore -1 1 1.627907 setup -gsave -225 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1081] concat -225 execuserobject setfont -0 nxsetgray -155 548 moveto (+) show -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -284 588 24 36 rectfill -1 nxsetgray -284 588 24 36 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 284 601 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 287 611 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 292 591 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 294 601 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 297 611 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 302 591 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2.000001 10 304 601 line -grestore -1 1 1.744186 setup -0 nxsetgray -2.000001 -10 306.999939 611 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -186 487 24 36 rectfill -1 nxsetgray -186 487 24 36 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 186 500 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 189 510 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 194 490 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 196 500 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 199 510 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 204 490 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2.000001 10 206 500 line -grestore -1 1 1.744186 setup -0 nxsetgray -2.000001 -10 208.999939 510 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -184 587 24 36 rectfill -1 nxsetgray -184 587 24 36 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 184 600 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 187 610 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 192 590 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 194 600 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 197 610 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 202 590 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2.000001 10 204 600 line -grestore -1 1 1.744186 setup -0 nxsetgray -2.000001 -10 206.999939 610 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -230 518 37 26 rectfill -1 nxsetgray -230 518 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 249 544 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 239 537 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 240 536 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 249 533 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 239 526 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 240 525 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 249 523 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 249 518 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -230 557 37 26 rectfill -1 nxsetgray -230 557 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 249 583 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 239 576 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 240 575 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 249 572 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 239 565 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 240 564 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 249 562 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 249 557 line -grestore -grestore -grestore -grestore -1 1 2.674419 setup -0 nxsetgray -50 0 325 521 line -grestore -1 1 2.674419 setup -0 nxsetgray -50 0 325 573 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 50 325 522 line -grestore -1 1 2.674419 setup -gsave -225 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1245] concat -230 execuserobject setfont -0 nxsetgray -186 625 moveto (R) show -0 5 rmoveto -(1) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1243] concat -230 execuserobject setfont -0 nxsetgray -286 624 moveto (R) show -0 5 rmoveto -(2) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 945] concat -230 execuserobject setfont -0 nxsetgray -190 475 moveto (R) show -0 5 rmoveto -(7) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1106] concat -230 execuserobject setfont -0 nxsetgray -115 558 moveto (V) show -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1065] concat -230 execuserobject setfont -0 nxsetgray -214 535 moveto (R) show -0 5 rmoveto -(5) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1137] concat -230 execuserobject setfont -0 nxsetgray -214 571 moveto (R) show -0 5 rmoveto -(6) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -0 nxsetgray -0 50 375 522 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 -25 350 600 line -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -307 535 37 26 rectfill -1 nxsetgray -307 535 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 326 561 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 316 554 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 317 553 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 326 550 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 316 543 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 317 542 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 326 540 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 326 535 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -357 536 37 26 rectfill -1 nxsetgray -357 536 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 376 562 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 366 555 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 367 554 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 376 551 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 366 544 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 367 543 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 376 541 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 376 536 line -grestore -grestore -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1093] concat -230 execuserobject setfont -0 nxsetgray -393 549 moveto (R) show -0 5 rmoveto -(3) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1093] concat -230 execuserobject setfont -0 nxsetgray -292 549 moveto (R) show -0 5 rmoveto -(4) show -0 -5 rmoveto -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob09v3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob09v3.gif deleted file mode 100755 index ea8ae10ef..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob09v3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob10av1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob10av1.eps deleted file mode 100755 index 936f906ef..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob10av1.eps +++ /dev/null @@ -1,643 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q9a1.draw -- /teacher/Apps/Drawfiles/phys121a/set11 -%%Creator: Draw -%%CreationDate: Mon Jun 12 10:32:04 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 98 488 414 610 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -98 488 316 122 rectclip -1 1 2.674419 setup -0 nxsetgray -0 -100 149 600 line -grestore -1 1 2.674419 setup -0 nxsetgray -200 0 150 601 line -grestore -1 1 2.674419 setup -0 nxsetgray -200 0 150 500 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 -100 249 601 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 -100 350 601 line -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -331 556 37 26 rectfill -1 nxsetgray -331 556 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 350 582 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 340 575 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 341 574 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 350 571 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 340 564 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 341 563 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 350 561 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 350 556 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -230 556 37 26 rectfill -1 nxsetgray -230 556 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 249 582 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 239 575 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 240 574 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 249 571 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 239 564 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 240 563 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 249 561 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 249 556 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -132 558 37 26 rectfill -1 nxsetgray -132 558 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 151 584 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 141 577 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 142 576 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 151 573 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 141 566 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 142 565 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 151 563 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 151 558 line -grestore -grestore -grestore -grestore -0 0 5.813953 setup -1 1 0 setup -1 nxsetgray -133 520 28 13 rectfill -1 nxsetgray -133 520 28 13 rectstroke -grestore -1 1 5.813953 setup -0 nxsetgray -10 0 144 519 line -grestore -1 1 1.627907 setup -0 nxsetgray -30 0 133 531 line -grestore -1 1 1.627907 setup -gsave -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -230 -exch -defineuserobject -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1027] concat -/Helvetica-Bold findfont 20 scalefont [1 0 0 -1 0 0] makefont -225 -exch -defineuserobject -225 execuserobject setfont -0 nxsetgray -158 521 moveto (-) show -grestore -grestore -1 1 1.627907 setup -gsave -225 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1087] concat -225 execuserobject setfont -0 nxsetgray -155 551 moveto (+) show -grestore -grestore -grestore -0 0 5.813953 setup -1 1 0 setup -1 nxsetgray -234 519 28 13 rectfill -1 nxsetgray -234 519 28 13 rectstroke -grestore -1 1 5.813953 setup -0 nxsetgray -10 0 245 518 line -grestore -1 1 1.627907 setup -0 nxsetgray -30 0 234 530 line -grestore -1 1 1.627907 setup -gsave -225 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1025] concat -225 execuserobject setfont -0 nxsetgray -259 520 moveto (-) show -grestore -grestore -1 1 1.627907 setup -gsave -225 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1085] concat -225 execuserobject setfont -0 nxsetgray -256 550 moveto (+) show -grestore -grestore -grestore -0 0 5.813953 setup -1 1 0 setup -1 nxsetgray -334 518 28 13 rectfill -1 nxsetgray -334 518 28 13 rectstroke -grestore -1 1 5.813953 setup -0 nxsetgray -10 0 345 517 line -grestore -1 1 1.627907 setup -0 nxsetgray -30 0 334 529 line -grestore -1 1 1.627907 setup -gsave -225 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1023] concat -225 execuserobject setfont -0 nxsetgray -359 519 moveto (-) show -grestore -grestore -1 1 1.627907 setup -gsave -225 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1083] concat -225 execuserobject setfont -0 nxsetgray -356 549 moveto (+) show -grestore -grestore -grestore -1 1 2.674419 setup -gsave -225 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1139] concat -230 execuserobject setfont -0 nxsetgray -115 572 moveto (R) show -0 5 rmoveto -(1) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1139] concat -230 execuserobject setfont -0 nxsetgray -215 572 moveto (R) show -0 5 rmoveto -(2) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1139] concat -230 execuserobject setfont -0 nxsetgray -315 572 moveto (R) show -0 5 rmoveto -(3) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1131] concat -/Courier-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -494 -exch -defineuserobject -494 execuserobject setfont -0 nxsetgray -181 567 moveto (I) show -0 5 rmoveto -(1) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -494 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1131] concat -494 execuserobject setfont -0 nxsetgray -284 567 moveto (I) show -0 5 rmoveto -(2) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -494 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1131] concat -494 execuserobject setfont -0 nxsetgray -385 567 moveto (I) show -0 5 rmoveto -(3) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -494 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1051] concat -230 execuserobject setfont -0 nxsetgray -210 528 moveto (V) show -0 5 rmoveto -(2) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1049] concat -230 execuserobject setfont -0 nxsetgray -108 527 moveto (V) show -0 5 rmoveto -(1) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1051] concat -230 execuserobject setfont -0 nxsetgray -308 528 moveto (V) show -0 5 rmoveto -(3) show -0 -5 rmoveto -grestore -grestore -1 1 1.627907 setup -0 nxsetgray -0 32 372 546 line -90.002655 372 578 arrow -grestore -1 1 1.627907 setup -0 nxsetgray -0 32 273 546 line -90.002655 273 578 arrow -grestore -1 1 1.627907 setup -0 nxsetgray -0 32 172 546 line -90.002655 172 578 arrow -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Courier-Bold -%%+ Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob10av1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob10av1.gif deleted file mode 100755 index bdb6f4e6d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob10av1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob10av2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob10av2.eps deleted file mode 100755 index 4bd4d6ed7..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob10av2.eps +++ /dev/null @@ -1,643 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q9a2.draw -- /teacher/Apps/Drawfiles/phys121a/set11 -%%Creator: Draw -%%CreationDate: Mon Jun 12 10:36:09 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 105 488 414 614 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -105 488 309 126 rectclip -1 1 2.674419 setup -0 nxsetgray -0 -100 149 600 line -grestore -1 1 2.674419 setup -0 nxsetgray -200 0 150 601 line -grestore -1 1 2.674419 setup -0 nxsetgray -200 0 150 500 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 -100 249 601 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 -100 350 601 line -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -331 556 37 26 rectfill -1 nxsetgray -331 556 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 350 582 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 340 575 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 341 574 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 350 571 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 340 564 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 341 563 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 350 561 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 350 556 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -230 535 37 26 rectfill -1 nxsetgray -230 535 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 249 561 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 239 554 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 240 553 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 249 550 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 239 543 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 240 542 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 249 540 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 249 535 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -132 536 37 26 rectfill -1 nxsetgray -132 536 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 151 562 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 141 555 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 142 554 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 151 551 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 141 544 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 142 543 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 151 541 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 151 536 line -grestore -grestore -grestore -grestore -0 0 5.813953 setup -1 1 0 setup -1 nxsetgray -334 518 28 13 rectfill -1 nxsetgray -334 518 28 13 rectstroke -grestore -1 1 5.813953 setup -0 nxsetgray -10 0 345 517 line -grestore -1 1 1.627907 setup -0 nxsetgray -30 0 334 529 line -grestore -1 1 1.627907 setup -gsave -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -230 -exch -defineuserobject -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1023] concat -/Helvetica-Bold findfont 20 scalefont [1 0 0 -1 0 0] makefont -225 -exch -defineuserobject -225 execuserobject setfont -0 nxsetgray -359 519 moveto (-) show -grestore -grestore -1 1 1.627907 setup -gsave -225 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1083] concat -225 execuserobject setfont -0 nxsetgray -356 549 moveto (+) show -grestore -grestore -grestore -1 1 2.674419 setup -gsave -225 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1095] concat -230 execuserobject setfont -0 nxsetgray -115 550 moveto (R) show -0 5 rmoveto -(1) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1099] concat -230 execuserobject setfont -0 nxsetgray -215 552 moveto (R) show -0 5 rmoveto -(2) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1139] concat -230 execuserobject setfont -0 nxsetgray -315 572 moveto (R) show -0 5 rmoveto -(3) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1099] concat -/Courier-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -494 -exch -defineuserobject -494 execuserobject setfont -0 nxsetgray -181 551 moveto (I) show -0 5 rmoveto -(1) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -494 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1095] concat -494 execuserobject setfont -0 nxsetgray -280 549 moveto (I) show -0 5 rmoveto -(2) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -494 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1131] concat -494 execuserobject setfont -0 nxsetgray -385 567 moveto (I) show -0 5 rmoveto -(3) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -494 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1051] concat -230 execuserobject setfont -0 nxsetgray -308 528 moveto (V) show -0 5 rmoveto -(3) show -0 -5 rmoveto -grestore -grestore -1 1 1.627907 setup -0 nxsetgray -0 32 372 546 line -90.002655 372 578 arrow -grestore -1 1 1.627907 setup -0 nxsetgray -0 32 271 534 line -90.002655 271 566 arrow -grestore -1 1 1.627907 setup -0 nxsetgray -0 32 172 535 line -90.002655 172 567 arrow -grestore -0 0 5.813953 setup -1 1 0 setup -1 nxsetgray -234 576 28 13 rectfill -1 nxsetgray -234 576 28 13 rectstroke -grestore -1 1 5.813953 setup -0 nxsetgray -10 0 245 575 line -grestore -1 1 1.627907 setup -0 nxsetgray -30 0 234 587 line -grestore -1 1 1.627907 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1151] concat -225 execuserobject setfont -0 nxsetgray -265 583 moveto (-) show -grestore -grestore -1 1 1.627907 setup -gsave -225 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1181] concat -225 execuserobject setfont -0 nxsetgray -268 598 moveto (+) show -grestore -grestore -grestore -0 0 5.813953 setup -1 1 0 setup -1 nxsetgray -233 513 28 13 rectfill -1 nxsetgray -233 513 28 13 rectstroke -grestore -1 1 5.813953 setup -0 nxsetgray -10 0 244 512 line -grestore -1 1 1.627907 setup -0 nxsetgray -30 0 233 524 line -grestore -1 1 1.627907 setup -gsave -225 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1025] concat -225 execuserobject setfont -0 nxsetgray -264 520 moveto (-) show -grestore -grestore -1 1 1.627907 setup -gsave -225 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1055] concat -225 execuserobject setfont -0 nxsetgray -267 535 moveto (+) show -grestore -grestore -grestore -1 1 2.674419 setup -gsave -225 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1037] concat -230 execuserobject setfont -0 nxsetgray -213 521 moveto (V) show -0 5 rmoveto -(2) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1167] concat -230 execuserobject setfont -0 nxsetgray -212 586 moveto (V) show -0 5 rmoveto -(1) show -0 -5 rmoveto -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Courier-Bold -%%+ Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob10av2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob10av2.gif deleted file mode 100755 index 02936bca8..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob10av2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob10av3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob10av3.eps deleted file mode 100755 index 87b9627f1..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob10av3.eps +++ /dev/null @@ -1,643 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q9a3.draw -- /teacher/Apps/Drawfiles/phys121a/set11 -%%Creator: Draw -%%CreationDate: Mon Jun 12 10:40:46 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 105 482 414 612 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -105 482 309 130 rectclip -1 1 2.674419 setup -0 nxsetgray -0 -100 149 600 line -grestore -1 1 2.674419 setup -0 nxsetgray -200 0 150 601 line -grestore -1 1 2.674419 setup -0 nxsetgray -200 0 150 500 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 -100 249 601 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 -100 350 601 line -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -331 556 37 26 rectfill -1 nxsetgray -331 556 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 350 582 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 340 575 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 341 574 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 350 571 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 340 564 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 341 563 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 350 561 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 350 556 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -230 534 37 25.999998 rectfill -1 nxsetgray -230 534 37 25.999998 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 249 560 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 239 553 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 240 552 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 249 548.999939 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 239 541.999939 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 240 540.999939 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 249 539 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 249 534 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -132 532 37 26 rectfill -1 nxsetgray -132 532 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 151 558 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 141 551 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 142 550 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 151 547 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 141 540 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 142 539 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 151 537 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 151 532 line -grestore -grestore -grestore -grestore -1 1 2.674419 setup -gsave -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -230 -exch -defineuserobject -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1097] concat -230 execuserobject setfont -0 nxsetgray -115 551 moveto (R) show -0 5 rmoveto -(1) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1103] concat -230 execuserobject setfont -0 nxsetgray -215 554 moveto (R) show -0 5 rmoveto -(2) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1139] concat -230 execuserobject setfont -0 nxsetgray -315 572 moveto (R) show -0 5 rmoveto -(3) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1089] concat -/Courier-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -494 -exch -defineuserobject -494 execuserobject setfont -0 nxsetgray -181 546 moveto (I) show -0 5 rmoveto -(1) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -494 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1093] concat -494 execuserobject setfont -0 nxsetgray -282 548 moveto (I) show -0 5 rmoveto -(2) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -494 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1131] concat -494 execuserobject setfont -0 nxsetgray -385 567 moveto (I) show -0 5 rmoveto -(3) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -494 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1051] concat -230 execuserobject setfont -0 nxsetgray -308 528 moveto (V) show -0 5 rmoveto -(3) show -0 -5 rmoveto -grestore -grestore -1 1 1.627907 setup -0 nxsetgray -0 32 372 546 line -90.002655 372 578 arrow -grestore -1 1 1.627907 setup -0 nxsetgray -0 32 271 534 line -90.002655 271 566 arrow -grestore -1 1 1.627907 setup -0 nxsetgray -0 32 170 533 line -90.002655 170 565 arrow -grestore -0 0 5.813953 setup -1 1 0 setup -1 nxsetgray -335 522 28 13 rectfill -1 nxsetgray -335 522 28 13 rectstroke -grestore -1 1 5.813953 setup -0 nxsetgray -10 0 345 533 line -grestore -1 1 1.627907 setup -0 nxsetgray -30 0 335 522 line -grestore -1 1 1.627907 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1087] concat -/Helvetica-Bold findfont 20 scalefont [1 0 0 -1 0 0] makefont -225 -exch -defineuserobject -225 execuserobject setfont -0 nxsetgray -358 551 moveto (-) show -grestore -grestore -1 1 1.627907 setup -gsave -225 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1031] concat -225 execuserobject setfont -0 nxsetgray -356 523 moveto (+) show -grestore -grestore -grestore -0 0 5.813953 setup -1 1 0 setup -1 nxsetgray -133 510 28 13 rectfill -1 nxsetgray -133 510 28 13 rectstroke -grestore -1 1 5.813953 setup -0 nxsetgray -10 0 144 509 line -grestore -1 1 1.627907 setup -0 nxsetgray -30 0 133 521 line -grestore -1 1 1.627907 setup -gsave -225 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1023] concat -225 execuserobject setfont -0 nxsetgray -167 519 moveto (-) show -grestore -grestore -1 1 1.627907 setup -gsave -225 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1051] concat -225 execuserobject setfont -0 nxsetgray -168 533 moveto (+) show -grestore -grestore -grestore -0 0 5.813953 setup -1 1 0 setup -1 nxsetgray -134 573 28 13 rectfill -1 nxsetgray -134 573 28 13 rectstroke -grestore -1 1 5.813953 setup -0 nxsetgray -10 0 144 584 line -grestore -1 1 1.627907 setup -0 nxsetgray -30 0 134 573 line -grestore -1 1 1.627907 setup -gsave -225 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1177] concat -225 execuserobject setfont -0 nxsetgray -167 596 moveto (-) show -grestore -grestore -1 1 1.627907 setup -gsave -225 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1153] concat -225 execuserobject setfont -0 nxsetgray -169 584 moveto (+) show -grestore -grestore -grestore -1 1 2.674419 setup -gsave -225 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1173] concat -230 execuserobject setfont -0 nxsetgray -119 589 moveto (V) show -0 5 rmoveto -(2) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -230 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1003] concat -230 execuserobject setfont -0 nxsetgray -122 504 moveto (V) show -0 5 rmoveto -(1) show -0 -5 rmoveto -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Courier-Bold -%%+ Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob10av3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob10av3.gif deleted file mode 100755 index b2bdfdfc6..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob10av3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob12.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob12.eps deleted file mode 100755 index bcfdb67ad..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob12.eps +++ /dev/null @@ -1,567 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q16.draw -- /teacher/Apps/Drawfiles/phys121a/set11 -%%Creator: Draw -%%CreationDate: Mon Jun 12 12:09:24 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 78 523 414 692 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -78 523 336 169 rectclip -1 1 2.674419 setup -0 nxsetgray -200 0 160 649 line -grestore -1 1 2.674419 setup -0 nxsetgray -200 0 160 531 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 118 360 531 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 118 263 531 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 -18 159 649 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 -18 160 550 line -grestore -1 1 2.674419 setup -0 nxsetgray -73 0 124 629 line -grestore -1 1 2.674419 setup -0 nxsetgray -73 0 124 552 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 -77 198 629 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 -77 124 629 line -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -244 581 37 26 rectfill -1 nxsetgray -244 581 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 263 607 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 253 600 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 254 599 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 263 596 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 253 589 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 254 588 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 263 586 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 263 581 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -179 581 37 26 rectfill -1 nxsetgray -179 581 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 198 607 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 188 600 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 189 599 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 198 596 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 188 589 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 189 588 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 198 586 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 198 581 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -105 581 37 26 rectfill -1 nxsetgray -105 581 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 124 607 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 114 600 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 115 599 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 124 596 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 114 589 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 115 588 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 124 586 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 124 581 line -grestore -grestore -grestore -grestore -0 0 5.813953 setup -1 1 0 setup -1 nxsetgray -344 591 28 13 rectfill -1 nxsetgray -344 591 28 13 rectstroke -grestore -1 1 5.813953 setup -0 nxsetgray -10 0 355 590 line -grestore -1 1 1.627907 setup -0 nxsetgray -30 0 344 602 line -grestore -1 1 1.627907 setup -gsave -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -153 -exch -defineuserobject -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1169] concat -/Helvetica-Bold findfont 20 scalefont [1 0 0 -1 0 0] makefont -11 -exch -defineuserobject -11 execuserobject setfont -0 nxsetgray -369 592 moveto (-) show -grestore -grestore -1 1 1.627907 setup -gsave -11 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1229] concat -11 execuserobject setfont -0 nxsetgray -366 622 moveto (+) show -grestore -grestore -grestore -1 1 2.674419 setup -gsave -11 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1183] concat -153 execuserobject setfont -0 nxsetgray -385 594 moveto (V) show -0 5 rmoveto -(0) show -0 -5 rmoveto -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -198 635 24 36 rectfill -1 nxsetgray -198 635 24 36 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 198 648 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 201 658 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 206 638 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 208 648 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 211 658 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 216 638 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2.000001 10 218 648 line -grestore -1 1 1.744186 setup -0 nxsetgray -2.000001 -10 220.999939 658 line -grestore -grestore -grestore -grestore -1 1 2.674419 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1181] concat -153 execuserobject setfont -0 nxsetgray -282 593 moveto (R) show -0 5 rmoveto -(1) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1345] concat -153 execuserobject setfont -0 nxsetgray -202 675 moveto (R) show -0 5 rmoveto -(2) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1183] concat -153 execuserobject setfont -0 nxsetgray -215 594 moveto (R) show -0 5 rmoveto -(3) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1181] concat -153 execuserobject setfont -0 nxsetgray -88 593 moveto (R) show -0 5 rmoveto -(4) show -0 -5 rmoveto -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob12.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob12.gif deleted file mode 100755 index d448bfe65..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob12.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob13a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob13a.eps deleted file mode 100755 index 100fb77af..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob13a.eps +++ /dev/null @@ -1,633 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q17.draw -- /teacher/Apps/Drawfiles/phys121a/set11 -%%Creator: Draw -%%CreationDate: Mon Jun 12 14:17:27 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 118 428 353 705 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -118 428 235 277 rectclip -1 1 2.674419 setup -gsave -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -153 -exch -defineuserobject -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 895] concat -153 execuserobject setfont -0 nxsetgray -231 450 moveto (V) show -0 5 rmoveto -(0) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -0 nxsetgray -150 0 161 510 line -grestore -1 1 2.674419 setup -0 nxsetgray -75 50 161 510 line -grestore -1 1 2.674419 setup -0 nxsetgray -75 -50 236 560 line -grestore -1 1 1.627907 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1018] concat -153 execuserobject setfont -0 nxsetgray -146 514 moveto (a) show -grestore -grestore -1 1 1.627907 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1018] concat -153 execuserobject setfont -0 nxsetgray -317 514 moveto (b) show -grestore -grestore -1 1 1.627907 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1344] concat -153 execuserobject setfont -0 nxsetgray -230 677 moveto (c) show -grestore -grestore -1 1 1.627907 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1130] concat -153 execuserobject setfont -0 nxsetgray -243 570 moveto (d) show -grestore -grestore -1 1 2.674419 setup -0 nxsetgray -75 150 161 509 line -grestore -1 1 2.674419 setup -0 nxsetgray -75 -150 237 660 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 -100 236 659 line -grestore -0 0 6.744186 setup -1 1 6.744186 setup -1 nxsetgray -15 -10 259 543 line -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -3 11 266 539 line -grestore -1 1 1.744186 setup -0 nxsetgray -15 15 252 534 line -grestore -1 1 1.744186 setup -0 nxsetgray -3 11 253 535 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -3 11 277 533 line -grestore -1 1 1.744186 setup -0 nxsetgray -15 15 263 528 line -grestore -1 1 1.744186 setup -0 nxsetgray -3 11 264 529 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -gsave --12.632659 281.500031 translate -0.959184 0.961538 scale -1 nxsetgray -gsave -newpath -systemdict -begin -205 247 254 299 setbbox -228 249 moveto --23 29 rlineto -23 21 rlineto -26 -33 rlineto --27 -19 rlineto -1 2 rlineto -end -fill -grestore -grestore --12.632659 281.500031 translate -0.959184 0.961538 scale -1 nxsetgray -gsave -newpath -systemdict -begin -205 247 254 299 setbbox -228 249 moveto --23 29 rlineto -23 21 rlineto -26 -33 rlineto --27 -19 rlineto -1 2 rlineto -end -stroke -grestore -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 -11 194 544 line -grestore -1 1 1.744186 setup -0 nxsetgray -14.999999 -15.000002 195 544 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 -11 208 541 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 -11 205.999969 553 line -grestore -1 1 1.744186 setup -0 nxsetgray -14.999999 -15.000002 206.999969 553 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 -11 219.999969 550 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -217 585 37 25.999998 rectfill -1 nxsetgray -217 585 37 25.999998 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 236 611 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 226 604 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 227 603 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 236 599.999939 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 226 592.999939 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 227 591.999939 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 236 590 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 236 585 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -224 497 24 36 rectfill -1 nxsetgray -224 497 24 36 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 224 510 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 227 520 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 232 500 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 234 510 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 237 520 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 242 500 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2.000001 10 244 510 line -grestore -1 1 1.744186 setup -0 nxsetgray -2.000001 -10 246.999939 520 line -grestore -grestore -grestore -grestore -1 1 2.674419 setup -0 nxsetgray -150 0 161 480 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 29 160 480 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 29 311 481 line -grestore -0 0 5.813953 setup -1 1 0 setup -1 nxsetgray -230 465 13 28 rectfill -1 nxsetgray -230 465 13 28 rectstroke -grestore -1 1 5.813953 setup -0 nxsetgray -0 -10 241 485 line -grestore -1 1 1.627907 setup -0 nxsetgray -0 30 233 464 line -grestore -1 1 1.627907 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 939] concat -/Helvetica-Bold findfont 20 scalefont [1 0 0 -1 0 0] makefont -11 -exch -defineuserobject -11 execuserobject setfont -0 nxsetgray -246 477 moveto (-) show -grestore -grestore -1 1 1.627907 setup -gsave -11 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 939] concat -11 execuserobject setfont -0 nxsetgray -218 477 moveto (+) show -grestore -grestore -grestore -0 0 4.534883 setup -1 1 4.534883 setup -1 nxsetgray -11 -20 270 591 line -grestore -0 0 2.674419 setup -1 1 2.674419 setup -0 nxsetgray -12 3 269 594 line -grestore -1 1 2.674419 setup -0 nxsetgray -14 18 267 579 line -grestore -1 1 2.674419 setup -0 nxsetgray -10 1 267 580 line -grestore -grestore -0 0 2.674419 setup -1 1 2.674419 setup -0 nxsetgray -12 3 275 581 line -grestore -1 1 2.674419 setup -0 nxsetgray -14 18 273 566 line -grestore -1 1 2.674419 setup -0 nxsetgray -10 1 273 567 line -grestore -grestore -grestore -0 0 4.534883 setup -1 1 4.534883 setup -1 nxsetgray -8 15 193 576 line -grestore -0 0 2.674419 setup -1 1 2.674419 setup -0 nxsetgray -6 -11 187 583 line -grestore -1 1 2.674419 setup -0 nxsetgray -17 -7 187 583 line -grestore -1 1 2.674419 setup -0 nxsetgray -12 -16 192 592 line -grestore -1 1 2.674419 setup -0 nxsetgray -6 -11 204 596 line -grestore -1 1 2.674419 setup -0 nxsetgray -17 -7 192 592 line -grestore -grestore -grestore -1 1 2.674419 setup -gsave -11 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1376] concat -153 execuserobject setfont -0 nxsetgray -128 693 moveto (\(All resistors of equal value, R\)) show -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob13a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob13a.gif deleted file mode 100755 index 6834c4887..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob13a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob14.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob14.eps deleted file mode 100755 index eda459671..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob14.eps +++ /dev/null @@ -1,682 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q23.draw -- /teacher/Apps/Drawfiles/phys121a/set11 -%%Creator: Draw -%%CreationDate: Mon Jun 12 14:31:55 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 83 389 373 645 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -83 389 290 256 rectclip -1 1 2.674419 setup -gsave -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -153 -exch -defineuserobject -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 817] concat -153 execuserobject setfont -0 nxsetgray -151 411 moveto (V) show -0 5 rmoveto -(0) show -0 -5 rmoveto -grestore -grestore -0 0 5.813953 setup -1 1 0 setup -1 nxsetgray -150 430 13 28 rectfill -1 nxsetgray -150 430 13 28 rectstroke -grestore -1 1 5.813953 setup -0 nxsetgray -0 -10 161 450 line -grestore -1 1 1.627907 setup -0 nxsetgray -0 30 153 429 line -grestore -1 1 1.627907 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 869] concat -/Helvetica-Bold findfont 20 scalefont [1 0 0 -1 0 0] makefont -11 -exch -defineuserobject -11 execuserobject setfont -0 nxsetgray -166 442 moveto (-) show -grestore -grestore -1 1 1.627907 setup -gsave -11 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 869] concat -11 execuserobject setfont -0 nxsetgray -138 442 moveto (+) show -grestore -grestore -grestore -0 0 2.674419 setup -1 1 2.674419 setup -0 nxsetgray -75 50 174 569 line -grestore -0 0 1.744186 setup -1 1 0 setup -gsave --8.632659 333.500031 translate -0.959184 0.961538 scale -1 nxsetgray -gsave -newpath -systemdict -begin -205 247 254 299 setbbox -228 249 moveto --23 29 rlineto -23 21 rlineto -26 -33 rlineto --27 -19 rlineto -1 2 rlineto -end -fill -grestore -grestore --8.632659 333.500031 translate -0.959184 0.961538 scale -1 nxsetgray -gsave -newpath -systemdict -begin -205 247 254 299 setbbox -228 249 moveto --23 29 rlineto -23 21 rlineto -26 -33 rlineto --27 -19 rlineto -1 2 rlineto -end -stroke -grestore -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 -11 198 596 line -grestore -1 1 1.744186 setup -0 nxsetgray -14.999999 -15.000002 199 596 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 -11 212 593 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 -11 209.999969 605 line -grestore -1 1 1.744186 setup -0 nxsetgray -14.999999 -15.000002 210.999969 605 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 -11 223.999969 602 line -grestore -grestore -grestore -grestore -grestore -0 0 6.744186 setup -1 1 2.674419 setup -0 nxsetgray -75 -50 251 619 line -grestore -0 0 6.744186 setup -1 1 6.744186 setup -1 nxsetgray -15 -10 283 596 line -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -3 11 290 592 line -grestore -1 1 1.744186 setup -0 nxsetgray -15 15 276 587 line -grestore -1 1 1.744186 setup -0 nxsetgray -3 11 277 588 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -3 11 301 586 line -grestore -1 1 1.744186 setup -0 nxsetgray -15 15 287 581 line -grestore -1 1 1.744186 setup -0 nxsetgray -3 11 288 582 line -grestore -grestore -grestore -grestore -grestore -0 0 2.674419 setup -1 1 2.674419 setup -0 nxsetgray -75 50 250 519 line -grestore -0 0 1.744186 setup -1 1 0 setup -gsave -67.36734 283.500031 translate -0.959184 0.961538 scale -1 nxsetgray -gsave -newpath -systemdict -begin -205 247 254 299 setbbox -228 249 moveto --23 29 rlineto -23 21 rlineto -26 -33 rlineto --27 -19 rlineto -1 2 rlineto -end -fill -grestore -grestore -67.36734 283.500031 translate -0.959184 0.961538 scale -1 nxsetgray -gsave -newpath -systemdict -begin -205 247 254 299 setbbox -228 249 moveto --23 29 rlineto -23 21 rlineto -26 -33 rlineto --27 -19 rlineto -1 2 rlineto -end -stroke -grestore -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 -11 274 546 line -grestore -1 1 1.744186 setup -0 nxsetgray -14.999999 -15.000002 275 546 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 -11 288 543 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 -11 285.999969 555 line -grestore -1 1 1.744186 setup -0 nxsetgray -14.999999 -15.000002 286.999969 555 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 -11 299.999969 552 line -grestore -grestore -grestore -grestore -grestore -0 0 6.744186 setup -1 1 2.674419 setup -0 nxsetgray -75 -50 173 569 line -grestore -0 0 6.744186 setup -1 1 6.744186 setup -1 nxsetgray -15 -10 205 546 line -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -3 11 212 542 line -grestore -1 1 1.744186 setup -0 nxsetgray -15 15 198 537 line -grestore -1 1 1.744186 setup -0 nxsetgray -3 11 199 538 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -3 11 223 536 line -grestore -1 1 1.744186 setup -0 nxsetgray -15 15 209 531 line -grestore -1 1 1.744186 setup -0 nxsetgray -3 11 210 532 line -grestore -grestore -grestore -grestore -grestore -1 1 2.674419 setup -0 nxsetgray -200 0 163 445 line -grestore -1 1 2.674419 setup -0 nxsetgray -60 0 91 445 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 -124 91 570 line -grestore -1 1 1.627907 setup -gsave -11 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1156] concat -153 execuserobject setfont -0 nxsetgray -166 583 moveto (a) show -grestore -grestore -1 1 1.627907 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1258] concat -153 execuserobject setfont -0 nxsetgray -245 634 moveto (b) show -grestore -grestore -1 1 1.627907 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1024] concat -153 execuserobject setfont -0 nxsetgray -245 517 moveto (c) show -grestore -grestore -1 1 1.627907 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1156] concat -153 execuserobject setfont -0 nxsetgray -323 583 moveto (d) show -grestore -grestore -1 1 2.674419 setup -0 nxsetgray -0 -124 364 570 line -grestore -1 1 2.674419 setup -0 nxsetgray -82 0 91 570 line -grestore -1 1 2.674419 setup -0 nxsetgray -38 0 326 570 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 -98 249 619 line -grestore -0 setgray -0.333333 setgray -1 1 3.953488 setup -gsave -1 nxsetgray -50 50 224 543 oval fill -grestore -0.434477 nxsetgray -50 50 224 543 oval matrix defaultmatrix setmatrix stroke -grestore -1 1 3.953488 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1141] concat -/Helvetica-Bold findfont 25 scalefont [1 0 0 -1 0 0] makefont -444 -exch -defineuserobject -444 execuserobject setfont -0 nxsetgray -239 580 moveto (G) show -grestore -grestore -1 1 3.953488 setup -gsave -444 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1226] concat -153 execuserobject setfont -0 nxsetgray -198 618 moveto (R) show -grestore -grestore -1 1 2.674419 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1217] concat -153 execuserobject setfont -0 nxsetgray -298 611 moveto (R) show -0 5 rmoveto -(1) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1049] concat -153 execuserobject setfont -0 nxsetgray -184 527 moveto (R) show -0 5 rmoveto -(2) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1049] concat -153 execuserobject setfont -0 nxsetgray -298 527 moveto (R) show -0 5 rmoveto -(3) show -0 -5 rmoveto -grestore -grestore -0 setgray -0.333333 setgray -1 1 0 setup -1 nxsetgray -294 421 36 40 rectfill -1 nxsetgray -294 421 36 40 rectstroke -grestore -1 1 2.674419 setup -0 nxsetgray -36 17 292 445 line -grestore -1 1 3.953488 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 841] concat -153 execuserobject setfont -0 nxsetgray -308 420 moveto (S) show -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob14.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob14.gif deleted file mode 100755 index c8c7e734b..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob14.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob15a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob15a.eps deleted file mode 100755 index e90bd84fe..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob15a.eps +++ /dev/null @@ -1,453 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q24.draw -- /teacher/Apps/Drawfiles/phys121a/set11 -%%Creator: Draw -%%CreationDate: Tue Jun 13 10:35:51 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 96 458 379 675 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -96 458 283 217 rectclip -1 1 2.674419 setup -0 nxsetgray -200 0 143 466 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 200 143 466 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 200 244 466 line -grestore -1 1 2.674419 setup -0 nxsetgray -100 0 144 666 line -grestore -1 1 2.674419 setup -0 nxsetgray -98 0 245 566 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 100 344 466 line -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -227 603 37 26 rectfill -1 nxsetgray -227 603 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 246 629 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 236 622 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 237 621 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 246 618 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 236 611 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 237 610 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 246 608 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 246 603 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -226 503 37 26 rectfill -1 nxsetgray -226 503 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 245 529 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 235 522 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 236 521 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 245 518 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 235 511 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 236 510 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 245 508 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 245 503 line -grestore -grestore -grestore -grestore -1 1 2.674419 setup -gsave -/Helvetica-Bold findfont 25 scalefont [1 0 0 -1 0 0] makefont -13 -exch -defineuserobject -13 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1229] concat -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -45 -exch -defineuserobject -45 execuserobject setfont -0 nxsetgray -261 617 moveto (R) show -0 5 rmoveto -(1) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -45 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1031] concat -45 execuserobject setfont -0 nxsetgray -260 518 moveto (R) show -0 5 rmoveto -(2) show -0 -5 rmoveto -grestore -grestore -0 0 5.813953 setup -1 1 0 setup -1 nxsetgray -128 569 28 13 rectfill -1 nxsetgray -128 569 28 13 rectstroke -grestore -1 1 5.813953 setup -0 nxsetgray -10 0 139 568 line -grestore -1 1 1.627907 setup -0 nxsetgray -30 0 128 580 line -grestore -1 1 1.627907 setup -gsave -45 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1125] concat -/Helvetica-Bold findfont 20 scalefont [1 0 0 -1 0 0] makefont -12 -exch -defineuserobject -12 execuserobject setfont -0 nxsetgray -153 570 moveto (-) show -grestore -grestore -1 1 1.627907 setup -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1185] concat -12 execuserobject setfont -0 nxsetgray -150 600 moveto (+) show -grestore -grestore -grestore -1 1 2.674419 setup -gsave -12 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1137] concat -45 execuserobject setfont -0 nxsetgray -106 571 moveto (V) show -0 5 rmoveto -(0) show -0 -5 rmoveto -grestore -grestore -0 setgray -0.333333 setgray -1 1 3.953488 setup -gsave -1 nxsetgray -50 50 320 490 oval fill -grestore -0.434477 nxsetgray -50 50 320 490 oval matrix defaultmatrix setmatrix stroke -grestore -1 1 3.953488 setup -gsave -45 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1031] concat -13 execuserobject setfont -0 nxsetgray -336 525 moveto (V) show -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob15a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob15a.gif deleted file mode 100755 index e757074f9..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob15a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob17v1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob17v1.eps deleted file mode 100755 index 4eaf4264d..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob17v1.eps +++ /dev/null @@ -1,534 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Tue Jun 8 09:17:41 1993 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 336 212 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /closedspl false def /nspans 0 def /sstrt { - gsave dodrawctm /closedspl exch def /nspans 0 def newpath -} bind def /sstrtpath { - dodrawctm /closedspl exch def /nspans 0 def newpath -} bind def /sadd { - nspans 0 eq { - moveto - } { - pop pop - } ifelse curveto /nspans nspans 1 add def -} bind def /splstroke { - nspans 0 gt { - unpagectm concat closedspl { - closepath - } if crlincp setlinecap crlinjn setlinejoin crlinalph setalpha crlinw setlinewidth crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - flattenpath crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse - } { - pop pop - } ifelse grestore -} bind def /splfill { - nspans 0 gt { - closedspl { - closepath - } if crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - flattenpath crfilpat findfont exch crfilstyl 0 eq { - filwittrans { - trpateofil - } { - oppateofil - } ifelse - } { - filwittrans { - trpatfil - } { - oppatfil - } ifelse - } ifelse - } { - crfilstyl 0 eq { - eofill - } { - fill - } ifelse pop - } ifelse - } if grestore -} bind def /mksplpath { - nspans 0 gt { - closedspl { - closepath - } if - } if -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 337 212 rectclip --37.403313 -537.330627 translate -37.403313 537.330627 335.610657 211.427368 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 0 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 0 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -/crlinw 1.9 def -false 0.009156 -0.924859 0.999952 0.009637 -311.731812 873.129395 sc5mt astore sstrt -systemdict -begin -158.129608 489.600006 302.463348 511.200012 setbbox -179.478226 504.612518 moveto -179.478226 504.612518 201.600006 504.000031 201.600006 504.000031 curveto -201.600006 504.000031 208.800003 489.600006 208.800003 489.600006 curveto -208.800003 489.600006 223.200012 511.200012 223.200012 511.200012 curveto -223.200012 511.200012 237.600006 489.600006 237.600006 489.600006 curveto -237.600006 489.600006 252.000015 511.200012 252.000015 511.200012 curveto -252.000015 511.200012 266.400024 489.600006 266.400024 489.600006 curveto -266.400024 489.600006 273.600006 504.000031 273.600006 504.000031 curveto -273.600006 504.000031 302.460754 503.736389 302.460754 503.736389 curveto -end -/nspans 8 def 0.009767 -0.999952 0.999952 0.009767 -118.64917 536.186279 sc5mt astore 0.009767 -0.999952 0.999952 0.009767 -118.64917 536.186279 sc6mt astore splstroke --0.999998 -0.001813 -0.001813 0.999998 510.739136 -248.484177 sc4mt astore -0.999998 -0.001813 -0.001813 0.999998 510.739136 -248.484177 sc5mt astore 55.851318 0.030273 325 459.5 -1 0 0 1 418.396057 173 sc6mt astore ssl -/crlinw 4.4 def --0.999998 -0.001813 -0.001813 0.999998 510.739136 -248.484177 sc4mt astore -0.999998 -0.001813 -0.001813 0.999998 510.739136 -248.484177 sc5mt astore -29.022514 -0.072815 80.064873 622.331177 1 0 0 1 0 0 sc6mt astore ssl -/crlinw 1.9 def -false -0.924892 0.004923 -0.005586 -0.999983 477.458374 1214.127197 sc5mt astore sstrt -systemdict -begin -158.129608 489.600006 303.435883 511.200012 setbbox -179.36647 503.768707 moveto -179.36647 503.768707 201.600006 504.000031 201.600006 504.000031 curveto -201.600006 504.000031 208.800003 489.600006 208.800003 489.600006 curveto -208.800003 489.600006 223.200012 511.200012 223.200012 511.200012 curveto -223.200012 511.200012 237.600006 489.600006 237.600006 489.600006 curveto -237.600006 489.600006 252.000015 511.200012 252.000015 511.200012 curveto -252.000015 511.200012 266.400024 489.600006 266.400024 489.600006 curveto -266.400024 489.600006 273.600006 504.000031 273.600006 504.000031 curveto -273.600006 504.000031 303.432861 504.129456 303.432861 504.129456 curveto -end -/nspans 8 def -0.999985 0.005455 -0.005455 -0.999985 708.232544 746.755676 sc5mt astore -0.999985 0.005455 -0.005455 -0.999985 708.232544 746.755676 sc6mt astore splstroke -false -0.924892 0.004923 -0.005586 -0.999983 363.458374 1214.377197 sc5mt astore sstrt -systemdict -begin -158.129608 489.600006 302.893768 511.200012 setbbox -178.824356 504.015991 moveto -178.824356 504.015991 201.600006 504.000031 201.600006 504.000031 curveto -201.600006 504.000031 208.800003 489.600006 208.800003 489.600006 curveto -208.800003 489.600006 223.200012 511.200012 223.200012 511.200012 curveto -223.200012 511.200012 237.600006 489.600006 237.600006 489.600006 curveto -237.600006 489.600006 252.000015 511.200012 252.000015 511.200012 curveto -252.000015 511.200012 266.400024 489.600006 266.400024 489.600006 curveto -266.400024 489.600006 273.600006 504.000031 273.600006 504.000031 curveto -273.600006 504.000031 302.893768 503.87674 302.893768 503.87674 curveto -end -/nspans 8 def -0.999985 0.005455 -0.005455 -0.999985 708.232544 746.755676 sc5mt astore -0.999985 0.005455 -0.005455 -0.999985 708.232544 746.755676 sc6mt astore splstroke --0.999998 -0.001813 -0.001813 0.999998 510.739136 -248.484177 sc4mt astore -0.999998 -0.001813 -0.001813 0.999998 510.739136 -248.484177 sc5mt astore 55.851318 0.030273 325 459.5 -1 0 0 1 548.146057 138 sc6mt astore ssl -/crlinw 4.4 def --0.999998 -0.001813 -0.001813 0.999998 510.739136 -248.484177 sc4mt astore -0.999998 -0.001813 -0.001813 0.999998 510.739136 -248.484177 sc5mt astore -29.457642 0.008362 212.5 587.25 1 0 0 1 -2.25 0 sc6mt astore ssl -/crlinw 1.9 def --0.999998 -0.001813 -0.001813 0.999998 510.739136 -248.484177 sc4mt astore -0.999998 -0.001813 -0.001813 0.999998 510.739136 -248.484177 sc5mt astore 55.851318 0.030273 325 459.5 -1 0 0 1 666.896057 190 sc6mt astore ssl -/crlinw 4.4 def --0.999998 -0.001813 -0.001813 0.999998 510.739136 -248.484177 sc4mt astore -0.999998 -0.001813 -0.001813 0.999998 510.739136 -248.484177 sc5mt astore -30.207642 0.008362 330.25 639.25 1 0 0 1 -0.5 0 sc6mt astore ssl -/crlinw 1.9 def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -80 65 712 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -19.5 0 83.75 712.25 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 61.5 314 650 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 10.5 0 304.5 711.25 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -48.304871 193.232239 587 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -102 314 640 1 0 0 1 0 0 sc6mt astore ssl -false 1 0 0 1 258 74 sc5mt astore sstrt -systemdict -begin -36 491 82 508 setbbox -44.25 502.75 moveto -44.25 502.75 56 491 56 491 curveto -56 491 67.5 502.5 67.5 502.5 curveto -end -/nspans 2 def 1 0 0 1 0 0 sc5mt astore 1 0 0 1 0 0 sc6mt astore splstroke -false 1 0 0 1 137.25 66 sc5mt astore sstrt -systemdict -begin -36 491 82 508 setbbox -44.25 502.75 moveto -44.25 502.75 56 491 56 491 curveto -56 491 67.75 502.75 67.75 502.75 curveto -end -/nspans 2 def 1 0 0 1 0 0 sc5mt astore 1 0 0 1 0 0 sc6mt astore splstroke -false -0.99846 0.05547 -0.05547 -0.99846 148.232391 1161.378418 sc5mt astore sstrt -systemdict -begin -36 491 82 508 setbbox -43.43605 502.311218 moveto -43.43605 502.311218 56 491 56 491 curveto -56 491 67.399094 503.642487 67.399094 503.642487 curveto -end -/nspans 2 def -0.99846 0.05547 -0.05547 -0.99846 397.228302 980.974365 sc5mt astore -0.99846 0.05547 -0.05547 -0.99846 397.228302 980.974365 sc6mt astore splstroke -/txtdraw true def -/txlndraw true def -(i) [0 0] 202 405 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -114 256] dotx -/txtdraw true def -/txlndraw true def -(1 ) [10.007996 0 0 0] 205.996002 397.799988 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -114 256] dotx -/txtdraw true def -/txlndraw true def -(i) [0 0] 175 439 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 41 117] dotx -/txtdraw true def -/txlndraw true def -(2 ) [10.007996 0 0 0] 178.996002 431.799988 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 41 117] dotx -/txtdraw true def -/txlndraw true def -(i) [0 0] 100 348 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 233 216] dotx -/txtdraw true def -/txlndraw true def -(3) [0 0] 103.996002 340.799988 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 233 216] dotx -/txtdraw true def -/txlndraw true def -( ) [0 0] 114.003998 348 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 233 216] dotx -(R) [0 0] 132 403 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 2 327] dotx -/txtdraw true def -/txlndraw true def -(1) [0 0] 144.996002 395.799988 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 2 327] dotx -/txtdraw true def -/txlndraw true def -( ) [0 0] 155.003998 403 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 2 327] dotx -(R) [0 0] 247 413 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -40 237] dotx -/txtdraw true def -/txlndraw true def -(2) [0 0] 259.996002 405.799988 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -40 237] dotx -/txtdraw true def -/txlndraw true def -( ) [0 0] 270.003998 413 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -40 237] dotx -(R) [0 0] 351 399 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -102 329] dotx -/txtdraw true def -/txlndraw true def -(3 ) [10.007996 0 0 0] 363.996002 391.799988 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -102 329] dotx -/txtdraw true def -/txlndraw true def -(E) [0 0] 152 436 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -51 183] dotx -/txtdraw true def -/txlndraw true def -(1 ) [10.007996 0 0 0] 164.005997 428.799988 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -51 183] dotx -/txtdraw true def -/txlndraw true def -(E) [0 0] 250 445 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -18 139] dotx -/txtdraw true def -/txlndraw true def -(2) [0 0] 262.006012 437.799988 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -18 139] dotx -/txtdraw true def -/txlndraw true def -( ) [0 0] 272.014008 445 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -18 139] dotx -(E) [0 0] 201 303 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 148 333] dotx -/txtdraw true def -/txlndraw true def -(3 ) [10.007996 0 0 0] 213.005997 295.799988 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 148 333] dotx -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 249.572144 0 64.5 538.5 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 82.62262 65 537.5 1 0 0 1 0 0 sc6mt astore ssl -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob17v1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob17v1.gif deleted file mode 100755 index cc5db98b6..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob17v1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob17v2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob17v2.eps deleted file mode 100755 index 1c8883426..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob17v2.eps +++ /dev/null @@ -1,533 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Wed Jun 9 12:16:28 1993 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 345 212 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /closedspl false def /nspans 0 def /sstrt { - gsave dodrawctm /closedspl exch def /nspans 0 def newpath -} bind def /sstrtpath { - dodrawctm /closedspl exch def /nspans 0 def newpath -} bind def /sadd { - nspans 0 eq { - moveto - } { - pop pop - } ifelse curveto /nspans nspans 1 add def -} bind def /splstroke { - nspans 0 gt { - unpagectm concat closedspl { - closepath - } if crlincp setlinecap crlinjn setlinejoin crlinalph setalpha crlinw setlinewidth crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - flattenpath crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse - } { - pop pop - } ifelse grestore -} bind def /splfill { - nspans 0 gt { - closedspl { - closepath - } if crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - flattenpath crfilpat findfont exch crfilstyl 0 eq { - filwittrans { - trpateofil - } { - oppateofil - } ifelse - } { - filwittrans { - trpatfil - } { - oppatfil - } ifelse - } ifelse - } { - crfilstyl 0 eq { - eofill - } { - fill - } ifelse pop - } ifelse - } if grestore -} bind def /mksplpath { - nspans 0 gt { - closedspl { - closepath - } if - } if -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 346 212 rectclip --31.400307 -210.499329 translate -31.400307 210.499329 344.613678 211.258667 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 1.9 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -false 0.009156 -0.924859 0.999952 0.009637 -317.731812 546.129395 sc5mt astore sstrt -systemdict -begin -158.129608 489.600006 302.463348 511.200012 setbbox -179.478226 504.612518 moveto -179.478226 504.612518 201.600006 504.000031 201.600006 504.000031 curveto -201.600006 504.000031 208.800003 489.600006 208.800003 489.600006 curveto -208.800003 489.600006 223.200012 511.200012 223.200012 511.200012 curveto -223.200012 511.200012 237.600006 489.600006 237.600006 489.600006 curveto -237.600006 489.600006 252.000015 511.200012 252.000015 511.200012 curveto -252.000015 511.200012 266.400024 489.600006 266.400024 489.600006 curveto -266.400024 489.600006 273.600006 504.000031 273.600006 504.000031 curveto -273.600006 504.000031 302.460754 503.736389 302.460754 503.736389 curveto -end -/nspans 8 def 0.009767 -0.999952 0.999952 0.009767 -118.64917 536.186279 sc5mt astore 0.009767 -0.999952 0.999952 0.009767 -118.64917 536.186279 sc6mt astore splstroke --0.999998 -0.001813 -0.001813 0.999998 510.739136 -248.484177 sc4mt astore -0.999998 -0.001813 -0.001813 0.999998 510.739136 -248.484177 sc5mt astore 55.851318 0.030273 325 459.5 -1 0 0 1 412.396057 -154 sc6mt astore ssl -/crlinw 4.4 def --0.999998 -0.001813 -0.001813 0.999998 510.739136 -248.484177 sc4mt astore -0.999998 -0.001813 -0.001813 0.999998 510.739136 -248.484177 sc5mt astore -29.022514 -0.072815 80.064873 622.331177 1 0 0 1 -6 -327 sc6mt astore ssl -/crlinw 1.9 def -false -0.924892 0.004923 -0.005586 -0.999983 471.458374 887.127197 sc5mt astore sstrt -systemdict -begin -158.129608 489.600006 303.435883 511.200012 setbbox -179.36647 503.768707 moveto -179.36647 503.768707 201.600006 504.000031 201.600006 504.000031 curveto -201.600006 504.000031 208.800003 489.600006 208.800003 489.600006 curveto -208.800003 489.600006 223.200012 511.200012 223.200012 511.200012 curveto -223.200012 511.200012 237.600006 489.600006 237.600006 489.600006 curveto -237.600006 489.600006 252.000015 511.200012 252.000015 511.200012 curveto -252.000015 511.200012 266.400024 489.600006 266.400024 489.600006 curveto -266.400024 489.600006 273.600006 504.000031 273.600006 504.000031 curveto -273.600006 504.000031 303.432861 504.129456 303.432861 504.129456 curveto -end -/nspans 8 def -0.999985 0.005455 -0.005455 -0.999985 708.232544 746.755676 sc5mt astore -0.999985 0.005455 -0.005455 -0.999985 708.232544 746.755676 sc6mt astore splstroke -false -0.924892 0.004923 -0.005586 -0.999983 357.458374 887.377197 sc5mt astore sstrt -systemdict -begin -158.129608 489.600006 302.893768 511.200012 setbbox -178.824356 504.015991 moveto -178.824356 504.015991 201.600006 504.000031 201.600006 504.000031 curveto -201.600006 504.000031 208.800003 489.600006 208.800003 489.600006 curveto -208.800003 489.600006 223.200012 511.200012 223.200012 511.200012 curveto -223.200012 511.200012 237.600006 489.600006 237.600006 489.600006 curveto -237.600006 489.600006 252.000015 511.200012 252.000015 511.200012 curveto -252.000015 511.200012 266.400024 489.600006 266.400024 489.600006 curveto -266.400024 489.600006 273.600006 504.000031 273.600006 504.000031 curveto -273.600006 504.000031 302.893768 503.87674 302.893768 503.87674 curveto -end -/nspans 8 def -0.999985 0.005455 -0.005455 -0.999985 708.232544 746.755676 sc5mt astore -0.999985 0.005455 -0.005455 -0.999985 708.232544 746.755676 sc6mt astore splstroke --0.999998 -0.001813 -0.001813 0.999998 510.739136 -248.484177 sc4mt astore -0.999998 -0.001813 -0.001813 0.999998 510.739136 -248.484177 sc5mt astore 55.851318 0.030273 325 459.5 -1 0 0 1 542.146057 -189 sc6mt astore ssl -/crlinw 4.4 def --0.999998 -0.001813 -0.001813 0.999998 510.739136 -248.484177 sc4mt astore -0.999998 -0.001813 -0.001813 0.999998 510.739136 -248.484177 sc5mt astore -29.457642 0.008362 212.5 587.25 1 0 0 1 -8.25 -327 sc6mt astore ssl -/crlinw 1.9 def --0.999998 -0.001813 -0.001813 0.999998 510.739136 -248.484177 sc4mt astore -0.999998 -0.001813 -0.001813 0.999998 510.739136 -248.484177 sc5mt astore 55.851318 0.030273 325 459.5 -1 0 0 1 660.896057 -137 sc6mt astore ssl -/crlinw 4.4 def --0.999998 -0.001813 -0.001813 0.999998 510.739136 -248.484177 sc4mt astore -0.999998 -0.001813 -0.001813 0.999998 510.739136 -248.484177 sc5mt astore -30.207642 0.008362 330.25 639.25 1 0 0 1 -6.5 -327 sc6mt astore ssl -/crlinw 1.9 def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -80 59 385 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -19.5 0 77.75 385.25 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 61.5 308 323 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 10.5 0 298.5 384.25 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -48.304871 187.232239 260 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -102 308 313 1 0 0 1 0 0 sc6mt astore ssl -false 1 0 0 1 252 -253 sc5mt astore sstrt -systemdict -begin -36 491 82 508 setbbox -44.25 502.75 moveto -44.25 502.75 56 491 56 491 curveto -56 491 67.5 502.5 67.5 502.5 curveto -end -/nspans 2 def 1 0 0 1 0 0 sc5mt astore 1 0 0 1 0 0 sc6mt astore splstroke -false 1 -8.742278e-08 -8.742278e-08 -1 131.250046 732.766113 sc5mt astore sstrt -systemdict -begin -36 491 82 508 setbbox -44.25 502.75 moveto -44.25 502.75 56 491 56 491 curveto -56 491 67.75 502.75 67.75 502.75 curveto -end -/nspans 2 def 1 0 0 1 0 0 sc5mt astore 1 -8.742278e-08 -8.742278e-08 -1 3.051758e-05 471.766144 sc6mt astore splstroke -false -0.99846 0.05547 -0.05547 -0.99846 142.232391 834.378418 sc5mt astore sstrt -systemdict -begin -36 491 82 508 setbbox -43.43605 502.311218 moveto -43.43605 502.311218 56 491 56 491 curveto -56 491 67.399094 503.642487 67.399094 503.642487 curveto -end -/nspans 2 def -0.99846 0.05547 -0.05547 -0.99846 397.228302 980.974365 sc5mt astore -0.99846 0.05547 -0.05547 -0.99846 397.228302 980.974365 sc6mt astore splstroke -/txtdraw true def -/txlndraw true def -(i) [0 0] 202 405 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -120 -71] dotx -/txtdraw true def -/txlndraw true def -(1 ) [10.007996 0 0 0] 205.996002 397.799988 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -120 -71] dotx -/txtdraw true def -/txlndraw true def -(i) [0 0] 175 439 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 35 -210] dotx -/txtdraw true def -/txlndraw true def -(2 ) [10.007996 0 0 0] 178.996002 431.799988 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 35 -210] dotx -/txtdraw true def -/txlndraw true def -(i) [0 0] 100 348 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 227 -111] dotx -/txtdraw true def -/txlndraw true def -(3) [0 0] 103.996002 340.799988 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 227 -111] dotx -/txtdraw true def -/txlndraw true def -( ) [0 0] 114.003998 348 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 227 -111] dotx -(R) [0 0] 132 403 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -4 0] dotx -/txtdraw true def -/txlndraw true def -(1) [0 0] 144.996002 395.799988 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -4 0] dotx -/txtdraw true def -/txlndraw true def -( ) [0 0] 155.003998 403 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -4 0] dotx -(R) [0 0] 247 413 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -46 -90] dotx -/txtdraw true def -/txlndraw true def -(2) [0 0] 259.996002 405.799988 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -46 -90] dotx -/txtdraw true def -/txlndraw true def -( ) [0 0] 270.003998 413 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -46 -90] dotx -(R) [0 0] 351 399 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -108 2] dotx -/txtdraw true def -/txlndraw true def -(3 ) [10.007996 0 0 0] 363.996002 391.799988 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -108 2] dotx -/txtdraw true def -/txlndraw true def -(E) [0 0] 152 436 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -57 -144] dotx -/txtdraw true def -/txlndraw true def -(1 ) [10.007996 0 0 0] 164.005997 428.799988 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -57 -144] dotx -/txtdraw true def -/txlndraw true def -(E) [0 0] 250 445 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -24 -188] dotx -/txtdraw true def -/txlndraw true def -(2) [0 0] 262.006012 437.799988 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -24 -188] dotx -/txtdraw true def -/txlndraw true def -( ) [0 0] 272.014008 445 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -24 -188] dotx -(E) [0 0] 201 303 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 142 6] dotx -/txtdraw true def -/txlndraw true def -(3 ) [10.007996 0 0 0] 213.005997 295.799988 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 142 6] dotx -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 249.572144 0 58.5 211.5 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 82.62262 59 210.5 1 0 0 1 0 0 sc6mt astore ssl -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob17v2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob17v2.gif deleted file mode 100755 index eb7c41d67..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob17v2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob17v3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob17v3.eps deleted file mode 100755 index d0ad149c9..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob17v3.eps +++ /dev/null @@ -1,534 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Fri Jul 23 10:30:49 1993 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 334 213 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /closedspl false def /nspans 0 def /sstrt { - gsave dodrawctm /closedspl exch def /nspans 0 def newpath -} bind def /sstrtpath { - dodrawctm /closedspl exch def /nspans 0 def newpath -} bind def /sadd { - nspans 0 eq { - moveto - } { - pop pop - } ifelse curveto /nspans nspans 1 add def -} bind def /splstroke { - nspans 0 gt { - unpagectm concat closedspl { - closepath - } if crlincp setlinecap crlinjn setlinejoin crlinalph setalpha crlinw setlinewidth crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse strwpat { - flattenpath crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse - } { - pop pop - } ifelse grestore -} bind def /splfill { - nspans 0 gt { - closedspl { - closepath - } if crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - flattenpath crfilpat findfont exch crfilstyl 0 eq { - filwittrans { - trpateofil - } { - oppateofil - } ifelse - } { - filwittrans { - trpatfil - } { - oppatfil - } ifelse - } ifelse - } { - crfilstyl 0 eq { - eofill - } { - fill - } ifelse pop - } ifelse - } if grestore -} bind def /mksplpath { - nspans 0 gt { - closedspl { - closepath - } if - } if -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 335 213 rectclip --66.494766 -271.335602 translate -66.494766 271.335602 333.519226 212.422394 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 2.412863e-35 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -/crlinw 1.9 def -false 0.009156 -0.924859 0.999952 0.009637 -282.731812 608.129395 sc5mt astore sstrt -systemdict -begin -158.129608 489.600006 302.463348 511.200012 setbbox -179.478226 504.612518 moveto -179.478226 504.612518 201.600006 504.000031 201.600006 504.000031 curveto -201.600006 504.000031 208.800003 489.600006 208.800003 489.600006 curveto -208.800003 489.600006 223.200012 511.200012 223.200012 511.200012 curveto -223.200012 511.200012 237.600006 489.600006 237.600006 489.600006 curveto -237.600006 489.600006 252.000015 511.200012 252.000015 511.200012 curveto -252.000015 511.200012 266.400024 489.600006 266.400024 489.600006 curveto -266.400024 489.600006 273.600006 504.000031 273.600006 504.000031 curveto -273.600006 504.000031 302.460754 503.736389 302.460754 503.736389 curveto -end -/nspans 8 def 0.009767 -0.999952 0.999952 0.009767 -118.64917 536.186279 sc5mt astore 0.009767 -0.999952 0.999952 0.009767 -118.64917 536.186279 sc6mt astore splstroke --0.999998 -0.001813 -0.001813 0.999998 510.739136 -248.484177 sc4mt astore -0.999998 -0.001813 -0.001813 0.999998 510.739136 -248.484177 sc5mt astore 55.851318 0.030273 325 459.5 -1 0 0 1 447.396057 -93 sc6mt astore ssl -/crlinw 4.4 def --0.999998 -0.001813 -0.001813 0.999998 510.739136 -248.484177 sc4mt astore -0.999998 -0.001813 -0.001813 0.999998 510.739136 -248.484177 sc5mt astore -29.022514 -0.072815 80.064873 622.331177 1 0 0 1 29 -266 sc6mt astore ssl -/crlinw 1.9 def -false -0.924892 0.004923 -0.005586 -0.999983 506.458374 948.127197 sc5mt astore sstrt -systemdict -begin -158.129608 489.600006 303.435883 511.200012 setbbox -179.36647 503.768707 moveto -179.36647 503.768707 201.600006 504.000031 201.600006 504.000031 curveto -201.600006 504.000031 208.800003 489.600006 208.800003 489.600006 curveto -208.800003 489.600006 223.200012 511.200012 223.200012 511.200012 curveto -223.200012 511.200012 237.600006 489.600006 237.600006 489.600006 curveto -237.600006 489.600006 252.000015 511.200012 252.000015 511.200012 curveto -252.000015 511.200012 266.400024 489.600006 266.400024 489.600006 curveto -266.400024 489.600006 273.600006 504.000031 273.600006 504.000031 curveto -273.600006 504.000031 303.432861 504.129456 303.432861 504.129456 curveto -end -/nspans 8 def -0.999985 0.005455 -0.005455 -0.999985 708.232544 746.755676 sc5mt astore -0.999985 0.005455 -0.005455 -0.999985 708.232544 746.755676 sc6mt astore splstroke -false -0.924892 0.004923 -0.005586 -0.999983 392.458374 948.377197 sc5mt astore sstrt -systemdict -begin -158.129608 489.600006 302.893768 511.200012 setbbox -178.824356 504.015991 moveto -178.824356 504.015991 201.600006 504.000031 201.600006 504.000031 curveto -201.600006 504.000031 208.800003 489.600006 208.800003 489.600006 curveto -208.800003 489.600006 223.200012 511.200012 223.200012 511.200012 curveto -223.200012 511.200012 237.600006 489.600006 237.600006 489.600006 curveto -237.600006 489.600006 252.000015 511.200012 252.000015 511.200012 curveto -252.000015 511.200012 266.400024 489.600006 266.400024 489.600006 curveto -266.400024 489.600006 273.600006 504.000031 273.600006 504.000031 curveto -273.600006 504.000031 302.893768 503.87674 302.893768 503.87674 curveto -end -/nspans 8 def -0.999985 0.005455 -0.005455 -0.999985 708.232544 746.755676 sc5mt astore -0.999985 0.005455 -0.005455 -0.999985 708.232544 746.755676 sc6mt astore splstroke --0.999998 -0.001813 -0.001813 0.999998 510.739136 -248.484177 sc4mt astore -0.999998 -0.001813 -0.001813 0.999998 510.739136 -248.484177 sc5mt astore 55.851318 0.030273 325 459.5 -1 0 0 1 577.146057 -128 sc6mt astore ssl -/crlinw 4.4 def --0.999998 -0.001813 -0.001813 0.999998 510.739136 -248.484177 sc4mt astore -0.999998 -0.001813 -0.001813 0.999998 510.739136 -248.484177 sc5mt astore -29.457642 0.008362 212.5 587.25 1 0 0 1 26.75 -266 sc6mt astore ssl -/crlinw 1.9 def --0.999998 -0.001813 -0.001813 0.999998 510.739136 -248.484177 sc4mt astore -0.999998 -0.001813 -0.001813 0.999998 510.739136 -248.484177 sc5mt astore 55.851318 0.030273 325 459.5 -1 0 0 1 695.896057 -76 sc6mt astore ssl -/crlinw 4.4 def --0.999998 -0.001813 -0.001813 0.999998 510.739136 -248.484177 sc4mt astore -0.999998 -0.001813 -0.001813 0.999998 510.739136 -248.484177 sc5mt astore -30.207642 0.008362 330.25 639.25 1 0 0 1 28.5 -266 sc6mt astore ssl -/crlinw 1.9 def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -80 94 447 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -19.5 0 112.75 447.25 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 61.5 343 384 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 10.5 0 333.5 446.25 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -48.304871 222.232239 321 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 -102 343 374 1 0 0 1 0 0 sc6mt astore ssl -false 1 -8.742278e-08 -8.742278e-08 -1 287 801.832764 sc5mt astore sstrt -systemdict -begin -36 491 82 508 setbbox -44.25 502.75 moveto -44.25 502.75 56 491 56 491 curveto -56 491 67.5 502.5 67.5 502.5 curveto -end -/nspans 2 def 1 0 0 1 0 0 sc5mt astore 1 -8.742278e-08 -8.742278e-08 -1 0 789.832825 sc6mt astore splstroke -false 1 0 0 1 166.25 -200 sc5mt astore sstrt -systemdict -begin -36 491 82 508 setbbox -44.25 502.75 moveto -44.25 502.75 56 491 56 491 curveto -56 491 67.75 502.75 67.75 502.75 curveto -end -/nspans 2 def 1 0 0 1 0 0 sc5mt astore 1 0 0 1 0 0 sc6mt astore splstroke -false -0.99846 0.05547 -0.05547 -0.99846 177.232391 895.378418 sc5mt astore sstrt -systemdict -begin -36 491 82 508 setbbox -43.43605 502.311218 moveto -43.43605 502.311218 56 491 56 491 curveto -56 491 67.399094 503.642487 67.399094 503.642487 curveto -end -/nspans 2 def -0.99846 0.05547 -0.05547 -0.99846 397.228302 980.974365 sc5mt astore -0.99846 0.05547 -0.05547 -0.99846 397.228302 980.974365 sc6mt astore splstroke -/txtdraw true def -/txlndraw true def -(i) [0 0] 202 405 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -85 -10] dotx -/txtdraw true def -/txlndraw true def -(1 ) [10.007996 0 0 0] 205.996002 397.799988 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -85 -10] dotx -/txtdraw true def -/txlndraw true def -(i) [0 0] 175 439 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 70 -149] dotx -/txtdraw true def -/txlndraw true def -(2 ) [10.007996 0 0 0] 178.996002 431.799988 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 70 -149] dotx -/txtdraw true def -/txlndraw true def -(i) [0 0] 100 348 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 262 -50] dotx -/txtdraw true def -/txlndraw true def -(3) [0 0] 103.996002 340.799988 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 262 -50] dotx -/txtdraw true def -/txlndraw true def -( ) [0 0] 114.003998 348 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 262 -50] dotx -(R) [0 0] 132 403 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 31 62] dotx -/txtdraw true def -/txlndraw true def -(1) [0 0] 144.996002 395.799988 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 31 62] dotx -/txtdraw true def -/txlndraw true def -( ) [0 0] 155.003998 403 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 31 62] dotx -(R) [0 0] 247 413 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -11 -29] dotx -/txtdraw true def -/txlndraw true def -(2) [0 0] 259.996002 405.799988 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -11 -29] dotx -/txtdraw true def -/txlndraw true def -( ) [0 0] 270.003998 413 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -11 -29] dotx -(R) [0 0] 351 399 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -73 64] dotx -/txtdraw true def -/txlndraw true def -(3 ) [10.007996 0 0 0] 363.996002 391.799988 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -73 64] dotx -/txtdraw true def -/txlndraw true def -(E) [0 0] 152 436 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -22 -83] dotx -/txtdraw true def -/txlndraw true def -(1 ) [10.007996 0 0 0] 164.005997 428.799988 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 -22 -83] dotx -/txtdraw true def -/txlndraw true def -(E) [0 0] 250 445 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 11 -127] dotx -/txtdraw true def -/txlndraw true def -(2) [0 0] 262.006012 437.799988 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 11 -127] dotx -/txtdraw true def -/txlndraw true def -( ) [0 0] 272.014008 445 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 11 -127] dotx -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 249.572144 0 93.5 272.5 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 0 82.62262 94 271.5 1 0 0 1 0 0 sc6mt astore ssl -(E) [0 0] 201 303 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 175 68] dotx -/txtdraw true def -/txlndraw true def -(3 ) [10.007996 0 0 0] 213.005997 295.799988 /Helvetica [ 18 1 mul 0 0 18 0 0 ] [1 0 0 1 175 68] dotx -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob17v3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob17v3.gif deleted file mode 100755 index 6adf20d27..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob17v3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob18.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob18.eps deleted file mode 100755 index ba8988536..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob18.eps +++ /dev/null @@ -1,585 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: phys102.s4.q14.draw -- /teacher/Apps/Drawfiles -%%Creator: Draw -%%CreationDate: Sun Oct 15 15:03:10 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 110 331 461 644 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -110 331 351 313 rectclip -1 1 2.674419 setup -0 nxsetgray -101 -1 249 500 line -grestore -1 1 2.674419 setup -0 nxsetgray -100 0 249 602 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 -100 249 601 line -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -284 588 24 36 rectfill -1 nxsetgray -284 588 24 36 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 284 601 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 287 611 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 292 591 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 294 601 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 297 611 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 302 591 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2.000001 10 304 601 line -grestore -1 1 1.744186 setup -0 nxsetgray -2.000001 -10 306.999939 611 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -286 487 24 36 rectfill -1 nxsetgray -286 487 24 36 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 286 500 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 289 510 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 294 490 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 296 500 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 299 510 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 304 490 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2.000001 10 306 500 line -grestore -1 1 1.744186 setup -0 nxsetgray -2.000001 -10 308.999939 510 line -grestore -grestore -grestore -grestore -1 1 2.674419 setup -0 nxsetgray -1 -101 349 601 line -grestore -1 1 2.674419 setup -0 nxsetgray -130 0 119 555 line -grestore -1 1 2.674419 setup -0 nxsetgray -1 119 118 436 line -grestore -1 1 2.674419 setup -0 nxsetgray -334 0 118 436 line -grestore -1 1 2.674419 setup -0 nxsetgray -1 -64 452 499 line -grestore -1 1 2.674419 setup -0 nxsetgray -101 -1 351 500 line -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -173 542 24 36 rectfill -1 nxsetgray -173 542 24 36 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 173 555 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 176 565 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 181 545 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 183 555 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 186 565 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 191 545 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2.000001 10 193 555 line -grestore -1 1 1.744186 setup -0 nxsetgray -2.000001 -10 195.999939 565 line -grestore -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -383 488 24 36 rectfill -1 nxsetgray -383 488 24 36 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 383 501 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 386 511 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 391 491 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 393 501 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 396 511 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 401 491 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2.000001 10 403 501 line -grestore -1 1 1.744186 setup -0 nxsetgray -2.000001 -10 405.999939 511 line -grestore -grestore -grestore -grestore -1 1 2.674419 setup -gsave -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -59 -exch -defineuserobject -59 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1151] concat -59 execuserobject setfont -0 nxsetgray -176 578 moveto (R) show -0 5 rmoveto -(1) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -59 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1047] concat -59 execuserobject setfont -0 nxsetgray -385 526 moveto (R) show -0 5 rmoveto -(4) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -59 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1055] concat -59 execuserobject setfont -0 nxsetgray -287 530 moveto (R) show -0 5 rmoveto -(3) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -59 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1249] concat -59 execuserobject setfont -0 nxsetgray -288 627 moveto (R) show -0 5 rmoveto -(2) show -0 -5 rmoveto -grestore -grestore -0 setgray -0.333333 setgray -0 0 0.465116 setup -1 nxsetgray -242 406 100 53 rectfill -0 nxsetgray -242 406 100 53 rectstroke -grestore -0 0 0.465116 setup -gsave -59 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 870] concat -/Helvetica findfont 14 scalefont [1 0 0 -1 0 0] makefont -60 -exch -defineuserobject -60 execuserobject setfont -0 nxsetgray -259 440 moveto (dc source) show -grestore -grestore -0 0 2.674419 setup -0 0 0.465116 setup -gsave -1 nxsetgray -41 41 329 538 oval fill -grestore -0 nxsetgray -41 41 329 538 oval matrix defaultmatrix setmatrix stroke -grestore -1 1 2.674419 setup -gsave -60 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1118] concat -59 execuserobject setfont -0 nxsetgray -345 564 moveto (A) show -grestore -grestore -grestore -1 1 2.674419 setup -0 nxsetgray -0 76 206 360 line -grestore -1 1 2.674419 setup -0 nxsetgray -165 0 206 359 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 76 372 359 line -grestore -0 0 2.674419 setup -0 0 0.465116 setup -gsave -1 nxsetgray -41 41 263 339 oval fill -grestore -0 nxsetgray -41 41 263 339 oval matrix defaultmatrix setmatrix stroke -grestore -1 1 2.674419 setup -gsave -59 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 716] concat -59 execuserobject setfont -0 nxsetgray -279 363 moveto (V) show -grestore -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold -%%+ Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob18.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob18.gif deleted file mode 100755 index 1f27b6a92..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob18.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob19a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob19a.eps deleted file mode 100755 index adb3dedae..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob19a.eps +++ /dev/null @@ -1,1986 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad 6.0.1 -%%Title: prob6-7.eps -%%CreationDate: 5/9/1997 -%%DocumentProcSets: Adobe_packedarray 1.0 0 -%%DocumentSuppliedProcSets: Adobe_packedarray 1.0 0 -%%DocumentProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentProcSets: Adobe_cshow 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cshow 1.1 0 -%%DocumentProcSets: Adobe_customcolor 1.0 0 -%%DocumentSuppliedProcSets: Adobe_customcolor 1.0 0 -%%DocumentProcSets: Adobe_pattern 1.9 0 -%%DocumentSuppliedProcSets: Adobe_pattern 1.9 0 -%%DocumentProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentSuppliedProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentFonts: Times-Italic -%%+ Symbol -%%BoundingBox:136 475 446 643 -%%TemplateBox:306 396 306 396 -%%DocumentPreview: Header -%%EndComments - -%%BeginProlog -%%BeginProcSet: Adobe_packedarray 1.0 0 -userdict /Adobe_packedarray 5 dict dup begin put -/initialize -{ -/packedarray where - { - pop - } - { - Adobe_packedarray begin - Adobe_packedarray - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - } ifelse -} def -/terminate -{ -} def -/packedarray -{ -array astore readonly -} def -/setpacking -{ -pop -} def -/currentpacking -{ -false -} def -currentdict readonly pop end -%%EndProcSet -Adobe_packedarray /initialize get exec -%%BeginProcSet: Adobe_cmykcolor 1.1 0 -currentpacking true setpacking -userdict /Adobe_cmykcolor 4 dict dup begin put -/initialize -{ -/setcmykcolor where - { - pop - } - { - userdict /Adobe_cmykcolor_vars 2 dict dup begin put - /_setrgbcolor - /setrgbcolor load def - /_currentrgbcolor - /currentrgbcolor load def - Adobe_cmykcolor begin - Adobe_cmykcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - end - Adobe_cmykcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_cmykcolor eq - { - end - } if -} def -/setcmykcolor -{ -1 sub 4 1 roll -3 - { - 3 index add neg dup 0 lt - { - pop 0 - } if - 3 1 roll - } repeat -Adobe_cmykcolor_vars /_setrgbcolor get exec -pop -} def -/currentcmykcolor -{ -Adobe_cmykcolor_vars /_currentrgbcolor get exec -3 - { - 1 sub neg 3 1 roll - } repeat -0 -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_cshow 1.1 0 -currentpacking true setpacking -userdict /Adobe_cshow 3 dict dup begin put -/initialize -{ -/cshow where - { - pop - } - { - userdict /Adobe_cshow_vars 1 dict dup begin put - /_cshow - {} def - Adobe_cshow begin - Adobe_cshow - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - end - } ifelse -} def -/terminate -{ -} def -/cshow -{ -exch -Adobe_cshow_vars - exch /_cshow - exch put - { - 0 0 Adobe_cshow_vars /_cshow get exec - } forall -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_customcolor 1.0 0 -currentpacking true setpacking -userdict /Adobe_customcolor 5 dict dup begin put -/initialize -{ -/setcustomcolor where - { - pop - } - { - Adobe_customcolor begin - Adobe_customcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - Adobe_customcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_customcolor eq - { - end - } if -} def -/findcmykcustomcolor -{ -5 packedarray -} def -/setcustomcolor -{ -exch -aload pop pop -4 - { - 4 index mul 4 1 roll - } repeat -5 -1 roll pop -setcmykcolor -} def -/setoverprint -{ -pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_pattern 1.9 0 -currentpacking true setpacking -userdict /Adobe_pattern 14 dict dup begin put -/initialize -{ -/definepattern where - { - pop - } - { - Adobe_pattern begin - Adobe_pattern - { - dup xcheck - { - bind - } if - pop pop - } forall - mark - cachestatus 7 1 roll pop pop pop pop exch pop exch - { - { - 10000 add - dup 2 index gt - { - break - } if - dup setcachelimit - } loop - } stopped - cleartomark - } ifelse -} def -/terminate -{ -currentdict Adobe_pattern eq - { - end - } if -} def -errordict -/nocurrentpoint -{ -pop -stop -} put -errordict -/invalidaccess -{ -pop -stop -} put -/patternencoding -256 array def -0 1 255 -{ -patternencoding exch ( ) 2 copy exch 0 exch put cvn put -} for -/definepattern -{ -17 dict begin -/uniform exch def -/cache exch def -/key exch def -/procarray exch def -/mtx exch matrix invertmatrix def -/height exch def -/width exch def -/ctm matrix currentmatrix def -/ptm matrix def -/str 32 string def -/slice 9 dict def -slice /s 1 put -slice /q 256 procarray length div sqrt floor cvi put -slice /b 0 put -/FontBBox [0 0 0 0] def -/FontMatrix mtx matrix copy def -/Encoding patternencoding def -/FontType 3 def -/BuildChar - { - exch - begin - slice begin - dup q dup mul mod s idiv /i exch def - dup q dup mul mod s mod /j exch def - q dup mul idiv procarray exch get - /xl j width s div mul def - /xg j 1 add width s div mul def - /yl i height s div mul def - /yg i 1 add height s div mul def - uniform - { - 1 1 - } - { - width 0 dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - 0 height dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - } ifelse - width 0 cache - { - xl 4 index mul yl 4 index mul xg 6 index mul yg 6 index mul - setcachedevice - } - { - setcharwidth - } ifelse - gsave - scale - newpath - xl yl moveto - xg yl lineto - xg yg lineto - xl yg lineto - closepath - clip - newpath - end - end - exec - grestore - } def -key currentdict definefont -end -} def -/patterncachesize -{ -gsave -newpath -0 0 moveto -width 0 lineto -width height lineto -0 height lineto -closepath -patternmatrix setmatrix -pathbbox -exch ceiling 4 -1 roll floor sub 3 1 roll -ceiling exch floor sub -mul 1 add -grestore -} def -/patterncachelimit -{ -cachestatus 7 1 roll pop pop pop pop pop pop 8 mul -} def -/patternpath -{ -exch dup begin setfont -ctm setmatrix -concat -slice exch /b exch slice /q get dup mul mul put -FontMatrix concat -uniform - { - width 0 dtransform round width div exch round width div exch - 0 height dtransform round height div exch height div exch - 0 0 transform round exch round exch - ptm astore setmatrix - } - { - ptm currentmatrix pop - } ifelse -{currentpoint} stopped not - { - pop pop - pathbbox - true - 4 index 3 index eq - 4 index 3 index eq - and - { - pop false - { - {pop pop} - {pop pop pop true} - {pop pop pop pop pop pop pop true} - {pop true} - pathforall - } stopped - { - pop pop pop pop pop true - } if - } if - { - height div ceiling height mul 4 1 roll - width div ceiling width mul 4 1 roll - height div floor height mul 4 1 roll - width div floor width mul 4 1 roll - 2 index sub height div ceiling cvi exch - 3 index sub width div ceiling cvi exch - 4 2 roll moveto - FontMatrix mtx invertmatrix - dup dup 4 get exch 5 get rmoveto - ptm ptm concatmatrix pop - slice /s - patterncachesize patterncachelimit div ceiling sqrt ceiling cvi - dup slice /q get gt - { - pop slice /q get - } if - put - 0 1 slice /s get dup mul 1 sub - { - slice /b get add - gsave - 0 1 str length 1 sub - { - str exch 2 index put - } for - pop - dup - { - gsave - ptm setmatrix - 1 index str length idiv {str show} repeat - 1 index str length mod str exch 0 exch getinterval show - grestore - 0 height rmoveto - } repeat - grestore - } for - pop pop - } - { - pop pop pop pop - } ifelse - } if -end -} def -/patternclip -{ -clip -} def -/patternstrokepath -{ -strokepath -} def -/patternmatrix -matrix def -/patternfill -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternclip -Adobe_pattern /patternpath get exec -grestore -newpath -} def -/patternstroke -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternstrokepath -true - { - { - { - newpath - moveto - } - { - lineto - } - { - curveto - } - { - closepath - 3 copy - Adobe_pattern /patternfill get exec - } pathforall - pop pop pop - } stopped - { - pop pop pop pop pop - patternclip - Adobe_pattern /patternfill get exec - } if - } - { - patternclip - Adobe_pattern /patternfill get exec - } ifelse -grestore -newpath -} def -/patternashow -{ -3 index type /dicttype eq - { - Adobe_pattern /patternmatrix get 4 1 roll - } if - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 6 index 6 index 6 index - Adobe_pattern /patternfill get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop -} def -/patternashowstroke -{ -4 index type /dicttype eq - { - patternmatrix /patternmatrix get 5 1 roll - } if -4 1 roll - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - 7 index 7 index 7 index - Adobe_pattern /patternstroke get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_Illustrator88 1.19 0 -currentpacking true setpacking -userdict /Adobe_Illustrator88 73 dict dup begin put -/initialize -{ -userdict /Adobe_Illustrator88_vars 31 dict dup begin put -/_lp /none def -/_pf {} def -/_ps {} def -/_psf {} def -/_pss {} def -/_a null def -/_as null def -/_tt 2 array def -/_tl 2 array def -/_tm matrix def -/t {} def -/_gf null def -/_cf 4 array def -/_if null def -/_of false def -/_fc {} def -/_gs null def -/_cs 4 array def -/_is null def -/_os false def -/_sc {} def -/_pd 1 dict def -/_ed 15 dict def -/_pm matrix def -/_fm null def -/_fd null def -/_fdd null def -/_sm null def -/_sd null def -/_sdd null def -/_i null def -Adobe_Illustrator88 begin -Adobe_Illustrator88 dup /nc get begin - { - dup xcheck - { - bind - } if - pop pop - } forall -end -end -end -Adobe_Illustrator88 begin -Adobe_Illustrator88_vars begin -newpath -} def -/terminate -{ -end -end -} def -/_ -null def -/ddef -{ -Adobe_Illustrator88_vars 3 1 roll put -} def -/xput -{ -dup load dup length exch maxlength eq - { - dup dup load dup - length 2 mul dict copy def - } if -load begin def end -} def -/npop -{ - { - pop - } repeat -} def -/sw -{ -stringwidth -exch 5 -1 roll 3 index 1 sub mul add -4 1 roll 3 1 roll 1 sub mul add -} def -/ss -{ -3 -1 roll pop -4 1 roll - { - 2 npop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - stroke - grestore - moveto - 2 copy rmoveto - } exch cshow -3 npop -} def -/sp -{ -exch pop - { - 2 npop (0) exch - 2 copy 0 exch put pop - false charpath - 2 copy rmoveto - } exch cshow -2 npop -} def -/pl -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where -{ -pop true setstrokeadjust -/c -{ -curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll curveto -} def -/V -/v load def -/y -{ -2 copy curveto -} def -/Y -/y load def -/l -{ -lineto -} def -/L -/l load def -/m -{ -moveto -} def -} -{ -/c -{ -pl curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll pl curveto -} def -/V -/v load def -/y -{ -pl 2 copy curveto -} def -/Y -/y load def -/l -{ -pl lineto -} def -/L -/l load def -/m -{ -pl moveto -} def -} ifelse -/d -{ -setdash -} def -/cf -currentflat def -/i -{ -dup 0 eq - { - pop cf - } if -setflat -} def -/j -{ -setlinejoin -} def -/J -{ -setlinecap -} def -/M -{ -setmiterlimit -} def -/w -{ -setlinewidth -} def -/H -{} def -/h -{ -closepath -} def -/N -{ -newpath -} def -/n -/N load def -/F -{ -_pf -} def -/f -{ -closepath -F -} def -/S -{ -_ps -} def -/s -{ -closepath -S -} def -/B -{ -gsave F grestore -S -} def -/b -{ -closepath -B -} def -/W -{ -clip -} def -/ta -{ -_as moveto -_tt aload pop 4 -2 roll -} def -/tl -{ -_tl aload pop translate -} def -/as -{ -{ -0 0 -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg 2 div exch neg 2 div -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg exch neg -} -{ -0 0 -} -} cvlit def -/z -{ -/_a exch ddef -/_as as _a get ddef -_a 2 le - { - 0 _tt astore pop - 0 exch neg _tl astore pop - } - { - 0 exch neg _tt astore pop - neg 0 _tl astore pop - } ifelse -exch findfont exch scalefont setfont -} def -/tm -{ -_tm currentmatrix pop -concat -} def -/I -{ -tm -/t - { - ta sp - tl - } ddef -} def -/o -{ -tm -/t - { - ta 4 npop - tl - newpath - } ddef -} def -/e -{ -tm -/t - { - ta _psf - tl - newpath - } ddef -} def -/r -{ -tm -/t - { - ta _tm _pss - tl - newpath - } ddef -} def -/a -{ -tm -/t - { - 2 copy - ta _psf - newpath - ta _tm _pss - tl - newpath - } ddef -} def -/T -{ -_tm setmatrix -} def -/Z -{ -pop -findfont begin -currentdict dup length 1 add dict begin - { - 1 index /FID ne - { - def - } - { - 2 npop - } ifelse - } forall -/FontName exch def dup length 0 ne - { - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - { - Encoding 2 index 2 index put pop - 1 add - } - { - exch pop - } ifelse - } forall - } if pop -currentdict dup end end -/FontName get exch definefont pop -} def -/u -{} def -/U -{} def -/q -{ -gsave -} def -/Q -{ -grestore -} def -/` -{ -/_i save ddef -6 1 roll 4 npop -concat -userdict begin -/showpage {} def -false setoverprint -pop -} def -/~ -{ -end -_i restore -} def -/@ -{} def -/& -{} def -/O -{ -0 ne -/_of exch ddef -/_lp /none ddef -} def -/R -{ -0 ne -/_os exch ddef -/_lp /none ddef -} def -/g -{ -/_gf exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _gf setgray - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/G -{ -/_gs exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _gs setgray - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/k -{ -_cf astore pop -/_fc -{ -_lp /fill ne - { - _of setoverprint - _cf aload pop setcmykcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/K -{ -_cs astore pop -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _cs aload pop setcmykcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/x -{ -/_gf exch ddef -findcmykcustomcolor -/_if exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _if _gf 1 exch sub setcustomcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/X -{ -/_gs exch ddef -findcmykcustomcolor -/_is exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _is _gs 1 exch sub setcustomcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/dp -{ -dup null eq -{ -pop -_dp 0 ne - { - 0 1 _dp 1 sub _dl mod - { - _da exch get 3 get - } for - _dp 1 sub _dl mod 1 add packedarray - _da 0 get aload pop 8 -1 roll 5 -1 roll pop 4 1 roll - definepattern pop - } if -} -{ -_dp 0 ne _dp _dl mod 0 eq and - { - null dp - } if -7 packedarray _da exch _dp _dl mod exch put -_dp _dl mod _da 0 get 4 get 2 packedarray -/_dp _dp 1 add def -} ifelse -} def -/E -{ -_ed begin -dup 0 get type /arraytype ne - { - 0 - { - dup 1 add index type /arraytype eq - { - 1 add - } - { - exit - } ifelse - } loop - array astore - } if -/_dd exch def -/_ury exch def -/_urx exch def -/_lly exch def -/_llx exch def -/_n exch def -/_y 0 def -/_dl 4 def -/_dp 0 def -/_da _dl array def -0 1 _dd length 1 sub - { - /_d exch _dd exch get def - 0 2 _d length 2 sub - { - /_x exch def - /_c _d _x get _ ne def - /_r _d _x 1 add get cvlit def - _r _ ne - { - _urx _llx sub _ury _lly sub [1 0 0 1 0 0] - [ - /save cvx - _llx neg _lly neg /translate cvx - _c - { - nc /begin cvx - } if - _r dup type /stringtype eq - { - cvx - } - { - {exec} /forall cvx - } ifelse - _c - { - /end cvx - } if - /restore cvx - ] cvx - /_fn 12 _n length add string def - _y _fn cvs pop - /_y _y 1 add def - _fn 12 _n putinterval - _fn _c false dp - _d exch _x 1 add exch put - } if - } for - } for -null dp -_n _dd /_pd -end xput -} def -/fc -{ -_fm dup concatmatrix pop -} def -/p -{ -/_fm exch ddef -9 -2 roll _pm translate fc -7 -2 roll _pm scale fc -5 -1 roll _pm rotate fc -4 -2 roll exch 0 ne - { - dup _pm rotate fc - 1 -1 _pm scale fc - neg _pm rotate fc - } - { - pop - } ifelse -dup _pm rotate fc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore fc -neg _pm rotate fc -_pd exch get /_fdd exch ddef -/_pf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - patternfill - } - { - pop - fill - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_psf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - 10 copy 6 npop exch pop patternashow - } - { - pop - 7 copy 3 npop exch pop ashow - } ifelse - grestore - pop - } for - pop - } for -restore -4 npop newpath -} ddef -/_lp /none ddef -} def -/sc -{ -_sm dup concatmatrix pop -} def -/P -{ -/_sm exch ddef -9 -2 roll _pm translate sc -7 -2 roll _pm scale sc -5 -1 roll _pm rotate sc -4 -2 roll exch 0 ne - { - dup _pm rotate sc - 1 -1 _pm scale sc - neg _pm rotate sc - } - { - pop - } ifelse -dup _pm rotate sc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore sc -neg _pm rotate sc -_pd exch get /_sdd exch ddef -/_ps -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - patternstroke - } - { - pop stroke - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_pss -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - 11 copy 6 npop 3 -1 roll pop patternashowstroke - } - { - pop - 8 copy 3 npop ss - } ifelse - grestore - pop - } for - pop - } for -restore -5 npop newpath -} ddef -/_lp /none ddef -} def -/A -{ -pop -} def -/nc 3 dict def -nc begin -/setgray -{ -pop -} bind def -/setcmykcolor -{ -4 npop -} bind def -/setcustomcolor -{ -2 npop -} bind def -currentdict readonly pop end -currentdict readonly pop end -setpacking -%%EndProcSet -%%EndProlog - -%%BeginSetup -Adobe_cmykcolor /initialize get exec -Adobe_cshow /initialize get exec -Adobe_customcolor /initialize get exec -Adobe_pattern /initialize get exec -Adobe_Illustrator88 /initialize get exec - -%%BeginPattern: (0) -(0) 10 10 18 18 [ -(0 O 0 R 0.000000 0.000000 0.000000 0 (New Color 0) 0 x 0.000000 0.000000 0.000000 0 (New Color 0) 0 X) @ -_ & -(0 O 0 R 0.999985 0.999985 0.999985 0 (New Color 255) 0 x 0.999985 0.999985 0.999985 0 (New Color 255) 0 X) @ -( -0 i 0 J 0 j 1 w 4 M []0 d -%Note: -14 17 m -15 17 l -15 18 l -14 18 l -14 17 l -f -16 16 m -17 16 l -17 17 l -16 17 l -16 16 l -f -11 16 m -12 16 l -12 17 l -11 17 l -11 16 l -f -13 14 m -14 14 l -14 15 l -13 15 l -13 14 l -f -10 14 m -11 14 l -11 15 l -10 15 l -10 14 l -f -15 13 m -16 13 l -16 14 l -15 14 l -15 13 l -f -11 12 m -12 12 l -12 13 l -11 13 l -11 12 l -f -13 11 m -14 11 l -14 12 l -13 12 l -13 11 l -f -17 10 m -18 10 l -18 11 l -17 11 l -17 10 l -f -) & -] E -%%EndPattern - -%%BeginPattern: (1) -(1) 10 10 18 18 [ -(0 O 0 R 0.000000 0.000000 0.000000 0 (New Color 0) 0 x 0.000000 0.000000 0.000000 0 (New Color 0) 0 X) @ -_ & -(0 O 0 R 0.999985 0.999985 0.999985 0 (New Color 255) 0 x 0.999985 0.999985 0.999985 0 (New Color 255) 0 X) @ -( -0 i 0 J 0 j 1 w 4 M []0 d -%Note: -15 17 m -16 17 l -16 18 l -15 18 l -15 17 l -f -14 17 m -15 17 l -15 18 l -14 18 l -14 17 l -f -11 17 m -12 17 l -12 18 l -11 18 l -11 17 l -f -16 16 m -17 16 l -17 17 l -16 17 l -16 16 l -f -13 16 m -14 16 l -14 17 l -13 17 l -13 16 l -f -11 16 m -12 16 l -12 17 l -11 17 l -11 16 l -f -10 16 m -11 16 l -11 17 l -10 17 l -10 16 l -f -17 15 m -18 15 l -18 16 l -17 16 l -17 15 l -f -16 15 m -17 15 l -17 16 l -16 16 l -16 15 l -f -13 15 m -14 15 l -14 16 l -13 16 l -13 15 l -f -11 15 m -12 15 l -12 16 l -11 16 l -11 15 l -f -17 14 m -18 14 l -18 15 l -17 15 l -17 14 l -f -15 14 m -16 14 l -16 15 l -15 15 l -15 14 l -f -14 14 m -15 14 l -15 15 l -14 15 l -14 14 l -f -12 14 m -13 14 l -13 15 l -12 15 l -12 14 l -f -16 13 m -17 13 l -17 14 l -16 14 l -16 13 l -f -15 13 m -16 13 l -16 14 l -15 14 l -15 13 l -f -13 13 m -14 13 l -14 14 l -13 14 l -13 13 l -f -10 13 m -11 13 l -11 14 l -10 14 l -10 13 l -f -17 12 m -18 12 l -18 13 l -17 13 l -17 12 l -f -14 12 m -15 12 l -15 13 l -14 13 l -14 12 l -f -13 12 m -14 12 l -14 13 l -13 13 l -13 12 l -f -11 12 m -12 12 l -12 13 l -11 13 l -11 12 l -f -16 11 m -17 11 l -17 12 l -16 12 l -16 11 l -f -15 11 m -16 11 l -16 12 l -15 12 l -15 11 l -f -11 11 m -12 11 l -12 12 l -11 12 l -11 11 l -f -17 10 m -18 10 l -18 11 l -17 11 l -17 10 l -f -16 10 m -17 10 l -17 11 l -16 11 l -16 10 l -f -13 10 m -14 10 l -14 11 l -13 11 l -13 10 l -f -12 10 m -13 10 l -13 11 l -12 11 l -12 10 l -f -10 10 m -11 10 l -11 11 l -10 11 l -10 10 l -f -) & -] E -%%EndPattern -%%BeginEncoding: _Times-Italic Times-Italic -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Italic /Times-Italic 0 Z -%%EndEncoding -%%BeginEncoding: _Symbol Symbol -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Symbol /Symbol 0 Z -%%EndEncoding - -%%EndSetup - -0 A -0 O -0 R -0 g -0 G -0 i 0 J 0 j 1 w 4 M [] 0 d -156.504 478.496 m -156.504 510.496 l -1.008 w 0 G S -156.504 510.496 m -138.504 514.496 l -1.008 w 0 G S -138.504 514.496 m -174.504 523.496 l -1.008 w 0 G S -174.504 523.496 m -138.504 532.496 l -1.008 w 0 G S -138.504 532.496 m -174.504 541.496 l -1.008 w 0 G S -174.504 541.496 m -138.504 550.496 l -1.008 w 0 G S -138.504 550.496 m -174.504 559.496 l -1.008 w 0 G S -174.504 559.496 m -138.504 568.496 l -1.008 w 0 G S -138.504 568.496 m -174.504 577.496 l -1.008 w 0 G S -174.504 577.496 m -156.504 582.496 l -1.008 w 0 G S -156.504 582.496 m -156.504 622.496 l -1.008 w 0 G S -264.504 622.496 m -295.504 622.496 l -1.008 w 0 G S -295.504 622.496 m -300.504 640.496 l -1.008 w 0 G S -300.504 640.496 m -309.504 604.496 l -1.008 w 0 G S -309.504 604.496 m -318.504 640.496 l -1.008 w 0 G S -318.504 640.496 m -327.504 604.496 l -1.008 w 0 G S -327.504 604.496 m -336.504 640.496 l -1.008 w 0 G S -336.504 640.496 m -345.504 604.496 l -1.008 w 0 G S -345.504 604.496 m -354.504 640.496 l -1.008 w 0 G S -354.504 640.496 m -363.504 604.496 l -1.008 w 0 G S -363.504 604.496 m -367.504 622.496 l -1.008 w 0 G S -367.504 622.496 m -408.504 622.496 l -1.008 w 0 G S -156.504 622.496 m -264.504 622.496 l -1.008 w 0 G S -156.504 478.496 m -408.504 478.496 l -1.008 w 0 G S -408.504 478.496 m -408.504 550.496 l -1.008 w 0 G S -390.504 550.496 m -426.504 550.496 l -1.008 w 0 G S -399.504 555.496 m -417.504 555.496 l -1.008 w 0 G S -408.504 622.496 m -408.504 555.496 l -1.008 w 0 G S -264.504 622.496 m -264.504 550.496 l -1.008 w 0 G S -255.504 550.496 m -273.504 550.496 l -1.008 w 0 G S -246.504 546.496 m -282.504 546.496 l -1.008 w 0 G S -264.504 546.496 m -264.504 478.496 l -1.008 w 0 G S -u -282.471 525.529 m -282.471 538.529 L -271.471 538.529 L -271.471 525.529 L -282.471 525.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 271.471 529.529 ]e -1 (+)t -T -u -427.471 530.529 m -427.471 543.529 L -416.471 543.529 L -416.471 530.529 L -427.471 530.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 416.471 534.529 ]e -1 (+)t -T -u -277.471 551.529 m -277.471 564.529 L -271.471 564.529 L -271.471 551.529 L -277.471 551.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 271.471 555.529 ]e -1 (-)t -T -u -421.471 555.529 m -421.471 568.529 L -415.471 568.529 L -415.471 555.529 L -421.471 555.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 415.471 559.529 ]e -1 (-)t -T -u -198.471 539.529 m -198.471 552.529 L -182.471 552.529 L -182.471 539.529 L -198.471 539.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 182.471 543.529 ]e -2 (R1)t -T -u -348.471 582.529 m -348.471 595.529 L -332.471 595.529 L -332.471 582.529 L -348.471 582.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 12 12 0 0 z -[1 0 0 1 332.471 586.529 ]e -2 (R2)t -T -u -305.471 539.529 m -305.471 557.529 L -291.471 557.529 L -291.471 539.529 L -305.471 539.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Symbol 12 12 0 0 z -[1 0 0 1 291.471 544.529 ]e -2 (e1)t -T -u -444.471 545.529 m -444.471 563.529 L -430.471 563.529 L -430.471 545.529 L -444.471 545.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Symbol 12 12 0 0 z -[1 0 0 1 430.471 550.529 ]e -2 (e2)t -T - -%%Trailer -Adobe_Illustrator88 /terminate get exec -Adobe_pattern /terminate get exec -Adobe_customcolor /terminate get exec -Adobe_cshow /terminate get exec -Adobe_cmykcolor /terminate get exec -Adobe_packedarray /terminate get exec -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob19a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob19a.gif deleted file mode 100755 index 2e78e2bbb..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype59/prob19a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype60/prob02a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype60/prob02a.eps deleted file mode 100755 index 968693bf6..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype60/prob02a.eps +++ /dev/null @@ -1,522 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: prob6905a.eps -%%CreationDate: 7/23/1996 -%%Pages: 0 -%%DocumentFonts: Helvetica -%%BoundingBox:220 543 327 622 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica/Helvetica 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -4469 3983 4470 3982 4471 3981 4472 3980 4474 3979 4475 3979 4476 3978 4477 3977 -4478 3976 4479 3975 4480 3974 4482 3973 4483 3972 4484 3972 4485 3971 4487 3970 -4488 3969 4489 3968 4491 3967 4492 3966 4493 3965 4494 3964 4495 3963 4497 3962 -4498 3961 4499 3961 4500 3960 4501 3960 4502 3961 4504 3962 4505 3963 4506 3964 -4507 3965 4509 3965 4509 3966 4511 3967 4513 3968 4514 3969 4516 3970 4517 3971 -4518 3971 4519 3972 4521 3973 4522 3974 4523 3974 4524 3975 4526 3975 4527 3976 -4528 3977 4529 3978 4530 3979 4531 3980 4532 3980 4533 3981 4534 3982 54 P -35 slw 0 sg str -gr -gs -4534 3983 4535 3983 4536 3984 4537 3985 4539 3986 4540 3986 4541 3987 4542 3988 -4543 3989 4544 3990 4545 3991 4546 3992 4547 3993 4549 3993 4550 3994 4551 3995 -4553 3996 4553 3997 4555 3998 4556 3999 4558 3999 4559 4000 4560 4001 4561 4002 -4562 4003 4563 4003 4564 4004 4566 4004 4566 4003 4568 4002 4569 4001 4570 4000 -4571 3999 4572 3999 4573 3998 4575 3997 4577 3996 4578 3995 4579 3995 4580 3994 -4582 3994 4583 3993 4584 3992 4585 3991 4586 3990 4588 3990 4589 3990 4590 3989 -4591 3988 4592 3987 4593 3986 4594 3986 4596 3985 4597 3984 4598 3983 54 P -35 slw 0 sg str -gr -gs -4599 3983 4601 3982 4601 3981 4602 3980 4604 3979 4605 3979 4606 3978 4607 3977 -4609 3976 4610 3975 4611 3974 4612 3973 4613 3972 4614 3972 4615 3971 4617 3970 -4618 3969 4619 3968 4621 3967 4622 3966 4623 3965 4624 3964 4625 3963 4627 3962 -4628 3961 4629 3961 4630 3960 4632 3960 4633 3961 4634 3962 4635 3963 4636 3964 -4637 3965 4639 3965 4640 3966 4641 3967 4643 3968 4644 3969 4646 3970 4647 3971 -4648 3971 4649 3972 4651 3973 4652 3974 4653 3974 4655 3975 4656 3975 4657 3976 -4658 3977 4659 3978 4660 3979 4661 3980 4663 3980 4664 3981 4665 3982 54 P -35 slw 0 sg str -gr -gs -4664 3983 4666 3983 4667 3984 4667 3985 4669 3986 4670 3986 4671 3987 4672 3988 -4673 3989 4674 3990 4675 3991 4677 3992 4678 3993 4679 3993 4680 3994 4681 3995 -4683 3996 4684 3997 4686 3998 4686 3999 4688 3999 4689 4000 4690 4001 4691 4002 -4692 4003 4693 4003 4694 4004 4696 4004 4697 4003 4698 4002 4699 4001 4700 4000 -4701 3999 4703 3999 4704 3998 4705 3997 4707 3996 4708 3995 4710 3995 4711 3994 -4712 3994 4713 3993 4714 3992 4716 3991 4717 3990 4718 3990 4719 3990 4720 3989 -4721 3988 4723 3987 4724 3986 4724 3986 4726 3985 4727 3984 4728 3983 54 P -35 slw 0 sg str -gr -gs -4723 3987 4724 3987 4725 3986 4726 3985 4728 3984 4729 3983 4730 3982 4731 3981 -4733 3980 4734 3979 4734 3978 4736 3977 4737 3977 4738 3976 4739 3975 4741 3974 -4742 3973 4743 3972 4745 3971 4746 3970 4747 3969 4748 3968 4749 3967 4751 3966 -4752 3966 4753 3965 4754 3964 4756 3965 4756 3966 4758 3966 4759 3967 4760 3968 -4761 3969 4763 3970 4764 3971 4765 3972 4767 3973 4768 3974 4770 3974 4771 3975 -4772 3976 4773 3977 4775 3977 4776 3978 4777 3979 4778 3979 4780 3980 4781 3981 -4782 3982 4783 3982 4784 3983 4785 3984 4787 3985 4788 3986 4788 3987 54 P -35 slw 0 sg str -gr -gs -4788 3987 4789 3988 4790 3989 4791 3990 4793 3990 4794 3991 4795 3992 4796 3993 -4797 3994 4798 3994 4799 3995 4801 3996 4802 3997 4803 3998 4804 3998 4805 3999 -4807 4000 4808 4001 4809 4002 4810 4003 4812 4004 4813 4005 4814 4006 4815 4007 -4816 4007 4817 4008 4818 4009 4820 4008 4821 4007 4822 4007 4823 4006 4824 4005 -4825 4004 4827 4003 4828 4003 4829 4002 4831 4001 4832 4000 4834 3999 4835 3998 -4836 3998 4837 3997 4838 3997 4840 3996 4841 3995 4842 3994 4843 3994 4844 3993 -4845 3992 4847 3992 4847 3991 4848 3990 4850 3990 4851 3989 4852 3988 54 P -35 slw 0 sg str -gr -gs -4853 3987 4855 3987 4856 3986 4857 3985 4858 3984 4859 3983 4860 3982 4861 3981 -4863 3980 4864 3979 4865 3978 4866 3977 4867 3977 4869 3976 4869 3975 4871 3974 -4872 3973 4873 3972 4875 3971 4876 3970 4878 3969 4879 3968 4880 3967 4881 3966 -4882 3966 4883 3965 4884 3964 4886 3965 4887 3966 4888 3966 4889 3967 4891 3968 -4891 3969 4893 3970 4894 3971 4895 3972 4897 3973 4899 3974 4900 3974 4901 3975 -4902 3976 4903 3977 4905 3977 4906 3978 4907 3979 4909 3979 4910 3980 4911 3981 -4912 3982 4913 3982 4914 3983 4915 3984 4917 3985 4918 3986 4919 3987 54 P -35 slw 0 sg str -gr -gs -4918 3987 4920 3988 4921 3989 4922 3990 4923 3990 4924 3991 4925 3992 4926 3993 -4928 3994 4929 3994 4929 3995 4931 3996 4932 3997 4933 3998 4934 3998 4935 3999 -4937 4000 4938 4001 4940 4002 4941 4003 4942 4004 4943 4005 4944 4006 4945 4007 -4946 4007 4948 4008 4948 4009 4950 4008 4951 4007 4952 4007 4953 4006 4955 4005 -4955 4004 4957 4003 4958 4003 4959 4002 4961 4001 4962 4000 4964 3999 4965 3998 -4966 3998 4967 3997 4968 3997 4970 3996 4971 3995 4972 3994 4974 3994 4974 3993 -4975 3992 4977 3992 4978 3991 4979 3990 4980 3990 4981 3989 4982 3988 54 P -35 slw 0 sg str -gr -gs -4320.5 4002.5 m -4476.5 4002.5 L -35 slw 0 sg str -gr -gs -4997.5 4002.5 m -5153.5 4002.5 L -35 slw 0 sg str -gr -gs -5337.5 4002.5 m -5259.5 4002.5 L -35 slw 0 sg str -gr -gs -5259.5 3924.5 m -5259.5 4080.5 L -35 slw 0 sg str -gr -gs -5103.5 4002.5 m -5181.5 4002.5 L -35 slw 0 sg str -gr -gs -5181.5 3924.5 m -5181.5 4080.5 L -35 slw 0 sg str -gr -gs -4400 3377 4634 3611 OV -1 sg fill -gr -gs -4400.5 3377.5 4634.5 3611.5 OV -35 slw 0 sg str -gr -gs -4791.5 3494.5 m -4634.5 3494.5 L -35 slw 0 sg str -gr -gs -4400.5 3494.5 m -4231.5 3494.5 L -35 slw 0 sg str -gr -gs -4582.5 3468.5 m -4582.5 3533.5 L -35 slw 0 sg str -gr -gs -4478.5 3442.5 m -4478.5 3533.5 L -35 slw 0 sg str -gr -gs -4517.5 3494.5 m -4439.5 3494.5 L -35 slw 0 sg str -gr -gs -4374.5 4002.5 m -4296.5 4002.5 L -35 slw 0 sg str -gr -gs -4296.5 3924.5 m -4296.5 4080.5 L -35 slw 0 sg str -gr -gs -4140.5 4002.5 m -4218.5 4002.5 L -35 slw 0 sg str -gr -gs -4218.5 3924.5 m -4218.5 4080.5 L -35 slw 0 sg str -gr -gs -4791.5 3494.5 m -5038.5 3494.5 L -35 slw 0 sg str -gr -gs -5038.5 3494.5 m -5129.5 3429.5 L -35 slw 0 sg str -gr -gs -5129.5 3494.5 m -5442.5 3494.5 L -35 slw 0 sg str -gr -gs -5442.5 3494.5 m -5442.5 4002.5 L -35 slw 0 sg str -gr -gs -4231.5 3494.5 m -4061.5 3494.5 L -35 slw 0 sg str -gr -gs -4061.5 3494.5 m -4061.5 4002.5 L -35 slw 0 sg str -gr -gs -4140.5 4002.5 m -4061.5 4002.5 L -35 slw 0 sg str -gr -gs -5337.5 4002.5 m -5442.5 4002.5 L -35 slw 0 sg str -gr -gs -4747 3780 4782 3937 R -1 sg fill -gr -/_Helvetica ff [139 0 0 -139 0 0] mf sf -4747 3884 m 0 sg (r) show -gs -4443 3194 4530 3351 R -1 sg fill -gr -4443 3298 m 1.39 slw 0 sg (V) show -gs -4931 3236 5313 3393 R -1 sg fill -gr -4931 3340 m 1.39 slw 0 sg (switch) show -gs -5120 3741 5259 3897 R -1 sg fill -gr -5120 3845 m 1.39 slw 0 sg (c2) show -gs -4170 3702 4309 3858 R -1 sg fill -gr -4170 3806 m 1.39 slw 0 sg (c1) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype60/prob02a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype60/prob02a.gif deleted file mode 100755 index 6c62cd96b..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype60/prob02a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype60/prob05av1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype60/prob05av1.eps deleted file mode 100755 index 26f517539..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype60/prob05av1.eps +++ /dev/null @@ -1,488 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q26a1.draw -- /teacher/Apps/Drawfiles/phys121a/set11 -%%Creator: Draw -%%CreationDate: Mon Jun 12 14:53:28 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 88 418 390 608 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -88 418 302 190 rectclip -1 1 2.674419 setup -0 nxsetgray -200 0 143 466 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 100 143 466 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 100 248 466 line -grestore -1 1 2.674419 setup -0 nxsetgray -200 0 144 566 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 100 344 466 line -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -325 506 37 26 rectfill -1 nxsetgray -325 506 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 344 532 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 334 525 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 335 524 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 344 521 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 334 514 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 335 513 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 344 511 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 344 506 line -grestore -grestore -grestore -grestore -1 1 2.674419 setup -gsave -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -153 -exch -defineuserobject -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1031] concat -153 execuserobject setfont -0 nxsetgray -360 518 moveto (R) show -0 5 rmoveto -(2) show -0 -5 rmoveto -grestore -grestore -0 0 5.813953 setup -1 1 0 setup -1 nxsetgray -128 532 28 13 rectfill -1 nxsetgray -128 532 28 13 rectstroke -grestore -1 1 5.813953 setup -0 nxsetgray -10 0 139 531 line -grestore -1 1 1.627907 setup -0 nxsetgray -30 0 128 543 line -grestore -1 1 1.627907 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1069] concat -/Helvetica-Bold findfont 20 scalefont [1 0 0 -1 0 0] makefont -11 -exch -defineuserobject -11 execuserobject setfont -0 nxsetgray -125 542 moveto (-) show -grestore -grestore -1 1 1.627907 setup -gsave -11 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1111] concat -11 execuserobject setfont -0 nxsetgray -122 563 moveto (+) show -grestore -grestore -1 1 2.674419 setup -gsave -11 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1079] concat -153 execuserobject setfont -0 nxsetgray -101 542 moveto (V) show -0 5 rmoveto -(0) show -0 -5 rmoveto -grestore -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -181 554 24 36 rectfill -1 nxsetgray -181 554 24 36 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 181 567 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 184 577 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 189 557 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 191 567 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 194 577 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 199 557 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2.000001 10 201 567 line -grestore -1 1 1.744186 setup -0 nxsetgray -2.000001 -10 203.999939 577 line -grestore -grestore -grestore -grestore -1 1 2.674419 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1177] concat -153 execuserobject setfont -0 nxsetgray -185 591 moveto (R) show -0 5 rmoveto -(1) show -0 -5 rmoveto -grestore -grestore -0 0 3 setup -0 0 0 setup -1 nxsetgray -233 513 30 10 rectfill -0.993103 nxsetgray -233 513 30 10 rectstroke -grestore -0 0 3 setup -0 nxsetgray -20 0 238 513 line -grestore -0 0 3 setup -0 nxsetgray -20 0 238 521 line -grestore -grestore -0 0 3 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1015] concat -153 execuserobject setfont -0 nxsetgray -220 506 moveto (C) show -grestore -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -134 480 16 21 rectfill -1 nxsetgray -134 480 16 21 rectstroke -grestore -1 1 2.674419 setup -0 nxsetgray -13 21 143 478 line -grestore -1 1 2.674419 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 974] concat -153 execuserobject setfont -0 nxsetgray -129 492 moveto (S) show -grestore -grestore -1 1 2.674419 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 870] concat -153 execuserobject setfont -0 nxsetgray -147 440 moveto (Capacitor initially uncharged) show -grestore -grestore -1 1 0.697674 setup -0 nxsetgray -9 55 227 448 line -80.709068 236 503 arrow -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype60/prob05av1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype60/prob05av1.gif deleted file mode 100755 index 9027837ee..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype60/prob05av1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype60/prob05av2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype60/prob05av2.eps deleted file mode 100755 index ed69f8bc2..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype60/prob05av2.eps +++ /dev/null @@ -1,488 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q26a2.draw -- /teacher/Apps/Drawfiles/phys121a/set11 -%%Creator: Draw -%%CreationDate: Mon Jun 12 15:08:46 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 88 458 390 633 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -88 458 302 175 rectclip -1 1 2.674419 setup -0 nxsetgray -200 0 143 466 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 100 143 466 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 100 248 466 line -grestore -1 1 2.674419 setup -0 nxsetgray -200 0 144 566 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 100 344 466 line -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -325 506 37 26 rectfill -1 nxsetgray -325 506 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 344 532 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 334 525 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 335 524 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 344 521 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 334 514 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 335 513 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 344 511 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 344 506 line -grestore -grestore -grestore -grestore -1 1 2.674419 setup -gsave -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -153 -exch -defineuserobject -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1031] concat -153 execuserobject setfont -0 nxsetgray -360 518 moveto (R) show -0 5 rmoveto -(2) show -0 -5 rmoveto -grestore -grestore -0 0 5.813953 setup -1 1 0 setup -1 nxsetgray -128 536 28 13 rectfill -1 nxsetgray -128 536 28 13 rectstroke -grestore -1 1 5.813953 setup -0 nxsetgray -10 0 139 535 line -grestore -1 1 1.627907 setup -0 nxsetgray -30 0 128 547 line -grestore -1 1 1.627907 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1077] concat -/Helvetica-Bold findfont 20 scalefont [1 0 0 -1 0 0] makefont -11 -exch -defineuserobject -11 execuserobject setfont -0 nxsetgray -125 546 moveto (-) show -grestore -grestore -1 1 1.627907 setup -gsave -11 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1119] concat -11 execuserobject setfont -0 nxsetgray -122 567 moveto (+) show -grestore -grestore -1 1 2.674419 setup -gsave -11 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1087] concat -153 execuserobject setfont -0 nxsetgray -101 546 moveto (V) show -0 5 rmoveto -(0) show -0 -5 rmoveto -grestore -grestore -grestore -0 0 3 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1147] concat -153 execuserobject setfont -0 nxsetgray -171 572 moveto (C) show -grestore -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -133 486 16 21 rectfill -1 nxsetgray -133 486 16 21 rectstroke -grestore -1 1 2.674419 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1232] concat -153 execuserobject setfont -0 nxsetgray -153 621 moveto (Capacitor initially uncharged) show -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -229 506 37 26 rectfill -1 nxsetgray -229 506 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 248 532 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 238 525 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 239 524 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 248 521 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 238 514 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 239 513 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 248 511 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 248 506 line -grestore -grestore -grestore -grestore -1 1 2.674419 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1031] concat -153 execuserobject setfont -0 nxsetgray -267 518 moveto (R) show -0 5 rmoveto -(1) show -0 -5 rmoveto -grestore -grestore -0 0 3 setup -0 0 0 setup -1 nxsetgray -188 549 10 30 rectfill -0.993103 nxsetgray -188 549 10 30 rectstroke -grestore -0 0 3 setup -0 nxsetgray -0 -20 188 575 line -grestore -0 0 3 setup -0 nxsetgray -0 -20 200 575 line -grestore -grestore -1 1 0.697674 setup -0 nxsetgray -43 28 207 575 line -213.071655 207 575 arrow -grestore -1 1 2.674419 setup -0 nxsetgray -13 -21 131 506 line -grestore -1 1 2.674419 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 998] concat -153 execuserobject setfont -0 nxsetgray -147 504 moveto (S) show -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype60/prob05av2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype60/prob05av2.gif deleted file mode 100755 index 3c663fd95..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype60/prob05av2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype60/prob05av3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype60/prob05av3.eps deleted file mode 100755 index 700927301..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype60/prob05av3.eps +++ /dev/null @@ -1,488 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q26a3.draw -- /teacher/Apps/Drawfiles/phys121a/set11 -%%Creator: Draw -%%CreationDate: Mon Jun 12 15:02:41 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 88 405 390 607 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -88 405 302 202 rectclip -1 1 2.674419 setup -0 nxsetgray -200 0 143 466 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 100 143 466 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 100 248 466 line -grestore -1 1 2.674419 setup -0 nxsetgray -200 0 144 566 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 100 344 466 line -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -325 506 37 26 rectfill -1 nxsetgray -325 506 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 344 532 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 334 525 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 335 524 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 344 521 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 334 514 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 335 513 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 344 511 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 344 506 line -grestore -grestore -grestore -grestore -1 1 2.674419 setup -gsave -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -153 -exch -defineuserobject -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1031] concat -153 execuserobject setfont -0 nxsetgray -360 518 moveto (R) show -0 5 rmoveto -(2) show -0 -5 rmoveto -grestore -grestore -0 0 5.813953 setup -1 1 0 setup -1 nxsetgray -128 510 28 13 rectfill -1 nxsetgray -128 510 28 13 rectstroke -grestore -1 1 5.813953 setup -0 nxsetgray -10 0 139 509 line -grestore -1 1 1.627907 setup -0 nxsetgray -30 0 128 521 line -grestore -1 1 1.627907 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1025] concat -/Helvetica-Bold findfont 20 scalefont [1 0 0 -1 0 0] makefont -11 -exch -defineuserobject -11 execuserobject setfont -0 nxsetgray -125 520 moveto (-) show -grestore -grestore -1 1 1.627907 setup -gsave -11 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1067] concat -11 execuserobject setfont -0 nxsetgray -122 541 moveto (+) show -grestore -grestore -1 1 2.674419 setup -gsave -11 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1035] concat -153 execuserobject setfont -0 nxsetgray -101 520 moveto (V) show -0 5 rmoveto -(0) show -0 -5 rmoveto -grestore -grestore -grestore -0 0 3 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 993] concat -153 execuserobject setfont -0 nxsetgray -221 495 moveto (C) show -grestore -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -237 525 16 21 rectfill -1 nxsetgray -237 525 16 21 rectstroke -grestore -1 1 2.674419 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 844] concat -153 execuserobject setfont -0 nxsetgray -156 427 moveto (Capacitor initially uncharged) show -grestore -grestore -1 1 2.674419 setup -0 nxsetgray -10 19 238 527 line -grestore -1 1 2.674419 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1070] concat -153 execuserobject setfont -0 nxsetgray -250 540 moveto (S) show -grestore -grestore -1 1 0.697674 setup -0 nxsetgray -10 50 231 437 line -78.69239 241 487 arrow -grestore -0 0 3 setup -0 0 0 setup -1 nxsetgray -234 500 30 10 rectfill -0.993103 nxsetgray -234 500 30 10 rectstroke -grestore -0 0 3 setup -0 nxsetgray -20 0 239 500 line -grestore -0 0 3 setup -0 nxsetgray -20 0 239 508 line -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -179 553 24 36 rectfill -1 nxsetgray -179 553 24 36 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 179 566 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 182 576 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 187 556 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2 10 189 566 line -grestore -1 1 1.744186 setup -0 nxsetgray -4 -20 192 576 line -grestore -1 1 1.744186 setup -0 nxsetgray -2 10 197 556 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -2.000001 10 199 566 line -grestore -1 1 1.744186 setup -0 nxsetgray -2.000001 -10 201.999939 576 line -grestore -grestore -grestore -grestore -1 1 2.674419 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1175] concat -153 execuserobject setfont -0 nxsetgray -183 590 moveto (R) show -0 5 rmoveto -(1) show -0 -5 rmoveto -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype60/prob05av3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype60/prob05av3.gif deleted file mode 100755 index 4df721e02..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype60/prob05av3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype60/prob05av4.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype60/prob05av4.eps deleted file mode 100755 index 4d5c593cc..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype60/prob05av4.eps +++ /dev/null @@ -1,488 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q26a4.draw -- /teacher/Apps/Drawfiles/phys121a/set11 -%%Creator: Draw -%%CreationDate: Mon Jun 12 15:06:03 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 88 458 390 639 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -88 458 302 181 rectclip -1 1 2.674419 setup -0 nxsetgray -200 0 143 466 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 100 143 466 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 100 248 466 line -grestore -1 1 2.674419 setup -0 nxsetgray -200 0 144 566 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 100 344 466 line -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -325 506 37 26 rectfill -1 nxsetgray -325 506 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 344 532 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 334 525 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 335 524 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 344 521 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 334 514 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 335 513 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 344 511 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 344 506 line -grestore -grestore -grestore -grestore -1 1 2.674419 setup -gsave -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -153 -exch -defineuserobject -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1031] concat -153 execuserobject setfont -0 nxsetgray -360 518 moveto (R) show -0 5 rmoveto -(2) show -0 -5 rmoveto -grestore -grestore -0 0 5.813953 setup -1 1 0 setup -1 nxsetgray -128 510 28 13 rectfill -1 nxsetgray -128 510 28 13 rectstroke -grestore -1 1 5.813953 setup -0 nxsetgray -10 0 139 509 line -grestore -1 1 1.627907 setup -0 nxsetgray -30 0 128 521 line -grestore -1 1 1.627907 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1025] concat -/Helvetica-Bold findfont 20 scalefont [1 0 0 -1 0 0] makefont -11 -exch -defineuserobject -11 execuserobject setfont -0 nxsetgray -125 520 moveto (-) show -grestore -grestore -1 1 1.627907 setup -gsave -11 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1067] concat -11 execuserobject setfont -0 nxsetgray -122 541 moveto (+) show -grestore -grestore -1 1 2.674419 setup -gsave -11 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1035] concat -153 execuserobject setfont -0 nxsetgray -101 520 moveto (V) show -0 5 rmoveto -(0) show -0 -5 rmoveto -grestore -grestore -grestore -0 0 3 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1145] concat -153 execuserobject setfont -0 nxsetgray -309 571 moveto (C) show -grestore -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -176 561 21 16 rectfill -1 nxsetgray -176 561 21 16 rectstroke -grestore -1 1 2.674419 setup -0 nxsetgray -21 13 175 565 line -grestore -1 1 2.674419 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1244] concat -153 execuserobject setfont -0 nxsetgray -125 627 moveto (Capacitor initially uncharged) show -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -229 506 37 26 rectfill -1 nxsetgray -229 506 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 248 532 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 238 525 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 239 524 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 248 521 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 238 514 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 239 513 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 248 511 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 248 506 line -grestore -grestore -grestore -grestore -1 1 2.674419 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1031] concat -153 execuserobject setfont -0 nxsetgray -267 518 moveto (R) show -0 5 rmoveto -(1) show -0 -5 rmoveto -grestore -grestore -0 0 3 setup -0 0 0 setup -1 nxsetgray -288 549 10 30 rectfill -0.993103 nxsetgray -288 549 10 30 rectstroke -grestore -0 0 3 setup -0 nxsetgray -0 -20 288 575 line -grestore -0 0 3 setup -0 nxsetgray -0 -20 300 575 line -grestore -grestore -1 1 0.697674 setup -0 nxsetgray -46 -24 234 602 line --27.553625 280 578 arrow -grestore -1 1 2.674419 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1118] concat -153 execuserobject setfont -0 nxsetgray -182 564 moveto (S) show -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype60/prob05av4.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype60/prob05av4.gif deleted file mode 100755 index c508cae5a..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype60/prob05av4.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype60/prob05av5.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype60/prob05av5.eps deleted file mode 100755 index e148defbd..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype60/prob05av5.eps +++ /dev/null @@ -1,488 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: q26a5.draw -- /teacher/Apps/Drawfiles/phys121a/set11 -%%Creator: Draw -%%CreationDate: Mon Jun 12 15:12:36 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 88 409 390 586 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc closepath -} def /line { - moveto rlineto stroke -} def /setup { - setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -13 6 rlineto 4 -6 rlineto -4 -6 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def -%%EndSetup -gsave -88 409 302 177 rectclip -1 1 2.674419 setup -0 nxsetgray -200 0 143 466 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 100 143 466 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 100 248 466 line -grestore -1 1 2.674419 setup -0 nxsetgray -200 0 144 566 line -grestore -1 1 2.674419 setup -0 nxsetgray -0 100 344 466 line -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -325 506 37 26 rectfill -1 nxsetgray -325 506 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 344 532 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 334 525 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 335 524 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 344 521 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 334 514 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 335 513 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 344 511 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 344 506 line -grestore -grestore -grestore -grestore -1 1 2.674419 setup -gsave -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -153 -exch -defineuserobject -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1031] concat -153 execuserobject setfont -0 nxsetgray -360 518 moveto (R) show -0 5 rmoveto -(2) show -0 -5 rmoveto -grestore -grestore -0 0 5.813953 setup -1 1 0 setup -1 nxsetgray -128 510 28 13 rectfill -1 nxsetgray -128 510 28 13 rectstroke -grestore -1 1 5.813953 setup -0 nxsetgray -10 0 139 509 line -grestore -1 1 1.627907 setup -0 nxsetgray -30 0 128 521 line -grestore -1 1 1.627907 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1025] concat -/Helvetica-Bold findfont 20 scalefont [1 0 0 -1 0 0] makefont -11 -exch -defineuserobject -11 execuserobject setfont -0 nxsetgray -125 520 moveto (-) show -grestore -grestore -1 1 1.627907 setup -gsave -11 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1067] concat -11 execuserobject setfont -0 nxsetgray -122 541 moveto (+) show -grestore -grestore -1 1 2.674419 setup -gsave -11 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1035] concat -153 execuserobject setfont -0 nxsetgray -101 520 moveto (V) show -0 5 rmoveto -(0) show -0 -5 rmoveto -grestore -grestore -grestore -0 0 3 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 977] concat -153 execuserobject setfont -0 nxsetgray -220 487 moveto (C) show -grestore -grestore -0 setgray -0.333333 setgray -0 0 0 setup -1 nxsetgray -176 561 21 16 rectfill -1 nxsetgray -176 561 21 16 rectstroke -grestore -1 1 2.674419 setup -0 nxsetgray -21 13 175 565 line -grestore -1 1 2.674419 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 852] concat -153 execuserobject setfont -0 nxsetgray -134 431 moveto (Capacitor initially uncharged) show -grestore -grestore -0 0 1.744186 setup -1 1 0 setup -1 nxsetgray -229 527 37 26 rectfill -1 nxsetgray -229 527 37 26 rectstroke -grestore -0 0 1.744186 setup -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 248 553 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 238 546 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 239 545 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10 -2 248 542 line -grestore -1 1 1.744186 setup -0 nxsetgray -20 4 238 535 line -grestore -1 1 1.744186 setup -0 nxsetgray -10 -2 239 534 line -grestore -grestore -0 0 1.744186 setup -1 1 1.744186 setup -0 nxsetgray -10.000002 -2 248 532 line -grestore -1 1 1.744186 setup -0 nxsetgray -10.000002 2 248 527 line -grestore -grestore -grestore -grestore -1 1 2.674419 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1077] concat -153 execuserobject setfont -0 nxsetgray -263 541 moveto (R) show -0 5 rmoveto -(1) show -0 -5 rmoveto -grestore -grestore -1 1 2.674419 setup -gsave -153 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1118] concat -153 execuserobject setfont -0 nxsetgray -182 564 moveto (S) show -grestore -grestore -1 1 0.697674 setup -0 nxsetgray -10 50 228 437 line -78.69239 238 487 arrow -grestore -0 0 3 setup -0 0 0 setup -1 nxsetgray -233 495 30 10 rectfill -0.993103 nxsetgray -233 495 30 10 rectstroke -grestore -0 0 3 setup -0 nxsetgray -20 0 238 495 line -grestore -0 0 3 setup -0 nxsetgray -20 0 238 503 line -grestore -grestore -0 setgray -0.333333 setgray -gsave -0 0 540 720 rectclip -[1 0 0 -1 0 720] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype60/prob05av5.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype60/prob05av5.gif deleted file mode 100755 index 623e0b76a..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype60/prob05av5.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob02.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob02.eps deleted file mode 100755 index 44c6ba736..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob02.eps +++ /dev/null @@ -1,311 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: prob6102.eps -%%CreationDate: 7/23/1996 -%%Pages: 0 -%%DocumentFonts: Helvetica -%%BoundingBox:59 487 266 655 -%%EndComments -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] -/_Helvetica/Helvetica 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -2361.5 2700.5 m -2361.5 3950.5 L -35 slw 0 sg str -gr -gs -2361.5 3950.5 m -1579.5 4731.5 L -35 slw 0 sg str -gr -gs -2486 2630 2782 2925 R -1 sg fill -gr -/_Helvetica ff [278 0 0 -278 0 0] mf sf -2486 2838 m 0 sg (+z) show -gs -4079 3837 4375 4132 R -1 sg fill -gr -4079 4045 m 2.78 slw 0 sg (+y) show -gs -1267 4774 1562 5069 R -1 sg fill -gr -1267 4982 m 2.78 slw 0 sg (+x) show -gs -2361.5 3950.5 m -3923.5 3950.5 L -35 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob02.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob02.gif deleted file mode 100755 index fc95a53da..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob02.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob02set8Fig1a.tex b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob02set8Fig1a.tex deleted file mode 100755 index 1b60a35cc..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob02set8Fig1a.tex +++ /dev/null @@ -1,35 +0,0 @@ -\epsfxsize=3.4 in -\epsffile{pictures/threeqcontdot.ps} \vskip -7.6 cm -\setlength{\unitlength}{1mm} -\noindent \begin{picture}(87,86)(0,0) -\put(0,5){\makebox(0,0)[bl]{cm}} -\put(11,5){\makebox(0,0)[b]{\footnotesize 1}} -\put(22,5){\makebox(0,0)[b]{\footnotesize 2}} -\put(33,5){\makebox(0,0)[b]{\footnotesize 3}} -\put(44,5){\makebox(0,0)[b]{\footnotesize 4}} -\put(55,5){\makebox(0,0)[b]{\footnotesize 5}} -\setlength{\unitlength}{1mm} -\put(2.5,90){\shortstack[l]{a}} -\put(35,88){\shortstack[l]{b}} -\put(66,81){\shortstack[l]{c}} -\put(30,65){\shortstack[l]{d}} -\put(31,56){\shortstack[l]{f}} -\put(64,55){\shortstack[l]{g}} -\put(56,41){\shortstack[l]{i}} -\put(75,40){\shortstack[l]{j}} -\put(44,52){\shortstack[l]{k}} -\put(73,21){\shortstack[l]{m}} -\put(18,80){\shortstack[l]{\footnotesize $Q_1$}} -\put(64,74.5){\shortstack[l]{\footnotesize $Q_2$}} -\put(56,22){\shortstack[l]{\footnotesize $Q_3$}} -\put(17,40){\shortstack[l]{\footnotesize 0 Volts}} -\put(64,68){\shortstack[l]{\footnotesize $-5$}} -\put(15,70){\shortstack[l]{\footnotesize $-5$}} -\put(48,33){\shortstack[l]{\footnotesize $+5$}} -\setlength{\unitlength}{1.1mm} -\multiput(1,0)(1,0){49}{\line(0,1){1.5}} -\multiput(5,0)(10,0){5}{\line(0,1){2.5}} -\thicklines -\put(0,0){\line(1,0){50}} -\multiput(0,0)(10,0){6}{\line(0,1){3.5}} -\end{picture} diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob02set8Fig1b.tex b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob02set8Fig1b.tex deleted file mode 100755 index d5e8ca20b..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob02set8Fig1b.tex +++ /dev/null @@ -1,35 +0,0 @@ -\epsfxsize=3.4 in -\epsffile{pictures/threeqcontdot.ps} \vskip -7.6 cm -\setlength{\unitlength}{1mm} -\noindent \begin{picture}(87,86)(0,0) -\put(0,5){\makebox(0,0)[bl]{cm}} -\put(12,5){\makebox(0,0)[b]{\footnotesize 1}} -\put(24,5){\makebox(0,0)[b]{\footnotesize 2}} -\put(36,5){\makebox(0,0)[b]{\footnotesize 3}} -\put(48,5){\makebox(0,0)[b]{\footnotesize 4}} -\put(60,5){\makebox(0,0)[b]{\footnotesize 5}} -\setlength{\unitlength}{1mm} -\put(2.5,90){\shortstack[l]{a}} -\put(35,88){\shortstack[l]{b}} -\put(66,81){\shortstack[l]{c}} -\put(30,65){\shortstack[l]{d}} -\put(31,56){\shortstack[l]{f}} -\put(64,55){\shortstack[l]{g}} -\put(56,41){\shortstack[l]{i}} -\put(75,40){\shortstack[l]{j}} -\put(44,52){\shortstack[l]{k}} -\put(73,21){\shortstack[l]{m}} -\put(18,80){\shortstack[l]{\footnotesize $Q_1$}} -\put(64,74.5){\shortstack[l]{\footnotesize $Q_2$}} -\put(56,22){\shortstack[l]{\footnotesize $Q_3$}} -\put(17,40){\shortstack[l]{\footnotesize 0 Volts}} -\put(64,68){\shortstack[l]{\footnotesize $-5$}} -\put(15,70){\shortstack[l]{\footnotesize $-5$}} -\put(48,33){\shortstack[l]{\footnotesize $+5$}} -\setlength{\unitlength}{1.2mm} -\multiput(1,0)(1,0){49}{\line(0,1){1.5}} -\multiput(5,0)(10,0){5}{\line(0,1){2.5}} -\thicklines -\put(0,0){\line(1,0){50}} -\multiput(0,0)(10,0){6}{\line(0,1){3.5}} -\end{picture} diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob02set8Fig1c.tex b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob02set8Fig1c.tex deleted file mode 100755 index e76316d98..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob02set8Fig1c.tex +++ /dev/null @@ -1,35 +0,0 @@ -\epsfxsize=3.4 in -\epsffile{pictures/threeqcontdot.ps} \vskip -7.6 cm -\setlength{\unitlength}{1mm} -\noindent \begin{picture}(87,86)(0,0) -\put(0,5){\makebox(0,0)[bl]{cm}} -\put(13,5){\makebox(0,0)[b]{\footnotesize 1}} -\put(26,5){\makebox(0,0)[b]{\footnotesize 2}} -\put(39,5){\makebox(0,0)[b]{\footnotesize 3}} -\put(52,5){\makebox(0,0)[b]{\footnotesize 4}} -\put(65,5){\makebox(0,0)[b]{\footnotesize 5}} -\setlength{\unitlength}{1mm} -\put(2.5,90){\shortstack[l]{a}} -\put(35,88){\shortstack[l]{b}} -\put(66,81){\shortstack[l]{c}} -\put(30,65){\shortstack[l]{d}} -\put(31,56){\shortstack[l]{f}} -\put(64,55){\shortstack[l]{g}} -\put(56,41){\shortstack[l]{i}} -\put(75,40){\shortstack[l]{j}} -\put(44,52){\shortstack[l]{k}} -\put(73,21){\shortstack[l]{m}} -\put(18,80){\shortstack[l]{\footnotesize $Q_1$}} -\put(64,74.5){\shortstack[l]{\footnotesize $Q_2$}} -\put(56,22){\shortstack[l]{\footnotesize $Q_3$}} -\put(17,40){\shortstack[l]{\footnotesize 0 Volts}} -\put(64,68){\shortstack[l]{\footnotesize $-5$}} -\put(15,70){\shortstack[l]{\footnotesize $-5$}} -\put(48,33){\shortstack[l]{\footnotesize $+5$}} -\setlength{\unitlength}{1.3mm} -\multiput(1,0)(1,0){49}{\line(0,1){1.5}} -\multiput(5,0)(10,0){5}{\line(0,1){2.5}} -\thicklines -\put(0,0){\line(1,0){50}} -\multiput(0,0)(10,0){6}{\line(0,1){3.5}} -\end{picture} diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob02set8Fig1d.tex b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob02set8Fig1d.tex deleted file mode 100755 index 85efd5067..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob02set8Fig1d.tex +++ /dev/null @@ -1,35 +0,0 @@ -\epsfxsize=3.4 in -\epsffile{pictures/threeqcontdot.ps} \vskip -7.6 cm -\setlength{\unitlength}{1mm} -\noindent \begin{picture}(87,86)(0,0) -\put(0,5){\makebox(0,0)[bl]{cm}} -\put(14,5){\makebox(0,0)[b]{\footnotesize 1}} -\put(28,5){\makebox(0,0)[b]{\footnotesize 2}} -\put(42,5){\makebox(0,0)[b]{\footnotesize 3}} -\put(56,5){\makebox(0,0)[b]{\footnotesize 4}} -\put(70,5){\makebox(0,0)[b]{\footnotesize 5}} -\setlength{\unitlength}{1mm} -\put(2.5,90){\shortstack[l]{a}} -\put(35,88){\shortstack[l]{b}} -\put(66,81){\shortstack[l]{c}} -\put(30,65){\shortstack[l]{d}} -\put(31,56){\shortstack[l]{f}} -\put(64,55){\shortstack[l]{g}} -\put(56,41){\shortstack[l]{i}} -\put(75,40){\shortstack[l]{j}} -\put(44,52){\shortstack[l]{k}} -\put(73,21){\shortstack[l]{m}} -\put(18,80){\shortstack[l]{\footnotesize $Q_1$}} -\put(64,74.5){\shortstack[l]{\footnotesize $Q_2$}} -\put(56,22){\shortstack[l]{\footnotesize $Q_3$}} -\put(17,40){\shortstack[l]{\footnotesize 0 Volts}} -\put(64,68){\shortstack[l]{\footnotesize $-5$}} -\put(15,70){\shortstack[l]{\footnotesize $-5$}} -\put(48,33){\shortstack[l]{\footnotesize $+5$}} -\setlength{\unitlength}{1.4mm} -\multiput(1,0)(1,0){49}{\line(0,1){1.5}} -\multiput(5,0)(10,0){5}{\line(0,1){2.5}} -\thicklines -\put(0,0){\line(1,0){50}} -\multiput(0,0)(10,0){6}{\line(0,1){3.5}} -\end{picture} diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob02v1.tex b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob02v1.tex deleted file mode 100755 index 67064f270..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob02v1.tex +++ /dev/null @@ -1,6 +0,0 @@ - \begin{tabular}{||l|l|l|l||} \hline - Charge & velocity & B field & Force\\ \hline\hline - $ + $ & $ +y $ & $ -z $ & \\ \hline - $ - $ & $ -x $ & & $ -z $\\ \hline - $ - $ & & $ -z $ & $ +y $\\ \hline - \end{tabular} diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob02v2.tex b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob02v2.tex deleted file mode 100755 index 898eaefe6..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob02v2.tex +++ /dev/null @@ -1,8 +0,0 @@ - - \begin{tabular}{||l|l|l|l||} \hline - Charge & velocity & B field & Force\\ \hline\hline - $ + $ & $ +y $ & & $ -z $\\ \hline - $ - $ & & $ +x $ & $ +z $\\ \hline - $ + $ & $ -z $ & $ +y $ & \\ \hline - \end{tabular} - diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob02v3.tex b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob02v3.tex deleted file mode 100755 index a3ebb1423..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob02v3.tex +++ /dev/null @@ -1,7 +0,0 @@ - \begin{tabular}{||l|l|l|l||} \hline - Charge & velocity & B field & Force\\ \hline\hline - $ - $ & & $ +y $ & $ -z $ \\ \hline - $ - $ & $ -x $ & $ -z $ & \\ \hline - $ + $ & $ +y $ & & $ -z $ \\ \hline - \end{tabular} - diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob02v4.tex b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob02v4.tex deleted file mode 100755 index 5d413cf8f..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob02v4.tex +++ /dev/null @@ -1,6 +0,0 @@ - \begin{tabular}{||l|l|l|l||} \hline - Charge & velocity & B field & Force\\ \hline\hline - $ + $ & $ +y $ & $ -z $ & \\ \hline - $ - $ & $ -x $ & & $ +y $\\ \hline - $ - $ & & $ +y$ & $ -z $\\ \hline - \end{tabular} diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob04.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob04.eps deleted file mode 100755 index d6f8a813f..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob04.eps +++ /dev/null @@ -1,513 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: prob6104.eps -%%CreationDate: 7/23/1996 -%%Pages: 0 -%%DocumentFonts: Helvetica -%%BoundingBox:167 569 393 737 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica/Helvetica 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -3142.5 2856.5 m -4079.5 2856.5 L -35 slw 0 sg str -gr -gs -4079.5 2856.5 m -4079.5 3325.5 L -35 slw 0 sg str -gr -gs -3142.5 2231.5 m -4079.5 2231.5 L -35 slw 0 sg str -gr -gs -4079.5 2231.5 m -4079.5 1762.5 L -35 slw 0 sg str -gr -gs -4079.5 2543.5 m -6267.5 2543.5 L -35 slw 0 sg str -gr -gs -5330.5 1372.5 m -5330.5 2543.5 L -35 slw 0 sg str -gr -gs -4783.5 1372.5 m -5876.5 1372.5 L -35 slw 0 sg str -gr -gs -5408.5 1372.5 m -5251.5 1215.5 L -35 slw 0 sg str -gr -gs -5564.5 1372.5 m -5408.5 1215.5 L -35 slw 0 sg str -gr -gs -5720.5 1372.5 m -5564.5 1215.5 L -35 slw 0 sg str -gr -gs -5876.5 1372.5 m -5720.5 1215.5 L -35 slw 0 sg str -gr -gs -4783.5 1372.5 m -4626.5 1215.5 L -35 slw 0 sg str -gr -gs -4939.5 1372.5 m -4783.5 1215.5 L -35 slw 0 sg str -gr -gs -5095.5 1372.5 m -4939.5 1215.5 L -35 slw 0 sg str -gr -gs -5251.5 1372.5 m -5095.5 1215.5 L -35 slw 0 sg str -gr -gs -6267.5 2543.5 m -5955.5 3637.5 L -35 slw 0 sg str -gr -gs -6267.5 2543.5 m -6580.5 3637.5 L -35 slw 0 sg str -gr -gs -3298.5 2387.5 m -4079.5 2387.5 L -35 slw 0 sg str -gr -gs -3298.5 2700.5 m -4079.5 2700.5 L -35 slw 0 sg str -gr -gs -0 slc -newpath -4079.5 2543.5 m -3923 2387 4236 2700 270 90 A -1 sg fill -gr -gs -0 slc -newpath -3923.5 2387.5 4236.5 2700.5 270 90 A -35 slw 0 sg str -gr -gs -0 slc -newpath -4079.5 2543.5 m -3923 2387 4236 2700 90 270 A -1 sg fill -gr -gs -0 slc -newpath -3923.5 2387.5 4236.5 2700.5 90 270 A -35 slw 0 sg str -gr -gs -0 slc -newpath -3923 2543.5 m -3767 2387 4079 2700 90 270 A -1 sg fill -gr -gs -0 slc -newpath -3767.5 2387.5 4079.5 2700.5 90 270 A -35 slw 0 sg str -gr -gs -0 slc -newpath -3767 2543.5 m -3611 2387 3923 2700 90 270 A -1 sg fill -gr -gs -0 slc -newpath -3611.5 2387.5 3923.5 2700.5 90 270 A -35 slw 0 sg str -gr -gs -0 slc -newpath -3610.5 2543.5 m -3454 2387 3767 2700 90 270 A -1 sg fill -gr -gs -0 slc -newpath -3454.5 2387.5 3767.5 2700.5 90 270 A -35 slw 0 sg str -gr -gs -0 slc -newpath -3454.5 2543.5 m -3298 2387 3611 2700 90 270 A -1 sg fill -gr -gs -0 slc -newpath -3298.5 2387.5 3611.5 2700.5 90 270 A -35 slw 0 sg str -gr -gs -0 slc -newpath -3298 2543.5 m -3142 2387 3454 2700 90 270 A -1 sg fill -gr -gs -0 slc -newpath -3142.5 2387.5 3454.5 2700.5 90 270 A -35 slw 0 sg str -gr -gs -3611 1918 3802 2214 R -1 sg fill -gr -/_Helvetica ff [278 0 0 -278 0 0] mf sf -3611 2126 m 0 sg (N) show -gs -3541 3047 3715 3342 R -1 sg fill -gr -3541 3255 m 2.78 slw 0 sg (S) show -gs -5251 2578 5460 2873 R -1 sg fill -gr -5251 2786 m 2.78 slw 0 sg (O) show -gs -6354 2422 6528 2717 R -1 sg fill -gr -6354 2630 m 2.78 slw 0 sg (A) show -gs -5955.5 3637.5 m -6580.5 3637.5 L -35 slw 0 sg str -gr -gs -6111 3637 6267 3637 6267 3481 6111 3481 6111 3637 4 P closepath -1 sg fill -gr -gs -6094 3620 6250 3620 6250 3464 6094 3464 6094 3620 4 P closepath -35 slw 0 sg str -gr -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob04.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob04.gif deleted file mode 100755 index e6ca46f9f..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob04.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob05.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob05.eps deleted file mode 100755 index f051faa50..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob05.eps +++ /dev/null @@ -1,1633 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad 6.0.1 -%%Title: junk.eps -%%CreationDate: 12/23/1997 -%%DocumentProcSets: Adobe_packedarray 1.0 0 -%%DocumentSuppliedProcSets: Adobe_packedarray 1.0 0 -%%DocumentProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentProcSets: Adobe_cshow 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cshow 1.1 0 -%%DocumentProcSets: Adobe_customcolor 1.0 0 -%%DocumentSuppliedProcSets: Adobe_customcolor 1.0 0 -%%DocumentProcSets: Adobe_pattern 1.9 0 -%%DocumentSuppliedProcSets: Adobe_pattern 1.9 0 -%%DocumentProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentSuppliedProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentFonts: Courier-Bold -%%BoundingBox:68 461 476 656 -%%TemplateBox:306 396 306 396 -%%DocumentPreview: Header -%%EndComments - -%%BeginProlog -%%BeginProcSet: Adobe_packedarray 1.0 0 -userdict /Adobe_packedarray 5 dict dup begin put -/initialize -{ -/packedarray where - { - pop - } - { - Adobe_packedarray begin - Adobe_packedarray - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - } ifelse -} def -/terminate -{ -} def -/packedarray -{ -array astore readonly -} def -/setpacking -{ -pop -} def -/currentpacking -{ -false -} def -currentdict readonly pop end -%%EndProcSet -Adobe_packedarray /initialize get exec -%%BeginProcSet: Adobe_cmykcolor 1.1 0 -currentpacking true setpacking -userdict /Adobe_cmykcolor 4 dict dup begin put -/initialize -{ -/setcmykcolor where - { - pop - } - { - userdict /Adobe_cmykcolor_vars 2 dict dup begin put - /_setrgbcolor - /setrgbcolor load def - /_currentrgbcolor - /currentrgbcolor load def - Adobe_cmykcolor begin - Adobe_cmykcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - end - Adobe_cmykcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_cmykcolor eq - { - end - } if -} def -/setcmykcolor -{ -1 sub 4 1 roll -3 - { - 3 index add neg dup 0 lt - { - pop 0 - } if - 3 1 roll - } repeat -Adobe_cmykcolor_vars /_setrgbcolor get exec -pop -} def -/currentcmykcolor -{ -Adobe_cmykcolor_vars /_currentrgbcolor get exec -3 - { - 1 sub neg 3 1 roll - } repeat -0 -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_cshow 1.1 0 -currentpacking true setpacking -userdict /Adobe_cshow 3 dict dup begin put -/initialize -{ -/cshow where - { - pop - } - { - userdict /Adobe_cshow_vars 1 dict dup begin put - /_cshow - {} def - Adobe_cshow begin - Adobe_cshow - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - end - } ifelse -} def -/terminate -{ -} def -/cshow -{ -exch -Adobe_cshow_vars - exch /_cshow - exch put - { - 0 0 Adobe_cshow_vars /_cshow get exec - } forall -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_customcolor 1.0 0 -currentpacking true setpacking -userdict /Adobe_customcolor 5 dict dup begin put -/initialize -{ -/setcustomcolor where - { - pop - } - { - Adobe_customcolor begin - Adobe_customcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - Adobe_customcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_customcolor eq - { - end - } if -} def -/findcmykcustomcolor -{ -5 packedarray -} def -/setcustomcolor -{ -exch -aload pop pop -4 - { - 4 index mul 4 1 roll - } repeat -5 -1 roll pop -setcmykcolor -} def -/setoverprint -{ -pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_pattern 1.9 0 -currentpacking true setpacking -userdict /Adobe_pattern 14 dict dup begin put -/initialize -{ -/definepattern where - { - pop - } - { - Adobe_pattern begin - Adobe_pattern - { - dup xcheck - { - bind - } if - pop pop - } forall - mark - cachestatus 7 1 roll pop pop pop pop exch pop exch - { - { - 10000 add - dup 2 index gt - { - break - } if - dup setcachelimit - } loop - } stopped - cleartomark - } ifelse -} def -/terminate -{ -currentdict Adobe_pattern eq - { - end - } if -} def -errordict -/nocurrentpoint -{ -pop -stop -} put -errordict -/invalidaccess -{ -pop -stop -} put -/patternencoding -256 array def -0 1 255 -{ -patternencoding exch ( ) 2 copy exch 0 exch put cvn put -} for -/definepattern -{ -17 dict begin -/uniform exch def -/cache exch def -/key exch def -/procarray exch def -/mtx exch matrix invertmatrix def -/height exch def -/width exch def -/ctm matrix currentmatrix def -/ptm matrix def -/str 32 string def -/slice 9 dict def -slice /s 1 put -slice /q 256 procarray length div sqrt floor cvi put -slice /b 0 put -/FontBBox [0 0 0 0] def -/FontMatrix mtx matrix copy def -/Encoding patternencoding def -/FontType 3 def -/BuildChar - { - exch - begin - slice begin - dup q dup mul mod s idiv /i exch def - dup q dup mul mod s mod /j exch def - q dup mul idiv procarray exch get - /xl j width s div mul def - /xg j 1 add width s div mul def - /yl i height s div mul def - /yg i 1 add height s div mul def - uniform - { - 1 1 - } - { - width 0 dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - 0 height dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - } ifelse - width 0 cache - { - xl 4 index mul yl 4 index mul xg 6 index mul yg 6 index mul - setcachedevice - } - { - setcharwidth - } ifelse - gsave - scale - newpath - xl yl moveto - xg yl lineto - xg yg lineto - xl yg lineto - closepath - clip - newpath - end - end - exec - grestore - } def -key currentdict definefont -end -} def -/patterncachesize -{ -gsave -newpath -0 0 moveto -width 0 lineto -width height lineto -0 height lineto -closepath -patternmatrix setmatrix -pathbbox -exch ceiling 4 -1 roll floor sub 3 1 roll -ceiling exch floor sub -mul 1 add -grestore -} def -/patterncachelimit -{ -cachestatus 7 1 roll pop pop pop pop pop pop 8 mul -} def -/patternpath -{ -exch dup begin setfont -ctm setmatrix -concat -slice exch /b exch slice /q get dup mul mul put -FontMatrix concat -uniform - { - width 0 dtransform round width div exch round width div exch - 0 height dtransform round height div exch height div exch - 0 0 transform round exch round exch - ptm astore setmatrix - } - { - ptm currentmatrix pop - } ifelse -{currentpoint} stopped not - { - pop pop - pathbbox - true - 4 index 3 index eq - 4 index 3 index eq - and - { - pop false - { - {pop pop} - {pop pop pop true} - {pop pop pop pop pop pop pop true} - {pop true} - pathforall - } stopped - { - pop pop pop pop pop true - } if - } if - { - height div ceiling height mul 4 1 roll - width div ceiling width mul 4 1 roll - height div floor height mul 4 1 roll - width div floor width mul 4 1 roll - 2 index sub height div ceiling cvi exch - 3 index sub width div ceiling cvi exch - 4 2 roll moveto - FontMatrix mtx invertmatrix - dup dup 4 get exch 5 get rmoveto - ptm ptm concatmatrix pop - slice /s - patterncachesize patterncachelimit div ceiling sqrt ceiling cvi - dup slice /q get gt - { - pop slice /q get - } if - put - 0 1 slice /s get dup mul 1 sub - { - slice /b get add - gsave - 0 1 str length 1 sub - { - str exch 2 index put - } for - pop - dup - { - gsave - ptm setmatrix - 1 index str length idiv {str show} repeat - 1 index str length mod str exch 0 exch getinterval show - grestore - 0 height rmoveto - } repeat - grestore - } for - pop pop - } - { - pop pop pop pop - } ifelse - } if -end -} def -/patternclip -{ -clip -} def -/patternstrokepath -{ -strokepath -} def -/patternmatrix -matrix def -/patternfill -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternclip -Adobe_pattern /patternpath get exec -grestore -newpath -} def -/patternstroke -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternstrokepath -true - { - { - { - newpath - moveto - } - { - lineto - } - { - curveto - } - { - closepath - 3 copy - Adobe_pattern /patternfill get exec - } pathforall - pop pop pop - } stopped - { - pop pop pop pop pop - patternclip - Adobe_pattern /patternfill get exec - } if - } - { - patternclip - Adobe_pattern /patternfill get exec - } ifelse -grestore -newpath -} def -/patternashow -{ -3 index type /dicttype eq - { - Adobe_pattern /patternmatrix get 4 1 roll - } if - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 6 index 6 index 6 index - Adobe_pattern /patternfill get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop -} def -/patternashowstroke -{ -4 index type /dicttype eq - { - patternmatrix /patternmatrix get 5 1 roll - } if -4 1 roll - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - 7 index 7 index 7 index - Adobe_pattern /patternstroke get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_Illustrator88 1.19 0 -currentpacking true setpacking -userdict /Adobe_Illustrator88 73 dict dup begin put -/initialize -{ -userdict /Adobe_Illustrator88_vars 31 dict dup begin put -/_lp /none def -/_pf {} def -/_ps {} def -/_psf {} def -/_pss {} def -/_a null def -/_as null def -/_tt 2 array def -/_tl 2 array def -/_tm matrix def -/t {} def -/_gf null def -/_cf 4 array def -/_if null def -/_of false def -/_fc {} def -/_gs null def -/_cs 4 array def -/_is null def -/_os false def -/_sc {} def -/_pd 1 dict def -/_ed 15 dict def -/_pm matrix def -/_fm null def -/_fd null def -/_fdd null def -/_sm null def -/_sd null def -/_sdd null def -/_i null def -Adobe_Illustrator88 begin -Adobe_Illustrator88 dup /nc get begin - { - dup xcheck - { - bind - } if - pop pop - } forall -end -end -end -Adobe_Illustrator88 begin -Adobe_Illustrator88_vars begin -newpath -} def -/terminate -{ -end -end -} def -/_ -null def -/ddef -{ -Adobe_Illustrator88_vars 3 1 roll put -} def -/xput -{ -dup load dup length exch maxlength eq - { - dup dup load dup - length 2 mul dict copy def - } if -load begin def end -} def -/npop -{ - { - pop - } repeat -} def -/sw -{ -stringwidth -exch 5 -1 roll 3 index 1 sub mul add -4 1 roll 3 1 roll 1 sub mul add -} def -/ss -{ -3 -1 roll pop -4 1 roll - { - 2 npop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - stroke - grestore - moveto - 2 copy rmoveto - } exch cshow -3 npop -} def -/sp -{ -exch pop - { - 2 npop (0) exch - 2 copy 0 exch put pop - false charpath - 2 copy rmoveto - } exch cshow -2 npop -} def -/pl -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where -{ -pop true setstrokeadjust -/c -{ -curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll curveto -} def -/V -/v load def -/y -{ -2 copy curveto -} def -/Y -/y load def -/l -{ -lineto -} def -/L -/l load def -/m -{ -moveto -} def -} -{ -/c -{ -pl curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll pl curveto -} def -/V -/v load def -/y -{ -pl 2 copy curveto -} def -/Y -/y load def -/l -{ -pl lineto -} def -/L -/l load def -/m -{ -pl moveto -} def -} ifelse -/d -{ -setdash -} def -/cf -currentflat def -/i -{ -dup 0 eq - { - pop cf - } if -setflat -} def -/j -{ -setlinejoin -} def -/J -{ -setlinecap -} def -/M -{ -setmiterlimit -} def -/w -{ -setlinewidth -} def -/H -{} def -/h -{ -closepath -} def -/N -{ -newpath -} def -/n -/N load def -/F -{ -_pf -} def -/f -{ -closepath -F -} def -/S -{ -_ps -} def -/s -{ -closepath -S -} def -/B -{ -gsave F grestore -S -} def -/b -{ -closepath -B -} def -/W -{ -clip -} def -/ta -{ -_as moveto -_tt aload pop 4 -2 roll -} def -/tl -{ -_tl aload pop translate -} def -/as -{ -{ -0 0 -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg 2 div exch neg 2 div -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg exch neg -} -{ -0 0 -} -} cvlit def -/z -{ -/_a exch ddef -/_as as _a get ddef -_a 2 le - { - 0 _tt astore pop - 0 exch neg _tl astore pop - } - { - 0 exch neg _tt astore pop - neg 0 _tl astore pop - } ifelse -exch findfont exch scalefont setfont -} def -/tm -{ -_tm currentmatrix pop -concat -} def -/I -{ -tm -/t - { - ta sp - tl - } ddef -} def -/o -{ -tm -/t - { - ta 4 npop - tl - newpath - } ddef -} def -/e -{ -tm -/t - { - ta _psf - tl - newpath - } ddef -} def -/r -{ -tm -/t - { - ta _tm _pss - tl - newpath - } ddef -} def -/a -{ -tm -/t - { - 2 copy - ta _psf - newpath - ta _tm _pss - tl - newpath - } ddef -} def -/T -{ -_tm setmatrix -} def -/Z -{ -pop -findfont begin -currentdict dup length 1 add dict begin - { - 1 index /FID ne - { - def - } - { - 2 npop - } ifelse - } forall -/FontName exch def dup length 0 ne - { - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - { - Encoding 2 index 2 index put pop - 1 add - } - { - exch pop - } ifelse - } forall - } if pop -currentdict dup end end -/FontName get exch definefont pop -} def -/u -{} def -/U -{} def -/q -{ -gsave -} def -/Q -{ -grestore -} def -/` -{ -/_i save ddef -6 1 roll 4 npop -concat -userdict begin -/showpage {} def -false setoverprint -pop -} def -/~ -{ -end -_i restore -} def -/@ -{} def -/& -{} def -/O -{ -0 ne -/_of exch ddef -/_lp /none ddef -} def -/R -{ -0 ne -/_os exch ddef -/_lp /none ddef -} def -/g -{ -/_gf exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _gf setgray - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/G -{ -/_gs exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _gs setgray - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/k -{ -_cf astore pop -/_fc -{ -_lp /fill ne - { - _of setoverprint - _cf aload pop setcmykcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/K -{ -_cs astore pop -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _cs aload pop setcmykcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/x -{ -/_gf exch ddef -findcmykcustomcolor -/_if exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _if _gf 1 exch sub setcustomcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/X -{ -/_gs exch ddef -findcmykcustomcolor -/_is exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _is _gs 1 exch sub setcustomcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/dp -{ -dup null eq -{ -pop -_dp 0 ne - { - 0 1 _dp 1 sub _dl mod - { - _da exch get 3 get - } for - _dp 1 sub _dl mod 1 add packedarray - _da 0 get aload pop 8 -1 roll 5 -1 roll pop 4 1 roll - definepattern pop - } if -} -{ -_dp 0 ne _dp _dl mod 0 eq and - { - null dp - } if -7 packedarray _da exch _dp _dl mod exch put -_dp _dl mod _da 0 get 4 get 2 packedarray -/_dp _dp 1 add def -} ifelse -} def -/E -{ -_ed begin -dup 0 get type /arraytype ne - { - 0 - { - dup 1 add index type /arraytype eq - { - 1 add - } - { - exit - } ifelse - } loop - array astore - } if -/_dd exch def -/_ury exch def -/_urx exch def -/_lly exch def -/_llx exch def -/_n exch def -/_y 0 def -/_dl 4 def -/_dp 0 def -/_da _dl array def -0 1 _dd length 1 sub - { - /_d exch _dd exch get def - 0 2 _d length 2 sub - { - /_x exch def - /_c _d _x get _ ne def - /_r _d _x 1 add get cvlit def - _r _ ne - { - _urx _llx sub _ury _lly sub [1 0 0 1 0 0] - [ - /save cvx - _llx neg _lly neg /translate cvx - _c - { - nc /begin cvx - } if - _r dup type /stringtype eq - { - cvx - } - { - {exec} /forall cvx - } ifelse - _c - { - /end cvx - } if - /restore cvx - ] cvx - /_fn 12 _n length add string def - _y _fn cvs pop - /_y _y 1 add def - _fn 12 _n putinterval - _fn _c false dp - _d exch _x 1 add exch put - } if - } for - } for -null dp -_n _dd /_pd -end xput -} def -/fc -{ -_fm dup concatmatrix pop -} def -/p -{ -/_fm exch ddef -9 -2 roll _pm translate fc -7 -2 roll _pm scale fc -5 -1 roll _pm rotate fc -4 -2 roll exch 0 ne - { - dup _pm rotate fc - 1 -1 _pm scale fc - neg _pm rotate fc - } - { - pop - } ifelse -dup _pm rotate fc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore fc -neg _pm rotate fc -_pd exch get /_fdd exch ddef -/_pf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - patternfill - } - { - pop - fill - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_psf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - 10 copy 6 npop exch pop patternashow - } - { - pop - 7 copy 3 npop exch pop ashow - } ifelse - grestore - pop - } for - pop - } for -restore -4 npop newpath -} ddef -/_lp /none ddef -} def -/sc -{ -_sm dup concatmatrix pop -} def -/P -{ -/_sm exch ddef -9 -2 roll _pm translate sc -7 -2 roll _pm scale sc -5 -1 roll _pm rotate sc -4 -2 roll exch 0 ne - { - dup _pm rotate sc - 1 -1 _pm scale sc - neg _pm rotate sc - } - { - pop - } ifelse -dup _pm rotate sc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore sc -neg _pm rotate sc -_pd exch get /_sdd exch ddef -/_ps -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - patternstroke - } - { - pop stroke - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_pss -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - 11 copy 6 npop 3 -1 roll pop patternashowstroke - } - { - pop - 8 copy 3 npop ss - } ifelse - grestore - pop - } for - pop - } for -restore -5 npop newpath -} ddef -/_lp /none ddef -} def -/A -{ -pop -} def -/nc 3 dict def -nc begin -/setgray -{ -pop -} bind def -/setcmykcolor -{ -4 npop -} bind def -/setcustomcolor -{ -2 npop -} bind def -currentdict readonly pop end -currentdict readonly pop end -setpacking -%%EndProcSet -%%EndProlog - -%%BeginSetup -Adobe_cmykcolor /initialize get exec -Adobe_cshow /initialize get exec -Adobe_customcolor /initialize get exec -Adobe_pattern /initialize get exec -Adobe_Illustrator88 /initialize get exec -%%BeginEncoding: _Courier-Bold Courier-Bold -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Courier-Bold /Courier-Bold 0 Z -%%EndEncoding - -%%EndSetup - -0 A -0 O -0 R -0 g -0 G -0 i 0 J 0 j 1 w 4 M [] 0 d -71.478 625.522 m -359.478 625.522 l -2.016 w 0 G S -323.478 607.522 m -359.478 625.522 l -2.016 w 0 G S -323.478 643.522 m -359.478 625.522 l -2.016 w 0 G S -71.478 553.522 m -359.478 553.522 l -2.016 w 0 G S -323.478 571.522 m -359.478 553.522 l -2.016 w 0 G S -323.478 535.522 m -359.478 553.522 l -2.016 w 0 G S -71.478 481.522 m -359.478 481.522 l -2.016 w 0 G S -359.478 481.522 m -323.478 499.522 l -2.016 w 0 G S -323.478 463.522 m -359.478 481.522 l -2.016 w 0 G S -71.507 481.493 m -143.507 517.493 l -0.072 w 0 G S -134.507 517.493 m -143.507 517.493 l -0.072 w 0 G S -143.507 508.493 m -143.507 517.493 l -0.072 w 0 G S -u -404.529 562.5 m -404.529 557.513 400.487 553.471 395.5 553.471 c -390.513 553.471 386.471 557.513 386.471 562.5 c -386.471 567.487 390.513 571.529 395.5 571.529 c -400.487 571.529 404.529 567.487 404.529 562.5 c -1 g F -U -u -404.493 562.5 m -404.493 557.533 400.467 553.507 395.5 553.507 c -390.533 553.507 386.507 557.533 386.507 562.5 c -386.507 567.467 390.533 571.493 395.5 571.493 c -400.467 571.493 404.493 567.467 404.493 562.5 c -0.072 w 0 G S -U -395.507 571.493 m -395.507 616.493 l -0.072 w 0 G S -395.507 616.493 m -386.507 607.493 l -0.072 w 0 G S -395.507 616.493 m -404.507 607.493 l -0.072 w 0 G S -404.507 562.493 m -449.507 562.493 l -0.072 w 0 G S -449.507 562.493 m -440.507 571.493 l -0.072 w 0 G S -449.507 562.493 m -440.507 553.493 l -0.072 w 0 G S -u -400.471 635.529 m -400.471 653.529 L -386.471 653.529 L -386.471 635.529 L -400.471 635.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Courier-Bold 18 18 0 0 z -[1 0 0 1 386.471 640.529 ]e -1 (Y)t -T -u -474.471 557.529 m -474.471 575.529 L -460.471 575.529 L -460.471 557.529 L -474.471 557.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Courier-Bold 18 18 0 0 z -[1 0 0 1 460.471 562.529 ]e -1 (X)t -T -u -401.471 530.529 m -401.471 548.529 L -387.471 548.529 L -387.471 530.529 L -401.471 530.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Courier-Bold 18 18 0 0 z -[1 0 0 1 387.471 535.529 ]e -1 (Z)t -T -u -343.471 519.529 m -343.471 537.529 L -329.471 537.529 L -329.471 519.529 L -343.471 519.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Courier-Bold 18 18 0 0 z -[1 0 0 1 329.471 524.529 ]e -1 (B)t -T -u -190.471 490.529 m -190.471 508.529 L -132.471 508.529 L -132.471 490.529 L -190.471 490.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Courier-Bold 18 18 0 0 z -[1 0 0 1 132.471 495.529 ]e -5 (Angle)t -T - -%%Trailer -Adobe_Illustrator88 /terminate get exec -Adobe_pattern /terminate get exec -Adobe_customcolor /terminate get exec -Adobe_cshow /terminate get exec -Adobe_cmykcolor /terminate get exec -Adobe_packedarray /terminate get exec -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob05.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob05.gif deleted file mode 100755 index c0c24986f..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob05.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob06a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob06a.eps deleted file mode 100755 index 051fb0d78..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob06a.eps +++ /dev/null @@ -1,441 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: prob6106.eps -%%CreationDate: 7/23/1996 -%%Pages: 0 -%%DocumentFonts: Helvetica -%%BoundingBox:86 456 362 705 -%%EndComments -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] -/_Helvetica/Helvetica 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -3317 4579 3315 4624 3312 4659 3306 4694 3299 4728 3289 4762 3278 4796 3265 4829 -3250 4861 3249 4862 2692 4579 10 P -1 sg fill -gr -gs -3283 4545 3281 4590 3278 4625 3272 4660 3265 4694 3255 4728 3244 4762 3231 4795 -3216 4827 3215 4828 9 P -35 slw 0 sg str -gr -gs -2673.5 1762.5 m -2673.5 4575.5 L -35 slw 0 sg str -gr -gs -2673.5 4575.5 m -1736.5 5512.5 L -35 slw 0 sg str -gr -gs -2673.5 4575.5 m -5955.5 4575.5 L -35 slw 0 sg str -gr -gs -2673.5 2231.5 m -4236.5 2700.5 L -35 slw 0 sg str -gr -gs -2673.5 4575.5 m -4236.5 5200.5 L -35 slw 0 sg str -gr -gs -4236.5 2700.5 m -4236.5 5200.5 L -35 slw 0 sg str -gr -gs -3454.5 2387.5 m -3611.5 2543.5 L -35 slw 0 sg str -gr -gs -3611.5 2543.5 m -3454.5 2543.5 L -35 slw 0 sg str -gr -gs -4079.5 3793.5 m -4236.5 3950.5 L -35 slw 0 sg str -gr -gs -4236.5 3950.5 m -4392.5 3793.5 L -35 slw 0 sg str -gr -gs -3923.5 4887.5 m -3767.5 5044.5 L -35 slw 0 sg str -gr -gs -3767.5 5044.5 m -3923.5 5200.5 L -35 slw 0 sg str -gr -gs -5087 4115 5260 4410 R -1 sg fill -gr -/_Helvetica ff [278 0 0 -278 0 0] mf sf -5087 4323 m 0 sg (B) show -gs -4531 3516 4583 3811 R -1 sg fill -gr -4531 3724 m 2.78 slw 0 sg (i) show -gs -3611 2005 3663 2300 R -1 sg fill -gr -3611 2213 m 2.78 slw 0 sg (i) show -gs -3072 3220 3125 3515 R -1 sg fill -gr -3072 3428 m 2.78 slw 0 sg (i) show -gs -3593 5113 3646 5408 R -1 sg fill -gr -3593 5321 m 2.78 slw 0 sg (i) show -gs -2673.5 3325.5 m -2517.5 3481.5 L -35 slw 0 sg str -gr -gs -2673.5 3325.5 m -2829.5 3481.5 L -35 slw 0 sg str -gr -gs -2673.5 1762.5 m -2517.5 1918.5 L -35 slw 0 sg str -gr -gs -2673.5 1762.5 m -2829.5 1918.5 L -35 slw 0 sg str -gr -gs -5017.5 4419.5 m -5173.5 4575.5 L -35 slw 0 sg str -gr -gs -5173.5 4575.5 m -5017.5 4731.5 L -35 slw 0 sg str -gr -gs -5798.5 4419.5 m -5955.5 4575.5 L -35 slw 0 sg str -gr -gs -5955.5 4575.5 m -5798.5 4731.5 L -35 slw 0 sg str -gr -gs -1736.5 5356.5 m -1736.5 5512.5 L -35 slw 0 sg str -gr -gs -1736.5 5512.5 m -1892.5 5512.5 L -35 slw 0 sg str -gr -gs -5903 4141 6041 4436 R -1 sg fill -gr -5903 4349 m 2.78 slw 0 sg (x) show -gs -2934 1797 3072 2092 R -1 sg fill -gr -2934 2005 m 2.78 slw 0 sg (y) show -gs -2152 5304 2291 5599 R -1 sg fill -gr -2152 5512 m 2.78 slw 0 sg (z) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob06a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob06a.gif deleted file mode 100755 index 73e8af536..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob06a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob08.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob08.eps deleted file mode 100755 index cd269ece0..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob08.eps +++ /dev/null @@ -1,656 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad+ 4.0 -%%Title: prob6108.eps -%%CreationDate: 7/23/1996 -%%Pages: 0 -%%DocumentFonts: Helvetica -%%+ Helvetica-Bold -%%BoundingBox:104 434 474 669 -%%EndComments - -save -% Basic Definitions -/gs {gsave} def -/gr {grestore} def -/t {translate} def -/sc {scale} def -/sg {setgray} def -/srgb {setrgbcolor} def -/ff {findfont} def -/mf {makefont} def -/sf {setfont} def -/slw {setlinewidth} def -/str {stroke} def -/slc {setlinecap} def - -% Polyline operators -/pl % x y pl x y -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where - { - pop true setstrokeadjust - /c % x1 y1 x2 y2 x3 y3 c - - {curveto} def - /C /c load def - /v % x2 y2 x3 y3 v - - {currentpoint 6 2 roll curveto} def - /V /v load def - /y % x1 y1 x2 y2 y - - {2 copy curveto} def - /Y /y load def - /l % x y l - - {lineto} def - /L /l load def - /m % x y m - - {moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def - } - {%else - /c - {pl curveto} def - /C /c load def - /v - {currentpoint 6 2 roll pl curveto} def - /V /v load def - /y - {pl 2 copy curveto} def - /Y /y load def - /l - {pl lineto} def - /L /l load def - /m - {pl moveto} def - /dot - {currentpoint transform exch 1 add exch itransform lineto} def -}ifelse - -% Rectangle: left top right bottom R - -/rectangleDict 4 dict def -/R - {rectangleDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - right bottom m - right top L - left top L - left bottom L - right bottom L - closepath - end} -bind def - -% Oval: left top right bottom OV - -/ovalDict 10 dict def -/OV - {ovalDict begin - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /xrad right left sub 2 div def - /y yrad top add def - /x xrad left add def - x y t xrad yrad sc - newpath 0 0 1 0 360 arc closepath - 1 xrad div 1 yrad div sc % Reverse scaling. - end} -bind def - -% Rounded Rectangle: left top right bottom ovalwidth ovalheight RR - -/rRectangleDict 10 dict def -/RR { - rRectangleDict begin - 2 div /hvy exch def - 2 div /hvx exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /nleft hvx left add hvx div def - /ntop hvy top add hvy div def - /nright right hvx sub hvx div def - /nbottom bottom hvy sub hvy div def - hvx hvy sc - newpath - nright nbottom 1 90 0 arcn - nright ntop 1 360 270 arcn - nleft ntop 1 270 180 arcn - nleft nbottom 1 180 90 arcn - closepath - 1 hvx div 1 hvy div sc - end -} -bind def - -% Arc: left top right bottom startangle endangle A - -/arcDict 12 dict def -/A { - arcDict begin - /endangle exch def - /startangle exch def - /bottom exch def - /right exch def - /top exch def - /left exch def - /yrad bottom top sub 2 div def - /y yrad top add def - /xrad right left sub 2 div def - /x xrad left add def - x y t xrad yrad neg sc - 0 0 1 startangle endangle arc - 1 xrad div 1 yrad neg div sc % Reverse scaling. - end -} -bind def - -% Polygon: xn yn ... x1 y1 n-1 P - -/polyDict 1 dict def -/P { - polyDict begin - /numOfPoints exch def - m numOfPoints {L} repeat - end -} -bind def - -% Pattern fill: fR fG fB bR bG bB [p0 ... p7] patfill - -/fillDict 11 dict def -/patfill { - fillDict begin - gs - /fa exch def % Grab pattern. - srgb % Set background color. - 17.3611 17.3611 sc % Scale back to 72 dpi from 1250. - flattenpath pathbbox % Get path bounding box. - /ury exch def - /urx exch def - /lly exch def - /llx exch def % Get edges. - clip - newpath - llx lly m - llx ury L - urx ury L - urx lly L - closepath fill % Fill in background color. - srgb % Set foreground color. - /w urx llx sub ceiling cvi def - /h ury lly sub ceiling cvi def - /bytes w 8 div ceiling cvi def - /patstr bytes 8 mul string def - /row 0 def - /patproc { - 0 1 7 { - /row exch def - row bytes mul 1 row 1 add bytes mul 1 sub - {patstr exch fa row 8 mod get put} for - } for - patstr - } def - llx lly t - w h sc - w h true [w 0 0 h 0 0] patproc imagemask - gr - end -} -bind def - -% Outline string show: string olshow - -/outlinedict 1 dict def -/olshow { - outlinedict begin - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - gs 1 sg cs show gr % Paint the char white and move back. - cs true charpath - currentpoint str m % Draw char outline. - } forall - end -} -bind def - -% Shadow string show: string shadow-x shadow-y shshow - -/shadowdict 3 dict def -/shshow { - shadowdict begin - /shady exch def - /shadx exch def - /cs 1 string def - { - cs 0 3 -1 roll put % Stuff the char into the string cs. - currentpoint - shadx shady rmoveto % Draw shadow. - cs show m - gs 1 sg cs show gr % Paint char white. - cs true charpath - currentpoint str m % Draw char outline. - shadx 0 rmoveto % Move to next char position. - } forall - end -} -bind def - -% Text Encoding Procedure -/Z % array literal literal direction Z - -{ -pop -findfont begin -currentdict dup length 1 add dict begin -{1 index /FID ne {def} {pop pop} ifelse} forall -/FontName exch def dup length 0 ne -{ - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - {Encoding 2 index 2 index put pop 1 add} - {exch pop} ifelse - } forall -} if pop -currentdict dup end end -/FontName get exch definefont pop -} def -%%EndProlog - -%%BeginEncoding: _Helvetica Helvetica -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica/Helvetica 0 Z -%%EndEncoding -%%BeginEncoding: _Helvetica-Bold Helvetica-Bold -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Helvetica-Bold/Helvetica-Bold 0 Z -%%EndEncoding -gs -0 792 t -0.058 -0.058 sc -2 slc -gs -2048.5 3637.5 m -2048.5 5981.5 L -35 slw 0 sg str -gr -gs -2048.5 5981.5 m -6580.5 5981.5 L -35 slw 0 sg str -gr -gs -2048.5 3637.5 m -3611.5 2387.5 L -35 slw 0 sg str -gr -gs -6580.5 5981.5 m -7986.5 4575.5 L -35 slw 0 sg str -gr -gs -7986.5 4575.5 m -3611.5 2387.5 L -35 slw 0 sg str -gr -gs -4236 4262 4861 4887 OV -1 sg fill -gr -gs -4236.5 4262.5 4861.5 4887.5 OV -35 slw 0 sg str -gr -gs -4236.5 4419.5 m -5330.5 3325.5 L -35 slw 0 sg str -gr -gs -4704.5 4887.5 m -5955.5 3637.5 L -35 slw 0 sg str -gr -gs -5330 3168 5955 3793 OV -1 sg fill -gr -gs -5330.5 3168.5 5955.5 3793.5 OV -35 slw 0 sg str -gr -gs -5330.5 3325.5 m -5955.5 3637.5 L -35 slw 0 sg str -gr -gs -4236.5 4419.5 m -4861.5 4731.5 L -35 slw 0 sg str -gr -gs -4236.5 4419.5 m -5330.5 3325.5 L -35 slw 0 sg str -gr -gs -4861.5 4731.5 m -5955.5 3637.5 L -35 slw 0 sg str -gr -gs -4704.5 4262.5 m -5798.5 3168.5 L -35 slw 0 sg str -gr -gs -4392.5 4887.5 m -5486.5 3793.5 L -35 slw 0 sg str -gr -gs -4548.5 3012.5 m -4548.5 3637.5 L -35 slw 0 sg str -gr -gs -4548.5 3012.5 m -4392.5 3168.5 L -35 slw 0 sg str -gr -gs -4548.5 3012.5 m -4704.5 3168.5 L -35 slw 0 sg str -gr -gs -2829.5 3325.5 m -2829.5 3950.5 L -35 slw 0 sg str -gr -gs -2829.5 3325.5 m -2673.5 3481.5 L -35 slw 0 sg str -gr -gs -2829.5 3325.5 m -2986.5 3481.5 L -35 slw 0 sg str -gr -gs -3298.5 3012.5 m -3298.5 3637.5 L -35 slw 0 sg str -gr -gs -3298.5 3012.5 m -3142.5 3168.5 L -35 slw 0 sg str -gr -gs -3298.5 3012.5 m -3454.5 3168.5 L -35 slw 0 sg str -gr -gs -3767.5 2700.5 m -3767.5 3325.5 L -35 slw 0 sg str -gr -gs -3767.5 2700.5 m -3611.5 2856.5 L -35 slw 0 sg str -gr -gs -3767.5 2700.5 m -3923.5 2856.5 L -35 slw 0 sg str -gr -gs -3689.5 3715.5 m -3689.5 4340.5 L -35 slw 0 sg str -gr -gs -3689.5 3715.5 m -3533.5 3872.5 L -35 slw 0 sg str -gr -gs -3689.5 3715.5 m -3845.5 3872.5 L -35 slw 0 sg str -gr -gs -4079.5 3325.5 m -4079.5 3950.5 L -35 slw 0 sg str -gr -gs -4079.5 3325.5 m -3923.5 3481.5 L -35 slw 0 sg str -gr -gs -4079.5 3325.5 m -4236.5 3481.5 L -35 slw 0 sg str -gr -gs -6111.5 3793.5 m -6111.5 4419.5 L -35 slw 0 sg str -gr -gs -6111.5 3793.5 m -5955.5 3950.5 L -35 slw 0 sg str -gr -gs -6111.5 3793.5 m -6267.5 3950.5 L -35 slw 0 sg str -gr -gs -5330.5 4575.5 m -5330.5 5200.5 L -35 slw 0 sg str -gr -gs -5330.5 4575.5 m -5173.5 4731.5 L -35 slw 0 sg str -gr -gs -5330.5 4575.5 m -5486.5 4731.5 L -35 slw 0 sg str -gr -gs -5798.5 4106.5 m -5798.5 4731.5 L -35 slw 0 sg str -gr -gs -5798.5 4106.5 m -5642.5 4262.5 L -35 slw 0 sg str -gr -gs -5798.5 4106.5 m -5955.5 4262.5 L -35 slw 0 sg str -gr -gs -5955.5 4887.5 m -5955.5 5512.5 L -35 slw 0 sg str -gr -gs -5955.5 4887.5 m -5798.5 5044.5 L -35 slw 0 sg str -gr -gs -5955.5 4887.5 m -6111.5 5044.5 L -35 slw 0 sg str -gr -gs -6423.5 4419.5 m -6423.5 5044.5 L -35 slw 0 sg str -gr -gs -6423.5 4419.5 m -6267.5 4575.5 L -35 slw 0 sg str -gr -gs -6423.5 4419.5 m -6580.5 4575.5 L -35 slw 0 sg str -gr -gs -6892.5 4262.5 m -6892.5 4887.5 L -35 slw 0 sg str -gr -gs -6892.5 4262.5 m -6736.5 4419.5 L -35 slw 0 sg str -gr -gs -6892.5 4262.5 m -7048.5 4419.5 L -35 slw 0 sg str -gr -gs -6580.5 5200.5 m -6580.5 5825.5 L -35 slw 0 sg str -gr -gs -6580.5 5200.5 m -6423.5 5356.5 L -35 slw 0 sg str -gr -gs -6580.5 5200.5 m -6736.5 5356.5 L -35 slw 0 sg str -gr -gs -7205.5 4575.5 m -7205.5 5200.5 L -35 slw 0 sg str -gr -gs -7205.5 4575.5 m -7048.5 4731.5 L -35 slw 0 sg str -gr -gs -7205.5 4575.5 m -7361.5 4731.5 L -35 slw 0 sg str -gr -gs -5373 2865 5599 3160 R -1 sg fill -gr -/_Helvetica ff [278 0 0 -278 0 0] mf sf -5373 3073 m 0 sg (m) show -gs -3107 3741 3298 4036 R -1 sg fill -gr -/_Helvetica-Bold ff [278 0 0 -278 0 0] mf sf -3107 3949 m 0 sg (B) show -gs -5486 4210 5538 4505 R -1 sg fill -gr -/_Helvetica ff [278 0 0 -278 0 0] mf sf -5486 4418 m 0 sg (i) show -gs -5173.5 4262.5 m -5330.5 4262.5 L -35 slw 0 sg str -gr -gs -5330.5 4262.5 m -5330.5 4419.5 L -35 slw 0 sg str -gr -gs -5486 5981 5489 5899 5493 5853 5500 5806 5508 5760 5519 5715 5531 5670 5545 5625 -5561 5582 5579 5538 5599 5496 5601 5492 6580 5981 12 P -1 sg fill -gr -gs -5452 5947 5455 5865 5459 5819 5466 5772 5474 5726 5485 5681 5497 5636 5511 5591 -5527 5548 5545 5504 5565 5462 5567 5458 11 P -35 slw 0 sg str -gr -gs -2048.5 3637.5 m -6580.5 5981.5 L -35 slw 0 sg str -gr -gs -4765 5547 5442 5842 R -1 sg fill -gr -4765 5755 m 2.78 slw 0 sg (angle) show -gr -%%Trailer -restore diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob08.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob08.gif deleted file mode 100755 index 70b68692d..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob08.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob12a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob12a.eps deleted file mode 100755 index 810627340..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype61/prob12a.eps +++ /dev/null @@ -1,846 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: set12.q6.create -%%Creator: Create -%%CreationDate: Fri Jun 23 12:10:54 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 72 465 488 725 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(YY]R%jDN,q6,.Ds/#)*1($m-(3p9:IVUcENuCU\F68Eel -% 6]4Q[*B2k!\6aNQ?XNQu/DQ>pEJF6Yet]'o&M7SF4Cfu)k_A"u1'35EXTTnCC?$lS[,`/m9[ -% 7fF5afRQ>:0Fg6HCI%sn27Ug/:bn8]H[G@/'GeO2+S8rm!V]9d'6&-?tdhP8?G -% N`b]h/utM(Z':ZQ?QY]la7NPHud:u?\naPk9#*P$:l9K"u`D&K*XXX+ak#)G[Z@&ETeR%pPm -% 7_(abuU,)\(j-mKNb_>o0!#.:/"!^-;bU^'7j"$du!qOo0uF?'Zh=]/"oD[k)ed'A,aUl%i$W[".[CP%3p.32CmJ]5+V7 -% [[V6b/#U('k.@hR_%$,lhL#hbW,r7hWpk1c48^K8OX?OL/E4maZIuC$euPC9:0:;Z_\gh;"u_-c%a\XTO!mnV-a-L,"o)!0ps-":6f5+NR -% t?!Vf&/16@>Y8>6r.)$Ci:ci>7`J-.B.$eMB^JD;_sG@L38)&H5JAh\iD5N#foIZVIM9i3L= -% R%[]@fZ-5Q:lo[9!"fFo%9&30#cr,Z&=2NA;[gO+R'b9gWQ:l6CpAns&-*T934@_@d3#?4@o -% R+uPlSaC"@3:r/^iXR;!bHJ,ZquKKRh33*\rj1Cf2LQoLL"R&5-H$Ud$>Sa\:u_PLP3C,=jJ^=&X[e.NG4AkQD.i17NfM_DVCJ7&jcSS28%178DuXVM1U&U^JURdF(:m1o@ -% W*-l':icsJ\1Qt7g\7$7;b8jL0^Uo;38=R&cb"CM0i_9F/SQ`Tp1)mae9LCV-cs^ -% @SF&V.P;F&:aIIXVE3+"_""FXaQcBSqCF_D<2PPKku`Wf9!dAN>Wa%d4D>-i[he\AEqKZCQe -% G*13]*j`7EdL`qH'b5Q)dIRC05C5:2Jb9Z+kp->1k[afa?8cKMCh<1:u4mVWFsVIAg+6/((? -% uQ6HQI_@Y.77lHm%.=/?d-L_S&('rh%03G?a(ct+;W\^sO>\cKZBZ*"9_?C!S5mqpAf?Q/DZ -% [+bZEN)Q-+/Q=GI@LHqE%lr2j8]S[kV"i-0b%6j^^%C]Jp+106Ynn`>M^rDQ1X#:*k7EN('^ -% sG5tP56O`D$0jfa.7/78Mu(r8Psm3"*1:_rpD!5M$W(kip_`>"Z5Q$@h-=Y_6-?mQEe+@-CN -% =iIcSJ?4`ijB6J9>6f5ZalMjZO+Y)OJ_%-?9muJh5q?:]e(:dg(r2.Z0I/eh"VLk:^lT:6A@ -% *>E]9)@p3ZksN%F\@j:`cX)M43QV-g&RAbq^u^*8_]q[]3d`6qSaZ,X5Z?]g#''Jea.'mOFX -% Mrie1=T,c@e%+Wbg'gSSJ)sH1*QI$26057Q"is6'm%p6AnW(B6bZ/Q8=&AE7&lO;n/FumcsJ -% 9;uFrc1'lhJe:hcd&29mi@)WZY#f6WiXYh8F)Q11GDQi -% Rm6XY6@.u+[Y!fm4N5rVcr2*Nic3H:4N'S%R[L4]a^EI]29j&tBW8iWDb$iis^/T5fL=X1In -% EM[1l&0\h)AhXlbaJ':Na@$.T&.#8#gu4)al]]1GEB/*W'WD;n`E?Z,^fH$e6coN3Se(lnVu -% 1]I?KAY<>&dl@gXe,!-#V=b'd7gEhH!ZlWF>/H]Z+46?j:FJE?9p+m(DNB^9tn7:@T7Gp?6b -% PSWnjIL8I2+hFog"H`b"uXI%N#>VF%II9o@8PEkKTNqqA_SbAkWAZ/[LHdCYgf;d<0bB@MUh -% D;DAT(ALEIQ+a4"(1[o2d,,?@&r[Z5,9MR*pS6@3jKdPAOG?7l__XH*%W3*T\BY>^$E>.)(U -% #Qg2feP3'H7fo8aO:)j3,J\Zj+UHVa1bJ!\Q2s0GpDG:0( -% &HZM\"ZOi4IKqi?VG*7QV.WHnl$FK=efXkLmtq$BXM52CVZ=fTI@B8G<;0]%:]TJ;4/B7k!2 -% +jG:ed3_IY.V+.'NfXA:YSb>:g#.D38FE0n8=bG$R"NSlBt2pNmX2!aCb;//V*?n16:RI.i: -% %$+PLodsqI,"OFpfruck,#R$C=$Ete/LCjfHn17/pJS,"8Xn?(A-@I12I4(D3^@u&&fF(,-K -% [D%Ncf0X8pjEToK8!nS3VZ&Z'a-\pK7m'MI3aJ63!aI?"FRui9Gdb)."YAqIoCTAeb;u_[W_ -% D0Kj1L0G^p$-G_!RtL(JK^'P1-(Y_GF?DDZ,R8O\LUadJ,`$0H#C='R;]c2Fb$Y5) -% A;UF2"E*-%M&9`]-rl;k=Gj#DMT\NpAF -% PJJ'oRDrM\Qs,12r.h3!cBp!mKj/6Jr#R&<%dbM8UfrT_NfRG_Pm&MCu]'go(B[!0%8_J7Zf -% PBG^_$J;q+-s;Z/Q]iu2P!Zqd4:m]730VfnP9,7ZkQXB#*^C$XdH<*mLQ2^5MX.2LI_^nE -% Gooj3NFtY=(6no$Bo6$7O*VoO/AMA_f*F\c![<_mkI)t7fU$(CQdkS7kVihJ(Ci3*;@Ti0\'UR=eWHPop2HJ,sjBImIe -% 1I&V!2)1$k4P+VQ"R32VH5QR`bO)>g8$6Y1[^`t$nE[E.kIUu^FLB`=&$37jGLt-]D#]V)'R -% p]rhRsC6Q#Abi>'oX78f"%*d-[s,aGop[JFV+o!n1;P/EnH3b2KbF8LhTju!2;.P5;7-[&/? -% nHERkg(R=G8_B+*%[TM3EtJ(J,m(3j!q#^NW[\9W[9fpP=sZFrpL2sJqpY#?\HoB9]&\:tYd -% %N-m@i,OAXScor5%G(W:LC>oi:uHpbi:,Y5%R*ENAIm>l6\5?iE.`cMg-C:D$4[=DE3>&V=W -% 3m^_1io+Q,2/o'XBWOB4H#f64sVjf?$U;>k1i@JUdee+C].eJL503e^fqRe:lM=!-#fA?Toa -% DfO7r=jqqX$A@>WRT7o0ACSmf&)JcLD!Lmo4fnPu6]Xcu?RDB=k7rcQq[p4"K8_7IBKG>t]+b9u8.&r%F"t1[PSe? -% i'(FjIA+r;lKk_>&4eS)s^>iZ1.N]el]UEMKPd)6V$Kos@mB[CbHYCSAr;#sBr>=Q%i/^VFV -% @3G5A:uGe\#mj#bK%1P:"OI46BKaHQ>>^u'(R8];g"0S:EiBmc;=9?D!-Ssk^g(B#FYB!\,+2BA],5e6?F>>?^rhN)uE"FaA03EMTRK>' -% (aE_lQB49q,]$lM*W_pb"H^&UjnTC+M>Poo$L"U)"f@8IC -% c,::]\"uN%t9q!!nRi1II:WQBCF2m,XkST1RfXW0"]Mkn#OiL=fJWtI+jW=1*d8K\CTr,?8+ -% 9.!b"u61D$tujd"6%$"3)Is9F"j:)`*`cVR_]GJ'VGia+:"ph!=iA`+U?EQM(r_<(j+<&(WC -% &WVQpeoF>O.\a<;"13((!;'r4HPJ4TZ!&hsOYL'bjqB`PXc#2?UQ`mDpahZ+fnA2")uC;tp< -% 8g0Wu_a6HlLH*;1iLad#..(+aLYCFTU;ZZ@8"jROm@i#Afg)/Ti^Z4,j:iT184??\0oH(d@M -% ccr`\H14(hEhjq`m.`(nAoUq"4Ot)/+GYQ="pB!l"$+CuL-YlTJXI(,4!Nn -% 0I6gboLnj%\)!@7sU8!)6cq9SnqF(8dgU#ZSO'rpTnhpY//_HZ+Pq-%\MU%.G^68,A -% ."\ulkCLW!(C?t&J$TUVAuNO8VI=Rbs>4[-Q*!.L9<(, -% /1'";=uONhOih@639n[rJQ/!@Jq4B8RER=U'LP_K@n\X7"#5Po3[_TA%0iUN*7R5Q3H,O<;( -% C3;X9Y]X*,7Eb1Ent+oiOP"-aU8#'6V/8?'XUROa`upXLnW893M]KZV!H2=\0]mGX3Y;`gE! -% l"AK)i&npZXZt<^Hd`JI-BHEe#JF+UrH/!untnPYSG.' -% *^-U!=Z3ElDDOEP+rXk3HuAkD1WO?pjn\3@0%VN+CA0=?i6),]_Kd=Ito2d+T<><5nM\as&3 -% ,%>=V4b<'g]7%=eO':u?WN"aG:FY9b'!V%P%>&dM`^r=o/k[P/52$uc3"br,hD_jG`g*h=a5 -% G<5/pNl*5!6mi$Iioq*(\^6U/!2`t0lh4Aofa[@g)cp:0I('iDnF-Y?.pr/<(9@0m0oFMU@c -% I**_>k@UKaSm\b0ful2P-:g%Bs=K;tpT=`j!Ma3'&<@bJPGlfSHSE_%TUBGhck(MdIIa2=!m -% ePcO=WDCg;XpUS>/#'*nK7lhi,DoDo;[$$h.AL@Qdb!bg?d\qP*).+3'g>+O/]INt9Mj_f\A -% [Gb4C['bk0[an=o76(ai5j`bIX),UT>r9A3*5ml5KN>m2pATqIlPB)Y-j,Z5jPGF\@`[JQliChl+S!?ABLMqli-GC.lFT!\]eV<"f,2A!g2/T.1#gY!Y4*t$=GqQ,)/ -% 8*:fDrp]=U=OGpe2OV.g9ln;FRHefPTbkZK&T6"#p+%mU#CH)I2E#s# -% JI":><2bhL=]3\(:'Gk[U7?+-U$?N1KV-$jFNO3O\BNC-rq'd3;?^` -% :6$)]q:e_;6P(nF0=c.G<5%.UUQ;:/p+;+%I?RH*n^S.G(r@C&@*&OXXAUb>I1No\n9aQIr4 -% r%%pR;EG9,Fp$rKDh -% i+3L2ji7Eb3gBDHD,9[XY]f5[ -% u1Ha@?l"?:F&k_*i>EF.43F=1p?#^f[OJW#nL!EO8a[X!M'F4!I/4?/(I-(Vl,n(0Gs(C1&/IgbF=)*fH#J/+C^!"V&/JC8+bEECtS@:i=6EE90o:2(5b0" -% KGH8$IAoR!"sAR)V)Z1!T79$5U7M''pK70.ptP>k^_c,D?/-G<:bh]QopMK4FnUV=A]A*O93 -% eXI%Nc>\%$lCA!8h"LHlJ/(I07^-jj'"%qf=%!t^Gg1QG:@u5[1-3.\X0klJTG= -% )X%".0"2,_Tlu0tDtk-[^inQ%%t_^dsl9H'ihi$At79N1"G:_^s)5!CS+,Cn4V)b!2Hg3S\3Ltt.T0aG%6n4s2MPN`;Sc?5`C=tBLjJSCWV -% 1Erfj-HST)P;i>Q\q5=oa.LH+Js]>WF\YiQ.i$MlD@!PV_m=e(MX*^B;#>;";k=:TUM^GRA) -% 4jLs?a0E(U5H3g2YJVo-*?D!@ZJ$E5oJWCp8#W^,::O(tIV^oFh6WMTupQeJ<4 -% \uARWXb+]beS:g\-E729W\ik73>`%#WiGD8Y28ECj_CcT.B?-cXE#4b[$n'i\?+N:V^r1WSS -% Fu\C8*a=U"Lo?5.[]K3i$8sY@]haBmQ6.RAgY=WU*6ZPc(Ss/"\tnC%c:+q7qIT^=S -% AXT&)crQMR@MIRS6K4+':ZCW3M0m+Z=W?Ueqos`.C9#a[7jc14k#^)H_0K4Sn-TaI_2up40N -% D2[6!!Lom*0\OIt:\Z/%FHFK;;!M7:c!TKg&r6Hc#3HDb>4V)0WR?.Q(tVlKjFX.$Z.S/\sd -% f;HS;U39.US%H)Cg:7j;Yg3ZT,n$uMlC;FD\nV&NAm;Hn$bJOcXY:]nN8't<9!]\1Xs=CX-; -% 0%@MmeHL]Oi\,?1YA&HFug1\)@XtFGm-j2m=N1X(aMj#@"e-)81h%\R255[d1T9$bNSmZ%'s -% /e%<&mgTn_tZ.W?:rmSC4>IVeVWQe)4cTAnHCVTM!^DM=$fZUQ!99rfJ\D7On2B0@i9>27%0 -% KknK]#q&kMS?!XZ3q&OX*^oRlaq#W]5uT.mq]`/Ha8*I[d/8WpIi$l)nbo;]_s@=So^cGo.eDb_*C\s'l:ACqPN:WY]SU1L59D3;g_ll_m]$Y1bt:rd)Nc4L.Eb_ap<09t\)Sgq,%@Wqq(U;;B(;,Jj=.`82H6)b -% d:r$c5)CTU)XOQts'*/%%uR[8#D?5*H;*+:!`X"G,J`K:i7aO9S&`!6nYa]PAh[&-[g5ujbtY:di5pWSEUb06-Tc[h/\=Q.R+Xj/D$d(\hkK?TMp*=*M,cp%BBaD9,\ -% gjT9][iWNh7.L@\@0ZklXop!mo+l,D7&(lZte:*r=k2HD9RYIR,)VfYj]5Za/0`GL&_5l"ic -% iK5(LH*gOUVmd>SsPJ2(Q*"/tk-&>;a*?Rq&jQ3/MJL=6h8N-FpZ]q--,p-HB5IE\>>-SBd+ -% Pj6TrZmHi>Zdf8qD>o@^)h3U%@N9Ea2"t6ld7q*<5F@_1*I$@k8&8u9&83,2KU%?0Hi1R$=F -% ?,pG$ejNFdAYW.0AF7H`I>6=s+uk6G_!U7AE`bUX80*HaBR&HYh0g)G+QEV -% ,7X=/3g"1QMW<`K^o=aqYN:5;A@uZa"mDM -% .*DTVMd0:[1l_A -% G"r3VGM7JGe[G%)>L561?")/3jTY+cd&mS4"P/iPS -% PkTGh.92SOj*cu3ePuWA8&V)3n5d1P1J\3-k$PX`]X,.5]]%XSF7pJV.erXLZ(,Efn_\c\G_ -% 1`kNQiR:*@CS$^)K)&7L)Y6]+U/ljQk;^DF52>o*$?A$"rh_FAQ9R/oUu7$D1j(Q)/RY"_rR -% (i/r/Qr\37hNCqKfCh`JKqO:4"r^r7/pQ/Mr5Y5_ct)72mtq&!QL%Ys.VE'X^M2oIEFn7p-# -% KCF,]4bN(g0j5M+S1a?[2VU561B`(MJ=)K:'FrbQ0BtYeUB.5T$R -% lK.SuAX@3],:Ti^K"%96M#:suU%k&3mrg3sV(lR;T#>r;FAoNACr1FTr`i282n:a>rTr6>(/ -% =&Gs>;+_B"M@)/m_#Cu!=2(0"<`7%B[&r"l'e]l"?%Zc/J-;`)qn\]"1G`LDK;MAh=)2i^%L -% c2Ja8pGglM^uJ:Iu@BL<["ciPZ/TlP%t*T\i-3RBA+F.a0ektL8!2PdJuA>%cE@Q1pM`K(J; -% bFR_(^cUESO*U$^*Zec54]TKE#;T+%lYN4drkY7ndo.P%BRg1beps%"]E'T]WO]R-TmuW+!u -% LA(IuIIgkB\$[Kh)ookN+"/nFK[lI$GcCgM/SO,@$:f'Kc"qp;D -% 78Jb;=15E0Z"2]B6[DDkj\gFP9dr\iVp]#)eYVeg.5PUOL,nb,VU?/d(p&S=.Pfp>#0>dHKM -% '`PEK-K!Hs#$eMT2O!1QLq"UY_r,8#u%iX8(K85.s!LItj50N$N3&#^Y&oVDY'M>A-Aeq+sr -% V:9G>F-lu9cdCUUKUO!*CogJ(HP2]o:*$srZagY/Wp=61bN+k*@f@\-4+drE7JJ]f9djcj*2 -% 7-2<+GsLKi&.]79/!f"!W*dXN/H?X3HO:h!3G1emPOE4n!N%L2:c_f5b-gNkI<63%`4RED*W5Z<_ -% ?[8P8Rs_EB>/f;,/sYbj2)UBfS?pBPr4+m,.PTM8&\2^qgQd5n,8j!/$@E_?GNF#[k$4&O6mN)#&X>A,49;.Z@JW$@mgA^i0jtp -% ,*;)AO@mG$=f_E25s<0C/qUoeZ^B0Z%1Zr+&L_D9/MgC6tJh9_/)23jE)\14U=l*@FV-V5dO -% PJl;u$[:f$daPYjDDbj;pppD3J*g17I,\Z+B'3;9`/4c!(D)qmQ=G(Ql6m9or:gAn`^W*7bh -% ;oL;&%'5*^?:,72`'FAL0S'L:[?goEG2>f]o#18#X+"[h=<.pja$["K@kgO/9gg/DPM#t>e0Q;mL"Hj6F!3c\u;0TT9i_tFS87I<_ZF,[("fq`8ED$dl5g9P]pV3I2kK*J-G -% @Jtnf;q:j5S/J$l$gO^kI9\RmL8"O%X8nkM=?hrB%$mEpr,2ki=M?cjEF4Hf184[7hEH<1>q -% 6=1EA2r7qWs9!FQc"@)-a*Z;aoKjhMat%Nn%>#c<]=2Mcp+?VRk[F%bJDqA-taAa"k5)9Ou^ -% f9@%^?DBA]@_J@8Q7B&6MmWe"_TFj*-s#5_)fj=I0e++:ndIej(/j#j7irBE -% 3&sQS=2(GJCU2U%`Xa_K+RT<5?q4Jae1H-RYFiFc_q8!jHaVeoRb[F5dsWOJ!@iF**oW)CP8 -% #_3Z[i`c&iYDjKsGa`\rT$7u@#7JPsO>j.[ [0 0 0 0] 450 513 /Helvetica [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 -68 -20] dotx -(fig 1. ) [10.007996 0 7.992004 0 20.015991 0 10.007996 0 20.015991 0 10.007996 0 0 0] 444 496 /Helvetica [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 -68 -20] dotx -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype64/prob03v1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype64/prob03v1.gif deleted file mode 100755 index f3f989b7e..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype64/prob03v1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype64/prob03v2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype64/prob03v2.eps deleted file mode 100755 index e56cdd29f..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype64/prob03v2.eps +++ /dev/null @@ -1,550 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Sun Nov 22 13:54:17 1992 -%%For: kashy -%%DocumentFonts: (atend) -%%Pages: 0 1 -%%BoundingBox: 0 0 419 318 -%%EndComments -%%BeginDocument: /usr/lib/NextStep/printPackage.ps -%!PS-Adobe-2.0 -%%Title: Printing Package -%%EndComments -%Version: 2.0 -%Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll - sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll - exch sub dup 0 lt{pop 0}if setrgbcolor -}__NXbdef -/currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {//findfont exec} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {//findfont exec dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXProcArray 5 array __NXdef -/_NXChannels 0 __NXdef -/_NXTotalBytes 0 __NXdef -/_NXDoImageOp{ - 1 index{dup}{1}ifelse /_NXChannels exch store - _NXChannels 2 add 2 roll _NXProcArray 0 _NXChannels getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /_NXTotalBytes exch store pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - { 0 1 _NXChannels 1 sub{ - _NXProcArray exch get exec - length _NXTotalBytes exch sub /_NXTotalBytes exch store}for - _NXTotalBytes 0 le{exit}if - }loop /_NXProcArray 5 array def -}__NXbdef -/colorimage{_NXDoImageOp}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -%%EndDocument -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /estroke { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /efill { - gsave dodrawctm translate scale newpath dup dup 0 360 arc closepath unpagectm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /apstroke { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc pie chord or { - closepath - } if crlinalph setalpha pie not chord not and { - crfrtarw { - 2 copy crlinw exch gsave newpath angle1 1 add cos radius mul radius add angle1 1 add sin radius mul radius add moveto angle1 cos radius mul radius add angle1 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if crendarw { - 2 copy crlinw exch gsave newpath angle2 1 sub cos radius mul radius add angle2 1 sub sin radius mul radius add moveto angle2 cos radius mul radius add angle2 sin radius mul radius add lineto unpagectm { - - } { - - } { - - } { - - } pathforall arow grestore - } if - } if crlincp setlinecap crlinalph setalpha crlinw setlinewidth usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /apfill { - gsave dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup 5 -2 roll arc pie chord or { - closepath - } if 1 xscale div 1 yscale div scale crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /mkepath { - dodrawctm /chord exch def /pie exch def /radius exch def /yscale exch def /xscale exch def /yy exch def /xx exch def /angle2 exch def /angle1 exch def /closed exch def xx yy translate xscale yscale scale newpath pie { - radius dup moveto - } if radius dup dup angle1 angle2 arc closed pie or chord or { - closepath - } if unpagectm -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 418.431213 317.631287 rectclip --100.384407 -71.584373 translate -100.384407 71.584373 418.431213 317.631287 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 1.504159e-36 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [5 5] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -/crlinw 1.5 def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 100.799988 388.800018 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 115.200012 388.800018 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 129.599976 388.800018 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 144 388.800018 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 100.799988 345.599976 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 115.20002 345.599976 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 129.599991 345.599976 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 144 345.600006 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 100.799995 302.400024 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 115.200005 302.400024 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 129.599991 302.400024 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 144 302.400024 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 244.799988 388.799988 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 187.199982 388.799988 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 201.600006 388.799988 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 244.799988 388.799988 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 259.200012 388.800049 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 244.799988 345.599976 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 187.199982 345.599976 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 201.600006 345.599976 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 244.799988 345.599976 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 259.200012 345.600037 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 244.799988 302.399963 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 187.199982 302.399963 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 201.600006 302.399963 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 244.799988 302.399963 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 259.200012 302.400024 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 244.799988 258.199951 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 187.199982 258.199951 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 201.600006 258.199951 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 244.799988 258.199951 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 259.200012 258.200012 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 100.799995 258.200012 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 115.200012 258.200012 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 129.599991 258.200012 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 144 258.200012 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 244.799988 215.999985 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 187.199982 215.999985 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 201.600006 215.999985 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 244.799988 215.999985 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 259.200012 216.000046 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 100.799995 216.000015 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 115.200012 216.000015 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 129.599991 216.000015 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 144 216.000015 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 316.800018 388.799988 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 316.800018 388.799988 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 331.200043 388.800049 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 316.800018 345.599976 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 316.800018 345.599976 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 331.200043 345.600037 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 316.800018 302.399963 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 316.800018 302.399963 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 331.200043 302.400024 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 316.800018 258.199951 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 316.800018 258.199951 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 331.200043 258.200012 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 316.800018 215.999985 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 316.800018 215.999985 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 331.200043 216.000046 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 403.200012 388.799988 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 403.200012 388.799988 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 417.600037 388.800049 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 403.200012 345.599976 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 403.200012 345.599976 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 417.600037 345.600037 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 403.200012 302.399963 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 403.200012 302.399963 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 417.600037 302.400024 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 403.200012 258.199951 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 403.200012 258.199951 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 417.600037 258.200012 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 403.200012 215.999985 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 403.200012 215.999985 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 417.600037 216.000046 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 504.000031 388.799988 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 504.000031 388.799988 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 518.400024 388.800049 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 504.000031 345.599976 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 504.000031 345.599976 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 518.400024 345.600037 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 504.000031 302.399963 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 504.000031 302.399963 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 518.400024 302.400024 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 504.000031 258.199951 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 504.000031 258.199951 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 518.400024 258.200012 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 504.000031 215.999985 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 504.000031 215.999985 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 518.400024 216.000046 1 0 0 1 0 0 sc6mt astore ssl -/crlinw 5 def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc6mt astore 77.879898 1 -1 201.600006 345.600006 1 0 0 1 31.340279 -31.340195 sc5mt astore estroke -/crlinw 1.5 def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 244.799988 86.399963 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 187.199982 86.399963 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 201.600006 86.399963 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 244.799988 86.399963 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 259.200012 86.400024 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 100.799995 86.399994 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 115.200012 86.399994 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 129.599976 86.399994 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 144 86.399994 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 316.800018 86.399963 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 316.800018 86.399963 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 331.200043 86.400024 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 403.200012 86.399963 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 403.200012 86.399963 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 417.600037 86.400024 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 504.000031 86.399963 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 504.000031 86.399963 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 518.400024 86.400024 1 0 0 1 0 0 sc6mt astore ssl -/crlinw 3 def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -10 -28 233 240 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14 -21 233 237 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 15 17 272 306 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 24 2 274 302 1 0 0 1 0 0 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(a ) [20.015991 0 0 0] 280 334 /Helvetica [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 0 0] dotx -(b ) [20.015991 0 0 0] 218 188 /Helvetica [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 -7 -7] dotx -/crlinw 1.5 def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 244.799988 172.799973 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 187.199982 172.799973 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 201.600006 172.799973 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 244.799988 172.799973 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 259.200012 172.800034 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 100.799995 172.800003 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 115.200012 172.800003 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 129.599976 172.800003 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 144 172.800003 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 316.800018 172.799973 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 316.800018 172.799973 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 331.200043 172.800034 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 403.200012 172.799973 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 403.200012 172.799973 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 417.600037 172.800034 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 504 172.799973 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 504 172.799973 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 518.400024 172.800034 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 244.799988 129.599976 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 187.199982 129.599976 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 201.600006 129.599976 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 244.799988 129.599976 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 259.200012 129.600037 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 100.799995 129.600006 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 115.200012 129.600006 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 129.599976 129.600006 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 144 129.600006 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 316.800018 129.599976 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 316.800018 129.599976 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 331.200043 129.600037 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 403.200012 129.599976 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 403.200012 129.599976 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 417.600037 129.600037 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 504 129.599976 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 14.400002 -14.399994 504 129.599976 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -14.400002 -14.399994 518.400024 129.600037 1 0 0 1 0 0 sc6mt astore ssl -(fig 2. ) [10.007996 0 7.992004 0 20.015991 0 10.007996 0 20.015991 0 10.007996 0 0 0] 425 108 /Helvetica [ 36 1 mul 0 0 36 0 0 ] [1 0 0 1 -2 -16] dotx -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype64/prob03v2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype64/prob03v2.gif deleted file mode 100755 index 8cde1bb29..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype64/prob03v2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype64/prob05a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype64/prob05a.eps deleted file mode 100755 index af28eb27d..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype64/prob05a.eps +++ /dev/null @@ -1,2082 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: rotcolphi.eps - View 1 -- /Net/capa1.nscl.msu.edu/usr/user1/teacher/CAPA4/phy232f5/pictures -%%Creator: Tailor -%%CreationDate: Thu Sep 28 10:28:27 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 1 455 279 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -%%BeginResource: procset (Tailor 1.0) -/TailorGroupBegin {pop} def /TailorGroupEnd {} def -/TailorBlockBegin {pop pop pop} def /TailorBlockEnd {} def -/TailorSetUniformStroke {pop} def -%%EndResource - -gsave --19.940186 -55 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -%%EndSetup -0 0 612 792 rectclip -0 0 612 792 rectclip -gsave -0 setgray -1 setlinewidth -(* Title: rotcolphi.eps - View 1 -- /Net/capa1.nscl.msu.edu/usr/user1/teacher/CAPA4/phy232f5/pictures\012* Creator: Tailor\012* Created for: teacher\012* Creation date: Thu Sep 28 10:26:20 1995\012\012* Title: rotcolphi.eps - View 1 -- -/Net/capa1.nscl.msu.edu/usr/user1/teacher/CAPA4/phy232f5/pictures\012* Creator: Tailor\012* Created for: teacher\012* Creation date: Thu Sep 28 10:22:43 1995\012\012* Title: rotcolphi.eps - View 1 -- -/Net/capa1.nscl.msu.edu/usr/user1/teacher/CAPA4/phy232f5/pictures\012* Creator: Tailor\012* Created for: teacher\012* Creation date: Thu Sep 28 10:19:44 1995\012\012* Creator: Tailor\012* Created for: teacher\012* Creation date: Thu Sep 28 10:00:57 -1995\012\012* Creator: Mathematica\012* Creation date: Sun Nov 22 09:59:24 GMT-0500 1992\012\012* Group Created Automatically *) TailorGroupBegin -gsave -[1 0 0 1 0 0] matrix invertmatrix concat -[1 0 0 1 0 0] concat -newpath -systemdict -begin -0 0 612 792 setbbox -0 0 moveto -612 0 lineto -612 792 lineto -0 792 lineto -closepath -end -clip -(* Group Created by User *) TailorGroupBegin -[1 0 0 1 0 0] matrix invertmatrix concat -[379.109985 0 0 379.109985 74.256699 38.338013] concat -0 0 0.5 nxsetrgbcolor -0.001 setlinewidth -1 setlinecap -1 setlinejoin -gsave -newpath -systemdict -begin -0.15608 0 0.15608 0.61803 setbbox -0.15608 0 moveto -0.15608 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.28836 0 0.28836 0.61803 setbbox -0.28836 0 moveto -0.28836 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.42063 0 0.42063 0.61803 setbbox -0.42063 0 moveto -0.42063 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.55291 0 0.55291 0.61803 setbbox -0.55291 0 moveto -0.55291 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.68519 0 0.68519 0.61803 setbbox -0.68519 0 moveto -0.68519 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.81746 0 0.81746 0.61803 setbbox -0.81746 0 moveto -0.81746 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.94974 0 0.94974 0.61803 setbbox -0.94974 0 moveto -0.94974 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin --4.47035e-08 0.11281 1 0.11281 setbbox --4.47035e-08 0.11281 moveto -1 0.11281 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin --4.47035e-08 0.21091 1 0.21091 setbbox --4.47035e-08 0.21091 moveto -1 0.21091 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin --4.47035e-08 0.30901 1 0.30901 setbbox --4.47035e-08 0.30901 moveto -1 0.30901 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin --4.47035e-08 0.40712 1 0.40712 setbbox --4.47035e-08 0.40712 moveto -1 0.40712 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin --4.47035e-08 0.50522 1 0.50522 setbbox --4.47035e-08 0.50522 moveto -1 0.50522 lineto -end -stroke -grestore -0 nxsetgray -0.002 setlinewidth -gsave -newpath -systemdict -begin -0.02381 0 0.02381 0.00625 setbbox -0.02381 0 moveto -0.02381 0.00625 lineto -end -stroke -grestore -[379.109985 0 0 379.109985 74.256699 38.338013] matrix invertmatrix concat -[1 0 0 1 11.11968 -179.690979] concat -/Courier-Oblique findfont 1 scalefont [15 0 0 15 0 0] makefont -23 -exch -defineuserobject -23 execuserobject setfont -66.193298 204.033997 moveto -(1) show -[1 0 0 1 11.11968 -179.690979] matrix invertmatrix concat -[379.109985 0 0 379.109985 74.256699 38.338013] concat -gsave -newpath -systemdict -begin -0.15608 0 0.15608 0.00625 setbbox -0.15608 0 moveto -0.15608 0.00625 lineto -end -stroke -grestore -[379.109985 0 0 379.109985 74.256699 38.338013] matrix invertmatrix concat -[1 0 0 1 11.11968 -179.690979] concat -102.837997 203.921005 moveto -(1.25) show -[1 0 0 1 11.11968 -179.690979] matrix invertmatrix concat -[379.109985 0 0 379.109985 74.256699 38.338013] concat -gsave -newpath -systemdict -begin -0.28836 0 0.28836 0.00625 setbbox -0.28836 0 moveto -0.28836 0.00625 lineto -end -stroke -grestore -[379.109985 0 0 379.109985 74.256699 38.338013] matrix invertmatrix concat -[1 0 0 1 11.11967 -179.690979] concat -157.487 203.921005 moveto -(1.5) show -[1 0 0 1 11.11967 -179.690979] matrix invertmatrix concat -[379.109985 0 0 379.109985 74.256699 38.338013] concat -gsave -newpath -systemdict -begin -0.42063 0 0.42063 0.00625 setbbox -0.42063 0 moveto -0.42063 0.00625 lineto -end -stroke -grestore -[379.109985 0 0 379.109985 74.256699 38.338013] matrix invertmatrix concat -[1 0 0 1 11.11965 -179.690979] concat -203.132004 203.921005 moveto -(1.75) show -[1 0 0 1 11.11965 -179.690979] matrix invertmatrix concat -[379.109985 0 0 379.109985 74.256699 38.338013] concat -gsave -newpath -systemdict -begin -0.55291 0 0.55291 0.00625 setbbox -0.55291 0 moveto -0.55291 0.00625 lineto -end -stroke -grestore -[379.109985 0 0 379.109985 74.256699 38.338013] matrix invertmatrix concat -[1 0 0 1 11.11963 -179.690979] concat -267.200012 204.033997 moveto -(2) show -[1 0 0 1 11.11963 -179.690979] matrix invertmatrix concat -[379.109985 0 0 379.109985 74.256699 38.338013] concat -gsave -newpath -systemdict -begin -0.68519 0 0.68519 0.00625 setbbox -0.68519 0 moveto -0.68519 0.00625 lineto -end -stroke -grestore -[379.109985 0 0 379.109985 74.256699 38.338013] matrix invertmatrix concat -[1 0 0 1 11.11961 -179.690979] concat -303.848999 203.921005 moveto -(2.25) show -[1 0 0 1 11.11961 -179.690979] matrix invertmatrix concat -[379.109985 0 0 379.109985 74.256699 38.338013] concat -gsave -newpath -systemdict -begin -0.81746 0 0.81746 0.00625 setbbox -0.81746 0 moveto -0.81746 0.00625 lineto -end -stroke -grestore -[379.109985 0 0 379.109985 74.256699 38.338013] matrix invertmatrix concat -[1 0 0 1 11.1196 -179.690979] concat -358.493988 203.921005 moveto -(2.5) show -[1 0 0 1 11.1196 -179.690979] matrix invertmatrix concat -[379.109985 0 0 379.109985 74.256699 38.338013] concat -gsave -newpath -systemdict -begin -0.94974 0 0.94974 0.00625 setbbox -0.94974 0 moveto -0.94974 0.00625 lineto -end -stroke -grestore -[379.109985 0 0 379.109985 74.256699 38.338013] matrix invertmatrix concat -[1 0 0 1 11.119579 -179.690979] concat -404.143005 203.921005 moveto -(2.75) show -[1 0 0 1 11.119579 -179.690979] matrix invertmatrix concat -[379.109985 0 0 379.109985 74.256699 38.338013] concat -0.001 setlinewidth -gsave -newpath -systemdict -begin -0.05026 0 0.05026 0.00375 setbbox -0.05026 0 moveto -0.05026 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.07672 0 0.07672 0.00375 setbbox -0.07672 0 moveto -0.07672 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.10317 0 0.10317 0.00375 setbbox -0.10317 0 moveto -0.10317 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.12963 0 0.12963 0.00375 setbbox -0.12963 0 moveto -0.12963 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.18254 0 0.18254 0.00375 setbbox -0.18254 0 moveto -0.18254 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.20899 0 0.20899 0.00375 setbbox -0.20899 0 moveto -0.20899 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.23545 0 0.23545 0.00375 setbbox -0.23545 0 moveto -0.23545 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.2619 0 0.2619 0.00375 setbbox -0.2619 0 moveto -0.2619 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.31481 0 0.31481 0.00375 setbbox -0.31481 0 moveto -0.31481 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.34127 0 0.34127 0.00375 setbbox -0.34127 0 moveto -0.34127 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.36772 0 0.36772 0.00375 setbbox -0.36772 0 moveto -0.36772 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.39418 0 0.39418 0.00375 setbbox -0.39418 0 moveto -0.39418 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.44709 0 0.44709 0.00375 setbbox -0.44709 0 moveto -0.44709 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.47354 0 0.47354 0.00375 setbbox -0.47354 0 moveto -0.47354 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.5 0 0.5 0.00375 setbbox -0.5 0 moveto -0.5 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.52646 0 0.52646 0.00375 setbbox -0.52646 0 moveto -0.52646 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.57937 0 0.57937 0.00375 setbbox -0.57937 0 moveto -0.57937 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.60582 0 0.60582 0.00375 setbbox -0.60582 0 moveto -0.60582 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.63228 0 0.63228 0.00375 setbbox -0.63228 0 moveto -0.63228 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.65873 0 0.65873 0.00375 setbbox -0.65873 0 moveto -0.65873 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.71164 0 0.71164 0.00375 setbbox -0.71164 0 moveto -0.71164 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.7381 0 0.7381 0.00375 setbbox -0.7381 0 moveto -0.7381 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.76455 0 0.76455 0.00375 setbbox -0.76455 0 moveto -0.76455 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.79101 0 0.79101 0.00375 setbbox -0.79101 0 moveto -0.79101 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.84392 0 0.84392 0.00375 setbbox -0.84392 0 moveto -0.84392 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.87037 0 0.87037 0.00375 setbbox -0.87037 0 moveto -0.87037 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.89683 0 0.89683 0.00375 setbbox -0.89683 0 moveto -0.89683 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.92328 0 0.92328 0.00375 setbbox -0.92328 0 moveto -0.92328 0.00375 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.97619 0 0.97619 0.00375 setbbox -0.97619 0 moveto -0.97619 0.00375 lineto -end -stroke -grestore -[379.109985 0 0 379.109985 74.256699 38.338013] matrix invertmatrix concat -[1 0 0 1 12.119471 -173.690979] concat -209.682007 179.440994 moveto -(t \(s\)) show -[1 0 0 1 12.119471 -173.690979] matrix invertmatrix concat -[379.109985 0 0 379.109985 74.256699 38.338013] concat -0.002 setlinewidth -gsave -newpath -systemdict -begin --1.49012e-08 0 1 0 setbbox --1.49012e-08 0 moveto -1 0 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin --1.49012e-08 0.01471 0.00625 0.01471 setbbox --1.49012e-08 0.01471 moveto -0.00625 0.01471 lineto -end -stroke -grestore -[379.109985 0 0 379.109985 74.256699 38.338013] matrix invertmatrix concat -[1 0 0 1 11.11946 -179.690979] concat -20.116899 219.052994 moveto -(-1.5) show -[1 0 0 1 11.11946 -179.690979] matrix invertmatrix concat -[379.109985 0 0 379.109985 74.256699 38.338013] concat -gsave -newpath -systemdict -begin -1.49012e-08 0.11281 0.00625 0.11281 setbbox -1.49012e-08 0.11281 moveto -0.00625 0.11281 lineto -end -stroke -grestore -[379.109985 0 0 379.109985 74.256699 38.338013] matrix invertmatrix concat -[1 0 0 1 11.11946 -179.690979] concat -38.1166 256.131012 moveto -(-1) show -[1 0 0 1 11.11946 -179.690979] matrix invertmatrix concat -[379.109985 0 0 379.109985 74.256699 38.338013] concat -gsave -newpath -systemdict -begin -2.98023e-08 0.21091 0.00625 0.21091 setbbox -2.98023e-08 0.21091 moveto -0.00625 0.21091 lineto -end -stroke -grestore -[379.109985 0 0 379.109985 74.256699 38.338013] matrix invertmatrix concat -[1 0 0 1 11.11945 -179.690979] concat -20.116899 293.43399 moveto -(-0.5) show -[1 0 0 1 11.11945 -179.690979] matrix invertmatrix concat -[379.114014 0 0 379.114014 74.256798 38.338013] concat -gsave -newpath -systemdict -begin -2.98023e-08 0.30901 0.00625 0.30901 setbbox -2.98023e-08 0.30901 moveto -0.00625 0.30901 lineto -end -stroke -grestore -[379.114014 0 0 379.114014 74.256798 38.338013] matrix invertmatrix concat -[1 0 0 1 11.11945 -179.690979] concat -46.9963 330.625 moveto -(0) show -[1 0 0 1 11.11945 -179.690979] matrix invertmatrix concat -[379.114014 0 0 379.114014 74.256798 38.338013] concat -gsave -newpath -systemdict -begin -2.98023e-08 0.40712 0.00625 0.40712 setbbox -2.98023e-08 0.40712 moveto -0.00625 0.40712 lineto -end -stroke -grestore -[379.114014 0 0 379.114014 74.256798 38.338013] matrix invertmatrix concat -[1 0 0 1 11.11945 -179.690979] concat -28.996599 367.819 moveto -(0.5) show -[1 0 0 1 11.11945 -179.690979] matrix invertmatrix concat -[379.114014 0 0 379.114014 74.256798 38.338013] concat -gsave -newpath -systemdict -begin -2.98023e-08 0.50522 0.00625 0.50522 setbbox -2.98023e-08 0.50522 moveto -0.00625 0.50522 lineto -end -stroke -grestore -[379.114014 0 0 379.114014 74.256798 38.338013] matrix invertmatrix concat -[1 0 0 1 11.11945 -179.690979] concat -47.927898 404.897003 moveto -(1) show -[1 0 0 1 11.11945 -179.690979] matrix invertmatrix concat -[379.114014 0 0 379.114014 74.256798 38.338013] concat -gsave -newpath -systemdict -begin -2.98023e-08 0.60332 0.00625 0.60332 setbbox -2.98023e-08 0.60332 moveto -0.00625 0.60332 lineto -end -stroke -grestore -[379.114014 0 0 379.114014 74.256798 38.338013] matrix invertmatrix concat -[1 0 0 1 11.11945 -179.690979] concat -29.9282 442.200989 moveto -(1.5) show -[1 0 0 1 11.11945 -179.690979] matrix invertmatrix concat -[379.114014 0 0 379.114014 74.256798 38.338013] concat -0.001 setlinewidth -gsave -newpath -systemdict -begin -2.98023e-08 0.03433 0.00375 0.03433 setbbox -2.98023e-08 0.03433 moveto -0.00375 0.03433 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -2.98023e-08 0.05395 0.00375 0.05395 setbbox -2.98023e-08 0.05395 moveto -0.00375 0.05395 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -2.98023e-08 0.07357 0.00375 0.07357 setbbox -2.98023e-08 0.07357 moveto -0.00375 0.07357 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -2.98023e-08 0.09319 0.00375 0.09319 setbbox -2.98023e-08 0.09319 moveto -0.00375 0.09319 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -2.98023e-08 0.13243 0.00375 0.13243 setbbox -2.98023e-08 0.13243 moveto -0.00375 0.13243 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -2.98023e-08 0.15205 0.00375 0.15205 setbbox -2.98023e-08 0.15205 moveto -0.00375 0.15205 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -2.98023e-08 0.17167 0.00375 0.17167 setbbox -2.98023e-08 0.17167 moveto -0.00375 0.17167 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -2.98023e-08 0.19129 0.00375 0.19129 setbbox -2.98023e-08 0.19129 moveto -0.00375 0.19129 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -2.98023e-08 0.23053 0.00375 0.23053 setbbox -2.98023e-08 0.23053 moveto -0.00375 0.23053 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -2.98023e-08 0.25015 0.00375 0.25015 setbbox -2.98023e-08 0.25015 moveto -0.00375 0.25015 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -2.98023e-08 0.26977 0.00375 0.26977 setbbox -2.98023e-08 0.26977 moveto -0.00375 0.26977 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -2.98023e-08 0.28939 0.00375 0.28939 setbbox -2.98023e-08 0.28939 moveto -0.00375 0.28939 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -2.98023e-08 0.32863 0.00375 0.32863 setbbox -2.98023e-08 0.32863 moveto -0.00375 0.32863 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -2.98023e-08 0.34825 0.00375 0.34825 setbbox -2.98023e-08 0.34825 moveto -0.00375 0.34825 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -2.98023e-08 0.36787 0.00375 0.36787 setbbox -2.98023e-08 0.36787 moveto -0.00375 0.36787 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -2.98023e-08 0.3875 0.00375 0.3875 setbbox -2.98023e-08 0.3875 moveto -0.00375 0.3875 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -2.98023e-08 0.42674 0.00375 0.42674 setbbox -2.98023e-08 0.42674 moveto -0.00375 0.42674 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -2.98023e-08 0.44636 0.00375 0.44636 setbbox -2.98023e-08 0.44636 moveto -0.00375 0.44636 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -2.98023e-08 0.46598 0.00375 0.46598 setbbox -2.98023e-08 0.46598 moveto -0.00375 0.46598 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -2.98023e-08 0.4856 0.00375 0.4856 setbbox -2.98023e-08 0.4856 moveto -0.00375 0.4856 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -2.98023e-08 0.52484 0.00375 0.52484 setbbox -2.98023e-08 0.52484 moveto -0.00375 0.52484 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -2.98023e-08 0.54446 0.00375 0.54446 setbbox -2.98023e-08 0.54446 moveto -0.00375 0.54446 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -2.98023e-08 0.56408 0.00375 0.56408 setbbox -2.98023e-08 0.56408 moveto -0.00375 0.56408 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -2.98023e-08 0.5837 0.00375 0.5837 setbbox -2.98023e-08 0.5837 moveto -0.00375 0.5837 lineto -end -stroke -grestore -0.002 setlinewidth -gsave -newpath -systemdict -begin -2.98023e-08 0 2.98023e-08 0.61803 setbbox -2.98023e-08 0 moveto -2.98023e-08 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.02381 0.61178 0.02381 0.61803 setbbox -0.02381 0.61178 moveto -0.02381 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.15608 0.61178 0.15608 0.61803 setbbox -0.15608 0.61178 moveto -0.15608 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.28836 0.61178 0.28836 0.61803 setbbox -0.28836 0.61178 moveto -0.28836 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.42063 0.61178 0.42063 0.61803 setbbox -0.42063 0.61178 moveto -0.42063 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.55291 0.61178 0.55291 0.61803 setbbox -0.55291 0.61178 moveto -0.55291 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.68519 0.61178 0.68519 0.61803 setbbox -0.68519 0.61178 moveto -0.68519 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.81746 0.61178 0.81746 0.61803 setbbox -0.81746 0.61178 moveto -0.81746 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.94974 0.61178 0.94974 0.61803 setbbox -0.94974 0.61178 moveto -0.94974 0.61803 lineto -end -stroke -grestore -0.001 setlinewidth -gsave -newpath -systemdict -begin -0.05026 0.61428 0.05026 0.61803 setbbox -0.05026 0.61428 moveto -0.05026 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.07672 0.61428 0.07672 0.61803 setbbox -0.07672 0.61428 moveto -0.07672 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.10317 0.61428 0.10317 0.61803 setbbox -0.10317 0.61428 moveto -0.10317 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.12963 0.61428 0.12963 0.61803 setbbox -0.12963 0.61428 moveto -0.12963 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.18254 0.61428 0.18254 0.61803 setbbox -0.18254 0.61428 moveto -0.18254 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.20899 0.61428 0.20899 0.61803 setbbox -0.20899 0.61428 moveto -0.20899 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.23545 0.61428 0.23545 0.61803 setbbox -0.23545 0.61428 moveto -0.23545 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.2619 0.61428 0.2619 0.61803 setbbox -0.2619 0.61428 moveto -0.2619 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.31481 0.61428 0.31481 0.61803 setbbox -0.31481 0.61428 moveto -0.31481 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.34127 0.61428 0.34127 0.61803 setbbox -0.34127 0.61428 moveto -0.34127 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.36772 0.61428 0.36772 0.61803 setbbox -0.36772 0.61428 moveto -0.36772 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.39418 0.61428 0.39418 0.61803 setbbox -0.39418 0.61428 moveto -0.39418 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.44709 0.61428 0.44709 0.61803 setbbox -0.44709 0.61428 moveto -0.44709 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.47354 0.61428 0.47354 0.61803 setbbox -0.47354 0.61428 moveto -0.47354 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.5 0.61428 0.5 0.61803 setbbox -0.5 0.61428 moveto -0.5 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.52646 0.61428 0.52646 0.61803 setbbox -0.52646 0.61428 moveto -0.52646 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.57937 0.61428 0.57937 0.61803 setbbox -0.57937 0.61428 moveto -0.57937 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.60582 0.61428 0.60582 0.61803 setbbox -0.60582 0.61428 moveto -0.60582 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.63228 0.61428 0.63228 0.61803 setbbox -0.63228 0.61428 moveto -0.63228 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.65873 0.61428 0.65873 0.61803 setbbox -0.65873 0.61428 moveto -0.65873 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.71164 0.61428 0.71164 0.61803 setbbox -0.71164 0.61428 moveto -0.71164 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.7381 0.61428 0.7381 0.61803 setbbox -0.7381 0.61428 moveto -0.7381 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.76455 0.61428 0.76455 0.61803 setbbox -0.76455 0.61428 moveto -0.76455 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.79101 0.61428 0.79101 0.61803 setbbox -0.79101 0.61428 moveto -0.79101 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.84392 0.61428 0.84392 0.61803 setbbox -0.84392 0.61428 moveto -0.84392 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.87037 0.61428 0.87037 0.61803 setbbox -0.87037 0.61428 moveto -0.87037 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.89683 0.61428 0.89683 0.61803 setbbox -0.89683 0.61428 moveto -0.89683 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.92328 0.61428 0.92328 0.61803 setbbox -0.92328 0.61428 moveto -0.92328 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.97619 0.61428 0.97619 0.61803 setbbox -0.97619 0.61428 moveto -0.97619 0.61803 lineto -end -stroke -grestore -0.002 setlinewidth -gsave -newpath -systemdict -begin -2.98023e-08 0.61803 1 0.61803 setbbox -2.98023e-08 0.61803 moveto -1 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.01471 1 0.01471 setbbox -0.99375 0.01471 moveto -1 0.01471 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.11281 1 0.11281 setbbox -0.99375 0.11281 moveto -1 0.11281 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.21091 1 0.21091 setbbox -0.99375 0.21091 moveto -1 0.21091 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.30901 1 0.30901 setbbox -0.99375 0.30901 moveto -1 0.30901 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.40712 1 0.40712 setbbox -0.99375 0.40712 moveto -1 0.40712 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.50522 1 0.50522 setbbox -0.99375 0.50522 moveto -1 0.50522 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99375 0.60332 1 0.60332 setbbox -0.99375 0.60332 moveto -1 0.60332 lineto -end -stroke -grestore -0.001 setlinewidth -gsave -newpath -systemdict -begin -0.99625 0.03433 1 0.03433 setbbox -0.99625 0.03433 moveto -1 0.03433 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.05395 1 0.05395 setbbox -0.99625 0.05395 moveto -1 0.05395 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.07357 1 0.07357 setbbox -0.99625 0.07357 moveto -1 0.07357 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.09319 1 0.09319 setbbox -0.99625 0.09319 moveto -1 0.09319 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.13243 1 0.13243 setbbox -0.99625 0.13243 moveto -1 0.13243 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.15205 1 0.15205 setbbox -0.99625 0.15205 moveto -1 0.15205 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.17167 1 0.17167 setbbox -0.99625 0.17167 moveto -1 0.17167 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.19129 1 0.19129 setbbox -0.99625 0.19129 moveto -1 0.19129 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.23053 1 0.23053 setbbox -0.99625 0.23053 moveto -1 0.23053 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.25015 1 0.25015 setbbox -0.99625 0.25015 moveto -1 0.25015 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.26977 1 0.26977 setbbox -0.99625 0.26977 moveto -1 0.26977 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.28939 1 0.28939 setbbox -0.99625 0.28939 moveto -1 0.28939 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.32863 1 0.32863 setbbox -0.99625 0.32863 moveto -1 0.32863 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.34825 1 0.34825 setbbox -0.99625 0.34825 moveto -1 0.34825 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.36787 1 0.36787 setbbox -0.99625 0.36787 moveto -1 0.36787 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.3875 1 0.3875 setbbox -0.99625 0.3875 moveto -1 0.3875 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.42674 1 0.42674 setbbox -0.99625 0.42674 moveto -1 0.42674 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.44636 1 0.44636 setbbox -0.99625 0.44636 moveto -1 0.44636 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.46598 1 0.46598 setbbox -0.99625 0.46598 moveto -1 0.46598 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.4856 1 0.4856 setbbox -0.99625 0.4856 moveto -1 0.4856 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.52484 1 0.52484 setbbox -0.99625 0.52484 moveto -1 0.52484 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.54446 1 0.54446 setbbox -0.99625 0.54446 moveto -1 0.54446 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.56408 1 0.56408 setbbox -0.99625 0.56408 moveto -1 0.56408 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.99625 0.5837 1 0.5837 setbbox -0.99625 0.5837 moveto -1 0.5837 lineto -end -stroke -grestore -0.002 setlinewidth -gsave -newpath -systemdict -begin -1 0 1 0.61803 setbbox -1 0 moveto -1 0.61803 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -2.98023e-08 0.30901 1 0.30901 setbbox -2.98023e-08 0.30901 moveto -1 0.30901 lineto -end -stroke -grestore -0.004 setlinewidth -gsave -newpath -systemdict -begin -0.02381 0.01472 0.29167 0.60332 setbbox -0.02381 0.59388 moveto -0.02877 0.59842 lineto -0.03125 0.60014 lineto -0.03373 0.60149 lineto -0.03621 0.60247 lineto -0.03745 0.60282 lineto -0.03869 0.60308 lineto -0.03993 0.60324 lineto -0.04117 0.60332 lineto -0.04241 0.60329 lineto -0.04365 0.60318 lineto -0.04489 0.60297 lineto -0.04613 0.60267 lineto -0.04861 0.60178 lineto -0.05109 0.60053 lineto -0.05357 0.5989 lineto -0.05853 0.59455 lineto -0.06349 0.58875 lineto -0.07341 0.57292 lineto -0.08333 0.55174 lineto -0.10317 0.49516 lineto -0.14286 0.34272 lineto -0.18254 0.17962 lineto -0.20238 0.11052 lineto -0.2123 0.08167 lineto -0.22222 0.05743 lineto -0.23214 0.03829 lineto -0.2371 0.03076 lineto -0.24206 0.02464 lineto -0.24454 0.02212 lineto -0.24702 0.01997 lineto -0.2495 0.01818 lineto -0.25198 0.01676 lineto -0.25322 0.01619 lineto -0.25446 0.01571 lineto -0.2557 0.01532 lineto -0.25694 0.01503 lineto -0.25818 0.01483 lineto -0.25942 0.01473 lineto -0.26066 0.01472 lineto -0.2619 0.0148 lineto -0.26314 0.01497 lineto -0.26438 0.01524 lineto -0.26563 0.0156 lineto -0.26687 0.01605 lineto -0.26935 0.01724 lineto -0.27183 0.0188 lineto -0.27679 0.02302 lineto -0.28175 0.02869 lineto -0.29167 0.04425 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.29167 0.01497 0.69469 0.60332 setbbox -0.29167 0.04425 moveto -0.30159 0.06519 lineto -0.32143 0.12137 lineto -0.34127 0.19268 lineto -0.38095 0.35696 lineto -0.40079 0.43666 lineto -0.42063 0.50607 lineto -0.43056 0.53512 lineto -0.44048 0.55958 lineto -0.4504 0.57897 lineto -0.45536 0.58663 lineto -0.46032 0.59288 lineto -0.4628 0.59546 lineto -0.46528 0.59769 lineto -0.46776 0.59955 lineto -0.47024 0.60103 lineto -0.47148 0.60164 lineto -0.47272 0.60215 lineto -0.47396 0.60257 lineto -0.4752 0.6029 lineto -0.47644 0.60313 lineto -0.47768 0.60327 lineto -0.47892 0.60332 lineto -0.48016 0.60327 lineto -0.4814 0.60313 lineto -0.48264 0.6029 lineto -0.48512 0.60215 lineto -0.48636 0.60164 lineto -0.4876 0.60103 lineto -0.49008 0.59954 lineto -0.49504 0.59546 lineto -0.5 0.58993 lineto -0.50992 0.57461 lineto -0.51984 0.55392 lineto -0.53968 0.49815 lineto -0.57937 0.34657 lineto -0.61905 0.18312 lineto -0.63889 0.1134 lineto -0.64881 0.08416 lineto -0.65873 0.05947 lineto -0.66865 0.03984 lineto -0.67361 0.03205 lineto -0.67857 0.02567 lineto -0.68353 0.02072 lineto -0.68601 0.0188 lineto -0.68849 0.01724 lineto -0.68973 0.0166 lineto -0.69097 0.01605 lineto -0.69221 0.0156 lineto -0.69345 0.01524 lineto -0.69469 0.01497 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.69469 0.01472 0.97619 0.60332 setbbox -0.69469 0.01497 moveto -0.69593 0.0148 lineto -0.69717 0.01472 lineto -0.69841 0.01473 lineto -0.69965 0.01483 lineto -0.70089 0.01503 lineto -0.70213 0.01532 lineto -0.70337 0.01571 lineto -0.70585 0.01676 lineto -0.70833 0.01818 lineto -0.71329 0.02213 lineto -0.71825 0.02753 lineto -0.72817 0.04258 lineto -0.7381 0.06304 lineto -0.75794 0.11839 lineto -0.77778 0.18913 lineto -0.81746 0.35312 lineto -0.85714 0.50317 lineto -0.86706 0.53262 lineto -0.87698 0.55753 lineto -0.8869 0.5774 lineto -0.89187 0.58531 lineto -0.89683 0.59183 lineto -0.90179 0.59691 lineto -0.90427 0.5989 lineto -0.90675 0.60053 lineto -0.90923 0.60178 lineto -0.91047 0.60227 lineto -0.91171 0.60267 lineto -0.91295 0.60297 lineto -0.91419 0.60318 lineto -0.91543 0.60329 lineto -0.91667 0.60332 lineto -0.91791 0.60324 lineto -0.91915 0.60308 lineto -0.92039 0.60282 lineto -0.92163 0.60247 lineto -0.92411 0.60149 lineto -0.92659 0.60014 lineto -0.93155 0.59633 lineto -0.93651 0.59106 lineto -0.94643 0.57626 lineto -0.95635 0.55605 lineto -0.97619 0.50111 lineto -end -stroke -grestore -(* Group Created by User *) TailorGroupBegin -[379.114014 0 0 379.114014 74.256798 38.338013] matrix invertmatrix concat -[0 1.18923 -1.18923 0 7.44084 -196.427002] concat -/Symbol findfont 1 scalefont [15 0 0 15 0 0] makefont -34 -exch -defineuserobject -34 execuserobject setfont -240.360001 -13.9369 moveto -( F) show -[0 1.18923 -1.18923 0 7.44084 -196.427002] matrix invertmatrix concat -[0 1.15525 -1.18923 0 5.062361 -166.929016] concat -/Times-Roman findfont 1 scalefont [15 0 0 15 0 0] makefont -24 -exch -defineuserobject -24 execuserobject setfont -240.360001 -13.9369 moveto -( \(10 Tm \) ) show -[0 1.15525 -1.18923 0 5.062361 -166.929016] matrix invertmatrix concat -[0 1.15525 -1.18923 0 -0.88381 -139.577026] concat -/Times-Roman findfont 1 scalefont [12.353 0 0 12.353 0 0] makefont -25 -exch -defineuserobject -25 execuserobject setfont -240.360001 -13.9369 moveto -( -3 2) show -TailorGroupEnd -TailorGroupEnd -grestore -TailorGroupEnd -grestore -gsave -[1 0 0 -1 0 792] concat -grestore -%%Trailer -%%DocumentFonts: Symbol -%%+ Courier-Oblique -%%+ Times-Roman diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype64/prob05a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype64/prob05a.gif deleted file mode 100755 index b305004ef..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype64/prob05a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype64/prob06a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype64/prob06a.eps deleted file mode 100755 index c3e0fbb1c..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype64/prob06a.eps +++ /dev/null @@ -1,736 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: set13.q2.create -%%Creator: Create -%%CreationDate: Tue Jul 11 12:05:13 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 25 375 582 699 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(2u_n\R%AdlucPU\,$Br7kt5cXqhJeVTe*^Ue"ANCiYGkqqu`+O?IKO -% YeT]0N%r>$!)s#N+bXZ0M#`srTKiKge@$E@ETtKtFE.D+='ke27Mp/W9ue5VUL8>9FkEZ;Pp -% C:5+W^XCq*U$cbe[:OI.NbXT+Ce7pgJZ'"a16(PrrH1+e;jCPuL^cPpCsV;,IN=FJMBj;*Y9 -% 2=p!?9,Ln@H5X9mRE@GO/=NX@9Tl;#q=@jX`!'l>@N5Ye7(gZLEKcG3%!l1!h&\%*miU6OYd3qQ()bcsT5L -% h:@*D[as=)kHd#+JA\a=e6kWRfKO(\ud3Z@4TKcZ]HU5f.d#,ID[C+6$ -% %BNjc#ToQ]6dAa;&lDq0>ap+sOOn#KT]_[L9(VpT>ld3[!]OecGYDO`+ceT89OU?H6g6L)#a#*6NbuWi)RebSY/ -% G'ef=mH/oqkWmKCW-g$oNU)Kb_<40nZQ6eqVSpeLp&8ITPmp7*!-FZYalqrJVnN9*%H#t$(c -% fZPpcWUS0=._"FpXslj_#gF?A9Cm"E>D=ml?p$CDD9:bf$h%<5uISiP,0d0n\#L).]Lp+U48 -% ,@^D;G/Wn3C4,-TgA/1C4t(k3D#,?F(!ed&[Fqa#q!4[0f]Bk\!>'0\'H7)MV+/9IY]+JB>i -% HM(!]%FI%W8KqJgs4ilr6>%";&?P!a-k\LbMQ;.A=irq'KjX0Es:Oi?O=0adY#bOuUB*d"GH -% 5:*)!Cg1-BrRl2ed9b!@g!u;QXW+t8Vg#=+on#25p6.LPtjlH#.1Y[m*8KjE+Wbp'l_,(9UNm2+f5kgW!QsGi"uW+!'A -% L,5Ti`$!%Gj.66Q2<+Utt*Sf4InaVgN68d*!E.;9,eZ%)hEqP"hOLdksdOaIM/UT4$$SH&-" -% OC2%\"!slY8*.WdS,1X?$rUVi'IP(jA5g8FJ?-i_.X&ZA#dKO-4>6htN+`>o[H;-mDae2AkF -% *Xu6&@]uO9.sJj+^Eb-30U8KE\SY%&F:4!#';OR;T@$RSHke4ZuqK9nXIgqF7`@0SWI1!ItG -% 0TWF;>X*W3O,IV')5FN<"JNc/G+NVAI4\9Jo1,0%`R,J'5(^(hI_2ht,ijIqQ^haJG(>G-H3 -% Olc&DF+&(ZhS](AjK:%)t!r0P7#',;= -% CKAS=3(FR8mY!MlTNGlP^`4DKLI!J#4Al/@d/^rk,S1%1d20eJS?[I`)2P*6M(p]oJN@?X8` -% WV:SVMjQ(si87.HI03@X&V8I2sa[HT$3e7Mb$HiIQ -% NerD'HM(D=0h[/(E(C6,+<&Bntu##6../_DVjUV8nMN^sr+lFd=S.V.&;cLAJ_((PZ/W3Wds -% 59ctWDnVYNOi\I\%3/nr7/C-Z9,*ua/.!bBJYIrsMO87"8Ie2lR;M_%%G+_K"BQ,V%kQPg7d -% :%=h.U%7):"NFX/KJtW:&TQAh_`pO'l/1iRd4)Q(YFj1#I2T9Nat(1*[-W%.0RMX$_[8"K2' -% GA&_fZ`[QE=h3V'kuZgTAV\]\D6F.*?6n2\PPcFGN?,bDgCNb<$e[s_+AH/8dTP9t`n6[l$^Fl$1%l/t^7LBm0YH7NZ -% LWV:Q+f1)m_0D3@FpSVu@joF%R$t1:[(D)+/0n:NJJ2DG"EKU[Ha%jl[6TS^K3L!,-FEl3"D -% 2H;Sh.D(7o7>SMB^51]V7)!*ib7g*"/Q&P;jT3)U2'3sHLW45moAiO2@@ -% =)K6r7THflnrksAF\?u;2S/NL]bE+97=#i::jptna/"?+oQn_<"_DWW08Cqu:c^jt7h'th%3 -% QDV!!%q5KOgd0B(:5\6]&/]Kl';"<6.0bdtp-hI2Icb)X)n*B1cSF9tl`e!"/JaA2M,%u`$QuoKe7CL,mZ^=D\3&g^/9Dted!9oCE#>t -% ]H3!OYe#oNiNV]Zbn#D9el5Tg(pTOC+T&*jc0lh+g*;HQo;-3iZE^juL??jJs#>9\)t?*t_% -% &dVo##Qk&5!'gZb8X2T7@$) -% A4do9E`EQLsi)Aslb7W?a::Q>R"qK.rQj8XGolQTgLtA78VWeX&o%QdQV97WMQG<+Z+a#f)N -% .q%*ZI"pp\/!COYi'j2cqLQNSY*)0iK57e]E"#T(#eJ-IU8_S?q#dK#! -% 3"#+IL.9MfibMX+F5jM&o\$K?ss!'&)];Nmsk`i&7/cG#X@7:,9d+FV3P8a4&+q(K7F*`TEi -% M?RD"AX'H%\_PmFG[#N>=d%N8[B)5"h^!;%_/ru%K`\XhOo+0,^>Xk?j#`+G?@f)L#H>T -% 3>ut38.A_MB-b!W.diSAic`cM5];6gsD`>L(+sCVqn.W"+j.62J)$XORf9njrL@0S>HB$%>ZHYg5($l#.GHfVru -% jO3!TSL12Qlj%A`8=ZLNOp;N))Z/J).08")u/tsf-u@P -% HM0(&kQXNoEfe*@*I-?^6Y6VD5f7dNiXq@`$qc-O#VOh-C -% 3=W1%i;.O8mV?$`=737k-*H3tDJdc5U3$TD -% %e5Hae0neG3"kbi9If./T.t@[6BHVmeR+PdV$V'?ZM?qLXK8=cJfOBLZ8rJH6 -% /?WXg[Wp_\@YN3YqdPL?ep(\F.Iu[IO@!KUAW/7enX,J5b4+J^$Ij?6Sf@/:bb'c#<=/^@'P -% `u.CamM?UN\lTf3a_BH<=Y>BZfQJ0nDrYhIfHZ-?>(D:mrr/!T&\C*"2 -% TZ([c4m0O^RZ1Zps1p[)AbUaP4(:[h]%6dnQKNDNJiJ%qf82VG2EZ8nM.&+nZMdUFj)3$PcJ -% YS>Gg']a!/V&q9)e;pg>B;e6aB9FT&Ss.mQ"[r\4b)#q5Sk"OMQ!3a5E9_e)FrMdV291:1/& -% (E/8E=WRjslMWi!5Ybcf_O/$7fVa0Vm3pF>g=7DF%'IE!na`dUY^(Eh5Q:0jQGggY-&ee)Zl -% /V7;Y(ug;sP3oC@BQLF3QgqN_[_GD&dGs"W$3As%GCUf))K)&g\=J:c^ume/^*3OoNDIc!`J -% [>P3<5=c9I]+Td$uLNKego+Nb+tY(!L4NWg^m6BAp+\lQW:.o#P]^lj9!FjF]Ojj_&eZWkku -% i(U[m%k\J,K=q&>lXfX1Y>93jto=u*S'29!'B.Mg2eg<&Zjf!O`qiR(o0HB>E%t3`<'Dj3+J -% 0ms@+CRgY):1X(Mmt>M9VFuXRUF)i@'M*fBYnl.JtCPeii.KKN-\e0sC -% Un\t#W(0&J0aO68!bJgL't+otO"Odu\a`VHG_n!)?]2S(\8N.fmF -% XJ"2+VP@P%NG1k&<#a:XU1aXt,V+cB;igJ2aAgK(F-TGMQ)M\_h0`]SFa5QJri`%0`4m!8Gm -% Ve8%;("mDl-;OR1_:5;b!bDqc[4[#;#BoH`X/%SBN18s9h9A8!)&nBctd[%` -% .g$TL##QZ5'lUZ[kP3\uVtG'7o)79/SH=/ef=ij4qaM.o1i$IDf^8m$V'"L*D$L(K.[#iG[e5cQaDYgeeEbc0^ra.n<=%3YT.;14hL!.Fpnac08jF'H_V5r-ZCK$p(Rm&]t4&,%38l:EOn7`\g>(?VL"Fr)neoCLAm,X\j+1:AP3Be5_tc>>B'"=TF5,kb4N*HjfWe0@>d>f@(ath5T.j_QbkKm/VrNPUW`^l6N#b=bco -% &1./R6/L:"j!rGHl#l_jZ@p:5gKY_<=Ei=/:9XK;Z16J!'1LBW87!n\iP'BS!/Ah:HK*H"l8 -% X5:7KeAaK)VLH5T;ZHI^T3E$YG1#$mKEAQMJAR0SEm.7cGk7[+>;)'u.ca')QE"OLkomFXjX -% 'LWT.lS15HPmO@nmoW`3' -% WO;,5'ff>NY%RPE&VChnA/h"EWJ_`dF.Mjg]BDK;8>9P7-lH.CWN2B2OdK7!&r$NTtq(IG>r -% E'PNWk;KJ%#oR>u6^e\+JG5/eI;)8jQJi=/\ATg[#`E1tf`DD/=IWUcK1DERYcS&9ouomTd% -% RRonAPV(%14en*!@)(31LrDEC[G6%O*iQYcG?L0Y3MM:R/mX -% 0l72dt;Me:nko9*]D^0(t18C&o77Jo%erEY'DKW!en*e&)9%Lc7=hBCgx -% EndEmbeddedGraphics N 2176 880 E be S 3e9f2 R 170e5490 -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -153 386 270 329 rectclip -0 1 5 1 10 SU -171 470 T -N -5 L -0 nxsetgray -0 197 0 0 line -90 0 197 arrow -0 0 T -grestore -0 1 3 1 10 SU -205.457001 604.433472 T -N -3 L -0.482757 nxsetgray -10.08609 -16.132874 0 16.132874 line -122.011444 0 16.132874 arrow -0 0 T -grestore -0 1 3 1 10 SU -352.45694 513.433289 T -N -3 L -0.482757 nxsetgray -10.085815 -16.13324 0 16.13324 line --57.989838 10.085815 0 arrow -0 0 T -grestore -0 1 3 1 10 SU -352.644714 607.002319 T -N -3 L -0.482757 nxsetgray -11.710327 14.995605 0 0 line -52.014645 11.710327 14.995605 arrow -0 0 T -grestore -0 1 3 1 10 SU -287 618 T -19.000031 flipV -N -3 L -0.482757 nxsetgray -1.000031 -19.000031 0 19.000031 line --86.989693 1.000031 0 arrow -0 0 T -grestore -0 1 3 1 10 SU -288 500.999969 T -N -3 L -0.482757 nxsetgray -1.000031 -19.000031 0 19.000031 line --86.989693 1.000031 0 arrow -0 0 T -grestore -0 1 3 1 10 SU -391 574 T -N -3 L -0.482757 nxsetgray -19 0 0 0 line -0 19 0 arrow -0 0 T -grestore -0 1 3 1 10 SU -165 572 T -19 flipH -N -3 L -0.482757 nxsetgray -19 0 0 0 line -0 19 0 arrow -0 0 T -grestore -0 1 0 1 10 SU -[1 0 0 -1 182 619] concat -[1.041516 0 0 1.091516 0.806877 0.836021] concat -N -0 nxsetgray -gsave -202 91 0 0 oval fill -grestore -0 0 T -grestore -0 1 0 1 10 SU -[1 0 0 -1 187 614] concat -[1 0 0 1 0 0] concat -N -1 nxsetgray -gsave -202 91 0 0 oval fill -grestore -0 0 T -grestore -0 1 0.15 1 10 SU -[2] 0 setdash -287 570 T -N -0.15 L -0 nxsetgray -53 40 0 0 line -0 0 T -grestore -0 1 0 1 10 SU -[2] 0 setdash -[1 0 0 -1 284.171997 573] concat -[-0.753307 0 0 0.513481 6.136576 0.432595] concat -N -0 nxsetgray -gsave -7 10 0 0 oval fill -grestore -0 0 T -grestore -0 1 5 1 10 SU -268 470 T -N -5 L -0 nxsetgray -0 197 0 0 line -90 0 197 arrow -0 0 T -grestore -0 1 5 1 10 SU -368 470 T -N -5 L -0 nxsetgray -0 197 0 0 line -90 0 197 arrow -0 0 T -grestore -0 1 3 1 10 SU -166 404 T -N -3 L -0.482757 nxsetgray -19 0 0 0 line -0 19 0 arrow -0 0 T -grestore -0 1 3 1 10 SU -206.136032 516.42865 T -12.727875 flipH -14.141968 flipV -N -3 L -0.482757 nxsetgray -12.727875 14.141968 0 0 line -48.013969 12.727875 14.141968 arrow -0 0 T -grestore -0 nxsetgray -0 1 0.15 1 10 SU -gsave -/Times-Roman findfont 16 scalefont [1 0 0 -1 0 0] makefont -134 -exch -defineuserobject -134 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1395] concat -/Times-Roman findfont 18 scalefont [1 0 0 -1 0 0] makefont -168 -exch -defineuserobject -168 execuserobject setfont -0 nxsetgray -241 704 moveto (Above Ring) show -grestore -grestore -0 nxsetgray -0 1 0.15 1 10 SU -gsave -168 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 895] concat -168 execuserobject setfont -0 nxsetgray -246 454 moveto (Below Ring) show -grestore -grestore -0 nxsetgray -0 1 0.15 1 10 SU -gsave -168 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 809] concat -168 execuserobject setfont -0 nxsetgray -195 411 moveto (- Indicates expansion) show -grestore -grestore -0 nxsetgray -0 1 0.15 1 10 SU -gsave -168 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1327] concat -/Times-BoldItalic findfont 24 scalefont [1 0 0 -1 0 0] makefont -133 -exch -defineuserobject -133 execuserobject setfont -0 nxsetgray -204 670 moveto (B) show -134 execuserobject setfont -0 6 rmoveto -(0) show -0 -6 rmoveto -grestore -grestore -0 nxsetgray -0 1 0.15 1 10 SU -gsave -134 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1113] concat -/Times-BoldItalic findfont 17 scalefont [1 0 0 -1 0 0] makefont -135 -exch -defineuserobject -135 execuserobject setfont -0 nxsetgray -276 561 moveto (r=r) show -/Times-BoldItalic findfont 13 scalefont [1 0 0 -1 0 0] makefont -136 -exch -defineuserobject -136 execuserobject setfont -0 5 rmoveto -(0) show -0 -5 rmoveto -135 execuserobject setfont -(\(1+) show -/Symbol findfont 17 scalefont [1 0 0 -1 0 0] makefont -137 -exch -defineuserobject -137 execuserobject setfont -(a) show -135 execuserobject setfont -(t) show -136 execuserobject setfont -0 -7 rmoveto -(2) show -0 7 rmoveto -135 execuserobject setfont -(\)) show -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Symbol -%%+ Times-BoldItalic -%%+ Times-Roman diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype65/prob05.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype65/prob05.gif deleted file mode 100755 index 105221427..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype65/prob05.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype65/prob07.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype65/prob07.eps deleted file mode 100755 index c58af642f..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype65/prob07.eps +++ /dev/null @@ -1,553 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: set14.q5.create -%%Creator: Create -%%CreationDate: Fri Jul 7 10:44:10 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 65 417 398 682 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(Gfr+bL'A(E_U$ -% :XY!DTG2f.>i?G0i)6Q%arE)Br=N#V-;=4\l'hDapY@Ua;-'1NHL/p-UDYjj`&bf]GFaMW-iF%:gn]_Z+,rR05hVs/6<,a!9gg"0S*19$Y)Nr]gRAt=?N-#'Ji)<[>qZ38t?%S- -% lEVCp^.VMh]/PM5u3S''f_.g=dcU,c;C<=h+%f/!@^m2XFjJ)CoC)TS^[iBrF2\RMfC+$`:= -% AQC1utga;3dS)VFJkB5s.QfkqrN7[KCl+nn6]_C,aBF^_*2d%db -% &F;Sc2k2g.Dc'O`N*T%irb\T&Vq2(b[JAjGQ"JkaT822jN>9Pm.-=!"VOUAPK?'W%%,:5V9N -% *(XQ@_jIp&n@fHPMddAF+h*7Ae(=0A)hWuGBpI+I4geUbl$#Ju10D'.Abf!$gGO")%j^guJ6 -% G,:bl1+>U*S1YJpUPnq@ca`/nRN&E(SR2Fj)F3*(*Q($epeppM!U'oGXaHWg#V9*DO"4s$ -% ^[5;r=-['g1h:05o]6L;,CPfn1^>e1\Y^t&DN!`YqQWLD>+cL9cgCX#r-E;hi/:4>$Rr7F$# -% !/R=2"b?Y,oTUT#%5C_!a*A?$gJVd-T@btitJ0nMh<.SEa72F7'1,':h57'q5"+Z5#0VCn7LfFHYYQGmW/q@[S^_ -% cO83&)W(EBsZd!"$Jl\Vp\C""[\'!!#]$&lT%+#f^>jGo/jrJ1BcY9&eEYQF91-%Id$n!=0g -% #!^pTLn3#-+#`ogB!^K?V.&R'b0SY#X?t1&VKeI4pMHDapS&al)>*PFLQ0ImjOD@uU$(*][P -% X;+ujCTMQ)Mj.ae">^nLFLm/dC,QST(PLj7JZaTEW/lk!VJr:s*7EHA;h]7#_F%^&qEeX633 -% Jk"=4m>L`m0n$&64q&M.=@Lj$.EbN'jRS=*5fNbh6f"i*V7R$MS9PnFKJKN".D%&m-T![ne] -% 8m0ln[(MWp"[IbABSo]X*bM<'MFrc'&c`)[+:sihO[9XV,9I%r&E(oi!Jo*S6"#3W1_@MYl^ -% Fkc9!a$a*M_YR"GT,0i#`N7BUZHU4=R]!@1?\"*)Jf9;cqJ/"eegUXVs\+rIH!VlN8_]5#@b;DPEp(=?*?mQDi!j[NB -% R8r^1[`4740j)b+;#un`Uc]-?NroDn.eB"A0#"Mp@iPIeGLa\6js`V'Thla7_A'6fJ,lZejW -% SiQa9;FDYWuIM_D)p>G]C$87>g4mW0tmqDXg>+N*j5lU1PJ-Pn1 -% M9?2ud-f=e=a(U-4,!=ZTm5XMo63UC0"+,8M0#.V),m%ZX`FM0cOMECq?DY_H*']gZc[6gsD`>L(+qT0i#>P_Zg7/1i:CZBd)S4S'=%k.,],Mc5AMs@-m<07S[n+PfL -% FFo>Yh8*L.MbW)81?nM4\29Wqd6:7:L[GE3?")GV,0A@U"&F$iFZoeC+_=-)OLNVE*ci4qS; -% 5(4D+\49m80[."4%6*'4T+*XD7pgTsA;2!=@W7H!Ap(?:7VHA'2Fi7pNKMm2R"=a[!kNMp&g -% XT*0*:#F___QX'W.ZK#56EO&YQ5'.Ej-\WQV#RD>+-A-c1;.^\XRW7KCBq^M -% eg1dOSZ!(qH`AUq;\%*(lDs.(B*1FSZ-X:]82+JQ(ckSsgG1ICm*M2)88)9TnQ$6P\lTn'KH -% j8.8eXBZ!45(EY7W=[<`*fXLPQta00Oe4"LiJ14/Ai+KuuYKt+"1U&le__I=fC^rX[TR78AN;-)Wj1\)CpMH#)fE6lWTLV,\V -% V:Bat`'!S^H7b?(T\_[rJ%u2&n"\k+VNWV0F,?T7&6Ua.IjF#)MN?""&gGVt`O`.YZN/@bX0*4i!/%[1+L,^jgNNHG$SW2Jj#d>rcp<\7[7_=Jl+.6&]L:&7,\#0Zl -% PL$jloV&YUFPlVKrJ:F+Ad/)/Rr&"s$!`E@,[W"5`0[L.T<(m,q-d!-#<2'L?m/\9&0SDa -% %5R,C[/dHb("S&H"#dir'Ut5U%I$!g/:g'NRb]Yf.(f)rC,]BVmLaMe($)8'2<.\ -% AU6WEg=gQk<`7]=OjKQ3BN&frh.$crBXT6;O>h?orV+H6Wsj_!4j)s+7o&Y@8O"-VF&(&V>) -% X$&hp))bU='9Te:Zq&4f)"p;,oL)e@QYhQp$:&0)15LUhbtr,23B"#apu%.%"q0\F3!N:;L! -% b7Y4b63JO06j$algh7+H'u`U11/?e5A&&0K6P/eX8:95/%hb>cmI#0'Oc)jH@BjB-F,G_k2A -% QhR]h2o-+Iil%5tIEdK6%\hZb`)YY`SfL@20NF&/drX+9^'M)2TT -% VC\b#:8F4ReeeH*irF;=I5! -% .^Bee`j]9\;"c'dY^W0lP]ME7_rCgB6-c)*>:Kb7&%)`O!J.''DVZ`0E_@Ux -% EndEmbeddedGraphics N 1946 79a E b1 S 35d79 R 357ed65f -gsave --39 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -152 306 365 402 rectclip -0 0 0.15 1 10 SU -258 496 T -N -0.15 L -0 nxsetgray -0 177 0 0 line -90 0 177 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -258 495 T -N -0.15 L -0 nxsetgray -226 0 0 0 line -0 226 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -175.05304 344.029816 T -N -0.15 L -0 nxsetgray -83.89386 152.940521 0 0 line -241.25531 0 0 arrow -0 0 T -grestore -0 0 5 1 10 SU -265 495 T -N -5 L -0 nxsetgray -137 0 0 0 line -180 0 0 arrow -0 0 T -grestore -0 0 5 1 10 SU -209.469681 406.392029 T -N -5 L -0 nxsetgray -48.060654 88.216034 0 0 line -241.419983 0 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 335 427] concat -[0.83 0 0 0.729592 0.595 0.946427] concat -N -0 nxsetgray -gsave -7 7 0 0 oval fill -grestore -0 0 T -grestore -0 0 0 1 10 SU -[1 0 0 -1 255.973206 605] concat -[0.855 0 0 0.729592 0.507502 0.946427] concat -N -0 nxsetgray -gsave -7 7 0 0 oval fill -grestore -0 0 T -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -/Times-Bold findfont 18 scalefont [1 0 0 -1 0 0] makefont -591 -exch -defineuserobject -591 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 657] concat -/Times-BoldItalic findfont 24 scalefont [1 0 0 -1 0 0] makefont -402 -exch -defineuserobject -402 execuserobject setfont -0 nxsetgray -161 337 moveto (x) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -402 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 997] concat -402 execuserobject setfont -0 nxsetgray -495 507 moveto (y) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -402 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1373] concat -402 execuserobject setfont -0 nxsetgray -251 695 moveto (z) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -402 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 927] concat -591 execuserobject setfont -0 nxsetgray -222 466 moveto (i) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -591 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1027] concat -402 execuserobject setfont -0 nxsetgray -326 522 moveto (i) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -402 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1202] concat -591 execuserobject setfont -0 nxsetgray -270 604 moveto (P) show -0 7 rmoveto -(1) show -0 -7 rmoveto -(\() show -/Times-BoldItalic findfont 18 scalefont [1 0 0 -1 0 0] makefont -353 -exch -defineuserobject -353 execuserobject setfont -(0,0,H) show -591 execuserobject setfont -(\)) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -591 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 858] concat -591 execuserobject setfont -0 nxsetgray -350 432 moveto (P) show -0 7 rmoveto -(2) show -0 -7 rmoveto -(\() show -353 execuserobject setfont -(x) show -/Times-BoldItalic findfont 14 scalefont [1 0 0 -1 0 0] makefont -592 -exch -defineuserobject -592 execuserobject setfont -0 7 rmoveto -(2) show -0 -7 rmoveto -353 execuserobject setfont -(,y) show -592 execuserobject setfont -0 7 rmoveto -(2) show -0 -7 rmoveto -353 execuserobject setfont -(,0) show -591 execuserobject setfont -(\)) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -591 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1007] concat -591 execuserobject setfont -0 nxsetgray -240 510 moveto (O) show -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Times-Bold -%%+ Times-BoldItalic diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype65/prob10a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype65/prob10a.gif deleted file mode 100755 index 664ed1a61..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype65/prob10a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype65/prob11.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype65/prob11.eps deleted file mode 100755 index 29952f4b5..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype65/prob11.eps +++ /dev/null @@ -1,423 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: set13.q11.create -%%Creator: Create -%%CreationDate: Thu Jun 29 17:29:44 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 145 470 405 668 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(kePK85D-6I5cKnVQY)t\$"P5FTGmq\Fj1+f@0ZD1\jEhX@W5'.Ej-\N?Qa>o,4-Gp6H6oJ1ZQY!U.B;U5 -% ,)JQ(BAqk'%\H\O>[+XT]F&eY``uQ#A!F9!$[Ge9C,RrN`InJC,[GSGCqH3qm;i27,YLg#KKEfo=8DKM -% i>$oWbu@Yn!UW.9aV\qi_4,$9On!"\"dj&pK+FdA*4!ZC'\I2RlP@>@;#A7I=S+=1Tb@AXoT -% SnUc0Q`7+bTLf3h<"sAbWC'ho.)p(Zh4.+,'R.G:J%7iM -% YR\r^A68JFf0i?`FJl3+&`M_CDU@*-qmb)'\'E@M6BV92bjc>Z>J]92W&]'6JtKPYXQl)uq= -% Nck,561('+0%69kG=0k'h8=-\MmT&Y:8c&3=O9%I<#Qo(#jV>+'"0bf+PlNMFs)eZtP71b$i+20RZLT:U?OX1o+Zg]!FX -% GLegDi]#en"CV#p<#;EV@AlFD3K'M/,"%<]!"ar2!X-A3=fj@%,OE+!>o2m,?gA6jZ86tGn& -% sER[b64b5CWFk$\7c/VnD+Kms,'rL#3AA4b$__+5&_^j;u*"n&5Q(JIhe]dDnBBM2bZbEaA+ -% k=/6&K:KmGo!<1co/Dp[5K,QRR=U*Nej=Lm\!-$fP'"C3lamXcmm)0#U7u.0K5n6L!?mT9DM -% *\A]+*SR=+>!#CIgdJ3OUtk8e#0hN!?d&(Eut^*2o#:TDg/`Z$h0\MO$#sQ&Usc\&I*fD!H= -% $YFrUPm$WFjQ*H6c@S/rQ!#W\65-n585,9qjqL^&g4(6!W1/SZF;6Pok)x -% EndEmbeddedGraphics N 1139 473 E 38 S 1f82a R a0e42549 -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -145 470 260 198 rectclip -0 2 4 1 10 SU -[1 0 0 -1 247.992859 656.992859] concat -[1 0 0 -1 2 143] concat -N -4 L -0 nxsetgray -N -70.007141 70.007141 70.007141 90.818459 -90.855095 arcn -s -0 0 T -grestore -0 2 4 1 10 SU -158 514 T -N -4 L -0 nxsetgray -156 0 0 0 line -0 156 0 arrow -0 0 T -grestore -0 2 4 1 10 SU -159 654 T -N -4 L -0 nxsetgray -156 0 0 0 line -0 0 T -grestore -0 2 1 1 10 SU -[4] 0 setdash -319 513 T -N -1 L -0 nxsetgray -0 140 0 0 line -0 0 T -grestore -0 2 2 1 10 SU -[4] 0 setdash -320 585 T -N -2 L -0 nxsetgray -41 53 0 0 line -0 0 T -grestore -0 nxsetgray -0 2 0.15 1 10 SU -gsave -/Times-BoldItalic findfont 24 scalefont [1 0 0 -1 0 0] makefont -61 -exch -defineuserobject -61 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 973] concat -61 execuserobject setfont -0 nxsetgray -292 495 moveto (I) show -grestore -grestore -0 nxsetgray -0 2 0.15 1 10 SU -gsave -61 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1247] concat -/Times-Bold findfont 18 scalefont [1 0 0 -1 0 0] makefont -138 -exch -defineuserobject -138 execuserobject setfont -0 nxsetgray -331 626 moveto (R) show -grestore -grestore -0 nxsetgray -0 2 0.15 1 10 SU -gsave -138 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1163] concat -/Times-Bold findfont 24 scalefont [1 0 0 -1 0 0] makefont -63 -exch -defineuserobject -63 execuserobject setfont -0 nxsetgray -296 590 moveto (P) show -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Times-BoldItalic -%%+ Times-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype65/prob11.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype65/prob11.gif deleted file mode 100755 index d5c35ab02..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype65/prob11.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype65/prob12.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype65/prob12.eps deleted file mode 100755 index 06519fa7a..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype65/prob12.eps +++ /dev/null @@ -1,544 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: se13.q12.create -%%Creator: Create -%%CreationDate: Thu Jun 29 14:31:55 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 40 469 531 720 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(6gsD`>L(+qT0i#>P_Zg7/1i:CZBd)S4S'=%k.,],Mc5AMs@-m<07S[n+PfL -% FFo>Yh8*L.MbW)81?nM4\29Wqd6:7:L[GE3?")GV,0A@U"&PJ]lPoeCL.G`P?!%NP+Ri!?J, -% %h8I/eSp.frRl/-I/OM1?[k&f^u'J*_2oOL>_p3b)I1e.L)ZhOES;E4SMirL@pfL-'"aPdLO -% EEhiC6K`aIn'$SX`*h-']a<8K\dVV+q"qBsLcFCpCASOa&1o$"&/Wcq+e?(l"De!.7,$AXI2 -% OR:iFO2HjgmV.R_^Xh>M)Cpi*]7X2S:pY0\)qIZ7:aXu*aBl$%9&/j5*=&='gG5!#"ClVTRH -% 0IUc+FNb-BA\=,l1^j#!;7euU3IN2i-GaYfANG::7.K((i%-c)]l!rU)>1r;'HDrVRRf[/\[ -% #C#VjQ%5`LNR=:#V.]F]l8!_cFAOERI3='GY1E29d2.`paY:I]V3@aQmlfR,\MG3*;'D:[BQ -% ?K)j"C94rMRr#IbL7<(#^+!="F!BeIS^-=7*M:jWM4Jhg$47ieL2p]DH3nJH7gq4J.ROW35+ -% 8*jo[,@F_DT+_l)"#4#Upf"8pDtf)/e*cLGRR*,)IX1Te!=\*g$a=J^>T+"31lXD6l\U)6I( -% 8p-gQt;IU"6.,SVc/si5fAhJdIVJ@NjBtc[!S&!9A>eP88Q`m"/om7^P!OLb@^uCJh0VSm&a -% 0oC*/roa9o]L -% B\`PXggA3Hqfd%1H!@k(JUP!:36A%hXQ&3?Z4&6)N;&3>&N^VXeHD.EIb1kgn(bJ:dlL(m[A -% +h7FLYP<]=M^YPM3UpjK:AVMfs'n)Xd%T2*?GL?e+[PTRqqW.I`_- -% J(tOJ?h6Zee70nXt`asqV"m:rq*f0;34TW]-+sGkdCpYO*U&2?DKi"\*7%qHL'N,p-/2ZOfc -% u@/c=H5>P0HWgjt2>)T%LsJVa[k1EIqg*A(hDM7c]gHDB8WloIB"C35Q78/ -% Tco"uO]c,,bhO;^bOo-:"mGdO`NBRSX2LKE3Md#td*1;$eCV@L.OPK)g'+!+ZNFIa%po6aoN#f2&%N!1d(4%gk"E6`R.1B[A[*=C&tUif9&7^X&)-^5JHtnQTd[95M/gb,W -% ?&2"!7Xc/4iBnMl.,cru.q,Gp\P<5k8cG6lB`U-WIX'!A"ag!-$/nJftM9?[D& -% j=mp"L'YA!*mLR764(Uk;V3@)aN-M=jQJH"mUK[n>AA($/Z,S^6(Jq -% 77m^ndUju3;;rMa%!)ajZR$bLS1D2,Z\@&MlTY\6TZDbgDmhb$JR'n5V*,Cl%LCq-#VAnsN( -% /$0C^\&A,"WdsF+=rmpca":V2G[X;&):pj]',GIs_tm[\A3p_0`X4(?MI2sO-,fF4Z@A!AQP -% 1TDWF2lI+NB@:(Jd'#14Cp'+aY%5Dje*L8O*r(;[57C5mVDE6T.G3M&ksH(6[^0BA!<9)O-X -% m!'ml4J\("1.a-(_I;LS^8$"tK!rt&HY[R(Wi::3Bc]VS;k9s^D6N@)dx -% EndEmbeddedGraphics N 1886 75e E 5 S 35785 R 6ff60fbe -gsave --39 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -40 469 491 251 rectclip -0 2 4 1 10 SU -[1 0 0 -1 183 657] concat -[1 0 0 1 2 2] concat -N -4 L -0 nxsetgray -192 9 20 strokedRoundBox -0 0 T -grestore -0 2 4 1 10 SU -106 483 T -N -4 L -0 nxsetgray -412 0 0 0 line -0 0 T -grestore -0 2 4 1 10 SU -273 655 T -N -4 L -0 nxsetgray -24 0 0 0 line -0 24 0 arrow -0 0 T -grestore -0 2 4 1 10 SU -279 606 T -N -4 L -0 nxsetgray -24 0 0 0 line -180 0 0 arrow -0 0 T -grestore -0 2 4 1 10 SU -275 483 T -N -4 L -0 nxsetgray -24 0 0 0 line -180 0 0 arrow -0 0 T -grestore -0 2 0.15 1 10 SU -429 606 T -N -0.15 L -0 nxsetgray -0 51 0 0 line -90 0 51 arrow --90 0 0 arrow -0 0 T -grestore -0 2 0.15 1 10 SU -181 675 T -N -0.15 L -0 nxsetgray -233 0 0 0 line -0 233 0 arrow -180 0 0 arrow -0 0 T -grestore -0 2 0.15 1 10 SU -446 485 T -N -0.15 L -0 nxsetgray -0 121 0 0 line -90 0 121 arrow --90 0 0 arrow -0 0 T -grestore -0 2 0.15 1 10 SU -67 626 T -N -0.15 L -0 nxsetgray -0 62 0 0 line -90 0 62 arrow -0 0 T -grestore -0 2 0.15 1 10 SU -67 627 T -N -0.15 L -0 nxsetgray -59 0 0 0 line -0 59 0 arrow -0 0 T -grestore -0 nxsetgray -0 2 0.15 1 10 SU -gsave -/Times-BoldItalic findfont 14 scalefont [1 0 0 -1 0 0] makefont -592 -exch -defineuserobject -592 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1375] concat -/Times-BoldItalic findfont 18 scalefont [1 0 0 -1 0 0] makefont -353 -exch -defineuserobject -353 execuserobject setfont -0 nxsetgray -288 694 moveto (l) show -grestore -grestore -0 nxsetgray -0 2 0.15 1 10 SU -gsave -353 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1265] concat -353 execuserobject setfont -0 nxsetgray -436 639 moveto (w) show -grestore -grestore -0 nxsetgray -0 2 0.15 1 10 SU -gsave -353 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1083] concat -353 execuserobject setfont -0 nxsetgray -454 548 moveto (d) show -grestore -grestore -0 nxsetgray -0 2 0.15 1 10 SU -gsave -353 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1243] concat -353 execuserobject setfont -0 nxsetgray -134 628 moveto (x) show -grestore -grestore -0 nxsetgray -0 2 0.15 1 10 SU -gsave -353 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1405] concat -353 execuserobject setfont -0 nxsetgray -58 709 moveto (y) show -grestore -grestore -0 nxsetgray -0 2 0.15 1 10 SU -gsave -353 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1233] concat -353 execuserobject setfont -0 nxsetgray -49 623 moveto (O) show -grestore -grestore -0 nxsetgray -0 2 0.15 1 10 SU -gsave -353 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1016] concat -/Times-BoldItalic findfont 24 scalefont [1 0 0 -1 0 0] makefont -402 -exch -defineuserobject -402 execuserobject setfont -0 nxsetgray -280 513 moveto (I) show -592 execuserobject setfont -0 9 rmoveto -(1) show -0 -9 rmoveto -grestore -grestore -0 nxsetgray -0 2 0.15 1 10 SU -gsave -592 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1156] concat -402 execuserobject setfont -0 nxsetgray -282 583 moveto (I) show -592 execuserobject setfont -0 9 rmoveto -(2) show -0 -9 rmoveto -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Times-BoldItalic diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype65/prob12.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype65/prob12.gif deleted file mode 100755 index 15db8b75a..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype65/prob12.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype65/prob13.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype65/prob13.eps deleted file mode 100755 index a2afacd6c..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype65/prob13.eps +++ /dev/null @@ -1,506 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: set13.q13.create -%%Creator: Create -%%CreationDate: Thu Jun 29 14:52:17 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 34 455 536 699 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr()WPMjc:q\!ABQYkI&I0IEg"@,m.$"8#`8C5.NYYP787jb%)X7*3U/cQZ`RIf=_J@2 -% 7WSq[4G)$L9P(c,d,VirtS:aq$PNmsn"!s&^iWR;R6"i>-gn=[[r\o[rTn2sc9lFE)h-h\5W -% GN;AI6t;Pa>K?e3%V'Uc#8_F-@0R-FK]0ojBe3r;)fF"gLDXiH@7CYH\rd19+Ae1i)eI7@Je -% W.1+lNoZ.):OpEh'rM%5>joiu)mqW5+!p]YVT,%R#2UEm"R -% 4po$+W"U,OTlVEYi,e@AU$1iSK<)W+GU"Q?=sNeRoH,9CE%pqLB&+"#9R@Ed0JQWq'" -% l&J,]6GTR`jif\hAo:0=3F(i%-cLEN$/,)IY@W$7-P\q/t%?J=Tf[5IZF,EP5)\KMn^(.&-CY6`HuU@>$kXBg./2P[c.X^5G#t:=D2c,EZY: -% ]"i+<`-`>aRDRnTc:FO7(8!bXL6)PH!b6:.]FoC-TX$;`+@N>H65VOZV%5]dC6"-R/"r_T2l -% k<3e<.]g>(514g!!1H^EdTOd(%]b"e[f,=OlcKscN*aqGA=1d(.d84gmpCP\h2_pEcXPF>QL -% a)NHMC.GPuY1%ua6(!(#rcE[=AgQ3mVC:_T-OYg^=1b:`\JQd\/,IOjB?%Dp14EaU4VnX[q9 -% Z[@W45'.pE^`H3PfYCfVj[t;KI.>tkd.GdaF7.iH>5-(F5@3Mb(BL%H"TTJ_"O[R!'GZ/J)g -% /sd<-_MXP!U;j#YPd3Y^tO\DCu!`&)qn*Zb_2&GUZdP!45XsR1KE6Q'd.MPgBC9"MfP8"5;W -% 4#6:*V0aXTB?@ZFs[KF#I,'_VHj[ZRleUaEW`u$Tl5$^]3lqXTSWk0+:p4$$OCg?^ -% tk-WKFRibXpfLr`&1=EYSnDl!YIdFre6)m]-1Q=#9=gkNJA%'N9Jb-2FA>@3rT5S!"$.i;H0 -% @tXq=$'mL^49!$DG<'MK2=njF/b&:uC2KE,+?#WkpM'4hK'cO)(egndJk3r=jZds/2)<^J#6 -% J;FFa."ridd1C7',g[)^6GRI/AlM0X'qIlgTfI!%@Hi=C!eJJoJC0,/)e8Ze8A<1?0R_Peiu -% 8(#aTG'H!#sQ-"uTK`$@#C4J/Ml)"nP>#B!OTNS5g=FpP?'G6&*+d:"!d$\X$fEQodF(5E6% -% <2o79\H40ou"6%9782Gm?$VMuQE6V#K/XrkQTRN[BbA@ltB.Vioo,p!=)61#`^iZ#!Eu<4jW -% ptj\%,s*LPCTlB".e)G:I8^&:jL%n1u\A0/P0\TFT/S:3%SQ0ds+&eJh;eQW.Ygh'>6Z\,6/ -% o!JH:$3.p=tkE)C_V6YB!-kFhs#I.VpoDCWYMEqG=]Uo4&g&V(+"!?7n75SKpn&u2tQ7W/Zb -% aI(nS=25:f"JhhTl(T*P4k,`o&pH#lR'oS)G]HUDABCV#5,(,c?4jrQsS;l=?YBeYGpN0iWt2Uro$"*,DQ[D3d>O=IZGi\NT0SA`3A2< -% ^'ku@oS:Hqr!>p3%.h;:!t=rRGQWHffg%oToZ7>jB<@$,72fF\_1io+Q,2/o"L9q?B4H#f_A -% *FQf#^L:>Z+,nR09f'!.d6F^fHo&`R\4/D*f&#GGW:#?@DX"Qste%\QE@&I?N8qXaqf;Br7T -% $)J^2((>EZ5h3Qf5DNkAGHc%FZVJsZqfA(GpV8`^^"d/>GFp3#4B6`HFBBFL(Xk-m5$.aU%V?P.&)[Kk -% GWq;$95$?QUWs.J=I8NBnmdb3+@_VS4L&F9XL``-NSlO,KYMpKB#-EYO#b&hS.c^bVG*WABb -% nI%&M6JpAA',5aQZJd&i_pjj@Kd9r=?"&I116;SQqRS9.rDolbY1c%^IORti'lp]/g`2+!B!2aRLF'BICi6K"2bn -% Y`B1R1.fNofM09&8dJPdE/"m5SdB*6m -% No=!gRMEu>_'HX>GW(1E46[TO^WD&#G_26JJL-qKjSl2=P>\+O0l2]!Uk;)k0lRq-g;T83nZ -% i,aKBE-H/C'83,!fC]+ASPE8e3pnQ;@QB&bFR4i1Vl4W0R-RG@+jb-!u8fu#DN!bo4ELT9&2 -% (QR'KPBCqr.Q84Z!_FJ5U?aLtH1BL4Qb*sdO]6hAEU7Y.3:NgcUU+\n%M7>)Q@P"7D,EDD"W -% X-3L7#/D[2WJX6Yip3t=5VAe1G$hm&"R@>L4Aeq%BCqD?e6"gq"HkreN8k0K<(@#o#`fSGj/ -% 2T"+?raROP/Aph[EX;6j>8DiaZNp6FM`5eL1K#.=qO$ciTMEM_16ah^7a"7*_JVB'L@i-@\F -% eDh`>'/a*uNqW/5c'W`p&.0[U/Ar6[%J7AB_`#is&,`MQZ'HR&f2n^)b<8`QJAgsX=cC'u?* -% mlU1]\d0Jp;kb\>80o/qBiXS -% =GMmg$ -% )S$\lE$$C?nCK)VN4>!*Xe.$qq$Jd)2:rYnZ6R:*8cRM%2BSR(s:`!`7R0B%9D>]c@!bg0&W -% KQ?"?9/mVGFgHb*@[JRh?CB&!%!6g\#Yhc3n0@j6t8i3I\28W@PJ5=A.:U/JKE)Ei#*V$b&Bn;5Nc*i[(#H -% %S32)&F/gcFc5c\o_.G?#0Fq=jIn/rFh?jB&$_Y3XMP![ArZs:);p/C=(*SSsY]_(=`nUi=qb3=d(+]l/>fLuUSX5SX%8q24T5n_77GjuBf@A8HdE$re)jTLLlM$7Q+nJ- -% cYS[qRQ@rT`"qoff@3U$U[%81@!YUdoR+Cn1U5\A5!W)O=BM+P(5:4'S-cGe+SqT[m4.9#]^ -% Qa+GV2C7rGR26*%*\m+eZNQb#,0KmjKiSS1-8/:B_OZPrrNQ-OE41*>YDG?IfLTB8ch`4;S* -% o3D^f4Qo;H%;l9h#X(D^o2N5d:%uAUV$6`$YFA+^&0*/0b$fNkD.NG_OfLI%A3MOY6LeoSdP -% LR+]K+qRPR?.X2UD1=GuMG2$/:.!b%-o^\PCOB!N':C`$">9U*F1=oaU(kQ53*G-.:j/"[8? -% ge!uoNqOKh0t9kmF&:W\\MWo0\`lkIRtTkBK=U*0D?m;U3:5;R]2e5]5_+MCYe^gg$;)-X/t?Ntd7pl -% FZl!RMD2hc3j2C!9%:YEjOOHH!1B?ABZEkqtS;N!P_#^?BE!$4(!!dYMPRVYpG>n)r5'0$>$ -% e+%%6H7dBi)A#:m+kAS%3br.?pdh%TF,-RFVmj*5Z204"Y`X&\"DIlL:`o2%0lsR:A2_j-nl -% '8r*]94(\("^>[i!/oCJXtIHaP"qUN'(#VdA'msQkfi7HVmY5PYL_p%.s5%(+D@gA$+OjPGL -% 1Z1"b.`)&aATb6m^+'kI+NR@((j"BMXu.VWrB&aTrtPAgEWK6m&*4%CkI"jbQZP-,/gEi5n5 -% h8o+FoI#;Hi3aX0ku67Srq/?2Oq8rqB\4T`@e0"X%5)DD3'G_A&P+@"FCM3:[M[_$C&1HIZS -% Kh*QHZf452A%'C.BK7Er%TE)b$K0^o5E-?m&LH4nd%QO"d=!7o1,#?SkKL/4_6j;%61'm"^$CLL4clmE5)$V%@CC@(gh(r#]-nfgY;THh6N]7<+.#ERAM3^+,R&GkhVi%Q8#d+Gkf6:`.AVNg$Lu&q'Zb -% V1;'an+%"BY+;S/>m+,);S]6jX#$\_r,3^^@(qK]+nN-06^oKbeM/:Fa>:J`$l2(kpBa?%5k -% 7?"f:$W.eL?KjZ<`f]Qh7UPq+[I6OK^D%M><3&q47Hg.8RFi]#U-tR\&;?n'FN'Msl@Y+:JN -% uFs!3V?b'-t$d,$R"$11?TR;"[09lqEt) -% 4@!TdmCEJTWrfL[Z/LG(*=0aWCt)$iWEPOs*N!&]KO\UQa[P%:GE+)hsNE0<`T;00a?$cnS% -% jHSPr;I::I@7c_g(5Q'QLc]=,"R0FRB*\J;x -% EndEmbeddedGraphics N 2906 b5a E b2 S 53fdc R 32a6512c -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -125 373 402 323 rectclip -0 0 7 1 10 SU -287 392 T -N -7 L -0.220695 nxsetgray -0 45 0 0 line --90 0 0 arrow -0 0 T -grestore -0 0 7 1 10 SU -471 543 T -45 flipV -N -7 L -0.220695 nxsetgray -0 45 0 0 line -90 0 45 arrow -0 0 T -grestore -0 0 7 1 10 SU -417 464 T -45 flipV -N -7 L -0.220695 nxsetgray -0 45 0 0 line -90 0 45 arrow -0 0 T -grestore -0 0 7 1 10 SU -365 396 T -45 flipV -N -7 L -0.220695 nxsetgray -0 45 0 0 line -90 0 45 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 152 590] concat -[1.333403 0 -0.711148 0.955605 116.952942 0.618157] concat -N -0.724143 nxsetgray -0 0 162 163 rectfill -0.15 L -0 nxsetgray -0 0 162 163 rectstroke -0 0 T -grestore -0 0 1 1 10 SU -242.901764 482.531616 T -N -1 nxsetgray -45.196381 61.936646 0 0 line -53.882629 45.196381 61.936646 arrow -233.882629 0 0 arrow -1 L -0 nxsetgray -45.196381 61.936646 0 0 line -53.882629 45.196381 61.936646 arrow -233.882629 0 0 arrow -0 0 T -grestore -0 0 7 1 10 SU -220 506 T -N -7 L -0.220695 nxsetgray -0 45 0 0 line -90 0 45 arrow -0 0 T -grestore -0 0 5 1 10 SU -[1 0 0 -1 249 546] concat -[0.54036 0 -0.288192 0.387258 49.718491 1.938476] concat -N -0.68276 nxsetgray -0 0 162 163 rectfill -5 L -0 nxsetgray -0 0 162 163 rectstroke -0 0 T -grestore -0 0 7 1 10 SU -279 504 T -N -7 L -0.220695 nxsetgray -0 45 0 0 line -90 0 45 arrow -0 0 T -grestore -0 0 7 1 10 SU -236 435 T -N -7 L -0.220695 nxsetgray -0 45 0 0 line -90 0 45 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -236.84816 393.32962 T -N -0.15 L -0 nxsetgray -155.303757 224.340607 0 0 line -235.308029 0 0 arrow -0 0 T -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -/Times-BoldItalic findfont 18 scalefont [1 0 0 -1 0 0] makefont -160 -exch -defineuserobject -160 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1040] concat -gsave -301 511 14 18 rectclip -/Helvetica-Bold findfont 16 scalefont [1 0 0 -1 0 0] makefont -127 -exch -defineuserobject -127 execuserobject setfont -0 nxsetgray -301 527 moveto (O) show -grestore -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -127 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1023] concat -/Times-BoldItalic findfont 16 scalefont [1 0 0 -1 0 0] makefont -128 -exch -defineuserobject -128 execuserobject setfont -0 nxsetgray -514 517 moveto (x) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -128 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 769] concat -128 execuserobject setfont -0 nxsetgray -229 390 moveto (y) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -128 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1371] concat -128 execuserobject setfont -0 nxsetgray -313 691 moveto (z) show -grestore -grestore -0 0 0.15 1 10 SU -135 509 T -N -0.15 L -0 nxsetgray -373 0 0 0 line -0 373 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -315.999969 397.925079 T -N -0.15 L -0 nxsetgray -1 -271.149994 0 271.149994 line -90.208656 0 271.149994 arrow -0 0 T -grestore -0 0 7 1 10 SU -326 582 T -N -7 L -0.220695 nxsetgray -0 45 0 0 line -90 0 45 arrow -0 0 T -grestore -0 0 1 1 10 SU -152 424 T -N -1 nxsetgray -105 0 0 0 line -0 105 0 arrow -180 0 0 arrow -1 L -0 nxsetgray -105 0 0 0 line -0 105 0 arrow -180 0 0 arrow -0 0 T -grestore -0 0 1 1 10 SU -381 598 T -N -1 nxsetgray -105 0 0 0 line -0 105 0 arrow -180 0 0 arrow -1 L -0 nxsetgray -105 0 0 0 line -0 105 0 arrow -180 0 0 arrow -0 0 T -grestore -0 0 1 1 10 SU -247.600357 474.072357 T -N -1 nxsetgray -89.799271 0 0 0 line -0 89.799271 0 arrow -180 0 0 arrow -1 L -0 nxsetgray -89.799271 0 0 0 line -0 89.799271 0 arrow -180 0 0 arrow -0 0 T -grestore -0 0 7 1 10 SU -169 436 T -N -7 L -0.220695 nxsetgray -0 45 0 0 line -90 0 45 arrow -0 0 T -grestore -0 0 7 1 10 SU -273 581 T -N -7 L -0.220695 nxsetgray -0 45 0 0 line -90 0 45 arrow -0 0 T -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -128 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1207] concat -/Times-BoldItalic findfont 24 scalefont [1 0 0 -1 0 0] makefont -129 -exch -defineuserobject -129 execuserobject setfont -0 nxsetgray -214 612 moveto (B) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -129 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 835] concat -129 execuserobject setfont -0 nxsetgray -397 426 moveto (B) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -129 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1007] concat -160 execuserobject setfont -0 nxsetgray -402 510 moveto (v) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -160 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1035] concat -160 execuserobject setfont -0 nxsetgray -250 524 moveto (L) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -160 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 931] concat -160 execuserobject setfont -0 nxsetgray -280 472 moveto (L) show -grestore -grestore -0 1 4 1 10 SU -361 509 T -N -4 L -0 nxsetgray -34 0 0 0 line -0 34 0 arrow -0 0 T -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -160 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 819] concat -160 execuserobject setfont -0 nxsetgray -189 416 moveto (W) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -160 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1217] concat -160 execuserobject setfont -0 nxsetgray -420 615 moveto (W) show -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Times-BoldItalic -%%+ Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype65/prob14a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype65/prob14a.gif deleted file mode 100755 index 42f2cc63c..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype65/prob14a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype66/prob06b.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype66/prob06b.eps deleted file mode 100755 index 0570f026d..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype66/prob06b.eps +++ /dev/null @@ -1,1806 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad 6.0.1 -%%Title: prob06b-66.eps -%%CreationDate: 7/2/1997 -%%DocumentProcSets: Adobe_packedarray 1.0 0 -%%DocumentSuppliedProcSets: Adobe_packedarray 1.0 0 -%%DocumentProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentProcSets: Adobe_cshow 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cshow 1.1 0 -%%DocumentProcSets: Adobe_customcolor 1.0 0 -%%DocumentSuppliedProcSets: Adobe_customcolor 1.0 0 -%%DocumentProcSets: Adobe_pattern 1.9 0 -%%DocumentSuppliedProcSets: Adobe_pattern 1.9 0 -%%DocumentProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentSuppliedProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentFonts: Times-Bold -%%BoundingBox:55 507 711 673 -%%TemplateBox:306 396 306 396 -%%DocumentPreview: Header -%%EndComments -%%BeginProlog -%%BeginProcSet: Adobe_packedarray 1.0 0 -userdict /Adobe_packedarray 5 dict dup begin put -/initialize -{ -/packedarray where - { - pop - } - { - Adobe_packedarray begin - Adobe_packedarray - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - } ifelse -} def -/terminate -{ -} def -/packedarray -{ -array astore readonly -} def -/setpacking -{ -pop -} def -/currentpacking -{ -false -} def -currentdict readonly pop end -%%EndProcSet -Adobe_packedarray /initialize get exec -%%BeginProcSet: Adobe_cmykcolor 1.1 0 -currentpacking true setpacking -userdict /Adobe_cmykcolor 4 dict dup begin put -/initialize -{ -/setcmykcolor where - { - pop - } - { - userdict /Adobe_cmykcolor_vars 2 dict dup begin put - /_setrgbcolor - /setrgbcolor load def - /_currentrgbcolor - /currentrgbcolor load def - Adobe_cmykcolor begin - Adobe_cmykcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - end - Adobe_cmykcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_cmykcolor eq - { - end - } if -} def -/setcmykcolor -{ -1 sub 4 1 roll -3 - { - 3 index add neg dup 0 lt - { - pop 0 - } if - 3 1 roll - } repeat -Adobe_cmykcolor_vars /_setrgbcolor get exec -pop -} def -/currentcmykcolor -{ -Adobe_cmykcolor_vars /_currentrgbcolor get exec -3 - { - 1 sub neg 3 1 roll - } repeat -0 -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_cshow 1.1 0 -currentpacking true setpacking -userdict /Adobe_cshow 3 dict dup begin put -/initialize -{ -/cshow where - { - pop - } - { - userdict /Adobe_cshow_vars 1 dict dup begin put - /_cshow - {} def - Adobe_cshow begin - Adobe_cshow - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - end - } ifelse -} def -/terminate -{ -} def -/cshow -{ -exch -Adobe_cshow_vars - exch /_cshow - exch put - { - 0 0 Adobe_cshow_vars /_cshow get exec - } forall -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_customcolor 1.0 0 -currentpacking true setpacking -userdict /Adobe_customcolor 5 dict dup begin put -/initialize -{ -/setcustomcolor where - { - pop - } - { - Adobe_customcolor begin - Adobe_customcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - Adobe_customcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_customcolor eq - { - end - } if -} def -/findcmykcustomcolor -{ -5 packedarray -} def -/setcustomcolor -{ -exch -aload pop pop -4 - { - 4 index mul 4 1 roll - } repeat -5 -1 roll pop -setcmykcolor -} def -/setoverprint -{ -pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_pattern 1.9 0 -currentpacking true setpacking -userdict /Adobe_pattern 14 dict dup begin put -/initialize -{ -/definepattern where - { - pop - } - { - Adobe_pattern begin - Adobe_pattern - { - dup xcheck - { - bind - } if - pop pop - } forall - mark - cachestatus 7 1 roll pop pop pop pop exch pop exch - { - { - 10000 add - dup 2 index gt - { - break - } if - dup setcachelimit - } loop - } stopped - cleartomark - } ifelse -} def -/terminate -{ -currentdict Adobe_pattern eq - { - end - } if -} def -errordict -/nocurrentpoint -{ -pop -stop -} put -errordict -/invalidaccess -{ -pop -stop -} put -/patternencoding -256 array def -0 1 255 -{ -patternencoding exch ( ) 2 copy exch 0 exch put cvn put -} for -/definepattern -{ -17 dict begin -/uniform exch def -/cache exch def -/key exch def -/procarray exch def -/mtx exch matrix invertmatrix def -/height exch def -/width exch def -/ctm matrix currentmatrix def -/ptm matrix def -/str 32 string def -/slice 9 dict def -slice /s 1 put -slice /q 256 procarray length div sqrt floor cvi put -slice /b 0 put -/FontBBox [0 0 0 0] def -/FontMatrix mtx matrix copy def -/Encoding patternencoding def -/FontType 3 def -/BuildChar - { - exch - begin - slice begin - dup q dup mul mod s idiv /i exch def - dup q dup mul mod s mod /j exch def - q dup mul idiv procarray exch get - /xl j width s div mul def - /xg j 1 add width s div mul def - /yl i height s div mul def - /yg i 1 add height s div mul def - uniform - { - 1 1 - } - { - width 0 dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - 0 height dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - } ifelse - width 0 cache - { - xl 4 index mul yl 4 index mul xg 6 index mul yg 6 index mul - setcachedevice - } - { - setcharwidth - } ifelse - gsave - scale - newpath - xl yl moveto - xg yl lineto - xg yg lineto - xl yg lineto - closepath - clip - newpath - end - end - exec - grestore - } def -key currentdict definefont -end -} def -/patterncachesize -{ -gsave -newpath -0 0 moveto -width 0 lineto -width height lineto -0 height lineto -closepath -patternmatrix setmatrix -pathbbox -exch ceiling 4 -1 roll floor sub 3 1 roll -ceiling exch floor sub -mul 1 add -grestore -} def -/patterncachelimit -{ -cachestatus 7 1 roll pop pop pop pop pop pop 8 mul -} def -/patternpath -{ -exch dup begin setfont -ctm setmatrix -concat -slice exch /b exch slice /q get dup mul mul put -FontMatrix concat -uniform - { - width 0 dtransform round width div exch round width div exch - 0 height dtransform round height div exch height div exch - 0 0 transform round exch round exch - ptm astore setmatrix - } - { - ptm currentmatrix pop - } ifelse -{currentpoint} stopped not - { - pop pop - pathbbox - true - 4 index 3 index eq - 4 index 3 index eq - and - { - pop false - { - {pop pop} - {pop pop pop true} - {pop pop pop pop pop pop pop true} - {pop true} - pathforall - } stopped - { - pop pop pop pop pop true - } if - } if - { - height div ceiling height mul 4 1 roll - width div ceiling width mul 4 1 roll - height div floor height mul 4 1 roll - width div floor width mul 4 1 roll - 2 index sub height div ceiling cvi exch - 3 index sub width div ceiling cvi exch - 4 2 roll moveto - FontMatrix mtx invertmatrix - dup dup 4 get exch 5 get rmoveto - ptm ptm concatmatrix pop - slice /s - patterncachesize patterncachelimit div ceiling sqrt ceiling cvi - dup slice /q get gt - { - pop slice /q get - } if - put - 0 1 slice /s get dup mul 1 sub - { - slice /b get add - gsave - 0 1 str length 1 sub - { - str exch 2 index put - } for - pop - dup - { - gsave - ptm setmatrix - 1 index str length idiv {str show} repeat - 1 index str length mod str exch 0 exch getinterval show - grestore - 0 height rmoveto - } repeat - grestore - } for - pop pop - } - { - pop pop pop pop - } ifelse - } if -end -} def -/patternclip -{ -clip -} def -/patternstrokepath -{ -strokepath -} def -/patternmatrix -matrix def -/patternfill -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternclip -Adobe_pattern /patternpath get exec -grestore -newpath -} def -/patternstroke -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternstrokepath -true - { - { - { - newpath - moveto - } - { - lineto - } - { - curveto - } - { - closepath - 3 copy - Adobe_pattern /patternfill get exec - } pathforall - pop pop pop - } stopped - { - pop pop pop pop pop - patternclip - Adobe_pattern /patternfill get exec - } if - } - { - patternclip - Adobe_pattern /patternfill get exec - } ifelse -grestore -newpath -} def -/patternashow -{ -3 index type /dicttype eq - { - Adobe_pattern /patternmatrix get 4 1 roll - } if - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 6 index 6 index 6 index - Adobe_pattern /patternfill get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop -} def -/patternashowstroke -{ -4 index type /dicttype eq - { - patternmatrix /patternmatrix get 5 1 roll - } if -4 1 roll - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - 7 index 7 index 7 index - Adobe_pattern /patternstroke get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_Illustrator88 1.19 0 -currentpacking true setpacking -userdict /Adobe_Illustrator88 73 dict dup begin put -/initialize -{ -userdict /Adobe_Illustrator88_vars 31 dict dup begin put -/_lp /none def -/_pf {} def -/_ps {} def -/_psf {} def -/_pss {} def -/_a null def -/_as null def -/_tt 2 array def -/_tl 2 array def -/_tm matrix def -/t {} def -/_gf null def -/_cf 4 array def -/_if null def -/_of false def -/_fc {} def -/_gs null def -/_cs 4 array def -/_is null def -/_os false def -/_sc {} def -/_pd 1 dict def -/_ed 15 dict def -/_pm matrix def -/_fm null def -/_fd null def -/_fdd null def -/_sm null def -/_sd null def -/_sdd null def -/_i null def -Adobe_Illustrator88 begin -Adobe_Illustrator88 dup /nc get begin - { - dup xcheck - { - bind - } if - pop pop - } forall -end -end -end -Adobe_Illustrator88 begin -Adobe_Illustrator88_vars begin -newpath -} def -/terminate -{ -end -end -} def -/_ -null def -/ddef -{ -Adobe_Illustrator88_vars 3 1 roll put -} def -/xput -{ -dup load dup length exch maxlength eq - { - dup dup load dup - length 2 mul dict copy def - } if -load begin def end -} def -/npop -{ - { - pop - } repeat -} def -/sw -{ -stringwidth -exch 5 -1 roll 3 index 1 sub mul add -4 1 roll 3 1 roll 1 sub mul add -} def -/ss -{ -3 -1 roll pop -4 1 roll - { - 2 npop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - stroke - grestore - moveto - 2 copy rmoveto - } exch cshow -3 npop -} def -/sp -{ -exch pop - { - 2 npop (0) exch - 2 copy 0 exch put pop - false charpath - 2 copy rmoveto - } exch cshow -2 npop -} def -/pl -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where -{ -pop true setstrokeadjust -/c -{ -curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll curveto -} def -/V -/v load def -/y -{ -2 copy curveto -} def -/Y -/y load def -/l -{ -lineto -} def -/L -/l load def -/m -{ -moveto -} def -} -{ -/c -{ -pl curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll pl curveto -} def -/V -/v load def -/y -{ -pl 2 copy curveto -} def -/Y -/y load def -/l -{ -pl lineto -} def -/L -/l load def -/m -{ -pl moveto -} def -} ifelse -/d -{ -setdash -} def -/cf -currentflat def -/i -{ -dup 0 eq - { - pop cf - } if -setflat -} def -/j -{ -setlinejoin -} def -/J -{ -setlinecap -} def -/M -{ -setmiterlimit -} def -/w -{ -setlinewidth -} def -/H -{} def -/h -{ -closepath -} def -/N -{ -newpath -} def -/n -/N load def -/F -{ -_pf -} def -/f -{ -closepath -F -} def -/S -{ -_ps -} def -/s -{ -closepath -S -} def -/B -{ -gsave F grestore -S -} def -/b -{ -closepath -B -} def -/W -{ -clip -} def -/ta -{ -_as moveto -_tt aload pop 4 -2 roll -} def -/tl -{ -_tl aload pop translate -} def -/as -{ -{ -0 0 -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg 2 div exch neg 2 div -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg exch neg -} -{ -0 0 -} -} cvlit def -/z -{ -/_a exch ddef -/_as as _a get ddef -_a 2 le - { - 0 _tt astore pop - 0 exch neg _tl astore pop - } - { - 0 exch neg _tt astore pop - neg 0 _tl astore pop - } ifelse -exch findfont exch scalefont setfont -} def -/tm -{ -_tm currentmatrix pop -concat -} def -/I -{ -tm -/t - { - ta sp - tl - } ddef -} def -/o -{ -tm -/t - { - ta 4 npop - tl - newpath - } ddef -} def -/e -{ -tm -/t - { - ta _psf - tl - newpath - } ddef -} def -/r -{ -tm -/t - { - ta _tm _pss - tl - newpath - } ddef -} def -/a -{ -tm -/t - { - 2 copy - ta _psf - newpath - ta _tm _pss - tl - newpath - } ddef -} def -/T -{ -_tm setmatrix -} def -/Z -{ -pop -findfont begin -currentdict dup length 1 add dict begin - { - 1 index /FID ne - { - def - } - { - 2 npop - } ifelse - } forall -/FontName exch def dup length 0 ne - { - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - { - Encoding 2 index 2 index put pop - 1 add - } - { - exch pop - } ifelse - } forall - } if pop -currentdict dup end end -/FontName get exch definefont pop -} def -/u -{} def -/U -{} def -/q -{ -gsave -} def -/Q -{ -grestore -} def -/` -{ -/_i save ddef -6 1 roll 4 npop -concat -userdict begin -/showpage {} def -false setoverprint -pop -} def -/~ -{ -end -_i restore -} def -/@ -{} def -/& -{} def -/O -{ -0 ne -/_of exch ddef -/_lp /none ddef -} def -/R -{ -0 ne -/_os exch ddef -/_lp /none ddef -} def -/g -{ -/_gf exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _gf setgray - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/G -{ -/_gs exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _gs setgray - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/k -{ -_cf astore pop -/_fc -{ -_lp /fill ne - { - _of setoverprint - _cf aload pop setcmykcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/K -{ -_cs astore pop -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _cs aload pop setcmykcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/x -{ -/_gf exch ddef -findcmykcustomcolor -/_if exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _if _gf 1 exch sub setcustomcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/X -{ -/_gs exch ddef -findcmykcustomcolor -/_is exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _is _gs 1 exch sub setcustomcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/dp -{ -dup null eq -{ -pop -_dp 0 ne - { - 0 1 _dp 1 sub _dl mod - { - _da exch get 3 get - } for - _dp 1 sub _dl mod 1 add packedarray - _da 0 get aload pop 8 -1 roll 5 -1 roll pop 4 1 roll - definepattern pop - } if -} -{ -_dp 0 ne _dp _dl mod 0 eq and - { - null dp - } if -7 packedarray _da exch _dp _dl mod exch put -_dp _dl mod _da 0 get 4 get 2 packedarray -/_dp _dp 1 add def -} ifelse -} def -/E -{ -_ed begin -dup 0 get type /arraytype ne - { - 0 - { - dup 1 add index type /arraytype eq - { - 1 add - } - { - exit - } ifelse - } loop - array astore - } if -/_dd exch def -/_ury exch def -/_urx exch def -/_lly exch def -/_llx exch def -/_n exch def -/_y 0 def -/_dl 4 def -/_dp 0 def -/_da _dl array def -0 1 _dd length 1 sub - { - /_d exch _dd exch get def - 0 2 _d length 2 sub - { - /_x exch def - /_c _d _x get _ ne def - /_r _d _x 1 add get cvlit def - _r _ ne - { - _urx _llx sub _ury _lly sub [1 0 0 1 0 0] - [ - /save cvx - _llx neg _lly neg /translate cvx - _c - { - nc /begin cvx - } if - _r dup type /stringtype eq - { - cvx - } - { - {exec} /forall cvx - } ifelse - _c - { - /end cvx - } if - /restore cvx - ] cvx - /_fn 12 _n length add string def - _y _fn cvs pop - /_y _y 1 add def - _fn 12 _n putinterval - _fn _c false dp - _d exch _x 1 add exch put - } if - } for - } for -null dp -_n _dd /_pd -end xput -} def -/fc -{ -_fm dup concatmatrix pop -} def -/p -{ -/_fm exch ddef -9 -2 roll _pm translate fc -7 -2 roll _pm scale fc -5 -1 roll _pm rotate fc -4 -2 roll exch 0 ne - { - dup _pm rotate fc - 1 -1 _pm scale fc - neg _pm rotate fc - } - { - pop - } ifelse -dup _pm rotate fc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore fc -neg _pm rotate fc -_pd exch get /_fdd exch ddef -/_pf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - patternfill - } - { - pop - fill - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_psf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - 10 copy 6 npop exch pop patternashow - } - { - pop - 7 copy 3 npop exch pop ashow - } ifelse - grestore - pop - } for - pop - } for -restore -4 npop newpath -} ddef -/_lp /none ddef -} def -/sc -{ -_sm dup concatmatrix pop -} def -/P -{ -/_sm exch ddef -9 -2 roll _pm translate sc -7 -2 roll _pm scale sc -5 -1 roll _pm rotate sc -4 -2 roll exch 0 ne - { - dup _pm rotate sc - 1 -1 _pm scale sc - neg _pm rotate sc - } - { - pop - } ifelse -dup _pm rotate sc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore sc -neg _pm rotate sc -_pd exch get /_sdd exch ddef -/_ps -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - patternstroke - } - { - pop stroke - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_pss -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - 11 copy 6 npop 3 -1 roll pop patternashowstroke - } - { - pop - 8 copy 3 npop ss - } ifelse - grestore - pop - } for - pop - } for -restore -5 npop newpath -} ddef -/_lp /none ddef -} def -/A -{ -pop -} def -/nc 3 dict def -nc begin -/setgray -{ -pop -} bind def -/setcmykcolor -{ -4 npop -} bind def -/setcustomcolor -{ -2 npop -} bind def -currentdict readonly pop end -currentdict readonly pop end -setpacking -%%EndProcSet -%%EndProlog -%%BeginSetup -Adobe_cmykcolor /initialize get exec -Adobe_cshow /initialize get exec -Adobe_customcolor /initialize get exec -Adobe_pattern /initialize get exec -Adobe_Illustrator88 /initialize get exec -%%BeginEncoding: _Times-Bold Times-Bold -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] -/_Times-Bold /Times-Bold 0 Z -%%EndEncoding -%%EndSetup -0 A -0 O -0 R -0 g -0 G -0 i 0 J 0 j 1 w 4 M [] 0 d -u -u -203.529 589.5 m -203.529 549.719 187.398 517.471 167.5 517.471 c -147.602 517.471 131.471 549.719 131.471 589.5 c -131.471 629.281 147.602 661.529 167.5 661.529 c -187.398 661.529 203.529 629.281 203.529 589.5 c -1 g F -U -u -203.493 589.5 m -203.493 549.739 187.379 517.507 167.5 517.507 c -147.621 517.507 131.507 549.739 131.507 589.5 c -131.507 629.261 147.621 661.493 167.5 661.493 c -187.379 661.493 203.493 629.261 203.493 589.5 c -0.072 w 0 G S -U -u -185.529 589.5 m -185.529 569.602 177.457 553.471 167.5 553.471 c -157.543 553.471 149.471 569.602 149.471 589.5 c -149.471 609.398 157.543 625.529 167.5 625.529 c -177.457 625.529 185.529 609.398 185.529 589.5 c -1 g F -U -u -185.493 589.5 m -185.493 569.621 177.437 553.507 167.5 553.507 c -157.563 553.507 149.507 569.621 149.507 589.5 c -149.507 609.379 157.563 625.493 167.5 625.493 c -177.437 625.493 185.493 609.379 185.493 589.5 c -0.072 w 0 G S -U -U -u -u -644.529 589.5 m -644.529 549.719 628.398 517.471 608.5 517.471 c -588.602 517.471 572.471 549.719 572.471 589.5 c -572.471 629.281 588.602 661.529 608.5 661.529 c -628.398 661.529 644.529 629.281 644.529 589.5 c -1 g F -U -u -644.493 589.5 m -644.493 549.739 628.379 517.507 608.5 517.507 c -588.621 517.507 572.507 549.739 572.507 589.5 c -572.507 629.261 588.621 661.493 608.5 661.493 c -628.379 661.493 644.493 629.261 644.493 589.5 c -0.072 w 0 G S -U -u -626.529 589.5 m -626.529 569.602 618.457 553.471 608.5 553.471 c -598.543 553.471 590.471 569.602 590.471 589.5 c -590.471 609.398 598.543 625.529 608.5 625.529 c -618.457 625.529 626.529 609.398 626.529 589.5 c -1 g F -U -u -626.493 589.5 m -626.493 569.621 618.437 553.507 608.5 553.507 c -598.563 553.507 590.507 569.621 590.507 589.5 c -590.507 609.379 598.563 625.493 608.5 625.493 c -618.437 625.493 626.493 609.379 626.493 589.5 c -0.072 w 0 G S -U -U -167.507 661.493 m -599.507 661.493 l -0.072 w 0 G S -167.507 517.493 m -599.507 517.493 l -0.072 w 0 G S -599.507 553.493 m -581.507 553.493 l -0.072 w 0 G S -599.507 553.493 m -572.507 553.493 l -0.072 w 0 G S -599.507 553.493 m -581.507 553.493 l -0.072 w 0 G S -608.507 625.493 m -572.507 625.493 l -0.072 w 0 G S -167.507 625.493 m -203.507 625.493 l -0.072 w 0 G S -167.507 553.493 m -203.507 553.493 l -0.072 w 0 G S -608.507 553.493 m -586.036 553.493 l -0.072 w 0 G S -u -212.507 625.493 m -221.507 625.493 l -0.072 w 0 G S -230.507 625.493 m -239.507 625.493 l -0.072 w 0 G S -248.507 625.493 m -257.507 625.493 l -0.072 w 0 G S -266.507 625.493 m -275.507 625.493 l -0.072 w 0 G S -284.507 625.493 m -293.507 625.493 l -0.072 w 0 G S -302.507 625.493 m -311.507 625.493 l -0.072 w 0 G S -320.507 625.493 m -329.507 625.493 l -0.072 w 0 G S -356.507 625.493 m -365.507 625.493 l -0.072 w 0 G S -338.507 625.493 m -347.507 625.493 l -0.072 w 0 G S -374.507 625.493 m -383.507 625.493 l -0.072 w 0 G S -392.507 625.493 m -401.507 625.493 l -0.072 w 0 G S -410.507 625.493 m -419.507 625.493 l -0.072 w 0 G S -428.507 625.493 m -437.507 625.493 l -0.072 w 0 G S -446.507 625.493 m -455.507 625.493 l -0.072 w 0 G S -464.507 625.493 m -473.507 625.493 l -0.072 w 0 G S -464.507 625.493 m -473.507 625.493 l -0.072 w 0 G S -482.507 625.493 m -491.507 625.493 l -0.072 w 0 G S -500.507 625.493 m -509.507 625.493 l -0.072 w 0 G S -518.507 625.493 m -527.507 625.493 l -0.072 w 0 G S -536.507 625.493 m -545.507 625.493 l -0.072 w 0 G S -554.507 625.493 m -563.507 625.493 l -0.072 w 0 G S -U -u -212.507 553.493 m -221.507 553.493 l -0.072 w 0 G S -230.507 553.493 m -239.507 553.493 l -0.072 w 0 G S -248.507 553.493 m -257.507 553.493 l -0.072 w 0 G S -266.507 553.493 m -275.507 553.493 l -0.072 w 0 G S -284.507 553.493 m -293.507 553.493 l -0.072 w 0 G S -302.507 553.493 m -311.507 553.493 l -0.072 w 0 G S -320.507 553.493 m -329.507 553.493 l -0.072 w 0 G S -356.507 553.493 m -365.507 553.493 l -0.072 w 0 G S -338.507 553.493 m -347.507 553.493 l -0.072 w 0 G S -374.507 553.493 m -383.507 553.493 l -0.072 w 0 G S -392.507 553.493 m -401.507 553.493 l -0.072 w 0 G S -410.507 553.493 m -419.507 553.493 l -0.072 w 0 G S -428.507 553.493 m -437.507 553.493 l -0.072 w 0 G S -446.507 553.493 m -455.507 553.493 l -0.072 w 0 G S -464.507 553.493 m -473.507 553.493 l -0.072 w 0 G S -464.507 553.493 m -473.507 553.493 l -0.072 w 0 G S -482.507 553.493 m -491.507 553.493 l -0.072 w 0 G S -500.507 553.493 m -509.507 553.493 l -0.072 w 0 G S -518.507 553.493 m -527.507 553.493 l -0.072 w 0 G S -536.507 553.493 m -545.507 553.493 l -0.072 w 0 G S -554.507 553.493 m -563.507 553.493 l -0.072 w 0 G S -U -59.507 589.493 m -167.507 589.493 l -0.072 w 0 G S -608.507 589.493 m -707.507 589.493 l -0.072 w 0 G S -212.507 589.493 m -239.507 589.493 l -0.072 w 0 G S -266.507 589.493 m -293.507 589.493 l -0.072 w 0 G S -320.507 589.493 m -347.507 589.493 l -0.072 w 0 G S -482.507 589.493 m -509.507 589.493 l -0.072 w 0 G S -536.507 589.493 m -563.507 589.493 l -0.072 w 0 G S -374.507 589.493 m -401.507 589.493 l -0.072 w 0 G S -428.507 589.493 m -455.507 589.493 l -0.072 w 0 G S -653.507 661.493 m -689.507 661.493 l -0.072 w 0 G S -671.507 589.493 m -671.507 661.493 l -0.072 w 0 G S -671.507 661.493 m -662.507 652.493 l -0.072 w 0 G S -671.507 661.493 m -680.507 652.493 l -0.072 w 0 G S -671.507 589.493 m -662.507 598.493 l -0.072 w 0 G S -671.507 589.493 m -680.507 598.493 l -0.072 w 0 G S -u -680.471 611.529 m -680.471 630.529 L -665.471 630.529 L -665.471 611.529 L -680.471 611.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Bold 18 18 0 0 z -[1 0 0 1 665.471 616.529 ]e -1 (R)t -T -104.507 625.493 m -68.507 625.493 l -0.072 w 0 G S -86.507 625.493 m -86.507 589.493 l -0.072 w 0 G S -86.507 589.493 m -77.507 598.493 l -0.072 w 0 G S -86.507 589.493 m -95.507 598.493 l -0.072 w 0 G S -86.507 625.493 m -77.507 616.493 l -0.072 w 0 G S -86.507 625.493 m -95.507 616.493 l -0.072 w 0 G S -u -92.471 597.529 m -92.471 616.529 L -82.471 616.529 L -82.471 597.529 L -92.471 597.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Bold 18 18 0 0 z -[1 0 0 1 82.471 602.529 ]e -1 (r)t -T -%%Trailer -Adobe_Illustrator88 /terminate get exec -Adobe_pattern /terminate get exec -Adobe_customcolor /terminate get exec -Adobe_cshow /terminate get exec -Adobe_cmykcolor /terminate get exec -Adobe_packedarray /terminate get exec -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype66/prob06b.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype66/prob06b.gif deleted file mode 100755 index 990439503..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype66/prob06b.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype68/prob02.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype68/prob02.eps deleted file mode 100755 index bbe311b40..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype68/prob02.eps +++ /dev/null @@ -1,1818 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad 6.0.1 -%%Title: prob02-68.eps -%%CreationDate: 7/2/1997 -%%DocumentProcSets: Adobe_packedarray 1.0 0 -%%DocumentSuppliedProcSets: Adobe_packedarray 1.0 0 -%%DocumentProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentProcSets: Adobe_cshow 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cshow 1.1 0 -%%DocumentProcSets: Adobe_customcolor 1.0 0 -%%DocumentSuppliedProcSets: Adobe_customcolor 1.0 0 -%%DocumentProcSets: Adobe_pattern 1.9 0 -%%DocumentSuppliedProcSets: Adobe_pattern 1.9 0 -%%DocumentProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentSuppliedProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentFonts: Times-Bold -%%BoundingBox:24 453 568 720 -%%TemplateBox:306 396 306 396 -%%DocumentPreview: Header -%%EndComments -%%BeginProlog -%%BeginProcSet: Adobe_packedarray 1.0 0 -userdict /Adobe_packedarray 5 dict dup begin put -/initialize -{ -/packedarray where - { - pop - } - { - Adobe_packedarray begin - Adobe_packedarray - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - } ifelse -} def -/terminate -{ -} def -/packedarray -{ -array astore readonly -} def -/setpacking -{ -pop -} def -/currentpacking -{ -false -} def -currentdict readonly pop end -%%EndProcSet -Adobe_packedarray /initialize get exec -%%BeginProcSet: Adobe_cmykcolor 1.1 0 -currentpacking true setpacking -userdict /Adobe_cmykcolor 4 dict dup begin put -/initialize -{ -/setcmykcolor where - { - pop - } - { - userdict /Adobe_cmykcolor_vars 2 dict dup begin put - /_setrgbcolor - /setrgbcolor load def - /_currentrgbcolor - /currentrgbcolor load def - Adobe_cmykcolor begin - Adobe_cmykcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - end - Adobe_cmykcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_cmykcolor eq - { - end - } if -} def -/setcmykcolor -{ -1 sub 4 1 roll -3 - { - 3 index add neg dup 0 lt - { - pop 0 - } if - 3 1 roll - } repeat -Adobe_cmykcolor_vars /_setrgbcolor get exec -pop -} def -/currentcmykcolor -{ -Adobe_cmykcolor_vars /_currentrgbcolor get exec -3 - { - 1 sub neg 3 1 roll - } repeat -0 -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_cshow 1.1 0 -currentpacking true setpacking -userdict /Adobe_cshow 3 dict dup begin put -/initialize -{ -/cshow where - { - pop - } - { - userdict /Adobe_cshow_vars 1 dict dup begin put - /_cshow - {} def - Adobe_cshow begin - Adobe_cshow - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - end - } ifelse -} def -/terminate -{ -} def -/cshow -{ -exch -Adobe_cshow_vars - exch /_cshow - exch put - { - 0 0 Adobe_cshow_vars /_cshow get exec - } forall -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_customcolor 1.0 0 -currentpacking true setpacking -userdict /Adobe_customcolor 5 dict dup begin put -/initialize -{ -/setcustomcolor where - { - pop - } - { - Adobe_customcolor begin - Adobe_customcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - Adobe_customcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_customcolor eq - { - end - } if -} def -/findcmykcustomcolor -{ -5 packedarray -} def -/setcustomcolor -{ -exch -aload pop pop -4 - { - 4 index mul 4 1 roll - } repeat -5 -1 roll pop -setcmykcolor -} def -/setoverprint -{ -pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_pattern 1.9 0 -currentpacking true setpacking -userdict /Adobe_pattern 14 dict dup begin put -/initialize -{ -/definepattern where - { - pop - } - { - Adobe_pattern begin - Adobe_pattern - { - dup xcheck - { - bind - } if - pop pop - } forall - mark - cachestatus 7 1 roll pop pop pop pop exch pop exch - { - { - 10000 add - dup 2 index gt - { - break - } if - dup setcachelimit - } loop - } stopped - cleartomark - } ifelse -} def -/terminate -{ -currentdict Adobe_pattern eq - { - end - } if -} def -errordict -/nocurrentpoint -{ -pop -stop -} put -errordict -/invalidaccess -{ -pop -stop -} put -/patternencoding -256 array def -0 1 255 -{ -patternencoding exch ( ) 2 copy exch 0 exch put cvn put -} for -/definepattern -{ -17 dict begin -/uniform exch def -/cache exch def -/key exch def -/procarray exch def -/mtx exch matrix invertmatrix def -/height exch def -/width exch def -/ctm matrix currentmatrix def -/ptm matrix def -/str 32 string def -/slice 9 dict def -slice /s 1 put -slice /q 256 procarray length div sqrt floor cvi put -slice /b 0 put -/FontBBox [0 0 0 0] def -/FontMatrix mtx matrix copy def -/Encoding patternencoding def -/FontType 3 def -/BuildChar - { - exch - begin - slice begin - dup q dup mul mod s idiv /i exch def - dup q dup mul mod s mod /j exch def - q dup mul idiv procarray exch get - /xl j width s div mul def - /xg j 1 add width s div mul def - /yl i height s div mul def - /yg i 1 add height s div mul def - uniform - { - 1 1 - } - { - width 0 dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - 0 height dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - } ifelse - width 0 cache - { - xl 4 index mul yl 4 index mul xg 6 index mul yg 6 index mul - setcachedevice - } - { - setcharwidth - } ifelse - gsave - scale - newpath - xl yl moveto - xg yl lineto - xg yg lineto - xl yg lineto - closepath - clip - newpath - end - end - exec - grestore - } def -key currentdict definefont -end -} def -/patterncachesize -{ -gsave -newpath -0 0 moveto -width 0 lineto -width height lineto -0 height lineto -closepath -patternmatrix setmatrix -pathbbox -exch ceiling 4 -1 roll floor sub 3 1 roll -ceiling exch floor sub -mul 1 add -grestore -} def -/patterncachelimit -{ -cachestatus 7 1 roll pop pop pop pop pop pop 8 mul -} def -/patternpath -{ -exch dup begin setfont -ctm setmatrix -concat -slice exch /b exch slice /q get dup mul mul put -FontMatrix concat -uniform - { - width 0 dtransform round width div exch round width div exch - 0 height dtransform round height div exch height div exch - 0 0 transform round exch round exch - ptm astore setmatrix - } - { - ptm currentmatrix pop - } ifelse -{currentpoint} stopped not - { - pop pop - pathbbox - true - 4 index 3 index eq - 4 index 3 index eq - and - { - pop false - { - {pop pop} - {pop pop pop true} - {pop pop pop pop pop pop pop true} - {pop true} - pathforall - } stopped - { - pop pop pop pop pop true - } if - } if - { - height div ceiling height mul 4 1 roll - width div ceiling width mul 4 1 roll - height div floor height mul 4 1 roll - width div floor width mul 4 1 roll - 2 index sub height div ceiling cvi exch - 3 index sub width div ceiling cvi exch - 4 2 roll moveto - FontMatrix mtx invertmatrix - dup dup 4 get exch 5 get rmoveto - ptm ptm concatmatrix pop - slice /s - patterncachesize patterncachelimit div ceiling sqrt ceiling cvi - dup slice /q get gt - { - pop slice /q get - } if - put - 0 1 slice /s get dup mul 1 sub - { - slice /b get add - gsave - 0 1 str length 1 sub - { - str exch 2 index put - } for - pop - dup - { - gsave - ptm setmatrix - 1 index str length idiv {str show} repeat - 1 index str length mod str exch 0 exch getinterval show - grestore - 0 height rmoveto - } repeat - grestore - } for - pop pop - } - { - pop pop pop pop - } ifelse - } if -end -} def -/patternclip -{ -clip -} def -/patternstrokepath -{ -strokepath -} def -/patternmatrix -matrix def -/patternfill -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternclip -Adobe_pattern /patternpath get exec -grestore -newpath -} def -/patternstroke -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternstrokepath -true - { - { - { - newpath - moveto - } - { - lineto - } - { - curveto - } - { - closepath - 3 copy - Adobe_pattern /patternfill get exec - } pathforall - pop pop pop - } stopped - { - pop pop pop pop pop - patternclip - Adobe_pattern /patternfill get exec - } if - } - { - patternclip - Adobe_pattern /patternfill get exec - } ifelse -grestore -newpath -} def -/patternashow -{ -3 index type /dicttype eq - { - Adobe_pattern /patternmatrix get 4 1 roll - } if - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 6 index 6 index 6 index - Adobe_pattern /patternfill get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop -} def -/patternashowstroke -{ -4 index type /dicttype eq - { - patternmatrix /patternmatrix get 5 1 roll - } if -4 1 roll - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - 7 index 7 index 7 index - Adobe_pattern /patternstroke get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_Illustrator88 1.19 0 -currentpacking true setpacking -userdict /Adobe_Illustrator88 73 dict dup begin put -/initialize -{ -userdict /Adobe_Illustrator88_vars 31 dict dup begin put -/_lp /none def -/_pf {} def -/_ps {} def -/_psf {} def -/_pss {} def -/_a null def -/_as null def -/_tt 2 array def -/_tl 2 array def -/_tm matrix def -/t {} def -/_gf null def -/_cf 4 array def -/_if null def -/_of false def -/_fc {} def -/_gs null def -/_cs 4 array def -/_is null def -/_os false def -/_sc {} def -/_pd 1 dict def -/_ed 15 dict def -/_pm matrix def -/_fm null def -/_fd null def -/_fdd null def -/_sm null def -/_sd null def -/_sdd null def -/_i null def -Adobe_Illustrator88 begin -Adobe_Illustrator88 dup /nc get begin - { - dup xcheck - { - bind - } if - pop pop - } forall -end -end -end -Adobe_Illustrator88 begin -Adobe_Illustrator88_vars begin -newpath -} def -/terminate -{ -end -end -} def -/_ -null def -/ddef -{ -Adobe_Illustrator88_vars 3 1 roll put -} def -/xput -{ -dup load dup length exch maxlength eq - { - dup dup load dup - length 2 mul dict copy def - } if -load begin def end -} def -/npop -{ - { - pop - } repeat -} def -/sw -{ -stringwidth -exch 5 -1 roll 3 index 1 sub mul add -4 1 roll 3 1 roll 1 sub mul add -} def -/ss -{ -3 -1 roll pop -4 1 roll - { - 2 npop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - stroke - grestore - moveto - 2 copy rmoveto - } exch cshow -3 npop -} def -/sp -{ -exch pop - { - 2 npop (0) exch - 2 copy 0 exch put pop - false charpath - 2 copy rmoveto - } exch cshow -2 npop -} def -/pl -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where -{ -pop true setstrokeadjust -/c -{ -curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll curveto -} def -/V -/v load def -/y -{ -2 copy curveto -} def -/Y -/y load def -/l -{ -lineto -} def -/L -/l load def -/m -{ -moveto -} def -} -{ -/c -{ -pl curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll pl curveto -} def -/V -/v load def -/y -{ -pl 2 copy curveto -} def -/Y -/y load def -/l -{ -pl lineto -} def -/L -/l load def -/m -{ -pl moveto -} def -} ifelse -/d -{ -setdash -} def -/cf -currentflat def -/i -{ -dup 0 eq - { - pop cf - } if -setflat -} def -/j -{ -setlinejoin -} def -/J -{ -setlinecap -} def -/M -{ -setmiterlimit -} def -/w -{ -setlinewidth -} def -/H -{} def -/h -{ -closepath -} def -/N -{ -newpath -} def -/n -/N load def -/F -{ -_pf -} def -/f -{ -closepath -F -} def -/S -{ -_ps -} def -/s -{ -closepath -S -} def -/B -{ -gsave F grestore -S -} def -/b -{ -closepath -B -} def -/W -{ -clip -} def -/ta -{ -_as moveto -_tt aload pop 4 -2 roll -} def -/tl -{ -_tl aload pop translate -} def -/as -{ -{ -0 0 -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg 2 div exch neg 2 div -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg exch neg -} -{ -0 0 -} -} cvlit def -/z -{ -/_a exch ddef -/_as as _a get ddef -_a 2 le - { - 0 _tt astore pop - 0 exch neg _tl astore pop - } - { - 0 exch neg _tt astore pop - neg 0 _tl astore pop - } ifelse -exch findfont exch scalefont setfont -} def -/tm -{ -_tm currentmatrix pop -concat -} def -/I -{ -tm -/t - { - ta sp - tl - } ddef -} def -/o -{ -tm -/t - { - ta 4 npop - tl - newpath - } ddef -} def -/e -{ -tm -/t - { - ta _psf - tl - newpath - } ddef -} def -/r -{ -tm -/t - { - ta _tm _pss - tl - newpath - } ddef -} def -/a -{ -tm -/t - { - 2 copy - ta _psf - newpath - ta _tm _pss - tl - newpath - } ddef -} def -/T -{ -_tm setmatrix -} def -/Z -{ -pop -findfont begin -currentdict dup length 1 add dict begin - { - 1 index /FID ne - { - def - } - { - 2 npop - } ifelse - } forall -/FontName exch def dup length 0 ne - { - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - { - Encoding 2 index 2 index put pop - 1 add - } - { - exch pop - } ifelse - } forall - } if pop -currentdict dup end end -/FontName get exch definefont pop -} def -/u -{} def -/U -{} def -/q -{ -gsave -} def -/Q -{ -grestore -} def -/` -{ -/_i save ddef -6 1 roll 4 npop -concat -userdict begin -/showpage {} def -false setoverprint -pop -} def -/~ -{ -end -_i restore -} def -/@ -{} def -/& -{} def -/O -{ -0 ne -/_of exch ddef -/_lp /none ddef -} def -/R -{ -0 ne -/_os exch ddef -/_lp /none ddef -} def -/g -{ -/_gf exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _gf setgray - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/G -{ -/_gs exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _gs setgray - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/k -{ -_cf astore pop -/_fc -{ -_lp /fill ne - { - _of setoverprint - _cf aload pop setcmykcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/K -{ -_cs astore pop -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _cs aload pop setcmykcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/x -{ -/_gf exch ddef -findcmykcustomcolor -/_if exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _if _gf 1 exch sub setcustomcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/X -{ -/_gs exch ddef -findcmykcustomcolor -/_is exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _is _gs 1 exch sub setcustomcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/dp -{ -dup null eq -{ -pop -_dp 0 ne - { - 0 1 _dp 1 sub _dl mod - { - _da exch get 3 get - } for - _dp 1 sub _dl mod 1 add packedarray - _da 0 get aload pop 8 -1 roll 5 -1 roll pop 4 1 roll - definepattern pop - } if -} -{ -_dp 0 ne _dp _dl mod 0 eq and - { - null dp - } if -7 packedarray _da exch _dp _dl mod exch put -_dp _dl mod _da 0 get 4 get 2 packedarray -/_dp _dp 1 add def -} ifelse -} def -/E -{ -_ed begin -dup 0 get type /arraytype ne - { - 0 - { - dup 1 add index type /arraytype eq - { - 1 add - } - { - exit - } ifelse - } loop - array astore - } if -/_dd exch def -/_ury exch def -/_urx exch def -/_lly exch def -/_llx exch def -/_n exch def -/_y 0 def -/_dl 4 def -/_dp 0 def -/_da _dl array def -0 1 _dd length 1 sub - { - /_d exch _dd exch get def - 0 2 _d length 2 sub - { - /_x exch def - /_c _d _x get _ ne def - /_r _d _x 1 add get cvlit def - _r _ ne - { - _urx _llx sub _ury _lly sub [1 0 0 1 0 0] - [ - /save cvx - _llx neg _lly neg /translate cvx - _c - { - nc /begin cvx - } if - _r dup type /stringtype eq - { - cvx - } - { - {exec} /forall cvx - } ifelse - _c - { - /end cvx - } if - /restore cvx - ] cvx - /_fn 12 _n length add string def - _y _fn cvs pop - /_y _y 1 add def - _fn 12 _n putinterval - _fn _c false dp - _d exch _x 1 add exch put - } if - } for - } for -null dp -_n _dd /_pd -end xput -} def -/fc -{ -_fm dup concatmatrix pop -} def -/p -{ -/_fm exch ddef -9 -2 roll _pm translate fc -7 -2 roll _pm scale fc -5 -1 roll _pm rotate fc -4 -2 roll exch 0 ne - { - dup _pm rotate fc - 1 -1 _pm scale fc - neg _pm rotate fc - } - { - pop - } ifelse -dup _pm rotate fc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore fc -neg _pm rotate fc -_pd exch get /_fdd exch ddef -/_pf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - patternfill - } - { - pop - fill - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_psf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - 10 copy 6 npop exch pop patternashow - } - { - pop - 7 copy 3 npop exch pop ashow - } ifelse - grestore - pop - } for - pop - } for -restore -4 npop newpath -} ddef -/_lp /none ddef -} def -/sc -{ -_sm dup concatmatrix pop -} def -/P -{ -/_sm exch ddef -9 -2 roll _pm translate sc -7 -2 roll _pm scale sc -5 -1 roll _pm rotate sc -4 -2 roll exch 0 ne - { - dup _pm rotate sc - 1 -1 _pm scale sc - neg _pm rotate sc - } - { - pop - } ifelse -dup _pm rotate sc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore sc -neg _pm rotate sc -_pd exch get /_sdd exch ddef -/_ps -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - patternstroke - } - { - pop stroke - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_pss -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - 11 copy 6 npop 3 -1 roll pop patternashowstroke - } - { - pop - 8 copy 3 npop ss - } ifelse - grestore - pop - } for - pop - } for -restore -5 npop newpath -} ddef -/_lp /none ddef -} def -/A -{ -pop -} def -/nc 3 dict def -nc begin -/setgray -{ -pop -} bind def -/setcmykcolor -{ -4 npop -} bind def -/setcustomcolor -{ -2 npop -} bind def -currentdict readonly pop end -currentdict readonly pop end -setpacking -%%EndProcSet -%%EndProlog -%%BeginSetup -Adobe_cmykcolor /initialize get exec -Adobe_cshow /initialize get exec -Adobe_customcolor /initialize get exec -Adobe_pattern /initialize get exec -Adobe_Illustrator88 /initialize get exec -%%BeginEncoding: _Times-Bold Times-Bold -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] -/_Times-Bold /Times-Bold 0 Z -%%EndEncoding -%%EndSetup -0 A -0 O -0 R -0 g -0 G -0 i 0 J 0 j 1 w 4 M [] 0 d -u -377.478 679.522 m -395.478 697.522 l -2.016 w 0 G S -395.478 697.522 m -413.478 679.522 l -2.016 w 0 G S -395.478 697.522 m -395.478 625.522 l -2.016 w 0 G S -395.478 607.522 m -395.478 535.522 l -2.016 w 0 G S -395.478 535.522 m -377.478 553.522 l -2.016 w 0 G S -395.478 535.522 m -413.478 553.522 l -2.016 w 0 G S -U -u -503.478 697.522 m -503.478 625.522 l -2.016 w 0 G S -503.478 607.522 m -503.478 535.522 l -2.016 w 0 G S -503.478 535.522 m -485.478 553.522 l -2.016 w 0 G S -503.478 535.522 m -521.478 553.522 l -2.016 w 0 G S -503.478 625.522 m -521.478 643.522 l -2.016 w 0 G S -503.478 625.522 m -485.478 643.522 l -2.016 w 0 G S -U -u -125.478 697.522 m -125.478 535.522 l -2.016 w 0 G S -71.478 697.522 m -71.478 535.522 l -2.016 w 0 G S -53.478 679.522 m -71.478 697.522 l -2.016 w 0 G S -71.478 697.522 m -89.478 679.522 l -2.016 w 0 G S -125.478 535.522 m -107.478 553.522 l -2.016 w 0 G S -125.478 535.522 m -143.478 553.522 l -2.016 w 0 G S -U -u -287.478 697.522 m -287.478 535.522 l -2.016 w 0 G S -233.478 697.522 m -233.478 535.522 l -2.016 w 0 G S -287.478 697.522 m -269.478 679.522 l -2.016 w 0 G S -287.478 697.522 m -305.478 679.522 l -2.016 w 0 G S -233.478 697.522 m -251.478 679.522 l -2.016 w 0 G S -233.478 697.522 m -215.478 679.522 l -2.016 w 0 G S -U -35.507 715.493 m -35.507 697.493 l -0.072 w 0 G S -35.507 715.493 m -53.507 715.493 l -0.072 w 0 G S -71.507 715.493 m -89.507 715.493 l -0.072 w 0 G S -107.507 715.493 m -125.507 715.493 l -0.072 w 0 G S -143.507 715.493 m -161.507 715.493 l -0.072 w 0 G S -179.507 715.493 m -197.507 715.493 l -0.072 w 0 G S -215.507 715.493 m -233.507 715.493 l -0.072 w 0 G S -251.507 715.493 m -269.507 715.493 l -0.072 w 0 G S -287.507 715.493 m -305.507 715.493 l -0.072 w 0 G S -323.507 715.493 m -341.507 715.493 l -0.072 w 0 G S -359.507 715.493 m -377.507 715.493 l -0.072 w 0 G S -395.507 715.493 m -413.507 715.493 l -0.072 w 0 G S -431.507 715.493 m -449.507 715.493 l -0.072 w 0 G S -467.507 715.493 m -485.507 715.493 l -0.072 w 0 G S -503.507 715.493 m -521.507 715.493 l -0.072 w 0 G S -539.507 715.493 m -557.507 715.493 l -0.072 w 0 G S -557.507 715.493 m -557.507 697.493 l -0.072 w 0 G S -557.507 679.493 m -557.507 661.493 l -0.072 w 0 G S -557.507 643.493 m -557.507 625.493 l -0.072 w 0 G S -557.507 607.493 m -557.507 589.493 l -0.072 w 0 G S -557.507 571.493 m -557.507 553.493 l -0.072 w 0 G S -557.507 535.493 m -557.507 517.493 l -0.072 w 0 G S -35.507 517.493 m -35.507 535.493 l -0.072 w 0 G S -35.507 553.493 m -35.507 571.493 l -0.072 w 0 G S -35.507 589.493 m -35.507 607.493 l -0.072 w 0 G S -35.507 625.493 m -35.507 643.493 l -0.072 w 0 G S -35.507 661.493 m -35.507 679.493 l -0.072 w 0 G S -449.507 535.493 m -449.507 553.493 l -0.072 w 0 G S -449.507 571.493 m -449.507 589.493 l -0.072 w 0 G S -449.507 607.493 m -449.507 625.493 l -0.072 w 0 G S -449.507 643.493 m -449.507 661.493 l -0.072 w 0 G S -449.507 679.493 m -449.507 697.493 l -0.072 w 0 G S -341.507 697.493 m -341.507 679.493 l -0.072 w 0 G S -341.507 661.493 m -341.507 643.493 l -0.072 w 0 G S -341.507 625.493 m -341.507 607.493 l -0.072 w 0 G S -341.507 589.493 m -341.507 571.493 l -0.072 w 0 G S -341.507 553.493 m -341.507 535.493 l -0.072 w 0 G S -179.507 535.493 m -179.507 553.493 l -0.072 w 0 G S -179.507 571.493 m -179.507 589.493 l -0.072 w 0 G S -179.507 607.493 m -179.507 625.493 l -0.072 w 0 G S -179.507 643.493 m -179.507 661.493 l -0.072 w 0 G S -179.507 679.493 m -179.507 697.493 l -0.072 w 0 G S -u -557.507 463.493 m -539.507 463.493 l -0.072 w 0 G S -521.507 463.493 m -503.507 463.493 l -0.072 w 0 G S -485.507 463.493 m -467.507 463.493 l -0.072 w 0 G S -449.507 463.493 m -431.507 463.493 l -0.072 w 0 G S -413.507 463.493 m -395.507 463.493 l -0.072 w 0 G S -377.507 463.493 m -359.507 463.493 l -0.072 w 0 G S -341.507 463.493 m -323.507 463.493 l -0.072 w 0 G S -305.507 463.493 m -287.507 463.493 l -0.072 w 0 G S -269.507 463.493 m -251.507 463.493 l -0.072 w 0 G S -233.507 463.493 m -215.507 463.493 l -0.072 w 0 G S -197.507 463.493 m -179.507 463.493 l -0.072 w 0 G S -161.507 463.493 m -143.507 463.493 l -0.072 w 0 G S -125.507 463.493 m -107.507 463.493 l -0.072 w 0 G S -89.507 463.493 m -71.507 463.493 l -0.072 w 0 G S -53.507 463.493 m -35.507 463.493 l -0.072 w 0 G S -U -u -111.471 481.529 m -111.471 517.529 L -80.471 517.529 L -80.471 481.529 L -111.471 481.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Bold 36 36 0 0 z -[1 0 0 1 80.471 490.529 ]e -1 (A)t -T -u -280.471 481.529 m -280.471 517.529 L -250.471 517.529 L -250.471 481.529 L -280.471 481.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Bold 36 36 0 0 z -[1 0 0 1 250.471 490.529 ]e -1 (B)t -T -u -411 481.529 m -411 517.529 L -379.941 517.529 L -379.941 481.529 L -411 481.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Bold 36 36 0 0 z -[1 0 0 1 379.941 490.529 ]e -1 (C)t -T -u -519 481.529 m -519 517.529 L -487.941 517.529 L -487.941 481.529 L -519 481.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Bold 36 36 0 0 z -[1 0 0 1 487.941 490.529 ]e -1 (D)t -T -35.507 499.493 m -35.507 481.493 l -0.072 w 0 G S -179.507 517.493 m -179.507 499.493 l -0.072 w 0 G S -179.507 481.493 m -179.507 463.493 l -0.072 w 0 G S -341.507 517.493 m -341.507 499.493 l -0.072 w 0 G S -341.507 481.493 m -341.507 463.493 l -0.072 w 0 G S -449.507 517.493 m -449.507 499.493 l -0.072 w 0 G S -449.507 481.493 m -449.507 463.493 l -0.072 w 0 G S -%%Trailer -Adobe_Illustrator88 /terminate get exec -Adobe_pattern /terminate get exec -Adobe_customcolor /terminate get exec -Adobe_cshow /terminate get exec -Adobe_cmykcolor /terminate get exec -Adobe_packedarray /terminate get exec -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype68/prob02.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype68/prob02.gif deleted file mode 100755 index e03eb8df9..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype68/prob02.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype68/prob11.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype68/prob11.eps deleted file mode 100755 index c8f2d6d9b..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype68/prob11.eps +++ /dev/null @@ -1,653 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: set15.q11.create -%%Creator: Create -%%CreationDate: Thu Jul 13 09:28:57 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 128 392 471 694 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(]e@.QiN`&V&F$8*L<(3O@_p0Ac?qO?tuD:!6TqfZ0!-Y!YTa/Du^1,:F -% OFE8!bXQKopM -% 5TnX\5p`YH4M&;&281J3:(_ANcp#g&pqDZiChPi'E,s7jSlU& -% -6<>M$O#;E24ZYls\gbPhOYqLEKVX+`J1Ikt`UVFEK@pS$tFCa#8_F-@0R-FK]0ojBrl -% 'h)fF"gLDXiHnZ&d6gk!im+mGKH\ARCsW1"ZdDMuLU@Jj3lW+T][844 -% 40Zkh$oQPM`>JiEiD -% Q&$a@DLj'aXY&hcp>^^ipD0Z=r+S?^!P_r*8b+Iao:agQ\jEnr=^bXK`3j(C0n3bSFA#ZJ5p -% 7i.Yt,8F,8]F#]U0N\:uN2OH!A`14pnsk^-4MRb)3U[ -% SM![CfTI'QQG4an?&QFYPEifBO`":k_;%-5ne3Z2i"R#"9]IWC=GWFGWHad#LuZAZE,U_ -% kcFaj#A,N%Z+2-q`_Q<9B$OEFb,W>^=@l@\=7#T]I7-F@uf!ZB2[\AD#%[+[lHr6]SMt1&EY -% ]@pW'$RnV9Y6Q+--9p8=heBo6.Pg)4+duK(mdKTO^NWAGj!#sjH/K"l/n;V@WSpDbtK\7Y+2 -% )GjTNT`-!ZmI[3+H:=I!'j=/crB;0&q$_$!Lb]q1us8^qT.4Cs9CLq>VH%(*Cor5;$u -% i"U"J?9V#fU)185Ug=Z*.X6.jG.3Qb`l)9UlQFB0e%O`g0SgO@?4@G')!Z?oF^DTR_OE&Kl9 -% ;#o3M#"("WI9>9s0ULOD-Bj2Oj!/QKAJM:saOF%2dP4bX!N3"JWg="haQE:hiO#I+S!9QSR5Mugo!o.SC'biM_Hd1 -% &grMj5#2V5>V&lXGc1#]\F?j-^Wd:6`5hJ/A.7kk`V"T/@_!1i.@VZ;5f/e"0WgK0s@A`mX# -% qdKL?[`3m.E?K:XVK3BF2BYQt?PB@8&jZ -% mXmb?oFu8PqO+('ert0P9VQr$-h=nKIr[0JSX]b$PS[RDVB]1K@ddfKKQ"c[fD=5!+$o.&U% -% e<48ln*T/#\"R$msg'%JR0^-=I=>a[8W1r=OAheQl&>06lW9&um-ms8K"4]54)rR?."=O9<' -% a=Yi0OG5)qSuY%V.r0+kR\Q]f7$JS`R""Qu)dE[Rp]gmk.RjED&-uNkfg0(2m=t -% 5%BP+T^UP/kq+N-ulF'F"1QbN-W[;B&a0>Kdo3)VF3YQVn9>EFMUY+_$gh.:fph1PsA^^4oJ -% HQUnkj2H.PpV^)9pr=EV!XI6W1l-eIe^VW/ot&CAjCW=09HXk!a91Ch5a:'`FLLdOH0Z\m-b -% qrJ%E(,ajG3e1io#FQEQSa4n0"dch1@L>ciZ,s5SQ?m8&on"Z]4.7!i[LUBYkGh&r&65!=a. -% \:JM!7,Qt&)5U(/#1Z20r5q3l-RrWgs0M!BGYj*>nHLE?PkL/tkMN*dt -% )rFL3iXX+'P=frWdu7FEq@C4tHALlKlXop!mnQg0-LUB!t-0U2aH66L_3-61ItHA$pGkq#nh4f! -% )WYY"T`c!?RNRE$QfRRA1mZte:*r=k2HD9RYIR,)W1Yj]5[a/0`GL&_5l"ic -% iK5(LFTc($LUpP2tgQncnf<.\M6d&!t9C]rH*^b$qILI_+;N*#sm!1k)np&VjJIE\>>,<"=9 -% eGHr\ZkhMCjTTTB!4VbKb&@1u2MuLqOj`$+S(Y7gFoIVgh0.U+77A)=d'4S>Vs-m.'i-?L^#[fmT8gLfl$TBLA3h0ZAR[(gZLEKcG3%!"X-[:7OTlVEYi3TeAUHLj$sen`j;:XDcpAdkP2Sk= -% 14UL"!c/\Rh+'RK -% 9:QA=A?%*GSXOAt3r1\T+3fpA&?o>-^G-6"E*X.&2eHb!i+i,-(10R;OKEVk8_?CT45/\gk" -% h`]>WE[dGV4Y.+-$CTt^RC+Ke7lFcJIbs!*6Zp@iQXVoi5_(?'"u"ZjP6t7AA]#f]r+27:N*5;2Bo]H1RicijBBF -% No.5IQJRTsOK/h^BtUFO/T.HWI&b%[k:Vogg#WlDiSc`kRg.BQ&!JZGrf/"J0=Zp,S=ZAquq -% XgHSmSaElA5&kc"KX=Cg-@5lIc\qMB=LVsf_j<<1HNP65!2gfa30[;jDC(U.HRU]1P$;2ej` -% b`=kN7"A)R@s>$f/o5mbmil*[-\L`'.J">V`(J-N`dA`(`/V=`=@oe5MWUY+[FCWX%'up[H%M-4Yis -% ,)\X:Ok6C*FpsncY@<6F-*B08s>m@PBqa[OVE_ED._6P$I)t!e7p%!+\2u$;K%E:U`_oO -% g:URF#J:6GC<6Liar/-=%PaM8ihV9Ig.hVr;3^S:.H@('cVtDIITS]^s-!4C5CKf&!Hi,pFd -% ^%E*jhpR]dg#<85+f=$DLgkW:)R1['8t\XN)8gniDXpkD?R"@!h2`j\!403T)bA:l?q/^k)s -% 4PXal_POI@bnLqH9P*&p9PtB18dRdU`(6^E%,E7P[4&u<]+A@I5B!\1"=Rqc`SCCVHef[QPr`tb -% >.PT/8EFp:M(#i#i)&Dd"*cA=bS-$Jf]<./p+QJ]A,5RBF,V]N(K]hBYs;`.t9ftb9bMsm_M -% ='sk@pK%.`@"81a])_GI]`k:1>"9/22Q&lEM$n,/IW.ooZ[gXI6BZXkb:%N_b`$/Opn>s!6jufi,NhhM=f)0;%A*7!k5`'4c^bPr*tFO."YkfdN/eIF.:d0cD[=hKW -% PkY]WKuqn)UpM_om9:ofZr"B4a.CDT)&LC+P1fuVDoWL%C8B;7MuX*.:>qn2>^Zs1n%aYmb>m@.uPqU'kRoM'aNl+3Hj!1OhD)6>*: -% CC_Tt-MYUm!W_]-#XDa9mL-@tZa]]dK,Lcc_6[2Vmk6DMYY6W8?E]^o\"c1;?l2V'jU^.")JVPN(TpC$rOqIbn\u:h9poO@.l^18c9 -% #O$rR*;?Q#&(jbl6$V7Z>V8cV&%Dhrlc&?km%1k%=6a!6``(9Kh-bU7_4VgHk4(\-X6o& -% b0de82FgIB(;3[eFOHVh!b#G2mdcjYq9!;KV3%Hj85NcPM$.a*J9[J-!/=.i0,YB21)bCYq' -% dKiW!&#C!p1FQ+'f`&E;7kC33(Iu%0Dlj!Ljx -% EndEmbeddedGraphics N 2446 98e E 41 S 483db R d5b18783 -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -43 309 538 413 rectclip -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 123 367] concat -0 0 3 1 10 SU -11 11 T -117 flipH -126 flipV -N -3 L -0 nxsetgray -0 0 m 0 126 117 126 117 126 c -s -0 0 T -grestore -0 0 3 1 10 SU -11 11 T -225 flipH -126 flipV -N -3 L -0 nxsetgray -0 0 m 0 126 225 126 225 126 c -s -0 0 T -grestore -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[-1 0 0 -1 487 640] concat -0 0 3 1 10 SU -11 11 T -117 flipH -126 flipV -N -3 L -0 nxsetgray -0 0 m 0 126 117 126 117 126 c -s -0 0 T -grestore -0 0 3 1 10 SU -11 11 T -225 flipH -126 flipV -N -3 L -0 nxsetgray -0 0 m 0 126 225 126 225 126 c -s -0 0 T -grestore -grestore -grestore -0 0 1 1 10 SU -306 320.174957 T -N -1 L -0 nxsetgray -0 376.650116 0 0 line -90 0 376.650116 arrow -0 0 T -grestore -0 0 1 1 10 SU -59.850002 504 T -N -1 L -0 nxsetgray -510.299835 0 0 0 line -0 510.299835 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[4] 0 setdash -306 630 T -N -0.15 L -0 nxsetgray -171 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -[4] 0 setdash -477 504 T -N -0.15 L -0 nxsetgray -0 126 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -[4] 0 setdash -135 378 T -N -0.15 L -0 nxsetgray -0 126 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -[4] 0 setdash -135 378 T -N -0.15 L -0 nxsetgray -171 0 0 0 line -0 0 T -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -/Helvetica-BoldOblique findfont 16 scalefont [1 0 0 -1 0 0] makefont -158 -exch -defineuserobject -158 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 965] concat -/Helvetica-BoldOblique findfont 18 scalefont [1 0 0 -1 0 0] makefont -183 -exch -defineuserobject -183 execuserobject setfont -0 nxsetgray -521 486 moveto (B) show -158 execuserobject setfont -0 7 rmoveto -(0) show -0 -7 rmoveto -183 execuserobject setfont -(\(T\)) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -183 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1419] concat -183 execuserobject setfont -0 nxsetgray -296 716 moveto (B\(T\)) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -183 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1164] concat -158 execuserobject setfont -0 nxsetgray -314 585 moveto (y) show -0 6 rmoveto -(1) show -0 -6 rmoveto -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -158 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 854] concat -158 execuserobject setfont -0 nxsetgray -278 430 moveto (-y) show -0 6 rmoveto -(1) show -0 -6 rmoveto -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -158 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 980] concat -158 execuserobject setfont -0 nxsetgray -368 493 moveto (x) show -0 6 rmoveto -(1) show -0 -6 rmoveto -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -158 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 980] concat -158 execuserobject setfont -0 nxsetgray -215 493 moveto (-x) show -0 6 rmoveto -(1) show -0 -6 rmoveto -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -158 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 980] concat -158 execuserobject setfont -0 nxsetgray -467 493 moveto (x) show -0 6 rmoveto -(2) show -0 -6 rmoveto -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -158 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1034] concat -158 execuserobject setfont -0 nxsetgray -125 520 moveto (-x) show -0 6 rmoveto -(2) show -0 -6 rmoveto -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -158 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 986] concat -158 execuserobject setfont -0 nxsetgray -287 499 moveto (O) show -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -158 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 1270] concat -158 execuserobject setfont -0 nxsetgray -279 638 moveto (y) show -0 6 rmoveto -(2) show -0 -6 rmoveto -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -158 execuserobject setfont -0 nxsetgray -[1 0 0 -1 0 746] concat -158 execuserobject setfont -0 nxsetgray -315 376 moveto (-y) show -0 6 rmoveto -(2) show -0 -6 rmoveto -grestore -grestore -0 0 3 1 10 SU -54 379 T -N -3 L -0 nxsetgray -90 0 0 0 line -0 0 T -grestore -0 0 3 1 10 SU -468 629 T -N -3 L -0 nxsetgray -90 0 0 0 line -0 0 T -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Helvetica-BoldOblique diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype68/prob12a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype68/prob12a.gif deleted file mode 100755 index a82e30cff..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype68/prob12a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype69/prob03a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype69/prob03a.eps deleted file mode 100755 index b4fa4fcd2..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype69/prob03a.eps +++ /dev/null @@ -1,650 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: rl_circuit.eps - View 1 -- /Net/capa1.nscl.msu.edu/usr/user1/teacher/CAPA4/phy232f5/pictures -%%Creator: Tailor -%%CreationDate: Mon Oct 2 09:49:13 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 4 308 201 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -%%BeginResource: procset (Tailor 1.0) -/TailorGroupBegin {pop} def /TailorGroupEnd {} def -/TailorBlockBegin {pop pop pop} def /TailorBlockEnd {} def -/TailorSetUniformStroke {pop} def -%%EndResource - -gsave --20 -55 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -%%EndSetup -gsave -0 0 612 792 rectclip -0 0 612 792 rectclip -gsave -0 setgray -1 setlinewidth -(* Creator: AppsoftDraw\012* Created for: prof\012* Creation date: Tue Feb 14 10:59:06 1995\012) TailorGroupBegin -gsave -[1 0 0 1 0 0] matrix invertmatrix concat -[1 0 0 1 -113 -321.849976] concat -newpath -systemdict -begin -113 321.850006 419.783997 561.533997 setbbox -113 321.850006 moveto -419.783997 321.850006 lineto -419.783997 561.533997 lineto -113 561.533997 lineto -closepath -end -clip -(* Group Created by User *) TailorGroupBegin -[1 0 0 1 -113 -321.849976] matrix invertmatrix concat -[-1 0 0 1 663.280029 -332.849976] concat -gsave -newpath -systemdict -begin -376.692993 421.75 395.869995 445.5 setbbox -395.75 445.5 moveto -395.75 445.5 395.869995 437.230011 395.75 436.75 curveto -395.690002 436.51001 394 430 394 430 curveto -394 430 391.977997 427.364014 391.75 427.25 curveto -391.497986 427.123993 385.75 425.5 385.75 425.5 curveto -385.75 425.5 379.938995 426.118988 379.75 426.25 curveto -379.549011 426.389008 376.75 430.75 376.75 430.75 curveto -376.75 430.75 376.692993 435.981995 376.75 436.25 curveto -376.782013 436.402008 379.5 439.75 379.5 439.75 curveto -379.5 439.75 383.557007 441.223999 383.75 441.25 curveto -384.006989 441.283997 388.25 441 388.25 441 curveto -388.25 441 392.664001 438.908997 392.75 438.75 curveto -393.053986 438.188995 395.75 430.75 395.75 430.75 curveto -395.75 430.75 395.75 421.75 395.75 421.75 curveto -end -stroke -grestore -gsave -newpath -systemdict -begin -376.692993 443 395.869995 466.75 setbbox -395.75 466.75 moveto -395.75 466.75 395.869995 458.480011 395.75 458 curveto -395.690002 457.76001 394 451.25 394 451.25 curveto -394 451.25 391.977997 448.614014 391.75 448.5 curveto -391.497986 448.373993 385.75 446.75 385.75 446.75 curveto -385.75 446.75 379.938995 447.368988 379.75 447.5 curveto -379.549011 447.639008 376.75 452 376.75 452 curveto -376.75 452 376.692993 457.231995 376.75 457.5 curveto -376.782013 457.652008 379.5 461 379.5 461 curveto -379.5 461 383.557007 462.473999 383.75 462.5 curveto -384.006989 462.533997 388.25 462.25 388.25 462.25 curveto -388.25 462.25 392.664001 460.158997 392.75 460 curveto -393.053986 459.438995 395.75 452 395.75 452 curveto -395.75 452 395.75 443 395.75 443 curveto -end -stroke -grestore -gsave -newpath -systemdict -begin -376.692993 464.25 395.869995 488 setbbox -395.75 488 moveto -395.75 488 395.869995 479.730011 395.75 479.25 curveto -395.690002 479.01001 394 472.5 394 472.5 curveto -394 472.5 391.977997 469.864014 391.75 469.75 curveto -391.497986 469.623993 385.75 468 385.75 468 curveto -385.75 468 379.938995 468.618988 379.75 468.75 curveto -379.549011 468.889008 376.75 473.25 376.75 473.25 curveto -376.75 473.25 376.692993 478.481995 376.75 478.75 curveto -376.782013 478.902008 379.5 482.25 379.5 482.25 curveto -379.5 482.25 383.557007 483.723999 383.75 483.75 curveto -384.006989 483.783997 388.25 483.5 388.25 483.5 curveto -388.25 483.5 392.664001 481.408997 392.75 481.25 curveto -393.053986 480.688995 395.75 473.25 395.75 473.25 curveto -395.75 473.25 395.75 464.25 395.75 464.25 curveto -end -stroke -grestore -gsave -newpath -systemdict -begin -376.692993 401 395.869995 424.75 setbbox -395.75 424.75 moveto -395.75 424.75 395.869995 416.480011 395.75 416 curveto -395.690002 415.76001 394 409.25 394 409.25 curveto -394 409.25 391.977997 406.614014 391.75 406.5 curveto -391.497986 406.373993 385.75 404.75 385.75 404.75 curveto -385.75 404.75 379.938995 405.368988 379.75 405.5 curveto -379.549011 405.639008 376.75 410 376.75 410 curveto -376.75 410 376.692993 415.231995 376.75 415.5 curveto -376.782013 415.652008 379.5 419 379.5 419 curveto -379.5 419 383.557007 420.473999 383.75 420.5 curveto -384.006989 420.533997 388.25 420.25 388.25 420.25 curveto -388.25 420.25 392.664001 418.158997 392.75 418 curveto -393.053986 417.438995 395.75 410 395.75 410 curveto -395.75 410 395.75 401 395.75 401 curveto -end -stroke -grestore -gsave -newpath -systemdict -begin -376.692993 381 395.869995 404.75 setbbox -395.75 404.75 moveto -395.75 404.75 395.869995 396.480011 395.75 396 curveto -395.690002 395.76001 394 389.25 394 389.25 curveto -394 389.25 391.977997 386.614014 391.75 386.5 curveto -391.497986 386.373993 385.75 384.75 385.75 384.75 curveto -385.75 384.75 379.938995 385.368988 379.75 385.5 curveto -379.549011 385.639008 376.75 390 376.75 390 curveto -376.75 390 376.692993 395.231995 376.75 395.5 curveto -376.782013 395.652008 379.5 399 379.5 399 curveto -379.5 399 383.557007 400.473999 383.75 400.5 curveto -384.006989 400.533997 388.25 400.25 388.25 400.25 curveto -388.25 400.25 392.664001 398.158997 392.75 398 curveto -393.053986 397.438995 395.75 390 395.75 390 curveto -395.75 390 395.75 381 395.75 381 curveto -end -stroke -grestore -[-1 0 0 1 663.280029 -332.849976] matrix invertmatrix concat -[1 0 0 1 -110 -332.849976] concat -gsave -newpath -systemdict -begin -142 440 188 440 setbbox -142 440 moveto -188 440 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -149 431 180.5 431 setbbox -149 431 moveto -180.5 431 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -245 516 257 531 setbbox -245 531 moveto -257 516 lineto -end -stroke -grestore -[1 0 0 1 -110 -332.849976] matrix invertmatrix concat -[1 -8.74228e-08 -8.74228e-08 -1 -110 905.549988] concat -gsave -newpath -systemdict -begin -258 708 270 723 setbbox -258 723 moveto -270 708 lineto -end -stroke -grestore -[1 -8.74228e-08 -8.74228e-08 -1 -110 905.549988] matrix invertmatrix concat -[1 0 0 1 -110 -332.849976] concat -gsave -newpath -systemdict -begin -221 516 233 531 setbbox -221 531 moveto -233 516 lineto -end -stroke -grestore -[1 0 0 1 -110 -332.849976] matrix invertmatrix concat -[1 -8.74228e-08 -8.74228e-08 -1 -110 905.549988] concat -gsave -newpath -systemdict -begin -234 708 246 723 setbbox -234 723 moveto -246 708 lineto -end -stroke -grestore -[1 -8.74228e-08 -8.74228e-08 -1 -110 905.549988] matrix invertmatrix concat -[1 0 0 1 -110 -332.849976] concat -gsave -newpath -systemdict -begin -270 516 282 531 setbbox -270 531 moveto -282 516 lineto -end -stroke -grestore -[1 0 0 1 -110 -332.849976] matrix invertmatrix concat -[1 -8.74228e-08 -8.74228e-08 -1 -110 905.549988] concat -gsave -newpath -systemdict -begin -283 708 295 723 setbbox -283 723 moveto -295 708 lineto -end -stroke -grestore -[1 -8.74228e-08 -8.74228e-08 -1 -110 905.549988] matrix invertmatrix concat -[1 0 0 1 -110 -332.849976] concat -gsave -newpath -systemdict -begin -294 516 306 531 setbbox -294 531 moveto -306 516 lineto -end -stroke -grestore -[1 0 0 1 -110 -332.849976] matrix invertmatrix concat -[1 -8.74228e-08 -8.74228e-08 -1 -110 905.549988] concat -gsave -newpath -systemdict -begin -307 708 319 723 setbbox -307 723 moveto -319 708 lineto -end -stroke -grestore -[1 -8.74228e-08 -8.74228e-08 -1 -110 905.549988] matrix invertmatrix concat -[1 0 0 1 -110 -332.849976] concat -gsave -newpath -systemdict -begin -211.5 521 221 532 setbbox -211.5 521 moveto -221 532 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -319 521.5 327 531 setbbox -327 521.5 moveto -319 531 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -164.5 440.5 164.5 520.5 setbbox -164.5 440.5 moveto -164.5 520.5 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -164.5 521 212 521 setbbox -164.5 521 moveto -212 521 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -326.5 521.5 377.5 521.5 setbbox -326.5 521.5 moveto -377.5 521.5 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -378.5 488 378.5 521.5 setbbox -378.5 521.5 moveto -378.5 488 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -377.5 358 377.5 381 setbbox -377.5 381 moveto -377.5 358 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -303 358 377.5 358 setbbox -377.5 358 moveto -303 358 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -164.5 358.5 164.5 431 setbbox -164.5 431 moveto -164.5 358.5 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -164 358 245 358 setbbox -164 358 moveto -245 358 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -245.298004 354.64801 251.701996 361.052002 setbbox -251.701996 357.850006 moveto -251.701996 356.083008 250.266998 354.64801 248.5 354.64801 curveto -246.733002 354.64801 245.298004 356.083008 245.298004 357.850006 curveto -245.298004 359.617004 246.733002 361.052002 248.5 361.052002 curveto -250.266998 361.052002 251.701996 359.617004 251.701996 357.850006 curveto -closepath -end -fill -grestore -gsave -newpath -systemdict -begin -245.298004 354.64801 251.701996 361.052002 setbbox -251.701996 357.850006 moveto -251.701996 356.083008 250.266998 354.64801 248.5 354.64801 curveto -246.733002 354.64801 245.298004 356.083008 245.298004 357.850006 curveto -245.298004 359.617004 246.733002 361.052002 248.5 361.052002 curveto -250.266998 361.052002 251.701996 359.617004 251.701996 357.850006 curveto -closepath -end -stroke -grestore -gsave -newpath -systemdict -begin -299.298004 354.14801 305.701996 360.552002 setbbox -305.701996 357.350006 moveto -305.701996 355.583008 304.266998 354.14801 302.5 354.14801 curveto -300.733002 354.14801 299.298004 355.583008 299.298004 357.350006 curveto -299.298004 359.117004 300.733002 360.552002 302.5 360.552002 curveto -304.266998 360.552002 305.701996 359.117004 305.701996 357.350006 curveto -closepath -end -fill -grestore -gsave -newpath -systemdict -begin -299.298004 354.14801 305.701996 360.552002 setbbox -305.701996 357.350006 moveto -305.701996 355.583008 304.266998 354.14801 302.5 354.14801 curveto -300.733002 354.14801 299.298004 355.583008 299.298004 357.350006 curveto -299.298004 359.117004 300.733002 360.552002 302.5 360.552002 curveto -304.266998 360.552002 305.701996 359.117004 305.701996 357.350006 curveto -closepath -end -stroke -grestore -gsave -newpath -systemdict -begin -249 338.5 301.5 357 setbbox -249 357 moveto -301.5 338.5 lineto -end -stroke -grestore -[1 0 0 1 -110 -332.849976] matrix invertmatrix concat -[1 0 0 1 -106 -336.849976] concat -/Helvetica findfont 1 scalefont [14 0 0 14 0 0] makefont -23 -exch -defineuserobject -23 execuserobject setfont -110 434 moveto -(V ) show -[1 0 0 1 -106 -336.849976] matrix invertmatrix concat -[1 0 0 1 -102 -392.849976] concat -252.5 555.5 moveto -(R ) show -[1 0 0 1 -102 -392.849976] matrix invertmatrix concat -[1 0 0 1 -110 -332.849976] concat -410 433.5 moveto -(L ) show -[1 0 0 1 -110 -332.849976] matrix invertmatrix concat -[1 0 0 1 -99 -293.849976] concat -258 327 moveto -(S ) show -TailorGroupEnd -grestore -TailorGroupEnd -grestore -gsave -[1 0 0 -1 0 792] concat -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype69/prob03a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype69/prob03a.gif deleted file mode 100755 index 4639c225e..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype69/prob03a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype69/prob05a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype69/prob05a.eps deleted file mode 100755 index 9e85b6f5a..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype69/prob05a.eps +++ /dev/null @@ -1,765 +0,0 @@ -%!PS-Adobe-2.0 -%%Title: ac_current.ps - View 1 -- /Net/capa1.nscl.msu.edu/usr/user1/teacher/CAPA4/phy232f5/pictures -%%Creator: Tailor -%%CreationDate: Tue Oct 3 11:00:58 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 1 1 -%%BoundingBox: 0 0 466 304 -%%DocumentPaperSizes: Letter -%%Orientation: Portrait -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -%%BeginResource: procset (Tailor 1.0) -/TailorGroupBegin {pop} def /TailorGroupEnd {} def -/TailorBlockBegin {pop pop pop} def /TailorBlockEnd {} def -/TailorSetUniformStroke {pop} def -%%EndResource - -gsave --20 -55 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -%%PaperSize: Letter -%%EndSetup - -%%Page: 1 1 -%%PageBoundingBox: 0 0 466 304 -%%PageFonts: (atend) -%%BeginPageSetup -%%PaperSize: Letter -/__NXsheetsavetoken save def -0 0 translate -gsave --20 -55 translate - /__NXbasematrix matrix currentmatrix def -grestore -0 0 612 792 rectclip -0 0 translate -%%EndPageSetup -gsave -0 0 612 792 rectclip -gsave -0 setgray -1 setlinewidth -(* Creator: Tailor\012* Created for: teacher\012* Creation date: Mon Oct 2 09:16:58 1995\012\012* Creator: Mathematica\012* Creation date: Mon Jul 26 13:37:49 EDT 1993\012) TailorGroupBegin -gsave -[1 0 0 1 0 0] matrix invertmatrix concat -[1 0 0 1 0 0] concat -newpath -systemdict -begin -0 0 612 792 setbbox -0 0 moveto -612 0 lineto -612 792 lineto -0 792 lineto -closepath -end -clip -[1 0 0 1 0 0] matrix invertmatrix concat -[1 0 0 1 0 -181.835022] concat -/Times-BoldItalic findfont 1 scalefont [24 0 0 24 0 0] makefont -24 -exch -defineuserobject -24 execuserobject setfont -454.953003 307.628998 moveto -(t) show -[1 0 0 1 0 -181.835022] matrix invertmatrix concat -[421.427002 0 0 421.427002 25.835199 3.205994] concat -0.004058 setlinewidth -1 setlinecap -1 setlinejoin -gsave -newpath -systemdict -begin -1.86265e-08 0.30902 1 0.30902 setbbox -1.86265e-08 0.30902 moveto -1 0.30902 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.02381 0.01472 0.03006 0.01472 setbbox -0.02381 0.01472 moveto -0.03006 0.01472 lineto -end -stroke -grestore -[421.427002 0 0 421.427002 25.835199 3.205994] matrix invertmatrix concat -[1 0 0 1 4 -180.835022] concat --2.58357 183.085007 moveto -(-10) show -[1 0 0 1 4 -180.835022] matrix invertmatrix concat -[421.427002 0 0 421.427002 25.835199 3.205994] concat -gsave -newpath -systemdict -begin -0.02381 0.16187 0.03006 0.16187 setbbox -0.02381 0.16187 moveto -0.03006 0.16187 lineto -end -stroke -grestore -[421.427002 0 0 421.427002 25.835199 3.205994] matrix invertmatrix concat -[1 0 0 1 4 -181.835022] concat -7.61621 245.225006 moveto -(-5) show -[1 0 0 1 4 -181.835022] matrix invertmatrix concat -[421.427002 0 0 421.427002 25.835199 3.205994] concat -gsave -newpath -systemdict -begin -0.02381 0.45617 0.03006 0.45617 setbbox -0.02381 0.45617 moveto -0.03006 0.45617 lineto -end -stroke -grestore -[421.427002 0 0 421.427002 25.835199 3.205994] matrix invertmatrix concat -[1 0 0 1 0 -180.835022] concat -18.722099 369.251007 moveto -(5) show -[1 0 0 1 0 -180.835022] matrix invertmatrix concat -[421.427002 0 0 421.427002 25.835199 3.205994] concat -gsave -newpath -systemdict -begin -0.02381 0.60332 0.03006 0.60332 setbbox -0.02381 0.60332 moveto -0.03006 0.60332 lineto -end -stroke -grestore -[421.427002 0 0 421.427002 25.835199 3.205994] matrix invertmatrix concat -[1 0 0 1 -2 -181.835022] concat -8.53593 431.136993 moveto -(10) show -[1 0 0 1 -2 -181.835022] matrix invertmatrix concat -[421.427002 0 0 421.427002 25.835199 3.205994] concat -gsave -newpath -systemdict -begin -0.02381 0.04415 0.02756 0.04415 setbbox -0.02381 0.04415 moveto -0.02756 0.04415 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.02381 0.07358 0.02756 0.07358 setbbox -0.02381 0.07358 moveto -0.02756 0.07358 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.02381 0.10301 0.02756 0.10301 setbbox -0.02381 0.10301 moveto -0.02756 0.10301 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.02381 0.13244 0.02756 0.13244 setbbox -0.02381 0.13244 moveto -0.02756 0.13244 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.02381 0.1913 0.02756 0.1913 setbbox -0.02381 0.1913 moveto -0.02756 0.1913 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.02381 0.22073 0.02756 0.22073 setbbox -0.02381 0.22073 moveto -0.02756 0.22073 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.02381 0.25016 0.02756 0.25016 setbbox -0.02381 0.25016 moveto -0.02756 0.25016 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.02381 0.27959 0.02756 0.27959 setbbox -0.02381 0.27959 moveto -0.02756 0.27959 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.02381 0.33845 0.02756 0.33845 setbbox -0.02381 0.33845 moveto -0.02756 0.33845 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.02381 0.36788 0.02756 0.36788 setbbox -0.02381 0.36788 moveto -0.02756 0.36788 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.02381 0.39731 0.02756 0.39731 setbbox -0.02381 0.39731 moveto -0.02756 0.39731 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.02381 0.42674 0.02756 0.42674 setbbox -0.02381 0.42674 moveto -0.02756 0.42674 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.02381 0.4856 0.02756 0.4856 setbbox -0.02381 0.4856 moveto -0.02756 0.4856 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.02381 0.51503 0.02756 0.51503 setbbox -0.02381 0.51503 moveto -0.02756 0.51503 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.02381 0.54446 0.02756 0.54446 setbbox -0.02381 0.54446 moveto -0.02756 0.54446 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.02381 0.57389 0.02756 0.57389 setbbox -0.02381 0.57389 moveto -0.02756 0.57389 lineto -end -stroke -grestore -[421.427002 0 0 421.427002 25.835199 3.205994] matrix invertmatrix concat -[1 0 0 1 -12 -177.835022] concat -29.137501 456.826996 moveto -(I \(A\)) show -[1 0 0 1 -12 -177.835022] matrix invertmatrix concat -[421.427002 0 0 421.427002 25.835199 3.205994] concat -gsave -newpath -systemdict -begin -0.02381 0 0.02381 0.61803 setbbox -0.02381 0 moveto -0.02381 0.61803 lineto -end -stroke -grestore -0.004 setlinewidth -gsave -newpath -systemdict -begin -0.02381 0.01472 0.33755 0.60332 setbbox -0.02381 0.60332 moveto -0.02505 0.60323 lineto -0.02629 0.60296 lineto -0.02753 0.60252 lineto -0.02877 0.6019 lineto -0.03125 0.60013 lineto -0.03373 0.59766 lineto -0.03869 0.59065 lineto -0.04365 0.58092 lineto -0.05357 0.55372 lineto -0.06349 0.51712 lineto -0.10317 0.30902 lineto -0.12302 0.19639 lineto -0.13294 0.14551 lineto -0.14286 0.10091 lineto -0.15278 0.06431 lineto -0.15774 0.04947 lineto -0.1627 0.03712 lineto -0.16766 0.02739 lineto -0.17262 0.02037 lineto -0.1751 0.0179 lineto -0.17634 0.01693 lineto -0.17758 0.01613 lineto -0.17882 0.01551 lineto -0.18006 0.01507 lineto -0.1813 0.0148 lineto -0.18254 0.01472 lineto -0.18378 0.0148 lineto -0.18502 0.01507 lineto -0.18626 0.01551 lineto -0.1875 0.01613 lineto -0.18998 0.0179 lineto -0.19246 0.02037 lineto -0.19742 0.02739 lineto -0.20238 0.03712 lineto -0.2123 0.06431 lineto -0.22222 0.10091 lineto -0.2619 0.30902 lineto -0.28175 0.42164 lineto -0.29167 0.47252 lineto -0.30159 0.51712 lineto -0.31151 0.55372 lineto -0.32143 0.58092 lineto -0.32639 0.59065 lineto -0.32887 0.5945 lineto -0.33135 0.59766 lineto -0.33383 0.60013 lineto -0.33507 0.60111 lineto -0.33631 0.6019 lineto -0.33755 0.60252 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.33755 0.01472 0.65253 0.60332 setbbox -0.33755 0.60252 moveto -0.33879 0.60296 lineto -0.34003 0.60323 lineto -0.34127 0.60332 lineto -0.34251 0.60323 lineto -0.34375 0.60296 lineto -0.34499 0.60252 lineto -0.34623 0.6019 lineto -0.34871 0.60013 lineto -0.35119 0.59766 lineto -0.35615 0.59065 lineto -0.36111 0.58092 lineto -0.37103 0.55372 lineto -0.38095 0.51712 lineto -0.42063 0.30902 lineto -0.44048 0.19639 lineto -0.46032 0.10091 lineto -0.47024 0.06431 lineto -0.4752 0.04947 lineto -0.48016 0.03712 lineto -0.48512 0.02739 lineto -0.4876 0.02353 lineto -0.49008 0.02037 lineto -0.49256 0.0179 lineto -0.4938 0.01693 lineto -0.49504 0.01613 lineto -0.49628 0.01551 lineto -0.49752 0.01507 lineto -0.49876 0.0148 lineto -0.5 0.01472 lineto -0.50124 0.0148 lineto -0.50248 0.01507 lineto -0.50372 0.01551 lineto -0.50496 0.01613 lineto -0.50744 0.0179 lineto -0.50992 0.02037 lineto -0.51488 0.02739 lineto -0.51984 0.03712 lineto -0.52976 0.06431 lineto -0.53968 0.10091 lineto -0.57937 0.30902 lineto -0.59921 0.42164 lineto -0.61905 0.51712 lineto -0.62897 0.55372 lineto -0.63393 0.56857 lineto -0.63889 0.58092 lineto -0.64385 0.59065 lineto -0.64633 0.5945 lineto -0.64881 0.59766 lineto -0.65129 0.60013 lineto -0.65253 0.60111 lineto -end -stroke -grestore -gsave -newpath -systemdict -begin -0.65253 0.01472 0.96131 0.60332 setbbox -0.65253 0.60111 moveto -0.65377 0.6019 lineto -0.65501 0.60252 lineto -0.65625 0.60296 lineto -0.65749 0.60323 lineto -0.65873 0.60332 lineto -0.65997 0.60323 lineto -0.66121 0.60296 lineto -0.66245 0.60252 lineto -0.66369 0.6019 lineto -0.66617 0.60013 lineto -0.66865 0.59766 lineto -0.67361 0.59065 lineto -0.67857 0.58092 lineto -0.68849 0.55372 lineto -0.69841 0.51712 lineto -0.7381 0.30902 lineto -0.75794 0.19639 lineto -0.77778 0.10091 lineto -0.7877 0.06431 lineto -0.79266 0.04947 lineto -0.79762 0.03712 lineto -0.80258 0.02739 lineto -0.80506 0.02353 lineto -0.80754 0.02037 lineto -0.81002 0.0179 lineto -0.81126 0.01693 lineto -0.8125 0.01613 lineto -0.81374 0.01551 lineto -0.81498 0.01507 lineto -0.81622 0.0148 lineto -0.81746 0.01472 lineto -0.8187 0.0148 lineto -0.81994 0.01507 lineto -0.82118 0.01551 lineto -0.82242 0.01613 lineto -0.82366 0.01693 lineto -0.8249 0.0179 lineto -0.82738 0.02037 lineto -0.83234 0.02739 lineto -0.8373 0.03712 lineto -0.84722 0.06431 lineto -0.85714 0.10091 lineto -0.89683 0.30902 lineto -0.91667 0.42164 lineto -0.92659 0.47252 lineto -0.93651 0.51712 lineto -0.94643 0.55372 lineto -0.95139 0.56857 lineto -0.95635 0.58092 lineto -0.96131 0.59065 lineto -end -stroke -grestore -0.004058 setlinewidth -gsave -newpath -systemdict -begin -0.96131 0.59065 0.97619 0.60332 setbbox -0.96131 0.59065 moveto -0.96379 0.5945 lineto -0.96627 0.59766 lineto -0.96875 0.60013 lineto -0.96999 0.60111 lineto -0.97123 0.6019 lineto -0.97247 0.60252 lineto -0.97371 0.60296 lineto -0.97495 0.60323 lineto -0.97619 0.60332 lineto -end -stroke -grestore -[421.427002 0 0 421.427002 25.835199 3.205994] matrix invertmatrix concat -[39.604301 0 0 39.604301 0 0] concat -0.072972 setlinewidth -0 setlinecap -0 setlinejoin -true TailorSetUniformStroke -gsave -newpath -systemdict -begin -8.48393 2.67648 8.50918 4.09046 setbbox -8.50918 4.09046 moveto -8.48393 2.67648 lineto -end -[1 0 0 1 0 0] concat -stroke -grestore -gsave -newpath -systemdict -begin -3.43397 2.67648 3.45922 4.09046 setbbox -3.45922 4.09046 moveto -3.43397 2.67648 lineto -end -[1 0 0 1 0 0] concat -stroke -grestore -(* Group Created by User *) TailorGroupBegin -[39.604301 0 0 39.604301 0 0] matrix invertmatrix concat -[1 0 0 1 9 -185] concat -125 270.5 moveto -(t) show -[1 0 0 1 9 -185] matrix invertmatrix concat -[1 0 0 1 -163 -244] concat -/Times-BoldItalic findfont 1 scalefont [16 0 0 16 0 0] makefont -25 -exch -defineuserobject -25 execuserobject setfont -303 324.5 moveto -(1) show -TailorGroupEnd -[1 0 0 1 -163 -244] matrix invertmatrix concat -[1 0 0 1 69 -196] concat -24 execuserobject setfont -260 280.5 moveto -(t) show -[1 0 0 1 69 -196] matrix invertmatrix concat -[1 0 0 1 -16 -235] concat -25 execuserobject setfont -352 313.5 moveto -(2) show -grestore -TailorGroupEnd -grestore -gsave -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -__NXsheetsavetoken restore -%%PageTrailer -%%DocumentFonts: Times-BoldItalic -%%Trailer -%%DocumentFonts: Times-BoldItalic diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype69/prob05a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype69/prob05a.gif deleted file mode 100755 index f98c26c89..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype69/prob05a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype69/prob06a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype69/prob06a.eps deleted file mode 100755 index 290904662..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype69/prob06a.eps +++ /dev/null @@ -1,13029 +0,0 @@ -%!PS-Adobe-2.0 EPSF-1.2 -%%Creator: MiniCad 6.0.1 -%%Title: prob8-7a.eps -%%CreationDate: 5/20/1997 -%%DocumentProcSets: Adobe_packedarray 1.0 0 -%%DocumentSuppliedProcSets: Adobe_packedarray 1.0 0 -%%DocumentProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cmykcolor 1.1 0 -%%DocumentProcSets: Adobe_cshow 1.1 0 -%%DocumentSuppliedProcSets: Adobe_cshow 1.1 0 -%%DocumentProcSets: Adobe_customcolor 1.0 0 -%%DocumentSuppliedProcSets: Adobe_customcolor 1.0 0 -%%DocumentProcSets: Adobe_pattern 1.9 0 -%%DocumentSuppliedProcSets: Adobe_pattern 1.9 0 -%%DocumentProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentSuppliedProcSets: Adobe_Illustrator88 1.19 0 -%%DocumentFonts: Times-Italic -%%BoundingBox:37 370 556 709 -%%TemplateBox:306 396 306 396 -%%DocumentPreview: Header -%%EndComments - -%%BeginProlog -%%BeginProcSet: Adobe_packedarray 1.0 0 -userdict /Adobe_packedarray 5 dict dup begin put -/initialize -{ -/packedarray where - { - pop - } - { - Adobe_packedarray begin - Adobe_packedarray - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - } ifelse -} def -/terminate -{ -} def -/packedarray -{ -array astore readonly -} def -/setpacking -{ -pop -} def -/currentpacking -{ -false -} def -currentdict readonly pop end -%%EndProcSet -Adobe_packedarray /initialize get exec -%%BeginProcSet: Adobe_cmykcolor 1.1 0 -currentpacking true setpacking -userdict /Adobe_cmykcolor 4 dict dup begin put -/initialize -{ -/setcmykcolor where - { - pop - } - { - userdict /Adobe_cmykcolor_vars 2 dict dup begin put - /_setrgbcolor - /setrgbcolor load def - /_currentrgbcolor - /currentrgbcolor load def - Adobe_cmykcolor begin - Adobe_cmykcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - end - Adobe_cmykcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_cmykcolor eq - { - end - } if -} def -/setcmykcolor -{ -1 sub 4 1 roll -3 - { - 3 index add neg dup 0 lt - { - pop 0 - } if - 3 1 roll - } repeat -Adobe_cmykcolor_vars /_setrgbcolor get exec -pop -} def -/currentcmykcolor -{ -Adobe_cmykcolor_vars /_currentrgbcolor get exec -3 - { - 1 sub neg 3 1 roll - } repeat -0 -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_cshow 1.1 0 -currentpacking true setpacking -userdict /Adobe_cshow 3 dict dup begin put -/initialize -{ -/cshow where - { - pop - } - { - userdict /Adobe_cshow_vars 1 dict dup begin put - /_cshow - {} def - Adobe_cshow begin - Adobe_cshow - { - dup xcheck - { - bind - } if - userdict 3 1 roll put - } forall - end - end - } ifelse -} def -/terminate -{ -} def -/cshow -{ -exch -Adobe_cshow_vars - exch /_cshow - exch put - { - 0 0 Adobe_cshow_vars /_cshow get exec - } forall -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_customcolor 1.0 0 -currentpacking true setpacking -userdict /Adobe_customcolor 5 dict dup begin put -/initialize -{ -/setcustomcolor where - { - pop - } - { - Adobe_customcolor begin - Adobe_customcolor - { - dup xcheck - { - bind - } if - pop pop - } forall - end - Adobe_customcolor begin - } ifelse -} def -/terminate -{ -currentdict Adobe_customcolor eq - { - end - } if -} def -/findcmykcustomcolor -{ -5 packedarray -} def -/setcustomcolor -{ -exch -aload pop pop -4 - { - 4 index mul 4 1 roll - } repeat -5 -1 roll pop -setcmykcolor -} def -/setoverprint -{ -pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_pattern 1.9 0 -currentpacking true setpacking -userdict /Adobe_pattern 14 dict dup begin put -/initialize -{ -/definepattern where - { - pop - } - { - Adobe_pattern begin - Adobe_pattern - { - dup xcheck - { - bind - } if - pop pop - } forall - mark - cachestatus 7 1 roll pop pop pop pop exch pop exch - { - { - 10000 add - dup 2 index gt - { - break - } if - dup setcachelimit - } loop - } stopped - cleartomark - } ifelse -} def -/terminate -{ -currentdict Adobe_pattern eq - { - end - } if -} def -errordict -/nocurrentpoint -{ -pop -stop -} put -errordict -/invalidaccess -{ -pop -stop -} put -/patternencoding -256 array def -0 1 255 -{ -patternencoding exch ( ) 2 copy exch 0 exch put cvn put -} for -/definepattern -{ -17 dict begin -/uniform exch def -/cache exch def -/key exch def -/procarray exch def -/mtx exch matrix invertmatrix def -/height exch def -/width exch def -/ctm matrix currentmatrix def -/ptm matrix def -/str 32 string def -/slice 9 dict def -slice /s 1 put -slice /q 256 procarray length div sqrt floor cvi put -slice /b 0 put -/FontBBox [0 0 0 0] def -/FontMatrix mtx matrix copy def -/Encoding patternencoding def -/FontType 3 def -/BuildChar - { - exch - begin - slice begin - dup q dup mul mod s idiv /i exch def - dup q dup mul mod s mod /j exch def - q dup mul idiv procarray exch get - /xl j width s div mul def - /xg j 1 add width s div mul def - /yl i height s div mul def - /yg i 1 add height s div mul def - uniform - { - 1 1 - } - { - width 0 dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - 0 height dtransform - dup mul exch dup mul add sqrt dup 1 add exch div - } ifelse - width 0 cache - { - xl 4 index mul yl 4 index mul xg 6 index mul yg 6 index mul - setcachedevice - } - { - setcharwidth - } ifelse - gsave - scale - newpath - xl yl moveto - xg yl lineto - xg yg lineto - xl yg lineto - closepath - clip - newpath - end - end - exec - grestore - } def -key currentdict definefont -end -} def -/patterncachesize -{ -gsave -newpath -0 0 moveto -width 0 lineto -width height lineto -0 height lineto -closepath -patternmatrix setmatrix -pathbbox -exch ceiling 4 -1 roll floor sub 3 1 roll -ceiling exch floor sub -mul 1 add -grestore -} def -/patterncachelimit -{ -cachestatus 7 1 roll pop pop pop pop pop pop 8 mul -} def -/patternpath -{ -exch dup begin setfont -ctm setmatrix -concat -slice exch /b exch slice /q get dup mul mul put -FontMatrix concat -uniform - { - width 0 dtransform round width div exch round width div exch - 0 height dtransform round height div exch height div exch - 0 0 transform round exch round exch - ptm astore setmatrix - } - { - ptm currentmatrix pop - } ifelse -{currentpoint} stopped not - { - pop pop - pathbbox - true - 4 index 3 index eq - 4 index 3 index eq - and - { - pop false - { - {pop pop} - {pop pop pop true} - {pop pop pop pop pop pop pop true} - {pop true} - pathforall - } stopped - { - pop pop pop pop pop true - } if - } if - { - height div ceiling height mul 4 1 roll - width div ceiling width mul 4 1 roll - height div floor height mul 4 1 roll - width div floor width mul 4 1 roll - 2 index sub height div ceiling cvi exch - 3 index sub width div ceiling cvi exch - 4 2 roll moveto - FontMatrix mtx invertmatrix - dup dup 4 get exch 5 get rmoveto - ptm ptm concatmatrix pop - slice /s - patterncachesize patterncachelimit div ceiling sqrt ceiling cvi - dup slice /q get gt - { - pop slice /q get - } if - put - 0 1 slice /s get dup mul 1 sub - { - slice /b get add - gsave - 0 1 str length 1 sub - { - str exch 2 index put - } for - pop - dup - { - gsave - ptm setmatrix - 1 index str length idiv {str show} repeat - 1 index str length mod str exch 0 exch getinterval show - grestore - 0 height rmoveto - } repeat - grestore - } for - pop pop - } - { - pop pop pop pop - } ifelse - } if -end -} def -/patternclip -{ -clip -} def -/patternstrokepath -{ -strokepath -} def -/patternmatrix -matrix def -/patternfill -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternclip -Adobe_pattern /patternpath get exec -grestore -newpath -} def -/patternstroke -{ -dup type /dicttype eq - { - Adobe_pattern /patternmatrix get - } if -gsave -patternstrokepath -true - { - { - { - newpath - moveto - } - { - lineto - } - { - curveto - } - { - closepath - 3 copy - Adobe_pattern /patternfill get exec - } pathforall - pop pop pop - } stopped - { - pop pop pop pop pop - patternclip - Adobe_pattern /patternfill get exec - } if - } - { - patternclip - Adobe_pattern /patternfill get exec - } ifelse -grestore -newpath -} def -/patternashow -{ -3 index type /dicttype eq - { - Adobe_pattern /patternmatrix get 4 1 roll - } if - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 6 index 6 index 6 index - Adobe_pattern /patternfill get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop -} def -/patternashowstroke -{ -4 index type /dicttype eq - { - patternmatrix /patternmatrix get 5 1 roll - } if -4 1 roll - { - pop pop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - 7 index 7 index 7 index - Adobe_pattern /patternstroke get exec - grestore - newpath moveto - 2 copy rmoveto - } exch cshow -pop pop pop pop pop pop -} def -currentdict readonly pop end -setpacking -%%EndProcSet -%%BeginProcSet: Adobe_Illustrator88 1.19 0 -currentpacking true setpacking -userdict /Adobe_Illustrator88 73 dict dup begin put -/initialize -{ -userdict /Adobe_Illustrator88_vars 31 dict dup begin put -/_lp /none def -/_pf {} def -/_ps {} def -/_psf {} def -/_pss {} def -/_a null def -/_as null def -/_tt 2 array def -/_tl 2 array def -/_tm matrix def -/t {} def -/_gf null def -/_cf 4 array def -/_if null def -/_of false def -/_fc {} def -/_gs null def -/_cs 4 array def -/_is null def -/_os false def -/_sc {} def -/_pd 1 dict def -/_ed 15 dict def -/_pm matrix def -/_fm null def -/_fd null def -/_fdd null def -/_sm null def -/_sd null def -/_sdd null def -/_i null def -Adobe_Illustrator88 begin -Adobe_Illustrator88 dup /nc get begin - { - dup xcheck - { - bind - } if - pop pop - } forall -end -end -end -Adobe_Illustrator88 begin -Adobe_Illustrator88_vars begin -newpath -} def -/terminate -{ -end -end -} def -/_ -null def -/ddef -{ -Adobe_Illustrator88_vars 3 1 roll put -} def -/xput -{ -dup load dup length exch maxlength eq - { - dup dup load dup - length 2 mul dict copy def - } if -load begin def end -} def -/npop -{ - { - pop - } repeat -} def -/sw -{ -stringwidth -exch 5 -1 roll 3 index 1 sub mul add -4 1 roll 3 1 roll 1 sub mul add -} def -/ss -{ -3 -1 roll pop -4 1 roll - { - 2 npop (0) exch - 2 copy 0 exch put pop - gsave - false charpath - currentpoint - 4 index setmatrix - stroke - grestore - moveto - 2 copy rmoveto - } exch cshow -3 npop -} def -/sp -{ -exch pop - { - 2 npop (0) exch - 2 copy 0 exch put pop - false charpath - 2 copy rmoveto - } exch cshow -2 npop -} def -/pl -{ -transform -0.25 sub round 0.25 add exch -0.25 sub round 0.25 add exch -itransform -} def -/setstrokeadjust where -{ -pop true setstrokeadjust -/c -{ -curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll curveto -} def -/V -/v load def -/y -{ -2 copy curveto -} def -/Y -/y load def -/l -{ -lineto -} def -/L -/l load def -/m -{ -moveto -} def -} -{ -/c -{ -pl curveto -} def -/C -/c load def -/v -{ -currentpoint 6 2 roll pl curveto -} def -/V -/v load def -/y -{ -pl 2 copy curveto -} def -/Y -/y load def -/l -{ -pl lineto -} def -/L -/l load def -/m -{ -pl moveto -} def -} ifelse -/d -{ -setdash -} def -/cf -currentflat def -/i -{ -dup 0 eq - { - pop cf - } if -setflat -} def -/j -{ -setlinejoin -} def -/J -{ -setlinecap -} def -/M -{ -setmiterlimit -} def -/w -{ -setlinewidth -} def -/H -{} def -/h -{ -closepath -} def -/N -{ -newpath -} def -/n -/N load def -/F -{ -_pf -} def -/f -{ -closepath -F -} def -/S -{ -_ps -} def -/s -{ -closepath -S -} def -/B -{ -gsave F grestore -S -} def -/b -{ -closepath -B -} def -/W -{ -clip -} def -/ta -{ -_as moveto -_tt aload pop 4 -2 roll -} def -/tl -{ -_tl aload pop translate -} def -/as -{ -{ -0 0 -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg 2 div exch neg 2 div -} -{ -2 copy _tt aload pop 4 -2 roll sw -exch neg exch neg -} -{ -0 0 -} -} cvlit def -/z -{ -/_a exch ddef -/_as as _a get ddef -_a 2 le - { - 0 _tt astore pop - 0 exch neg _tl astore pop - } - { - 0 exch neg _tt astore pop - neg 0 _tl astore pop - } ifelse -exch findfont exch scalefont setfont -} def -/tm -{ -_tm currentmatrix pop -concat -} def -/I -{ -tm -/t - { - ta sp - tl - } ddef -} def -/o -{ -tm -/t - { - ta 4 npop - tl - newpath - } ddef -} def -/e -{ -tm -/t - { - ta _psf - tl - newpath - } ddef -} def -/r -{ -tm -/t - { - ta _tm _pss - tl - newpath - } ddef -} def -/a -{ -tm -/t - { - 2 copy - ta _psf - newpath - ta _tm _pss - tl - newpath - } ddef -} def -/T -{ -_tm setmatrix -} def -/Z -{ -pop -findfont begin -currentdict dup length 1 add dict begin - { - 1 index /FID ne - { - def - } - { - 2 npop - } ifelse - } forall -/FontName exch def dup length 0 ne - { - /Encoding Encoding 256 array copy def - 0 exch - { - dup type /nametype eq - { - Encoding 2 index 2 index put pop - 1 add - } - { - exch pop - } ifelse - } forall - } if pop -currentdict dup end end -/FontName get exch definefont pop -} def -/u -{} def -/U -{} def -/q -{ -gsave -} def -/Q -{ -grestore -} def -/` -{ -/_i save ddef -6 1 roll 4 npop -concat -userdict begin -/showpage {} def -false setoverprint -pop -} def -/~ -{ -end -_i restore -} def -/@ -{} def -/& -{} def -/O -{ -0 ne -/_of exch ddef -/_lp /none ddef -} def -/R -{ -0 ne -/_os exch ddef -/_lp /none ddef -} def -/g -{ -/_gf exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _gf setgray - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/G -{ -/_gs exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _gs setgray - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/k -{ -_cf astore pop -/_fc -{ -_lp /fill ne - { - _of setoverprint - _cf aload pop setcmykcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/K -{ -_cs astore pop -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _cs aload pop setcmykcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/x -{ -/_gf exch ddef -findcmykcustomcolor -/_if exch ddef -/_fc -{ -_lp /fill ne - { - _of setoverprint - _if _gf 1 exch sub setcustomcolor - /_lp /fill ddef - } if -} ddef -/_pf -{ -_fc -fill -} ddef -/_psf -{ -_fc -exch pop -ashow -} ddef -/_lp /none ddef -} def -/X -{ -/_gs exch ddef -findcmykcustomcolor -/_is exch ddef -/_sc -{ -_lp /stroke ne - { - _os setoverprint - _is _gs 1 exch sub setcustomcolor - /_lp /stroke ddef - } if -} ddef -/_ps -{ -_sc -stroke -} ddef -/_pss -{ -_sc -ss -} ddef -/_lp /none ddef -} def -/dp -{ -dup null eq -{ -pop -_dp 0 ne - { - 0 1 _dp 1 sub _dl mod - { - _da exch get 3 get - } for - _dp 1 sub _dl mod 1 add packedarray - _da 0 get aload pop 8 -1 roll 5 -1 roll pop 4 1 roll - definepattern pop - } if -} -{ -_dp 0 ne _dp _dl mod 0 eq and - { - null dp - } if -7 packedarray _da exch _dp _dl mod exch put -_dp _dl mod _da 0 get 4 get 2 packedarray -/_dp _dp 1 add def -} ifelse -} def -/E -{ -_ed begin -dup 0 get type /arraytype ne - { - 0 - { - dup 1 add index type /arraytype eq - { - 1 add - } - { - exit - } ifelse - } loop - array astore - } if -/_dd exch def -/_ury exch def -/_urx exch def -/_lly exch def -/_llx exch def -/_n exch def -/_y 0 def -/_dl 4 def -/_dp 0 def -/_da _dl array def -0 1 _dd length 1 sub - { - /_d exch _dd exch get def - 0 2 _d length 2 sub - { - /_x exch def - /_c _d _x get _ ne def - /_r _d _x 1 add get cvlit def - _r _ ne - { - _urx _llx sub _ury _lly sub [1 0 0 1 0 0] - [ - /save cvx - _llx neg _lly neg /translate cvx - _c - { - nc /begin cvx - } if - _r dup type /stringtype eq - { - cvx - } - { - {exec} /forall cvx - } ifelse - _c - { - /end cvx - } if - /restore cvx - ] cvx - /_fn 12 _n length add string def - _y _fn cvs pop - /_y _y 1 add def - _fn 12 _n putinterval - _fn _c false dp - _d exch _x 1 add exch put - } if - } for - } for -null dp -_n _dd /_pd -end xput -} def -/fc -{ -_fm dup concatmatrix pop -} def -/p -{ -/_fm exch ddef -9 -2 roll _pm translate fc -7 -2 roll _pm scale fc -5 -1 roll _pm rotate fc -4 -2 roll exch 0 ne - { - dup _pm rotate fc - 1 -1 _pm scale fc - neg _pm rotate fc - } - { - pop - } ifelse -dup _pm rotate fc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore fc -neg _pm rotate fc -_pd exch get /_fdd exch ddef -/_pf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - patternfill - } - { - pop - fill - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_psf -{ -save -0 1 _fdd length 1 sub - { - /_fd exch _fdd exch get ddef - _fd - 0 2 _fd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _fc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _fm - 10 copy 6 npop exch pop patternashow - } - { - pop - 7 copy 3 npop exch pop ashow - } ifelse - grestore - pop - } for - pop - } for -restore -4 npop newpath -} ddef -/_lp /none ddef -} def -/sc -{ -_sm dup concatmatrix pop -} def -/P -{ -/_sm exch ddef -9 -2 roll _pm translate sc -7 -2 roll _pm scale sc -5 -1 roll _pm rotate sc -4 -2 roll exch 0 ne - { - dup _pm rotate sc - 1 -1 _pm scale sc - neg _pm rotate sc - } - { - pop - } ifelse -dup _pm rotate sc -exch dup sin exch cos div 1 0 0 1 0 6 2 roll -_pm astore sc -neg _pm rotate sc -_pd exch get /_sdd exch ddef -/_ps -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - patternstroke - } - { - pop stroke - } ifelse - grestore - pop - } for - pop - } for -restore -newpath -} ddef -/_pss -{ -save -0 1 _sdd length 1 sub - { - /_sd exch _sdd exch get ddef - _sd - 0 2 _sd length 2 sub - { - gsave - 2 copy get dup _ ne - { - cvx exec _sc - } - { - pop - } ifelse - 2 copy 1 add get dup _ ne - { - aload pop findfont _sm - 11 copy 6 npop 3 -1 roll pop patternashowstroke - } - { - pop - 8 copy 3 npop ss - } ifelse - grestore - pop - } for - pop - } for -restore -5 npop newpath -} ddef -/_lp /none ddef -} def -/A -{ -pop -} def -/nc 3 dict def -nc begin -/setgray -{ -pop -} bind def -/setcmykcolor -{ -4 npop -} bind def -/setcustomcolor -{ -2 npop -} bind def -currentdict readonly pop end -currentdict readonly pop end -setpacking -%%EndProcSet -%%EndProlog - -%%BeginSetup -Adobe_cmykcolor /initialize get exec -Adobe_cshow /initialize get exec -Adobe_customcolor /initialize get exec -Adobe_pattern /initialize get exec -Adobe_Illustrator88 /initialize get exec -%%BeginEncoding: _Times-Italic Times-Italic -[ -39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis -/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute -/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde -/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex -/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls -/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash -/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdif/summation -/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash -/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta -/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe -/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide -/lozenge/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright -/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand -/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex -/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex -/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla -/hungarumlaut/ogonek/caron -] - -/_Times-Italic /Times-Italic 0 Z -%%EndEncoding - -%%EndSetup - -0 A -0 O -0 R -0 g -0 G -0 i 0 J 0 j 1 w 4 M [] 0 d -u -401.512 625.488 m -401.747 625.665 l -3.023 w 0 G S -401.747 625.665 m -401.982 625.841 l -3.023 w 0 G S -401.982 625.841 m -402.218 626.018 l -3.023 w 0 G S -402.218 626.018 m -402.453 626.135 l -3.023 w 0 G S -402.453 626.135 m -402.688 626.312 l -3.023 w 0 G S -402.688 626.312 m -402.982 626.488 l -3.023 w 0 G S -402.982 626.488 m -403.218 626.665 l -3.023 w 0 G S -403.218 626.665 m -403.453 626.782 l -3.023 w 0 G S -403.453 626.782 m -403.688 626.959 l -3.023 w 0 G S -403.688 626.959 m -403.982 627.077 l -3.023 w 0 G S -403.982 627.077 m -404.218 627.253 l -3.023 w 0 G S -404.218 627.253 m -404.453 627.371 l -3.023 w 0 G S -404.453 627.371 m -404.747 627.488 l -3.023 w 0 G S -404.747 627.488 m -404.982 627.665 l -3.023 w 0 G S -404.982 627.665 m -405.276 627.782 l -3.023 w 0 G S -405.276 627.782 m -405.512 627.9 l -3.023 w 0 G S -405.512 627.9 m -405.806 628.018 l -3.023 w 0 G S -405.806 628.018 m -406.041 628.135 l -3.023 w 0 G S -406.041 628.135 m -406.335 628.253 l -3.023 w 0 G S -406.335 628.253 m -406.629 628.371 l -3.023 w 0 G S -406.629 628.371 m -406.865 628.488 l -3.023 w 0 G S -406.865 628.488 m -407.159 628.547 l -3.023 w 0 G S -407.159 628.547 m -407.453 628.665 l -3.023 w 0 G S -407.453 628.665 m -407.688 628.782 l -3.023 w 0 G S -407.688 628.782 m -407.982 628.841 l -3.023 w 0 G S -407.982 628.841 m -408.276 628.959 l -3.023 w 0 G S -408.276 628.959 m -408.571 629.018 l -3.023 w 0 G S -408.571 629.018 m -408.806 629.135 l -3.023 w 0 G S -408.806 629.135 m -409.1 629.194 l -3.023 w 0 G S -409.1 629.194 m -409.394 629.253 l -3.023 w 0 G S -409.394 629.253 m -409.688 629.371 l -3.023 w 0 G S -409.688 629.371 m -409.982 629.429 l -3.023 w 0 G S -409.982 629.429 m -410.276 629.488 l -3.023 w 0 G S -410.276 629.488 m -410.571 629.547 l -3.023 w 0 G S -410.571 629.547 m -410.806 629.606 l -3.023 w 0 G S -410.806 629.606 m -411.1 629.665 l -3.023 w 0 G S -411.1 629.665 m -411.394 629.724 l -3.023 w 0 G S -411.394 629.724 m -411.688 629.724 l -3.023 w 0 G S -411.688 629.724 m -411.982 629.782 l -3.023 w 0 G S -411.982 629.782 m -412.276 629.841 l -3.023 w 0 G S -412.276 629.841 m -412.571 629.841 l -3.023 w 0 G S -412.571 629.841 m -412.865 629.9 l -3.023 w 0 G S -412.865 629.9 m -413.159 629.9 l -3.023 w 0 G S -413.159 629.9 m -413.453 629.959 l -3.023 w 0 G S -413.453 629.959 m -413.747 629.959 l -3.023 w 0 G S -413.747 629.959 m -414.041 629.959 l -3.023 w 0 G S -414.041 629.959 m -414.335 629.959 l -3.023 w 0 G S -414.335 629.959 m -414.629 629.959 l -3.023 w 0 G S -414.629 629.959 m -414.923 629.959 l -3.023 w 0 G S -414.923 629.959 m -415.218 629.959 l -3.023 w 0 G S -415.218 629.959 m -415.512 629.959 l -3.023 w 0 G S -415.512 629.959 m -415.806 629.959 l -3.023 w 0 G S -415.806 629.959 m -416.1 629.959 l -3.023 w 0 G S -416.1 629.959 m -416.394 629.959 l -3.023 w 0 G S -416.394 629.959 m -416.688 629.9 l -3.023 w 0 G S -416.688 629.9 m -416.982 629.9 l -3.023 w 0 G S -416.982 629.9 m -417.276 629.9 l -3.023 w 0 G S -417.276 629.9 m -417.571 629.841 l -3.023 w 0 G S -417.571 629.841 m -417.865 629.782 l -3.023 w 0 G S -417.865 629.782 m -418.159 629.782 l -3.023 w 0 G S -418.159 629.782 m -418.453 629.724 l -3.023 w 0 G S -418.453 629.724 m -418.747 629.665 l -3.023 w 0 G S -418.747 629.665 m -419.041 629.606 l -3.023 w 0 G S -419.041 629.606 m -419.335 629.547 l -3.023 w 0 G S -419.335 629.547 m -419.571 629.488 l -3.023 w 0 G S -419.571 629.488 m -419.865 629.429 l -3.023 w 0 G S -419.865 629.429 m -420.159 629.371 l -3.023 w 0 G S -420.159 629.371 m -420.453 629.312 l -3.023 w 0 G S -420.453 629.312 m -420.747 629.253 l -3.023 w 0 G S -420.747 629.253 m -421.041 629.194 l -3.023 w 0 G S -421.041 629.194 m -421.276 629.077 l -3.023 w 0 G S -421.276 629.077 m -421.571 629.018 l -3.023 w 0 G S -421.571 629.018 m -421.865 628.9 l -3.023 w 0 G S -421.865 628.9 m -422.159 628.841 l -3.023 w 0 G S -422.159 628.841 m -422.453 628.724 l -3.023 w 0 G S -422.453 628.724 m -422.688 628.606 l -3.023 w 0 G S -422.688 628.606 m -422.982 628.547 l -3.023 w 0 G S -422.982 628.547 m -423.276 628.429 l -3.023 w 0 G S -423.276 628.429 m -423.512 628.312 l -3.023 w 0 G S -423.512 628.312 m -423.806 628.194 l -3.023 w 0 G S -423.806 628.194 m -424.041 628.077 l -3.023 w 0 G S -424.041 628.077 m -424.335 627.959 l -3.023 w 0 G S -424.335 627.959 m -424.629 627.841 l -3.023 w 0 G S -424.629 627.841 m -424.865 627.724 l -3.023 w 0 G S -424.865 627.724 m -425.1 627.606 l -3.023 w 0 G S -425.1 627.606 m -425.394 627.429 l -3.023 w 0 G S -425.394 627.429 m -425.629 627.312 l -3.023 w 0 G S -425.629 627.312 m -425.923 627.194 l -3.023 w 0 G S -425.923 627.194 m -426.159 627.018 l -3.023 w 0 G S -426.159 627.018 m -426.394 626.9 l -3.023 w 0 G S -426.394 626.9 m -426.688 626.724 l -3.023 w 0 G S -426.688 626.724 m -426.923 626.606 l -3.023 w 0 G S -426.923 626.606 m -427.159 626.429 l -3.023 w 0 G S -427.159 626.429 m -427.394 626.253 l -3.023 w 0 G S -427.394 626.253 m -427.688 626.077 l -3.023 w 0 G S -427.688 626.077 m -427.923 625.959 l -3.023 w 0 G S -427.923 625.959 m -428.159 625.782 l -3.023 w 0 G S -428.159 625.782 m -428.394 625.606 l -3.023 w 0 G S -428.394 625.606 m -428.629 625.429 l -3.023 w 0 G S -428.629 625.429 m -428.865 625.253 l -3.023 w 0 G S -428.865 625.253 m -429.1 625.077 l -3.023 w 0 G S -429.1 625.077 m -429.335 624.841 l -3.023 w 0 G S -429.335 624.841 m -429.512 624.665 l -3.023 w 0 G S -429.512 624.665 m -429.747 624.488 l -3.023 w 0 G S -429.747 624.488 m -429.982 624.312 l -3.023 w 0 G S -429.982 624.312 m -430.218 624.077 l -3.023 w 0 G S -430.218 624.077 m -430.394 623.9 l -3.023 w 0 G S -430.394 623.9 m -430.629 623.665 l -3.023 w 0 G S -430.629 623.665 m -430.806 623.488 l -3.023 w 0 G S -430.806 623.488 m -431.041 623.253 l -3.023 w 0 G S -431.041 623.253 m -431.218 623.077 l -3.023 w 0 G S -431.218 623.077 m -431.453 622.841 l -3.023 w 0 G S -431.453 622.841 m -431.629 622.665 l -3.023 w 0 G S -431.629 622.665 m -431.865 622.429 l -3.023 w 0 G S -431.865 622.429 m -432.041 622.194 l -3.023 w 0 G S -432.041 622.194 m -432.218 621.959 l -3.023 w 0 G S -432.218 621.959 m -432.394 621.724 l -3.023 w 0 G S -432.394 621.724 m -432.629 621.547 l -3.023 w 0 G S -432.629 621.547 m -432.806 621.312 l -3.023 w 0 G S -432.806 621.312 m -432.982 621.077 l -3.023 w 0 G S -432.982 621.077 m -433.159 620.841 l -3.023 w 0 G S -433.159 620.841 m -433.335 620.606 l -3.023 w 0 G S -433.335 620.606 m -433.453 620.371 l -3.023 w 0 G S -433.453 620.371 m -433.629 620.077 l -3.023 w 0 G S -433.629 620.077 m -433.806 619.841 l -3.023 w 0 G S -433.806 619.841 m -433.982 619.606 l -3.023 w 0 G S -433.982 619.606 m -434.1 619.371 l -3.023 w 0 G S -434.1 619.371 m -434.276 619.135 l -3.023 w 0 G S -434.276 619.135 m -434.453 618.841 l -3.023 w 0 G S -434.453 618.841 m -434.571 618.606 l -3.023 w 0 G S -434.571 618.606 m -434.747 618.371 l -3.023 w 0 G S -434.747 618.371 m -434.865 618.077 l -3.023 w 0 G S -434.865 618.077 m -434.982 617.841 l -3.023 w 0 G S -434.982 617.841 m -435.1 617.547 l -3.023 w 0 G S -435.1 617.547 m -435.276 617.312 l -3.023 w 0 G S -435.276 617.312 m -435.394 617.018 l -3.023 w 0 G S -435.394 617.018 m -435.512 616.782 l -3.023 w 0 G S -435.512 616.782 m -435.629 616.488 l -3.023 w 0 G S -435.629 616.488 m -435.747 616.253 l -3.023 w 0 G S -435.747 616.253 m -435.865 615.959 l -3.023 w 0 G S -435.865 615.959 m -435.982 615.665 l -3.023 w 0 G S -435.982 615.665 m -436.041 615.429 l -3.023 w 0 G S -436.041 615.429 m -436.159 615.135 l -3.023 w 0 G S -436.159 615.135 m -436.276 614.841 l -3.023 w 0 G S -436.276 614.841 m -436.335 614.606 l -3.023 w 0 G S -436.335 614.606 m -436.453 614.312 l -3.023 w 0 G S -436.453 614.312 m -436.571 614.018 l -3.023 w 0 G S -436.571 614.018 m -436.629 613.724 l -3.023 w 0 G S -436.629 613.724 m -436.688 613.429 l -3.023 w 0 G S -436.688 613.429 m -436.806 613.194 l -3.023 w 0 G S -436.806 613.194 m -436.865 612.9 l -3.023 w 0 G S -436.865 612.9 m -436.923 612.606 l -3.023 w 0 G S -436.923 612.606 m -436.982 612.312 l -3.023 w 0 G S -436.982 612.312 m -437.041 612.018 l -3.023 w 0 G S -437.041 612.018 m -437.1 611.724 l -3.023 w 0 G S -437.1 611.724 m -437.159 611.429 l -3.023 w 0 G S -437.159 611.429 m -437.218 611.135 l -3.023 w 0 G S -437.218 611.135 m -437.276 610.9 l -3.023 w 0 G S -437.276 610.9 m -437.276 610.606 l -3.023 w 0 G S -437.276 610.606 m -437.335 610.312 l -3.023 w 0 G S -437.335 610.312 m -437.394 610.018 l -3.023 w 0 G S -437.394 610.018 m -437.394 609.724 l -3.023 w 0 G S -437.394 609.724 m -437.453 609.429 l -3.023 w 0 G S -437.453 609.429 m -437.453 609.135 l -3.023 w 0 G S -437.453 609.135 m -437.453 608.841 l -3.023 w 0 G S -437.453 608.841 m -437.512 608.547 l -3.023 w 0 G S -437.512 608.547 m -437.512 608.253 l -3.023 w 0 G S -437.512 608.253 m -437.512 607.959 l -3.023 w 0 G S -437.512 607.959 m -437.512 607.665 l -3.023 w 0 G S -437.512 607.665 m -437.512 607.371 l -3.023 w 0 G S -437.512 607.371 m -437.512 607.077 l -3.023 w 0 G S -437.512 607.077 m -437.512 606.782 l -3.023 w 0 G S -437.512 606.782 m -437.512 606.488 l -3.023 w 0 G S -437.512 606.488 m -437.453 606.194 l -3.023 w 0 G S -437.453 606.194 m -437.453 605.9 l -3.023 w 0 G S -437.453 605.9 m -437.453 605.606 l -3.023 w 0 G S -437.453 605.606 m -437.394 605.312 l -3.023 w 0 G S -437.394 605.312 m -437.394 605.018 l -3.023 w 0 G S -437.394 605.018 m -437.335 604.724 l -3.023 w 0 G S -437.335 604.724 m -437.276 604.429 l -3.023 w 0 G S -437.276 604.429 m -437.276 604.135 l -3.023 w 0 G S -437.276 604.135 m -437.218 603.841 l -3.023 w 0 G S -437.218 603.841 m -437.159 603.547 l -3.023 w 0 G S -437.159 603.547 m -437.1 603.253 l -3.023 w 0 G S -437.1 603.253 m -437.041 602.959 l -3.023 w 0 G S -437.041 602.959 m -436.982 602.665 l -3.023 w 0 G S -436.982 602.665 m -436.923 602.429 l -3.023 w 0 G S -436.923 602.429 m -436.865 602.135 l -3.023 w 0 G S -436.865 602.135 m -436.806 601.841 l -3.023 w 0 G S -436.806 601.841 m -436.688 601.547 l -3.023 w 0 G S -436.688 601.547 m -436.629 601.253 l -3.023 w 0 G S -436.629 601.253 m -436.571 600.959 l -3.023 w 0 G S -436.571 600.959 m -436.453 600.724 l -3.023 w 0 G S -436.453 600.724 m -436.394 600.429 l -3.023 w 0 G S -436.394 600.429 m -436.276 600.135 l -3.023 w 0 G S -436.276 600.135 m -436.159 599.841 l -3.023 w 0 G S -436.159 599.841 m -436.1 599.606 l -3.023 w 0 G S -436.1 599.606 m -435.982 599.312 l -3.023 w 0 G S -435.982 599.312 m -435.865 599.018 l -3.023 w 0 G S -435.865 599.018 m -435.747 598.782 l -3.023 w 0 G S -435.747 598.782 m -435.629 598.488 l -3.023 w 0 G S -435.629 598.488 m -435.512 598.253 l -3.023 w 0 G S -435.512 598.253 m -435.394 597.959 l -3.023 w 0 G S -435.394 597.959 m -435.276 597.724 l -3.023 w 0 G S -435.276 597.724 m -435.159 597.429 l -3.023 w 0 G S -435.159 597.429 m -434.982 597.194 l -3.023 w 0 G S -434.982 597.194 m -434.865 596.9 l -3.023 w 0 G S -434.865 596.9 m -434.747 596.665 l -3.023 w 0 G S -434.747 596.665 m -434.571 596.429 l -3.023 w 0 G S -434.571 596.429 m -434.453 596.135 l -3.023 w 0 G S -434.453 596.135 m -434.276 595.9 l -3.023 w 0 G S -434.276 595.9 m -434.159 595.665 l -3.023 w 0 G S -434.159 595.665 m -433.982 595.371 l -3.023 w 0 G S -433.982 595.371 m -433.806 595.135 l -3.023 w 0 G S -433.806 595.135 m -433.688 594.9 l -3.023 w 0 G S -433.688 594.9 m -433.512 594.665 l -3.023 w 0 G S -433.512 594.665 m -433.335 594.429 l -3.023 w 0 G S -433.335 594.429 m -433.159 594.194 l -3.023 w 0 G S -433.159 594.194 m -432.982 593.959 l -3.023 w 0 G S -432.982 593.959 m -432.806 593.724 l -3.023 w 0 G S -432.806 593.724 m -432.629 593.488 l -3.023 w 0 G S -432.629 593.488 m -432.453 593.253 l -3.023 w 0 G S -432.453 593.253 m -432.276 593.018 l -3.023 w 0 G S -432.276 593.018 m -432.041 592.782 l -3.023 w 0 G S -432.041 592.782 m -431.865 592.606 l -3.023 w 0 G S -431.865 592.606 m -431.688 592.371 l -3.023 w 0 G S -431.688 592.371 m -431.453 592.135 l -3.023 w 0 G S -431.453 592.135 m -431.276 591.959 l -3.023 w 0 G S -431.276 591.959 m -431.041 591.724 l -3.023 w 0 G S -431.041 591.724 m -430.865 591.488 l -3.023 w 0 G S -430.865 591.488 m -430.629 591.312 l -3.023 w 0 G S -430.629 591.312 m -430.453 591.077 l -3.023 w 0 G S -430.453 591.077 m -430.218 590.9 l -3.023 w 0 G S -430.218 590.9 m -429.982 590.724 l -3.023 w 0 G S -429.982 590.724 m -429.806 590.488 l -3.023 w 0 G S -429.806 590.488 m -429.571 590.312 l -3.023 w 0 G S -429.571 590.312 m -429.335 590.135 l -3.023 w 0 G S -429.335 590.135 m -429.1 589.959 l -3.023 w 0 G S -429.1 589.959 m -428.865 589.782 l -3.023 w 0 G S -428.865 589.782 m -428.629 589.606 l -3.023 w 0 G S -428.629 589.606 m -428.394 589.429 l -3.023 w 0 G S -428.394 589.429 m -428.159 589.253 l -3.023 w 0 G S -428.159 589.253 m -427.923 589.077 l -3.023 w 0 G S -427.923 589.077 m -427.688 588.9 l -3.023 w 0 G S -427.688 588.9 m -427.453 588.724 l -3.023 w 0 G S -427.453 588.724 m -427.218 588.547 l -3.023 w 0 G S -427.218 588.547 m -426.923 588.429 l -3.023 w 0 G S -426.923 588.429 m -426.688 588.253 l -3.023 w 0 G S -426.688 588.253 m -426.453 588.135 l -3.023 w 0 G S -426.453 588.135 m -426.218 587.959 l -3.023 w 0 G S -426.218 587.959 m -425.923 587.841 l -3.023 w 0 G S -425.923 587.841 m -425.688 587.665 l -3.023 w 0 G S -425.688 587.665 m -425.394 587.547 l -3.023 w 0 G S -425.394 587.547 m -425.159 587.429 l -3.023 w 0 G S -425.159 587.429 m -424.923 587.253 l -3.023 w 0 G S -424.923 587.253 m -424.629 587.135 l -3.023 w 0 G S -424.629 587.135 m -424.335 587.018 l -3.023 w 0 G S -424.335 587.018 m -424.1 586.9 l -3.023 w 0 G S -424.1 586.9 m -423.806 586.782 l -3.023 w 0 G S -423.806 586.782 m -423.571 586.665 l -3.023 w 0 G S -423.571 586.665 m -423.276 586.547 l -3.023 w 0 G S -423.276 586.547 m -422.982 586.429 l -3.023 w 0 G S -422.982 586.429 m -422.747 586.371 l -3.023 w 0 G S -422.747 586.371 m -422.453 586.253 l -3.023 w 0 G S -422.453 586.253 m -422.159 586.135 l -3.023 w 0 G S -422.159 586.135 m -421.923 586.077 l -3.023 w 0 G S -421.923 586.077 m -421.629 585.959 l -3.023 w 0 G S -421.629 585.959 m -421.335 585.9 l -3.023 w 0 G S -421.335 585.9 m -421.041 585.841 l -3.023 w 0 G S -421.041 585.841 m -420.747 585.724 l -3.023 w 0 G S -420.747 585.724 m -420.512 585.665 l -3.023 w 0 G S -420.512 585.665 m -420.218 585.606 l -3.023 w 0 G S -420.218 585.606 m -419.923 585.547 l -3.023 w 0 G S -419.923 585.547 m -419.629 585.488 l -3.023 w 0 G S -419.629 585.488 m -419.335 585.429 l -3.023 w 0 G S -419.335 585.429 m -419.041 585.371 l -3.023 w 0 G S -419.041 585.371 m -418.747 585.312 l -3.023 w 0 G S -418.747 585.312 m -418.453 585.253 l -3.023 w 0 G S -418.453 585.253 m -418.159 585.194 l -3.023 w 0 G S -418.159 585.194 m -417.865 585.194 l -3.023 w 0 G S -417.865 585.194 m -417.571 585.135 l -3.023 w 0 G S -417.571 585.135 m -417.276 585.077 l -3.023 w 0 G S -417.276 585.077 m -417.041 585.077 l -3.023 w 0 G S -417.041 585.077 m -416.747 585.077 l -3.023 w 0 G S -416.747 585.077 m -416.453 585.018 l -3.023 w 0 G S -416.453 585.018 m -416.159 585.018 l -3.023 w 0 G S -416.159 585.018 m -415.865 585.018 l -3.023 w 0 G S -415.865 585.018 m -415.571 585.018 l -3.023 w 0 G S -415.571 585.018 m -415.276 585.018 l -3.023 w 0 G S -415.276 585.018 m -414.982 585.018 l -3.023 w 0 G S -414.982 585.018 m -414.688 585.018 l -3.023 w 0 G S -414.688 585.018 m -414.394 585.018 l -3.023 w 0 G S -414.394 585.018 m -414.1 585.018 l -3.023 w 0 G S -414.1 585.018 m -413.806 585.018 l -3.023 w 0 G S -413.806 585.018 m -413.512 585.018 l -3.023 w 0 G S -413.512 585.018 m -413.218 585.077 l -3.023 w 0 G S -413.218 585.077 m -412.923 585.077 l -3.023 w 0 G S -412.923 585.077 m -412.629 585.135 l -3.023 w 0 G S -412.629 585.135 m -412.335 585.135 l -3.023 w 0 G S -412.335 585.135 m -412.041 585.194 l -3.023 w 0 G S -412.041 585.194 m -411.747 585.253 l -3.023 w 0 G S -411.747 585.253 m -411.453 585.253 l -3.023 w 0 G S -411.453 585.253 m -411.159 585.312 l -3.023 w 0 G S -411.159 585.312 m -410.865 585.371 l -3.023 w 0 G S -410.865 585.371 m -410.571 585.429 l -3.023 w 0 G S -410.571 585.429 m -410.276 585.488 l -3.023 w 0 G S -410.276 585.488 m -409.982 585.547 l -3.023 w 0 G S -409.982 585.547 m -409.747 585.606 l -3.023 w 0 G S -409.747 585.606 m -409.453 585.665 l -3.023 w 0 G S -409.453 585.665 m -409.159 585.782 l -3.023 w 0 G S -409.159 585.782 m -408.865 585.841 l -3.023 w 0 G S -408.865 585.841 m -408.571 585.9 l -3.023 w 0 G S -408.571 585.9 m -408.276 586.018 l -3.023 w 0 G S -408.276 586.018 m -408.041 586.077 l -3.023 w 0 G S -408.041 586.077 m -407.747 586.194 l -3.023 w 0 G S -407.747 586.194 m -407.453 586.312 l -3.023 w 0 G S -407.453 586.312 m -407.218 586.371 l -3.023 w 0 G S -407.218 586.371 m -406.923 586.488 l -3.023 w 0 G S -406.923 586.488 m -406.629 586.606 l -3.023 w 0 G S -406.629 586.606 m -406.394 586.724 l -3.023 w 0 G S -406.394 586.724 m -406.1 586.841 l -3.023 w 0 G S -406.1 586.841 m -405.806 586.959 l -3.023 w 0 G S -405.806 586.959 m -405.571 587.077 l -3.023 w 0 G S -405.571 587.077 m -405.276 587.194 l -3.023 w 0 G S -405.276 587.194 m -405.041 587.312 l -3.023 w 0 G S -405.041 587.312 m -404.747 587.429 l -3.023 w 0 G S -404.747 587.429 m -404.512 587.606 l -3.023 w 0 G S -404.512 587.606 m -404.276 587.724 l -3.023 w 0 G S -404.276 587.724 m -403.982 587.9 l -3.023 w 0 G S -403.982 587.9 m -403.747 588.018 l -3.023 w 0 G S -403.747 588.018 m -403.512 588.194 l -3.023 w 0 G S -403.512 588.194 m -403.218 588.312 l -3.023 w 0 G S -403.218 588.312 m -402.982 588.488 l -3.023 w 0 G S -402.982 588.488 m -402.747 588.606 l -3.023 w 0 G S -402.747 588.606 m -402.512 588.782 l -3.023 w 0 G S -402.512 588.782 m -402.276 588.959 l -3.023 w 0 G S -402.276 588.959 m -401.982 589.135 l -3.023 w 0 G S -401.982 589.135 m -401.747 589.312 l -3.023 w 0 G S -401.747 589.312 m -401.512 589.488 l -3.023 w 0 G S -401.512 589.488 m -401.747 589.665 l -3.023 w 0 G S -401.747 589.665 m -401.982 589.841 l -3.023 w 0 G S -401.982 589.841 m -402.218 590.018 l -3.023 w 0 G S -402.218 590.018 m -402.453 590.135 l -3.023 w 0 G S -402.453 590.135 m -402.688 590.312 l -3.023 w 0 G S -402.688 590.312 m -402.982 590.488 l -3.023 w 0 G S -402.982 590.488 m -403.218 590.665 l -3.023 w 0 G S -403.218 590.665 m -403.453 590.782 l -3.023 w 0 G S -403.453 590.782 m -403.688 590.959 l -3.023 w 0 G S -403.688 590.959 m -403.982 591.077 l -3.023 w 0 G S -403.982 591.077 m -404.218 591.253 l -3.023 w 0 G S -404.218 591.253 m -404.453 591.371 l -3.023 w 0 G S -404.453 591.371 m -404.747 591.488 l -3.023 w 0 G S -404.747 591.488 m -404.982 591.665 l -3.023 w 0 G S -404.982 591.665 m -405.276 591.782 l -3.023 w 0 G S -405.276 591.782 m -405.512 591.9 l -3.023 w 0 G S -405.512 591.9 m -405.806 592.018 l -3.023 w 0 G S -405.806 592.018 m -406.041 592.135 l -3.023 w 0 G S -406.041 592.135 m -406.335 592.253 l -3.023 w 0 G S -406.335 592.253 m -406.629 592.371 l -3.023 w 0 G S -406.629 592.371 m -406.865 592.488 l -3.023 w 0 G S -406.865 592.488 m -407.159 592.547 l -3.023 w 0 G S -407.159 592.547 m -407.453 592.665 l -3.023 w 0 G S -407.453 592.665 m -407.688 592.782 l -3.023 w 0 G S -407.688 592.782 m -407.982 592.841 l -3.023 w 0 G S -407.982 592.841 m -408.276 592.959 l -3.023 w 0 G S -408.276 592.959 m -408.571 593.018 l -3.023 w 0 G S -408.571 593.018 m -408.806 593.135 l -3.023 w 0 G S -408.806 593.135 m -409.1 593.194 l -3.023 w 0 G S -409.1 593.194 m -409.394 593.253 l -3.023 w 0 G S -409.394 593.253 m -409.688 593.371 l -3.023 w 0 G S -409.688 593.371 m -409.982 593.429 l -3.023 w 0 G S -409.982 593.429 m -410.276 593.488 l -3.023 w 0 G S -410.276 593.488 m -410.571 593.547 l -3.023 w 0 G S -410.571 593.547 m -410.806 593.606 l -3.023 w 0 G S -410.806 593.606 m -411.1 593.665 l -3.023 w 0 G S -411.1 593.665 m -411.394 593.724 l -3.023 w 0 G S -411.394 593.724 m -411.688 593.724 l -3.023 w 0 G S -411.688 593.724 m -411.982 593.782 l -3.023 w 0 G S -411.982 593.782 m -412.276 593.841 l -3.023 w 0 G S -412.276 593.841 m -412.571 593.841 l -3.023 w 0 G S -412.571 593.841 m -412.865 593.9 l -3.023 w 0 G S -412.865 593.9 m -413.159 593.9 l -3.023 w 0 G S -413.159 593.9 m -413.453 593.959 l -3.023 w 0 G S -413.453 593.959 m -413.747 593.959 l -3.023 w 0 G S -413.747 593.959 m -414.041 593.959 l -3.023 w 0 G S -414.041 593.959 m -414.335 593.959 l -3.023 w 0 G S -414.335 593.959 m -414.629 593.959 l -3.023 w 0 G S -414.629 593.959 m -414.923 593.959 l -3.023 w 0 G S -414.923 593.959 m -415.218 593.959 l -3.023 w 0 G S -415.218 593.959 m -415.512 593.959 l -3.023 w 0 G S -415.512 593.959 m -415.806 593.959 l -3.023 w 0 G S -415.806 593.959 m -416.1 593.959 l -3.023 w 0 G S -416.1 593.959 m -416.394 593.959 l -3.023 w 0 G S -416.394 593.959 m -416.688 593.9 l -3.023 w 0 G S -416.688 593.9 m -416.982 593.9 l -3.023 w 0 G S -416.982 593.9 m -417.276 593.9 l -3.023 w 0 G S -417.276 593.9 m -417.571 593.841 l -3.023 w 0 G S -417.571 593.841 m -417.865 593.782 l -3.023 w 0 G S -417.865 593.782 m -418.159 593.782 l -3.023 w 0 G S -418.159 593.782 m -418.453 593.724 l -3.023 w 0 G S -418.453 593.724 m -418.747 593.665 l -3.023 w 0 G S -418.747 593.665 m -419.041 593.606 l -3.023 w 0 G S -419.041 593.606 m -419.335 593.547 l -3.023 w 0 G S -419.335 593.547 m -419.571 593.488 l -3.023 w 0 G S -419.571 593.488 m -419.865 593.429 l -3.023 w 0 G S -419.865 593.429 m -420.159 593.371 l -3.023 w 0 G S -420.159 593.371 m -420.453 593.312 l -3.023 w 0 G S -420.453 593.312 m -420.747 593.253 l -3.023 w 0 G S -420.747 593.253 m -421.041 593.194 l -3.023 w 0 G S -421.041 593.194 m -421.276 593.077 l -3.023 w 0 G S -421.276 593.077 m -421.571 593.018 l -3.023 w 0 G S -421.571 593.018 m -421.865 592.9 l -3.023 w 0 G S -421.865 592.9 m -422.159 592.841 l -3.023 w 0 G S -422.159 592.841 m -422.453 592.724 l -3.023 w 0 G S -422.453 592.724 m -422.688 592.606 l -3.023 w 0 G S -422.688 592.606 m -422.982 592.547 l -3.023 w 0 G S -422.982 592.547 m -423.276 592.429 l -3.023 w 0 G S -423.276 592.429 m -423.512 592.312 l -3.023 w 0 G S -423.512 592.312 m -423.806 592.194 l -3.023 w 0 G S -423.806 592.194 m -424.041 592.077 l -3.023 w 0 G S -424.041 592.077 m -424.335 591.959 l -3.023 w 0 G S -424.335 591.959 m -424.629 591.841 l -3.023 w 0 G S -424.629 591.841 m -424.865 591.724 l -3.023 w 0 G S -424.865 591.724 m -425.1 591.606 l -3.023 w 0 G S -425.1 591.606 m -425.394 591.429 l -3.023 w 0 G S -425.394 591.429 m -425.629 591.312 l -3.023 w 0 G S -425.629 591.312 m -425.923 591.194 l -3.023 w 0 G S -425.923 591.194 m -426.159 591.018 l -3.023 w 0 G S -426.159 591.018 m -426.394 590.9 l -3.023 w 0 G S -426.394 590.9 m -426.688 590.724 l -3.023 w 0 G S -426.688 590.724 m -426.923 590.606 l -3.023 w 0 G S -426.923 590.606 m -427.159 590.429 l -3.023 w 0 G S -427.159 590.429 m -427.394 590.253 l -3.023 w 0 G S -427.394 590.253 m -427.688 590.077 l -3.023 w 0 G S -427.688 590.077 m -427.923 589.959 l -3.023 w 0 G S -427.923 589.959 m -428.159 589.782 l -3.023 w 0 G S -428.159 589.782 m -428.394 589.606 l -3.023 w 0 G S -428.394 589.606 m -428.629 589.429 l -3.023 w 0 G S -428.629 589.429 m -428.865 589.253 l -3.023 w 0 G S -428.865 589.253 m -429.1 589.077 l -3.023 w 0 G S -429.1 589.077 m -429.335 588.841 l -3.023 w 0 G S -429.335 588.841 m -429.512 588.665 l -3.023 w 0 G S -429.512 588.665 m -429.747 588.488 l -3.023 w 0 G S -429.747 588.488 m -429.982 588.312 l -3.023 w 0 G S -429.982 588.312 m -430.218 588.077 l -3.023 w 0 G S -430.218 588.077 m -430.394 587.9 l -3.023 w 0 G S -430.394 587.9 m -430.629 587.665 l -3.023 w 0 G S -430.629 587.665 m -430.806 587.488 l -3.023 w 0 G S -430.806 587.488 m -431.041 587.253 l -3.023 w 0 G S -431.041 587.253 m -431.218 587.077 l -3.023 w 0 G S -431.218 587.077 m -431.453 586.841 l -3.023 w 0 G S -431.453 586.841 m -431.629 586.665 l -3.023 w 0 G S -431.629 586.665 m -431.865 586.429 l -3.023 w 0 G S -431.865 586.429 m -432.041 586.194 l -3.023 w 0 G S -432.041 586.194 m -432.218 585.959 l -3.023 w 0 G S -432.218 585.959 m -432.394 585.724 l -3.023 w 0 G S -432.394 585.724 m -432.629 585.547 l -3.023 w 0 G S -432.629 585.547 m -432.806 585.312 l -3.023 w 0 G S -432.806 585.312 m -432.982 585.077 l -3.023 w 0 G S -432.982 585.077 m -433.159 584.841 l -3.023 w 0 G S -433.159 584.841 m -433.335 584.606 l -3.023 w 0 G S -433.335 584.606 m -433.453 584.371 l -3.023 w 0 G S -433.453 584.371 m -433.629 584.077 l -3.023 w 0 G S -433.629 584.077 m -433.806 583.841 l -3.023 w 0 G S -433.806 583.841 m -433.982 583.606 l -3.023 w 0 G S -433.982 583.606 m -434.1 583.371 l -3.023 w 0 G S -434.1 583.371 m -434.276 583.135 l -3.023 w 0 G S -434.276 583.135 m -434.453 582.841 l -3.023 w 0 G S -434.453 582.841 m -434.571 582.606 l -3.023 w 0 G S -434.571 582.606 m -434.747 582.371 l -3.023 w 0 G S -434.747 582.371 m -434.865 582.077 l -3.023 w 0 G S -434.865 582.077 m -434.982 581.841 l -3.023 w 0 G S -434.982 581.841 m -435.1 581.547 l -3.023 w 0 G S -435.1 581.547 m -435.276 581.312 l -3.023 w 0 G S -435.276 581.312 m -435.394 581.018 l -3.023 w 0 G S -435.394 581.018 m -435.512 580.782 l -3.023 w 0 G S -435.512 580.782 m -435.629 580.488 l -3.023 w 0 G S -435.629 580.488 m -435.747 580.253 l -3.023 w 0 G S -435.747 580.253 m -435.865 579.959 l -3.023 w 0 G S -435.865 579.959 m -435.982 579.665 l -3.023 w 0 G S -435.982 579.665 m -436.041 579.429 l -3.023 w 0 G S -436.041 579.429 m -436.159 579.135 l -3.023 w 0 G S -436.159 579.135 m -436.276 578.841 l -3.023 w 0 G S -436.276 578.841 m -436.335 578.606 l -3.023 w 0 G S -436.335 578.606 m -436.453 578.312 l -3.023 w 0 G S -436.453 578.312 m -436.571 578.018 l -3.023 w 0 G S -436.571 578.018 m -436.629 577.724 l -3.023 w 0 G S -436.629 577.724 m -436.688 577.429 l -3.023 w 0 G S -436.688 577.429 m -436.806 577.194 l -3.023 w 0 G S -436.806 577.194 m -436.865 576.9 l -3.023 w 0 G S -436.865 576.9 m -436.923 576.606 l -3.023 w 0 G S -436.923 576.606 m -436.982 576.312 l -3.023 w 0 G S -436.982 576.312 m -437.041 576.018 l -3.023 w 0 G S -437.041 576.018 m -437.1 575.724 l -3.023 w 0 G S -437.1 575.724 m -437.159 575.429 l -3.023 w 0 G S -437.159 575.429 m -437.218 575.135 l -3.023 w 0 G S -437.218 575.135 m -437.276 574.9 l -3.023 w 0 G S -437.276 574.9 m -437.276 574.606 l -3.023 w 0 G S -437.276 574.606 m -437.335 574.312 l -3.023 w 0 G S -437.335 574.312 m -437.394 574.018 l -3.023 w 0 G S -437.394 574.018 m -437.394 573.724 l -3.023 w 0 G S -437.394 573.724 m -437.453 573.429 l -3.023 w 0 G S -437.453 573.429 m -437.453 573.135 l -3.023 w 0 G S -437.453 573.135 m -437.453 572.841 l -3.023 w 0 G S -437.453 572.841 m -437.512 572.547 l -3.023 w 0 G S -437.512 572.547 m -437.512 572.253 l -3.023 w 0 G S -437.512 572.253 m -437.512 571.959 l -3.023 w 0 G S -437.512 571.959 m -437.512 571.665 l -3.023 w 0 G S -437.512 571.665 m -437.512 571.371 l -3.023 w 0 G S -437.512 571.371 m -437.512 571.077 l -3.023 w 0 G S -437.512 571.077 m -437.512 570.782 l -3.023 w 0 G S -437.512 570.782 m -437.512 570.488 l -3.023 w 0 G S -437.512 570.488 m -437.453 570.194 l -3.023 w 0 G S -437.453 570.194 m -437.453 569.9 l -3.023 w 0 G S -437.453 569.9 m -437.453 569.606 l -3.023 w 0 G S -437.453 569.606 m -437.394 569.312 l -3.023 w 0 G S -437.394 569.312 m -437.394 569.018 l -3.023 w 0 G S -437.394 569.018 m -437.335 568.724 l -3.023 w 0 G S -437.335 568.724 m -437.276 568.429 l -3.023 w 0 G S -437.276 568.429 m -437.276 568.135 l -3.023 w 0 G S -437.276 568.135 m -437.218 567.841 l -3.023 w 0 G S -437.218 567.841 m -437.159 567.547 l -3.023 w 0 G S -437.159 567.547 m -437.1 567.253 l -3.023 w 0 G S -437.1 567.253 m -437.041 566.959 l -3.023 w 0 G S -437.041 566.959 m -436.982 566.665 l -3.023 w 0 G S -436.982 566.665 m -436.923 566.429 l -3.023 w 0 G S -436.923 566.429 m -436.865 566.135 l -3.023 w 0 G S -436.865 566.135 m -436.806 565.841 l -3.023 w 0 G S -436.806 565.841 m -436.688 565.547 l -3.023 w 0 G S -436.688 565.547 m -436.629 565.253 l -3.023 w 0 G S -436.629 565.253 m -436.571 564.959 l -3.023 w 0 G S -436.571 564.959 m -436.453 564.724 l -3.023 w 0 G S -436.453 564.724 m -436.394 564.429 l -3.023 w 0 G S -436.394 564.429 m -436.276 564.135 l -3.023 w 0 G S -436.276 564.135 m -436.159 563.841 l -3.023 w 0 G S -436.159 563.841 m -436.1 563.606 l -3.023 w 0 G S -436.1 563.606 m -435.982 563.312 l -3.023 w 0 G S -435.982 563.312 m -435.865 563.018 l -3.023 w 0 G S -435.865 563.018 m -435.747 562.782 l -3.023 w 0 G S -435.747 562.782 m -435.629 562.488 l -3.023 w 0 G S -435.629 562.488 m -435.512 562.253 l -3.023 w 0 G S -435.512 562.253 m -435.394 561.959 l -3.023 w 0 G S -435.394 561.959 m -435.276 561.724 l -3.023 w 0 G S -435.276 561.724 m -435.159 561.429 l -3.023 w 0 G S -435.159 561.429 m -434.982 561.194 l -3.023 w 0 G S -434.982 561.194 m -434.865 560.9 l -3.023 w 0 G S -434.865 560.9 m -434.747 560.665 l -3.023 w 0 G S -434.747 560.665 m -434.571 560.429 l -3.023 w 0 G S -434.571 560.429 m -434.453 560.135 l -3.023 w 0 G S -434.453 560.135 m -434.276 559.9 l -3.023 w 0 G S -434.276 559.9 m -434.159 559.665 l -3.023 w 0 G S -434.159 559.665 m -433.982 559.371 l -3.023 w 0 G S -433.982 559.371 m -433.806 559.135 l -3.023 w 0 G S -433.806 559.135 m -433.688 558.9 l -3.023 w 0 G S -433.688 558.9 m -433.512 558.665 l -3.023 w 0 G S -433.512 558.665 m -433.335 558.429 l -3.023 w 0 G S -433.335 558.429 m -433.159 558.194 l -3.023 w 0 G S -433.159 558.194 m -432.982 557.959 l -3.023 w 0 G S -432.982 557.959 m -432.806 557.724 l -3.023 w 0 G S -432.806 557.724 m -432.629 557.488 l -3.023 w 0 G S -432.629 557.488 m -432.453 557.253 l -3.023 w 0 G S -432.453 557.253 m -432.276 557.018 l -3.023 w 0 G S -432.276 557.018 m -432.041 556.782 l -3.023 w 0 G S -432.041 556.782 m -431.865 556.606 l -3.023 w 0 G S -431.865 556.606 m -431.688 556.371 l -3.023 w 0 G S -431.688 556.371 m -431.453 556.135 l -3.023 w 0 G S -431.453 556.135 m -431.276 555.959 l -3.023 w 0 G S -431.276 555.959 m -431.041 555.724 l -3.023 w 0 G S -431.041 555.724 m -430.865 555.488 l -3.023 w 0 G S -430.865 555.488 m -430.629 555.312 l -3.023 w 0 G S -430.629 555.312 m -430.453 555.077 l -3.023 w 0 G S -430.453 555.077 m -430.218 554.9 l -3.023 w 0 G S -430.218 554.9 m -429.982 554.724 l -3.023 w 0 G S -429.982 554.724 m -429.806 554.488 l -3.023 w 0 G S -429.806 554.488 m -429.571 554.312 l -3.023 w 0 G S -429.571 554.312 m -429.335 554.135 l -3.023 w 0 G S -429.335 554.135 m -429.1 553.959 l -3.023 w 0 G S -429.1 553.959 m -428.865 553.782 l -3.023 w 0 G S -428.865 553.782 m -428.629 553.606 l -3.023 w 0 G S -428.629 553.606 m -428.394 553.429 l -3.023 w 0 G S -428.394 553.429 m -428.159 553.253 l -3.023 w 0 G S -428.159 553.253 m -427.923 553.077 l -3.023 w 0 G S -427.923 553.077 m -427.688 552.9 l -3.023 w 0 G S -427.688 552.9 m -427.453 552.724 l -3.023 w 0 G S -427.453 552.724 m -427.218 552.547 l -3.023 w 0 G S -427.218 552.547 m -426.923 552.429 l -3.023 w 0 G S -426.923 552.429 m -426.688 552.253 l -3.023 w 0 G S -426.688 552.253 m -426.453 552.135 l -3.023 w 0 G S -426.453 552.135 m -426.218 551.959 l -3.023 w 0 G S -426.218 551.959 m -425.923 551.841 l -3.023 w 0 G S -425.923 551.841 m -425.688 551.665 l -3.023 w 0 G S -425.688 551.665 m -425.394 551.547 l -3.023 w 0 G S -425.394 551.547 m -425.159 551.429 l -3.023 w 0 G S -425.159 551.429 m -424.923 551.253 l -3.023 w 0 G S -424.923 551.253 m -424.629 551.135 l -3.023 w 0 G S -424.629 551.135 m -424.335 551.018 l -3.023 w 0 G S -424.335 551.018 m -424.1 550.9 l -3.023 w 0 G S -424.1 550.9 m -423.806 550.782 l -3.023 w 0 G S -423.806 550.782 m -423.571 550.665 l -3.023 w 0 G S -423.571 550.665 m -423.276 550.547 l -3.023 w 0 G S -423.276 550.547 m -422.982 550.429 l -3.023 w 0 G S -422.982 550.429 m -422.747 550.371 l -3.023 w 0 G S -422.747 550.371 m -422.453 550.253 l -3.023 w 0 G S -422.453 550.253 m -422.159 550.135 l -3.023 w 0 G S -422.159 550.135 m -421.923 550.077 l -3.023 w 0 G S -421.923 550.077 m -421.629 549.959 l -3.023 w 0 G S -421.629 549.959 m -421.335 549.9 l -3.023 w 0 G S -421.335 549.9 m -421.041 549.841 l -3.023 w 0 G S -421.041 549.841 m -420.747 549.724 l -3.023 w 0 G S -420.747 549.724 m -420.512 549.665 l -3.023 w 0 G S -420.512 549.665 m -420.218 549.606 l -3.023 w 0 G S -420.218 549.606 m -419.923 549.547 l -3.023 w 0 G S -419.923 549.547 m -419.629 549.488 l -3.023 w 0 G S -419.629 549.488 m -419.335 549.429 l -3.023 w 0 G S -419.335 549.429 m -419.041 549.371 l -3.023 w 0 G S -419.041 549.371 m -418.747 549.312 l -3.023 w 0 G S -418.747 549.312 m -418.453 549.253 l -3.023 w 0 G S -418.453 549.253 m -418.159 549.194 l -3.023 w 0 G S -418.159 549.194 m -417.865 549.194 l -3.023 w 0 G S -417.865 549.194 m -417.571 549.135 l -3.023 w 0 G S -417.571 549.135 m -417.276 549.077 l -3.023 w 0 G S -417.276 549.077 m -417.041 549.077 l -3.023 w 0 G S -417.041 549.077 m -416.747 549.077 l -3.023 w 0 G S -416.747 549.077 m -416.453 549.018 l -3.023 w 0 G S -416.453 549.018 m -416.159 549.018 l -3.023 w 0 G S -416.159 549.018 m -415.865 549.018 l -3.023 w 0 G S -415.865 549.018 m -415.571 549.018 l -3.023 w 0 G S -415.571 549.018 m -415.276 549.018 l -3.023 w 0 G S -415.276 549.018 m -414.982 549.018 l -3.023 w 0 G S -414.982 549.018 m -414.688 549.018 l -3.023 w 0 G S -414.688 549.018 m -414.394 549.018 l -3.023 w 0 G S -414.394 549.018 m -414.1 549.018 l -3.023 w 0 G S -414.1 549.018 m -413.806 549.018 l -3.023 w 0 G S -413.806 549.018 m -413.512 549.018 l -3.023 w 0 G S -413.512 549.018 m -413.218 549.077 l -3.023 w 0 G S -413.218 549.077 m -412.923 549.077 l -3.023 w 0 G S -412.923 549.077 m -412.629 549.135 l -3.023 w 0 G S -412.629 549.135 m -412.335 549.135 l -3.023 w 0 G S -412.335 549.135 m -412.041 549.194 l -3.023 w 0 G S -412.041 549.194 m -411.747 549.253 l -3.023 w 0 G S -411.747 549.253 m -411.453 549.253 l -3.023 w 0 G S -411.453 549.253 m -411.159 549.312 l -3.023 w 0 G S -411.159 549.312 m -410.865 549.371 l -3.023 w 0 G S -410.865 549.371 m -410.571 549.429 l -3.023 w 0 G S -410.571 549.429 m -410.276 549.488 l -3.023 w 0 G S -410.276 549.488 m -409.982 549.547 l -3.023 w 0 G S -409.982 549.547 m -409.747 549.606 l -3.023 w 0 G S -409.747 549.606 m -409.453 549.665 l -3.023 w 0 G S -409.453 549.665 m -409.159 549.782 l -3.023 w 0 G S -409.159 549.782 m -408.865 549.841 l -3.023 w 0 G S -408.865 549.841 m -408.571 549.9 l -3.023 w 0 G S -408.571 549.9 m -408.276 550.018 l -3.023 w 0 G S -408.276 550.018 m -408.041 550.077 l -3.023 w 0 G S -408.041 550.077 m -407.747 550.194 l -3.023 w 0 G S -407.747 550.194 m -407.453 550.312 l -3.023 w 0 G S -407.453 550.312 m -407.218 550.371 l -3.023 w 0 G S -407.218 550.371 m -406.923 550.488 l -3.023 w 0 G S -406.923 550.488 m -406.629 550.606 l -3.023 w 0 G S -406.629 550.606 m -406.394 550.724 l -3.023 w 0 G S -406.394 550.724 m -406.1 550.841 l -3.023 w 0 G S -406.1 550.841 m -405.806 550.959 l -3.023 w 0 G S -405.806 550.959 m -405.571 551.077 l -3.023 w 0 G S -405.571 551.077 m -405.276 551.194 l -3.023 w 0 G S -405.276 551.194 m -405.041 551.312 l -3.023 w 0 G S -405.041 551.312 m -404.747 551.429 l -3.023 w 0 G S -404.747 551.429 m -404.512 551.606 l -3.023 w 0 G S -404.512 551.606 m -404.276 551.724 l -3.023 w 0 G S -404.276 551.724 m -403.982 551.9 l -3.023 w 0 G S -403.982 551.9 m -403.747 552.018 l -3.023 w 0 G S -403.747 552.018 m -403.512 552.194 l -3.023 w 0 G S -403.512 552.194 m -403.218 552.312 l -3.023 w 0 G S -403.218 552.312 m -402.982 552.488 l -3.023 w 0 G S -402.982 552.488 m -402.747 552.606 l -3.023 w 0 G S -402.747 552.606 m -402.512 552.782 l -3.023 w 0 G S -402.512 552.782 m -402.276 552.959 l -3.023 w 0 G S -402.276 552.959 m -401.982 553.135 l -3.023 w 0 G S -401.982 553.135 m -401.747 553.312 l -3.023 w 0 G S -401.747 553.312 m -401.512 553.488 l -3.023 w 0 G S -401.512 553.488 m -401.747 553.665 l -3.023 w 0 G S -401.747 553.665 m -401.982 553.841 l -3.023 w 0 G S -401.982 553.841 m -402.218 554.018 l -3.023 w 0 G S -402.218 554.018 m -402.453 554.135 l -3.023 w 0 G S -402.453 554.135 m -402.688 554.312 l -3.023 w 0 G S -402.688 554.312 m -402.982 554.488 l -3.023 w 0 G S -402.982 554.488 m -403.218 554.665 l -3.023 w 0 G S -403.218 554.665 m -403.453 554.782 l -3.023 w 0 G S -403.453 554.782 m -403.688 554.959 l -3.023 w 0 G S -403.688 554.959 m -403.982 555.077 l -3.023 w 0 G S -403.982 555.077 m -404.218 555.253 l -3.023 w 0 G S -404.218 555.253 m -404.453 555.371 l -3.023 w 0 G S -404.453 555.371 m -404.747 555.488 l -3.023 w 0 G S -404.747 555.488 m -404.982 555.665 l -3.023 w 0 G S -404.982 555.665 m -405.276 555.782 l -3.023 w 0 G S -405.276 555.782 m -405.512 555.9 l -3.023 w 0 G S -405.512 555.9 m -405.806 556.018 l -3.023 w 0 G S -405.806 556.018 m -406.041 556.135 l -3.023 w 0 G S -406.041 556.135 m -406.335 556.253 l -3.023 w 0 G S -406.335 556.253 m -406.629 556.371 l -3.023 w 0 G S -406.629 556.371 m -406.865 556.488 l -3.023 w 0 G S -406.865 556.488 m -407.159 556.547 l -3.023 w 0 G S -407.159 556.547 m -407.453 556.665 l -3.023 w 0 G S -407.453 556.665 m -407.688 556.782 l -3.023 w 0 G S -407.688 556.782 m -407.982 556.841 l -3.023 w 0 G S -407.982 556.841 m -408.276 556.959 l -3.023 w 0 G S -408.276 556.959 m -408.571 557.018 l -3.023 w 0 G S -408.571 557.018 m -408.806 557.135 l -3.023 w 0 G S -408.806 557.135 m -409.1 557.194 l -3.023 w 0 G S -409.1 557.194 m -409.394 557.253 l -3.023 w 0 G S -409.394 557.253 m -409.688 557.371 l -3.023 w 0 G S -409.688 557.371 m -409.982 557.429 l -3.023 w 0 G S -409.982 557.429 m -410.276 557.488 l -3.023 w 0 G S -410.276 557.488 m -410.571 557.547 l -3.023 w 0 G S -410.571 557.547 m -410.806 557.606 l -3.023 w 0 G S -410.806 557.606 m -411.1 557.665 l -3.023 w 0 G S -411.1 557.665 m -411.394 557.724 l -3.023 w 0 G S -411.394 557.724 m -411.688 557.724 l -3.023 w 0 G S -411.688 557.724 m -411.982 557.782 l -3.023 w 0 G S -411.982 557.782 m -412.276 557.841 l -3.023 w 0 G S -412.276 557.841 m -412.571 557.841 l -3.023 w 0 G S -412.571 557.841 m -412.865 557.9 l -3.023 w 0 G S -412.865 557.9 m -413.159 557.9 l -3.023 w 0 G S -413.159 557.9 m -413.453 557.959 l -3.023 w 0 G S -413.453 557.959 m -413.747 557.959 l -3.023 w 0 G S -413.747 557.959 m -414.041 557.959 l -3.023 w 0 G S -414.041 557.959 m -414.335 557.959 l -3.023 w 0 G S -414.335 557.959 m -414.629 557.959 l -3.023 w 0 G S -414.629 557.959 m -414.923 557.959 l -3.023 w 0 G S -414.923 557.959 m -415.218 557.959 l -3.023 w 0 G S -415.218 557.959 m -415.512 557.959 l -3.023 w 0 G S -415.512 557.959 m -415.806 557.959 l -3.023 w 0 G S -415.806 557.959 m -416.1 557.959 l -3.023 w 0 G S -416.1 557.959 m -416.394 557.959 l -3.023 w 0 G S -416.394 557.959 m -416.688 557.9 l -3.023 w 0 G S -416.688 557.9 m -416.982 557.9 l -3.023 w 0 G S -416.982 557.9 m -417.276 557.9 l -3.023 w 0 G S -417.276 557.9 m -417.571 557.841 l -3.023 w 0 G S -417.571 557.841 m -417.865 557.782 l -3.023 w 0 G S -417.865 557.782 m -418.159 557.782 l -3.023 w 0 G S -418.159 557.782 m -418.453 557.724 l -3.023 w 0 G S -418.453 557.724 m -418.747 557.665 l -3.023 w 0 G S -418.747 557.665 m -419.041 557.606 l -3.023 w 0 G S -419.041 557.606 m -419.335 557.547 l -3.023 w 0 G S -419.335 557.547 m -419.571 557.488 l -3.023 w 0 G S -419.571 557.488 m -419.865 557.429 l -3.023 w 0 G S -419.865 557.429 m -420.159 557.371 l -3.023 w 0 G S -420.159 557.371 m -420.453 557.312 l -3.023 w 0 G S -420.453 557.312 m -420.747 557.253 l -3.023 w 0 G S -420.747 557.253 m -421.041 557.194 l -3.023 w 0 G S -421.041 557.194 m -421.276 557.077 l -3.023 w 0 G S -421.276 557.077 m -421.571 557.018 l -3.023 w 0 G S -421.571 557.018 m -421.865 556.9 l -3.023 w 0 G S -421.865 556.9 m -422.159 556.841 l -3.023 w 0 G S -422.159 556.841 m -422.453 556.724 l -3.023 w 0 G S -422.453 556.724 m -422.688 556.606 l -3.023 w 0 G S -422.688 556.606 m -422.982 556.547 l -3.023 w 0 G S -422.982 556.547 m -423.276 556.429 l -3.023 w 0 G S -423.276 556.429 m -423.512 556.312 l -3.023 w 0 G S -423.512 556.312 m -423.806 556.194 l -3.023 w 0 G S -423.806 556.194 m -424.041 556.077 l -3.023 w 0 G S -424.041 556.077 m -424.335 555.959 l -3.023 w 0 G S -424.335 555.959 m -424.629 555.841 l -3.023 w 0 G S -424.629 555.841 m -424.865 555.724 l -3.023 w 0 G S -424.865 555.724 m -425.1 555.606 l -3.023 w 0 G S -425.1 555.606 m -425.394 555.429 l -3.023 w 0 G S -425.394 555.429 m -425.629 555.312 l -3.023 w 0 G S -425.629 555.312 m -425.923 555.194 l -3.023 w 0 G S -425.923 555.194 m -426.159 555.018 l -3.023 w 0 G S -426.159 555.018 m -426.394 554.9 l -3.023 w 0 G S -426.394 554.9 m -426.688 554.724 l -3.023 w 0 G S -426.688 554.724 m -426.923 554.606 l -3.023 w 0 G S -426.923 554.606 m -427.159 554.429 l -3.023 w 0 G S -427.159 554.429 m -427.394 554.253 l -3.023 w 0 G S -427.394 554.253 m -427.688 554.077 l -3.023 w 0 G S -427.688 554.077 m -427.923 553.959 l -3.023 w 0 G S -427.923 553.959 m -428.159 553.782 l -3.023 w 0 G S -428.159 553.782 m -428.394 553.606 l -3.023 w 0 G S -428.394 553.606 m -428.629 553.429 l -3.023 w 0 G S -428.629 553.429 m -428.865 553.253 l -3.023 w 0 G S -428.865 553.253 m -429.1 553.077 l -3.023 w 0 G S -429.1 553.077 m -429.335 552.841 l -3.023 w 0 G S -429.335 552.841 m -429.512 552.665 l -3.023 w 0 G S -429.512 552.665 m -429.747 552.488 l -3.023 w 0 G S -429.747 552.488 m -429.982 552.312 l -3.023 w 0 G S -429.982 552.312 m -430.218 552.077 l -3.023 w 0 G S -430.218 552.077 m -430.394 551.9 l -3.023 w 0 G S -430.394 551.9 m -430.629 551.665 l -3.023 w 0 G S -430.629 551.665 m -430.806 551.488 l -3.023 w 0 G S -430.806 551.488 m -431.041 551.253 l -3.023 w 0 G S -431.041 551.253 m -431.218 551.077 l -3.023 w 0 G S -431.218 551.077 m -431.453 550.841 l -3.023 w 0 G S -431.453 550.841 m -431.629 550.665 l -3.023 w 0 G S -431.629 550.665 m -431.865 550.429 l -3.023 w 0 G S -431.865 550.429 m -432.041 550.194 l -3.023 w 0 G S -432.041 550.194 m -432.218 549.959 l -3.023 w 0 G S -432.218 549.959 m -432.394 549.724 l -3.023 w 0 G S -432.394 549.724 m -432.629 549.547 l -3.023 w 0 G S -432.629 549.547 m -432.806 549.312 l -3.023 w 0 G S -432.806 549.312 m -432.982 549.077 l -3.023 w 0 G S -432.982 549.077 m -433.159 548.841 l -3.023 w 0 G S -433.159 548.841 m -433.335 548.606 l -3.023 w 0 G S -433.335 548.606 m -433.453 548.371 l -3.023 w 0 G S -433.453 548.371 m -433.629 548.077 l -3.023 w 0 G S -433.629 548.077 m -433.806 547.841 l -3.023 w 0 G S -433.806 547.841 m -433.982 547.606 l -3.023 w 0 G S -433.982 547.606 m -434.1 547.371 l -3.023 w 0 G S -434.1 547.371 m -434.276 547.135 l -3.023 w 0 G S -434.276 547.135 m -434.453 546.841 l -3.023 w 0 G S -434.453 546.841 m -434.571 546.606 l -3.023 w 0 G S -434.571 546.606 m -434.747 546.371 l -3.023 w 0 G S -434.747 546.371 m -434.865 546.077 l -3.023 w 0 G S -434.865 546.077 m -434.982 545.841 l -3.023 w 0 G S -434.982 545.841 m -435.1 545.547 l -3.023 w 0 G S -435.1 545.547 m -435.276 545.312 l -3.023 w 0 G S -435.276 545.312 m -435.394 545.018 l -3.023 w 0 G S -435.394 545.018 m -435.512 544.782 l -3.023 w 0 G S -435.512 544.782 m -435.629 544.488 l -3.023 w 0 G S -435.629 544.488 m -435.747 544.253 l -3.023 w 0 G S -435.747 544.253 m -435.865 543.959 l -3.023 w 0 G S -435.865 543.959 m -435.982 543.665 l -3.023 w 0 G S -435.982 543.665 m -436.041 543.429 l -3.023 w 0 G S -436.041 543.429 m -436.159 543.135 l -3.023 w 0 G S -436.159 543.135 m -436.276 542.841 l -3.023 w 0 G S -436.276 542.841 m -436.335 542.606 l -3.023 w 0 G S -436.335 542.606 m -436.453 542.312 l -3.023 w 0 G S -436.453 542.312 m -436.571 542.018 l -3.023 w 0 G S -436.571 542.018 m -436.629 541.724 l -3.023 w 0 G S -436.629 541.724 m -436.688 541.429 l -3.023 w 0 G S -436.688 541.429 m -436.806 541.194 l -3.023 w 0 G S -436.806 541.194 m -436.865 540.9 l -3.023 w 0 G S -436.865 540.9 m -436.923 540.606 l -3.023 w 0 G S -436.923 540.606 m -436.982 540.312 l -3.023 w 0 G S -436.982 540.312 m -437.041 540.018 l -3.023 w 0 G S -437.041 540.018 m -437.1 539.724 l -3.023 w 0 G S -437.1 539.724 m -437.159 539.429 l -3.023 w 0 G S -437.159 539.429 m -437.218 539.135 l -3.023 w 0 G S -437.218 539.135 m -437.276 538.9 l -3.023 w 0 G S -437.276 538.9 m -437.276 538.606 l -3.023 w 0 G S -437.276 538.606 m -437.335 538.312 l -3.023 w 0 G S -437.335 538.312 m -437.394 538.018 l -3.023 w 0 G S -437.394 538.018 m -437.394 537.724 l -3.023 w 0 G S -437.394 537.724 m -437.453 537.429 l -3.023 w 0 G S -437.453 537.429 m -437.453 537.135 l -3.023 w 0 G S -437.453 537.135 m -437.453 536.841 l -3.023 w 0 G S -437.453 536.841 m -437.512 536.547 l -3.023 w 0 G S -437.512 536.547 m -437.512 536.253 l -3.023 w 0 G S -437.512 536.253 m -437.512 535.959 l -3.023 w 0 G S -437.512 535.959 m -437.512 535.665 l -3.023 w 0 G S -437.512 535.665 m -437.512 535.371 l -3.023 w 0 G S -437.512 535.371 m -437.512 535.077 l -3.023 w 0 G S -437.512 535.077 m -437.512 534.782 l -3.023 w 0 G S -437.512 534.782 m -437.512 534.488 l -3.023 w 0 G S -437.512 534.488 m -437.453 534.194 l -3.023 w 0 G S -437.453 534.194 m -437.453 533.9 l -3.023 w 0 G S -437.453 533.9 m -437.453 533.606 l -3.023 w 0 G S -437.453 533.606 m -437.394 533.312 l -3.023 w 0 G S -437.394 533.312 m -437.394 533.018 l -3.023 w 0 G S -437.394 533.018 m -437.335 532.724 l -3.023 w 0 G S -437.335 532.724 m -437.276 532.429 l -3.023 w 0 G S -437.276 532.429 m -437.276 532.135 l -3.023 w 0 G S -437.276 532.135 m -437.218 531.841 l -3.023 w 0 G S -437.218 531.841 m -437.159 531.547 l -3.023 w 0 G S -437.159 531.547 m -437.1 531.253 l -3.023 w 0 G S -437.1 531.253 m -437.041 530.959 l -3.023 w 0 G S -437.041 530.959 m -436.982 530.665 l -3.023 w 0 G S -436.982 530.665 m -436.923 530.429 l -3.023 w 0 G S -436.923 530.429 m -436.865 530.135 l -3.023 w 0 G S -436.865 530.135 m -436.806 529.841 l -3.023 w 0 G S -436.806 529.841 m -436.688 529.547 l -3.023 w 0 G S -436.688 529.547 m -436.629 529.253 l -3.023 w 0 G S -436.629 529.253 m -436.571 528.959 l -3.023 w 0 G S -436.571 528.959 m -436.453 528.724 l -3.023 w 0 G S -436.453 528.724 m -436.394 528.429 l -3.023 w 0 G S -436.394 528.429 m -436.276 528.135 l -3.023 w 0 G S -436.276 528.135 m -436.159 527.841 l -3.023 w 0 G S -436.159 527.841 m -436.1 527.606 l -3.023 w 0 G S -436.1 527.606 m -435.982 527.312 l -3.023 w 0 G S -435.982 527.312 m -435.865 527.018 l -3.023 w 0 G S -435.865 527.018 m -435.747 526.782 l -3.023 w 0 G S -435.747 526.782 m -435.629 526.488 l -3.023 w 0 G S -435.629 526.488 m -435.512 526.253 l -3.023 w 0 G S -435.512 526.253 m -435.394 525.959 l -3.023 w 0 G S -435.394 525.959 m -435.276 525.724 l -3.023 w 0 G S -435.276 525.724 m -435.159 525.429 l -3.023 w 0 G S -435.159 525.429 m -434.982 525.194 l -3.023 w 0 G S -434.982 525.194 m -434.865 524.9 l -3.023 w 0 G S -434.865 524.9 m -434.747 524.665 l -3.023 w 0 G S -434.747 524.665 m -434.571 524.429 l -3.023 w 0 G S -434.571 524.429 m -434.453 524.135 l -3.023 w 0 G S -434.453 524.135 m -434.276 523.9 l -3.023 w 0 G S -434.276 523.9 m -434.159 523.665 l -3.023 w 0 G S -434.159 523.665 m -433.982 523.371 l -3.023 w 0 G S -433.982 523.371 m -433.806 523.135 l -3.023 w 0 G S -433.806 523.135 m -433.688 522.9 l -3.023 w 0 G S -433.688 522.9 m -433.512 522.665 l -3.023 w 0 G S -433.512 522.665 m -433.335 522.429 l -3.023 w 0 G S -433.335 522.429 m -433.159 522.194 l -3.023 w 0 G S -433.159 522.194 m -432.982 521.959 l -3.023 w 0 G S -432.982 521.959 m -432.806 521.724 l -3.023 w 0 G S -432.806 521.724 m -432.629 521.488 l -3.023 w 0 G S -432.629 521.488 m -432.453 521.253 l -3.023 w 0 G S -432.453 521.253 m -432.276 521.018 l -3.023 w 0 G S -432.276 521.018 m -432.041 520.782 l -3.023 w 0 G S -432.041 520.782 m -431.865 520.606 l -3.023 w 0 G S -431.865 520.606 m -431.688 520.371 l -3.023 w 0 G S -431.688 520.371 m -431.453 520.135 l -3.023 w 0 G S -431.453 520.135 m -431.276 519.959 l -3.023 w 0 G S -431.276 519.959 m -431.041 519.724 l -3.023 w 0 G S -431.041 519.724 m -430.865 519.488 l -3.023 w 0 G S -430.865 519.488 m -430.629 519.312 l -3.023 w 0 G S -430.629 519.312 m -430.453 519.077 l -3.023 w 0 G S -430.453 519.077 m -430.218 518.9 l -3.023 w 0 G S -430.218 518.9 m -429.982 518.724 l -3.023 w 0 G S -429.982 518.724 m -429.806 518.488 l -3.023 w 0 G S -429.806 518.488 m -429.571 518.312 l -3.023 w 0 G S -429.571 518.312 m -429.335 518.135 l -3.023 w 0 G S -429.335 518.135 m -429.1 517.959 l -3.023 w 0 G S -429.1 517.959 m -428.865 517.782 l -3.023 w 0 G S -428.865 517.782 m -428.629 517.606 l -3.023 w 0 G S -428.629 517.606 m -428.394 517.429 l -3.023 w 0 G S -428.394 517.429 m -428.159 517.253 l -3.023 w 0 G S -428.159 517.253 m -427.923 517.077 l -3.023 w 0 G S -427.923 517.077 m -427.688 516.9 l -3.023 w 0 G S -427.688 516.9 m -427.453 516.724 l -3.023 w 0 G S -427.453 516.724 m -427.218 516.547 l -3.023 w 0 G S -427.218 516.547 m -426.923 516.429 l -3.023 w 0 G S -426.923 516.429 m -426.688 516.253 l -3.023 w 0 G S -426.688 516.253 m -426.453 516.135 l -3.023 w 0 G S -426.453 516.135 m -426.218 515.959 l -3.023 w 0 G S -426.218 515.959 m -425.923 515.841 l -3.023 w 0 G S -425.923 515.841 m -425.688 515.665 l -3.023 w 0 G S -425.688 515.665 m -425.394 515.547 l -3.023 w 0 G S -425.394 515.547 m -425.159 515.429 l -3.023 w 0 G S -425.159 515.429 m -424.923 515.253 l -3.023 w 0 G S -424.923 515.253 m -424.629 515.135 l -3.023 w 0 G S -424.629 515.135 m -424.335 515.018 l -3.023 w 0 G S -424.335 515.018 m -424.1 514.9 l -3.023 w 0 G S -424.1 514.9 m -423.806 514.782 l -3.023 w 0 G S -423.806 514.782 m -423.571 514.665 l -3.023 w 0 G S -423.571 514.665 m -423.276 514.547 l -3.023 w 0 G S -423.276 514.547 m -422.982 514.429 l -3.023 w 0 G S -422.982 514.429 m -422.747 514.371 l -3.023 w 0 G S -422.747 514.371 m -422.453 514.253 l -3.023 w 0 G S -422.453 514.253 m -422.159 514.135 l -3.023 w 0 G S -422.159 514.135 m -421.923 514.077 l -3.023 w 0 G S -421.923 514.077 m -421.629 513.959 l -3.023 w 0 G S -421.629 513.959 m -421.335 513.9 l -3.023 w 0 G S -421.335 513.9 m -421.041 513.841 l -3.023 w 0 G S -421.041 513.841 m -420.747 513.724 l -3.023 w 0 G S -420.747 513.724 m -420.512 513.665 l -3.023 w 0 G S -420.512 513.665 m -420.218 513.606 l -3.023 w 0 G S -420.218 513.606 m -419.923 513.547 l -3.023 w 0 G S -419.923 513.547 m -419.629 513.488 l -3.023 w 0 G S -419.629 513.488 m -419.335 513.429 l -3.023 w 0 G S -419.335 513.429 m -419.041 513.371 l -3.023 w 0 G S -419.041 513.371 m -418.747 513.312 l -3.023 w 0 G S -418.747 513.312 m -418.453 513.253 l -3.023 w 0 G S -418.453 513.253 m -418.159 513.194 l -3.023 w 0 G S -418.159 513.194 m -417.865 513.194 l -3.023 w 0 G S -417.865 513.194 m -417.571 513.135 l -3.023 w 0 G S -417.571 513.135 m -417.276 513.077 l -3.023 w 0 G S -417.276 513.077 m -417.041 513.077 l -3.023 w 0 G S -417.041 513.077 m -416.747 513.077 l -3.023 w 0 G S -416.747 513.077 m -416.453 513.018 l -3.023 w 0 G S -416.453 513.018 m -416.159 513.018 l -3.023 w 0 G S -416.159 513.018 m -415.865 513.018 l -3.023 w 0 G S -415.865 513.018 m -415.571 513.018 l -3.023 w 0 G S -415.571 513.018 m -415.276 513.018 l -3.023 w 0 G S -415.276 513.018 m -414.982 513.018 l -3.023 w 0 G S -414.982 513.018 m -414.688 513.018 l -3.023 w 0 G S -414.688 513.018 m -414.394 513.018 l -3.023 w 0 G S -414.394 513.018 m -414.1 513.018 l -3.023 w 0 G S -414.1 513.018 m -413.806 513.018 l -3.023 w 0 G S -413.806 513.018 m -413.512 513.018 l -3.023 w 0 G S -413.512 513.018 m -413.218 513.077 l -3.023 w 0 G S -413.218 513.077 m -412.923 513.077 l -3.023 w 0 G S -412.923 513.077 m -412.629 513.135 l -3.023 w 0 G S -412.629 513.135 m -412.335 513.135 l -3.023 w 0 G S -412.335 513.135 m -412.041 513.194 l -3.023 w 0 G S -412.041 513.194 m -411.747 513.253 l -3.023 w 0 G S -411.747 513.253 m -411.453 513.253 l -3.023 w 0 G S -411.453 513.253 m -411.159 513.312 l -3.023 w 0 G S -411.159 513.312 m -410.865 513.371 l -3.023 w 0 G S -410.865 513.371 m -410.571 513.429 l -3.023 w 0 G S -410.571 513.429 m -410.276 513.488 l -3.023 w 0 G S -410.276 513.488 m -409.982 513.547 l -3.023 w 0 G S -409.982 513.547 m -409.747 513.606 l -3.023 w 0 G S -409.747 513.606 m -409.453 513.665 l -3.023 w 0 G S -409.453 513.665 m -409.159 513.782 l -3.023 w 0 G S -409.159 513.782 m -408.865 513.841 l -3.023 w 0 G S -408.865 513.841 m -408.571 513.9 l -3.023 w 0 G S -408.571 513.9 m -408.276 514.018 l -3.023 w 0 G S -408.276 514.018 m -408.041 514.077 l -3.023 w 0 G S -408.041 514.077 m -407.747 514.194 l -3.023 w 0 G S -407.747 514.194 m -407.453 514.312 l -3.023 w 0 G S -407.453 514.312 m -407.218 514.371 l -3.023 w 0 G S -407.218 514.371 m -406.923 514.488 l -3.023 w 0 G S -406.923 514.488 m -406.629 514.606 l -3.023 w 0 G S -406.629 514.606 m -406.394 514.724 l -3.023 w 0 G S -406.394 514.724 m -406.1 514.841 l -3.023 w 0 G S -406.1 514.841 m -405.806 514.959 l -3.023 w 0 G S -405.806 514.959 m -405.571 515.077 l -3.023 w 0 G S -405.571 515.077 m -405.276 515.194 l -3.023 w 0 G S -405.276 515.194 m -405.041 515.312 l -3.023 w 0 G S -405.041 515.312 m -404.747 515.429 l -3.023 w 0 G S -404.747 515.429 m -404.512 515.606 l -3.023 w 0 G S -404.512 515.606 m -404.276 515.724 l -3.023 w 0 G S -404.276 515.724 m -403.982 515.9 l -3.023 w 0 G S -403.982 515.9 m -403.747 516.018 l -3.023 w 0 G S -403.747 516.018 m -403.512 516.194 l -3.023 w 0 G S -403.512 516.194 m -403.218 516.312 l -3.023 w 0 G S -403.218 516.312 m -402.982 516.488 l -3.023 w 0 G S -402.982 516.488 m -402.747 516.606 l -3.023 w 0 G S -402.747 516.606 m -402.512 516.782 l -3.023 w 0 G S -402.512 516.782 m -402.276 516.959 l -3.023 w 0 G S -402.276 516.959 m -401.982 517.135 l -3.023 w 0 G S -401.982 517.135 m -401.747 517.312 l -3.023 w 0 G S -401.747 517.312 m -401.512 517.488 l -3.023 w 0 G S -401.512 517.488 m -401.747 517.665 l -3.023 w 0 G S -401.747 517.665 m -401.982 517.841 l -3.023 w 0 G S -401.982 517.841 m -402.218 518.018 l -3.023 w 0 G S -402.218 518.018 m -402.453 518.135 l -3.023 w 0 G S -402.453 518.135 m -402.688 518.312 l -3.023 w 0 G S -402.688 518.312 m -402.982 518.488 l -3.023 w 0 G S -402.982 518.488 m -403.218 518.665 l -3.023 w 0 G S -403.218 518.665 m -403.453 518.782 l -3.023 w 0 G S -403.453 518.782 m -403.688 518.959 l -3.023 w 0 G S -403.688 518.959 m -403.982 519.077 l -3.023 w 0 G S -403.982 519.077 m -404.218 519.253 l -3.023 w 0 G S -404.218 519.253 m -404.453 519.371 l -3.023 w 0 G S -404.453 519.371 m -404.747 519.488 l -3.023 w 0 G S -404.747 519.488 m -404.982 519.665 l -3.023 w 0 G S -404.982 519.665 m -405.276 519.782 l -3.023 w 0 G S -405.276 519.782 m -405.512 519.9 l -3.023 w 0 G S -405.512 519.9 m -405.806 520.018 l -3.023 w 0 G S -405.806 520.018 m -406.041 520.135 l -3.023 w 0 G S -406.041 520.135 m -406.335 520.253 l -3.023 w 0 G S -406.335 520.253 m -406.629 520.371 l -3.023 w 0 G S -406.629 520.371 m -406.865 520.488 l -3.023 w 0 G S -406.865 520.488 m -407.159 520.547 l -3.023 w 0 G S -407.159 520.547 m -407.453 520.665 l -3.023 w 0 G S -407.453 520.665 m -407.688 520.782 l -3.023 w 0 G S -407.688 520.782 m -407.982 520.841 l -3.023 w 0 G S -407.982 520.841 m -408.276 520.959 l -3.023 w 0 G S -408.276 520.959 m -408.571 521.018 l -3.023 w 0 G S -408.571 521.018 m -408.806 521.135 l -3.023 w 0 G S -408.806 521.135 m -409.1 521.194 l -3.023 w 0 G S -409.1 521.194 m -409.394 521.253 l -3.023 w 0 G S -409.394 521.253 m -409.688 521.371 l -3.023 w 0 G S -409.688 521.371 m -409.982 521.429 l -3.023 w 0 G S -409.982 521.429 m -410.276 521.488 l -3.023 w 0 G S -410.276 521.488 m -410.571 521.547 l -3.023 w 0 G S -410.571 521.547 m -410.806 521.606 l -3.023 w 0 G S -410.806 521.606 m -411.1 521.665 l -3.023 w 0 G S -411.1 521.665 m -411.394 521.724 l -3.023 w 0 G S -411.394 521.724 m -411.688 521.724 l -3.023 w 0 G S -411.688 521.724 m -411.982 521.782 l -3.023 w 0 G S -411.982 521.782 m -412.276 521.841 l -3.023 w 0 G S -412.276 521.841 m -412.571 521.841 l -3.023 w 0 G S -412.571 521.841 m -412.865 521.9 l -3.023 w 0 G S -412.865 521.9 m -413.159 521.9 l -3.023 w 0 G S -413.159 521.9 m -413.453 521.959 l -3.023 w 0 G S -413.453 521.959 m -413.747 521.959 l -3.023 w 0 G S -413.747 521.959 m -414.041 521.959 l -3.023 w 0 G S -414.041 521.959 m -414.335 521.959 l -3.023 w 0 G S -414.335 521.959 m -414.629 521.959 l -3.023 w 0 G S -414.629 521.959 m -414.923 521.959 l -3.023 w 0 G S -414.923 521.959 m -415.218 521.959 l -3.023 w 0 G S -415.218 521.959 m -415.512 521.959 l -3.023 w 0 G S -415.512 521.959 m -415.806 521.959 l -3.023 w 0 G S -415.806 521.959 m -416.1 521.959 l -3.023 w 0 G S -416.1 521.959 m -416.394 521.959 l -3.023 w 0 G S -416.394 521.959 m -416.688 521.9 l -3.023 w 0 G S -416.688 521.9 m -416.982 521.9 l -3.023 w 0 G S -416.982 521.9 m -417.276 521.9 l -3.023 w 0 G S -417.276 521.9 m -417.571 521.841 l -3.023 w 0 G S -417.571 521.841 m -417.865 521.782 l -3.023 w 0 G S -417.865 521.782 m -418.159 521.782 l -3.023 w 0 G S -418.159 521.782 m -418.453 521.724 l -3.023 w 0 G S -418.453 521.724 m -418.747 521.665 l -3.023 w 0 G S -418.747 521.665 m -419.041 521.606 l -3.023 w 0 G S -419.041 521.606 m -419.335 521.547 l -3.023 w 0 G S -419.335 521.547 m -419.571 521.488 l -3.023 w 0 G S -419.571 521.488 m -419.865 521.429 l -3.023 w 0 G S -419.865 521.429 m -420.159 521.371 l -3.023 w 0 G S -420.159 521.371 m -420.453 521.312 l -3.023 w 0 G S -420.453 521.312 m -420.747 521.253 l -3.023 w 0 G S -420.747 521.253 m -421.041 521.194 l -3.023 w 0 G S -421.041 521.194 m -421.276 521.077 l -3.023 w 0 G S -421.276 521.077 m -421.571 521.018 l -3.023 w 0 G S -421.571 521.018 m -421.865 520.9 l -3.023 w 0 G S -421.865 520.9 m -422.159 520.841 l -3.023 w 0 G S -422.159 520.841 m -422.453 520.724 l -3.023 w 0 G S -422.453 520.724 m -422.688 520.606 l -3.023 w 0 G S -422.688 520.606 m -422.982 520.547 l -3.023 w 0 G S -422.982 520.547 m -423.276 520.429 l -3.023 w 0 G S -423.276 520.429 m -423.512 520.312 l -3.023 w 0 G S -423.512 520.312 m -423.806 520.194 l -3.023 w 0 G S -423.806 520.194 m -424.041 520.077 l -3.023 w 0 G S -424.041 520.077 m -424.335 519.959 l -3.023 w 0 G S -424.335 519.959 m -424.629 519.841 l -3.023 w 0 G S -424.629 519.841 m -424.865 519.724 l -3.023 w 0 G S -424.865 519.724 m -425.1 519.606 l -3.023 w 0 G S -425.1 519.606 m -425.394 519.429 l -3.023 w 0 G S -425.394 519.429 m -425.629 519.312 l -3.023 w 0 G S -425.629 519.312 m -425.923 519.194 l -3.023 w 0 G S -425.923 519.194 m -426.159 519.018 l -3.023 w 0 G S -426.159 519.018 m -426.394 518.9 l -3.023 w 0 G S -426.394 518.9 m -426.688 518.724 l -3.023 w 0 G S -426.688 518.724 m -426.923 518.606 l -3.023 w 0 G S -426.923 518.606 m -427.159 518.429 l -3.023 w 0 G S -427.159 518.429 m -427.394 518.253 l -3.023 w 0 G S -427.394 518.253 m -427.688 518.077 l -3.023 w 0 G S -427.688 518.077 m -427.923 517.959 l -3.023 w 0 G S -427.923 517.959 m -428.159 517.782 l -3.023 w 0 G S -428.159 517.782 m -428.394 517.606 l -3.023 w 0 G S -428.394 517.606 m -428.629 517.429 l -3.023 w 0 G S -428.629 517.429 m -428.865 517.253 l -3.023 w 0 G S -428.865 517.253 m -429.1 517.077 l -3.023 w 0 G S -429.1 517.077 m -429.335 516.841 l -3.023 w 0 G S -429.335 516.841 m -429.512 516.665 l -3.023 w 0 G S -429.512 516.665 m -429.747 516.488 l -3.023 w 0 G S -429.747 516.488 m -429.982 516.312 l -3.023 w 0 G S -429.982 516.312 m -430.218 516.077 l -3.023 w 0 G S -430.218 516.077 m -430.394 515.9 l -3.023 w 0 G S -430.394 515.9 m -430.629 515.665 l -3.023 w 0 G S -430.629 515.665 m -430.806 515.488 l -3.023 w 0 G S -430.806 515.488 m -431.041 515.253 l -3.023 w 0 G S -431.041 515.253 m -431.218 515.077 l -3.023 w 0 G S -431.218 515.077 m -431.453 514.841 l -3.023 w 0 G S -431.453 514.841 m -431.629 514.665 l -3.023 w 0 G S -431.629 514.665 m -431.865 514.429 l -3.023 w 0 G S -431.865 514.429 m -432.041 514.194 l -3.023 w 0 G S -432.041 514.194 m -432.218 513.959 l -3.023 w 0 G S -432.218 513.959 m -432.394 513.724 l -3.023 w 0 G S -432.394 513.724 m -432.629 513.547 l -3.023 w 0 G S -432.629 513.547 m -432.806 513.312 l -3.023 w 0 G S -432.806 513.312 m -432.982 513.077 l -3.023 w 0 G S -432.982 513.077 m -433.159 512.841 l -3.023 w 0 G S -433.159 512.841 m -433.335 512.606 l -3.023 w 0 G S -433.335 512.606 m -433.453 512.371 l -3.023 w 0 G S -433.453 512.371 m -433.629 512.077 l -3.023 w 0 G S -433.629 512.077 m -433.806 511.841 l -3.023 w 0 G S -433.806 511.841 m -433.982 511.606 l -3.023 w 0 G S -433.982 511.606 m -434.1 511.371 l -3.023 w 0 G S -434.1 511.371 m -434.276 511.135 l -3.023 w 0 G S -434.276 511.135 m -434.453 510.841 l -3.023 w 0 G S -434.453 510.841 m -434.571 510.606 l -3.023 w 0 G S -434.571 510.606 m -434.747 510.371 l -3.023 w 0 G S -434.747 510.371 m -434.865 510.077 l -3.023 w 0 G S -434.865 510.077 m -434.982 509.841 l -3.023 w 0 G S -434.982 509.841 m -435.1 509.547 l -3.023 w 0 G S -435.1 509.547 m -435.276 509.312 l -3.023 w 0 G S -435.276 509.312 m -435.394 509.018 l -3.023 w 0 G S -435.394 509.018 m -435.512 508.782 l -3.023 w 0 G S -435.512 508.782 m -435.629 508.488 l -3.023 w 0 G S -435.629 508.488 m -435.747 508.253 l -3.023 w 0 G S -435.747 508.253 m -435.865 507.959 l -3.023 w 0 G S -435.865 507.959 m -435.982 507.665 l -3.023 w 0 G S -435.982 507.665 m -436.041 507.429 l -3.023 w 0 G S -436.041 507.429 m -436.159 507.135 l -3.023 w 0 G S -436.159 507.135 m -436.276 506.841 l -3.023 w 0 G S -436.276 506.841 m -436.335 506.606 l -3.023 w 0 G S -436.335 506.606 m -436.453 506.312 l -3.023 w 0 G S -436.453 506.312 m -436.571 506.018 l -3.023 w 0 G S -436.571 506.018 m -436.629 505.724 l -3.023 w 0 G S -436.629 505.724 m -436.688 505.429 l -3.023 w 0 G S -436.688 505.429 m -436.806 505.194 l -3.023 w 0 G S -436.806 505.194 m -436.865 504.9 l -3.023 w 0 G S -436.865 504.9 m -436.923 504.606 l -3.023 w 0 G S -436.923 504.606 m -436.982 504.312 l -3.023 w 0 G S -436.982 504.312 m -437.041 504.018 l -3.023 w 0 G S -437.041 504.018 m -437.1 503.724 l -3.023 w 0 G S -437.1 503.724 m -437.159 503.429 l -3.023 w 0 G S -437.159 503.429 m -437.218 503.135 l -3.023 w 0 G S -437.218 503.135 m -437.276 502.9 l -3.023 w 0 G S -437.276 502.9 m -437.276 502.606 l -3.023 w 0 G S -437.276 502.606 m -437.335 502.312 l -3.023 w 0 G S -437.335 502.312 m -437.394 502.018 l -3.023 w 0 G S -437.394 502.018 m -437.394 501.724 l -3.023 w 0 G S -437.394 501.724 m -437.453 501.429 l -3.023 w 0 G S -437.453 501.429 m -437.453 501.135 l -3.023 w 0 G S -437.453 501.135 m -437.453 500.841 l -3.023 w 0 G S -437.453 500.841 m -437.512 500.547 l -3.023 w 0 G S -437.512 500.547 m -437.512 500.253 l -3.023 w 0 G S -437.512 500.253 m -437.512 499.959 l -3.023 w 0 G S -437.512 499.959 m -437.512 499.665 l -3.023 w 0 G S -437.512 499.665 m -437.512 499.371 l -3.023 w 0 G S -437.512 499.371 m -437.512 499.077 l -3.023 w 0 G S -437.512 499.077 m -437.512 498.782 l -3.023 w 0 G S -437.512 498.782 m -437.512 498.488 l -3.023 w 0 G S -437.512 498.488 m -437.453 498.194 l -3.023 w 0 G S -437.453 498.194 m -437.453 497.9 l -3.023 w 0 G S -437.453 497.9 m -437.453 497.606 l -3.023 w 0 G S -437.453 497.606 m -437.394 497.312 l -3.023 w 0 G S -437.394 497.312 m -437.394 497.018 l -3.023 w 0 G S -437.394 497.018 m -437.335 496.724 l -3.023 w 0 G S -437.335 496.724 m -437.276 496.429 l -3.023 w 0 G S -437.276 496.429 m -437.276 496.135 l -3.023 w 0 G S -437.276 496.135 m -437.218 495.841 l -3.023 w 0 G S -437.218 495.841 m -437.159 495.547 l -3.023 w 0 G S -437.159 495.547 m -437.1 495.253 l -3.023 w 0 G S -437.1 495.253 m -437.041 494.959 l -3.023 w 0 G S -437.041 494.959 m -436.982 494.665 l -3.023 w 0 G S -436.982 494.665 m -436.923 494.429 l -3.023 w 0 G S -436.923 494.429 m -436.865 494.135 l -3.023 w 0 G S -436.865 494.135 m -436.806 493.841 l -3.023 w 0 G S -436.806 493.841 m -436.688 493.547 l -3.023 w 0 G S -436.688 493.547 m -436.629 493.253 l -3.023 w 0 G S -436.629 493.253 m -436.571 492.959 l -3.023 w 0 G S -436.571 492.959 m -436.453 492.724 l -3.023 w 0 G S -436.453 492.724 m -436.394 492.429 l -3.023 w 0 G S -436.394 492.429 m -436.276 492.135 l -3.023 w 0 G S -436.276 492.135 m -436.159 491.841 l -3.023 w 0 G S -436.159 491.841 m -436.1 491.606 l -3.023 w 0 G S -436.1 491.606 m -435.982 491.312 l -3.023 w 0 G S -435.982 491.312 m -435.865 491.018 l -3.023 w 0 G S -435.865 491.018 m -435.747 490.782 l -3.023 w 0 G S -435.747 490.782 m -435.629 490.488 l -3.023 w 0 G S -435.629 490.488 m -435.512 490.253 l -3.023 w 0 G S -435.512 490.253 m -435.394 489.959 l -3.023 w 0 G S -435.394 489.959 m -435.276 489.724 l -3.023 w 0 G S -435.276 489.724 m -435.159 489.429 l -3.023 w 0 G S -435.159 489.429 m -434.982 489.194 l -3.023 w 0 G S -434.982 489.194 m -434.865 488.9 l -3.023 w 0 G S -434.865 488.9 m -434.747 488.665 l -3.023 w 0 G S -434.747 488.665 m -434.571 488.429 l -3.023 w 0 G S -434.571 488.429 m -434.453 488.135 l -3.023 w 0 G S -434.453 488.135 m -434.276 487.9 l -3.023 w 0 G S -434.276 487.9 m -434.159 487.665 l -3.023 w 0 G S -434.159 487.665 m -433.982 487.371 l -3.023 w 0 G S -433.982 487.371 m -433.806 487.135 l -3.023 w 0 G S -433.806 487.135 m -433.688 486.9 l -3.023 w 0 G S -433.688 486.9 m -433.512 486.665 l -3.023 w 0 G S -433.512 486.665 m -433.335 486.429 l -3.023 w 0 G S -433.335 486.429 m -433.159 486.194 l -3.023 w 0 G S -433.159 486.194 m -432.982 485.959 l -3.023 w 0 G S -432.982 485.959 m -432.806 485.724 l -3.023 w 0 G S -432.806 485.724 m -432.629 485.488 l -3.023 w 0 G S -432.629 485.488 m -432.453 485.253 l -3.023 w 0 G S -432.453 485.253 m -432.276 485.018 l -3.023 w 0 G S -432.276 485.018 m -432.041 484.782 l -3.023 w 0 G S -432.041 484.782 m -431.865 484.606 l -3.023 w 0 G S -431.865 484.606 m -431.688 484.371 l -3.023 w 0 G S -431.688 484.371 m -431.453 484.135 l -3.023 w 0 G S -431.453 484.135 m -431.276 483.959 l -3.023 w 0 G S -431.276 483.959 m -431.041 483.724 l -3.023 w 0 G S -431.041 483.724 m -430.865 483.488 l -3.023 w 0 G S -430.865 483.488 m -430.629 483.312 l -3.023 w 0 G S -430.629 483.312 m -430.453 483.077 l -3.023 w 0 G S -430.453 483.077 m -430.218 482.9 l -3.023 w 0 G S -430.218 482.9 m -429.982 482.724 l -3.023 w 0 G S -429.982 482.724 m -429.806 482.488 l -3.023 w 0 G S -429.806 482.488 m -429.571 482.312 l -3.023 w 0 G S -429.571 482.312 m -429.335 482.135 l -3.023 w 0 G S -429.335 482.135 m -429.1 481.959 l -3.023 w 0 G S -429.1 481.959 m -428.865 481.782 l -3.023 w 0 G S -428.865 481.782 m -428.629 481.606 l -3.023 w 0 G S -428.629 481.606 m -428.394 481.429 l -3.023 w 0 G S -428.394 481.429 m -428.159 481.253 l -3.023 w 0 G S -428.159 481.253 m -427.923 481.077 l -3.023 w 0 G S -427.923 481.077 m -427.688 480.9 l -3.023 w 0 G S -427.688 480.9 m -427.453 480.724 l -3.023 w 0 G S -427.453 480.724 m -427.218 480.547 l -3.023 w 0 G S -427.218 480.547 m -426.923 480.429 l -3.023 w 0 G S -426.923 480.429 m -426.688 480.253 l -3.023 w 0 G S -426.688 480.253 m -426.453 480.135 l -3.023 w 0 G S -426.453 480.135 m -426.218 479.959 l -3.023 w 0 G S -426.218 479.959 m -425.923 479.841 l -3.023 w 0 G S -425.923 479.841 m -425.688 479.665 l -3.023 w 0 G S -425.688 479.665 m -425.394 479.547 l -3.023 w 0 G S -425.394 479.547 m -425.159 479.429 l -3.023 w 0 G S -425.159 479.429 m -424.923 479.253 l -3.023 w 0 G S -424.923 479.253 m -424.629 479.135 l -3.023 w 0 G S -424.629 479.135 m -424.335 479.018 l -3.023 w 0 G S -424.335 479.018 m -424.1 478.9 l -3.023 w 0 G S -424.1 478.9 m -423.806 478.782 l -3.023 w 0 G S -423.806 478.782 m -423.571 478.665 l -3.023 w 0 G S -423.571 478.665 m -423.276 478.547 l -3.023 w 0 G S -423.276 478.547 m -422.982 478.429 l -3.023 w 0 G S -422.982 478.429 m -422.747 478.371 l -3.023 w 0 G S -422.747 478.371 m -422.453 478.253 l -3.023 w 0 G S -422.453 478.253 m -422.159 478.135 l -3.023 w 0 G S -422.159 478.135 m -421.923 478.077 l -3.023 w 0 G S -421.923 478.077 m -421.629 477.959 l -3.023 w 0 G S -421.629 477.959 m -421.335 477.9 l -3.023 w 0 G S -421.335 477.9 m -421.041 477.841 l -3.023 w 0 G S -421.041 477.841 m -420.747 477.724 l -3.023 w 0 G S -420.747 477.724 m -420.512 477.665 l -3.023 w 0 G S -420.512 477.665 m -420.218 477.606 l -3.023 w 0 G S -420.218 477.606 m -419.923 477.547 l -3.023 w 0 G S -419.923 477.547 m -419.629 477.488 l -3.023 w 0 G S -419.629 477.488 m -419.335 477.429 l -3.023 w 0 G S -419.335 477.429 m -419.041 477.371 l -3.023 w 0 G S -419.041 477.371 m -418.747 477.312 l -3.023 w 0 G S -418.747 477.312 m -418.453 477.253 l -3.023 w 0 G S -418.453 477.253 m -418.159 477.194 l -3.023 w 0 G S -418.159 477.194 m -417.865 477.194 l -3.023 w 0 G S -417.865 477.194 m -417.571 477.135 l -3.023 w 0 G S -417.571 477.135 m -417.276 477.077 l -3.023 w 0 G S -417.276 477.077 m -417.041 477.077 l -3.023 w 0 G S -417.041 477.077 m -416.747 477.077 l -3.023 w 0 G S -416.747 477.077 m -416.453 477.018 l -3.023 w 0 G S -416.453 477.018 m -416.159 477.018 l -3.023 w 0 G S -416.159 477.018 m -415.865 477.018 l -3.023 w 0 G S -415.865 477.018 m -415.571 477.018 l -3.023 w 0 G S -415.571 477.018 m -415.276 477.018 l -3.023 w 0 G S -415.276 477.018 m -414.982 477.018 l -3.023 w 0 G S -414.982 477.018 m -414.688 477.018 l -3.023 w 0 G S -414.688 477.018 m -414.394 477.018 l -3.023 w 0 G S -414.394 477.018 m -414.1 477.018 l -3.023 w 0 G S -414.1 477.018 m -413.806 477.018 l -3.023 w 0 G S -413.806 477.018 m -413.512 477.018 l -3.023 w 0 G S -413.512 477.018 m -413.218 477.077 l -3.023 w 0 G S -413.218 477.077 m -412.923 477.077 l -3.023 w 0 G S -412.923 477.077 m -412.629 477.135 l -3.023 w 0 G S -412.629 477.135 m -412.335 477.135 l -3.023 w 0 G S -412.335 477.135 m -412.041 477.194 l -3.023 w 0 G S -412.041 477.194 m -411.747 477.253 l -3.023 w 0 G S -411.747 477.253 m -411.453 477.253 l -3.023 w 0 G S -411.453 477.253 m -411.159 477.312 l -3.023 w 0 G S -411.159 477.312 m -410.865 477.371 l -3.023 w 0 G S -410.865 477.371 m -410.571 477.429 l -3.023 w 0 G S -410.571 477.429 m -410.276 477.488 l -3.023 w 0 G S -410.276 477.488 m -409.982 477.547 l -3.023 w 0 G S -409.982 477.547 m -409.747 477.606 l -3.023 w 0 G S -409.747 477.606 m -409.453 477.665 l -3.023 w 0 G S -409.453 477.665 m -409.159 477.782 l -3.023 w 0 G S -409.159 477.782 m -408.865 477.841 l -3.023 w 0 G S -408.865 477.841 m -408.571 477.9 l -3.023 w 0 G S -408.571 477.9 m -408.276 478.018 l -3.023 w 0 G S -408.276 478.018 m -408.041 478.077 l -3.023 w 0 G S -408.041 478.077 m -407.747 478.194 l -3.023 w 0 G S -407.747 478.194 m -407.453 478.312 l -3.023 w 0 G S -407.453 478.312 m -407.218 478.371 l -3.023 w 0 G S -407.218 478.371 m -406.923 478.488 l -3.023 w 0 G S -406.923 478.488 m -406.629 478.606 l -3.023 w 0 G S -406.629 478.606 m -406.394 478.724 l -3.023 w 0 G S -406.394 478.724 m -406.1 478.841 l -3.023 w 0 G S -406.1 478.841 m -405.806 478.959 l -3.023 w 0 G S -405.806 478.959 m -405.571 479.077 l -3.023 w 0 G S -405.571 479.077 m -405.276 479.194 l -3.023 w 0 G S -405.276 479.194 m -405.041 479.312 l -3.023 w 0 G S -405.041 479.312 m -404.747 479.429 l -3.023 w 0 G S -404.747 479.429 m -404.512 479.606 l -3.023 w 0 G S -404.512 479.606 m -404.276 479.724 l -3.023 w 0 G S -404.276 479.724 m -403.982 479.9 l -3.023 w 0 G S -403.982 479.9 m -403.747 480.018 l -3.023 w 0 G S -403.747 480.018 m -403.512 480.194 l -3.023 w 0 G S -403.512 480.194 m -403.218 480.312 l -3.023 w 0 G S -403.218 480.312 m -402.982 480.488 l -3.023 w 0 G S -402.982 480.488 m -402.747 480.606 l -3.023 w 0 G S -402.747 480.606 m -402.512 480.782 l -3.023 w 0 G S -402.512 480.782 m -402.276 480.959 l -3.023 w 0 G S -402.276 480.959 m -401.982 481.135 l -3.023 w 0 G S -401.982 481.135 m -401.747 481.312 l -3.023 w 0 G S -401.747 481.312 m -401.512 481.488 l -3.023 w 0 G S -401.512 481.488 m -401.688 481.665 l -3.023 w 0 G S -401.688 481.665 m -401.923 481.9 l -3.023 w 0 G S -401.923 481.9 m -402.159 482.077 l -3.023 w 0 G S -402.159 482.077 m -402.335 482.312 l -3.023 w 0 G S -402.335 482.312 m -402.571 482.488 l -3.023 w 0 G S -402.571 482.488 m -402.806 482.665 l -3.023 w 0 G S -402.806 482.665 m -403.041 482.841 l -3.023 w 0 G S -403.041 482.841 m -403.276 483.077 l -3.023 w 0 G S -403.276 483.077 m -403.512 483.253 l -3.023 w 0 G S -403.512 483.253 m -403.747 483.429 l -3.023 w 0 G S -403.747 483.429 m -403.982 483.606 l -3.023 w 0 G S -403.982 483.606 m -404.218 483.782 l -3.023 w 0 G S -404.218 483.782 m -404.453 483.959 l -3.023 w 0 G S -404.453 483.959 m -404.688 484.077 l -3.023 w 0 G S -404.688 484.077 m -404.923 484.253 l -3.023 w 0 G S -404.923 484.253 m -405.159 484.429 l -3.023 w 0 G S -405.159 484.429 m -405.453 484.547 l -3.023 w 0 G S -405.453 484.547 m -405.688 484.724 l -3.023 w 0 G S -405.688 484.724 m -405.923 484.9 l -3.023 w 0 G S -405.923 484.9 m -406.159 485.018 l -3.023 w 0 G S -406.159 485.018 m -406.453 485.135 l -3.023 w 0 G S -406.453 485.135 m -406.688 485.312 l -3.023 w 0 G S -406.688 485.312 m -406.982 485.429 l -3.023 w 0 G S -406.982 485.429 m -407.218 485.547 l -3.023 w 0 G S -407.218 485.547 m -407.512 485.665 l -3.023 w 0 G S -407.512 485.665 m -407.747 485.841 l -3.023 w 0 G S -407.747 485.841 m -408.041 485.959 l -3.023 w 0 G S -408.041 485.959 m -408.276 486.077 l -3.023 w 0 G S -408.276 486.077 m -408.571 486.135 l -3.023 w 0 G S -408.571 486.135 m -408.865 486.253 l -3.023 w 0 G S -408.865 486.253 m -409.1 486.371 l -3.023 w 0 G S -409.1 486.371 m -409.394 486.488 l -3.023 w 0 G S -409.394 486.488 m -409.688 486.547 l -3.023 w 0 G S -409.688 486.547 m -409.982 486.665 l -3.023 w 0 G S -409.982 486.665 m -410.218 486.724 l -3.023 w 0 G S -410.218 486.724 m -410.512 486.841 l -3.023 w 0 G S -410.512 486.841 m -410.806 486.9 l -3.023 w 0 G S -410.806 486.9 m -411.1 487.018 l -3.023 w 0 G S -411.1 487.018 m -411.394 487.077 l -3.023 w 0 G S -411.394 487.077 m -411.629 487.135 l -3.023 w 0 G S -411.629 487.135 m -411.923 487.194 l -3.023 w 0 G S -411.923 487.194 m -412.218 487.253 l -3.023 w 0 G S -412.218 487.253 m -412.512 487.312 l -3.023 w 0 G S -412.512 487.312 m -412.806 487.371 l -3.023 w 0 G S -412.806 487.371 m -413.1 487.429 l -3.023 w 0 G S -413.1 487.429 m -413.394 487.488 l -3.023 w 0 G S -413.394 487.488 m -413.688 487.488 l -3.023 w 0 G S -413.688 487.488 m -413.982 487.547 l -3.023 w 0 G S -413.982 487.547 m -414.276 487.606 l -3.023 w 0 G S -414.276 487.606 m -414.571 487.606 l -3.023 w 0 G S -414.571 487.606 m -414.865 487.665 l -3.023 w 0 G S -414.865 487.665 m -415.159 487.665 l -3.023 w 0 G S -415.159 487.665 m -415.453 487.665 l -3.023 w 0 G S -415.453 487.665 m -415.747 487.665 l -3.023 w 0 G S -415.747 487.665 m -416.041 487.724 l -3.023 w 0 G S -416.041 487.724 m -416.335 487.724 l -3.023 w 0 G S -416.335 487.724 m -416.629 487.724 l -3.023 w 0 G S -416.629 487.724 m -416.923 487.724 l -3.023 w 0 G S -416.923 487.724 m -417.218 487.665 l -3.023 w 0 G S -417.218 487.665 m -417.512 487.665 l -3.023 w 0 G S -417.512 487.665 m -417.806 487.665 l -3.023 w 0 G S -417.806 487.665 m -418.1 487.665 l -3.023 w 0 G S -418.1 487.665 m -418.394 487.606 l -3.023 w 0 G S -418.394 487.606 m -418.688 487.606 l -3.023 w 0 G S -418.688 487.606 m -418.982 487.547 l -3.023 w 0 G S -418.982 487.547 m -419.276 487.547 l -3.023 w 0 G S -419.276 487.547 m -419.571 487.488 l -3.023 w 0 G S -419.571 487.488 m -419.865 487.429 l -3.023 w 0 G S -419.865 487.429 m -420.1 487.371 l -3.023 w 0 G S -420.1 487.371 m -420.394 487.312 l -3.023 w 0 G S -420.394 487.312 m -420.688 487.312 l -3.023 w 0 G S -420.688 487.312 m -420.982 487.194 l -3.023 w 0 G S -420.982 487.194 m -421.276 487.135 l -3.023 w 0 G S -421.276 487.135 m -421.571 487.077 l -3.023 w 0 G S -421.571 487.077 m -421.865 487.018 l -3.023 w 0 G S -421.865 487.018 m -422.159 486.959 l -3.023 w 0 G S -422.159 486.959 m -422.394 486.841 l -3.023 w 0 G S -422.394 486.841 m -422.688 486.782 l -3.023 w 0 G S -422.688 486.782 m -422.982 486.665 l -3.023 w 0 G S -422.982 486.665 m -423.276 486.606 l -3.023 w 0 G S -423.276 486.606 m -423.512 486.488 l -3.023 w 0 G S -423.512 486.488 m -423.806 486.429 l -3.023 w 0 G S -423.806 486.429 m -424.1 486.312 l -3.023 w 0 G S -424.1 486.312 m -424.394 486.194 l -3.023 w 0 G S -424.394 486.194 m -424.629 486.077 l -3.023 w 0 G S -424.629 486.077 m -424.923 485.959 l -3.023 w 0 G S -424.923 485.959 m -425.159 485.841 l -3.023 w 0 G S -425.159 485.841 m -425.453 485.724 l -3.023 w 0 G S -425.453 485.724 m -425.688 485.606 l -3.023 w 0 G S -425.688 485.606 m -425.982 485.488 l -3.023 w 0 G S -425.982 485.488 m -426.218 485.312 l -3.023 w 0 G S -426.218 485.312 m -426.512 485.194 l -3.023 w 0 G S -426.512 485.194 m -426.747 485.077 l -3.023 w 0 G S -426.747 485.077 m -427.041 484.9 l -3.023 w 0 G S -427.041 484.9 m -427.276 484.782 l -3.023 w 0 G S -427.276 484.782 m -427.512 484.606 l -3.023 w 0 G S -427.512 484.606 m -427.747 484.488 l -3.023 w 0 G S -427.747 484.488 m -428.041 484.312 l -3.023 w 0 G S -428.041 484.312 m -428.276 484.135 l -3.023 w 0 G S -428.276 484.135 m -428.512 483.959 l -3.023 w 0 G S -428.512 483.959 m -428.747 483.841 l -3.023 w 0 G S -428.747 483.841 m -428.982 483.665 l -3.023 w 0 G S -428.982 483.665 m -429.218 483.488 l -3.023 w 0 G S -429.218 483.488 m -429.453 483.312 l -3.023 w 0 G S -429.453 483.312 m -429.688 483.135 l -3.023 w 0 G S -429.688 483.135 m -429.923 482.9 l -3.023 w 0 G S -429.923 482.9 m -430.159 482.724 l -3.023 w 0 G S -430.159 482.724 m -430.394 482.547 l -3.023 w 0 G S -430.394 482.547 m -430.571 482.371 l -3.023 w 0 G S -430.571 482.371 m -430.806 482.135 l -3.023 w 0 G S -430.806 482.135 m -431.041 481.959 l -3.023 w 0 G S -431.041 481.959 m -431.218 481.724 l -3.023 w 0 G S -431.218 481.724 m -431.453 481.547 l -3.023 w 0 G S -431.453 481.547 m -431.688 481.312 l -3.023 w 0 G S -431.688 481.312 m -431.865 481.135 l -3.023 w 0 G S -431.865 481.135 m -432.041 480.9 l -3.023 w 0 G S -432.041 480.9 m -432.276 480.665 l -3.023 w 0 G S -432.276 480.665 m -432.453 480.488 l -3.023 w 0 G S -432.453 480.488 m -432.629 480.253 l -3.023 w 0 G S -432.629 480.253 m -432.865 480.018 l -3.023 w 0 G S -432.865 480.018 m -433.041 479.782 l -3.023 w 0 G S -433.041 479.782 m -433.218 479.547 l -3.023 w 0 G S -433.218 479.547 m -433.394 479.312 l -3.023 w 0 G S -433.394 479.312 m -433.571 479.077 l -3.023 w 0 G S -433.571 479.077 m -433.747 478.841 l -3.023 w 0 G S -433.747 478.841 m -433.923 478.606 l -3.023 w 0 G S -433.923 478.606 m -434.1 478.371 l -3.023 w 0 G S -434.1 478.371 m -434.218 478.135 l -3.023 w 0 G S -434.218 478.135 m -434.394 477.9 l -3.023 w 0 G S -434.394 477.9 m -434.571 477.665 l -3.023 w 0 G S -434.571 477.665 m -434.688 477.371 l -3.023 w 0 G S -434.688 477.371 m -434.865 477.135 l -3.023 w 0 G S -434.865 477.135 m -434.982 476.9 l -3.023 w 0 G S -434.982 476.9 m -435.159 476.606 l -3.023 w 0 G S -435.159 476.606 m -435.276 476.371 l -3.023 w 0 G S -435.276 476.371 m -435.394 476.077 l -3.023 w 0 G S -435.394 476.077 m -435.571 475.841 l -3.023 w 0 G S -435.571 475.841 m -435.688 475.547 l -3.023 w 0 G S -435.688 475.547 m -435.806 475.312 l -3.023 w 0 G S -435.806 475.312 m -435.923 475.018 l -3.023 w 0 G S -435.923 475.018 m -436.041 474.782 l -3.023 w 0 G S -436.041 474.782 m -436.159 474.488 l -3.023 w 0 G S -436.159 474.488 m -436.276 474.194 l -3.023 w 0 G S -436.276 474.194 m -436.394 473.959 l -3.023 w 0 G S -436.394 473.959 m -436.453 473.665 l -3.023 w 0 G S -436.453 473.665 m -436.571 473.371 l -3.023 w 0 G S -436.571 473.371 m -436.688 473.135 l -3.023 w 0 G S -436.688 473.135 m -436.747 472.841 l -3.023 w 0 G S -436.747 472.841 m -436.865 472.547 l -3.023 w 0 G S -436.865 472.547 m -436.923 472.253 l -3.023 w 0 G S -436.923 472.253 m -436.982 471.959 l -3.023 w 0 G S -436.982 471.959 m -437.1 471.724 l -3.023 w 0 G S -437.1 471.724 m -437.159 471.429 l -3.023 w 0 G S -437.159 471.429 m -437.218 471.135 l -3.023 w 0 G S -437.218 471.135 m -437.276 470.841 l -3.023 w 0 G S -437.276 470.841 m -437.335 470.547 l -3.023 w 0 G S -437.335 470.547 m -437.394 470.253 l -3.023 w 0 G S -437.394 470.253 m -437.453 469.959 l -3.023 w 0 G S -437.453 469.959 m -437.512 469.665 l -3.023 w 0 G S -437.512 469.665 m -437.512 469.371 l -3.023 w 0 G S -437.512 469.371 m -437.571 469.077 l -3.023 w 0 G S -437.571 469.077 m -437.571 468.782 l -3.023 w 0 G S -437.571 468.782 m -437.629 468.488 l -3.023 w 0 G S -437.629 468.488 m -437.629 468.194 l -3.023 w 0 G S -437.629 468.194 m -437.688 467.9 l -3.023 w 0 G S -437.688 467.9 m -437.688 467.665 l -3.023 w 0 G S -437.688 467.665 m -437.688 467.371 l -3.023 w 0 G S -437.688 467.371 m -437.688 467.077 l -3.023 w 0 G S -437.688 467.077 m -437.747 466.782 l -3.023 w 0 G S -437.747 466.782 m -437.747 466.488 l -3.023 w 0 G S -437.747 466.488 m -437.747 466.194 l -3.023 w 0 G S -437.747 466.194 m -437.688 465.9 l -3.023 w 0 G S -437.688 465.9 m -437.688 465.606 l -3.023 w 0 G S -437.688 465.606 m -437.688 465.312 l -3.023 w 0 G S -437.688 465.312 m -437.688 465.018 l -3.023 w 0 G S -437.688 465.018 m -437.629 464.724 l -3.023 w 0 G S -437.629 464.724 m -437.629 464.429 l -3.023 w 0 G S -437.629 464.429 m -437.571 464.135 l -3.023 w 0 G S -437.571 464.135 m -437.571 463.841 l -3.023 w 0 G S -437.571 463.841 m -437.512 463.547 l -3.023 w 0 G S -437.512 463.547 m -437.453 463.253 l -3.023 w 0 G S -437.453 463.253 m -437.453 462.959 l -3.023 w 0 G S -437.453 462.959 m -437.394 462.665 l -3.023 w 0 G S -437.394 462.665 m -437.335 462.371 l -3.023 w 0 G S -437.335 462.371 m -437.276 462.077 l -3.023 w 0 G S -437.276 462.077 m -437.218 461.782 l -3.023 w 0 G S -437.218 461.782 m -437.159 461.488 l -3.023 w 0 G S -437.159 461.488 m -437.041 461.194 l -3.023 w 0 G S -437.041 461.194 m -436.982 460.959 l -3.023 w 0 G S -436.982 460.959 m -436.923 460.665 l -3.023 w 0 G S -436.923 460.665 m -436.806 460.371 l -3.023 w 0 G S -436.806 460.371 m -436.747 460.077 l -3.023 w 0 G S -436.747 460.077 m -436.629 459.782 l -3.023 w 0 G S -436.629 459.782 m -436.571 459.547 l -3.023 w 0 G S -436.571 459.547 m -436.453 459.253 l -3.023 w 0 G S -436.453 459.253 m -436.335 458.959 l -3.023 w 0 G S -436.335 458.959 m -436.218 458.724 l -3.023 w 0 G S -436.218 458.724 m -436.159 458.429 l -3.023 w 0 G S -436.159 458.429 m -436.041 458.135 l -3.023 w 0 G S -436.041 458.135 m -435.923 457.9 l -3.023 w 0 G S -435.923 457.9 m -435.806 457.606 l -3.023 w 0 G S -435.806 457.606 m -435.629 457.371 l -3.023 w 0 G S -435.629 457.371 m -435.512 457.077 l -3.023 w 0 G S -435.512 457.077 m -435.394 456.841 l -3.023 w 0 G S -435.394 456.841 m -435.276 456.547 l -3.023 w 0 G S -435.276 456.547 m -435.1 456.312 l -3.023 w 0 G S -435.1 456.312 m -434.982 456.077 l -3.023 w 0 G S -434.982 456.077 m -434.806 455.782 l -3.023 w 0 G S -434.806 455.782 m -434.688 455.547 l -3.023 w 0 G S -434.688 455.547 m -434.512 455.312 l -3.023 w 0 G S -434.512 455.312 m -434.394 455.018 l -3.023 w 0 G S -434.394 455.018 m -434.218 454.782 l -3.023 w 0 G S -434.218 454.782 m -434.041 454.547 l -3.023 w 0 G S -434.041 454.547 m -433.865 454.312 l -3.023 w 0 G S -433.865 454.312 m -433.688 454.077 l -3.023 w 0 G S -433.688 454.077 m -433.512 453.841 l -3.023 w 0 G S -433.512 453.841 m -433.335 453.606 l -3.023 w 0 G S -433.335 453.606 m -433.159 453.371 l -3.023 w 0 G S -433.159 453.371 m -432.982 453.135 l -3.023 w 0 G S -432.982 453.135 m -432.806 452.9 l -3.023 w 0 G S -432.806 452.9 m -432.629 452.665 l -3.023 w 0 G S -432.629 452.665 m -432.394 452.429 l -3.023 w 0 G S -432.394 452.429 m -432.218 452.253 l -3.023 w 0 G S -432.218 452.253 m -432.041 452.018 l -3.023 w 0 G S -432.041 452.018 m -431.806 451.782 l -3.023 w 0 G S -431.806 451.782 m -431.629 451.606 l -3.023 w 0 G S -431.629 451.606 m -431.394 451.371 l -3.023 w 0 G S -431.394 451.371 m -431.218 451.194 l -3.023 w 0 G S -431.218 451.194 m -430.982 450.959 l -3.023 w 0 G S -430.982 450.959 m -430.747 450.782 l -3.023 w 0 G S -430.747 450.782 m -430.571 450.606 l -3.023 w 0 G S -430.571 450.606 m -430.335 450.371 l -3.023 w 0 G S -430.335 450.371 m -430.1 450.194 l -3.023 w 0 G S -430.1 450.194 m -429.865 450.018 l -3.023 w 0 G S -429.865 450.018 m -429.629 449.841 l -3.023 w 0 G S -429.629 449.841 m -429.394 449.665 l -3.023 w 0 G S -429.394 449.665 m -429.159 449.488 l -3.023 w 0 G S -429.159 449.488 m -428.923 449.312 l -3.023 w 0 G S -428.923 449.312 m -428.688 449.135 l -3.023 w 0 G S -428.688 449.135 m -428.453 448.959 l -3.023 w 0 G S -428.453 448.959 m -428.218 448.782 l -3.023 w 0 G S -428.218 448.782 m -427.982 448.665 l -3.023 w 0 G S -427.982 448.665 m -427.747 448.488 l -3.023 w 0 G S -427.747 448.488 m -427.453 448.312 l -3.023 w 0 G S -427.453 448.312 m -427.218 448.194 l -3.023 w 0 G S -427.218 448.194 m -426.982 448.018 l -3.023 w 0 G S -426.982 448.018 m -426.688 447.9 l -3.023 w 0 G S -426.688 447.9 m -426.453 447.724 l -3.023 w 0 G S -426.453 447.724 m -426.218 447.606 l -3.023 w 0 G S -426.218 447.606 m -425.923 447.488 l -3.023 w 0 G S -425.923 447.488 m -425.688 447.371 l -3.023 w 0 G S -425.688 447.371 m -425.394 447.253 l -3.023 w 0 G S -425.394 447.253 m -425.1 447.077 l -3.023 w 0 G S -425.1 447.077 m -424.865 446.959 l -3.023 w 0 G S -424.865 446.959 m -424.571 446.9 l -3.023 w 0 G S -424.571 446.9 m -424.335 446.782 l -3.023 w 0 G S -424.335 446.782 m -424.041 446.665 l -3.023 w 0 G S -424.041 446.665 m -423.747 446.547 l -3.023 w 0 G S -423.747 446.547 m -423.512 446.429 l -3.023 w 0 G S -423.512 446.429 m -423.218 446.371 l -3.023 w 0 G S -423.218 446.371 m -422.923 446.253 l -3.023 w 0 G S -422.923 446.253 m -422.629 446.194 l -3.023 w 0 G S -422.629 446.194 m -422.335 446.077 l -3.023 w 0 G S -422.335 446.077 m -422.1 446.018 l -3.023 w 0 G S -422.1 446.018 m -421.806 445.959 l -3.023 w 0 G S -421.806 445.959 m -421.512 445.9 l -3.023 w 0 G S -421.512 445.9 m -421.218 445.782 l -3.023 w 0 G S -421.218 445.782 m -420.923 445.724 l -3.023 w 0 G S -420.923 445.724 m -420.629 445.665 l -3.023 w 0 G S -420.629 445.665 m -420.335 445.606 l -3.023 w 0 G S -420.335 445.606 m -420.041 445.547 l -3.023 w 0 G S -420.041 445.547 m -419.806 445.547 l -3.023 w 0 G S -419.806 445.547 m -419.512 445.488 l -3.023 w 0 G S -419.512 661.488 m -419.806 661.429 l -3.023 w 0 G S -419.806 661.429 m -420.1 661.371 l -3.023 w 0 G S -420.1 661.371 m -420.394 661.371 l -3.023 w 0 G S -420.394 661.371 m -420.688 661.312 l -3.023 w 0 G S -420.688 661.312 m -420.982 661.253 l -3.023 w 0 G S -420.982 661.253 m -421.218 661.194 l -3.023 w 0 G S -421.218 661.194 m -421.512 661.077 l -3.023 w 0 G S -421.512 661.077 m -421.806 661.018 l -3.023 w 0 G S -421.806 661.018 m -422.1 660.959 l -3.023 w 0 G S -422.1 660.959 m -422.394 660.9 l -3.023 w 0 G S -422.394 660.9 m -422.688 660.782 l -3.023 w 0 G S -422.688 660.782 m -422.923 660.724 l -3.023 w 0 G S -422.923 660.724 m -423.218 660.606 l -3.023 w 0 G S -423.218 660.606 m -423.512 660.488 l -3.023 w 0 G S -423.512 660.488 m -423.806 660.429 l -3.023 w 0 G S -423.806 660.429 m -424.041 660.312 l -3.023 w 0 G S -424.041 660.312 m -424.335 660.194 l -3.023 w 0 G S -424.335 660.194 m -424.629 660.077 l -3.023 w 0 G S -424.629 660.077 m -424.865 659.959 l -3.023 w 0 G S -424.865 659.959 m -425.159 659.841 l -3.023 w 0 G S -425.159 659.841 m -425.394 659.724 l -3.023 w 0 G S -425.394 659.724 m -425.688 659.606 l -3.023 w 0 G S -425.688 659.606 m -425.923 659.488 l -3.023 w 0 G S -425.923 659.488 m -426.218 659.371 l -3.023 w 0 G S -426.218 659.371 m -426.453 659.194 l -3.023 w 0 G S -426.453 659.194 m -426.747 659.077 l -3.023 w 0 G S -426.747 659.077 m -426.982 658.959 l -3.023 w 0 G S -426.982 658.959 m -427.218 658.782 l -3.023 w 0 G S -427.218 658.782 m -427.512 658.665 l -3.023 w 0 G S -427.512 658.665 m -427.747 658.488 l -3.023 w 0 G S -427.747 658.488 m -427.982 658.312 l -3.023 w 0 G S -427.982 658.312 m -428.218 658.194 l -3.023 w 0 G S -428.218 658.194 m -428.453 658.018 l -3.023 w 0 G S -428.453 658.018 m -428.747 657.841 l -3.023 w 0 G S -428.747 657.841 m -428.982 657.665 l -3.023 w 0 G S -428.982 657.665 m -429.218 657.488 l -3.023 w 0 G S -429.218 657.488 m -429.453 657.312 l -3.023 w 0 G S -429.453 657.312 m -429.688 657.135 l -3.023 w 0 G S -429.688 657.135 m -429.865 656.959 l -3.023 w 0 G S -429.865 656.959 m -430.1 656.782 l -3.023 w 0 G S -430.1 656.782 m -430.335 656.547 l -3.023 w 0 G S -430.335 656.547 m -430.571 656.371 l -3.023 w 0 G S -430.571 656.371 m -430.806 656.194 l -3.023 w 0 G S -430.806 656.194 m -430.982 655.959 l -3.023 w 0 G S -430.982 655.959 m -431.218 655.782 l -3.023 w 0 G S -431.218 655.782 m -431.453 655.547 l -3.023 w 0 G S -431.453 655.547 m -431.629 655.371 l -3.023 w 0 G S -431.629 655.371 m -431.865 655.135 l -3.023 w 0 G S -431.865 655.135 m -432.041 654.959 l -3.023 w 0 G S -432.041 654.959 m -432.218 654.724 l -3.023 w 0 G S -432.218 654.724 m -432.453 654.488 l -3.023 w 0 G S -432.453 654.488 m -432.629 654.253 l -3.023 w 0 G S -432.629 654.253 m -432.806 654.077 l -3.023 w 0 G S -432.806 654.077 m -432.982 653.841 l -3.023 w 0 G S -432.982 653.841 m -433.159 653.606 l -3.023 w 0 G S -433.159 653.606 m -433.394 653.371 l -3.023 w 0 G S -433.394 653.371 m -433.571 653.135 l -3.023 w 0 G S -433.571 653.135 m -433.747 652.9 l -3.023 w 0 G S -433.747 652.9 m -433.865 652.665 l -3.023 w 0 G S -433.865 652.665 m -434.041 652.429 l -3.023 w 0 G S -434.041 652.429 m -434.218 652.194 l -3.023 w 0 G S -434.218 652.194 m -434.394 651.9 l -3.023 w 0 G S -434.394 651.9 m -434.512 651.665 l -3.023 w 0 G S -434.512 651.665 m -434.688 651.429 l -3.023 w 0 G S -434.688 651.429 m -434.865 651.194 l -3.023 w 0 G S -434.865 651.194 m -434.982 650.9 l -3.023 w 0 G S -434.982 650.9 m -435.159 650.665 l -3.023 w 0 G S -435.159 650.665 m -435.276 650.371 l -3.023 w 0 G S -435.276 650.371 m -435.394 650.135 l -3.023 w 0 G S -435.394 650.135 m -435.512 649.9 l -3.023 w 0 G S -435.512 649.9 m -435.688 649.606 l -3.023 w 0 G S -435.688 649.606 m -435.806 649.312 l -3.023 w 0 G S -435.806 649.312 m -435.923 649.077 l -3.023 w 0 G S -435.923 649.077 m -436.041 648.782 l -3.023 w 0 G S -436.041 648.782 m -436.159 648.547 l -3.023 w 0 G S -436.159 648.547 m -436.276 648.253 l -3.023 w 0 G S -436.276 648.253 m -436.335 647.959 l -3.023 w 0 G S -436.335 647.959 m -436.453 647.724 l -3.023 w 0 G S -436.453 647.724 m -436.571 647.429 l -3.023 w 0 G S -436.571 647.429 m -436.629 647.135 l -3.023 w 0 G S -436.629 647.135 m -436.747 646.9 l -3.023 w 0 G S -436.747 646.9 m -436.806 646.606 l -3.023 w 0 G S -436.806 646.606 m -436.923 646.312 l -3.023 w 0 G S -436.923 646.312 m -436.982 646.018 l -3.023 w 0 G S -436.982 646.018 m -437.041 645.724 l -3.023 w 0 G S -437.041 645.724 m -437.159 645.429 l -3.023 w 0 G S -437.159 645.429 m -437.218 645.194 l -3.023 w 0 G S -437.218 645.194 m -437.276 644.9 l -3.023 w 0 G S -437.276 644.9 m -437.335 644.606 l -3.023 w 0 G S -437.335 644.606 m -437.394 644.312 l -3.023 w 0 G S -437.394 644.312 m -437.453 644.018 l -3.023 w 0 G S -437.453 644.018 m -437.453 643.724 l -3.023 w 0 G S -437.453 643.724 m -437.512 643.429 l -3.023 w 0 G S -437.512 643.429 m -437.571 643.135 l -3.023 w 0 G S -437.571 643.135 m -437.571 642.841 l -3.023 w 0 G S -437.571 642.841 m -437.629 642.547 l -3.023 w 0 G S -437.629 642.547 m -437.629 642.253 l -3.023 w 0 G S -437.629 642.253 m -437.688 641.959 l -3.023 w 0 G S -437.688 641.959 m -437.688 641.665 l -3.023 w 0 G S -437.688 641.665 m -437.688 641.371 l -3.023 w 0 G S -437.688 641.371 m -437.688 641.077 l -3.023 w 0 G S -437.688 641.077 m -437.747 640.782 l -3.023 w 0 G S -437.747 640.782 m -437.747 640.488 l -3.023 w 0 G S -437.747 640.488 m -437.747 640.194 l -3.023 w 0 G S -437.747 640.194 m -437.688 639.9 l -3.023 w 0 G S -437.688 639.9 m -437.688 639.606 l -3.023 w 0 G S -437.688 639.606 m -437.688 639.312 l -3.023 w 0 G S -437.688 639.312 m -437.688 639.018 l -3.023 w 0 G S -437.688 639.018 m -437.629 638.724 l -3.023 w 0 G S -437.629 638.724 m -437.629 638.429 l -3.023 w 0 G S -437.629 638.429 m -437.571 638.135 l -3.023 w 0 G S -437.571 638.135 m -437.571 637.841 l -3.023 w 0 G S -437.571 637.841 m -437.512 637.547 l -3.023 w 0 G S -437.512 637.547 m -437.453 637.253 l -3.023 w 0 G S -437.453 637.253 m -437.453 636.959 l -3.023 w 0 G S -437.453 636.959 m -437.394 636.724 l -3.023 w 0 G S -437.394 636.724 m -437.335 636.429 l -3.023 w 0 G S -437.335 636.429 m -437.276 636.135 l -3.023 w 0 G S -437.276 636.135 m -437.218 635.841 l -3.023 w 0 G S -437.218 635.841 m -437.159 635.547 l -3.023 w 0 G S -437.159 635.547 m -437.041 635.253 l -3.023 w 0 G S -437.041 635.253 m -436.982 634.959 l -3.023 w 0 G S -436.982 634.959 m -436.923 634.665 l -3.023 w 0 G S -436.923 634.665 m -436.806 634.429 l -3.023 w 0 G S -436.806 634.429 m -436.747 634.135 l -3.023 w 0 G S -436.747 634.135 m -436.629 633.841 l -3.023 w 0 G S -436.629 633.841 m -436.571 633.547 l -3.023 w 0 G S -436.571 633.547 m -436.453 633.312 l -3.023 w 0 G S -436.453 633.312 m -436.335 633.018 l -3.023 w 0 G S -436.335 633.018 m -436.276 632.724 l -3.023 w 0 G S -436.276 632.724 m -436.159 632.488 l -3.023 w 0 G S -436.159 632.488 m -436.041 632.194 l -3.023 w 0 G S -436.041 632.194 m -435.923 631.9 l -3.023 w 0 G S -435.923 631.9 m -435.806 631.665 l -3.023 w 0 G S -435.806 631.665 m -435.688 631.371 l -3.023 w 0 G S -435.688 631.371 m -435.571 631.135 l -3.023 w 0 G S -435.571 631.135 m -435.394 630.841 l -3.023 w 0 G S -435.394 630.841 m -435.276 630.606 l -3.023 w 0 G S -435.276 630.606 m -435.159 630.312 l -3.023 w 0 G S -435.159 630.312 m -434.982 630.077 l -3.023 w 0 G S -434.982 630.077 m -434.865 629.841 l -3.023 w 0 G S -434.865 629.841 m -434.688 629.547 l -3.023 w 0 G S -434.688 629.547 m -434.571 629.312 l -3.023 w 0 G S -434.571 629.312 m -434.394 629.077 l -3.023 w 0 G S -434.394 629.077 m -434.218 628.841 l -3.023 w 0 G S -434.218 628.841 m -434.041 628.606 l -3.023 w 0 G S -434.041 628.606 m -433.923 628.312 l -3.023 w 0 G S -433.923 628.312 m -433.747 628.077 l -3.023 w 0 G S -433.747 628.077 m -433.571 627.841 l -3.023 w 0 G S -433.571 627.841 m -433.394 627.606 l -3.023 w 0 G S -433.394 627.606 m -433.218 627.371 l -3.023 w 0 G S -433.218 627.371 m -433.041 627.135 l -3.023 w 0 G S -433.041 627.135 m -432.806 626.959 l -3.023 w 0 G S -432.806 626.959 m -432.629 626.724 l -3.023 w 0 G S -432.629 626.724 m -432.453 626.488 l -3.023 w 0 G S -432.453 626.488 m -432.276 626.253 l -3.023 w 0 G S -432.276 626.253 m -432.041 626.077 l -3.023 w 0 G S -432.041 626.077 m -431.865 625.841 l -3.023 w 0 G S -431.865 625.841 m -431.629 625.606 l -3.023 w 0 G S -431.629 625.606 m -431.453 625.429 l -3.023 w 0 G S -431.453 625.429 m -431.218 625.194 l -3.023 w 0 G S -431.218 625.194 m -431.041 625.018 l -3.023 w 0 G S -431.041 625.018 m -430.806 624.782 l -3.023 w 0 G S -430.806 624.782 m -430.571 624.606 l -3.023 w 0 G S -430.571 624.606 m -430.335 624.429 l -3.023 w 0 G S -430.335 624.429 m -430.159 624.253 l -3.023 w 0 G S -430.159 624.253 m -429.923 624.018 l -3.023 w 0 G S -429.923 624.018 m -429.688 623.841 l -3.023 w 0 G S -429.688 623.841 m -429.453 623.665 l -3.023 w 0 G S -429.453 623.665 m -429.218 623.488 l -3.023 w 0 G S -429.218 623.488 m -428.982 623.312 l -3.023 w 0 G S -428.982 623.312 m -428.747 623.135 l -3.023 w 0 G S -428.747 623.135 m -428.512 622.959 l -3.023 w 0 G S -428.512 622.959 m -428.276 622.841 l -3.023 w 0 G S -428.276 622.841 m -427.982 622.665 l -3.023 w 0 G S -427.982 622.665 m -427.747 622.488 l -3.023 w 0 G S -427.747 622.488 m -427.512 622.371 l -3.023 w 0 G S -427.512 622.371 m -427.276 622.194 l -3.023 w 0 G S -427.276 622.194 m -426.982 622.077 l -3.023 w 0 G S -426.982 622.077 m -426.747 621.9 l -3.023 w 0 G S -426.747 621.9 m -426.512 621.782 l -3.023 w 0 G S -426.512 621.782 m -426.218 621.606 l -3.023 w 0 G S -426.218 621.606 m -425.982 621.488 l -3.023 w 0 G S -425.982 621.488 m -425.688 621.371 l -3.023 w 0 G S -425.688 621.371 m -425.453 621.253 l -3.023 w 0 G S -425.453 621.253 m -425.159 621.135 l -3.023 w 0 G S -425.159 621.135 m -424.865 621.018 l -3.023 w 0 G S -424.865 621.018 m -424.629 620.9 l -3.023 w 0 G S -424.629 620.9 m -424.335 620.782 l -3.023 w 0 G S -424.335 620.782 m -424.1 620.665 l -3.023 w 0 G S -424.1 620.665 m -423.806 620.547 l -3.023 w 0 G S -423.806 620.547 m -423.512 620.488 l -3.023 w 0 G S -423.512 620.488 m -423.218 620.371 l -3.023 w 0 G S -423.218 620.371 m -422.982 620.253 l -3.023 w 0 G S -422.982 620.253 m -422.688 620.194 l -3.023 w 0 G S -422.688 620.194 m -422.394 620.135 l -3.023 w 0 G S -422.394 620.135 m -422.1 620.018 l -3.023 w 0 G S -422.1 620.018 m -421.806 619.959 l -3.023 w 0 G S -421.806 619.959 m -421.571 619.9 l -3.023 w 0 G S -421.571 619.9 m -421.276 619.841 l -3.023 w 0 G S -421.276 619.841 m -420.982 619.724 l -3.023 w 0 G S -420.982 619.724 m -420.688 619.665 l -3.023 w 0 G S -420.688 619.665 m -420.394 619.606 l -3.023 w 0 G S -420.394 619.606 m -420.1 619.606 l -3.023 w 0 G S -420.1 619.606 m -419.806 619.547 l -3.023 w 0 G S -419.806 619.547 m -419.512 619.488 l -3.023 w 0 G S -419.512 619.488 m -419.218 619.429 l -3.023 w 0 G S -419.218 619.429 m -418.923 619.429 l -3.023 w 0 G S -418.923 619.429 m -418.629 619.371 l -3.023 w 0 G S -418.629 619.371 m -418.335 619.371 l -3.023 w 0 G S -418.335 619.371 m -418.041 619.312 l -3.023 w 0 G S -418.041 619.312 m -417.747 619.312 l -3.023 w 0 G S -417.747 619.312 m -417.453 619.312 l -3.023 w 0 G S -417.453 619.312 m -417.159 619.312 l -3.023 w 0 G S -417.159 619.312 m -416.865 619.253 l -3.023 w 0 G S -416.865 619.253 m -416.571 619.253 l -3.023 w 0 G S -416.571 619.253 m -416.276 619.253 l -3.023 w 0 G S -416.276 619.253 m -415.982 619.253 l -3.023 w 0 G S -415.982 619.253 m -415.688 619.312 l -3.023 w 0 G S -415.688 619.312 m -415.394 619.312 l -3.023 w 0 G S -415.394 619.312 m -415.1 619.312 l -3.023 w 0 G S -415.1 619.312 m -414.806 619.371 l -3.023 w 0 G S -414.806 619.371 m -414.512 619.371 l -3.023 w 0 G S -414.512 619.371 m -414.218 619.371 l -3.023 w 0 G S -414.218 619.371 m -413.982 619.429 l -3.023 w 0 G S -413.982 619.429 m -413.688 619.488 l -3.023 w 0 G S -413.688 619.488 m -413.394 619.488 l -3.023 w 0 G S -413.394 619.488 m -413.1 619.547 l -3.023 w 0 G S -413.1 619.547 m -412.806 619.606 l -3.023 w 0 G S -412.806 619.606 m -412.512 619.665 l -3.023 w 0 G S -412.512 619.665 m -412.218 619.724 l -3.023 w 0 G S -412.218 619.724 m -411.923 619.782 l -3.023 w 0 G S -411.923 619.782 m -411.629 619.841 l -3.023 w 0 G S -411.629 619.841 m -411.335 619.9 l -3.023 w 0 G S -411.335 619.9 m -411.041 619.959 l -3.023 w 0 G S -411.041 619.959 m -410.806 620.077 l -3.023 w 0 G S -410.806 620.077 m -410.512 620.135 l -3.023 w 0 G S -410.512 620.135 m -410.218 620.253 l -3.023 w 0 G S -410.218 620.253 m -409.923 620.312 l -3.023 w 0 G S -409.923 620.312 m -409.688 620.429 l -3.023 w 0 G S -409.688 620.429 m -409.394 620.488 l -3.023 w 0 G S -409.394 620.488 m -409.1 620.606 l -3.023 w 0 G S -409.1 620.606 m -408.806 620.724 l -3.023 w 0 G S -408.806 620.724 m -408.571 620.841 l -3.023 w 0 G S -408.571 620.841 m -408.276 620.959 l -3.023 w 0 G S -408.276 620.959 m -408.041 621.077 l -3.023 w 0 G S -408.041 621.077 m -407.747 621.194 l -3.023 w 0 G S -407.747 621.194 m -407.453 621.312 l -3.023 w 0 G S -407.453 621.312 m -407.218 621.429 l -3.023 w 0 G S -407.218 621.429 m -406.923 621.547 l -3.023 w 0 G S -406.923 621.547 m -406.688 621.665 l -3.023 w 0 G S -406.688 621.665 m -406.453 621.841 l -3.023 w 0 G S -406.453 621.841 m -406.159 621.959 l -3.023 w 0 G S -406.159 621.959 m -405.923 622.135 l -3.023 w 0 G S -405.923 622.135 m -405.688 622.253 l -3.023 w 0 G S -405.688 622.253 m -405.394 622.429 l -3.023 w 0 G S -405.394 622.429 m -405.159 622.547 l -3.023 w 0 G S -405.159 622.547 m -404.923 622.724 l -3.023 w 0 G S -404.923 622.724 m -404.688 622.9 l -3.023 w 0 G S -404.688 622.9 m -404.394 623.077 l -3.023 w 0 G S -404.394 623.077 m -404.159 623.253 l -3.023 w 0 G S -404.159 623.253 m -403.923 623.371 l -3.023 w 0 G S -403.923 623.371 m -403.688 623.547 l -3.023 w 0 G S -403.688 623.547 m -403.453 623.782 l -3.023 w 0 G S -403.453 623.782 m -403.218 623.959 l -3.023 w 0 G S -403.218 623.959 m -403.041 624.135 l -3.023 w 0 G S -403.041 624.135 m -402.806 624.312 l -3.023 w 0 G S -402.806 624.312 m -402.571 624.488 l -3.023 w 0 G S -402.571 624.488 m -402.335 624.724 l -3.023 w 0 G S -402.335 624.724 m -402.159 624.9 l -3.023 w 0 G S -402.159 624.9 m -401.923 625.077 l -3.023 w 0 G S -401.923 625.077 m -401.688 625.312 l -3.023 w 0 G S -401.688 625.312 m -401.512 625.488 l -3.023 w 0 G S -419.512 697.488 m -419.512 661.488 l -3.023 w 0 G S -419.512 445.488 m -419.512 409.488 l -3.023 w 0 G S -U -u -509.512 625.488 m -509.747 625.665 l -3.023 w 0 G S -509.747 625.665 m -509.982 625.841 l -3.023 w 0 G S -509.982 625.841 m -510.218 626.018 l -3.023 w 0 G S -510.218 626.018 m -510.453 626.135 l -3.023 w 0 G S -510.453 626.135 m -510.688 626.312 l -3.023 w 0 G S -510.688 626.312 m -510.982 626.488 l -3.023 w 0 G S -510.982 626.488 m -511.218 626.665 l -3.023 w 0 G S -511.218 626.665 m -511.453 626.782 l -3.023 w 0 G S -511.453 626.782 m -511.688 626.959 l -3.023 w 0 G S -511.688 626.959 m -511.982 627.077 l -3.023 w 0 G S -511.982 627.077 m -512.218 627.253 l -3.023 w 0 G S -512.218 627.253 m -512.453 627.371 l -3.023 w 0 G S -512.453 627.371 m -512.747 627.488 l -3.023 w 0 G S -512.747 627.488 m -512.982 627.665 l -3.023 w 0 G S -512.982 627.665 m -513.276 627.782 l -3.023 w 0 G S -513.276 627.782 m -513.512 627.9 l -3.023 w 0 G S -513.512 627.9 m -513.806 628.018 l -3.023 w 0 G S -513.806 628.018 m -514.041 628.135 l -3.023 w 0 G S -514.041 628.135 m -514.335 628.253 l -3.023 w 0 G S -514.335 628.253 m -514.629 628.371 l -3.023 w 0 G S -514.629 628.371 m -514.865 628.488 l -3.023 w 0 G S -514.865 628.488 m -515.159 628.547 l -3.023 w 0 G S -515.159 628.547 m -515.453 628.665 l -3.023 w 0 G S -515.453 628.665 m -515.688 628.782 l -3.023 w 0 G S -515.688 628.782 m -515.982 628.841 l -3.023 w 0 G S -515.982 628.841 m -516.276 628.959 l -3.023 w 0 G S -516.276 628.959 m -516.571 629.018 l -3.023 w 0 G S -516.571 629.018 m -516.806 629.135 l -3.023 w 0 G S -516.806 629.135 m -517.1 629.194 l -3.023 w 0 G S -517.1 629.194 m -517.394 629.253 l -3.023 w 0 G S -517.394 629.253 m -517.688 629.371 l -3.023 w 0 G S -517.688 629.371 m -517.982 629.429 l -3.023 w 0 G S -517.982 629.429 m -518.276 629.488 l -3.023 w 0 G S -518.276 629.488 m -518.571 629.547 l -3.023 w 0 G S -518.571 629.547 m -518.806 629.606 l -3.023 w 0 G S -518.806 629.606 m -519.1 629.665 l -3.023 w 0 G S -519.1 629.665 m -519.394 629.724 l -3.023 w 0 G S -519.394 629.724 m -519.688 629.724 l -3.023 w 0 G S -519.688 629.724 m -519.982 629.782 l -3.023 w 0 G S -519.982 629.782 m -520.276 629.841 l -3.023 w 0 G S -520.276 629.841 m -520.571 629.841 l -3.023 w 0 G S -520.571 629.841 m -520.865 629.9 l -3.023 w 0 G S -520.865 629.9 m -521.159 629.9 l -3.023 w 0 G S -521.159 629.9 m -521.453 629.959 l -3.023 w 0 G S -521.453 629.959 m -521.747 629.959 l -3.023 w 0 G S -521.747 629.959 m -522.041 629.959 l -3.023 w 0 G S -522.041 629.959 m -522.335 629.959 l -3.023 w 0 G S -522.335 629.959 m -522.629 629.959 l -3.023 w 0 G S -522.629 629.959 m -522.923 629.959 l -3.023 w 0 G S -522.923 629.959 m -523.218 629.959 l -3.023 w 0 G S -523.218 629.959 m -523.512 629.959 l -3.023 w 0 G S -523.512 629.959 m -523.806 629.959 l -3.023 w 0 G S -523.806 629.959 m -524.1 629.959 l -3.023 w 0 G S -524.1 629.959 m -524.394 629.959 l -3.023 w 0 G S -524.394 629.959 m -524.688 629.9 l -3.023 w 0 G S -524.688 629.9 m -524.982 629.9 l -3.023 w 0 G S -524.982 629.9 m -525.276 629.9 l -3.023 w 0 G S -525.276 629.9 m -525.571 629.841 l -3.023 w 0 G S -525.571 629.841 m -525.865 629.782 l -3.023 w 0 G S -525.865 629.782 m -526.159 629.782 l -3.023 w 0 G S -526.159 629.782 m -526.453 629.724 l -3.023 w 0 G S -526.453 629.724 m -526.747 629.665 l -3.023 w 0 G S -526.747 629.665 m -527.041 629.606 l -3.023 w 0 G S -527.041 629.606 m -527.335 629.547 l -3.023 w 0 G S -527.335 629.547 m -527.571 629.488 l -3.023 w 0 G S -527.571 629.488 m -527.865 629.429 l -3.023 w 0 G S -527.865 629.429 m -528.159 629.371 l -3.023 w 0 G S -528.159 629.371 m -528.453 629.312 l -3.023 w 0 G S -528.453 629.312 m -528.747 629.253 l -3.023 w 0 G S -528.747 629.253 m -529.041 629.194 l -3.023 w 0 G S -529.041 629.194 m -529.276 629.077 l -3.023 w 0 G S -529.276 629.077 m -529.571 629.018 l -3.023 w 0 G S -529.571 629.018 m -529.865 628.9 l -3.023 w 0 G S -529.865 628.9 m -530.159 628.841 l -3.023 w 0 G S -530.159 628.841 m -530.453 628.724 l -3.023 w 0 G S -530.453 628.724 m -530.688 628.606 l -3.023 w 0 G S -530.688 628.606 m -530.982 628.547 l -3.023 w 0 G S -530.982 628.547 m -531.276 628.429 l -3.023 w 0 G S -531.276 628.429 m -531.512 628.312 l -3.023 w 0 G S -531.512 628.312 m -531.806 628.194 l -3.023 w 0 G S -531.806 628.194 m -532.041 628.077 l -3.023 w 0 G S -532.041 628.077 m -532.335 627.959 l -3.023 w 0 G S -532.335 627.959 m -532.629 627.841 l -3.023 w 0 G S -532.629 627.841 m -532.865 627.724 l -3.023 w 0 G S -532.865 627.724 m -533.1 627.606 l -3.023 w 0 G S -533.1 627.606 m -533.394 627.429 l -3.023 w 0 G S -533.394 627.429 m -533.629 627.312 l -3.023 w 0 G S -533.629 627.312 m -533.923 627.194 l -3.023 w 0 G S -533.923 627.194 m -534.159 627.018 l -3.023 w 0 G S -534.159 627.018 m -534.394 626.9 l -3.023 w 0 G S -534.394 626.9 m -534.688 626.724 l -3.023 w 0 G S -534.688 626.724 m -534.923 626.606 l -3.023 w 0 G S -534.923 626.606 m -535.159 626.429 l -3.023 w 0 G S -535.159 626.429 m -535.394 626.253 l -3.023 w 0 G S -535.394 626.253 m -535.688 626.077 l -3.023 w 0 G S -535.688 626.077 m -535.923 625.959 l -3.023 w 0 G S -535.923 625.959 m -536.159 625.782 l -3.023 w 0 G S -536.159 625.782 m -536.394 625.606 l -3.023 w 0 G S -536.394 625.606 m -536.629 625.429 l -3.023 w 0 G S -536.629 625.429 m -536.865 625.253 l -3.023 w 0 G S -536.865 625.253 m -537.1 625.077 l -3.023 w 0 G S -537.1 625.077 m -537.335 624.841 l -3.023 w 0 G S -537.335 624.841 m -537.512 624.665 l -3.023 w 0 G S -537.512 624.665 m -537.747 624.488 l -3.023 w 0 G S -537.747 624.488 m -537.982 624.312 l -3.023 w 0 G S -537.982 624.312 m -538.218 624.077 l -3.023 w 0 G S -538.218 624.077 m -538.394 623.9 l -3.023 w 0 G S -538.394 623.9 m -538.629 623.665 l -3.023 w 0 G S -538.629 623.665 m -538.806 623.488 l -3.023 w 0 G S -538.806 623.488 m -539.041 623.253 l -3.023 w 0 G S -539.041 623.253 m -539.218 623.077 l -3.023 w 0 G S -539.218 623.077 m -539.453 622.841 l -3.023 w 0 G S -539.453 622.841 m -539.629 622.665 l -3.023 w 0 G S -539.629 622.665 m -539.865 622.429 l -3.023 w 0 G S -539.865 622.429 m -540.041 622.194 l -3.023 w 0 G S -540.041 622.194 m -540.218 621.959 l -3.023 w 0 G S -540.218 621.959 m -540.394 621.724 l -3.023 w 0 G S -540.394 621.724 m -540.629 621.547 l -3.023 w 0 G S -540.629 621.547 m -540.806 621.312 l -3.023 w 0 G S -540.806 621.312 m -540.982 621.077 l -3.023 w 0 G S -540.982 621.077 m -541.159 620.841 l -3.023 w 0 G S -541.159 620.841 m -541.335 620.606 l -3.023 w 0 G S -541.335 620.606 m -541.453 620.371 l -3.023 w 0 G S -541.453 620.371 m -541.629 620.077 l -3.023 w 0 G S -541.629 620.077 m -541.806 619.841 l -3.023 w 0 G S -541.806 619.841 m -541.982 619.606 l -3.023 w 0 G S -541.982 619.606 m -542.1 619.371 l -3.023 w 0 G S -542.1 619.371 m -542.276 619.135 l -3.023 w 0 G S -542.276 619.135 m -542.453 618.841 l -3.023 w 0 G S -542.453 618.841 m -542.571 618.606 l -3.023 w 0 G S -542.571 618.606 m -542.747 618.371 l -3.023 w 0 G S -542.747 618.371 m -542.865 618.077 l -3.023 w 0 G S -542.865 618.077 m -542.982 617.841 l -3.023 w 0 G S -542.982 617.841 m -543.1 617.547 l -3.023 w 0 G S -543.1 617.547 m -543.276 617.312 l -3.023 w 0 G S -543.276 617.312 m -543.394 617.018 l -3.023 w 0 G S -543.394 617.018 m -543.512 616.782 l -3.023 w 0 G S -543.512 616.782 m -543.629 616.488 l -3.023 w 0 G S -543.629 616.488 m -543.747 616.253 l -3.023 w 0 G S -543.747 616.253 m -543.865 615.959 l -3.023 w 0 G S -543.865 615.959 m -543.982 615.665 l -3.023 w 0 G S -543.982 615.665 m -544.041 615.429 l -3.023 w 0 G S -544.041 615.429 m -544.159 615.135 l -3.023 w 0 G S -544.159 615.135 m -544.276 614.841 l -3.023 w 0 G S -544.276 614.841 m -544.335 614.606 l -3.023 w 0 G S -544.335 614.606 m -544.453 614.312 l -3.023 w 0 G S -544.453 614.312 m -544.571 614.018 l -3.023 w 0 G S -544.571 614.018 m -544.629 613.724 l -3.023 w 0 G S -544.629 613.724 m -544.688 613.429 l -3.023 w 0 G S -544.688 613.429 m -544.806 613.194 l -3.023 w 0 G S -544.806 613.194 m -544.865 612.9 l -3.023 w 0 G S -544.865 612.9 m -544.923 612.606 l -3.023 w 0 G S -544.923 612.606 m -544.982 612.312 l -3.023 w 0 G S -544.982 612.312 m -545.041 612.018 l -3.023 w 0 G S -545.041 612.018 m -545.1 611.724 l -3.023 w 0 G S -545.1 611.724 m -545.159 611.429 l -3.023 w 0 G S -545.159 611.429 m -545.218 611.135 l -3.023 w 0 G S -545.218 611.135 m -545.276 610.9 l -3.023 w 0 G S -545.276 610.9 m -545.276 610.606 l -3.023 w 0 G S -545.276 610.606 m -545.335 610.312 l -3.023 w 0 G S -545.335 610.312 m -545.394 610.018 l -3.023 w 0 G S -545.394 610.018 m -545.394 609.724 l -3.023 w 0 G S -545.394 609.724 m -545.453 609.429 l -3.023 w 0 G S -545.453 609.429 m -545.453 609.135 l -3.023 w 0 G S -545.453 609.135 m -545.453 608.841 l -3.023 w 0 G S -545.453 608.841 m -545.512 608.547 l -3.023 w 0 G S -545.512 608.547 m -545.512 608.253 l -3.023 w 0 G S -545.512 608.253 m -545.512 607.959 l -3.023 w 0 G S -545.512 607.959 m -545.512 607.665 l -3.023 w 0 G S -545.512 607.665 m -545.512 607.371 l -3.023 w 0 G S -545.512 607.371 m -545.512 607.077 l -3.023 w 0 G S -545.512 607.077 m -545.512 606.782 l -3.023 w 0 G S -545.512 606.782 m -545.512 606.488 l -3.023 w 0 G S -545.512 606.488 m -545.453 606.194 l -3.023 w 0 G S -545.453 606.194 m -545.453 605.9 l -3.023 w 0 G S -545.453 605.9 m -545.453 605.606 l -3.023 w 0 G S -545.453 605.606 m -545.394 605.312 l -3.023 w 0 G S -545.394 605.312 m -545.394 605.018 l -3.023 w 0 G S -545.394 605.018 m -545.335 604.724 l -3.023 w 0 G S -545.335 604.724 m -545.276 604.429 l -3.023 w 0 G S -545.276 604.429 m -545.276 604.135 l -3.023 w 0 G S -545.276 604.135 m -545.218 603.841 l -3.023 w 0 G S -545.218 603.841 m -545.159 603.547 l -3.023 w 0 G S -545.159 603.547 m -545.1 603.253 l -3.023 w 0 G S -545.1 603.253 m -545.041 602.959 l -3.023 w 0 G S -545.041 602.959 m -544.982 602.665 l -3.023 w 0 G S -544.982 602.665 m -544.923 602.429 l -3.023 w 0 G S -544.923 602.429 m -544.865 602.135 l -3.023 w 0 G S -544.865 602.135 m -544.806 601.841 l -3.023 w 0 G S -544.806 601.841 m -544.688 601.547 l -3.023 w 0 G S -544.688 601.547 m -544.629 601.253 l -3.023 w 0 G S -544.629 601.253 m -544.571 600.959 l -3.023 w 0 G S -544.571 600.959 m -544.453 600.724 l -3.023 w 0 G S -544.453 600.724 m -544.394 600.429 l -3.023 w 0 G S -544.394 600.429 m -544.276 600.135 l -3.023 w 0 G S -544.276 600.135 m -544.159 599.841 l -3.023 w 0 G S -544.159 599.841 m -544.1 599.606 l -3.023 w 0 G S -544.1 599.606 m -543.982 599.312 l -3.023 w 0 G S -543.982 599.312 m -543.865 599.018 l -3.023 w 0 G S -543.865 599.018 m -543.747 598.782 l -3.023 w 0 G S -543.747 598.782 m -543.629 598.488 l -3.023 w 0 G S -543.629 598.488 m -543.512 598.253 l -3.023 w 0 G S -543.512 598.253 m -543.394 597.959 l -3.023 w 0 G S -543.394 597.959 m -543.276 597.724 l -3.023 w 0 G S -543.276 597.724 m -543.159 597.429 l -3.023 w 0 G S -543.159 597.429 m -542.982 597.194 l -3.023 w 0 G S -542.982 597.194 m -542.865 596.9 l -3.023 w 0 G S -542.865 596.9 m -542.747 596.665 l -3.023 w 0 G S -542.747 596.665 m -542.571 596.429 l -3.023 w 0 G S -542.571 596.429 m -542.453 596.135 l -3.023 w 0 G S -542.453 596.135 m -542.276 595.9 l -3.023 w 0 G S -542.276 595.9 m -542.159 595.665 l -3.023 w 0 G S -542.159 595.665 m -541.982 595.371 l -3.023 w 0 G S -541.982 595.371 m -541.806 595.135 l -3.023 w 0 G S -541.806 595.135 m -541.688 594.9 l -3.023 w 0 G S -541.688 594.9 m -541.512 594.665 l -3.023 w 0 G S -541.512 594.665 m -541.335 594.429 l -3.023 w 0 G S -541.335 594.429 m -541.159 594.194 l -3.023 w 0 G S -541.159 594.194 m -540.982 593.959 l -3.023 w 0 G S -540.982 593.959 m -540.806 593.724 l -3.023 w 0 G S -540.806 593.724 m -540.629 593.488 l -3.023 w 0 G S -540.629 593.488 m -540.453 593.253 l -3.023 w 0 G S -540.453 593.253 m -540.276 593.018 l -3.023 w 0 G S -540.276 593.018 m -540.041 592.782 l -3.023 w 0 G S -540.041 592.782 m -539.865 592.606 l -3.023 w 0 G S -539.865 592.606 m -539.688 592.371 l -3.023 w 0 G S -539.688 592.371 m -539.453 592.135 l -3.023 w 0 G S -539.453 592.135 m -539.276 591.959 l -3.023 w 0 G S -539.276 591.959 m -539.041 591.724 l -3.023 w 0 G S -539.041 591.724 m -538.865 591.488 l -3.023 w 0 G S -538.865 591.488 m -538.629 591.312 l -3.023 w 0 G S -538.629 591.312 m -538.453 591.077 l -3.023 w 0 G S -538.453 591.077 m -538.218 590.9 l -3.023 w 0 G S -538.218 590.9 m -537.982 590.724 l -3.023 w 0 G S -537.982 590.724 m -537.806 590.488 l -3.023 w 0 G S -537.806 590.488 m -537.571 590.312 l -3.023 w 0 G S -537.571 590.312 m -537.335 590.135 l -3.023 w 0 G S -537.335 590.135 m -537.1 589.959 l -3.023 w 0 G S -537.1 589.959 m -536.865 589.782 l -3.023 w 0 G S -536.865 589.782 m -536.629 589.606 l -3.023 w 0 G S -536.629 589.606 m -536.394 589.429 l -3.023 w 0 G S -536.394 589.429 m -536.159 589.253 l -3.023 w 0 G S -536.159 589.253 m -535.923 589.077 l -3.023 w 0 G S -535.923 589.077 m -535.688 588.9 l -3.023 w 0 G S -535.688 588.9 m -535.453 588.724 l -3.023 w 0 G S -535.453 588.724 m -535.218 588.547 l -3.023 w 0 G S -535.218 588.547 m -534.923 588.429 l -3.023 w 0 G S -534.923 588.429 m -534.688 588.253 l -3.023 w 0 G S -534.688 588.253 m -534.453 588.135 l -3.023 w 0 G S -534.453 588.135 m -534.218 587.959 l -3.023 w 0 G S -534.218 587.959 m -533.923 587.841 l -3.023 w 0 G S -533.923 587.841 m -533.688 587.665 l -3.023 w 0 G S -533.688 587.665 m -533.394 587.547 l -3.023 w 0 G S -533.394 587.547 m -533.159 587.429 l -3.023 w 0 G S -533.159 587.429 m -532.923 587.253 l -3.023 w 0 G S -532.923 587.253 m -532.629 587.135 l -3.023 w 0 G S -532.629 587.135 m -532.335 587.018 l -3.023 w 0 G S -532.335 587.018 m -532.1 586.9 l -3.023 w 0 G S -532.1 586.9 m -531.806 586.782 l -3.023 w 0 G S -531.806 586.782 m -531.571 586.665 l -3.023 w 0 G S -531.571 586.665 m -531.276 586.547 l -3.023 w 0 G S -531.276 586.547 m -530.982 586.429 l -3.023 w 0 G S -530.982 586.429 m -530.747 586.371 l -3.023 w 0 G S -530.747 586.371 m -530.453 586.253 l -3.023 w 0 G S -530.453 586.253 m -530.159 586.135 l -3.023 w 0 G S -530.159 586.135 m -529.923 586.077 l -3.023 w 0 G S -529.923 586.077 m -529.629 585.959 l -3.023 w 0 G S -529.629 585.959 m -529.335 585.9 l -3.023 w 0 G S -529.335 585.9 m -529.041 585.841 l -3.023 w 0 G S -529.041 585.841 m -528.747 585.724 l -3.023 w 0 G S -528.747 585.724 m -528.512 585.665 l -3.023 w 0 G S -528.512 585.665 m -528.218 585.606 l -3.023 w 0 G S -528.218 585.606 m -527.923 585.547 l -3.023 w 0 G S -527.923 585.547 m -527.629 585.488 l -3.023 w 0 G S -527.629 585.488 m -527.335 585.429 l -3.023 w 0 G S -527.335 585.429 m -527.041 585.371 l -3.023 w 0 G S -527.041 585.371 m -526.747 585.312 l -3.023 w 0 G S -526.747 585.312 m -526.453 585.253 l -3.023 w 0 G S -526.453 585.253 m -526.159 585.194 l -3.023 w 0 G S -526.159 585.194 m -525.865 585.194 l -3.023 w 0 G S -525.865 585.194 m -525.571 585.135 l -3.023 w 0 G S -525.571 585.135 m -525.276 585.077 l -3.023 w 0 G S -525.276 585.077 m -525.041 585.077 l -3.023 w 0 G S -525.041 585.077 m -524.747 585.077 l -3.023 w 0 G S -524.747 585.077 m -524.453 585.018 l -3.023 w 0 G S -524.453 585.018 m -524.159 585.018 l -3.023 w 0 G S -524.159 585.018 m -523.865 585.018 l -3.023 w 0 G S -523.865 585.018 m -523.571 585.018 l -3.023 w 0 G S -523.571 585.018 m -523.276 585.018 l -3.023 w 0 G S -523.276 585.018 m -522.982 585.018 l -3.023 w 0 G S -522.982 585.018 m -522.688 585.018 l -3.023 w 0 G S -522.688 585.018 m -522.394 585.018 l -3.023 w 0 G S -522.394 585.018 m -522.1 585.018 l -3.023 w 0 G S -522.1 585.018 m -521.806 585.018 l -3.023 w 0 G S -521.806 585.018 m -521.512 585.018 l -3.023 w 0 G S -521.512 585.018 m -521.218 585.077 l -3.023 w 0 G S -521.218 585.077 m -520.923 585.077 l -3.023 w 0 G S -520.923 585.077 m -520.629 585.135 l -3.023 w 0 G S -520.629 585.135 m -520.335 585.135 l -3.023 w 0 G S -520.335 585.135 m -520.041 585.194 l -3.023 w 0 G S -520.041 585.194 m -519.747 585.253 l -3.023 w 0 G S -519.747 585.253 m -519.453 585.253 l -3.023 w 0 G S -519.453 585.253 m -519.159 585.312 l -3.023 w 0 G S -519.159 585.312 m -518.865 585.371 l -3.023 w 0 G S -518.865 585.371 m -518.571 585.429 l -3.023 w 0 G S -518.571 585.429 m -518.276 585.488 l -3.023 w 0 G S -518.276 585.488 m -517.982 585.547 l -3.023 w 0 G S -517.982 585.547 m -517.747 585.606 l -3.023 w 0 G S -517.747 585.606 m -517.453 585.665 l -3.023 w 0 G S -517.453 585.665 m -517.159 585.782 l -3.023 w 0 G S -517.159 585.782 m -516.865 585.841 l -3.023 w 0 G S -516.865 585.841 m -516.571 585.9 l -3.023 w 0 G S -516.571 585.9 m -516.276 586.018 l -3.023 w 0 G S -516.276 586.018 m -516.041 586.077 l -3.023 w 0 G S -516.041 586.077 m -515.747 586.194 l -3.023 w 0 G S -515.747 586.194 m -515.453 586.312 l -3.023 w 0 G S -515.453 586.312 m -515.218 586.371 l -3.023 w 0 G S -515.218 586.371 m -514.923 586.488 l -3.023 w 0 G S -514.923 586.488 m -514.629 586.606 l -3.023 w 0 G S -514.629 586.606 m -514.394 586.724 l -3.023 w 0 G S -514.394 586.724 m -514.1 586.841 l -3.023 w 0 G S -514.1 586.841 m -513.806 586.959 l -3.023 w 0 G S -513.806 586.959 m -513.571 587.077 l -3.023 w 0 G S -513.571 587.077 m -513.276 587.194 l -3.023 w 0 G S -513.276 587.194 m -513.041 587.312 l -3.023 w 0 G S -513.041 587.312 m -512.747 587.429 l -3.023 w 0 G S -512.747 587.429 m -512.512 587.606 l -3.023 w 0 G S -512.512 587.606 m -512.276 587.724 l -3.023 w 0 G S -512.276 587.724 m -511.982 587.9 l -3.023 w 0 G S -511.982 587.9 m -511.747 588.018 l -3.023 w 0 G S -511.747 588.018 m -511.512 588.194 l -3.023 w 0 G S -511.512 588.194 m -511.218 588.312 l -3.023 w 0 G S -511.218 588.312 m -510.982 588.488 l -3.023 w 0 G S -510.982 588.488 m -510.747 588.606 l -3.023 w 0 G S -510.747 588.606 m -510.512 588.782 l -3.023 w 0 G S -510.512 588.782 m -510.276 588.959 l -3.023 w 0 G S -510.276 588.959 m -509.982 589.135 l -3.023 w 0 G S -509.982 589.135 m -509.747 589.312 l -3.023 w 0 G S -509.747 589.312 m -509.512 589.488 l -3.023 w 0 G S -509.512 589.488 m -509.747 589.665 l -3.023 w 0 G S -509.747 589.665 m -509.982 589.841 l -3.023 w 0 G S -509.982 589.841 m -510.218 590.018 l -3.023 w 0 G S -510.218 590.018 m -510.453 590.135 l -3.023 w 0 G S -510.453 590.135 m -510.688 590.312 l -3.023 w 0 G S -510.688 590.312 m -510.982 590.488 l -3.023 w 0 G S -510.982 590.488 m -511.218 590.665 l -3.023 w 0 G S -511.218 590.665 m -511.453 590.782 l -3.023 w 0 G S -511.453 590.782 m -511.688 590.959 l -3.023 w 0 G S -511.688 590.959 m -511.982 591.077 l -3.023 w 0 G S -511.982 591.077 m -512.218 591.253 l -3.023 w 0 G S -512.218 591.253 m -512.453 591.371 l -3.023 w 0 G S -512.453 591.371 m -512.747 591.488 l -3.023 w 0 G S -512.747 591.488 m -512.982 591.665 l -3.023 w 0 G S -512.982 591.665 m -513.276 591.782 l -3.023 w 0 G S -513.276 591.782 m -513.512 591.9 l -3.023 w 0 G S -513.512 591.9 m -513.806 592.018 l -3.023 w 0 G S -513.806 592.018 m -514.041 592.135 l -3.023 w 0 G S -514.041 592.135 m -514.335 592.253 l -3.023 w 0 G S -514.335 592.253 m -514.629 592.371 l -3.023 w 0 G S -514.629 592.371 m -514.865 592.488 l -3.023 w 0 G S -514.865 592.488 m -515.159 592.547 l -3.023 w 0 G S -515.159 592.547 m -515.453 592.665 l -3.023 w 0 G S -515.453 592.665 m -515.688 592.782 l -3.023 w 0 G S -515.688 592.782 m -515.982 592.841 l -3.023 w 0 G S -515.982 592.841 m -516.276 592.959 l -3.023 w 0 G S -516.276 592.959 m -516.571 593.018 l -3.023 w 0 G S -516.571 593.018 m -516.806 593.135 l -3.023 w 0 G S -516.806 593.135 m -517.1 593.194 l -3.023 w 0 G S -517.1 593.194 m -517.394 593.253 l -3.023 w 0 G S -517.394 593.253 m -517.688 593.371 l -3.023 w 0 G S -517.688 593.371 m -517.982 593.429 l -3.023 w 0 G S -517.982 593.429 m -518.276 593.488 l -3.023 w 0 G S -518.276 593.488 m -518.571 593.547 l -3.023 w 0 G S -518.571 593.547 m -518.806 593.606 l -3.023 w 0 G S -518.806 593.606 m -519.1 593.665 l -3.023 w 0 G S -519.1 593.665 m -519.394 593.724 l -3.023 w 0 G S -519.394 593.724 m -519.688 593.724 l -3.023 w 0 G S -519.688 593.724 m -519.982 593.782 l -3.023 w 0 G S -519.982 593.782 m -520.276 593.841 l -3.023 w 0 G S -520.276 593.841 m -520.571 593.841 l -3.023 w 0 G S -520.571 593.841 m -520.865 593.9 l -3.023 w 0 G S -520.865 593.9 m -521.159 593.9 l -3.023 w 0 G S -521.159 593.9 m -521.453 593.959 l -3.023 w 0 G S -521.453 593.959 m -521.747 593.959 l -3.023 w 0 G S -521.747 593.959 m -522.041 593.959 l -3.023 w 0 G S -522.041 593.959 m -522.335 593.959 l -3.023 w 0 G S -522.335 593.959 m -522.629 593.959 l -3.023 w 0 G S -522.629 593.959 m -522.923 593.959 l -3.023 w 0 G S -522.923 593.959 m -523.218 593.959 l -3.023 w 0 G S -523.218 593.959 m -523.512 593.959 l -3.023 w 0 G S -523.512 593.959 m -523.806 593.959 l -3.023 w 0 G S -523.806 593.959 m -524.1 593.959 l -3.023 w 0 G S -524.1 593.959 m -524.394 593.959 l -3.023 w 0 G S -524.394 593.959 m -524.688 593.9 l -3.023 w 0 G S -524.688 593.9 m -524.982 593.9 l -3.023 w 0 G S -524.982 593.9 m -525.276 593.9 l -3.023 w 0 G S -525.276 593.9 m -525.571 593.841 l -3.023 w 0 G S -525.571 593.841 m -525.865 593.782 l -3.023 w 0 G S -525.865 593.782 m -526.159 593.782 l -3.023 w 0 G S -526.159 593.782 m -526.453 593.724 l -3.023 w 0 G S -526.453 593.724 m -526.747 593.665 l -3.023 w 0 G S -526.747 593.665 m -527.041 593.606 l -3.023 w 0 G S -527.041 593.606 m -527.335 593.547 l -3.023 w 0 G S -527.335 593.547 m -527.571 593.488 l -3.023 w 0 G S -527.571 593.488 m -527.865 593.429 l -3.023 w 0 G S -527.865 593.429 m -528.159 593.371 l -3.023 w 0 G S -528.159 593.371 m -528.453 593.312 l -3.023 w 0 G S -528.453 593.312 m -528.747 593.253 l -3.023 w 0 G S -528.747 593.253 m -529.041 593.194 l -3.023 w 0 G S -529.041 593.194 m -529.276 593.077 l -3.023 w 0 G S -529.276 593.077 m -529.571 593.018 l -3.023 w 0 G S -529.571 593.018 m -529.865 592.9 l -3.023 w 0 G S -529.865 592.9 m -530.159 592.841 l -3.023 w 0 G S -530.159 592.841 m -530.453 592.724 l -3.023 w 0 G S -530.453 592.724 m -530.688 592.606 l -3.023 w 0 G S -530.688 592.606 m -530.982 592.547 l -3.023 w 0 G S -530.982 592.547 m -531.276 592.429 l -3.023 w 0 G S -531.276 592.429 m -531.512 592.312 l -3.023 w 0 G S -531.512 592.312 m -531.806 592.194 l -3.023 w 0 G S -531.806 592.194 m -532.041 592.077 l -3.023 w 0 G S -532.041 592.077 m -532.335 591.959 l -3.023 w 0 G S -532.335 591.959 m -532.629 591.841 l -3.023 w 0 G S -532.629 591.841 m -532.865 591.724 l -3.023 w 0 G S -532.865 591.724 m -533.1 591.606 l -3.023 w 0 G S -533.1 591.606 m -533.394 591.429 l -3.023 w 0 G S -533.394 591.429 m -533.629 591.312 l -3.023 w 0 G S -533.629 591.312 m -533.923 591.194 l -3.023 w 0 G S -533.923 591.194 m -534.159 591.018 l -3.023 w 0 G S -534.159 591.018 m -534.394 590.9 l -3.023 w 0 G S -534.394 590.9 m -534.688 590.724 l -3.023 w 0 G S -534.688 590.724 m -534.923 590.606 l -3.023 w 0 G S -534.923 590.606 m -535.159 590.429 l -3.023 w 0 G S -535.159 590.429 m -535.394 590.253 l -3.023 w 0 G S -535.394 590.253 m -535.688 590.077 l -3.023 w 0 G S -535.688 590.077 m -535.923 589.959 l -3.023 w 0 G S -535.923 589.959 m -536.159 589.782 l -3.023 w 0 G S -536.159 589.782 m -536.394 589.606 l -3.023 w 0 G S -536.394 589.606 m -536.629 589.429 l -3.023 w 0 G S -536.629 589.429 m -536.865 589.253 l -3.023 w 0 G S -536.865 589.253 m -537.1 589.077 l -3.023 w 0 G S -537.1 589.077 m -537.335 588.841 l -3.023 w 0 G S -537.335 588.841 m -537.512 588.665 l -3.023 w 0 G S -537.512 588.665 m -537.747 588.488 l -3.023 w 0 G S -537.747 588.488 m -537.982 588.312 l -3.023 w 0 G S -537.982 588.312 m -538.218 588.077 l -3.023 w 0 G S -538.218 588.077 m -538.394 587.9 l -3.023 w 0 G S -538.394 587.9 m -538.629 587.665 l -3.023 w 0 G S -538.629 587.665 m -538.806 587.488 l -3.023 w 0 G S -538.806 587.488 m -539.041 587.253 l -3.023 w 0 G S -539.041 587.253 m -539.218 587.077 l -3.023 w 0 G S -539.218 587.077 m -539.453 586.841 l -3.023 w 0 G S -539.453 586.841 m -539.629 586.665 l -3.023 w 0 G S -539.629 586.665 m -539.865 586.429 l -3.023 w 0 G S -539.865 586.429 m -540.041 586.194 l -3.023 w 0 G S -540.041 586.194 m -540.218 585.959 l -3.023 w 0 G S -540.218 585.959 m -540.394 585.724 l -3.023 w 0 G S -540.394 585.724 m -540.629 585.547 l -3.023 w 0 G S -540.629 585.547 m -540.806 585.312 l -3.023 w 0 G S -540.806 585.312 m -540.982 585.077 l -3.023 w 0 G S -540.982 585.077 m -541.159 584.841 l -3.023 w 0 G S -541.159 584.841 m -541.335 584.606 l -3.023 w 0 G S -541.335 584.606 m -541.453 584.371 l -3.023 w 0 G S -541.453 584.371 m -541.629 584.077 l -3.023 w 0 G S -541.629 584.077 m -541.806 583.841 l -3.023 w 0 G S -541.806 583.841 m -541.982 583.606 l -3.023 w 0 G S -541.982 583.606 m -542.1 583.371 l -3.023 w 0 G S -542.1 583.371 m -542.276 583.135 l -3.023 w 0 G S -542.276 583.135 m -542.453 582.841 l -3.023 w 0 G S -542.453 582.841 m -542.571 582.606 l -3.023 w 0 G S -542.571 582.606 m -542.747 582.371 l -3.023 w 0 G S -542.747 582.371 m -542.865 582.077 l -3.023 w 0 G S -542.865 582.077 m -542.982 581.841 l -3.023 w 0 G S -542.982 581.841 m -543.1 581.547 l -3.023 w 0 G S -543.1 581.547 m -543.276 581.312 l -3.023 w 0 G S -543.276 581.312 m -543.394 581.018 l -3.023 w 0 G S -543.394 581.018 m -543.512 580.782 l -3.023 w 0 G S -543.512 580.782 m -543.629 580.488 l -3.023 w 0 G S -543.629 580.488 m -543.747 580.253 l -3.023 w 0 G S -543.747 580.253 m -543.865 579.959 l -3.023 w 0 G S -543.865 579.959 m -543.982 579.665 l -3.023 w 0 G S -543.982 579.665 m -544.041 579.429 l -3.023 w 0 G S -544.041 579.429 m -544.159 579.135 l -3.023 w 0 G S -544.159 579.135 m -544.276 578.841 l -3.023 w 0 G S -544.276 578.841 m -544.335 578.606 l -3.023 w 0 G S -544.335 578.606 m -544.453 578.312 l -3.023 w 0 G S -544.453 578.312 m -544.571 578.018 l -3.023 w 0 G S -544.571 578.018 m -544.629 577.724 l -3.023 w 0 G S -544.629 577.724 m -544.688 577.429 l -3.023 w 0 G S -544.688 577.429 m -544.806 577.194 l -3.023 w 0 G S -544.806 577.194 m -544.865 576.9 l -3.023 w 0 G S -544.865 576.9 m -544.923 576.606 l -3.023 w 0 G S -544.923 576.606 m -544.982 576.312 l -3.023 w 0 G S -544.982 576.312 m -545.041 576.018 l -3.023 w 0 G S -545.041 576.018 m -545.1 575.724 l -3.023 w 0 G S -545.1 575.724 m -545.159 575.429 l -3.023 w 0 G S -545.159 575.429 m -545.218 575.135 l -3.023 w 0 G S -545.218 575.135 m -545.276 574.9 l -3.023 w 0 G S -545.276 574.9 m -545.276 574.606 l -3.023 w 0 G S -545.276 574.606 m -545.335 574.312 l -3.023 w 0 G S -545.335 574.312 m -545.394 574.018 l -3.023 w 0 G S -545.394 574.018 m -545.394 573.724 l -3.023 w 0 G S -545.394 573.724 m -545.453 573.429 l -3.023 w 0 G S -545.453 573.429 m -545.453 573.135 l -3.023 w 0 G S -545.453 573.135 m -545.453 572.841 l -3.023 w 0 G S -545.453 572.841 m -545.512 572.547 l -3.023 w 0 G S -545.512 572.547 m -545.512 572.253 l -3.023 w 0 G S -545.512 572.253 m -545.512 571.959 l -3.023 w 0 G S -545.512 571.959 m -545.512 571.665 l -3.023 w 0 G S -545.512 571.665 m -545.512 571.371 l -3.023 w 0 G S -545.512 571.371 m -545.512 571.077 l -3.023 w 0 G S -545.512 571.077 m -545.512 570.782 l -3.023 w 0 G S -545.512 570.782 m -545.512 570.488 l -3.023 w 0 G S -545.512 570.488 m -545.453 570.194 l -3.023 w 0 G S -545.453 570.194 m -545.453 569.9 l -3.023 w 0 G S -545.453 569.9 m -545.453 569.606 l -3.023 w 0 G S -545.453 569.606 m -545.394 569.312 l -3.023 w 0 G S -545.394 569.312 m -545.394 569.018 l -3.023 w 0 G S -545.394 569.018 m -545.335 568.724 l -3.023 w 0 G S -545.335 568.724 m -545.276 568.429 l -3.023 w 0 G S -545.276 568.429 m -545.276 568.135 l -3.023 w 0 G S -545.276 568.135 m -545.218 567.841 l -3.023 w 0 G S -545.218 567.841 m -545.159 567.547 l -3.023 w 0 G S -545.159 567.547 m -545.1 567.253 l -3.023 w 0 G S -545.1 567.253 m -545.041 566.959 l -3.023 w 0 G S -545.041 566.959 m -544.982 566.665 l -3.023 w 0 G S -544.982 566.665 m -544.923 566.429 l -3.023 w 0 G S -544.923 566.429 m -544.865 566.135 l -3.023 w 0 G S -544.865 566.135 m -544.806 565.841 l -3.023 w 0 G S -544.806 565.841 m -544.688 565.547 l -3.023 w 0 G S -544.688 565.547 m -544.629 565.253 l -3.023 w 0 G S -544.629 565.253 m -544.571 564.959 l -3.023 w 0 G S -544.571 564.959 m -544.453 564.724 l -3.023 w 0 G S -544.453 564.724 m -544.394 564.429 l -3.023 w 0 G S -544.394 564.429 m -544.276 564.135 l -3.023 w 0 G S -544.276 564.135 m -544.159 563.841 l -3.023 w 0 G S -544.159 563.841 m -544.1 563.606 l -3.023 w 0 G S -544.1 563.606 m -543.982 563.312 l -3.023 w 0 G S -543.982 563.312 m -543.865 563.018 l -3.023 w 0 G S -543.865 563.018 m -543.747 562.782 l -3.023 w 0 G S -543.747 562.782 m -543.629 562.488 l -3.023 w 0 G S -543.629 562.488 m -543.512 562.253 l -3.023 w 0 G S -543.512 562.253 m -543.394 561.959 l -3.023 w 0 G S -543.394 561.959 m -543.276 561.724 l -3.023 w 0 G S -543.276 561.724 m -543.159 561.429 l -3.023 w 0 G S -543.159 561.429 m -542.982 561.194 l -3.023 w 0 G S -542.982 561.194 m -542.865 560.9 l -3.023 w 0 G S -542.865 560.9 m -542.747 560.665 l -3.023 w 0 G S -542.747 560.665 m -542.571 560.429 l -3.023 w 0 G S -542.571 560.429 m -542.453 560.135 l -3.023 w 0 G S -542.453 560.135 m -542.276 559.9 l -3.023 w 0 G S -542.276 559.9 m -542.159 559.665 l -3.023 w 0 G S -542.159 559.665 m -541.982 559.371 l -3.023 w 0 G S -541.982 559.371 m -541.806 559.135 l -3.023 w 0 G S -541.806 559.135 m -541.688 558.9 l -3.023 w 0 G S -541.688 558.9 m -541.512 558.665 l -3.023 w 0 G S -541.512 558.665 m -541.335 558.429 l -3.023 w 0 G S -541.335 558.429 m -541.159 558.194 l -3.023 w 0 G S -541.159 558.194 m -540.982 557.959 l -3.023 w 0 G S -540.982 557.959 m -540.806 557.724 l -3.023 w 0 G S -540.806 557.724 m -540.629 557.488 l -3.023 w 0 G S -540.629 557.488 m -540.453 557.253 l -3.023 w 0 G S -540.453 557.253 m -540.276 557.018 l -3.023 w 0 G S -540.276 557.018 m -540.041 556.782 l -3.023 w 0 G S -540.041 556.782 m -539.865 556.606 l -3.023 w 0 G S -539.865 556.606 m -539.688 556.371 l -3.023 w 0 G S -539.688 556.371 m -539.453 556.135 l -3.023 w 0 G S -539.453 556.135 m -539.276 555.959 l -3.023 w 0 G S -539.276 555.959 m -539.041 555.724 l -3.023 w 0 G S -539.041 555.724 m -538.865 555.488 l -3.023 w 0 G S -538.865 555.488 m -538.629 555.312 l -3.023 w 0 G S -538.629 555.312 m -538.453 555.077 l -3.023 w 0 G S -538.453 555.077 m -538.218 554.9 l -3.023 w 0 G S -538.218 554.9 m -537.982 554.724 l -3.023 w 0 G S -537.982 554.724 m -537.806 554.488 l -3.023 w 0 G S -537.806 554.488 m -537.571 554.312 l -3.023 w 0 G S -537.571 554.312 m -537.335 554.135 l -3.023 w 0 G S -537.335 554.135 m -537.1 553.959 l -3.023 w 0 G S -537.1 553.959 m -536.865 553.782 l -3.023 w 0 G S -536.865 553.782 m -536.629 553.606 l -3.023 w 0 G S -536.629 553.606 m -536.394 553.429 l -3.023 w 0 G S -536.394 553.429 m -536.159 553.253 l -3.023 w 0 G S -536.159 553.253 m -535.923 553.077 l -3.023 w 0 G S -535.923 553.077 m -535.688 552.9 l -3.023 w 0 G S -535.688 552.9 m -535.453 552.724 l -3.023 w 0 G S -535.453 552.724 m -535.218 552.547 l -3.023 w 0 G S -535.218 552.547 m -534.923 552.429 l -3.023 w 0 G S -534.923 552.429 m -534.688 552.253 l -3.023 w 0 G S -534.688 552.253 m -534.453 552.135 l -3.023 w 0 G S -534.453 552.135 m -534.218 551.959 l -3.023 w 0 G S -534.218 551.959 m -533.923 551.841 l -3.023 w 0 G S -533.923 551.841 m -533.688 551.665 l -3.023 w 0 G S -533.688 551.665 m -533.394 551.547 l -3.023 w 0 G S -533.394 551.547 m -533.159 551.429 l -3.023 w 0 G S -533.159 551.429 m -532.923 551.253 l -3.023 w 0 G S -532.923 551.253 m -532.629 551.135 l -3.023 w 0 G S -532.629 551.135 m -532.335 551.018 l -3.023 w 0 G S -532.335 551.018 m -532.1 550.9 l -3.023 w 0 G S -532.1 550.9 m -531.806 550.782 l -3.023 w 0 G S -531.806 550.782 m -531.571 550.665 l -3.023 w 0 G S -531.571 550.665 m -531.276 550.547 l -3.023 w 0 G S -531.276 550.547 m -530.982 550.429 l -3.023 w 0 G S -530.982 550.429 m -530.747 550.371 l -3.023 w 0 G S -530.747 550.371 m -530.453 550.253 l -3.023 w 0 G S -530.453 550.253 m -530.159 550.135 l -3.023 w 0 G S -530.159 550.135 m -529.923 550.077 l -3.023 w 0 G S -529.923 550.077 m -529.629 549.959 l -3.023 w 0 G S -529.629 549.959 m -529.335 549.9 l -3.023 w 0 G S -529.335 549.9 m -529.041 549.841 l -3.023 w 0 G S -529.041 549.841 m -528.747 549.724 l -3.023 w 0 G S -528.747 549.724 m -528.512 549.665 l -3.023 w 0 G S -528.512 549.665 m -528.218 549.606 l -3.023 w 0 G S -528.218 549.606 m -527.923 549.547 l -3.023 w 0 G S -527.923 549.547 m -527.629 549.488 l -3.023 w 0 G S -527.629 549.488 m -527.335 549.429 l -3.023 w 0 G S -527.335 549.429 m -527.041 549.371 l -3.023 w 0 G S -527.041 549.371 m -526.747 549.312 l -3.023 w 0 G S -526.747 549.312 m -526.453 549.253 l -3.023 w 0 G S -526.453 549.253 m -526.159 549.194 l -3.023 w 0 G S -526.159 549.194 m -525.865 549.194 l -3.023 w 0 G S -525.865 549.194 m -525.571 549.135 l -3.023 w 0 G S -525.571 549.135 m -525.276 549.077 l -3.023 w 0 G S -525.276 549.077 m -525.041 549.077 l -3.023 w 0 G S -525.041 549.077 m -524.747 549.077 l -3.023 w 0 G S -524.747 549.077 m -524.453 549.018 l -3.023 w 0 G S -524.453 549.018 m -524.159 549.018 l -3.023 w 0 G S -524.159 549.018 m -523.865 549.018 l -3.023 w 0 G S -523.865 549.018 m -523.571 549.018 l -3.023 w 0 G S -523.571 549.018 m -523.276 549.018 l -3.023 w 0 G S -523.276 549.018 m -522.982 549.018 l -3.023 w 0 G S -522.982 549.018 m -522.688 549.018 l -3.023 w 0 G S -522.688 549.018 m -522.394 549.018 l -3.023 w 0 G S -522.394 549.018 m -522.1 549.018 l -3.023 w 0 G S -522.1 549.018 m -521.806 549.018 l -3.023 w 0 G S -521.806 549.018 m -521.512 549.018 l -3.023 w 0 G S -521.512 549.018 m -521.218 549.077 l -3.023 w 0 G S -521.218 549.077 m -520.923 549.077 l -3.023 w 0 G S -520.923 549.077 m -520.629 549.135 l -3.023 w 0 G S -520.629 549.135 m -520.335 549.135 l -3.023 w 0 G S -520.335 549.135 m -520.041 549.194 l -3.023 w 0 G S -520.041 549.194 m -519.747 549.253 l -3.023 w 0 G S -519.747 549.253 m -519.453 549.253 l -3.023 w 0 G S -519.453 549.253 m -519.159 549.312 l -3.023 w 0 G S -519.159 549.312 m -518.865 549.371 l -3.023 w 0 G S -518.865 549.371 m -518.571 549.429 l -3.023 w 0 G S -518.571 549.429 m -518.276 549.488 l -3.023 w 0 G S -518.276 549.488 m -517.982 549.547 l -3.023 w 0 G S -517.982 549.547 m -517.747 549.606 l -3.023 w 0 G S -517.747 549.606 m -517.453 549.665 l -3.023 w 0 G S -517.453 549.665 m -517.159 549.782 l -3.023 w 0 G S -517.159 549.782 m -516.865 549.841 l -3.023 w 0 G S -516.865 549.841 m -516.571 549.9 l -3.023 w 0 G S -516.571 549.9 m -516.276 550.018 l -3.023 w 0 G S -516.276 550.018 m -516.041 550.077 l -3.023 w 0 G S -516.041 550.077 m -515.747 550.194 l -3.023 w 0 G S -515.747 550.194 m -515.453 550.312 l -3.023 w 0 G S -515.453 550.312 m -515.218 550.371 l -3.023 w 0 G S -515.218 550.371 m -514.923 550.488 l -3.023 w 0 G S -514.923 550.488 m -514.629 550.606 l -3.023 w 0 G S -514.629 550.606 m -514.394 550.724 l -3.023 w 0 G S -514.394 550.724 m -514.1 550.841 l -3.023 w 0 G S -514.1 550.841 m -513.806 550.959 l -3.023 w 0 G S -513.806 550.959 m -513.571 551.077 l -3.023 w 0 G S -513.571 551.077 m -513.276 551.194 l -3.023 w 0 G S -513.276 551.194 m -513.041 551.312 l -3.023 w 0 G S -513.041 551.312 m -512.747 551.429 l -3.023 w 0 G S -512.747 551.429 m -512.512 551.606 l -3.023 w 0 G S -512.512 551.606 m -512.276 551.724 l -3.023 w 0 G S -512.276 551.724 m -511.982 551.9 l -3.023 w 0 G S -511.982 551.9 m -511.747 552.018 l -3.023 w 0 G S -511.747 552.018 m -511.512 552.194 l -3.023 w 0 G S -511.512 552.194 m -511.218 552.312 l -3.023 w 0 G S -511.218 552.312 m -510.982 552.488 l -3.023 w 0 G S -510.982 552.488 m -510.747 552.606 l -3.023 w 0 G S -510.747 552.606 m -510.512 552.782 l -3.023 w 0 G S -510.512 552.782 m -510.276 552.959 l -3.023 w 0 G S -510.276 552.959 m -509.982 553.135 l -3.023 w 0 G S -509.982 553.135 m -509.747 553.312 l -3.023 w 0 G S -509.747 553.312 m -509.512 553.488 l -3.023 w 0 G S -509.512 553.488 m -509.747 553.665 l -3.023 w 0 G S -509.747 553.665 m -509.982 553.841 l -3.023 w 0 G S -509.982 553.841 m -510.218 554.018 l -3.023 w 0 G S -510.218 554.018 m -510.453 554.135 l -3.023 w 0 G S -510.453 554.135 m -510.688 554.312 l -3.023 w 0 G S -510.688 554.312 m -510.982 554.488 l -3.023 w 0 G S -510.982 554.488 m -511.218 554.665 l -3.023 w 0 G S -511.218 554.665 m -511.453 554.782 l -3.023 w 0 G S -511.453 554.782 m -511.688 554.959 l -3.023 w 0 G S -511.688 554.959 m -511.982 555.077 l -3.023 w 0 G S -511.982 555.077 m -512.218 555.253 l -3.023 w 0 G S -512.218 555.253 m -512.453 555.371 l -3.023 w 0 G S -512.453 555.371 m -512.747 555.488 l -3.023 w 0 G S -512.747 555.488 m -512.982 555.665 l -3.023 w 0 G S -512.982 555.665 m -513.276 555.782 l -3.023 w 0 G S -513.276 555.782 m -513.512 555.9 l -3.023 w 0 G S -513.512 555.9 m -513.806 556.018 l -3.023 w 0 G S -513.806 556.018 m -514.041 556.135 l -3.023 w 0 G S -514.041 556.135 m -514.335 556.253 l -3.023 w 0 G S -514.335 556.253 m -514.629 556.371 l -3.023 w 0 G S -514.629 556.371 m -514.865 556.488 l -3.023 w 0 G S -514.865 556.488 m -515.159 556.547 l -3.023 w 0 G S -515.159 556.547 m -515.453 556.665 l -3.023 w 0 G S -515.453 556.665 m -515.688 556.782 l -3.023 w 0 G S -515.688 556.782 m -515.982 556.841 l -3.023 w 0 G S -515.982 556.841 m -516.276 556.959 l -3.023 w 0 G S -516.276 556.959 m -516.571 557.018 l -3.023 w 0 G S -516.571 557.018 m -516.806 557.135 l -3.023 w 0 G S -516.806 557.135 m -517.1 557.194 l -3.023 w 0 G S -517.1 557.194 m -517.394 557.253 l -3.023 w 0 G S -517.394 557.253 m -517.688 557.371 l -3.023 w 0 G S -517.688 557.371 m -517.982 557.429 l -3.023 w 0 G S -517.982 557.429 m -518.276 557.488 l -3.023 w 0 G S -518.276 557.488 m -518.571 557.547 l -3.023 w 0 G S -518.571 557.547 m -518.806 557.606 l -3.023 w 0 G S -518.806 557.606 m -519.1 557.665 l -3.023 w 0 G S -519.1 557.665 m -519.394 557.724 l -3.023 w 0 G S -519.394 557.724 m -519.688 557.724 l -3.023 w 0 G S -519.688 557.724 m -519.982 557.782 l -3.023 w 0 G S -519.982 557.782 m -520.276 557.841 l -3.023 w 0 G S -520.276 557.841 m -520.571 557.841 l -3.023 w 0 G S -520.571 557.841 m -520.865 557.9 l -3.023 w 0 G S -520.865 557.9 m -521.159 557.9 l -3.023 w 0 G S -521.159 557.9 m -521.453 557.959 l -3.023 w 0 G S -521.453 557.959 m -521.747 557.959 l -3.023 w 0 G S -521.747 557.959 m -522.041 557.959 l -3.023 w 0 G S -522.041 557.959 m -522.335 557.959 l -3.023 w 0 G S -522.335 557.959 m -522.629 557.959 l -3.023 w 0 G S -522.629 557.959 m -522.923 557.959 l -3.023 w 0 G S -522.923 557.959 m -523.218 557.959 l -3.023 w 0 G S -523.218 557.959 m -523.512 557.959 l -3.023 w 0 G S -523.512 557.959 m -523.806 557.959 l -3.023 w 0 G S -523.806 557.959 m -524.1 557.959 l -3.023 w 0 G S -524.1 557.959 m -524.394 557.959 l -3.023 w 0 G S -524.394 557.959 m -524.688 557.9 l -3.023 w 0 G S -524.688 557.9 m -524.982 557.9 l -3.023 w 0 G S -524.982 557.9 m -525.276 557.9 l -3.023 w 0 G S -525.276 557.9 m -525.571 557.841 l -3.023 w 0 G S -525.571 557.841 m -525.865 557.782 l -3.023 w 0 G S -525.865 557.782 m -526.159 557.782 l -3.023 w 0 G S -526.159 557.782 m -526.453 557.724 l -3.023 w 0 G S -526.453 557.724 m -526.747 557.665 l -3.023 w 0 G S -526.747 557.665 m -527.041 557.606 l -3.023 w 0 G S -527.041 557.606 m -527.335 557.547 l -3.023 w 0 G S -527.335 557.547 m -527.571 557.488 l -3.023 w 0 G S -527.571 557.488 m -527.865 557.429 l -3.023 w 0 G S -527.865 557.429 m -528.159 557.371 l -3.023 w 0 G S -528.159 557.371 m -528.453 557.312 l -3.023 w 0 G S -528.453 557.312 m -528.747 557.253 l -3.023 w 0 G S -528.747 557.253 m -529.041 557.194 l -3.023 w 0 G S -529.041 557.194 m -529.276 557.077 l -3.023 w 0 G S -529.276 557.077 m -529.571 557.018 l -3.023 w 0 G S -529.571 557.018 m -529.865 556.9 l -3.023 w 0 G S -529.865 556.9 m -530.159 556.841 l -3.023 w 0 G S -530.159 556.841 m -530.453 556.724 l -3.023 w 0 G S -530.453 556.724 m -530.688 556.606 l -3.023 w 0 G S -530.688 556.606 m -530.982 556.547 l -3.023 w 0 G S -530.982 556.547 m -531.276 556.429 l -3.023 w 0 G S -531.276 556.429 m -531.512 556.312 l -3.023 w 0 G S -531.512 556.312 m -531.806 556.194 l -3.023 w 0 G S -531.806 556.194 m -532.041 556.077 l -3.023 w 0 G S -532.041 556.077 m -532.335 555.959 l -3.023 w 0 G S -532.335 555.959 m -532.629 555.841 l -3.023 w 0 G S -532.629 555.841 m -532.865 555.724 l -3.023 w 0 G S -532.865 555.724 m -533.1 555.606 l -3.023 w 0 G S -533.1 555.606 m -533.394 555.429 l -3.023 w 0 G S -533.394 555.429 m -533.629 555.312 l -3.023 w 0 G S -533.629 555.312 m -533.923 555.194 l -3.023 w 0 G S -533.923 555.194 m -534.159 555.018 l -3.023 w 0 G S -534.159 555.018 m -534.394 554.9 l -3.023 w 0 G S -534.394 554.9 m -534.688 554.724 l -3.023 w 0 G S -534.688 554.724 m -534.923 554.606 l -3.023 w 0 G S -534.923 554.606 m -535.159 554.429 l -3.023 w 0 G S -535.159 554.429 m -535.394 554.253 l -3.023 w 0 G S -535.394 554.253 m -535.688 554.077 l -3.023 w 0 G S -535.688 554.077 m -535.923 553.959 l -3.023 w 0 G S -535.923 553.959 m -536.159 553.782 l -3.023 w 0 G S -536.159 553.782 m -536.394 553.606 l -3.023 w 0 G S -536.394 553.606 m -536.629 553.429 l -3.023 w 0 G S -536.629 553.429 m -536.865 553.253 l -3.023 w 0 G S -536.865 553.253 m -537.1 553.077 l -3.023 w 0 G S -537.1 553.077 m -537.335 552.841 l -3.023 w 0 G S -537.335 552.841 m -537.512 552.665 l -3.023 w 0 G S -537.512 552.665 m -537.747 552.488 l -3.023 w 0 G S -537.747 552.488 m -537.982 552.312 l -3.023 w 0 G S -537.982 552.312 m -538.218 552.077 l -3.023 w 0 G S -538.218 552.077 m -538.394 551.9 l -3.023 w 0 G S -538.394 551.9 m -538.629 551.665 l -3.023 w 0 G S -538.629 551.665 m -538.806 551.488 l -3.023 w 0 G S -538.806 551.488 m -539.041 551.253 l -3.023 w 0 G S -539.041 551.253 m -539.218 551.077 l -3.023 w 0 G S -539.218 551.077 m -539.453 550.841 l -3.023 w 0 G S -539.453 550.841 m -539.629 550.665 l -3.023 w 0 G S -539.629 550.665 m -539.865 550.429 l -3.023 w 0 G S -539.865 550.429 m -540.041 550.194 l -3.023 w 0 G S -540.041 550.194 m -540.218 549.959 l -3.023 w 0 G S -540.218 549.959 m -540.394 549.724 l -3.023 w 0 G S -540.394 549.724 m -540.629 549.547 l -3.023 w 0 G S -540.629 549.547 m -540.806 549.312 l -3.023 w 0 G S -540.806 549.312 m -540.982 549.077 l -3.023 w 0 G S -540.982 549.077 m -541.159 548.841 l -3.023 w 0 G S -541.159 548.841 m -541.335 548.606 l -3.023 w 0 G S -541.335 548.606 m -541.453 548.371 l -3.023 w 0 G S -541.453 548.371 m -541.629 548.077 l -3.023 w 0 G S -541.629 548.077 m -541.806 547.841 l -3.023 w 0 G S -541.806 547.841 m -541.982 547.606 l -3.023 w 0 G S -541.982 547.606 m -542.1 547.371 l -3.023 w 0 G S -542.1 547.371 m -542.276 547.135 l -3.023 w 0 G S -542.276 547.135 m -542.453 546.841 l -3.023 w 0 G S -542.453 546.841 m -542.571 546.606 l -3.023 w 0 G S -542.571 546.606 m -542.747 546.371 l -3.023 w 0 G S -542.747 546.371 m -542.865 546.077 l -3.023 w 0 G S -542.865 546.077 m -542.982 545.841 l -3.023 w 0 G S -542.982 545.841 m -543.1 545.547 l -3.023 w 0 G S -543.1 545.547 m -543.276 545.312 l -3.023 w 0 G S -543.276 545.312 m -543.394 545.018 l -3.023 w 0 G S -543.394 545.018 m -543.512 544.782 l -3.023 w 0 G S -543.512 544.782 m -543.629 544.488 l -3.023 w 0 G S -543.629 544.488 m -543.747 544.253 l -3.023 w 0 G S -543.747 544.253 m -543.865 543.959 l -3.023 w 0 G S -543.865 543.959 m -543.982 543.665 l -3.023 w 0 G S -543.982 543.665 m -544.041 543.429 l -3.023 w 0 G S -544.041 543.429 m -544.159 543.135 l -3.023 w 0 G S -544.159 543.135 m -544.276 542.841 l -3.023 w 0 G S -544.276 542.841 m -544.335 542.606 l -3.023 w 0 G S -544.335 542.606 m -544.453 542.312 l -3.023 w 0 G S -544.453 542.312 m -544.571 542.018 l -3.023 w 0 G S -544.571 542.018 m -544.629 541.724 l -3.023 w 0 G S -544.629 541.724 m -544.688 541.429 l -3.023 w 0 G S -544.688 541.429 m -544.806 541.194 l -3.023 w 0 G S -544.806 541.194 m -544.865 540.9 l -3.023 w 0 G S -544.865 540.9 m -544.923 540.606 l -3.023 w 0 G S -544.923 540.606 m -544.982 540.312 l -3.023 w 0 G S -544.982 540.312 m -545.041 540.018 l -3.023 w 0 G S -545.041 540.018 m -545.1 539.724 l -3.023 w 0 G S -545.1 539.724 m -545.159 539.429 l -3.023 w 0 G S -545.159 539.429 m -545.218 539.135 l -3.023 w 0 G S -545.218 539.135 m -545.276 538.9 l -3.023 w 0 G S -545.276 538.9 m -545.276 538.606 l -3.023 w 0 G S -545.276 538.606 m -545.335 538.312 l -3.023 w 0 G S -545.335 538.312 m -545.394 538.018 l -3.023 w 0 G S -545.394 538.018 m -545.394 537.724 l -3.023 w 0 G S -545.394 537.724 m -545.453 537.429 l -3.023 w 0 G S -545.453 537.429 m -545.453 537.135 l -3.023 w 0 G S -545.453 537.135 m -545.453 536.841 l -3.023 w 0 G S -545.453 536.841 m -545.512 536.547 l -3.023 w 0 G S -545.512 536.547 m -545.512 536.253 l -3.023 w 0 G S -545.512 536.253 m -545.512 535.959 l -3.023 w 0 G S -545.512 535.959 m -545.512 535.665 l -3.023 w 0 G S -545.512 535.665 m -545.512 535.371 l -3.023 w 0 G S -545.512 535.371 m -545.512 535.077 l -3.023 w 0 G S -545.512 535.077 m -545.512 534.782 l -3.023 w 0 G S -545.512 534.782 m -545.512 534.488 l -3.023 w 0 G S -545.512 534.488 m -545.453 534.194 l -3.023 w 0 G S -545.453 534.194 m -545.453 533.9 l -3.023 w 0 G S -545.453 533.9 m -545.453 533.606 l -3.023 w 0 G S -545.453 533.606 m -545.394 533.312 l -3.023 w 0 G S -545.394 533.312 m -545.394 533.018 l -3.023 w 0 G S -545.394 533.018 m -545.335 532.724 l -3.023 w 0 G S -545.335 532.724 m -545.276 532.429 l -3.023 w 0 G S -545.276 532.429 m -545.276 532.135 l -3.023 w 0 G S -545.276 532.135 m -545.218 531.841 l -3.023 w 0 G S -545.218 531.841 m -545.159 531.547 l -3.023 w 0 G S -545.159 531.547 m -545.1 531.253 l -3.023 w 0 G S -545.1 531.253 m -545.041 530.959 l -3.023 w 0 G S -545.041 530.959 m -544.982 530.665 l -3.023 w 0 G S -544.982 530.665 m -544.923 530.429 l -3.023 w 0 G S -544.923 530.429 m -544.865 530.135 l -3.023 w 0 G S -544.865 530.135 m -544.806 529.841 l -3.023 w 0 G S -544.806 529.841 m -544.688 529.547 l -3.023 w 0 G S -544.688 529.547 m -544.629 529.253 l -3.023 w 0 G S -544.629 529.253 m -544.571 528.959 l -3.023 w 0 G S -544.571 528.959 m -544.453 528.724 l -3.023 w 0 G S -544.453 528.724 m -544.394 528.429 l -3.023 w 0 G S -544.394 528.429 m -544.276 528.135 l -3.023 w 0 G S -544.276 528.135 m -544.159 527.841 l -3.023 w 0 G S -544.159 527.841 m -544.1 527.606 l -3.023 w 0 G S -544.1 527.606 m -543.982 527.312 l -3.023 w 0 G S -543.982 527.312 m -543.865 527.018 l -3.023 w 0 G S -543.865 527.018 m -543.747 526.782 l -3.023 w 0 G S -543.747 526.782 m -543.629 526.488 l -3.023 w 0 G S -543.629 526.488 m -543.512 526.253 l -3.023 w 0 G S -543.512 526.253 m -543.394 525.959 l -3.023 w 0 G S -543.394 525.959 m -543.276 525.724 l -3.023 w 0 G S -543.276 525.724 m -543.159 525.429 l -3.023 w 0 G S -543.159 525.429 m -542.982 525.194 l -3.023 w 0 G S -542.982 525.194 m -542.865 524.9 l -3.023 w 0 G S -542.865 524.9 m -542.747 524.665 l -3.023 w 0 G S -542.747 524.665 m -542.571 524.429 l -3.023 w 0 G S -542.571 524.429 m -542.453 524.135 l -3.023 w 0 G S -542.453 524.135 m -542.276 523.9 l -3.023 w 0 G S -542.276 523.9 m -542.159 523.665 l -3.023 w 0 G S -542.159 523.665 m -541.982 523.371 l -3.023 w 0 G S -541.982 523.371 m -541.806 523.135 l -3.023 w 0 G S -541.806 523.135 m -541.688 522.9 l -3.023 w 0 G S -541.688 522.9 m -541.512 522.665 l -3.023 w 0 G S -541.512 522.665 m -541.335 522.429 l -3.023 w 0 G S -541.335 522.429 m -541.159 522.194 l -3.023 w 0 G S -541.159 522.194 m -540.982 521.959 l -3.023 w 0 G S -540.982 521.959 m -540.806 521.724 l -3.023 w 0 G S -540.806 521.724 m -540.629 521.488 l -3.023 w 0 G S -540.629 521.488 m -540.453 521.253 l -3.023 w 0 G S -540.453 521.253 m -540.276 521.018 l -3.023 w 0 G S -540.276 521.018 m -540.041 520.782 l -3.023 w 0 G S -540.041 520.782 m -539.865 520.606 l -3.023 w 0 G S -539.865 520.606 m -539.688 520.371 l -3.023 w 0 G S -539.688 520.371 m -539.453 520.135 l -3.023 w 0 G S -539.453 520.135 m -539.276 519.959 l -3.023 w 0 G S -539.276 519.959 m -539.041 519.724 l -3.023 w 0 G S -539.041 519.724 m -538.865 519.488 l -3.023 w 0 G S -538.865 519.488 m -538.629 519.312 l -3.023 w 0 G S -538.629 519.312 m -538.453 519.077 l -3.023 w 0 G S -538.453 519.077 m -538.218 518.9 l -3.023 w 0 G S -538.218 518.9 m -537.982 518.724 l -3.023 w 0 G S -537.982 518.724 m -537.806 518.488 l -3.023 w 0 G S -537.806 518.488 m -537.571 518.312 l -3.023 w 0 G S -537.571 518.312 m -537.335 518.135 l -3.023 w 0 G S -537.335 518.135 m -537.1 517.959 l -3.023 w 0 G S -537.1 517.959 m -536.865 517.782 l -3.023 w 0 G S -536.865 517.782 m -536.629 517.606 l -3.023 w 0 G S -536.629 517.606 m -536.394 517.429 l -3.023 w 0 G S -536.394 517.429 m -536.159 517.253 l -3.023 w 0 G S -536.159 517.253 m -535.923 517.077 l -3.023 w 0 G S -535.923 517.077 m -535.688 516.9 l -3.023 w 0 G S -535.688 516.9 m -535.453 516.724 l -3.023 w 0 G S -535.453 516.724 m -535.218 516.547 l -3.023 w 0 G S -535.218 516.547 m -534.923 516.429 l -3.023 w 0 G S -534.923 516.429 m -534.688 516.253 l -3.023 w 0 G S -534.688 516.253 m -534.453 516.135 l -3.023 w 0 G S -534.453 516.135 m -534.218 515.959 l -3.023 w 0 G S -534.218 515.959 m -533.923 515.841 l -3.023 w 0 G S -533.923 515.841 m -533.688 515.665 l -3.023 w 0 G S -533.688 515.665 m -533.394 515.547 l -3.023 w 0 G S -533.394 515.547 m -533.159 515.429 l -3.023 w 0 G S -533.159 515.429 m -532.923 515.253 l -3.023 w 0 G S -532.923 515.253 m -532.629 515.135 l -3.023 w 0 G S -532.629 515.135 m -532.335 515.018 l -3.023 w 0 G S -532.335 515.018 m -532.1 514.9 l -3.023 w 0 G S -532.1 514.9 m -531.806 514.782 l -3.023 w 0 G S -531.806 514.782 m -531.571 514.665 l -3.023 w 0 G S -531.571 514.665 m -531.276 514.547 l -3.023 w 0 G S -531.276 514.547 m -530.982 514.429 l -3.023 w 0 G S -530.982 514.429 m -530.747 514.371 l -3.023 w 0 G S -530.747 514.371 m -530.453 514.253 l -3.023 w 0 G S -530.453 514.253 m -530.159 514.135 l -3.023 w 0 G S -530.159 514.135 m -529.923 514.077 l -3.023 w 0 G S -529.923 514.077 m -529.629 513.959 l -3.023 w 0 G S -529.629 513.959 m -529.335 513.9 l -3.023 w 0 G S -529.335 513.9 m -529.041 513.841 l -3.023 w 0 G S -529.041 513.841 m -528.747 513.724 l -3.023 w 0 G S -528.747 513.724 m -528.512 513.665 l -3.023 w 0 G S -528.512 513.665 m -528.218 513.606 l -3.023 w 0 G S -528.218 513.606 m -527.923 513.547 l -3.023 w 0 G S -527.923 513.547 m -527.629 513.488 l -3.023 w 0 G S -527.629 513.488 m -527.335 513.429 l -3.023 w 0 G S -527.335 513.429 m -527.041 513.371 l -3.023 w 0 G S -527.041 513.371 m -526.747 513.312 l -3.023 w 0 G S -526.747 513.312 m -526.453 513.253 l -3.023 w 0 G S -526.453 513.253 m -526.159 513.194 l -3.023 w 0 G S -526.159 513.194 m -525.865 513.194 l -3.023 w 0 G S -525.865 513.194 m -525.571 513.135 l -3.023 w 0 G S -525.571 513.135 m -525.276 513.077 l -3.023 w 0 G S -525.276 513.077 m -525.041 513.077 l -3.023 w 0 G S -525.041 513.077 m -524.747 513.077 l -3.023 w 0 G S -524.747 513.077 m -524.453 513.018 l -3.023 w 0 G S -524.453 513.018 m -524.159 513.018 l -3.023 w 0 G S -524.159 513.018 m -523.865 513.018 l -3.023 w 0 G S -523.865 513.018 m -523.571 513.018 l -3.023 w 0 G S -523.571 513.018 m -523.276 513.018 l -3.023 w 0 G S -523.276 513.018 m -522.982 513.018 l -3.023 w 0 G S -522.982 513.018 m -522.688 513.018 l -3.023 w 0 G S -522.688 513.018 m -522.394 513.018 l -3.023 w 0 G S -522.394 513.018 m -522.1 513.018 l -3.023 w 0 G S -522.1 513.018 m -521.806 513.018 l -3.023 w 0 G S -521.806 513.018 m -521.512 513.018 l -3.023 w 0 G S -521.512 513.018 m -521.218 513.077 l -3.023 w 0 G S -521.218 513.077 m -520.923 513.077 l -3.023 w 0 G S -520.923 513.077 m -520.629 513.135 l -3.023 w 0 G S -520.629 513.135 m -520.335 513.135 l -3.023 w 0 G S -520.335 513.135 m -520.041 513.194 l -3.023 w 0 G S -520.041 513.194 m -519.747 513.253 l -3.023 w 0 G S -519.747 513.253 m -519.453 513.253 l -3.023 w 0 G S -519.453 513.253 m -519.159 513.312 l -3.023 w 0 G S -519.159 513.312 m -518.865 513.371 l -3.023 w 0 G S -518.865 513.371 m -518.571 513.429 l -3.023 w 0 G S -518.571 513.429 m -518.276 513.488 l -3.023 w 0 G S -518.276 513.488 m -517.982 513.547 l -3.023 w 0 G S -517.982 513.547 m -517.747 513.606 l -3.023 w 0 G S -517.747 513.606 m -517.453 513.665 l -3.023 w 0 G S -517.453 513.665 m -517.159 513.782 l -3.023 w 0 G S -517.159 513.782 m -516.865 513.841 l -3.023 w 0 G S -516.865 513.841 m -516.571 513.9 l -3.023 w 0 G S -516.571 513.9 m -516.276 514.018 l -3.023 w 0 G S -516.276 514.018 m -516.041 514.077 l -3.023 w 0 G S -516.041 514.077 m -515.747 514.194 l -3.023 w 0 G S -515.747 514.194 m -515.453 514.312 l -3.023 w 0 G S -515.453 514.312 m -515.218 514.371 l -3.023 w 0 G S -515.218 514.371 m -514.923 514.488 l -3.023 w 0 G S -514.923 514.488 m -514.629 514.606 l -3.023 w 0 G S -514.629 514.606 m -514.394 514.724 l -3.023 w 0 G S -514.394 514.724 m -514.1 514.841 l -3.023 w 0 G S -514.1 514.841 m -513.806 514.959 l -3.023 w 0 G S -513.806 514.959 m -513.571 515.077 l -3.023 w 0 G S -513.571 515.077 m -513.276 515.194 l -3.023 w 0 G S -513.276 515.194 m -513.041 515.312 l -3.023 w 0 G S -513.041 515.312 m -512.747 515.429 l -3.023 w 0 G S -512.747 515.429 m -512.512 515.606 l -3.023 w 0 G S -512.512 515.606 m -512.276 515.724 l -3.023 w 0 G S -512.276 515.724 m -511.982 515.9 l -3.023 w 0 G S -511.982 515.9 m -511.747 516.018 l -3.023 w 0 G S -511.747 516.018 m -511.512 516.194 l -3.023 w 0 G S -511.512 516.194 m -511.218 516.312 l -3.023 w 0 G S -511.218 516.312 m -510.982 516.488 l -3.023 w 0 G S -510.982 516.488 m -510.747 516.606 l -3.023 w 0 G S -510.747 516.606 m -510.512 516.782 l -3.023 w 0 G S -510.512 516.782 m -510.276 516.959 l -3.023 w 0 G S -510.276 516.959 m -509.982 517.135 l -3.023 w 0 G S -509.982 517.135 m -509.747 517.312 l -3.023 w 0 G S -509.747 517.312 m -509.512 517.488 l -3.023 w 0 G S -509.512 517.488 m -509.747 517.665 l -3.023 w 0 G S -509.747 517.665 m -509.982 517.841 l -3.023 w 0 G S -509.982 517.841 m -510.218 518.018 l -3.023 w 0 G S -510.218 518.018 m -510.453 518.135 l -3.023 w 0 G S -510.453 518.135 m -510.688 518.312 l -3.023 w 0 G S -510.688 518.312 m -510.982 518.488 l -3.023 w 0 G S -510.982 518.488 m -511.218 518.665 l -3.023 w 0 G S -511.218 518.665 m -511.453 518.782 l -3.023 w 0 G S -511.453 518.782 m -511.688 518.959 l -3.023 w 0 G S -511.688 518.959 m -511.982 519.077 l -3.023 w 0 G S -511.982 519.077 m -512.218 519.253 l -3.023 w 0 G S -512.218 519.253 m -512.453 519.371 l -3.023 w 0 G S -512.453 519.371 m -512.747 519.488 l -3.023 w 0 G S -512.747 519.488 m -512.982 519.665 l -3.023 w 0 G S -512.982 519.665 m -513.276 519.782 l -3.023 w 0 G S -513.276 519.782 m -513.512 519.9 l -3.023 w 0 G S -513.512 519.9 m -513.806 520.018 l -3.023 w 0 G S -513.806 520.018 m -514.041 520.135 l -3.023 w 0 G S -514.041 520.135 m -514.335 520.253 l -3.023 w 0 G S -514.335 520.253 m -514.629 520.371 l -3.023 w 0 G S -514.629 520.371 m -514.865 520.488 l -3.023 w 0 G S -514.865 520.488 m -515.159 520.547 l -3.023 w 0 G S -515.159 520.547 m -515.453 520.665 l -3.023 w 0 G S -515.453 520.665 m -515.688 520.782 l -3.023 w 0 G S -515.688 520.782 m -515.982 520.841 l -3.023 w 0 G S -515.982 520.841 m -516.276 520.959 l -3.023 w 0 G S -516.276 520.959 m -516.571 521.018 l -3.023 w 0 G S -516.571 521.018 m -516.806 521.135 l -3.023 w 0 G S -516.806 521.135 m -517.1 521.194 l -3.023 w 0 G S -517.1 521.194 m -517.394 521.253 l -3.023 w 0 G S -517.394 521.253 m -517.688 521.371 l -3.023 w 0 G S -517.688 521.371 m -517.982 521.429 l -3.023 w 0 G S -517.982 521.429 m -518.276 521.488 l -3.023 w 0 G S -518.276 521.488 m -518.571 521.547 l -3.023 w 0 G S -518.571 521.547 m -518.806 521.606 l -3.023 w 0 G S -518.806 521.606 m -519.1 521.665 l -3.023 w 0 G S -519.1 521.665 m -519.394 521.724 l -3.023 w 0 G S -519.394 521.724 m -519.688 521.724 l -3.023 w 0 G S -519.688 521.724 m -519.982 521.782 l -3.023 w 0 G S -519.982 521.782 m -520.276 521.841 l -3.023 w 0 G S -520.276 521.841 m -520.571 521.841 l -3.023 w 0 G S -520.571 521.841 m -520.865 521.9 l -3.023 w 0 G S -520.865 521.9 m -521.159 521.9 l -3.023 w 0 G S -521.159 521.9 m -521.453 521.959 l -3.023 w 0 G S -521.453 521.959 m -521.747 521.959 l -3.023 w 0 G S -521.747 521.959 m -522.041 521.959 l -3.023 w 0 G S -522.041 521.959 m -522.335 521.959 l -3.023 w 0 G S -522.335 521.959 m -522.629 521.959 l -3.023 w 0 G S -522.629 521.959 m -522.923 521.959 l -3.023 w 0 G S -522.923 521.959 m -523.218 521.959 l -3.023 w 0 G S -523.218 521.959 m -523.512 521.959 l -3.023 w 0 G S -523.512 521.959 m -523.806 521.959 l -3.023 w 0 G S -523.806 521.959 m -524.1 521.959 l -3.023 w 0 G S -524.1 521.959 m -524.394 521.959 l -3.023 w 0 G S -524.394 521.959 m -524.688 521.9 l -3.023 w 0 G S -524.688 521.9 m -524.982 521.9 l -3.023 w 0 G S -524.982 521.9 m -525.276 521.9 l -3.023 w 0 G S -525.276 521.9 m -525.571 521.841 l -3.023 w 0 G S -525.571 521.841 m -525.865 521.782 l -3.023 w 0 G S -525.865 521.782 m -526.159 521.782 l -3.023 w 0 G S -526.159 521.782 m -526.453 521.724 l -3.023 w 0 G S -526.453 521.724 m -526.747 521.665 l -3.023 w 0 G S -526.747 521.665 m -527.041 521.606 l -3.023 w 0 G S -527.041 521.606 m -527.335 521.547 l -3.023 w 0 G S -527.335 521.547 m -527.571 521.488 l -3.023 w 0 G S -527.571 521.488 m -527.865 521.429 l -3.023 w 0 G S -527.865 521.429 m -528.159 521.371 l -3.023 w 0 G S -528.159 521.371 m -528.453 521.312 l -3.023 w 0 G S -528.453 521.312 m -528.747 521.253 l -3.023 w 0 G S -528.747 521.253 m -529.041 521.194 l -3.023 w 0 G S -529.041 521.194 m -529.276 521.077 l -3.023 w 0 G S -529.276 521.077 m -529.571 521.018 l -3.023 w 0 G S -529.571 521.018 m -529.865 520.9 l -3.023 w 0 G S -529.865 520.9 m -530.159 520.841 l -3.023 w 0 G S -530.159 520.841 m -530.453 520.724 l -3.023 w 0 G S -530.453 520.724 m -530.688 520.606 l -3.023 w 0 G S -530.688 520.606 m -530.982 520.547 l -3.023 w 0 G S -530.982 520.547 m -531.276 520.429 l -3.023 w 0 G S -531.276 520.429 m -531.512 520.312 l -3.023 w 0 G S -531.512 520.312 m -531.806 520.194 l -3.023 w 0 G S -531.806 520.194 m -532.041 520.077 l -3.023 w 0 G S -532.041 520.077 m -532.335 519.959 l -3.023 w 0 G S -532.335 519.959 m -532.629 519.841 l -3.023 w 0 G S -532.629 519.841 m -532.865 519.724 l -3.023 w 0 G S -532.865 519.724 m -533.1 519.606 l -3.023 w 0 G S -533.1 519.606 m -533.394 519.429 l -3.023 w 0 G S -533.394 519.429 m -533.629 519.312 l -3.023 w 0 G S -533.629 519.312 m -533.923 519.194 l -3.023 w 0 G S -533.923 519.194 m -534.159 519.018 l -3.023 w 0 G S -534.159 519.018 m -534.394 518.9 l -3.023 w 0 G S -534.394 518.9 m -534.688 518.724 l -3.023 w 0 G S -534.688 518.724 m -534.923 518.606 l -3.023 w 0 G S -534.923 518.606 m -535.159 518.429 l -3.023 w 0 G S -535.159 518.429 m -535.394 518.253 l -3.023 w 0 G S -535.394 518.253 m -535.688 518.077 l -3.023 w 0 G S -535.688 518.077 m -535.923 517.959 l -3.023 w 0 G S -535.923 517.959 m -536.159 517.782 l -3.023 w 0 G S -536.159 517.782 m -536.394 517.606 l -3.023 w 0 G S -536.394 517.606 m -536.629 517.429 l -3.023 w 0 G S -536.629 517.429 m -536.865 517.253 l -3.023 w 0 G S -536.865 517.253 m -537.1 517.077 l -3.023 w 0 G S -537.1 517.077 m -537.335 516.841 l -3.023 w 0 G S -537.335 516.841 m -537.512 516.665 l -3.023 w 0 G S -537.512 516.665 m -537.747 516.488 l -3.023 w 0 G S -537.747 516.488 m -537.982 516.312 l -3.023 w 0 G S -537.982 516.312 m -538.218 516.077 l -3.023 w 0 G S -538.218 516.077 m -538.394 515.9 l -3.023 w 0 G S -538.394 515.9 m -538.629 515.665 l -3.023 w 0 G S -538.629 515.665 m -538.806 515.488 l -3.023 w 0 G S -538.806 515.488 m -539.041 515.253 l -3.023 w 0 G S -539.041 515.253 m -539.218 515.077 l -3.023 w 0 G S -539.218 515.077 m -539.453 514.841 l -3.023 w 0 G S -539.453 514.841 m -539.629 514.665 l -3.023 w 0 G S -539.629 514.665 m -539.865 514.429 l -3.023 w 0 G S -539.865 514.429 m -540.041 514.194 l -3.023 w 0 G S -540.041 514.194 m -540.218 513.959 l -3.023 w 0 G S -540.218 513.959 m -540.394 513.724 l -3.023 w 0 G S -540.394 513.724 m -540.629 513.547 l -3.023 w 0 G S -540.629 513.547 m -540.806 513.312 l -3.023 w 0 G S -540.806 513.312 m -540.982 513.077 l -3.023 w 0 G S -540.982 513.077 m -541.159 512.841 l -3.023 w 0 G S -541.159 512.841 m -541.335 512.606 l -3.023 w 0 G S -541.335 512.606 m -541.453 512.371 l -3.023 w 0 G S -541.453 512.371 m -541.629 512.077 l -3.023 w 0 G S -541.629 512.077 m -541.806 511.841 l -3.023 w 0 G S -541.806 511.841 m -541.982 511.606 l -3.023 w 0 G S -541.982 511.606 m -542.1 511.371 l -3.023 w 0 G S -542.1 511.371 m -542.276 511.135 l -3.023 w 0 G S -542.276 511.135 m -542.453 510.841 l -3.023 w 0 G S -542.453 510.841 m -542.571 510.606 l -3.023 w 0 G S -542.571 510.606 m -542.747 510.371 l -3.023 w 0 G S -542.747 510.371 m -542.865 510.077 l -3.023 w 0 G S -542.865 510.077 m -542.982 509.841 l -3.023 w 0 G S -542.982 509.841 m -543.1 509.547 l -3.023 w 0 G S -543.1 509.547 m -543.276 509.312 l -3.023 w 0 G S -543.276 509.312 m -543.394 509.018 l -3.023 w 0 G S -543.394 509.018 m -543.512 508.782 l -3.023 w 0 G S -543.512 508.782 m -543.629 508.488 l -3.023 w 0 G S -543.629 508.488 m -543.747 508.253 l -3.023 w 0 G S -543.747 508.253 m -543.865 507.959 l -3.023 w 0 G S -543.865 507.959 m -543.982 507.665 l -3.023 w 0 G S -543.982 507.665 m -544.041 507.429 l -3.023 w 0 G S -544.041 507.429 m -544.159 507.135 l -3.023 w 0 G S -544.159 507.135 m -544.276 506.841 l -3.023 w 0 G S -544.276 506.841 m -544.335 506.606 l -3.023 w 0 G S -544.335 506.606 m -544.453 506.312 l -3.023 w 0 G S -544.453 506.312 m -544.571 506.018 l -3.023 w 0 G S -544.571 506.018 m -544.629 505.724 l -3.023 w 0 G S -544.629 505.724 m -544.688 505.429 l -3.023 w 0 G S -544.688 505.429 m -544.806 505.194 l -3.023 w 0 G S -544.806 505.194 m -544.865 504.9 l -3.023 w 0 G S -544.865 504.9 m -544.923 504.606 l -3.023 w 0 G S -544.923 504.606 m -544.982 504.312 l -3.023 w 0 G S -544.982 504.312 m -545.041 504.018 l -3.023 w 0 G S -545.041 504.018 m -545.1 503.724 l -3.023 w 0 G S -545.1 503.724 m -545.159 503.429 l -3.023 w 0 G S -545.159 503.429 m -545.218 503.135 l -3.023 w 0 G S -545.218 503.135 m -545.276 502.9 l -3.023 w 0 G S -545.276 502.9 m -545.276 502.606 l -3.023 w 0 G S -545.276 502.606 m -545.335 502.312 l -3.023 w 0 G S -545.335 502.312 m -545.394 502.018 l -3.023 w 0 G S -545.394 502.018 m -545.394 501.724 l -3.023 w 0 G S -545.394 501.724 m -545.453 501.429 l -3.023 w 0 G S -545.453 501.429 m -545.453 501.135 l -3.023 w 0 G S -545.453 501.135 m -545.453 500.841 l -3.023 w 0 G S -545.453 500.841 m -545.512 500.547 l -3.023 w 0 G S -545.512 500.547 m -545.512 500.253 l -3.023 w 0 G S -545.512 500.253 m -545.512 499.959 l -3.023 w 0 G S -545.512 499.959 m -545.512 499.665 l -3.023 w 0 G S -545.512 499.665 m -545.512 499.371 l -3.023 w 0 G S -545.512 499.371 m -545.512 499.077 l -3.023 w 0 G S -545.512 499.077 m -545.512 498.782 l -3.023 w 0 G S -545.512 498.782 m -545.512 498.488 l -3.023 w 0 G S -545.512 498.488 m -545.453 498.194 l -3.023 w 0 G S -545.453 498.194 m -545.453 497.9 l -3.023 w 0 G S -545.453 497.9 m -545.453 497.606 l -3.023 w 0 G S -545.453 497.606 m -545.394 497.312 l -3.023 w 0 G S -545.394 497.312 m -545.394 497.018 l -3.023 w 0 G S -545.394 497.018 m -545.335 496.724 l -3.023 w 0 G S -545.335 496.724 m -545.276 496.429 l -3.023 w 0 G S -545.276 496.429 m -545.276 496.135 l -3.023 w 0 G S -545.276 496.135 m -545.218 495.841 l -3.023 w 0 G S -545.218 495.841 m -545.159 495.547 l -3.023 w 0 G S -545.159 495.547 m -545.1 495.253 l -3.023 w 0 G S -545.1 495.253 m -545.041 494.959 l -3.023 w 0 G S -545.041 494.959 m -544.982 494.665 l -3.023 w 0 G S -544.982 494.665 m -544.923 494.429 l -3.023 w 0 G S -544.923 494.429 m -544.865 494.135 l -3.023 w 0 G S -544.865 494.135 m -544.806 493.841 l -3.023 w 0 G S -544.806 493.841 m -544.688 493.547 l -3.023 w 0 G S -544.688 493.547 m -544.629 493.253 l -3.023 w 0 G S -544.629 493.253 m -544.571 492.959 l -3.023 w 0 G S -544.571 492.959 m -544.453 492.724 l -3.023 w 0 G S -544.453 492.724 m -544.394 492.429 l -3.023 w 0 G S -544.394 492.429 m -544.276 492.135 l -3.023 w 0 G S -544.276 492.135 m -544.159 491.841 l -3.023 w 0 G S -544.159 491.841 m -544.1 491.606 l -3.023 w 0 G S -544.1 491.606 m -543.982 491.312 l -3.023 w 0 G S -543.982 491.312 m -543.865 491.018 l -3.023 w 0 G S -543.865 491.018 m -543.747 490.782 l -3.023 w 0 G S -543.747 490.782 m -543.629 490.488 l -3.023 w 0 G S -543.629 490.488 m -543.512 490.253 l -3.023 w 0 G S -543.512 490.253 m -543.394 489.959 l -3.023 w 0 G S -543.394 489.959 m -543.276 489.724 l -3.023 w 0 G S -543.276 489.724 m -543.159 489.429 l -3.023 w 0 G S -543.159 489.429 m -542.982 489.194 l -3.023 w 0 G S -542.982 489.194 m -542.865 488.9 l -3.023 w 0 G S -542.865 488.9 m -542.747 488.665 l -3.023 w 0 G S -542.747 488.665 m -542.571 488.429 l -3.023 w 0 G S -542.571 488.429 m -542.453 488.135 l -3.023 w 0 G S -542.453 488.135 m -542.276 487.9 l -3.023 w 0 G S -542.276 487.9 m -542.159 487.665 l -3.023 w 0 G S -542.159 487.665 m -541.982 487.371 l -3.023 w 0 G S -541.982 487.371 m -541.806 487.135 l -3.023 w 0 G S -541.806 487.135 m -541.688 486.9 l -3.023 w 0 G S -541.688 486.9 m -541.512 486.665 l -3.023 w 0 G S -541.512 486.665 m -541.335 486.429 l -3.023 w 0 G S -541.335 486.429 m -541.159 486.194 l -3.023 w 0 G S -541.159 486.194 m -540.982 485.959 l -3.023 w 0 G S -540.982 485.959 m -540.806 485.724 l -3.023 w 0 G S -540.806 485.724 m -540.629 485.488 l -3.023 w 0 G S -540.629 485.488 m -540.453 485.253 l -3.023 w 0 G S -540.453 485.253 m -540.276 485.018 l -3.023 w 0 G S -540.276 485.018 m -540.041 484.782 l -3.023 w 0 G S -540.041 484.782 m -539.865 484.606 l -3.023 w 0 G S -539.865 484.606 m -539.688 484.371 l -3.023 w 0 G S -539.688 484.371 m -539.453 484.135 l -3.023 w 0 G S -539.453 484.135 m -539.276 483.959 l -3.023 w 0 G S -539.276 483.959 m -539.041 483.724 l -3.023 w 0 G S -539.041 483.724 m -538.865 483.488 l -3.023 w 0 G S -538.865 483.488 m -538.629 483.312 l -3.023 w 0 G S -538.629 483.312 m -538.453 483.077 l -3.023 w 0 G S -538.453 483.077 m -538.218 482.9 l -3.023 w 0 G S -538.218 482.9 m -537.982 482.724 l -3.023 w 0 G S -537.982 482.724 m -537.806 482.488 l -3.023 w 0 G S -537.806 482.488 m -537.571 482.312 l -3.023 w 0 G S -537.571 482.312 m -537.335 482.135 l -3.023 w 0 G S -537.335 482.135 m -537.1 481.959 l -3.023 w 0 G S -537.1 481.959 m -536.865 481.782 l -3.023 w 0 G S -536.865 481.782 m -536.629 481.606 l -3.023 w 0 G S -536.629 481.606 m -536.394 481.429 l -3.023 w 0 G S -536.394 481.429 m -536.159 481.253 l -3.023 w 0 G S -536.159 481.253 m -535.923 481.077 l -3.023 w 0 G S -535.923 481.077 m -535.688 480.9 l -3.023 w 0 G S -535.688 480.9 m -535.453 480.724 l -3.023 w 0 G S -535.453 480.724 m -535.218 480.547 l -3.023 w 0 G S -535.218 480.547 m -534.923 480.429 l -3.023 w 0 G S -534.923 480.429 m -534.688 480.253 l -3.023 w 0 G S -534.688 480.253 m -534.453 480.135 l -3.023 w 0 G S -534.453 480.135 m -534.218 479.959 l -3.023 w 0 G S -534.218 479.959 m -533.923 479.841 l -3.023 w 0 G S -533.923 479.841 m -533.688 479.665 l -3.023 w 0 G S -533.688 479.665 m -533.394 479.547 l -3.023 w 0 G S -533.394 479.547 m -533.159 479.429 l -3.023 w 0 G S -533.159 479.429 m -532.923 479.253 l -3.023 w 0 G S -532.923 479.253 m -532.629 479.135 l -3.023 w 0 G S -532.629 479.135 m -532.335 479.018 l -3.023 w 0 G S -532.335 479.018 m -532.1 478.9 l -3.023 w 0 G S -532.1 478.9 m -531.806 478.782 l -3.023 w 0 G S -531.806 478.782 m -531.571 478.665 l -3.023 w 0 G S -531.571 478.665 m -531.276 478.547 l -3.023 w 0 G S -531.276 478.547 m -530.982 478.429 l -3.023 w 0 G S -530.982 478.429 m -530.747 478.371 l -3.023 w 0 G S -530.747 478.371 m -530.453 478.253 l -3.023 w 0 G S -530.453 478.253 m -530.159 478.135 l -3.023 w 0 G S -530.159 478.135 m -529.923 478.077 l -3.023 w 0 G S -529.923 478.077 m -529.629 477.959 l -3.023 w 0 G S -529.629 477.959 m -529.335 477.9 l -3.023 w 0 G S -529.335 477.9 m -529.041 477.841 l -3.023 w 0 G S -529.041 477.841 m -528.747 477.724 l -3.023 w 0 G S -528.747 477.724 m -528.512 477.665 l -3.023 w 0 G S -528.512 477.665 m -528.218 477.606 l -3.023 w 0 G S -528.218 477.606 m -527.923 477.547 l -3.023 w 0 G S -527.923 477.547 m -527.629 477.488 l -3.023 w 0 G S -527.629 477.488 m -527.335 477.429 l -3.023 w 0 G S -527.335 477.429 m -527.041 477.371 l -3.023 w 0 G S -527.041 477.371 m -526.747 477.312 l -3.023 w 0 G S -526.747 477.312 m -526.453 477.253 l -3.023 w 0 G S -526.453 477.253 m -526.159 477.194 l -3.023 w 0 G S -526.159 477.194 m -525.865 477.194 l -3.023 w 0 G S -525.865 477.194 m -525.571 477.135 l -3.023 w 0 G S -525.571 477.135 m -525.276 477.077 l -3.023 w 0 G S -525.276 477.077 m -525.041 477.077 l -3.023 w 0 G S -525.041 477.077 m -524.747 477.077 l -3.023 w 0 G S -524.747 477.077 m -524.453 477.018 l -3.023 w 0 G S -524.453 477.018 m -524.159 477.018 l -3.023 w 0 G S -524.159 477.018 m -523.865 477.018 l -3.023 w 0 G S -523.865 477.018 m -523.571 477.018 l -3.023 w 0 G S -523.571 477.018 m -523.276 477.018 l -3.023 w 0 G S -523.276 477.018 m -522.982 477.018 l -3.023 w 0 G S -522.982 477.018 m -522.688 477.018 l -3.023 w 0 G S -522.688 477.018 m -522.394 477.018 l -3.023 w 0 G S -522.394 477.018 m -522.1 477.018 l -3.023 w 0 G S -522.1 477.018 m -521.806 477.018 l -3.023 w 0 G S -521.806 477.018 m -521.512 477.018 l -3.023 w 0 G S -521.512 477.018 m -521.218 477.077 l -3.023 w 0 G S -521.218 477.077 m -520.923 477.077 l -3.023 w 0 G S -520.923 477.077 m -520.629 477.135 l -3.023 w 0 G S -520.629 477.135 m -520.335 477.135 l -3.023 w 0 G S -520.335 477.135 m -520.041 477.194 l -3.023 w 0 G S -520.041 477.194 m -519.747 477.253 l -3.023 w 0 G S -519.747 477.253 m -519.453 477.253 l -3.023 w 0 G S -519.453 477.253 m -519.159 477.312 l -3.023 w 0 G S -519.159 477.312 m -518.865 477.371 l -3.023 w 0 G S -518.865 477.371 m -518.571 477.429 l -3.023 w 0 G S -518.571 477.429 m -518.276 477.488 l -3.023 w 0 G S -518.276 477.488 m -517.982 477.547 l -3.023 w 0 G S -517.982 477.547 m -517.747 477.606 l -3.023 w 0 G S -517.747 477.606 m -517.453 477.665 l -3.023 w 0 G S -517.453 477.665 m -517.159 477.782 l -3.023 w 0 G S -517.159 477.782 m -516.865 477.841 l -3.023 w 0 G S -516.865 477.841 m -516.571 477.9 l -3.023 w 0 G S -516.571 477.9 m -516.276 478.018 l -3.023 w 0 G S -516.276 478.018 m -516.041 478.077 l -3.023 w 0 G S -516.041 478.077 m -515.747 478.194 l -3.023 w 0 G S -515.747 478.194 m -515.453 478.312 l -3.023 w 0 G S -515.453 478.312 m -515.218 478.371 l -3.023 w 0 G S -515.218 478.371 m -514.923 478.488 l -3.023 w 0 G S -514.923 478.488 m -514.629 478.606 l -3.023 w 0 G S -514.629 478.606 m -514.394 478.724 l -3.023 w 0 G S -514.394 478.724 m -514.1 478.841 l -3.023 w 0 G S -514.1 478.841 m -513.806 478.959 l -3.023 w 0 G S -513.806 478.959 m -513.571 479.077 l -3.023 w 0 G S -513.571 479.077 m -513.276 479.194 l -3.023 w 0 G S -513.276 479.194 m -513.041 479.312 l -3.023 w 0 G S -513.041 479.312 m -512.747 479.429 l -3.023 w 0 G S -512.747 479.429 m -512.512 479.606 l -3.023 w 0 G S -512.512 479.606 m -512.276 479.724 l -3.023 w 0 G S -512.276 479.724 m -511.982 479.9 l -3.023 w 0 G S -511.982 479.9 m -511.747 480.018 l -3.023 w 0 G S -511.747 480.018 m -511.512 480.194 l -3.023 w 0 G S -511.512 480.194 m -511.218 480.312 l -3.023 w 0 G S -511.218 480.312 m -510.982 480.488 l -3.023 w 0 G S -510.982 480.488 m -510.747 480.606 l -3.023 w 0 G S -510.747 480.606 m -510.512 480.782 l -3.023 w 0 G S -510.512 480.782 m -510.276 480.959 l -3.023 w 0 G S -510.276 480.959 m -509.982 481.135 l -3.023 w 0 G S -509.982 481.135 m -509.747 481.312 l -3.023 w 0 G S -509.747 481.312 m -509.512 481.488 l -3.023 w 0 G S -509.512 481.488 m -509.688 481.665 l -3.023 w 0 G S -509.688 481.665 m -509.923 481.9 l -3.023 w 0 G S -509.923 481.9 m -510.159 482.077 l -3.023 w 0 G S -510.159 482.077 m -510.335 482.312 l -3.023 w 0 G S -510.335 482.312 m -510.571 482.488 l -3.023 w 0 G S -510.571 482.488 m -510.806 482.665 l -3.023 w 0 G S -510.806 482.665 m -511.041 482.841 l -3.023 w 0 G S -511.041 482.841 m -511.276 483.077 l -3.023 w 0 G S -511.276 483.077 m -511.512 483.253 l -3.023 w 0 G S -511.512 483.253 m -511.747 483.429 l -3.023 w 0 G S -511.747 483.429 m -511.982 483.606 l -3.023 w 0 G S -511.982 483.606 m -512.218 483.782 l -3.023 w 0 G S -512.218 483.782 m -512.453 483.959 l -3.023 w 0 G S -512.453 483.959 m -512.688 484.077 l -3.023 w 0 G S -512.688 484.077 m -512.923 484.253 l -3.023 w 0 G S -512.923 484.253 m -513.159 484.429 l -3.023 w 0 G S -513.159 484.429 m -513.453 484.547 l -3.023 w 0 G S -513.453 484.547 m -513.688 484.724 l -3.023 w 0 G S -513.688 484.724 m -513.923 484.9 l -3.023 w 0 G S -513.923 484.9 m -514.159 485.018 l -3.023 w 0 G S -514.159 485.018 m -514.453 485.135 l -3.023 w 0 G S -514.453 485.135 m -514.688 485.312 l -3.023 w 0 G S -514.688 485.312 m -514.982 485.429 l -3.023 w 0 G S -514.982 485.429 m -515.218 485.547 l -3.023 w 0 G S -515.218 485.547 m -515.512 485.665 l -3.023 w 0 G S -515.512 485.665 m -515.747 485.841 l -3.023 w 0 G S -515.747 485.841 m -516.041 485.959 l -3.023 w 0 G S -516.041 485.959 m -516.276 486.077 l -3.023 w 0 G S -516.276 486.077 m -516.571 486.135 l -3.023 w 0 G S -516.571 486.135 m -516.865 486.253 l -3.023 w 0 G S -516.865 486.253 m -517.1 486.371 l -3.023 w 0 G S -517.1 486.371 m -517.394 486.488 l -3.023 w 0 G S -517.394 486.488 m -517.688 486.547 l -3.023 w 0 G S -517.688 486.547 m -517.982 486.665 l -3.023 w 0 G S -517.982 486.665 m -518.218 486.724 l -3.023 w 0 G S -518.218 486.724 m -518.512 486.841 l -3.023 w 0 G S -518.512 486.841 m -518.806 486.9 l -3.023 w 0 G S -518.806 486.9 m -519.1 487.018 l -3.023 w 0 G S -519.1 487.018 m -519.394 487.077 l -3.023 w 0 G S -519.394 487.077 m -519.629 487.135 l -3.023 w 0 G S -519.629 487.135 m -519.923 487.194 l -3.023 w 0 G S -519.923 487.194 m -520.218 487.253 l -3.023 w 0 G S -520.218 487.253 m -520.512 487.312 l -3.023 w 0 G S -520.512 487.312 m -520.806 487.371 l -3.023 w 0 G S -520.806 487.371 m -521.1 487.429 l -3.023 w 0 G S -521.1 487.429 m -521.394 487.488 l -3.023 w 0 G S -521.394 487.488 m -521.688 487.488 l -3.023 w 0 G S -521.688 487.488 m -521.982 487.547 l -3.023 w 0 G S -521.982 487.547 m -522.276 487.606 l -3.023 w 0 G S -522.276 487.606 m -522.571 487.606 l -3.023 w 0 G S -522.571 487.606 m -522.865 487.665 l -3.023 w 0 G S -522.865 487.665 m -523.159 487.665 l -3.023 w 0 G S -523.159 487.665 m -523.453 487.665 l -3.023 w 0 G S -523.453 487.665 m -523.747 487.665 l -3.023 w 0 G S -523.747 487.665 m -524.041 487.724 l -3.023 w 0 G S -524.041 487.724 m -524.335 487.724 l -3.023 w 0 G S -524.335 487.724 m -524.629 487.724 l -3.023 w 0 G S -524.629 487.724 m -524.923 487.724 l -3.023 w 0 G S -524.923 487.724 m -525.218 487.665 l -3.023 w 0 G S -525.218 487.665 m -525.512 487.665 l -3.023 w 0 G S -525.512 487.665 m -525.806 487.665 l -3.023 w 0 G S -525.806 487.665 m -526.1 487.665 l -3.023 w 0 G S -526.1 487.665 m -526.394 487.606 l -3.023 w 0 G S -526.394 487.606 m -526.688 487.606 l -3.023 w 0 G S -526.688 487.606 m -526.982 487.547 l -3.023 w 0 G S -526.982 487.547 m -527.276 487.547 l -3.023 w 0 G S -527.276 487.547 m -527.571 487.488 l -3.023 w 0 G S -527.571 487.488 m -527.865 487.429 l -3.023 w 0 G S -527.865 487.429 m -528.1 487.371 l -3.023 w 0 G S -528.1 487.371 m -528.394 487.312 l -3.023 w 0 G S -528.394 487.312 m -528.688 487.312 l -3.023 w 0 G S -528.688 487.312 m -528.982 487.194 l -3.023 w 0 G S -528.982 487.194 m -529.276 487.135 l -3.023 w 0 G S -529.276 487.135 m -529.571 487.077 l -3.023 w 0 G S -529.571 487.077 m -529.865 487.018 l -3.023 w 0 G S -529.865 487.018 m -530.159 486.959 l -3.023 w 0 G S -530.159 486.959 m -530.394 486.841 l -3.023 w 0 G S -530.394 486.841 m -530.688 486.782 l -3.023 w 0 G S -530.688 486.782 m -530.982 486.665 l -3.023 w 0 G S -530.982 486.665 m -531.276 486.606 l -3.023 w 0 G S -531.276 486.606 m -531.512 486.488 l -3.023 w 0 G S -531.512 486.488 m -531.806 486.429 l -3.023 w 0 G S -531.806 486.429 m -532.1 486.312 l -3.023 w 0 G S -532.1 486.312 m -532.394 486.194 l -3.023 w 0 G S -532.394 486.194 m -532.629 486.077 l -3.023 w 0 G S -532.629 486.077 m -532.923 485.959 l -3.023 w 0 G S -532.923 485.959 m -533.159 485.841 l -3.023 w 0 G S -533.159 485.841 m -533.453 485.724 l -3.023 w 0 G S -533.453 485.724 m -533.688 485.606 l -3.023 w 0 G S -533.688 485.606 m -533.982 485.488 l -3.023 w 0 G S -533.982 485.488 m -534.218 485.312 l -3.023 w 0 G S -534.218 485.312 m -534.512 485.194 l -3.023 w 0 G S -534.512 485.194 m -534.747 485.077 l -3.023 w 0 G S -534.747 485.077 m -535.041 484.9 l -3.023 w 0 G S -535.041 484.9 m -535.276 484.782 l -3.023 w 0 G S -535.276 484.782 m -535.512 484.606 l -3.023 w 0 G S -535.512 484.606 m -535.747 484.488 l -3.023 w 0 G S -535.747 484.488 m -536.041 484.312 l -3.023 w 0 G S -536.041 484.312 m -536.276 484.135 l -3.023 w 0 G S -536.276 484.135 m -536.512 483.959 l -3.023 w 0 G S -536.512 483.959 m -536.747 483.841 l -3.023 w 0 G S -536.747 483.841 m -536.982 483.665 l -3.023 w 0 G S -536.982 483.665 m -537.218 483.488 l -3.023 w 0 G S -537.218 483.488 m -537.453 483.312 l -3.023 w 0 G S -537.453 483.312 m -537.688 483.135 l -3.023 w 0 G S -537.688 483.135 m -537.923 482.9 l -3.023 w 0 G S -537.923 482.9 m -538.159 482.724 l -3.023 w 0 G S -538.159 482.724 m -538.394 482.547 l -3.023 w 0 G S -538.394 482.547 m -538.571 482.371 l -3.023 w 0 G S -538.571 482.371 m -538.806 482.135 l -3.023 w 0 G S -538.806 482.135 m -539.041 481.959 l -3.023 w 0 G S -539.041 481.959 m -539.218 481.724 l -3.023 w 0 G S -539.218 481.724 m -539.453 481.547 l -3.023 w 0 G S -539.453 481.547 m -539.688 481.312 l -3.023 w 0 G S -539.688 481.312 m -539.865 481.135 l -3.023 w 0 G S -539.865 481.135 m -540.041 480.9 l -3.023 w 0 G S -540.041 480.9 m -540.276 480.665 l -3.023 w 0 G S -540.276 480.665 m -540.453 480.488 l -3.023 w 0 G S -540.453 480.488 m -540.629 480.253 l -3.023 w 0 G S -540.629 480.253 m -540.865 480.018 l -3.023 w 0 G S -540.865 480.018 m -541.041 479.782 l -3.023 w 0 G S -541.041 479.782 m -541.218 479.547 l -3.023 w 0 G S -541.218 479.547 m -541.394 479.312 l -3.023 w 0 G S -541.394 479.312 m -541.571 479.077 l -3.023 w 0 G S -541.571 479.077 m -541.747 478.841 l -3.023 w 0 G S -541.747 478.841 m -541.923 478.606 l -3.023 w 0 G S -541.923 478.606 m -542.1 478.371 l -3.023 w 0 G S -542.1 478.371 m -542.218 478.135 l -3.023 w 0 G S -542.218 478.135 m -542.394 477.9 l -3.023 w 0 G S -542.394 477.9 m -542.571 477.665 l -3.023 w 0 G S -542.571 477.665 m -542.688 477.371 l -3.023 w 0 G S -542.688 477.371 m -542.865 477.135 l -3.023 w 0 G S -542.865 477.135 m -542.982 476.9 l -3.023 w 0 G S -542.982 476.9 m -543.159 476.606 l -3.023 w 0 G S -543.159 476.606 m -543.276 476.371 l -3.023 w 0 G S -543.276 476.371 m -543.394 476.077 l -3.023 w 0 G S -543.394 476.077 m -543.571 475.841 l -3.023 w 0 G S -543.571 475.841 m -543.688 475.547 l -3.023 w 0 G S -543.688 475.547 m -543.806 475.312 l -3.023 w 0 G S -543.806 475.312 m -543.923 475.018 l -3.023 w 0 G S -543.923 475.018 m -544.041 474.782 l -3.023 w 0 G S -544.041 474.782 m -544.159 474.488 l -3.023 w 0 G S -544.159 474.488 m -544.276 474.194 l -3.023 w 0 G S -544.276 474.194 m -544.394 473.959 l -3.023 w 0 G S -544.394 473.959 m -544.453 473.665 l -3.023 w 0 G S -544.453 473.665 m -544.571 473.371 l -3.023 w 0 G S -544.571 473.371 m -544.688 473.135 l -3.023 w 0 G S -544.688 473.135 m -544.747 472.841 l -3.023 w 0 G S -544.747 472.841 m -544.865 472.547 l -3.023 w 0 G S -544.865 472.547 m -544.923 472.253 l -3.023 w 0 G S -544.923 472.253 m -544.982 471.959 l -3.023 w 0 G S -544.982 471.959 m -545.1 471.724 l -3.023 w 0 G S -545.1 471.724 m -545.159 471.429 l -3.023 w 0 G S -545.159 471.429 m -545.218 471.135 l -3.023 w 0 G S -545.218 471.135 m -545.276 470.841 l -3.023 w 0 G S -545.276 470.841 m -545.335 470.547 l -3.023 w 0 G S -545.335 470.547 m -545.394 470.253 l -3.023 w 0 G S -545.394 470.253 m -545.453 469.959 l -3.023 w 0 G S -545.453 469.959 m -545.512 469.665 l -3.023 w 0 G S -545.512 469.665 m -545.512 469.371 l -3.023 w 0 G S -545.512 469.371 m -545.571 469.077 l -3.023 w 0 G S -545.571 469.077 m -545.571 468.782 l -3.023 w 0 G S -545.571 468.782 m -545.629 468.488 l -3.023 w 0 G S -545.629 468.488 m -545.629 468.194 l -3.023 w 0 G S -545.629 468.194 m -545.688 467.9 l -3.023 w 0 G S -545.688 467.9 m -545.688 467.665 l -3.023 w 0 G S -545.688 467.665 m -545.688 467.371 l -3.023 w 0 G S -545.688 467.371 m -545.688 467.077 l -3.023 w 0 G S -545.688 467.077 m -545.747 466.782 l -3.023 w 0 G S -545.747 466.782 m -545.747 466.488 l -3.023 w 0 G S -545.747 466.488 m -545.747 466.194 l -3.023 w 0 G S -545.747 466.194 m -545.688 465.9 l -3.023 w 0 G S -545.688 465.9 m -545.688 465.606 l -3.023 w 0 G S -545.688 465.606 m -545.688 465.312 l -3.023 w 0 G S -545.688 465.312 m -545.688 465.018 l -3.023 w 0 G S -545.688 465.018 m -545.629 464.724 l -3.023 w 0 G S -545.629 464.724 m -545.629 464.429 l -3.023 w 0 G S -545.629 464.429 m -545.571 464.135 l -3.023 w 0 G S -545.571 464.135 m -545.571 463.841 l -3.023 w 0 G S -545.571 463.841 m -545.512 463.547 l -3.023 w 0 G S -545.512 463.547 m -545.453 463.253 l -3.023 w 0 G S -545.453 463.253 m -545.453 462.959 l -3.023 w 0 G S -545.453 462.959 m -545.394 462.665 l -3.023 w 0 G S -545.394 462.665 m -545.335 462.371 l -3.023 w 0 G S -545.335 462.371 m -545.276 462.077 l -3.023 w 0 G S -545.276 462.077 m -545.218 461.782 l -3.023 w 0 G S -545.218 461.782 m -545.159 461.488 l -3.023 w 0 G S -545.159 461.488 m -545.041 461.194 l -3.023 w 0 G S -545.041 461.194 m -544.982 460.959 l -3.023 w 0 G S -544.982 460.959 m -544.923 460.665 l -3.023 w 0 G S -544.923 460.665 m -544.806 460.371 l -3.023 w 0 G S -544.806 460.371 m -544.747 460.077 l -3.023 w 0 G S -544.747 460.077 m -544.629 459.782 l -3.023 w 0 G S -544.629 459.782 m -544.571 459.547 l -3.023 w 0 G S -544.571 459.547 m -544.453 459.253 l -3.023 w 0 G S -544.453 459.253 m -544.335 458.959 l -3.023 w 0 G S -544.335 458.959 m -544.218 458.724 l -3.023 w 0 G S -544.218 458.724 m -544.159 458.429 l -3.023 w 0 G S -544.159 458.429 m -544.041 458.135 l -3.023 w 0 G S -544.041 458.135 m -543.923 457.9 l -3.023 w 0 G S -543.923 457.9 m -543.806 457.606 l -3.023 w 0 G S -543.806 457.606 m -543.629 457.371 l -3.023 w 0 G S -543.629 457.371 m -543.512 457.077 l -3.023 w 0 G S -543.512 457.077 m -543.394 456.841 l -3.023 w 0 G S -543.394 456.841 m -543.276 456.547 l -3.023 w 0 G S -543.276 456.547 m -543.1 456.312 l -3.023 w 0 G S -543.1 456.312 m -542.982 456.077 l -3.023 w 0 G S -542.982 456.077 m -542.806 455.782 l -3.023 w 0 G S -542.806 455.782 m -542.688 455.547 l -3.023 w 0 G S -542.688 455.547 m -542.512 455.312 l -3.023 w 0 G S -542.512 455.312 m -542.394 455.018 l -3.023 w 0 G S -542.394 455.018 m -542.218 454.782 l -3.023 w 0 G S -542.218 454.782 m -542.041 454.547 l -3.023 w 0 G S -542.041 454.547 m -541.865 454.312 l -3.023 w 0 G S -541.865 454.312 m -541.688 454.077 l -3.023 w 0 G S -541.688 454.077 m -541.512 453.841 l -3.023 w 0 G S -541.512 453.841 m -541.335 453.606 l -3.023 w 0 G S -541.335 453.606 m -541.159 453.371 l -3.023 w 0 G S -541.159 453.371 m -540.982 453.135 l -3.023 w 0 G S -540.982 453.135 m -540.806 452.9 l -3.023 w 0 G S -540.806 452.9 m -540.629 452.665 l -3.023 w 0 G S -540.629 452.665 m -540.394 452.429 l -3.023 w 0 G S -540.394 452.429 m -540.218 452.253 l -3.023 w 0 G S -540.218 452.253 m -540.041 452.018 l -3.023 w 0 G S -540.041 452.018 m -539.806 451.782 l -3.023 w 0 G S -539.806 451.782 m -539.629 451.606 l -3.023 w 0 G S -539.629 451.606 m -539.394 451.371 l -3.023 w 0 G S -539.394 451.371 m -539.218 451.194 l -3.023 w 0 G S -539.218 451.194 m -538.982 450.959 l -3.023 w 0 G S -538.982 450.959 m -538.747 450.782 l -3.023 w 0 G S -538.747 450.782 m -538.571 450.606 l -3.023 w 0 G S -538.571 450.606 m -538.335 450.371 l -3.023 w 0 G S -538.335 450.371 m -538.1 450.194 l -3.023 w 0 G S -538.1 450.194 m -537.865 450.018 l -3.023 w 0 G S -537.865 450.018 m -537.629 449.841 l -3.023 w 0 G S -537.629 449.841 m -537.394 449.665 l -3.023 w 0 G S -537.394 449.665 m -537.159 449.488 l -3.023 w 0 G S -537.159 449.488 m -536.923 449.312 l -3.023 w 0 G S -536.923 449.312 m -536.688 449.135 l -3.023 w 0 G S -536.688 449.135 m -536.453 448.959 l -3.023 w 0 G S -536.453 448.959 m -536.218 448.782 l -3.023 w 0 G S -536.218 448.782 m -535.982 448.665 l -3.023 w 0 G S -535.982 448.665 m -535.747 448.488 l -3.023 w 0 G S -535.747 448.488 m -535.453 448.312 l -3.023 w 0 G S -535.453 448.312 m -535.218 448.194 l -3.023 w 0 G S -535.218 448.194 m -534.982 448.018 l -3.023 w 0 G S -534.982 448.018 m -534.688 447.9 l -3.023 w 0 G S -534.688 447.9 m -534.453 447.724 l -3.023 w 0 G S -534.453 447.724 m -534.218 447.606 l -3.023 w 0 G S -534.218 447.606 m -533.923 447.488 l -3.023 w 0 G S -533.923 447.488 m -533.688 447.371 l -3.023 w 0 G S -533.688 447.371 m -533.394 447.253 l -3.023 w 0 G S -533.394 447.253 m -533.1 447.077 l -3.023 w 0 G S -533.1 447.077 m -532.865 446.959 l -3.023 w 0 G S -532.865 446.959 m -532.571 446.9 l -3.023 w 0 G S -532.571 446.9 m -532.335 446.782 l -3.023 w 0 G S -532.335 446.782 m -532.041 446.665 l -3.023 w 0 G S -532.041 446.665 m -531.747 446.547 l -3.023 w 0 G S -531.747 446.547 m -531.512 446.429 l -3.023 w 0 G S -531.512 446.429 m -531.218 446.371 l -3.023 w 0 G S -531.218 446.371 m -530.923 446.253 l -3.023 w 0 G S -530.923 446.253 m -530.629 446.194 l -3.023 w 0 G S -530.629 446.194 m -530.335 446.077 l -3.023 w 0 G S -530.335 446.077 m -530.1 446.018 l -3.023 w 0 G S -530.1 446.018 m -529.806 445.959 l -3.023 w 0 G S -529.806 445.959 m -529.512 445.9 l -3.023 w 0 G S -529.512 445.9 m -529.218 445.782 l -3.023 w 0 G S -529.218 445.782 m -528.923 445.724 l -3.023 w 0 G S -528.923 445.724 m -528.629 445.665 l -3.023 w 0 G S -528.629 445.665 m -528.335 445.606 l -3.023 w 0 G S -528.335 445.606 m -528.041 445.547 l -3.023 w 0 G S -528.041 445.547 m -527.806 445.547 l -3.023 w 0 G S -527.806 445.547 m -527.512 445.488 l -3.023 w 0 G S -527.512 661.488 m -527.806 661.429 l -3.023 w 0 G S -527.806 661.429 m -528.1 661.371 l -3.023 w 0 G S -528.1 661.371 m -528.394 661.371 l -3.023 w 0 G S -528.394 661.371 m -528.688 661.312 l -3.023 w 0 G S -528.688 661.312 m -528.982 661.253 l -3.023 w 0 G S -528.982 661.253 m -529.218 661.194 l -3.023 w 0 G S -529.218 661.194 m -529.512 661.077 l -3.023 w 0 G S -529.512 661.077 m -529.806 661.018 l -3.023 w 0 G S -529.806 661.018 m -530.1 660.959 l -3.023 w 0 G S -530.1 660.959 m -530.394 660.9 l -3.023 w 0 G S -530.394 660.9 m -530.688 660.782 l -3.023 w 0 G S -530.688 660.782 m -530.923 660.724 l -3.023 w 0 G S -530.923 660.724 m -531.218 660.606 l -3.023 w 0 G S -531.218 660.606 m -531.512 660.488 l -3.023 w 0 G S -531.512 660.488 m -531.806 660.429 l -3.023 w 0 G S -531.806 660.429 m -532.041 660.312 l -3.023 w 0 G S -532.041 660.312 m -532.335 660.194 l -3.023 w 0 G S -532.335 660.194 m -532.629 660.077 l -3.023 w 0 G S -532.629 660.077 m -532.865 659.959 l -3.023 w 0 G S -532.865 659.959 m -533.159 659.841 l -3.023 w 0 G S -533.159 659.841 m -533.394 659.724 l -3.023 w 0 G S -533.394 659.724 m -533.688 659.606 l -3.023 w 0 G S -533.688 659.606 m -533.923 659.488 l -3.023 w 0 G S -533.923 659.488 m -534.218 659.371 l -3.023 w 0 G S -534.218 659.371 m -534.453 659.194 l -3.023 w 0 G S -534.453 659.194 m -534.747 659.077 l -3.023 w 0 G S -534.747 659.077 m -534.982 658.959 l -3.023 w 0 G S -534.982 658.959 m -535.218 658.782 l -3.023 w 0 G S -535.218 658.782 m -535.512 658.665 l -3.023 w 0 G S -535.512 658.665 m -535.747 658.488 l -3.023 w 0 G S -535.747 658.488 m -535.982 658.312 l -3.023 w 0 G S -535.982 658.312 m -536.218 658.194 l -3.023 w 0 G S -536.218 658.194 m -536.453 658.018 l -3.023 w 0 G S -536.453 658.018 m -536.747 657.841 l -3.023 w 0 G S -536.747 657.841 m -536.982 657.665 l -3.023 w 0 G S -536.982 657.665 m -537.218 657.488 l -3.023 w 0 G S -537.218 657.488 m -537.453 657.312 l -3.023 w 0 G S -537.453 657.312 m -537.688 657.135 l -3.023 w 0 G S -537.688 657.135 m -537.865 656.959 l -3.023 w 0 G S -537.865 656.959 m -538.1 656.782 l -3.023 w 0 G S -538.1 656.782 m -538.335 656.547 l -3.023 w 0 G S -538.335 656.547 m -538.571 656.371 l -3.023 w 0 G S -538.571 656.371 m -538.806 656.194 l -3.023 w 0 G S -538.806 656.194 m -538.982 655.959 l -3.023 w 0 G S -538.982 655.959 m -539.218 655.782 l -3.023 w 0 G S -539.218 655.782 m -539.453 655.547 l -3.023 w 0 G S -539.453 655.547 m -539.629 655.371 l -3.023 w 0 G S -539.629 655.371 m -539.865 655.135 l -3.023 w 0 G S -539.865 655.135 m -540.041 654.959 l -3.023 w 0 G S -540.041 654.959 m -540.218 654.724 l -3.023 w 0 G S -540.218 654.724 m -540.453 654.488 l -3.023 w 0 G S -540.453 654.488 m -540.629 654.253 l -3.023 w 0 G S -540.629 654.253 m -540.806 654.077 l -3.023 w 0 G S -540.806 654.077 m -540.982 653.841 l -3.023 w 0 G S -540.982 653.841 m -541.159 653.606 l -3.023 w 0 G S -541.159 653.606 m -541.394 653.371 l -3.023 w 0 G S -541.394 653.371 m -541.571 653.135 l -3.023 w 0 G S -541.571 653.135 m -541.747 652.9 l -3.023 w 0 G S -541.747 652.9 m -541.865 652.665 l -3.023 w 0 G S -541.865 652.665 m -542.041 652.429 l -3.023 w 0 G S -542.041 652.429 m -542.218 652.194 l -3.023 w 0 G S -542.218 652.194 m -542.394 651.9 l -3.023 w 0 G S -542.394 651.9 m -542.512 651.665 l -3.023 w 0 G S -542.512 651.665 m -542.688 651.429 l -3.023 w 0 G S -542.688 651.429 m -542.865 651.194 l -3.023 w 0 G S -542.865 651.194 m -542.982 650.9 l -3.023 w 0 G S -542.982 650.9 m -543.159 650.665 l -3.023 w 0 G S -543.159 650.665 m -543.276 650.371 l -3.023 w 0 G S -543.276 650.371 m -543.394 650.135 l -3.023 w 0 G S -543.394 650.135 m -543.512 649.9 l -3.023 w 0 G S -543.512 649.9 m -543.688 649.606 l -3.023 w 0 G S -543.688 649.606 m -543.806 649.312 l -3.023 w 0 G S -543.806 649.312 m -543.923 649.077 l -3.023 w 0 G S -543.923 649.077 m -544.041 648.782 l -3.023 w 0 G S -544.041 648.782 m -544.159 648.547 l -3.023 w 0 G S -544.159 648.547 m -544.276 648.253 l -3.023 w 0 G S -544.276 648.253 m -544.335 647.959 l -3.023 w 0 G S -544.335 647.959 m -544.453 647.724 l -3.023 w 0 G S -544.453 647.724 m -544.571 647.429 l -3.023 w 0 G S -544.571 647.429 m -544.629 647.135 l -3.023 w 0 G S -544.629 647.135 m -544.747 646.9 l -3.023 w 0 G S -544.747 646.9 m -544.806 646.606 l -3.023 w 0 G S -544.806 646.606 m -544.923 646.312 l -3.023 w 0 G S -544.923 646.312 m -544.982 646.018 l -3.023 w 0 G S -544.982 646.018 m -545.041 645.724 l -3.023 w 0 G S -545.041 645.724 m -545.159 645.429 l -3.023 w 0 G S -545.159 645.429 m -545.218 645.194 l -3.023 w 0 G S -545.218 645.194 m -545.276 644.9 l -3.023 w 0 G S -545.276 644.9 m -545.335 644.606 l -3.023 w 0 G S -545.335 644.606 m -545.394 644.312 l -3.023 w 0 G S -545.394 644.312 m -545.453 644.018 l -3.023 w 0 G S -545.453 644.018 m -545.453 643.724 l -3.023 w 0 G S -545.453 643.724 m -545.512 643.429 l -3.023 w 0 G S -545.512 643.429 m -545.571 643.135 l -3.023 w 0 G S -545.571 643.135 m -545.571 642.841 l -3.023 w 0 G S -545.571 642.841 m -545.629 642.547 l -3.023 w 0 G S -545.629 642.547 m -545.629 642.253 l -3.023 w 0 G S -545.629 642.253 m -545.688 641.959 l -3.023 w 0 G S -545.688 641.959 m -545.688 641.665 l -3.023 w 0 G S -545.688 641.665 m -545.688 641.371 l -3.023 w 0 G S -545.688 641.371 m -545.688 641.077 l -3.023 w 0 G S -545.688 641.077 m -545.747 640.782 l -3.023 w 0 G S -545.747 640.782 m -545.747 640.488 l -3.023 w 0 G S -545.747 640.488 m -545.747 640.194 l -3.023 w 0 G S -545.747 640.194 m -545.688 639.9 l -3.023 w 0 G S -545.688 639.9 m -545.688 639.606 l -3.023 w 0 G S -545.688 639.606 m -545.688 639.312 l -3.023 w 0 G S -545.688 639.312 m -545.688 639.018 l -3.023 w 0 G S -545.688 639.018 m -545.629 638.724 l -3.023 w 0 G S -545.629 638.724 m -545.629 638.429 l -3.023 w 0 G S -545.629 638.429 m -545.571 638.135 l -3.023 w 0 G S -545.571 638.135 m -545.571 637.841 l -3.023 w 0 G S -545.571 637.841 m -545.512 637.547 l -3.023 w 0 G S -545.512 637.547 m -545.453 637.253 l -3.023 w 0 G S -545.453 637.253 m -545.453 636.959 l -3.023 w 0 G S -545.453 636.959 m -545.394 636.724 l -3.023 w 0 G S -545.394 636.724 m -545.335 636.429 l -3.023 w 0 G S -545.335 636.429 m -545.276 636.135 l -3.023 w 0 G S -545.276 636.135 m -545.218 635.841 l -3.023 w 0 G S -545.218 635.841 m -545.159 635.547 l -3.023 w 0 G S -545.159 635.547 m -545.041 635.253 l -3.023 w 0 G S -545.041 635.253 m -544.982 634.959 l -3.023 w 0 G S -544.982 634.959 m -544.923 634.665 l -3.023 w 0 G S -544.923 634.665 m -544.806 634.429 l -3.023 w 0 G S -544.806 634.429 m -544.747 634.135 l -3.023 w 0 G S -544.747 634.135 m -544.629 633.841 l -3.023 w 0 G S -544.629 633.841 m -544.571 633.547 l -3.023 w 0 G S -544.571 633.547 m -544.453 633.312 l -3.023 w 0 G S -544.453 633.312 m -544.335 633.018 l -3.023 w 0 G S -544.335 633.018 m -544.276 632.724 l -3.023 w 0 G S -544.276 632.724 m -544.159 632.488 l -3.023 w 0 G S -544.159 632.488 m -544.041 632.194 l -3.023 w 0 G S -544.041 632.194 m -543.923 631.9 l -3.023 w 0 G S -543.923 631.9 m -543.806 631.665 l -3.023 w 0 G S -543.806 631.665 m -543.688 631.371 l -3.023 w 0 G S -543.688 631.371 m -543.571 631.135 l -3.023 w 0 G S -543.571 631.135 m -543.394 630.841 l -3.023 w 0 G S -543.394 630.841 m -543.276 630.606 l -3.023 w 0 G S -543.276 630.606 m -543.159 630.312 l -3.023 w 0 G S -543.159 630.312 m -542.982 630.077 l -3.023 w 0 G S -542.982 630.077 m -542.865 629.841 l -3.023 w 0 G S -542.865 629.841 m -542.688 629.547 l -3.023 w 0 G S -542.688 629.547 m -542.571 629.312 l -3.023 w 0 G S -542.571 629.312 m -542.394 629.077 l -3.023 w 0 G S -542.394 629.077 m -542.218 628.841 l -3.023 w 0 G S -542.218 628.841 m -542.041 628.606 l -3.023 w 0 G S -542.041 628.606 m -541.923 628.312 l -3.023 w 0 G S -541.923 628.312 m -541.747 628.077 l -3.023 w 0 G S -541.747 628.077 m -541.571 627.841 l -3.023 w 0 G S -541.571 627.841 m -541.394 627.606 l -3.023 w 0 G S -541.394 627.606 m -541.218 627.371 l -3.023 w 0 G S -541.218 627.371 m -541.041 627.135 l -3.023 w 0 G S -541.041 627.135 m -540.806 626.959 l -3.023 w 0 G S -540.806 626.959 m -540.629 626.724 l -3.023 w 0 G S -540.629 626.724 m -540.453 626.488 l -3.023 w 0 G S -540.453 626.488 m -540.276 626.253 l -3.023 w 0 G S -540.276 626.253 m -540.041 626.077 l -3.023 w 0 G S -540.041 626.077 m -539.865 625.841 l -3.023 w 0 G S -539.865 625.841 m -539.629 625.606 l -3.023 w 0 G S -539.629 625.606 m -539.453 625.429 l -3.023 w 0 G S -539.453 625.429 m -539.218 625.194 l -3.023 w 0 G S -539.218 625.194 m -539.041 625.018 l -3.023 w 0 G S -539.041 625.018 m -538.806 624.782 l -3.023 w 0 G S -538.806 624.782 m -538.571 624.606 l -3.023 w 0 G S -538.571 624.606 m -538.335 624.429 l -3.023 w 0 G S -538.335 624.429 m -538.159 624.253 l -3.023 w 0 G S -538.159 624.253 m -537.923 624.018 l -3.023 w 0 G S -537.923 624.018 m -537.688 623.841 l -3.023 w 0 G S -537.688 623.841 m -537.453 623.665 l -3.023 w 0 G S -537.453 623.665 m -537.218 623.488 l -3.023 w 0 G S -537.218 623.488 m -536.982 623.312 l -3.023 w 0 G S -536.982 623.312 m -536.747 623.135 l -3.023 w 0 G S -536.747 623.135 m -536.512 622.959 l -3.023 w 0 G S -536.512 622.959 m -536.276 622.841 l -3.023 w 0 G S -536.276 622.841 m -535.982 622.665 l -3.023 w 0 G S -535.982 622.665 m -535.747 622.488 l -3.023 w 0 G S -535.747 622.488 m -535.512 622.371 l -3.023 w 0 G S -535.512 622.371 m -535.276 622.194 l -3.023 w 0 G S -535.276 622.194 m -534.982 622.077 l -3.023 w 0 G S -534.982 622.077 m -534.747 621.9 l -3.023 w 0 G S -534.747 621.9 m -534.512 621.782 l -3.023 w 0 G S -534.512 621.782 m -534.218 621.606 l -3.023 w 0 G S -534.218 621.606 m -533.982 621.488 l -3.023 w 0 G S -533.982 621.488 m -533.688 621.371 l -3.023 w 0 G S -533.688 621.371 m -533.453 621.253 l -3.023 w 0 G S -533.453 621.253 m -533.159 621.135 l -3.023 w 0 G S -533.159 621.135 m -532.865 621.018 l -3.023 w 0 G S -532.865 621.018 m -532.629 620.9 l -3.023 w 0 G S -532.629 620.9 m -532.335 620.782 l -3.023 w 0 G S -532.335 620.782 m -532.1 620.665 l -3.023 w 0 G S -532.1 620.665 m -531.806 620.547 l -3.023 w 0 G S -531.806 620.547 m -531.512 620.488 l -3.023 w 0 G S -531.512 620.488 m -531.218 620.371 l -3.023 w 0 G S -531.218 620.371 m -530.982 620.253 l -3.023 w 0 G S -530.982 620.253 m -530.688 620.194 l -3.023 w 0 G S -530.688 620.194 m -530.394 620.135 l -3.023 w 0 G S -530.394 620.135 m -530.1 620.018 l -3.023 w 0 G S -530.1 620.018 m -529.806 619.959 l -3.023 w 0 G S -529.806 619.959 m -529.571 619.9 l -3.023 w 0 G S -529.571 619.9 m -529.276 619.841 l -3.023 w 0 G S -529.276 619.841 m -528.982 619.724 l -3.023 w 0 G S -528.982 619.724 m -528.688 619.665 l -3.023 w 0 G S -528.688 619.665 m -528.394 619.606 l -3.023 w 0 G S -528.394 619.606 m -528.1 619.606 l -3.023 w 0 G S -528.1 619.606 m -527.806 619.547 l -3.023 w 0 G S -527.806 619.547 m -527.512 619.488 l -3.023 w 0 G S -527.512 619.488 m -527.218 619.429 l -3.023 w 0 G S -527.218 619.429 m -526.923 619.429 l -3.023 w 0 G S -526.923 619.429 m -526.629 619.371 l -3.023 w 0 G S -526.629 619.371 m -526.335 619.371 l -3.023 w 0 G S -526.335 619.371 m -526.041 619.312 l -3.023 w 0 G S -526.041 619.312 m -525.747 619.312 l -3.023 w 0 G S -525.747 619.312 m -525.453 619.312 l -3.023 w 0 G S -525.453 619.312 m -525.159 619.312 l -3.023 w 0 G S -525.159 619.312 m -524.865 619.253 l -3.023 w 0 G S -524.865 619.253 m -524.571 619.253 l -3.023 w 0 G S -524.571 619.253 m -524.276 619.253 l -3.023 w 0 G S -524.276 619.253 m -523.982 619.253 l -3.023 w 0 G S -523.982 619.253 m -523.688 619.312 l -3.023 w 0 G S -523.688 619.312 m -523.394 619.312 l -3.023 w 0 G S -523.394 619.312 m -523.1 619.312 l -3.023 w 0 G S -523.1 619.312 m -522.806 619.371 l -3.023 w 0 G S -522.806 619.371 m -522.512 619.371 l -3.023 w 0 G S -522.512 619.371 m -522.218 619.371 l -3.023 w 0 G S -522.218 619.371 m -521.982 619.429 l -3.023 w 0 G S -521.982 619.429 m -521.688 619.488 l -3.023 w 0 G S -521.688 619.488 m -521.394 619.488 l -3.023 w 0 G S -521.394 619.488 m -521.1 619.547 l -3.023 w 0 G S -521.1 619.547 m -520.806 619.606 l -3.023 w 0 G S -520.806 619.606 m -520.512 619.665 l -3.023 w 0 G S -520.512 619.665 m -520.218 619.724 l -3.023 w 0 G S -520.218 619.724 m -519.923 619.782 l -3.023 w 0 G S -519.923 619.782 m -519.629 619.841 l -3.023 w 0 G S -519.629 619.841 m -519.335 619.9 l -3.023 w 0 G S -519.335 619.9 m -519.041 619.959 l -3.023 w 0 G S -519.041 619.959 m -518.806 620.077 l -3.023 w 0 G S -518.806 620.077 m -518.512 620.135 l -3.023 w 0 G S -518.512 620.135 m -518.218 620.253 l -3.023 w 0 G S -518.218 620.253 m -517.923 620.312 l -3.023 w 0 G S -517.923 620.312 m -517.688 620.429 l -3.023 w 0 G S -517.688 620.429 m -517.394 620.488 l -3.023 w 0 G S -517.394 620.488 m -517.1 620.606 l -3.023 w 0 G S -517.1 620.606 m -516.806 620.724 l -3.023 w 0 G S -516.806 620.724 m -516.571 620.841 l -3.023 w 0 G S -516.571 620.841 m -516.276 620.959 l -3.023 w 0 G S -516.276 620.959 m -516.041 621.077 l -3.023 w 0 G S -516.041 621.077 m -515.747 621.194 l -3.023 w 0 G S -515.747 621.194 m -515.453 621.312 l -3.023 w 0 G S -515.453 621.312 m -515.218 621.429 l -3.023 w 0 G S -515.218 621.429 m -514.923 621.547 l -3.023 w 0 G S -514.923 621.547 m -514.688 621.665 l -3.023 w 0 G S -514.688 621.665 m -514.453 621.841 l -3.023 w 0 G S -514.453 621.841 m -514.159 621.959 l -3.023 w 0 G S -514.159 621.959 m -513.923 622.135 l -3.023 w 0 G S -513.923 622.135 m -513.688 622.253 l -3.023 w 0 G S -513.688 622.253 m -513.394 622.429 l -3.023 w 0 G S -513.394 622.429 m -513.159 622.547 l -3.023 w 0 G S -513.159 622.547 m -512.923 622.724 l -3.023 w 0 G S -512.923 622.724 m -512.688 622.9 l -3.023 w 0 G S -512.688 622.9 m -512.394 623.077 l -3.023 w 0 G S -512.394 623.077 m -512.159 623.253 l -3.023 w 0 G S -512.159 623.253 m -511.923 623.371 l -3.023 w 0 G S -511.923 623.371 m -511.688 623.547 l -3.023 w 0 G S -511.688 623.547 m -511.453 623.782 l -3.023 w 0 G S -511.453 623.782 m -511.218 623.959 l -3.023 w 0 G S -511.218 623.959 m -511.041 624.135 l -3.023 w 0 G S -511.041 624.135 m -510.806 624.312 l -3.023 w 0 G S -510.806 624.312 m -510.571 624.488 l -3.023 w 0 G S -510.571 624.488 m -510.335 624.724 l -3.023 w 0 G S -510.335 624.724 m -510.159 624.9 l -3.023 w 0 G S -510.159 624.9 m -509.923 625.077 l -3.023 w 0 G S -509.923 625.077 m -509.688 625.312 l -3.023 w 0 G S -509.688 625.312 m -509.512 625.488 l -3.023 w 0 G S -527.512 697.488 m -527.512 661.488 l -3.023 w 0 G S -527.512 445.488 m -527.512 409.488 l -3.023 w 0 G S -U -527.512 409.488 m -311.512 409.488 l -3.023 w 0 G S -311.512 409.488 m -302.512 445.488 l -3.023 w 0 G S -302.512 445.488 m -284.512 373.488 l -3.023 w 0 G S -284.512 373.488 m -266.512 445.488 l -3.023 w 0 G S -266.512 445.488 m -248.512 373.488 l -3.023 w 0 G S -248.512 373.488 m -230.512 445.488 l -3.023 w 0 G S -230.512 445.488 m -212.512 373.488 l -3.023 w 0 G S -212.512 373.488 m -194.512 445.488 l -3.023 w 0 G S -194.512 445.488 m -176.512 373.488 l -3.023 w 0 G S -176.512 373.488 m -158.512 445.488 l -3.023 w 0 G S -158.512 445.488 m -149.512 409.488 l -3.023 w 0 G S -95.512 409.488 m -149.512 409.488 l -3.023 w 0 G S -95.512 409.488 m -95.512 544.488 l -3.023 w 0 G S -68.512 544.488 m -122.512 544.488 l -3.023 w 0 G S -41.512 562.488 m -149.512 562.488 l -3.023 w 0 G S -95.512 562.488 m -95.512 697.488 l -3.023 w 0 G S -527.512 697.488 m -95.512 697.488 l -3.023 w 0 G S -u -151.471 528.529 m -151.471 552.529 L -135.471 552.529 L -135.471 528.529 L -151.471 528.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 24 24 0 0 z -[1 0 0 1 135.471 534.529 ]e -1 (e)t -T -u -242.471 456.529 m -242.471 480.529 L -216.471 480.529 L -216.471 456.529 L -242.471 456.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 24 24 0 0 z -[1 0 0 1 216.471 462.529 ]e -2 ( R)t -T -u -385.471 567.529 m -385.471 591.529 L -354.471 591.529 L -354.471 567.529 L -385.471 567.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 24 24 0 0 z -[1 0 0 1 354.471 573.529 ]e -2 (L2)t -T -u -498 568.529 m -498 592.529 L -466.941 592.529 L -466.941 568.529 L -498 568.529 L -1 g F -U -1 1 1 0 (New Color 255) 0 x -/_Times-Italic 24 24 0 0 z -[1 0 0 1 466.941 574.529 ]e -2 (L1)t -T - -%%Trailer -Adobe_Illustrator88 /terminate get exec -Adobe_pattern /terminate get exec -Adobe_customcolor /terminate get exec -Adobe_cshow /terminate get exec -Adobe_cmykcolor /terminate get exec -Adobe_packedarray /terminate get exec -%%EOF diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype69/prob06a.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype69/prob06a.gif deleted file mode 100755 index a2e2ca9f5..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype69/prob06a.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype70/prob03av1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype70/prob03av1.eps deleted file mode 100755 index 8ea40cfff..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype70/prob03av1.eps +++ /dev/null @@ -1,2154 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Fri Oct 8 13:07:18 1993 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 612 792 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /TDeps_dict 20 dict def TDeps_dict begin /showpage { - -} def /copypage { - -} def /grestoreall { - -} def /erasepage { - -} def /nulldevice { - -} def /exitserver { - -} def /initgraphics { - -} def /renderbands { - -} def /initmatrix { - -} def /banddevice { - -} def /setpageparams { - -} def /framedevice { - -} def /note { - -} def end end -TopDrawDict begin /rpath { - newpath moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} bind def /rfpath { - /rad3 exch def /hh3 exch def /ww3 exch def /yy1 exch def /xx1 exch def /xx2 xx1 ww3 add def /yy2 yy1 hh3 add def newpath xx1 yy1 rad3 hh3 0 gt { - add - } { - sub - } ifelse moveto xx1 yy1 xx2 yy1 rad3 arcto 4 { - pop - } repeat xx2 yy1 xx2 yy2 rad3 arcto 4 { - pop - } repeat xx2 yy2 xx1 yy2 rad3 arcto 4 { - pop - } repeat xx1 yy2 xx1 yy1 rad3 arcto 4 { - pop - } repeat closepath -} bind def /rfill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - 4 2 roll rpath crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - rectfill pop - } ifelse grestore -} bind def /rstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse 4 2 roll rpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /rffill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse rfpath filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /rfstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse rfpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /mkrpath { - dodrawctm rpath unpagectm -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 612 792 rectclip -0 0 612 792 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 2.5 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 2.5 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 2.5 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -end -grestore -gsave clpmt currentmatrix pop newpath -1 0 0 1 30 -57 sc5mt astore pop false { - sc5mt dodrawctm 72 72 468 648 0 rfpath unpagectm -} { - 468 648 72 72 sc5mt mkrpath -} ifelse -clip -newpath -clpmt setmatrix -gsave -/epssave save def 0 setgray 1 setlinewidth 0 setlinecap 0 setlinejoin 10 setmiterlimit [] 0 setdash newpath TDeps_dict begin userdict begin -[1 0 0 1 30 -57] dodrawctm -0 0 translate -%%BeginFile: /tmp/topdraw_eps_21766_2 -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 72.0 72.0 540.0 720.0 -%%Creator: Mathematica -%%CreationDate: Tue Oct 5 13:44:09 PDT 1993 -%%EndComments - -/Mathdict 100 dict def -Mathdict begin -/Mlmarg 1.0 72 mul def -/Mrmarg 1.0 72 mul def -/Mbmarg 1.0 72 mul def -/Mtmarg 1.0 72 mul def -/Mwidth 8.5 72 mul def -/Mheight 11 72 mul def -/Mtransform { } bind def -/Mnodistort true def -/Mfixwid false def -/Mfixdash false def -/Mrot 0 def -/Mpstart { -MathPictureStart -} bind def -/Mpend { -MathPictureEnd -} bind def -/Mscale { -0 1 0 1 -5 -1 roll -MathScale -} bind def -/ISOLatin1Encoding dup where -{ pop pop } -{ -[ -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright -/parenleft /parenright /asterisk /plus /comma /minus /period /slash -/zero /one /two /three /four /five /six /seven -/eight /nine /colon /semicolon /less /equal /greater /question -/at /A /B /C /D /E /F /G -/H /I /J /K /L /M /N /O -/P /Q /R /S /T /U /V /W -/X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore -/quoteleft /a /b /c /d /e /f /g -/h /i /j /k /l /m /n /o -/p /q /r /s /t /u /v /w -/x /y /z /braceleft /bar /braceright /asciitilde /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent -/dieresis /.notdef /ring /cedilla /.notdef /hungarumlaut /ogonek /caron -/space /exclamdown /cent /sterling /currency /yen /brokenbar /section -/dieresis /copyright /ordfeminine /guillemotleft -/logicalnot /hyphen /registered /macron -/degree /plusminus /twosuperior /threesuperior -/acute /mu /paragraph /periodcentered -/cedilla /onesuperior /ordmasculine /guillemotright -/onequarter /onehalf /threequarters /questiondown -/Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla -/Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis -/Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply -/Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls -/agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla -/egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis -/eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide -/oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis -] def -} ifelse -/MFontDict 50 dict def -/MStrCat -{ -exch -dup length -2 index length add -string -dup 3 1 roll -copy -length -exch dup -4 2 roll exch -putinterval -} def -/MCreateEncoding -{ -1 index -255 string cvs -(-) MStrCat -1 index MStrCat -cvn exch -(Encoding) MStrCat -cvn dup where -{ -exch get -} -{ -pop -StandardEncoding -} ifelse -3 1 roll -dup MFontDict exch known not -{ -1 index findfont -dup length dict -begin -{1 index /FID ne -{def} -{pop pop} -ifelse} forall -/Encoding 3 index -def -currentdict -end -1 index exch definefont pop -MFontDict 1 index -null put -} -if -exch pop -exch pop -} def -/ISOLatin1 { (ISOLatin1) MCreateEncoding } def -/ISO8859 { (ISOLatin1) MCreateEncoding } def -/Mcopyfont { -dup -maxlength -dict -exch -{ -1 index -/FID -eq -{ -pop pop -} -{ -2 index -3 1 roll -put -} -ifelse -} -forall -} def -/Plain /Courier findfont Mcopyfont definefont pop -/Bold /Courier-Bold findfont Mcopyfont definefont pop -/Italic /Courier-Oblique findfont Mcopyfont definefont pop -/MathPictureStart { -gsave -Mtransform -Mlmarg -Mbmarg -translate -/Mtmatrix -matrix currentmatrix -def -/Mgmatrix -matrix currentmatrix -def -} bind def -/MathPictureEnd { -grestore -} bind def -/MathSubStart { -Momatrix -Mgmatrix Mtmatrix -Mlmarg Mrmarg -Mbmarg Mtmarg -Mwidth Mheight -11 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -Mgmatrix setmatrix -13 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -2 copy translate -/Mtmatrix matrix currentmatrix def -/Mlmarg 0 def -/Mrmarg 0 def -/Mbmarg 0 def -/Mtmarg 0 def -3 -1 roll -exch sub -/Mheight exch def -sub -/Mwidth exch def -} bind def -/MathSubEnd { -/Mheight exch def -/Mwidth exch def -/Mtmarg exch def -/Mbmarg exch def -/Mrmarg exch def -/Mlmarg exch def -/Mtmatrix exch def -dup setmatrix -/Mgmatrix exch def -/Momatrix exch def -} bind def -/Mdot { -moveto -0 0 rlineto -stroke -} bind def -/Mtetra { -moveto -lineto -lineto -lineto -fill -} bind def -/Metetra { -moveto -lineto -lineto -lineto -closepath -gsave -fill -grestore -0 setgray -stroke -} bind def -/Mistroke { -flattenpath -0 0 0 -{ -4 2 roll -pop pop -} -{ -4 -1 roll -2 index -sub dup mul -4 -1 roll -2 index -sub dup mul -add sqrt -4 -1 roll -add -3 1 roll -} -{ -stop -} -{ -stop -} -pathforall -pop pop -currentpoint -stroke -moveto -currentdash -3 -1 roll -add -setdash -} bind def -/Mfstroke { -stroke -currentdash -pop 0 -setdash -} bind def -/Mrotsboxa { -gsave -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -grestore -Msboxa -3 -1 roll -/Mtmatrix -exch def -/Mrot -0 def -} bind def -/Msboxa { -newpath -5 -1 roll -Mvboxa -pop -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Msboxa1 -5 -3 roll -Msboxa1 -Mboxrot -[ -7 -2 roll -2 copy -[ -3 1 roll -10 -1 roll -9 -1 roll -] -6 1 roll -5 -2 roll -] -} bind def -/Msboxa1 { -sub -2 div -dup -2 index -1 add -mul -3 -1 roll --1 add -3 -1 roll -mul -} bind def -/Mvboxa { -Mfixwid -{ -Mvboxa1 -} -{ -dup -Mwidthcal -0 exch -{ -add -} -forall -exch -Mvboxa1 -4 index -7 -1 roll -add -4 -1 roll -pop -3 1 roll -} -ifelse -} bind def -/Mvboxa1 { -gsave -newpath -[ true -3 -1 roll -{ -Mbbox -5 -1 roll -{ -0 -5 1 roll -} -{ -7 -1 roll -exch sub -(m) stringwidth pop -.3 mul -sub -7 1 roll -6 -1 roll -4 -1 roll -Mmin -3 -1 roll -5 index -add -5 -1 roll -4 -1 roll -Mmax -4 -1 roll -} -ifelse -false -} -forall -{ stop } if -counttomark -1 add -4 roll -] -grestore -} bind def -/Mbbox { -1 dict begin -0 0 moveto -/temp (T) def -{ gsave -currentpoint newpath moveto -temp 0 3 -1 roll put temp -false charpath flattenpath currentpoint -pathbbox -grestore moveto lineto moveto} forall -pathbbox -newpath -end -} bind def -/Mmin { -2 copy -gt -{ exch } if -pop -} bind def -/Mmax { -2 copy -lt -{ exch } if -pop -} bind def -/Mrotshowa { -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -Mgmatrix setmatrix -Mshowa -/Mtmatrix -exch def -/Mrot 0 def -} bind def -/Mshowa { -4 -2 roll -moveto -2 index -Mtmatrix setmatrix -Mvboxa -7 1 roll -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Mshowa1 -4 1 roll -Mshowa1 -rmoveto -currentpoint -Mfixwid -{ -Mshowax -} -{ -Mshoway -} -ifelse -pop pop pop pop -Mgmatrix setmatrix -} bind def -/Mshowax { -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -Mfixdash -{ -Mfixdashp -} -if -show -} for -} bind def -/Mfixdashp { -dup -length -1 -gt -1 index -true exch -{ -45 -eq -and -} forall -and -{ -gsave -(--) -stringwidth pop -(-) -stringwidth pop -sub -2 div -0 rmoveto -dup -length -1 sub -{ -(-) -show -} -repeat -grestore -} -if -} bind def -/Mshoway { -3 index -Mwidthcal -5 1 roll -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -[ -6 index -aload -length -2 add --1 roll -{ -pop -Strform -stringwidth -pop -neg -exch -add -0 rmoveto -} -exch -kshow -cleartomark -} for -pop -} bind def -/Mwidthcal { -[ -exch -{ -Mwidthcal1 -} -forall -] -[ -exch -dup -Maxlen --1 add -0 1 -3 -1 roll -{ -[ -exch -2 index -{ -1 index -Mget -exch -} -forall -pop -Maxget -exch -} -for -pop -] -Mreva -} bind def -/Mreva { -[ -exch -aload -length --1 1 -{1 roll} -for -] -} bind def -/Mget { -1 index -length --1 add -1 index -ge -{ -get -} -{ -pop pop -0 -} -ifelse -} bind def -/Maxlen { -[ -exch -{ -length -} -forall -Maxget -} bind def -/Maxget { -counttomark --1 add -1 1 -3 -1 roll -{ -pop -Mmax -} -for -exch -pop -} bind def -/Mwidthcal1 { -[ -exch -{ -Strform -stringwidth -pop -} -forall -] -} bind def -/Strform { -/tem (x) def -tem 0 -3 -1 roll -put -tem -} bind def -/Mshowa1 { -2 copy -add -4 1 roll -sub -mul -sub --2 div -} bind def -/MathScale { -Mwidth -Mlmarg Mrmarg add -sub -Mheight -Mbmarg Mtmarg add -sub -0 0 moveto -1 index 0 -lineto -2 copy -lineto -0 1 index -lineto -clip newpath -Mlp -translate -dup -/Mathabs -exch def -scale -/yscale exch def -/ybias exch def -/xscale exch def -/xbias exch def -/Momatrix -xscale yscale matrix scale -xbias ybias matrix translate -matrix concatmatrix def -/Mgmatrix -matrix currentmatrix -def -} bind def -/Mlp { -3 copy -Mlpfirst -{ -Mnodistort -{ -Mmin -dup -} if -4 index -2 index -2 index -Mlprun -11 index -11 -1 roll -10 -4 roll -Mlp1 -8 index -9 -5 roll -Mlp1 -4 -1 roll -and -{ exit } if -3 -1 roll -pop pop -} loop -exch -3 1 roll -7 -3 roll -pop pop pop -} bind def -/Mlpfirst { -3 -1 roll -dup length -2 copy --2 add -get -aload -pop pop pop -4 -2 roll --1 add -get -aload -pop pop pop -6 -1 roll -3 -1 roll -5 -1 roll -sub -div -4 1 roll -exch sub -div -} bind def -/Mlprun { -2 copy -4 index -0 get -dup -4 1 roll -Mlprun1 -3 copy -8 -2 roll -9 -1 roll -{ -3 copy -Mlprun1 -3 copy -11 -3 roll -/gt Mlpminmax -8 3 roll -11 -3 roll -/lt Mlpminmax -8 3 roll -} forall -pop pop pop pop -3 1 roll -pop pop -aload pop -5 -1 roll -aload pop -exch -6 -1 roll -Mlprun2 -8 2 roll -4 -1 roll -Mlprun2 -6 2 roll -3 -1 roll -Mlprun2 -4 2 roll -exch -Mlprun2 -6 2 roll -} bind def -/Mlprun1 { -aload pop -exch -6 -1 roll -5 -1 roll -mul add -4 -2 roll -mul -3 -1 roll -add -} bind def -/Mlprun2 { -2 copy -add 2 div -3 1 roll -exch sub -} bind def -/Mlpminmax { -cvx -2 index -6 index -2 index -exec -{ -7 -3 roll -4 -1 roll -} if -1 index -5 index -3 -1 roll -exec -{ -4 1 roll -pop -5 -1 roll -aload -pop pop -4 -1 roll -aload pop -[ -8 -2 roll -pop -5 -2 roll -pop -6 -2 roll -pop -5 -1 roll -] -4 1 roll -pop -} -{ -pop pop pop -} ifelse -} bind def -/Mlp1 { -5 index -3 index sub -5 index -2 index mul -1 index -le -1 index -0 le -or -dup -not -{ -1 index -3 index div -.99999 mul -8 -1 roll -pop -7 1 roll -} -if -8 -1 roll -2 div -7 -2 roll -pop sub -5 index -6 -3 roll -pop pop -mul sub -exch -} bind def -/intop 0 def -/inrht 0 def -/inflag 0 def -/outflag 0 def -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -/Minner { -outflag -1 -eq -{ -/outflag 0 def -/intop 0 def -/inrht 0 def -} if -5 index -gsave -Mtmatrix setmatrix -Mvboxa pop -grestore -3 -1 roll -pop -dup -intop -gt -{ -/intop -exch def -} -{ pop } -ifelse -dup -inrht -gt -{ -/inrht -exch def -} -{ pop } -ifelse -pop -/inflag -1 def -} bind def -/Mouter { -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -inflag -1 eq -{ -dup -0 lt -{ -dup -intop -mul -neg -/yadtop -exch def -} if -dup -0 gt -{ -dup -intop -mul -/yadbot -exch def -} -if -pop -dup -0 lt -{ -dup -inrht -mul -neg -/xadrht -exch def -} if -dup -0 gt -{ -dup -inrht -mul -/xadlft -exch def -} if -pop -/outflag 1 def -} -{ pop pop} -ifelse -/inflag 0 def -/inrht 0 def -/intop 0 def -} bind def -/Mboxout { -outflag -1 -eq -{ -4 -1 -roll -xadlft -leadjust -add -sub -4 1 roll -3 -1 -roll -yadbot -leadjust -add -sub -3 1 -roll -exch -xadrht -leadjust -add -add -exch -yadtop -leadjust -add -add -/outflag 0 def -/xadlft 0 def -/yadbot 0 def -/xadrht 0 def -/yadtop 0 def -} if -} bind def -/leadjust { -(m) stringwidth pop -.5 mul -} bind def -/Mrotcheck { -dup -90 -eq -{ -yadbot -/yadbot -xadrht -def -/xadrht -yadtop -def -/yadtop -xadlft -def -/xadlft -exch -def -} -if -dup -cos -1 index -sin -Checkaux -dup -cos -1 index -sin neg -exch -Checkaux -3 1 roll -pop pop -} bind def -/Checkaux { -4 index -exch -4 index -mul -3 1 roll -mul add -4 1 roll -} bind def -/Mboxrot { -Mrot -90 eq -{ -brotaux -4 2 -roll -} -if -Mrot -180 eq -{ -4 2 -roll -brotaux -4 2 -roll -brotaux -} -if -Mrot -270 eq -{ -4 2 -roll -brotaux -} -if -} bind def -/brotaux { -neg -exch -neg -} bind def -/Mabswid { -Mathabs -div -setlinewidth -} bind def -/Mabsdash { -exch -Mathabs -[ -3 1 roll -exch -{ -exch -dup -3 -1 roll -exch -div -exch -} -forall -pop ] -exch -setdash -} bind def -/MBeginOrig { Momatrix concat} bind def -/MEndOrig { Mgmatrix setmatrix} bind def -/colorimage where -{ pop } -{ -/colorimage { -3 1 roll -pop pop -5 -1 roll -mul -4 1 roll -{ -currentfile -1 index -readhexstring -pop } -image -} bind def -} ifelse -/sampledsound where -{ pop} -{ /sampledsound { -exch -pop -exch -5 1 roll -mul -4 idiv -mul -2 idiv -exch pop -exch -/Mtempproc exch def -{ Mtempproc pop} -repeat -} bind def -} ifelse -/setcmykcolor where -{ pop} -{ /setcmykcolor { -4 1 -roll -[ -4 1 -roll -] -{ -1 index -sub -1 -sub neg -dup -0 -lt -{ -pop -0 -} -if -dup -1 -gt -{ -pop -1 -} -if -exch -} forall -pop -setrgbcolor -} bind def -} ifelse - -%%AspectRatio: 0.61803 -MathPictureStart -/Courier findfont 10 scalefont setfont -% Scaling calculations -0.02381 38.095238 0.309017 0.098101 [ -[ -0.001 -0.001 0 0 ] -[ 1.001 0.61903 0 0 ] -] MathScale -% Start of Graphics -1 setlinecap -1 setlinejoin -newpath -%%Object: Graphics -[ ] 0 setdash -0 setgray -gsave -gsave -0.002 setlinewidth -0 0.30902 moveto -1 0.30902 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.02381 0 moveto -0.02381 0.61803 lineto -stroke -grestore -grestore -0 0 moveto -1 0 lineto -1 0.61803 lineto -0 0.61803 lineto -closepath -clip -newpath -gsave -gsave -gsave -gsave -0.004 setlinewidth -0.02381 0.01472 moveto -0.02505 0.0148 lineto -0.02629 0.01507 lineto -0.02753 0.01551 lineto -0.02877 0.01613 lineto -0.03001 0.01693 lineto -0.03125 0.0179 lineto -0.03373 0.02037 lineto -0.03869 0.02739 lineto -0.04365 0.03712 lineto -0.05357 0.06431 lineto -0.06349 0.10091 lineto -0.10317 0.30902 lineto -0.12302 0.42164 lineto -0.13294 0.47252 lineto -0.14286 0.51712 lineto -0.15278 0.55372 lineto -0.15774 0.56857 lineto -0.1627 0.58092 lineto -0.16766 0.59065 lineto -0.17014 0.5945 lineto -0.17262 0.59766 lineto -0.1751 0.60013 lineto -0.17634 0.60111 lineto -0.17758 0.6019 lineto -0.17882 0.60252 lineto -0.18006 0.60296 lineto -0.1813 0.60323 lineto -0.18254 0.60332 lineto -0.18378 0.60323 lineto -0.18502 0.60296 lineto -0.18626 0.60252 lineto -0.1875 0.6019 lineto -0.18998 0.60013 lineto -0.19246 0.59766 lineto -0.19742 0.59065 lineto -0.20238 0.58092 lineto -0.2123 0.55372 lineto -0.22222 0.51712 lineto -0.24206 0.42164 lineto -0.2619 0.30902 lineto -0.28175 0.19639 lineto -0.29167 0.14551 lineto -0.30159 0.10091 lineto -0.31151 0.06431 lineto -0.31647 0.04947 lineto -0.32143 0.03712 lineto -0.32639 0.02739 lineto -0.32887 0.02353 lineto -0.33135 0.02037 lineto -Mistroke -0.33383 0.0179 lineto -0.33507 0.01693 lineto -0.33631 0.01613 lineto -0.33755 0.01551 lineto -0.33879 0.01507 lineto -0.34003 0.0148 lineto -0.34127 0.01472 lineto -0.34251 0.0148 lineto -0.34375 0.01507 lineto -0.34499 0.01551 lineto -0.34623 0.01613 lineto -0.34871 0.0179 lineto -0.35119 0.02037 lineto -0.35615 0.02739 lineto -0.36111 0.03712 lineto -0.37103 0.06431 lineto -0.38095 0.10091 lineto -0.42063 0.30902 lineto -0.44048 0.42164 lineto -0.4504 0.47252 lineto -0.46032 0.51712 lineto -0.47024 0.55372 lineto -0.48016 0.58092 lineto -0.48512 0.59065 lineto -0.4876 0.5945 lineto -0.49008 0.59766 lineto -0.49256 0.60013 lineto -0.4938 0.60111 lineto -0.49504 0.6019 lineto -0.49628 0.60252 lineto -0.49752 0.60296 lineto -0.49876 0.60323 lineto -0.5 0.60332 lineto -0.50124 0.60323 lineto -0.50248 0.60296 lineto -0.50372 0.60252 lineto -0.50496 0.6019 lineto -0.50744 0.60013 lineto -0.50992 0.59766 lineto -0.51488 0.59065 lineto -0.51984 0.58092 lineto -0.52976 0.55372 lineto -0.53968 0.51712 lineto -0.57937 0.30902 lineto -0.59921 0.19639 lineto -0.60913 0.14551 lineto -0.61905 0.10091 lineto -0.62897 0.06431 lineto -0.63393 0.04947 lineto -0.63889 0.03712 lineto -Mistroke -0.64385 0.02739 lineto -0.64633 0.02353 lineto -0.64881 0.02037 lineto -0.65129 0.0179 lineto -0.65253 0.01693 lineto -0.65377 0.01613 lineto -0.65501 0.01551 lineto -0.65625 0.01507 lineto -0.65749 0.0148 lineto -0.65873 0.01472 lineto -0.65997 0.0148 lineto -0.66121 0.01507 lineto -0.66245 0.01551 lineto -0.66369 0.01613 lineto -0.66617 0.0179 lineto -0.66865 0.02037 lineto -0.67361 0.02739 lineto -0.67857 0.03712 lineto -0.68849 0.06431 lineto -0.69841 0.10091 lineto -0.7381 0.30902 lineto -0.75794 0.42164 lineto -0.76786 0.47252 lineto -0.77778 0.51712 lineto -0.7877 0.55372 lineto -0.79266 0.56857 lineto -0.79762 0.58092 lineto -0.80258 0.59065 lineto -0.80506 0.5945 lineto -0.80754 0.59766 lineto -0.81002 0.60013 lineto -0.81126 0.60111 lineto -0.8125 0.6019 lineto -0.81374 0.60252 lineto -0.81498 0.60296 lineto -0.81622 0.60323 lineto -0.81746 0.60332 lineto -0.8187 0.60323 lineto -0.81994 0.60296 lineto -0.82118 0.60252 lineto -0.82242 0.6019 lineto -0.8249 0.60013 lineto -0.82738 0.59766 lineto -0.83234 0.59065 lineto -0.8373 0.58092 lineto -0.84722 0.55372 lineto -0.85714 0.51712 lineto -0.89683 0.30902 lineto -0.91667 0.19639 lineto -0.93651 0.10091 lineto -Mistroke -0.94643 0.06431 lineto -0.95139 0.04947 lineto -0.95635 0.03712 lineto -0.96131 0.02739 lineto -0.96379 0.02353 lineto -0.96627 0.02037 lineto -0.96875 0.0179 lineto -0.96999 0.01693 lineto -0.97123 0.01613 lineto -0.97247 0.01551 lineto -0.97371 0.01507 lineto -0.97495 0.0148 lineto -0.97619 0.01472 lineto -Mfstroke -grestore -grestore -grestore -gsave -gsave -gsave -0.004 setlinewidth -0.02381 0.30902 moveto -0.04365 0.36533 lineto -0.06349 0.41307 lineto -0.07341 0.43137 lineto -0.07837 0.43879 lineto -0.08333 0.44497 lineto -0.08829 0.44983 lineto -0.09077 0.45176 lineto -0.09325 0.45334 lineto -0.09573 0.45458 lineto -0.09697 0.45506 lineto -0.09821 0.45546 lineto -0.09945 0.45577 lineto -0.10069 0.45599 lineto -0.10193 0.45612 lineto -0.10317 0.45617 lineto -0.10441 0.45612 lineto -0.10565 0.45599 lineto -0.10689 0.45577 lineto -0.10813 0.45546 lineto -0.10937 0.45506 lineto -0.11062 0.45458 lineto -0.1131 0.45334 lineto -0.11806 0.44983 lineto -0.12302 0.44497 lineto -0.13294 0.43137 lineto -0.14286 0.41307 lineto -0.18254 0.30902 lineto -0.20238 0.2527 lineto -0.22222 0.20497 lineto -0.23214 0.18667 lineto -0.2371 0.17924 lineto -0.24206 0.17307 lineto -0.24702 0.1682 lineto -0.2495 0.16628 lineto -0.25198 0.16469 lineto -0.25446 0.16346 lineto -0.2557 0.16297 lineto -0.25694 0.16257 lineto -0.25818 0.16226 lineto -0.25942 0.16204 lineto -0.26066 0.16191 lineto -0.2619 0.16187 lineto -0.26314 0.16191 lineto -0.26438 0.16204 lineto -0.26562 0.16226 lineto -0.26687 0.16257 lineto -0.26935 0.16346 lineto -0.27183 0.16469 lineto -0.27679 0.1682 lineto -Mistroke -0.28175 0.17307 lineto -0.29167 0.18667 lineto -0.30159 0.20497 lineto -0.34127 0.30902 lineto -0.36111 0.36533 lineto -0.37103 0.39077 lineto -0.38095 0.41307 lineto -0.39087 0.43137 lineto -0.39583 0.43879 lineto -0.40079 0.44497 lineto -0.40575 0.44983 lineto -0.40823 0.45176 lineto -0.41071 0.45334 lineto -0.41319 0.45458 lineto -0.41443 0.45506 lineto -0.41567 0.45546 lineto -0.41691 0.45577 lineto -0.41815 0.45599 lineto -0.41939 0.45612 lineto -0.42063 0.45617 lineto -0.42187 0.45612 lineto -0.42312 0.45599 lineto -0.42436 0.45577 lineto -0.4256 0.45546 lineto -0.42808 0.45458 lineto -0.43056 0.45334 lineto -0.43552 0.44983 lineto -0.44048 0.44497 lineto -0.4504 0.43137 lineto -0.46032 0.41307 lineto -0.48016 0.36533 lineto -0.5 0.30902 lineto -0.51984 0.2527 lineto -0.52976 0.22726 lineto -0.53968 0.20497 lineto -0.5496 0.18667 lineto -0.55456 0.17924 lineto -0.55952 0.17307 lineto -0.56448 0.1682 lineto -0.56696 0.16628 lineto -0.56944 0.16469 lineto -0.57192 0.16346 lineto -0.57316 0.16297 lineto -0.5744 0.16257 lineto -0.57564 0.16226 lineto -0.57688 0.16204 lineto -0.57813 0.16191 lineto -0.57937 0.16187 lineto -0.58061 0.16191 lineto -0.58185 0.16204 lineto -Mistroke -0.58309 0.16226 lineto -0.58433 0.16257 lineto -0.58681 0.16346 lineto -0.58929 0.16469 lineto -0.59425 0.1682 lineto -0.59921 0.17307 lineto -0.60913 0.18667 lineto -0.61905 0.20497 lineto -0.65873 0.30902 lineto -0.67857 0.36533 lineto -0.68849 0.39077 lineto -0.69841 0.41307 lineto -0.70833 0.43137 lineto -0.71329 0.43879 lineto -0.71825 0.44497 lineto -0.72321 0.44983 lineto -0.72569 0.45176 lineto -0.72817 0.45334 lineto -0.73065 0.45458 lineto -0.73189 0.45506 lineto -0.73313 0.45546 lineto -0.73437 0.45577 lineto -0.73562 0.45599 lineto -0.73686 0.45612 lineto -0.7381 0.45617 lineto -0.73934 0.45612 lineto -0.74058 0.45599 lineto -0.74182 0.45577 lineto -0.74306 0.45546 lineto -0.74554 0.45458 lineto -0.74802 0.45334 lineto -0.75298 0.44983 lineto -0.75794 0.44497 lineto -0.76786 0.43137 lineto -0.77778 0.41307 lineto -0.81746 0.30902 lineto -0.8373 0.2527 lineto -0.84722 0.22726 lineto -0.85714 0.20497 lineto -0.86706 0.18667 lineto -0.87202 0.17924 lineto -0.87698 0.17307 lineto -0.88194 0.1682 lineto -0.88442 0.16628 lineto -0.8869 0.16469 lineto -0.88938 0.16346 lineto -0.89062 0.16297 lineto -0.89187 0.16257 lineto -0.89311 0.16226 lineto -0.89435 0.16204 lineto -Mistroke -0.89559 0.16191 lineto -0.89683 0.16187 lineto -0.89807 0.16191 lineto -0.89931 0.16204 lineto -0.90055 0.16226 lineto -0.90179 0.16257 lineto -0.90427 0.16346 lineto -0.90675 0.16469 lineto -0.91171 0.1682 lineto -0.91667 0.17307 lineto -0.92659 0.18667 lineto -0.93651 0.20497 lineto -0.97619 0.30902 lineto -Mfstroke -grestore -grestore -grestore -grestore -% End of Graphics -MathPictureEnd -end -showpage -%%EndFile -end end epssave restore -grestore -grestore -/txtdraw true def -/txlndraw true def -(Voltage ) [13.848 0 14.664001 0 6.671997 0 7.991997 0 13.104004 0 14.904007 0 13.343994 0 0 0] 73 694 /Helvetica-Bold [ 24 1 mul 0 0 24 0 0 ] [1 0 0 1 114 -188] dotx -(Current ) [17.328003 0 14.664001 0 9.335999 0 9.335999 0 13.343994 0 14.664001 0 7.992004 0 0 0] 175 708 /Helvetica-Bold [ 24 1 mul 0 0 24 0 0 ] [1 0 0 1 187 -203] dotx -/crlinw 2.1 def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 28 0 97 476 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 28 0 97 407 1 0 0 1 0 0 sc6mt astore ssl -/crlinw 2.5 def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -43 -37 252 498 1 0 0 1 0 0 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 27 -86 407 497 1 0 0 1 0 0 sc6mt astore ssl -(I) [0 0] 32 652 /Helvetica-Bold [ 24 1 mul 0 0 24 0 0 ] [1 0 0 1 25 -248] dotx -/txtdraw true def -/txlndraw true def -(P ) [16.007999 0 0 0] 38.672001 642.400024 /Helvetica-Bold [ 24 1 mul 0 0 24 0 0 ] [1 0 0 1 25 -248] dotx -/txtdraw true def -/txlndraw true def -(V) [0 0] 31 603 /Helvetica-Bold [ 24 1 mul 0 0 24 0 0 ] [1 0 0 1 19 -131] dotx -/txtdraw true def -/txlndraw true def -(P ) [16.007999 0 0 0] 47.007999 593.400024 /Helvetica-Bold [ 24 1 mul 0 0 24 0 0 ] [1 0 0 1 19 -131] dotx -/txtdraw true def -/txlndraw true def -(t ) [7.992004 0 0 0] 125 707 /Helvetica-Bold [ 24 1 mul 0 0 24 0 0 ] [1 0 0 1 454 -372] dotx -(t) [0 0] 256 717 /Helvetica-Bold [ 24 1 mul 0 0 24 0 0 ] [1 0 0 1 109 -547] dotx -/txtdraw true def -/txlndraw true def -(1 ) [13.343994 0 0 0] 263.992004 707.400024 /Helvetica-Bold [ 24 1 mul 0 0 24 0 0 ] [1 0 0 1 109 -547] dotx -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 1 -143 373 339 1 0 0 1 0 0 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(0 ) [13.344002 0 0 0] 86 334 /Helvetica-Bold [ 24 1 mul 0 0 24 0 0 ] [1 0 0 1 0 -4] dotx -(0 ) [13.344002 0 0 0] 97 175 /Helvetica-Bold [ 24 1 mul 0 0 24 0 0 ] [1 0 0 1 9 -5] dotx -end -grestore -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype70/prob03av1.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype70/prob03av1.gif deleted file mode 100755 index 416126ef4..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype70/prob03av1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype70/prob03av2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype70/prob03av2.eps deleted file mode 100755 index 135ad5fe7..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype70/prob03av2.eps +++ /dev/null @@ -1,2152 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: -%%Creator: AppsoftDraw -%%CreationDate: Fri Oct 8 13:07:51 1993 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 0 0 612 792 -%%NXNextStepVersion: 3.0 -%%EndComments - -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.0 -% Copyright: 1988, NeXT, Inc. - -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{_NXDoImageOp}__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet - -_NXLevel2{/_NXsethsb where{pop}{/_NXsethsb /sethsbcolor load def}ifelse /sethsbcolor{_NXsethsb currentrgbcolor nxsetrgbcolor}def /setrgbcolor{nxsetrgbcolor}bind def /setgray{nxsetgray}bind def -}if -gsave - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/TopDrawDict 250 dict def -TopDrawDict begin /prt_stack { - (***Top of Stack\012) print pstack (---Bottom of Stack\012) print flush -} def /prt_top { - (top item of stack) == dup == flush -} def /prtmat matrix def /prt_ctm { - (current transformation matrix: ) print prtmat currentmatrix == flush -} def /tmmat matrix def /obmat matrix def /strmat matrix def /pgmat matrix def /idmat matrix def /sc1mt matrix def /sc2mt matrix def /sc3mt matrix def /sc4mt matrix def /sc5mt matrix def /sc6mt matrix def /sc7mt matrix def /inmat matrix def /ctmmt matrix -def /octmmt matrix def /clpmt matrix def /weglet_mat matrix def /crlinw 1 def crlinw setlinewidth /crlinjn 0 def crlinjn setlinejoin /crlincp 0 def crlincp setlinecap /crmtrlmt currentmiterlimit def /crstrpat 0 def /crfilpat 0 def /crflat currentflat def -/dftflat currentflat def /strinclr false def /crlingry 0 def /crlinred 0 def /crlingrn 0 def /crlinblu 0 def /crlinalph 1 def /filinclr false def /crfilgry 0 def /crfilred 0 def /crfilgrn 0 def /crfilblu 0 def /crfilalph 1 def /crfilstyl 0 def /txtdraw -true def /txtinclr false def /txtwpat false def /txtwittrans false def /crtxtgry 0 def /crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /crtxtalph 1 def /crtxtpat 0 def /txlndraw true def /txlninclr false def /txlnwpat false def /txlnwittrans false def -/crtxlngry 0 def /crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /crtxlnalph 1 def /crtxlnpat 0 def /hilittxt false def /strdsh [2 2] def /dshpatoff 0 def /usedash false def /filwpat false def /strwpat false def /filwittrans false def /strwittrans -false def /crfrtarw false def /crendarw false def /rsave 0 def /esave 0 def /sslsave 0 def /lsave 0 def /clpsave 0 def /pathsave 0 def /tpatstr 10 string def /ptdist { - sub dup mul 3 1 roll sub dup mul add sqrt -} bind def /dodrawctm { - octmmt currentmatrix pop idmat obmat concatmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawctm { - obmat inmat invertmatrix ctmmt currentmatrix sc1mt concatmatrix setmatrix -} bind def /undrawmat { - obmat aload pop 7 -1 roll astore -} bind def /unpagectm { - octmmt setmatrix -} bind def /unpagemat { - pgmat aload pop 7 -1 roll astore -} bind def /drtan { - gsave 1 setalpha 0 setlinewidth 0.333333 setgray moveto lineto stroke grestore -} bind def /drdgrdln { - gsave 1 setalpha 0 setlinewidth [1 2] 0 setdash setgray moveto lineto stroke grestore -} bind def /drgrdln { - gsave 1 setalpha 0 setlinewidth setgray moveto lineto stroke grestore -} bind def end -TopDrawDict begin /TDeps_dict 20 dict def TDeps_dict begin /showpage { - -} def /copypage { - -} def /grestoreall { - -} def /erasepage { - -} def /nulldevice { - -} def /exitserver { - -} def /initgraphics { - -} def /renderbands { - -} def /initmatrix { - -} def /banddevice { - -} def /setpageparams { - -} def /framedevice { - -} def /note { - -} def end end -TopDrawDict begin /rpath { - newpath moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} bind def /rfpath { - /rad3 exch def /hh3 exch def /ww3 exch def /yy1 exch def /xx1 exch def /xx2 xx1 ww3 add def /yy2 yy1 hh3 add def newpath xx1 yy1 rad3 hh3 0 gt { - add - } { - sub - } ifelse moveto xx1 yy1 xx2 yy1 rad3 arcto 4 { - pop - } repeat xx2 yy1 xx2 yy2 rad3 arcto 4 { - pop - } repeat xx2 yy2 xx1 yy2 rad3 arcto 4 { - pop - } repeat xx1 yy2 xx1 yy1 rad3 arcto 4 { - pop - } repeat closepath -} bind def /rfill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse filwpat { - 4 2 roll rpath crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - rectfill pop - } ifelse grestore -} bind def /rstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse 4 2 roll rpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /rffill { - gsave dodrawctm crfilalph setalpha filinclr { - crfilred crfilgrn crfilblu setrgbcolor - } { - crfilgry setgray - } ifelse rfpath filwpat { - crfilpat findfont exch filwittrans { - trpatfil - } { - oppatfil - } ifelse - } { - fill pop - } ifelse grestore -} bind def /rfstroke { - gsave dodrawctm crlinalph setalpha crlinw setlinewidth crlincp setlinecap crlinjn setlinejoin crmtrlmt setmiterlimit usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse rfpath unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def /mkrpath { - dodrawctm rpath unpagectm -} bind def end -TopDrawDict begin /p1x 0 def /p1y 0 def /p2x 0 def /p2y 0 def /ssl { - gsave dodrawctm crfrtarw crendarw or { - /p1y 1 index def /p1x 2 index def /p2y 1 index 4 index add def /p2x 2 index 5 index add def newpath moveto rlineto - } { - newpath moveto rlineto - } ifelse crlinalph setalpha crlinw setlinewidth crlincp setlinecap usedash { - strdsh dshpatoff setdash - } if strinclr { - crlinred crlingrn crlinblu setrgbcolor - } { - crlingry setgray - } ifelse crfrtarw { - 2 copy currentlinewidth exch p2x p2y p1x p1y arow - } if crendarw { - 2 copy currentlinewidth exch p1x p1y p2x p2y arow - } if unpagectm concat strwpat { - crstrpat findfont exch strwittrans { - trpatstrk - } { - oppatstrk - } ifelse - } { - stroke pop - } ifelse grestore -} bind def end -TopDrawDict begin /dotx { - gsave txtdraw { - concat selectfont txtinclr { - crtxtred crtxtgrn crtxtblu setrgbcolor - } { - crtxtgry setgray - } ifelse crtxtalph setalpha moveto xyshow - } { - pop pop pop pop pop pop pop - } ifelse grestore -} bind def /txtlin { - gsave txlndraw { - concat txlninclr { - crtxlnred crtxlngrn crtxlnblu setrgbcolor - } { - crtxlngry setgray - } ifelse crtxlnalph setalpha setlinewidth 0 setlinecap newpath moveto 0 rlineto stroke - } { - pop pop pop pop pop - } ifelse grestore -} bind def end -%%EndSetup -gsave -0 0 612 792 rectclip -0 0 612 792 rectclip -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 2.5 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 2.5 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -gsave -TopDrawDict begin -/invpats true def -/crlincp 0 def -/crlinjn 0 def -/crmtrlmt 10 def -/crlinw 2.5 def -/crlinalph 1 def -/crlinred 0 def /crlingrn 0 def /crlinblu 0 def /strinclr true def -/crfilalph 1 def -/crfilred 1 def /crfilgrn 1 def /crfilblu 1 def /filinclr true def -/filwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crfilpat exch def -} if -/filwittrans false def -/strwpat false def -TopDrawDict /piddict known TopDrawDict /ipiddict known or { - 1 getpat /crstrpat exch def -} if -/strwittrans false def -/usedash false def -/strdsh [2 2] def /dshpatoff 0 def -/crendarw false def -/crfrtarw false def -/txtdraw false def -/crtxtalph 1 def -/crtxtred 0 def /crtxtgrn 0 def /crtxtblu 0 def /txtinclr true def -/txtwpat false def -/txtwittrans false def -/txlndraw false def -/crtxlnalph 1 def -/crtxlnred 0 def /crtxlngrn 0 def /crtxlnblu 0 def /txlninclr true def -/txlnwpat false def -/txlnwittrans false def -end -grestore -gsave clpmt currentmatrix pop newpath -1 0 0 1 15 1 sc5mt astore pop false { - sc5mt dodrawctm 72 72 468 648 0 rfpath unpagectm -} { - 468 648 72 72 sc5mt mkrpath -} ifelse -clip -newpath -clpmt setmatrix -gsave -/epssave save def 0 setgray 1 setlinewidth 0 setlinecap 0 setlinejoin 10 setmiterlimit [] 0 setdash newpath TDeps_dict begin userdict begin -[1 0 0 1 15 1] dodrawctm -0 0 translate -%%BeginFile: /tmp/topdraw_eps_21766_16 -%!PS-Adobe-2.0 EPSF-2.0 -%%BoundingBox: 72.0 72.0 540.0 720.0 -%%Creator: Mathematica -%%CreationDate: Tue Oct 5 13:46:43 PDT 1993 -%%EndComments - -/Mathdict 100 dict def -Mathdict begin -/Mlmarg 1.0 72 mul def -/Mrmarg 1.0 72 mul def -/Mbmarg 1.0 72 mul def -/Mtmarg 1.0 72 mul def -/Mwidth 8.5 72 mul def -/Mheight 11 72 mul def -/Mtransform { } bind def -/Mnodistort true def -/Mfixwid false def -/Mfixdash false def -/Mrot 0 def -/Mpstart { -MathPictureStart -} bind def -/Mpend { -MathPictureEnd -} bind def -/Mscale { -0 1 0 1 -5 -1 roll -MathScale -} bind def -/ISOLatin1Encoding dup where -{ pop pop } -{ -[ -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright -/parenleft /parenright /asterisk /plus /comma /minus /period /slash -/zero /one /two /three /four /five /six /seven -/eight /nine /colon /semicolon /less /equal /greater /question -/at /A /B /C /D /E /F /G -/H /I /J /K /L /M /N /O -/P /Q /R /S /T /U /V /W -/X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore -/quoteleft /a /b /c /d /e /f /g -/h /i /j /k /l /m /n /o -/p /q /r /s /t /u /v /w -/x /y /z /braceleft /bar /braceright /asciitilde /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent -/dieresis /.notdef /ring /cedilla /.notdef /hungarumlaut /ogonek /caron -/space /exclamdown /cent /sterling /currency /yen /brokenbar /section -/dieresis /copyright /ordfeminine /guillemotleft -/logicalnot /hyphen /registered /macron -/degree /plusminus /twosuperior /threesuperior -/acute /mu /paragraph /periodcentered -/cedilla /onesuperior /ordmasculine /guillemotright -/onequarter /onehalf /threequarters /questiondown -/Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla -/Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis -/Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply -/Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls -/agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla -/egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis -/eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide -/oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis -] def -} ifelse -/MFontDict 50 dict def -/MStrCat -{ -exch -dup length -2 index length add -string -dup 3 1 roll -copy -length -exch dup -4 2 roll exch -putinterval -} def -/MCreateEncoding -{ -1 index -255 string cvs -(-) MStrCat -1 index MStrCat -cvn exch -(Encoding) MStrCat -cvn dup where -{ -exch get -} -{ -pop -StandardEncoding -} ifelse -3 1 roll -dup MFontDict exch known not -{ -1 index findfont -dup length dict -begin -{1 index /FID ne -{def} -{pop pop} -ifelse} forall -/Encoding 3 index -def -currentdict -end -1 index exch definefont pop -MFontDict 1 index -null put -} -if -exch pop -exch pop -} def -/ISOLatin1 { (ISOLatin1) MCreateEncoding } def -/ISO8859 { (ISOLatin1) MCreateEncoding } def -/Mcopyfont { -dup -maxlength -dict -exch -{ -1 index -/FID -eq -{ -pop pop -} -{ -2 index -3 1 roll -put -} -ifelse -} -forall -} def -/Plain /Courier findfont Mcopyfont definefont pop -/Bold /Courier-Bold findfont Mcopyfont definefont pop -/Italic /Courier-Oblique findfont Mcopyfont definefont pop -/MathPictureStart { -gsave -Mtransform -Mlmarg -Mbmarg -translate -/Mtmatrix -matrix currentmatrix -def -/Mgmatrix -matrix currentmatrix -def -} bind def -/MathPictureEnd { -grestore -} bind def -/MathSubStart { -Momatrix -Mgmatrix Mtmatrix -Mlmarg Mrmarg -Mbmarg Mtmarg -Mwidth Mheight -11 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -Mgmatrix setmatrix -13 -2 roll -moveto -Mtmatrix setmatrix -currentpoint -2 copy translate -/Mtmatrix matrix currentmatrix def -/Mlmarg 0 def -/Mrmarg 0 def -/Mbmarg 0 def -/Mtmarg 0 def -3 -1 roll -exch sub -/Mheight exch def -sub -/Mwidth exch def -} bind def -/MathSubEnd { -/Mheight exch def -/Mwidth exch def -/Mtmarg exch def -/Mbmarg exch def -/Mrmarg exch def -/Mlmarg exch def -/Mtmatrix exch def -dup setmatrix -/Mgmatrix exch def -/Momatrix exch def -} bind def -/Mdot { -moveto -0 0 rlineto -stroke -} bind def -/Mtetra { -moveto -lineto -lineto -lineto -fill -} bind def -/Metetra { -moveto -lineto -lineto -lineto -closepath -gsave -fill -grestore -0 setgray -stroke -} bind def -/Mistroke { -flattenpath -0 0 0 -{ -4 2 roll -pop pop -} -{ -4 -1 roll -2 index -sub dup mul -4 -1 roll -2 index -sub dup mul -add sqrt -4 -1 roll -add -3 1 roll -} -{ -stop -} -{ -stop -} -pathforall -pop pop -currentpoint -stroke -moveto -currentdash -3 -1 roll -add -setdash -} bind def -/Mfstroke { -stroke -currentdash -pop 0 -setdash -} bind def -/Mrotsboxa { -gsave -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -grestore -Msboxa -3 -1 roll -/Mtmatrix -exch def -/Mrot -0 def -} bind def -/Msboxa { -newpath -5 -1 roll -Mvboxa -pop -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Msboxa1 -5 -3 roll -Msboxa1 -Mboxrot -[ -7 -2 roll -2 copy -[ -3 1 roll -10 -1 roll -9 -1 roll -] -6 1 roll -5 -2 roll -] -} bind def -/Msboxa1 { -sub -2 div -dup -2 index -1 add -mul -3 -1 roll --1 add -3 -1 roll -mul -} bind def -/Mvboxa { -Mfixwid -{ -Mvboxa1 -} -{ -dup -Mwidthcal -0 exch -{ -add -} -forall -exch -Mvboxa1 -4 index -7 -1 roll -add -4 -1 roll -pop -3 1 roll -} -ifelse -} bind def -/Mvboxa1 { -gsave -newpath -[ true -3 -1 roll -{ -Mbbox -5 -1 roll -{ -0 -5 1 roll -} -{ -7 -1 roll -exch sub -(m) stringwidth pop -.3 mul -sub -7 1 roll -6 -1 roll -4 -1 roll -Mmin -3 -1 roll -5 index -add -5 -1 roll -4 -1 roll -Mmax -4 -1 roll -} -ifelse -false -} -forall -{ stop } if -counttomark -1 add -4 roll -] -grestore -} bind def -/Mbbox { -1 dict begin -0 0 moveto -/temp (T) def -{ gsave -currentpoint newpath moveto -temp 0 3 -1 roll put temp -false charpath flattenpath currentpoint -pathbbox -grestore moveto lineto moveto} forall -pathbbox -newpath -end -} bind def -/Mmin { -2 copy -gt -{ exch } if -pop -} bind def -/Mmax { -2 copy -lt -{ exch } if -pop -} bind def -/Mrotshowa { -dup -/Mrot -exch def -Mrotcheck -Mtmatrix -dup -setmatrix -7 1 roll -4 index -4 index -translate -rotate -3 index --1 mul -3 index --1 mul -translate -/Mtmatrix -matrix -currentmatrix -def -Mgmatrix setmatrix -Mshowa -/Mtmatrix -exch def -/Mrot 0 def -} bind def -/Mshowa { -4 -2 roll -moveto -2 index -Mtmatrix setmatrix -Mvboxa -7 1 roll -Mboxout -6 -1 roll -5 -1 roll -4 -1 roll -Mshowa1 -4 1 roll -Mshowa1 -rmoveto -currentpoint -Mfixwid -{ -Mshowax -} -{ -Mshoway -} -ifelse -pop pop pop pop -Mgmatrix setmatrix -} bind def -/Mshowax { -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -Mfixdash -{ -Mfixdashp -} -if -show -} for -} bind def -/Mfixdashp { -dup -length -1 -gt -1 index -true exch -{ -45 -eq -and -} forall -and -{ -gsave -(--) -stringwidth pop -(-) -stringwidth pop -sub -2 div -0 rmoveto -dup -length -1 sub -{ -(-) -show -} -repeat -grestore -} -if -} bind def -/Mshoway { -3 index -Mwidthcal -5 1 roll -0 1 -4 index length --1 add -{ -2 index -4 index -2 index -get -3 index -add -moveto -4 index -exch get -[ -6 index -aload -length -2 add --1 roll -{ -pop -Strform -stringwidth -pop -neg -exch -add -0 rmoveto -} -exch -kshow -cleartomark -} for -pop -} bind def -/Mwidthcal { -[ -exch -{ -Mwidthcal1 -} -forall -] -[ -exch -dup -Maxlen --1 add -0 1 -3 -1 roll -{ -[ -exch -2 index -{ -1 index -Mget -exch -} -forall -pop -Maxget -exch -} -for -pop -] -Mreva -} bind def -/Mreva { -[ -exch -aload -length --1 1 -{1 roll} -for -] -} bind def -/Mget { -1 index -length --1 add -1 index -ge -{ -get -} -{ -pop pop -0 -} -ifelse -} bind def -/Maxlen { -[ -exch -{ -length -} -forall -Maxget -} bind def -/Maxget { -counttomark --1 add -1 1 -3 -1 roll -{ -pop -Mmax -} -for -exch -pop -} bind def -/Mwidthcal1 { -[ -exch -{ -Strform -stringwidth -pop -} -forall -] -} bind def -/Strform { -/tem (x) def -tem 0 -3 -1 roll -put -tem -} bind def -/Mshowa1 { -2 copy -add -4 1 roll -sub -mul -sub --2 div -} bind def -/MathScale { -Mwidth -Mlmarg Mrmarg add -sub -Mheight -Mbmarg Mtmarg add -sub -0 0 moveto -1 index 0 -lineto -2 copy -lineto -0 1 index -lineto -clip newpath -Mlp -translate -dup -/Mathabs -exch def -scale -/yscale exch def -/ybias exch def -/xscale exch def -/xbias exch def -/Momatrix -xscale yscale matrix scale -xbias ybias matrix translate -matrix concatmatrix def -/Mgmatrix -matrix currentmatrix -def -} bind def -/Mlp { -3 copy -Mlpfirst -{ -Mnodistort -{ -Mmin -dup -} if -4 index -2 index -2 index -Mlprun -11 index -11 -1 roll -10 -4 roll -Mlp1 -8 index -9 -5 roll -Mlp1 -4 -1 roll -and -{ exit } if -3 -1 roll -pop pop -} loop -exch -3 1 roll -7 -3 roll -pop pop pop -} bind def -/Mlpfirst { -3 -1 roll -dup length -2 copy --2 add -get -aload -pop pop pop -4 -2 roll --1 add -get -aload -pop pop pop -6 -1 roll -3 -1 roll -5 -1 roll -sub -div -4 1 roll -exch sub -div -} bind def -/Mlprun { -2 copy -4 index -0 get -dup -4 1 roll -Mlprun1 -3 copy -8 -2 roll -9 -1 roll -{ -3 copy -Mlprun1 -3 copy -11 -3 roll -/gt Mlpminmax -8 3 roll -11 -3 roll -/lt Mlpminmax -8 3 roll -} forall -pop pop pop pop -3 1 roll -pop pop -aload pop -5 -1 roll -aload pop -exch -6 -1 roll -Mlprun2 -8 2 roll -4 -1 roll -Mlprun2 -6 2 roll -3 -1 roll -Mlprun2 -4 2 roll -exch -Mlprun2 -6 2 roll -} bind def -/Mlprun1 { -aload pop -exch -6 -1 roll -5 -1 roll -mul add -4 -2 roll -mul -3 -1 roll -add -} bind def -/Mlprun2 { -2 copy -add 2 div -3 1 roll -exch sub -} bind def -/Mlpminmax { -cvx -2 index -6 index -2 index -exec -{ -7 -3 roll -4 -1 roll -} if -1 index -5 index -3 -1 roll -exec -{ -4 1 roll -pop -5 -1 roll -aload -pop pop -4 -1 roll -aload pop -[ -8 -2 roll -pop -5 -2 roll -pop -6 -2 roll -pop -5 -1 roll -] -4 1 roll -pop -} -{ -pop pop pop -} ifelse -} bind def -/Mlp1 { -5 index -3 index sub -5 index -2 index mul -1 index -le -1 index -0 le -or -dup -not -{ -1 index -3 index div -.99999 mul -8 -1 roll -pop -7 1 roll -} -if -8 -1 roll -2 div -7 -2 roll -pop sub -5 index -6 -3 roll -pop pop -mul sub -exch -} bind def -/intop 0 def -/inrht 0 def -/inflag 0 def -/outflag 0 def -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -/Minner { -outflag -1 -eq -{ -/outflag 0 def -/intop 0 def -/inrht 0 def -} if -5 index -gsave -Mtmatrix setmatrix -Mvboxa pop -grestore -3 -1 roll -pop -dup -intop -gt -{ -/intop -exch def -} -{ pop } -ifelse -dup -inrht -gt -{ -/inrht -exch def -} -{ pop } -ifelse -pop -/inflag -1 def -} bind def -/Mouter { -/xadrht 0 def -/xadlft 0 def -/yadtop 0 def -/yadbot 0 def -inflag -1 eq -{ -dup -0 lt -{ -dup -intop -mul -neg -/yadtop -exch def -} if -dup -0 gt -{ -dup -intop -mul -/yadbot -exch def -} -if -pop -dup -0 lt -{ -dup -inrht -mul -neg -/xadrht -exch def -} if -dup -0 gt -{ -dup -inrht -mul -/xadlft -exch def -} if -pop -/outflag 1 def -} -{ pop pop} -ifelse -/inflag 0 def -/inrht 0 def -/intop 0 def -} bind def -/Mboxout { -outflag -1 -eq -{ -4 -1 -roll -xadlft -leadjust -add -sub -4 1 roll -3 -1 -roll -yadbot -leadjust -add -sub -3 1 -roll -exch -xadrht -leadjust -add -add -exch -yadtop -leadjust -add -add -/outflag 0 def -/xadlft 0 def -/yadbot 0 def -/xadrht 0 def -/yadtop 0 def -} if -} bind def -/leadjust { -(m) stringwidth pop -.5 mul -} bind def -/Mrotcheck { -dup -90 -eq -{ -yadbot -/yadbot -xadrht -def -/xadrht -yadtop -def -/yadtop -xadlft -def -/xadlft -exch -def -} -if -dup -cos -1 index -sin -Checkaux -dup -cos -1 index -sin neg -exch -Checkaux -3 1 roll -pop pop -} bind def -/Checkaux { -4 index -exch -4 index -mul -3 1 roll -mul add -4 1 roll -} bind def -/Mboxrot { -Mrot -90 eq -{ -brotaux -4 2 -roll -} -if -Mrot -180 eq -{ -4 2 -roll -brotaux -4 2 -roll -brotaux -} -if -Mrot -270 eq -{ -4 2 -roll -brotaux -} -if -} bind def -/brotaux { -neg -exch -neg -} bind def -/Mabswid { -Mathabs -div -setlinewidth -} bind def -/Mabsdash { -exch -Mathabs -[ -3 1 roll -exch -{ -exch -dup -3 -1 roll -exch -div -exch -} -forall -pop ] -exch -setdash -} bind def -/MBeginOrig { Momatrix concat} bind def -/MEndOrig { Mgmatrix setmatrix} bind def -/colorimage where -{ pop } -{ -/colorimage { -3 1 roll -pop pop -5 -1 roll -mul -4 1 roll -{ -currentfile -1 index -readhexstring -pop } -image -} bind def -} ifelse -/sampledsound where -{ pop} -{ /sampledsound { -exch -pop -exch -5 1 roll -mul -4 idiv -mul -2 idiv -exch pop -exch -/Mtempproc exch def -{ Mtempproc pop} -repeat -} bind def -} ifelse -/setcmykcolor where -{ pop} -{ /setcmykcolor { -4 1 -roll -[ -4 1 -roll -] -{ -1 index -sub -1 -sub neg -dup -0 -lt -{ -pop -0 -} -if -dup -1 -gt -{ -pop -1 -} -if -exch -} forall -pop -setrgbcolor -} bind def -} ifelse - -%%AspectRatio: 0.61803 -MathPictureStart -/Courier findfont 10 scalefont setfont -% Scaling calculations -0.02381 31.746032 0.309017 0.098101 [ -[ -0.001 -0.001 0 0 ] -[ 1.001 0.61903 0 0 ] -] MathScale -% Start of Graphics -1 setlinecap -1 setlinejoin -newpath -%%Object: Graphics -[ ] 0 setdash -0 setgray -gsave -gsave -0.002 setlinewidth -0 0.30902 moveto -1 0.30902 lineto -stroke -grestore -gsave -0.002 setlinewidth -0.02381 0 moveto -0.02381 0.61803 lineto -stroke -grestore -grestore -0 0 moveto -1 0 lineto -1 0.61803 lineto -0 0.61803 lineto -closepath -clip -newpath -gsave -gsave -gsave -gsave -0.004 setlinewidth -0.02381 0.60332 moveto -0.02505 0.60323 lineto -0.02629 0.60296 lineto -0.02753 0.60252 lineto -0.02877 0.6019 lineto -0.03125 0.60013 lineto -0.03373 0.59766 lineto -0.03869 0.59065 lineto -0.04365 0.58092 lineto -0.05357 0.55372 lineto -0.06349 0.51712 lineto -0.10317 0.30902 lineto -0.12302 0.19639 lineto -0.14286 0.10091 lineto -0.15278 0.06431 lineto -0.15774 0.04947 lineto -0.1627 0.03712 lineto -0.16766 0.02739 lineto -0.17014 0.02353 lineto -0.17262 0.02037 lineto -0.1751 0.0179 lineto -0.17634 0.01693 lineto -0.17758 0.01613 lineto -0.17882 0.01551 lineto -0.18006 0.01507 lineto -0.1813 0.0148 lineto -0.18254 0.01472 lineto -0.18378 0.0148 lineto -0.18502 0.01507 lineto -0.18626 0.01551 lineto -0.1875 0.01613 lineto -0.18998 0.0179 lineto -0.19246 0.02037 lineto -0.19742 0.02739 lineto -0.20238 0.03712 lineto -0.2123 0.06431 lineto -0.22222 0.10091 lineto -0.2619 0.30902 lineto -0.28175 0.42164 lineto -0.29167 0.47252 lineto -0.30159 0.51712 lineto -0.31151 0.55372 lineto -0.31647 0.56857 lineto -0.32143 0.58092 lineto -0.32639 0.59065 lineto -0.32887 0.5945 lineto -0.33135 0.59766 lineto -0.33383 0.60013 lineto -0.33507 0.60111 lineto -0.33631 0.6019 lineto -Mistroke -0.33755 0.60252 lineto -0.33879 0.60296 lineto -0.34003 0.60323 lineto -0.34127 0.60332 lineto -0.34251 0.60323 lineto -0.34375 0.60296 lineto -0.34499 0.60252 lineto -0.34623 0.6019 lineto -0.34747 0.60111 lineto -0.34871 0.60013 lineto -0.35119 0.59766 lineto -0.35615 0.59065 lineto -0.36111 0.58092 lineto -0.37103 0.55372 lineto -0.38095 0.51712 lineto -0.40079 0.42164 lineto -0.42063 0.30902 lineto -0.44048 0.19639 lineto -0.4504 0.14551 lineto -0.46032 0.10091 lineto -0.47024 0.06431 lineto -0.4752 0.04947 lineto -0.48016 0.03712 lineto -0.48512 0.02739 lineto -0.4876 0.02353 lineto -0.49008 0.02037 lineto -0.49256 0.0179 lineto -0.4938 0.01693 lineto -0.49504 0.01613 lineto -0.49628 0.01551 lineto -0.49752 0.01507 lineto -0.49876 0.0148 lineto -0.5 0.01472 lineto -0.50124 0.0148 lineto -0.50248 0.01507 lineto -0.50372 0.01551 lineto -0.50496 0.01613 lineto -0.50744 0.0179 lineto -0.50992 0.02037 lineto -0.51488 0.02739 lineto -0.51984 0.03712 lineto -0.52976 0.06431 lineto -0.53968 0.10091 lineto -0.57937 0.30902 lineto -0.59921 0.42164 lineto -0.61905 0.51712 lineto -0.62897 0.55372 lineto -0.63393 0.56857 lineto -0.63889 0.58092 lineto -0.64385 0.59065 lineto -Mistroke -0.64633 0.5945 lineto -0.64881 0.59766 lineto -0.65129 0.60013 lineto -0.65253 0.60111 lineto -0.65377 0.6019 lineto -0.65501 0.60252 lineto -0.65625 0.60296 lineto -0.65749 0.60323 lineto -0.65873 0.60332 lineto -0.65997 0.60323 lineto -0.66121 0.60296 lineto -0.66245 0.60252 lineto -0.66369 0.6019 lineto -0.66617 0.60013 lineto -0.66865 0.59766 lineto -0.67361 0.59065 lineto -0.67857 0.58092 lineto -0.68849 0.55372 lineto -0.69841 0.51712 lineto -0.7381 0.30902 lineto -0.75794 0.19639 lineto -0.76786 0.14551 lineto -0.77778 0.10091 lineto -0.7877 0.06431 lineto -0.79266 0.04947 lineto -0.79762 0.03712 lineto -0.80258 0.02739 lineto -0.80506 0.02353 lineto -0.80754 0.02037 lineto -0.81002 0.0179 lineto -0.81126 0.01693 lineto -0.8125 0.01613 lineto -0.81374 0.01551 lineto -0.81498 0.01507 lineto -0.81622 0.0148 lineto -0.81746 0.01472 lineto -0.8187 0.0148 lineto -0.81994 0.01507 lineto -0.82118 0.01551 lineto -0.82242 0.01613 lineto -0.8249 0.0179 lineto -0.82738 0.02037 lineto -0.83234 0.02739 lineto -0.8373 0.03712 lineto -0.84722 0.06431 lineto -0.85714 0.10091 lineto -0.89683 0.30902 lineto -0.91667 0.42164 lineto -0.92659 0.47252 lineto -0.93651 0.51712 lineto -Mistroke -0.94643 0.55372 lineto -0.95139 0.56857 lineto -0.95635 0.58092 lineto -0.96131 0.59065 lineto -0.96379 0.5945 lineto -0.96627 0.59766 lineto -0.96875 0.60013 lineto -0.96999 0.60111 lineto -0.97123 0.6019 lineto -0.97247 0.60252 lineto -0.97371 0.60296 lineto -0.97495 0.60323 lineto -0.97619 0.60332 lineto -Mfstroke -grestore -grestore -grestore -gsave -gsave -gsave -0.004 setlinewidth -0.02381 0.30902 moveto -0.04365 0.36533 lineto -0.05357 0.39077 lineto -0.06349 0.41307 lineto -0.07341 0.43137 lineto -0.08333 0.44497 lineto -0.08829 0.44983 lineto -0.09077 0.45176 lineto -0.09325 0.45334 lineto -0.09573 0.45458 lineto -0.09697 0.45506 lineto -0.09821 0.45546 lineto -0.09945 0.45577 lineto -0.10069 0.45599 lineto -0.10193 0.45612 lineto -0.10317 0.45617 lineto -0.10441 0.45612 lineto -0.10565 0.45599 lineto -0.10689 0.45577 lineto -0.10813 0.45546 lineto -0.11062 0.45458 lineto -0.1131 0.45334 lineto -0.11806 0.44983 lineto -0.12302 0.44497 lineto -0.13294 0.43137 lineto -0.14286 0.41307 lineto -0.18254 0.30902 lineto -0.20238 0.2527 lineto -0.2123 0.22726 lineto -0.22222 0.20497 lineto -0.23214 0.18667 lineto -0.2371 0.17924 lineto -0.24206 0.17307 lineto -0.24702 0.1682 lineto -0.2495 0.16628 lineto -0.25198 0.16469 lineto -0.25446 0.16346 lineto -0.2557 0.16297 lineto -0.25694 0.16257 lineto -0.25818 0.16226 lineto -0.25942 0.16204 lineto -0.26066 0.16191 lineto -0.2619 0.16187 lineto -0.26314 0.16191 lineto -0.26438 0.16204 lineto -0.26563 0.16226 lineto -0.26687 0.16257 lineto -0.26935 0.16346 lineto -0.27183 0.16469 lineto -0.27679 0.1682 lineto -Mistroke -0.28175 0.17307 lineto -0.29167 0.18667 lineto -0.30159 0.20497 lineto -0.34127 0.30902 lineto -0.36111 0.36533 lineto -0.37103 0.39077 lineto -0.38095 0.41307 lineto -0.39087 0.43137 lineto -0.39583 0.43879 lineto -0.40079 0.44497 lineto -0.40575 0.44983 lineto -0.40823 0.45176 lineto -0.41071 0.45334 lineto -0.41319 0.45458 lineto -0.41443 0.45506 lineto -0.41567 0.45546 lineto -0.41691 0.45577 lineto -0.41815 0.45599 lineto -0.41939 0.45612 lineto -0.42063 0.45617 lineto -0.42188 0.45612 lineto -0.42312 0.45599 lineto -0.42436 0.45577 lineto -0.4256 0.45546 lineto -0.42808 0.45458 lineto -0.43056 0.45334 lineto -0.43552 0.44983 lineto -0.44048 0.44497 lineto -0.4504 0.43137 lineto -0.46032 0.41307 lineto -0.5 0.30902 lineto -0.51984 0.2527 lineto -0.52976 0.22726 lineto -0.53968 0.20497 lineto -0.5496 0.18667 lineto -0.55456 0.17924 lineto -0.55952 0.17307 lineto -0.56448 0.1682 lineto -0.56696 0.16628 lineto -0.56944 0.16469 lineto -0.57192 0.16346 lineto -0.57316 0.16297 lineto -0.5744 0.16257 lineto -0.57564 0.16226 lineto -0.57688 0.16204 lineto -0.57813 0.16191 lineto -0.57937 0.16187 lineto -0.58061 0.16191 lineto -0.58185 0.16204 lineto -0.58309 0.16226 lineto -Mistroke -0.58433 0.16257 lineto -0.58681 0.16346 lineto -0.58929 0.16469 lineto -0.59425 0.1682 lineto -0.59921 0.17307 lineto -0.60913 0.18667 lineto -0.61905 0.20497 lineto -0.65873 0.30902 lineto -0.67857 0.36533 lineto -0.68849 0.39077 lineto -0.69841 0.41307 lineto -0.70833 0.43137 lineto -0.71329 0.43879 lineto -0.71825 0.44497 lineto -0.72321 0.44983 lineto -0.72569 0.45176 lineto -0.72817 0.45334 lineto -0.73065 0.45458 lineto -0.73189 0.45506 lineto -0.73313 0.45546 lineto -0.73438 0.45577 lineto -0.73562 0.45599 lineto -0.73686 0.45612 lineto -0.7381 0.45617 lineto -0.73934 0.45612 lineto -0.74058 0.45599 lineto -0.74182 0.45577 lineto -0.74306 0.45546 lineto -0.74554 0.45458 lineto -0.74802 0.45334 lineto -0.75298 0.44983 lineto -0.75794 0.44497 lineto -0.76786 0.43137 lineto -0.77778 0.41307 lineto -0.81746 0.30902 lineto -0.8373 0.2527 lineto -0.85714 0.20497 lineto -0.86706 0.18667 lineto -0.87202 0.17924 lineto -0.87698 0.17307 lineto -0.88194 0.1682 lineto -0.88442 0.16628 lineto -0.8869 0.16469 lineto -0.88938 0.16346 lineto -0.89063 0.16297 lineto -0.89187 0.16257 lineto -0.89311 0.16226 lineto -0.89435 0.16204 lineto -0.89559 0.16191 lineto -0.89683 0.16187 lineto -Mistroke -0.89807 0.16191 lineto -0.89931 0.16204 lineto -0.90055 0.16226 lineto -0.90179 0.16257 lineto -0.90427 0.16346 lineto -0.90675 0.16469 lineto -0.91171 0.1682 lineto -0.91667 0.17307 lineto -0.92659 0.18667 lineto -0.93651 0.20497 lineto -0.97619 0.30902 lineto -Mfstroke -grestore -grestore -grestore -grestore -% End of Graphics -MathPictureEnd -end -showpage -%%EndFile -end end epssave restore -grestore -grestore -/txtdraw true def -/txlndraw true def -(Voltage ) [13.848 0 14.664001 0 6.671997 0 7.991997 0 13.104004 0 14.904007 0 13.343994 0 0 0] 82 754 /Helvetica-Bold [ 24 1 mul 0 0 24 0 0 ] [1.021368 0 0 1.006173 63.572609 -189.592606] dotx -(Current ) [17.328003 0 14.664001 0 9.335999 0 9.335999 0 13.343994 0 14.664001 0 7.992004 0 0 0] 116 760 /Helvetica-Bold [ 24 1 mul 0 0 24 0 0 ] [1.021368 0 0 1.006173 299.508514 -197.641998] dotx -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -32 53 178 508 1.021368 0 0 1.006173 44.166626 -1.438278 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -18 -95 411 559 1.021368 0 0 1.006173 44.166626 -1.438278 sc6mt astore ssl -/crlinw 2.1 def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 21 0 39 464 1.021368 0 0 1.006173 44.166626 -1.438278 sc6mt astore ssl -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore 21 0 39 533 1.021368 0 0 1.006173 44.166626 -1.438278 sc6mt astore ssl -(I) [0 0] 32 652 /Helvetica-Bold [ 24 1 mul 0 0 24 0 0 ] [1 0 0 1 12 -190] dotx -/txtdraw true def -/txlndraw true def -(P ) [16.007999 0 0 0] 38.672001 642.400024 /Helvetica-Bold [ 24 1 mul 0 0 24 0 0 ] [1 0 0 1 12 -190] dotx -/txtdraw true def -/txlndraw true def -(V) [0 0] 31 603 /Helvetica-Bold [ 24 1 mul 0 0 24 0 0 ] [1 0 0 1 9 -70] dotx -/txtdraw true def -/txlndraw true def -(P ) [16.007999 0 0 0] 47.007999 593.400024 /Helvetica-Bold [ 24 1 mul 0 0 24 0 0 ] [1 0 0 1 9 -70] dotx -/txtdraw true def -/txlndraw true def -(t) [0 0] 42 697 /Helvetica-Bold [ 24 1 mul 0 0 24 0 0 ] [1 0 0 1 307 -483] dotx -/txtdraw true def -/txlndraw true def -(1 ) [13.343998 0 0 0] 49.992001 687.400024 /Helvetica-Bold [ 24 1 mul 0 0 24 0 0 ] [1 0 0 1 307 -483] dotx -/crlinw 2.5 def -1 0 0 1 0 0 sc4mt astore 1 0 0 1 0 0 sc5mt astore -1 -158 359 397 1 0 0 1 0 0 sc6mt astore ssl -/txtdraw true def -/txlndraw true def -(t ) [7.991997 0 0 0] 80 712 /Helvetica-Bold [ 24 1 mul 0 0 24 0 0 ] [1 0 0 1 485 -321] dotx -(0 ) [13.344002 0 0 0] 69 396 /Helvetica-Bold [ 24 1 mul 0 0 24 0 0 ] [1 0 0 1 -1 -8] dotx -(0 ) [13.344002 0 0 0] 77 231 /Helvetica-Bold [ 24 1 mul 0 0 24 0 0 ] [1 0 0 1 15 -3] dotx -end -grestore -end -grestore -grestore -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype70/prob03av2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype70/prob03av2.gif deleted file mode 100755 index ecd230104..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype70/prob03av2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype71/prob01a.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype71/prob01a.eps deleted file mode 100755 index 624ad6eba..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype71/prob01a.eps +++ /dev/null @@ -1,12690 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: phys101.set7.q1.create -%%Creator: Create -%%CreationDate: Sat Nov 4 23:08:22 1995 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 32 363 539 682 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(LTSm1,_DMZ>ebl1c%[$V@5X4NX6><%KK<(3X,'Gf3c[c9"3$#3O;#8.0RPa3J3(37 -% 5ne:;Cp2UEb:mW(GmR.-O`hF7#bZU,TtQn5d:#JbQ_OE02uDjBm"I&>QZ"+DnL\0#+/SK]2-#&]_p)e#8!R101u(-j3a%>'KJlO5M($h80 -% k"GA,q7cAV=Ng4$l*-1hD4tc?o_f,FJq*QM0UdPdr;S5<9O\(i>!(@,PJH_W;$:"n@!mI?)+ -% CGaJOoS/ZEfF$Z"Q2iOE6:aC"+D!d`>!ig+[m8f#XFLRIWkR%W0FM!#Ts0OZAM*VYW'V(ZX1 -% _q=G4t.Os$,;Jfc-BC`u.U2p>Y3%V'TX63s'h&-NkhLf$VL1:R;d#b"Ls"LZf1:dPIfUd55) -% A`s,G[j;G[:`+;e+c!U,N0+;YCtOTI\d$QE`Z&e,_/?e+9Yi=e::t!?#U%IoJdaI!!!LeiGJM/\u"+5m7O-qu-+(OG=EmSr6N!LXg -% 9Mm6V5>HOWIdI8`Uj\J4(S!t1&Lc?^+@N8_Y+07<;DT4F0p`Z?jbn8n#BJ8iQL"ml?2)fU=H -% I.GJTYt+4ooT=kGA[!mZ)1@>23sa1`;#BW^L]K[-^;p/YnALZ%4S$Y$hu"PLa3;6bdSk'Ip@ -% 4>$^DYm0EP3>4q++$b(P?LW5n7o@6QSL#45B)GHdMXm);YS'BF0b1HVcs/T&qcqjTG_"$Nh: -% =7tqQN%qG\D#osFE/tgSm%3RV4"uVcu""%u<,u!1':'a+GW6fL&W.Vf^"u88nJIOG`!=r*g5 -% S.lGL>>LQo9qVOlq(,'>\0"R -% _d@O*0=c3QW(4n&VN"3DK6W5:^AnV9lX6O/lELI?`IO+-XEs1[Zo:PGTV0AM2sA,q38Nj0#t -% ,L%/m=?b[%XHR_C9Y2!X/M>0hQ(eB^Aghl*=%]]&+;dJZXp52TT`LN&GJ?4H65BWS(YDQ8dk$+bj5A,j.M@Kfg12YYf0U@lY]k/eK,D1fJ/i`0K_k#j'?M' -% 8i,OmAM=amlbht)l-D1R=oHX\B>#.YKJVO&D=8SA?4:O>)OCP5](!BuS1eQ2C"URa>`OH.bL -% ;=AR`696Jq*GYZ!KG1=,RcWSL-@:&I)I"W1$='\AMQ&r"W<-.Y\-fjAsn>+ -% u8W@qOX%VTUf$:m4u1V=sPB597g>et>29H5*0\/Ak#,l+uFlZ^TLi_cb0u9m;o0Uc-l& -% o?;0llUg_thF5,q>AW_fOt`8_]T^ooI$9WN*i.SbuVY(H:sL2KGJ3C/bX>hU?GKH4?$(R -% ?a.K(0:q$t:HN>0LKVd&(l'kT5ghahNuRZ!:ii9V#qPOJ)md`4B't\"469l!,SF985]rdG]>!lYJk"0[AVLNfec@iXt\gh`K2H^]Q2CBA7r,;Sk5EUnR -% ,\o8/2,(H;F,2IGr58`;D`o>4`8,tN$d4GWK+%LZQU7Jj#Q4NsM8ng.k'9kds4k-piX/P+"a -% S2(,'R(c'S0PM.N#:#9!`n@13(O(6j.L5F\)btB$=klh&^,X+ap8o7j)da'"f?,6"0fmhkj> -% upWaDV?g_BN5],nH,J9jTN<*Lm*@9,PoUet7h0fjZTbFEoVWo,eJ[P!(Lfb7'C&65;Z*ld8! -% ,@X%tregG0"2t*c1XFjqEVERV!:Xk^-fKe*^[QPa)%Vn%8d;ija(K_U+V!_dqgX&W")FP)&H -% M&1k/R:=e,\DB_DK;)u>S'HLCtfuJAI[qCQk?q=Dd]PNq&7hhQF,;befV>'\lbLa(=]85p/a -% U2tr,G]C#%-\e'U9AZH%0^dWLkO0Gm!Qh(V\#2E*5!Ve9+DeC%] -% 259VX"A(/CI+\XGodtFV*$32.aluC/g>clI3W7BQ]i3tGW6VJZ8c:g*J9+Z3hgBWE_S'8,@! -% o!oIppA(P4Dkh=ib\M'%-*7F+bKu%Q&S/CIt;nO/nT*prtd"NTtI=pADB[nYJ%N^r8IHD:BZ -% 6/0=)S4C;Q$e((htgG+%X%@ZnmK>sapf5>b6lM\$6HNAUt4Nb>B?C,Tg-!:[qe/'3h%:.Vuf -% ?nGNdbn>_C;;g,CE6sc?ChRn+35MeHGe*E![>"30&cS@if,BjO[=J$G31*Fh#g=^T:: -% 1r#M[fOsd]bp.:,@G_m"BUS3t%Qh$?$Q5>0h:L"WRt2#eK*Jn%'LOSZc-uu5A8-8W45#ln-. -% b7oe9NLLJ2,N'\6!])J:N,[Bh'E_@Bb"hG]`r8JS=P(0jlRO3(ZK"48^r@m]m'HkWR[eBO02Mdr85Y_`LE(AlIi*uoL^09FLcL/$09?=) -% G`&$DLIpul-52978;bE?&`-Fh04["rLknigMGLI60CT+I.#?q.MGK=lIJpn]u25L^8d4;],oR"#jTi3`n9WJS,Al69#M -% Y0-CHak6>C75Tl9n0H`;m?oGiV?&_6,1@PAC@SAc_1A_,_1&qFM8-a@#GRN1`rUc1.n,b7B& -% .5rZ(?po7O99h3J90'A5P$c=M&C:U?,-Y".9Qj$a9H7LO_DOm.sXC)eqcn\5To/O@Gm'0P6Q -% R4MSj+%`b8)qW0<9e#(edjBi'Y:P_pL!LY`+G64&N?QiC8/`NB!\*`*\[+!0Jrlu,#/3V`CFP3qBI@uVLLU%EZY2G"#Y%Z0B=b>Qj649"Ua`]+%1HnE"JgrHeY=r-3]*KUP=uM=Tq6 -% C7j_Co(.'8<:cV$7p="$gPsD%n:gJl9;CJ#9#b/jP4,%s6lN/YU&^ADhgbA=i!f0-W6D0;+o:QU)`j![&Tg+;"el,Wsdk=PJNI+9c99dR_ -% LeLn6 -% ':6aJ!_6B%uuFm,FIc-\'R".Y3 -% VGG\c#AHsbsIP=/t(D`nOED#)sIRo,G#Y%4-QD`KV71^rB5?4DaH">Nl?/+J07E@ZP3h[\tW -% V8e!O+f9'M?Qf08FCSV-[LLAZ#p6PdOFC[%4"A(i]@:`?FBhE -% FRI\A&U;oF0)i,HO.G]m/gXi`WC8YB'CS%'>%R,NCl`C8%(VY=T"+OG8gb&Y1\5LXnZaXXIC -% =Xlt:,`o:%AqrjHd]Tq@V<[Y9Pk6?h=pFPDKb=Iif:l9OM+5iZI.3T.qg&IS#!O9\.8MWs)F -% Ru@g.9Q`1Y&::0Et@="[/Y\:SsP]]L.'u=+YY@8b-L]Vf]3hCT$/P7U]\ -% Bg/M_gF_#Q:A0i"j^dCJ=5;tIG%4#M!K"g\>b?Yj>Z>`2AhQ"G -% CNUfa\*,hkWKGIf7ojHZ1SD?oM1A"@kj=$,eQ/+9b7X"C>"[E\I[1,Z@fI4R\J%IR:YfK9-%q]=Zh0mK -% 1%eo5M2hCt3X?[B$sMX1L\p:!WXJ_5g;mR8Z'GLq2-,aO:ATAS_c@6[Ra,3;GG_=1tqe]sl/ -% rg:INNQioi#"?"@66,:+&'sX5cZ'F$U0/.Ji`ro,p"C'dc1dIrGirUu$Vf?9"'LQ7\0EX2ZN -% Zd6]2\6(^ftfCNOnBH0HNcdQ0i/Eo.FZ'a$rFWYJhV]W3R@q8)fI -% t]M4jOShn))c,ee.C;f"Cs;G3?77N0Gq#))*MHXOP/>JJD*]1))"d9Cu`e\uTK`0OHCmUBq9 -% lNU3[#B/A%S#+,j2T98Z#A=NNo:*_BgF8HS0ofjm$WOIF[95X.Ut@JLkLF^'-FE:ZITLp;[_ -% '3+gV(ra]O`Y6hci<%,d[X>:,rk^iTG%H\6Z#"Y>i<+]q_h;N(;br0)e`e2nHq3b=+*)VK4l -% >?[OI#FG_8#O).g:00fX_+bjR4"kUU_EE,h2P<;J7_Xta[,Z\@A<*?sUb]bMZ]&R;cF@s5&W -% 5Qg_HN;83g:/4m@Uc9+_267VskiP\)8e4t++=EI7sigr4D0b8-)b?/3.t8e=6Na+qPof# -% #hf>gqZ`#=k`$6f#]lSL8d"8T<X"8dW3/$:VZBC0>(6JK[Uj9EH4#()HJ$53Pt*DrHr:C(ft7OG2Zd'FYf[E3LDht.!;g,o -% =,FIoTr05qM?!!3I$64_RYZ!.C3D)n]b!]G!"+9:0h1'YNg&A>tQfM+-!`'qaqX3U+P/YFfO -% _kY[ZOOi6o_9KB"c#atZRikC-o#$Ku?"*1bAJ,3T>Us"WPQ8^gbqUf[HVi/5D;4[#77ta3R@ -% BsVeC`dS9`_u0@W^B9D9r=$h-A],3HqEHk%+HJg/93(Z.lL(YQ_.'?p/jF1#P01gW;%]@57i -% C,FmXJ]4%(TE9.?,J^(U=H9U%46q+.@CJ/He4HigM?q7pqI9hG+F=f1oi#o8b@fus3Y"^VSf -% NSa>X1cP-K]7KN@1[#/D"-Naqq"lOiBPUV*kk0jIa5qlP\d/c[WQD#,_]lK:i^@[`f,pqZ($.5S&_;i:@])(QRZ]m?H@1-lGWF22"j0e -% Ks#U32KUVU9ooNOn-!d)]u+'XkNbgYQ>FX]1!F71=h:@B#VC7.VZqjhm@q=*0Q<[:Bk:Q!F5 -% .#G6W@hPa'B*ca?"#X$U1Z[lEDo,[*I%d$Z,;?CM&7&>8&eI`Tgs>D@5l]/^VV%0s]U=RFPh -% Fr@>=mKC:jYFSaiWoObGn_DPjh9_EE1A-6\MSeD,H1C4Qs$Gc'uF#;jO1`RDH;oMA,,k4H9h -% *6&Ps17DQU]AD')R*aS%Y$'crjE[4[NU_&CTR(KO6?q(nL6)SrItf -% njN\2H]Q3Kti8-U^mnmG_n5sb)qDt>N`o`H&u5^i -% r:"i';)6a3b/W`ZWrN:8NZcQSWl$OU7k>O*"#]R%GARF>i4s`T_;1(Q2Gj&=QifM\`cFZEJR -% 8M'56IB3"$"*)rX&``coZN>THbHO2F.([8mi'+q0bKESa:Qj?h_TM_Da[TQ=$%caLaNYL^DbFg!iY0=8:i^ -% `VA/ZiBn_i;>Ds"4j%?D0Q.:^e**!pkiE0)BA\p49H?Dql5nWLQD6\S=&dfroC9\h`o!P0DL -% M\:?)+d!!o'%oM:^u]u(WgN((\sI?]f(ahJZ(=0*JG1jjL#qUkkaQh_>M"dEE76MP]4#T3Gt -% `PY5&s,R4R0Z+.jE*i`I@1n1spqQ[7!&L"IVu\_?qn9d'[)&bL$9W^#mq$VuW#h%5<>K,Pq52&#T>TT\ZXLM@Tbh^)TB -% ?E^4d=JQ#AKIQkiN_SdQ9$qW7Z$d(cra2&T^%^6]]_tiC[,cCd&72pP\Gj,b40H?aQ#,1ttI -% Pp$k-Gn(pq%Al9XFW>rK0:n)p]lj%Z(M+#jo_WD0*hZKi#bWde*dnr_=4B"gu'Ft(@=X*IR( -% m(pS+<&b[=d3#@o4JG6=q#jE#rU;#WI/!(\ZN+_9S'lR*% -% Ih23;dSX%tfL\0HW&:G,,6?+S+PdqMuFB6&AIp-=ICW(uYuJ*^^0u#qZ?H\V5q0$#W"PaH"o -% =3/iWWl,[_G9umon+lm]ni\2X,%]/^p']S:3(>)G0;N0@S/4q+/bCk;)!(mY+(AfLL"iQ0;9 -% H6emPplGp'(JnV_f#`-%G\E++.,rjIl9"pB"j_$R+@QY%";&.':uH![hBupjKj^%Dcfh"Q2( -% .r'#aj/:J`:97.g3WCSLL&I$d]De@2IA_1nTOdtW/[/o!euV\0O"6b8%mYjsZe`2!c@U+VCX -% cAs1W`[;&g$tK0MLMmb-L*\?@R<[?h3uWur"\u:[pqT)6pm[51;&oR(VKd\>(ct]Na"N&k5) -% P\o8u(Z"+MB!TK#6P>2d -% #Ds(5NV%0hHFXh8BrsH^","BnS0t=l$)^2$B.cb$Sl*/m'W(fETQI=n3$A6@2iO!FN3eP;n_ -% 6Xt>V]0g90V5_HmK;GP&3)>ri3JRhuqE)61#(SD-F@#kGS-S,nq9TlrpLkS'0Le7.Filk`N_ -% `3iKb`_PCKXDu'RDL*(pqrPbDb>%Em8toGVU@/K'k;(N4Y%p&;l!9$Oj:6hEi,@o,obbESU`FD;0*A -% p@^.-!@]$eXe^?]<%,OMkR3gn[Pm5YJL-Lsu^c3"8FI!^Un'spnGa:rFb"SG"_u5!IR4&0d, -% 5d[5%"g@Xa!:=/pEorPM)"N9Z9YZ$5bDN^j+e''KXj`:<@s^_\MT"VWuWe2"0.`S@R5*D@Yk -% MV:m6_NDkYU@P=m]NhTW42_(MH91k#+>BAQ5@tK]T@+YiqBWjfDmF"\R;6,QL2CQIFM&[32,"(< -% Z/H.'"bSoh]K],L4;=lDo;Il.t,:jRk5KQJ](]X]/QW/PWbf.UV%UWj`6^H5(AdtS=$C`.LU -% jPW#ORBd_M*tS4kNI8?O'm]+'RIX;+'rE+#4V4)7p.>:*l\a:U3.'$aZs.cRGsqMI=,33G<3 -% pKZ,'rs":T[B02h(5/,2.Q?f:O41/O?%dVYBVO/]P&I*8`tArR>PrWo1X.seG)*pM*rj>?B> -% %H+!$Y`*1R`-4%Ci'/fea!-88;T%ZhS)?L?90H4?9$%=8"90h4X+I:7RCYZbf`VQF"3[IQd\ -% 9VJT88i>`mG?H'@U)feC^)r9<&*3JXJ9hIL]-Z0c -% Hh13Dj/?M5"a>_r@"/DEsmjo2:)&O.VWrm-gXAQbs=*@PL]rURRI'jQ\g:bf[0&8#g7"#@5 -% qp/a]_f;l+<:mHDk3g -% MmK:bq)%IS,p(NqU&-?/\u"EmBnDpfsY&SC+3;&`Ls6@edZXH@p3S&WA`S#a:Nqd;brkbA&3k%A3]#Z\GnY -% qV.u1=k0UJeXd1.K-aH9M.['mn5H6=[.>S54A.$S&]6/q##I$sg0Wu^%;ir3IJYqG1>0LR_- -% X8FU_pJIaC<&]=`A:s9?"7)d9fmVQKo'<`LhjBic!eM>KPU:H7Fk:M*omIq8:B*@F(*u4rS^kDY^DQ$,u1rU)inTQorVr:>/J6e\ -% Nf1+D)<$apdB/-[g2P;3>IM#:<[hV]so(jjU* -% ``&9Rts6o-LV40;W\A:GO0KW\P"gRgO4,u]6>S!/GhXcP$ZNc#G$mNl4$cf/\Lei+$tQ=inG[i(,RT/Uhm$RP^/X[Nb8Y8!R4;N(I"2 -% b'+\u`R-[D\soVKK8KC.A:]FNEW*ZZ#0:rZCA&#OIU.3J4QR'?q#br\!W]d2c`^iD;i\iuFY -% Hf8o_Jk.pV3\!b'=G6VbjE%[?0Hq^u50PXsTF5&Al$!JpN`Ohk"1]W8."-no)WSX'pE=0`- -% #Js*G]!7D:oOC,dl\Y#Vm[G7=A_\Y/1MQ]MlrEU'4@AU:]W52%EBM@(LH(j#Q/tD0HI:l2mp -% fDPt5=B-p[c`I;g[)#lM5;@BIlhfL)._c#$MgQC]W.qHYHl]6":K?]OgUY<(DE.Tc6S)m;rTYMO& -% maQ8<%>J"Wuf1`kJc82,tAooRuWqmXf8_rt8)Le-QSI0kJH[[46Vt.k19Pi(+o[l&S/OAIhh -% 03YPHsRM3m\p-!0l;sPQ.G.W3e%EVWm#*,solthB?OY_i(1h_cCn`Rj.+*0%r?8hSEq4?2;W0bWnR1-1S:B#S/:C^?Q>`O)V9i?[[D,QbP/f&6fRqZ*LD2PoK<5dP#[W))U -% =)>.G9YsAI`@r[ojE:@)Rc$@)G7d\f^4pMu9b).$9IbX2AU@mI]N6ObS!C,$Kh$gE(K0IXSQ -% 8?)"<]PjK1#clUr)$!X?fn,J,(4(m^9r!ge)'MWqa(T)a]:(O$R:8:mq -% Iqn!=7)+*gM[?HgNc\KU^j`j7K,dOEt\_+(Xs[`.*jopogD.koM\P!m37)Y1j95><]qigqdP -% 6P*%3fli$&3E%*7Q!8K,a1/NKRgWpLm([<3U^kg/D'(.X82dG:=#"^[3B05l@+ -% MEVDkAJTdtLd#h+9KK#g8j?`fS,=;F=H_\u.!V:6r\\l/V3r:RY6/FiER=D-E27f7.U6gG3, -% Ye;j3mQFQcX.rHW:Q'F+ -% 27SRQD_-+UP%D@$=b>aLl'HaYD&E-3]jfOEUCPjE"7iTpGrFLj+D(Y^S[1.@)E$[s3j]t#SA -% u"4K/]M`fWUEXCGsW:rUTW'[6Qq"KabhVC`;2/Z_eWkT#Bte+N-&dK4a5m_b!3ql6<5m]@g0 -% 'qagn9+N_.(>Ylmg?;cK%3UO/`.?5SlUoV7#u>$_(5nC.2-3(@D2Z60WRSb -% lR33F5^0OhufOfi]L+c8UD/N%B7jmEQ^kB&RBPQ4$emX[.ba15M?YFFjqa$\<%tX1G -% #TQ+ZKKtt%XTg,^uNJ*iAPC598JZ`dSWL/5LDAn#B@VeN:LiV+E1qnHs8V9pNmb;$'M&G5ec&oCe/`om2>\BaR@C1]j/b[04qQ5(K@5-Qa8[EBi@N[XEg[ -% Rp:*Mo3T:V[la4Q!+e?,i?,UQShX#W/+:pV*ZlnP^VA+-r60pm-?AD_g1`?ij)jRs'a4Ylr[ -% 3s%UYLMf0]Br89,kr>&1b`%+Q,U>3+k&a'd8!cGp//,q0DXdaeNf^q,ura>!!K''\/6DT_o% -% -OLZrSVl2%hh7OC;L^X(DiilG!LXgA17IWZ5T">rG[^:a%lg=)X+U\*-khMMXo/P28aB71C@%1eS(]LLJ)IXoqOt=d$Q2(40P&%81W-mj$)r;:M -% 8J`SLCCc,oMIS\VK%IdL`s(,8,c -% Qnn;a?nT#^%HD9oTE<,dm=-H!B>"GD1Xs\.aV[FP%0=pC@`"+L"Ot^5a%3P;-O%h'rj-Fi<; -% fQ4C>T:;LMP];\':.D-6SjVr\-=Ts7?JW8;JTq"gBFg_uC>=E?SE@b+kHXY=Q,5)sM!TEn>T -% "T7%m_uu"=SDeK`b"NM;#W3,\n;]bq.7X.dCP-T4kIC>W$. -% X)s-nr<_%PqbF_T?[:IaK':K-u9&L`i!YS^HkLi4nA$Q0_R/)oCekfSM?G#E/$=pE -% S_CSL>E$[&4u$*L"'tpaG9[.`FF8i]eUj&E>>Q%fNd#:M?1N(e<''jEBHLN-!O7YL^)r8802KDnr63B4@ -% ;2uR86VJ#Ol/u^NMb%FK3;O[s)oTSFn($K`\0P<+"@;gKX[@#>;_ -% I.cX2Vi^:8F<9)-^(fi>]T2.:FS`QuBM]]VrJ33:"FrmuJ?7,L3l[>UrD\3//s6QRl5O#4)Z -% X.@X03nadOE5OPgT:?L_Emsl(ap.J7k&d'U4bW[9;;CCT09im5kRgW-q[M\4iOT.=dMm9E%u -% Z;s8.he'Ie4q5`eX9jb8;8tk?PV"=1[QZ;HrK:Bb+/1Xk$qicsiU_MgTW-gH?.h?V^*Yh&d` -% -jGV!+8df -% b6Wj0#5(\LJO'2Z_hoacC)0e^9ZUodG:KL_1HSN4(ZPFMAgQSGL2D_FiV)/,eGC10o8`o2qA -% M5o$7'br,@_i@h$CO52h_C[+6_BCWLZj;6'!QsS,1B,ois8Ui&9;,#`a_p^+8$B!i.-H67E+qJ4QhVmVGuQG\2m#b,lU1`FU -% ,Ter.F4op!^dj9O:V/u6X$WmQcb[:D,o9ALi9'YP,?0;HsrJ[q<)"TKSbqJjfE\J3JMpT:]; -% [*"DGB2tNm@lguk/8Tk3?N:K2lVJ8**^qp3r!O+a)p;"O@,a6jZblTh["o(;R,f59-+"_243 -% g,T"X"a/'1A3XJr5ec^@6BR^0hdK]=@4.\(n`>Xek^8RNaj1W;q*D3,KfB2MYtprslQI,/.V -% Sjd5@78OTC\:lL8Gh^sKA;CCu44h&FkA>"-;]d7nog!EEOnVZa;0 -% F_G.=amN5/]S&5Pe1aL_B)Y0iD#IBXNB5)[2EO4\iO!&6LJ[5ElI5'eU4j&YScK3.4C0eRs! -% 4R=HFp'JpluBAuc'jlV85PE?nDOS(j\gD6_L$#)Fts#)Eu>;Tae_i:3t6k_5=hu-JU<2t/+2 -% +Jur'?K1pDO?b*(utR2mae"p"!Kk)di/Q_5t"ri3#":pVqF[73bi/kAZE5U79n7)J&0JPS(Dd4&e&S^OkP<`oe/1)_IlaoRgk>$FU:68QOZa?iZ1(SQS//G%kZ"M1NT]db*7Wq-b)%9@sZ,4t< -% 8FA2/0b0&^5lOK!o>R&d"ohH):&I`H+>Gdn:B;jfdB.Nq7BFDX:ET]=Q:/lrM7Gr9/Y8Le.Y -% f0WIr[Z[P1i42b+K#OMs(/j=%!pJc4@C/lB`>.5uWImff>YSi?^:WHe#<:D^V`$Vo@t-5 -% 3+n/7)R`Q*G`s*_Jo5SOL`N8qciUGUQ^;K*EWU,!/B\bXoe8@3aL1:*L7].TeE0&O.$o -% &j)I?/Y=p)4rR7+*FH6a:=9ir.-M2'C0%*+N`as8=46%l`-NGL>Elq1FYSZ!T8L*H*=^U5G,S$,:*nmR7"B]@*7C\Fi+Z<9e -% 8dN)M+Fh?RqMXY?bN-m`]N:EpE[>M,W:A1GT0:n'f(B-gca@^II1%> -% ?.]H$/&96>Y-NVA(XK8DpY,k4qd[iQh_EolG7^$ALIX=#M3HQ>c/J+-eD\')F;LSqCZ%),4H -% N8-o%tLpS?nW;%fplOr62j+0R8)qpPhg0g7J\p/;85RLq*Q"\j/BTfiLl-2W#*b?04nq1'#Z -% *mg&MXAKOB+csr?';^R:Z4T]=pg"_"cV0`c_V-*7@%5e82M%mE8RMR)24"5iji[q6#1npFqm -% -aANUsiLThdeY2Af&1'1SE>&M;U\O3B$H:2mEBSDbDaSDcPrX_UhT*]aC(X;_,NDf#fG;]p/ -% KJ):8p&L4l9$fAL=3YU@=n@q&d1(`I]X,mAfQ5"s3Fps%o$>G88/36iD!Wg(ks<\AX -% )%Z,W&[giD4it]4l>-d+\8'XbO.9JQ*#ZNC=Ymes(H:nD=p:QaK'hK24rK@7hnW0R#L)89LV -% _6oKKiWmXR"OHE]@?Iq.m.>dWC3CSr[M-\J5LAYkJoU'CrC8jOW=Yb(UEH&-!6RFgrAiNYL` -% 0MQ2TqBlVOek[A;iX>`:fj$P.97hM7f*sNk;'JVXH3*4?0ED+MPW!5`rbl?C5KfpsV^[N4+r3j\K_r -% .G"cXR/p5QTE:F+0nEWjkgW>g93.=OjSkg5aqm\S!?"H-;"2FgY!^*&/dDG@747,(Q7:K`a`IAOhBOQ?Gu.>U'B^I_A,Mef$u-nQ"'`)MS7V>NXSHGX8?VLDHT -% VHBF2mfjZB*=[$n1n7Wqi7>cjICfT16GBOGo=l5DOoFB9-j&n5cfo\nBe'uu,Y%N1/(E%K!91\,:`V63O)OB`$6bY -% b*?mJ9tSM9]r'+$LX5?D0re]Dfnb#a;Xn0(WaPRr+L'm5uX%G@';OVh+*[I*WS4;K-/\RARf -% SOR6VnWDd>UUKL!>#Shk\1Z<*/tVmJ?La-ffjT*a$!.BE-op#3>T)41Agk6LL]dVin9n+0Q> -% F&e?=QV>Dg17Z63CHSLe5E]&QVG#Yd$pj,:8,c'gn!go-5qPNM0a1\p:s9@G.>2)VY%\.BM.h$ciX%k9t'%U_O:\TPcjAf+S<3.MT93nQH,]H(53A56*G/ -% IW.W)e^TBPAj[H85Ei>64lEGFp12(A9pc@N0DX*6m_\;4p;lC78RTW[2hD5/[RadhEjdC3g> -% O@fZ6dm5)^@J$,NEK"Jr9N(Rdcc>'`S5EaIQ44fQpO9^:\Rejn[_rlSua$+Z,*TE.PY(6"\% -% fk=6rIsk-dq7FU0:ZJnW,1Tp0;3$s"SW$HNkEGYi8_=sMk;PS(4P]fI<,+b!T$-n*Q'!In:q -% 6j3BJeap2C%<@WPa7o;J)3(d&T%%-pE$C;PZHfFJ`.fdo?T=BG=R*3Z1k%jTK'op6>=ii73n -% (7@TAB\Q!`khGHK]c*]dPA&sBL5%ZRdPgL:oQM7Ugka5(9>#bu);ISfN)+%^WkEN=KQ -% %Dg*=BQ\\b#2Xc"?qp8j)X4=^FIOQ%1c;5pVBMkS=cXNg:mmVo.^]!@2sR18\pD*@F]dP!Q/-EuCBKFOI#B -% P6pJSmUP$A$V<[=,qZJg>*kCJ'7!YgA-E^m#Yl+f3t,7@%_4m]A\lCGiKe"#9QaF9QWKH7j] -% dn5McFnQ?[>=2=$NDbnUE?febJpH8l8D]H'TG$]-Wu#/]F#l'"/Q4L^Z`[RcL. -% oBg;14jF>(f.#1l$P>Jq5,!<5mV%*k!$Lt]N@FUT1rWVVMiFp*L+lVF[S.]DsWQB3O+QA-Y& -% \N?[e2=)k+0F#&ke%4aCEr;m[b\FKQcYi+*l4,ScaH+Nem3Z"608SCn)m5P/JM`":aH4/4h#Umb* -% 8.9'b!4#$=JlS%7):4\)BKH@Fgo.>3:NCogHe>Z>"%p@uZ`bj@@UVGU3sP<@M:1(XFOHdS -% Mh92\h$HRXV#>UmTqt+4r8M%VC`QOY/Jh5uU^Ol/XU/?ef5)kh'U/XC`JaXn]-Zn']<"VfYbE\2VB<9U;a@BH6.>0 -% @SSL!!'[$E;2Q^-9M#?M1I\t8oB$!Fg(B.fr',VaC)FIV<753AGPgb>XrYp7Oio=0gR -% 6'Mpgl(1U:%g1K5fG/-4)U;sO"coPm'pT(4@>l,lGRF7#YSb6c+L+s(,A*k!H#"AZ+f'Od7U -% ZmeQ63q>g*9`IF[h+\q#H31l8eBBPa -% @@O?THgF(q8eI4eh>Ma!MAb?-qPhI5+\!#e.:P'I*e@-6$7\#cOMG/KnbfODhV9cK,>5TAL6 -% 2o3o`8QKUujud#qk%OF^ -% u<<%ou3s,S]=n/7^eTQ%r\VLhdRg-6=A*T[T^H'O=^CeHXP7p-TOUk[VI06Ko#Ql%GXR:Xd1 -% "MOm$K>p,%"KOKRqA^n9L9a'Eu2fdFn6`(8;MDe1VO@T!Iq*Mub%Q`g%=Lc[2.]8h%`[HUq! -% uYRcBLq8>25?qtETi;*;N0'Q=G:(-m,U#rL7q8MW2KAtRA)3s1+7ph7c`5L_$CK;$'Zk'48h -% M,BMc'h25?f"^u^II/"ph3o1B6glrZ>WF,.k5:FA?+!I=qM?3+/q2pC'LB^h[ -% *WAZmV$s&JE`j7d72`HVEk>#:g2)>U_9@\PU_-XYE9X!K,R:`dOpt -% *QD1,;RO9Lt5>:#>FqO_RpKe5Ih7EM#9@i&Gm@U'osY1m;f[VO^936*58Yi((p$@ -% >I3_#F-c973AN!eAJD^64tokEIFX[=K3[5Q;2#E4fY6q?[ShC7+3ldSkjaC*BKlQ',]hlhH0 -% 0m&c-t(;D[,n8p9/a@]BEEd-AAsU!%536U7MkWh3:Zgf!r`)oG -% A;^-f9ZcKL[:[OS%qXmE$:^fBdT&2[5*RnPT;7EX65c^HME$i0`8iU%/'VoskQiP]@AT!RE[ -% 4>0K_s>Wk)'XpJsdU98HFQJcmu,cj_@^*8=2]R9YDUK"A;I$b3974P,5(VOfXh0lDB+WmPFd -% f;0Sm.3_OTd[c([0Z&,1W(pde;#sTFM*iXc%?ma)^e/P,m^g9XEr,J#1.KTd4EM6"_PP,nY5 -% .I,,3bk]e:*gbclCR>&pdHN?C#=Om7'3H/'1a2U$()iQk -% !\\ISY*sL)s;e&`1&0>$>R3P^8:jRmQU0# -% :DkQusWtA/]]C',n*\93P;BC9VS>-L6(-GCEttSJG=]5!J3DhT8>,7d>7W\qOq#n/FL:h/f#;e#+\0qGieH&A>-8( -% Q]Q)Aa?%Osn27>KFLaq?^;m&"98UKsc_:b*8ffmKQ\'Bt;S6&#qh7s@*kBkn/9)b"taegDc! -% C0L%d%X.e]DC"9]l:N@!66@2G.p9#bW%/$6+^qb7$3o5?X[CU%VWe7_M5KQ!"qI<*A9DDnh6 -% $KK!a7i;?Qpj63j4sOP%KY_;iRs!ii9sk2NESfU/Y.g_da=TO.d4:%A?WfP`9qn0r+9>. -% &DTKPe%_4\qZeDVr:n1;@7;4V^%W@#uW_-;b:&u6jrA<1T+fN,i,#ZP!3V(idOI@[:T*5i:H -% &mQAK#W-&7pW7,Dr%\#ON$WC_1c_3GeRn)sc9TIa/-Pat(/+]Qo:P-S=tTDioJ$s7(<6HWj/ -% J!"=;iu+7S7jsRT@6Hs^aTK#(iNOBgUc;9";%h1cHU^/>q^"sK=,EYe'JbG3F^?-:+A'Oi<5 -% F_Fe5gEcfBMFTh9dIu,&O61mTk&ODQ,\T;kT1B3[=W#lGjo\Fig7AW*o7%KgA*An2$WCZ&Vg -% PFOpX[0W+"KaRVaTPB=p2DF0C5j"saf9QQ(rg;?0HF"Bk.;:-W_O1(F;C07'(-JOoBKlST/# -% j9S[E>sS]2`d\Q:E)oer2OV%*ii@ZNkXU9RS7jASZK^D-dAqT&Cb=8*`k930FK+_U6R*;B45 -% C=6nC4ia>.LY)QO/l[8JHQUR8C\YliYXLWEY@Kon3Mk37T]ko)r$6*\Wb;'fIiZ>kHpS_+^UX'Yn3/2TfR4CGk:^1::i'+bO=^I$Q6V1#jT4Y!2Pt:_WkT -% T/fK-H69+#[md4AB'2Tf"Nd@*@/mEE+3Jq3\IR&nZ:R -% ,#@47c:i.R48[I_*#$[\9M\MHeZ]6eMK[E-p:k;*VcVu>JEM7LfIRO_M[3/RmjO7F)r^nNLg -% prnID%q^Y;,mW2mZrqQ6p-Vr7Fb^3P*\s;Dlom9/`/%d3hiD_#U>hEDFRNr"OjebRG0kda*i -% .!OD&l,0ij"pA97i)5BpNTi=bp+2afU/-CgiX*(F:roDI7tAH&:@FA&Bn-1fcYWDUNITfJZI\:l!V"g -% .A/S>g(%'>l(N"QtddF^>XSFL7,5(dkf&%)IHX=oU=%qPa&-HMod&fZJE!u5&I$WV2M7 -% f%j9XS!N=+209"L0YGZA`#qCIik+`Sr)'o,-j.lG#G6fI)*_]7f5qC>H8@%k#m'04$`*Nr*K -% jCI.'KH+0pal;Df.dlN]E1)Io*]`GF%(L[!K>lTI<4:A6.m#%UG1%g?jCr*35e^D&f$B))asAu(G$1 -% "Bo-C^lke[^^5M&/RH%AO`3@Dhr`g>\o$@^LH*.Bg/7A3*p-fEktQ=+'bGk3.r"%dDUbbY$f -% ,-!9dFY3eR`Hp..IV8NH_ua$`]2h,K7MQ`>CmS]B#M#f-Z[`=4F)ch.W$i-l'hZCq1=$l0ch -% p^XE/5U?R$Z0!&9cdCW]h;$Ts&6YC>MSI?B@\O>!?p@N/qi50 -% &P[Sm<[=Z/sVt;:CUfC9C=o$3M7Fcu=pc)f^Da(UN>\XXj -% uV/R,&iq`!T]<3K7YOY]:UfN7oO+P%kUY'D/])$d#e]g0%=Al7<*0_Pm_FAp+MDY0#kX:(q, -% /&.C"-YEg?\(;Iic&_Zn@b[8:]Z[lp8Cg&dd];0N8LXgi2uYeI)7$NP[&%k/?=7PS*fY(DB\ -% FZ41L%d#4"\BQ/$PR`to&(+/f!hZ?\*A"!)jWbPk^I?^,pB!EPC/Mo-JmhZ/Xlgp6j\ -% '.GP\KC!\t4s^L0[df((;#p"Q,T]CmKe`)/lH*+@j]-^I!c([d;=k";R'831(7VfWm`D&1>9u(Rdh^AG&^.8D?g2R0mDWGjYHN3u(,!E27#s`O--$& -% _/,2_.aIL6jWfj6"24ZCscfukTXgY\UTBeN>Wh'MCNM7`L76%O"cnl^Ho=oOJ0Wq4i4t^+P[ -% 4^6Eh&Q5mm(F[B6>!3c.oRE*KmZUJ?MA+D`5ZU/A'D,r/mtCbSf,W%GlhP>XIIB6gna*BYn/ -% Y&(FQn8!kfe\=Z,d^]W*Ss5TN9UICuEUBp.c=oLh%fk)]ou"XYR<0%+^p;P -% M6kJflVG[:2!/XVOXY^/`&sG2S>8@l=\(2m^-Mf:/kpJcelh+NkE,=f%&]EcWPbc5u2`i'qR -% h&Z#,k+0X7m4>@Xed@uRD10`0Q[Lh\b9XW=o\?.,hub]De__NchXU]0j=c8c@d]B5K'KsMUs -% VLTb9_=$It&-0kj&i@AR1-dA6NV`,&R@UlLIUjCX1jA3lh(;+le+H,Tkd\5`6>R&-`RgdqrV -% /?,:XhPnK-*_#1MMSZ^&j;ZbuUIWj.o[i)fq&JXW!B"_=/R0"HL8Qh+`];U>\Orb"kCu$;#j -% I-aFY6`LC7#t?m)A6.A\!V7HB^)"lZM2g0&l.7"AuU3<*P))]qN;KVA^:)BB3Z[g)cW3DDRLJ'q%qf+_PWjCU&dQJOA(M_G!\e6F=.%EWVeKX\QuH`f\^O'+@g$9 -% &oS!FQ"d2a.0RPcC,==GjQne5nR*Ru*pJ.3;dh12p58DnG:/ot\lR8SF2OtqUZ_'e+%pM-'4 -% p/0:36=b3$]m9@\?m[<83!lD.>8c,*bpPe:S`%fg9W61KOh=5,8o+2[SkBL)#3nc37g$'Spr -% /3QY^Wa2CQ/5N!H09Y6FA*uJPAeNV'lT!tbNh.YmrIltEpSkdh>7&??oh,BIp>$4ATO#qH@# -% */4kFHoGVRENpHHl,^d>*cdcG5a_(kXPgB?oY5>d0?.)dgNd12]pdBH&e[+aakG -% Ni4E`9@'&KG;uiqEcT!PAn?0D0CONqSYCQKCUE.'LTn'D7UDco1i<kKR0_1WtLYOg0@5rL##pDRc -% kg9;fq6lNf0?LF'D$8EHiJElt\Or3Q:k[7hXP/3?.:jq1cYX?'4/o&g]^WL!SJ_%\9SbSt4m -% L"':%&M1:or?Z?LloZ$>_TJ4o.!-5%FrsmLKf,'HIB;HsD^Dub%kj@`SL#@pRnNE@b7`cOAB -% 0-lE`MBc.RU%9PAc:'o025?T"O3bA3.q_)A_J.L3%6t'\tVLlCP*'`m#s\^kCU,DGm>keMo4 -% LR[5&M#5q'Wnls6sW?6'B?/"'ob'%JcBQE3887-Y=N-\;B*Y9XlW^=bjAV=87]T?^N-n!nG! -% 8YIn.I(+YZ[uI__g/FEc"k;RC4h$D;WVLB/2Tg8cX6$U;&;9&G7M.](bNZF8 -% A"7up7K& -% P#UfU\uol_^l8%ML:sD[uE<]UuofdcCf&(#`0:m$h!fC=&V,m>R\n@/k:RVb+_Og_F`ITA]W0gS_1(R>!i -% X00ZZY!<=#9>7I_rgRVb,IGLAJ0e'6MQ:LSnOQ?945r5i%-rAR*'?nCf+bZ*6bPN2]YA.Z:0 -% H\!L5C>PP!!abMjPY-TE2^GnfYYX[tsVR(t5O09[KPlMol(,`MJ4sA7K\KT'F[.0@8 -% 8m8P+807bXcSR"F@c/PgYo=98A6!+$Cg.Yu@e]*(W^78$p[0-!0Zcaki_E2@i\YW[M^XDI<% -% W/6+qBS=K4ee46^;+44@u9=Ip/h++LR.TVS:O8@\,[1sn@QRCggZ>hKI&/@X(1W*lbfs'VXcpA>B,V,jYT])aiSNAkQOqO[VTXE89$ -% aM)>nS2NJX3MXruBPK;k%$,c;n.PSuf@1Gd6DmK8[jn0Lq4uLEt0=`3#qF*C@/*/18aZ2qle^T9_uLAPVkqB<Im;hK^4MJ`AU[oeO4< -% TkF.%WGe_nP^VZ8E)H@S4gc -% M^eGEE])hscP,at$Y>B;\62&3s*'U?08.-H/N&4;=,2oFqOo2b%S^-gt%r+FW3'D#?^JG"6c -% 1UOe`O\aWl3iX/[aG[Ltp+]@="-APfAf%*eZh%BV+3&:VksIk,LNdP=aT9Z>Dft%1-Q72eG4 -% eiMQF>:O7.k9_LdY8ARj-+]_fD,[K5JO-.Kn49f0sq?%oormO'l4)JP?LqA -% &s'"[>U5^,2><&j>.'(VGQ'B]dmTga:&*LM2V8dL*!=?+;P80:JR8/K -% W9bqa8a$[c=GdEST:P;lhND0jnF:g6AS2Q59#^HD%O91bbmm%p3o4d%.-XK%P/Y,RQ>&naR` -% @/"b*]=#=*4U>T+oj>5/"/S9T\#4bgu+$q0QG/_6b8oP_(MPB",]8(AXj+,LZAeSA.P?=Tir -% 06Kn$rbm6YLoh>[u&j]O7eG5"&nWZT=.'81HP9-O3:g-"@t#Y>DHM=j21$3=[;HN%b_c7(;GF; -% ?#q0;(+(f4JrGI,&[G1dmu<4b)a#/p>n/s>t;H]+n(1u/%E#/6RNB8&>hh'"7D -% L3c@41fDsh93Fc(Zgcdo-)ca24<&4<6F8X:PW#4\_;3GXG4RD+OO1jngKA(]'jI)H0Mf15,m -% hZ;HdX%t$'RBqdPXRiokh:mThVFp!h^d/`N*`BSLLrG,@jJ2OFBWH#Z23u+.d -% &3j,NZ3oI2[6b*Q-3Y?.XnJsbfa!MqIZFf(J9t;NX8.*l&k!\'rJQmTAKqsP8j=]^65#9F^> -% 6%.%%\8tUMUX<8fA;j-\c-+E`#Knl-XC)p\3JI,G,Ouj[P?`:S0MOem#`?ATp&E5*]dnBI5$O -% F&O%mY#bp-F;etApUoN5[@Cc3mT>=2a5"C?Q>bVQeQ.oC2:bj!? -% =&N"[Mri]$fr_ok8EXiB;)>.?6t&>/"%t0?1hCLjd!rG'OXX1X4KGIATFXR:gJ0/+l3kOc4o -% !kQ#)Zl/m,PSW1=BnB@5QZg[k*lKktd1,qB#V6!%B2)O8e5`[5YiFH9W4'jV;#_!S'ucI.cP+TqT95N_Fo0,2\i&iN[:eN)/"tSfS^WL%j[h!\U#$.1E8HWqB-F/ -% 9SH:2&A?:<>$ -% YK'"&A"TIIA+o^QnSE/#?*6e2N8rPQJX^WGO@37OqjiaTRW%:fIu&_Hb8/q)MUs"W&@Y>=/7 -% p(3t.Y88@`T3G:76m8XC];iWb?1l#[f!W)ef/No.f7G8J,od2W%5Kd7Gsk03nB;QeC=9U(6: -% D"m[;1u6IV&pK2/$Yb<_!I]#DfOB(R]NqKYG[^VN(1HIq?\3!gAlk5&R;N'.:\Z^[p2C5K-* -% V0c#[=CdO'[U:tR9hPSl$9>=Tfl=M_gU3V&b<]]J!r?-A$HI(lWSEJHn[=OSSX54%mk0bRH=Wo8L=F.YEH'+ -% T]7uJ\qS[7aqrNp'Wl`W1nk,s2[KQeI@8A7BapU&%K-0l=TG"$bAKeVJU,+re>4d`kLMr([M -% XZXUE\a/X;i7c?8H4&NdU8g1fo\dlH0fb=Tc3F%I_7e.EUR`KDTFH?M[( -% AM,&^_C5bA3=%e1#CCcFbl6Lj+tM3XnpbqL8&U]Bck;(%&2G;$Zu57apTU/_Wa;?aAL,OfTh -% 0[qLm7_7Y'27FfoL>c2.0HhcAJGVt*/qL#e7"l>(Pl)%L=K+Gkl-@2<>c5"fGr4Ga>]:EP8F -% mGr7MAN`X>6O`*5'fQ[:cg.s"7AdQ;=K9g]3[H?i1=)rI=8^Cq4l[/R?OWc\*%5S)uc?ljkP -% oD/O]M=B%dkk7(+UQD;5),;B:N4\/68-=_CI8:"X>`iftl9VHPI'P:*ad]'!RSUBGuG3CB`h -% Ialm8>0bY#Q8bf$q,'n/!a2g5Oe1aD[t-Z3$*AR>Gc5tLG+_^s[q$UlO0:hS)URmk:.*R?(p -% 83t@9Ye6a82amMU8Ut3gX\iV!(Mq_l7SHQIuV=hOP4VFZI41MH0a(^.2dGDq[W;UibE;)MM,X3X(+u\O*j`%mpaSZ-VLgH'[$XHM!o -% \mG1[8/pn'mEJDYt_A9LQ'HH>Q%YGXQ"QBfpu8jVoK#qEA4J*n]*j@s+7V[b27(8;&o>5@XJ -% 24eigd-AU,O?Rb(A.oN<08QgrEJ"%ES-J\s`IZ9gW]>TO#m?NU)j -% K:,h*FnmpGXoaL_\>1&drhQ'sX@fbG$-)am-64pYbpW4p?6'7L0jNE&@68$\L,G$TV@mQ1M:.[bGIT7 -% 7Hpd%atja3JdZ>mW1iWDDYQmu>k-1gckF!#udXYZQgKp:-^"-oRUs-T&^P03RVPCmfrO?`Nu -% ao&gPQo[B!CM0Gke*k]HnDWk-4_Z=:-8.nCF,k3-LFXIZ!Rs7Qi?iY2h%i-lGI2phaH.m]WGa:STA)7% -% m%8I+)?4fCQJ=+g^+,K=-/%uG%^)i`BI_.O!tO,PeJ'gkI4H8Q(`+/$$.W* -% JA-<#?2=$uh'D-0C\a)jI?.9E@YXk'm2ZZ00(k3ijTh_8YFT$!)d?H/Cu5X-r#jXO"6@M_4R -% TV\gHj%DrWM;!C@[rlGtIq\;H9>%:[p)GQY2CmJk\MX^-"H/cXLne-+EC\O:NPWh[Rk%h1"t -% e)&;'/X&[pF$c9O,<4&!U6lS@l.dK1,HC]Ced'Gs^-M,KXjmbZ>f&V8Nge,.`*rpGR8@RX?W -% o<5]4TdOt+]1=F"mMk-o+qs91!2k: -% ^B>5_#/uXlJiD=L@Asn2hh)()^6ipog++_/,Ms-ONVqLb4cr+3F\kF*Mp9/hRnLTfT\2'KP^_.%;)kLhTQ1ghio -% 'pbf?i8#eEmL.Fp_]4Ioajp$LdHe?Q9g`.cYSdZC;`r, -% TM!5Oncs3,d(AjnB!rZqMsLU(fP@h0cQ"nuQhl^h:GB(t5p\N^8gf?K]:NE+#\&6sMUXtcIK -% dDI&G/VQ1*#QV0pA7QZ_A^=S;<=4aP3H=jQn=ET?`3lDplX%q&`VG9I2Y`'FGpmo'n<"*[q, -% \1?95%O'*pIpXV..iC$j?OV_=r8!!9Cc%uOSJ3"f9^krGX,e\5gdCT,DQ:D7]Wt$F$]TrcG[ -% eO9;5#o91=rjh"EYljc%+\$*G/!mqfn?ISh=8Zchemc9&\&FJLISX28cs64=C0Aq7Z^8]$og -% FZhgCW<7(0QehLI'TU#CT6m65'3.1B.4q9&2=kM(GcBNRlt3%,+dE3_frMW4/.-9&G"]2g#U -% #hD3`k2#ZY,[D,\;Dq36dL/`aNP9X>+doK=2_P=J/r?C'j3T$TX(NO^`O"!R&0%`G3dOg>&I -% MTRTgmi=gM$0U:?i21=Ap2q>;`<7&E69Pu#klY43+qo5AYCJ#iWn\UL9SM!;4'o -% HhAlOl'o>ae4XnG(i"P.aJE9EKDhXLr>j*3%BbuC>e:qWd#2=BpQ3FT]S"cla))u1!%Na/C9 -% CTC0,E_sZb&dg0Y.erJ4oQ9CQ0Aj)dhXQI+UTdBL"d.Gh'b_2hDQ-("Fa;d#"a<@YUPR`W"I -% arZ[(M&d\of3^=GS,]`g+YSg0J39;7O:!N4Rc -% C9T2a_>hSk87:Eb1!?flP&>_(eWPP1`]*Rm7GW?rdS8eUkm -% 7j:p)IoS6CcY)$WM^J;F>.'^M\\$N"q+;i"cu*TCf+7K2.kXN)VK[6MZ0E_Y7.i`PMID>"5V -% ^3[44;"Z&?7/fWbe`4abH7%iI/OFu:+^/+N@aA\eS[s/.719-uei?bO:'-(8,JRO"\+=UnCF -% >*tg)Cu5=i[c:p61tO97HDH.'Ts$RXFhX`<_6?]Aob`WS\\hn0a0KbiB[g$[i8SA@$RO@BTi -% eS+,F7?eADs^]&&)(4'($nYX^X=6OdX9\4;0<7a:%o1UE8`kt)1M\>YOQ( -% .R9Y$R;P3%49N'8laSD!NtdqIE;]DD5n&'-]HiD$H'T,F>=Z$*kbJP5>*Qj%?)^RKBSZbR?j -% `H,g)I19XiIt=FG&-VpBl'76%>C_k>fP.@d[b1D^pW1r0d#L5X[,mWh`:4Fmg.!i.:Cp7^$O -% "&V.T"`PDQ`n]=A4/:u]Rq20dW/:%YqXtCERC)6(u.!Lt.eQ.=Lkk$P`hC2gc-s\r=:GQJ]2 -% *FTdU!nC@-5FLWmk!-<.!\M*RP#fqW(bp5XBG>r#bnHHi^>f0C`u"(Ddj:uL=e[rKe*erMuS -% gOo#=QEekoODd^8c_-,sD=?--Xa8Q%=1_+53$lD&J'8l6<.="7Mi8QI8*^QK=RbJc^DBiUQd -% N`9t%,=/nR+dKQ-Ohm^u/7uFLOM\27#a[$OOP&"UD7>Zar#Nc)noN'[G[Y+M>W>dDL9Q\KH% -% 35Vcr#W4nemo7P2bb'#V7)-e8WT1VYOO1coslQ_.-](`dG2%.AjH\q'_XkQIei[h+jeWr?1I0tnU,r5Pqj59,s@D+4K#h[S1^S%b"b/h.N# -% Xg\Zg)m4X.Gr+M>`R29@#c'VAK_!3&b[0;\7R==Xa8=3)[GPVku\`a+2#dQ12=rZ)XWFpGrX -% @b'dp3m9_o8KBIZ2u%]>_%T=OPsVcA'6PJC^(=PEC\:gX' -% PO_0_`?P%mJ92LT;WN)ZWBd1uuLo_G\B)5WM%76#V1--BUj4NVFTT6PE+>CKECnYUdg*V(36 -% CqFnt`M\?c*I?7A;2_CK)agpeh3,j-GHAmeAruh`D@"gb@="tZQ%dtZ-X,%=$"^(=]FPDIdd -% St^YWZ8@ecr-+6$B\Kj,>u?29:)J/6nI#f'aN&9p_GC-42a2s'4cW$lp=(sW@X!_:jrKcTuK -% N5*eXd850G;=2$=HK5fF;4.^bN,+.?imG!jch\:I1X5p7'%Hr/:dM(,/QZa_Cn^nRL!AK:<. -% @dr@0WeaN\jNM%.6)H.8$cu"GD4V?(a:L)Of(:/Q!(*DrOhjuPJHd7j;!J,,&T_hYUqj2 -% `]<_`P;'&l^6>sI"M/*l;1+6o4A)X)GZb_;Fn:c;9hm;8/;j-"Pn*#QPO5n"/jB(n[j1=pI' -% k(O,TNlmp$K3q]*b@$8FE#*$:i0lm>5k\qF^lHk.P'AUkt-W'iD"#\Dit:)Om_ -% '8%aL'Kt>fC*Q_OXNLH[S:)><>hFGNBD;$!o[/MY8^EE)0>qS@i<_-b"\b]WI; -% `_VtNk7YEV-6`&:4Aagl[/3RFABSoK\BiIb\).V5a.ct5Q/%S(!9)qNn2Fh2-R%:%)D5;,A8 -% 21ACr/3&Q^&gG>OYtCa&#T[i)(:1R0-a@-XQ$k]g-nrAlSrq7M?oqMeU*-VV,S]jZ:22OD+3 -% M\36eVi4Md!#'uqG_TpVS*,\'miiK,0nTSC-AH.(ZE'*Ff+XSE"N+MsT_7U^;Q"DUda3aQW< -% Kgk#5o1pYL6Bem$@[]Fb_?3I4AXh)(;4pSg6Z]jMS5Wj92hS#<%U*8s/Fk`.8DD5Z+Vd+n"H -% M&@_N=3+PcQih$=T755N[i,Ue_VA;+@jT8_sRe#q*L$m8#K+/i[Q+YFH=*.]TW6U.A -% m3Z;I-E^_HZk^(Mb&,"0]hIHeLcomA'M*m(.,7IbFY,ia/m6n)8&P=Ta_I44YGQFLN&DH7O> -% e,HSjLl-b>n.RltC-30i.u(!3l4]te6I^:g&n['W"eHQ_g*Gr#;.4O<*$8XCpiU-&4\8AfM: -% S8&>a+[p(j>6$EHcAI%?i59?3A(]>SIpioGT&1QhcK_:[#[]C?3Y7GW:VBh]#E=WAiif,8K* -% @@cp'#A%QFTolOtBq$ThB^m(6+H]QXmb2\nG9X':R^e`ODEU"9,S%)$a!_c*R57*I*6DF2b2ZfOT8ZPJIXBKXk&tlJ`+FFtV&e&"'DN(:2 -% "B2.BS001me8bV]XC=;q"*V/P^-WMmOoM6Sm8@[`4^h2!gf4N.Vc/3NU5A,EVOI4*a4.?EPDmSLKL!LQ#q53[i?ZgZ_U -% mLp"`eE!+U3'g<8]_'=tsro'.6omD,/5akJh$=5Uf9Y+IP-6I?9!WTR4j6YMBI:qATXl8nFh -% ]>%@PeHN7eNE7hO/kRMT""hRLt,'C<0F,W`J/6V#LJ%Ja[\ST -% QiR>0H6QpmBp@g3W@*9*s"M`$i\>f=;+%-Z@T;;&/C>&CSP1P'cEm2noTn'*8R<@UaG3SRl: -% [Gk'7H!nB<8a`@*":[4lW'0#K\Gj*tZF@S[$&$pGqf7`Q@$J.2R33.Q;q'59LHP.O?OAI6jJ -% r%buni(JA1!K2AZc'[IXSSXfI1XR&.,8LYiEq_S^";BBNa?&OB?U[uc@?f.NAp?BQ1)HP;Ol -% Z*]l%g&gW>V/T-'4\A'dl0E'k.'CbO?>J.L_[%GofS^&-4)sk'!taMA]KlKd4 -% n2iG:ZbtOuNsTo#E`0H;buE30O5%=rPifLVQ,>&5.LbhXfUamLWr@:l3^%kpVi8jBrI596Gu*pl#IZA7h6;j3Qkl_A@b5-FNn9&4j -% eLm&!D=$e^2@)>>r#,nD.=L$o+S$o8>`Fr9f_1eDJ&hH2\SitYb[O"/)&;pFAd-O_a!=Ct`r -% BcFu:'j*F;,U4/cO*. -% dU7X%3t.;fU:g#kiru -% 5ZK3S2cBMr/3?cLS*:*^^60*?r",Zc+IO_SF/&c^7?["3J2g6!)3fG"R2gNUQW7t+\W-ETa3 -% Mj&gpA6"HhXs>G?PS@2pWX^@hAhFX2Q]3C>hVDc*GMm;@dBg8XhfhH!&dA9kg)(1sGLhsj(9(\;++*:1q:i')P!_h1%hG+q=d*'_V`5iBrS -% +Hs-8V@V=A&@?i157nX\k92cn;tW9(p`ko5r&A`)\kAT&EFtBjhiJX_=%L30e_]O%V2Yq#GQ -% [oh)J)[H&P=PLd[>%fJuNs!%+NhT;r(8!idphRrltrQ*<&i'-LcdYaXQU'$u/8E'CNuWmKbC -% ?WX;-KE*@P2tn,%S]V*_nsiY`D+"AJp)K^^mP+s$8"*A8Un2\$7VPVOKMUcjWM]_C!JhLQV, -% 57X7/1>`mA\2+*k`?Jbq=#1=:^T4ie:&Tb;Bs.?=`Es7`4MMFtf*N7_)>Pk15f;g3r35F">l -% cg"C_/7-p.A9Y.fi0SK19DX!X_:4&?toY -% Y[lmA5#CieO\,NZ`":^8_tp4AS-\l'K":>!-GH(aUt?)$h*?A@@L(crWl[*0C&qC0fj>`M_, -% fJdRH"7ZH33OYd>)Vh]+&<3Uat\&s%a4AnH/O$"fu)fc`YVO0WME&ZI-PB+T8Nb-20-/6oWX -% 1+*E2r$[oQ@T#"@KOJ>[OC0=L4&$A>9'G]dW'acIm_4Je)pdU -% 5Z*a\)1BS7l_DuI*Sf.f&>*QQ(2H#Vn3[9aId$VdPBq)Zmgd48?bsqNO&Oobu2_!ba.4p)F_ -% [=]673+:)]^@nP3$Z$^>`Pf2+CZPjP3?d=1t`d?-0!rR@]KM?fgV3lD&)bA!o`_.>0 -% 79W%$URI0'06PnoH)C5CeiN+W3Sl>Wm<86XH[J5mGdeM/::]Kr"ndJ&OXolH&=gh/"c!foYD -% gqEFo!I>VQX"7o&"$+.=CJY*&Xh1BhYEM*F`_%-=66!A?[#c'-k[7,PrB^l:tS1aXC[3VPI^ -% ).&hs3^N)(l9=>BD/1(TFiT^GS9IKlq5Rn!_>i$g)kG\*?PG`m')g9nQBQ2q\DMsnoW`;f?$O=TE>3Oe -% !Pp#f-T\!5G`_J30%O3OE9;Q7!-_'NQh<]BY-!B-B%aCkR.2X(2ShX93_u$1U/2i@B(1n&eq;CFM?eOF.ib?)F!?jgXFK@d:;U)- -% .B:FV4&a8Wdp`)l0!nQ0?N\Xb3.3;H/,$)lrhIn5N`"s" -% 8DT\&fj@](ORD][q8("C-ol;jKRFpN@/Ii#hbb&!M[McrD,tLEWHPo*%[k/Bo-"im8jb.H^Z -% rhG*+FOH[]='02^Wf&bH'IE]\iqlt2pr;kj^gID#qdhG!EBpNs(1fGYGDT<%dlfnP1q'Zbl7 -% 0\'50+(cF01!AXW57lc"Gn6:(I0(0-=Z8+pN,`>_ia&f*M%UmLNdnk"#!KW,s51gVcQ5/Eo2 -% U9uCa<5,Gl(ib!J>ri@G -% <$"8iTZ.O^,d6DDU->N]*XY,%^-c#J39&P.(_4]+CIb+9K4&_KQ7%]scV.s4AbjFcjs`% -% .AjVWEAa7;tiksPU*d7CFYTFS+)`'V)2,dVGe'^AL\+c".A,mMH.A:idaI"<9-R0](Is8dRA -% %l9>9B=7WcUamjq)uh@YnP#>KF`GF&X2"7?WgpF9laMpbdL.nb't;'U;,V?q]F%j7Ad\N\lQ -% \\2c]S2Ep]#0g`Hg*Qg"$NRUFVsMa^^8(^FA-:begEp``(3'%!KTLM4%sm,._.\s5R-#t\gN5MIbe$"u9nQQuA*1SVgFfh)m?_K/;9!jhP9+XqRNjL2riOiPC'p^5?7Z -% (hU*+Qs?=GG%k;gH>VR(DiNP=7J\L;k&[L:hkj"/Nk';nU]F0&`'#2fK7$&SksnjCZ[elQGs -% k*_>tlC:RnbUP'=)?KFCljg"2fU3k;/DJkbOnMbWG;eF1.Y[Fi -% [i.jp6>1^%`D7:1TE'9,(74QMPuEJf7@1[YU4rUk-$.7e+3nG*H!a^UX:d%2AhU23pVUP8#V1=:h>3D]+N7.[Ka -% EK,&ISUt7lMkE)&OjACLYgVJ)H,F?t(,8+M"d4Kgqbm%1\kULJ>b1/e]]-&g>%22URD.PWRH -% ,CYEH[4K][=c8TU6_rcj;!U"+uIXH>0R2qcW+mFnEG4iINZ9N4h1EBt/)W\[=e]\9p"j\Of& -% 10s"dNSh5Ymo):CGnZ*02"'S5NFf?OFT&G.0,IHb]$6T-#Zabq@HLW.]>g/'!kpo^L@-FjRb -% "B8Ej]X-'LoNMN<9DYEjj-d8R'"8#G3s=#*sN;%OXV#TH5,8B'X6,%Ms*N'H=`/+SrL+f!5n -% RbXC-Rukp!L2[3XjDK,PRnmiC0+PJ:^mT4WP#ZJ*A/RH5B,b_O,&TDRei/5$/@o&A''B)#\X -% _]!J#[:(,#KGm;D9puRH3R-VO5(39hmF$Y]>EmCQ:@rIq]h9bOVIq.,JdPK\)#3+V^0.\h`* -% iJ,-G;dC(7u96^i#mcm/hb"n0Nf7lD[22Jn`a#Te9]J5oL+YFOTjZ-l$;Wp^@ODaWW%2W"Pc -% c7&/+W4B/LP-j&--5)IY[G[e%M\JS+_=kuN!"N9jrK_O\?rEBo& -% LJA`o%0`,1S^_Qn=TC&XXl50bk0SB$fet8^`?M;+,Gus=rHOqaVE@-%Q#rABbj$`#!gZefmT -% ns99tG_GDou`R,Eep#ksd$T(1&@.aoH/'.WrTh%5+rign!Gk#8H-=5#:!,f)e<>VG -% QuaZ:WD&I@2JXf-9<.e.9u)f)k>En$@H:3"GodOOg^;-*g,6o$h4@7]*)Lt8al^t_5O966=4 -% S`#Zgfa51m6GQ.4Zh,0?+Y`S@(>Eh5U8_E'.tH]-[WMBqYLSDq:oTY8<@Oo -% hj_AGVH!&kP_:Jl0+F\t@_=L -% T&5?LQ$,/HYMc^\s01%b:8>fDSGSJX(V42gbgUM;'&5$p&2'G/,`B1YE8Cug_'GU\o@f+]qBig,=k.$;ZD'@9r@V_C%9C+PnBP=&k+bu_1RWF[tPrKGp$OG -% PGULUHtHr`m'Y(_%,i&bpDpJfn7"WBV1G!l07k'*:B";'#G/TAb)/#Te(f]F`L*8CdqL& -% -7Y!EdoXA0FC$HWA"KZ%FuOq0lZ<8K&._Eei*)G1Qe7aTTu5B@``ea/T56-1p[11$cX7M5=t -% 7ECk'8h%"o&0MOKG-Yk`%*_`O00.CoN$b>=Bd8P:Yk#:K(R=5cB4T'Sr`O[#s8;*sN`rMZH(),IOH5,YTP4,9>9`3_kJd=tSP>p$VNFrKPQs9p0WT'.Jb -% P<#?jF#nmY*7VuLk.crDcRTs$Ne"8(.3r=?r]O.q+V6tRJ;Yo-T9QE^]=< -% 1bbE,KmXpnoc&#fM[t -% .,uQ#:1pL0e%C@bH@mIOCSA[.P=]<.J&3`5I/^I^A`Z0Re4WF6fh)>9jZVgmL6C!J23@i -% _%Yqis@'*T1Lh#a6[QPpt6'3KnC)3=-^1akN7j^!MW%u-3CkFJ[71pNN7cmf^gGck53KS,SE -% _3>pQP->3YVeO`3StL?+)"eBU#/g"?=a`bjpaNkD(ei0%1obj.VL4%:-[Qq%W8FM"1_AXJXX -% HE+rgH-M$E>s-UXO_\+>#6(+bPT@Agtf^fj59*^i9Jo6_6.+-H%"#*4EYIUJ=?&9Q.ut@UrV -% &$7g`daXEZ%/>i&rZ;I]j/D6`l:>@7%L4Eg%ifT`bWLn[D$kcTuZ"-daNY8UsBLoDa7p8bP$ -% <>c$Y$K[XF=H*\NWrWD!*aq)F53MpUYMH48O*CgXkIad`*ilaG0K,jCXWC-\4-)'I&g&dOlV -% _RW+q_Cl9E`U8s;@S>)93l+cX]VDIeS=URS"Je%9]2_'QtUL-;A/^J/ApX(dU9Lic2D.b2hD -% k%CTk\0)MM7dddFk+*-`6A@i01%G$5@X_)h;RTO2:WZ_>)*iY%Lg>Np,nS7s6^g=3V1JGK.? -% _pfC&!h3oW`.(XZunH]9>MtLCnG`$E\_1B$uY084QBWE$,f)BtDY*j,&D\!bj$9MR$.hfdLd -% +TE(L3fDrn'-lOOd#"]mZ[(krOYid5<^*1l,0-a0Z`m`"hXY':a#JI/2C`)8
    m -% V3$7>@6sQ_K6D352jBP`"NagAK_`5tF]m>8Eh:3)mVK/9HTb`Ff2JHs3"G0A?n!'i,$9-nq3@lp_>Z5I.rD*E:AWSGBWK!1>eg9&/T%N/lsR%<+Y6U8rl51HVVLgo/?dj*uj"I6[U01g"bn"rX,A\(%]")NQ5Q=?2,^a<2`Z>jO -% g8ZmXN3@([s90"9^:*U -% t\0_=9*alqFUgoiuV:5\q://(!b6F-H\.Ji'g.X060#lF#+CWhrj'765dI9`WJAQStmGVoogqJqI -% +-E>XViqe#Na]AZE:Ll"''D%7)k9UL26n3pN/eS;b=JDQahIeH9q(nlBJ84YX^>\f8_XL6ST -% :P^/o?6?#>O7O!nZa+rqW=s[KMlmg;rjsRL`3Wfp4(J,8.VgtE_SIA2fkN#R9[T/b`oe4/0* -% sOR5)5;km`$ccnPq*ouW%8#q=f<&o"/;NZA-dJ#'d_bm$*!Mq2Zt3mb<"qZ=:u?oW,?]dF>K -% X]cEM]Ip#D.5Z-\dY\3+cR&%V2r!8K"\?Xc)Jthb,Z#]CkTMhPpCk597^T[O -% ?6eeHScgOm\Z>(jNGLl;Ys0_MZ&u$h*Ug@ge3quU2sQS3?#lgQ4!d`m2\%kaN.?Y&U@IR4$* -% .)ijHeLnGRYBY9'''09k61d3d[gfkh*ilJc2uGTQlp#Pg&./Ve#ZiVD_/)2-^`i%U!k93c1Q -% oOZj+#C/?osm3lQ>a/RDKN>ecY$l2Vm,U`sg$)Bn6-s3toJ(p5fGbjANO_@mj2QT$bN+Gc17 -% @Vce`)Bqd4e9if[R<2f::5Y?S]k@*3qF_0#4sV]@lC;ibW+N[,tO,RkQGqabi:Au`[8:E+R\8Cc#[9'enkHDiI@BQlkPZs>T?N[cpPG[ZnE:]aU# -% lK=u/7Hd.5amqVO"if1mpdN#?;_=L74Yg0r7<45.:M]UeiHTgIUa-26I]?u/@`M5jROeb\1[ -% #ro=uK)"JmPd[6DZ:V<4WdfAEBeZ5Om_=cGYkn'hiA^Vbj^roCIYP"0!Cb@)s9=cBSf(VXE0 -% RKN>JBaPb('5C%.T -% n$g>FYb3bbtrPn!P,mS(7-!9]bHC8%R -% V"#\mKYMO^3W6T_q[-7*[T5qWcD]?,H;?:3(qYFg!qXt&WbL1jP-F^JF5,VLU>eF&"+mJii< -% JQc6*cb>A=@UZpX_DN<8\QW?<;dU[[m3#W;gbSq%k5C*a^s;'[Hd9b!N4?A+rlTCJ)-eO[P= -% Tma?MVbBq<]n`*^[m[^lR<8FmOScaPKeLR3`YZ%XU7hiDl3CZo1.;=+AgO#?53bCNma]TX9(DBIlX%KmCf:Z@E;1s;R)9.K -% ;EJ2.eCSVA=q*8.!hic@2&i-oncEp(YS!k$u#anGHMQ//LkV/0;!1N_Z*>K3OXeC0G^.^/1e -% 4U?Q;"tpfiMFIk4[IsViFhFG.5b'V"UV,lXfWB1cU3t&[Fu8faBGC40cNX@p%,s5%`+t+Jl4 -% "s'24E7>"n/N&DIEbbsb0c)#`WYlWmW<'%FSab*8jX'H*3e7nlfEiE@,n/X6"cC?? -% 5._t$4^721#ap>AFOEQ;q5s[Zj^^c7djdh0#7ZEl',r:HMnQMuV*m\X-tD,43gS$HmqfoZ!4 -% 94)f&Vt4_Cj*q2cPn`^j\-OZ9)[$m8(V%hS -% >%p_KIdN%BZq[cX=bbu-"%&hP*dB#C,6_WNN/o\87O,SbJdDr6Jj):*MP>9ZZA:I3+h$!CXS -% MGd.O0%&6oLkG4:BKe@O"%a?+[3j;q`-k;^CCr)q#s!a'Y@I-fB7=W49C,LoQ8Oub=iI5:&V -% k*k>`m0o-:_5t9&>(UjsZO_s!-'4R5fi\qU;Aea3A1G72^pD*kB?Fs%XnS."N?g$B[!X%1mS -% l;@pqXZ_s)2\nC78nnZ1Lb,Q:>W,`IN!Jdd-,"KWe=>#Nj.0A[3pT^2?rD7FWnLc+=>Y)Cc_ -% bi#_WL[auF2qF6"cer$AgLDDDt,WH?2VXITaERt1aZ<*ZaS#Y+9.684)6&AHq/m:49:L_M23 -% cf!`np;Kri6OGYB'&j_ntGfb>'2I^,U0/)6\JoqSY1@([!YQ;l),QPluIac+dH9<1q$JH,SD -% GHLpfp_dTtQo/sTJ!44';)G:BKS5V,6$\NoG=W&gY8Z7#J233^sKjpQCOVt3`="o=2Q0hdjp -% 9d:B*k]ROX!AA/iFji>",08Pre==?i>TbR+YHj@.9E[Ec;/.Oo9I"Y;ite7']m89I -% E5MXH;l*ff?r!])G'8<3(4$ZNmfgW,IJ1/nbA=34m4?R2I#GqUbW)@e)Su%3g%K2/)He$2ZJneYBl\*k7BH`WTs$Mp-8ieD?7((+fIs*\(;=6!U%YTrL.0Nm9I -% 7hlEmmToJRN&h/Q>W2N/?UNLjUDMPR

    -5W#L[h6S=d&bDjs'VO!+ZNCK7+-LnuPZ*)c#$S-@@%Lm,sM)` -% $Vnk+'I7I%FFU=k1V_UnTo?M/de?dP!,#YldZ -% /]65[sFWCYNR-6$T5r,IekEZDHYlnn)@8N5H3iaK?C>gm(+g6B&NrZ"@d@i@&r;QS"^;C_Pt -% 8iZW?Da$EWO[hXWeabn,Ji&\>Q=SYaR'b?h6j>tt&qh#f6W7_M\]5s7OeoYk?6iJ=?4G,( -% Jo\\f`!lCu/%&UI#7i6(+GOmALj"5q!->fNq_=VUh<1/0m#_g>JbnM6/?T+D[oodS"oKJ\!g -% #5RJ%l^O<"0gA/Ji^tOqbZkjo=>L-j"0rk6WC&djEEBN-_!gSFoFj.VV179_J?coRgkXYmBj -% 3Z37Y$4p5#/1_9Ik-W0<]R^`ll]3]-49lRdcHA_"u`O<8!^aJYc9XP[n_BUt4N%I#u%S&O[: -% 6s-`_;u]Eb"e]?U#nf++&Tj$Obj8!a0VY2!]N!i8Z]I"#C.?9A;u;^$U00r;#?gIg]Vf/K&u -% 1G>B#c_$X,*bA8hl!a?-ap"jD@M_$B7'.!I/#jR_jVp-=BN5C!m_bC\?E,rF?)*09MOag$o> -% hRN9kVE!iIkQ28Tj2Hn1,`Ks>=`g/2>3g*2Qq..99gFZ.a=oXI9N;O&1R7p2/!Z6B^kMZoh:3,a>BK!JY5%e -% VpRd%>3CI%,?#e,.EPgYcPu./4^+EaMo?*heKm1ne<$-# -% koi[KR>CRMREk(?KP]4IC[BQia#gE`!LJVcl(\dFoD0BX\3bal -% a4N_]fooab"HB+k`\>cY_eeHbNW?aoftJ?;n8uqe!m&%rA&3(A2Z9988a;U]TeLmGG-3+D3* -% %AtAh-24=QNK/lFOV,eb,d*sh7k)>_LWgPUmM)3EsQ09H^_6G%aZEc7o:6R5"VU1d1KC9O77 -% C\6o&!9jgL&%Pcd\tobKgrrW-U>+BRWEQ)V>)75$f"s#'%4rk$H^@qRadLm67GYH;,1mYKhL -% PiJOf]+W),Du]n@:ljuab`\58Gb9Q75f_J2^&1;6_(I)s!Y'c0"Ye"I5"$u[Mkg#"#D+ukBL -% ?#UfpjdYSB$IF.a3h'rKbm>Wn"Xt -% -Pc)Ms/2IkX_t3UKFt=b:!DeR_GnZBgq0'&Kr(6mcp0g7.)\fEm%4&&WCdQL-Wm)*+=BO(-[ -% 9QJc9nS[V'mX/q1`3(XkGq?\K`\pS$5:/dDFVhiT_,KJW2fL^ag6FA?.>,X?)CHV^/7ch.c* -% /mp[$]0M$/[A&gITm(E@8:K:K_0=2[IVh1X8lDF+7&CT"+j;EfYk\32Q`jBUl5$H8a?Ub -% t>YMPrr7Uf#8=C+L=Ne[$es7(PH*KPfgBe$d/-.C$OuWu9_OM/?.dlTog\(%^o]30q<&9t*p -% hV&bWeA>m'5P.59p=*=^;6g8Vmpj\F#;OOaa&(X4<;r2V=:UF(dl[#oJf;Lfg)7k:8+`FS&h0f0QJc$.uJ*)+<,R,$isO?5>`W5DV=9<"eBG:Zt7ImKpB -% Sh4XkPG7>.(@%%n=m8K\?*_G$Il -% ^*F3@ZaNV,H\*c!"g^A[%cg,a[(bflLt`9fbqP(;C.Yf\F -% #KdN.P\OXgh1d\;9Y9^5/O[03k]))$@jIhMFjRBJ -% 62J.i^,[>!.EJ,siulXq:bE8<=/Ad4GiB]5D74/=]:qG?L;Ear$:7W3jbl^#2&3J]7A')UT;g7cjV0^ -% Re*n+2Pl7e]$U!A)DpX^e&HS*YLB[/`lk=j"6`d$&`m(<)^r%pPLjF1%a\!+HGp*(gal\,_[ -% :JmY9;YF[ -% <5Nc?lJ,f^]tl9"98_1eno^0`2103g%E=dkKXWVb3ZA,u)/R)]dt?)A\9@-_K+JZcYBbGJuZ%UOK' -% H`b=r/IAG+Yp6S:0)rB#PA-hT*Omlp+]cf2ne*n%eK(>aNIR9cs5S2_slF1H-9IZ6i=>rYA> -% sOZ&"cBkD_K^NYT3iM]g<=.33gKMX]SoiI+VUuSh=6ib"!(%W7Vej4>Th>BhGfb]%6=FAY:, -% j==?[Pp[nnih_3\Uq^8]B77`il6!Q_QTa]@XU-2A=clqV4e')_^T/7*3:Kpt#"rO5`-QA#Z[ -% F4c9Ut3K/p.6I9#N3+gN@T@#eh -% $O.Tis[D758"AA1@9S%^F1685uXNf\qKb(UPV9c.[NQ,)]d.UYY2pUiCA`9n7FHSQW2R:Be` -% 5L-!?$-jM)R/4S"ofO2#^.R(hLYa5gW*%/eT#^dKRlstXe7dF/%R9PATq#o!E:ct6nZPs!=# -% 2!H!%QPL3b*5dLi7`r*ee(A$qsS'G2'RLc(Y#6-8iQq`ceX)GAZA*:0DhOCP(P";rC?(aA1K -% F0(V#VgpgrlnXU$^ni-#dBc+Y.+'%H^5?;YPR:*lEiCpN-fP_&a]]md!mMu7Eejuf@7)KuQj -% n4hT;1P_qfiOu>#75Vh2ODZWnG]5F>2$16Ypj"]'bS=n_%X+O&]JOo]S>D8[n9g&gZ03K>ai -% ^2`cT'nt!#3]_4?(fo:;[bcjHX?ad3ug[h,BhnX*'[n#lB?rtPWr%.uppnfHHQ:utT#N#= -% AoliL'(9hR]@QJb2r=Xg?(/=h`1s!GDC:74i='F1s_C%=H&hRR1@A12pdQc94.PT&_`KG7j) -% b=LuCHL4n5`IqYBm?$0R9LVkfdj%Zu;+r_J+8Jh'QQiM!;>BB@5qSV^72-GIH`HWn(bL0,=> -% Q)$@_66m1D%93cAWC)5J*r"!+]Xb)KF+F4H"KI1FkZ9gaFtcdp)f?fO[Zd(T?Hm2\4F0PJ";Wfp8VPI(4)$4_d,rH8R8IOA[Wq/Q[4iWhrI:oX.U3M(]sTp&j -% !\Y1Ruo,@[_TfPuYVWYoEHYUi;L;Q!oA194'3N0<]#Z8BJs'S1+:F*WqMFUSp_=s&g28)Ir] -% U(^@.6tKHdH&gj?$?h+k71^X,dX9XhY;uJZ@eOr]gcZD&;//F0[^/Phf2[KYiu0oJU/;AQb>fM+:Z7**ONPaKQkIp0Hbe$q.BGr"V>?Lc7fL(#BG(0i>7Koem -% l=0WH9sY25\mm"A*E"CYucG]U1"d%'^tX.Y%Ws#Yk*>pV^/j0t-e.-mT-.C$A&*\6c)V99Ok -% )Rs<+qg$]bts8@&A.=;!@YItc+D&B'#ks7F6-/U-DGLn -% 4\lT5 -% A4DR:i:"kjV#JgRPC;Rg22rZ8ke0Kg"?XT+"emPZ($I*on^9,iUV4jG*Y07_2:?2m_]f54OP -% Qfa`6HWOVd,Kg4I?+0HaFpEq(G*jlohqRYZhaE;-B7-OStJU;CK["GKk.kf35r0:ed>L#s*8()ipia<-DVSZY)9<"-864De@.oKa=9)R`E7efcF -% SIX;rFBqe3W#8Z4j1/;\C`E$*ZqN$r-['@D">KY_$!q_ZX5,LYQ]YQ"Q']'km&l^TbM]5:@PcJIDPu6P'ZjBlL_:FHB7`hP.$@7bJ%#km4bRcfm:#!7Wp#; -% GIA^\/pq=BN#MJG8A(]jdDloAQ5I_QS&i5R17]-lG06$TS;J6d;/TXs,m*8q_;E"XtqnGe5? -% 7[A7n&dr^=pu)o[9.Zg%j*qi&B3&h26Yb>iTO&6s\hX,$,@^\I.a^4u`UYS;$7EY&2[8OE0s -% c84oIijBZtWRR9@DZF$nQB(U:tM*b:(q'Y^a(,&sb<5A?MPDRn[OK=$mk% -% \om/Y:pG`bCP.5Clc2CRh;XfI"`DY5+]N.Q/Ht*&UUH_:Jc+2oB-`t.XO7ZrQ+GFY=fG;(>k>d`SdQS -% '@XCW-]@f-/.S+=EtR+6k]s9;E[NN>-LM`SOTQ0[f0(AZ[ -% pbogU;B66mn_TtQue4WC2]VM2,5F%`h;Cf$b-H+(`M1Jc!kGV(qfU3Ugi(KosAarY -% JY-+fedCqRuk6Ah!La@s%W8d+mbVnh@l`mi8On1:pPY`WVCH,3F(3JYtL7WH9/WL\$-@34t_ -% )u(L:L[j!N;Kjhe()tl;r1!8RZVG4PZ[p-#RQ/JQ7-.1j=hYU&mXO]+rZs6>Z8I)+P,8C?JM -% +sKuE;k,qfraU+T -% jf:/ueRrpuJ(8&Bc3\gSEZ75V7\9]raYK*61G6HLSj?n -% :B@J-^.rRa&TVBBq;U#hcV#(,WC.V0@6fggpAA5P1mho5to9=:d6gXbBrPk"@$r-J$-aLKK! -% 9:i\jIpa\faJWXD1aJ#\YRXg52W]*QWjSX.Z[>bphdaWc[c>$eQY>Y_Q$"f^\13RD -% "G3Qa7aH4aTI:thA'):.8",;p6j%<>OK%!2hGmSS^Gc-V<3QEC7q#K=SkQ+p4AQuYo"mL\r3 -% r(: -% bnAG:Cb=NUfa@11+cp*\a@d,c+T^UIg'J?rI%WAu]]ba*+AA9/Nu7"F1143ANJ0Vcg:B"nH/Si?6``T)1#`!si+cl?.oL.lc0taV6+J0c<%dAnkb8.)?n]).jN,Gqu!cN3dq=RSXe6$3N -% V(jXK/eT\`Qul3phd/GLHUcqPmKa<6.W=4#^0a\6LS'/=6lQTFLm(W!(t(+KX"HDfW%[;omJ -% 8V:KDqJ&@:bn;1tao:jTl6:=j"n^CEf)aSH=(8I/c"gbS< -% ,q6NO=DWH"GI8$"Cd&N8sn'b!1u,8'm$DPaOI:[Qnc(b -% bSQ!gmICF2PlQkIhc14:tFf)%c0d6A_u,;g:ngU_Vt)fLl>8XK6FT,;0+<9PP4Tg9!]/%@T9 -% mla3>j!6jZL9.[*+(32=^c@_EpNf$7jar11EX^o3d3h-Yj,"c_hX)uB7BL:,A5Sc;Na#dAIu -% ?[6@35$i`H/6NIb#lVTL:'0Y)i2/70,Y%!8ZU8`AZ/.59[),kFuam"d9u`6BX4G@S -% AnfMm7N\'Rh(iod&IiE3%5;Fg%U._M+_::S$ZfC]VN-oN%CP`+$5dVeg#l&`Im;Hb/U$bCDr -% :S%1>\ -% ,e6Se)<7^%ms\r=E.[iT;lTB$AfSL2qZfl(5hed@=l0]gpeZEtY!lIXt8Pa0V79oP<15P7h# -% KYt[bVWTatO8-XE7P-YW/V"HT[S'^\9et>*qmZZRb:"Rp],g9T&obpLuHIc+2G_2R+gXBolEb@"d]/+hP%q2K%**c#R:^*"Ad5H4_".;LfQCWH. -% k+oV&UPo_ei#[hA97=YchIE\F)%UEIW,]sb$%0%ft_OcBrR;('&hVX_q7hHT0;i+EAJ2gmfK'J( -% O,ikaM/M)8-o\OA=FiD"-S&\CIlAXaSC+V5U0$b:QSM(lG:SGOJZ68gc&$_k0+`SrCGhq;V_ -% V(51aqpEKOmra4cn4Ast?#nb)0?]$d6kG_H*jW:"']S3AZH5lMi]Yhc$gjdW)rHIX(#Gfa]% -% 1439d07@B6TC*QH:p53DUI8%3?q'n'h_sL$cn71"Asu>AgT#t+cW:N`cr+^]flS]-pE;jQE] -% &srrY_3K>E50X9NdPq.-!sqZYrUJKi@+JlBNPa*.%K.rX_YmK9COS0]H"gL^Vr4(ulg1T447 -% NPUBY50QXIA!>/,qP%H<.FMmr(o!dY>5jg&GgqY$CO3h7_6@N"f@&fd06+`Wr3ZSLq$4^OQa -% u\d!J!JQ\3([6>Bf3!"0I=Af?-Qnt>]5Y5%1'p=(),b>c$Be?4+Z?#9-r*SXVHqomK%s]EBQ -% Ad1FTH<8W&5E@m)luTJ^p@_`MZ$l/n7GR.8s7[nE!"E&JmNI;pA=7Uk1aca9_.O0]0M/.rXn -% Y(kB%b9>6:b6V%S0ng3->M,Jq#R(9jU.pAJBOAPtj5/i0PbKp)rm8o_4PbfW!2'Y!bE"@ -% #I]1:8E5"kPNe%Nn.uqM;Wk#/tK*8Y6jYXm^lO(;@$^'pBOZ,I,@u9@lT;f;Yer5/c"s-Ctp -% dkD<8QSV*p.Z9)Hgn]ind(H*1o,.U>4.%9K!e&,%UZ^4U[eZJLPAs$*:iYNHK"O4dmWu4_r;b"AYMb)04,h -% b/i2?8#FEDVN;Q8TjJV$0>BLkeGJbF!FU!pe#Q%E08=LpXc&iGI@'=N@'P -% (T!N+7"5W([mtKOF?VP7m38-m@t?#rW]5"Gd(oa8rLmW(T"g?]1l8r!9p.HM?i@<0UKW%=<( -% dpCk;J$J!`ZU%M`U%GFc4H%]U\Xs6q2I[/Y+cfK$n^\,>/dC3lk'&ts?LefJjJ?D7*6S5+'' -% B_guI*9"Db#5NW'I_-=e$p4$1%dE5:8U\N4Gu^b*@onRR3j?QD,ZSFkk^^JUVjh3-#Z8O6S# -% L/nL6J%(l:OR1F8)Cj?fRa($$n)7ZW>!,bB[JLjdAB?62;\:MAUfQa*IS?CD1I9.; -% =h01SGDX7%2&L_us=0^%]Z[!`E1=@^TcI)d*`^XO0r64&k3!foG^5(^2[isuk./R>$>Bl-$- -% ^tj>2.P4jfrQXl*n[_aI/@NjIoq]-k4TAegZZ"(5s!2L][Np7cEQHV$TtS[TR=(A-@O6OoAd -% ifqo2)R,uSJdh8`J/I1tPi1VTqES?"A5A4JOEan#13]OOr?^p#$MJI9YD&q"[t.&XFV`^)Y\ -% )>qeQVRbj3q5l"emh@E7C&;:'9G&Sh/XtXq-3m"rA#=%1g4ML>3 -% )Oq87lb14]KN`7^\(UPAJf,:;urCCD;=:]dT[33B>^n/C78rEEbBa/f74J`Z4/QFkts_&cEI -% _\+%F6G([tOZAsWSf3?MR%&&Ar8Z>-AmFdE`Ne+mS-,go8I(nM[\TZ$u9eo%8@ -% ZB%baGe+HcMc?'/RXKLmrbIGo!TLE>Ub0GBJd"+O+]SS(n+2?qbjoFFbF2Q-C:-:/=;i3"2gXH&hQqq(2@*H`< -% ]9tRLQr75#/T?7ZSN30ULlLHH88tc&I11V6g%T>?_BQ/b(V-+1\:Pal@0\+!&::;E3e,AoH4/)%mhB<>&( -% QugFc#kF-a-4Mr%:?`9gO:h$$P_&)p0VrH(W+73P>b#0>"$?C6O"@o0agO8>on2Q,[@W)IB> -% %@-Z4s5NCX70QjGdUDhl16+.pt%ABW09]ms!+/[AGQc,PUpfHqtN`Ml!@Zb]5tPd$DIZre^- -% eqG,<8@?sbii]!F+GG<78",[3f8;U&ScWfa -% F2[=!BCWhgqDR#WInr=7IC_D`@?)-`R0L;s:cq1%D?1A5UmDR.V?WPFZ=:M8I_KK6c8oLuE( -% iq!2Di4>OSi3uCY)Vn7m`@MZ/EG'A6mYg*\I@gkatkMI6lLF-B_QDLY.A_rqlb?g0>r%WN<_ -% e%-RF^Vqh#g0,8U)CjNf#eHK$TV`g4V1V;5T8/Cl51&Q0sS2Rfr7gDtph?LGugGi -% ;$M?"`eDbY3p$-Bd?Ah=ni_l;VZ5q#pisBcj>2GY@eCC$E1MRA`_8t9_O@A -% =>PqI.^]Sq1*KGMu[?s/WH)?@\.l@rc-^>&s\3fs`n`('!RCY([/-q)qePSs7>D1NRTGUMBG -% @?]i]D=J0mGE!r?]c0\34/SQ8k8cARAjNkOFd)c]:om2L"uE#3=kg^reWb!cdoku\F&Gj\a1 -% gG'ml:jf:'C;*qp*/K.m'>3*"VN'S$,63,$8h(2;aocMB4FV@fd4k>_DMU:UN_s&otterE*5 -% u11OuCOR5'op?FY_lMJ^J^MS\4AB)rOXc=tQ]dsqXIjLJdiHK#c-DLKEP2pd:g=bUM:V4%2R -% `QnABQ&o7!ZtM%:4"98/#u&.=Gr?Cl]pBE-d,-El2[N[ItGJ'VV.J>gp-uu^k$QM`kIokf&Y -% O5=K#f;rf]oA#B3>h5t'"E/MqEB"lgk@1EP!q4''%9bF4B)7CrMaLYDsE4XR0Y*`nrA4!&@( -% VnSO=>_kG1I'Vpe0$rMGp"E-I!h[t1=rbS;0_2Wum2.V^3?>l#YA2$C"aV`un5_RaP5s,Koj=@VPiGJ#c"opl'*Kmrcn7JS^9iZ -% =9]LWKTDQ+2:90/C+29qPb%<3`I`$e3>s"Xe)E3Jke)PCL[^):W!=IHFoi`8/"fS83OR_m9_ -% `1.`l!-] -% a#B_1/kABEC/n'g_M=78@psIIi!]Rig0t6o9TI@6X&%WL_s8L=a<%5jhA@M1&HI?:7'-*pdO -% ?!Pc36@*aHe]Y$RBbXa6hQF$-hR9?T&F+dZudZcUD.s_n"s1]oPNFX_JaeZ&ihI,Bdju4n"e -% 0L_+>u:=^tRD],bB_%h%k3:L7\!;0AK,ddg<k72*SIfBRDXqAq.=4`7eas[Ra -% r-r;V1;HfQfMo_ROp8'ff+TTCf:#4aj6Yes/opS/A.f#%`XlNjI6&?i4.+*h:+<>I<;#jk6o;)2)Ngc3[,On9m&Fk_qAhnUD_C] -% K](=F(*0_%1)#K.KjZY@E$LA3/kf#[(a:*Ra+:KB#CS2mIGm!!d_*fAc\OWPaV/T&RopQ/Bt -% J_oFW]"H)*Nu3HIs4*lYsRfnQ'D@gT;eW$!I[34r-\;CD1rGC0KM'S -% .;DGZLiG[n;I>-U32i\UdD3FtA-/0%,m:f+_O"Y["sET,[>>eANd?o@0:Fnt6g[dLo(:!Bbg -% Yk10UZBQiGbCfHDtL"Oq/WnV8.m^<*+]rec[mGYNk*X6MU%>X;]LZ2?CYi]LCgb7uA.T!/Q_BL?d@# -% fH2*)D2;IbX'2jGL=7Nct4f`!^`V#=$'CMMObr_l9VK**B;MhDX37CG!(3&X4@`[(uEc9/"n -% ,Zq&SM/&[7m8eXO?a*7Q@2?q<]@`A(@Ru1l&[alE;Nr*)ep8e>(qX(:;%=UA09H*tpaYP"*e -% Bd5YT<.o9njksZl,,2rT'u=^P-Q$E6K/t42EppI'E_A!/R?V#UafsQVG8lIMAunk%]Y?OY#D -% RM3FNK<(T`ec-P@W4hW^Q?k;2mS<>\V:![nh"d]J#Z@&uq&t@/7ZVpmr9/A&Oi%iD/MkNqk7 -% )@N*qk78!o!di*-Y3jZ#qu3ba\I_@gt6Y^>dlKrPIX#"6Jc_o&^(559#fGeQS2bEXbB28Ym4 -% N=6[CSKok\b8,I:jD..C%G0W1F76[A#aBWW>iU)d_5?ufX'o5.l:?o7W5_?h!/]apd -% ,%!#D;AqJV$:R'qiZNpBMB)G):o77i\uFpZ2BZPKe)1')3c6T;13(q -% IK/mk/JZI9fT!AAMfb9jG^ae$9+VM@XO/ek.r[IhC(HPnCcY[A=M!07GVXnOY1"4bki<4Oe66.gu:MeP32t4eBV<&SL!@+XC_>cOp/^jIo(-4?8G>H1X%bjl"j%07+ -% TlUW+Cd2Z4@L)C[cK\-mTngjeOo3MXe!-rU`!]=F4J0<#S@%I>)-GWCgsgL+3G_'*h7CRHAe -% ..'l(4qHP\e&LQ'Wq),H4)d6OrsWMDt)lhdE`,4 -% apNTh&-qr54]`=KQf`i8:[qX1`iY5rY-TL*O[oTE?Zn-O!I_74.g2CH:6t\)j!Zk4#gA!k6C -% 'b8E\ruU$Vuq0iS:tCkG!Zg_\P&bAXT;XKYj%)b__ZPOgJe)paDu".;V5S=q's7k6Wt$DH.7 -% b+8mTEGgAJL:0GA8nUT=[[]n`k+%c^DB&N^mKGe+P3K@3P`kBqmu8BGk#&qZKsORV?t6@F:P -% <%28YaX_Rk@1U/9.asa\Qg7Q;@4 -% \jIfL,-2/m[/a9M#N%mSB_@se.A6V\^,UqF/C]\1G*G!A@H:sg#Xn:k#OHFa`$N#'n8-%M82 -% 'EFZmj.'il!8)UXQF2"$\ki$D%.t1l@q'l.)-Wj3`[V6K&=XWp.Wh-dWBr2R(FfV@3o:,pbX -% L`Cn7jbMO#k>hHh'9.o/9l,'M'27a1[&"+fVmq-V>Ho*RJJWYiHN?`m8GNk_o%8 -% 9![]YY:neMosVq8YF:P_A:/]eS;B2\18:U'C:4p%gS[NG$rbV;GJ,Q+#>gA.Mr=u$FBY"`2h -% ;-pCHEh=CKJ+(7/Z$;PC#0nrLZ`E&TkgsFKIM?ZQ6u+:DcT[\h)DGbF+#mMpr,2D\qH=n:uZ -% KDmISA@K@Vl,G)JR"W*A]8qLo5/aBmIB?a[7cmH2]*,_OHd!qaQqR:*f>PK\6Mpeq!FPs#;N -% Wl.`+f+&_Esme*oeXbeUa@pR*4IKK]3"`EK5!$9adqJh`gGi0bE3fW])(IpEiQuLp/!@*nIq -% (CkXHR0lK7?LAQ5nI6t[9A4b1CWd>>N3kGk\,OO*3H.<=KO%l`$_D$Cs[d*2.4#tZe)RLen1.3;U&jUfn8"[P> -% e&:V'[h$>Wdti(0Mt97eD.MFa?ReXI]P4H`W.f-t2F(GY/T+=NcomCjfcZMjnjOP>$gg,o/e -% nCt>FX/lON+)=Y^a7R:O4[(81^,=oC.CI,8I&u5P8R-@mHM/1,Xp44q4YKp1t4bC#%bNP_#N -% _(rlOj;a&Rr%_C,&7II7XP/39UU:OP6>ajcJcY)F0AdP`Fq0'cHC5Ki.R;JiQb0m_7F`*TqN -% `<7g-b3\_");PX0]H_M#Xp!Jq5W*Y7n748fXAj -% fH0pP6K+mnPnn4*qK6He`<-kNcdSe!%eH[&aNZIa;4pQ$oK,!9/Cs:(G:*FLN6aNq\A?8mI)'#?nX#,`(ICPjV0DDi9i -% rXLAi#T-\ob;P?sq_F@C39m(>bY"P72Zj&acfmPrQedlM#N1#-6l_8K)Rp/<&>'aA+<9uI8U -% >F-*fil+7)Io,Z)8^6sbMYjtgp$L-JX^Q-25Pjs>qhpmp0>ejKl>37pi)/>9:Db#_6J953HA -% _ePX%H.`tt*p]DD!p6#2,Qjk9Mo-keCOdcA8.!]=aj4@!oA/8ok2[#Mqsk*FGXeEN2bW3;'3 -% ?/tAHXr(B`i/KaY+Z$gB@M/fX*D`io%B"g#_5:lSl)h8#%c\fcl3J4#M3\Y?=cRUH0G4h6mn -% *h\'f@uBUVsLhm9l70aiG7_b=OW7qR(tlXj1+pVEM/?\cDimdU#nopQl=8QZ,M6bMYjQF2W'I!(_:iM< -% )K0XC]O@Z(:VPjUnL!Th`Z[lX7s%A'QLq2n^UlZ#`P,MUA*eU=GqV&l.\d4OUA(,lPXH>oF; -% !P3(+_X7<2VKRn1;tL;j4onk2kmOUFckOF"9@rn?"ZO-`jgI7YC -% @(/6*RI]:Q*\W;117h?OXd$3jl@)KV,*T/[o6;7`D@%I!PVMK%23M.I=a&e*:IkBigJY-uh1"$5UlXB8AeO6iBu -% 4/q[GokGb*gtW0ca(>4X_G5FiofJDKQ;$;CRKQ#_IC`&mTs-5`DFooC>th?&6_jr-,TUYZ&4 -% &^1R+'S#pjq$o.r^..>[7_>L*Iq4Ln,^Sms]:E,B^_i^\N1[_XV<*ns0pYr[14i6Mrh5S_0L/cB;jG%?Qh>VYnP^!?4Er -% \V&<5JSi)Q,9.HaD(/@ou8gbolgekmQ/]fS-^>lqOt)BSp"T -% rY,:3,+egEO(,NT=,)['G]jDm#l#9b[A5V*mP)ml7WKe]oQ@h"UPothm(dUWOEh:0&i8Z(]" -% X[e*SH:<,/.SUJ"b$#+E?8c(#@Kqk(l(3;5[K(A7bJnJk^TfW@lP]e"fH]+k$ut\hf,b_@IR -% 6"[\UHd]]:-)f80*E$m2;nH$APj%&'n&/*WZa,;1T%`N6a'O[LnQ[%eWo!8p4:"mc;f;V+i[W` -% 6d-6(EBhdT9]lTM_IOej0R>KK]5bBL36Eb5`b,VbGbs0WiZ2N#5IE1$97rYe`CMB'G&>bo8_'i!kZ -% f5.#JJeI5#Yo`:Dj1cfp7`3975KsI)&En*d[L -% !8P-HSL0*90q5j#+r^j:.Z)C-B&+W(=9PDO%o#c?_!J'>#P7cejH!lL0+VH)pX)T4X7i:L2L -% jdQ*\N"A4_>3ne`Ek>mo`p.W3bpde*r[$23-=`19t=/^)dYMf1UjUF&Y&V.ad.F6EOC!`UoO -% ";N%p"FoO/R%4,N:^I^1u1_:I?7W*rq,:qo&o6c=HlS#MdEPA`(aq.O/B:(KbqGrL:]=:?]0 -% ?`![.`P'n(XuHm5p_dN_E7h?&#./A_N]DgJ]n60+(`Rm\EJk!V,rUqs89E`\6,VV0 -% ?4dgosWRnskFN\Tf8R(!\mJk6c1lnXr4X$gF14jjM/l;]dZ>s*6.N1T$2ip3U7/:g3@a561249NNjJ+ -% sn>tD*=BRb3oYoE5T9=YG-90fu0-[Q[ZjGK;\ -% 2A[O^qCP?^d4K\X&IQA?@iRFhWp(LI$b)CFPIc7:Qn.!D83n;.;^#.MRXrc&%=>OBm_rBKU8 -% jskm&N]ohqA[fjAIVZbW&%s.lnmeMgSZU@b*W#_U,A?p;^E5p/*+WJugmgKh-Z01'VsuBFDB16]9b,VtS^hZl>JGr(<#g#1ZT-DP6H@A(s1Sl?W#@pGk8*#:> -% "YekuRD\t.UEIn#D^'%8*oT#-.JBssiakp^\#&W+3f5!!:qJktcN3/!WP>"YmN9nVE)Y[D@u -% .i?r%o;5-@B[\j)94cq;:`G%k)k.p&!^6bg*f-]BBS'TH_H,*k9u$[-tESErD^X0QLY; -% 5ABW[>55?amQ5gUQbOND\2F9W!meM_N5MNGe@dG:g?9P9g"a=$J4K3]<_ht?T!IV(hX2Q$57.7_T>mV#< -% _?`_\9fq2ZJ)%eISJImT3HR!+Xmn[QE_YNqBJ&WrJMha8`Y,$t9/Wmg5]_IV-UP9[t8_sX$K -% PL$]sjPK_%DTDZ&g?oWW[t7K"^VFJ,Gue&<-RbF5:@h15:@Z$1I,rdcG#I]S3H[DLBOJ1,4) -% 7`ZQet95M&='Y[F+n/aNETAV;RTsbnZjm4dC_iLI?>CPHX9tl3ZJB*]*S2&V$=;g8L[4kDH> -% f`1s0R/lIt<50[OZiB=P##sEb7<3P)3A,k3%rHtHK2_=gG*Lu>od[iLun28T\e8I3/Q> -% !^bXP!0d$TFa-DSRCnV5bF9Ra?A/l<00&aQ#VuT5u?,L6lr<1)SEUR5NjD`q)ZWtYY$:G[)c -% 1=!lP"\XV0H0Vr*OiaE"t+?3bdgAP`clmYr[8H1]X$0bKahM2NeNJgrmtLUparIG(?;.cGiE -% '(_j"ofKme3_53E2A1ZRn5(h.mCY4tk?4Dhe1Y@sKBVR#FmB:YQNuU.Fr]%-XueA2(Q-8FX* -% [fjn*lEE*q#_d[)d9Y`1qoEM^5t7,>[=3rja:n`mUcFV`GjO17mVAaM!tCL7ddI2)@Uq1$>D -% D].;=2I(3C6jM@Gd5Rpbh*:-?ZkgMc<@.+Vun;_1hIt)cpo\B*n+6pVTN7]$4Di_F@kqW(#b -% `0ct>r-CH"n)+K]AVTjM6_#K+ikQPB75c\f6/4?8-i]G[:umF8bV1Z/Y7]]XJIDUaM+FR#$@cqO*gHJbo(bi -% p;6@uoIP6a.BTt* -% $dUdjkm(Y4@_Z@&'4IkZ*K"<$uc5UYP`$s(Yolu+9pXTL;G--m)[o/[>s=\J%#6tW4];2NK> -% _?ZBR^T'gDcB?.NY2RS(`qmB8`A0hpBe3\SG7]`&Cp#ND;=EdPh]q]VQukZsGdS`P$Vr7E]; -% rN2/4H=-#[%;F660J=hUIVhiu(iom4dJk]m9eaAI9U=IEbBE!V^C3AM=Xl' -% &QigO[k62)>YF>MXp-`>s+mZ4efN=nUl*r!DKa&+&^1r@HRK>Nlf1^rtNK7A#EF8DT2sc_,V$Y=^P2>^,F -% \(*BHp!RG(/a9'Ccop6HdFY-S''n/d%`L\Ph?+YWgM=MX^?T_;ZZ]cc`Sg65Bq.j(9u@--^-;4`J$'3JYp4!9!n'Zh! -% Y2S:Gc)-'WR9O'-.J'9IP&"R?_I:!cgB/!s"G;=H2I:j>S'#J6Z:50MII6L&8F7Nr/(BJ\lI -% I\>C-ae7CH)H/,,%au:36i'WJBgJjD<>Xe9F5PP);/3Z2V)Sq'/=r@6p)c)D7<4a&NYFg32J -% k^F>bB6C_ms?3.Z-]-#toA0eFt7'GHK9KPJ8/j_ -% &gM_U)=DQJJBna4(GC(T<8;o=6'>Zi"%[b('@q;"J3k$V=\*k\&u.*XJ:&k(HEgg:IrBjJ39 -% h)1&1&9VIa`'d)0C.H$:l98898!\IIJ#u-u4>B2e,ZsIJ4MP*S([QJ?g*d2MZg23.>XrJ4+> -% \IoB*)(-6d0,g9JbCbQa4-drclJ0''8J$MZa-%pdk@&&-]:7E@AHM\R`&SuTR:c'AD&Uf1oE -% isg=(Y97IJ-Za'G(>,(+eTi_HLhgu'1m]?+au#5"DiUI(kHKW)7DNt'kVt"6)B+B(/PqW"(6 -% Xi0O8Kh;hYu2HBp8")l7@F;p#f^&KQ1Y(!q@i(O7S+F-I]#?^-)q(]6/EF,EkFIqBMP,7&C! -% )@o2pJ2MNaFE].3';p>%(OS(2H)sU2J.jMM*O'TS64/*cI5<)<33RY0%i9$_JHHfi@5;[L)! -% -:8I6]"VINj;;;tOoQ9QWG10JcAY4(it9+r1j'H@9gjAUf,,,%=G4B4"f*CjSJS2o'^-'tS5 -% eJ^Z7k7YY-W)[:1;5`lbd@%V,MIg:P/'SfBK42<&eI<6[7?nZ4M3$*W13P69?=a3tSD3@cb& -% 0Nqk./4>GIYo_9'E1n656VbuJ.XGcEre;i:7m%^EeHl/.Q:uWJSHfa2J?#j(F3s18E1emB+6 -% G/8pPi_,,A7j9R/*#J7O5DD1,>n9YXd(IU*fu.]lBF*Rehn:cE$Y7D=,BD@'9L*ck55-e0': -% IE3U('A-!_/Jh?8I9KX%,Jd#jEul0fD"eXo(^CXcI60GL.MY[-0G8r_9#D:V4_dLX&1 -% rCf76iPD4u47U88<^=@+fT`*M"-(IZGh&0Q!A, -% E!*<0`WJGJS8gI,BOL;0.Afk4kbI^E'P?n.9.=g-fBO_06\Xd<.meWDI#fT&4dY#1Cm.>CL' -% IY&UtE=._cOl0m.7r9WLm+,,Z?1Cf_if26%i&2=tlp,Pr)K8rkk\'!#eZ,:cFM8f&/+GmS>$ -% ,IJ4V/$<\7-:_re,7Y@r+=]W1&RB4&,P2^[AL):ZH00Z^7fjQr8.U00Cr.Zf('?J1:1HP*T1I)0%_2:Cr.F$'O=>7;s7BZJ[ugM(J#mf.O])dJO::e? -% 8!WE@FTiu:b!(I`-i5_`+<:UhIL, -% s['6:hsA("YBX(SQ,'6leKD?@IF?O.F)BE -% _/)1574?*%[$'"ENjDQ).t$8?$R+7-qf/o,Y`HRC'%QQK%Chq -% &]J74;M]ZJK=X.c+N8#S+khLa,Vh7:BjiiPGNDi=(!L1:FCJH1K1gEc'67l!&>a3H+HLF-E7 -% Q?N5r4-T&hIZXC(;,#EXt'+_uG;sjY4]++(C8_bl-SpC:3scNM1T)-oD?s9P54*e"T0K)X:LI5*b2=,)@M4*;t?0&7(GD0^.,)TEJr/iO?HE-5a3;%ImI:b! -% /PK'jK=)Jk&$'@nULJk89\$jh-(';\s/KDoYR)Z;7N)^g-m);-)h&[rnh''aMFK>_P)EeQ4k -% '09se)>lQ&G;Bo+8QUNC)SCOo=]nYVJbOM>+gY<[CWhA+,pakV+[mHcCF;,#)_?D81VFk!Jk -% eke1\Mu6D**>e;Tg%jIF!El(9`?<4JEa/=O[lfJmh3p3<"*c*I\ObK-AE'6C -% 5aC0;%eOh4N8)\.F`T-JnZ1M'eF+R6K'X3KP`i@'lS%u*$^+U'b)!%3k?*sJUSP.(e]L^)/h -% nUKPMA$&S>";'Oucp>:gE$@p*).I7o00HhSiU3%9-gK9$P4(0_HL4e<3=Jd3Va/!OP;G8P9_ -% KOIAE4jAPY5&Glc-Ke2DA>pDW&e]l);2edc)YeY*JmM?<.`$>b*"mr'/eA[9,<$3a(bLE3'_ -% =aH@lk`]8Pb#W)`3#g1EKX2KI%sf(cGD:14=FrJI -% _m+1D`epD?''Fr1@lneJfkpV=b91e5&Z(&-Lq`H6)PY]I'&&-H^.%&5oC>#:Q'lUEQ^qG)&Y -% +H*3`@6,2+rPl9pH>P/JUT/(>=>]-5&`A5jNT`KG -% $"]4YD+h936_r-3t2n-)<0<)"E0,>ceU6-$*H2Fmt'e%1j8t-/D!12YMfX'lb,K,eG.n*>4&h&Lo#C' -% )6$M)@V<'+Nl)V7KXIUD#.5&,#/jXGliTZAR[pT2'c+uDVdG$AG-^ACpGc9KgI(H5kdS.C;> -% Ib0,bkk&_@ql@nVDu--mHm+@AKLJV#Vj=LK+V)c&QjJP%9q&sjJf/AMnfJgN-0/2]?Q4_'+H -% -grQC+Z2-bEF":f4b[O&+ZL/`FELO\$=u@<*fDOjKjbW;-ZCt!-uX_m-kI$b.5!#^@!%+i?d -% M"p0B"7"Kt.bF=>NVH(d!>k&Ue3_0@P$14EQ;"'EfL\<2`kc=BL:28E;]--9*JsKbGS;5>;g -% *4U?Y)-Tsn25DsQ#G@Q=c4tB=U,b5QR*h\4A'%](pE^C@nI"#1,99M6H-DuOo'q6Eu5"@/s& -% PI]h&ksX+54C/B-#J6V*M@.F5#N?@45,6,B(ZcY.ir7rD+n-6/1>cO-J*t%-hKQt>'qEa(t+ -% +X4tJt]72ShcJs[RC'\l=j4>e_MKt%gA5=[u_+6&"N-=8::;^N+]+i]3q8V(Y,=\oZYEtgV_ -% &V5"s,Cq*/JeTJq+3eqL& -% DS*C@Y^g'Td1Q-eKHQ?h@a?Da8o]>oXFG;TUI`8F_6`-jqE:=\UT;)Yf")3\*m==ET4rCHEp -% i)F$DK?nXB+CdKQA,X>`C)3o<(Ce,r^*IDmE&u]%AD,2Pb;Pn'P.-G,`CK;kNJN&>j)u>(VJQ5B\u$A%igBD5/NA -% 2S=*$L')*nL1_Rk(r_"M-FuT.L?CNW+-;$M16*IKEOdK9)JaY6)8_,qDj)ALE\eb3(qbTD5<;kMEkk))D6I*P<540j'NKki.FT>qJ7Ctt(nYUO. -% ?6S=Vi-LJ3"Hf.Um2<=dTk2&;5R_TL3JC6Uj;P7Oa*'26^2&A'RT]CD0miDZ=ut*K`*]L'o3b5P -% ]T1&n6**L2SO*&IBYdV;ZhQ2I=i'ZCg^FZ+;[7=+qK!CLIE8N>$ir4EfGg)'Q+bUGrZgS:eu -% h%'Qm%P;gpoBI9VHU3RZp31,I%'YZ`XJ)":!DWWCs&$eCi3p@85LT)?t7ReV:*rLbs -% +*AZP9MQ1)JjY:T1b91oAe#_7K9D")5ZeZ?B08KRL&k`;H4*%S$bloJLUfZiJIQW=* -% IDTT+gWEJD&tih&#F%HLrqYB0nLs06r/Ob+R4T0&U*#"*4+NY/> -% 0gTq$D)=C43Wpl+E_UC'+UC@G(@!$o2YMp-.^0cQCKF52D\@l)IVW/V+QEMB&m]<:+[g"X,:"1)F$k\D+Hd[I-^md%D+8PN"\<[U6Yd2C.skJn&'RBT.tV" -% #?S"Jl&[j7t"26*%'SR.eL4gEY%pa42Cfk^mLt+A!LdDJ#.sZr?12'NN8J!UVL7TN>A^qc@L -% QRD[95GB883'3cLTERu:0A@W:!!r&LU/+X'Rh(g'+%0BLh'P`/%9Sm4-k]^&'\>!/#X=M+Bs -% TF+B9!l,`Q)5&L2M'>B>@r8'r.6EDM=%5%dkt4Am%SE_A'm7F>23/N8FA+RBh(MX*i3[A_M.$f[W5u2a3Ln>aLL3$b`'% -% o'c/l3UTLk:)4:O"#u7Nc`A<-Bk>:'DUk?#bU=.k"%E>kB'1LP%J1C3WhT8QBd,3!:h!H31+\*)?GU\L -% 86?g'4j`eHD?7r/(,,nHoE@T-2*)!.hP8H8=^Q]<[EV"6'!!o:GlGOI*6>W'!>"s0NU^XM4/ -% ]b6>IZf;@\PX3Puj%:]E]%LJf%[//D9F,nh+OLF=$t(<]9IEZlX[L)suK+%K@$)oI8(+VPle -% /Oi%410'':)JM:+Bj3'9FQ.fD&0HPu*kaHMG'g79lJ:Kk0:. -% nD>LCG'a@%MP,'+mr+L<1TbC=$\N+G46FL1O+r'\mEIK%tECL*7@P\3`2lA!*CMOqVLia -% H-.M[0i>Hhp>L3j`MrPL,1#c*+Ch6*H6%D+hU.1K?G]f?r_qH+u=]IG'tfBCg2X5 -% 60E[qG0N`9M!g,F6M_tO+TQo`L/T:k?1EdC'sehNM;/VO'if9C:[!W?(.:.]G%r4;+$G@u&% -% ?hm/c$$TCsd(R&mH#sM"HPq6Co.)/^tdOGk-[I;>>>/-e'gQM?$"HIHNR<-6J,e)hesS4+qg -% ;L5mI1+0:+`)+dm4MRJ:TICXq_HZ=f"/."&sM&m8m&IOEk5bBSV?fsa5JqP=<'Ea#pHIb2_L -% 9;`e(C>;T>9PFqL0Y[#(k[I"9Ls+92!#Z9I;C26DDrul'N#FP1sSh4L<(Q4;%S0Q5sg-$*n5tDMIeA,&Rp6o(gDkTG8DA;?-X+GK8sbg/UCueVoAFD2p3#&bno(*XiZu2LI-8Rhg(e&8?/Pm#/?+1D,9Qb-M+n-5H,nq`s&s-t=/_Uei-*n\c1PL%]/TB'Mp>h-R_41MQe?o*je46&b&,fCTnsq'8S776$>uXMDGnh,!82@ -% -N4aMGYBQ*m$I'8j?_rMlC[01OML>5<2kElADr3t>?MWSDUUZRHn@1,*V:6RM\.St+G)CqA"e13CN)+q7&2V(5M7KmM@hh'=oLM -% &)gaJ-MqqcB6teCB@?5RtJX'[t9)h!^@+/o8+laF.BOrcp+'0@"!qV)6#>u7qY,:F72>a)poE,0NDZCMR"+r17]3)9'A7AMDldp:bEJ6MZo## -% h&FhX#(Xa!CD#GO4'oOFR8re.aMg.hn>$<.D&r1j4.' -% meB)Q+N*DRGD.?9K"F3kH$[MUbN0(gpO?'7kNc.[s\A,g1#dCUK(S(e-YM7LE%WMaB'D-[]9 -% 14M$Et6LnX8;%n!2C[WG:n)b"04&Af70=39L`)._7?;cQ73$\;Mub2?7@?Rc'I -% 7XYI7b/=H2^*J(0,?`2B!9hIhruVC!1WC?u?k79TV]0(>k#P'tP922ciPG'?t>u04!)\;t`"4;DsId,u,4\J\+N`CEtCM1g"-^f5q& -% I';`MGbB>I0s.c(i41mMbGG_<\K3L?7p4C.cV:K7Wr.;/r,D9/\3J.Iq16PEqP!Y*JY7s?oJ -% jrMu4hq=`Z@b-NA54?n360B5oP-(^5g2)t4ORB4*P,&Cu`83JSXkJ3jfJHK'g6-'WVlD9!fi -% @"F9a(QW-pEs4ml9YcV6(cGO)2s(riDjte%91X/S;p.H3N.NZb8V_.T+STN9N%?35IiL0h'Z -% +Vd@.,Ve;^F+8'H'5bLp\V6MgucU;&4II-A?(sMZXuA,V4pI4#;D*Co&qn(Vp`; -% J8TJ]H[^TeH2iUP*ksc5N%GG=?A*hF'mGRl;c-9nLE.&'Mgd?\)7bJ,''X_FMWYqN,8PU^(m -% SjqMXMJq&rM5.(R\=TMY8"J/J`Zj+a%[>NUT$_(Nt*GHm4JT-:DkiHB!'r-a\a>*,Qp^L(c. -% _'sEO1-;67ML;4?sI!L]EG^FM\2Es?^NR^M]?kkC5>B>d.(()er4O&KA?Y>?Q%^-ILD-V]iM -% u-"E&>4tUE:ROmN?^hU.:EmuM.213N@ePj7A)W[;V[5^;X8CE.;otYNIk*2'P__O+uXaJM[V -% 'B*mec..4&=cMi9;L)hDDQ.pki?N=nak@-TIs*jgg:-Bo3nAdg.Z37#=K[O2>^eG"F'B`KL[^9b7h7Or=dBWSN% -% 6W#2[*-=,I(e3N?q?c2`PRb(F"e2-5U&^9R1u]5X12*-?)mG=U\I7N!(L6+us7t(YhL4NR_i -% rF-BF')Pq76@IPSj9S+QY'Y9/=-brlCC^,anNH7To7P><7+X;3l7KaK^0U7!L*@$Q`>hjm)G -% r6PnFQ/0%,Qfb@7YhldI??>N*h4o<:h_)[MKgFL2#:c:'h;CoNc$`L:)H2\);L0C-\=G?Ejc -% V@*P.,*-cQol5F`BH6K3l)-aaN)2bG/!'-`?@-[[!`3:]eh(eK`[)"0j4D:s@AMcDL]&F2LB -% &oWG,Nl":Z2eO6n9uqU"NlX^X9;-4XMUth4GHsGo'/4I0MLm3<4ZY#]1M`#N>^CO[A)A+!FG -% _lm4o?JX-YsqtN];r12RO(0=NcS#AqWbf,0^P;TTUa-pSaFAV#j]-`e4 -% D2K9V%?`&he88&h$=%4mNMRk2!&j]V.@Z-9&45DZs-b5,GM?G\>'T5i*=TEA21*/u[)k[g/& -% uCS#>raR%&.fGl3BrE;1:S:T'HM?ALJhM0(J$&m'bq>/+O#iZKpaDE()9m$MCC7E;V_F39Z7o+I+*U/8#uh51knGF+#TI+q8Z-Ns1$K/:p!8Hu -% h'b;2ZtD>]Y4;1@YrU3`nK.>%h\pDjt!`1UK/?-Tc0r12%M"CLi#!0p?C61.WK)8G4=s7pPAUl=ONsZP@2UrPK(k4<$D!Nho;=\q%4n'^VO+SMP -% C&(e-NkH9hO74=/3?qQN<$?0TB;%rLGL\]iNJER]*je\C?+1J6@%NE%&;"ULA()"B5t[3@&[ -% =Q5KPi=.DWG9"%kD013mh4[O39jpKH2Xi4u/2s./a^J8E32/W?`K0$8^8Y%29AL`CiVRNsd->14FjM0u@_D -% .%=,d&SX-0,M-fTOD@*EGL&p(,W]bF1Ns[8IC_JJEQ9N2'3'!VBNo6YD8Rd38N2Ne):Nd8OC -% o+*MKCH](<)>GIF']%+pJ@DD8Rc$+\3;+.Xrs6ORaf$'1jCS708Ph.ruZ`1ZK6NO/dMC,u]o -% @;G`I;&t0V.+u9i]OM*+21&Qmb(I;oc.'sq[(%4@J6A6nCCiV>([-LY>oaPXNtjhc5YMOoFWuO! -% O?Z>b&0HuE*VYV>0@b"b.X34CO$ld^@=!ek'5Ve&J37oaC9fA5=FlR65>+nI3.udVO?Gcq'T -% d8e@YH:eOR=SU(@Ej86Fi1)G1'ul@jFQKO8;$m;l2^f+Y8\+1n>H(O/H>3O-ERH*R0/^7cTS -% &2hk@>B5ioeO-VV?-;J'4=f#s#.!.7Z(._s21iQ=)Ao0b`G,cM_?8@Rj52$U>sCmI!QKdfg/.?]dJCmI!X:iBSK=r:X,O2!1A -% >*s<3+E;NTO[U=X*#U9R3VkcrO,tKd'$4U.'*hBiO-^u*'So;KI/,WkOXh$((OJH\7\YefO/ -% 3tX)%&Ge84+\-Oj,/p2![2`E$p,S2/Ntg-#6Z!9.H%7+LP]HCF)!)CrU"*,"a[s+j(`lD`*W -% _LmSgN1Q3RAJ74QWMNBV3+@[%7O(UX`/Ib(C'<@-cO0(bC2!Zp:(56sS!:5BG'+B=Kj+M04;G`"&IOCDUG@+[`:+I\E/?G[h#-"^4"OB=#)&_(K['sE[rBes>`/&+ -% =CO(9c_(>gACCVPg#O(p2g)Q+Y*3MV[U/%gPK>87dK@5!jpVOm=L60l;2<>f;b=/QFZf*-Z0>OI.OH0jkuU2"l=dB\*uh&J%dN=iukY%m -% *ut;D283OY]q4)6t4:,:A+'O!@i+@EKJ;%ocs0Ob/0VLo39E=XK2+(``@+o35[P,NiH@FI;`'G$=(M-hbd'Ta[!LGb/q)Ld66FdEl]Jk&i(*(st1) -% $YYIO'il()+A[;&lp,%O-::H+,rFm9WrgkOt.."@OGu"(tj+*O8g`C'+-Gf@i\9!Ns@Rr.H3 -% %I)2!/nO-Ft;APZY9:@XAY/-QaR4Vi6OC`$f!.![Ms-]M:]Osh$A*H+ET26^jbP*9&4/Q5BY -% >9e?N/>NsP*Sj-%-.mQQP)0gC6p)Km)Vo;VAUY1uCi<$=E6`%'&)]Wd7h?+*F<`oM'K0)s)9 -% NZ.DI.9@9Z'Dp;oOe^)6+Il7?8@q(8HuB)bMR,9]SU.EBfUW9J\X,6)-FiOCr!R&edqS$tph -% ?O(L:<0dTLq'U`_rO)6eF1U2_f&eC*m5iu',DZ*JU73Iu#-N -% rVkCLRfguIA0G)G:6XNN3$!HOq1YP5FH!N3$<7V=1p'oDAXWf/&.6P('Hf+96*5"P,f>U1=9 -% L[6)9Ye'Vl]9CqsSlLPLqp@=M@dGn#JHN(T/S,O$tV@*C&1Ge89R'V$l0@\4K]P3@#9MEGOl -% ATjX@gEZ!E=4WI'9+87D9P:YO"i6G(@?ht4l%`cO -% ROG".0PX),:\eRWa();fn=FD*OCM#L, -% ,+O2D)KHFjCNMM.F012g/qnLk2q\c]NF=s4:1A!j2]$ZKNMB!uC"$jS2`2PhL9kSPBm5c1/Z -% i>4H5pqpC^Fb-Mft(Y?VPC-2j4u_J4s6n0PG6s2k1PYD:rM0&OgN.F+mEaF'fqODlG\1&Hc3 -% I-,s#HPN-qd+dm3%3_jjeP<`fC?]Acr)hX?Y,Wu`&FBMMmF#n!T'b,7T8a1/XP73A2I>;ZT* -% lh6[PFWHaFY[g['nD=lP8ba$I)CnW*l<9[P;Y.20]?X$Au_%n?#q[GAkX2]H$*o02JZpOD;7 -% `^Mb<0B.:\=LF>)3,;N -% 53\')A)'ie0W$`nn*=E[)I/[]j%027R;0u,WSDg.B]=TKP?.JSZ/GW -% 0=,P,<8M,\AI*PWokL3$""b@IB?M/3jpC.7GQ0N,NOt3."\-2Q@`N1OYIA36sgrHc^.f:XYK -% F:AGMF+d>-ZPle4G^#>pK -% V^p6*-btnPM%MJCt'&G&akl/3LW6[;>sksP^4(U)8Qjh2`;NPP]8V,8ZEM/27@KP0l@eN(RA -% Vq9(\?A(Vj't/*nP%ClWAQ0W-Z0J&?:`BS.+T20q;8M\MEk:ZWpFO?aPbPL`p&'J(Qb06:n2 -% Q+)@")"qg!Ji[^3?cH1),a=4a0^b,WM0NgBCAEggPW>k((jCK5C70UD9 -% `^A/HoeD'^h2a-%$RU6c0]@3'*=JFWrrMD)mU"Piios>GO'6=je"gP8PB+D';3BKNFDa9;-V -% ?87<],Q"D@W3nfQ'>&a:DcEI88FL)(;FdQ89P_pCo0@]('I -% sr(/0"%PPQqC&;kk8/Z!GE/0#m6@JNGb)$XuZQ*X9=#rs$r5c'ajJqb2o'rc.eDYZ:CLA5M/ -% EM&N3A1&.jI!6/cHH_T\)GO,3HtY\]PpnC'.C`V)5F>15P8#XYFjO0-(+W7+PKb]R:;;14:Q -% CVY3lHCJ(-R>uQ1%&P)IFPL2_/CHQ1[rO>d'))*U]/VN][l3?-P0:'/Yu)*0V5mHo7*RD)Ej -% gO`4g'@=N3qPQ,1F&BnXA3iA5@Q'>ON*YiDY'[:H`5EdD-C$Bc3I.!1K6[_o$0??rbPC>4Q( -% 2@UZ'S&'@PD(^#OG/R"(dpCpQG4-'(;Z*G0;Wf8PM[TMI3r^Y&8m"EQ8sA(C/J"aEKb._'V6 -% 8k.0"+QPdt-8'a\WLJf5IDQGsb'3cJL)Q$ni`AZ.&lM=(mR@6g-E&"ajnIDpS"DBG1#&Lf)i -% 1MoiCQ&7VG?N,*_+)2NPQ5gHO<4lV-=W`t'&6*\Z9pH_4QMa1*.\neC5`V%d6pVkAOR4(VDC -% $up:_8`/2Jmt+QB>"e&PM[;G(HluU9^?l%PN"W -% T)/Oq-)`9%!Q5CKZ13SW>0(+r=+2:%oM$=9YNKfW92/s>aM>2=KPfZ=fCK3Ep-lA2t-9)fXK -% B+K_,_M:k+d\j2c+anQE?(\6)A!R-[V -% 0G;"%YA1US53J=fpp6ktCF.@3SVQMDAW7BDS\F1Zt_PYF&[F;B9B;PA!^-$LRFJF=SLPdPjk -% 2ju0%'Ln=&'TG'=E/YRC5(/Vl43]->C.oC(:%"7cA^>!&3b1rAQ%BfO@6u\AGcHsa(MIOBC! -% C<=In>0W%s\W'BYtIPPZTT2K+P=PIXL!&RRLRMW9q$1$TfrWBGQd7(=K"u-.AYbNA-_*CSA%rsj0F='U)OQ,?*i'm1P -% J:tcL_4Cu7.n&:ebB/g,*OQ[Vf_=!LNLK/Ju'7t3 -% VYGN]WiI--Lr)ZN@PIef2J4$k(FihoJl"D$*NG=f4*M:= -% 8U_Dg=D!mi6qoJc9X6BVQ`X*q,.g.i+,>5s:"0`J5sQKX)L%NZ*.orQJjgIe=C@IHB$iH=Jt -% #]!PO!q.Hm+4J,e\!K0Oo,91l)hs6u82n7i"l#5\`VTPTW)G+[7f-(e]C'PFPoa'NJJH(e8J -% YBa>o0Ds<@fPDh6_&@XHM+MJb]QZHJ.6GP&L(pfPn'\5;e3m1']Qc(NT47d1[.j/k3Dt=Jd/ -% Xp89'hhFEHAPSc3n$![8Au4`Q^a8g,cDR0EodkhJ3OlM-G`D,PX(n!*YJ5pMM*sOuIGVfsPH50>D,b/oe+PN054LG`:0$ob$3IH-E;4SKI'q9KuQS)P` -% )@'BD4$Q^CQ]sUF5sU-i(26nlH7i7>2/+ah'PA0UN*%j2'JV0s.0Gsr7lPkY(^r*E;n`bcLK -% 5A[/g#c/Q[1>m;KNgqNarpNQbPX41797e)aG%&&06'F;R07K2YMP;R*KJf&e,t9.\D>-R!;N -% Z6`W4rCGD4O1=Smd,%`E_3]rcl2h+lk+kMbX'-hfu+t4WV?kHZjR,pFUI*QX#Gs[lI,Wui1A -% )8$,'I.p5&_Ig\C/H3MQjn`o5a$Ij*!&t_HGU[E-,sF#*ClKnDM"(,Hf5k@'LJ2"'9#X`0N( -% FK=T47Y0U4>u/Q\>:1:JR16kLo\W?-$Oj=(\^;qQRY-n>fg)P-OFha -% Q\%Gm(KEq'8Q8*=QsM*+4?5SL'"q0/QT.,.Lq"E8,:bl$H;'MT9fXo".Z'P];VQLf9=k]bQr -% cEk2X!e70+qFdQ_t]4%'`7!3gl0=&=o$S;^"R=4Q(VXQPU8d0Vh,F,.*7_Qp3@>(Q1`W-ndH -% _R.*7A't7+'@\B*44i0/mN_9rE8A1C9>mV\cNpT*4Qq'ZK--]=?L`$q>H4CfZ=X#+SA'(*77 -% ?U)M.&(o3Qj+J-E^!FVP6"N6HC\/d2]!n**mIOMR,2$e>+\>N4i/GGL4=T:m&F2AO"N163J.:j-@Agp[=8e@ET*`XCd?kH"*-rbMHNk0P+ -% 7_B7Q&djWV,%P*4/dYn`Qe#G2,5I>a)ebVr.8VE.J6.k&05Q/)&9VBC>iKh6Qj>!o'8RA5e]PKViTR,Ns%nR56PJ(H?8C)VAcpQN8T'<7I+I?ga<\>l#&s6m%\<>sk"c))5uiQ+.c -% XQk_fc6hu$#1,52*49H627aj7T-Hd)oHGNP5N&FVg?CR+sVF,'E<1FQ]Eua5GF@?'9n`NR$KR?L7"CS&B\4fJ;G4B&6P;2*.sW&4us^M -% LAs$T*+YJ`I#K\/NR&BZ@A0*>E`aK4H?*#kRC4r2:!&aR&r(3+LYO+^=kk],4<^,85F``3FD -% qrS9TYYX7c6I%J>,*s%FRC5J8J%=gD8ZZ<\%ja6WR2@D-+X^Zj6DATARO8]p2qg'k(A(=SJDD.- -% IrHV3F#TM+Be_[CR$J<_,o2q;Q31NV+=r?gRNQ(t4tSp::b.uY."NlINGBmAPFIs3L@#jS=W -% %e`A;#KY?+_j')K[c?5[KnH'1c8B)mUZ4QpMWu)G3\0NmiIJQObh*FQ%b2GrM-h5;60YR*?; -% b=)XNeBh0A*;UJM$QsW'$/%V*J+5/k^EY1p-4p?=N>%j;4'ECpBDJ;lEQN/cM*qWD"'J4ErQ -% nh5@rARM.5r&0E(O0lhC,Qg%9?7$q3W,V`ffRSZc3,,0Z.(#,2 -% '0*?,PCLAU_R4Kmc't#/h*qu,?*^(p5)(lQ79(JF&5UANO):fBSKc$Rj0W$1J*+.B5!Zr2Pa2-@I7ol*/(E"N2GhO%VR@mtY(j7I:4n -% 0;(Rkn!\/'0X8-q'Ob:;K'G1mJ]6795o=MM*NVQ;F!$S&Rkm8+%m7Kn>d@'*<@$+ep(FREQp -% "'oNVRR\;u"DZ,@p*e0WH-l"ae=.2l":0*ie(`miX4+A*JQieZV4 -% 5Dr,+2)CeQg$EB1oN^2.$e93&2]QbD\j9J&K-u,QS3G(7Q*S^&j(?WS%k1L/:12U(B9b]-4H -% Bdg8FU5QJMEPV5U^(jOc(,R;!+63I9869 -% ="b^_R*1sD&]?\e:RN:NQn^Q!F-)IMJMU*:RiW4`9d<\9:lfe7S+DQr@_Ef-,V,;n6"(G99S$,lN,oS^l-4$-iGOf!T)<)60Qn(JK/)"7(NV&S -% n5r0R@t9C&fN+,T<&5 -% 6(8I>E$KL_@SiS),'FW*E;iEM/8^oU)3-)CE+L)0RBMFM)Ba5^@g?(3S5g5p)#/8T7V+E*S< -% a`j?s\^_&k=dJSF[ItMDHI<6nY"L([X9jGGs6AdH\@E3=US9bhk559:V/5?jNS4Xg -% n02us79VOM?S,aSOM:5RD-)$jf)lZ#kOL-F;S@Djh&WnjS.?%7K'uhQ"-5T:W/TI9P6)\9bQ -% :3E^M5pd(S7iRNIA0.T3*)PB0"I=_M3F/( -% 7d)*pJ(C-t?$[SIS$T1QuRq%olU%'*X766Fi;q'Z-9%*YDoD2S0L*A2g%`LV8c7)m*$nS`D! -% n>Rr;CN`M[)@tkQ(MJlf9.3"gN)CLm8=3+)_SblKIQVoWD5q6,V/#% -% 8\SFq$8/$kM\(iqcfSGkL,D(%t/1GV(AS`^_A38@L>(/mnUSS:n*G[Yff2Gfq$2]mV_CF54R -% R"TI)'`C^i6i'hF2&-UfSkC;QN<(5OOo4dd,NS4Yf?9N6DH(`$>4SX3&?<^;PD)dSm -% p<^@q>1kRc[RT>q`3S,V5E=!pQQr':s'l8:b3`&K.2rQV-/`2-42!kfuI9)kU3CH71KS(R'S -% 2k";a4SpB$3O;6Q?L")q.CWPf-($QYRbAbm2I/pm'/)rSS\% -% uX''Cd>0hRsM'uF(G?DA4D.t4!m-F4P.*I;3R*$^uo2M3\66l?n-S@CK^2#pX:EbK(MSQR%H -% .r162R\-,s9nb>A-UAE=R+><>=h#4;8KaS$2aT#a-O:8!T%+U^Ghl$j'_drCLtNM(&\^$\C> -% TP>LrVjj/&t"tLs&.[Ed*=9EpB2BAVC^SO>R[n*Yf=9>AP'BJB8@n%"sF;SpuPfShU`*@H0_ -% .#7:H3SrQB9&V>s;*IaNC6i8$+KkNgt/PqtW'c/%*.Lh:uRT521/RX84'hFHfS>JYtCD],IZ1]J3h9ii;>BM*6)S:rZm([,lQ(>D3*S7al&)G*gW3>57jSDPQm&/7PX>UZ, -% 20X-pK;EZ`qS=qWl'd6#21]J`UT'-up0JZ]DETs!r0K>8j?^rL(SLIT]&=dP^:ManNT=#4WF -% !+=h4uAdN3%e0SR].G,P4P9d.n(m59O&;#SY)IY6B3'EJr13"SqR_@2o/B^6t:chT/ft5@4s -% \W,.sM*7._t`?\!Hf;W=9q&ADrr*n;)rSFK2'H8niJ,kRVG(04glN-JM)S;'Q+'lQ%SChJe] -% SDP7W)BMi!/@H)RSDlU,,6V3'&Jml:SEN#Q/)"-;BlfXCI"Z"Q@"ibqO'J5b26f:'H;kV'?V -% m977&pjtIq_JG5?jbTM61)d@+>rN-[qRr+XN#]H.4!KD0V[CNj:*]EtB)kK6!U8)(974B%.? -% ,Q[YQ6/=o8LA.("7S0(_Q(g^Uh;?Ab$SFf3<(C>VlS.2*jGHQK@JE\6;SHY(8m$`R5uCOT&Z-\&jhA)4WANKSP_H]BObn_?0Rk]46J -% q8D$V,X*\Nt7(Vg_JJGpYrB2G+T(NY(]D-rTOJT -% )DDmeS>R1q&qFi`(?oALT<dKM%br7JM@mD,(`+:XYlj>%*i;.>aRDS,aDBDG6H\'#6d^TTCif/i[]h',[BCS -% 2F+7OL9Cm+q'tX(ee\INOM^t6CSOK(HWoeJ>?40C,MZs;#"ADAfco -% FX9_jd.FcW'(*tVW\D/re;RMT#%@>A7>/fKI@S<6PeR]gZs(J:4O(#^Y8Cs!Z=2.4,eb-N -% '<%TYY9GFKK*JJW6>1&=$mfLI='>Ql/?o(fd$p&2fEUQlnje@!-/Y)%N$?*MsZ;9\LtuQL'q -% j7eRfH@JQAkSCS>%Sq0QrARTo7Qduf$6i0M/:D-9uTPoiC(E#oW&-cOrQU+*O(j0"e3;uK<8eeH7Ku=K7@k3<8ACg^4=hcLF93!f;p_1q+o6m)9+bjDTP> -% [P&H-^h8HPF9MX=sCL";n9)S@H_6l(t:QmEDP7@&a_iO.r;@:o#*b -% EQ't@q'eZ1W4`kQ/'`)IZR9P"^,N'A1&1&YnQolAl(1n1l9$pq"TtZmU -% ,d_?Z/`E:5'UB.$')ODB*,pF*<41_,c>Yu:73ELA)Tk?koDHAC -% V&l'mTTkkT"/i?8A'6eT+U%g&H02sNT)aBj;7k[.gHng:dS'dq@'pP1U%<7+:g6$5+uu@#8(eeTO/tnL2nu#*)@.Va:2*'G4?'SLk@XC69Tg))o3^efR@/ZcBQm,AeH'(TnU0f:T:K9- -% N)pXdNG5i;u>_O[kC9sT$(hPAU:Dk9u'3_,%6>.-;`+[)Qm=q]3IIP0(oo*LQeP -% 8OU3&9c'tKO/4YEF'8:`##A",N2Fb6?S?*e%<6Q?Z3TI:aBL\H5Q&G]OXU1f^F'!5ZuMKY_Y -% J%fV<30@$RU(n9%/I?&e2.iQ1,(3B'3d5h(Tc7]Z7tlg@&7TsWU;:,;C6':$3Sp.KG0!rpE/ -% H]&1UE`6)ho+&E'b=7AW77=GCk$Q)nuuZT\_kn'+&CrNm!HtTG9?B+p"6?,(6$^@MI$4BPOG5t(d/M).1',KU=!"1/&l+d0Nt4'-hn-#B@!#YT`G_u&6!>1-;/Ep -% TMe!#&28d"8^*]Y?Pj@>&\hE>'L\^q*PW31OMXN>S2I$A(6oMs'q@5++Ru,6'MoQmA$Qcb)o -% nLM(*$f+'$<]`Fuc<<*Bbu!Y(;0>i -% OUY%&ZC6ONRJ"<7mITRm3>pL?\AuMB^1*7:&-+/&9p+KC$=3!]i+*J/<&3N8m5ZKi+UH -% )M(;"\sB*A4$^7iP28:P]O_0AiOtK[aI\+P.@k:"c;E9dt=U+OE^MTK+]`8Z"i5IDMIX('^= -% D3a4])N:c\Z?@_\R^&LWoP0C0YMQm[--. -% EjU5)E:crT`-C733+ii)gNMBUll=\A#EDN&4W3>Um_l3@h3'SE&jU%*>)7A/a"_NUB22FGLo -% CiBB0p7UbO9]'k8Pm&P*YCTHkOW?\;ZbG>"aK&I(VV,oRGVU5NA19]%+4/nGV2TfF,ZOo$F' -% 29J$&UeX%2GdE*)*HRST(+LMk*<[ubE)<@r+H8:/2=VGT;Reh'BS%X^a1QmZrU -% fS0b*TA2_L2^"cUgnnX;)q>cR\$>#?W\u=G5@?$Usra!6oS^q5cUXP/\Mk-0s>&QTK"l+@#UI_LDuWn99^_J5:@ffR*6BT?1U6B0aO.,Jmg( -% lTH@\AS'r3i=S[";(3)#0V:0N;'j>qcO[j'^V!Ld1026`I(%Y?_V%crb'gb>#($UC\Qpl:3* -% HP+U1.aMMV3O_^(4q)[.A);,V&;$F<)o086S(RjQ^WTa.a(L@&lKl9V+`_rFA5\BAT4&>992 -% 8QR]%VNRhDPt'7aK4F=D/.Qmh/+VKP">t:9;EC4p3 -% ?O@Id-aODb'^^Yn+V5WFM/fAf?sc)G6m+\qV;";:@$u:&,r6eDU]=b**0OIGTAZ&=)4ND9D5 -% CAQ-X`e1FGDR=56)^:S=rRj&pn`&>'m!n(R>W`D!!_a'j$dd8DG%oB:U"5P_c0d@'Vtu:6f: -% !RDMTc'j+jO&E]>0N`?[A0Z5_-*t=mnNdiQ#RBJoUO4]tt)5@^V7aWWYUlD3G9\geGT5@<5V -% _\V=>6!@-a!XL5LB=?c5sB.>1#*:eV)&gs -% J-hDd:%kD`+EB1rD6t"4V>R/W'RNCFRHBM,Ua\u5:cN;8:l_*D*:,$I2q!d$(b:uN*9':oD9 -% G7=8-5VM9YFN2HHTYRSbXM@(VFg/8ck_-VLp!rD1`^$2(kcoF>7lM521..p`@09Z32?eF4V48Xk@Dm#3Q+iaH+7(=H(120iFF9pa*uZ02H5BiCH<$fG+ -% #[19JD)].V0RAl+,lhS5*q4'VVrJ9'1->U-AS(E9KT!UJGEiBS7JMF&)N8\Gq`;UVFhtA2?\ -% Qr(a5^b1:Iuf@$NqCR<4M#6J[g2.VGMr3R8cp?l<$Y6kZ?3J@65h=^!,YO%uQ'-mrD3+7h)d -% V(-=*IkQO40-H_B+"NaH;atkFSO95Y3UUANQpD`1AGi5I'gQj3NL?7ZV+<4u9]%&]4U7f%Gs -% HrL=jAh6V,:<_9_DLQ'ZZa^(p"ZR>30>+/mtMK'snfS9J%%))Zlkk9'/#V@3HJf.&J#7<)H4 -% t9P5JFAlYZ42ksBH9L9OMRDVSK&XJRpN:j!,JM%S,6qo\b9mieX2BeY:Aq!+IReIM73eora9 -% =eN6V2K3:%jsfh.teMmV'Sj6TDDh]PL-1?*.p#2JUa'hVkFhL7O3#'&A"b9<$.uk?[43FVEe -% T11e^)iO9M5_/grFg7D1;)NtS9BRU@7&BM&o_OA_ts7&(g#.;2C;RPYioF3,hr&[F.LV'Zt"2;O0H0r(P -% Q81kYY(FW\iR3AC:6ij,BIjJ)MVrA_42Ben\6olD!'#()\2Z0@fJ$im6-gMZtV0s -% *f&RZT0.ZZ$U&caAs03p>t3X;L?(>'NM&9frKL'"2V7'JHr(F&s -% OHhVp?,s/4(]U("0#1(6]OZ;'.s,V_)CW'Dsl*NP;5`KY4"X3/S?OVN/ -% OaFuV.ECtB23h1'aAUXW.'Ep6P_0h$1sTn-f7BD8-37?Rr]8t(MbLH4&[-QRjb4Z3dX.u.bI -% fCW'2$-4*bkK8dD1\(HbRj:-V5FVt3/++0Inc5*_mVHk]P988p8Y,QafF(BZAp64#@FS.'K; -% 7V#b,;\bQCM>1K6UOs]?I9!+c(G)M@A7eY4W)u-:-QG_36fVE=V1KKj:5 -% 5b[(SYs/>]D[0)?Qb741#i@<^IYZA$2d+(cW9tEJc4@U62AfA0GpM0mSGpV,g&'A/8 -% Ha@@O$C(pHU_S8Br>>e6l@4>E@r==ZN9V#V@%5+ZqZ-2Bk)U^8g`+`*J#&36@A'Q"erFseW! -% (=f?FA-+"kBcRh"Vm]#3'+:*QG(ZDSV7f;2J+nA'/[lt_W/Z5X@r$J!T?jGD-tZ@L35J2EV7 -% IaNA@6Rc7Gt+/(b$W-2gm&]V;4S/P]ge,2l!5'(%X+kR<%=l3>X]MIS^9C2V -% !!:Uct2A$.!W*[-sK:K1/@_Ac2WPgjNB[M:9)_3fr1(A/o2.qS^-`2GV0Amq)&"0_O/W\fR6"1$IC)d_3dmdUS2sJ7) -% )jG&MH<;aWCKdk.f,X`DHs/7BL!kqU!PfOWU<;!)0i)>BoARlR*S^,8+Lkd.ghGZWG!/+*J7 -% .25Z(lRWV.R.)RW*i4B,)5WE!L`:BWM?,.OW=:o7;gV\M^'R!;G?T&QM<-_$kHCV2u1W2NI2 -% RtXZTK7ZWP*3=5!WCKoE,"8FMR_bPV:fAA!3\VG0S;=/2:qqY=3rV_9;K8\A)+@Ii>VCTZRA -% f_\*F`J*QSW=Bm4YKf2*.k/o4YK2k25Co&U=l -% NT4fB7MQTYp=Oe36Q=>rKd-K\^sUC0CD1D3^Y.o:OdWd@.Z*ptI,I+bL%*jeA[-=\c8WCA/, -% 2V:eg*EK.>)K-?u8#-q\+a9nkKSC[5Rg'l#Qr&_C*YTfp30eg-WNSf+BMK;Q(L3t[)Bre?'R -% 1>lSVX;"ODZgL0rJZ(W<3ueO]`=D;k9qL2I:7p2/J&hQ_YinT3Mtl2,/t7Wfn@;BZa].56@> -% -9HG$$)nZ\#R:]a.%!2BH)%BE>jNP/GX.jPWQc?o@\,79NuE7.WRMh,0R>n:L!H$Y;&^:92Bk -% &OWc>#u)@K$$KnE!%@bI_X+R2Dg03q(";?X%UQjulYC!71sWdZ%dHK$Wm'geenWeD0k(fNE: -% 4#)I/X#b)X@J(mE0>NeqX-Z7bN_:9fLdn@68G%*f2m=,PQRo2@B%_7;*_2RrWbt^2.o^?MP, -% >-2==jr"2n*J1(rD\kJ"RgW(eR8ASN!VE.<^p]0R0Aj(pm'(2HCTR)7$5_8-B]_4q'7r1%hO -% C)([FfF4H;0'>:Dr88f:-;sl(LAO`Y!)cgjH'FtkeT\6<);l?'6:Nf65WKnd@-dbW26Ma]+W -% G*<*Nf-=s02rYbWmFKo-r6(3/6mYM59^8AT)%(#35H5[:.+"EG;^VH$M[#LLdHY.%\^<#BD=DqLoc'$X$C;'9poHn-A\Y?)a5D>HK$#2.AX#",LoGK?%42%WA>kE?r -% CXn>aVSdDsK=[+TO'0WNA!9;@&[3'MG*"N28:VF.71M*BL1g)^Z@R?rJutU5;e*@H)Uk;eMV -% CI'/C`P&2EV?:Lo#-=S<9TGAQT7*.hg*@(10iWUt4;(M[?]']js4W>QZq,6VY5H)dLiW -% T$qi:M>NOG_i>J-;>;fH;-na:@tSA%ea&nP!O6IX/'C"2_d-6&_O+n,%-ObEuu!IR_kPuB52 -% O3'-!)lU;EB"1D+8F.YJI?WQ'+SX)h6M2q+fo>hO0;ObYh+X;RQJ7_1-8J8qPBEtk1ZNEdf2 -% WFR!B)JXB8Gb(kU5I"DfOJc!.WGignLkhUp&bW,I*18!;B?q=IVV.pT(K1rEL.4PkInC=c,' -% dURNZC0#WJV\gB7+d6Nh`DA-``XAJE9It).0KFB3RjQ5Cm6ZWLOqJ6MkRP'QL.jWM:G@(SG. -% gNb>,dE@%Z"THkXOXK`a(I6_0J0#sO)J9MNF;Yrt`767E^*'4q9=_BpNQr?qc2iVoEN8^?^) -% -B'n=Xd]I=)+flBI@2!1O,!rXIbQt@$Ee$4eJeUE!fdm-i0h)*!Rn\@$RY_WU(V"=+=AS'tp -% U;*+C)f@'^T3O[,o@*/@4AV:-EaRXZIG'?7)NS7E6nW>%sN(-YF'+4W,dW=BqW+h_tQ/1>_a -% XOTEL5;,)l1L-n6-rCh';s,"4'o8h7*Ru9LJSQObXCWr:.6(!t00H)@X:l@TOulV1?%T&_Q" -% ,sa);#iY7bJ?6BYR"85rFFAW@r3Q;t!B>'076#XH4![Qm<6)0l3hL4\SCSPd)[22!(g6&9;T -% `VU?/FX276bIMGR?)Io4H82Dt774(4"4N")X2\dXaD-'7>+6>Q -% U%O%*KQpa9upHtT*\I0>TA\f@Ol)SUsg'/&Na,&ZDF#,A&5(2W%-;0cHF><+Kc'8+\G%Qum@M&0`*X2qXl_U7#!E' -% _E%d'?lu=<8C_b(p"8MS$\^p('^%Y;Y6?+,OTck*%iOkKC"qS,G5na=D\\:W7[WL<-N%^;-S -% MDQbk5<5P:?XQHu5A<*:=s+6=g:Gf[#M37).4*p"oAUP]q^(Y9MmD(L9W5(uSED -% QePK-G[*+R/*!/-,?baa4L[It(#G=p,8:cH/V89^4n#LrM2+Cj3I*slXu@!6(.0XP+?Fq2Xf -% `8FBk/bZ8Y*!P.(Gb#/=B/qS_GC.N_V2'<'u_fXn75ABU;QYW!0=V:h3/;1iaCPRoiAR5E17 -% -.`ds.9Wob#2!0BPRTE$h&cPW!MD,caR9)qW@$?&.691[.K"sa'%nM&0TXU;YJi4T$Wb+T@K -% a"XH*kP2kL(,1]Y4E\k11<7@=js*K,DM\b6Lf5#R(/&o(Uffp'T>;UXTflI+K.SMB(W26*tU -% N,J.F#KA#DAtF^)#'0694 -% 4BcnUJS[B>^+(@'gEO-FSY(@`HB1ZX49+I=d88Js2UVVntSST7QL+Q\3X#>)cY1-I1C+,En& -% *ft"@er$(3Y.eYOU(S\h*V-?J'?"XWCA\c]6)^op -% ONM67;R78F-1iQs-0Q2A -% "YC!)-5p\30H^h/]1K0%nnZ8IS$^sCV(AD2OQl-XgV+*>WAS'T?+.+.LHkXS^]9FR`JCWIZ.=_)5B -% VlY;'1!,rh=O)k*4hu:Qbk&H+_`K8M%V0(Xe$Yt+%Io.?XanPYK[c2S)&4r:r]YN5"]"B>[3K -% AXY_P;>A[0R+e,XA)H%3,Q-WA29P(BJ'F]9j6RI\c+dO=[Ji4[+Xn!F1-*Uj2*S?bl6k3n$Di.E\Xb7J=*557s]9L0j`YdZ/&,"d*XNJ">P;Z -% E4W3Z2XCY,l7m&bdiK0*eB"X`YeG,Rc99(%@,HY&bR+XeBsS'A>%8SHYU-)C:Sl&h[JK2(Y>CYl>;K(]IZC:AV*e(*H%V9 -% &(7s5cCfl+cRDi159u:X]%uPB.b7W6_^^"+b)P,,Ya$IRroWhCo/_/(k6GlX^t7A?dqP;'HU -% *8'Z1Kk>W%5I'=h>gXkb.`4U7dbLSM'6+iujV'qln4U9BSsW%JfB.'p/L+j?#!,@d46YkfNq -% -F-DoVa.C@(O$_I(qVD[YYl:?'C.9W(hld+XZ@9];JR-`&C[#GYX0+c-[Ha,)SNAbCtBOXRK -% \>rYb7Sr)C[Sm3q'1m(XJ.1>6,ui6E%";,2ONN3CmN@YVR$D&H*u8-1ZBLYY6)V,Rn'e,GVG -% -,4coG7KJEIY&H]'-Cn^#/\Yg^Y"^*.-D)\rN8q$=+tQ).?S=%OY,!TW&Z-t*)h03oY]3FQ< -% .6AY3G#@+,1ebs6lo3HR(/r+;C!qu)dnpEZ/8#q3#H6^,Z<,XdiK]'O#jc6bu';j'KEAK,+TOT7;.5nQH60R/JiV+77n46Z/[%YFElB-,N:9r&gN^iT>IH\+:4)(-&7E(XklOPD,4:YO$T<;=f5r1B7lL\R0ZrT'IR -% ej0d1`,QO[08**Z@W:-2)eQkW],'09;KC+ -% J!jbL2-6.R@DOUtXB.k7R<'bn-n0m@*H+^,QZFS@D-(bB+oQ6#YqM5V2"Q$S6i+!%i7D8RG_bnYmMbT*8*]6'i1T>T%I3-=S"t:p;uA$ICDsKZ,dp;>;Iti$Z<\^b,u8+k:e-lp; -% gBSA?VDG_MH@+6;!i\:Z03$0I[[Q],a(TIK?L7@ZC?4rT0$$W;!kO=G`5@d9HG/4Z-bnZLV@ -% -W)sX4j=tqN[B'CSJZIUYs,R7#k>L4_.ZFW)7?&V[g)m>"DZ(!#2/;6N:RI@GT,go+VR\d;! -% D\ZYmX&2A*ZE5BcC^Ei#L;gF),eSo1/eTMGYni%lR%kI3NQ\TD,[b!c74iJOR-#i;&_2!_Dm -% +g,ZS$1d?]Pm?/1RqF04Zd%T%.6JSE;"C4!d)Y.Iil5Z_;6&-!lbT)UG)2Pj*0=;GpTZYr+1 -% "7IiT@2*@$-@ngX(P[fYAZ:HXCD0D:Z'FM#aZe6Q*LkmgQ)AKJX0<#'O0 -% :X#X)?[=2)9dXb>)?0[ZZ[@I3,UORT3/F]Vf=/o7Jn7GZ61/?(0E#b;C%+HYq[R",-=R`(bq -% *=Yr'*q#C#LkZZuLnpEQ=DbC'0S$8+?sOEFQulJnWt6J1JY05H-.F)e,)0!e:NNk> -% D_)b%3;#JRZ>uKH7sgse4e">$4P`'N8Dp3"2-H0hQUcl/+OiMFM_dgsSoBL -% 0$VGG/"asUu##q0Y"+RV+0B*b+?mc.6IQ`a:03TlSpn!jY -% VDVn3%qRY8F'lt(#sCrZ<=5nB^\p"+PWPP+nonX(9`\Q=Ndt^,oS/\7Uh+@RMR@TGtCaE(1` -% 3>Z,n9l6%pR%,[bf_Z-Xd@+*#f,t^[<9&k(2ZO!*K/g;$sB+D:d -% :I-3J-)rP7>72&M')XaQ)V(]X0+B-.L&)s`U(jsuE/@B8B#\M'R42=[(m -% -,'/2/uVW@;"G'BC^bK0PSW[$PIP3Y,^h8>UR>QlWFJJ()Hdt=ZpPa(,g:j`QaF';;VN$'8L5!g,9!kt,%NHS -% Xp@Xh-BYZgI?[:/+As$dR/UHF=-.gD+!*AB[*N^hMK^o17(ot=(%`+/@c`C[ZA^HB;hgj]5f -% ]F$M+CNbW*0g,T#ItH-B:-N>Xgj -% X'?75G=O)3?[.6+`UK\D];TbU$]4KWO.8d?+"@\Z'H>T0mN-RBh]G;^;^S6R5B/K@e`+2fJ"ZOnS-0["ZR6Sj;\Zl'OI/AQ -% !c)gJ\r1$*u%C7,bYWpR/tF_6<[.u7HHZ\!9B?*$G.&YH@MKDHkSPp&9NUKK6^'i6G9AlCL`S`>RnSWIXK@QCem-X1)2b;[GR7kV)>!h0m -% %DbU1H3nV#+Dg4c?Mi('TlKYuma_6%>WbTgZ;h1=djEA*C%pR\#P\&r]kn/?Bf*Z.DqT&5Sk -% `,SQp"Cm1ef[4Dk;[#$0d+;KO/'XO;JZG16e(V4>nJ?Q7/?(mOaW.5q/S+fM9@FSPS:=XK@[ -% 7_Jo,/@r1L'X/+?+=n"Y!m[ZZKa.r88X%CP'+2'1=7Y96-V)j[CR`*H-ph)Si3-)MAe4YCNMm&=R.O[2L2*/QR%8(Tt.[,`J5C'a/^PQiJsp/+ -% Rm_:0_bK[;MU/IO&rC'tL^fErJna(tPeJZ.C"b<7[hN(u:_0Z'U@MG5>K^&qQnT1TqDK,r?I -% BRpDJ9,30jL:JimA5e4;3Y\9(H)+om'T#Y,uNZCoS&^Zg0QhjU&W`%'Qel"IP)M^A>#h'Q?'Z9g%(]Dd+@hga>m)(b8`Ef+=Y$qEI7AKWY,NhUYM, -% ?;?(ak9Bm1EKTW')n;d;V\=mV_H[XopNKEmnKX?5FCO>:hB[[`9fJ5QYMd.<(\A?f+jEUFXck07Sf>,e/lNW\*YTV=R -% EQhqKh\%V&OTtn[e=[Tk7h(f,rl4mJg@+W+d4)MM,WN^C0g.3 -% 'fp2I(KlUJ`LU*?$3M>"p:7[WX+V&OnZT2gd[o[psLC-GqQ=8c#l"-g_dW2We$bTS53r/;5` -% k)-O?^[ZN#))r6E$?@ACB63[aJ2RP9m3ZGPC($-8T/K(Tq[]3nY.J/@\=t@%o;M[uZDXJ2'U -% gJPT.WG/fZ.3(0.0EOA\M7tSge%=+rN>M?TBto[biMqRNH[1("8m7?cR>J@?P&=Rlb!%-cJ#%0BfT<'ZONJ9\0f_ -% Ane]/;*?K\5Nl]W[K.k4(4\T12`H/8[ouMkiD')e,1>3lEXM72q00X/`U9.'*u&Yp#Va5b#5?.X3l2;`mO@[_5AM-=K@ -% 7+4[g/07g!s76@r9[g4=RN0$jbHaU:V.T8u+@A$$ISp$&4LAOWM6\^+1[TY.m7D_@(OXmkK. -% WQm[T;buC[g3\01ndT"'3VDYQ?XKu9_2C'2)L5)TeeT[Ws>YS#rsARa@YM?l<>.;O/ -% O/@bJ62(p4t0;YlL.[tGFZ,u7Zu6Of\6.U@/LF1A"XEAk71+M/:g9Fum&K'BaK+7X3]3_u$o -% [r-<'XG)aLB*u-j(I_^gLM7h%[^%@g/us*D&(F9>[X92P=K?Om1A.FD?muePZ?[orDeZYY.b -% [RFN&ECK[`^-k=Xg`$1Foo].e4t^?h7"B[b!"'3:pV/?n]"j'Voi#=_JN;Z>$bEQD71iDHIX -% H/j4+n3SX(it%X#.>/&[X.]NAG -% &8\]*SG@#i3I+bkRKB[L\8u'2Es["M;1?#i&13W*FQdrg -% [W*fo)u`_pWf:hp[Y$GA03C@D$B[Is1[ZN)q,C -% rP<;4qT:[[8R!+`pXm7(#T:[V/D=0-+K:&5/ZPZ=O]+X5tbRYb/F(,_&0D=m%W%S\edD0X6D -% LL;gZ^;LgSl9H"TcU5?A\P&YZZ?R%UN[koO5Fgk#/[Z_EU?WUrO=%g$t.fco[+"X -% QF[f7ji-WENmUj%r'[Ke^DA-QXr?f&7#/%\U1375W1jM'cnQ5[PBD'>bsAo5RFYD\J5d,'3LDtXgPT&/: -% iX^57\uHTgcLb&g3h(4gGmbUJQ3k&P\GH3OpJ$\Q(2RX&NR24&WN<)\EndU^0T90LE3[(R)? -% a0\I[K>[+`X'e(=&MpiWmT=:Z,(M$098u&X/ELE*(VS@:rAkt[q -% fsm+LZ[D%op15/GLmp+8&Ym[eq\R0#f\*S\^?$&QL!B)#Xf$U?\3;*O-Pu@Eg0U[`BX=4jgB -% H1+Te:<<=@o(7BYM[alW^4K(\@,+c4g/S5ld5\a>FYQNoR8=nG@$[Uh$bL64'd).KiX\nist0nh0q*Da5uS4d=p'_a/hU.eWW\tbl.(-4%< -% 34gP.R"7"%+\b!e@POpmQsF0f)Y%sX>Q0K5Q]Eo,J`30UD;(K$@G"F)6"krRS=ME$,,p/b[d -% $U+R%5uM,dB/I0d7;2R'AEe,d06b-A.:p]!*b9(Z\0^UN=$G=l*\'ZBAI<\jIfsO2r\F)io; -% t](.:Z1mkLVU>D9U1?]HDY,s8;B[iB>@Up155p-_S'+UD)@_d2N6L>TJMX6\/@YB66DfQUU8 -% QWKo(#0V)A-EpX;Pq#E,D[lAUP^_FS\&@PG6C7n2tWKR@]MVC8AZhVX%M-%:S)%1>OO2\2US'! -% -"<7#Ab2as]>]=9KQGB[(B**p.-:f8GpV:0'me325;IX]$Wk*27KcCN*N)M,]"94k&Zf60LZsq&]##^E9W`]a.iXm:\,$o<>^8ZjTHGi -% 1*_n#tFFBO@\fGg*`D02"p$Td3S(\g]:<@)E]:B>0iPXM:3f>XDEYX:RMA0TLhW4 -% Bbim\i_WA+&[8lEuq`[]0\1%[5fd_GfRE=F;JGn+'`E<\or_S;?'05/_HKGQFfa;8bSXU],2 -% f^-/qH7FpOJZ/![I"eZ]%hH>-VheZ^8Q-Q.]W?>]U: -% (a'?1tlW0]b)iK5%r7]$F#?8eF-dO3F+uG[rX+Y2j*pRqQ=m&`QPe'rO,7]YH151]Ach&&Gl -% _3Rf(pAGUWQW*R"&.qc4gI'-FMR%PlB)\P!(P3Sj/2JG7+-.e"W+.Bdt0-<9b/gOQJU)#l#7 -% =^M9/3[3#][&pW^UW-i\([WO9)@R3.R*9(j+ru&:)?l]` -% ?PP1l@dlTL]Zi$d\R)(*Z2M] -% Z4`]FKS"0C;.r?Z3S=.J=jC.k_U,W)pPHE:k?=WrFYe]4isn;436n1@;Yl0LQY.3>>YR]V-k -% gA#^8j+*5#B0GUTt10/4O\qMiuNR]n1,%cg9\n=&KXC;_kYEZWU,6g$T&J&#A\sbp+OR -% hB*'YT"2GTKQ]8AWp8H^G-.tOO+0fjTu+tt/iE9FlT,VV$S,4),QT4VXf1N+J#)nW\S]%0c6 -% TdhOC,?VHE]%g24'Z;.O/';qg][1qW+o-:RM\<_o0QRi0.)93q]s]5cNjiN#R$>2]0UsD=4a -% S-)]PUX*27PmM'98VH['DGG?Z1s\'2c=R0b,),@;_TpXe<6C0cFLkK^_fT\pmtp1"eJ')KD5 -% `B2oKZ0NAr0Z;\GS:K0P<4g/mB].u+B0g':Z.]Sq?C)!3d3.2RcFC)X"H9\`A(HJ*rOq86ID -% 0&!%&:qGe0e$6<*qQ7"]i$S8)@^?_G!3NA0pkCM&3XcV]uN(t2lRB'(;ch8\o;d"1<3Q(\N% -% 8lH37@H-J4]K]sT1QGm>^`17Gdt0p/(>Xb9);_co\q2Zb"NDH8` -% :$<-NRf?tL'2BB,M2/7^a==Q+7bU]5'(XeK09-]Ojp:%0G4F/5;V\m -% ;nM0dSIIXH"4nZrah^-XA_WAq(XMPg$gF(;W-(ZBl/9\q2<0&lEPX4/0?D-P\UbRa"+[RR^t -% F&<]qo0IL%g\gq&Y'DkEL2N=^']lXtgXg(eq\;n/V0upejJJT0p^"aut17Lu#MF5&A0kDVE9 -% V*:H(\>>5(Apig=hSZC]_=/)2Uf2'*ppPp44-eJ@F0+cUCrcH4M>i#-(2B0]'2V&2]M^=d,QKlj0W@mQXeA_e#-=fuT*Udpg -% 5B"o:uFCJXB3?"8_E5rpB;F)Ad]^1u,2cPiUV;A,eRJ(7=@6&4W)6Ie0^6qLG)[;&8Xji[=B -% ?*0WFM8O5Z.bNNB.L0"9PIL:7?>06>"EIu+B5C\R2'@"'W"_u=h:CJB5')o9P>+I/>0_dT06 -% )8;+Da]QmZP94Ns24-Bu5Z,5$!>ZL=Qb^#[H&Huf6Bo4G49/'UhEQc_fJ:@h*9)'Xm*^9B&W9n[QE;!+5F0-q^).KpPOS2Y+.&F5Pt. -% RR9G^LnPu+hXt,&rF@$1\R&>,CV4a^L'@c.`P_fV3J\#1fud#/d@7lU+)X&?@WY#SRe/VH+l -% ^;*1L3e^577q)&7';(=g1#I*jc&)"Vb$^Ti0^'T7EQUN1&C0fkoD(B^54[Y:DGUP').a3B^QnO/^T=-^6UT*8NTOl6]&O-367JD/^l71\sg@.1jMgj1 -% pn8$^OA?S?GJ+`@Rn4DF/h$:1S6HrT]g(O<]iGAB9f7W@ju>J@Wi@m^P'>=2#=-2To`F,^9f -% na&_Sr@.\&+>^c)jp&R.:IV@fMG^Xb6dF]L=/&7`@>^eK6o3qK_@'&&fiBn_Uk\d9ZjY\h1b -% .0<^S5uJBHTNo;%2!ZsB=XuN[^TN+CATU"n7eNRmA^PaI=05$_^&g0Y)u_m`&rj)=^Bc\*5G -% gbB4-[J956%+bY,Gp]^(iLX\N?aK)QfM)3V&IMM[Wc9^Btuj*'.d=&;IRe^FM0d-JTNe(Xn, -% -^+M9^+j`NYX]E4p2-Z&,6J*O^^U:gdECW:Y'QLlS2)dc@:SS\NGIbNE+H[t880S\TSM_rn2 -% >i?ZWeZG&^aL]"4K(elJ#K+?I5Wf@Oi9@Y^_p2h&_0GN6r$J0^t]r_10dY:7.$D35@P5A3dH -% #UBfU8B8]\-KR"W2+2:rG584O/FGL4*^2.\U3:kq'b -% ^5t4.*oX:10%@V%27BlHSRNS/21E9%.o.0u:FB[^R$28a[.mYeKW1bk^M$BC&USLq37G[H22 -% k@/UCk!2^]kJ"8Y&6)+MO==Y74J"Roq(uSHpr->;&gZLd2R`_=W`QMRe3ZWs$88.RbK1'm-" -% fQd[iKI`/k:&0o!C2,%aT_&3qiXDF3).QkOqOO9[g?X+]JC>L8o(mMbe(*+KbY0pA)^@*q\7 -% d%2%E6>of2/jYJQ1cb=_,u/,:SBK0*gFA>2NPJT(6Z=N_:BZXE=uKZ[WfIr2D7+[9'?mGSY[ -% VE+\8>c&LN-S_-h:XQ`Gi'(!s^V)W;71:Lk>4>^jDGDs'[16;J21_64O[;,D^cM(HCs/?fiH -% \ir,1.[%XG5Z^#+86QkS]D0-+/>jbLA8r4t3L[ZM2Bl#98G3X8S"Ee[Wte2?0&[HB^JHi8=1 -% tNQ.@e4IZgKWJ8<-`!S^_^1'%"FpKnN!@_-f2!MOPc.TTm0&2D1$6K"QR7S%4_9)d?CV1ELn -% g_1j+fK">mqLAnq\5aZ>T[#T4\_:+T>2gIRb(ZR`n#C=2g`$)l' -% 2t0\779[_=.fH\B,I2NaQm.8E%&^?B\"&tk`/'^92^_,=@%1ua"BNZGuGF^0AYYaN,G^6pCb -% 3SdO3Q^"%=KZ4\lLcHBgHBc/(2B+*N1Z'&=^?IOq1^uh6,Vb]BS4\;o3jKri^b9e_+PEFj[Q -% U$pYAkG9/RLnQU"$e@&is)u/`eJ)^'ZfX'8nCt(TJ6K_AXt[>QSK3%jSkAD/#KG@0C.p^?In -% b+@;@DBPbF/2o7T]0q(8%^2+GIPij>^(E5`1^+hPi;(j7(Th;!`IV1Y&/,EbSBm7F@Im"JeB -% WT$U_SUj:En;R]^6B6P.]G\r+:D1:p+93MOC7D%IU!__rhL37D=07<60N_m2dVCLF&*@STPB_?"I2@&>BOMfhuC__3$7(O7G9,C)+7_oELn&\hD0 -% :WjFr_^me.2M*?e83b!U/l>I,4b5D9l0GX'(KL&@<5F`Nn)_ce6D4A7s+2AB)g_gWlh=R33GTteH\6AR`*79* -% DDA#R:UAX!d,;VD]t__iIS;NlV).\ai,J>=>-7Br7V3N0jA'h^_P)2G`c_T+X`YYBD8&R_Cp -% _i@@.-WEML5%G9/'<&h3J2oU[VCbL'_`T82F4`jg80BUP_Zh^?2eZ#N2F#+?371@O704[DF; -% r,'7o'_!H$0^pR.J1L3&F=E7*:$r)_d%D -% d2N1Q175Mgo3BB(?;\Htf`9\nc,!fWj7e]4Y`7$A/@5P/X(';FT,$$>6;c=Cm5qKr3J^mCfX -% $*s9`/67^;t?s!_I5P3L461EAX:7'*SWn"T;fF2`"m4UVK\L"AJdN=`"=X[5?<``RQJG;D*f -% Zh9L':-M`J[U:-g*B9S0]<`1fq4^>u=qJ2>)P3IaV!`8uC4_^cIb(RC5N%rea5_eqJSJRhZg -% )oZ*g(Nh`.2_BBp5)[BBCiuk3@Z8k;r0U<_EV6DTJ0Jh*BZ,t`-8]nJ>#hQ4e -% 0ER3Oq%6@2KcGZ$aJP=@cR;;8c7O&okhm^;s7N9.R'X_PK8P]H_%50h'$]3N7Qj:j\mZ`4Uo -% X4^AYbL6oi*>s1E(RV":*`06IARLH;K4E8GO`V+-#m9ZBU"bf`B$'9EeI(;Yp762S0p;93L!\Q`@d5;2u@L/AC&2408)8*D@Cm,_GWG -% eL$g]<;QRfc0ZPn?Z^GBp_dGOOB?;ip'BW*A))=XgE\qB\^c06(NF*2 -% s\A-3n,/D;6h#7N&eed?To_?X42CU`*dIS4M>Xo7(QDh`EHPg't]g8UGKg!0JorF0/aQOThN -% Fh(s"tH0:fP;_kB-b;5eG+VGY>Q`R#kKS!kQa&7NQ"6n;"i5lJR -% `_?)e^CN#mgOfZJ,4"FeWQlI$A>/.r&DV."J':j3=`CH5(>T-?>'.YuJ`Ci[r'P&2?OP.UVE -% X!Y(^dC2d`T!nq+PRu1(k5l!`MGaZ)""l9+Ip?.=V2gR*s-B+`Jm3G6_.Qc[+*&>JGVe9-UE -% XC`EmF`(njD6./Ch1:T5).&Kl4c8$ros'In`nW\,Yf`)o)SKA.G;[u=;s`q^=P*ThVL_8!iu -% 41dWA4n=!&_JD_n6e3*G]m-DYm`M`l0np+9F3m17#(m`^tK5:XE6'*j*<>45Of?1VAdM`8,_2RlF -% ]+(MIDl,k*lcYd#Co(.Q9&-8QRs8W&X%<0bK$4,n\?G3+K>_\+2L'7UN&XEcfj_ZrN -% F>LfD4SpjZ4)Pl1>F!4"'!PEo;MUCu_AYNYMb@C!^Bst+`_[Fe[4<2)&sgG*?&WPO??M>u`% -% +'Da!G_Mg2U.eUXM&DS#4`apm-ECrO'%=ai`V7B5?F`!kW%2VL`*bmK8$,@VAg^[ja!=G">aT -% LU9I)Mn2XDY7=#Ug_0."Z%XXR&&-dK7.a(cea*GLiM8oV^82tIPY/IZ\(JaCBZ,dkE9W(U(" -% _GtQG^o0ea2P#WM_HUu7&1jRASW6,ba1sh5?.OuP\\Q2sS>[r!OeP)L`34u16)>9\_YCugE, -% Kq^O_T.&__>&jK.p)D+eq`t`bK.-VGkOtU1MA!H=ant+O<9p_ME.mTusqn,[/7$7YX:6ZlWf -% ;2_Z'C4AJ3kW7S$Na2g_"1=\oZ(2-08=JkW3`Ou_ -% Q9pCMK_WQGk=^V`udIF/V&9K^'Md@9HFm9=1p9ROG_'sHYaH<:ZND*Hpu)-58HJ88GjR@33: -% 0l7rU%063p&1a(nStS(Og+J.BUkXl4p?D_*P``s$J0")??`^k:@-"R-X&SaKFPur`_ArFKlU6B'u[tQ*h#T340q*CHIg,KSm"J'3X.ppa6YF -% n)2:5t3+'^=8$5(qE<:X[a-rr%&SWf1=qag>a@-[88?=li7+'%]-!a*P[+GoOa"eQeBc`7&dgoKEn\HG2ispZ/T)5Xg80U,W/b'T47P`'B>u/=H6>S23aG$$@0LIDb.k=FOaI@m:-.K`qV-V0Q/gQ&NIK -% L-ja>[B%FU*@/7`NJP1k$'>Ut7C*_mCK>-,;#HD="<'a#uUc.L.7?)nN7OaAd.M-KCDQ/R?F -% 8&USaQ5s,op`K;E:Q5^o>A(e-ta&bGUB15\?+GO\p(=.rR3BMc!`goAq/:JU=U'Sf*1rhQ:N -% a*Y>Q1r:K3'f["2:WJ'a4_O9'*]hs]mL>TiKU::hX>;63l/&jrtZ[#bPSofc^ -% Em:q@>B:>2aOmi%Dhq2d'8I,>9Q"%QVTB?[%uh+kaH1'4'X:u]R>[i -% Z6Z3DlF.a(P=hnqM@@G;B-NemB4>&!!a+Zb9&h?/7FSET]a$`McL5TL&OlaLfF$^dX?WS![J -% G7'N5D0Uf`I,/Aal5(X'FR+G/)\H:a!<'k.9(-78PO*'afZ7N0.K21-K81kag@\M7&*k!MQk -% 3M<r,7XasMJY4m -% Eb<8QEh+5HUP:RsZ)9gaupb3.X&tP&J;rG75>f*7:@ -% Zd=@L9V)ZrPe7D>,Na'M#1.`"d8S[tF:_];bs2m/Me-q(G-a6-_5&[=dk6I2rjb'>.VP,,+l -% W/o)E5Qu5I.6aA;b/,4U>$YRt=LBT!b0Yo7=n[+t'Q;(o93\:)V2@++b,JA._g2tDXpE)3FN -% ^%?H*W2ia-o98(-=s0+pssRb3Xn4?\T[AUrCL4'6lt4=G@j(a^7&g-gXs+)-_2Oa0S%E`3ie -% @?e*:#Lq6bW)AA.t`kF\u-jEXC60?3@FP.7/5("L@Y2@CQ*[mIU4r.-ua3[)t.R62HW.`9-* -% NDK(5&N/mR0^jg5UD6`FS$2pb)IS1,'mZ:alLV1Obo_=`iu<.atls77>r8`Y6iAg(b8:ga\6 -% =RbMF_lGuAZA(NR[G:Fe\59eDaPa6YB21g;oj/hF`%`stBKM>oO&Y$/l1&j_7H\bg`i2m!WC -% <]hlsDhN<9`udSk3MLD0)B$S',ifhiQrP8q2r)94FOFndD+T"L_j>Ip5>&9MY/P#''S[c!N6 -% Z2@X$4_,5T:L$0-`7NOO1kq&r]Qf0MX0qSe/fCFSJ.,J#jA97S1d&6%gD?>F;])`4L,!7>bM=\e,@* -% 4ZB%Fg#U"L2O'!6'*8r3G>j# -% bAn7Q*D%EJ:q_n#b:S:"(cej*I/(SX:O7._4(&aD:i7-h/99APAPIBNoW;bLMbX.-_bA'.M$1_i[=O^-+t%A"(G5FYYs+'@0!obMO?T(2i8;q(k*.Qb8r.9^VZn/*kKO3..P8nVWMCSb9B8o+6OFd,8"kkb>(:Y-E7g[0 -% a,BuHPd'/5S]?]Zg5dk651Co7Yi%=`-ui6/6u,FRC1%LP!TtE8pZ*4;cLrB**NNb6+$>'9@_*T:CE1Pa3#?U^]aKtFb@X),M/>*TP+9LrF[V>f -% .ukh8@9Uj#@rYap-5O:+b;C;UD6]eb)#V<\Cq216'i6d^Dn3`#A;Mn?%fpK@Joa,^o]\6=-J4ajh(bLe53( -% %[(h(hjk!bLAic-2ou4'8*(WbM#;V;l<^G.E=i9beY2Y?)EUI3EjTO3S>Y=AGg7\bj7Yk=op -% @(&[?)1bR6leUp(BC95=Zm8ga -% bURIFFrR5/S^5Lr6e5=@E__b>be._688fu_^c]gb'tLr1V%e-Lb:#_m9t!(gJAf;F83@Np4/ -% 42bh\g)gGG\'f!c7-^RKQ3jX/]apV8U&9&r8H`*P6b=b3u>r1LZTcQH'atoeU:W0V9r&F(G?GY5?=[mRb$$u<7sdOPVU9KbbF;_eQd3Tc+F_LlD -% ,qTXY+`@1bU$!^Frtl//jmf59nl=RU9K&abGI4%T(u.<6jV&(3kHcOJmX*H`k?P*6JfaNIe1 -% d_ML&*,,^c4fbEPApZ`\4EC:IfX'`.I>1V@Ph$760U:RFB?^lG:ldl62M70U$Kn:6_.kg5ld$!_i,]9;BC',@M6qZ_MfStMP -% jJKND.PLRMd`\DoNP0S:8^53O_AgRg]l@A6mIY6S:G/'\lMoc%o+u4)^.]&>[K$()V"L64[+ -% e>[>T!O?bn^<5P#%b7PVV*HcgMP=i`0.tWmW4.^GW7A%gI6rQ1jZA-,2c([m6G&/+4<+=&e+ -% k7u,>`Lh4bnMP4G\9+rEQP0Fb;_m-4"ai2(+m^`?T!bG@PSsuWg(]t)tD$?3s'>u_GR'o*Ha -% omHQ[[2b:Y&PKP3G9JS!#`(5=HBS*7XOb?RH7(cP!-'Sf4Hb@7(Eq"t7(Yu`?g]";aIX0!Ln9' -% u9fluObHOBg6Ao61D.Uo!7(G%>1Zhcrc+QMg8]EU-YsZ]D2$c_j6^9cCbfN7B^tGD*)%i_2b -% KiT+@PK]lCg,$46qL'O/ZLnpamW33/9,,J`MC\p5"eO5^^V?bb90L&2J'tP/m?Oe052,kOm' -% !%'-MC"M<[&H,G2u(1)*+C-/r"T3,[$X']*M_3o+X`c3?`$-C2(a3.B$Z7J!G=2Ch%2b7[7Q -% 5ThBLHF1no4qhWFKiYHqbTB9lZsK5BODi;g70tBD7(O0H`$]d0biUE/E,7^%bKElu6%(knS_ -% q[P7J8EjGfYT7bEQ;,6anE)(im\_Uqq,1*H?boYS/^%bE\ZVW[Afb)(EU)Gl>LdCTV36;Sp^MN:%\HGCI`14$c6a*61',b:JEe-\N4D5 -% \J=K(8m$ES&oNcbd/C!N)=07T#6]3cK'4f15eP&'\q!S3[K*7`K/b/&<])H -% @sNbg[1Mci'J0C-ac0,1k*T73th6+_i>Y',Aj?(ht3iNpam:Ur'53CXXZb`&F/`9J.MmUND# -% cbJ\s6R49]JXX;7$7d23:Or.VGbJdJE?,01e1UPBB+.!q/bI/YW_ibjS'%]@lR[:s\(pXc3' -% ul;gXUrCD(o%]"..K:G[3P'CJ_\<_H*tLRBT-Hg_RCA2ab%V77+T -% 4!GthHIX+r:haikUWQ=RaXbn7lHGr\88U&Hbkc.X#-0:dfsG^.QU+/pr!J!2Rm`BSX23r1N= -% (89&q7^FueTT-8b_b595K4DHfTW?D&,=d`[7QE,d`Wm@fAP09l`e2Sl+Gi5lTqQ1T`F=,Gb` -% Qb!KS.U97Ssj:DG?!b_^$*jJ)3=f>_jSKci5cX(.)gW-gRV:cY@+m*?$nOXjbVX4EZW?2]-X -% /`&ek62WnW[Mc:GPcS-]a'2LOq=TlX"H'0-.=T-8T&oGt97]nr->!Q-Wc]O2o9qYkMU>O;m- -% 2;bs1'q$&ceCo,;2gl98<]nRco;]eV)5fo)rsrL&ElSg>+6O)6K5l3(HYqFVpD(/D&(F'N?2 -% &=2;26\_SSrGb1C]D.LFJ80=VXpJHLne_UXYX&hd5>5S)/ncQTJ3@>&O-Gq[OK;2/&N_e];B.^5(YOc^7bWa9^3IsK8$m%.FAKeHd(t%L0W.BhG8eg]7mLL7'>QW-c1ZElE. -% !n%UUe7>/uNjdb(3Q.2^QgdI)R!"aXo9G_V60lS,%)?0CQVNd%<+!@>Y`t]kPhl7nj^Y5%c! -% %]!]lI\&Vf85&!QDc^d39OAJCLH,RoXH;GS-ZQ^*k`24N@O&/=#WB\a3/:V*Z'!WmU`BSZW( -% r\Ft-F@>[cqfS_Ab9#hTOcD-_Uq:8+*YkEcYuA&0dJuu&^u69_T=[2'>_ssVC\n5APRT)cZ'lQ*i*=u=72f'e?b,m;AZK -% jYCXcFoe*8sDI9[bM(-$dON3@luC4em]E[%Y?V3TM;?5EhigO"\j1D]WaHRLH4"d/'@Z<-LN -% LKPAfWHJfh5>1,))d04OBVBTsmB6_`18G$*2CDdbbabS"c),`.8?lIB.8:"2u0E8'&j>sm#n1g%434:EDndI3+#)]q,21MP3R;AREf0Aaq^`:Bd,P:S.o)_+TBdF,gN -% b08=p_t4f0QBc2 -% ,eA8.cV8-q/Q/cXfIK2Is8GTRkKMNUe8o?,XT8UALT5.+io>a&ctUB0s^)1Qp(]8CTL_2O/r -% hcfQjM4sEC/4GqOm855e=./XdDdAje=*!4##>oM'I21o#X)WhkBL:,@J8G=_r,;iSXd;WYp, -% ?cp(Q*/Mu2ocuB)1a"515=2'FuLWaE)NXEd9nqr;5=`tMI+[*)]TSO8"q\icg++:2?Oh@\"; -% ">USfCSQiXZ1cj7'+1U/17131]+5Poek&E"45_mRf;)Z(S%;:[=OcNm+p2SKm[Kl,-G8^A<8 -% JMe*Rd1]+B-g)#*3h_^(R.Add3_HX/b=F2&[fWK'OsJ]'5]6u0D -% 5qS:,d(Web7ZAat&gkO%+PBrp.hO.(= -% =2I=8ITW;5oM(d8LhSeD;[ZidXZ@89)UE'X&[TR8LIdo31hR*dNBBP -% %u;uI'5c(/\5>OV^g5&cd\1Ai,D@]Kc7$[e:P;2T/LF%Q\S9JcO?tMu.$\7ZdSZ*s/a'_P^/ -% 38!.==_GE"H7&cf.N>)sD;;`g>,8?62-0MetOPdPcnr]%/))/SWT)0M<+X='6GVEiIF_8Q&P -% Z3on.Zd/lqr6!7t`*-0B?F`'#eUb=N1d/P)8i9XcM?,0FdcR;U5F*iYS.3I`&&omu8HKkMd+M?$RoFda -% \g5=I(b9SnCKj%Gd"*%t30A+h&:g_Uck@%k"4fg41C:Y#cZMkMLtY@<>;+?L8g.O',5aKBc[ -% \V\2c`4K&Ia5id+'N4OI/+m.;@.e8l\TQ46h)9d?.$LBe3GM2^[#8=thb"3s&lKd:=,53=j1 -% 6(+mERI2pPOER6%l5=!\n&FN%V;lquqc`]s?K!;Og:3b)U,qLnaaOn`qdh"bE8Fn$S4O_Uj. -% -RePEBtiN;7R6m/8S*dAl'Ji>ADXS4iMCL'hcLbe'gp7)-0$*&B0pM`j/%+Zl[\S*(7]M7<< -% usZqi?CZI$Jb*Bb:lKEl*Q_[=:s6%s`:Qj0)nSnT+Yp=a_t6_I@c0&MW1H_SdtJEs<\Z);*'uJ%u_WcKA+_G&&X4f*HLoTHA\os[/]/2* -% C\cF>:/GXk1%RHYdhZqM/Ts,DZR"&&9DWsAM^0CT_V>a@4P;"kC"O@!_D6RpIL]qE&Ok3a99 -% kQX@ka*=e1F]ZYZ/BqT9@Y_0-69R4N/[l5;:TB6FDWDJiJ#He(RHc@r5!7'D\#Me+"))P$Xs -% 7_l1X!'!Dpb-9k&\_B9J]'FQjW`M(0H93t/P*Tp]?)lM.H'P/878)J8MWJo -% :L*_%sYQR!F7ad.D#<%;en0>B2JeA4j+@cN6L18iX'8BP0+[3dH8qrS>U_:OrrQeCI=DHaCo=as>IS+S<3n+Y.O4e`'9u6%pKK)]Ksle*0QfHa?k3@Zo4/ -% 9L:162J"-n_uJ2CK:>S?0+E(reK?*d\#6c?G0=qD\8`5K]!.uli5,BCk@IN_fk0YnQ_JVMYI*oX>NCWmjFeW`d2B?k:.3kEk1 -% 9oXWD4`_XCc1-;O,2PHk[FfK;eSN.p?tXu<)q`UO)'_BF>`l%ae$2V.N\=7t)o:#6RQ[b^/e -% Acue]8G]KKqNDU/a3-(!:X`PA!(pQ`&N'GgnBDP9^=qO#ddn+K1B7VBXX#S -% ZLJA?`+F1taIeeaWKXSZo/a`#[c+gVau2l_)?'$\m)>SIq.cVbDcJcsSsG>sgBDH1e5e*.WZ -% *32Ke3\k-,dm?f**A0=W??=\9:h?qrUS\ZC`,@um&\gbA59m8-do0"r)gO.;A>GN9em'h_5O -% *+4*&Q2Q:5s-#EiNJkek6PW;iF0j&SAo[e+C82H!X*r7RbfT(LS)C7RJNI^l6b'+d&"S0Z%Z -% &c'd-53TqZ7Chk&kb/o/H/sf%j.4E3XJ7'F>9;e;8P'GQUPX*eQOZ$B[euY*8&`koFM1aC*( -% :n(;UhW-/eqk>NHp04uCD>,*Whp;q5Ba+?LnrV&:.5k+R>!bde$2Z(H`BOhMV6S$KQ*\.ct09K&ca=i)EQ-2X?3@*,E:9%tR3bE-`f#TELEe`&)7;]C -% D.d[jOBK"Jm3=@U@H[dBr`5*B]`Z6O==-(D<)rV>['OQ7t.[&7<:SLZY-mBNWb*l/q:R&Vo' -% T!bce[@nq;19\WT!-^9:U:sG=Fl#Ke@9Ts&cb2"3fqlH(s+;'NYN-oa`)N8PmSqj)*?H/e(- -% sp)`8e4+Bcq[e(mIU/VJ0?%u4;3f2S#c)uI2Da6J_H.u'Q0QaWETP(?JmTJ_,FQPcdq'bB3\D0!1fqa/K%ZF.9 -% 8\.a`"dk7+R??Q>I2rL:B`]J'r]?,_g`ot&mZM"<)]*sf?R9K-A>gQ;8_"E,L7drNf574__H -% bG\\(EuNVD&&QV\d7Js"Ig_kA;l@c`VoHdgR\)$Z/"12iTNf,PZp)K6_[ApMbKf,pD$)PS7; -% D8XsW):3KaXg>c=_cVN33qaQoY_L-f<;%:K*deY<*$Em":n"DQE2aDif1/Zm3c-a>'7AEY_J -% XraQ4e64bidS_:7!%bYm8F?+Sf/N8fLC5_LI.;Tj0I],A+p`,7;tdcI>35_cKCc7J\OT3,K9 -% SfQ'f(<05Bk)q3Do);,oZ-#A=ZPeb;/Jo502L$!jD_Oh\^)biGT2B(5A_?nc6JkSe\-X#*_: -% gUaDAK270`j11s/?>&h>f50b:dd.#@s22Af/Fsr'C@*_,]l"pf^pn:aEBP2a@Y$g:e!MR3-6 -% ,dfX=UQ_$OcI6&F5"&[s!"/5m6ha_4a]H'0_#,/^76fM"%$AaG_9U9<+o:fKbp/OgPhS3,BR -% :p?7!/L)"NXj5PQ;#NX1?Xsj6d4.D]3#Jg;YJeOJe?0_$0?FO&Lf7t;M$0S2G";/)St1P[?q_]VuU -% )Ug99NSi1ofubFF:O[r?WYa?Z'XSfd<>H!6Z45J,)@7c;f`iGX`0c/^JgdcR;?Xn/K+_R`1[ -% #rN`H>aKG"k"b)U6lPfUG`[f]sjUQP!)ZTd -% .h*Wf;Zi]'kP+a"&*L*SDb;_fX?N_\!e.(],N<>1TrsfEWaa;hRp*(,V9=frA:6/BY$-TF9B -% d-7>5r1I;XU"o\jW@WfC'[DIq2.l+7e'G;AsBKDKK&.fU# -% JV:"Oj2'su0s7'F^+6)G/@b+421(8dcb(dcoYf;VXi-%!=OZo?_<2=4>I-KuTWfsFXD,/bM9 -% /8'4#3p -% ^RmaCI]0f\BBgRWfj])G7qI4"MP&V(8 -% 4>!W:2+7-g=;S)(X#g%^MhaR;cY[)7C*e%fJ$7o[YuH1-mdM(;g*l3(s3fO`8t'`*3cQG*hU -% $hf6gNEJV:te@]nih-\@-EbHBGO.!-p -% M.&e&lQuCWV;kI:Z8`tT@f/l8T&^E,tL5=O)&RlBQ,+4EFgZof>H=LX`&f9;u5+%.BMM]G%g -% V-ln3Y5YB8.=5i,>fl>.;P+jgQWhh-Yn-S[6*.+?fOWTY-#MJfYU"I,TS@qU1_`"=Cja#4WP -% Oqa#hr?;`gJ#L"IlrfCDj9+q-$FFi2i+;c>H7-uLAKfn(5^]UpUO-u%<:q:EfGmkab8@#@.YuiF)!@]uQo:sTgE7>'2l8$`HN -% Mb43O#Gp0eu0E<"%>L-2LWFAO*PqgXMWjQpYGp_2-i1<2_\^\O=fc-_1l6,L0l4/@a;)<%p: -% f'6q?4`$'l;=LD^NJDJg0-u@#qQ?%DVf3M@#.?.H6fa>VVL.ko\X_SrUa?h9UR[)3*7hER+L -% 'rO^b2&4gFtb[\t+O7&t.!FB&.(1BL%O-_J<9\3C,ClWk -% "0!h!QX.EenQi\'!I@.$-3deY\'<`iFh[V)@&%&*2L(<02nYTfc+E5J\7/`n,]$5j -% ,`n(;\;f,6(8db<'EQL?dN?=Oc(oTEnZZb0%/biB3)gmeO_ -% fT%PQ;2RkljRPHZnn(Oh%; -% DY-bW)(6/OLq)9Ah.I^h;<+tpgftutRn4Ij>&i>h.MR9W'LQcAgjIDId5=AO&nfHZLtX$)[` -% U[l*M;.05;a1jV(6A4h2BDU'1I2Y%mf!c.Y\ah(@4b!\b4^b%:E^UaOs -% 7<]hj;UB=1+grNOTKq:gV@9:P88N**c'iGu/*qS2HYHT@7'MXFfgp8-NOh8\=NC:\?6HVUUN -% Z`LMgf?pu&Y2%&0/-VfgTu^<'T4!K6R!:bh=4N2/n$;L8dO9SNi=3PF(<"P`5IIBSG-+,(l# -% sX>"5paQ_I0=:s.P<2ZM%V*i`KdhO8_n*OI(=h-sd('%n<$'?CgJ_r$9J7&_G]&boBih?"5l -% >O>Kc*(Sk,@,PRg?=)%chYtM"-$H][F7n:&/#dE)4NeJ#FBm[2YDag`;ERJ!gH8Qk14N]@I` -% gD3=.;U*GjRpOhFL^u=:Hl=RRQ&!2.VP=-DE-]gJh6o1;c8b9m5C*'YcA.4jkR*hSYjT2>9S -% nQYbO''N6B*0JleegM9lYc4;H;Jk+[:=/S?q4cb/6hId[JbaLd`<+k'8=-k`BQLu>khC>Di, -% o8iR\.RMP=(O-X4F]SGh@(TR%r"Ag@uB+O'gl*\BU):sgj+P@[!=V_&BNY#G<\4jg@_E%gSI -% ti-9NiV@4&qPIs3Bc-(80Wb3I`d=):".6l= -% =RSLAlt)CgO^s]M`XOOA=UW\0gjfIdPYDlL\9D@5n)%#8uIXLb55Flb4I"H9L4k&h`k454Nk -% H5WA!-t=A2tUa[!%/hp*.-1`M8AALH80=Qb;(0+iLehm/e32*Ys?E)5A/)`1/g//:p[gsN.I -% FZgeU\l@S)S_$H8@rG-phMNmj6T2LWC/L_E1,4(kG31:_)gm2(@47Bu?]'A&9ZtV(N3qSMQh4n(*.'Y);()6*uqKKTt?o.>42$P://$h(qatO@:iL,AGVCMBOqG-+ub+WNP-<0,HL9&oFr3gG(9$S -% o:XHc*#qsZ>W+O\o=gpgSe-16Qd[79-W0E=D6Md?a*=:N:7MQiYb>B+KPhn:W7dYp$nKjMmnMTpm;5\uCi_YT/ -% [c)3=6)^iT3_pL'ZC#t@.>Go=BM`A_9.p%jOdjn`jLJfDUQk[mt?8.@A(?7$geihqg*RgU(+ -% $hK'b4o,06`qrY^B!1(=f!Pr:^_me_\K*TRu'-73V^J?4.)*t(@i;`@^Er#4(]_E(.:co@:A -% )[=lpkB71Od5`,IQ1J]Ai9-)]?Xi($V)'D<,/1V8Cg_Sm\q0SH-0,A59F+c?n2(TfB8Z$W:C_Y%oHT-i/tVRIt -% f)g7&f*r)Fd!k=mR"7`4%IX@^QlT8VJ(Yi&dPFJ&[C7EGXQn'=AM\)>7(HI"U>uY1>]M*.Wa -% BbqC9.dJ#LWJ""D2,.ZNs-RFbYi8GJ0'qg(COoXDG3iP;B)2TraPWdq8SomGi:i6moi7/^*K -% kXMa4!WZ%=rOZ')7VRki#l2^,P)tY.Uh6^>,%%U+IskMi.%AU);-rIbMM/(Ih5#E3N.2si4h -% 6mh6Vpj'DLE3WA,W&9NU.?>-G8$^1A5Mi6G5'KGlkX4o=-uBO5Bo,J@!F`F"$He$KuF0(<9H -% i68&V)072nGgkT8>fUobNZo5h%BO&0!X&K@)O[!aOFW%(acpo0tK.@i:C,[cV?N= -% .q[`7>14n89tVgk_NTrUL,min'CO6?JbWW+.'4YX3ih5q,[FN_2#,IBi"'$SThH77`2S\/;h -% VpU&hV<,[p*MC+b2HfLS3Vp):se;\Qm1jiB8F150e&BMh^2q3DDr*-ks,qb+!Di0@rE@c\BE -% _N(;jr.D$31Y\`6L/co2F.>F=Nb]TTK3"Kid->1%Ui(.(F3J0-[4goi)MU&5\go.:i9!%qT^XDW=>@m22WP_X.]?@&G7EObAq!]B&4A5Qi,;hYGSjm5NYp -% bd0J-M[75toli-lVI'iIG[9d8SbK=2q9?*,t$ih.=,0J:t3?N]<8T]mEb0pU)kijDu-Os=0@ -% d=^Ah>;t32@:.\)intPdeX]Y7Lmd08-@@=?F\cWpi"9$T(QgN$GUMLW)ho1n@Bri/hq2.$2] -% ?,ohQu,`PeZ&KVmC$O`^\Xa()gNt'E!5@i2(VlCCr%.A9$Ss>:q\H:!q@4i:U<_8Z6tV'4R2 -% oi59Uo.TTojc$A;$)YU9R.bl%U7Vq#])aJ%@gS.b.i*Ib+Kc-%jALZSiKg&lR96V3`H%Y#k> -% \#K?>B^U2aYU5Ba.g`t\9$XpTcGg?,3GR^i-m"4@7r"]]d)Gf>ZStPK1rWPi&"]M6aeT5)(< -% N%7g=D?CP%V8i]g[20GZ6fP)81#/@J0:<$eZAi^>=?S)]>i<4q3LZ&KZ&.c7q2ihYP8%pb#j -% &cTYn391u_.]O:2dK&4?7k\dA["5Vni%]NJ,,d!Q<7^%?CfMrg,u@@kicA@N)M_m.@s?jV>e -% F>d7+!WA`(2rN^no!U&;If,ie:Vh7/eQI-F;Wg>l.!NL.iRGi/q8NFafa^)Wft&-JM`Mig,em) -% ndANG3\(^\%EU0>&9tlin^j!ej,8QXChqq -% \8Xb[JsdfA=f>Q?j.,8)7\i9OXN\\>-tNb73O-hSDV24?G2iEdn<(2P+^8WUp1M3fHP,;r4( -% ?%_'81"aI=Uh`JEi3"f-Zjn'!,%@i?j5Z0e6]$5m&5_E@1bd-m-3N2SuY&_b]Qj1L%^-YfPK`?STs&I'B%F1]J/i"0d?3@Lh@AS'mo]2TATX,02 -% +iT`.h&C6@s27:Hn0s;>2CO/8&`GL6A8F%L0;S(gf>n";u9Sn:.i*9Q.0hEms8Zh#lB,8)/N -% b2%lj)UltVd0rZD/A-]7m\]*(%tmQaO6)pN/SQ:MU:>q,D;e*(CQ@Li$gG\';ZduTJGP\?%_ -% *d(At<3hhk]D)3*?8,I?;j19F*SC[E+Ab)j/'O0i[U&qQiAi1+(ZAR//d2"21Nao=:iCIBGZ?h7([LIj;&e4h2F5kQK?&G1+4P5+0I; -% ;(&5Y+?o\n5*Km9++l'rSE4p;NXVEId_Qbl_EbQQM;.ikBC$d?hcS4Cp@K,d\0,]aDZ$O5m -% X._X\@p`T8jO-j\bcVs;I3_Wrs[Y7\.@-Z@IiO"_-i.lnT%ajE=`'SdWH6V.s%_U3)+5,fMfUjHgq3D\@(_]KOZp@eLZ6h]pHse.]7]5-K!??eBh5"?;ZA -% $G$i?Jd9th&FSbjE=g#V^/>A%s#b:.=>gY>N!o!`QfnH8\76"8Q`W5jD,gs8SHW>YC#=OBrE -% :.A/ZIRjHVO9UM//%0O!P\?H+5qqB4;AQ-72=qYuX.dCtA's!]-&nfaN"G%U3Ue#!8l-'pdlQS"UrVP.DEQimj;;7*9c>s -% h[OU>Z?O(u3,fr]Ej2jo/4_4:8!B7kj!o?f.c@-Ctbq`%a)B&-3R]39OX6j9R5PZIaO7Qmh'!?_,_G6-O -% 2GjBl9&-C%8L,^JKM8VVJAE3[o,jk16<9"o8p]MQKWJ7t`2*^:BB2A"qQ2#a52Y]#qDj]W7e -% GX3t<'.Mo']3R)*1=#VjK)^V_J!1c-8=Mc?hhpm=F9#Ij`OR88>M'*bJ;-a1b'A -% 5'+;gI,aIH-?Y^dX3K5E6jh.B/Q)ZbMjIjK*NK#HX(l,+JjgT;LHULVdZ15lG/FU=;'n9$fg -% gK37.N(mkaD-rEc(HMU@nS([*C&ZZjmLoI'RD8Hf6uC*9Au[(KngJ_bR8h+^bpi>(UM'r4@@ -% /Q8cj4?K`U><&s,Jq@(NdSj9T/_4KK(,H]NH+L>p8@B)mm8g)9PGZMj>8ACV<]@#(PKdbjkh1Oj,G&OA3/j#7g:*BLt"LIjt1"F-i7C%j^MU -% ^34hP)]K51*I5Vf,hW\tuk(YPU(j]&^)Oe\rB>5CM)_Vb]J4/PP4&m".,ERp>jF:QT\Y`0ON -% .L+s'+D@,WP>-7jF]=2V0OF0&uBi2k'3^<),=6";hjG5h7str.??)"jITc$)=Bl9.\#RQ'=r -% J:`R]U'jf2_3f$[7.AYA0&7'%!Y.U^AFjL/HeB38&H\-hBSVe9Bodk&@,M+I$J1jAHoA4)5]`5./C(.:HtX)?(9,8t -% b=k)h8mJ-nQKpk!g.6@N/<64Wj:>\aN^b8U*D45)4g_p7S*%lUjsuTHf<\H,_?K*[?0NK\8-RI!jX4L*^TMB:WX@f62 -% Ju4d_AcZ4j=DjjP3*[<-`P@'P0Bbm)A:L:kD`B',Ym/.)Hu4%A0)U!gOTnak9JJu1*\65&hrI$@DXbl=U;<@jNec'e^o;]&=)<_5h -% A\lXW9\GjHX/P2)F3>/O8C[>mM'c.f)]3aW\PmUZtNOTh&;PaX1j<;_90H6?#q/k<1@Q*f"= -% Z^kLqVMhW(_=sZggjO'ucV?rF\YA`Te'gnH@IrosskAd96@<>YB9TnL6bXrht:_d"\j]Brl\9jIB -% =;9gL].X2!`f@A$<4k=?bZjZ6&6c=nd+d*(UoiLXkPmCtgebkD!%F -% j:5Y5cGHo9cdq24/]6[P=Pq'5kB[kJ8J!:^)/R)FjW@rhWiFn0BtWUT@VR'p2#bA`BdOYY+d -% Us@&1Z`o@Y6F%2ImqQjB+#(Pn5>lF1:?0<'W5GP#";"jB@J.+5\8*9YBQ1\>6lZ7CC-[P6hs -% 5_o3^a`.!ng&H!Z-IJ]Gf_M",hJ5`06C?lcI^@<,kZAhFd"\1hEQg]mao^kcc5eN/M`_j`1PScZdk%X%3Vr8b#4'k37kk?YN:='p'D`uM:PJBS!)QY,Rb8Z7ERk#^HPC -% ;Y4(,8QH)Y6\u_Dkn%PVlMJ4P%B3fIZ2gh+jM?kRfdA:++/6)&qeq@'6Eq)'MT#_\87E&Gd9 -% oHapugE@OSGf.W!CaW?[u=I%LF<4"_SB[XbkEuQN:+Z=P_nT=*&\dlYUo!M6?OKB&^k?3fCnEE69$,)R) -% G9Uk^$b20(%.JY`+Y@kX@*D-%HWLPp,@G@fUjY'#`k2ai[,!0!QX"4K?QH7o'f3';H_W`NbY -% l->O4m)j0?VA)b%LI2W]q_Ru,*3oA>gPuQrO/TrAB&35K2kcnW$KpHDX*_Ybs9hA?+(k,"Ek -% e1Ke1fn7G*@Btoaf-#5'JDi4kfRDo*4nQa&9>p_A(qaJNr'fIa#iM9A"bj.'EUc'_IdK?&/6 -% 7u+RKqOl-q1())=oJSK$e+FC`8e@KZIkV$HQ+at6O(.uV4Duu1Tk#Wutku&Jb'&aRl;l78%kWr_ -% pR$5gg/M-*P/V%D2Q\Xd.-+2?L(Af"=kZjBh&VhuF-"a8&kZ;::g+c'31cso,ACWK;(3LfOb -% Y%*&N;jL:'jaf<;rHn*'?M2K(Ar=mj2^D(2cV"1-]_NAl*nJ*_M''M+Hbm>#_A3:uf:E1Sukj'lRLO(JMF+6=,'pG(3_a&YU -% W]TG@01)Xdg+(iGkbhrg8RP'7=1me"A:HauTsn_Zkd4m^2463rA`;j9\ffBf*F_\blGQ+0@e -% (ib,rFmc0^UuIg?^-q`d'P'3;pAi;_@6$4PLkF/NQomlF*CS8s:JXT.fJR,R]lS7b575l4I? -% I-Oga:GT5j<0T:$+D\$5Al'.2pQF4@_'M-5jBt4fIl0r;ZklVs^`B`?&9TeQ=AG]%?Q$6L[l -% COtV*m,5gN_8M*3?JpP:OtJekRhB^6H.7,/!9$3AT2+P3JnQ/gfeUAOkLQ7\%\gk -% bhu;10;iV;[)Jq-2Gr`4O1Y;l?Xgde<*,O&9I'`DU]1dlGtDQ9+U?<=p`X07XN')keguu7]C -% Ma&bbM3AQot9^%>P?lNJ#BgKi#WV((^DJgnpER4-XY=>2KtJfP[RlXH4,)?;/$E?"-'AP-5[ -% *BbWKYm9O5>h"m[+*^3:l3g+A2Dn4m'iaC[0BY"s=#.%Hkl,.]gN4r(3$IL;0mjPk'u`\-`X -% -1TL+[L+Bm=ADkRV9/5HAJ<0i[?OArfY8:o/A:lXE;],SVX&X?5Y?9Xrh_UXj=#kZ'?Y?a2K -% S[;bF_B(n@C(/RaQkV6\o08Da;Q>>g:(_7f9(D2mXlVkF`*1:!hkX&l#.52OoFaE?Z*HMsR? -% \p@'kUTrlLF4II?;^#j/-&"c(\oV)lWIi](r:GuG)bh3LkHko8m!iulXXUH3I<\O3,@h7ZYV -% KOH%R1Xk\jDcD?(Q%6K.-OAfNVfc9Q58k^7!r+0hJ9SLiuVApij^V&codk_Nj>A*4Z#+:RLp -% Aj1)BbbpbEkj]d%XQLCGGk&h-9j1KY+"hI5eu"?#0WcsR2(%Mr4J!21?J:#`l#ffkeJT2IQo -% jLo1+Q8K2'XB/kTE"Pfj-AQ92t,F?(=CP'LEBJLrnu,TkcF[+'_C'kf79W=Ak0KVo7o825M: -% O(=j&um%"j)-mK:/.SVkgle-7F4*qZc\"(FTQf0o:*:ANA.DldK&C_b7HlGRs&fg7a*U#_^8 -% -5.$'HHJL.C/8Jj%O^T%k-d\1R4cV/K#9Cm"\Je(Fi3W;O7qNlrDk7196N?'--@pWur,)<\$ -% 'lm!$l-&Tl>";&nrcN(FqHIB%,F&4l.s8t6JSAu-Y'0nm:ii<2rm"Z/k,]i!l9Ng_90u0ja:j6$9]V!Fcea%R#XsKm$9?ZX&'p>Gf=9Rln(D -% \h.BYqWX9<(m.7=h*/t^i7Z?]H;ZT6B(9p(tNK-Kd#de4^iTq?I<-Idsp`]16Y8p0'0Q*6&b/`)802<)neAn=cD]s'8.`=.KG -% E%llJ=iDXnBbASWEoluXS]e:E._CO,8=2=G)u&nTM(9oSG?f+`_"M7QaKm!]QR)2ok%2Uh#2 -% BTcu.f<-qnliJ`G?.19P'XOWRlrQ>d;BHND-dXmFlqf,2'>CQP-"ds1(We%&3I=(^5:>eAE% -% "WSPhKi?=G?+,1FjCCeBrNBm(o&o13Qj5'i-gnmI)>l(ghi)a'%d)B6Z;M)bIsIm/L]?':Mb -% 7[PI3&4aN7:k$R;X0a6sB,^gK?)i.OE?81c/''mCn+in-smH>8l)d?OC:u:PYNMKLn.Z:i&m -% J;0q,4+"o1Xk]LZ12V`k^=-km<(8[[UG@+j.,J;=Qg@CjpVu?gl(Oc_oEqt(o3&-EtI`d<]W -% .E)_6pflq&P+LbVDK'U6aDm7Ct*Ct4)uLXYTcBN?a"J#mF==DEiECa=GuR/HQmAr+t.PY$*(:igShEn>D)4$aBrm/dtLmCjQIYQ=/`&a4f0XFb*@m1ENCT$FV]3W/8dXn!&u6p]c9md2%((H -% 33<*olVZR3F%j+APVDd95f`Be7eKJB`;elmuknHaI^r>RKjRBl5/E-o2M-m+sq46's#k>J0; -% dBn'!:;?U"VlpPQM;7MKZ9`ZM3BhTCH;HmQim]&*2=9'=2=_V#:m[#0o&dfLcRX4?PRVb@ul -% 0U:.m"\5P-3,%b/Tetl%W+)e:m75-l7lj`P*d`m.?$Wh!R:43)`LKmbHMU1@-6b[e]8T5@mK>ltPVjmQqa0 -% 2"!J/g_"'m'8dio:GEJ'8QA`bm]e#[(69)(+&VHCe-D:B''5fB4JV=slK=9C04n*bm'^X+=" -% bQnT(D<]BgXb'-OJJ[4eqGN*i=jiK!uD&m`9+g+M/I[hRr3N.o-e_,>0CL]3=U&.ttaW'4`f -% U2l#g@-_2W;*lpn$m,2T -% ;?f,F"6QTM+t,i&^-9mlk%ir'Y-ZP)kuc%7'bR-(cG"?l%SI5C8rX":6T"sm#r-Tjf]6M:(? -% ZA2]#ID:Ns;umJe[gS66D@0Ege1RPYVm&AN':HJ0f&2_l+mqgT>t`alu$Qk,c)3M&JFQ;;4QR -% >&-D<5@8l!r'Ef1.OBV%$C+_V?(^4=UmY,Bh=RmF/=BXuY5YA"EKcj+]lq9Sm6gbZX]IQ*1* -% IoED_XG*(G'`V0V/[_A(b7jon"ORb'G"5,1PP:L&C8EcKHBHrm,qYNcY>JNeV`fWTqUBO)OR -% mhmncp9+6@YjPuR,pF'(dbUAI'clkcD1\O(Y0aGTHWMWPTg%&gG[lsVM\6TlqDhQ6)-F?*:c -% ,H_f%U&"$WR])I1*+KQP;MFR"'*6"1*-*"-mt40h-dOZn9k*OS2+/(>i83[#m-na75k!+.RY -% C,%C3S2*HH:?[m/1TE,p*t[4A8R?(Dh45R);J/("r#7-4Vu[4H+i)B'8W)(a:*p9Z'9Wmo6L -% VH[n*)Dqsdk9E3fc(mcngm#<1PLo02Z')a?Dn*[S*(d'6i<9N^k8ZWL(Ve'!)n)'J49".m`^ -% ;B4pCSb_@>pbmGmPm-T'(4&MSkDT:n#.-U)#@NK'[9)jnAQoA*"$1MDWgI>*m)nWn3uC8n(L -% ].n(I)[g%k!%/OURW#A]Q@l.u?A1(dJd7cCF5SSBY7` -% d\`-GGaC)OZi%mSD"R:Uc&sODh%+C5o1Lf:0/o>lpdMFR&8mk)K8PCn,OJE("&n5O% -% f';&lD'_,>WrumT5oM=-04e9.TLQ6#Ndi,8`i%mW1\`DXPfX/<]G%O?mQihlX^YF4Kn6bep$@228V7[n1cO9SQ$s` -% ii2FhZ,7bb-g--:n@'q`(]#5B0*L[VE*hV_'L"OeA?YK['lkY08?[P!lj,qB34/.PQg4&oD" -% CT+W`C6gm2JCje$]te8D4j+nG?0W;)^":UaPO*SAZdG.aUn*3I0ufS:`4J'M);jk*kd5CqK- -% 0d>Sr/n&NJY2$<3hAYJHm*e^b7ms'p*nV]"%k.R\8Lgfe#>gI+!@TGN9nS2l8/$_LVi>1tP' -% e_(N:pF^anJs3Dg5)2;6TO]:(!IHtI&fqAn7G"FSQHa.F!9m5SPqu/,Oa4Vn9STr/ijP9CF! -% 4CnST<.-$p?rduHk1'#(TOh0Nu(n8sc`f4Q'@?XrF>i5r2@m!lo5nL/Fn+*jI_n6MUG5EcU+ -% (S5J(n_(.Jh=0\snSBf?/.NesB`IS=CaAI(:F!GZn6JOgBkJFJ+8_mmm(5U>)J^(H=dn#/nF -% ^pp)UTeK*I@6"@MCLWn"adbn2D)?=D&V+-^F5a>A#%)'V.Y!n3]Q:-_a.Vie?pV6LMD3&!b# -% m;mI/QZ15e%[EdDun0C"Ya@rDpn4OL5YHADVDsQp- -% (TQqI-h?(Yn7QTBijO6&aS#$-2gRCO%sg+P'!L+eT'==>>@7t-%lF_8#$haP%quP9%j;Grnm -% Dl9%nmL(%h]!l%kA/5%l4_@%qZ?>!?q$#'29!@%gib`&*h4B/$Rh%-3XN,nGY7R+Z5/8K]Pb(+^T -% X@#3LBAs4K3)^#-2[fG4#I7jhIg:MTb]PTa>0AM@q#&25E_+2Eu5pFSTnB%<#+J0MJj5d[&? -% ak\*j@sEuEo0Ih1^tX:7?`g!PVB?\1 -% 93;1OaY0k9'd!g(q@EX$lsDM^*FM\&2WfGk\Q?uLW"g2h@+;ML1%UHcX5,'9e^#>JO,KjCp> -% 03l&/;&0suScR2p@"e>pRq)mb-=DCk!<>`CE.K>SBr7SYaZ?N6#+KG9f`i=H]D3,_E"N-oMK -% 6q#+rpZZ?l)ln6't!1GmU"XSpTsd+^[qIkk%=bE)797-C&PC8K_pS&4e)J\,\jF`9lZQJGrD -% ji*_6rkh(]NV6lBcg;ub37SO:gLE,b#8PoL_>i\?l7Uf9;"e&\XJ--9t'%`b+#.PJ#So'mgQ -% X3QZkZh7c)!G;f"^ka]VuRBb*Wbc0>@a4lLglW!ZIk[Jetmq*@0B-1)Z[ACe!Q&p!`01+cAc -% 6:!+a=J8L5-cEZUj%&dPG0"&eo[Tj<9G-#So0C)MP^&fO$2PA4PUVOF[Al%pei]&I`6Y]?`S -% WNrNUA?Pb2lZAC#cq4;K)D^-39g0F@#h.&=8Wl_!iZsad;@2Q]=>&kTZ3i)IV3mMRO:!/Cii -% +<0J'(4LTZ.m0/u$K<$6ccW1.lCsP[9iY".Pb6(q7D./#p*aP,g(1ke?oQXKCE\/$H\Tfk8: -% A_GtQp#]n4ka.>.,np_l;C$h`EVnDDp/qXOQK&oU1Zar*-$a1`EP3fBc;W^Wn^.JTM_nYpQD -% "3c-)dB\dati<;`-:A.F0Gba?*)g#ds\U0N.UE_ZuJfD.Fd$k=sD/,c@ao)hYm`2^ -% X\<^L/'O-j&G0?*/;UN$Imc?]Cn=j"YYKB1tr090b-hWCjF_*g\(uN`8&jZH?Z]e$2O;''I& -% [!+S6]g56dGk1(B*e@pJA<=N-T*%uWPd+6IGV^Wm:NIO@f$Z.<"prOHp/8J<0G!@bf5:8>U&H>kW]QsKmZc<,S -% _JhU/5H!GNf0<,BlVqqFRuF^Vh?)of1/BC/TeL,$?:Yq+3s=&sc6_#fPNXgc'lTF0;D,8!e!qNDkSU\9& -% 6,.@i[."fp_H(\MNc.E*tBU^b_g-iRU#cZ3s.dpGT&5PX/IBa;)h-N*c%Cr)j;nX(J01,[$! -% ]9+%[cc:h0o2V1jl`+XrjTMlm_BS>.DV3I8V[+uPaSm,h2?H;'PeQ%2_KjpnHgdeCijPr$[a -% 9um#7SSk[4q932DR5Mj2&s\JH^#N0')V1$_;PC/oj?q$,;5p.NWg0n?9JMu9NUkMHZR"72`H -% p1"2V"nk6RsrYeP`hBe#g?JC%1D&;i3E)#u_s;(t*@-1seN`FE.^:.T$4@fH:_8&3qA6&XU, -% d:U=HjBbF,]aX,<1V_t6)1+GKk52m]>*XE%8&(FKj\\ -% `+oR!2s\KM-ef@5+F2%\m(!tB]9DNa@BJ:;$m;nG:itWW]lW9-t54lBbgcSJ=TYIqLWaiO_q -% .B/&>LXGZOtH%E'XJie@QQ-,G1=Y^.84>c)f^M?"];!8LsjQ=>*')?sZ+G8l)Z%DbWPFb#&3 -% fi-t7=K.j6EBY<[L`Z_#!(*inA*qHs!;%rVmRT\oV)b1(6=<@t!&Bdo/@sl=2l$[amTHmj#c1o3JJ@phZA"(8#1/855^qF:NJhuOMkg8>iV[&M -% eq3!`69"AT#K!'%ap.DpIP!jMiSA./s">0VeFY`R\gdXd/H -% 6)q.p.fAm9lI\Xf+-K5)ntT=pNu&MDYJd9h<54'42^q:Lq/T'>+<"(-k!f.\*L\497hk]+OL -% r7Pb.*:c[4rL`HTj,9)!npI/rP,E>u7?o6d#@I&>?F`>E:9s15 -% hauQ5HoWWMGj/%qbL@&Qos*EOhgbU&W#*)2PA^%-3XNV$_k]R+Z4$&;gI=p&nb -% gJP^tBB[`\MP%8E[!!)![J1DFd!(%7HlJ4NImT[GK"%P1(85lAo4sH!n&oeD3:]%neK!/YH*Y[EK+?Kb;)Cg`Jp!H -% ,IL^mdQ^&>rZ9U+FpO.+82^8p59@&r%jrR:j;am(!@nI.T^DT)rC0&c_t=r.cDHFqk9*Q$"N -% h(h+(D315F;<]J]b@E,]`+:A<+#X8V$1P>d]0He.`5k*p1DD94H+TOAT5PVEE+/DZX'!.jVOJ-6?Q=Vm>+ME*#;=u+`AA7%Y]+b_^]=QZ%J!&2J#Z+( -% "S+@b!=",jeM)5E.cp3C/.Ud,LC?&QkPh$c.XMJ*$h4bd`MP'f714T3V\RjCG'_!@PQrCU>!2Z?:LYru]-aoI8f$`Tqd/o -% Vm_?k"6/"5O#,Bk0\c>gC`@/ss*K -% 'HLfj]Fk/n,6_K?lLMeg8pn!$Do -% Jp4h%V;dj8f2X6eZOMgnM<\3GVh7o9:]>iZ+=:/-_`I2ILR$WrJjJ-=mO+5:f)JVee)j_J3u -% I"5kl*m!c#oT$lQ!JaE[_5du`qXLQnSms&Xa>Z^;#N-)X;pf+/46([6/[!dG9:gI@QW=#KRI -% E".=s2+chg>4Lb7h*JLHY k<'ih=h*r^.K4BED^45qLFpIiT2_/nj=Pu/gr4IC$\c2@KiX -% !,/N+>:hO#P?1t]c^XWdr&eArP=dh#JJqP9VB0ZP>A4O63N3<6D$\UA!&dU;sJ:^n/T`'g.5 -% ;:bdA$5[$?09QtYRD*p7QdC;pk1fZ*O%;Lo3S(t.%aF;63*kPa$4mCRXb7/)lbn4%>JgiXsL -% >4p;>gSI*d^8ciS>.FCOh%'#i(g9T%-3XNV$Ve\R+Z4$cnGHNN!3% -% nJ5CkAB[`\MP%8E[!!)![J1Ggr+UDiSl5^N3D;VpT,FTLG.8pEm&]Y$23![5HJ"D7>EpSi#i -% 6-T.&n8(h/_\C7.fn!R85L$F6O".,2(l;?:[3H=dcX+e&5U+hj*jZm!S?46h[5-32f"lBBa> -% 93;1OaY0k93h!g(q@EX$ruDM^*Fb8EVKfGk\QTPoDbg2h@+;ML1%UHcX5,'9fI"AOImR?t]T414%jdC7`_IfDUh2k7e]?m*!nRFWRu=hn.&2Ire@8`a34c%5N -% rbJC#*@rkFWQ\4]gkS?o@4'HIQfmiJcH/U(Z8YC"b>]c)03jWQ]QpsfRssaLuFb9!i*mcWMs -% A-"%3Rg>&8g&Ym:F_lIKU,16rfVNJ-H(@pc'o_5NHW)EB70PudGUIKDXrK`G&#C+OpHI[f8I -% ?E0IZK9`"llBqXJ\Rlt`fn7KP\^"@@+EutYkDR7gB<7ab.Z7sh@m')@O@;c6WKIbL-Oj0`E9 -% _/&J;G2IQ?&Bs0"S!e$JN(qN]'EN57BMC%@HS#k9*I5eV9nM5Qpsnf'Aj!%2Q\c&%1;o:lWd4 -% BJA;"a^V\)TBQ_ -% n&6*:_$8GBK%r]EYk]*u=]?4_-6Fa#,=i:dU]`rmN>(kN\4fDpU53,Y'XF)8!jMsDG9e/:R_ -% $s:RR!!X:+qcPK'aJSNRkUqnpR-?VC2$R+^^^rL+VT^tk,miN(#[!EU.1B>IkO'o%]JI9D`h -% +VB]]#OoLcgBQK*5:1nYG7M@X6A=gu-=e4lBaEJ(sS8kuIfb0UQ;\EG3B=KOMSe+94X8!6[" -% s+9spJcV!jdT'm/U5OF<,Gb=gSBHW'u,RZMr4^?J-,c[@M2q=":#6Q^ -% '!:`1kFl/PAC78.\:U']t7WV&Ego1nP;FL@i+2W!>\Hn8TK45iUhFUW!5$@J_DWF"EQss/Jo -% '=3<4^D3bSNkPQED=GS2=<1<:us-&(s>&f62q_@4C[N2$]4.DYM3-V4@jQW0`pW7T$2AhSs\ -% *+BQ#2i't;_]4#6@O2A3+%Ccl&l2C0=Cc,:\KKEu(iNcbnE4mO6=]%00S<<*".)pHm39S.R'K$Z@(V;M -% ,:`5*Q1fc(3f]V,MOpXV9m5lT=bX:\tHsYEHun(H+@2c5%2&Lm9H_)#2`CB!knTR*R7jMB@( -% n"V>SYKQ0G]V(>MXO]OsfnQ:-#/\X-+`XN&kT4D3_C2u_n\R%AdlucPU]OLBr7kt5_&h;U(\Z2J>s)92Aj<=/(Z%<^'4i -% CJ8A?gB[K/"i3f]A+_8WjSP(o9R6d8sAamOX<5^LW,0g5Ia^:qgSd>3d\["NG/MUkYUfjA47 -% 5ne<;I%SE%%T(VIn9JhFdjNnDK-$Go&/H -% N-t]')+)dP6-*J6:RkCY5UK;m+bgi;R+eN1`3S/7_)OK$3@)2jKSD1k.UNljhH"2jrJsd^Bs.L -% &*%KHnm#oAgW8dLUcA7C,sJ_203Z'1>2=-g:#R[^1gEQY2H-%]=fW7%5U!g6*K>*tiAd:qX3 -% YjMg&TDJLh.f`c6MG4S2#f3G?RFlIG+I#E^DmES&X6aZKjs]Q+e=J\[[:l+U!tKlQ,*g(&W] -% I%\Y*,8eXO?qOBIAB9O9C`!4JIfqo);fa!L\&F5p4<@eM=n)2G4j`cjgI.VR%:j-FT=ecp8e -% q8/66bi0#IjSTsj_n[ZE2]5bl%BJE%(;oHlC!1=7I5r@9u0aJ%i#8,$4;NVDE?2e_5ZbRI94 -% JoMJ-S1h>d>6g?fQIe"b7\7Jc1_c;YBoiA(RqI-e$K=*@BS)3"eJ1=^7\\mWOqrhOT:KrqdB0Mdr%Q%'Y9))ajc'TgBM)_M+ng?FVD<_ -% 89pUE#a7/,p"0O;g`LEJH.q:WWE\2^^sG1U1"N&KL8PsN-I'>hK6=7Q*CIdMb5fE'9STsJT] -% :k<$[,3"d"QD"+[a&HDnai0QQrR5"/49ILs'GKCQZ!!rZ+.\KNO&b$"imbj!f? -% o&@Z=?nek(am/Ed6190"ZacC$8]'KSRmYU/*r*gI?&lNK^`UWVB^_nJ0G!`7&]W>[EoO,d[2 -% //W-OV1U&k+C&t)!*4!F\7e/9A?e\J$m'Q=L(G]Rg-8Ei_K^ksn[;ulD]^eF3b:HIjKT:_Y! -% )QKM@?60fJ$=2^Ha7prKp(*QaQ0@"RT`SGkNZ*mj#;rW?9d2-?!@-\9"\j;+4,MKGX<>D`e% -% 4,!](Mq>IDBsO:mD7k+K0N2Wa6Q87_`!fD1SOW;^k!?eCap)"47'/V(ZGuJ7"]sQbT3sx -% EndEmbeddedGraphics N 1692 69c E cc S 2eb7c R cec38338 -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -115 370 285 273 rectclip -0 0 0.15 1 10 SU -[1 0 0 -1 195 551] concat -gsave -/Helvetica-Bold findfont 12 scalefont [1 0 0 -1 0 0] makefont -217 -exch -defineuserobject -217 execuserobject setfont -4.5 4.5 T --3.5 3 T -N 0 0 m -0 nxsetgray -0 0 m -(a) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 294 586] concat -gsave -217 execuserobject setfont -5 5.5 T --4 4 T -N 0 0 m -0 nxsetgray -0 0 m -(b) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 360 536] concat -gsave -217 execuserobject setfont -4.5 4.5 T --3.5 3 T -N 0 0 m -0 nxsetgray -0 0 m -(c) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 363 485] concat -gsave -217 execuserobject setfont -5 5.5 T --4 4 T -N 0 0 m -0 nxsetgray -0 0 m -(d) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 306 425] concat -gsave -217 execuserobject setfont -4.5 4.5 T --3.5 3 T -N 0 0 m -0 nxsetgray -0 0 m -(e) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 211 454] concat -gsave -217 execuserobject setfont -3 5.5 T --2 4 T -N 0 0 m -0 nxsetgray -0 0 m -(f) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 137 500] concat -gsave -217 execuserobject setfont -5 6 T --4 2 T -N 0 0 m -0 nxsetgray -0 0 m -(g) show -0 0 T -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[-4.37113e-08 -1 1 -4.37113e-08 122.000008 636] concat -0 0 0.15 1 10 SU -9 129 T -N -0.15 L -0 nxsetgray -240 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -129 9 T -N -0.15 L -0 nxsetgray -0 240 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -130.571472 129.74585 T -N -0.15 L -0 nxsetgray -60.857025 130.508362 0 0 line -65.001923 60.857025 130.508362 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -68.571472 127.74585 T -N -0.15 L -0 nxsetgray -60.857056 -130.508301 0 130.508301 line -0 0 T -grestore -0 0 0.15 1 10 SU -130.583237 12.89801 T -N -0.15 L -0 nxsetgray -29.833542 -115.20401 0 115.20401 line --75.483688 29.833542 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 1 28.352097 28.352112] concat -N -0.15 L -0 nxsetgray -N -100.647903 100.647903 100.647903 115.292023 90 arcn -s -205.292023 57.6479 191.647903 arrow -0 100.647903 201.295807 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 1 30 29] concat -N -0.15 L -0 nxsetgray -N -100 100 100 90 64.163246 arcn -s -180 100 200 arrow --25.836754 143.580856 190.003937 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 1 55 56] concat -N -0.15 L -0 nxsetgray -N -73 73 73 180 115.426872 arcn -s -270 0 73 arrow -25.426872 41.656811 138.928787 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 1 39 39] concat -N -0.15 L -0 nxsetgray -N -90 90 90 0 64.112976 arc -s --90 180 90 arrow -154.112976 129.293823 170.969101 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 1 73 73] concat -N -0.15 L -0 nxsetgray -N -56 56 56 0 -74.180809 arcn -s -90 112 56 arrow --164.180817 71.265739 2.120903 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 1 33 33] concat -N -0.15 L -0 nxsetgray -N -96 96 96 -90 -75.963753 arc -s --180 96 0 arrow -14.036247 119.283424 2.866322 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 1 81 81] concat -N -0.15 L -0 nxsetgray -N -48 48 48 180 -90 arc -s -90 0 48 arrow -0 48 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -69 227 T -N -0.15 L -0 nxsetgray -14 -30 0 30 line --64.985023 14 0 arrow -0 0 T -grestore -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob22v2.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob22v2.gif deleted file mode 100755 index 71349062c..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob22v2.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob22v3.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob22v3.eps deleted file mode 100755 index b7693dd2b..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob22v3.eps +++ /dev/null @@ -1,577 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: pssc7cq14.5.create -%%Creator: Create -%%CreationDate: Mon Mar 10 09:42:47 1997 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 164 405 437 690 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(0AM@q#&25E_+2Eu5pFSTnB%<#+J0MJj5d[&? -% ak\*j@sEuEo0Ih1_&H2!mQfmp5i,o1<;_RC-W"!:iHl"VdPX*2^Y=cX)G+WK=dE716(f\":3 -% 's5Y/\X0lK2U^j;Ne?C+l*N9Lt0ci>uD"UWg3(42)/8BS0AA(5-.6So23HrC9qe,Ymd;:$"j -% Q.Jb3"f0]6)3,#L(?&YTEO[0&P#:A7?[TNjMJ$r5!#g>'#,6eO2!Tf=DZ5; -% 5*.e0HP2(([R:2V=Kb4k:O[D%XfI5,Jcm!iO%1n149Ei5+!h)@TKc":OQt):u/\'Dp2tlq)K -% L._Sk%'0H#3_51_Y%FR;1J\%Q+CP;AWC&F=hlLtqHtY)Me;2!RVfVmL/n;i?m,NI^^!IX$"s -% AA#_<9AQ*,Sm#j>KEni.GZ!#unfWJ_\ji1it<)HmCi"9ON`dpe32Q,Rdc6^?Kb*")B+i3=%'sc>''h*,o$7(q.:qlRAbtML -% ).SMQ5nOS)^pi!"Ju;1'nb]ZqJKA#A@Ru$%^agQ-/b,)^rFR'$IJn'J%A&^s0Udj9[3HqPqE -% $Ah2KAb<\8L\&_a3Z#o)Bd4mO>!$[*.#&%J`%=q@8Q.@PM)f35DLIuWM!"Y!/UcO9S!tKlQi -% g&7`1E;q&g_sJ\`0,h$ELRjon`h6XBOf?;,?Icn-67%:Lb`9khDM!6a6_F%8Wuk">g/r0AnW -% 6-&-t$tJKFQ_F;O9HggU",M[t1ti'e#RIpF&]c_6!WVr.K3C1DfTeC- -% Z_M.HS@7h4Lnd'#dLW(q&o1X2r=G_3r>*f:7Z91CH7r!1!88eF`#s_41:S*=P1@Jb"GMuX)/ -% .BJU5DZj@^p)IW.Y.G!sC8:6$F/JKfaBH#;cjl?CZV*!#Xe&#P"i.%iCf,b(dI58M2Vk)FOS -% cE#O#C,8d=MhuX/2^qk/s@7,Cokt"6,aJdC3Po'LKr'pb7@"JN<=FW5Ji6_[N`],6/'Y^k!Q+,:jn!Ek!B!/J0hD#DGtcOnn(cE[`EAboUD<`NB\fkMUSdS'%o7(CLAA+g=SlrR?Cc%ce -% 9_3m\LV/B^8@PH;hE;e?0A@%iYQq%tkSg="tAi"dN7GVV^Z/:T[:rJYA7j$\^ko$VW87&!Yg?m,iGl]N/MM#7,(,sW2[9qC^Bu*$!!M8* -% f*omCL.[Dg!g5&b>`1gdoqV`8@PePPq,UP)Gg\.B*/0dKE)_U>)!74TsH%]nea5]VlD[4K)g -% W5*,um>(kDgk!NATp@9hmQ\%0\-Y"Qb'?as-\_"@g1x -% EndEmbeddedGraphics N 1703 6a7 E ed S 2da9b R a569aae3 -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -164 405 273 285 rectclip -0 0 0.15 1 10 SU -[1 0 0 -1 283 667] concat -gsave -/Helvetica-Bold findfont 12 scalefont [1 0 0 -1 0 0] makefont -217 -exch -defineuserobject -217 execuserobject setfont -5 5.5 T --4 4 T -N 0 0 m -0 nxsetgray -0 0 m -(b) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 340 602] concat -gsave -217 execuserobject setfont -4.5 4.5 T --3.5 3 T -N 0 0 m -0 nxsetgray -0 0 m -(c) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 364 509] concat -gsave -217 execuserobject setfont -5 5.5 T --4 4 T -N 0 0 m -0 nxsetgray -0 0 m -(d) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 319 443] concat -gsave -217 execuserobject setfont -4.5 4.5 T --3.5 3 T -N 0 0 m -0 nxsetgray -0 0 m -(e) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 266 443] concat -gsave -217 execuserobject setfont -3 5.5 T --2 4 T -N 0 0 m -0 nxsetgray -0 0 m -(f) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 204 507] concat -gsave -217 execuserobject setfont -5 6 T --4 2 T -N 0 0 m -0 nxsetgray -0 0 m -(g) show -0 0 T -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[-1 -8.74227e-08 8.74227e-08 -1 429 683] concat -0 0 0.15 1 10 SU -9 129 T -N -0.15 L -0 nxsetgray -240 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -129 9 T -N -0.15 L -0 nxsetgray -0 240 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -130.571472 129.74585 T -N -0.15 L -0 nxsetgray -60.857025 130.508362 0 0 line -65.001923 60.857025 130.508362 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -68.571472 127.74585 T -N -0.15 L -0 nxsetgray -60.857056 -130.508301 0 130.508301 line -0 0 T -grestore -0 0 0.15 1 10 SU -130.583237 12.89801 T -N -0.15 L -0 nxsetgray -29.833542 -115.20401 0 115.20401 line --75.483688 29.833542 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 1 28.352097 28.352112] concat -N -0.15 L -0 nxsetgray -N -100.647903 100.647903 100.647903 115.292023 90 arcn -s -205.292023 57.6479 191.647903 arrow -0 100.647903 201.295807 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 1 30 29] concat -N -0.15 L -0 nxsetgray -N -100 100 100 90 64.163246 arcn -s -180 100 200 arrow --25.836754 143.580856 190.003937 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 1 55 56] concat -N -0.15 L -0 nxsetgray -N -73 73 73 180 115.426872 arcn -s -270 0 73 arrow -25.426872 41.656811 138.928787 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 1 39 39] concat -N -0.15 L -0 nxsetgray -N -90 90 90 0 64.112976 arc -s --90 180 90 arrow -154.112976 129.293823 170.969101 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 1 73 73] concat -N -0.15 L -0 nxsetgray -N -56 56 56 0 -74.180809 arcn -s -90 112 56 arrow --164.180817 71.265739 2.120903 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 1 33 33] concat -N -0.15 L -0 nxsetgray -N -96 96 96 -90 -75.963753 arc -s --180 96 0 arrow -14.036247 119.283424 2.866322 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 1 81 81] concat -N -0.15 L -0 nxsetgray -N -48 48 48 180 -90 arc -s -90 0 48 arrow -0 48 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -69 227 T -N -0.15 L -0 nxsetgray -14 -30 0 30 line --64.985023 14 0 arrow -0 0 T -grestore -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 231 603] concat -gsave -217 execuserobject setfont -4.5 4.5 T --3.5 3 T -N 0 0 m -0 nxsetgray -0 0 m -(a) show -0 0 T -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob22v3.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob22v3.gif deleted file mode 100755 index 6263ec05c..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob22v3.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob22v4.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob22v4.eps deleted file mode 100755 index 50420e731..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob22v4.eps +++ /dev/null @@ -1,577 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: pssc7cq14.5.create -%%Creator: Create -%%CreationDate: Mon Mar 10 09:44:16 1997 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 161 115 446 388 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(0AM@q#&25E_+2Eu5pFSTnB%<#+J0MJj5d[&? -% ak\*j@sEuEo0Ih1_&H2_T.a(llml>D'2Y4+G5%i\-BlMYfO6l'2kL2\(8"'h9'l.VKa!\"Cr -% 2h,[ei`\"3S-29oU5b:PHgF9tWil8+ABRK[`GW<6dJJ4u4VBF!*R'@hq\&dRjr[;?1kra95i`(V*CtI@+!NJ0 -% m\f1(F9oGd'bEE=$7qAMk[q)2*VWQ6D!E8Ocj8Ie!(H.%\Nq!,28Wift8\`0_JD\bQn2E!HF -% e$?F9tAO^YO(.J:G5m#_AA"u9oJ;Wem1dDUm0GQj1$>9JE'OlkQUQ%a[V;PZJdb#@s')q)sR -% ?Iq\=eA5;$5\n'6idK/;c\/iQ@a"B>QLmYl,/lf,&3f9BWC=F(g6q?6Qf-mnfB3E,bPGL+9W -% mI=1@ThA"R]f6EbXg.V(emP7A/ush4E542FA![CdBssT+paMUI*d -% X\JBnG)3!&ss4ar-3Re9=!u2gX.T%h)Jm.b7XT$8s!mm]P:)m9W`Mq:>V2g -% nBrYFU&oq4C`"bciXqhpcP62poXD<>52V\iL-!k#^ZG"!+qm*+S$e[2;2*6,*BK+i\La6<3m -% ;p.[/\EO[@R;W6[hPlgE=t>Dnq]3d6k+/_"_c:]HpgY-KkWHh\f!#\rK;TTVLY<.8J(dt,n&;,L@HOt`Zj-B(mdgN*cOb5fB@l#cA -% G/.b>*fW.hlONk9\h(*%p!sWc3m_dOXf]K17uVZ?ih7"YdY,U.ZpkefX5#DtF`+akI=cO_'U2 -% @8*<1)8"5"qt"Ii>kK[QJ9RfR37>(S-BL2fZ.]`Gf8AdZ%[1EiS7lZZPok.L,l?R%L9hh!"K -% &O^'MMg0O_olO[+aQlW4(V=N.gMn/PA#?BI3<,UI;)&gA:u)#:GW4q?S5!CUF`]LTGdama1) -% r)RnhnUUA,ieI=:"99&W+F!l/OMP\"KCEHb)9PX*bj2&!&]mh5cBj5"kj\,i?HHJ$EKJc]O`6>a%Ic<+V=E^AR%';/P`VAB[7YE":S^ -% pkj533rs@&&!YCps>bViEfT.\uZ4-d^J,ojhjGg6C8BKO_CpQ58^`;u45uceJVa1;%\8W?nH -% pSjXd>&eh&-R0:XoRN-7]WN[rFeJ^0F5j.='JWK!ObhF92n1aA^K+b:G9klBPf[n&R2 -% RNRdEQ*g;9pITB@rSSo4Y,@8;V(sHdAI[TX'15RQ(b>iCj9s,eCg-H1kW;T+EZ@o<;76)K*^ -% ma.6CT-.Q=\Ccu3-`CK'sE!WW3#x -% EndEmbeddedGraphics N 1689 699 E bf S 2cf23 R 788ad7ea -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -161 115 285 273 rectclip -0 0 0.15 1 10 SU -[1 0 0 -1 258 349] concat -gsave -/Helvetica-Bold findfont 12 scalefont [1 0 0 -1 0 0] makefont -217 -exch -defineuserobject -217 execuserobject setfont -5 5.5 T --4 4 T -N 0 0 m -0 nxsetgray -0 0 m -(b) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 346 313] concat -gsave -217 execuserobject setfont -4.5 4.5 T --3.5 3 T -N 0 0 m -0 nxsetgray -0 0 m -(c) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 416 270] concat -gsave -217 execuserobject setfont -5 5.5 T --4 4 T -N 0 0 m -0 nxsetgray -0 0 m -(d) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 353 214] concat -gsave -217 execuserobject setfont -4.5 4.5 T --3.5 3 T -N 0 0 m -0 nxsetgray -0 0 m -(e) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 271 178] concat -gsave -217 execuserobject setfont -3 5.5 T --2 4 T -N 0 0 m -0 nxsetgray -0 0 m -(f) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 190 231] concat -gsave -217 execuserobject setfont -5 6 T --4 2 T -N 0 0 m -0 nxsetgray -0 0 m -(g) show -0 0 T -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[-4.37113e-08 1 -1 -4.37113e-08 438 123.000008] concat -0 0 0.15 1 10 SU -9 129 T -N -0.15 L -0 nxsetgray -240 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -129 9 T -N -0.15 L -0 nxsetgray -0 240 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -130.571472 129.74585 T -N -0.15 L -0 nxsetgray -60.857025 130.508362 0 0 line -65.001923 60.857025 130.508362 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -68.571472 127.74585 T -N -0.15 L -0 nxsetgray -60.857056 -130.508301 0 130.508301 line -0 0 T -grestore -0 0 0.15 1 10 SU -130.583237 12.89801 T -N -0.15 L -0 nxsetgray -29.833542 -115.20401 0 115.20401 line --75.483688 29.833542 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 1 28.352097 28.352112] concat -N -0.15 L -0 nxsetgray -N -100.647903 100.647903 100.647903 115.292023 90 arcn -s -205.292023 57.6479 191.647903 arrow -0 100.647903 201.295807 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 1 30 29] concat -N -0.15 L -0 nxsetgray -N -100 100 100 90 64.163246 arcn -s -180 100 200 arrow --25.836754 143.580856 190.003937 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 1 55 56] concat -N -0.15 L -0 nxsetgray -N -73 73 73 180 115.426872 arcn -s -270 0 73 arrow -25.426872 41.656811 138.928787 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 1 39 39] concat -N -0.15 L -0 nxsetgray -N -90 90 90 0 64.112976 arc -s --90 180 90 arrow -154.112976 129.293823 170.969101 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 1 73 73] concat -N -0.15 L -0 nxsetgray -N -56 56 56 0 -74.180809 arcn -s -90 112 56 arrow --164.180817 71.265739 2.120903 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 1 33 33] concat -N -0.15 L -0 nxsetgray -N -96 96 96 -90 -75.963753 arc -s --180 96 0 arrow -14.036247 119.283424 2.866322 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 1 81 81] concat -N -0.15 L -0 nxsetgray -N -48 48 48 180 -90 arc -s -90 0 48 arrow -0 48 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -69 227 T -N -0.15 L -0 nxsetgray -14 -30 0 30 line --64.985023 14 0 arrow -0 0 T -grestore -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 189 285] concat -gsave -217 execuserobject setfont -4.5 4.5 T --3.5 3 T -N 0 0 m -0 nxsetgray -0 0 m -(a) show -0 0 T -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob22v4.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob22v4.gif deleted file mode 100755 index 8a1cda073..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob22v4.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob22v5.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob22v5.eps deleted file mode 100755 index d7278de12..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob22v5.eps +++ /dev/null @@ -1,577 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: pssc7cq14.5.create -%%Creator: Create -%%CreationDate: Mon Mar 10 09:46:00 1997 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 138 467 423 740 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr((5&a'/hjNgbd:Q,0klH=Bi> -% =&bfU+K$+D^>CP#4Y>@@`T[=#W`M7A0=]++G5%i\-BlM0Z^[?'2kL2[oTrQgW"B(VKa!\"Cr -% 2h,[eh5\"3S-29nIjb:PHgF9tWil8+ABRK[`GW<6dJJ4u4VBF8j\ -% CUF.n#QUM"!Gl55?@33tM/[IJe_jZ&"?)VXSS6t!A;je2=\:2%5Y(q.bod[I9jHaK)>7K:#m -% 6V1&]cp338hV"E59JE'Olkaj,JE-V4_-`((!6e'*?ihR -% ?H*fjH3$J`FKZ[J-!ZS-9KBEA5@JI' -% _iXaAXOk?EH$.$pT[rYR,Z7!@]C!(^#=+Hmt%&-ssq5tgHZf$9`/[:0_bG__,JsI/lE(nHBV86T//Z1dY8g]:JT' -% 9%>i3j6u%KHnm#oAi)9?=.=BOZQ"J_8D9ampM=>3n(6QhP6e -% b7;p"/iB#7>pt\ADU(_VSu-r4NJc$Qm;:EPn]l_#93l@9NR-n?)6);JIOE`@ghS[^GcD!M$G -% %(JkT7<_ener6uRF]RA9%QE<'N_0h" -% :0%0Jh<`k^,hAW%495<`,eSW5.IEO0gQF.0F]);YRf2&0o/A* -% LpU\qn<;>c18l!&]mh5dZ]A"k(r7hGR!Vh6Kku]:uQR[Dh-J;%n0["?p3"QVLlQPA`kC1JJ/ -% V6Pq".qrs/W!$n4&&1BU.\O7_jYb+j970`lj!!k-g:tG5#P>b/u:O[.Ddm4"IoNVl=&!Ugd;?u8mjmCkXn&@@"8D7oN) -% Oq'gsDsdBRug5Srf]#RLN^0pkEF&bq,qmbj!f^a9VX=?oK<=fGq\03^#VB`Lb6L7*o(/n);) -% HIbH=p&q`8&_PDB!#,L=,iGU28nsuaMT]u$BUh#=.V1s1%gn]@2"j0;!`md=f>M8Z[37'.io -% Wh>Wl_)`.7G-0>#Vuo[&uL(.g5Q%#ll+lTglFkTXq*q[mY>&'7FV).CuD>!CI%50TA,P+G#W -% 7'K/?]"9ZZ$S'@B:>FJ0"BZWMC\CqXpFL>m[:UqPn!([]N"me/+6s0AM@q#&25E_+2Eu5pFSTnB%<#+J0MJj5d[&? -% ak\*j@sEuEo0Ih1_&H2U;i9\llsP4D'2Y4+G5%i\-BlMYfO6l'2kL2\(8"'h9'l.VKa!\"Cr -% 2h,[ei`\"3S-29oU5b:PHgF9tWil8+ABRK[`GW<6dJJ4u4VBF5G6 -% :aiLK";$@k!Glf0?@<9uM/[L[e_jZ&#Y(0lSP8WWA;skC=\:2%5Y(q.bod[I9jHaK)>7K:#m -% 6V1&]cp338hV"EQ'5oAX(l(TP"iH9JE'Olkaj,JH2V;PZK((!6e'*@E#R -% ?Q0gjH3$N`FKZ[J-!ZS-9KBEA5@JI( -% ;$XaAXO-X;/dkb):9rYR,Z7!duG!(^/A+Hmt%&-ssr5tgHZf$9`/[:0_bG__,L8G_+E(o#RV86T//Z1dY8g]:JT' -% 9%>i3j6u%KHnm#oAi)9?=.=BOZQ"J_8tIampMM6j\A -% .AZ?`f'6619`"Y]hXqhmbP62poXD<>52V\iL-!k#NEm$!=$>cUp&*^B^2)k@IP;hD2La6<3m -% 5)Vp.BFuG@Ql?2[hGfVE>#;^nq]3d7/_*O"_c:]HpgY-N,W-MGa!#\rK;TTVLY<.8J(dt,n&;,L@HOt`Zj-B(mdgISbIDL<*4Q%hrlJ_tlV0S -% fp@bViEfZu7a&f1^*^d+"";$R\I4<)FZRlYQto/n6a5u`C@V]gRB!-&oaH -% pSjXd>&eh&-R-a;*!b`7LU[&R=9OGOWQn?k\>g/>/fJTb=ckk/hG9FJT!dKc+2HT"'SfVWh4o -% *STQ"8jm&OAe7co>a^,9.SlbP@VAY0q,!sFaJjV#Tg'q[Mpl'D"A3']CLAA+g6hMZAlY$epJ -% Ql(YVi:sXm')/>#u!rV[NY'5QDK@<-nekW.OE6;KZ^+)Bnf1cNAn/)ES4>1]S./r?uK0AM@q#&25E_+2Eu5pFSTnB%<#+J0MJj5d[&? -% ak\*j@sEuEo0Ih1_&H2@`=Epp(2'`1<;_RC-W"!:iHl"VdPX*2^Y=cX)G+WK=dE716(f\":3 -% 's5Y/\X0lK2U^j;Ne?C+l*N9Lt0ci>uD"UWg3(42)/8BS0AA(5-.6So23HrC9qe,Ymd;:$!_ -% P#l;t"k7"@";,9Q!%inBU?jVYf`=sP\Htg)#C!SRkB\o'`]oj!i7@8JPo&@RXb -% B)+MrAgCS*Na8XGIO%LR`[5a&-\Oe1t8etY`))HmCi"9ON`dp@nNQ,Rdc6^?Gb*")B+Iqrs08R[ -% ITYC&50u\?,ma!s!sI_?D7Q&gHWBR[@JL+LZN[EkTW4'kkcQ7L3bD'-k,"^e5;f_?mAk"_GR -% 'C+:$tb<8PX\&MHrZ#o)B_(di.!$[*.#&%J`%=q@8Q.@M`qJrfhm7T6ts&t.5Ui/8=!tKlQi -% g&7`0-"67SJk5"`0,gi0q0%.dISKABOf?;,$.Zm-67%:Lb`9khY!OKk8X-=8WtamK4d-4G%_ -% q=&-t$tJKB$DF;O9HggU",M[t1ti'e#RIpF&]c_6!WVr.Jdu$6jV&kR -% F/,-Bhe$PSgb+WT]MCbJ/k`9gIJ-$e0(`@9G7-.Ra[;s%dc:V:I54+t6:`DTC[i`S9h[iL(h -% oLk"s#(gfT[b<'?q1?+b8#A_$a#b*1^J[br>0#/RB2T^'Gt`n$O=!=UTAP$D7 -% ^1l)1PiAC+e7kd]E^]k;.JV3P8_hRFU(Ll9#6>?B"Q2,(:h';mi'`lr/HA`)U"ZZiT(=8%F -% $D6,uG/Lt\:L)>I_unqMMB278&-,6dJD^G.6OF3.ab#H'.bDKb@SW)Agl%?t6-DLnU+O6SKfi;bba4M%U%,ps#s8=l+1$n6.((? -% n3@9`SWJ#dF$m?Yjpa6UQ&eKTq+YLE@cQKR&ld!9bY]FlH;V1RLKkj@R-9d^,P=N8ZpQ32cuT,7Uip,6. -% pM5Xacj;(bnVS7ocQZ8=VfkD=p)!1:W;<"X\/SE: -% GiBp5SZ7H.FE!:,.hMg]ZlhU9#YP5bqOefg2-C\PVc7SHUQ&kP -% XoVA`8_BKh9f%bXRXkW,?>>%TneC%?p4N4@-K;qQC=M8Z[;kFe@6.T$Q=:9R%7"4*lVjGte,fK(9-?&Wg[Q>JU54LQ`>6Y0``DcAWW9 -% tVNF@G!U3$shAZgL6.c()i0AM@q#&25E_+2Eu5pFSTnB%<#+J0MJj5d[&? -% ak\*j@sEuEo0Ih1_&H2!mcrollt@KD'2Y4+G5%i\-BlMYfO6l'2kL2\(8"'h9'l.VKa!\"Cr -% 2h,[ei`\"3S-29oU5b:PHgF9tWil8+ABRK[`GW<6dJJ4u4VBF5Ht -% X!FkM";$@k!Glf0?@<9uM/[LOeKA+f#Y(0lSP8WWA;skC=\:2%5Y(q.bod[I9jHaK)>7K:#m -% 6V1&]cp338hV"EQ'5oAX(l(TP"iH9JE'Olkaj,JH2V;PZK((!6e'*@E#R -% ?Q0gjH3$N`FKZ[J-!ZS-9KBEA5@JI( -% ;$XaAXO-X;/d31$:krYR,Z7!duG!(^/A+Hmt%&-ssr5tgHZf$9`/[:0_bG__,L8G_+E(o#RV86T//Z1dY8g]:JT' -% 9%>i3j6u%KHnm#oAi)9?=.=BOZQ"J_8tIampMM>3n(6QlE6: -% $$51+)J'rRMIL;_if:,Z'lFU_=Je1BOd(P+'2?j-67%:Lb`9kc?57U>6["08<5@$KE'dJYU1 -% E5&-t$tJc7IB^sPmK[Wn9%lJ<6\5_^&,<&-nllOG$U#17)t`#p2`*^h-oGSU/:oE$Lf?X[$m -% fZa>`%5?M0%>)2O]D#)!+M',/(A?Gm1&BZl08qrj&F6H?\,gQ@N"CUQ;T[j#Zq4:3;\0X4)J -% >^/LP[E;jb_rjGsWe[E#KjD_$R`k^ae-E4$'$CE:URU>Qh8RQ1:eOSTo\;Q:JAjrTe6=@F?8 -% $(l-S]6QX''N<0tW#R:k-HU3#%d'V?-UQl?FX#jZ7#4S5a&O81?+@.4(#ED"GK70D+_]7;6K -% ('0lJfUq#b:8^Z:1RabM7T5IhNBE$/h)*?OMhQ&K82,Hj"s>4,4D$-_h<`IDW?XX%b7r(*`h -% 9UK*W\>?B"Q2,(:a5d-i5CkB/HA\u,/,aU%P0C(AflD^P!g/,&e:XpquEN8#=1l^[]spm -% 4C&Cp(U5uPWtGqf%k;b4T0NB!!L>a5.L2o/"9cT,`@R+RmKFD2)@Mmc;I1,u[Ato$mu*XM6Qkk1bIDpT9/ErE_j[P -% cBW_XCL+l#;pe*7pAr'nnok^DsGCq2D^X)K;"/fS -% ;%$PE5ZIGg1fZsj,1^j@$?i^ -% c9'h!Hr;9DaXCu7?O7Qht_+TR$*VkLs5LiAeEpu2gg#t-'TYYqu2$@L"Ge4X9iJ5Vc.VW*Gj -% =E9k%p!BBq"Kb&pp4ESNmGaB;8?.<.g8Ch1;Of`kkDc?B)%l^t'"g152FbIaf!koBZCq_#9i -% lkQm\LV/JEoqo]$n:b1p7JCcQr_D%0.dVWV-[`2g>(`M)qu;;-g7lf+^AUW.5b`6,a&@0[c- -% $L'W]F5Zr(o/^hHk>Fq*/)+5uVSEeV,Gl9'@pN*/r$rnj1j^qb0CY3SiQ%QWL&S(e!=:.IV1 -% o\=V+BnB*fZ^3NAo0/(Z)(JY_=Y'DTPdl5>?@Em[%Io]Nt;H4Kn[D;Tt_eTZ#"2&W%(i]]+l -% JC<"Y#::nnW*.'?,HJR%;S2O'd*03_'m"p*'C\d$G-x -% EndEmbeddedGraphics N 1704 6a8 E 77 S 2ebcb R 9597413f -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -128 86 389 389 rectclip -0 0 0.15 1 10 SU -[1 0 0 -1 322 359] concat -gsave -/Helvetica-Bold findfont 12 scalefont [1 0 0 -1 0 0] makefont -217 -exch -defineuserobject -217 execuserobject setfont -5 5.5 T --4 4 T -N 0 0 m -0 nxsetgray -0 0 m -(b) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 417 304] concat -gsave -217 execuserobject setfont -4.5 4.5 T --3.5 3 T -N 0 0 m -0 nxsetgray -0 0 m -(c) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 407 232] concat -gsave -217 execuserobject setfont -5 5.5 T --4 4 T -N 0 0 m -0 nxsetgray -0 0 m -(d) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 376 196] concat -gsave -217 execuserobject setfont -4.5 4.5 T --3.5 3 T -N 0 0 m -0 nxsetgray -0 0 m -(e) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 295 206] concat -gsave -217 execuserobject setfont -3 5.5 T --2 4 T -N 0 0 m -0 nxsetgray -0 0 m -(f) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 258 296] concat -gsave -217 execuserobject setfont -5 6 T --4 2 T -N 0 0 m -0 nxsetgray -0 0 m -(g) show -0 0 T -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[0.707107 0.707107 0.707107 -0.707107 135.323807 285.242645] concat -0 0 0.15 1 10 SU -9 129 T -N -0.15 L -0 nxsetgray -240 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -129 9 T -N -0.15 L -0 nxsetgray -0 240 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -130.571472 129.74585 T -N -0.15 L -0 nxsetgray -60.857025 130.508362 0 0 line -65.001923 60.857025 130.508362 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -68.571472 127.74585 T -N -0.15 L -0 nxsetgray -60.857056 -130.508301 0 130.508301 line -0 0 T -grestore -0 0 0.15 1 10 SU -130.583237 12.89801 T -N -0.15 L -0 nxsetgray -29.833542 -115.20401 0 115.20401 line --75.483688 29.833542 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 1 28.352097 28.352112] concat -N -0.15 L -0 nxsetgray -N -100.647903 100.647903 100.647903 115.292023 90 arcn -s -205.292023 57.6479 191.647903 arrow -0 100.647903 201.295807 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 1 30 29] concat -N -0.15 L -0 nxsetgray -N -100 100 100 90 64.163246 arcn -s -180 100 200 arrow --25.836754 143.580856 190.003937 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 1 55 56] concat -N -0.15 L -0 nxsetgray -N -73 73 73 180 115.426872 arcn -s -270 0 73 arrow -25.426872 41.656811 138.928787 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 1 39 39] concat -N -0.15 L -0 nxsetgray -N -90 90 90 0 64.112976 arc -s --90 180 90 arrow -154.112976 129.293823 170.969101 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 1 73 73] concat -N -0.15 L -0 nxsetgray -N -56 56 56 0 -74.180809 arcn -s -90 112 56 arrow --164.180817 71.265739 2.120903 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 1 33 33] concat -N -0.15 L -0 nxsetgray -N -96 96 96 -90 -75.963753 arc -s --180 96 0 arrow -14.036247 119.283424 2.866322 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 1 81 81] concat -N -0.15 L -0 nxsetgray -N -48 48 48 180 -90 arc -s -90 0 48 arrow -0 48 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -69 227 T -N -0.15 L -0 nxsetgray -14 -30 0 30 line --64.985023 14 0 arrow -0 0 T -grestore -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 247 376] concat -gsave -217 execuserobject setfont -4.5 4.5 T --3.5 3 T -N 0 0 m -0 nxsetgray -0 0 m -(a) show -0 0 T -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob22v8.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob22v8.gif deleted file mode 100755 index bac7f1453..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob22v8.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob23v1.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob23v1.eps deleted file mode 100755 index d8279dcf0..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob23v1.eps +++ /dev/null @@ -1,502 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: Untitled5.create -%%Creator: Create -%%CreationDate: Mon Mar 24 18:32:27 1997 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 36 529 452 727 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr( -% =&bfU+K$+D^>CP"rR[X@`TZ&`>T:*jQYL,+G6KJ1)@e_AB(3m0d`\]X)G+VK=?j+16(f\":3 -% 's5Y/\X0lB,T^j;N(?C+l*N9Pq=!#ssM"R&Rqr+1lT<78-&1WL'O!]f/fJMT/KVFi^&XU(.W -% 5bLXK"EFkMRolO(?NNn*='V<,eOa/$q-[E;'/Gm%8dSmlK1pr';Mb^K"S+kZ1q6Au-?.)Gi* -% 2][[pit\$:\,FoMjJqA!&4mTRgCFW8_$RKr2[>R$\)<'4hG(L_UDmTHk#(PY`+]L_hOC@N$B)n=jG'[)`@(1\Zh^j_]u[M.Mu:EiE:E?NM -% @@Qu3Ld*=^ap_2t.*_Nd@fX4W9,Sn%7];Zf`f5u8D4S:Lkb(V*C4I2!FC7((W)Kh3R9KEfCJ -% @i1&R(eUNb#RRB%e'%hZ(qM,iMXJG3!05?,,F(3n3Z4Z1faC'+0?+`WVPnUAM.r!'0u.PhZ9 -% *lSnE'qC`E-Y3S6N9OLQras5tDgndID"A5E+,B>pTT_#7@u7iUMgAVW"k<-q[q[L^Br0!Q$B -% RaK).Bo`E?=^-4e3.DPoNa<855Ej8`msV4Bs18+gMr#* -% B-eX5P!Kd3S7q]iEts*V^1hf>!9#rpCFSobC5PJ+gV=$6.BFqSM&R9o)ms:_qI+7AMl^A4PLhQg0AM@q#&25E_+2Eu5pFSTnB%<#+J0MJj5d[&? -% ak\*j@sEuEo0Ih1_%%VkJiTLIoOr[4UD4p+G3"r&f0PJjMmdC2(#+aX)G+WK=dE716(f\":3 -% 's5Y/\X0lK2U^j;Nh?C+l*N9O5nci>uD"UWhNJGIA,gSpu_;eD%5RK[`GW<6dJJ4u5AB_psE -% 5ThYQgN=i!0kGKQY15Z1<;DkSD]$:P#9k68h6==71D!aZ:Q?$BOZJmJ`u%L.g*efie -% he'aHpId3B1,L(-2YfA/J?F5Uu7\EKM2OfS<$E/SGbf2#r`S71,N_.+a&i\Ho$E1(lM(NOWC -% W)2isW#QQ7WcLiGr7b6O**s+!]>@_OG'8g`4![(*Ub@+t:EIq=b5]g2`k"fK^6jGt'&A/6?, -% qKnt$ik6C@7-6rL"YHl;cZpFNI>P5=f$(_#ptuh#!ccCDYTQS!042g5au]/\`0.%'sL<%L$c -% EcVMtU+.%uArZ@\3o!)UWJ%R:r4?W&Wbf;2R*Atu]%1?b^5@>Yt,+=HsIL&f/lasrpDb"8M4 -% [/+0GNIL0(lC`hDEbGeL5*Ft;$Q/adZBQin@(GK9$EBI$IQHSXf=l4$!;(Tk8HtWj'o3"lXcd/'PpWObZi)qS,=F30d,CZ8B]=OSIW/[J[;VJ7/BYIp(9M5 -% uJkE6oB*8j!!&Z:^=KB;!*:#'TS;Z^*(@V)bY;%Dd6d7RiX##Aj;sZ08q7\./N,at/7N`Bfc -% %4:O].+Vub<[_ffXY%Bn^SObTSXB^rSgg,,9P[lf2V=qo7\Yo1&rg]2:08U"GMuX)/.Ce@us -% D*C4U%pLsV%kK)blP&?p_j9.H_Ni/_1;L>1^,AC&52-cDhIo=ph#N:YDK:kB*!VZ?eu!^mHk -% 3pVF.DAV)%#Np3b"5I0*A5lneS`B1@;T\*S^s\5PYaLLRCn;2H$L%We'>Y5cQV>$*!8PkPmZ -% %0M=jR9>7HP`IE.\UW#EAm307E.*7/PgG]nXf!@F^k"p%"tCG'38#RTP(B!eH6=`"-2^U0lP -% "\@^Jb%rKlQ;HEoC!Wd6o/e+'">NdE7#i5o,g"TN#%,m$Cr%2l?>F-LXkX1D^/.a"hc4G=N+ -% qg:l&1CF#+YHUu'5.FNJ\VBg=9&D4FUD:C4'B*T+V+Ee8Qc3XS!`.)5A8uM"JirS'Lm$[.l[ -% M4Ur,JB8l2!@/M)3fU1"3siIJBW!'<-lNYU"3"u[;%"Ju_@GnPXu*,GidARL-2N8g$T]SD@j -% OP(R@O9%#o$ile'j3GYX%PoG&>*2_C(Z4dJE0N[#YQ4k\fKm(gcpAeXH,`!:cpruld=F(nf, -% tG-!!6P`#2>7A6Qdi"\0N0tYJ?q\3B7:>:9bER&.KSei.oc(!t1h7JdWu78l-[eG$_K()!>< -% s#5"u%.b7Xu&21R!-L-PY<:`on:6pgqSx -% EndEmbeddedGraphics N 1435 59b E c9 S 277b5 R a4e243cf -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -92 454 341 205 rectclip -0 nxsetgray -0 0 0.163829 1 10 SU -gsave -[1 0 0 1 99 462] concat -0 0 2 1 10 SU -27.119003 138.332428 T -N -2 L -0 nxsetgray -31.761993 -18.335144 0 18.335144 line --29.997295 31.761993 0 arrow -0 0 T -grestore -0 0 0 1 10 SU -gsave -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -418 -exch -defineuserobject -418 execuserobject setfont -254.357117 81.173401 T -20 flipV -23 10 T -13 R -1.092195 0.95876 S --19.5 5 T -N 0 0 m -0 nxsetgray -0 0 m -(White) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -418 execuserobject setfont -14 111 T -25 flipV -17 12.5 T -26 R --15.5 5 T -N 0 0 m -0 nxsetgray -0 0 m -(Red ) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -418 execuserobject setfont -40 152 T -32 flipV -22 16 T -30 R --21.5 5 T -N 0 0 m -0 nxsetgray -0 0 m -(Violet ) show -0 0 T -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[-1 0 0 1 320 6] concat -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 1 1] concat -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 82 1] concat -0 0 3 1 10 SU -11 14 T -N -3 L -0 nxsetgray -168 0 0 0 line -0 0 T -grestore -0 0 3 1 10 SU -11.433029 11.503906 T -N -3 L -0 nxsetgray -83.134018 145.992218 0 0 line -0 0 T -grestore -0 0 3 1 10 SU -94.567017 12.003906 T -N -3 L -0 nxsetgray -84.865967 -144.992249 0 144.992249 line -0 0 T -grestore -grestore -grestore -0 0 1 1 10 SU -9 57 T -N -1 L -0 nxsetgray -126 28 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -14 70 T -N -1 L -0 nxsetgray -126 28 0 0 line -0 0 T -grestore -grestore -grestore -0 0 0.15 1 10 SU -143 100 T -N -0.15 L -0 nxsetgray -63 11 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -135 85 T -N -0.15 L -0 nxsetgray -79 14 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -206 112 T -N -0.15 L -0 nxsetgray -84 54 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -213 100 T -N -0.15 L -0 nxsetgray -92 41 0 0 line -0 0 T -grestore -grestore -grestore -grestore -grestore -0 0 3 1 10 SU -[1 0 0 -1 182 517] concat -gsave -/Times-Bold findfont 36 scalefont [1 0 0 -1 0 0] makefont -459 -exch -defineuserobject -459 execuserobject setfont -13.5 13.5 T --12.5 12 T -N 0 0 m -0 nxsetgray -0 0 m -(E) show -0 0 T -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Times-Bold -%%+ Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob23v10.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob23v10.gif deleted file mode 100755 index f6514a1a5..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob23v10.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob23v2.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob23v2.eps deleted file mode 100755 index 14f76fd11..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob23v2.eps +++ /dev/null @@ -1,502 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: Untitled5.create -%%Creator: Create -%%CreationDate: Mon Mar 24 18:33:29 1997 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 70 563 486 761 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(0AM@q#&25E_+2Eu5pFSTnB%<#+J0MJj5d[&? -% ak\*j@sEuEo0Ih1_%%VVoXrc5Uo_U12%:)?pP!NJ0cbfj2d3C"`$e&J_&^^gBr-Tf4CE2Ba> -% 93;1OaY0k9'd!e;"GM7kON`#-rl#b_98NXHK(2aR&%27QRVe#(>/6So23HrC9qe,Ymdg!J4o -% cjg)-6kVa-[fEYSAUF(r!+g/ljk3k/#Y(0l[n0V/@k"OE5^#0/'OMLi\P^@pQrJ*X-@muTJ/ -% )-"YXr(/_UoZWHp%b/KS<^q(hAe,k+H'=!WYiEF3,-sBIJJmeHuAbW*FZ7KB4VYb<`ga?kbo_Y%jF!/N -% ,Ue5j<,B=!m,07373BjK37(4$C'P38-u_Yl.BlO;G#YJ="[R)R/foNM?@c;OPLB$=cp]CC`! -% >-.H?]&iCc1MLI<"rfO:"?@BjVahQ!;&9[-hmu4.A<=N8n=Z8/aA#s -% QCJ-b0YC5N""j)^p<5ZEFGehNND3!@N28:bWiE-%5X9KLE$kfV\)nT1!XZ7)CTt^:;(PEN1b -% f/"@AIlI)K^Wl@T/jt6@rmrHr7mt@%d>/GO=G".FIb&P-j@fAUU5Z,7OJ`7Gj@F\?pDgC'1 -% _&;Uc$J:b_WhnAYp[8dK_H+%eNf:kck9iN;=RP96m![3*qXhm=W1/bJ7ke/TgclX,t;g)d2T -% oNPH'+Q^J+#mZE4jcfDIG(:\`eVNI$0cTFe&3+*&HVu,0nkot+fSW^!#U$bCSCXZ!utF"-RK -% r@;lnsi]kB2HDR"i(.hW+>,JqfhO90%T!#e5$7OtakN>@-+oB'/m8mFUp;Adb6]TNUEf$0(? -% [#l-]33OS;!#DE3KEXaG"VLBY;?24I&7P`r?)3'M"Rq1PkS?^XFV-7`,K:)!!lt,/T3Y*>hWbO`iIPe<\XSFMQ&=:9@`7CVFo7OU)c.J9e:8q)c%$]'U05\59_c -% a4kbmVT(sE0AM@q#&25E_+2Eu5pFSTnB%<#+J0MJj5d[&? -% ak\*j@sEuEo0Ih1^u2O+N':,'V$j"1<@qVB0c`Ue&*`Xj2d3C"`$e&J_&^^gBr-Tf4CE2Ba> -% 93;1OaY0k9'd!oVK8EY<_)DM^*Fb7HuBfGk\Q?uLYZ05G[-P,:sA3JM2_aSD\CS>cNEh'%`10cIF%E&4SWf@2M$0R:MOFkSK?]J>1t,EWlHsNSo$ -% b(6?$qetkU)%$r(:U+"&eFk3C/U^mT![q'B"+IGKeGoXP_6[)(c_1it"q%Q;iQ'?6_%fs$[!X43Sl.;U=(25%h -% 5'.tZUo[2R)5W[+HK?8UVuXtS?6pb0%^a:jgGAS_YUXOm2AW0W5gINBXgmX'!!1g$d%(jZ'm -% jb%#peG$Zd2*&`jCDD;@*Z(3V.qAVh&iF&u)r<`!E7A",dCNF??@]Ll)SUU(j&S0#11VqI$. -% R&)a:m/h!5VS%:da_?5uOoT9:b<6+JFPF6ne,mO&26C -% #F]CjHVLL&$S*ENljNKX?m`XtB5=QR#=-0eRh'`u[ei)C=A\BpoQ@ZFMQ#f(c9?W&K2k0.sC -% iTIY)?K[m/I\97:;5d;W[r<))@*R]ZhFRf21FXrg]>O:o)NehLgS_-/MMW8hS=8`X(J_*C>R -% &e`BOoC,/(9iN;=RP96m![.RGXl;UK.i\PD,eLd(cutT"d-.hmK -% +BgN".F1Z&cBFq$K@)%)-kVp-\K%tIF'_m%*]Xk&HVu0&VZWOTr_?5J/;N?:,9JISK>S^8jG -% *33M<)]'8=EnBb?1AlllYk!]2UN7>-5bJ/L@t``K.%9PeeqS/N']ku<7p26=_"1a*#(rPC(a -% !$^:p3639a&VdAbiW*@`3X^`J$6n\fVuQeu+N+Hm]1@XS#iH6*h!L!S1Zb&d6&[C=YVK$)Up -% gi%.7t_8&>oO1!"cpa>j?>@]X1;s)d;5D2P)%C.7>H -% ^ImdZMHi-nuq)1nf(fQOT,%TYW-^nn^_$89i`rT9UcZp"pT(h%&rRT%ME4Q@@itNLCc`)a)3 -% $8d2LeBr'<_@h(l^pTSBTr]>`Z*UJ.j>6q8-:!^7s`XY>f3N3j9Rn9GTm-XoHYjHBF(430AM@q#&25E_+2EuuD"UWhNJGIA,gSpu_;eD%5RK[`GW<6dJJ4u5IB^u]_ -% >(Al#r-&MKRpQX$,qeVR[eq-]\&'/l0)8dSmlK1tblEKM2OfS<$E-YO,`,61hc70 -% /mr[@iG+.EGSC%RO9"KoSGG).a6Q2'W*o*&s9i!J"c+3*r^0^l#ZketbO(#\P7[U*R2f"+IF -% >oGo=>\_feS8_1it"q%Q;eQ'>Zc$j!FP!X3WTl.;IZdKmX[&U#?/TUZAS)50A<$+C>n-DF%g5p.M-% -% )OP]\/]7BGY1'bQ@<9N09:bRgoZZ,L,K;jhcOpQ+-Rsho\+-m!lj!&l1VKsTMA4]eU2E%-+p -% [CkmtL?U.GXC+db4q!,*>aJBNGs\Q>AOd4D!BHfo45hmWD%=s2sPeUmk%48i^>_-+Jljq2() -% \*'Dc!WfPJBTbXq.TFcr[rWit\$WGbdX^199$;)>h[5B5,hp-.-nCHiiW]URB)4-6:ff99]q -% q$_l<=F^E^`cG."eYA6SO-9$s7T_epB6n!DP\l#UDA0lYMo\f@`lAi+ibY[Y;>bmDVV*#fHo -% M&4,:*O'_RUg+!5u4PDNnCX46D-7Y,Y9c1YGJWRZs<^@iE&aFa@XZ)BtC%B4uGq-[l&8:`L9TT#L(,F-]e7LHQ.H#T!V,qbhs.K&?F?:dQrk;L:%dccR) -% KU38U!/o6)_?-H_Jd?ZG.0)U5#d=?I/lEiA!r0YcEq*t]@,*U/k -% [cZG3Q_"?Z\!9l%E$>pf#Ye`*2EIagdZ^l_nB0<5/5;Z\AS""J02r47'kCjS7$ZJ?R:_B%>_ -% T\3ibZm?>36Wu^dR:P5M?j?hdC:l0Ok>>#ejB2LME]>tSd7S-0:Bq#)?Qft]jVCpkYn"+L-P -% Y0AM@q#&25E_+2Eu5pFSTnB%<#+J0MJj5d[&? -% ak\*j@sEuEo0Ih1_%%VB>]fsIoP&^4UD4p+G3"r&f0PJjMmdC2(#+aX)G+WK=dE716(f\":3 -% 's5Y/\X0lK2U^j;Nh?C+l*N9O5nci>uD"UWhNJGIA,gSpu_;eD%5RK[`GW<6dJJ4u5KB_i8g -% >(Ak%r-&MKRpQX$,qeVR[eq-]\&'/l0)8dSmlK1tblEKM2OfS<$E/SGcQ2?9Ph71 -% ,O&jl22>.EGSC%RO9"KoSGG).a6Q2'W*o*&s9i!J"c+$NKcA^l#ZketbO(#\P7[U*R2fP"Mp3E]O -% \^i4jTdGZWQ'0`/WuI;B;Mm$&heH>1R*LEn/KpH[@Y0I)GkD=B/;VY&>d8<)>c`D!>$*-ph# -% ""$\C.@WAT/MI#Ru6qE>gH.Qo9a8%\Or_+?1WE6>`7,/#dLY=ph9OUc@kp!SH54SJ>kO_1kf -% 0Qm*Ss)8;?QG"@k6L)ibZ'ZPLuQ=+/)!Q6-J"p^XpQGO#Q$\6,YFL$J94*GDt`C"5Wg)s_#P -% /q?f!!CQh3RAr\CsUlm!mAg!*3WV4/iPQd28;Q[Fu4"_"[bQd*EN:K[$((09ong$^Qj2>M$H -% qW:dNZd-Fg;3@!C$!fo8j&Y/OR#W%fmF"E6+9Vmpb&->m41ElooalM%*),bLX^tX9fTooIc/$8$3^D5IZK'S/)0j -% 1p(k"Ym!PKe6_X^F62/2'G]*oDV#k$hB&W&Sc[%j`.[Y`+A8m/-,@?)=(W+[A&7L2H?X1qo# -% R[et""o8aP[q92)D6q72]Q'KF@Z]:>sK'$ps1V+OpV:0.u5IH&J8mT-O1.>'f9Vi';e$V0Vm -% Y9BV<7u6IZ],=[4f?&4%sE"ono/!B+?<74M&%!.WWI>K2QJkW\dD:(SXtj/Pe`$H9'R;$%Vg -% 3"6E!J,gc%,*@d'6mM(3`P9B2?3@,L(@d/II1>*tXf0/[#6Ba+fDmg`_uX[:5m1,V9E>'J^^ -% u%kW_'419:auA-BC\]':qj,gMhcS6j\kUR$*iV*!A$^fh*)&b>PBsjV>U"9.c/RQ[`7j!s4% -% 2\1f^i6Hg)KfdO^p_8VjtlBNs6+p%el1G7dB=n'e;c:tRk;slJq+Zp>:0T)!OTopfmrtiHO# -% ,6Xrd:d4giu\7-.&2Lsx -% EndEmbeddedGraphics N 1340 53c E 73 S 24db1 R 6b320c4e -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -24 457 333 198 rectclip -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 31 465] concat -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 6 6] concat -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 82 1] concat -0 0 3 1 10 SU -11 14 T -N -3 L -0 nxsetgray -168 0 0 0 line -0 0 T -grestore -0 0 3 1 10 SU -11.433029 11.503906 T -N -3 L -0 nxsetgray -83.134018 145.992218 0 0 line -0 0 T -grestore -0 0 3 1 10 SU -94.567017 12.003906 T -N -3 L -0 nxsetgray -84.865967 -144.992249 0 144.992249 line -0 0 T -grestore -grestore -grestore -0 0 1 1 10 SU -9 57 T -N -1 L -0 nxsetgray -126 28 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -14 70 T -N -1 L -0 nxsetgray -126 28 0 0 line -0 0 T -grestore -grestore -grestore -0 0 2 1 10 SU -20 71 T -N -2 L -0 nxsetgray -36 7 0 0 line -11.003865 36 7 arrow -0 0 T -grestore -0 0 0 1 10 SU -gsave -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -418 -exch -defineuserobject -418 execuserobject setfont -30 82 T -21 flipV -21 10.5 T --13 R --19.5 5 T -N 0 0 m -0 nxsetgray -0 0 m -(White) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -418 execuserobject setfont -273 113 T -25 flipV -17 12.5 T --27 R --15.5 5 T -N 0 0 m -0 nxsetgray -0 0 m -(Red ) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -418 execuserobject setfont -238 143 T -34 flipV -22 17 T --32 R --21.5 5 T -N 0 0 m -0 nxsetgray -0 0 m -(Violet ) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -148 105 T -N -0.15 L -0 nxsetgray -63 11 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -140 90 T -N -0.15 L -0 nxsetgray -79 14 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -211 117 T -N -0.15 L -0 nxsetgray -84 54 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -218 105 T -N -0.15 L -0 nxsetgray -92 41 0 0 line -0 0 T -grestore -grestore -grestore -0 0 3 1 10 SU -[1 0 0 -1 154 518] concat -gsave -/Times-Bold findfont 36 scalefont [1 0 0 -1 0 0] makefont -459 -exch -defineuserobject -459 execuserobject setfont -13.5 13.5 T --12.5 12 T -N 0 0 m -0 nxsetgray -0 0 m -(E) show -0 0 T -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Times-Bold -%%+ Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob23v5.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob23v5.gif deleted file mode 100755 index 2e4736a76..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob23v5.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob23v6.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob23v6.eps deleted file mode 100755 index 4c6d7a77b..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob23v6.eps +++ /dev/null @@ -1,510 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: Untitled5.create -%%Creator: Create -%%CreationDate: Mon Mar 24 18:43:39 1997 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 22 539 446 739 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(0AM@q#&25E_+2Eu5pFSTnB%<#+J0MJj5d[&? -% ak\*j@sEuEo0Ih1^u2OTZ<-[*f<3*1<@qVB0c_n_.>1=j2d3C"`$e&J_&^^gBr-Tf4CE2Ba> -% 93;1OaY0k9'd!e;"GM7kON`#-rLnGkJf"UWhNT_ZbLgo7)`;eD%5RK[`GW<6dJJ4u5MB^-.B -% KRc=U";"*V!,Q]/?@<,F=^5ump/WPnHm?iA527KQKoMq9P'L9]+;5of<:YVf"rInB,6G;O?s -% G7k37ib0=k4CBK,'-7@us9Z@3l)Q6;mt\9L2JlBq0_Y*>c7`L4'aNcpX$i2MF^K,_uZD/mb% -% P%L,Z60aJ\SODl+!bo@kE-7g4j(FR-YkTGkAV! -% N^i$jre3'WEWnoq@h"jC5S`*F'+iMS7$=L+C1#<60:sQUIYVT,m1db$C.@EnOjUpiNih;?=F -% J%$)`=T_CS!Gfqs[HZ,rYkE5>[Z-hu0tl=@]m$.kcnq?c@.]R0h(Bn&g]!,K%&3f'rO4pjQN -% P>^,/V99Uh$E&T'3ps;_NTs<=j.;\h+fg?j8Ka#n0ZF\*pt?p`!5M.0?cH+Pn$7-u(aB%-i[ -% J_XJ`u,/&HVq`0"I2ZpD1?aX]qP2mOHs.WMW\tJZ=ucYjW_8=@#BkC%D)Z?3eftY/7^-fQ4s -% %4WL_cE<.!!4C6hd^s!bd->CN`?E3G=,qjZ:]IC#m@O2n*dT.J'#e8$7*]I:WcGVoVZcP8.K -% PGZdHl,I%(hhoZ&Un[AYb-@^S2L?RZeZJFPmM:`T7;T=7N`i[OE]05Pri7#l*:peeNLs2EkR -% `#nD;rC-]g^PHQW6Qhe<=5[:FsfAU(S/!@gP]'KFA=jA26q(WblJrb:MhDE_@hmtH";-;k-E -% McZm>4`K:lVnVli)7hsr/,3.SJX%GOi["R9!"g.e];4F4!WL`ZGM+YK.fIGZ&0j0@3=l#nT/S"hidrll3%JWtekJcej-,oe2)"L`lJdhZ%7WPsu6%X?.tZ?$-9=X -% -&]?GGZR"NKdrii=!e::(T`KA5^^srn1G/u)^akf:9PBGPRZ"8c#=N'[*]V,Q!$MDHGR5%$^d'DWH-ZlCEY' -% [*koa4eT;KKe>7,>,/+eK)ALQ\c&?8Q]5*HK(r*1O-TSX1)JHQ4^@Y1iZbrBRGIU=@( -% iq?@XYE2!LBMG7#pDG^e5VQ/1bh=1,_]SmY83d:jU`f^0AM@q#&25E_+2Eu5pFSTnB%<#+J0MJj5d[&? -% ak\*j@sEuEo0Ih1_%%V-d7Z<5UonZ12%:)?pP!NJ0cbfj2d3C"`$e&J_&^^gBr-Tf4CE2Ba> -% 93;1OaY0k9'd!e;"GM7kON`#-rl#b_98NXHK(2aR&%27QRVe#(>/6So23HrC9qe,YmdmEcOm -% &.ekn>S9:E\H&kUAUF(r!+g/ljk3k/%.]B3-hqYMA/@.idRr\>;1hPqCf3h5RM]Et+H$Z\ML -% fcTki,hUnmts2&IqiDL5nPHfnPb+O@jmp>i\?lpL-tA$(;!+#QR_,;8=M1,1otU%R*u>@2A- -% qS!K8Oka.5.J%%SUrOg&?@_Q.fcd<)_1opqToO4[rRo&K4+DQCRJfF_TOm3SE -% >k=^76N']n:iDYALm?]3CeH[L.Pmb[kRb&)7rUR%T*N$K&B;,fp;l@iQ(G^1FmeQ`cSWXKl@ -% AH^=/gE%r>9+T-IA8H:Y9.rEAXg52r?./Sj*N[on>1'I*'R"6T$"X:d5X0=!-cW'lO0\&C'W -% 03k-blFK7(hhoZ&Un\L1XU0*GoJcL'XrUI847=FPQ!Mg\p\Dg7baTM -% %[X[rRSjLt<%I`Dfje[Y$O1p;<,HDVO1:r#$qN].0QE0?Pm\^_OGbOW04G?r;oRRf0k04(Ja -% p9-OSCHC4$n+cSVXdH/XBMaN39;hhU!(:X2m#ju>"ScICc6C.3lebZc6;6->o"7"g$I9Pj_i -% u92aD!m>J,jBD)rDd\B:%>'N*:6F)7B`W3Rmk"CVVIP\L\jA=L>sMZ0<;>@cIb=Qm,K2n4*V -% 90KQSCms-;H":sEL\1b,4E-l"l_kW)IYWnSEi>'IJAfYT-_!"]hHn3a-#:l%O+eeKpK2+&4t'*0N7Qac)fWh)Bm9_!Muj&ZN2JcEaA*5TK7l"a_%&s)8J -% pAaa:`1'#$MR("<,rSIR2C&XO`+s$-Tj,@df;];Z3V0lgjfE(U,&;WHJBW4>1,^0<2G -% ^=j0e=NQ3*T9$9b(M)15!sJJ-J*aJ=GD4')^uBS$FZ+Me)S30se_OaSUPV#8LVVJk>[B[[9@ -% *!.861=C5S652ZeH[!Cd^+hJCq+lMF<1lDn!WW3#x -% EndEmbeddedGraphics N 1469 5bd E 51 S 27d59 R d8ac530c -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -58 568 422 200 rectclip -0 nxsetgray -0 0 0.163829 1 10 SU -gsave -[1 0 0 1 65 576] concat -0 0 2 1 10 SU -52 72 T -N -2 L -0 nxsetgray -36 7 0 0 line -11.003865 36 7 arrow -0 0 T -grestore -0 0 0 1 10 SU -gsave -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -418 -exch -defineuserobject -418 execuserobject setfont -322.357117 84.173401 T -20 flipV -23 10 T -13 R -1.092195 0.95876 S --19.5 5 T -N 0 0 m -0 nxsetgray -0 0 m -(White) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -418 execuserobject setfont -54 90 T -17 flipV -17 8.5 T --8 R --15.5 5 T -N 0 0 m -0 nxsetgray -0 0 m -(Red ) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -418 execuserobject setfont -61 41 T -21 flipV -23 10.5 T --12 R --21.5 5 T -N 0 0 m -0 nxsetgray -0 0 m -(Violet ) show -0 0 T -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[-1 0 0 1 401 6] concat -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 1 1] concat -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 82 1] concat -0 0 3 1 10 SU -11 14 T -N -3 L -0 nxsetgray -168 0 0 0 line -0 0 T -grestore -0 0 3 1 10 SU -11.433029 11.503906 T -N -3 L -0 nxsetgray -83.134018 145.992218 0 0 line -0 0 T -grestore -0 0 3 1 10 SU -94.567017 12.003906 T -N -3 L -0 nxsetgray -84.865967 -144.992249 0 144.992249 line -0 0 T -grestore -grestore -grestore -0 0 1 1 10 SU -9 57 T -N -1 L -0 nxsetgray -126 28 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -14 70 T -N -1 L -0 nxsetgray -126 28 0 0 line -0 0 T -grestore -grestore -grestore -0 0 0.15 1 10 SU -140 99 T -N -0.15 L -0 nxsetgray -71 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -211.747925 76.304626 T -N -0.15 L -0 nxsetgray -166.504272 -22.390808 0 22.390808 line -0 0 T -grestore -0 0 0.15 1 10 SU -222.374237 41.663452 T -N -0.15 L -0 nxsetgray -163.251678 -39.672607 0 39.672607 line -0 0 T -grestore -0 0 0.15 1 10 SU -134 81 T -N -0.15 L -0 nxsetgray -87 -5 0 5 line -0 0 T -grestore -grestore -grestore -grestore -grestore -0 0 3 1 10 SU -[1 0 0 -1 224 628] concat -gsave -/Times-Bold findfont 36 scalefont [1 0 0 -1 0 0] makefont -459 -exch -defineuserobject -459 execuserobject setfont -13.5 13.5 T --12.5 12 T -N 0 0 m -0 nxsetgray -0 0 m -(B) show -0 0 T -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Times-Bold -%%+ Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob23v7.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob23v7.gif deleted file mode 100755 index f2f843471..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob23v7.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob23v8.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob23v8.eps deleted file mode 100755 index 63400ced9..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob23v8.eps +++ /dev/null @@ -1,511 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: Untitled5.create -%%Creator: Create -%%CreationDate: Mon Mar 24 18:45:50 1997 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 78 455 498 654 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(0AM@q#&25E_+2Eu5pFSTnB%<#+J0MJj5d[&? -% ak\*j@sEuEo0Ih1^u2O@*Xj".6,g=mHNH5+G7Pq@2@pDjMmdC2(#+aX)G+WK=dE716(f\":3 -% 's5Y/\X0lK2U^j;Nh?C+l*N9N*Nci>uD"UWhNJGIA,gSpu_;eD%5RK[`GW<6dJJ4u5QBW;^/ -% =b&c&r.bX[Rp=)abEe]Ark#]kS.[RjM.@h2W"`?.<,#YZUpr/f?!k&!tJ9S@4[aU -% FUT?pGilr7;:,ERea_>RL%5=^M[L'>i\?lp/+dS'2h` -% ]'IK*]Sf5=.0Tl8/R%IiYL]f2u9?q!2(;k(Rh"FWJsu=#XE!>OV-kS. -% )Hi-J1/MkLQras$2,\HdEQBp5E1X8*<;?in/a!COX?mI*J>%cGC*TLr'u5^& -% Ki,F`V3#-NO/CZP3l%YeMMB/)"B"K:a9%GR_7KcqWt1cZ'C;7,2L -% +Di`:=f"+M<(Xa_?5u!s5n-p3S:)[HY-%DMKQbl_9Ar9u!EC?4 -% -lDZ,I].PY@A.a/HZ-[eH)d4BBGbp5s5ASHEb29WiY)b8`o1_1/N4\ -% 2(;nYF2W30-B!eOV#2_",`dOJq56Y(uY])"/C^Rg^+pZmak$3[PY9*CN;le+UBd3eL5Vl>h7 -% l>&jX[!X37YfPs"PBhg[#8_r-5)rDnqtqka)>_A3R3it_%5V\jt]?o\IZ2l8TfEe1imkFg:q -% 0$WdLrgnu`BHkEF^Nc$$gW:L3FIRD+5,:e/[t8ZI(5N0K#ed;H!!GR�&9pX@e"-Fqq_HNk -% -S:E[SfX9kWgK_isC12[E"uK+Op]!WWcsXnTeQ&G*5$n5ADNib<60ag9@b`7DSjJZ=*MJ42P -% 9!1WZ?!&gDkJgj_H!.RCE#d#W0_=#6)Y'#=$rbJ$pN&T!+%#/`>[:6FprRTP(B!eH6=`"6gjS(m;,Lc!iiOCC;/9:l8o$a5@O!*kHj'4JWM -% lo`_&oX3(Gpj8k`_gg^JsUn'+gaNKnF&srYA!-W%[*@W[QRE^[`!YY![BiahoA&tMm/+EYff -% V/PE3"7XIYej(k'3PXI'b+``^NoVC5n@YK,!%Q:,fHAd5@CD;gtBSi?Ha(S.)fm#+TbcI$57 -% 35Th-M3,B_ -% e@#3LBAs4K3)^#-2[fG4#"jdk`g:MTb]PTa>0AM@q#&25E_+2Eu5pFSTnB%<#+J0MJj5d[&? -% ak\*j@sEuEo0Ih1^u2OJBs -% 93;1OaY0k9'd!e;"GM7kON`#-sW#b_98NXHK(2aR&%27QRVe#(>/6So23HrC9qe,Ymdp!ApL -% :^I/RA.h-M\H&kUAUF(r!+g/ljk3k/%.]B3-hqYMA/@.idRr\>;1hPqCf3h6RM]Et+H6f^ML -% fcTki,hUnmts2&IqiDL5nPHfnPb+O@jmp>i\?lpL-tA$(;!K#QR_,;8=M1,1otU%R*u>@2A- -% qS!K8Oka.5.J'#YAQ*TN"70B[1u+`bAhN@Y,/D\,jMRVZ?mX#=:[I*-$FIZKd']?!18Wo&, -% iPT&R(VQbk*^kknjP(,r@ -% uP%XMm9i+CN]7gMYC+#,dum!`1Iif\5Q,[KJN)kb*XHB5RuH3Wd)67g+?\RB>nBCLmLD/=F> -% G+Zq)V$\oM="9VgO5g@VE$So,4?CU?(IH$Qfb2BQ6!IQ)'TLi@=82/sO/;CenQ2^bE[Efbk< -% +pG2J646)RQ+].*us&u1gF_kgN0i)"'q>A]b[`l)1dG`!8^Fs/F@CQ>J!K--j0Hc\C4IK!.8 -% j'P!BM%l`G*_Yl8M4Xni[Dle]@I.7PEo/C$QANBJn!jY=/hGO -% CX2mE^,Fn2\ii;/j]5iABMaN3$`F%j!(:X2m#h^S"ScKYbot""Wo$a!64DUSm]8HS$-sG)_i -% u92aD!m>J,jBD)rDd\B,B9MCg(isfsM#\\^U4(CVM*\\ZRjs=L>sMZ0<;>@cIb=Qi^4gn4*V -% 9+M+n]cZpl'":sE<\1ateE-l$G2V_[Brdj)0XQeXJ#8+fb)UNYKMV9Ns\@X>$%4o&-! -% !`W.'lbZGo>"n5k;b58WRDa`=D,-/fYT-_!"]hHnAD.M:l%O#eeKj92+&4t'*05InW5+N2o> -% *#!tnf\a>P&#`mI1&;GeG@EJ[;T5SGi]JdWuW0;>l>KN1^>!a+Y>"P&Q,E+'S?n7Qac)fWh)Bm9_!Muj&ZN2JcEaA*5TK7l"a_%&s)8J -% pAaa:`1G#:L.7"<,CnI6l:;!:.QKU":+c*K4!bFQ?XCL5/_6JpW')!N:$($[K\Q)>=u!.Sn) -% W"M-@'Y`pF6#`p&FE(:6Dl/aSYP(3\JU6rtpjqsCUa@^hF1q%'d.SbU)/saJ=GD3EHLsBHdUG+Me)S30se_OaSROV#8LV-CEZ9BS,_G -% )Zh/51>5Z;652ZeH$@1b^+hJCq+lMF<1lDn!WW3#x -% EndEmbeddedGraphics N 1469 5bd E 40 S 27fe4 R dc1a3086 -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -82 541 424 200 rectclip -0 nxsetgray -0 0 0.163829 1 10 SU -gsave -[1 0 0 1 89 549] concat -0 0 2 1 10 SU -41 65 T -N -2 L -0 nxsetgray -36 7 0 0 line -11.003865 36 7 arrow -0 0 T -grestore -0 0 0 1 10 SU -gsave -/Helvetica-Bold findfont 14 scalefont [1 0 0 -1 0 0] makefont -418 -exch -defineuserobject -418 execuserobject setfont -339.357117 82.173401 T -20 flipV -23 10 T -13 R -1.092195 0.95876 S --19.5 5 T -N 0 0 m -0 nxsetgray -0 0 m -(White) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -418 execuserobject setfont -63 40 T -18 flipV -17 9 T --10 R --15.5 5 T -N 0 0 m -0 nxsetgray -0 0 m -(Red ) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -gsave -418 execuserobject setfont -48 87 T -20 flipV -23 10 T --10 R --21.5 5 T -N 0 0 m -0 nxsetgray -0 0 m -(Violet ) show -0 0 T -grestore -grestore -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[-1 0 0 1 403 6] concat -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 1 1] concat -0 nxsetgray -0 0 0.15 1 10 SU -gsave -[1 0 0 1 82 1] concat -0 0 3 1 10 SU -11 14 T -N -3 L -0 nxsetgray -168 0 0 0 line -0 0 T -grestore -0 0 3 1 10 SU -11.433029 11.503906 T -N -3 L -0 nxsetgray -83.134018 145.992218 0 0 line -0 0 T -grestore -0 0 3 1 10 SU -94.567017 12.003906 T -N -3 L -0 nxsetgray -84.865967 -144.992249 0 144.992249 line -0 0 T -grestore -grestore -grestore -0 0 1 1 10 SU -9 57 T -N -1 L -0 nxsetgray -126 28 0 0 line -0 0 T -grestore -0 0 1 1 10 SU -14 70 T -N -1 L -0 nxsetgray -126 28 0 0 line -0 0 T -grestore -grestore -grestore -0 0 0.15 1 10 SU -142 99 T -N -0.15 L -0 nxsetgray -71 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -213.747925 76.304626 T -N -0.15 L -0 nxsetgray -166.504272 -22.390808 0 22.390808 line -0 0 T -grestore -0 0 0.15 1 10 SU -224.374237 41.663452 T -N -0.15 L -0 nxsetgray -163.251678 -39.672607 0 39.672607 line -0 0 T -grestore -0 0 0.15 1 10 SU -136 81 T -N -0.15 L -0 nxsetgray -87 -5 0 5 line -0 0 T -grestore -grestore -grestore -grestore -grestore -0 0 3 1 10 SU -[1 0 0 -1 251 601] concat -gsave -/Times-Bold findfont 36 scalefont [1 0 0 -1 0 0] makefont -459 -exch -defineuserobject -459 execuserobject setfont -14 13.5 T --13 12 T -N 0 0 m -0 nxsetgray -0 0 m -(D) show -0 0 T -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Times-Bold -%%+ Helvetica-Bold diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob23v9.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob23v9.gif deleted file mode 100755 index 2bf75e488..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob23v9.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob24.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob24.eps deleted file mode 100755 index a806aeab0..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob24.eps +++ /dev/null @@ -1,641 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: Untitled1.create -%%Creator: Create -%%CreationDate: Wed Mar 26 11:18:06 1997 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 130 309 484 516 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(%-3XN,m/f+R+Z4$O=UB_mK>3 -% uJP^tBB[`\MP%8E[!!)![J1EQ2+UDiSl5^N3D;DsI,FTLG.8pEm&]Y$23![5HJ"D7>EpSi#i -% 4ja"&n8(h/_\Bt.fn!2BGQ+a$tSiG6=S:^?\*esT)@5>YfDD2E8Ae3X`(^kZ_eV3L&_5l"UG -% DO1FB7P!*RPXQOl)9JLrb!F?.5cba^\H#-\stLd9i!"\MW`e#(>/6\I'l.R8:kfOk4E9\AE- -% 0&=+)c1N/l!-CPp@6Vn)R=^J'876$0J3oo6U1l@g0M2m1`#t(FJBioE9X.8&K37(t+gO\Ji, -% /IHnf*5^Lgh?EUGrJY.2]u,d<.6Y(If<`Qr;ddl)iRoHSl6DKH*\iJ4V$iOOaeAQ3=u*&,ZG -% U+CG6Dk9"(9(3UOIOK$mj>S$f]iIh21(l0hQ>nVYt3nQ?YSLqRSAW/EK\(,F&*bHGnABs>`@ -% l4l+*$4Hs-HidCe!$G#F&I:#j0X.19B`?QDJ=qUQ@%h15`[6@S:0?HtT02 -% _`L)fF:c%\hE?ic+"n,c.IJY^i!/!.gdsB9oBg._r$"()U_:[fnO>0P"@AWde?p$hDum^\RbHB1?k1CqYmrt!V8JtNH9i; -% PCrcr:`GG<92`-WkLDlfs]Ad>Armig1cJD)Y?`VO^8c],1ae!i+?XTQQ&n'Xs*M: -% G@,7I*f05D@!nH`:il!6`rh!"n1M\=lqc/s$t-5@9h[k"O(Y+O8*mPe0M;,LisWh1.eMT+bZ -% hA5r7o7<>\`23$=7!@0ULqDO+&;-=L,*MXAfTZAArm(aV7_]#f,VO[L:"kEjr[;mHJfpe"=l -% /8=AN&/9q<8N12a#]\OmEY=h$"Qc1Bq*tVndZbr>$lHgYaS.!21_YZkn('J -% 6>$`P4"VZP(r.iBYEq>.eEDnuN.D9`#^n=(Q-BHk5c%&j4W+j)pUk'SEk0F#! -% AoZ8%AsPdBg#@7;/Qr(UBJKU9JU5L"WWb8(OF^P_KRR;]t_4c;Zh>5#;D6=Je\br7P(&=iD]4,0 -% ;MQH53B0SLR4=BNC@D;5NSP,T.1ZRVdR$NA@mi)f:I4Rh]`FFlFfV4o<^C\sB"a/M$OZMVG# -% 2npU-:KP1G'NVmb2K6%G$D==LP12W>X5(/ffQJ5XSE$2ZF/S8J>$9eZU0hTT:D#fN&"R'1AR -% Mj)A-!c41hJ.7lb=s4._+W#2SlW1sV4`)Mq92,%QD0WJ&4US14KWAiK`CtODq-@5_@CW_V+" -% 3Q!USH=r\.9%OBi[nG,*[VW:C3.1%b`2!&Xs+%F;'7['n).L&_2Rx -% EndEmbeddedGraphics N 1758 6de E f5 S 30933 R 3f539333 -gsave --20 -28 translate - /__NXbasematrix matrix currentmatrix def -grestore -%%EndProlog -%%BeginSetup -/acsRect { - moveto dup 0 exch rlineto exch 0 rlineto 0 exch neg rlineto closepath -} def /oval { - translate scale newpath 0.5 0.5 0.5 0 360 arc -} def /ovalPath { - 4 copy oval closepath neg exch neg exch 4 -1 roll 1 exch div 4 -1 roll 1 exch div scale translate -} def /ff02 { - oval gsave eofill grestore setgray matrix defaultmatrix setmatrix stroke -} def /ffr2 { - 4 copy rectfill 5 -1 roll setgray rectstroke -} def /line { - moveto rlineto stroke -} def /SU { - setmiterlimit setflat setlinewidth setlinecap setlinejoin gsave -} def /arrow { - newpath moveto dup rotate -10 3 rlineto 3 -3 rlineto -3 -3 rlineto closepath gsave 0 setlinejoin stroke grestore fill neg rotate -} def /plainarrow { - gsave /y2 exch def /x2 exch def /y1 exch def /x1 exch def /y0 exch def /x0 exch def newpath x0 y0 translate 0 0 moveto dup rotate x1 y1 lineto x2 y2 lineto x1 y1 neg lineto closepath gsave 0 setlinejoin stroke grestore fill grestore -} def /frrb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath stroke -0.5 -0.5 translate -} def /firb { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def 0.5 0.5 translate exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg -rlineto 0 rad neg 0 rad neg rad neg rad neg rcurveto closepath fill -0.5 -0.5 translate -} def /rbp { - /rad exch def /IV exch rad 2 mul sub def /IH exch rad 2 mul sub def exch rad add exch moveto rad neg 0 rad neg 0 rad neg rad rcurveto 0 IV rlineto 0 rad 0 rad rad rad rcurveto IH 0 rlineto rad 0 rad 0 rad rad neg rcurveto 0 IV neg rlineto 0 rad neg 0 -rad neg rad neg rad neg rcurveto closepath -} def /pieceOfRadius { - exch 0 exch rlineto 0 exch 2 copy dup dup rcurveto -90 rotate -} def /strokedRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath stroke -} def /filledRoundBox { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath fill -} def /roundBoxPath { - dup 0 exch moveto 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop 3 copy pieceOfRadius pop 3 copy 3 -1 roll exch pieceOfRadius pop closepath -} def /ffrb { - 5 copy firb 6 -1 roll setgray frrb -} def /rbox { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectstroke -} def /rboxfilled { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w 2 div neg h 2 div neg w h rectfill -} def /rffb { - 5 copy gsave rboxfilled grestore 6 -1 roll setgray rbox -} def /roval { - /h exch def /w exch def h 2 div add exch w 2 div add exch translate rotate w h w 2 div neg h 2 div neg gsave oval -} def /rovalstroke { - roval matrix defaultmatrix setmatrix stroke grestore -} def /rovalfill { - roval matrix defaultmatrix setmatrix fill grestore -} def /rofs { - 5 copy gsave rovalfill grestore 6 -1 roll setgray rovalstroke -} def /flipH { - 0 translate -1 1 scale -} def /flipV { - 0 exch translate 1 -1 scale -} def /pathtextdict 28 dict def /pathtext { - pathtextdict begin /offset exch def /str exch def /pathdist 0 def /setdist offset def /charcount 0 def gsave flattenpath { - movetoproc - } { - linetoproc - } { - curvetoproc - } { - closepathproc - } pathforall grestore newpath end -} def pathtextdict begin /movetoproc { - /newy exch def /newx exch def /firstx newx def /firsty newy def /ovr 0 def newx newy transform /cpy exch /cpx exch def -} def /linetoproc { - /oldx newx def /oldy newy def /newy exch def /newx exch def /dx newx oldx sub def /dy newy oldy sub def /dist dx dup mul dy dup mul add sqrt def dist 0 ne { - /dsx dx dist div ovr mul def /dsy dy dist div ovr mul def oldx dsx add oldy dsy add transform /cpy exch def /cpx exch def /pathdist pathdist dist add def { - getNextWidth setdist nextCharHalfWidth add pathdist le { - charcount str length lt { - setchar - } { - exit - } ifelse - } { - /ovr setdist pathdist sub def exit - } ifelse - } loop - } if -} def /curvetoproc { - (Error) print -} def /closepathproc { - firstx firsty linetoproc firstx firsty movetoproc -} def /getNextWidth { - charcount 1 add str length lt { - /nextCharHalfWidth str charcount 1 add 1 getinterval stringwidth pop 2 div def - } if -} def /setchar { - /char str charcount 1 getinterval def /charcount charcount 1 add def /charwidth char stringwidth pop def gsave cpx cpy itransform translate dy dx atan rotate 0 0 moveto char show currentpoint transform /cpy exch def /cpx exch def grestore /setdist -setdist charwidth add def -} def end /c /curveto load def /l /lineto load def /m /moveto load def /s /stroke load def /f /fill load def /S /scale load def /R /rotate load def /T /translate load def /L /setlinewidth load def /N /newpath load def /C /closepath load def -%%EndSetup -gsave -130 309 354 207 rectclip -0 0 0.15 1 10 SU -177 434 T -N -0.15 L -0 nxsetgray -294 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -177 378 T -N -0.15 L -0 nxsetgray -294 0 0 0 line -0 0 T -grestore -0 0 0.15 1 10 SU -[4] 0 setdash -219 434 T -N -0.15 L -0 nxsetgray -0 42 0 0 line -0 0 T -grestore -0 0 3 1 10 SU -149 434 T -N -3 L -0 nxsetgray -70 -70 0 70 line -0 0 T -grestore -0 0 3 1 10 SU -149 476 T -N -3 L -0 nxsetgray -28 -28 0 28 line --45.001328 28 0 arrow -0 0 T -grestore -0 0 3 1 10 SU -219 434 T -N -0.227592 nxsetgray -56 56 0 0 line -45.001328 56 56 arrow -3 L -0.227592 nxsetgray -56 56 0 0 line -45.001328 56 56 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[4] 0 setdash -247 336 T -N -0.15 L -0 nxsetgray -0 42 0 0 line -0 0 T -grestore -0 0 3 1 10 SU -247 322 T -N -0.400006 nxsetgray -56 -56 0 56 line --45.001328 56 0 arrow -3 L -0.400006 nxsetgray -56 -56 0 56 line --45.001328 56 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[4] 0 setdash -303 336 T -N -0.15 L -0 nxsetgray -0 42 0 0 line -0 0 T -grestore -0 0 3 1 10 SU -303 322 T -N -0.455168 nxsetgray -56 -56 0 56 line --45.001328 56 0 arrow -3 L -0.455168 nxsetgray -56 -56 0 56 line --45.001328 56 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[4] 0 setdash -275 434 T -N -0.15 L -0 nxsetgray -0 42 0 0 line -0 0 T -grestore -0 0 3 1 10 SU -275 434 T -N -0.337931 nxsetgray -56 56 0 0 line -45.001328 56 56 arrow -3 L -0.337931 nxsetgray -56 56 0 0 line -45.001328 56 56 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[4] 0 setdash -331 434 T -N -0.15 L -0 nxsetgray -0 42 0 0 line -0 0 T -grestore -0 0 3 1 10 SU -331 434 T -N -3 L -0.544832 nxsetgray -56 56 0 0 line -45.001328 56 56 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[4] 0 setdash -387 434 T -N -0.15 L -0 nxsetgray -0 42 0 0 line -0 0 T -grestore -0 0 3 1 10 SU -387 434 T -N -3 L -0.641377 nxsetgray -56 56 0 0 line -45.001328 56 56 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[4] 0 setdash -359 336 T -N -0.15 L -0 nxsetgray -0 42 0 0 line -0 0 T -grestore -0 0 3 1 10 SU -359 322 T -N -3 L -0.599994 nxsetgray -56 -56 0 56 line --45.001328 56 0 arrow -0 0 T -grestore -0 0 0.15 1 10 SU -[4] 0 setdash -415 336 T -N -0.15 L -0 nxsetgray -0 42 0 0 line -0 0 T -grestore -0 0 3 1 10 SU -415 322 T -N -3 L -0.772408 nxsetgray -56 -56 0 56 line --45.001328 56 0 arrow -0 0 T -grestore -0 0 0 1 10 SU -[1 0 0 -1 152.07254 433] concat -gsave -/Times-Roman findfont 36 scalefont [1 0 0 -1 0 0] makefont -156 -exch -defineuserobject -156 execuserobject setfont -11 29.5 T -1.100856 1.824012 S --9 8 T -N 0 0 m -0 nxsetgray -0 0 m -({) show -0 0 T -grestore -grestore -0 0 0 1 10 SU -[1 0 0 -1 135 417] concat -gsave -/Times-Italic findfont 36 scalefont [1 0 0 -1 0 0] makefont -157 -exch -defineuserobject -157 execuserobject setfont -7 11.5 T --5.5 10 T -N 0 0 m -0 nxsetgray -0 0 m -(t) show -0 0 T -grestore -grestore -0 0 1 1 10 SU -[1 0 0 -1 176 435] concat -[1 0 0 1 1 1] concat -N -0.758614 nxsetgray -0 0 294 56 rectfill -1 L -0 nxsetgray -0 0 294 56 rectstroke -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 206.500015 463] concat -gsave -/Symbol findfont 18 scalefont [1 0 0 -1 0 0] makefont -190 -exch -defineuserobject -190 execuserobject setfont -6 9.5 T --5 4 T -N 0 0 m -0 nxsetgray -0 0 m -(f) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 189 466] concat -[1 0 0 -1 1 59] concat -N -0.15 L -0 nxsetgray -N -29 29 29 90 138.366455 arc -s -0 0 T -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 131 482] concat -gsave -/Times-Roman findfont 24 scalefont [1 0 0 -1 0 0] makefont -211 -exch -defineuserobject -211 execuserobject setfont -14 9.5 T --13 8 T -N 0 0 m -0 nxsetgray -0 0 m -(air) show -0 0 T -grestore -grestore -0 0 0.15 1 10 SU -[1 0 0 -1 178 394] concat -gsave -/Times-Roman findfont 18 scalefont [1 0 0 -1 0 0] makefont -210 -exch -defineuserobject -210 execuserobject setfont -19 9.5 T --18 4 T -N 0 0 m -0 nxsetgray -0 0 m -(glass) show -0 0 T -grestore -grestore -gsave -0 0 612 792 rectclip -[1 0 0 -1 0 792] concat -grestore -grestore -showpage -%%Trailer -%%DocumentFonts: Symbol -%%+ Times-Italic -%%+ Times-Roman diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob24.gif b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob24.gif deleted file mode 100755 index d11892c6a..000000000 Binary files a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob24.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob25.eps b/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob25.eps deleted file mode 100755 index f02f9feb6..000000000 --- a/lib/WeBWorK/htdocs/CAPA_Graphics/Gtype73/prob25.eps +++ /dev/null @@ -1,378 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: Untitled2.create -%%Creator: Create -%%CreationDate: Wed Mar 26 11:24:14 1997 -%%For: teacher -%%DocumentFonts: (atend) -%%Pages: 0 0 -%%BoundingBox: 127 221 490 523 -%%NXNextStepVersion: 3.0 -%%EndComments -%%BeginProcSet: /usr/lib/NextStep/printPackage.ps 3.0 -%! -% NeXT Printing Package -% Version: 3.1 -% Copyright: 1988, NeXT, Inc. -/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def -/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def -/UserObjects 10 array __NXdef -/defineuserobject{ - exch dup 1 add dup UserObjects length gt{ - array dup 0 UserObjects putinterval - /UserObjects exch def - }{pop}ifelse UserObjects exch 3 -1 roll put -}__NXbdef -/undefineuserobject{UserObjects exch null put}__NXbdef -/execuserobject{UserObjects exch get exec}__NXbdef -/__NXRectPath{4 2 roll moveto 1 index 0 rlineto -0 exch rlineto neg 0 rlineto closepath}__NXbdef -/__NXProcessRectArgs{ - 1 index type /arraytype eq{ - exch 0 4 2 index length 1 sub{ - dup 3 add 1 exch{1 index exch get exch}for - 5 1 roll 5 index exec - }for pop pop - }{exec}ifelse -}__NXbdef -/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef -/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef -/rectstroke{ - gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{ - {gsave __NXRectPath null concat stroke grestore} - dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs - }{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore -}__NXbdef -/_NXLevel2 systemdict /languagelevel known {languagelevel 2 ge}{false}ifelse __NXdef -/xyshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index 2 mul 1 add get add exch - 3 index 3 index 2 mul get add exch moveto pop - }for pop pop -}__NXbdef -/xshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - exch 3 index 3 index get add exch moveto pop - }for pop pop -}__NXbdef -/yshow{ - 0 1 3 index length 1 sub{ - currentpoint 4 index 3 index 1 getinterval show - 3 index 3 index get add moveto pop - }for pop pop -}__NXbdef -/arct{arcto pop pop pop pop}__NXbdef -/setbbox{pop pop pop pop}__NXbdef -/ucache{}__NXbdef -/ucachestatus{mark 0 0 0 0 0}__NXbdef -/setucacheparams{cleartomark}__NXbdef -/uappend{systemdict begin cvx exec end}__NXbdef -/ueofill{gsave newpath uappend eofill grestore}__NXbdef -/ufill{gsave newpath uappend fill grestore}__NXbdef -/ustroke{ - gsave newpath dup length 6 eq - {exch uappend concat}{uappend}ifelse - stroke grestore -}__NXbdef -/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse -/ustrokepath{ - newpath dup length 6 eq{ - exch uappend __NXustrokepathMatrix currentmatrix exch concat - strokepath setmatrix - }{uappend strokepath}ifelse -} __NXbdef -/upath{ - [exch {/ucache cvx}if pathbbox /setbbox cvx - {/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx -} __NXbdef -/setstrokeadjust{pop}__NXbdef -/currentstrokeadjust{false}__NXbdef -/selectfont{exch findfont exch -dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef -/_NXCombineArrays{ - counttomark dup 2 add index dup length 3 -1 roll { - 2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch - }repeat pop pop pop -}__NXbdef -/flushgraphics{}def -/setwindowtype{pop pop}def -/currentwindowtype{pop 0}def -/setalpha{pop}def -/currentalpha{1.0}def -/hidecursor{}def -/obscurecursor{}def -/revealcursor{}def -/setcursor{4 {pop}repeat}bind def -/showcursor{}def -/NextStepEncoding where not{ -/NextStepEncoding StandardEncoding 256 array copy def -0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave -/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis -/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute -/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright -176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior -204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave -/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute -/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth -/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute -/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis] -{dup type /nametype eq - {NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse -}forall pop -/NextStepEncoding NextStepEncoding readonly def -/_NXfstr 128 string dup 0 (_NX) putinterval def -/_NXfindfont /findfont load def -/findfont{ - % Because we can never let NextStepEncoding get into - % SharedFontDirectory, we cannot reencode a font to NextStepEncoding - % if we are in shared mode. So if currentshared is true, - % we call the normal findfont and return that - /currentshared where {pop currentshared} {false} ifelse - {_NXfindfont} - {dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll - getinterval cvn exch FontDirectory 2 index known - {pop FontDirectory exch get} - {_NXfindfont dup /Encoding get StandardEncoding eq - { dup length dict exch - {1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall - dup /Encoding NextStepEncoding put definefont - }{exch pop} ifelse - }ifelse - }ifelse -}bind def -}{pop}ifelse -/_NXImageString {/__NXImageString where{pop}{/__NXImageString 4000 string __NXdef}ifelse __NXImageString}__NXbdef -/_NXDoImageOp{ - 3 dict begin /parr 5 array def 1 index{dup}{1}ifelse /chans exch def - chans 2 add 2 roll parr 0 chans getinterval astore pop - 5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse - 4 index mul /totbytes exch def pop exch pop - gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore - {0 1 chans 1 sub{parr exch get exec length totbytes exch sub /totbytes exch def}for totbytes 0 le{exit}if}loop end -}__NXbdef -/alphaimage{1 add _NXDoImageOp}def -_NXLevel2{ - /NXCalibratedRGBColorSpace where{pop}{ - /NXCalibratedRGBColorSpace - {mark /NXCalibratedRGB /ColorSpace findresource exch pop}stopped - {cleartomark /NXCalibratedRGB[/CIEBasedABC 2 dict dup begin - /MatrixLMN[.4124 .2126 .0193 .3576 .7152 .1192 .1805 .0722 .9505]def - /WhitePoint[.9505 1 1.089] def end] /ColorSpace defineresource}if def}ifelse - /nxsetrgbcolor{NXCalibratedRGBColorSpace setcolorspace setcolor}__NXbdef - /nxsetgray{dup dup nxsetrgbcolor}__NXbdef - /_NXCalibratedImage{exch{array astore dup length true}{false}ifelse - 8 -1 roll{NXCalibratedRGBColorSpace setcolorspace}if - 8 dict dup 9 1 roll begin /ImageType 1 def /MultipleDataSources exch def - currentcolorspace 0 get /Indexed eq{pop /Decode[0 2 6 index exp 1 sub]def} - {2 mul dup array /Decode exch def 1 sub 0 1 3 -1 roll{Decode exch dup 2 mod put}for}ifelse - /DataSource exch def /ImageMatrix exch def - /BitsPerComponent exch def /Height exch def /Width exch def end image}__NXbdef -} { - /setcmykcolor{ - 1.0 exch sub dup dup 6 -1 roll sub dup 0 lt{pop 0}if 5 1 roll - 4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll exch sub dup 0 lt{pop 0}if setrgbcolor}__NXbdef - /currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef - /colorimage{2 copy 3 ne or{_NXDoImageOp}{4 index dup 8 ne exch 4 ne and{_NXDoImageOp}{ - pop pop save 6 1 roll 12 dict begin/Proc exch def/Res 0 string def - /Alloc{2 index length mul 2 add dup 2 index load length gt{1.2 mul round cvi string def}{pop pop}ifelse}def - 1 index 8 eq{/Unpack{.34 Alloc}def}{ - /Wid 4 index 3 mul def exch pop 8 exch/Str1 0 string def/Lim Wid def - /Unpack{.67 Alloc/Str1 2 Alloc 0 exch Lim exch - {dup -4 bitshift 17 mul Str1 exch 4 index exch put 15 and 17 mul Str1 exch 3 index 1 add exch put - 2 sub dup 0 le{0 lt Wid exch{exch 1 sub exch}if}if exch 2 add exch - }forall/Lim exch def Str1 exch 0 exch getinterval - }def - }ifelse - /Ops[{.3 mul add 1}{.59 mul add 2}{.11 mul add round cvi Res exch 2 index exch put 1 add 0.0 0}]def/Val 0.0 def/Phase 0 def - {0 Val Phase Proc/Res Unpack{exch Ops exch get exec}forall/Phase exch def/Val exch def Res exch 0 exch getinterval} - image end restore}ifelse}ifelse - }__NXbdef - /nxsetrgbcolor{setrgbcolor}__NXbdef /nxsetgray{setgray}__NXbdef - /setpattern{pop .5 setgray}__NXbdef - /_NXCalibratedImage{dup 1 eq {pop pop image}{colorimage}ifelse pop}__NXbdef -} ifelse -/_NXSetCMYKOrRGB where{pop}{ - mark{systemdict /currentwindow get exec}stopped - {{pop pop pop setcmykcolor}}{{nxsetrgbcolor pop pop pop pop}}ifelse /_NXSetCMYKOrRGB exch def cleartomark -}ifelse -%%EndProcSet -% Create(TM) Embedded Graphics -% +.\Jr(LfeX#JucDb`na@U0S)'rdh!WEUEorA^]b -% :R97(iDaL)21)8lA'JMC4,U`Q2/l`3K+ILQqP,`iR)1_W[ldaT\n5W/[O@]:g'XKkh-0VGYL -% mbbh]9K(L6S_;Q8+GV9*a`ER>Z_2,s$!?,9Jq5]9?(ZhZ_#lNe#)WbgTZ.i"/M -% r!"Th)+IPDa>$"Ce'ed"3TUk_(r?-O^tOBu]N+H%;hjUe5o1W`6d1RB'p$BaPEMPQ2(6#W3G -% c[Og)W8^7ACYa-kF!,qrE+9]N^h7H&4#'_)rDqp.\#&25E_+2Eu5pFSTnB%<#+J0MJj0[BUh -% n=LWi&s_6Y@YD4!,0g'eLO`t_'5Xl9Lo38f3%diFplo5RbMN^&C -% OF\u=e1ecW?0oC]*-@PK!uGCU0h3,dRdl+OFO208)dFeYi>d&L1^=:WPei(p5p[8c%Xfb@72 -% o[VE<[@=^n;m00$4d$!X=\T"rhJ'Gi9,;1)++*>b"Yf)/]l)`J&H!0dMW+NZgk#>en`2)-kO -% >`sjb"WFZJpa=ouIGfUH6$q+hZ!tI0?5UMpWi':nA2_:mR%6B]8.L -% 12^$`e&?;iPpO^CcI%U)31u[(^bk&7#rH)J]C&qYYbT4+OG[/)'I:6.L9Rl\-<4ZUuB<2>UX -% R3)i^!]Jf(G@0o#fZH?'Wm"V?A<*(tQ9^h=;`dK+WO!"]D\!2N,SH@<>Z)16GGa1rrLe-FZT -% j#34O9"f(=K1n*Bd)6K0a>&FJ94:_T!1F<.6im]tWucV,Be(.3!6@*$@JDi`Y!;IpJ:f(02# -% M;'mW#ij!2..%.oHg$3I$4QhM@]9GO:N^&:^6E#HtE6/`Z6Q0ZH+AnG&k_s00P-?:qup/be"TD8clkl] -% ^Tp#d7j,82rbj/#Y?/tZY+^j4`t+",Q.8Pnc;$C"@'sDL)L0l+LT0gCCHYF$#DbFafD*tLuF -% .#Z?YDA_hC!eUD2(`d?#O7O5.V+N&(SJXMMp5fX@^0^t],HDK-$T/tX#cBT`'4JQQ<5j0ec, -% Z.5.K9tB@kGHEmp_@pkc&"s(Z]%X_)2gAhPf1\`k>B,pa[#.geg!>*(r\rd,$-rFqK7*8Y,K -% RY"*aHo>5Ii,+$eaW>,JB>p%tCprf(MQfJCApBFf[Z]+b[fcXun3Gd@/YAU=4rk"@*V;#fHb -% b1Bjpl6[dPfQiI7Y0Y#1/)Jt;Hm`qE]#Y-mBL@_DVu[R_Qk!'-6];Sl64 -% 2XA^s%LAN\IMD"BhEg!)+Mj1$E-aL4CO1PX,d%3+O3LfuQZ!`"eTf9."$98J9Fe7&6nP!_*h -% @"@N4k:0\=VDV)aW`G^LN=dUe+LJ'5aF-iU="<[UCJi*U;";;'X+N+6\0M'\$]#Xq/^"/Q`- -% 8:m&S#->\ZH3ppkR$GeJ6ikM!-X7@Sa[mm.1n8&@K:o[%:DFbq3EU]9(ANQX9#pD.a%!lk: -% qg.PMg]98iJI'%9')&gc7P8u3)\"NtV$-n823&^-Wp&_-$3<,*I]3_4ga_iEkYS&U9pbuJ_N -% 9L.TRdS4d0WUuC4O^-!WX2G5el%DZ\ufNXp;!'iZn>C+Tts\U%jl/+feln+qmRmT#pgAM%eFau>?;L:=nq8cXP1dHiIS\ -% 8Fql"I\R\ROFg8;?2PMAjnAEfS]`uGQCn2!ItebGC=l/gNI)=RR"Z='_HI!3qtBk6#:$Dq:" -% !eFD5&U\:=R1\-E!t^tq@JR)4K[0S\E,fRH)NL@a4D+eZHK(P!Y?oN9:fh3)15_R=-arGE@f -% Mn<6FFgnW;[3jlOe4-()9$Zn`C&3rB( -% !L7"WI69)hIPV 0) - { - polar_color = getColor("polar_color", "255255255"); - polar_origin_x = getInteger("polar_origin_x", 0, image_width - 1, image_width/2); - polar_origin_y = getInteger("polar_origin_y", 0, image_height - 1, image_height/2); - } - - grid_sw = getInteger("grid_sw", 0, 1, 0); - grid_x_start = getInteger("grid_x_start", 0, image_width - 1, 0); - grid_dx = getInteger("grid_dx", 2, image_width - 1, 10); - grid_y_start = getInteger("grid_y_start", 0, image_height - 1, 0); - grid_dy = getInteger("grid_dy", 1, image_height - 1, 10); - grid_color = getColor("grid_color", "000000000"); - grid_width = getInteger("grid_width", 0, image_width, image_width); - grid_height = getInteger("grid_height", 0, image_height, image_height); - grid_fill_sw = getInteger("grid_fill_sw", 0, 1, 0); - } - - public void paint(Graphics g) - { - super.paint(g); - drawcursors(); - g.drawImage(bI, 0, 0, this); - } - - public void update(Graphics g) - { - paint(g); - } - - public void drawcursors() - { - int work, work_x, work_y; - int center_x, center_y; - int real_y; - String angle_string; - - bG.setColor(back_color); - bG.fillRect(0, 0, applet_width, applet_height); - bG.drawImage(backdrop, margin_x, margin_y, this); - - if(grid_sw == 1) - { - bG.setColor(grid_color); - for (int ix = grid_x_start; ix <= grid_x_start + grid_width - 1; ix = ix + grid_dx) - { - bG.drawLine(margin_x + ix, margin_y + image_height - 1 - grid_y_start, - margin_x + ix, margin_y + image_height - grid_y_start - grid_height); - } - for (int iy = grid_y_start; iy <= grid_y_start + grid_height - 1; iy = iy + grid_dy) - { - bG.drawLine(margin_x + grid_x_start, margin_y + image_height - 1 - iy, - margin_x + grid_x_start + grid_width - 1, margin_y + image_height - 1 - iy); - } - } - - if (polar_sw > 0) - { - - // Draw polar grid - - bG.setColor(polar_color); - - // Compute center for diagonal polar grid lines - - center_x = margin_x + polar_origin_x; - center_y = margin_y + image_height - 1 - polar_origin_y; - - // Draw horizontal and vertical polar grid lines - - bG.drawLine(margin_x, center_y, margin_x + image_width - 1, center_y); - bG.drawLine(center_x, margin_y, center_x, margin_y + image_height - 1); - - // Draw 45 degree polar grid line - - work = java.lang.Math.min(image_width - 1 - polar_origin_x, polar_origin_y) + 1; - bG.drawLine(center_x, center_y, center_x + work, center_y + work); - - // Draw -45 degree polar grid line - - work = java.lang.Math.min(image_width - polar_origin_x, image_height - polar_origin_y) + 1; - bG.drawLine(center_x, center_y, center_x + work, center_y - work); - - // Draw 135 degree polar grid line - - work = java.lang.Math.min(polar_origin_x, polar_origin_y) + 1; - bG.drawLine(center_x, center_y, center_x - work, center_y + work); - - // Draw -135 degree polar grid line - - work = java.lang.Math.min(polar_origin_x, image_height - 1 - polar_origin_y); - bG.drawLine(center_x, center_y, center_x - work, center_y - work); - } - - // Draw control buttons - - if (record_sw == 0) - { - if (display_sw > 0) - { - record_button.draw_off(bG); - if (save_index > 0) - { - clear_button.draw_off(bG); - if (display_sw == 1) - list_button.draw_off(bG); - } - else - { - clear_button.draw_on(bG); - if (display_sw == 1) - list_button.draw_on(bG); - } - } - } - else - { - if (display_sw > 0) - { - record_button.draw_on(bG); - if (display_sw == 1) - list_button.draw_off(bG); - if (save_index > 0) - { - clear_button.draw_off(bG); - } - else - { - clear_button.draw_on(bG); - } - } - } - - // Draw marks at recorded points - - if ((mark_sw > 0) & (grid_fill_sw == 0)) - { - bG.setColor(mark_color); - for (int i = 0; i < save_index; i = i + 1) - { - work_x = margin_x + save_x[i]; // x- and y-coordinates of marked point - work_y = margin_y + image_height - save_y[i] - 1; - - if (mark_sw == 1) // Mark by open box - { - bG.drawLine(work_x - mark_radius, work_y + mark_radius, work_x + mark_radius, work_y + mark_radius); - bG.drawLine(work_x - mark_radius, work_y - mark_radius, work_x + mark_radius, work_y - mark_radius); - bG.drawLine(work_x - mark_radius, work_y - mark_radius, work_x - mark_radius, work_y + mark_radius); - bG.drawLine(work_x + mark_radius, work_y - mark_radius, work_x + mark_radius, work_y + mark_radius); - } - - if (mark_sw == 2) // Mark by solid box - { - for (int j = -mark_radius; j <= mark_radius; j = j + 1) - bG.drawLine(work_x - mark_radius, work_y + j, work_x + mark_radius, work_y + j); - } - - if (mark_sw == 3) // Mark by open diamond - { - bG.drawLine(work_x - mark_radius, work_y, work_x, work_y + mark_radius); - bG.drawLine(work_x, work_y + mark_radius, work_x + mark_radius, work_y); - bG.drawLine(work_x + mark_radius, work_y, work_x, work_y - mark_radius); - bG.drawLine(work_x, work_y - mark_radius, work_x - mark_radius, work_y); - } - - if (mark_sw == 4) // Mark by solid diamond (default) - { - for (int j = 0; j <= mark_radius; j = j + 1) - { - bG.drawLine(work_x - mark_radius + j, work_y + j, work_x + mark_radius - j, work_y + j); - bG.drawLine(work_x - mark_radius + j, work_y - j, work_x + mark_radius - j, work_y - j); - } - } - } - } - - // Draw lines connecting marked points - - if ((mark_sw > 0) & (mark_connect == 1) & (grid_fill_sw == 0)) - { - bG.setColor(mark_color); - x_start = margin_x + save_x[0]; - y_start = margin_y + image_height - save_y[0] - 1; - for (int i = 1; i < save_index; i = i + 1) - { - work_x = margin_x + save_x[i]; - work_y = margin_y + image_height - save_y[i] - 1; - bG.drawLine(x_start, y_start, work_x, work_y); - x_start = work_x; - y_start = work_y; - } - } - - if ((grid_fill_sw == 1) & (grid_sw == 1)) - { - bG.setColor(mark_color); - for (int i = 0; i < save_index; i = i + 1) - { - work_x = (int) java.lang.Math.floor((save_x[i] - grid_x_start + 100 * grid_dx)/grid_dx) - 100; - work_x = grid_x_start + grid_dx * work_x; - work_y = (int) java.lang.Math.floor((save_y[i] - grid_y_start + 100 * grid_dy)/grid_dy) - 100; - work_y = grid_y_start + grid_dy * work_y + grid_dy; - bG.fillRect(margin_x + work_x + 1, margin_y + image_height - work_y, grid_dx - 1, grid_dy - 1); - } - } - - if (curve_sw == 1) // Draw curve specified as y(x) - { - curve_t = curve_a; - x.set_value(curve_a); - bG.setColor(curve_color); - x_start = (int) java.lang.Math.round(curve_a); - y_start = (int) java.lang.Math.round(y_of_x.value()); - for (int i = 1; i <= curve_n; i = i + 1) - { - curve_t = curve_t + curve_dt; - x.set_value(curve_t); - x_end = (int) java.lang.Math.round(curve_t); - y_end = (int) java.lang.Math.round(y_of_x.value()); - for (int j = -curve_thickness; j <= curve_thickness; j = j + 1) - { - for (int k = -curve_thickness; k <= curve_thickness; k = k + 1) - { - bG.drawLine(margin_x + x_start + j, - margin_y + image_height - 1 - y_start + k, - margin_x + x_end + j, - margin_y + image_height - 1 - y_end + k); - } - } - x_start = x_end; - y_start = y_end; - } - } - - if (curve_sw == 2) // Draw curve specified as x(t), y(t) - { - curve_t = curve_a; - t.set_value(curve_a); - bG.setColor(curve_color); - x_start = (int) java.lang.Math.round(x_of_t.value()); - y_start = (int) java.lang.Math.round(y_of_t.value()); - for (int i = 1; i <= curve_n; i = i + 1) - { - curve_t = curve_t + curve_dt; - t.set_value(curve_t); - x_end = (int) java.lang.Math.round(x_of_t.value()); - y_end = (int) java.lang.Math.round(y_of_t.value()); - for (int j = -curve_thickness; j <= curve_thickness; j = j + 1) - { - for (int k = -curve_thickness; k <= curve_thickness; k = k + 1) - { - bG.drawLine(margin_x + x_start + j, - margin_y + image_height - 1 - y_start + k, - margin_x + x_end + j, - margin_y + image_height - 1 - y_end + k); - } - } - x_start = x_end; - y_start = y_end; - } - } - - if ((curve_sw == 3) & (polar_sw > 0)) - { - center_x = margin_x + polar_origin_x; - center_y = margin_y + image_height - 1 - polar_origin_y; - - curve_t = curve_a; - t.set_value(curve_t); - theta.set_value(curve_t); - bG.setColor(curve_color); - x_start = (int) java.lang.Math.round( - center_x + java.lang.Math.cos(curve_t) * r_of_theta.value()); - y_start = (int) java.lang.Math.round( - center_y - java.lang.Math.sin(curve_t) * r_of_theta.value()); - for (int i = 1; i <= curve_n; i = i + 1) - { - curve_t = curve_t + curve_dt; - t.set_value(curve_t); - theta.set_value(curve_t); - x_end = (int) java.lang.Math.round( - center_x + java.lang.Math.cos(curve_t) * r_of_theta.value()); - y_end = (int) java.lang.Math.round( - center_y - java.lang.Math.sin(curve_t) * r_of_theta.value()); - for (int j = -curve_thickness; j <= curve_thickness; j = j + 1) - { - for (int k = -curve_thickness; k <= curve_thickness; k = k + 1) - bG.drawLine(x_start + j, y_start + k, x_end + j, y_end + k); - } - x_start = x_end; - y_start = y_end; - } - } - - // Draw cursors - - bG.setColor(cursor_color); - bG.drawLine(margin_x + cursor_x, margin_y, margin_x + cursor_x, margin_y + image_height - 1); - bG.drawLine(margin_x, margin_y + cursor_y, margin_x + image_width - 1, margin_y + cursor_y); - - // Draw controls to move cursor one pixel at a time - - bG.setColor(controls_color); - for (int i = 0; i <= cursor_size; i = i + 1) - { - if (cursor_pad_sw == 0) - { - bG.drawLine(mid_x - i, margin_y - 10 - cursor_size + i, mid_x + i, margin_y - 10 - cursor_size + i); - bG.drawLine(mid_x - i, margin_y + 10 + image_height + cursor_size - i, - mid_x + i, margin_y + 10 + image_height + cursor_size - i); - bG.drawLine(margin_x - 10 - cursor_size + i, mid_y - i, margin_x - 10 - cursor_size + i, mid_y + i); - bG.drawLine(margin_x + image_width + 10 + cursor_size - i, mid_y - i, - margin_x + image_width + 10 + cursor_size - i, mid_y + i); - } - else - { - bG.drawLine(cursor_pad_x - i, 5 + cursor_pad_y + 10 + cursor_size - i, - cursor_pad_x + i, 5 + cursor_pad_y + 10 + cursor_size - i); - bG.drawLine(cursor_pad_x - i, cursor_pad_y - 10 - cursor_size + i - 5, - cursor_pad_x + i, cursor_pad_y - 10 - cursor_size + i - 5); - bG.drawLine(5 + cursor_pad_x + 10 + cursor_size - i, cursor_pad_y - i, - 5 + cursor_pad_x + 10 + cursor_size - i, cursor_pad_y + i); - bG.drawLine(cursor_pad_x - 10 - cursor_size + i - 5, cursor_pad_y - i, - cursor_pad_x - 10 - cursor_size + i - 5, cursor_pad_y + i); - } - } - - // Print cursor coordinates - - bG.drawString("x: " + String.valueOf(cursor_x), coordinates_left, coordinates_top + font_size); - bG.drawString("y: " + String.valueOf(image_height - cursor_y - 1), coordinates_left, - coordinates_top + 2 * font_size + 5); - if (grid_fill_sw == 1) - bG.drawString("count: " + String.valueOf(save_index), coordinates_left, coordinates_top + 3 * font_size + 10); - if (polar_sw > 0) - { - real_y = image_height - cursor_y - 1; - distance = java.lang.Math.sqrt((cursor_x - polar_origin_x) * (cursor_x - polar_origin_x) + - (real_y - polar_origin_y) * (real_y - polar_origin_y)); - bG.drawString("r: " + formatdouble(distance, 7, 2), - coordinates_left, coordinates_top + 3 * font_size + 10); - if (cursor_x == polar_origin_x) - { - if (polar_sw == 1) - { - if (real_y >= polar_origin_y) - angle_string = " 1.5708"; - else - angle_string = " 4.7124"; - if (real_y == polar_origin_y) - angle_string = " undefined"; - } - else - { - if (real_y >= polar_origin_y) - angle_string = " 90.00"; - else - angle_string = " 270.00"; - if (real_y == polar_origin_y) - angle_string = " undefined"; - } - } - else - { - angle = java.lang.Math.atan(1.0 * (real_y - polar_origin_y)/(cursor_x - polar_origin_x)); - if (cursor_x < polar_origin_x) - angle = Math.PI + angle; - if (angle < 0) - angle = angle + 2 * Math.PI; - if (polar_sw == 2) - { - angle = angle * 360 / (2 * Math.PI); - angle_string = formatdouble(angle, 10, 2); - } - else - angle_string = formatdouble(angle, 7, 4); - } - bG.drawString("theta: " + angle_string, coordinates_left, coordinates_top + 4 * font_size + 15); - } - } - - public boolean mouseDown(Event evt, int mx, int my) - { - int x_start, y_start, x_end, y_end; - int real_y; - double work; - - if ((mx >= margin_x) & (mx <= margin_x + image_width - 1) & - (my >= margin_y) & (my <= margin_y + image_height - 1)) - { - cursor_x = mx - margin_x; - cursor_y = my - margin_y; - record_sw = 0; - repaint(); - return true; - } - - if (cursor_pad_sw == 0) - { - if ((mx >= margin_x - 10 - cursor_size) & (mx <= margin_x - 10) & - (my >= mid_y - cursor_size) & (my <= mid_y + cursor_size)) - { - cursor_x = java.lang.Math.max(0, cursor_x - 1); - record_sw = 0; - repaint(); - return true; - } - if ((mx >= margin_x + image_width + 10) & (mx <= margin_x + image_width + 10 + cursor_size) & - (my >= mid_y - cursor_size) & (my <= mid_y + cursor_size)) - { - cursor_x= java.lang.Math.min(image_width - 1, cursor_x + 1); - record_sw = 0; - repaint(); - return true; - } - if ((mx >= mid_x - cursor_size) & (mx <= mid_x + cursor_size) & - (my >= margin_y - 10 - cursor_size) & (my <= margin_y - 10)) - { - cursor_y = java.lang.Math.max(0, cursor_y - 1); - record_sw = 0; - repaint(); - return true; - } - if ((mx >= mid_x - cursor_size) & (mx <= mid_x + cursor_size) & - (my >= margin_y + image_height + 10) & (my <= margin_y + image_height + 10 + cursor_size)) - { - cursor_y = java.lang.Math.min(image_height - 1, cursor_y + 1); - record_sw = 0; - repaint(); - return true; - } - } - else - { - if ((mx >= cursor_pad_x - 5 - 2 * cursor_size) & (mx <= cursor_pad_x - 5 - cursor_size) & - (my >= cursor_pad_y - cursor_size - 5) & (my <= cursor_pad_y + cursor_size + 5)) - { - cursor_x = java.lang.Math.max(0, cursor_x - 1); - record_sw = 0; - repaint(); - return true; - } - if ((mx >= cursor_pad_x + 5 + cursor_size) & (mx <= cursor_pad_x + 5 + 2 * cursor_size) & - (my >= cursor_pad_y - cursor_size - 5) & (my <= cursor_pad_y + cursor_size + 5)) - { - cursor_x= java.lang.Math.min(image_width - 1, cursor_x + 1); - record_sw = 0; - repaint(); - return true; - } - if ((mx >= cursor_pad_x - 5 - cursor_size) & (mx <= cursor_pad_x + 5 + cursor_size) & - (my >= cursor_pad_y - 5 - 2 * cursor_size) & (my <= cursor_pad_y - 5 - cursor_size)) - { - cursor_y = java.lang.Math.max(0, cursor_y - 1); - record_sw = 0; - repaint(); - return true; - } - if ((mx >= cursor_pad_x - 5 - cursor_size) & (mx <= cursor_pad_x + 5 + cursor_size) & - (my >= cursor_pad_y + 5 + cursor_size) & (my <= cursor_pad_y + 5 + 2 * cursor_size)) - { - cursor_y = java.lang.Math.min(image_height - 1, cursor_y + 1); - record_sw = 0; - repaint(); - return true; - } - - } - - if (record_button.test(mx, my)) - { - if (record_sw == 0) - { - if (save_index == 1000) - save_index = 0; - real_y = image_height - cursor_y - 1; - save_x[save_index] = cursor_x; - save_y[save_index] = real_y; - distance = java.lang.Math.sqrt((cursor_x - polar_origin_x) * (cursor_x - polar_origin_x) + - (real_y - polar_origin_y) * (real_y - polar_origin_y)); - save_distance[save_index] = formatdouble(distance, 10, 2); - if (cursor_x == polar_origin_x) - { - if (polar_sw == 1) - { - if (real_y >= polar_origin_y) - save_angle[save_index] = " 1.5708"; - else - save_angle[save_index] = " 4.7124"; - if (real_y == polar_origin_y) - save_angle[save_index] = " undefined"; - } - else - { - if (real_y >= polar_origin_y) - save_angle[save_index] = " 90.00"; - else - save_angle[save_index] = " 270.00"; - if (real_y == polar_origin_y) - save_angle[save_index] = " undefined"; - } - } - else - { - angle = java.lang.Math.atan(1.0 * (real_y - polar_origin_y)/(cursor_x - polar_origin_x)); - if (cursor_x < polar_origin_x) - angle = Math.PI + angle; - if (angle < 0) - angle = angle + 2 * Math.PI; - if (polar_sw == 2) - { - angle = angle * 360 / (2 * Math.PI); - save_angle[save_index] = formatdouble(angle, 10, 2); - } - else - save_angle[save_index] = formatdouble(angle, 10, 4); - } - save_index = save_index + 1; - record_sw = 1; - repaint(); - return true; - } - } - if (clear_button.test(mx, my)) - { - save_index = 0; - record_sw = 0; - repaint(); - return true; - } - if (list_button.test(mx, my) & (display_sw == 1)) - { - list_window = new DataDisplayFrame("List of marked points"); - list_window.hide(); - list_window.clearText(); - list_window.addText("The way in which you copy information from this window into\n"); - list_window.addText("another window depends on the browser and operating system you are\n"); - list_window.addText("using. One of the following methods should work.\n\n"); - list_window.addText("* Highlight the information to be copied in this window.\n"); - list_window.addText(" Then copy it by pressing command-c. Next click in the area\n"); - list_window.addText(" into which it is to be pasted and press command-v.\n\n"); - list_window.addText("* Highlight the information to be copied in this window.\n"); - list_window.addText(" Then copy it by pressing control-c. Next click in the area\n"); - list_window.addText(" into which it is to be pasted and press control-v.\n\n"); - list_window.addText("* Highlight the information to be copied in this window.\n"); - list_window.addText(" then drag it into the window into which it is to be pasted.\n\n"); - - if (cas_sw == 0) // Format for Maple - { - list_window.addText("n := "); - list_window.addText(String.valueOf(save_index)); - list_window.addText(";\n\n"); - list_window.addText("x := ["); - for (int i = 0; i < save_index; i = i + 1) - { - list_window.addText(String.valueOf(save_x[i])); - if (i < save_index - 1) - { - list_window.addText(", "); - if (i == 10 * (i/ 10) + 9) - list_window.addText("\n "); - } - } - list_window.addText("];\n\n"); - list_window.addText("y := ["); - for (int i = 0; i < save_index; i = i + 1) - { - list_window.addText(String.valueOf(save_y[i])); - if (i < save_index - 1) - { - list_window.addText(", "); - if (i == 10 * (i/ 10) + 9) - list_window.addText("\n "); - } - } - list_window.addText("];\n\n"); - if (polar_sw > 0) - { - list_window.addText("r := ["); - for (int i = 0; i < save_index; i = i + 1) - { - list_window.addText(save_distance[i]); - if (i < save_index - 1) - { - list_window.addText(", "); - if (i == 10 * (i/10) + 9) - list_window.addText("\n "); - } - } - list_window.addText("];\n\n"); - list_window.addText("t := ["); - for (int i = 0; i < save_index; i = i + 1) - { - list_window.addText(save_angle[i]); - if (i < save_index - 1) - { - list_window.addText(", "); - if (i == 10 * (i/10) + 9) - list_window.addText("\n "); - } - } - list_window.addText("];\n\n"); - } - } - else - if (cas_sw == 1) // Format for Mathematica - { - list_window.addText("n := "); - list_window.addText(String.valueOf(save_index)); - list_window.addText("\n\n"); - list_window.addText("x := {"); - for (int i = 0; i < save_index; i = i + 1) - { - list_window.addText(String.valueOf(save_x[i])); - if (i < save_index - 1) - { - list_window.addText(", "); - if (i == 10 * (i/ 10) + 9) - list_window.addText("\n "); - } - } - list_window.addText("}\n\n"); - list_window.addText("y := {"); - for (int i = 0; i < save_index; i = i + 1) - { - list_window.addText(String.valueOf(save_y[i])); - if (i < save_index - 1) - { - list_window.addText(", "); - if (i == 10 * (i/ 10) + 9) - list_window.addText("\n "); - } - } - list_window.addText("}\n\n"); - if (polar_sw > 0) - { - list_window.addText("r := {"); - for (int i = 0; i < save_index; i = i + 1) - { - list_window.addText(save_distance[i]); - if (i < save_index - 1) - { - list_window.addText(", "); - if (i == 10 * (i/10) + 9) - list_window.addText("\n "); - } - } - list_window.addText("}\n\n"); - list_window.addText("t := {"); - for (int i = 0; i < save_index; i = i + 1) - { - list_window.addText(save_angle[i]); - if (i < save_index - 1) - { - list_window.addText(", "); - if (i == 10 * (i/10) + 9) - list_window.addText("\n "); - } - } - list_window.addText("}\n\n"); - } - } - if (cas_sw == 2) // Format for Excel - { - if (polar_sw == 0) - list_window.addText("x-coordinate \t y-coordinate\n\n"); - if (polar_sw == 1) - list_window.addText("x-coordinate \t y-coordinate \t distance \t angle (radians)\n\n"); - if (polar_sw == 2) - list_window.addText("x-coordinate \t y-coordinate \t distance \t angle (degrees)\n\n"); - for (int i = 0; i < save_index; i = i + 1) - { - list_window.addText(leftfill(6, String.valueOf(save_x[i]))); - list_window.addText("\t "); - list_window.addText(leftfill(6, String.valueOf(save_y[i]))); - if (polar_sw > 0) - list_window.addText("\t" + save_distance[i] + "\t" + save_angle[i]); - list_window.addText("\n"); - } - } - list_window.pack(); - list_window.show(); - } - return true; - } - - public void tell_error(String message) - { - message_window = new DataDisplayFrame("Expression Error"); - message_window.hide(); - message_window.clearText(); - message_window.addText("An error has been detected in an algebraic expression.\n\n"); - message_window.addText(message); - message_window.addText("\n\n"); - message_window.addText(recovery_message_line_1); - message_window.addText("\n"); - message_window.addText(recovery_message_line_2); - message_window.addText("\n"); - message_window.pack(); - message_window.show(); - return; - } - - // - // Used to right justify output - // - - public String leftfill(int n, String str) - { - int k; - String body; - body = str; - k = body.length(); - body = " "; - body = body.substring(0, n - k) + str; - return body; - } -} - -// -// The following is used to display information in a form that -// can be imported into another program by cut-and-paste -// - -class DataDisplayFrame extends Frame -{ - final static Font textfont = new Font("Courier", Font.PLAIN, 12); - - TextArea txt = new TextArea(); - - public DataDisplayFrame (String title) - { - super(title); - txt.setEditable(true); - txt.setFont(textfont); - add(txt); - } - - public void addText(String text) - { - txt.setText(txt.getText() + text); - } - - public void clearText() - { - txt.setText(""); - } - - public boolean handleEvent(Event evt) - { - if (evt.id == Event.WINDOW_DESTROY) - dispose(); - return super.handleEvent(evt); - } -} - -// -// The following were written by Frank Wattenberg -// - -class VCRButton -{ - // - // On-off button - // Click to turn on - // - - public int left; - public int top; - public int width; - public int height; - public String label; - public Color button_color, back_color, shadow_color; - - public VCRButton(int left, int top, int width, int height, - Color button_color, Color back_color, Color shadow_color, String label) - { - this.left = left; - this.top = top; - this.width = width; - this.height = height; - this.button_color = button_color; - this.back_color = back_color; - this.shadow_color = shadow_color; - this.label = label; - } - - public void draw_on(Graphics g) - { - g.setColor(back_color); - g.fillRect(left, top, width, height); - g.setColor(button_color); - g.fillRect(left + 3, top + 3, width - 3, height - 3); - g.setColor(shadow_color); - g.drawString(label, left + width/2 - g.getFontMetrics().stringWidth(label)/2, top + height + height/2); - } - - public void draw_off(Graphics g) - { - g.setColor(back_color); - g.fillRect(left, top, width, height); - g.setColor(shadow_color); - g.fillRect(left + 3, top + 3, width - 3, height - 3); - g.setColor(button_color); - g.fillRect(left, top, width - 3, height - 3); - g.setColor(shadow_color); - g.drawString(label, left + width/2 - g.getFontMetrics().stringWidth(label)/2, top + height + height/2); - } - - public boolean test(int mx, int my) - { - if ((mx >= left) & (mx <= left + width) & - (my >= top) & (my <= top + height)) - return true; - else - return false; - } -} - -// -// The following was written by Darius Bacon -// - -abstract class Expr { - - /** @return the value given the current variable values */ - public abstract double value(); - - /** Binary operator: addition */ public static final int ADD = 0; - /** Binary operator: subtraction */ public static final int SUB = 1; - /** Binary operator: multiplication */ public static final int MUL = 2; - /** Binary operator: division */ public static final int DIV = 3; - /** Binary operator: exponentiation */ public static final int POW = 4; - /** Binary operator: arctangent */ public static final int ATAN2 = 5; - /** Binary operator: maximum */ public static final int MAX = 6; - /** Binary operator: minimum */ public static final int MIN = 7; - /** Binary operator: less than */ public static final int LT = 8; - /** Binary operator: less or equal */ public static final int LE = 9; - /** Binary operator: equality */ public static final int EQ = 10; - /** Binary operator: inequality */ public static final int NE = 11; - /** Binary operator: greater or equal*/ public static final int GE = 12; - /** Binary operator: greater than */ public static final int GT = 13; - /** Binary operator: logical and */ public static final int AND = 14; - /** Binary operator: logical or */ public static final int OR = 15; - - /** Unary operator: absolute value*/ public static final int ABS = 100; - /** Unary operator: arccosine */ public static final int ACOS = 101; - /** Unary operator: arcsine */ public static final int ASIN = 102; - /** Unary operator: arctangent*/ public static final int ATAN = 103; - /** Unary operator: ceiling */ public static final int CEIL = 104; - /** Unary operator: cosine */ public static final int COS = 105; - /** Unary operator: e to the x*/ public static final int EXP = 106; - /** Unary operator: floor */ public static final int FLOOR = 107; - /** Unary operator: natural log*/ public static final int LOG = 108; - /** Unary operator: negation */ public static final int NEG = 109; - /** Unary operator: rounding */ public static final int ROUND = 110; - /** Unary operator: sine */ public static final int SIN = 111; - /** Unary operator: square root */ public static final int SQRT = 112; - /** Unary operator: tangent */ public static final int TAN = 113; - - /** Make a literal expression. - * @param v the constant value of the expression - * @return an expression whose value is always v */ - public static Expr makeLiteral(double v) { - return new LiteralExpr(v); - } - /** Make an expression that applies a unary operator to an operand. - * @param rator a code for a unary operator - * @param rand operand - * @return an expression meaning rator(rand) - */ - public static Expr makeApp1(int rator, Expr rand) { - Expr app = new UnaryExpr(rator, rand); - return rand instanceof LiteralExpr - ? new LiteralExpr(app.value()) - : app; - } - /** Make an expression that applies a binary operator to two operands. - * @param rator a code for a binary operator - * @param rand0 left operand - * @param rand1 right operand - * @return an expression meaning rator(rand0, rand1) - */ - public static Expr makeApp2(int rator, Expr rand0, Expr rand1) { - Expr app = new BinaryExpr(rator, rand0, rand1); - return rand0 instanceof LiteralExpr && rand1 instanceof LiteralExpr - ? new LiteralExpr(app.value()) - : app; - } - /** Make a conditional expression. - * @param test `if' part - * @param consequent `then' part - * @param alternative `else' part - * @return an expression meaning `if test, then consequent, else - * alternative' - */ - public static Expr makeIfThenElse(Expr test, - Expr consequent, - Expr alternative) { - Expr cond = new ConditionalExpr(test, consequent, alternative); - if (test instanceof LiteralExpr && - consequent instanceof LiteralExpr && - alternative instanceof LiteralExpr) - return new LiteralExpr(cond.value()); - else - return cond; - } -} - -// These classes are all private to this module so that I can get rid -// of them later. For applets you want to use as few classes as -// possible to avoid http connections at load time; it'd be profitable -// to replace all these subtypes with bytecodes for a stack machine, -// or perhaps a type that's the union of all of them (see class Node -// in java/demo/SpreadSheet/SpreadSheet.java). - -class LiteralExpr extends Expr { - double v; - LiteralExpr(double v) { this.v = v; } - public double value() { return v; } -} - -class UnaryExpr extends Expr { - int rator; - Expr rand; - - UnaryExpr(int rator, Expr rand) { - this.rator = rator; - this.rand = rand; - } - - public double value() { - double arg = rand.value(); - switch (rator) { - case ABS: return Math.abs(arg); - case ACOS: return Math.acos(arg); - case ASIN: return Math.asin(arg); - case ATAN: return Math.atan(arg); - case CEIL: return Math.ceil(arg); - case COS: return Math.cos(arg); - case EXP: return Math.exp(arg); - case FLOOR: return Math.floor(arg); - case LOG: return Math.log(arg); - case NEG: return -arg; - case ROUND: return Math.round(arg); - case SIN: return Math.sin(arg); - case SQRT: return Math.sqrt(arg); - case TAN: return Math.tan(arg); - default: throw new RuntimeException("BUG: bad rator"); - } - } -} - -class BinaryExpr extends Expr { - int rator; - Expr rand0, rand1; - - BinaryExpr(int rator, Expr rand0, Expr rand1) { - this.rator = rator; - this.rand0 = rand0; - this.rand1 = rand1; - } - public double value() { - double arg0 = rand0.value(); - double arg1 = rand1.value(); - switch (rator) { - case ADD: return arg0 + arg1; - case SUB: return arg0 - arg1; - case MUL: return arg0 * arg1; - case DIV: return arg0 / arg1; // division by 0 has IEEE 754 behavior - case POW: return Math.pow(arg0, arg1); - case ATAN2: return Math.atan2(arg0, arg1); - case MAX: return arg0 < arg1 ? arg1 : arg0; - case MIN: return arg0 < arg1 ? arg0 : arg1; - case LT: return arg0 < arg1 ? 1.0 : 0.0; - case LE: return arg0 <= arg1 ? 1.0 : 0.0; - case EQ: return arg0 == arg1 ? 1.0 : 0.0; - case NE: return arg0 != arg1 ? 1.0 : 0.0; - case GE: return arg0 >= arg1 ? 1.0 : 0.0; - case GT: return arg0 > arg1 ? 1.0 : 0.0; - case AND: return arg0 != 0 && arg1 != 0 ? 1.0 : 0.0; - case OR: return arg0 != 0 || arg1 != 0 ? 1.0 : 0.0; - default: throw new RuntimeException("BUG: bad rator"); - } - } -} - -class ConditionalExpr extends Expr { - Expr test, consequent, alternative; - - ConditionalExpr(Expr test, Expr consequent, Expr alternative) { - this.test = test; - this.consequent = consequent; - this.alternative = alternative; - } - - public double value() { - return test.value() != 0 ? consequent.value() : alternative.value(); - } -} - -// Operator-precedence parser. -// Copyright 1996 by Darius Bacon; see the file COPYING. - -/** - Parses strings representing mathematical formulas with variables. - The following operators, in descending order of precedence, are - defined: - -

      -
    • ^ (raise to a power) -
    • * / -
    • Unary minus (-x) -
    • + - -
    • < <= = <> >= > -
    • and -
    • or -
    - - ^ associates right-to-left; other operators associate left-to-right. - -

    These functions are defined: - abs, acos, asin, atan, - ceil, cos, exp, floor, - log, round, sin, sqrt, - tan. Each requires one argument enclosed in parentheses. - -

    There are also binary functions: atan2, min, max; and a ternary - conditional function: if(test, then, else). - -

    Whitespace outside identifiers is ignored. - -

    Examples: -

      -
    • 42 -
    • 2-3 -
    • cos(x^2) + sin(x^2) -
        */ - -class Parser { - - // Built-in constants - static private Variable pi = Variable.make("pi"); - static { - pi.setValue(Math.PI); - } - - /** Return the expression denoted by the input string. - * - * @param input the unparsed expression - * @exception SyntaxException if the input is unparsable */ - static public Expr parse(String input) throws SyntaxException { - return new Parser().parseString(input); - } - - /** Set of Variable's that are allowed to appear in input expressions. - * If null, any Variable is allowed. */ - private Hashtable allowedVariables = null; - - public void allow(Variable variable) { - if (null == allowedVariables) { - allowedVariables = new Hashtable(); - allowedVariables.put(pi, pi); - } - allowedVariables.put(variable, variable); - } - - Scanner tokens = null; - private Token token = null; - - /** Return the expression denoted by the input string. - * - * @param input the unparsed expression - * @exception SyntaxException if the input is unparsable */ - public Expr parseString(String input) throws SyntaxException { - String operatorChars = "+-*/^<>=,"; - tokens = new Scanner(input, operatorChars); - return reparse(); - } - - private Expr reparse() throws SyntaxException { - tokens.index = -1; - nextToken(); - Expr expr = parseExpr(0); - if (token.ttype != Token.TT_EOF) - throw error("Incomplete expression", - SyntaxException.INCOMPLETE, null); - return expr; - } - - private void nextToken() { - token = tokens.nextToken(); - } - - private Expr parseExpr(int precedence) throws SyntaxException { - Expr expr = parseFactor(); - loop: - for (;;) { - int l, r, rator; - - // The operator precedence table. - // l = left precedence, r = right precedence, rator = operator. - // Higher precedence values mean tighter binding of arguments. - // To associate left-to-right, let r = l+1; - // to associate right-to-left, let r = l. - - switch (token.ttype) { - - case '<': l = 20; r = 21; rator = Expr.LT; break; - case Token.TT_LE: l = 20; r = 21; rator = Expr.LE; break; - case '=': l = 20; r = 21; rator = Expr.EQ; break; - case Token.TT_NE: l = 20; r = 21; rator = Expr.NE; break; - case Token.TT_GE: l = 20; r = 21; rator = Expr.GE; break; - case '>': l = 20; r = 21; rator = Expr.GT; break; - - case '+': l = 30; r = 31; rator = Expr.ADD; break; - case '-': l = 30; r = 31; rator = Expr.SUB; break; - - case '/': l = 40; r = 41; rator = Expr.DIV; break; - case '*': l = 40; r = 41; rator = Expr.MUL; break; - - case '^': l = 50; r = 50; rator = Expr.POW; break; - - default: - if (token.ttype == Token.TT_WORD && token.sval.equals("and")) { - l = 5; r = 6; rator = Expr.AND; break; - } - if (token.ttype == Token.TT_WORD && token.sval.equals("or")) { - l = 10; r = 11; rator = Expr.OR; break; - } - break loop; - } - - if (l < precedence) - break loop; - - nextToken(); - expr = Expr.makeApp2(rator, expr, parseExpr(r)); - } - return expr; - } - - static private final String[] procs1 = { - "abs", "acos", "asin", "atan", - "ceil", "cos", "exp", "floor", - "log", "round", "sin", "sqrt", - "tan" - }; - static private final int[] rators1 = { - Expr.ABS, Expr.ACOS, Expr.ASIN, Expr.ATAN, - Expr.CEIL, Expr.COS, Expr.EXP, Expr.FLOOR, - Expr.LOG, Expr.ROUND, Expr.SIN, Expr.SQRT, - Expr.TAN - }; - - static private final String[] procs2 = { - "atan2", "max", "min" - }; - static private final int[] rators2 = { - Expr.ATAN2, Expr.MAX, Expr.MIN - }; - - private boolean atStartOfFactor() { - return token.ttype == Token.TT_NUMBER - || token.ttype == Token.TT_WORD - || token.ttype == '(' - || token.ttype == '-'; - } - - private Expr parseFactor() throws SyntaxException { - switch (token.ttype) { - case Token.TT_NUMBER: { - Expr lit = Expr.makeLiteral(token.nval); - nextToken(); - return lit; - } - case Token.TT_WORD: { - for (int i = 0; i < procs1.length; ++i) - if (procs1[i].equals(token.sval)) { - nextToken(); - expect('('); - Expr rand = parseExpr(0); - expect(')'); - return Expr.makeApp1(rators1[i], rand); - } - - for (int i = 0; i < procs2.length; ++i) - if (procs2[i].equals(token.sval)) { - nextToken(); - expect('('); - Expr rand1 = parseExpr(0); - expect(','); - Expr rand2 = parseExpr(0); - expect(')'); - return Expr.makeApp2(rators2[i], rand1, rand2); - } - - if (token.sval.equals("if")) { - nextToken(); - expect('('); - Expr test = parseExpr(0); - expect(','); - Expr consequent = parseExpr(0); - expect(','); - Expr alternative = parseExpr(0); - expect(')'); - return Expr.makeIfThenElse(test, consequent, alternative); - } - - Expr var = Variable.make(token.sval); - if (null != allowedVariables && null == allowedVariables.get(var)) - throw error("Unknown variable", - SyntaxException.UNKNOWN_VARIABLE, null); - nextToken(); - return var; - } - case '(': { - nextToken(); - Expr enclosed = parseExpr(0); - expect(')'); - return enclosed; - } - case '-': - nextToken(); - return Expr.makeApp1(Expr.NEG, parseExpr(35)); - case Token.TT_EOF: - throw error("Expected a factor", - SyntaxException.PREMATURE_EOF, null); - default: - throw error("Expected a factor", - SyntaxException.BAD_FACTOR, null); - } - } - - private SyntaxException error(String complaint, - int reason, - String expected) { - return new SyntaxException(complaint, this, reason, expected); - } - - private void expect(int ttype) throws SyntaxException { - if (token.ttype != ttype) - throw error("'" + (char)ttype + "' expected", - SyntaxException.EXPECTED, "" + (char)ttype); - nextToken(); - } - - - // Error correction - - boolean tryCorrections() { - return tryInsertions() || tryDeletions() || trySubstitutions(); - } - - private boolean tryInsertions() { - Vector v = tokens.tokens; - for (int i = tokens.index; 0 <= i; --i) { - Token t; - if (i < v.size()) { - t = (Token) v.elementAt(i); - } else { - String s = tokens.getInput(); - t = new Token(Token.TT_EOF, 0, s, s.length(), s.length()); - } - Token[] candidates = possibleInsertions(t); - for (int j = 0; j < candidates.length; ++j) { - v.insertElementAt(candidates[j], i); - try { - reparse(); - return true; - } catch (SyntaxException se) { - v.removeElementAt(i); - } - } - } - return false; - } - - private boolean tryDeletions() { - Vector v = tokens.tokens; - for (int i = tokens.index; 0 <= i; --i) { - if (v.size() <= i) - continue; - Object t = v.elementAt(i); - v.remove(i); - try { - reparse(); - return true; - } catch (SyntaxException se) { - v.insertElementAt(t, i); - } - } - return false; - } - - private boolean trySubstitutions() { - Vector v = tokens.tokens; - for (int i = tokens.index; 0 <= i; --i) { - if (v.size() <= i) - continue; - Token t = (Token) v.elementAt(i); - Token[] candidates = possibleSubstitutions(t); - for (int j = 0; j < candidates.length; ++j) { - v.setElementAt(candidates[j], i); - try { - reparse(); - return true; - } catch (SyntaxException se) { } - } - v.setElementAt(t, i); - } - return false; - } - - private Token[] possibleInsertions(Token t) { - String ops = tokens.getOperatorChars(); - Token[] ts = - new Token[ops.length() + 6 + procs1.length + procs2.length]; - int i = 0; - - Token one = new Token(Token.TT_NUMBER, 1, "1", t); - ts[i++] = one; - - for (int j = 0; j < ops.length(); ++j) - ts[i++] = new Token(ops.charAt(j), 0, "" + ops.charAt(j), t); - - ts[i++] = new Token(Token.TT_WORD, 0, "x", t); - - for (int k = 0; k < procs1.length; ++k) - ts[i++] = new Token(Token.TT_WORD, 0, procs1[k], t); - - for (int m = 0; m < procs2.length; ++m) - ts[i++] = new Token(Token.TT_WORD, 0, procs2[m], t); - - ts[i++] = new Token(Token.TT_LE, 0, "<=", t); - ts[i++] = new Token(Token.TT_NE, 0, "<>", t); - ts[i++] = new Token(Token.TT_GE, 0, ">=", t); - ts[i++] = new Token(Token.TT_WORD, 0, "if", t); - - return ts; - } - - private Token[] possibleSubstitutions(Token t) { - return possibleInsertions(t); - } -} - -class Scanner { - - private String s; - private String operatorChars; - - Vector tokens = new Vector(); - int index = -1; - - public Scanner(String string, String operatorChars) { - this.s = string; - this.operatorChars = operatorChars + "()"; - - int i = 0; - do { - i = scanToken(i); - } while (i < s.length()); - } - - public String getInput() { - return s; - } - - public String getOperatorChars() { - return operatorChars; - } - - // The tokens may have been diddled, so this can be different from - // getInput(). - public String toString() { - StringBuffer sb = new StringBuffer(); - int whitespace = 0; - for (int i = 0; i < tokens.size(); ++i) { - Token t = (Token) tokens.elementAt(i); - - int spaces = (whitespace != 0 ? whitespace : t.leadingWhitespace); - if (i == 0) - spaces = 0; - else if (spaces == 0 && !joinable((Token) tokens.elementAt(i-1), t)) - spaces = 1; - for (int j = spaces; 0 < j; --j) - sb.append(" "); - - sb.append(t.sval); - whitespace = t.trailingWhitespace; - } - return sb.toString(); - } - - private boolean joinable(Token s, Token t) { - return !(isAlphanumeric(s) && isAlphanumeric(t)); - } - - private boolean isAlphanumeric(Token t) { - return t.ttype == Token.TT_WORD || t.ttype == Token.TT_NUMBER; - } - - public boolean isEmpty() { - return tokens.size() == 0; - } - - public boolean atStart() { - return index <= 0; - } - - public boolean atEnd() { - return tokens.size() <= index; - } - - public Token nextToken() { - ++index; - return getCurrentToken(); - } - - public Token getCurrentToken() { - if (atEnd()) - return new Token(Token.TT_EOF, 0, s, s.length(), s.length()); - return (Token) tokens.elementAt(index); - } - - private int scanToken(int i) { - while (i < s.length() && Character.isWhitespace(s.charAt(i))) - ++i; - - if (i == s.length()) { - return i; - } else if (0 <= operatorChars.indexOf(s.charAt(i))) { - if (i+1 < s.length()) { - String pair = s.substring(i, i+2); - int ttype = 0; - if (pair.equals("<=")) - ttype = Token.TT_LE; - else if (pair.equals(">=")) - ttype = Token.TT_GE; - else if (pair.equals("<>")) - ttype = Token.TT_NE; - if (0 != ttype) { - tokens.addElement(new Token(ttype, 0, s, i, i+2)); - return i+2; - } - } - tokens.addElement(new Token(s.charAt(i), 0, s, i, i+1)); - return i+1; - } else if (Character.isLetter(s.charAt(i))) { - return scanSymbol(i); - } else if (Character.isDigit(s.charAt(i)) || '.' == s.charAt(i)) { - return scanNumber(i); - } else { - tokens.addElement(makeErrorToken("Unknown lexeme", i, i+1)); - return i+1; - } - } - - private int scanSymbol(int i) { - int from = i; - while (i < s.length() - && (Character.isLetter(s.charAt(i)) - || Character.isDigit(s.charAt(i)))) - ++i; - tokens.addElement(new Token(Token.TT_WORD, 0, s, from, i)); - return i; - } - - private int scanNumber(int i) { - int from = i; - - // We include letters in our purview because otherwise we'd - // accept a word following with no intervening space. - for (; i < s.length(); ++i) - if ('.' != s.charAt(i) - && !Character.isDigit(s.charAt(i)) - && !Character.isLetter(s.charAt(i))) - break; - - String text = s.substring(from, i); - double nval; - try { - nval = Double.valueOf(text).doubleValue(); - } catch (NumberFormatException nfe) { - tokens.addElement(makeErrorToken("Not a number", from, i)); - return i; - } - - tokens.addElement(new Token(Token.TT_NUMBER, nval, s, from, i)); - return i; - } - - private Token makeErrorToken(String complaint, int from, int i) { - // TODO: incorporate the complaint somehow - return new Token(Token.TT_ERROR, 0, s, from, i); - } -} - -/** - * An exception indicating a problem in parsing an expression. It can - * produce a short, cryptic error message (with getMessage()) or a - * long, hopefully helpful one (with explain()). - */ - -class SyntaxException extends Exception { - - /** An error code meaning the input string had stuff left over. */ - public static final int INCOMPLETE = 0; - - /** An error code meaning the parser ran into a non-value token - (like "/") at a point it was expecting a value (like "42" or - "x^2"). */ - public static final int BAD_FACTOR = 1; - - /** An error code meaning the parser hit the end of its input - before it had parsed a full expression. */ - public static final int PREMATURE_EOF = 2; - - /** An error code meaning the parser hit an unexpected token at a - point it expected to see some particular other token. */ - public static final int EXPECTED = 3; - - /** An error code meaning the expression includes a variable not - on the `approved' list. */ - public static final int UNKNOWN_VARIABLE = 4; - - /** Make a new instance. - * @param complaint short error message - * @param parser the parser that hit this snag - * @param reason one of the error codes defined in this class - * @param expected if nonnull, the token the parser expected to - * see (in place of the erroneous token it did see) - */ - public SyntaxException(String complaint, - Parser parser, - int reason, - String expected) { - super(complaint); - this.reason = reason; - this.parser = parser; - this.scanner = parser.tokens; - this.expected = expected; - } - - /** Give a long, hopefully helpful error message. - * @returns the message */ - public String explain() { - StringBuffer sb = new StringBuffer(); - - sb.append("I don't understand your formula "); - quotify(sb, scanner.getInput()); - sb.append(".\n\n"); - - explainWhere(sb); - explainWhy(sb); - explainWhat(sb); - - return sb.toString(); - } - - private Parser parser; - private Scanner scanner; - - private int reason; - private String expected; - - private String fixedInput = ""; - - private void explainWhere(StringBuffer sb) { - if (scanner.isEmpty()) { - sb.append("It's empty!\n"); - } else if (scanner.atStart()) { - sb.append("It starts with "); - quotify(sb, theToken()); - if (isLegalToken()) - sb.append(", which can never be the start of a formula.\n"); - else - sb.append(", which is a meaningless symbol to me.\n"); - } else { - sb.append("I got as far as "); - quotify(sb, asFarAs()); - sb.append(" and then "); - if (scanner.atEnd()) { - sb.append("reached the end unexpectedly.\n"); - } else { - sb.append("saw "); - quotify(sb, theToken()); - if (isLegalToken()) - sb.append(".\n"); - else - sb.append(", which is a meaningless symbol to me.\n"); - } - } - } - - private void explainWhy(StringBuffer sb) { - switch (reason) { - case INCOMPLETE: - if (isLegalToken()) - sb.append("The first part makes sense, but I don't see " + - "how the rest connects to it.\n"); - break; - case BAD_FACTOR: - case PREMATURE_EOF: - sb.append("I expected a value"); - if (!scanner.atStart()) sb.append(" to follow"); - sb.append(", instead.\n"); - break; - case EXPECTED: - sb.append("I expected "); - quotify(sb, expected); - sb.append(" at that point, instead.\n"); - break; - case UNKNOWN_VARIABLE: - sb.append("That variable has no value.\n"); - break; - default: - throw new Error("Can't happen"); - } - } - - private void explainWhat(StringBuffer sb) { - fixedInput = tryToFix(); - if (null != fixedInput) { - sb.append("An example of a formula I can parse is "); - quotify(sb, fixedInput); - sb.append(".\n"); - } - } - - private String tryToFix() { - return (parser.tryCorrections() ? scanner.toString() : null); - } - - private void quotify(StringBuffer sb, String s) { - sb.append('"'); - sb.append(s); - sb.append('"'); - } - - private String asFarAs() { - Token t = scanner.getCurrentToken(); - int point = t.location - t.leadingWhitespace; - return scanner.getInput().substring(0, point); - } - - private String theToken() { - return scanner.getCurrentToken().sval; - } - - private boolean isLegalToken() { - Token t = scanner.getCurrentToken(); - return t.ttype != Token.TT_EOF - && t.ttype != Token.TT_ERROR; - } -} - -class Token { - public static final int TT_ERROR = -1; - public static final int TT_EOF = -2; - public static final int TT_NUMBER = -3; - public static final int TT_WORD = -4; - public static final int TT_LE = -5; - public static final int TT_NE = -6; - public static final int TT_GE = -7; - - public Token(int ttype, double nval, String input, int start, int end) { - this.ttype = ttype; - this.sval = input.substring(start, end); - this.nval = nval; - this.location = start; - - int count = 0; - for (int i = start-1; 0 <= i; --i) { - if (!Character.isWhitespace(input.charAt(i))) - break; - ++count; - } - this.leadingWhitespace = count; - - count = 0; - for (int i = end; i < input.length(); ++i) { - if (!Character.isWhitespace(input.charAt(i))) - break; - ++count; - } - this.trailingWhitespace = count; - } - - Token(int ttype, double nval, String sval, Token token) { - this.ttype = ttype; - this.sval = sval; - this.nval = nval; - this.location = token.location; - this.leadingWhitespace = token.leadingWhitespace; - this.trailingWhitespace = token.trailingWhitespace; - } - - public final int ttype; - public final String sval; - public final double nval; - - public final int location; - - public final int leadingWhitespace, trailingWhitespace; -} - -/** - * A variable is a simple expression with a name (like "x") and a - * changeable value. - */ -class Variable extends Expr { - private static Hashtable variables = new Hashtable(); - - /** - * Return the variable named `name'. There can be only one - * variable with the same name returned by this method; that is, - * make(s1) == make(s2) if and only if s1.equals(s2). - * @param name the variable's name - * @return the variable; create it initialized to 0 if it doesn't - * yet exist */ - static public synchronized Variable make(String name) { - Variable result = (Variable) variables.get(name); - if (result == null) - variables.put(name, result = new Variable(name)); - return result; - } - - private String name; - private double val; - - /** - * Create a new variable. - * @param name the variable's name - */ - public Variable(String name) { - this.name = name; val = 0; - } - - public String toString() { return name; } - - /** Get the value. - * @return the current value */ - public double value() { - return val; - } - /** Set the value. - * @param value the new value */ - public void setValue(double value) { - val = value; - } - - public void set_value(double value) { - val = value; - } -} - - - diff --git a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/Image_and_Cursor_All.html b/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/Image_and_Cursor_All.html deleted file mode 100644 index b2c841fa1..000000000 --- a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/Image_and_Cursor_All.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - Image and Cursor Java Applets - - - -

        Image and Cursor Applets

        -
        - - - diff --git a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/Literal.class b/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/Literal.class deleted file mode 100644 index d1262e2ad..000000000 Binary files a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/Literal.class and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/LiteralExpr.class b/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/LiteralExpr.class deleted file mode 100644 index c798bb2b8..000000000 Binary files a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/LiteralExpr.class and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/MiscFunctions.class b/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/MiscFunctions.class deleted file mode 100644 index d688266b6..000000000 Binary files a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/MiscFunctions.class and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/Parser.class b/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/Parser.class deleted file mode 100644 index 9c5379644..000000000 Binary files a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/Parser.class and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/Scanner.class b/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/Scanner.class deleted file mode 100644 index 934b8e463..000000000 Binary files a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/Scanner.class and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/SyntaxException.class b/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/SyntaxException.class deleted file mode 100644 index 5451b0386..000000000 Binary files a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/SyntaxException.class and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/Syntax_error.class b/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/Syntax_error.class deleted file mode 100644 index 3d7c14ac7..000000000 Binary files a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/Syntax_error.class and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/Token.class b/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/Token.class deleted file mode 100644 index c0294a067..000000000 Binary files a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/Token.class and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/UnaryExpr.class b/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/UnaryExpr.class deleted file mode 100644 index 7009ec100..000000000 Binary files a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/UnaryExpr.class and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/VCRButton.class b/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/VCRButton.class deleted file mode 100644 index 3a29ab58e..000000000 Binary files a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/VCRButton.class and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/Var_ref.class b/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/Var_ref.class deleted file mode 100644 index 1b12d21bc..000000000 Binary files a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/Var_ref.class and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/Variable.class b/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/Variable.class deleted file mode 100644 index 3572a86da..000000000 Binary files a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/Variable.class and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/afghanistan_borders.html b/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/afghanistan_borders.html deleted file mode 100644 index eaece7cfe..000000000 --- a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/afghanistan_borders.html +++ /dev/null @@ -1,63 +0,0 @@ - - -The Border between Afghanistan and Iran - - -

        The Border between Afghanistan and Iran

        - -
        -

        The live map below shows Afghanistan. Your mission is to use this map to estimate the length of the border between Afghanistan and Iran

        - -
        - -Your browser does not support Java, so nothing is displayed. - - - - - - - - - - -
        -
        Using this Live Map

        - -
          - -
        • Click anyplace on the map to move the cursor to that point. - -

          - -
        • Notice the readout at the upper right gives the location of the cursor measured in pixels from the lower left corner of the map. - -

          - -
        • You can fine tune the location of the cursor by clicking on the four arrows at the left, right, top, and bottom of the map. Each click moves the cursor one pixel in the direction indicated by the arrow. - -

          - -
        • Use the scale printed at the bottom of the map to determine how to convert distances measured on the map in pixels to distances on the ground measured in miles or kilometers. - -
        • Click the blue button, labeled "Mark point," to record the coordinates of a point. Click it each time that you have moved the cursor to a new point whose coordinates you want to record. - -
        • Click the red button, labeled "Show points," to display the coordinates of the points whose coordinates you have recorded. A new window will appear with the information that you have recorded. - -
        • Click the black button, labeled "Clear points," to clear the list of recorded points. - -
        • In this new window select the coordinates of the points in the usual way using your mouse and then copy them by pressing command-C in the MacOS or CTRL-C in Windows. - -
        • Open your favorite spreadsheet and use paste to enter the coordinates that you just copied. - -
        • Use this spreadsheet to do the arithmetic needed to determine the length of the border between Afghanistan and Iran. - -
        -
        - - - - - - diff --git a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/afghanistan_borders_alt.html b/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/afghanistan_borders_alt.html deleted file mode 100644 index 73e4fd924..000000000 --- a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/afghanistan_borders_alt.html +++ /dev/null @@ -1,63 +0,0 @@ - - -The Border between Afghanistan and Iran - - -

        The Border between Afghanistan and Iran

        - -
        -

        The live map below shows Afghanistan. Your mission is to use this map to estimate the length of the border between Afghanistan and Iran

        - -
        - -Your browser does not support Java, so nothing is displayed. - - - - - - - - - - -
        -
        Using this Live Map

        - -
          - -
        • Click anyplace on the map to move the cursor to that point. - -

          - -
        • Notice the readout at the upper right gives the location of the cursor measured in pixels from the lower left corner of the map. - -

          - -
        • You can fine tune the location of the cursor by clicking on the four arrows at the left, right, top, and bottom of the map. Each click moves the cursor one pixel in the direction indicated by the arrow. - -

          - -
        • Use the scale printed at the bottom of the map to determine how to convert distances measured on the map in pixels to distances on the ground measured in miles or kilometers. - -
        • Click the blue button, labeled "Mark point," to record the coordinates of a point. Click it each time that you have moved the cursor to a new point whose coordinates you want to record. - -
        • Click the red button, labeled "Show points," to display the coordinates of the points whose coordinates you have recorded. A new window will appear with the information that you have recorded. - -
        • Click the black button, labeled "Clear points," to clear the list of recorded points. - -
        • In this new window select the coordinates of the points in the usual way using your mouse and then copy them by pressing command-C in the MacOS or CTRL-C in Windows. - -
        • Open your favorite spreadsheet and use paste to enter the coordinates that you just copied. - -
        • Use this spreadsheet to do the arithmetic needed to determine the length of the border between Afghanistan and Iran. - -
        -
        - - - - - - diff --git a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/afghanistan_distances.html b/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/afghanistan_distances.html deleted file mode 100644 index 62e1590cd..000000000 --- a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/afghanistan_distances.html +++ /dev/null @@ -1,53 +0,0 @@ - - -Distances in Afghanistan - - -

        Distances in Afghanistan

        - -

        The live map below shows Afghanistan. Your mission is to use this map to determine the distance (as the crow flies) between various points in Afghanistan.

        - -
        -
        - -Your browser does not support Java, so nothing is displayed. - - - - - - - - -
        -
        Using this Live Map

        - -

         

        -
          - -
        • Click anyplace on the map to move the cursor to that point. - -

           

          - -
        • Notice the readout at the upper right gives the location of the cursor measured in pixels from the lower left corner of the map. - -

           

          - -
        • You can fine tune the location of the cursor by clicking on the four arrows at the left, right, top, and bottom of the map. Each click moves the cursor one pixel in the direction indicated by the arrow. - -

           

          - -
        • Use the scale printed at the bottom of the map to determine how to convert distances measured on the map in pixels to distances on the ground measured in miles or kilometers. -
        -
        - -

        Question 1: How far (in miles) is it from Kandahar to Kabul?

        - -

        Question 2: How far (in miles) is it from Kabul to Mazar-e-Sharif?

        - -

        Question 3: How far (in miles) is it from Kandahar to Shindand?

        - - - - diff --git a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/afghanistan_distances_alt.html b/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/afghanistan_distances_alt.html deleted file mode 100644 index b8c7e3143..000000000 --- a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/afghanistan_distances_alt.html +++ /dev/null @@ -1,53 +0,0 @@ - - -Distances in Afghanistan - - -

        Distances in Afghanistan

        - -

        The live map below shows Afghanistan. Your mission is to use this map to determine the distance (as the crow flies) between various points in Afghanistan.

        - -
        -
        - -Your browser does not support Java, so nothing is displayed. - - - - - - - - -
        -
        Using this Live Map

        - -

         

        -
          - -
        • Click anyplace on the map to move the cursor to that point. - -

           

          - -
        • Notice the readout at the upper right gives the location of the cursor measured in pixels from the lower left corner of the map. - -

           

          - -
        • You can fine tune the location of the cursor by clicking on the four arrows at the left, right, top, and bottom of the map. Each click moves the cursor one pixel in the direction indicated by the arrow. - -

           

          - -
        • Use the scale printed at the bottom of the map to determine how to convert distances measured on the map in pixels to distances on the ground measured in miles or kilometers. -
        -
        - -

        Question 1: How far (in miles) is it from Kandahar to Kabul?

        - -

        Question 2: How far (in miles) is it from Kabul to Mazar-e-Sharif?

        - -

        Question 3: How far (in miles) is it from Kandahar to Shindand?

        - - - - diff --git a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/curve_template.html b/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/curve_template.html deleted file mode 100644 index a137c0030..000000000 --- a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/curve_template.html +++ /dev/null @@ -1,7 +0,0 @@ -The Curve and the Water Fountain

        The Curve and the Water Fountain

        - -

        - - -

        - \ No newline at end of file diff --git a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/curve_template_alt.html b/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/curve_template_alt.html deleted file mode 100644 index 32d097008..000000000 --- a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/curve_template_alt.html +++ /dev/null @@ -1,7 +0,0 @@ -The Curve and the Water Fountain

        The Curve and the Water Fountain

        - -

        - - -

        - \ No newline at end of file diff --git a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/water_fountain.html b/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/water_fountain.html deleted file mode 100644 index af2094647..000000000 --- a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/water_fountain.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - -Describe the Squirt - - - -

        Describe the Squirt

        - -

        - -Your browser does not support Java, so nothing is displayed. - - - - - - - - -

        - -

        The photograph above shows water squirting from a water fountain. Your job is to find a function y = f(x) describing the curve formed by the squirting water. As part of describing the function f(x) you will need to specify its domain -- that is, the lowest and highest values of the variable x.

        - -

        You can click on the photograph above to find the coordinates of the point at which you clicked. You can fine tune the selected point by clicking at the arrows at the four sides of the photograph. Each click on an arrow moves the cursors one pixel in the direction indicated by the arrow.

        - -

        -You must enter three items in the form below to describe the curve formed by the squirting water. The first two items specify the domain of the function f(x) and, thus, the part of the photograph above containing the curve formed by the squirting water. The third item is an algebraic expression -- like x^3 - x + 12, for example -- that defines the function f(x) that describes the shape of the curve. WARNING: Do not type something like f(x) = x^3 - x - 12. Just type the algebraic expression, something like x^3 - x - 12.

        - -

        After you have entered the three items in the form below, click the "Try it!!" button to see the curve superimposed on the photograph.

        -

        - -
        -

        - - - - - - - - - - - -
        Low end of the domain
        High end of the domain
        The function f(x) -

        - -

        - -

        -
        - -

        After you have found a function that you are reasonably happy with that describes the curve formed by the squirting water, discuss why it does not do as good a job as you might have hoped.

        - - - \ No newline at end of file diff --git a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/water_fountain_1.gif b/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/water_fountain_1.gif deleted file mode 100644 index e49ce8dfe..000000000 Binary files a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/water_fountain_1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/water_fountain_alt.html b/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/water_fountain_alt.html deleted file mode 100644 index 7d4c0e86d..000000000 --- a/lib/WeBWorK/htdocs/applets/Image_and_Cursor_All/water_fountain_alt.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - -Describe the Squirt - - - -

        Describe the Squirt

        - -

        - -Your browser does not support Java, so nothing is displayed. - - - - - - - - -

        - -

        The photograph above shows water squirting from a water fountain. Your job is to find a function y = f(x) describing the curve formed by the squirting water. As part of describing the function f(x) you will need to specify its domain -- that is, the lowest and highest values of the variable x.

        - -

        You can click on the photograph above to find the coordinates of the point at which you clicked. You can fine tune the selected point by clicking at the arrows at the four sides of the photograph. Each click on an arrow moves the cursors one pixel in the direction indicated by the arrow.

        - -

        -You must enter three items in the form below to describe the curve formed by the squirting water. The first two items specify the domain of the function f(x) and, thus, the part of the photograph above containing the curve formed by the squirting water. The third item is an algebraic expression -- like x^3 - x + 12, for example -- that defines the function f(x) that describes the shape of the curve. WARNING: Do not type something like f(x) = x^3 - x - 12. Just type the algebraic expression, something like x^3 - x - 12.

        - -

        After you have entered the three items in the form below, click the "Try it!!" button to see the curve superimposed on the photograph.

        -

        - -
        -

        - - - - - - - - - - - -
        Low end of the domain
        High end of the domain
        The function f(x) -

        - -

        - -

        -
        - -

        After you have found a function that you are reasonably happy with that describes the curve formed by the squirting water, discuss why it does not do as good a job as you might have hoped.

        - - - \ No newline at end of file diff --git a/lib/WeBWorK/htdocs/applets/PointGraph/MultiPointGraph.html b/lib/WeBWorK/htdocs/applets/PointGraph/MultiPointGraph.html deleted file mode 100644 index faaa38119..000000000 --- a/lib/WeBWorK/htdocs/applets/PointGraph/MultiPointGraph.html +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - - - -

        PointGraph Flash Applet

        - -This should show a blank canvas with a red dot. -

        - - - - - - - - - - -

        - -

        MultiPointGraph Flash Applet

        - -This should show only a blank canvas. -

        - - - - - - - - - - -

        - - - - diff --git a/lib/WeBWorK/htdocs/applets/README b/lib/WeBWorK/htdocs/applets/README deleted file mode 100644 index 12a1fd1ef..000000000 --- a/lib/WeBWorK/htdocs/applets/README +++ /dev/null @@ -1,68 +0,0 @@ - -Sources for the applets used in WeBWork demos: - -================================================= - -Java Applets: -================================================= - -xFunctions (from David Eck at Hobart and William Smith College) -http://math.hws.edu/xFunctions/ -Doesn't connect directly to WeBWorK but can be useful for students - -================================================== - -geogebra (version 3.2.40+) -This applet is updated frequently so you will not to get fresh versions at; -http://www.geogebra.org/cms/en/installers (offline installers) or -http://www.geogebra.org/cms/en/download -Information generaly about geogebra is at: http://www.geogebra.org/cms/ - -================================================== - - -Image_and_Cursor -- liteApplet from Frank Wattenberg (West Point) -http://mathdl.maa.org/images/upload_library/4/vol2/liteapplets/contents.html - -================================================== - -SketchGraph, SliderGraph, GummyGraph -- David Eck -Designed specifically to interact with webwork. -Source code for these applets is in the webwork2/htdocs/applets/source subdirectory -Uses components from this repository: -http://math.hws.edu/javamath/ -================================================= - -FlashApplets -================================================= - - -MutiPointGraph.swf, PointGraph.swf -- flash applets from Doug Ensley (Shippensburg U.) and Mike Gage (UR) -Designed for webwork. Based on other mathematics applets illustrated at: -http://www.flashandmath.com/mathlets/index.html -and http://www.flashandmath.com/index.html for tutorials on using flash. -See also http://webwork.maa.org/wiki/Simple_example for a description of the actionScript code for this flash applet - -================================================= - - -Canvas Applets --- a version of SketchGraph in html5 and javaScript by David Gage --- the code is in webwork2/js/sketchgraphhtml5b --- html5 and javaScript is a relatively new technology but it is likely to become important - particularly for mobile devices such as the iPad --- javaScript and actionScript have become fairly similar - -================================================= - -The existing applets are still mostly at the proof of concept stage. Find useful -questions to build around them or create your own applets which are more flexible or -more useful. - - -Examples of the use of thee applets are at: - -https://test.webwork.maa.org/webwork2/2010JMM_demo/ -https://test.webwork.maa.org/webwork2/2010geogebra_at_ithaca/ -https://courses.webwork.maa.org/webwork2/wikiExamples/ - diff --git a/lib/WeBWorK/htdocs/applets/WeBWorKAppletTest.html b/lib/WeBWorK/htdocs/applets/WeBWorKAppletTest.html deleted file mode 100644 index 3794a1a17..000000000 --- a/lib/WeBWorK/htdocs/applets/WeBWorKAppletTest.html +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - -WeBWorKAppletTest.html - - - - -

        WeBWorK Applet Test page

        - -This page is used to test the availability of the default Java, WeBWorK and HTML5 applets -available through WeBWorK. Use this to test whether your browser can properly interpret -these java applets. - -

        Java Applets

        - - -

        Geogebra Java Applet

        -
          -
        • Geogebra Applet webstart
        • -

          - This references the latest version of Geogebra available at http://www.geogebra.org/. Unfortunately this cannot be - used in WeBWorK questions that interact with geogebra. The security rules for the javaScript communication require that the java applet (geogebra) and - the calling page (the WeBWorK question) come from the same domain. (You can check the version number under the "Help" menu in the geogebra window.) -

          -
        • Geogebra Java Applet
        • -

          - This references the version of Geogebra available on thei WeBWorK website. (You can check the version number under the "Help" menu in the geogebra window.) - This is the version of Geogebra referenced from within most webwork questions. -

          -
        - -

        Flash Applets

        -PointGraph and MultiPointGraph Flash Applets -
        - -

        -Sources for the applets used in WeBWork demos: -README -

        - - - - - diff --git a/lib/WeBWorK/htdocs/applets/Xgraph/GummyGraph.class b/lib/WeBWorK/htdocs/applets/Xgraph/GummyGraph.class deleted file mode 100644 index 8cdf647b2..000000000 Binary files a/lib/WeBWorK/htdocs/applets/Xgraph/GummyGraph.class and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/Xgraph/GummyGraph.html b/lib/WeBWorK/htdocs/applets/Xgraph/GummyGraph.html deleted file mode 100644 index 0a4184ca0..000000000 --- a/lib/WeBWorK/htdocs/applets/Xgraph/GummyGraph.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - Gummy Graph - - - -

        GummyGraph

        - - - - -

        -Written by David Eck - - - - diff --git a/lib/WeBWorK/htdocs/applets/Xgraph/SketchGraph.html b/lib/WeBWorK/htdocs/applets/Xgraph/SketchGraph.html deleted file mode 100644 index 1911e3ff8..000000000 --- a/lib/WeBWorK/htdocs/applets/Xgraph/SketchGraph.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - -TrivialApplet - - - - - - - -


        - - - - - -
        - - - -
        - - - -

        - -Y-values: - - - - - -

        - -     - - - - - - - -

        - -
        - - - -

        - - - -
        - - - - - - - diff --git a/lib/WeBWorK/htdocs/applets/Xgraph/SketchGraph.jar b/lib/WeBWorK/htdocs/applets/Xgraph/SketchGraph.jar deleted file mode 100644 index 53fba62f8..000000000 Binary files a/lib/WeBWorK/htdocs/applets/Xgraph/SketchGraph.jar and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/Xgraph/SliderGraph.html b/lib/WeBWorK/htdocs/applets/Xgraph/SliderGraph.html deleted file mode 100644 index 880e6593c..000000000 --- a/lib/WeBWorK/htdocs/applets/Xgraph/SliderGraph.html +++ /dev/null @@ -1,156 +0,0 @@ - - -Sample JCM Applet: SliderGraph - - - - -
        - -
        [ -prev | -main | -next -]
        - - - -
        -

        Slider Graph

        -
        -
        - -

        This applet that draws the graph of a function that can include
        -references to the "constants" a, b, and c. The values of these
        -constants can be adjusted using the sliders at the bottom of the
        -applet. The applet responds to the mouse actions click, shift-click,
        -click-and-drag, and right-click-and-drag. I've added another
        -buttons to the limit control panel. The "Equalize Axes" button
        -adjusts the x- and y-limits so that the scales on the two axes
        -are the same. -

        - -

        - -

        The following source code shows how the applet is built from
        -JCM components. Most of the comments are for features that were
        -not already covered in previous examples. -

        - -
        - -
        -
        -import java.awt.*;
        -import edu.hws.jcm.data.*;
        -import edu.hws.jcm.draw.*;
        -import edu.hws.jcm.awt.*;
        -
        -public class SliderGraph extends java.applet.Applet {
        -
        -   private DisplayCanvas canvas;
        -   
        -   public void stop() {
        -      canvas.releaseResources();
        -   }
        -   
        -   JCMPanel makeSliderPanel(VariableSlider v) {
        -         // A small utility routing that makes a JCMPanel that contains
        -         // a VariableSlider and a DisplayLabel that shows the value
        -         // of the variable associated with that slider.
        -      JCMPanel p = new JCMPanel();
        -      p.add(v, BorderLayout.CENTER);
        -      p.add( new DisplayLabel(v.getName() + " = #", new Value[] { v } ), BorderLayout.EAST);
        -      return p;
        -   }
        -   
        -
        -   public void init() {
        -   
        -      Parser parser = new Parser();
        -      Variable x = new Variable("x");
        -      parser.add(x);
        -      
        -        // Create the three VariableSliders.  In this case, the sliders have
        -        //   names.  There is also a Variable associated with each slider, 
        -        //   which has the same name.  This variable is added to the parser
        -        //   which is passed as the fourth parameter to the constructor, making
        -        //   it possible to use "a", "b", and "c" in expressions parsed by the
        -        //   parser.  Adjusting the value on a slider changes the value of the
        -        //   associated variable, and therefore changes the value of any
        -        //   expression that refers to that variable.  The second and third
        -        //   parameters to the constructor give the minimum and maximum Values
        -        //   on the slider.  Passing "null,null" uses the defaults, namely
        -        //   new Constant(-5) and new Constant(5).
        -      VariableSlider a = new VariableSlider("a",null,null,parser);
        -      VariableSlider b = new VariableSlider("b",null,null,parser);
        -      VariableSlider c = new VariableSlider("c",null,null,parser);
        -
        -      canvas = new DisplayCanvas();
        -      canvas.setHandleMouseZooms(true);
        -      canvas.add(new Panner());
        -      
        -      LimitControlPanel limits =
        -           new LimitControlPanel( LimitControlPanel.SET_LIMITS | LimitControlPanel.RESTORE
        -                                    | LimitControlPanel.EQUALIZE,  false);
        -      limits.addCoords(canvas);
        -      
        -      ExpressionInput input = new ExpressionInput("a*x^2 + b*x + c", parser);
        -      Graph1D graph = new Graph1D(input.getFunction(x));
        -      
        -      ComputeButton button = new ComputeButton("Graph it!");
        -      
        -      canvas.add(new Axes());
        -      canvas.add(graph);
        -      canvas.add(new DrawBorder(Color.darkGray, 2));
        -      
        -      JCMPanel main = new JCMPanel();  // Build interface out of JCMPanels!
        -      main.setInsetGap(3);
        -      main.add(canvas, BorderLayout.CENTER);
        -      main.add(limits, BorderLayout.EAST);
        -      JCMPanel bot = new JCMPanel(5,1);
        -      main.add(bot, BorderLayout.SOUTH);
        -      
        -      bot.add(new Label("Enter a function f(x), which can use the constants a, b, and c:"));
        -      JCMPanel inputPanel = new JCMPanel();
        -      bot.add(inputPanel);      
        -      inputPanel.add(input, BorderLayout.CENTER);
        -      inputPanel.add(button, BorderLayout.EAST);
        -      
        -      bot.add( makeSliderPanel(a) );  // Create and add the sliders.
        -      bot.add( makeSliderPanel(b) );
        -      bot.add( makeSliderPanel(c) );
        -      
        -      Controller controller = main.getController();  // Set up error reporting.
        -      controller.setErrorReporter(canvas);
        -      limits.setErrorReporter(canvas);
        -
        -      main.gatherInputs();  // Set up main panel to respond to changes in input objects.
        -                            // This works since the interface is built of JCMPanels.  For
        -                            // the same reason, I don't have to add the objects the the
        -                            // controller.
        -                             
        -      button.setOnUserAction(controller);  // Set controller to respond to button.
        -
        -      setBackground(Color.lightGray);
        -      setLayout(new BorderLayout());
        -      add(main,BorderLayout.CENTER);
        -
        -   } // end init()
        -   
        -} // end class SliderGraph
        -
        -
        -
        - -
        -
        [ -prev | -main | -next -]
        - -
        - - diff --git a/lib/WeBWorK/htdocs/applets/Xgraph/jcm1.0-config2.jar b/lib/WeBWorK/htdocs/applets/Xgraph/jcm1.0-config2.jar deleted file mode 100644 index da5a76a8d..000000000 Binary files a/lib/WeBWorK/htdocs/applets/Xgraph/jcm1.0-config2.jar and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/README b/lib/WeBWorK/htdocs/applets/geogebra_stable/README deleted file mode 100644 index 3045b99b7..000000000 --- a/lib/WeBWorK/htdocs/applets/geogebra_stable/README +++ /dev/null @@ -1,15 +0,0 @@ -Updating the geogebra_stable directory - -Currently at - -Version 3.2.46.0 December 17, 2010 - -(a little behind webstart version) - -To upgrade go to - -http://www.geogebra.org/cms/en/installers - -grab the installer APPROPRIATE FOR YOUR OPERATING SYSTEM - -unpack it and install it in geogebra_stable \ No newline at end of file diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra.html b/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra.html deleted file mode 100644 index ed2b2cf31..000000000 --- a/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra.html +++ /dev/null @@ -1,25 +0,0 @@ - - -

        Geogebra applet

        -
        - - - - - - - - - - - Sorry, the GeoGebra Applet could not be started. Please make sure that Java 1.4.2 (or later) is installed and activated.(click here to install Java now) - -
        - - - - - diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra.jar b/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra.jar deleted file mode 100644 index d0586fc83..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra.jar and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra.xml b/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra.xml deleted file mode 100644 index e613d7595..000000000 --- a/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - GeoGebra worksheet - Pracovní list GeoGebry - GeoGebra-Arbeitsblatt - Archivo GeoGebra - Feuille de travail GeoGebra - जीओ-जेबà¥à¤°à¤¾ कारà¥à¤¯-पतà¥à¤° - Foglio di lavoro GeoGebra - Planilha GeoGebra - - - - - GeoGebra tool - Nástroj GeoGebry - GeoGebra-Werkzeug - Herramienta GeoGebra - Outil GeoGebra - जीओ-जेबà¥à¤°à¤¾ साधन - Strumento GeoGebra - Ferramenta GeoGebra - - - - \ No newline at end of file diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra/properties/error.properties b/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra/properties/error.properties deleted file mode 100644 index 572d11301..000000000 --- a/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra/properties/error.properties +++ /dev/null @@ -1,129 +0,0 @@ -AngleMustBeConstant=Every angle has to be constant. - -AppletWindowClosing=Please close the browser window to exit GeoGebra. -# not used -AssignmentDependentToFree=Free objects may not be overwritten by dependent objects. -# not used -AssignmentToDependent=Dependent objects may not be overwritten. - -AssignmentToFixed=Fixed objects may not be changed. - -ChangeDependent=Dependent objects may not be changed. - -CircularDefinition=Circular definition - -CoordinatesMustBeConstant=Coordinates have to be constant. - -DivisorMustBeConstant=Every divisor has to be constant. - -Error=Error - -ExponentMustBeConstant=Every exponent has to be constant. - -ExponentMustBeInteger=Every exponent has to be an integer. - -FileFormatNewer=Please upgrade to a newer version of GeoGebra.\nThis file format is not supported. - -FileFormatUnknown=Unknown file format - -FileNotFound=File not found - -FunctionExpected=Function expected - -HelpNotFound=Could not find online help. - -IllegalAddition=Illegal addition - -IllegalArgument=Illegal argument - -IllegalArgumentNumber=Illegal number of arguments - -IllegalAssignment=Illegal assignment - -IllegalDivision=Illegal division - -IllegalExponent=Illegal exponent - -IllegalMultiplication=Illegal multiplication - -IllegalSubtraction=Illegal subtraction - -IllegalVariable=Illegal variable - -IncompleteEquation=Incomplete equation:\nPlease enter both sides of the equation. - -InvalidEquation=Invalid equation:\nPlease enter a linear or quadratic equation in x and y. - -InvalidFunction=Invalid function:\nPlease enter an explicit function in x. - -InvalidInput=Invalid input - -isNoAngle=is not an angle - -isNoConic=is not a conic - -isNoFunction=is not a function - -isNoLength=is not a length - -isNoLine=is not a line - -isNoNumber=is not a number - -isNoPoint=is not a point - -isNoText=is not a text - -isNoVector=is not a vector - -LengthMustBeConstant=Every length has to be constant. - -LoadFileFailed=Opening file failed. - -NameUsed=This label is already in use. - -NumberExpected=Number expected - -RenameFailed=Rename failed - -ReplaceFailed=Redefinition failed - -SaveFileFailed=Saving file failed - -UndefinedVariable=Undefined variable - -UnknownCommand=Unknown command - -UnsupportedLAF=The chosen look and feel is not available on your computer. - -URLnotFound=Opening URL failed - -VectorExpected=Point or vector expected - -#V3.0 begin -IllegalBoolean=Illegal Boolean operation - -IllegalComparison=Illegal comparison - -Tool.CreationFailed=Tool could not be created. - -Tool.OutputNotDependent=Output object does not depend on input objects. - -Tool.InputNotNeeded=Input object is not needed. - -Tool.DeleteUsed=Tool is used in construction and cannot be deleted. - -Tool.CommandNameTaken=Command name is already used by another tool. - -#V3.0 end - -#V3.1 start -PasteImageFailed=Sorry - couldn't paste bitmap from the clipboard. - -IllegalComplexMultiplication=Illegal complex multiplication - -ExportJarMissing=Sorry, the geogebra_export.jar file is missing or corrupt. -#V3.1 end -# new keys below - -CAS.GeneralErrorMessage = Sorry, the input is not acceptable. \ No newline at end of file diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra/properties/javaui.properties b/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra/properties/javaui.properties deleted file mode 100644 index e23f6f14b..000000000 --- a/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra/properties/javaui.properties +++ /dev/null @@ -1,57 +0,0 @@ -FileChooser.acceptAllFileFilterText=All Files -FileChooser.cancelButtonText=Cancel -FileChooser.cancelButtonToolTipText=Cancel -FileChooser.deleteFileButtonText=Delete -FileChooser.deleteFileButtonToolTipText=Delete selected file -FileChooser.detailsViewActionLabelText=Details -FileChooser.detailsViewButtonAccessibleName=Details -FileChooser.detailsViewButtonToolTipText=Details -FileChooser.directoryDescriptionText=Directory -FileChooser.directoryOpenButtonText=Open -FileChooser.directoryOpenButtonToolTipText=Open selected file -FileChooser.directorysavebuttonText=Save -FileChooser.directorysavebuttonToolTipText=Save directory -FileChooser.enterFilenameLabelText=File name: -FileChooser.fileAttrHeaderText=Attributes -FileChooser.FileChooserDetailsText=Details -FileChooser.fileDateHeaderText=Date -FileChooser.fileDateHeaderText=Modified -FileChooser.fileNameHeaderText=Name -FileChooser.fileNameLabelText=File name: -FileChooser.fileSizeHeaderText=Size -FileChooser.filesLabelText=Files: -FileChooser.filesOfTypeLabelText=Files of type: -FileChooser.fileTypeHeaderText=Type -FileChooser.filterLabelText=Filter: -FileChooser.foldersLabelText=Folder: -FileChooser.helpButtonText=Help -FileChooser.helpButtonToolTipText=Help -FileChooser.homeFolderAccessibleName=Home -FileChooser.homeFolderToolTipText=Home -FileChooser.listViewActionLabelText=List -FileChooser.listViewButtonAccessibleName=List -FileChooser.listViewButtonToolTipText=List -FileChooser.lookInLabelText=Look In: -FileChooser.newFolderActionLabelText=New Folder -FileChooser.newFolderButtonText=New Folder -FileChooser.newFolderButtonToolTipText=Create new folder -FileChooser.newFolderDialogText=New Folder -FileChooser.newFolderToolTipText=Create New Folder -FileChooser.openButtonText=Open -FileChooser.openButtonToolTipText=Open -FileChooser.openDialogTitleText=Open -FileChooser.pathLabelText=Path: -FileChooser.refreshActionLabelText=Refresh -FileChooser.renameFileButtonText=Rename -FileChooser.renameFileButtonToolTipText=Rename -FileChooser.renameFileDialogText=Rename -FileChooser.saveButtonText=Save -FileChooser.saveButtonToolTipText=Save -FileChooser.saveDialogTitleText=Save -FileChooser.saveInLabelText=Save in: -FileChooser.sortMenuLabelText=Arrange Icons By -FileChooser.updateButtonText=Update -FileChooser.updateButtonToolTipText=Update -FileChooser.upFolderAccessibleName=Up -FileChooser.upFolderToolTipText=Up -FileChooser.viewMenuLabelText=View \ No newline at end of file diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra/properties/menu.properties b/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra/properties/menu.properties deleted file mode 100644 index 4d8b6d053..000000000 --- a/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra/properties/menu.properties +++ /dev/null @@ -1,606 +0,0 @@ -About=About - -AngleUnit=Angle Unit - -AngularBisector=Angle Bisector - -Axes=Axes - -Circle2=Circle with Center through Point - -Circle3=Circle through Three Points - -Close=Close - -Conic5=Conic through Five Points - -Conic=Conic - -ConicMenu=Conic - -DecimalPlaces=Decimal Places - -Degree=Degree - -Delete=Delete Object - -DrawingPadToClipboard=Graphics View to Clipboard - -Edit=Edit - -English=English - -Exit=Exit - -Export=Export - -FastHelp=Fast Help - -File=File - -Files=Files - -FontSize=Font Size - -Geometry=Geometry - -German=Deutsch - -GraphicsQuality=Graphics - -Grid=Grid - -Help=Help - -HighQuality=High Quality - -InputField=Input Bar - -Intersect=Intersect Two Objects - -Join=Line through Two Points - -Labels=Show or Hide Labels - -Landscape=Landscape - -Language=Language - -License=License - -LineBisector=Perpendicular Bisector - -LineMenu=Line - -Load=Open - -LookAndFeel=Look and Feel - -LowQuality=Low Quality - -Metal=Metal - -Mode=Mode - -Motif=Motif - -Move=Move - -New=New - -off=Off - -on=On - -Options=Options - -Orthogonal=Perpendicular Line - -Parallel=Parallel Line - -Point=New Point - -PointCapturing=Point Capturing - -PointMenu=Point - -Polygon=Polygon - -Portrait=Portrait - -Print=Print - -PrintPreview=Print Preview - -Radiant=Radians - -Ray=Ray through Two Points - -Redo=Redo - -Refresh=Refresh Views - -Relation=Relation between Two Objects - -Rename=Rename - -Save=Save - -SaveAs=Save As - -SaveCurrentFileQuestion=Do you want to save the current file? - -Segment=Segment between Two Points - -Tangent=Tangents - -#V2.5 changed -Text=Insert Text - -TranslateView=Move Drawing Pad - -Undo=Undo - -Vector=Vector between Two Points - -VectorMenu=Vector - -View=View - -Windows=Windows - - -#V2.5 begin -CircleArc3=Circular Arc with Center between Two Points - -CircleSector3=Circular Sector with Center between Two Points - -CircumcircleArc3=Circumcircular Arc through Three Points - -CircumcircleSector3=Circumcircular Sector through Three Points - -Semicircle=Semicircle through Two Points - -Midpoint=Midpoint or Center - -PointStyle=Point Style - -Zoom=Zoom - -Slider=Slider - -NewWindow=New Window - -Image=Insert Image - -ShowHideObject=Show / Hide Object - -ShowHideLabel=Show / Hide Label - -Window=Window - -CopyVisualStyle=Copy Visual Style - -TranslateByVector=Translate Object by Vector - -RotateByAngle=Rotate Object around Point by Angle - -MirrorAtPoint=Reflect Object about Point - -MirrorAtLine=Reflect Object about Line - -DilateFromPoint=Dilate Object from Point by Factor - -CirclePointRadius=Circle with Center and Radius - -Angle=Angle - -VectorFromPoint=Vector from Point - -Distance=Distance or Length - -MoveRotate=Rotate around Point - -ZoomIn=Zoom In - -ZoomOut=Zoom Out - -PolarDiameter=Polar or Diameter Line - -SegmentFixed=Segment with Given Length from Point - -AngleFixed=Angle with Given Size - -CloseAll=Close All -#V2.5 end - -#V2.5.1 begin -Locus=Locus -#V2.5.1 end - -#V2.6 begin -CmdList=Command List -#V2.6 end - -#V3.0 begin -RightAngleStyle=Right Angle Style - -Continuity=Continuity - -Tool=Tool - -Tools=Tools - -Toolbar=Toolbar - -Toolbar.Customize=Customize Toolbar - -Toolbar.ResetDefault=Restore Default Toolbar - -Tool.CreateNew=Create New Tool - -Tool.Manage=Manage Tools - -Tool.SelectObjects=Select objects in construction or choose from list - -Tool.CreationSuccess=New tool created successfully! - -Tool.DeleteQuestion=Do you really want to delete the selected tools? - -ToolName=Tool name - -ToolHelp=Tool help - -CommandName=Command name - -OutputObjects=Output Objects - -InputObjects=Input Objects - -NameIcon=Name & Icon - -Icon=Icon - -ShowInToolBar=Show in Toolbar - -Select=Select Object -Select.Help=Click on object to select it - -Move.Help=Drag or select objects (Esc) - -InputField.Help=Select object to copy its name to input bar - -Point.Help=Click on the drawing pad or on line, function, or curve - -Join.Help=Select two points - -Segment.Help=Select two points - -SegmentFixed.Help=Select point and enter segment length - -Ray.Help=Select starting point, then point on ray - -Polygon.Help=Select all vertices, then click first vertex again - -Parallel.Help=Select point and parallel line - -Orthogonal.Help=Select point and perpendicular line - -Intersect.Help=Select two objects or click directly on intersection - -LineBisector.Help=Select two points or one segment - -AngularBisector.Help=Select three points or two lines - -Tangent.Help=Select point or line, then circle, conic, or function - -PolarDiameter.Help=Select point or line, then circle or conic - -Circle2.Help=Select center point, then point on circle - -Circle3.Help=Select three points on circle - -Conic5.Help=Select five points on conic - -Relation.Help=Select two objects - -TranslateView.Help=Drag the drawing pad or one axis (Shift + Drag) - -ShowHideObject.Help=Select objects to hide, then switch to another tool - -ShowHideLabel.Help=Select object - -CopyVisualStyle.Help=Select one object, then click on others - -Delete.Help=Select object - -Vector.Help=Select starting point, then end point - -Text.Help=Click on the drawing pad or on point to specify position - -Image.Help=Click on the drawing pad or on point to specify position - -Midpoint.Help=Select two points, one segment, circle, or conic - -Semicircle.Help=Select two end points - -CircleArc3.Help=Select center and two points - -CircleSector3.Help=Select center and two points - -CircumcircleArc3.Help=Select three points on arc - -CircumcircleSector3.Help=Select three points on sector - -Slider.Help=Click on the drawing pad to specify position - -MirrorAtPoint.Help=Select object to reflect, then center point - -MirrorAtLine.Help=Select object to reflect, then line of reflection - -TranslateByVector.Help=Select object to translate, then vector - -RotateByAngle.Help=Select object to rotate, then center point, and enter angle - -DilateFromPoint.Help=Select object to dilate, then center point, and enter factor - -CirclePointRadius.Help=Select center point and enter radius - -Angle.Help=Select three points or two lines - -AngleFixed.Help=Select leg point, then vertex, and enter size - -VectorFromPoint.Help=Select starting point and vector - -Distance.Help=Select two points, segment, polygon, or circle - -MoveRotate.Help=Select rotation center point, then drag object - -ZoomIn.Help=Click on the drawing pad to zoom in (Mouse Wheel) - -ZoomOut.Help=Click on the drawing pad to zoom out (Mouse Wheel) - -Locus.Help=Select locus point, then point on object - -Area=Area -Area.Help=Select polygon, circle, or conic - -Slope=Slope -Slope.Help=Select line - -RegularPolygon=Regular Polygon -RegularPolygon.Help=Select two points and enter number of vertices - -Trace=Trace On / Off -Trace.Help=Select object to show / hide its trace - -Fix=Fix On / Off -Fix.Help=Select object to fix / free it - -ShowCheckBox=Check Box to Show / Hide Objects -ShowCheckBox.Help=Click on the drawing pad to specify position - -General=General - -Advanced=Advanced - -UserInterface=User Interface - -Functionality=Functionality - -EnableRightClick=Enable right click features - -ShowResetIcon=Show icon to reset construction - -ShowMenuBar=Show menubar - -ShowToolBarHelp=Show toolbar help - -ShowToolBar=Show toolbar - -ShowInputField=Show input bar - -Separator=Separator - -Labeling=Labeling - -Labeling.automatic=Automatic - -Labeling.on=All New Objects - -Labeling.off=No New Objects - -Labeling.pointsOnly=New Points Only - -Labeling.propertiesDefault=Use Properties Default - -Settings=Settings - -Settings.Save=Save Settings - -Settings.ResetDefault=Restore Default Settings - -Copy=Copy - -Paste=Paste - -Cut=Cut - -SelectAll=Select All - -Default.Set=Set as Default - -Default.Restore=Restore Default - -Properties.Basic=Basic - -Properties.Algebra=Algebra - -Properties.Style=Style - -Properties.Position=Position - -Preview=Preview - -ExpandAll=Expand All - -CollapseAll=Collapse All - -Button.Caption=Caption - -Conditions=Conditions - -Condition.ShowObject=Condition to Show Object -#V3.0 end - -#V3.1 start -Clipboard=Clipboard - -SelectCurrentLayer=Select Current Layer - -Compasses=Compass -Compasses.Help=Select segment or two points for radius, then center point - -MirrorAtCircle=Reflect Point about Circle -MirrorAtCircle.Help=Select point to reflect, then circle - -#RGB=RGB -#Swatches=Swatches -DynamicColors=Dynamic Colors - -Red=Red - -Green=Green - -Blue=Blue - -Ellipse3=Ellipse -Ellipse3.Help=Select two foci and point on ellipse - -Hyperbola3=Hyperbola -Hyperbola3.Help=Select two foci and point on hyperbola - -Parabola=Parabola -Parabola.Help=Select point and directrix - -PasteDataFromClipboard=Paste Data from Clipboard - -DoYouWantToSaveYourChanges=Do you want to save your changes? - -DontSave=Don't Save - -Cancel=Cancel - -CloseFile=Close File - -DontOverwrite=Don't Overwrite - -Overwrite=Overwrite - -DeleteTool=Delete Tool - -DontDeleteTool=Don't Delete Tool - -ClearSelection=Clear Selection - -InsertLeft=Insert Left - -InsertRight=Insert Right - -InsertAbove=Insert Above - -InsertBelow=Insert Below - -CheckboxSize=Checkbox Size - -CheckboxSize.Large=Large - -CheckboxSize.Regular=Regular - -CreateListOfPoints=Create List of Points - -CreateList=Create List - -CreateMatrix=Create Matrix - -ClearColumn=Clear Column - -ClearColumns=Clear Columns - -ClearRow=Clear Row - -ClearRows=Clear Rows - -FitLine=Best Fit Line -FitLine.Help=Select points using selection rectangle, or list of points - -Isometric=Isometric - -Bold=Bold - -Rounding=Rounding - -SelectAncestors=Select Ancestors - -SelectDescendants=Select Descendants - -RecordToSpreadsheet=Record to Spreadsheet -RecordToSpreadsheet.Help=Select object to trace, then change the construction - -CopyToInputBar=Copy to Input Bar - -EnableLabelDrags=Enable dragging of labels - -DeleteObjects=Delete Objects -## new tokens below - -SubstituteDialog=Substitute Dialog - -RecomputeAllViews=Recompute All Objects -#V3.1 end - -# keys for perspectives in menu -IgnoreDocumentPerspective=Ignore Layout of Loaded Documents - -ShowViewTitlebar=Show Title Bar of Views - -SaveCurrentPerspective=Save Current Perspective - -ManagePerspectives=Manage Perspectives - -InputOnTop=Show at the Top - -Perspective.BasicGeometry=Basic Geometry - -Perspective.Geometry=Geometry - -Perspective.AlgebraAndGraphics=Algebra & Graphics - -Perspective.TableAndGraphics=Table & Graphics -# end keys for perspectives in menu - -# keys for tool boxes in menu -MovementTools=Movement Tools - -PointTools=Point Tools - -BasicLineTools=Line Tools - -SpecialLineTools=Special Line Tools - -PolygonTools=Polygon Tools - -CircleArcTools=Circle & Arc Tools - -ConicSectionTools=Conic Section Tools - -MeasurementTools=Measurement Tools - -TransformationTools=Transformation Tools - -SpecialObjectTools=Special Object Tools - -GeneralTools=General Tools - -CustomTools=Custom Tools -# end keys for tool boxes in menu \ No newline at end of file diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra/properties/plain.properties b/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra/properties/plain.properties deleted file mode 100644 index 38619a72a..000000000 --- a/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra/properties/plain.properties +++ /dev/null @@ -1,569 +0,0 @@ -Algebra=Algebra - -AlgebraWindow=Algebra View - -Angle=Angle - -Angles=Angles - -AnimationStep=Increment - -ApplicationName=GeoGebra - -ApplicationURL=http://www.geogebra.org - -Apply=Apply - -Author=Author - -AuxiliaryObject=Auxiliary Object - -AuxiliaryObjects=Auxiliary Objects - -back=Back - -Cancel=Cancel - -cartesian=Cartesian - -CartesianCoords=Cartesian Coordinates - -ChooseColor=Choose a color - -ChooseObject=Choose one object - -Circle=Circle - -CircleEquation=(x - m)\u00B2 + (y - n)\u00B2 = r\u00B2 - -Color=Color - -Command=Command - -Conic=Conic - -ConicLinesEquation=(a x + b y + c) (d x + e y + f) = 0 - -Conics=Conics - -ConstructionProtocol=Construction Protocol - -ConstructionProtocolHelp=

        Using the Construction Protocol


        Keyboard

        Previous construction step
        Next construction step
        HomeStart of construction
        EndEnd of construction
        DelDelete construction step


        Mouse

        Double click rowChoose construction step
        Double click headerStart of construction
        Drag & drop rowMove construction step
        Right click rowContext menu
        - -Coordinates=Coordinates - -CreatedWith=Created with - -Date=Date - -Definition=Definition - -Delete=Delete - -dependent=dependent - -DependentObjects=Dependent Objects - -Directrix=Directrix - -DoubleClickToOpen=Double click opens application window - -DoubleLine=Double line - -DoubleLineEquation=(a x + b y + c)\u00B2 = 0 - -DrawingPad=Drawing Pad - -DynamicWorksheet=Dynamic worksheet - -Edit=Edit - -Ellipse=Ellipse - -EllipseEquation=(x - m)\u00B2 / a\u00B2 + (y - n)\u00B2 / b\u00B2 = 1 - -EmptySet=Empty set - -eps=Encapsulated Postscript - -equal=equal - -Equation=Equation - -ExplicitConicEquation=y = a x\u00b2 + b x + c - -ExplicitLineEquation=y = m x + b - -Filling=Filling - -firstAxisLength=first axis' length - -FixObject=Fix Object - -Format=Format - -forward=forward - -free=free - -FreeObjects=Free Objects - -Function=Function - -GeometricObjects=Geometric objects - -Height=Height - -Hexagon=Hexagon - -Hide=Hide - -Home=Home - -HorizontalSplit=Horizontal Splitting - -html=Webpage - -Hyperbola=Hyperbola - -HyperbolaEquation=(x - m)\u00B2 / a\u00B2 - (y - n)\u00B2 / b\u00B2 = 1 - -ImplicitConicEquation=a x\u00B2 + b xy + c y\u00B2 + d x + e y = f - -ImplicitLineEquation=a x + b y = c - -InputFieldHelp=

        Using the Input Bar

        Enter Execute input
        EscapeClear input bar
        Previous input
        Next input
        F1Help for current command


        Auto-Completion of Commands
        After typing the first two letters of a command
        GeoGebra will complete the command for you.

        Enter Accept proposed command
        Another letterAdapts proposed command
        - -InputLabel=Input - -InputLabelToolTip=Type a command - -InsertPictureOfConstruction=Insert picture of graphics view - -IntersectingLines=Intersecting lines - -jpg=JPG Format - -LaTeXFormula=LaTeX formula - -Length=Length - -Lengths=Lengths - -Line=Line - -Lines=Lines - -LineStyle=Line Style - -Midpoint=Midpoint - -Name=Name - -No.=No. - -Numeric=Number - -NumericObjects=Numeric objects - -Objects=Objects - -Open=Open - -OpenButton=Button to open application window - -OverwriteFile=Do you want to overwrite this file? - -Parabola=Parabola - -ParabolaEquation=y\u00B2 = or x\u00B2 = - -parallel=parallel - -ParallelLines=Parallel lines - -ParametricForm=Parametric Form - -Pentagon=Pentagon - -Picture=Picture - -png=Portable Network Graphics - -emf=Enhanced Metafile - -svg=Scaleable Vector Graphics - -pdf=Portable Document Format - -Point=Point - -PointOn=Point on - -Points=Points - -polar=polar - -PolarCoords=Polar Coordinates - -Polygon=Polygon - -Properties=Object Properties - -Quadrangle=Quadrilateral - -Question=Question - -Radius=Radius - -Ray=Ray - -Redefine=Redefine - -Rename=Rename - -Segment=Segment - -Show=Show - -ShowLabel=Show Label - -ShowObject=Show Object - -ShowTrace=Show Trace - -Size=Size - -StandardObject=Standard Object - -StandardView=Standard View - -StartingPoint=Starting Point - -Text=Text - -TextAfterConstruction=Text below the construction - -TextBeforeConstruction=Text above the construction - -Thickness=Line Thickness - -Title=Title - -TraceOff=Trace Off - -TraceOn=Trace On - -Triangle=Triangle - -undefined=undefined - -unequal=unequal - -Value=Value - -Vector=Vector - -Vectors=Vectors - -Width=Width - -WindowOpened=Window opened - -ZoomIn=Zoom in - -ZoomOut=Zoom out - - -#V2.5 begin -ColorfulConstructionProtocol=Colorful construction protocol - -InsertPictureOfAlgebraAndConstruction=Insert picture of algebra and graphics view - -# the translation of xAxis MUST NOT include -# any spaces, i.e. it has to be ONE SINGLE word -# e.g. wrong: xAxis=axe X -# right: xAxis=axeX -xAxis=xAxis - -# the translation of yAxis MUST NOT include -# any spaces, i.e. it has to be ONE SINGLE word -# e.g. wrong: yAxis=axe Y -# right: yAxis=axeY -yAxis=yAxis - -Arc=Arc - -Sector=Sector - -Semicircle=Semicircle - -Interval=Interval - -Slider=Slider - -min=min - -max=max - -fixed=Fixed - -horizontal=Horizontal - -vertical=Vertical - -BackgroundImage=Background Image - -CornerPoint=Corner - -allowReflexAngle=Allow Reflex Angle - -Image=Image - -AbsoluteScreenLocation=Absolute Position on Screen - -ScaleInCentimeter=Scale in cm - -dilatedByFactor=dilated by factor - -ResolutionInDPI=Resolution in dpi - -Locus=Locus - -#V2.5 final begin -allowOutlyingIntersections=Allow Outlying Intersections -AxisNumbers=Numbers -AxisUnitLabel=Unit -AxisLabel=Label -TickDistance=Distance -BackgroundColor=Background Color -#V2.5 final end -#V2.5 end - -#V2.6 begin -clockwise=clockwise -counterClockwise=counter clockwise - -Breakpoint=Breakpoint -ShowOnlyBreakpoints=Show Only Breakpoints -ConstructionProtocolNavigation=Navigation Bar for Construction Steps -ConstructionProtocolButton=Button to open construction protocol -PlayButton=Play button -Play=Play -Pause=Pause -#V2.6 end - -#V2.7 begin -Bold=Bold -Italic=Italic -#V2.7 end - -#V3.0 begin -resetConstruction=Reset construction -Decoration=Decoration -EmphasizeRightAngle=Emphasize Right Angle -TitleExportPstricks=GeoGebra to PSTricks export -GeneratePstricks=Generate PSTricks code -CopyToClipboard=Copy to Clipboard -XUnits=X units (cm) -YUnits=Y units (cm) -PictureWidth=Picture width -PictureHeight=Picture height -LatexFontSize=Document font size: -DisplayPointSymbol=Display the symbol for points -AxisTicks=Ticks - -Up=Up -Down=Down -Insert=Insert -Remove=Remove -Next=Next -Back=Back -Finish=Finish - -Quadrilateral=Quadrilateral - -Boolean=Boolean Value -FixCheckbox=Fix Checkbox -List=List -#V3.0 end - -#V3.1 begin - -forceReflexAngle=Force Reflex Angle -Layer=Layer -ExportAsWebpage=Export as Webpage -DrawingPadAsPicture=Graphics View as Picture -DynamicWorksheetAsWebpage=Dynamic Worksheet as Webpage -NameAndValue=Name & Value -Caption=Caption -Spreadsheet=Spreadsheet View -off=off -xmin=xmin -xmax=xmax -ymin=ymin -ymax=ymax -Curve=Curve - - -NewNameForA=New name for %0 -AngleOfA=Angle of %0 -AngleBetweenAB=Angle between %0, %1 -AngleBetweenABC=Angle between %0, %1, %2 -AngleBetweenABCofD=Angle between %0, %1, %2 of %3 -AngleBisectorOfAB=Angle bisector of %0, %1 -AngleBisectorOfABC=Angle bisector of %0, %1, %2 -AsymptoteToA=Asymptote to %0 -AxisOfA=Axis of %0 -FirstAxisOfA=First axis of %0 -FirstAxisLengthOfA=First axis' length of %0 -SecondAxisOfA=Second axis of %0 -SecondAxisLengthOfA=Second axis' length of %0 -CenterOfA=Center of %0 -CentroidOfA=Centroid of %0 -CircleWithCenterAandRadiusB=Circle with center %0 and radius %1 -CircleThroughABC=Circle through %0, %1, %2 -CircleThroughAwithCenterB=Circle through %0 with center %1 -ConicThroughABCDE=Conic through %0, %1, %2, %3, %4 -AthDerivativeOfB=%0th derivative of %1 -DerivativeOfA=Derivative of %0 -DiameterOfAConjugateToB=Diameter of %0 conjugate to %1 -ADilatedByFactorBfromC=%0 dilated by factor %1 from %2 -DirectionOfA=Direction of %0 -DirectrixOfA=Directrix of %0 -DistanceOfAandB=Distance of %0 and %1 -EllipseWithFociABandFirstAxisLengthC=Ellipse with foci %0, %1 and first axis' length %2 -EllipseWithFociABPassingThroughC=Ellipse with foci %0, %1 passing through %2 -HyperbolaWithFociABandFirstAxisLengthC=Hyperbola with foci %0, %1 and first axis' length %2 -HyperbolaWithFociABPassingThroughC=Hyperbola with foci %0, %1 passing through %2 -ParabolaWithFocusAandDirectrixB=Parabola with focus %0 and directrix %1 -EccentricityOfA=Eccentricity of %0 -LinearEccentricityOfA=Linear eccentricity of %0 -ExtremumOfA=Extremum of %0 -FocusOfA=Focus of %0 -FunctionAonIntervalBC=Function %0 on interval [%1, %2] -IntegralOfA=Integral of %0 -IntegralOfAfromBtoC=Integral of %0 from %1 to %2 -SegmentABofC=Segment [%0, %1] of %2 -SegmentAB=Segment [%0, %1] -LengthOfA=Length of %0 -LineBisectorAB=Bisector %0, %1 -LineBisectorOfA=Bisector %0 -LineThroughAParallelToB=Line through %0 parallel to %1 -LineThroughAPerpendicularToB=Line through %0 perpendicular to %1 -LineThroughAwithDirectionB=Line through %0 with direction %1 -RayThroughAWithDirectionB=Ray through %0 with direction %1 -MidpointOfAB=Midpoint of %0, %1 -MidpointOfA=Midpoint of %0 -VectorPerpendicularToA=Vector perpendicular to %0 -UnitVectorPerpendicularToA=Unit vector perpendicular to %0 -ParameterOfA=Parameter of %0 -PointOnA=Point on %0 -PolarLineOfARelativeToB=Polar line of %0 relative to %1 -RadiusOfA=Radius of %0 -RootOfAonIntervalBC=Root of %0 on interval [%1, %2] -RootOfAWithInitialValueB=Root of %0 with initial value %1 -IntersectionPointOfAB=Intersection point of %0, %1 -IntersectionPointOfABWithInitialValueC=Intersection point of %0, %1 with initial value %2 -RootOfA=Root of %0 -ARotatedByAngleB=%0 rotated by angle %1 -SemicircleThroughAandB=Semicircle through %0 and %1 -SlopeOfA=Slope of %0 -TangentToAParallelToB=Tangent to %0 parallel to %1 -TangentToAThroughB=Tangent to %0 through %1 -InflectionPointofA=Inflection point of %0 -VertexOfA=Vertex of %0 -TranslationOfAbyB=Translation of %0 by %1 -TranslationOfAtoB=Translation of %0 to %1 -LineThroughAB=Line through %0, %1 -RayThroughAB=Ray through %0, %1 -PointAplusB=Point %0 + %1 -UnitVectorOfA=Unit vector of %0 -AMirroredAtB=%0 mirrored at %1 -# Relation.java -AIntersectsWithB=%0 intersects with %1 -ADoesNotIntersectWithB=%0 does not intersect with %1 -AandBareParallel=%0 and %1 are parallel -AandBarePerpendicular=%0 and %1 are perpendicular -AliesOnB=%0 lies on %1 -AdoesNotLieOnB=%0 does not lie on %1 -AandBareLinearlyDependent=%0 and %1 are linearly dependent -AandBareLinearlyIndependent=%0 and %1 are linearly independent -AandBareEqual=%0 and %1 are equal -AandBareNotEqual=%0 and %1 are not equal -AisaDegenerateBranchOfB=%0 is a degenerate branch of %1 -AisAnAsymptoteToB=%0 is an asymptote to %1 -AintersectsWithBOnce=%0 intersects with %1 once -AisaTangentToB=%0 is a tangent to %1 -AintersectsWithBTwice=%0 intersects with %1 twice -ADoesNotIntersectWithB=%0 does not intersect with %1 -AisNotDefined=%0 is not defined -AhasTheSameLengthAsB=%0 has the same length as %1 -AdoesNothaveTheSameLengthAsB=%0 does not have the same length as %1 -AhasTheSameAreaAsB=%0 has the same area as %1 -AdoesNothaveTheSameAreaAsB=%0 does not have the same area as %1 -AandBcannotBeCompared=%0 and %1 cannot be compared -# Relation.java end - -AliesOnThePerimeterOfB=%0 lies on the perimeter of %1 -AdoesNotLieOnThePerimeterOfB=%0 does not lie on the perimeter of %1 -ExportTextAsShapes=Export Text as Shapes -ShowAllObjects=Show All Objects -DrawingPadAsPSTricks=Graphics View as PSTricks -#TangentToAatBCD=Tangent to %0 at %1%2%3 -#replaced with: -TangentToAatB=Tangent to %0 at %1 - -TitleExportPgf=GeoGebra to PGF Export -GeneratePgf=Generate PGF/TikZ code -DrawingPagAsPGF=Graphics View as PGF/TikZ -ForceGnuplotPgf=Use Gnuplot to plot functions -Default=Default -CellAisNotDefined=Cell %0 is not defined -2x2Matrix=2x2 matrix -3x3Matrix=3x3 matrix -ADecimalPlace=%0 Decimal Place -ADecimalPlaces=%0 Decimal Places -ASignificantFigure=%0 Significant Figure -ASignificantFigures=%0 Significant Figures -ComplexNumber=Complex Number -TraceToSpreadsheet=Trace to Spreadsheet -OK=OK -Speed=Speed -SyntaxErrorAisNotAList=Syntax Error: %0 is not a list -PGFExport.Grayscale=Grayscale -Inequality=Inequality -LinearInequality=Linear inequality -## new keys below: - -Animating=Animation On -Oscillating=Oscillating -Repeat=Repeat -Increasing=Increasing -Decreasing=Decreasing -AnimationSpeed=Speed -Animation=Animation -Substitute=Substitute -SubstituteSimplify= Substitute & Simplify -XMLTagANotFound=Invalid file: XML tag %0 not found -# for the Distance Tool -DistanceAB.LaTeX="\\overline{" + %0 + %1 + "} \\, = \\, " + %2 -#DistanceAB.LaTeX=%0+%1+" \\, = \\, "+%2 -PointSize=Point Size - -# default names for different object types -Name.list=list -Name.polygon=poly -Name.locus=loc -Name.matrix=matrix -Name.text=text -Name.picture=pic - -# TODO: add (for file menu entry) -# DeleteAll=Delete all objects - -#V3.1 end - -ViewOpenExtraWindow=Show View in New Window -ViewCloseExtraWindow=Show View in Main Window -PerspectiveName=Name of Perspective diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra_applet_java2javascript.ggb b/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra_applet_java2javascript.ggb deleted file mode 100644 index 9b6446846..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra_applet_java2javascript.ggb and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra_blank.ggb b/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra_blank.ggb deleted file mode 100644 index f2dce8e84..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra_blank.ggb and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra_blank2.ggb b/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra_blank2.ggb deleted file mode 100644 index 50ad41949..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra_blank2.ggb and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra_blank3.ggb b/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra_blank3.ggb deleted file mode 100644 index 2389271ee..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra_blank3.ggb and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra_cas.jar b/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra_cas.jar deleted file mode 100644 index eee62253a..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra_cas.jar and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra_export.jar b/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra_export.jar deleted file mode 100644 index 628b3bae3..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra_export.jar and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra_gui.jar b/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra_gui.jar deleted file mode 100644 index 6c031125d..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra_gui.jar and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra_main.jar b/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra_main.jar deleted file mode 100644 index 95529532a..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra_main.jar and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra_properties.jar b/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra_properties.jar deleted file mode 100644 index 2a3a55c0b..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra_properties.jar and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra_webstart.html b/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra_webstart.html deleted file mode 100644 index d3f1bcc71..000000000 --- a/lib/WeBWorK/htdocs/applets/geogebra_stable/geogebra_webstart.html +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/128x128/apps/geogebra.png b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/128x128/apps/geogebra.png deleted file mode 100644 index 05b31e392..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/128x128/apps/geogebra.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/128x128/mimetypes/application-vnd.geogebra.file.png b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/128x128/mimetypes/application-vnd.geogebra.file.png deleted file mode 100644 index 05b31e392..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/128x128/mimetypes/application-vnd.geogebra.file.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/128x128/mimetypes/application-vnd.geogebra.tool.png b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/128x128/mimetypes/application-vnd.geogebra.tool.png deleted file mode 100644 index 05b31e392..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/128x128/mimetypes/application-vnd.geogebra.tool.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/16x16/apps/geogebra.png b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/16x16/apps/geogebra.png deleted file mode 100644 index 3754bfb3b..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/16x16/apps/geogebra.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/16x16/mimetypes/application-vnd.geogebra.file.png b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/16x16/mimetypes/application-vnd.geogebra.file.png deleted file mode 100644 index 3754bfb3b..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/16x16/mimetypes/application-vnd.geogebra.file.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/16x16/mimetypes/application-vnd.geogebra.tool.png b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/16x16/mimetypes/application-vnd.geogebra.tool.png deleted file mode 100644 index 3754bfb3b..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/16x16/mimetypes/application-vnd.geogebra.tool.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/192x192/apps/geogebra.png b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/192x192/apps/geogebra.png deleted file mode 100644 index 88d1878da..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/192x192/apps/geogebra.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/192x192/mimetypes/application-vnd.geogebra.file.png b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/192x192/mimetypes/application-vnd.geogebra.file.png deleted file mode 100644 index 88d1878da..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/192x192/mimetypes/application-vnd.geogebra.file.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/192x192/mimetypes/application-vnd.geogebra.tool.png b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/192x192/mimetypes/application-vnd.geogebra.tool.png deleted file mode 100644 index 88d1878da..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/192x192/mimetypes/application-vnd.geogebra.tool.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/22x22/apps/geogebra.png b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/22x22/apps/geogebra.png deleted file mode 100644 index 65c7197d6..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/22x22/apps/geogebra.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/22x22/mimetypes/application-vnd.geogebra.file.png b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/22x22/mimetypes/application-vnd.geogebra.file.png deleted file mode 100644 index 65c7197d6..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/22x22/mimetypes/application-vnd.geogebra.file.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/22x22/mimetypes/application-vnd.geogebra.tool.png b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/22x22/mimetypes/application-vnd.geogebra.tool.png deleted file mode 100644 index 65c7197d6..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/22x22/mimetypes/application-vnd.geogebra.tool.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/24x24/apps/geogebra.png b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/24x24/apps/geogebra.png deleted file mode 100644 index d9d45ac61..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/24x24/apps/geogebra.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/24x24/mimetypes/application-vnd.geogebra.file.png b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/24x24/mimetypes/application-vnd.geogebra.file.png deleted file mode 100644 index d9d45ac61..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/24x24/mimetypes/application-vnd.geogebra.file.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/24x24/mimetypes/application-vnd.geogebra.tool.png b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/24x24/mimetypes/application-vnd.geogebra.tool.png deleted file mode 100644 index d9d45ac61..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/24x24/mimetypes/application-vnd.geogebra.tool.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/256x256/apps/geogebra.png b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/256x256/apps/geogebra.png deleted file mode 100644 index d86b5ff49..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/256x256/apps/geogebra.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/256x256/mimetypes/application-vnd.geogebra.file.png b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/256x256/mimetypes/application-vnd.geogebra.file.png deleted file mode 100644 index d86b5ff49..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/256x256/mimetypes/application-vnd.geogebra.file.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/256x256/mimetypes/application-vnd.geogebra.tool.png b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/256x256/mimetypes/application-vnd.geogebra.tool.png deleted file mode 100644 index d86b5ff49..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/256x256/mimetypes/application-vnd.geogebra.tool.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/32x32/apps/geogebra.png b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/32x32/apps/geogebra.png deleted file mode 100644 index 110252d6e..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/32x32/apps/geogebra.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/32x32/mimetypes/application-vnd.geogebra.file.png b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/32x32/mimetypes/application-vnd.geogebra.file.png deleted file mode 100644 index 110252d6e..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/32x32/mimetypes/application-vnd.geogebra.file.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/32x32/mimetypes/application-vnd.geogebra.tool.png b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/32x32/mimetypes/application-vnd.geogebra.tool.png deleted file mode 100644 index 110252d6e..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/32x32/mimetypes/application-vnd.geogebra.tool.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/36x36/apps/geogebra.png b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/36x36/apps/geogebra.png deleted file mode 100644 index 31bc739a8..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/36x36/apps/geogebra.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/36x36/mimetypes/application-vnd.geogebra.file.png b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/36x36/mimetypes/application-vnd.geogebra.file.png deleted file mode 100644 index 31bc739a8..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/36x36/mimetypes/application-vnd.geogebra.file.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/36x36/mimetypes/application-vnd.geogebra.tool.png b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/36x36/mimetypes/application-vnd.geogebra.tool.png deleted file mode 100644 index 31bc739a8..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/36x36/mimetypes/application-vnd.geogebra.tool.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/48x48/apps/geogebra.png b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/48x48/apps/geogebra.png deleted file mode 100644 index 49945ddc0..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/48x48/apps/geogebra.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/48x48/mimetypes/application-vnd.geogebra.file.png b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/48x48/mimetypes/application-vnd.geogebra.file.png deleted file mode 100644 index 49945ddc0..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/48x48/mimetypes/application-vnd.geogebra.file.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/48x48/mimetypes/application-vnd.geogebra.tool.png b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/48x48/mimetypes/application-vnd.geogebra.tool.png deleted file mode 100644 index 49945ddc0..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/48x48/mimetypes/application-vnd.geogebra.tool.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/64x64/apps/geogebra.png b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/64x64/apps/geogebra.png deleted file mode 100644 index 8102d4538..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/64x64/apps/geogebra.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/64x64/mimetypes/application-vnd.geogebra.file.png b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/64x64/mimetypes/application-vnd.geogebra.file.png deleted file mode 100644 index 8102d4538..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/64x64/mimetypes/application-vnd.geogebra.file.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/64x64/mimetypes/application-vnd.geogebra.tool.png b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/64x64/mimetypes/application-vnd.geogebra.tool.png deleted file mode 100644 index 8102d4538..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/64x64/mimetypes/application-vnd.geogebra.tool.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/72x72/apps/geogebra.png b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/72x72/apps/geogebra.png deleted file mode 100644 index be6dc1f38..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/72x72/apps/geogebra.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/72x72/mimetypes/application-vnd.geogebra.file.png b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/72x72/mimetypes/application-vnd.geogebra.file.png deleted file mode 100644 index be6dc1f38..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/72x72/mimetypes/application-vnd.geogebra.file.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/72x72/mimetypes/application-vnd.geogebra.tool.png b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/72x72/mimetypes/application-vnd.geogebra.tool.png deleted file mode 100644 index be6dc1f38..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/72x72/mimetypes/application-vnd.geogebra.tool.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/96x96/apps/geogebra.png b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/96x96/apps/geogebra.png deleted file mode 100644 index 65bb9e259..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/96x96/apps/geogebra.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/96x96/mimetypes/application-vnd.geogebra.file.png b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/96x96/mimetypes/application-vnd.geogebra.file.png deleted file mode 100644 index 65bb9e259..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/96x96/mimetypes/application-vnd.geogebra.file.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/96x96/mimetypes/application-vnd.geogebra.tool.png b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/96x96/mimetypes/application-vnd.geogebra.tool.png deleted file mode 100644 index 65bb9e259..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/96x96/mimetypes/application-vnd.geogebra.tool.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/scalable/apps/geogebra.svgz b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/scalable/apps/geogebra.svgz deleted file mode 100644 index 0b19364dd..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/scalable/apps/geogebra.svgz and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/scalable/mimetypes/application-vnd.geogebra.file.svgz b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/scalable/mimetypes/application-vnd.geogebra.file.svgz deleted file mode 100644 index 0b19364dd..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/scalable/mimetypes/application-vnd.geogebra.file.svgz and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/scalable/mimetypes/application-vnd.geogebra.tool.svgz b/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/scalable/mimetypes/application-vnd.geogebra.tool.svgz deleted file mode 100644 index 0b19364dd..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/icons/hicolor/scalable/mimetypes/application-vnd.geogebra.tool.svgz and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/quadratictest.ggb b/lib/WeBWorK/htdocs/applets/geogebra_stable/quadratictest.ggb deleted file mode 100644 index ab1773b3b..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/quadratictest.ggb and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/transformationstest2.ggb b/lib/WeBWorK/htdocs/applets/geogebra_stable/transformationstest2.ggb deleted file mode 100644 index c6d7513dc..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/transformationstest2.ggb and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/unsigned/geogebra.jar b/lib/WeBWorK/htdocs/applets/geogebra_stable/unsigned/geogebra.jar deleted file mode 100644 index 32ba6f843..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/unsigned/geogebra.jar and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/unsigned/geogebra_cas.jar b/lib/WeBWorK/htdocs/applets/geogebra_stable/unsigned/geogebra_cas.jar deleted file mode 100644 index c093a06b3..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/unsigned/geogebra_cas.jar and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/unsigned/geogebra_export.jar b/lib/WeBWorK/htdocs/applets/geogebra_stable/unsigned/geogebra_export.jar deleted file mode 100644 index 30eb7fb2f..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/unsigned/geogebra_export.jar and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/unsigned/geogebra_gui.jar b/lib/WeBWorK/htdocs/applets/geogebra_stable/unsigned/geogebra_gui.jar deleted file mode 100644 index 8f81814d4..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/unsigned/geogebra_gui.jar and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/unsigned/geogebra_main.jar b/lib/WeBWorK/htdocs/applets/geogebra_stable/unsigned/geogebra_main.jar deleted file mode 100644 index e93b71e2a..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/unsigned/geogebra_main.jar and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/unsigned/geogebra_properties.jar b/lib/WeBWorK/htdocs/applets/geogebra_stable/unsigned/geogebra_properties.jar deleted file mode 100644 index fdb46c561..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/unsigned/geogebra_properties.jar and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/geogebra_stable/vectortest.ggb b/lib/WeBWorK/htdocs/applets/geogebra_stable/vectortest.ggb deleted file mode 100644 index 3b6ce6d42..000000000 Binary files a/lib/WeBWorK/htdocs/applets/geogebra_stable/vectortest.ggb and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/index.html b/lib/WeBWorK/htdocs/applets/index.html deleted file mode 120000 index 58750e779..000000000 --- a/lib/WeBWorK/htdocs/applets/index.html +++ /dev/null @@ -1 +0,0 @@ -WeBWorKAppletTest.html \ No newline at end of file diff --git a/lib/WeBWorK/htdocs/applets/liveJar/live.jar b/lib/WeBWorK/htdocs/applets/liveJar/live.jar deleted file mode 100644 index f42ab6eb0..000000000 Binary files a/lib/WeBWorK/htdocs/applets/liveJar/live.jar and /dev/null differ diff --git a/lib/WeBWorK/htdocs/applets/liveJar/liveJar.html b/lib/WeBWorK/htdocs/applets/liveJar/liveJar.html deleted file mode 100644 index eec665e90..000000000 --- a/lib/WeBWorK/htdocs/applets/liveJar/liveJar.html +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - diff --git a/lib/WeBWorK/htdocs/applets/liveJar/test.m b/lib/WeBWorK/htdocs/applets/liveJar/test.m deleted file mode 100644 index d8414bf6c..000000000 --- a/lib/WeBWorK/htdocs/applets/liveJar/test.m +++ /dev/null @@ -1,2 +0,0 @@ -Graphics3D[{ (* ...primitives and directives... *) }, - BoxRatios->{1,4,9} (* ...options... *)] diff --git a/lib/WeBWorK/htdocs/applets/live_map_instructions.html b/lib/WeBWorK/htdocs/applets/live_map_instructions.html deleted file mode 100644 index 79fffb3b5..000000000 --- a/lib/WeBWorK/htdocs/applets/live_map_instructions.html +++ /dev/null @@ -1,27 +0,0 @@ - - - - Instructions for live map - - - - Using this Live

        -
          -
        • Click anyplace on the map to move the cursor to that point. - -

           

          - -
        • Notice the readout at the upper right gives the location of the cursor measured in pixels from the lower left corner of the map. - -

           

          - -
        • You can fine tune the location of the cursor by clicking on the four arrows at the left, right, top, and bottom of the map. Each click moves the cursor one pixel in the direction indicated by the arrow. - -

           

          - -
        • Use the scale printed at the bottom of the map to determine how to convert distances measured on the map in pixels to distances on the ground measured in miles or kilometers. -
        - - - diff --git a/lib/WeBWorK/htdocs/applets/source/GraphApplet.java b/lib/WeBWorK/htdocs/applets/source/GraphApplet.java deleted file mode 100644 index f248ad348..000000000 --- a/lib/WeBWorK/htdocs/applets/source/GraphApplet.java +++ /dev/null @@ -1 +0,0 @@ -/* Modified June 10, 2000 to add some public methods that are meant to be called from JavaScript. The following applet parameters were also added: Param name Default value Meaning ---------- ------------- ------- parameter, none The name of a variable, other than "x" parameter1, that can be used as a parameter in parameter2, the definition of the function. ... Their values can be set and queried by calling public methods. value, 0 Initial values for the parameters. value1, value2, ... */ /* GraphApplet displays the graph of a mathematical function. It can be configured with the following applet parameters: Param name Default value Meaning ---------- ------------- ------- userInput no If set to yes, there will be an input box where the user can enter the definition of the function. userLimits no If set to yes, there will be a set of inputs which control the x and y limits on the graph. userZoom no If set to yes, the user can zoom in on a point by clicking on it, and zoom out by shift-clicking. function abs(x) ^ x The function to be graphed, or if userInput is set to "yes", the initial function. limits -5 5 -5 5 Four numbers giving the x and y limits on the graph (xmin, xmax, ymin, ymax). Numbers can be separated by spaces or commas. The definition of a function can include: numbers, the variable x, the operators + - * / ^ and ! (where ^ represents exponentiation), and the functions sin, cos, tan, sec, csc, cot, arcsin, arccos, arctan, ln, log2, log10, exp, abs, sqrt, cubert, trunc, round, and ceiling. It can also include a "?:" conditional operator in the style of the C programming language: test ? value1 : value2 where test can include the logical operators: < <= = > >= and or not. (The ": value2" part is optional.) There is also a sum operation: sum(sumationVariable, start, end, expression). For example: sum(i, 0, k, x^i / i!) This applet is part of the mathbeans package, and it must be used in an tag with code="mathbeans.GraphApplet.class" and with mathbeans.jar available as an archive. See the mathbeans web site at http://math.hws.edu/mathbeans/ for more information. David Eck (eck@hws.edu, http://math.hws.edu/eck/) 26 August 1999 */ package mathbeans; import mathbeans.awt.*; import mathbeans.data.*; import mathbeans.draw.*; import java.awt.*; import java.awt.event.*; import java.applet.Applet; public class GraphApplet extends Applet { /* Some public methods for calling from JavaScript */ public void setFunction(String funcDef) { if (functionInput == null) { if (functionLabel != null) functionLabel.setText(funcDef); try { functionParser.getSymbolTable().remove("f"); Function f = functionParser.defineFunction("f","x",funcDef); graph.setFunction(f); mainPanel.compute(); } catch (ParseError e) { graph.setFunction(null); canvas.setErrorMessage("Error in function definition: " + e); } } else { functionInput.setText(funcDef); funcDefString = funcDef; mainPanel.compute(); } } public String getFunction() { if (functionInput != null) { mainPanel.compute(); return functionInput.getText(); } else { return funcDefString; } } public void setLimits(double xmin, double xmax, double ymin, double ymax) { coordRect.setLimits(xmin,xmax,ymin,ymax); } public boolean setVariableValue(String name, double val) { MathObject obj = functionParser.getSymbol(name); if (obj != null && obj instanceof Variable) { ((Variable)obj).setValue(val); mainPanel.compute(); return true; } else { return false; } } public boolean defineNewVariable(String name) { if (name != null && functionParser.getSymbol(name) == null) { functionParser.defineVariable(name); return true; } else { return false; } } public double getVariableValue(String name) { MathObject obj = functionParser.getSymbol(name); if (obj != null && obj instanceof Variable) return ((Variable)obj).getValue(); else return Double.NaN; } // Variables introduced for use in the above routines. // They are set in the init() method. private MathBeanPanel mainPanel; // Main MathBeanPanel for the applet. private CoordinateRect coordRect; // Coordinate rect for the canvas. private ExpressionFunctionInput functionInput; // Input box, if userInput is "yes" private Label functionLabel; // Label that shows definition, if userInput is "no" private String funcDefString; // String that defines function, if userInput is "no" private Parser functionParser; // Parser used to define function. private Graph1D graph; // Graph that shows the function. //---------------------------------------------------- public void init() { /* The init method sets up the interface of the applet. For a "mathbean" * applet, this is all you have to do, since interface components take care * of themselves once they have been created and properly configured. * The entire applet is filled by a "MathBeanPanel", which coordinates * the activities of the mathematical components that it contains. * "panel.setInsetGap(3) leaves a 3-pixel border between the edge of the * panel and the components that it contains. */ MathBeanPanel panel = new MathBeanPanel(); mainPanel = panel; // new, for Javascript panel.setInsetGap(3); setLayout(new BorderLayout()); add(panel,BorderLayout.CENTER); /* A parser knows how to convert a string that represents a mathematical * expression into an internal form that can be used for computation. * Every mathbeans application needs at least one parser. */ Parser parser = new Parser(); functionParser = parser; /* New for JavaScript: Get names of variables from applet params. These * variables can be used in the function. Their values can be set and * tested by calling the above public methods. */ String name = getParameter("parameter"); String val = getParameter("value"); int ct = 0; if (name == null) { ct++; name = getParameter("parameter1"); val = getParameter("value1"); } while (name != null) { Variable v = parser.defineVariable(name); if (val != null) { double[] value = Util.extractNumbers(val); if (value != null && value.length > 0) v.setValue(value[0]); else v.setValue(0); } ct++; name = getParameter("parameter" + ct); val = getParameter("value" + ct); } /* This section defines the function that is to be graphed, either as * as a fixed function or as a user input function. The call to * getParameter("function") gets the value of the applet param with * name="function", if one has been provided in the tag. * If not, the value will be null. In that case, use a default * function. */ Function func; // The function to be graphed. String functionDef = getParameter("function"); if (functionDef == null) functionDef = "abs(x) ^ x"; if ("yes".equalsIgnoreCase(getParameter("userInput"))) { // Function can be entered by user. Use an // ExpressionFunctionInput box for user input. ExpressionFunctionInput in = new ExpressionFunctionInput("f","x",parser,functionDef); MathBeanPanel top = new MathBeanPanel(); // in.withLabel() is a component consisting of the input // box together with a lable "f(x)=" at its left. top.add(in.withLabel(), BorderLayout.CENTER); Button button = new Button("Use New Data"); // The next two lines cause the panel to recompute its contents // -- that is, to graph the new function -- when the user clicks // the button or presses return in the input box. A MathBeanPanel // always responds to events by recomputing everything. button.addActionListener(panel); in.addActionListener(panel); top.add(button, BorderLayout.EAST); // The ExpressionInputBox has an associated Function object, // representing the function defined by the user's input. // This is the function that is to be graphed. The definition // of the function changes whenever the panel recomputes its // contents (in this applet, when the user clicks the button or // presses return in the function input box). func = in.getFunction(); panel.add(top, BorderLayout.NORTH); functionInput = in; // new, for Javascript } else { // The graph will show a fixed function, defined by functionDef. // If there is an error in the function definition, a ParseError // will be thrown. In that case, use the default function. try { func = parser.defineFunction("f","x",functionDef); } catch (ParseError e) { func = null; } if (func == null) { try { functionDef = "abs(x) ^ x"; func = parser.defineFunction("f","x",functionDef); } catch (ParseError e) { // There shouldn't be an error here, unless the programmer makes // an error in the default function. However, ParseErrors must // always be handled in a try..catch. Print an error to the // console for debugging. System.out.println("Unexpected parse error in init(): " + e.getMessage()); } } Label lbl = new Label("f(x) = " + functionDef, Label.CENTER); panel.add(lbl, BorderLayout.NORTH); functionLabel = lbl; // new, for JavaScript funcDefString = functionDef; // new, for JavaScript } /* Get the xy limits specified by the user, if any. If there is no "limits" * param in the tag or if the value of the param is illegal, use * a default value of -5,5,-5,5. The routine Util.extractNumbers(String) * converts a string consisting of a list of numbers into an array of doubles. */ double[] limits = Util.extractNumbers(getParameter("limits")); if (limits == null || limits.length < 4) limits = new double[] { -5,5,-5,5 }; /* Create the canvas and add it to the panel. The call to * panel.setErrorReporter(canvas) means that if an error is * found in user input, an error message will be display on * the canvas. Otherwise, the error would be reported in * a dialog box, which is probably not a good idea in an applet. * A DisplayCanvas can display various graphical * objects, including axes and graphs. These objects are subclasses * of the class "Drawable". In this case the Drawable objects * displayed by the canvas are a set of axes, the graph of func, * and a one-pixel black border around the canvas. The canvas has * a CoordinateRect, which lays down an xy-coordinate system on * the canvas. The axes and graph use this coordinate system. */ canvas = new DisplayCanvas(); // declared below, outside the init() routine panel.setErrorReporter(canvas); CoordinateRect cr = new CoordinateRect(limits[0],limits[1],limits[2],limits[3]); coordRect = cr; // new, for JavaScript canvas.addCoordinateRect(cr); canvas.add(new Axes()); graph = new Graph1D(func); // new, for JavaScript canvas.add(graph); canvas.add(new DrawBorder()); panel.add(canvas, BorderLayout.CENTER); /* If the user is allowed to change xy limits, add a "control panel" * for this on the right edge of the applet. Here, some extra buttons * are added to a standard LimitControlPanel. The "ZoomButtons" * let the user zoom in or out on the graph by clicking a button. * The "RestoreButton" will restore the original limits from when * the applet was first created. */ if ("yes".equalsIgnoreCase(getParameter("userLimits"))) { LimitControlPanel lcp = new LimitControlPanel(canvas.getCoordinateRect(0)); lcp.addZoomButtons(); lcp.addRestoreButton(); panel.add(lcp, BorderLayout.EAST); } /* If "userZoom" is enabled, call canvas.setHandleMouseZooms(true). This * will let the user zoom in on a point on the graph by clicking on the * canvas. The user can zoom out from a point by clicking with the shift * key held down. */ if ("yes".equalsIgnoreCase(getParameter("userZoom"))) canvas.setHandleMouseZooms(true); } // end init() private DisplayCanvas canvas; // The canvas used in the applet public void stop() { // When the applet is stopped, be polite by releasing the // canvas's fairly large amount of allocated memory. canvas.releaseResources(); } } // end class GraphApplet \ No newline at end of file diff --git a/lib/WeBWorK/htdocs/applets/source/GummyGraph.java b/lib/WeBWorK/htdocs/applets/source/GummyGraph.java deleted file mode 100644 index 7a063157f..000000000 --- a/lib/WeBWorK/htdocs/applets/source/GummyGraph.java +++ /dev/null @@ -1 +0,0 @@ - /* Lets user reshape a graph by dragging points up and down. Shift-click to move all points back to the vertical center. Left click to drag a point and drag its neighbors along. Right-click to drag a point without dragging its neighbors. --David Eck, June 2000 (eck@hws.edu, http://math.hws.edu/eck/) */ import java.awt.*; import java.applet.Applet; import java.util.StringTokenizer; public class GummyGraph extends Applet { // Parameters that can be set through appelt params and manipulated // with JavaScript. (See public methods below.) private int points = 11; private double xmin = -5, xmax = 5, ymin = -5, ymax = 5; private double xGrid = 1; private double yGrid = 1; private int gap = 5; private double fallOff = 0.5; private Color borderColor = Color.black; private int borderWidth = 2; private Color gridColor = Color.lightGray; private Color axesColor = new Color(0,0,220); private Color lightAxesColor = new Color(160,180,255); private Color graphColor = Color.magenta; private boolean showPoints = true; private boolean showGrid = true; // Background color is set in init(); change it there. //-------------------- private implementation details --------------------------- private Image OSC = null; private int canvasWidth, canvasHeight; private boolean graphNeedsRedraw; private boolean axesNeedsRedraw; private boolean needsRedraw; //------------------- Public methods for scripting ------------------------------- public int getPointCount() { // Return the number of draggable points on the graph // (which is one plus the number of sub-intervals). return points; } public double getX(int pointNumber) { // Get the x-value of point number pointNumber. // Note: x-values are always evenly spaced. if (pointNumber < 0 || pointNumber >= points) return Double.NaN; return xmin + pointNumber*(xmax-xmin)/(points-1); } public double getY(int pointNumber) { // Return the y-value of point number pointNumber. // X and y values are stored internally as values // between 0 and 1. The actual x and y values // are determined by scaling these internal values // using the current xmin, xmax, ymin, ymax. if (pointNumber < 0 || pointNumber >= points) return Double.NaN; return ymin + yValues[pointNumber]*(ymax - ymin); } public double getDerivative(int pointNumber) { // Get the derivative at point number pointNumber. // This is just computed from the y-values. if (pointNumber < 0 || pointNumber >= points) return Double.NaN; double dx = 1.0/points * (xmax - xmin); if (pointNumber == 0) return (yValues[1] - yValues[0])*(ymax-ymin)/dx; else if (pointNumber == points-1) return (yValues[points-1] - yValues[points-2])*(ymax-ymin)/dx; else return (yValues[pointNumber+1] - yValues[pointNumber-1])*(ymax-ymin)/(2*dx); } public void reset() { // Puts all points back to the vertical center of the applet. for (int i = 0; i < points; i++) { yValues[i] = 0.5; derivatives[i] = 0; } graphNeedsRedraw = true; repaint(); } public void setPointCount(int ct) { // Set the number of points and reset y-values // to the vertical center of the applet. if (ct > 2 && ct <= 500) { points = ct; yValues = new double[points]; derivatives = new double[points]; for (int i = 0; i < points; i++) yValues[i] = 0.5; graphNeedsRedraw = true; repaint(); } } public void setY(int pointNumber, double val) { // Change the y-value of one point. if (pointNumber < 0 || pointNumber >= 0 || val < ymin || val > ymax) return; yValues[pointNumber] = (val-ymin)/(ymax-ymin); graphNeedsRedraw = true; repaint(); } public boolean setPoints(String points) { // The string, points, should be a list of numbers // separated by spaces or commas. These are used as // y-values for the points on the curve, replacing the // current points. Values are clamped to the range // from ymin to ymax. If the contents of the string // are not legal, the current graph is not changed // and the value false is returned. If the contents // of points are legal, true is returned. double[] vals = getDoubles(points); if (vals == null || vals.length < 3 || vals.length > 500) return false; setPointCount(vals.length); // Sets graphNeedsRedraw = true and calls repaint() for (int i = 0; i < vals.length; i++) { if (vals[i] > ymax) yValues[i] = 1; else if (vals[i] < ymin) yValues[i] = 0; else yValues[i] = (vals[i]-ymin)/(ymax-ymin); } makeDerivs(); return true; } public void setLimits(double xmin, double xmax, double ymin, double ymax) { // Change the ranges of x and y on the applet. if (xmax <= xmin || ymax <= ymin) return; this.ymax = ymax; this.ymin = ymin; this.xmax = xmax; this.xmin = xmin; axesNeedsRedraw = true; repaint(); } public void setGap(int g) { // This is space left between the axex and the border // of the applet. Default is 5. if (g >= 0 && g != gap) { gap = g; axesNeedsRedraw = true; graphNeedsRedraw = true; repaint(); } } public void setXGrid(double spacing) { // Set spacing between x grid lines (in the same units // that are used for xmin and xmax, so changing these // will change the number of grid lines). If the // value is zero, no x grid lines are drawn. if (spacing >= 0) { xGrid = spacing; needsRedraw = true; repaint(); } } public void setYGrid(double spacing) { // Set spacing between y grid lines. If the value is // zero, no y grid lines are drawn. if (spacing >= 0) { yGrid = spacing; needsRedraw = true; repaint(); } } public void setFallOff(double factor) { // When a point is dragged with the left mouse button, it can drag // its neighbors along. The displacement of the neighbor is // less than the displacement of the point by the fallOff factor. // For the neighbor of the neighbor, the displacement decreases by // another fallOff factor, and so on. If the value is zero, // then neighbors are not dragged at all. If the number of points // is small, this should be close to zero. For large numbers of // points, it can be close to one. if (factor >= 0 && factor < 1) { fallOff = factor; } } public void setBorderWidth(int b) { // How many pixels is the border drawn around the edge of the // applet. if (b >= 0) { borderWidth = b; needsRedraw = true; repaint(); } } public void setBorderColor(String color) { // Color of border. Color c = getColor(color); if (c != null) { borderColor = c; needsRedraw = true; repaint(); } } public void setGridColor(String color) { // Color of grid lines. Color c = getColor(color); if (c != null) { gridColor = c; needsRedraw = true; repaint(); } } public void setAxesColor(String color) { // Color of axes. Color c = getColor(color); if (c != null) { axesColor= c; needsRedraw = true; repaint(); } } public void setLightAxesColor(String color) { // Color used for axis when the real axis is // outside of the applet. Color c = getColor(color); if (c != null) { lightAxesColor= c; needsRedraw = true; repaint(); } } public void setGraphColor(String color) { // Color of graph. Color c = getColor(color); if (c != null) { graphColor= c; needsRedraw = true; repaint(); } } public void setBackgroundColor(String color) { // Background color for the whole applet. Color c = getColor(color); if (c != null) { setBackground(c); needsRedraw = true; repaint(); } } public void setShowPoints(boolean show) { // Should the points be drawn as little circles? // If you have a lot of points, it might not be // a good idea, since then just about any point on // the graph can be dragged. if (show != showPoints) { showPoints = show; needsRedraw = true; repaint(); } } public void setShowGrid(boolean show) { // Should the grid lines be drawn? if (show != showGrid) { showGrid = show; needsRedraw = true; repaint(); } } //----------------- Init method can set properties from applet params --------------- public void init() { setBackground(Color.white); setBackgroundColor(getParameter("backgroundColor")); setBorderColor(getParameter("borderColor")); setAxesColor(getParameter("axesColor")); setLightAxesColor(getParameter("lightAxesColor")); setGraphColor(getParameter("graphColor")); setGridColor(getParameter("gridColor")); setGap(getInt(getParameter("gap"))); int n = getInt(getParameter("pointCount")); setPointCount( (n > 2 && n <= 500)? n : 11 ); double[] dvals = getDoubles(getParameter("limits")); if (dvals != null && dvals.length == 4) setLimits(dvals[0], dvals[1], dvals[2], dvals[3]); setXGrid(getDouble(getParameter("xGrid"))); setYGrid(getDouble(getParameter("yGrid"))); setFallOff(getDouble(getParameter("fallOff"))); setBorderWidth(getInt(getParameter("borderWidth"))); if ("no".equalsIgnoreCase(getParameter("showPoints"))) showPoints = false; if ("no".equalsIgnoreCase(getParameter("showGrid"))) showGrid = false; setPoints(getParameter("points")); // overrides point count } //----------------------- For getting values from strings ------------------------- private int getInt(String str) { if (str == null || str.trim().length() == 0) return Integer.MIN_VALUE; try { return Integer.parseInt(str); } catch (NumberFormatException e) { return Integer.MIN_VALUE; } } private int[] getInts(String str) { if (str == null) return null; StringTokenizer tk = new StringTokenizer(str," ,\t"); int ct = tk.countTokens(); if (ct == 0) return null; int[] vals = new int[ct]; for (int i = 0; i < ct; i++) { String s = tk.nextToken(); vals[i] = getInt(s); if (vals[i] == Integer.MIN_VALUE) return null; } return null; } private double getDouble(String str) { if (str == null || str.trim().length() == 0) return Double.NaN; try { return (new Double(str)).doubleValue(); } catch (NumberFormatException e) { return Double.NaN; } } private double[] getDoubles(String str) { if (str == null) return null; StringTokenizer tk = new StringTokenizer(str," ,\t"); int ct = tk.countTokens(); if (ct == 0) return null; double[] vals = new double[ct]; for (int i = 0; i < ct; i++) { String s = tk.nextToken(); vals[i] = getDouble(s); if (Double.isNaN(vals[i]) || Double.isInfinite(vals[i])) return null; } return vals; } private static String[] colorNames = { "black", "white", "red", "green", "blue", "yellow", "cyan", "magenta", "pink", "orange", "lightGray", "gray", "darkGray" }; private static Color[] colorList = { Color.black, Color.white, Color.red, Color.green, Color.blue, Color.yellow, Color.cyan, Color.magenta, Color.pink, Color.orange, Color.lightGray, Color.gray, Color.darkGray }; private Color getColor(String str) { if (str == null) return null; str = str.trim(); if (str.length() == 0) return null; if (Character.isDigit(str.charAt(1))) { int[] levels = getInts(str); if (levels == null || levels.length != 3) return null; if (levels[0] < 0 || levels[0] > 255 || levels[1] < 0 || levels[1] > 255 || levels[2] < 0 || levels[2] > 255) return null; return new Color(levels[0],levels[1],levels[2]); } else { for (int i = 0; i < colorNames.length; i++) if (colorNames[i].equalsIgnoreCase(str)) return colorList[i]; return null; } } public void update(Graphics g) { paint(g); } //-------------------------------------------------------------------------- synchronized public void paint(Graphics g) { int width = size().width; int height = size().height; if (OSC == null || width != canvasWidth || height != canvasHeight) { axesNeedsRedraw = true; graphNeedsRedraw = true; canvasWidth = width; canvasHeight = height; OSC = null; try { OSC = createImage(width,height); } catch (OutOfMemoryError e) { } } if (OSC == null) { draw(g); } else { if (axesNeedsRedraw || graphNeedsRedraw || needsRedraw) { Graphics OSG = OSC.getGraphics(); draw(OSG); OSG.dispose(); needsRedraw = false; } g.drawImage(OSC,0,0,this); } } private void draw(Graphics g) { g.setColor(getBackground()); g.fillRect(0,0,canvasWidth,canvasHeight); drawGrid(g); g.setColor(borderColor); for (int i = 0; i < borderWidth; i++) g.drawRect(i, i, canvasWidth - 2*i - 1, canvasHeight - 2*i - 1); drawAxes(g); drawGraph(g); } private void drawGrid(Graphics g) { if (!showGrid) return; g.setColor(gridColor); if (xGrid > 0) { double x = (int)(xmin/xGrid)*xGrid; while (x <= xmax) { int a = (int)(gap + (x-xmin)*(canvasWidth-2*gap)/(xmax - xmin)); g.drawLine(a,0,a,canvasHeight); x += xGrid; } } if (yGrid > 0) { double y = (int)(ymin/yGrid)*yGrid; while (y <= ymax) { int b = (int)(gap + (ymax-y)*(canvasHeight-2*gap)/(ymax - ymin)); g.drawLine(0,b,canvasWidth,b); y += yGrid; } } } //--------------------------- Axes --------------------------------------- private int[] xTicks; private int[] yTicks; private String[] xTickLabels; private String[] yTickLabels; private int[][] xTickLabelPos; private int[][] yTickLabelPos; private int xAxisPixelPosition, yAxisPixelPosition; private Font font; private int ascent, descent, digitWidth; private void drawAxes(Graphics g) { if (axesNeedsRedraw) { font = g.getFont(); FontMetrics fm = g.getFontMetrics(font); setup(fm, xmin, xmax, ymin, ymax, 0, 0, canvasWidth, canvasHeight, gap); axesNeedsRedraw = false; } if (ymax < 0 || ymin > 0) g.setColor(lightAxesColor); else g.setColor(axesColor); g.drawLine(gap, xAxisPixelPosition, canvasWidth - gap - 1, xAxisPixelPosition); for (int i = 0; i < xTicks.length; i++) { int a = (xAxisPixelPosition - 2 < 0) ? xAxisPixelPosition : xAxisPixelPosition - 2; int b = (xAxisPixelPosition + 2 >= canvasHeight)? xAxisPixelPosition : xAxisPixelPosition + 2; g.drawLine(xTicks[i], a, xTicks[i], b); } for (int i = 0; i < xTickLabels.length; i++) g.drawString(xTickLabels[i], xTickLabelPos[i][0], xTickLabelPos[i][1]); if (xmax < 0 || xmin > 0) g.setColor(lightAxesColor); else g.setColor(axesColor); g.drawLine(yAxisPixelPosition, gap, yAxisPixelPosition, canvasHeight - gap - 1); for (int i = 0; i < yTicks.length; i++) { int a = (yAxisPixelPosition - 2 < 0) ? yAxisPixelPosition : yAxisPixelPosition - 2; int b = (yAxisPixelPosition + 2 >= canvasWidth)? yAxisPixelPosition : yAxisPixelPosition + 2; g.drawLine(a, yTicks[i], b, yTicks[i]); } for (int i = 0; i < yTickLabels.length; i++) g.drawString(yTickLabels[i], yTickLabelPos[i][0], yTickLabelPos[i][1]); } void setup(FontMetrics fm, double xmin, double xmax, double ymin, double ymax, int left, int top, int width, int height, int gap) { digitWidth = fm.charWidth('0'); ascent = fm.getAscent(); descent = fm.getDescent(); if (ymax < 0) xAxisPixelPosition = top + gap; else if (ymin > 0) xAxisPixelPosition = top + height - gap - 1; else xAxisPixelPosition = top + gap + (int)((height-2*gap - 1) * ymax / (ymax-ymin)); if (xmax < 0) yAxisPixelPosition = left + width - gap - 1; else if (xmin > 0) yAxisPixelPosition = left + gap; else yAxisPixelPosition = left + gap - (int)((width-2*gap - 1) * xmin / (xmax-xmin)); double start = fudgeStart( ((xmax-xmin)*(yAxisPixelPosition - (left + gap)))/(width - 2*gap) + xmin, 0.05*(xmax-xmin) ); int labelCt = (width - 2*gap) / (8*digitWidth); if (labelCt <= 2) labelCt = 3; else if (labelCt > 20) labelCt = 20; double interval = fudge( (xmax - xmin) / labelCt ); for (double mul = 1.5; mul < 4; mul += 0.5) { if (fm.stringWidth(realToString(interval+start)) + digitWidth > (interval/(xmax-xmin))*(width-2*gap)) // overlapping labels interval = fudge( mul*(xmax - xmin) / labelCt ); else break; } double[] label = new double[50]; labelCt = 0; double x = start + interval; double limit = left + width; while (labelCt < 50 && x < xmax) { if (left + gap + (width-2*gap)*(x-xmin)/(xmax-xmin) + fm.stringWidth(realToString(x))/2 > limit) break; label[labelCt] = x; labelCt++; x += interval; } x = start - interval; limit = left; while (labelCt < 50 && x >= xmin) { if (left + gap + (width-2*gap)*(x-xmin)/(xmax-xmin) - fm.stringWidth(realToString(x))/2 < limit) break; label[labelCt] = x; labelCt++; x -= interval; } xTicks = new int[labelCt]; xTickLabels = new String[labelCt]; xTickLabelPos = new int[labelCt][2]; for (int i = 0; i < labelCt; i++) { xTicks[i] = (int)(left + gap + (width-2*gap)*(label[i]-xmin)/(xmax-xmin)); xTickLabels[i] = realToString(label[i]); xTickLabelPos[i][0] = xTicks[i] - fm.stringWidth(xTickLabels[i])/2; if (xAxisPixelPosition - 4 - ascent >= top) xTickLabelPos[i][1] = xAxisPixelPosition - 4; else xTickLabelPos[i][1] = xAxisPixelPosition + 4 + ascent; } start = fudgeStart( ymax - ((ymax-ymin)*(xAxisPixelPosition - (top + gap)))/(height - 2*gap), 0.05*(ymax-ymin) ); labelCt = (height - 2*gap) / (4*(ascent+descent)); if (labelCt <= 2) labelCt = 3; else if (labelCt > 20) labelCt = 20; interval = fudge( (ymax - ymin) / labelCt ); labelCt = 0; double y = start + interval; limit = top + 8 + gap; while (labelCt < 50 && y <= ymax) { if (top + gap + (height-2*gap)*(ymax-y)/(ymax-ymin) - ascent/2 < limit) break; label[labelCt] = y; labelCt++; y += interval; } y = start - interval; limit = top + height - gap - 8; while (labelCt < 50 && y >= ymin) { if (top + gap + (height-2*gap)*(ymax-y)/(ymax-ymin) + ascent/2 > limit) break; label[labelCt] = y; labelCt++; y -= interval; } yTicks = new int[labelCt]; yTickLabels = new String[labelCt]; yTickLabelPos = new int[labelCt][2]; int w = 0; // max width of tick mark for (int i = 0; i < labelCt; i++) { yTickLabels[i] = realToString(label[i]); int s = fm.stringWidth(yTickLabels[i]); if (s > w) w = s; } for (int i = 0; i < labelCt; i++) { yTicks[i] = (int)(top + gap + (height-2*gap)*(ymax-label[i])/(ymax-ymin)); yTickLabelPos[i][1] = yTicks[i] + ascent/2; if (yAxisPixelPosition - 4 - w < left) yTickLabelPos[i][0] = yAxisPixelPosition + 4; else yTickLabelPos[i][0] = yAxisPixelPosition - 4 - fm.stringWidth(yTickLabels[i]); } } // end setup() double fudge (double x) { // Translated directly from the Pascal version of xFunctions. // Move x to a more "rounded" value; used for labeling axes. int i, digits; double y; if (Math.abs(x) < 0.0005 || Math.abs(x) > 500000) return x; else if (Math.abs(x) < 0.1 || Math.abs(x) > 5000) { y = x; digits = 0; if (Math.abs(y) >= 1) { while (Math.abs(y) >= 8.75) { y = y / 10; digits = digits + 1; } } else { while (Math.abs(y) < 1) { y = y * 10; digits = digits - 1; } } y = Math.round(y * 4) / 4; if (digits > 0) { for (int j = 0; j < digits; j++) y = y * 10; } else if (digits < 0) { for (int j = 0; j < -digits; j++) y = y / 10; } return y; } else if (Math.abs(x) < 0.5) return Math.round(10 * x) / 10.0; else if (Math.abs(x) < 2.5) return Math.round(2 * x) / 2.0; else if (Math.abs(x) < 12) return Math.round(x); else if (Math.abs(x) < 120) return Math.round(x / 10) * 10.0; else if (Math.abs(x) < 1200) return Math.round(x / 100) * 100.0; else return Math.round(x / 1000) * 1000.0; } double fudgeStart(double a, double diff) { // Adapted from the Pascal version of xFunctions. // Tries to find a "rounded value" withint diff of a if (Math.abs(Math.round(a) - a) < diff) return Math.round(a); for (double x = 10; x <= 100000; x *= 10) { double d = Math.round(a*x) / x; if (Math.abs(d - a) < diff) return d; } return a; } public static String realToString(double x) { return realToString(x,8); } public static String realToString(double x, int width) { // Goal is to return a reasonable string representation // of x, using at most width spaces. (If width is // unreasonably big or small, its value is adjusted to // lie in the range 7 to 25.) width = Math.min(25, Math.max(7,width)); if (Double.isNaN(x)) return "undefined"; if (Double.isInfinite(x)) if (x < 0) return "-INF"; else return "INF"; String s = String.valueOf(x); if (Math.rint(x) == x && Math.abs(x) < 5e15 && s.length() <= (width+2)) return String.valueOf( (long)x ); // return string without trailing ".0" if (s.length() <= width) return s; boolean neg = false; if (x < 0) { neg = true; x = -x; width--; s = String.valueOf(x); } long maxForNonExp = 5*(long)Math.pow(10,width-2); if (x >= 0.0005 && x <= maxForNonExp && (s.indexOf('E') == -1 && s.indexOf('e') == -1)) { s = round(s,width); s = trimZeros(s); } else if (x > 1) { // construct exponential form with positive exponent long power = (long)Math.floor(Math.log(x)/Math.log(10)); String exp = "E" + power; int numlength = width - exp.length(); x = x / Math.pow(10,power); s = String.valueOf(x); s = round(s,numlength); s = trimZeros(s); s += exp; } else { // constuct exponential form with negative argument long power = (long)Math.ceil(-Math.log(x)/Math.log(10)); String exp = "E-" + power; int numlength = width - exp.length(); x = x * Math.pow(10,power); s = String.valueOf(x); s = round(s,numlength); s = trimZeros(s); s += exp; } if (neg) return "-" + s; else return s; } private static String trimZeros(String num) { // remove trailing zeros if num contains a decimal point, and // remove the decimal point as well if all following digits are zero if (num.indexOf('.') >= 0 && num.charAt(num.length() - 1) == '0') { int i = num.length() - 1; while (num.charAt(i) == '0') i--; if (num.charAt(i) == '.') num = num.substring(0,i); else num = num.substring(0,i+1); } return num; } private static String round(String num, int length) { // Round off num to the given field width if (num.indexOf('.') < 0) return num; if (num.length() <= length) return num; if (num.charAt(length) >= '5' && num.charAt(length) != '.') { char[] temp = new char[length+1]; int ct = length; boolean rounding = true; for (int i = length-1; i >= 0; i--) { temp[ct] = num.charAt(i); if (rounding && temp[ct] != '.') { if (temp[ct] < '9') { temp[ct]++; rounding = false; } else temp[ct] = '0'; } ct--; } if (rounding) { temp[ct] = '1'; ct--; } // ct is -1 or 0 return new String(temp,ct+1,length-ct); } else return num.substring(0,length); } //--------------------------- Graph -------------------------------------- private double[] yValues; private double[] derivatives; private int[] pixelX; private int[] pixelY; private int[] dotX; private int[] dotY; private void drawGraph(Graphics g) { if (graphNeedsRedraw) { makeGraphCoords(); graphNeedsRedraw = false; } g.setColor(graphColor); for (int i = 1; i < pixelX.length; i++) { g.drawLine(pixelX[i-1], pixelY[i-1], pixelX[i], pixelY[i]); } if (showPoints) { for (int i = 0; i < dotX.length; i++) g.fillOval(dotX[i], dotY[i], 5, 5); } } private void makeGraphCoords() { int pointCt = (canvasWidth-2*gap-2) / 3 + 2; if (pixelX == null || pixelX.length != pointCt) { pixelX = new int[pointCt]; for (int i = 0; i < pointCt - 1; i++) pixelX[i] = gap + i*3; pixelX[pointCt-1] = canvasWidth - gap - 1; pixelY = new int[pointCt]; } double dx = (xmax - xmin) / (canvasWidth - 2*gap - 1); double dy = (ymax - ymin) / (canvasHeight - 2*gap - 1); for (int i = 0; i < pointCt; i++) { double x = xmin + dx*(pixelX[i]-gap); double y = eval(x); pixelY[i] = (int)(gap + (ymax - y)/dy); } if (dotX == null || dotX.length != points) { dotX = new int[points]; dotY = new int[points]; } dx = (xmax - xmin) / (points-1); double factorX = (canvasWidth - 2*gap - 1)/(xmax-xmin); double factorY = (canvasHeight - 2*gap - 1)/(ymax-ymin); for (int i = 0; i < points; i++) { double x = xmin + dx*i; double y = eval(x); dotX[i] = (int)(gap + (x-xmin)*factorX) - 2; dotY[i] = (int)(gap + (ymax-y)*factorY) - 2; } } private double eval(double x) { // NOTE: yvalues and derivatives are stored as if x and y range from 0 to 1!!! double scaledx = (x-xmin)/(xmax-xmin); int interval = (int)((points-1)*scaledx); if (interval >= points-1) return ymin + yValues[points-1]*(ymax-ymin); double temp = 1.0/(points-1); double a = yValues[interval+1]/(temp*temp*temp); double b = derivatives[interval+1]/(temp*temp) - 3*a; double d = -yValues[interval]/(temp*temp*temp); double c = derivatives[interval]/(temp*temp) - 3*d; double t1 = scaledx - interval*temp; double t2 = t1*t1; double t3 = t2*t1; double s1 = scaledx - (interval+1)*temp; double s2 = s1*s1; double s3 = s2*s1; double scaledy = a*t3 + b*t2*s1 + c*t1*s2 + d*s3; return ymin + scaledy*(ymax-ymin); } //--------------------------- Mouse Handling ----------------------------- private boolean dragging; private int dragPoint; private int lastY; private boolean propogate; synchronized public boolean mouseDown(Event evt, int x, int y) { dragging = false; if (evt.shiftDown()) { for (int i = 0; i < points; i++) { yValues[i] = 0.5; derivatives[i] = 0; } graphNeedsRedraw = true; repaint(); return true; } if (dotX == null || graphNeedsRedraw) { // shouldn't happen repaint(); return true; } for (int i = 0; i < points; i++) if (x >= dotX[i] - 1 && x < dotX[i] + 7 && y >= dotY[i] - 1 && y < dotY[i] + 7) { dragging = true; dragPoint = i; lastY = y; propogate = ! evt.metaDown(); break; } return true; } synchronized public boolean mouseUp(Event evt, int x, int y) { dragging = false; return true; } synchronized public boolean mouseDrag(Event evt, int x, int y) { if (!dragging || graphNeedsRedraw) return true; if (y < gap) y = gap; if (y > canvasHeight - gap) y = canvasHeight - gap; if (y - lastY == 0) return true; movePoint(dragPoint, y - lastY); lastY = y; return true; } private void movePoint(int pointNum, int pixelsOffset) { double offset = -1.0/(canvasHeight - 2*gap) * pixelsOffset; double oldy = yValues[pointNum]; yValues[pointNum] += offset; double dx = 1.0 / (points - 1); if (propogate && fallOff > 0) { if (offset > 0) { int pt = pointNum + 1; double factor = fallOff; double prevy = oldy; while (pt < points && yValues[pt] < prevy) { prevy = yValues[pt]; yValues[pt] += offset*factor; factor *= fallOff; pt++; } pt = pointNum - 1; factor = fallOff; prevy = oldy; while (pt >= 0 && yValues[pt] < prevy) { prevy = yValues[pt]; yValues[pt] += offset*factor; factor *= fallOff; pt--; } } else { int pt = pointNum + 1; double factor = fallOff; double prevy = oldy; while (pt < points && yValues[pt] > prevy) { prevy = yValues[pt]; yValues[pt] += offset*factor; factor *= fallOff; pt++; } pt = pointNum - 1; factor = fallOff; prevy = oldy; while (pt >= 0 && yValues[pt] > prevy) { prevy = yValues[pt]; yValues[pt] += offset*factor; factor *= fallOff; pt--; } } } graphNeedsRedraw = true; makeDerivs(); repaint(); } private void makeDerivs() { double dx = 1.0 / (points - 1); derivatives[0] = (yValues[1] - yValues[0])/dx; for (int i = 1; i < points - 1; i++) derivatives[i] = (yValues[i+1] - yValues[i-1])/(2*dx); derivatives[points-1] = (yValues[points-1] - yValues[points-2])/dx; } } // end class GummyGraph \ No newline at end of file diff --git a/lib/WeBWorK/htdocs/applets/source/SketchGraph.java b/lib/WeBWorK/htdocs/applets/source/SketchGraph.java deleted file mode 100644 index 87944a616..000000000 --- a/lib/WeBWorK/htdocs/applets/source/SketchGraph.java +++ /dev/null @@ -1 +0,0 @@ - /* Lets user sketch a graph by moving the mouse. Left-click and drag to sketch the shape of the graph. Shift-click to reset graph. Right-click (Command-click on Mac) to smoothen the graph. --David Eck, June 2000 (eck@hws.edu, http://math.hws.edu/eck/) */ import java.awt.*; import java.applet.Applet; import java.util.StringTokenizer; public class SketchGraph extends Applet { // Parameters that can be set through appelt params and manipulated // with JavaScript. (See public methods below.) private int points; private double xmin = -5, xmax = 5, ymin = -5, ymax = 5; private double xGrid = 1; private double yGrid = 1; private int gap = 7; private Color borderColor = Color.black; private int borderWidth = 2; private Color gridColor = Color.lightGray; private Color axesColor = new Color(0,0,220); private Color lightAxesColor = new Color(160,180,255); private Color graphColor = Color.magenta; private boolean showGrid = true; // Background color is set in init(); change it there. //-------------------- private implementation details --------------------------- private Image OSC = null; private int canvasWidth, canvasHeight; private boolean graphNeedsRedraw; private boolean axesNeedsRedraw; private boolean needsRedraw; //------------------- Public methods for scripting ------------------------------- public int getPointCount() { // Return the number of draggable points on the graph // (which is one plus the number of sub-intervals). return points; } public double getX(int pointNumber) { // Get the x-value of point number pointNumber. // Note: x-values are always evenly spaced. if (pointNumber < 0 || pointNumber >= points) return Double.NaN; return xmin + pointNumber*(xmax-xmin)/(points-1); } public double getY(int pointNumber) { // Return the y-value of point number pointNumber. // X and y values are stored internally as values // between 0 and 1. The actual x and y values // are determined by scaling these internal values // using the current xmin, xmax, ymin, ymax. if (pointNumber < 0 || pointNumber >= points) return Double.NaN; return ymin + yValues[pointNumber]*(ymax - ymin); } public double getDerivative(int pointNumber) { // Get the derivative at point number pointNumber. // This is just computed from the y-values (but not in // the standard way -- it uses a weighted average of // the slope from the point on left and the slope to // the point on the right). if (pointNumber < 0 || pointNumber >= points) return Double.NaN; double dx = 1.0/points * (xmax - xmin); if (pointNumber == 0) return (yValues[1] - yValues[0])*(ymax-ymin)/dx; else if (pointNumber == points-1) return (yValues[points-1] - yValues[points-2])*(ymax-ymin)/dx; else { int i = pointNumber; double left = Math.abs(yValues[i] - yValues[i-1]); double right = Math.abs(yValues[i+1] - yValues[i]); if (left < 1e-20 || right < 1e-20) return 0; else return ((1/right)*(yValues[i+1]-yValues[i]) - (1/left)*(yValues[i]-yValues[i-1]))/(2*dx*((1/right)+(1/left))); } } public void reset() { // Puts all points back to the vertical center of the applet. for (int i = 0; i < points; i++) { yValues[i] = 0.5; derivatives[i] = 0; } graphNeedsRedraw = true; repaint(); } public void smoothen() { // Make the graph smoother by replacine each y-value with a weighted // average of y-values of nearby points. double[] newPoints = new double[points]; for (int i = 0; i < points; i++) { double sum = 0.3 * yValues[i]; sum += 0.2 * (i > 0? yValues[i-1] : yValues[i]); sum += 0.2 * (i < points-1? yValues[i+1] : yValues[i]); sum += 0.1 * (i > 1? yValues[i-2] : yValues[i]); sum += 0.1 * (i < points - 2? yValues[i+2] : yValues[i]); sum += 0.05 * (i > 2? yValues[i-3] : yValues[i]); sum += 0.05 * (i < points - 3? yValues[i+3] : yValues[i]); newPoints[i] = sum; } yValues = newPoints; graphNeedsRedraw = true; repaint(); } public void setPointCount(int ct) { // Set the number of points and reset y-values // to the vertical center of the applet. if (ct > 2 && ct <= 500) { points = ct; yValues = new double[points]; derivatives = new double[points]; for (int i = 0; i < points; i++) yValues[i] = 0.5; graphNeedsRedraw = true; repaint(); } } public void setY(int pointNumber, double val) { // Change the y-value of one point. if (pointNumber < 0 || pointNumber >= 0 || val < ymin || val > ymax) return; yValues[pointNumber] = (val-ymin)/(ymax-ymin); graphNeedsRedraw = true; repaint(); } public boolean setPoints(String points) { // The string, points, should be a list of numbers // separated by spaces or commas. These are used as // y-values for the points on the curve, replacing the // current points. Values are clamped to the range // from ymin to ymax. If the contents of the string // are not legal, the current graph is not changed // and the value false is returned. If the contents // of points are legal, true is returned. double[] vals = getDoubles(points); if (vals == null || vals.length < 3 || vals.length > 500) return false; setPointCount(vals.length); // Sets graphNeedsRedraw = true and calls repaint() for (int i = 0; i < vals.length; i++) { if (vals[i] > ymax) yValues[i] = 1; else if (vals[i] < ymin) yValues[i] = 0; else yValues[i] = (vals[i]-ymin)/(ymax-ymin); } return true; } public void setLimits(double xmin, double xmax, double ymin, double ymax) { // Change the ranges of x and y on the applet. if (xmax <= xmin || ymax <= ymin) return; this.ymax = ymax; this.ymin = ymin; this.xmax = xmax; this.xmin = xmin; axesNeedsRedraw = true; repaint(); } public void setGap(int g) { // This is space left between the axex and the border // of the applet. Default is 5. if (g >= 0 && g != gap) { gap = g; axesNeedsRedraw = true; graphNeedsRedraw = true; repaint(); } } public void setXGrid(double spacing) { // Set spacing between x grid lines (in the same units // that are used for xmin and xmax, so changing these // will change the number of grid lines). If the // value is zero, no x grid lines are drawn. if (spacing >= 0) { xGrid = spacing; needsRedraw = true; repaint(); } } public void setYGrid(double spacing) { // Set spacing between y grid lines. If the value is // zero, no y grid lines are drawn. if (spacing >= 0) { yGrid = spacing; needsRedraw = true; repaint(); } } public void setBorderWidth(int b) { // How many pixels is the border drawn around the edge of the // applet. if (b >= 0) { borderWidth = b; needsRedraw = true; repaint(); } } public void setBorderColor(String color) { // Color of border. Color c = getColor(color); if (c != null) { borderColor = c; needsRedraw = true; repaint(); } } public void setGridColor(String color) { // Color of grid lines. Color c = getColor(color); if (c != null) { gridColor = c; needsRedraw = true; repaint(); } } public void setAxesColor(String color) { // Color of axes. Color c = getColor(color); if (c != null) { axesColor= c; needsRedraw = true; repaint(); } } public void setLightAxesColor(String color) { // Color used for axis when the real axis is // outside of the applet. Color c = getColor(color); if (c != null) { lightAxesColor= c; needsRedraw = true; repaint(); } } public void setGraphColor(String color) { // Color of graph. Color c = getColor(color); if (c != null) { graphColor= c; needsRedraw = true; repaint(); } } public void setBackgroundColor(String color) { // Background color for the whole applet. Color c = getColor(color); if (c != null) { setBackground(c); needsRedraw = true; repaint(); } } public void setShowGrid(boolean show) { // Should the grid lines be drawn? if (show != showGrid) { showGrid = show; needsRedraw = true; repaint(); } } //----------------- Init method can set properties from applet params --------------- public void init() { setBackground(Color.white); setBackgroundColor(getParameter("backgroundColor")); setBorderColor(getParameter("borderColor")); setAxesColor(getParameter("axesColor")); setLightAxesColor(getParameter("lightAxesColor")); setGraphColor(getParameter("graphColor")); setGridColor(getParameter("gridColor")); setGap(getInt(getParameter("gap"))); int n = getInt(getParameter("pointCount")); setPointCount( (n > 2 && n <= 500)? n : 101 ); double[] dvals = getDoubles(getParameter("limits")); if (dvals != null && dvals.length == 4) setLimits(dvals[0], dvals[1], dvals[2], dvals[3]); setXGrid(getDouble(getParameter("xGrid"))); setYGrid(getDouble(getParameter("yGrid"))); setBorderWidth(getInt(getParameter("borderWidth"))); if ("no".equalsIgnoreCase(getParameter("showGrid"))) showGrid = false; setPoints(getParameter("points")); // overrides point count } //----------------------- For getting values from strings ------------------------- private int getInt(String str) { if (str == null || str.trim().length() == 0) return Integer.MIN_VALUE; try { return Integer.parseInt(str); } catch (NumberFormatException e) { return Integer.MIN_VALUE; } } private int[] getInts(String str) { if (str == null) return null; StringTokenizer tk = new StringTokenizer(str," ,\t"); int ct = tk.countTokens(); if (ct == 0) return null; int[] vals = new int[ct]; for (int i = 0; i < ct; i++) { String s = tk.nextToken(); vals[i] = getInt(s); if (vals[i] == Integer.MIN_VALUE) return null; } return null; } private double getDouble(String str) { if (str == null || str.trim().length() == 0) return Double.NaN; try { return (new Double(str)).doubleValue(); } catch (NumberFormatException e) { return Double.NaN; } } private double[] getDoubles(String str) { if (str == null) return null; StringTokenizer tk = new StringTokenizer(str," ,\t"); int ct = tk.countTokens(); if (ct == 0) return null; double[] vals = new double[ct]; for (int i = 0; i < ct; i++) { String s = tk.nextToken(); vals[i] = getDouble(s); if (Double.isNaN(vals[i]) || Double.isInfinite(vals[i])) return null; } return vals; } private static String[] colorNames = { "black", "white", "red", "green", "blue", "yellow", "cyan", "magenta", "pink", "orange", "lightGray", "gray", "darkGray" }; private static Color[] colorList = { Color.black, Color.white, Color.red, Color.green, Color.blue, Color.yellow, Color.cyan, Color.magenta, Color.pink, Color.orange, Color.lightGray, Color.gray, Color.darkGray }; private Color getColor(String str) { if (str == null) return null; str = str.trim(); if (str.length() == 0) return null; if (Character.isDigit(str.charAt(1))) { int[] levels = getInts(str); if (levels == null || levels.length != 3) return null; if (levels[0] < 0 || levels[0] > 255 || levels[1] < 0 || levels[1] > 255 || levels[2] < 0 || levels[2] > 255) return null; return new Color(levels[0],levels[1],levels[2]); } else { for (int i = 0; i < colorNames.length; i++) if (colorNames[i].equalsIgnoreCase(str)) return colorList[i]; return null; } } public void update(Graphics g) { paint(g); } //-------------------------------------------------------------------------- synchronized public void paint(Graphics g) { int width = size().width; int height = size().height; if (OSC == null || width != canvasWidth || height != canvasHeight) { axesNeedsRedraw = true; graphNeedsRedraw = true; canvasWidth = width; canvasHeight = height; OSC = null; try { OSC = createImage(width,height); } catch (OutOfMemoryError e) { } } if (OSC == null) { draw(g); } else { if (axesNeedsRedraw || graphNeedsRedraw || needsRedraw) { Graphics OSG = OSC.getGraphics(); draw(OSG); OSG.dispose(); needsRedraw = false; } g.drawImage(OSC,0,0,this); } } private void draw(Graphics g) { g.setColor(getBackground()); g.fillRect(0,0,canvasWidth,canvasHeight); drawGrid(g); g.setColor(borderColor); for (int i = 0; i < borderWidth; i++) g.drawRect(i, i, canvasWidth - 2*i - 1, canvasHeight - 2*i - 1); drawAxes(g); drawGraph(g); } private void drawGrid(Graphics g) { if (!showGrid) return; g.setColor(gridColor); if (xGrid > 0) { double x = (int)(xmin/xGrid)*xGrid; while (x <= xmax) { int a = (int)(gap + (x-xmin)*(canvasWidth-2*gap)/(xmax - xmin)); g.drawLine(a,0,a,canvasHeight); x += xGrid; } } if (yGrid > 0) { double y = (int)(ymin/yGrid)*yGrid; while (y <= ymax) { int b = (int)(gap + (ymax-y)*(canvasHeight-2*gap)/(ymax - ymin)); g.drawLine(0,b,canvasWidth,b); y += yGrid; } } } //--------------------------- Axes --------------------------------------- private int[] xTicks; private int[] yTicks; private String[] xTickLabels; private String[] yTickLabels; private int[][] xTickLabelPos; private int[][] yTickLabelPos; private int xAxisPixelPosition, yAxisPixelPosition; private Font font; private int ascent, descent, digitWidth; private void drawAxes(Graphics g) { if (axesNeedsRedraw) { font = g.getFont(); FontMetrics fm = g.getFontMetrics(font); setup(fm, xmin, xmax, ymin, ymax, 0, 0, canvasWidth, canvasHeight, gap); axesNeedsRedraw = false; } if (ymax < 0 || ymin > 0) g.setColor(lightAxesColor); else g.setColor(axesColor); g.drawLine(gap, xAxisPixelPosition, canvasWidth - gap - 1, xAxisPixelPosition); for (int i = 0; i < xTicks.length; i++) { int a = (xAxisPixelPosition - 2 < 0) ? xAxisPixelPosition : xAxisPixelPosition - 2; int b = (xAxisPixelPosition + 2 >= canvasHeight)? xAxisPixelPosition : xAxisPixelPosition + 2; g.drawLine(xTicks[i], a, xTicks[i], b); } for (int i = 0; i < xTickLabels.length; i++) g.drawString(xTickLabels[i], xTickLabelPos[i][0], xTickLabelPos[i][1]); if (xmax < 0 || xmin > 0) g.setColor(lightAxesColor); else g.setColor(axesColor); g.drawLine(yAxisPixelPosition, gap, yAxisPixelPosition, canvasHeight - gap - 1); for (int i = 0; i < yTicks.length; i++) { int a = (yAxisPixelPosition - 2 < 0) ? yAxisPixelPosition : yAxisPixelPosition - 2; int b = (yAxisPixelPosition + 2 >= canvasWidth)? yAxisPixelPosition : yAxisPixelPosition + 2; g.drawLine(a, yTicks[i], b, yTicks[i]); } for (int i = 0; i < yTickLabels.length; i++) g.drawString(yTickLabels[i], yTickLabelPos[i][0], yTickLabelPos[i][1]); } void setup(FontMetrics fm, double xmin, double xmax, double ymin, double ymax, int left, int top, int width, int height, int gap) { digitWidth = fm.charWidth('0'); ascent = fm.getAscent(); descent = fm.getDescent(); if (ymax < 0) xAxisPixelPosition = top + gap; else if (ymin > 0) xAxisPixelPosition = top + height - gap - 1; else xAxisPixelPosition = top + gap + (int)((height-2*gap - 1) * ymax / (ymax-ymin)); if (xmax < 0) yAxisPixelPosition = left + width - gap - 1; else if (xmin > 0) yAxisPixelPosition = left + gap; else yAxisPixelPosition = left + gap - (int)((width-2*gap - 1) * xmin / (xmax-xmin)); double start = fudgeStart( ((xmax-xmin)*(yAxisPixelPosition - (left + gap)))/(width - 2*gap) + xmin, 0.05*(xmax-xmin) ); int labelCt = (width - 2*gap) / (8*digitWidth); if (labelCt <= 2) labelCt = 3; else if (labelCt > 20) labelCt = 20; double interval = fudge( (xmax - xmin) / labelCt ); for (double mul = 1.5; mul < 4; mul += 0.5) { if (fm.stringWidth(realToString(interval+start)) + digitWidth > (interval/(xmax-xmin))*(width-2*gap)) // overlapping labels interval = fudge( mul*(xmax - xmin) / labelCt ); else break; } double[] label = new double[50]; labelCt = 0; double x = start + interval; double limit = left + width; while (labelCt < 50 && x < xmax) { if (left + gap + (width-2*gap)*(x-xmin)/(xmax-xmin) + fm.stringWidth(realToString(x))/2 > limit) break; label[labelCt] = x; labelCt++; x += interval; } x = start - interval; limit = left; while (labelCt < 50 && x >= xmin) { if (left + gap + (width-2*gap)*(x-xmin)/(xmax-xmin) - fm.stringWidth(realToString(x))/2 < limit) break; label[labelCt] = x; labelCt++; x -= interval; } xTicks = new int[labelCt]; xTickLabels = new String[labelCt]; xTickLabelPos = new int[labelCt][2]; for (int i = 0; i < labelCt; i++) { xTicks[i] = (int)(left + gap + (width-2*gap)*(label[i]-xmin)/(xmax-xmin)); xTickLabels[i] = realToString(label[i]); xTickLabelPos[i][0] = xTicks[i] - fm.stringWidth(xTickLabels[i])/2; if (xAxisPixelPosition - 4 - ascent >= top) xTickLabelPos[i][1] = xAxisPixelPosition - 4; else xTickLabelPos[i][1] = xAxisPixelPosition + 4 + ascent; } start = fudgeStart( ymax - ((ymax-ymin)*(xAxisPixelPosition - (top + gap)))/(height - 2*gap), 0.05*(ymax-ymin) ); labelCt = (height - 2*gap) / (4*(ascent+descent)); if (labelCt <= 2) labelCt = 3; else if (labelCt > 20) labelCt = 20; interval = fudge( (ymax - ymin) / labelCt ); labelCt = 0; double y = start + interval; limit = top + 8 + gap; while (labelCt < 50 && y <= ymax) { if (top + gap + (height-2*gap)*(ymax-y)/(ymax-ymin) - ascent/2 < limit) break; label[labelCt] = y; labelCt++; y += interval; } y = start - interval; limit = top + height - gap - 8; while (labelCt < 50 && y >= ymin) { if (top + gap + (height-2*gap)*(ymax-y)/(ymax-ymin) + ascent/2 > limit) break; label[labelCt] = y; labelCt++; y -= interval; } yTicks = new int[labelCt]; yTickLabels = new String[labelCt]; yTickLabelPos = new int[labelCt][2]; int w = 0; // max width of tick mark for (int i = 0; i < labelCt; i++) { yTickLabels[i] = realToString(label[i]); int s = fm.stringWidth(yTickLabels[i]); if (s > w) w = s; } for (int i = 0; i < labelCt; i++) { yTicks[i] = (int)(top + gap + (height-2*gap)*(ymax-label[i])/(ymax-ymin)); yTickLabelPos[i][1] = yTicks[i] + ascent/2; if (yAxisPixelPosition - 4 - w < left) yTickLabelPos[i][0] = yAxisPixelPosition + 4; else yTickLabelPos[i][0] = yAxisPixelPosition - 4 - fm.stringWidth(yTickLabels[i]); } } // end setup() double fudge (double x) { // Translated directly from the Pascal version of xFunctions. // Move x to a more "rounded" value; used for labeling axes. int i, digits; double y; if (Math.abs(x) < 0.0005 || Math.abs(x) > 500000) return x; else if (Math.abs(x) < 0.1 || Math.abs(x) > 5000) { y = x; digits = 0; if (Math.abs(y) >= 1) { while (Math.abs(y) >= 8.75) { y = y / 10; digits = digits + 1; } } else { while (Math.abs(y) < 1) { y = y * 10; digits = digits - 1; } } y = Math.round(y * 4) / 4; if (digits > 0) { for (int j = 0; j < digits; j++) y = y * 10; } else if (digits < 0) { for (int j = 0; j < -digits; j++) y = y / 10; } return y; } else if (Math.abs(x) < 0.5) return Math.round(10 * x) / 10.0; else if (Math.abs(x) < 2.5) return Math.round(2 * x) / 2.0; else if (Math.abs(x) < 12) return Math.round(x); else if (Math.abs(x) < 120) return Math.round(x / 10) * 10.0; else if (Math.abs(x) < 1200) return Math.round(x / 100) * 100.0; else return Math.round(x / 1000) * 1000.0; } double fudgeStart(double a, double diff) { // Adapted from the Pascal version of xFunctions. // Tries to find a "rounded value" withint diff of a if (Math.abs(Math.round(a) - a) < diff) return Math.round(a); for (double x = 10; x <= 100000; x *= 10) { double d = Math.round(a*x) / x; if (Math.abs(d - a) < diff) return d; } return a; } public static String realToString(double x) { return realToString(x,8); } public static String realToString(double x, int width) { // Goal is to return a reasonable string representation // of x, using at most width spaces. (If width is // unreasonably big or small, its value is adjusted to // lie in the range 7 to 25.) width = Math.min(25, Math.max(7,width)); if (Double.isNaN(x)) return "undefined"; if (Double.isInfinite(x)) if (x < 0) return "-INF"; else return "INF"; String s = String.valueOf(x); if (Math.rint(x) == x && Math.abs(x) < 5e15 && s.length() <= (width+2)) return String.valueOf( (long)x ); // return string without trailing ".0" if (s.length() <= width) return s; boolean neg = false; if (x < 0) { neg = true; x = -x; width--; s = String.valueOf(x); } long maxForNonExp = 5*(long)Math.pow(10,width-2); if (x >= 0.0005 && x <= maxForNonExp && (s.indexOf('E') == -1 && s.indexOf('e') == -1)) { s = round(s,width); s = trimZeros(s); } else if (x > 1) { // construct exponential form with positive exponent long power = (long)Math.floor(Math.log(x)/Math.log(10)); String exp = "E" + power; int numlength = width - exp.length(); x = x / Math.pow(10,power); s = String.valueOf(x); s = round(s,numlength); s = trimZeros(s); s += exp; } else { // constuct exponential form with negative argument long power = (long)Math.ceil(-Math.log(x)/Math.log(10)); String exp = "E-" + power; int numlength = width - exp.length(); x = x * Math.pow(10,power); s = String.valueOf(x); s = round(s,numlength); s = trimZeros(s); s += exp; } if (neg) return "-" + s; else return s; } private static String trimZeros(String num) { // remove trailing zeros if num contains a decimal point, and // remove the decimal point as well if all following digits are zero if (num.indexOf('.') >= 0 && num.charAt(num.length() - 1) == '0') { int i = num.length() - 1; while (num.charAt(i) == '0') i--; if (num.charAt(i) == '.') num = num.substring(0,i); else num = num.substring(0,i+1); } return num; } private static String round(String num, int length) { // Round off num to the given field width if (num.indexOf('.') < 0) return num; if (num.length() <= length) return num; if (num.charAt(length) >= '5' && num.charAt(length) != '.') { char[] temp = new char[length+1]; int ct = length; boolean rounding = true; for (int i = length-1; i >= 0; i--) { temp[ct] = num.charAt(i); if (rounding && temp[ct] != '.') { if (temp[ct] < '9') { temp[ct]++; rounding = false; } else temp[ct] = '0'; } ct--; } if (rounding) { temp[ct] = '1'; ct--; } // ct is -1 or 0 return new String(temp,ct+1,length-ct); } else return num.substring(0,length); } //--------------------------- Graph -------------------------------------- private double[] yValues; private double[] derivatives; private int[] pixelX; private int[] pixelY; private void drawGraph(Graphics g) { if (graphNeedsRedraw) { makeGraphCoords(); makeDerivs(); graphNeedsRedraw = false; } g.setColor(graphColor); for (int i = 1; i < pixelX.length; i++) { g.drawLine(pixelX[i-1], pixelY[i-1], pixelX[i], pixelY[i]); } } private void makeGraphCoords() { int pointCt = (canvasWidth-2*gap-2) / 3 + 2; if (pixelX == null || pixelX.length != pointCt) { pixelX = new int[pointCt]; for (int i = 0; i < pointCt - 1; i++) pixelX[i] = gap + i*3; pixelX[pointCt-1] = canvasWidth - gap - 1; pixelY = new int[pointCt]; } double dx = (xmax - xmin) / (canvasWidth - 2*gap - 1); double dy = (ymax - ymin) / (canvasHeight - 2*gap - 1); for (int i = 0; i < pointCt; i++) { double x = xmin + dx*(pixelX[i]-gap); double y = eval(x); pixelY[i] = (int)(gap + (ymax - y)/dy); } } private double eval(double x) { // NOTE: yvalues and derivatives are stored as if x and y range from 0 to 1!!! double scaledx = (x-xmin)/(xmax-xmin); int interval = (int)((points-1)*scaledx); if (interval >= points-1) return ymin + yValues[points-1]*(ymax-ymin); double temp = 1.0/(points-1); double a = yValues[interval+1]/(temp*temp*temp); double b = derivatives[interval+1]/(temp*temp) - 3*a; double d = -yValues[interval]/(temp*temp*temp); double c = derivatives[interval]/(temp*temp) - 3*d; double t1 = scaledx - interval*temp; double t2 = t1*t1; double t3 = t2*t1; double s1 = scaledx - (interval+1)*temp; double s2 = s1*s1; double s3 = s2*s1; double scaledy = a*t3 + b*t2*s1 + c*t1*s2 + d*s3; return ymin + scaledy*(ymax-ymin); } //--------------------------- Mouse Handling ----------------------------- private boolean dragging; private int lastPointNum; private double lastY; synchronized public boolean mouseDown(Event evt, int x, int y) { dragging = false; if (evt.shiftDown()) { for (int i = 0; i < points; i++) { yValues[i] = 0.5; derivatives[i] = 0; } graphNeedsRedraw = true; repaint(); return true; } if (evt.metaDown()) { smoothen(); return true; } if (graphNeedsRedraw) { repaint(); return true; } dragging = true; lastY = Double.NaN; jumpPoint(x, y); return true; } synchronized public boolean mouseUp(Event evt, int x, int y) { if (dragging) { jumpPoint(x,y); dragging = false; } return true; } synchronized public boolean mouseDrag(Event evt, int x, int y) { if (dragging && ! graphNeedsRedraw) jumpPoint(x,y); return true; } private void jumpPoint(int x, int y) { y = Math.max(gap, Math.min(canvasHeight-gap-1, y)); int pointNum = (int)(Math.round( ((double)(x-gap)/(canvasWidth-2*gap-1))*(points-1) )); double newYVal = 1.0 - ((double)(y-gap))/(canvasHeight-2*gap-1); // Scaled! if (pointNum >= 0 && pointNum < points) yValues[pointNum] = newYVal; if (Double.isNaN(lastY) || Math.abs(pointNum - lastPointNum) <= 1) { } else if (pointNum > lastPointNum) { double dy = (newYVal - lastY)/(pointNum - lastPointNum); for (int i = lastPointNum + 1; i < pointNum && i < points; i++) { if (i >= 0) yValues[i] = lastY + (i-lastPointNum)*dy; } } else { double dy = (newYVal - lastY)/(pointNum - lastPointNum); for (int i = lastPointNum - 1; i > pointNum && i >= 0; i--) { if (i < points) yValues[i] = lastY + (i-lastPointNum)*dy; } } lastPointNum = pointNum; lastY = newYVal; graphNeedsRedraw = true; repaint(); } private void makeDerivs() { double dx = 1.0 / (points - 1); derivatives[0] = (yValues[1] - yValues[0])/dx; for (int i = 1; i < points - 1; i++) { double left = Math.abs(yValues[i] - yValues[i-1]); double right = Math.abs(yValues[i+1] - yValues[i]); if (left < 1e-20 || right < 1e-20) derivatives[i] = 0; else derivatives[i] = ((1/right)*(yValues[i+1]-yValues[i]) - (1/left)*(yValues[i]-yValues[i-1]))/(2*dx*((1/right)+(1/left))); } derivatives[points-1] = (yValues[points-1] - yValues[points-2])/dx; } /* I changed to the derivatives to the preceding because the following more usual version gives funny "overshoot" when when there is a big jump in the curve between successive points. private void makeDerivs() { double dx = 1.0 / (points - 1); derivatives[0] = (yValues[1] - yValues[0])/dx; for (int i = 1; i < points - 1; i++) derivatives[i] = (yValues[i+1] - yValues[i-1])/(2*dx); derivatives[points-1] = (yValues[points-1] - yValues[points-2])/dx; } */ } // end class GummyGraph \ No newline at end of file diff --git a/lib/WeBWorK/htdocs/applets/xFunctions/example_file.txt b/lib/WeBWorK/htdocs/applets/xFunctions/example_file.txt deleted file mode 100644 index f24874375..000000000 --- a/lib/WeBWorK/htdocs/applets/xFunctions/example_file.txt +++ /dev/null @@ -1,23 +0,0 @@ - -function; -5,5,-5,5; table; Tbl; 3; -5,-2; -3,1; -1,3; 0,0; 2,1; 4,2; 5,1 -function; -5,5,-5,5; graph; B; -5,1,-1, -3,-0.5,1; -3,-0.5,-1, 0,2,0; 0,-2,4, 2.5,1,-1; 2.5,1,-1, 5,0,1 -function; 0,5,-1,4; expression; Split; -+ x^2; x < 1; 2*x - 1; x >= 1 and x < 2; 5 - x; x >= 2 and x < 3; (x-3)^2 + 1 - -multigraph; tan(x) = sin(x) / cos(x); -5,5,-5,5; tan(x); sin(x); cos(x) -animation; Tweening Animation; -8,8,-2,2,0,1,50; sin(x)*k + (1/(x^2+1))*(1-k); false -param; Squiggly Curve; -6,6,-6,6,0,6.3,300; 2*cos(5*t) + 3*cos(9*t); 2*sin(10*t) - 4*sin(2*t) -derivatives; Bezier Curve Derivative; -5,5,-5,5; b(x) -reimann; Close to e; 1,2.718,0,1.5,10; 1/x; 3 -graph3d; Singularity; -2,2,-2,2,-2,2,20; 1/(x^2 + y^2); 2 -g; 3D Graph with Table Function; -5,5, -5,5, -5,10, 32; Tbl(x)*Tbl(y); 4 - -integral curves; Attracting/Repelling; -1.5,1.5,-1.5,1.5,0,1,0.01; x^2 + y^2 - 1; (x-y) * (x+y); 3; true; -+ -1.2,-1.2; -0.8,,-1.2; -0.4,,-1.2; 0,,-1.2; .4,,-1.2; .8,,-1.2; 1.2,-1.2,; -+ -1.2,-0.8; -0.8,-0.8; -0.4,-0.8; 0,-0.8; .4,-0.8; .8,-0.8; 1.2,-0.8; -+ -1.2,-0.4; -0.8,-0.4; -0.4,-0.4; 0,-0.4; .4,-0.4; .8,-0.4; 1.2,-0.4; -+ -1.2,0; -0.8,0; -0.4,0; 0,0; .4,0; .8,0; 1.2,0; -+ -1.2,.4; -0.8,.4; -0.4,.4; 0,.4; .4,.4; .8,.4; 1.2,.4; -+ -1.2,.8; -0.8,.8; -0.4,.8; 0,.8; .4,.8; .8,.8; 1.2,.8; -+ -1.2,1.2; -0.8,1.2; -0.4,1.2; 0,1.2; .4,1.2; .8,1.2; 1.2,1.2 - diff --git a/lib/WeBWorK/htdocs/applets/xFunctions/index.html b/lib/WeBWorK/htdocs/applets/xFunctions/index.html deleted file mode 100644 index b18942970..000000000 --- a/lib/WeBWorK/htdocs/applets/xFunctions/index.html +++ /dev/null @@ -1,18 +0,0 @@ - - name="file" value="example_file.txt" - - - diff --git a/lib/WeBWorK/htdocs/applets/xFunctions/using_examples.html b/lib/WeBWorK/htdocs/applets/xFunctions/using_examples.html deleted file mode 100644 index f7757c7a4..000000000 --- a/lib/WeBWorK/htdocs/applets/xFunctions/using_examples.html +++ /dev/null @@ -1,446 +0,0 @@ - - -xFunctions Educational Mathematics Applet -- Using Examples - - - -

        -

        xFunctions: Using Examples

        -
        - -
        - -

        xFunctions is an educational applet -for exploring several aspects of calculus and precalculus mathematics. -Its use is fully described on the main xFunctions Web page. -This page, on the other hand, explains how extra functions and examples can be added to xFunctions. -The examples can be specified as applet parameters in the HTML source code of -a Web page. If xFunctions is run as a standalone applications, it can read -examples from a file that is specified as a command line parameter. -Unfortunately, if you want to create such examples, you have to -encode them by hand. This page explains how to do the encoding.

        - -

        There are two versions of the applet, one that appears right on the Web -page and one that can be launched in a separate window. Examples are used -in the same way with either version of the applet. You can see them in the -"Launcher" version of the applet on the main page. -The xFunctionsLauncher applet on that page is -specified with the following rather long applet tag, which encodes three example -functions and eight examples for the various xFunctions utilities:

        - -
        -   <applet  archive="xFunctions.zip"  code="xFunctionsLauncher.class"  width=200 height=30>
        -      <param  name="1"   value="function; -5,5,-5,5; table; Tbl; 3; -5,-2; -3,1; -1,3; 0,0; 2,1; 4,2; 5,1">
        -      <param  name="2"   value="function; -5,5,-5,5; graph; B; -5,1,-1, -3,-0.5,1; -3,-0.5,-1, 0,2,0; 0,-2,4, 2.5,1,-1; 2.5,1,-1, 5,0,1">
        -      <param  name="3"   value="function; 0,5,-1,4; expression; Split;">
        -      <param  name="4"   value="+  x^2; x < 1; 2*x - 1; x >= 1 and x < 2; 5 - x; x >= 2 and x < 3; (x-3)^2 + 1">
        -      <param  name="5"   value="multigraph; tan(x) = sin(x) / cos(x); -5,5,-5,5; tan(x); sin(x); cos(x)">
        -      <param  name="6"   value="animation; Tweening Animation; -8,8,-2,2,0,1,50; sin(x)*k + (1/(x^2+1))*(1-k); false">
        -      <param  name="7"   value="param; Squiggly Curve; -6,6,-6,6,0,6.3,300; 2*cos(5*t) + 3*cos(9*t); 2*sin(10*t) - 4*sin(2*t)">
        -      <param  name="8"   value="derivatives; Bezier Curve Derivative; -5,5,-5,5; b(x)">
        -      <param  name="9"   value="reimann; Close to e; 1,2.718,0,1.5,10; 1/x; 3">
        -      <param  name="10"  value="graph3d; Singularity; -2,2,-2,2,-2,2,20; 1/(x^2 + y^2); 2">
        -      <param  name="11"  value="g; 3D Graph with Table Function; -5,5, -5,5, -5,10, 32; Tbl(x)*Tbl(y); 4">
        -      <param  name="12"  value="integral curves; Attracting/Repelling; -1.5,1.5,-1.5,1.5,0,1,0.01; x^2 + y^2 - 1; (x-y) * (x+y); 3; true;">
        -      <param  name="13"  value="+   -1.2,-1.2; -0.8,,-1.2; -0.4,,-1.2;  0,,-1.2;  .4,,-1.2;  .8,,-1.2;  1.2,-1.2,;">
        -      <param  name="14"  value="+   -1.2,-0.8; -0.8,-0.8; -0.4,-0.8;  0,-0.8;  .4,-0.8;  .8,-0.8;  1.2,-0.8;">
        -      <param  name="15"  value="+   -1.2,-0.4; -0.8,-0.4; -0.4,-0.4;  0,-0.4;  .4,-0.4;  .8,-0.4;  1.2,-0.4;">
        -      <param  name="16"  value="+   -1.2,0; -0.8,0; -0.4,0;  0,0;  .4,0;  .8,0;  1.2,0;">
        -      <param  name="17"  value="+   -1.2,.4; -0.8,.4; -0.4,.4;  0,.4;  .4,.4;  .8,.4;  1.2,.4;">
        -      <param  name="18"  value="+   -1.2,.8; -0.8,.8; -0.4,.8;  0,.8;  .4,.8;  .8,.8;  1.2,.8;">
        -      <param  name="19"  value="+   -1.2,1.2; -0.8,1.2; -0.4,1.2;  0,1.2;  .4,1.2;  .8,1.2;  1.2,1.2">
        -   </applet>
        -
        -
        - -
        - -

        Applet Params and Files

        - -

        An applet parameter is specified by a <param> tag between the opening <applet> -tag and the closing </applet>. The applet can read these parameters when it runs. -A <param> tag has the form - -

                      <param  name="some name"  value="some value">
        -
        - -

        For the xFuctions applet, the names must be the consecutive numbers 1, 2, 3, 4, ... -You can have as many as you want, but you can't skip any. The applet will stop reading -as soon as it encounters a missing number. (By the way, the applet requests params by -name, and it doesn't matter to the applet what order the params appear in the -<applet> tag. That's why you need the names.)

        - -

        When xFunctions processes these parameters, it will simply process all the param values -in order, as if they were lines in a file. In fact, if you run xFunctions as a standalone -application, you can put the exact same lines in a file and tell xFunctions to read them -when it starts up. (You do this by providing the file name as a command line argument -when you run xFunctions. If you download xFunctions, using one of the downloading links -on the main xFunctions page, you'll find a -README file that explains more about running xFunctions as -an application. You also find a file of examples -which contains the same examples given in the applet tag above.)

        - -

        Now, when xFunctions reads the examples, either from applet params or from a file, -any line beginning with a plus sign (+) is appended to the preceding line. (The plus -sign is discarded.) This allows you to spread long example definitions over several -lines. After lines have been joined in this way, each line defines one example.

        - -

        So, all you need to know is how to compose a line to specify each of the possible types of example. -It's not all that complicated, but the computer is picky about the syntax, and it's easy to -make mistakes. If an example contains an error, xFunctions will ignore the example. (It won't crash.) -To help you find the problem, xFunctions writes messages to standard output as it processes -the example descriptions. If it finds an error, it prints an error message. If you run -xFunctions in a Web browser, you will have to figure out where it actually prints these -messages. Netscape, for example, prints them to a "Java Console." You can open this -console with an entry under the "Communicator" menu (possibly inside a "Tools" submenu -in this menu, depending on what version of the program you are using).

        - -

        (Note: As an alternative to -- or in addition to -- using applet params to specify -examples in an applet, you can put the examples in a file and tell the applet to read -that file. The file should be on the Web server in the same directory with the -source file of the Web page. Then you just have to -give the applet the name of the file as an applet parameter. The name is specified -in a <param> tag whose name is "file" and whose value is the name of the file. -For example: <param name="file" value="example_file.txt">.)

        - -

        Every example specification consists of a series of items separated by -semicolons (;). The first item tells what kind of example it is. This can -be the word "function" to specify that you are defining a new function, or it can be -the name of a utility (Multigraph, Animate,...) to specify that you are giving an -example for one of the utilities. Actually, xFunctions only looks at the first -character, so you can say "f" or "func" or "fried green tomatoes" instead of -"function". Also, you can use either upper or lower case. The rest of the items -in the example depend on which type of example it is. I'll give lists of the -items required for all the different types of examples.

        - -

        - -

        Defining New Functions in Examples

        - -

        It is possible to define new functions as examples. These will be added to the list of -functions that appears on xFunction's main screen. Once they are in that list, they can -be used in the Utilities and in the definitions of other functions -- you can even use them -in later examples. There are three ways to define functions: as one or more expressions, -as a graph, or as a table of xy-points. I'll describe each of these possibilities -separately, but all three types of function specification begin with the same -four items (separated by semicolons): the word "function" (or any string beginning with -an "f"), the xy-limits for the function, the type of function, and the name of the function.

        - -

        The xy-limits consist of four numbers, separated by commas. These are the xmin, xmax, -ymin, and ymax values that will be used in the corresponding input boxes when the function -is graphed on the Main Screen. Note that they are not the domain and range of the function. -They merely specify what region of the xy-plane is displayed on the Main Screen by default. -The type of function is one of the words "expression", "table", or "graph". -Again, xFunctions will actually only look at the first character, so you can abbreviate -these to "e", "t", and "g". The name of the function can be any sequence of -letters and digits, as long as it begins with a letter. You cannot redefine a function -that is already defined. The letters can be either upper or lower case. (When names are -used in expressions, xFunctions doesn't distinguish between upper and lower case. -However, when it places functions in the list on the Main Screen, it will order -upper case letters before lower case letters. You can make the functions that you define -easier to find if you start their names with upper case letters, so that they appear -at the top of the list.)

        - - -

        Expression Functions

        - -

        An expression function is defined by from one to eight expressions. These are the same -expressions that would be entered in the Expression Function Input Screen in xFunctions. -Note that if you have more than one expression, then every even-numbered expression -must be a logical-valued expression (such as "x <= 3") which defines the -domain on which the previous expression is valid. For an expression function example, -the defining expressions are simply listed as separate items in the example -- separated -by semicolons -- after the four standard items. Here is list of the items that -go into an expression function example:

        - -
          -
        1. the word "function" (or anything beginning with f) -
        2. a list of four numbers, separated by commas, giving the xy-limits for the display on the Main Screen -
        3. the word "expression" (or anything beginning with e) -
        4. the name of the function you are defining -
        5. anywhere from one to eight expressions that define the function (separated by more semicolons) -
        - -

        For example, here is how you could define the hyperbolic functions and add them to the function list -one the Main Screen. Once they are there, they can be used just like the built-in functions. -(Note that spaces between items or between numbers in a list are not significant.)

        - -
                     f; -3,3,-3,3; e; sinh; (e^x - e^(-x)) / 2
        -             f; -3,3,-3,3; e; cosh; (e^x + e^(-x)) / 2
        -             f; -3,3,-3,3; e; tanh; sinh(x) / cosh(x)
        -
        - - -

        Table Functions

        - -

        A table function is defined by a list of xy-points that lie on the graph of the function. -You also have to specify how to fill in the graph between points. There are three possible -styles: a step function, a piecewise linear function, or a smooth function. -In an example, the style is specified (in order of increasing "quality") as one of the -numbers 1, 2, or 3. The specification for a table function includes the following items:

        - -
          -
        1. the word "function" (or anything beginning with f) -
        2. a list of four numbers, separated by commas, giving the xy-limits for the display on the Main Screen -
        3. the word "table" (or anything beginning with t) -
        4. the name of the function you are defining -
        5. one of the numbers 1, 2, or 3 to specify whether its a step function, piecewise linear, or smooth -
        6. two or more points, where each point is a pair of numbers separated by a comma. The -x-values of the points must be in strictly increasing order. The points are separated by semicolons. -
        - -

        For example, this defines a piecewise linear function named "W" that looks like a W"

        - -
                      f; -5,5,0,5; t; W; 2; -4,4; -2,0; 0,2; 2,0; 4,4
        -
        - - -

        Graph Functions

        - -

        A graph function is a sequence of Bezier segments. Each segment is defined by -a list of six numbers, separated by commas. The numbers give:

        - -
          -
        • the x-coordinate of the left endpoint -
        • the y-coordinate of the left endpoint -
        • the slope of the graph at the left endpoint -
        • the x-coordinate of the right endpoint -
        • the y-coordinate of the right endpoint -
        • the slope of the graph at the right endpoint -
        - -

        The x-coordinates in a segment must agree with the x-coordinates of its neighbors. -(It is not possible to define graphs with gaps in the domain.) The y-coordinates -don't have to agree, so you can make functions with discontinuities. Even if the -y-coordinates of neighboring segments do agree, the slopes don't have to -agree, so you can make functions with corners.

        - -

        The specification of a graph function consists of the following items: - -

          -
        1. the word "function" (or anything beginning with f) -
        2. a list of four numbers, separated by commas, giving the xy-limits for the display on the Main Screen -
        3. the word "graph" (or anything beginning with g) -
        4. the name of the function you are defining -
        5. specifications for one or more bezier segments, separated by semicolons. Each segment is -specified as a list of six numbers, as described above, separated by commas. -
        - -

        Here is an example that defines a graph function named "Grf" consisting of two bezier segments with a -sharp corner at the point (0,0) and with horizontal tangents at (-2,1) and (2,1)

        - -
                    f; -2,2,0,2; g; Grf; -2,1,0, 0,0,-5; 0,0,5, 2,1,0;
        - - -

        - -

        Examples for the Utilities

        - -

        To define an example for one of the seven utilities, you have to say what goes into -each of the inputs on that utility screen. In all cases, this includes a set of values -for xmin, xmax, ymin, ymax, and possibly for other numerical values. It also includes -one or more expressions to define the functions that the utility will use. There might -be other inputs, such as the checkbox labeled "Loop back and forth" in the Animate Utility -or the radio buttons for controlling the style of graph in the Graph 3D Utility. -I'll describe the exact format you need in order to specify the inputs for each of the -utilities. In all cases, the first item in the example is the name of the utility, -which can be abbreviated to as little as one letter. This is followed by a menu entry, -which is the string that will appear in the pop-up menu in xFunctions to describe this -example to the user. (It has to be short enough to fit into this menu.) -Next comes a list of numbers, separated by commas, that go into the -numerical input boxes in the utility. -This is followed by one or more expressions, separated by semicolons. Any further -inputs are specified after that.

        - - -

        Multigraph Utility

        - -

        An example for the multigraph utility is specified by

        - -
          -
        1. the word "multigraph" (or anything beginning with m) -
        2. the menu entry for the example, which can be any (short) string -
        3. a list of 4 numbers, separated by commas, specifying xmin, xmax, ymin, and ymax -
        4. anywhere from one to eight expressions, giving the functions of x that are to be -graphed, separated by more semicolons. -
        - -

        For example:

        - -
                        m; An interesting function; -1,2,0,2; abs(x)^x
        -                multigraph; Two halves of a circle; -2,2,-2,2; sqrt(1-x^2); -sqrt(1-x^2)
        -
        - - -

        Animate Utility

        - -

        For the animate utility, the list of numbers has seven entries. In addition to -xmin, xmax, ymin, and ymax, there are kmin and kmax, which give the limits on the parameter -k, and the number of intervals in the -animation. The number of intervals must be between 1 and 1000, inclusive. -The expression to be animated uses the variables x and k. There is a final item -that specifies whether the "Loop back and forth" checkbox should be on. -The value of this item must be specified as "true" or "false". (As usual, you can -abbreviate to one character.) When the user selects an animation example, the -animation will start playing automatically after a second or two. So, an Animate -Utility example consists of:

        - -
          -
        1. the word "animate" (or anything beginning with a) -
        2. the menu entry for the example, which can be any (short) string -
        3. a list of 7 numbers, separated by commas, specifying xmin, xmax, ymin, ymax, kmin, kmax - and the number of intervals, where the number of intervals is between 1 and 1000 -
        4. an expression that uses the variables x and k -
        5. one of the values "true" or "false" to specify whether the animation loops back and forth -
        - -

        For example:

        - -
                    a; Functions Converging to f(x)=x; 0,1.2,0,1.2,0,50,50; x^k; false
        -
        - - -

        Parametric Curves Utility

        - -

        The Parametric Curves Utility requires seven numerical inputs. The three extra inputs -are the values of tmin and tmax (the range of values for the parameter) and the -number of points that are plotted on a curve. The number of points must be between -2 and 1000, inclusive. You can have up to eight curves. For each two curves, -you need two expressions involving the variable t, one to define -x(t) and one to define y(t). A Parametric Curves example consists of:

        - -
          -
        1. the words "parametric curves" (or anything beginning with p) -
        2. the menu entry for the example, which can be any (short) string -
        3. a list of 7 numbers, separated by commas, specifying xmin, xmax, ymin, ymax, tmin, tmax, -and the number of points on a curve. The number of points must be between 2 and 1000. -
        4. an even number of expressions, from two to sixteen, -giving the functions of t that define x(t) and y(t) for each curve, separated by more semicolons. -
        - -

        For example (using a + on the second line to break the example into two lines):

        - -
                      p; A Circle and Two Ellipses; -3,3, -3,3, 0,6.29, 200; 2*cos(t); 2*sin(t);
        -              +   2*cos(t); sin(t);   cos(t); 2*sin(t)
        -
        - - -

        Derivatives Utility

        - -

        An example for the derivatives Utility consists of the following items:

        - -
          -
        1. the word "derivatives" (or anything beginning with d) -
        2. the menu entry for the example, which can be any (short) string -
        3. a list of 4 numbers, separated by commas, specifying xmin, xmax, ymin, and ymax -
        4. an expression giving the function of x -
        - -

        For example:

        - -
                     d; Vertical tangent at x=0?; -2,2,-2,2; abs(x)^x
        -
        - - -

        Riemann Sums Utility

        - -

        The Riemann Sums Utility requires five numerical inputs. The last one is the number of -intervals into which the domain is to be divided. This must be a number between 1 and 512, -inclusive. You also have to specify which summation method will be displayed on the -graph. There are six possible methods, which are specified by the numbers from 1 to 6: -left endpoint rule, right endpoint rule, midpoint rule, inscribed rectangle rule, -circumscribed rectangle rule, and trapezoid rule. So, an example consists of:

        - -
          -
        1. the words "riemann sums" (or anything beginning with r) -
        2. the menu entry for the example, which can be any (short) string -
        3. a list of 5 numbers, separated by commas, specifying xmin, xmax, ymin, ymax, and -the number of subintervals. The number of subintervals must be between 1 and 512. -
        4. An expression giving the function of x -
        5. A number from 1 to 6 specifying the display method -
        - -

        For example:

        - -
                 r; Area Under a Parabola; 0,1,-0.2,1.2,6; x^2; 3
        -
        - - -

        Integral Curves Utility

        - -

        An Integral Curves example requires seven numbers. The fifth and sixth of these -go in the boxes labeled "Start x" and "Start y" in the utility. (These values give -a point where a curve will start when the user presses the New Curve button. -You might not find it useful to provide such a point in an example, but you have -to include it anyway.) The seventh number is the "dt" value that specifies time -between points on the curves. The example must also specify the integration -method as a number 1, 2, or 3 standing for Euler's method, Runge-Kutta Order 2, -or Runge-Kutta Order 4 (in order of increasing "quality"). -Finally, you have to specify whether the checkbox labeled "Extend curves -in both directions" is checked. You do this with one of the values -"true" or "false", which can be abbreviated to just "t" or "f".

        - -

        The Integral Curve utility draws integral curves starting at specified points. -You can, optionally, include a list of points in your example where curves -are to be started. Each point is specified as a pair of numbers, separated by -a comma. If your example includes such points, then the curves will be started -a second or two after the user chooses the example from the menu.

        - -

        An Integral Curve example consists of

        - -
          -
        1. the words "integral curves" (or anything beginning with i) -
        2. the menu entry for the example, which can be any (short) string -
        3. a list of 7 numbers, separated by commas, specifying xmin, xmax, ymin, ymax, -Start x, Start y, and dt. The value of dt must be greater than zero. -
        4. two expressions using the variables x and y, separated by a semicolon. -These give the values of dx/dt and dy/dt. -
        5. A number 1, 2, or 3 specifying the integration method. -
        6. One of the values "true" or "false" to specify whether curves are to be -drawn both forwards and backwards in time -
        7. Optionally, you can add any number of points. Each point is a pair of -numbers, separated by a comma. The points are separated by semicolons. -
        - -

        Here is an example that does not use extra points. For an example with -points, see the example in the applet tag at the top of this page.

        - -
                    i; Pendulum Phase Space; -4, 4, -4, 4, 0, 0, 0.1; y; sin(x); 3
        -
        - - -

        Graph 3D Utility

        - -

        For the Graph 3D Utility, you need seven numbers, including zmin, zmax, and the -grid size. The grid size is a number between 8 and 64, inclusive, that determines -how many points are plotted on the graph. Then, in addition to a function of x and y, -you need to specify which type of graph will be drawn. There are four types, -which are specified by the numbers 1, 2, 3, and 4 (in order of increasing "quality"): -wireframe model, wireframe with hidden lines removed, shaded model, and shaded model -with wires. So, an example for Graph 3D consists of:

        - -
          -
        1. the words "graph 3d" (or anything beginning with g) -
        2. the menu entry for the example, which can be any (short) string -
        3. a list of 7 numbers, separated by commas, specifying xmin, xmax, ymin, ymax, -zmin, zmax, and the grid size. The grid size must be between 8 and 64. -
        4. an expression giving the function of x and y that is to be graphed -
        5. A number between 1 and 4 specifying the style of graph. -
        - -

        For example:

        - -
                        g; Eggcrate; -4,4,-4,4,-2,2,50; sin(x)*cos(y); 4
        -
        - - - -

        -
        David Eck -(eck@hws.edu), 27 October 1999
        - -
        - - - - diff --git a/lib/WeBWorK/htdocs/applets/xFunctions/xFunctions.html b/lib/WeBWorK/htdocs/applets/xFunctions/xFunctions.html deleted file mode 100644 index d1ee109ce..000000000 --- a/lib/WeBWorK/htdocs/applets/xFunctions/xFunctions.html +++ /dev/null @@ -1,421 +0,0 @@ - - - - - xFunctions xPresso Educational Mathematics Applet - - - -math dept -

        -[Up] -[Feedback] -


        -

        - -This applet was created by David Eck (see below). It is the web version -of the graphing program which I often use in class. -
        - -
        -

        Quick Instructions

        - -

        When the applet starts up, it is showing a "Main Screen" where you can see the graph of -functions. The available functions are shown in a list on the left. Click on -a function to view its graph. You can define your own functions to add to -this list using the three buttons at the lower left of the Main Screen. -There are three ways to define new functions: using expressions (such as -0.5*x^2+sin(3*x-2)), by giving the graph of the function, or by listing a -table of (x,y) pairs. There is a separate input screen for each of these input methods. -To get back to the Main Screen from one of these input screens, you have -to press a "Done" or "Cancel" button. -The pop-up menu at the top of the applet can be used to go to seven other -screens. Each screen is a separate "utility" that allows you to play with -functions in a different way. When you enter functions into the utility -screens, you can use any new functions that you have defined, as well as the built-in -functions.

        - -

        In the "Launcher Version," you'll find a few extra functions in the list on the Main Screen. -You'll also find some extra entries in the pop-up menu. These extra entries are examples that -will take to one of the utility screens, and load an example in to that screen. -(Information about making examples for xFunctions -can be found here -- but to do that, you need to make your own Web pages.)

        - -

        Now, just go ahead and play!

        - -
        - -

        More Detailed Instructions

        - -

        First some general ideas

        - -
          -
        • Expressions - in xFunctions can include the operations +, -, *, /, and -^, where ^ represents exponentiation (this is, x^3 is x*x*x). You always have -to type multiplication explicitly as *. When you use a function such as -sin or f in an expression, you have to put parentheses around its argument. -That is, you have to say "sin(x^2)" rather than "sin x^2". -You can use the constants e and pi in expressions. -
        • Built-in functions are shown on the main -screen. Some might not be obvious: "abs" is absolute value. "sqrt" -is square root and cubert is the cube root. "ln" is the -natural logarithm and "exp" is exponentiation in the base e (same as e^x). -"round(x)" is the nearest integer to x, "floor(x)" is the integer -just below or equal to x, "ceiling(x)" is the integer just above or -equal to x, and "trunc(x)" in the integral part of x after any decimal -part is thrown away. -
        • Graph limits and other limits can be set by -filling in the text boxes labeled xmin, tmax, and so on. Usually, -if you press return in any text box, the graph will be redrawn, so you -don't have to use the buttons too much. Many screens have buttons for zooming in -and out on the graph. A "Restore" button will restore the original limits on the -graph. An "Equalize" button will reset the xy limits on the graph so that the -scales on the horizontal and vertical axes are equal. (This makes circles look -like circles instead of ellipses, and it lets you estimate slope visually.) -
        • The mouse can be used for zooming on some of the applet's -screens. Click with the right mouse button at a point (or command-click on Macintosh) -to zoom in on that point. Click with the middle mouse button (or option-click or -ALT-click) to zoom out from the point). -
        • Error messages are displayed in the same region of -the screen where graphs are drawn. An error message will go away if you click on it. Or, you -can just fix the problem and the error message will go away the next time a -graph is drawn. -
        • Never trust a computer! Do not assume that -what you see in this program is perfectly accurate. For one thing, there are -probably some bugs -- out and out programming errors. More important, the methods -used in computations are approximations and in some cases guesses. Graphs are -drawing by plotting a lot of points and connecting them with lines. Since a lot -of points are used, generally the results are pretty good, but if the graph -varies rapidly the results can be positively deceptive. -
        - - -

        The Main Screen

        - -

        The main screen is not the most interesting part of -xFunctions! The more interesting "utility screens" are described -below. However, you have to use the main screen if you want to -define new functions to use in the utility screens.

        - -

        The main screen shows a list of available functions on the left. -Click on a function to see its graph. To add to this list, click on one -of the buttons "New Expr.", "New Table", or "New Graph" in the lower left -corner. This will take you to a screen where you can input a function. -These input screens are describe below. If the function that is hilited -in the list is a user-defined function, as opposed to one of the -built-in functions, then the "Edit" button is enabled. If you click the -"Edit" button, it will take you to the appropriate function input screen, -where you can modify the definition of the function.

        - -

        If you click on the graph, a cross-hair will appear marking a point on the -graph. The coordinates of the point will appear under the graph. -There is also an input box under the graph where you can input an -x-value. This gives you much finer control of the x-value -than you can get by clicking on the graph. -Either press return in this box or click the "Set" button, -and the corresponding point will be marked on the graph. If you -click-and-drag on the graph, the cross-hair will move as you drag -the mouse.

        - -

        Right-click on the graph to zoom in on a point. Click with -the middle-mouse button, or hold down the ALT key and left-click, -to zoom out. You can also control the ranges of values displayed on the -x- and y-axes with the controls along the right edge of the screen.

        - -

        The Utilities

        - -

        The main point of xFunctions is its -seven "utilities." Each utility is a screen that allows you to work -with functions in a different way. To go to a utility, select its name from -the pop-up menu at the top of the applet. This pop-up menu is -visible on the Main Screen and on each of the utility screens, so -it is easy to move among these screens. (The pop-up menu is not -available on the function input screens.) On other Web pages that use -xFunctions, there might also be "examples" in this pop-up menu. Selecting one of the -examples will take you to one of the utility screens and load data for some -example into that screen.

        - -

        Below, you'll find brief instructions for each of the seven utilities. -However, much of the interface for the utilities is pretty self-explanatory.

        - -

        Expression Function Input Screen

        - -

        When you click the "New Expr." button on the main screen, you will be -taken to an input screen where you can define a function as an -expression such as "x^2+2*x+1". You can also define split -functions, which have different expressions on different parts of their -domains.

        - -

        To define a function, set the -name of the function in the input box the top of the screen (or just accept the -name that is already provided there). To define a function using just one -expression, just fill in the box labeled "Let y =". -If you want to limit the domain of the function, you can -enter a condition such as "x > -1 and x < 1" in -the box labeled "provided:". The condition can use the relational operators -=, <>, <, >, <=, and >=, and it can use the logical operators -"and", "or", and "not". You can use any expression as part of the condition, -such as "abs(sin(x)) < 0.5". -You can define a function by up to four cases -by filling in more of the boxes labeled "or y=" and "provided". -For example: Let "y = x^2" provided "abs(x) < 1" or "y = x^3" provided -"x >= 1" or "y = 1" provided "x <= -1".

        - -

        Click the "Test" button to see the graph of your function. The limits on the -axes here do not limit the domain of the function. They are only used to determine -what part of the graph will be shown by default on the Main Screen.

        - -

        Click the "Done" button to define the function and go back to the Main Screen. -You must click either the "Done" or "Cancel" button to get out of -the Expression Function Input Screen.

        - -

        Graph Function Input Screen

        - -

        Functions don't have to be defined by expressions! They can also be -defined by graphs and by tables of values. From the Main Screen, click -the "New Graph" button to go to the Graph Function Input Screen, where -you can define a function as a graph. Technically, the graphs used here -are Bezier functions, which are made up of segments. Each segment is -a piece of a cubic polynomial, which is completely determined by the -two points at the ends of the segments and by the slopes at those two -points. It is possible to make graphs that have discontinuities, -corners, and cusps.

        - -

        A new function is just a line segment on the x-axis, with a point at each -end. You can double-click the graph to introduce new points. Each point -has a "handle", shown as a black point nearby. You can click-and-drag the -points and the handles to modify the graph. Other operations are described -in the "Brief Instructions" at the top right of the screen. If you want -fine control over the x-value of a new endpoint, enter the x-value in the -box labeled "at x =" and either press return or click the "Insert New Point" -button. Note that the x and y limits in the lower right do not affect -the shape of the graph, just how the xy-values on the graph are interpreted.

        - -

        Click the "Done" or "Cancel" button to return to the main screen.

        - -

        Table Function Input Screen

        - -

        Use the Graph Function Input Screen if you want to set the general -shape of a graph by hand. If you have a list of xy-points on the -graph, enter them as a table in the Table Function Input Screen. -You get to this screen by pressing the "New Table" button on the Main -Screen.

        - -

        Just enter the pairs of xy-values one-by-one in the boxes labeled -"Input x" and "Input y". (You can press tab after entering the x-value, -and press return after entering the y-value.) The points will be shown -in a list in the upper right corner of the screen. If you click on -a point in the list, it will be copied to the input boxes, so you can -edit it. There is a button for deleting the selected point from the -list.

        - -

        Just knowing some points on the graph doesn't tell you what the whole -function looks like. You have to specify what happens between the points. -You have three choices: A "Step Function" has a constant value between -two consecutive points from your list. For a "Piecewise Linear Function", -the points are connected by line segments. A "Smooth Function" is -continuous and differentiable at all points. (It's actually a Bezier function, -defined by cubic polynomials between the points specified in your list.)

        - -

        A preview of the graph is shown in the lower right (but not until there are -at least two points). The limits on the axes are increased if necessary, and -or can set them yourself.

        - -

        Click the "Done" or "Cancel" button to get back to the Main Screen.

        - -

        Multigraph Utility

        - -

        The Multigraph Utility Screen let's you draw up to eight functions in different -colors on the same set of axes. You can select the number (1 to 8) of the -function to be graphed with a pop-up menu near the lower left of the -screen. Each curve is a different color, shown in a -colored patch next to the pop-up menu. -Enter the function and press return (or click "Graph!") -to graph the function. Right-clicking on the graph will -zoom in on a point. Click with the middle mouse button, or -hold down the ALT key and left-click, to zoom out. -

        - -

        Animate Utility

        - -

        The Animate Utility Screen lets you work with a function whose definition can -contain the parameter k, as well as the variable x. This is really a family -of different functions, one for each value of k. The Animate Utility -plays a "movie" showing a sequence of the graphs for different values of k. -There are input boxes where you can specify the values of k at the start and -end of the movie. You can also specify the number of intervals in the movie. -(The number of frames is the number of intervals plus one.) What happens -when you get to the end of the movie? The Animate Utility can either jump directly back -to the beginning, or it can play the movie backwards. Which it does is controlled -by a checkbox labeled "Loop Back and Forth." -The "Go" button will start the animation. The "Next" button will move the -animation from one frame to the next. You can use the mouse to zoom in out on the graph.

        - - -

        Parametric Curves Utility

        - -

        The Parametric Curves Utility draws parametric curves in the xy-plane. -A parametric curve is a plot of xy-points where the x and y coordinates -are functions of some parameter. In this utility, the parameter is t. -For example, the parametric curve defined by x=cos(t), y=sin(t) for -t between 0 and 6.3 is a circle. (6.3 is about 2*pi.)

        - -

        In this utility, you can enter x and y functions for up to eight -parametric curves. There is a pop-up menu near the bottom left corner -of the screen that you can use to select the curve whose definition you -want to enter/display. Each curve is a different color, shown in a -colored patch next to the pop-up menu. -There are input boxes for specifying the -range of t-values to use for the curves. You can also specify the -number of points on each curve. (Remember that xFunctions draws graphs -by plotting points and connecting them with lines. The results for -discontinuous or rapidly changing functions might not be great. You might -get a better curve by increasing the number of points.)

        - -

        There is a button labeled "Trace". If you click this button, a crosshair -will be moved along the curve whose number is specified in the pop-up menu. -This lets you see how the point on the curve varies as t changes. The crosshair -disappears after the curve has been traced once.

        - -

        Zooming with the mouse will work in this utility. - -

        Derivatives Utility

        - -

        The Derivatives Utility will draw the graphs of a function, the -first derivative of the function, and the second derivative of the -function. The three graphs are displayed in separate panels in -the bottom half of the applet. If you left-click and drag on the -graph of the function, a tangent line to the graph will be displayed. -At the same time, the corresponding point on the graph of the first -derivative will be marked. (You can also click and drag on the -other graphs and see what happens.) Mouse zooming will also work -in this utility.

        - -

        Riemann Sums Utility

        - -

        The Riemann Sum Utility computes Riemann sums for a specified function on -a specified interval. The values of various Riemann sums, using -different rules, are shown at the right. (The trapezoid rule isn't -strictly a Riemann sum, but it's there as a choice anyway.) -The area corresponding to one of the sums is displayed on the graph. Use the pop-up -menu at the lower right to select which area is displayed. If you -click on the graph, you get details about one of the -rectangles or trapezoids in the sum. (Click on the blue information box -to get rid of it.) Note that for the -"~Circumscribed" and "~Inscribed" rules, the maximum and minimum -of the function on a sub-interval is only computed approximately. -(This explains the "~", which stands for "approximately.") Mouse zooming does -not work on this screen.

        - -

        Integral Curves Utility

        - -

        The Integral Curves Utility draws direction fields and integral curves. -An integral curve is the path followed by a point whose velocity -at each point is given by a "vector field". A vector field on the -xy-plane is given by a pair of functions of x and y. For the curve, -these functions specify the derivatives dx/dt and dy/dt at each point. -In the Integral Curves Utility, you can specify the functions dx/dt -and dy/dt, and you can "drop" points onto the xy-plane and see the -curves along which they move. The utility also draws a grid of arrows. -An arrow at a point shows the direction of the integral curve as it -passes through that point. (This is a "direction field" rather than a -"vector field" because it shows only the direction of the curve, -not the speed.)

        - -

        You can start a curve by clicking at a point on the graph. Alternatively, -for finer control, you can enter the x and y values of the starting -point of the curve in the boxes labeled "Start x" and "Start y". Then, -click the "New Curve" button to start a curve at that point. -You can have as many curves as you want. -If you turn on the "Extend curves in both directions" option, -you get to see how the point would move backwards in time as well as -forwards.

        - -

        An integral curve is drawn by looking at the current position of -the point and at the derivative functions at that point (and possibly -at some nearby points for greater accuracy). This is used to project -the point forward "dt" time units into the future. This -is only an approximation! A smaller value of dt will generally give -a better approximation. There is an input box where you can specify -the value of dt. The Integral Curves Utility can use -three different approximations: Euler's Method, Runge-Kutta Order 2, -and Runge-Kutta Order 4. The utility has a set of radio buttons that -you can use to select the method. Runge-Kutta Order 4 is the most accurate -method, and there is really no reason to use the other two unless you -specifically interested in the method rather than in getting -the best possible approximation of the true integral curve.

        - -

        Once a curve has been started, it uses the same method and the same -value of dt forever. This lets you start different curves from the -same point, using different methods or different values of t, to compare them.

        - -

        In this utility, more than in others, you might want to use the -"Equalize" button to equalize the scales on the x and y axes. Otherwise, -the arrow directions, as drawn, can be misleading. You can use the -mouse for zooming in this utility.

        - -

        Graph 3D Utility

        - -

        The Graph 3D Utility draws three-dimensional graphs of functions -of two variables. The function to be graphed is of the form z=f(x,y), -where f(x,y) is given as an expression that can contain variables x and y. -The values of xmin, xmax, ymin, and ymax have a different interpretation -in this utility: They specify a rectangle in the xy-plane that is used -as the domain over which the graph is drawn. You can also enter -zmin and zmax, which specify the range of z-values that you want to see. -The scale on the graph is adjusted so that the specified ranges of x, y, and -z are visible. But since the image on the screen is a two-dimensional -projection of a three dimensional object, there is not an exact correspondence -between the ranges and the boundaries of the rectangle shown on the screen.

        - -

        To produce the graph, a rectangular grid of points in the domain is used. -The function is evaluated at each point, and the resulting xyz-points -are connected with lines. You can enter the grid size -- that is, the -number of points along each side of this grid of points. -The utility can draw graphs in four different -styles: When only the lines between the points are drawn, the result is a -so-called "wire-mesh model." The second style also consists of just lines, -but lines that are hidden by other parts of the graph are not shown. -Instead of drawing the lines, the regions between the lines can be filled in -with color, giving a "shaded model." (The color used is determined by -the orientation of the graph surface, so it looks as if the graph is -illuminated from a certain direction.) In the fourth style, both the -lines and the shading are shown. You can select among the four styles -using a set of radio buttons under the graph. The shaded model -without lines only really looks good on a high color monitor using a -large grid size.

        - -

        When the utility starts up, you will see a projection of the x-, y-, -and z-axes along with a rectangle that frames the domain of the function -in the xy-plane. When you press the "Graph it!" button or press return -in any input box, the graph will be drawn. You get to see the graph -being drawn, from back to front. (This is deliberate -- for understanding -the graph, seeing the drawing process is more effective than just seeing -the final result.)

        - -

        You can rotate the axes and graph using two scroll bars. The -horizontal scroll bar rotates the graph around the z-axis. The -vertical scroll bar tilts the image towards you and away from you.

        - -

        Mouse zooming does not work in the Graph 3D Utility. Do -not expect Graph 3D to work well with most discontinuous functions.

        - -
        -
        David Eck -(eck@hws.edu), 27 October 1999
        - - - - - - -
        -Last updated: Wednesday, April 12, 2000 -
        -http://www.math.rochester.edu/courses/current/MTH163/xFunctions.html -
        This page was built by M.Gage using Frontier
        - - - - diff --git a/lib/WeBWorK/htdocs/applets/xFunctions/xFunctions.zip b/lib/WeBWorK/htdocs/applets/xFunctions/xFunctions.zip deleted file mode 100644 index ac071ff24..000000000 Binary files a/lib/WeBWorK/htdocs/applets/xFunctions/xFunctions.zip and /dev/null differ diff --git a/lib/WeBWorK/htdocs/crossdomain.xml b/lib/WeBWorK/htdocs/crossdomain.xml deleted file mode 100644 index a45fa2ff2..000000000 --- a/lib/WeBWorK/htdocs/crossdomain.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/lib/WeBWorK/htdocs/css/bootstrap.sub.css b/lib/WeBWorK/htdocs/css/bootstrap.sub.css deleted file mode 100644 index 24a77c2ae..000000000 --- a/lib/WeBWorK/htdocs/css/bootstrap.sub.css +++ /dev/null @@ -1,518 +0,0 @@ -html { - font-size: 100%; - -webkit-text-size-adjust: 100%; - -ms-text-size-adjust: 100%; -} -body { - margin: 0; - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 14px; - line-height: 20px; - color: #000000; - background-color: #ffffff; -} -form { - margin: 0 0 20px; -} -label, -input, -button, -select, -textarea { - font-size: 14px; - font-weight: normal; - line-height: 20px; -} -input, -button, -select, -textarea { - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; -} -label { - display: block; - margin-bottom: 5px; -} -.well { - min-height: 20px; - padding: 19px; - margin-bottom: 20px; - background-color: #f5f5f5; - border: 1px solid #e3e3e3; - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); - -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); -} -.well blockquote { - border-color: #ddd; - border-color: rgba(0, 0, 0, 0.15); -} -.well-large { - padding: 24px; - -webkit-border-radius: 6px; - -moz-border-radius: 6px; - border-radius: 6px; -} -.well-small { - padding: 9px; - -webkit-border-radius: 3px; - -moz-border-radius: 3px; - border-radius: 3px; -} -.container-fluid { - padding-right: 20px; - padding-left: 20px; - *zoom: 1; -} -.container-fluid:before, -.container-fluid:after { - display: table; - content: ""; - line-height: 0; -} -.container-fluid:after { - clear: both; -} -table { - max-width: 100%; - background-color: transparent; - border-collapse: collapse; - border-spacing: 0; -} -.table { - width: 100%; - margin-bottom: 20px; -} -.table th, -.table td { - padding: 8px; - line-height: 20px; - text-align: left; - vertical-align: top; - border-top: 1px solid #dddddd; -} -.table th { - font-weight: bold; -} -.table thead th { - vertical-align: bottom; -} -.table caption + thead tr:first-child th, -.table caption + thead tr:first-child td, -.table colgroup + thead tr:first-child th, -.table colgroup + thead tr:first-child td, -.table thead:first-child tr:first-child th, -.table thead:first-child tr:first-child td { - border-top: 0; -} -.table tbody + tbody { - border-top: 2px solid #dddddd; -} -.table .table { - background-color: #ffffff; -} -.table-condensed th, -.table-condensed td { - padding: 4px 5px; -} -.table-bordered { - border: 1px solid #dddddd; - border-collapse: separate; - *border-collapse: collapse; - border-left: 0; - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; -} -.table-bordered th, -.table-bordered td { - border-left: 1px solid #dddddd; -} -.table-bordered caption + thead tr:first-child th, -.table-bordered caption + tbody tr:first-child th, -.table-bordered caption + tbody tr:first-child td, -.table-bordered colgroup + thead tr:first-child th, -.table-bordered colgroup + tbody tr:first-child th, -.table-bordered colgroup + tbody tr:first-child td, -.table-bordered thead:first-child tr:first-child th, -.table-bordered tbody:first-child tr:first-child th, -.table-bordered tbody:first-child tr:first-child td { - border-top: 0; -} -.table-bordered thead:first-child tr:first-child > th:first-child, -.table-bordered tbody:first-child tr:first-child > td:first-child, -.table-bordered tbody:first-child tr:first-child > th:first-child { - -webkit-border-top-left-radius: 4px; - -moz-border-radius-topleft: 4px; - border-top-left-radius: 4px; -} -.table-bordered thead:first-child tr:first-child > th:last-child, -.table-bordered tbody:first-child tr:first-child > td:last-child, -.table-bordered tbody:first-child tr:first-child > th:last-child { - -webkit-border-top-right-radius: 4px; - -moz-border-radius-topright: 4px; - border-top-right-radius: 4px; -} -.table-bordered thead:last-child tr:last-child > th:first-child, -.table-bordered tbody:last-child tr:last-child > td:first-child, -.table-bordered tbody:last-child tr:last-child > th:first-child, -.table-bordered tfoot:last-child tr:last-child > td:first-child, -.table-bordered tfoot:last-child tr:last-child > th:first-child { - -webkit-border-bottom-left-radius: 4px; - -moz-border-radius-bottomleft: 4px; - border-bottom-left-radius: 4px; -} -.table-bordered thead:last-child tr:last-child > th:last-child, -.table-bordered tbody:last-child tr:last-child > td:last-child, -.table-bordered tbody:last-child tr:last-child > th:last-child, -.table-bordered tfoot:last-child tr:last-child > td:last-child, -.table-bordered tfoot:last-child tr:last-child > th:last-child { - -webkit-border-bottom-right-radius: 4px; - -moz-border-radius-bottomright: 4px; - border-bottom-right-radius: 4px; -} -.table-bordered tfoot + tbody:last-child tr:last-child td:first-child { - -webkit-border-bottom-left-radius: 0; - -moz-border-radius-bottomleft: 0; - border-bottom-left-radius: 0; -} -.table-bordered tfoot + tbody:last-child tr:last-child td:last-child { - -webkit-border-bottom-right-radius: 0; - -moz-border-radius-bottomright: 0; - border-bottom-right-radius: 0; -} -.table-bordered caption + thead tr:first-child th:first-child, -.table-bordered caption + tbody tr:first-child td:first-child, -.table-bordered colgroup + thead tr:first-child th:first-child, -.table-bordered colgroup + tbody tr:first-child td:first-child { - -webkit-border-top-left-radius: 4px; - -moz-border-radius-topleft: 4px; - border-top-left-radius: 4px; -} -.table-bordered caption + thead tr:first-child th:last-child, -.table-bordered caption + tbody tr:first-child td:last-child, -.table-bordered colgroup + thead tr:first-child th:last-child, -.table-bordered colgroup + tbody tr:first-child td:last-child { - -webkit-border-top-right-radius: 4px; - -moz-border-radius-topright: 4px; - border-top-right-radius: 4px; -} -.table-striped tbody > tr:nth-child(odd) > td, -.table-striped tbody > tr:nth-child(odd) > th { - background-color: #f9f9f9; -} -.table-hover tbody tr:hover > td, -.table-hover tbody tr:hover > th { - background-color: #f5f5f5; -} -table td[class*="span"], -table th[class*="span"], -.row-fluid table td[class*="span"], -.row-fluid table th[class*="span"] { - display: table-cell; - float: none; - margin-left: 0; -} -.table td.span1, -.table th.span1 { - float: none; - width: 44px; - margin-left: 0; -} -.table td.span2, -.table th.span2 { - float: none; - width: 124px; - margin-left: 0; -} -.table td.span3, -.table th.span3 { - float: none; - width: 204px; - margin-left: 0; -} -.table td.span4, -.table th.span4 { - float: none; - width: 284px; - margin-left: 0; -} -.table td.span5, -.table th.span5 { - float: none; - width: 364px; - margin-left: 0; -} -.table td.span6, -.table th.span6 { - float: none; - width: 444px; - margin-left: 0; -} -.table td.span7, -.table th.span7 { - float: none; - width: 524px; - margin-left: 0; -} -.table td.span8, -.table th.span8 { - float: none; - width: 604px; - margin-left: 0; -} -.table td.span9, -.table th.span9 { - float: none; - width: 684px; - margin-left: 0; -} -.table td.span10, -.table th.span10 { - float: none; - width: 764px; - margin-left: 0; -} -.table td.span11, -.table th.span11 { - float: none; - width: 844px; - margin-left: 0; -} -.table td.span12, -.table th.span12 { - float: none; - width: 924px; - margin-left: 0; -} -.table tbody tr.success > td { - background-color: #dff0d8; -} -.table tbody tr.error > td { - background-color: #f2dede; -} -.table tbody tr.warning > td { - background-color: #fcf8e3; -} -.table tbody tr.info > td { - background-color: #d9edf7; -} -.table-hover tbody tr.success:hover > td { - background-color: #d0e9c6; -} -.table-hover tbody tr.error:hover > td { - background-color: #ebcccc; -} -.table-hover tbody tr.warning:hover > td { - background-color: #faf2cc; -} -.table-hover tbody tr.info:hover > td { - background-color: #c4e3f3; -} -.form-search input, -.form-inline input, -.form-horizontal input, -.form-search textarea, -.form-inline textarea, -.form-horizontal textarea, -.form-search select, -.form-inline select, -.form-horizontal select, -.form-search .help-inline, -.form-inline .help-inline, -.form-horizontal .help-inline, -.form-search .uneditable-input, -.form-inline .uneditable-input, -.form-horizontal .uneditable-input, -.form-search .input-prepend, -.form-inline .input-prepend, -.form-horizontal .input-prepend, -.form-search .input-append, -.form-inline .input-append, -.form-horizontal .input-append { - display: inline-block; - *display: inline; - /* IE7 inline-block hack */ - - *zoom: 1; - margin-bottom: 0; - vertical-align: middle; -} -.form-search .hide, -.form-inline .hide, -.form-horizontal .hide { - display: none; -} -.form-search label, -.form-inline label, -.form-search .btn-group, -.form-inline .btn-group { - display: inline-block; -} -.form-search .input-append, -.form-inline .input-append, -.form-search .input-prepend, -.form-inline .input-prepend { - margin-bottom: 0; -} -.form-search .radio, -.form-search .checkbox, -.form-inline .radio, -.form-inline .checkbox { - padding-left: 0; - margin-bottom: 0; - vertical-align: middle; -} -.form-search .radio input[type="radio"], -.form-search .checkbox input[type="checkbox"], -.form-inline .radio input[type="radio"], -.form-inline .checkbox input[type="checkbox"] { - float: left; - margin-right: 3px; - margin-left: 0; -} -.btn { - display: inline-block; - *display: inline; - /* IE7 inline-block hack */ - - *zoom: 1; - padding: 4px 12px; - margin-bottom: 0; - font-size: 14px; - line-height: 20px; - text-align: center; - vertical-align: middle; - cursor: pointer; - color: #333333; - text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); - background-color: #f5f5f5; - background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6)); - background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6); - background-image: -o-linear-gradient(top, #ffffff, #e6e6e6); - background-image: linear-gradient(to bottom, #ffffff, #e6e6e6); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0); - border-color: #e6e6e6 #e6e6e6 #bfbfbf; - border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); - *background-color: #e6e6e6; - /* Darken IE7 buttons by default so they stand out more given they won't have borders */ - - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); - border: 1px solid #cccccc; - *border: 0; - border-bottom-color: #b3b3b3; - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; - *margin-left: .3em; - -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05); - -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05); - box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05); -} -.btn:hover, -.btn:focus, -.btn:active, -.btn.active, -.btn.disabled, -.btn[disabled] { - color: #333333; - background-color: #e6e6e6; - *background-color: #d9d9d9; -} -.btn:active, -.btn.active { - background-color: #cccccc \9; -} -.btn:first-child { - *margin-left: 0; -} -.btn:hover, -.btn:focus { - color: #333333; - text-decoration: none; - background-position: 0 -15px; - -webkit-transition: background-position 0.1s linear; - -moz-transition: background-position 0.1s linear; - -o-transition: background-position 0.1s linear; - transition: background-position 0.1s linear; -} -.btn:focus { - outline: thin dotted #333; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -.btn.active, -.btn:active { - background-image: none; - outline: 0; - -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05); - -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05); - box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05); -} -.btn.disabled, -.btn[disabled] { - cursor: default; - background-image: none; - opacity: 0.65; - filter: alpha(opacity=65); - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; -} - -button.btn, -input[type="submit"].btn { - *padding-top: 3px; - *padding-bottom: 3px; -} - -.btn-primary.active, -.btn-warning.active, -.btn-danger.active, -.btn-success.active, -.btn-info.active, -.btn-inverse.active { - color: rgba(255, 255, 255, 0.75); -} -.btn-primary { - color: #ffffff; - text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); - background-color: #002188; - background-image: -moz-linear-gradient(top, #003388, #000688); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#003388), to(#000688)); - background-image: -webkit-linear-gradient(top, #003388, #000688); - background-image: -o-linear-gradient(top, #003388, #000688); - background-image: linear-gradient(to bottom, #003388, #000688); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff003388', endColorstr='#ff000688', GradientType=0); - border-color: #000688 #000688 #00023c; - border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); - *background-color: #000688; - /* Darken IE7 buttons by default so they stand out more given they won't have borders */ - - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); -} -.btn-primary:hover, -.btn-primary:focus, -.btn-primary:active, -.btn-primary.active, -.btn-primary.disabled, -.btn-primary[disabled] { - color: #ffffff; - background-color: #000688; - *background-color: #00056f; -} -.btn-primary:active, -.btn-primary.active { - background-color: #000455 \9; -} -@media (max-width: 767px) { - .container-fluid { - padding: 0; - } -} diff --git a/lib/WeBWorK/htdocs/css/dgage.css b/lib/WeBWorK/htdocs/css/dgage.css deleted file mode 100644 index 4aec054bb..000000000 --- a/lib/WeBWorK/htdocs/css/dgage.css +++ /dev/null @@ -1,277 +0,0 @@ -/* WeBWorK Online Homework Delivery System - * Copyright © 2000-2007 The WeBWorK Project, http://openwebwork.sf.net/ - * $CVSHeader: webwork2/htdocs/css/math.css,v 1.12 2008/03/04 15:43:44 sh002i Exp $ - * - * This program is free software; you can redistribute it and/or modify it under - * the terms of either: (a) the GNU General Public License as published by the - * Free Software Foundation; either version 2, or (at your option) any later - * version, or (b) the "Artistic License" which comes with this package. - * - * 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 either the GNU General Public License or the - * Artistic License for more details. - */ - -/* --- Standard elements ---------------------------------------------------- */ - -body, html{ - -} - -body { - background: #EFEFEF; - color: black; - margin: 0 0 0 0; /* MSIE ignores bottom margin; Gecko doesn't */ - padding: 0; - padding-top:33px; - font-family: Times, serif; - min-width: 25em; - width:100% -} - -h1, h2, h3, h4, h5, h6 { - font-family: "Trebuchet MS", "Arial", "Helvetica", sans-serif; - /* FIXME "You have no background-color with your color" */ - color: #225; - background: transparent; -} -h1 { font-size: 170%; } -h2 { font-size: 140%; padding-bottom: 0; margin-bottom: .5ex } -h3 { font-size: 120%; } -h4 { font-size: 110%; } -h5 { font-size: 105%; } -h6 { font-size: 105%; } - -a:link { color: #00e; background-color: inherit; } -a:visited { color: #808; background-color: inherit; } - -/* --- Miscellaneous classes ---------------------------------------------- */ - -/* show only to CSS-ignorant browsers */ -.for-broken-browsers { display: none } - -/* for hiding floats from Netscape 4.x */ -.float-left { float: left; } -.float-right { float: right; } - -/* CSS Generated by Primer - primercss.com */ - -div#masthead { - width:100%; -} - -div#loginstatus { - float:right; -} - -div#logo { - float:left; -} - -div#site-navigation { - /*position:fixed; - top:-87px; - left:0px; - background:#EFEFEF; - box-shadow: 1px 1px 4px #000000; - width:100%; - height:110px; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; - overflow:hidden;*/ -} - -div#navigation-link{ - height:10px; - width:100%; - text-align:center; -} -div#site-navigation:hover{ - top:0px; - width:100%; - height:140px; -} - -div#site-navigation ul, div#site-nagivation li, div#site-navigation ul li ul li, div#site-navigation ul li ul li ul li{ - list-style:none; - display:inline; - padding:0px; - margin:0px; -} - -div#site-navigation a{ - text-decoration:none; - padding-left:10px; -} - -div#site-navigation a:hover{ - text-decoration:underline; -} - -div#site-navigation a:active{ - -} - -/* -div.info-box { - width:100%; - height:3ex; - border-bottom:solid 1px; - margin-bottom:10px; -} - -div.info-box ul li ul{ - height:0; - overflow:hidden; - list-style:none; - margin:0; - padding:4px; -} - -div.info-box ul{ - position:relative; - list-style:none; -} - -div.info-box ul li:hover{ - cursor:pointer; - width:auto; - z-index:100; -} - -div.info-box ul li:hover>ul{ - z-index:100; - background:rgba(125, 125, 125, 0.9); - height:10ex; - overflow:visible; - width:auto; -} - -div.info-box ul li ul li:hover>ul{ - z-index:100; - left:3em; - background:rgba(125, 125, 125, 0.9); - height:auto; - overflow:visible; -} -*/ - -a#Courses { - -} - -a#Homework_Sets { - -} - -a#Password_Email { - -} - -a#Grades { - -} - -a#Instructor_Tools { - -} - -a#Classlist_Editor { - -} - -a#Hmwk_Sets_Editor { - -} - -a#Library_Browser { - -} - -a#Library_Browser_2 { - -} - -a#Statistics { - -} - -a#Student_Progress { - -} - -a#Scoring_Tools { - -} - -a#Email { - -} - -a#File_Manager { - -} - -a#Course_Configuration { - -} - -a.active { - -} - -hr.for-broken-browsers { - -} - - - - - -div#big-wrapper { - float:left; - background:white; - padding-left:10px; - padding-right:10px; - width:99%; - min-width:600px; - min-height:100%; - -} - -div#breadcrumbs { - -} - -div#content { - -} - -span.Message { - -} - -div.Body { - -} - -div.Message { - -} - -div#footer { - -} - -p#last-modified { - -} - -div#copyright { - -} - diff --git a/lib/WeBWorK/htdocs/css/images/ui-icons_444444_256x240.png b/lib/WeBWorK/htdocs/css/images/ui-icons_444444_256x240.png deleted file mode 100644 index c2daae166..000000000 Binary files a/lib/WeBWorK/htdocs/css/images/ui-icons_444444_256x240.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/css/images/ui-icons_555555_256x240.png b/lib/WeBWorK/htdocs/css/images/ui-icons_555555_256x240.png deleted file mode 100644 index 47849283f..000000000 Binary files a/lib/WeBWorK/htdocs/css/images/ui-icons_555555_256x240.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/css/images/ui-icons_777620_256x240.png b/lib/WeBWorK/htdocs/css/images/ui-icons_777620_256x240.png deleted file mode 100644 index d2f58d255..000000000 Binary files a/lib/WeBWorK/htdocs/css/images/ui-icons_777620_256x240.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/css/images/ui-icons_777777_256x240.png b/lib/WeBWorK/htdocs/css/images/ui-icons_777777_256x240.png deleted file mode 100644 index 1d532588b..000000000 Binary files a/lib/WeBWorK/htdocs/css/images/ui-icons_777777_256x240.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/css/images/ui-icons_cc0000_256x240.png b/lib/WeBWorK/htdocs/css/images/ui-icons_cc0000_256x240.png deleted file mode 100644 index 2825f2004..000000000 Binary files a/lib/WeBWorK/htdocs/css/images/ui-icons_cc0000_256x240.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/css/images/ui-icons_ffffff_256x240.png b/lib/WeBWorK/htdocs/css/images/ui-icons_ffffff_256x240.png deleted file mode 100644 index 136a4f97b..000000000 Binary files a/lib/WeBWorK/htdocs/css/images/ui-icons_ffffff_256x240.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/css/jquery-ui.css b/lib/WeBWorK/htdocs/css/jquery-ui.css deleted file mode 100644 index a22ecb05c..000000000 --- a/lib/WeBWorK/htdocs/css/jquery-ui.css +++ /dev/null @@ -1,1311 +0,0 @@ -/*! jQuery UI - v1.12.1 - 2016-09-14 -* http://jqueryui.com -* Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css -* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&fwDefault=normal&cornerRadius=3px&bgColorHeader=e9e9e9&bgTextureHeader=flat&borderColorHeader=dddddd&fcHeader=333333&iconColorHeader=444444&bgColorContent=ffffff&bgTextureContent=flat&borderColorContent=dddddd&fcContent=333333&iconColorContent=444444&bgColorDefault=f6f6f6&bgTextureDefault=flat&borderColorDefault=c5c5c5&fcDefault=454545&iconColorDefault=777777&bgColorHover=ededed&bgTextureHover=flat&borderColorHover=cccccc&fcHover=2b2b2b&iconColorHover=555555&bgColorActive=007fff&bgTextureActive=flat&borderColorActive=003eff&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=fffa90&bgTextureHighlight=flat&borderColorHighlight=dad55e&fcHighlight=777620&iconColorHighlight=777620&bgColorError=fddfdf&bgTextureError=flat&borderColorError=f1a899&fcError=5f3f3f&iconColorError=cc0000&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=666666&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=5px&offsetTopShadow=0px&offsetLeftShadow=0px&cornerRadiusShadow=8px -* Copyright jQuery Foundation and other contributors; Licensed MIT */ - -/* Layout helpers -----------------------------------*/ -.ui-helper-hidden { - display: none; -} -.ui-helper-hidden-accessible { - border: 0; - clip: rect(0 0 0 0); - height: 1px; - margin: -1px; - overflow: hidden; - padding: 0; - position: absolute; - width: 1px; -} -.ui-helper-reset { - margin: 0; - padding: 0; - border: 0; - outline: 0; - line-height: 1.3; - text-decoration: none; - font-size: 100%; - list-style: none; -} -.ui-helper-clearfix:before, -.ui-helper-clearfix:after { - content: ""; - display: table; - border-collapse: collapse; -} -.ui-helper-clearfix:after { - clear: both; -} -.ui-helper-zfix { - width: 100%; - height: 100%; - top: 0; - left: 0; - position: absolute; - opacity: 0; - filter:Alpha(Opacity=0); /* support: IE8 */ -} - -.ui-front { - z-index: 100; -} - - -/* Interaction Cues -----------------------------------*/ -.ui-state-disabled { - cursor: default !important; - pointer-events: none; -} - - -/* Icons -----------------------------------*/ -.ui-icon { - display: inline-block; - vertical-align: middle; - margin-top: -.25em; - position: relative; - text-indent: -99999px; - overflow: hidden; - background-repeat: no-repeat; -} - -.ui-widget-icon-block { - left: 50%; - margin-left: -8px; - display: block; -} - -/* Misc visuals -----------------------------------*/ - -/* Overlays */ -.ui-widget-overlay { - position: fixed; - top: 0; - left: 0; - width: 100%; - height: 100%; -} -.ui-accordion .ui-accordion-header { - display: block; - cursor: pointer; - position: relative; - margin: 2px 0 0 0; - padding: .5em .5em .5em .7em; - font-size: 100%; -} -.ui-accordion .ui-accordion-content { - padding: 1em 2.2em; - border-top: 0; - overflow: auto; -} -.ui-autocomplete { - position: absolute; - top: 0; - left: 0; - cursor: default; -} -.ui-menu { - list-style: none; - padding: 0; - margin: 0; - display: block; - outline: 0; -} -.ui-menu .ui-menu { - position: absolute; -} -.ui-menu .ui-menu-item { - margin: 0; - cursor: pointer; - /* support: IE10, see #8844 */ - list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"); -} -.ui-menu .ui-menu-item-wrapper { - position: relative; - padding: 3px 1em 3px .4em; -} -.ui-menu .ui-menu-divider { - margin: 5px 0; - height: 0; - font-size: 0; - line-height: 0; - border-width: 1px 0 0 0; -} -.ui-menu .ui-state-focus, -.ui-menu .ui-state-active { - margin: -1px; -} - -/* icon support */ -.ui-menu-icons { - position: relative; -} -.ui-menu-icons .ui-menu-item-wrapper { - padding-left: 2em; -} - -/* left-aligned */ -.ui-menu .ui-icon { - position: absolute; - top: 0; - bottom: 0; - left: .2em; - margin: auto 0; -} - -/* right-aligned */ -.ui-menu .ui-menu-icon { - left: auto; - right: 0; -} -.ui-button { - padding: .4em 1em; - display: inline-block; - position: relative; - line-height: normal; - margin-right: .1em; - cursor: pointer; - vertical-align: middle; - text-align: center; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - - /* Support: IE <= 11 */ - overflow: visible; -} - -.ui-button, -.ui-button:link, -.ui-button:visited, -.ui-button:hover, -.ui-button:active { - text-decoration: none; -} - -/* to make room for the icon, a width needs to be set here */ -.ui-button-icon-only { - width: 2em; - box-sizing: border-box; - text-indent: -9999px; - white-space: nowrap; -} - -/* no icon support for input elements */ -input.ui-button.ui-button-icon-only { - text-indent: 0; -} - -/* button icon element(s) */ -.ui-button-icon-only .ui-icon { - position: absolute; - top: 50%; - left: 50%; - margin-top: -8px; - margin-left: -8px; -} - -.ui-button.ui-icon-notext .ui-icon { - padding: 0; - width: 2.1em; - height: 2.1em; - text-indent: -9999px; - white-space: nowrap; - -} - -input.ui-button.ui-icon-notext .ui-icon { - width: auto; - height: auto; - text-indent: 0; - white-space: normal; - padding: .4em 1em; -} - -/* workarounds */ -/* Support: Firefox 5 - 40 */ -input.ui-button::-moz-focus-inner, -button.ui-button::-moz-focus-inner { - border: 0; - padding: 0; -} -.ui-controlgroup { - vertical-align: middle; - display: inline-block; -} -.ui-controlgroup > .ui-controlgroup-item { - float: left; - margin-left: 0; - margin-right: 0; -} -.ui-controlgroup > .ui-controlgroup-item:focus, -.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus { - z-index: 9999; -} -.ui-controlgroup-vertical > .ui-controlgroup-item { - display: block; - float: none; - width: 100%; - margin-top: 0; - margin-bottom: 0; - text-align: left; -} -.ui-controlgroup-vertical .ui-controlgroup-item { - box-sizing: border-box; -} -.ui-controlgroup .ui-controlgroup-label { - padding: .4em 1em; -} -.ui-controlgroup .ui-controlgroup-label span { - font-size: 80%; -} -.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item { - border-left: none; -} -.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item { - border-top: none; -} -.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content { - border-right: none; -} -.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content { - border-bottom: none; -} - -/* Spinner specific style fixes */ -.ui-controlgroup-vertical .ui-spinner-input { - - /* Support: IE8 only, Android < 4.4 only */ - width: 75%; - width: calc( 100% - 2.4em ); -} -.ui-controlgroup-vertical .ui-spinner .ui-spinner-up { - border-top-style: solid; -} - -.ui-checkboxradio-label .ui-icon-background { - box-shadow: inset 1px 1px 1px #ccc; - border-radius: .12em; - border: none; -} -.ui-checkboxradio-radio-label .ui-icon-background { - width: 16px; - height: 16px; - border-radius: 1em; - overflow: visible; - border: none; -} -.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon, -.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon { - background-image: none; - width: 8px; - height: 8px; - border-width: 4px; - border-style: solid; -} -.ui-checkboxradio-disabled { - pointer-events: none; -} -.ui-datepicker { - width: 17em; - padding: .2em .2em 0; - display: none; -} -.ui-datepicker .ui-datepicker-header { - position: relative; - padding: .2em 0; -} -.ui-datepicker .ui-datepicker-prev, -.ui-datepicker .ui-datepicker-next { - position: absolute; - top: 2px; - width: 1.8em; - height: 1.8em; -} -.ui-datepicker .ui-datepicker-prev-hover, -.ui-datepicker .ui-datepicker-next-hover { - top: 1px; -} -.ui-datepicker .ui-datepicker-prev { - left: 2px; -} -.ui-datepicker .ui-datepicker-next { - right: 2px; -} -.ui-datepicker .ui-datepicker-prev-hover { - left: 1px; -} -.ui-datepicker .ui-datepicker-next-hover { - right: 1px; -} -.ui-datepicker .ui-datepicker-prev span, -.ui-datepicker .ui-datepicker-next span { - display: block; - position: absolute; - left: 50%; - margin-left: -8px; - top: 50%; - margin-top: -8px; -} -.ui-datepicker .ui-datepicker-title { - margin: 0 2.3em; - line-height: 1.8em; - text-align: center; -} -.ui-datepicker .ui-datepicker-title select { - font-size: 1em; - margin: 1px 0; -} -.ui-datepicker select.ui-datepicker-month, -.ui-datepicker select.ui-datepicker-year { - width: 45%; -} -.ui-datepicker table { - width: 100%; - font-size: .9em; - border-collapse: collapse; - margin: 0 0 .4em; -} -.ui-datepicker th { - padding: .7em .3em; - text-align: center; - font-weight: bold; - border: 0; -} -.ui-datepicker td { - border: 0; - padding: 1px; -} -.ui-datepicker td span, -.ui-datepicker td a { - display: block; - padding: .2em; - text-align: right; - text-decoration: none; -} -.ui-datepicker .ui-datepicker-buttonpane { - background-image: none; - margin: .7em 0 0 0; - padding: 0 .2em; - border-left: 0; - border-right: 0; - border-bottom: 0; -} -.ui-datepicker .ui-datepicker-buttonpane button { - float: right; - margin: .5em .2em .4em; - cursor: pointer; - padding: .2em .6em .3em .6em; - width: auto; - overflow: visible; -} -.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { - float: left; -} - -/* with multiple calendars */ -.ui-datepicker.ui-datepicker-multi { - width: auto; -} -.ui-datepicker-multi .ui-datepicker-group { - float: left; -} -.ui-datepicker-multi .ui-datepicker-group table { - width: 95%; - margin: 0 auto .4em; -} -.ui-datepicker-multi-2 .ui-datepicker-group { - width: 50%; -} -.ui-datepicker-multi-3 .ui-datepicker-group { - width: 33.3%; -} -.ui-datepicker-multi-4 .ui-datepicker-group { - width: 25%; -} -.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header, -.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { - border-left-width: 0; -} -.ui-datepicker-multi .ui-datepicker-buttonpane { - clear: left; -} -.ui-datepicker-row-break { - clear: both; - width: 100%; - font-size: 0; -} - -/* RTL support */ -.ui-datepicker-rtl { - direction: rtl; -} -.ui-datepicker-rtl .ui-datepicker-prev { - right: 2px; - left: auto; -} -.ui-datepicker-rtl .ui-datepicker-next { - left: 2px; - right: auto; -} -.ui-datepicker-rtl .ui-datepicker-prev:hover { - right: 1px; - left: auto; -} -.ui-datepicker-rtl .ui-datepicker-next:hover { - left: 1px; - right: auto; -} -.ui-datepicker-rtl .ui-datepicker-buttonpane { - clear: right; -} -.ui-datepicker-rtl .ui-datepicker-buttonpane button { - float: left; -} -.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current, -.ui-datepicker-rtl .ui-datepicker-group { - float: right; -} -.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header, -.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { - border-right-width: 0; - border-left-width: 1px; -} - -/* Icons */ -.ui-datepicker .ui-icon { - display: block; - text-indent: -99999px; - overflow: hidden; - background-repeat: no-repeat; - left: .5em; - top: .3em; -} -.ui-dialog { - position: absolute; - top: 0; - left: 0; - padding: .2em; - outline: 0; -} -.ui-dialog .ui-dialog-titlebar { - padding: .4em 1em; - position: relative; -} -.ui-dialog .ui-dialog-title { - float: left; - margin: .1em 0; - white-space: nowrap; - width: 90%; - overflow: hidden; - text-overflow: ellipsis; -} -.ui-dialog .ui-dialog-titlebar-close { - position: absolute; - right: .3em; - top: 50%; - width: 20px; - margin: -10px 0 0 0; - padding: 1px; - height: 20px; -} -.ui-dialog .ui-dialog-content { - position: relative; - border: 0; - padding: .5em 1em; - background: none; - overflow: auto; -} -.ui-dialog .ui-dialog-buttonpane { - text-align: left; - border-width: 1px 0 0 0; - background-image: none; - margin-top: .5em; - padding: .3em 1em .5em .4em; -} -.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { - float: right; -} -.ui-dialog .ui-dialog-buttonpane button { - margin: .5em .4em .5em 0; - cursor: pointer; -} -.ui-dialog .ui-resizable-n { - height: 2px; - top: 0; -} -.ui-dialog .ui-resizable-e { - width: 2px; - right: 0; -} -.ui-dialog .ui-resizable-s { - height: 2px; - bottom: 0; -} -.ui-dialog .ui-resizable-w { - width: 2px; - left: 0; -} -.ui-dialog .ui-resizable-se, -.ui-dialog .ui-resizable-sw, -.ui-dialog .ui-resizable-ne, -.ui-dialog .ui-resizable-nw { - width: 7px; - height: 7px; -} -.ui-dialog .ui-resizable-se { - right: 0; - bottom: 0; -} -.ui-dialog .ui-resizable-sw { - left: 0; - bottom: 0; -} -.ui-dialog .ui-resizable-ne { - right: 0; - top: 0; -} -.ui-dialog .ui-resizable-nw { - left: 0; - top: 0; -} -.ui-draggable .ui-dialog-titlebar { - cursor: move; -} -.ui-draggable-handle { - -ms-touch-action: none; - touch-action: none; -} -.ui-resizable { - position: relative; -} -.ui-resizable-handle { - position: absolute; - font-size: 0.1px; - display: block; - -ms-touch-action: none; - touch-action: none; -} -.ui-resizable-disabled .ui-resizable-handle, -.ui-resizable-autohide .ui-resizable-handle { - display: none; -} -.ui-resizable-n { - cursor: n-resize; - height: 7px; - width: 100%; - top: -5px; - left: 0; -} -.ui-resizable-s { - cursor: s-resize; - height: 7px; - width: 100%; - bottom: -5px; - left: 0; -} -.ui-resizable-e { - cursor: e-resize; - width: 7px; - right: -5px; - top: 0; - height: 100%; -} -.ui-resizable-w { - cursor: w-resize; - width: 7px; - left: -5px; - top: 0; - height: 100%; -} -.ui-resizable-se { - cursor: se-resize; - width: 12px; - height: 12px; - right: 1px; - bottom: 1px; -} -.ui-resizable-sw { - cursor: sw-resize; - width: 9px; - height: 9px; - left: -5px; - bottom: -5px; -} -.ui-resizable-nw { - cursor: nw-resize; - width: 9px; - height: 9px; - left: -5px; - top: -5px; -} -.ui-resizable-ne { - cursor: ne-resize; - width: 9px; - height: 9px; - right: -5px; - top: -5px; -} -.ui-progressbar { - height: 2em; - text-align: left; - overflow: hidden; -} -.ui-progressbar .ui-progressbar-value { - margin: -1px; - height: 100%; -} -.ui-progressbar .ui-progressbar-overlay { - background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw=="); - height: 100%; - filter: alpha(opacity=25); /* support: IE8 */ - opacity: 0.25; -} -.ui-progressbar-indeterminate .ui-progressbar-value { - background-image: none; -} -.ui-selectable { - -ms-touch-action: none; - touch-action: none; -} -.ui-selectable-helper { - position: absolute; - z-index: 100; - border: 1px dotted black; -} -.ui-selectmenu-menu { - padding: 0; - margin: 0; - position: absolute; - top: 0; - left: 0; - display: none; -} -.ui-selectmenu-menu .ui-menu { - overflow: auto; - overflow-x: hidden; - padding-bottom: 1px; -} -.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup { - font-size: 1em; - font-weight: bold; - line-height: 1.5; - padding: 2px 0.4em; - margin: 0.5em 0 0 0; - height: auto; - border: 0; -} -.ui-selectmenu-open { - display: block; -} -.ui-selectmenu-text { - display: block; - margin-right: 20px; - overflow: hidden; - text-overflow: ellipsis; -} -.ui-selectmenu-button.ui-button { - text-align: left; - white-space: nowrap; - width: 14em; -} -.ui-selectmenu-icon.ui-icon { - float: right; - margin-top: 0; -} -.ui-slider { - position: relative; - text-align: left; -} -.ui-slider .ui-slider-handle { - position: absolute; - z-index: 2; - width: 1.2em; - height: 1.2em; - cursor: default; - -ms-touch-action: none; - touch-action: none; -} -.ui-slider .ui-slider-range { - position: absolute; - z-index: 1; - font-size: .7em; - display: block; - border: 0; - background-position: 0 0; -} - -/* support: IE8 - See #6727 */ -.ui-slider.ui-state-disabled .ui-slider-handle, -.ui-slider.ui-state-disabled .ui-slider-range { - filter: inherit; -} - -.ui-slider-horizontal { - height: .8em; -} -.ui-slider-horizontal .ui-slider-handle { - top: -.3em; - margin-left: -.6em; -} -.ui-slider-horizontal .ui-slider-range { - top: 0; - height: 100%; -} -.ui-slider-horizontal .ui-slider-range-min { - left: 0; -} -.ui-slider-horizontal .ui-slider-range-max { - right: 0; -} - -.ui-slider-vertical { - width: .8em; - height: 100px; -} -.ui-slider-vertical .ui-slider-handle { - left: -.3em; - margin-left: 0; - margin-bottom: -.6em; -} -.ui-slider-vertical .ui-slider-range { - left: 0; - width: 100%; -} -.ui-slider-vertical .ui-slider-range-min { - bottom: 0; -} -.ui-slider-vertical .ui-slider-range-max { - top: 0; -} -.ui-sortable-handle { - -ms-touch-action: none; - touch-action: none; -} -.ui-spinner { - position: relative; - display: inline-block; - overflow: hidden; - padding: 0; - vertical-align: middle; -} -.ui-spinner-input { - border: none; - background: none; - color: inherit; - padding: .222em 0; - margin: .2em 0; - vertical-align: middle; - margin-left: .4em; - margin-right: 2em; -} -.ui-spinner-button { - width: 1.6em; - height: 50%; - font-size: .5em; - padding: 0; - margin: 0; - text-align: center; - position: absolute; - cursor: default; - display: block; - overflow: hidden; - right: 0; -} -/* more specificity required here to override default borders */ -.ui-spinner a.ui-spinner-button { - border-top-style: none; - border-bottom-style: none; - border-right-style: none; -} -.ui-spinner-up { - top: 0; -} -.ui-spinner-down { - bottom: 0; -} -.ui-tabs { - position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */ - padding: .2em; -} -.ui-tabs .ui-tabs-nav { - margin: 0; - padding: .2em .2em 0; -} -.ui-tabs .ui-tabs-nav li { - list-style: none; - float: left; - position: relative; - top: 0; - margin: 1px .2em 0 0; - border-bottom-width: 0; - padding: 0; - white-space: nowrap; -} -.ui-tabs .ui-tabs-nav .ui-tabs-anchor { - float: left; - padding: .5em 1em; - text-decoration: none; -} -.ui-tabs .ui-tabs-nav li.ui-tabs-active { - margin-bottom: -1px; - padding-bottom: 1px; -} -.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor, -.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor, -.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor { - cursor: text; -} -.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor { - cursor: pointer; -} -.ui-tabs .ui-tabs-panel { - display: block; - border-width: 0; - padding: 1em 1.4em; - background: none; -} -.ui-tooltip { - padding: 8px; - position: absolute; - z-index: 9999; - max-width: 300px; -} -body .ui-tooltip { - border-width: 2px; -} -/* Component containers -----------------------------------*/ -.ui-widget { - font-family: Arial,Helvetica,sans-serif; - font-size: 1em; -} -.ui-widget .ui-widget { - font-size: 1em; -} -.ui-widget input, -.ui-widget select, -.ui-widget textarea, -.ui-widget button { - font-family: Arial,Helvetica,sans-serif; - font-size: 1em; -} -.ui-widget.ui-widget-content { - border: 1px solid #c5c5c5; -} -.ui-widget-content { - border: 1px solid #dddddd; - background: #ffffff; - color: #333333; -} -.ui-widget-content a { - color: #333333; -} -.ui-widget-header { - border: 1px solid #dddddd; - background: #e9e9e9; - color: #333333; - font-weight: bold; -} -.ui-widget-header a { - color: #333333; -} - -/* Interaction states -----------------------------------*/ -.ui-state-default, -.ui-widget-content .ui-state-default, -.ui-widget-header .ui-state-default, -.ui-button, - -/* We use html here because we need a greater specificity to make sure disabled -works properly when clicked or hovered */ -html .ui-button.ui-state-disabled:hover, -html .ui-button.ui-state-disabled:active { - border: 1px solid #c5c5c5; - background: #f6f6f6; - font-weight: normal; - color: #454545; -} -.ui-state-default a, -.ui-state-default a:link, -.ui-state-default a:visited, -a.ui-button, -a:link.ui-button, -a:visited.ui-button, -.ui-button { - color: #454545; - text-decoration: none; -} -.ui-state-hover, -.ui-widget-content .ui-state-hover, -.ui-widget-header .ui-state-hover, -.ui-state-focus, -.ui-widget-content .ui-state-focus, -.ui-widget-header .ui-state-focus, -.ui-button:hover, -.ui-button:focus { - border: 1px solid #cccccc; - background: #ededed; - font-weight: normal; - color: #2b2b2b; -} -.ui-state-hover a, -.ui-state-hover a:hover, -.ui-state-hover a:link, -.ui-state-hover a:visited, -.ui-state-focus a, -.ui-state-focus a:hover, -.ui-state-focus a:link, -.ui-state-focus a:visited, -a.ui-button:hover, -a.ui-button:focus { - color: #2b2b2b; - text-decoration: none; -} - -.ui-visual-focus { - box-shadow: 0 0 3px 1px rgb(94, 158, 214); -} -.ui-state-active, -.ui-widget-content .ui-state-active, -.ui-widget-header .ui-state-active, -a.ui-button:active, -.ui-button:active, -.ui-button.ui-state-active:hover { - border: 1px solid #003eff; - background: #007fff; - font-weight: normal; - color: #ffffff; -} -.ui-icon-background, -.ui-state-active .ui-icon-background { - border: #003eff; - background-color: #ffffff; -} -.ui-state-active a, -.ui-state-active a:link, -.ui-state-active a:visited { - color: #ffffff; - text-decoration: none; -} - -/* Interaction Cues -----------------------------------*/ -.ui-state-highlight, -.ui-widget-content .ui-state-highlight, -.ui-widget-header .ui-state-highlight { - border: 1px solid #dad55e; - background: #fffa90; - color: #777620; -} -.ui-state-checked { - border: 1px solid #dad55e; - background: #fffa90; -} -.ui-state-highlight a, -.ui-widget-content .ui-state-highlight a, -.ui-widget-header .ui-state-highlight a { - color: #777620; -} -.ui-state-error, -.ui-widget-content .ui-state-error, -.ui-widget-header .ui-state-error { - border: 1px solid #f1a899; - background: #fddfdf; - color: #5f3f3f; -} -.ui-state-error a, -.ui-widget-content .ui-state-error a, -.ui-widget-header .ui-state-error a { - color: #5f3f3f; -} -.ui-state-error-text, -.ui-widget-content .ui-state-error-text, -.ui-widget-header .ui-state-error-text { - color: #5f3f3f; -} -.ui-priority-primary, -.ui-widget-content .ui-priority-primary, -.ui-widget-header .ui-priority-primary { - font-weight: bold; -} -.ui-priority-secondary, -.ui-widget-content .ui-priority-secondary, -.ui-widget-header .ui-priority-secondary { - opacity: .7; - filter:Alpha(Opacity=70); /* support: IE8 */ - font-weight: normal; -} -.ui-state-disabled, -.ui-widget-content .ui-state-disabled, -.ui-widget-header .ui-state-disabled { - opacity: .35; - filter:Alpha(Opacity=35); /* support: IE8 */ - background-image: none; -} -.ui-state-disabled .ui-icon { - filter:Alpha(Opacity=35); /* support: IE8 - See #6059 */ -} - -/* Icons -----------------------------------*/ - -/* states and images */ -.ui-icon { - width: 16px; - height: 16px; -} -.ui-icon, -.ui-widget-content .ui-icon { - background-image: url("images/ui-icons_444444_256x240.png"); -} -.ui-widget-header .ui-icon { - background-image: url("images/ui-icons_444444_256x240.png"); -} -.ui-state-hover .ui-icon, -.ui-state-focus .ui-icon, -.ui-button:hover .ui-icon, -.ui-button:focus .ui-icon { - background-image: url("images/ui-icons_555555_256x240.png"); -} -.ui-state-active .ui-icon, -.ui-button:active .ui-icon { - background-image: url("images/ui-icons_ffffff_256x240.png"); -} -.ui-state-highlight .ui-icon, -.ui-button .ui-state-highlight.ui-icon { - background-image: url("images/ui-icons_777620_256x240.png"); -} -.ui-state-error .ui-icon, -.ui-state-error-text .ui-icon { - background-image: url("images/ui-icons_cc0000_256x240.png"); -} -.ui-button .ui-icon { - background-image: url("images/ui-icons_777777_256x240.png"); -} - -/* positioning */ -.ui-icon-blank { background-position: 16px 16px; } -.ui-icon-caret-1-n { background-position: 0 0; } -.ui-icon-caret-1-ne { background-position: -16px 0; } -.ui-icon-caret-1-e { background-position: -32px 0; } -.ui-icon-caret-1-se { background-position: -48px 0; } -.ui-icon-caret-1-s { background-position: -65px 0; } -.ui-icon-caret-1-sw { background-position: -80px 0; } -.ui-icon-caret-1-w { background-position: -96px 0; } -.ui-icon-caret-1-nw { background-position: -112px 0; } -.ui-icon-caret-2-n-s { background-position: -128px 0; } -.ui-icon-caret-2-e-w { background-position: -144px 0; } -.ui-icon-triangle-1-n { background-position: 0 -16px; } -.ui-icon-triangle-1-ne { background-position: -16px -16px; } -.ui-icon-triangle-1-e { background-position: -32px -16px; } -.ui-icon-triangle-1-se { background-position: -48px -16px; } -.ui-icon-triangle-1-s { background-position: -65px -16px; } -.ui-icon-triangle-1-sw { background-position: -80px -16px; } -.ui-icon-triangle-1-w { background-position: -96px -16px; } -.ui-icon-triangle-1-nw { background-position: -112px -16px; } -.ui-icon-triangle-2-n-s { background-position: -128px -16px; } -.ui-icon-triangle-2-e-w { background-position: -144px -16px; } -.ui-icon-arrow-1-n { background-position: 0 -32px; } -.ui-icon-arrow-1-ne { background-position: -16px -32px; } -.ui-icon-arrow-1-e { background-position: -32px -32px; } -.ui-icon-arrow-1-se { background-position: -48px -32px; } -.ui-icon-arrow-1-s { background-position: -65px -32px; } -.ui-icon-arrow-1-sw { background-position: -80px -32px; } -.ui-icon-arrow-1-w { background-position: -96px -32px; } -.ui-icon-arrow-1-nw { background-position: -112px -32px; } -.ui-icon-arrow-2-n-s { background-position: -128px -32px; } -.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; } -.ui-icon-arrow-2-e-w { background-position: -160px -32px; } -.ui-icon-arrow-2-se-nw { background-position: -176px -32px; } -.ui-icon-arrowstop-1-n { background-position: -192px -32px; } -.ui-icon-arrowstop-1-e { background-position: -208px -32px; } -.ui-icon-arrowstop-1-s { background-position: -224px -32px; } -.ui-icon-arrowstop-1-w { background-position: -240px -32px; } -.ui-icon-arrowthick-1-n { background-position: 1px -48px; } -.ui-icon-arrowthick-1-ne { background-position: -16px -48px; } -.ui-icon-arrowthick-1-e { background-position: -32px -48px; } -.ui-icon-arrowthick-1-se { background-position: -48px -48px; } -.ui-icon-arrowthick-1-s { background-position: -64px -48px; } -.ui-icon-arrowthick-1-sw { background-position: -80px -48px; } -.ui-icon-arrowthick-1-w { background-position: -96px -48px; } -.ui-icon-arrowthick-1-nw { background-position: -112px -48px; } -.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; } -.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; } -.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; } -.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; } -.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; } -.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; } -.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; } -.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; } -.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; } -.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; } -.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; } -.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; } -.ui-icon-arrowreturn-1-w { background-position: -64px -64px; } -.ui-icon-arrowreturn-1-n { background-position: -80px -64px; } -.ui-icon-arrowreturn-1-e { background-position: -96px -64px; } -.ui-icon-arrowreturn-1-s { background-position: -112px -64px; } -.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; } -.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; } -.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; } -.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; } -.ui-icon-arrow-4 { background-position: 0 -80px; } -.ui-icon-arrow-4-diag { background-position: -16px -80px; } -.ui-icon-extlink { background-position: -32px -80px; } -.ui-icon-newwin { background-position: -48px -80px; } -.ui-icon-refresh { background-position: -64px -80px; } -.ui-icon-shuffle { background-position: -80px -80px; } -.ui-icon-transfer-e-w { background-position: -96px -80px; } -.ui-icon-transferthick-e-w { background-position: -112px -80px; } -.ui-icon-folder-collapsed { background-position: 0 -96px; } -.ui-icon-folder-open { background-position: -16px -96px; } -.ui-icon-document { background-position: -32px -96px; } -.ui-icon-document-b { background-position: -48px -96px; } -.ui-icon-note { background-position: -64px -96px; } -.ui-icon-mail-closed { background-position: -80px -96px; } -.ui-icon-mail-open { background-position: -96px -96px; } -.ui-icon-suitcase { background-position: -112px -96px; } -.ui-icon-comment { background-position: -128px -96px; } -.ui-icon-person { background-position: -144px -96px; } -.ui-icon-print { background-position: -160px -96px; } -.ui-icon-trash { background-position: -176px -96px; } -.ui-icon-locked { background-position: -192px -96px; } -.ui-icon-unlocked { background-position: -208px -96px; } -.ui-icon-bookmark { background-position: -224px -96px; } -.ui-icon-tag { background-position: -240px -96px; } -.ui-icon-home { background-position: 0 -112px; } -.ui-icon-flag { background-position: -16px -112px; } -.ui-icon-calendar { background-position: -32px -112px; } -.ui-icon-cart { background-position: -48px -112px; } -.ui-icon-pencil { background-position: -64px -112px; } -.ui-icon-clock { background-position: -80px -112px; } -.ui-icon-disk { background-position: -96px -112px; } -.ui-icon-calculator { background-position: -112px -112px; } -.ui-icon-zoomin { background-position: -128px -112px; } -.ui-icon-zoomout { background-position: -144px -112px; } -.ui-icon-search { background-position: -160px -112px; } -.ui-icon-wrench { background-position: -176px -112px; } -.ui-icon-gear { background-position: -192px -112px; } -.ui-icon-heart { background-position: -208px -112px; } -.ui-icon-star { background-position: -224px -112px; } -.ui-icon-link { background-position: -240px -112px; } -.ui-icon-cancel { background-position: 0 -128px; } -.ui-icon-plus { background-position: -16px -128px; } -.ui-icon-plusthick { background-position: -32px -128px; } -.ui-icon-minus { background-position: -48px -128px; } -.ui-icon-minusthick { background-position: -64px -128px; } -.ui-icon-close { background-position: -80px -128px; } -.ui-icon-closethick { background-position: -96px -128px; } -.ui-icon-key { background-position: -112px -128px; } -.ui-icon-lightbulb { background-position: -128px -128px; } -.ui-icon-scissors { background-position: -144px -128px; } -.ui-icon-clipboard { background-position: -160px -128px; } -.ui-icon-copy { background-position: -176px -128px; } -.ui-icon-contact { background-position: -192px -128px; } -.ui-icon-image { background-position: -208px -128px; } -.ui-icon-video { background-position: -224px -128px; } -.ui-icon-script { background-position: -240px -128px; } -.ui-icon-alert { background-position: 0 -144px; } -.ui-icon-info { background-position: -16px -144px; } -.ui-icon-notice { background-position: -32px -144px; } -.ui-icon-help { background-position: -48px -144px; } -.ui-icon-check { background-position: -64px -144px; } -.ui-icon-bullet { background-position: -80px -144px; } -.ui-icon-radio-on { background-position: -96px -144px; } -.ui-icon-radio-off { background-position: -112px -144px; } -.ui-icon-pin-w { background-position: -128px -144px; } -.ui-icon-pin-s { background-position: -144px -144px; } -.ui-icon-play { background-position: 0 -160px; } -.ui-icon-pause { background-position: -16px -160px; } -.ui-icon-seek-next { background-position: -32px -160px; } -.ui-icon-seek-prev { background-position: -48px -160px; } -.ui-icon-seek-end { background-position: -64px -160px; } -.ui-icon-seek-start { background-position: -80px -160px; } -/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */ -.ui-icon-seek-first { background-position: -80px -160px; } -.ui-icon-stop { background-position: -96px -160px; } -.ui-icon-eject { background-position: -112px -160px; } -.ui-icon-volume-off { background-position: -128px -160px; } -.ui-icon-volume-on { background-position: -144px -160px; } -.ui-icon-power { background-position: 0 -176px; } -.ui-icon-signal-diag { background-position: -16px -176px; } -.ui-icon-signal { background-position: -32px -176px; } -.ui-icon-battery-0 { background-position: -48px -176px; } -.ui-icon-battery-1 { background-position: -64px -176px; } -.ui-icon-battery-2 { background-position: -80px -176px; } -.ui-icon-battery-3 { background-position: -96px -176px; } -.ui-icon-circle-plus { background-position: 0 -192px; } -.ui-icon-circle-minus { background-position: -16px -192px; } -.ui-icon-circle-close { background-position: -32px -192px; } -.ui-icon-circle-triangle-e { background-position: -48px -192px; } -.ui-icon-circle-triangle-s { background-position: -64px -192px; } -.ui-icon-circle-triangle-w { background-position: -80px -192px; } -.ui-icon-circle-triangle-n { background-position: -96px -192px; } -.ui-icon-circle-arrow-e { background-position: -112px -192px; } -.ui-icon-circle-arrow-s { background-position: -128px -192px; } -.ui-icon-circle-arrow-w { background-position: -144px -192px; } -.ui-icon-circle-arrow-n { background-position: -160px -192px; } -.ui-icon-circle-zoomin { background-position: -176px -192px; } -.ui-icon-circle-zoomout { background-position: -192px -192px; } -.ui-icon-circle-check { background-position: -208px -192px; } -.ui-icon-circlesmall-plus { background-position: 0 -208px; } -.ui-icon-circlesmall-minus { background-position: -16px -208px; } -.ui-icon-circlesmall-close { background-position: -32px -208px; } -.ui-icon-squaresmall-plus { background-position: -48px -208px; } -.ui-icon-squaresmall-minus { background-position: -64px -208px; } -.ui-icon-squaresmall-close { background-position: -80px -208px; } -.ui-icon-grip-dotted-vertical { background-position: 0 -224px; } -.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; } -.ui-icon-grip-solid-vertical { background-position: -32px -224px; } -.ui-icon-grip-solid-horizontal { background-position: -48px -224px; } -.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; } -.ui-icon-grip-diagonal-se { background-position: -80px -224px; } - - -/* Misc visuals -----------------------------------*/ - -/* Corner radius */ -.ui-corner-all, -.ui-corner-top, -.ui-corner-left, -.ui-corner-tl { - border-top-left-radius: 3px; -} -.ui-corner-all, -.ui-corner-top, -.ui-corner-right, -.ui-corner-tr { - border-top-right-radius: 3px; -} -.ui-corner-all, -.ui-corner-bottom, -.ui-corner-left, -.ui-corner-bl { - border-bottom-left-radius: 3px; -} -.ui-corner-all, -.ui-corner-bottom, -.ui-corner-right, -.ui-corner-br { - border-bottom-right-radius: 3px; -} - -/* Overlays */ -.ui-widget-overlay { - background: #aaaaaa; - opacity: .3; - filter: Alpha(Opacity=30); /* support: IE8 */ -} -.ui-widget-shadow { - -webkit-box-shadow: 0px 0px 5px #666666; - box-shadow: 0px 0px 5px #666666; -} diff --git a/lib/WeBWorK/htdocs/css/library_browser.css b/lib/WeBWorK/htdocs/css/library_browser.css deleted file mode 100644 index fe90b4148..000000000 --- a/lib/WeBWorK/htdocs/css/library_browser.css +++ /dev/null @@ -1,61 +0,0 @@ - - -select{ - height:auto; - width:auto; - margin:0px; -} - -#problems_container{ - overflow:auto; - height:100%; - -webkit-overflow-scrolling: touch; -} - -#homework_sets_container{ - overflow:auto; - height:100%; - -webkit-overflow-scrolling: touch; -} - -#homework_sets_container ul li{ - cursor: pointer; - white-space:nowrap; -} - -#homework_sets_container ul li:hover{ - text-decoration: underline; -} - -ul.list{ - list-style:none; -} - -ul.list li{ - border-bottom: solid lightgray; - margin-bottom: 5px; -} - -.next_group{ - cursor: pointer; - color: slategrey; -} - -.handle{ - float:right; -} - -.contains_problem{ - background: aliceblue; -} - -.syncing:after{ - content: url("/webwork2_files/images/ajax-loader-small.gif"); -} -.syncing.white:after{ - content: url("/webwork2_files/images/ajax-loader-white-small.gif"); -} - -.drophover{ - background: greenyellow; -} \ No newline at end of file diff --git a/lib/WeBWorK/htdocs/css/moodle.css b/lib/WeBWorK/htdocs/css/moodle.css deleted file mode 100644 index c25d94fbc..000000000 --- a/lib/WeBWorK/htdocs/css/moodle.css +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Start with math.css - */ -@import url(math.css); - -/* - * Additions/changes to math.css for moodle.css - */ - -BODY { - margin: 0px; /* no margin (use #fullPage for that) */ - padding: 0px; -} - -#fullPage { - border: 10px solid white; /* needed to get height correctly */ - margin:0px; - padding:0px; -} - -#masthead { - margin: 0 0 .5em 0; /* add space below masthead */ - /* rather than above big-wrapper */ -} - -#big-wrapper { - top: 0px; /* see above */ - /* (shouldn't it have been margin-top anyway?) */ -} - -#breadcrumbs { - margin-bottom: .5em; /* put space here rather than in content */ -} - -#content { - margin: 0 0 0 10.4em; /* see above */ -} - -#site-navigation { - position: relative; /* can't use absolute and still get the */ - left: auto; /* correct height in #fullPage */ - top: auto; - float: left; -} - -#footer { - margin: 0 .5em .2ex 0; /* don't indent this */ -} diff --git a/lib/WeBWorK/htdocs/css/moodle.js b/lib/WeBWorK/htdocs/css/moodle.js deleted file mode 100644 index ea4297c76..000000000 --- a/lib/WeBWorK/htdocs/css/moodle.js +++ /dev/null @@ -1,82 +0,0 @@ -/* - * Turn off interface elements that are not needed by Moodle - */ -if (parent.ww) { - document.write(''); - /* - * This prevents scrollbars from appearing - * (we won't need them because we resize the IFRAME - * to fit, but some browsers would show them anyway). - * - * This is not part of the CSS style so that it only - * is in effect if JavaScript is enabled. - */ - if (document.body) {document.body.style.overflow = "hidden"} -} - -ww = { - /* - * Look for the "up" image on the Sets page and disable it. - * (If WW taged these with ID's, this would be easier.) - */ - disableUp: function () { - var img = document.getElementsByTagName('img'); - for (var i=0; i < img.length; i++) { - if (img[i].src.match(/navUp\.gif$/)) { - img[i].parentNode.style.display = "none"; - break; - } - } - }, - - /* - * Look for the "Sets" box and disable it. - * (If WW taged these with ID's, this would be easier.) - */ - disableSets: function () { - var h2 = document.getElementsByTagName('h2'); - for (var i=0; i < h2.length; i++) { - if (h2[i].innerHTML == 'Sets') { - h2[i].parentNode.style.display = "none"; - break; - } - } - }, - - /* - * This resets the size of the IFRAME to match the - * size of the DIV with ID="fullPage", which should be the - * whole document. - */ - updateSize: function () { - parent.ww.page.height = ww.page.offsetHeight+20; - parent.ww.page.style.height = ""; - }, - - /* - * We wait for the window to completely update, then - * resize the IFRAME. Safari has a bug where it gets - * the size wrong when the page is reloaded, so we - * resize again after a short delay. Resizing also is - * done if the browser window size changes. - */ - onload: function () { - if (ww.oldLoad) ww.oldLoad(); - ww.updateSize(); - setTimeout('ww.updateSize()',1); // for reloading in Safari - setTimeout('window.onresize=ww.updateSize',100); // let it update first - }, - - /* - * Save the old onload handler and replace it with ours - */ - Init: function () { - if (!parent.ww || !parent.ww.page) return; - ww.page = document.getElementById('fullPage'); - if (!ww.page) return; - ww.oldLoad = window.onload; - window.onload = ww.onload; - ww.disableUp(); - ww.disableSets(); - } -} diff --git a/lib/WeBWorK/htdocs/css/tabber.css b/lib/WeBWorK/htdocs/css/tabber.css deleted file mode 100644 index 23612bd02..000000000 --- a/lib/WeBWorK/htdocs/css/tabber.css +++ /dev/null @@ -1,112 +0,0 @@ -/* $Id: example.css,v 1.5 2006/03/27 02:44:36 pat Exp $ */ -/* Renamed tabber.css for use in WeBWorK */ -/* By Patrick Fitzgerald pat@barelyfitz.com, documentation can be found at http://www.barelyfitz.com/projects/tabber/ */ - - -/*-------------------------------------------------- - REQUIRED to hide the non-active tab content. - But do not hide them in the print stylesheet! - --------------------------------------------------*/ -.tabberlive .tabbertabhide { - display:none; -} - -/*-------------------------------------------------- - .tabber = before the tabber interface is set up - .tabberlive = after the tabber interface is set up - --------------------------------------------------*/ -.tabber { -} -.tabberlive { - margin-top:1em; -} - -/*-------------------------------------------------- - ul.tabbernav = the tab navigation list - li.tabberactive = the active tab - --------------------------------------------------*/ -ul.tabbernav -{ - margin:0; - padding: 3px 0; - border-bottom: 1px solid #778; - font: bold 12px Verdana, sans-serif; -} - -ul.tabbernav li -{ - list-style: none; - margin: 0; - display: inline; -} - -ul.tabbernav li a -{ - padding: 3px 0.5em; - margin-left: 3px; - border: 1px solid #778; - border-bottom: none; - background: #DDE; - text-decoration: none; -} - -ul.tabbernav li a:link { color: #448; } -ul.tabbernav li a:visited { color: #667; } - -ul.tabbernav li a:hover -{ - color: #000; - background: #AAE; - border-color: #227; -} - -ul.tabbernav li.tabberactive a -{ - background-color: #fff; - border-bottom: 1px solid #fff; -} - -ul.tabbernav li.tabberactive a:hover -{ - color: #000; - background: white; - border-bottom: 1px solid white; -} - -/*-------------------------------------------------- - .tabbertab = the tab content - Add style only after the tabber interface is set up (.tabberlive) - --------------------------------------------------*/ -.tabberlive .tabbertab { - padding:5px; - border:1px solid #aaa; - border-top:0; - - /* If you don't want the tab size changing whenever a tab is changed - you can set a fixed height */ - - /* height:200px; */ - - /* If you set a fix height set overflow to auto and you will get a - scrollbar when necessary */ - - /* overflow:auto; */ -} - -/* If desired, hide the heading since a heading is provided by the tab */ -.tabberlive .tabbertab h2 { - display:none; -} -.tabberlive .tabbertab h3 { - display:none; -} - -/* Example of using an ID to set different styles for the tabs on the page */ -.tabberlive#tab1 { -} -.tabberlive#tab2 { -} -.tabberlive#tab2 .tabbertab { - height:200px; - overflow:auto; -} diff --git a/lib/WeBWorK/htdocs/css/tinymce.css b/lib/WeBWorK/htdocs/css/tinymce.css deleted file mode 100644 index 37840125d..000000000 --- a/lib/WeBWorK/htdocs/css/tinymce.css +++ /dev/null @@ -1,4 +0,0 @@ -body { - font-family: Verdana,Arial,Helvetica,sans-serif; - font-size: 16px; -} \ No newline at end of file diff --git a/lib/WeBWorK/htdocs/favicon.ico b/lib/WeBWorK/htdocs/favicon.ico deleted file mode 100644 index 10893e0d6..000000000 Binary files a/lib/WeBWorK/htdocs/favicon.ico and /dev/null differ diff --git a/lib/WeBWorK/htdocs/helpFiles/Entering-Angles.html b/lib/WeBWorK/htdocs/helpFiles/Entering-Angles.html deleted file mode 100644 index 464918365..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/Entering-Angles.html +++ /dev/null @@ -1,41 +0,0 @@ - -
        -Entering Angles -
        - -
          - -
        • Angles in radians without units are the default: -
          -For an angle of 60 degrees, enter it in radians as   pi/3   or   1.04719..., but not 60
          -By default, trig functions are evaluated in radians, so cos(pi/3) = 1/2, but cos(60) = -0.9524 since it is radians. You must convert degrees to radians before applying a trig function to an angle. -
          -
        • - -
        • Occasionally, units are required on angles: -
          -If asked for units on an angle, enter, for example,
          -pi/6 rad   (including rad)
          -30 deg   (including deg) -
          -
        • - -
        • Examples of constants available: -
          pi,   e = e^1
          -
        • - -
        • Sometimes decimals are not allowed: -
          Sometimes   pi/6   is allowed, but   0.524   is not
          -
        • - -
        • Sometimes trig functions are not allowed: -
          -Sometimes   0.866025403784   is allowed, but   cos(pi/6)   is not -
          -
        • - -
        • Link to a list of all available functions
        • - - -
        - diff --git a/lib/WeBWorK/htdocs/helpFiles/Entering-Decimals.html b/lib/WeBWorK/htdocs/helpFiles/Entering-Decimals.html deleted file mode 100644 index 8f089c4ad..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/Entering-Decimals.html +++ /dev/null @@ -1,27 +0,0 @@ - -
        -Entering decimals -
        - -
          - -
        • In general, give at least 5 decimal places. -
          Typically, if your answer is correct to 5 decimal places it will be marked correct, although the number of decimal places required may vary from problem to problem. When in doubt, give more decimal places.
          -
        • - -
        • If there is more than one correct answer, enter your answers as a comma separated list. -
          -For example, if your answers are -3/2, 4/3, 2pi, e^3, 5 enter them as --1.5, 1.3333333, 6.2831853, 20.0855369, 5 -
          - -
        • Sometimes, fractions and certain operations are not allowed. -
          Usually, the operations that are not allowed include addition +, subtraction -, multiplication *, division /, and exponentiation ^ (or **). When these operations are not allowed, it is usually because you are expected to be able to simplify your answer, often without using a calculator.
          -
        • - -
        • Sometimes, certain functions are not allowed. -
          Usually, the functions that are not allowed include square root sqrt( ), absolute value | | (or abs( )), as well as other named functions such as sin( ), ln( ), etc. When these functions are not allowed, it is usually because you are expected to be able to simplify your answer, often without using a calculator.
          -
        • - -
        - diff --git a/lib/WeBWorK/htdocs/helpFiles/Entering-Equations.html b/lib/WeBWorK/htdocs/helpFiles/Entering-Equations.html deleted file mode 100644 index e09249c9d..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/Entering-Equations.html +++ /dev/null @@ -1,40 +0,0 @@ -
        -Entering Equations -
        - -
          - -
        • Equations must have an equals sign and use the correct variable names: -
          -y = 5x+2   will be incorrect if the answer is   w = 5y+2 -
          -
        • - -
        • Examples of valid equations that are equivalent: -
          -32 = 5*x + 2   is the same as   30 = 5x   or   x = 6
          -y = (x-1)^2 + 3   is the same as   y - 3 = (x-1)^2
          -x^2 + xy + y^2 = 13x   is the same as   y*(y+x) = 13x - x^2
          -
          -
        • - -
        • If there is no equation that solves the question: -
          -Enter   NONE   or   DNE   (this may vary from problem to problem) -
          -
        • - -
        • Examples of constants used in equations: -
          pi, e = e^1
          -
        • - -
        • Functions may be used in equations, but may not be applied across the equals sign: -
          -sqrt(x) = sqrt(5)   is valid, but   sqrt(x=5)   is not -
          -
          -Link to a list of all available functions -
          -
        • - -
        diff --git a/lib/WeBWorK/htdocs/helpFiles/Entering-Exponents.html b/lib/WeBWorK/htdocs/helpFiles/Entering-Exponents.html deleted file mode 100644 index 5533c2d7f..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/Entering-Exponents.html +++ /dev/null @@ -1,26 +0,0 @@ -
        -Entering exponents -
        - -
          - -
        • Both ^ and ** are used for exponentiation. -
          For example, x^2 and x**2 are the same, as are e^(-x/2) and 1/(e**(x/2))
          -
        • - -
        • Square roots have a named function, but other roots do not and should be entered using fractional exponents. -
          -For example, the square root of 2 can be entered as sqrt(2), 2^(1/2), or 2**(1/2), but the cube root of 2 must be entered as 2^(1/3) or 2**(1/3). The parentheses in 2^(1/3) are required, since 2^1/3 will be interpreted as (2^1)/3 = 2/3. -
          -
        • - -
        • Sometimes, fractional exponents and certain operations are not allowed. -
          Usually, the operations that are not allowed include addition +, subtraction -, multiplication *, division /. When these operations are not allowed, it is usually because you are expected to be able to simplify your answer, often without using a calculator.
          -
        • - -
        • Sometimes, certain functions are not allowed. -
          Usually, the functions that are not allowed include square root sqrt( ), absolute value | | (or abs( )), as well as other named functions such as sin( ), ln( ), etc. When these functions are not allowed, it is usually because you are expected to be able to simplify your answer, often without using a calculator.
          -
        • - -
        - diff --git a/lib/WeBWorK/htdocs/helpFiles/Entering-Formulas.html b/lib/WeBWorK/htdocs/helpFiles/Entering-Formulas.html deleted file mode 100644 index 220e60e61..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/Entering-Formulas.html +++ /dev/null @@ -1,68 +0,0 @@ - -
        -Entering Formulas -
        - -
          - -
        • Link to a list of all available functions

        • - -
        • Formulas must use the correct variable(s): -
          -For example, a function of time   t   could be   -16t^2 + 12, while   -16x^2 + 12   would be incorrect. -
          -
        • - -
        • Examples of valid formulas: -
          -5*sin((pi*x)/2)   or   5 sin(pi x/2)
          -e^(-x)   or   e**(-x)   or   1/(e^x)
          -abs(5y)   or   |5y|
          -sqrt(9 - z^2)   or   (9 - z^2)^(1/2)
          -24   or   4!   or   4 * 3 * 2 * 1
          -pi   or   4 arctan(1)   or   4 atan(1)   or   4 tan^(-1)(1)
          -
          -
        • - -
        • Entering logarithms: -
          In this question, use ln(x) or log(x) -for natural log, -and logten(x) or log10(x) for -the base 10 logarithm. Enter log base b as ln(x)/ln(b). -
          -
        • - -
        • Examples of constants used in formulas: -
          pi, e = e^1
          -
        • - -
        • Examples of operations used in formulas: -
          Addition +, subtraction -, multiplication *, division /, exponentiation ^ (or **), factorial ! -
          -
        • - -
        • Examples of functions used in formulas: -
          -sqrt(x) = x^(1/2), abs(x) = | x |
          -2^x, e^x, ln(x), log10(x)
          -sin(x), cos(x), tan(x), csc(x), sec(x), cot(x)
          -arcsin(x) = asin(x) = sin^(-1)(x)
          -arccos(x) = acos(x) = cos^(-1)(x)
          -arctan(x) = atan(x) = tan^(-1)(x)
          -
          - -
        • Sometimes formulas must be simplified: -
          -For example,   6x + 5 - 2x   should be simplified to   4x + 5 -
          -
        • - -
        • Sometimes, certain operations are not allowed. -
          Usually, the operations that are not allowed include addition +, subtraction -, multiplication *, division /, and exponentiation ^ (or **). When these operations are not allowed, it is usually because you are expected to be able to simplify your answer, often without using a calculator.
          -
        • - -
        • Sometimes, certain functions are not allowed. -
          Usually, the functions that are not allowed include square root sqrt( ), absolute value | | (or abs( )), as well as other named functions such as sin( ), ln( ), etc. When these functions are not allowed, it is usually because you are expected to be able to simplify your answer, often without using a calculator.
          -
        • - -
        diff --git a/lib/WeBWorK/htdocs/helpFiles/Entering-Formulas10.html b/lib/WeBWorK/htdocs/helpFiles/Entering-Formulas10.html deleted file mode 100644 index 5ae280074..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/Entering-Formulas10.html +++ /dev/null @@ -1,67 +0,0 @@ - -
        -Entering Formulas -
        - -
          - -
        • Link to a list of all available functions

        • - -
        • Formulas must use the correct variable(s): -
          -For example, a function of time   t   could be   -16t^2 + 12, while   -16x^2 + 12   would be incorrect. -
          -
        • - -
        • Examples of valid formulas: -
          -5*sin((pi*x)/2)   or   5 sin(pi x/2)
          -e^(-x)   or   e**(-x)   or   1/(e^x)
          -abs(5y)   or   |5y|
          -sqrt(9 - z^2)   or   (9 - z^2)^(1/2)
          -24   or   4!   or   4 * 3 * 2 * 1
          -pi   or   4 arctan(1)   or   4 atan(1)   or   4 tan^(-1)(1)
          -
          -
        • - -
        • Entering logarithms: -
          In this question, use ln(x) for natural log, -and log(x), logten(x) or log10(x) for -the base 10 logarithm. Enter log base b as ln(x)/ln(b). -
          -
        • - -
        • Examples of constants used in formulas: -
          pi, e = e^1
          -
        • - -
        • Examples of operations used in formulas: -
          Addition +, subtraction -, multiplication *, division /, exponentiation ^ (or **), factorial ! -
          -
        • - -
        • Examples of functions used in formulas: -
          -sqrt(x) = x^(1/2), abs(x) = | x |
          -2^x, e^x, ln(x), log10(x)
          -sin(x), cos(x), tan(x), csc(x), sec(x), cot(x)
          -arcsin(x) = asin(x) = sin^(-1)(x)
          -arccos(x) = acos(x) = cos^(-1)(x)
          -arctan(x) = atan(x) = tan^(-1)(x)
          -
          - -
        • Sometimes formulas must be simplified: -
          -For example,   6x + 5 - 2x   should be simplified to   4x + 5 -
          -
        • - -
        • Sometimes, certain operations are not allowed. -
          Usually, the operations that are not allowed include addition +, subtraction -, multiplication *, division /, and exponentiation ^ (or **). When these operations are not allowed, it is usually because you are expected to be able to simplify your answer, often without using a calculator.
          -
        • - -
        • Sometimes, certain functions are not allowed. -
          Usually, the functions that are not allowed include square root sqrt( ), absolute value | | (or abs( )), as well as other named functions such as sin( ), ln( ), etc. When these functions are not allowed, it is usually because you are expected to be able to simplify your answer, often without using a calculator.
          -
        • - -
        diff --git a/lib/WeBWorK/htdocs/helpFiles/Entering-Fractions.html b/lib/WeBWorK/htdocs/helpFiles/Entering-Fractions.html deleted file mode 100644 index 6aaa6b063..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/Entering-Fractions.html +++ /dev/null @@ -1,54 +0,0 @@ -
        -Entering fractions -
        - -
          - -
        • Examples of fractions, which are of the form a / b for non-decimal numbers a and b that have no common factors, include: -
          -5/2, -1/3, pi/3, 4, sqrt(2)/2 -
          -
        • - -
        • Examples of fractions that can be simplified include: -
          -15/6, (3-4)/3, 2*pi/6, (16/2)/2 -
          -
        • - -
        • Sometimes decimals are not allowed: -
          -Allowed:    5/2, -1/3, pi/3, 4, sqrt(2)/2, 2^(1/2)
          -Not allowed:    2.5, -0.33333, 3.14159/3, 0.707106/2, 2^(0.5) -
          -
        • - -
        • Sometimes a mixed fraction is required: -
          Enter 1 2/3 (for 1 and 2/3) with a space between the 1 and the 2 instead of 5/3
          -
        • - -
        • Sometimes, you must make an integer into a fraction: -
          Enter 4/1 instead of 4
          -
        • - -
        • If there is more than one correct answer, enter your answers as a comma separated list. -
          -For example, if your answers are -3/2, 4/3, 2pi, e^3, 5 enter -3/2, 4/3, 2*pi, e^3, 5 -
          - -
        • If there are no solutions: -
          -Enter   NONE   or   DNE   (this may vary from problem to problem) -
          -
        • - -
        • Sometimes, certain operations are not allowed. -
          Usually, the operations that are not allowed include addition +, subtraction -, multiplication *, and exponentiation ^ (or **). When these operations are not allowed, it is usually because you are expected to be able to simplify your answer, often without using a calculator.
          -
        • - -
        • Sometimes, certain functions are not allowed. -
          Usually, the functions that are not allowed include square root sqrt( ), absolute value | | (or abs( )), as well as other named functions such as sin( ), ln( ), etc. When these functions are not allowed, it is usually because you are expected to be able to simplify your answer, often without using a calculator.
          -
        • - -
        diff --git a/lib/WeBWorK/htdocs/helpFiles/Entering-Inequalities.html b/lib/WeBWorK/htdocs/helpFiles/Entering-Inequalities.html deleted file mode 100644 index a5d204706..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/Entering-Inequalities.html +++ /dev/null @@ -1,65 +0,0 @@ -
        -Entering inequalities -
        - -
          - -
        • Types of operators: -
          - - - - - - - -
          <    less than
          <=    less than or equal to (  =<   might also work)
          =    equals
          !=    not equal to (uses exclamation point)
          >    greater than
          >=    greater than or equal to (  =>   might also work)
          -
          -
        • - -
        • Special symbols: -
          -infinity   or   inf   means positive infinity
          --infinity   or   -inf   means negative infinity
          -R   means all real numbers
          -R   is the same as   -inf < x < inf   or   (-inf,inf)
          -{2,4,5}   using curly braces denotes a finite set
          -NONE   or a pair of curly braces   {}   means the empty set
          -U   denotes the union of intervals -
          -
        • - -
        • Entering answers using inequality or interval notation: -
          - - - - - - - - - - - - - - - -
          Inequality
          Notation
          * Interval
          Notation
          Remarks
          x<2(-infinity,2)Use rounded parentheses (   or   ) at infinite endpoints
          x>2(2,infinity) 
          x<=2(-infinity,2] 
          x>=2[2,infinity) 
          0<x<=2(0,2] 
          0<x and x<2(0,2)and   is special
          x<0 or x>2(-inf,0)U(2,inf)or   is special
          U   denotes union
          x=0 or x=2{0,2}finite sets are allowed using curly braces   {a,b,c}
          x<3 or x>3(-inf,3)U(3,inf)
          x != 3
          R-{3}
          set differences are allowed
          -
          -* Some questions may not allow interval notation to be used -
          -
        • - -
        • Tips for entering inequalities and intervals: -
          -If an interval includes an endpoint, use square brackets: [   or   ]

          -If an interval excludes an endpoint or an endpoint is infinite, use rounded parentheses: (   or   )

          -Use curly braces to enclose finite sets and commas to separate elements the set: { -3, pi, 2/5, 0.75 }

          -All sets should be expressed in their simplest form in interval notation with no overlapping intervals. For example,   [2,4]U[3,5]   is not equivalent to   [2,5]

          -If you are asked to find the range of a function y = f(x), your inequality should be in terms of the variable y -
          -
        • - -
        diff --git a/lib/WeBWorK/htdocs/helpFiles/Entering-Intervals.html b/lib/WeBWorK/htdocs/helpFiles/Entering-Intervals.html deleted file mode 100644 index 4c9e3f7e4..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/Entering-Intervals.html +++ /dev/null @@ -1,60 +0,0 @@ -

        -Using Interval Notation -

        - -
          - -
        • If an endpoint is included, then use [ or ]. -If not, then use ( or ). For example, the interval -from -3 to 7 that includes 7 but not -3 is expressed (-3,7]. - - -
          -
          - -
        • For infinite intervals, use Inf -for (infinity) and/or --Inf for -∞ (-Infinity). For -example, the infinite interval containing all points greater than or -equal to 6 is expressed [6,Inf). - - -
          -
          - -
        • If the set includes more than one interval, they are joined using the union -symbol U. For example, the set consisting of all points in (-3,7] together with all points in [-8,-5) is expressed [-8,-5)U(-3,7]. - -
          -
          - -
        • If the answer is the empty set, you can specify that by using - braces with nothing inside: { } - -
          - -
          - -
        • You can use R as a shorthand for all real numbers. - So, it is equivalent to entering (-Inf, Inf). - -
          -
          - -
        • You can use set difference notation. So, for all real numbers - except 3, you can use R-{3} or - (-Inf, 3)U(3,Inf) (they are the same). Similarly, - [1,10)-{3,4} is the same as [1,3)U(3,4)U(4,10). - - -
          -
          - - -
        • WeBWorK will not interpret [2,4]U[3,5] as equivalent - to [2,5], unless a problem tells you otherwise. -All sets should be expressed in their simplest interval notation form, with no -overlapping intervals. - -
        - diff --git a/lib/WeBWorK/htdocs/helpFiles/Entering-Limits.html b/lib/WeBWorK/htdocs/helpFiles/Entering-Limits.html deleted file mode 100644 index 74c70c7fb..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/Entering-Limits.html +++ /dev/null @@ -1,51 +0,0 @@ -
        -Entering Limits -
        - -
          - -
        • Limits whose values are numbers: -
          -For example, limx → ∞ arctan(x) = π/2, so you would enter   pi/2 -
          -
        • - -
        • Limits whose values are infinite: -
          -Enter   infinity,   inf,   -infinity,   -inf -
          -
        • - -
        • Limits that don't exist: -
          -Enter   DNE   or   NONE   (this may vary from question to question) -
          -
        • - -
        • Limits whose value is a function: -
          -Enter the function using appropriate syntax, for example:
          -sqrt(x) = x^(1/2), abs(x) = | x |
          -2^x, e^x, ln(x), log10(x)
          -sin(x), cos(x), tan(x), csc(x), sec(x), cot(x)
          -arcsin(x) = asin(x) = sin^(-1)(x)
          -arccos(x) = acos(x) = cos^(-1)(x)
          -arctan(x) = atan(x) = tan^(-1)(x)
          -
          -
        • - -
        • Sometimes answers must be simplified: -
          -For example,   6x+5-2x+7   should be simplified to   4x+12 -
          -
        • - -
        • Sometimes, certain operations are not allowed. -
          Usually, the operations that are not allowed include addition +, subtraction -, multiplication *, division /, and exponentiation ^ (or **). When these operations are not allowed, it is usually because you are expected to be able to simplify your answer, often without using a calculator.
          -
        • - -
        • Sometimes, certain functions are not allowed. -
          Usually, the functions that are not allowed include square root sqrt( ), absolute value | | (or abs( )), as well as other named functions such as sin( ), ln( ), etc. When these functions are not allowed, it is usually because you are expected to be able to simplify your answer, often without using a calculator.
          -
        • - -
        diff --git a/lib/WeBWorK/htdocs/helpFiles/Entering-Logarithms.html b/lib/WeBWorK/htdocs/helpFiles/Entering-Logarithms.html deleted file mode 100644 index 7a16eb68b..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/Entering-Logarithms.html +++ /dev/null @@ -1,14 +0,0 @@ -
        -

        Help Entering Logarithms

        -
        -
          -
        • Entering natural logarithm: In this question, use ln(x) or log(x). -

        • -
        • Entering base 10 logarithm: In this question, use log10(x) or logten(x).

        • -
        • Entering logarithms base b:   ln(x)/ln(b)   or   log(x)/log(b)
          WeBWorK does not recognize logarithms to other bases, so you must use the change of base formula for logarithms to enter your answer. For example, enter log base 2 of x as

          ln(x)/ln(2)    or    log(x)/log(2)
        • -
        • Put parentheses around the arguments to logs:
          ln(2x+8)   and   ln2x+8 = ln(2)*x+8   are very different.
        • -
        • Sometimes logarithms must be simplified or expanded:
          For example, the required answer may be   ln(6) + ln(x)   or   ln(6x)
        • -
        • Sometimes, certain operations are not allowed.
          Usually, the operations that are not allowed include addition +, subtraction -, multiplication *, division /, and exponentiation ^ (or **). When these operations are not allowed, it is usually because you are expected to be able to simplify your answer, often without using a calculator.
        • -
        • Sometimes, certain functions are not allowed.
          Usually, the functions that are not allowed include square root sqrt( ), absolute value | | (or abs( )), as well as other named functions such as sin( ), ln( ), etc. When these functions are not allowed, it is usually because you are expected to be able to simplify your answer, often without using a calculator.
        • -
        • Link to a list of all available functions

        • -
        diff --git a/lib/WeBWorK/htdocs/helpFiles/Entering-Logarithms10.html b/lib/WeBWorK/htdocs/helpFiles/Entering-Logarithms10.html deleted file mode 100644 index 23aa22287..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/Entering-Logarithms10.html +++ /dev/null @@ -1,13 +0,0 @@ -
        -

        Help Entering Logarithms

        -
        -
          -
        • Entering natural logarithm: In this question, use ln(x)

        • -
        • Entering base 10 logarithm: In this question, use log(x), log10(x), or logten(x).

        • -
        • Entering logarithms base b:   ln(x)/ln(b)   or   log(x)/log(b)
          WeBWorK does not recognize logarithms to other bases, so you must use the change of base formula for logarithms to enter your answer. For example, enter log base 2 of x as

          ln(x)/ln(2)    or    log(x)/log(2)
        • -
        • Put parentheses around the arguments to logs:
          ln(2x+8)   and   ln2x+8 = ln(2)*x+8   are very different.
        • -
        • Sometimes logarithms must be simplified or expanded:
          For example, the required answer may be   ln(6) + ln(x)   or   ln(6x)
        • -
        • Sometimes, certain operations are not allowed.
          Usually, the operations that are not allowed include addition +, subtraction -, multiplication *, division /, and exponentiation ^ (or **). When these operations are not allowed, it is usually because you are expected to be able to simplify your answer, often without using a calculator.
        • -
        • Sometimes, certain functions are not allowed.
          Usually, the functions that are not allowed include square root sqrt( ), absolute value | | (or abs( )), as well as other named functions such as sin( ), ln( ), etc. When these functions are not allowed, it is usually because you are expected to be able to simplify your answer, often without using a calculator.
        • -
        • Link to a list of all available functions

        • -
        diff --git a/lib/WeBWorK/htdocs/helpFiles/Entering-Numbers.html b/lib/WeBWorK/htdocs/helpFiles/Entering-Numbers.html deleted file mode 100644 index 37539df6e..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/Entering-Numbers.html +++ /dev/null @@ -1,35 +0,0 @@ -
        -Entering numbers -
        - -
          - -
        • Examples of (real) numbers include: -
          4, 5/2, -1/3, pi/3, e^3, 3.1415926535, sqrt(2) = 2^(1/2), ln(2), sin(2pi/3)
          -
        • - -
        • If there is more than one correct answer, enter your answers as a comma separated list. -
          -For example, enter   -1.5, 4/3, 2pi, e^3, 5
          -Do not use commas in large numbers: enter   4321   (not   4,321) -
          - -
        • If there are no solutions: -
          -Enter   NONE   or   DNE   (this may vary from problem to problem) -
          -
        • - -
        • If your answer is a decimal, give at least 5 decimal places. -
          Typically, if your answer is correct to 5 decimal places it will be marked correct, although the number of decimal places required may vary from problem to problem. When in doubt, give more decimal places.
          -
        • - -
        • Sometimes, fractions and certain operations are not allowed. -
          Usually, the operations that are not allowed include addition +, subtraction -, multiplication *, division /, and exponentiation ^ (or **). When these operations are not allowed, it is usually because you are expected to be able to simplify your answer, often without using a calculator.
          -
        • - -
        • Sometimes, certain functions are not allowed. -
          Usually, the functions that are not allowed include square root sqrt( ), absolute value | | (or abs( )), as well as other named functions such as sin( ), ln( ), etc. When these functions are not allowed, it is usually because you are expected to be able to simplify your answer, often without using a calculator.
          -
        • - -
        diff --git a/lib/WeBWorK/htdocs/helpFiles/Entering-Points.html b/lib/WeBWorK/htdocs/helpFiles/Entering-Points.html deleted file mode 100644 index d80f25431..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/Entering-Points.html +++ /dev/null @@ -1,40 +0,0 @@ -
        -Entering Points -
        - -
          - -
        • A point must use parentheses and commas: -
          -(4.5, 3/7)   is a valid point in 2 dimensions
          -(pi,e,2)   is a valid point in 3 dimensions -
          -
        • - -
        • If the answer is more than one point: -
          -Enter your answer as a comma-separated list of points, for example:    -(4,3), (5,10) -
          -
        • - -
        • If there are no solutions: -
          -Enter   NONE   or   DNE   (this may vary from problem to problem) -
          -
        • - -
        • Examples of constants used in points: -
          pi, e = e^1
          -
        • - -
        • Functions may be used in each coordinate of a point, but may not be applied across the parentheses or commas: -
          -(sqrt(2),sqrt(5))   is valid, but   (sqrt(2,5))   is not -
          -
          -Link to a list of all available functions -
          -
        • - -
        diff --git a/lib/WeBWorK/htdocs/helpFiles/Entering-Syntax.html b/lib/WeBWorK/htdocs/helpFiles/Entering-Syntax.html deleted file mode 100644 index f6154508d..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/Entering-Syntax.html +++ /dev/null @@ -1,137 +0,0 @@ -

        Syntax for entering answers to WeBWorK

        - - -

        Mathematical Symbols Available In WeBWorK

        - -
        • + Addition -
        • - Subtraction -
        • * Multiplication can also be indicated by a space or juxtaposition, e.g. 2x, 2 x or 2*x, also 2(3+4). -
        • / Division -
        • ^ or ** You can use either ^ or ** for exponentiation, e.g. 3^2 or 3**2 -
        • Parentheses: () - You can also use square brackets, [ ], and braces, { }, for grouping, e.g. [1+2]/[3(4+5)] -
        -

        Syntax for entering expressions

        -
        • Be careful entering expressions just as you would be careful entering expressions in a calculator. - -
        • Use the "Preview Button" to see exactly how your entry -looks. E.g. to tell the difference between 1+2/3*4 and [1+2]/[3*4] -click the "Preview Button". -
        • Sometimes using the * symbol to indicate mutiplication makes -things easier to read. For example (1+2)*(3+4) and (1+2)(3+4) are both -valid. So are 3*4 and 3 4 (3 space 4, not 34) but using a * makes -things clearer. -
        • Use ('s and )'s to make your meaning clear. You can also use ['s and ]'s and {'s and }'s. -
        • Don't enter 2/4+5 (which is 5.5) when you really want 2/(4+5) (which is 2/9). -
        • Don't enter 2/3*4 (which is 8/3) when you really want 2/(3*4) (which is 2/12). -
        • Entering big quotients with square brackets, e.g. [1+2+3+4]/[5+6+7+8], is a good practice. -
        • Be careful when entering functions. It's always good practice -to use parentheses when entering functions. Write sin(t) instead of -sint or sin t even though WeBWorK is smart enough to usually accept sin t or even sint. For example, sin 2t is interpreted as sin(2)t, i.e. (sin(2))*t so be careful. - -
        • You can enter sin^2(t) as a short cut although mathematically -speaking sin^2(t) is shorthand for (sin(t))^2(the square of sin of t). -(You can enter it as sin(t)^2 or even sint^2, but don't try such things -unless you really understand the precedence of operations. The -"sin" operation has highest precedence, so it is performed first, using -the next token (i.e. t) as an argument. Then the result is squared.) -You can always use the Preview button to see a typeset version of what -you entered and check whether what you wrote was what you -meant. :-) -
        • For example 2+3sin^2(4x) will work and is equivalent to -2+3(sin(4x))^2 or 2+3sin(4x)^2. Why does the last expression work? -Because things in parentheses are always done first [ i.e. (4x)], next -all functions, such as sin, are evaluated [giving sin(4x)], next all -exponents are taken [giving sin(4x)^2], next all multiplications and -divisions are performed in order from left to right [giving -3sin(4x)^2], and finally all additions and subtractions are performed -[giving 2+3sin(4x)^2]. -
        • Is -5^2 positive or negative? It's negative. This is because -the square operation is done before the negative sign is applied. Use -(-5)^2 if you want to square negative 5. -
        • When in doubt use parentheses!!! :-) -
        • The complete rules for the precedence of operations, in addition to the above, are -
          • Multiplications and divisions are performed left to right: 2/3*4 = (2/3)*4 = 8/3. - -
          • Additions and subtractions are performed left to right: 1-2+3 = (1-2)+3 = 2. -
          • Exponents are taken right to left: 2^3^4 = 2^(3^4) = 2^81 = a big number. -
          -
        • Use the "Preview Button" to see exactly how your entry -looks. E.g. to tell the difference between 1+2/3*4 and [1+2]/[3*4] -click the "Preview Button". -
        -

        Mathematical Constants Available In WeBWorK

        -
        • pi This gives 3.14159265358979, e.g. cos(pi) is -1 -
        • e This gives 2.71828182845905, e.g. ln(e*2) is 1 + ln(2) -
        - -

        Scientific Notation Available In WeBWorK

        -
        • 2.1E2 is the same as 210 -
        • 2.1E-2 is the same as .021 -
        -

        Mathematical Functions Available In WeBWorK

        -

        Note that sometimes one or more of these functions is disabled for a WeBWorK problem because the -instructor wants you to calculate the answer by some means other than just using the function. -

        -
        • abs( ) The absolute value -
        • cos( ) Note: cos( ) uses radian measure - -
        • sin( ) Note: sin( ) uses radian measure -
        • tan( ) Note: tan( ) uses radian measure -
        • sec( ) Note: sec( ) uses radian measure -
        • cot( ) Note: cot( ) uses radian measure -
        • csc( ) Note: csc( ) uses radian measure -
        • exp( ) The same function as e^x -
        • log( ) This is usually the natural log but your professor may have redined this as log to the base 10 -
        • ln( ) The natural log -
        • logten( ) The log to the base 10 - -
        • arcsin( ) -
        • asin( ) or sin^-1() Another name for arcsin -
        • arccos( ) -
        • acos( ) or cos^-1() Another name for arccos -
        • arctan( ) -
        • atan( ) or tan^-1() Another name for arctan -
        • arccot( ) -
        • acot( ) or cot^-1() Another name for arccot -
        • arcsec( ) - -
        • asec( ) or sec^-1() Another name for arcsec -
        • arccsc( ) -
        • acsc( ) or csc^-1() Another name for arccsc -
        • sinh( ) -
        • cosh( ) -
        • tanh( ) -
        • sech( ) -
        • csch( ) -
        • coth( ) - -
        • arcsinh( ) -
        • asinh( ) or sinh^-1() Another name for arcsinh -
        • arccosh( ) -
        • acosh( ) or cosh^-1()Another name for arccosh -
        • arctanh( ) -
        • atanh( ) or tanh^-1()Another name for arctanh -
        • arcsech( ) -
        • asech( ) or sech^-1()Another name for arcsech -
        • arccsch( ) - -
        • acsch( ) or csch^-1() Another name for arccsch -
        • arccoth( ) -
        • acoth( ) or coth^-1() Another name for arccoth -
        • sqrt( ) -
        • n! (n factorial -- defined for nÕ0  -
        • These functions may not always be available for every problem. -
          • sgn( ) The sign function, either -1, 0, or 1 - -
          • step( ) The step function (0 if x<0 , 1 if xÕ0 ) -
          • fact(n) The factorial function n! (defined only for nonnegative integers) -
          • P(n,k) = n*(n-1)*(n-2)...(n-k+1) the number of ordered sequences of k elements chosen from n elements -
          • C(n,k) = "n choose k" the number of unordered sequences of k elements chosen from n elements -
          -
        - -For more information: - -http://webwork.maa.org/wiki/Available_Functions - - diff --git a/lib/WeBWorK/htdocs/helpFiles/Entering-Units.html b/lib/WeBWorK/htdocs/helpFiles/Entering-Units.html deleted file mode 100644 index 851655873..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/Entering-Units.html +++ /dev/null @@ -1,74 +0,0 @@ - -

        Units Available in WeBWorK

        -

        -Some WeBWorK problems ask for answers with units. Below is a list of basic units -and how they need to be abbreviated in WeBWorK answers. In some problems, you -may need to combine units (e.g, velocity might be in ft/s for feet per -second). -

        - -
        Unit Abbreviation -
        Time -
        Seconds s - -
        Minutes min -
        Hours hr -
        Days day -
        Years yr -
        Milliseconds ms - - -
        Distance -
        Feet ft -
        Inches in -
        Miles mi -
        Meters m - -
        Centimeters cm -
        Millimeters mm -
        Kilometers km -
        Angstroms A -
        Light years light-year - - -
        Mass -
        Grams g -
        Kilograms kg -
        Slugs slug - -
        Volume -
        Liters L - -
        Cubic Centimeters cc -
        Milliliters ml - -
        Force -
        Newtons N -
        Dynes dyne - -
        Pounds lb -
        Tons ton - -
        Work/Energy -
        Joules J -
        kilo Joule kJ - -
        ergs erg -
        foot pounds lbf -
        calories cal -
        kilo calories kcal -
        electron volts eV - -
        kilo Watt hours kWh - -
        Misc -
        Amperes amp -
        Moles mol -
        Degrees Centrigrade degC - -
        Degrees Fahrenheit degF -
        Degrees Kelvin degK -
        Angle degrees deg -
        Angle radians rad - -
        diff --git a/lib/WeBWorK/htdocs/helpFiles/Entering-Vectors.html b/lib/WeBWorK/htdocs/helpFiles/Entering-Vectors.html deleted file mode 100644 index 6332c19ae..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/Entering-Vectors.html +++ /dev/null @@ -1,48 +0,0 @@ -
        -Entering Vectors -
        - -
          - -
        • Predefined vectors i, j, and k -
          -i   is the same as   <1,0,0>
          -j   is the same as   <0,1,0>
          -k   is the same as   <0,0,1>
          -
          -
        • - -
        • A vector may be entered using angle brackes and commas, or adding multiples of i, j, and k: -
          -<4.5, 3/7>   and   4.5i + 3/7j   are valid vectors in 2 dimensions
          -<pi,e,2>   and   pi i + e j + 2 k   are valid vectors in 3 dimensions -
          -
        • - -
        • If the answer is more than one vector: -
          -Enter your answer as a comma-separated list of vectors, for example:    -<4,3>, <5,10> -
          -
        • - -
        • If there are no solutions: -
          -Enter   NONE   or   DNE   (this may vary from problem to problem) -
          -
        • - -
        • Examples of constants used in vectors: -
          pi, e = e^1
          -
        • - -
        • Functions may be used in each coordinate of a vector, but may not be applied across the parentheses or commas: -
          -<sqrt(2),sqrt(5)>   is valid, but   <sqrt(2,5)>   is not -
          -
          -Link to a list of all available functions -
          -
        • - -
        diff --git a/lib/WeBWorK/htdocs/helpFiles/Global_Average_Attempts_Data.html b/lib/WeBWorK/htdocs/helpFiles/Global_Average_Attempts_Data.html deleted file mode 100644 index 6badb7dd9..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/Global_Average_Attempts_Data.html +++ /dev/null @@ -1,33 +0,0 @@ - - - -Global Attempts - - -
        -

        -The Attempts figure is the global average of the number of attempts -(both correct and incorrect) individuals take on this problem. -A high figure may represent a difficult problem. Note that problems -with multiple parts may have higher average attempts since many students -will submit an answer to each part before continuing and each such -submittal counts as an attempt. -

        - - - - diff --git a/lib/WeBWorK/htdocs/helpFiles/Global_Average_Status_Data.html b/lib/WeBWorK/htdocs/helpFiles/Global_Average_Status_Data.html deleted file mode 100644 index b18e76e85..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/Global_Average_Status_Data.html +++ /dev/null @@ -1,38 +0,0 @@ - - - -Global Status - - -
        -

        -The Status figure is the global average of the Status -individuals have earned on this problem. The Status is the percentage -correct (from 0% to 100%) recorded for the problem. A low figure may -represent a difficult problem. The Status is often fairly high since -many students will work on a problem until they get it correct or nearly so. -

        - -

        -Reviewing a problem and looking at both the average Attempts and -average Status should give instructors valuable information about -the difficulty of the problem. -

        - - - - diff --git a/lib/WeBWorK/htdocs/helpFiles/Global_Usage_Data.html b/lib/WeBWorK/htdocs/helpFiles/Global_Usage_Data.html deleted file mode 100644 index a5a0d9535..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/Global_Usage_Data.html +++ /dev/null @@ -1,32 +0,0 @@ - - - -Global Usage Data - - -
        -

        -Global data on problem usage is contributed by many institutions using -WeBWorK all over the world. The Usage figure is the total number of -individuals who have attemped this problem at least once. A high figure -represents a problem which has been assigned to many students and is -both popular with instructors and likely bug free. -

        - - - - diff --git a/lib/WeBWorK/htdocs/helpFiles/Grades.html b/lib/WeBWorK/htdocs/helpFiles/Grades.html deleted file mode 100644 index 4560895fd..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/Grades.html +++ /dev/null @@ -1,31 +0,0 @@ - - - -Student Grades Help Page - - -
        -

        -

        The "Ind" column is : (totalNumberOfCorrectProblems / totalNumberOfProblems)^2/ AvgNumberOfAttemptsPerProblem), which is a more -useful number when it comes to summarizing how well you are doing. -

        -

        In the problems section of the chart the upper letter represents whether or not the problem was answered correctly (C for -correct) and the lower number is the number of times the problem was attempted.

        - - diff --git a/lib/WeBWorK/htdocs/helpFiles/InstructorAddUsers.html b/lib/WeBWorK/htdocs/helpFiles/InstructorAddUsers.html deleted file mode 100644 index cd65d30ed..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/InstructorAddUsers.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - -Add User Help Page - - -
        -

        Add User Help Page

        -

        The number of rows can be changed by changing the number in the text box and hitting the "create" button, but be careful, -once some information is entered do not change the number of rows or all the text in the boxes will be lost.

        -

        The only mandatory information is the "login" and the "Student ID", the Student ID will be the student's initial password.

        -

        Any other boxes may be left blank, but it may be useful to fill in section and recitation as they can be used to seperate -scores later on.

        -

        Multiple sets may be given to the user by holding down the shift key while selecting from the list.

        - - - diff --git a/lib/WeBWorK/htdocs/helpFiles/InstructorAssigner.html b/lib/WeBWorK/htdocs/helpFiles/InstructorAssigner.html deleted file mode 100644 index 8f23707b0..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/InstructorAssigner.html +++ /dev/null @@ -1,27 +0,0 @@ - - - -Set Assigner Help Page - - -
        -

        Either list can be reordered by changing the criteria and pushing the button. Then multiple sets can be assigned to a user, or -multiple users to a set.

        - - diff --git a/lib/WeBWorK/htdocs/helpFiles/InstructorConfig.html b/lib/WeBWorK/htdocs/helpFiles/InstructorConfig.html deleted file mode 100644 index 6ff1c6896..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/InstructorConfig.html +++ /dev/null @@ -1,48 +0,0 @@ - - - - - -Course Configuration Help Page - - -
        -

        -This page allows you to configuration of certain parameters, such as -

          -
        • permission levels,
        • -
        • display modes allowed
        • -
        • default display mode
        • -
        • and email feedback behavior,
        • -
        -on a course by course basis. -

        - -

        -Click on each of the tabs to view the configuration items. The question -mark icon provides access to information about the behavior of the configuration -settings. -

        - - -
        - - diff --git a/lib/WeBWorK/htdocs/helpFiles/InstructorFileManager.html b/lib/WeBWorK/htdocs/helpFiles/InstructorFileManager.html deleted file mode 100644 index 847a0172f..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/InstructorFileManager.html +++ /dev/null @@ -1,92 +0,0 @@ - - - - - -File Manager Help Page - - -
        -

        File Manager Help Page

        - -

        -The File Manager module will soon replace the File Transfer module. We'll keep -both available for the time being. -

        -Locations of files: -

        -
        Set definition (".def") files
        -
        These are stored in the templates directory. To view the format for - Set Definition files see - Set Definition specification - or download set0.def and copy that. Set definition files are mainly - useful for transferring set assignments from one course to another. - (For example from a calculus course taught the previous year.)They contain a - list of problems used and the dates and times. - These definitions can be imported into the current course and a set in the current course - can be exported to a set definition files.
        -
        Class list (".lst") files
        -
        The classlist files are stored in the templates directory and provide - a convenient way to enter a large number of students into your - class. To view the format for ClassList files see - ClassList specification - or download demoCourse.lst and use it as a model. - ClassList files can be - prepared using a spreadsheet and then saved as .csv (comma separated - variables) text files.
        -
        Scoring (".csv") files
        -
        The scoring files are stored in the scoring directory and are produced - using the "Scoring" module or the scoring command in the "Instructor Tools" module. - These files can be downloaded, modified in a spread sheet (for example, add midterm scores) - and then uploaded again to the scoring directory to be merged with email messages. (Use - a new file name, other than courseName_totals.csv, when uploading to prevent the - scoring module from overwriting an uploaded file.) - ) -
        -
        Problem template (".pg") files
        -
        These provide the template from which are problems are created and - are located in the template directory. They can be edited directly using - the "edit problem" link on each problem page. The File Manager allows you to - upload or download these files so that you can save them on your desktop.
        -
        html directory
        -
        This directory is accessible from the web. You can use it to store html documents - or image documents that are used by the course. Do not store private information in - this directory or in any subdirectory.These documents can be pointed to from within - problems using the htmlLink macro
        -
        templates/email directory
        -
        This is where email messages are saved. You can upload or download files in - this directory if you wish to save the files for later.
        -
        templates/macros directory
        -
        Macro (".pl") files containing favorite macros for your course can be stored here. Those - being used for many courses should be stored in pg/macros.
        -
        - - -

        - - -

        - -

        - - - - diff --git a/lib/WeBWorK/htdocs/helpFiles/InstructorFileTransfer.html b/lib/WeBWorK/htdocs/helpFiles/InstructorFileTransfer.html deleted file mode 100644 index 3c8c6c7e8..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/InstructorFileTransfer.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - - -File Transfer Help Page - - -
        -

        File Transfer Help Page

        - -

        -To view the format for ClassList files see -ClassList specification -or download demoCourse.lst and use it as a model. -ClassList files can be -prepared using a spreadsheet and then saved as .csv (comma separated -variables) text files. -

        - - -

        -To view the format for Set Definition files see -Set Definition specification -or download set0.def and copy that. Set definition files are mainly -useful for transferring course assignments from one course to another. -(For example from a calculus course taught the previous year.) -

        - - - - diff --git a/lib/WeBWorK/htdocs/helpFiles/InstructorIndex.html b/lib/WeBWorK/htdocs/helpFiles/InstructorIndex.html deleted file mode 100644 index 665e6790d..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/InstructorIndex.html +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - -Instructor Tools Help Page - - - -

        Instructor Tools Help Page

        -
        -

        -This page allows quick access to an individual student's homework set, - a homework set for the entire class, or the class roster data for one or more - students. -

        - -

        -It is a collection of short cut techniques which allow you to modify the database with fewer -page clicks than are required when using the "Class List Editor" and "Hmwk Sets Editor" pages. It is often more efficient because the set and the student can both be selected at the same time. -

        - -

        -New users will probably find it easier to use those two pages until they get used to the information required. -

        - -

        -Importing and exporting class lists, and deleting students must be done -from the class list editor. -

        -
        - - diff --git a/lib/WeBWorK/htdocs/helpFiles/InstructorPGProblemEditor.html b/lib/WeBWorK/htdocs/helpFiles/InstructorPGProblemEditor.html deleted file mode 100644 index 005e2b09b..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/InstructorPGProblemEditor.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - -PG Problem Editor Help Page - - - -

        PG Problem Editor Help Page

        -
        -

        -This page allows one to edit the contents of PG problem files (templates) -as well as set headers and other files. -

        -

        -When using this page two or more windows may be created -- one to edit the text in the -file and one to view the results. This can be a bit confusing. If a window seems to -have completely disappeared make sure that it is not hiding behind one of the other windows. -

        -

        Features:

        -
        - - -
        | Manpages - | - macro list - | - authoring info and help - | - testing lab - | - pod docs - | Report problem bugs - |
        -
        The first five links are to pages that give some information about writing problems: - -
        -
        Manpages
        -
        This links to an (incomplete) list of the most commonly used macros with a description of their parameters and how to use them;
        -
        - macro list
        -
        This link provides a complete list of macros;
        - -
        - authoring info and help
        -
        This link takes you to the authoring section of the WeBWorK wiki;
        -
        - testing lab
        -
        This links to a WeBWorK "problem" which allows you to try out fragments of PG code.
        -
        - pod docs
        -
        This link gives details for many macros. It links to documentation embedded in the macro files themselves;
        -
        Report problem bugs
        -
        If you find an error in a library problem please use the link to notify us so that we can fix it. You will need to register with an email address the first time you use bugzilla, but after that you will not.
        -
        - -
        -
        The large text window
        -
        This is where you edit the text of the problem template. Nothing happens until you pick an action (below) and - click the "Take action!" button.
        -
        - -

        Action items:

        (If an action cannot be executed it will not appear as an action item.) - -
        -
        View using seed "12345" and display mode "image"
        -
        Will bring up a window to show the results of your editing. It does not change the permanent file on the disk. You can view - different versions of the same problem by changing the seed (any number will do). You can also change mannerin which the - mathematics is typset (jsMath and images are the most common modes.)
        -
        Add to set ...
        -
        Add this problem as the last problem of an existing set, either as a problem or as the set header - (the text that appears on the home page of a homework set). You can rearrange the order of the problems later using - the "Hmwk Sets Editor"
        -
        Save as [TMPL]/"path"...
        -
        Makes a new copy of the file you are editing at the location relative to the course's templates ([TMPL]) directory given by "path". - The checkbox allows you to replace the current problem with the new problem in the current homework set. -

        Check the checkbox if you want to edit the current problem without changing the original problem file.

        -

        Leave the checkbox unchecked if you are using the current problem as a model for a brand new problem. You can add the - new file to the homework set from the Library Browser.

        -

        If the original problem can not be edited than the path name - must be changed in order to be allowed to save the problem. (Adding "local/" to the beginning of the original path is the default solution. All locally created and - edited files will then appear in a subdirectory named "local".

        -

        A new problem whose path ends in blankProblem.pg should be given a new name, for example, "myNewProblem.pg")

        -
        Revert
        -
        Reverts to the copy of the file saved on the disk -- all unsaved editing changes will be lost. - This option only appears when you have making - provisional edits using the first option "View..." above
        -
        Take action
        -
        Executes the action item selected above. You can elect to have the results of this action appear in a new window. -
        -
        - -
        - - diff --git a/lib/WeBWorK/htdocs/helpFiles/InstructorPreflight.html b/lib/WeBWorK/htdocs/helpFiles/InstructorPreflight.html deleted file mode 100644 index 45b983be3..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/InstructorPreflight.html +++ /dev/null @@ -1 +0,0 @@ -hi diff --git a/lib/WeBWorK/htdocs/helpFiles/InstructorProblemSetDetail.html b/lib/WeBWorK/htdocs/helpFiles/InstructorProblemSetDetail.html deleted file mode 100644 index 2e37e75be..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/InstructorProblemSetDetail.html +++ /dev/null @@ -1,130 +0,0 @@ - - - - - -Set Detail Help Page - - - - -

        Set Detail Help Page

        - - -

        "Modes"

        - -

        The Set Detail page can be viewed in one of three distinct modes: -

          -
        • All students
        • -
        • One specific student
        • -
        • Many students
        • -
        - -This should be quite clear at the top of the page. If one or more of the students selected has not -had this set assigned to them, then those students will be ignored (they are listed). This can be fixed -if needed by clicking on the link x users or the navigation link Set Assigner - -

        Note: There is a subtle difference between editing a set for an entire class and editting it -for every student in the set at once. If you select all the students and edit the set for all -of them, any new students added after those changes will get the old, unchanged information. Unless you -have good reason, it is best to edit the set in general. - -

        - -

        Contents

        - - - - - - -

        Form buttons

        -
        -
        Save Changes
        -
        Occurs twice on the page, at the top and the bottom.
        Any and all changes made to any - part of the set will be saved with one important exception: When editting the set for one - or more students, you can choose to override the default value (defined for the set in - general) by clicking on the checkbox and providing a value (or possibly leaving a blank). - If you do NOT check the checkbox, the override value will be discarded. -

        Example: -
        Weight 1 -
        Weight 1 -
        The first value of 2 will be discarded because the checkbox is not checked. -

        -
        Reset Form
        -
        Discards any and all changes, reloading the page by re-reading the database information - for this set. Also, resets the display modes.

        -
        Refresh Display
        -
        You can maintain a different display mode for the headers and for the problems if you want. -
        "Refresh Display" does not commit any of the changes currently in the form, but it also - does not reset the form so you can safely change the display mode without making any permanent - changes to the set and without losing any work up to that point. -

        Example: -
        Display Mode:  -   - -
        Change display mode to "images" -

        -
        Reorder problems only
        -
        Sometimes it could be necessary to want to change the order of the problems in a set - without actually make any changes to the information about that problem. This can even - be done individually for one or more students. If all you want to is reorder the problems, - this is much faster than "Save Changes". However, any changes made in the form and not yet - saved will be lost. - -
        -
        Add blank problem template
        -
        Adds a new problem essentially blank problem to the homework set when the homework set is saved. - You can modify this to create your own problem, by clicking on the "Edit it" link and - saving the "blankProblem.pg" to some new file, e.g. "myNewProblem.pg". -
        - -

        General Information

        - - -All of the paths for problem files are relative to the templates directory -of the current course. You can access this directory "directly" using the File Manager -page. - - - diff --git a/lib/WeBWorK/htdocs/helpFiles/InstructorProblemSetDetail2.html b/lib/WeBWorK/htdocs/helpFiles/InstructorProblemSetDetail2.html deleted file mode 100644 index e53d9b90f..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/InstructorProblemSetDetail2.html +++ /dev/null @@ -1,110 +0,0 @@ - - - - - -Set Detail 2 Help Page - - - - -

        Set Detail 2 Help Page

        - - -

        "Modes"

        - -

        The Set Detail page can be viewed in one of two distinct modes: -

          -
        • All students
        • -
        • One specific student
        • -
        - -This should be quite clear at the top of the page. - -

        Contents

        - - - - - - -

        Form buttons

        -
        -
        Save Changes
        -
        Occurs twice on the page, at the top and the bottom.
        Any and all changes made to any - part of the set will be saved with one important exception: When editing the set for one - or more students, you can choose to override the default value (defined for the set in - general) by clicking on the checkbox and providing a value (or possibly leaving a blank). - If you do NOT check the checkbox, the override value will be discarded. -

        Example: -
        Weight 1 -
        Weight 1 -
        The first value of 2 will be discarded because the checkbox is not checked. -

        -
        Reset Form
        -
        Discards any and all changes, reloading the page by re-reading the database information - for this set. Also, resets the display modes.

        -
        Display Mode
        -
        You can maintain a different display mode for the problems if you want. -
        Add blank problem template
        -
        Adds a new, essentially blank, problem to the homework set when the homework set is saved. - You can modify this to create your own problem, by clicking on the "Edit it" link and - saving the "blankProblem.pg" to some new file, e.g. "myNewProblem.pg". -
        - -

        General Information

        -
        -
        Reordering Problems
        -
        -You can reorder problems by clicking on the arrow icon and dragging the problem. You will see a box showing you where the problem will be placed. When problems are reordered any holes in the numbering will be filled in.
        - -
        Deleting Problems
        -
        You can delete problems by clicking the "Delete it?" check box and saving. If the set is already active it is recommended that you instead use the "Mark Correct?" problem to mark a particular problem correct for all students.
        - -
        Viewing Problems
        -
        -You can view a problem by clicking the render icon underneath the problem number. The Display Mode used to render the problem is chosen using the drop down menu. You can render all problems using the Render All button. Hide All will hide all of the problems. -
        - -
        Problem Paths
        -
        -All of the paths for problem files are relative to the templates directory -of the current course. You can access this directory "directly" using the File Manager -page. -
        - -
        - - diff --git a/lib/WeBWorK/htdocs/helpFiles/InstructorProblemSetList.html b/lib/WeBWorK/htdocs/helpFiles/InstructorProblemSetList.html deleted file mode 100644 index fdd23f1c3..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/InstructorProblemSetList.html +++ /dev/null @@ -1,85 +0,0 @@ - - - -Set List Help Page - - -

        After selecting a task with the radio buttons (round buttons on the left), -click the "Take action" button. -

        -
        -
        -
        Show
        -
        Display sets matching a selected criteria. - Useful if there are many sets, such as in a library.
        -
        Sort
        -
        Sorts the lists displayed; by due date, name, etc.
        -
        Edit
        -
        The sets checked below will become available for editing the due dates and set headers.
        -
        Make visible/hidden
        -
        The sets checked below will be visible to students or hidden from students. Useful for preparing sets - ahead of time, but not showing them to students; or for temporarily hiding a set which has a mistake in - it while it is being fixed.
        -
        Import
        -
        Import a set from a set definition file. - (Use "File Transfer" to upload/download set definition files.)
        -
        Export
        -
        The sets checked below will written to set definition files, to be saved for future use, or - to be transferred to another course. The set definition files can be uploaded/downloaded - using "File Transfer". -
        -
        Score
        -
        Student scores for the sets selected below will be calculated. This and other scoring operations - can also be done using the "Scoring Tools" link.
        -
        Create
        -
        Create a new, empty set. This can also be done directly from the "Library Browser".
        -
        Delete
        -
        Delete the sets checked below. Be careful, this cannot be undone.
        -
        -
        -Other actions -
        -
        "Edit Problems" column
        -
        Indicates the number of problems in the set. Clicking on this link allows you to edit the set headers, - change the problem order, specifying the number of allowed attempts and the weight (credit value) of each problem. - You can also inspect and edit the template of the problem and delete the problem entirely. -

        - To add new problems use the "Library Browser". -

        -
        "Edit Assigned Sets" column
        -
        Shows how many instructors and students have been assigned this problem set, out of the total number in the class. - (While testing it is best to assign - the problem only to instructors and TA's; once the set is ready, assign it to the entire class or section.) - Clicking on this link allows you to assign or unassign this set to additional users and to individually edit - the assignment to specific users. For changing dates for individual users there are also - shortcuts from the "Instructor Tools" link. -
        -
        Changing dates
        -
        Dates for problem sets can be edited by clicking the pencil in the "Edit Set Data" column next to the set name. - To change dates for several sets at once, click the check box in the "Select" column and - choose "Edit selected" from the tasks above. -

        - For those upgrading from WW2.0 to WW2.1: The headers have moved -- to edit them click in the "Edit problems" column. -

        - -
        - - - - diff --git a/lib/WeBWorK/htdocs/helpFiles/InstructorScoring.html b/lib/WeBWorK/htdocs/helpFiles/InstructorScoring.html deleted file mode 100644 index 1c5b158de..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/InstructorScoring.html +++ /dev/null @@ -1,96 +0,0 @@ - - - -Scoring Tools Help Page - - -
        - -

        -WeBWorK does not have a full featured scoring ability -- we leave that to your -favorite spread sheet application. -

        - -

        -What WeBWorK does have is good support for summarizing the scores on WeBWorK -homework sets and exporting them in a form (.csv) which any spreadsheet can use. -WeBWorK reports all of the homework grades, -creates a column which totals these grades and leaves it at that. -

        - -

        -Click on the sets you want scored (usually all of them :-) ) -choose the name of the export file you want to -use (by default: courseName_totals.csv) and then click the -"score selected sets" button. -

        - -

        -If you want a form that is easy to read on the web (for a quick look at grades) -click the "pad fields" option. This adds spaces the fields which makes the -columns easy to read when in text form but it can confuse -some spread sheet applications since the extra spaces violate the csv standard -(although Excel handles them with no problem). If you want a reliable .csv file -for use in any spreadsheet application unclick the "pad fields" option. -You can download the .csv file immediately by clicking on the link, or you -can download it using the "File Manager" from the scoring directory. -

        - -

        -I have no clue what "record scores for single sets" does -- sorry. -

        - -

        -The index is a number assigned on the basis of the number of incorrect attempts -(roughly equivalent to 1/the number of attempts) which seems to correlate with -the relative difficulty the student had with the problem. -

        - -

        -We would all like to be able to merge the spreadsheet with the webwork grades -and a spread sheet with the excel grades automatically. Unfortunately this -application has not yet been written for WeBWorK and for that matter it doesn't -appear to be an ability that Excel has either. The closes I have been able -to find is third party software for excel (e.g. http://www.synkronizer.com/e/tutorial_merging.html) -

        - -

        -To use the Email and spreadsheet merge feature, upload your spreadsheet with -calculated grades to the scoring directory using the File Manager link. -

        - -

        -Do NOT use the file name courseName_totals.csv, since you might accidentally -overwrite that if you again export your WeBWorK homework scores (actually the -earlier file is moved to courseName_totals_bak1.csv -- so you can recover -using the File Manager -- but it's still a pain). -

        - -

        -If you upload your file on the web with the name: report_grades_data.csv -and also create an email message with the name report_grade.msg with the -approriate $COL variables then not only can you email the message -with the embedded grades to the students, but files with those exact names are -automatically appended to the "Grades" page seen by the students. -

        - - - - - diff --git a/lib/WeBWorK/htdocs/helpFiles/InstructorSendMail.html b/lib/WeBWorK/htdocs/helpFiles/InstructorSendMail.html deleted file mode 100644 index 468f7497e..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/InstructorSendMail.html +++ /dev/null @@ -1,34 +0,0 @@ - - - -Mail Merge Help Page - - -
        -

        Emails can be sent from this page to the class. Be sure to change all blanks which read "fixme". The email can be sent to -all students, or some subset. To change the way the students are ordered, after selecting the criteria, push the "Change Display -Settings" button.

        -

        Personalized data can be inserted into the message using any of the variables available in the drop down menu titled "list of -insertable macros". Most of the personal data does not need a merge file, but if you wish to include scoring data, you must select -that scoring file as the merge file, and then enter the score into the message by using what ever column the score is in. For example, -if the scores where in the 4 column of s0scr.cvs then I would set the merge file to that file, and then type $COL[4] to have that -be the score.

        -

        The size of the email box can be changed by changing the numbers in the "columns" and "rows" boxes and pressing enter.

        - - diff --git a/lib/WeBWorK/htdocs/helpFiles/InstructorSetMaker.html b/lib/WeBWorK/htdocs/helpFiles/InstructorSetMaker.html deleted file mode 100644 index 6f63123e7..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/InstructorSetMaker.html +++ /dev/null @@ -1,32 +0,0 @@ - - - -Problem Set Maker Help Page - - -
        -

        This page is used to create problem sets. The first step is to choose which set your working on. If you need to name a new problem -set fill in the blank next to the "Create a New Set in This Course" button and then press the button. Then choose which set you want to -work on in the drop down menu.

        -

        Use the options in the uppermost box to pick a collection of problems to look at, and then to add problems to the set select them -and then hit update.

        -

        To set the open and close dates, assign the set to users, delete problems from the set, or change their order, click on the -"Edit Taget Set" button.

        - - diff --git a/lib/WeBWorK/htdocs/helpFiles/InstructorStats.html b/lib/WeBWorK/htdocs/helpFiles/InstructorStats.html deleted file mode 100644 index 01dd3f4a6..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/InstructorStats.html +++ /dev/null @@ -1,30 +0,0 @@ - - - -Statistics Help Page - - -
        -

        This page is a useful tool for Professors who want to see how their students are doing. Statistics can either be viewed for a single -set or for a single user simply by clicking on the link.

        -

        The "Ind" column is : (totalNumberOfCorrectProblems / totalNumberOfProblems)^2/ AvgNumberOfAttemptsPerProblem), which is a more -useful number when it comes to summarizing how well students are doing.

        -

        The bottom most chart on the set statistics can be resorted by any column by clicking the blue link of that column's name.

        - - diff --git a/lib/WeBWorK/htdocs/helpFiles/InstructorUserDetail.html b/lib/WeBWorK/htdocs/helpFiles/InstructorUserDetail.html deleted file mode 100644 index 486c75fd7..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/InstructorUserDetail.html +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - -Instructor Tools Help Page - - - -

        Sets assigned to student Help Page

        -
        -

        A student must be assigned a homework set in order for it to appear on their WeBWorK home page. Check the box in the left column to assign a student to that homework set. Uncheck the box to unassign a student. If a student is unassigned from a homework set, all of the student's data for that homework set is deleted -and cannot be recovered. Use this action cautiously!

        - -

        -Change the due dates for an individual -student on this page. Check the checkbox and enter the new date in order -to override the date. (You can copy the date format from the date in the right hand column which indicates the date when the homework set is due for the whole class.) -

        - -

        -Click on the homework set links to edit change the grades for this individual student on the homework set. (The grade of each problem is called the "status".) -You can also change the number of allowed attempts and further modify the -individual student's homework set.) You will also be able to change a student's seed which determines the individual values used in the individual version of the student's problem and the weight (how much a problem counts towards the grade.) -

        - -
        - - - diff --git a/lib/WeBWorK/htdocs/helpFiles/InstructorUserList.html b/lib/WeBWorK/htdocs/helpFiles/InstructorUserList.html deleted file mode 100644 index b4cc28d7e..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/InstructorUserList.html +++ /dev/null @@ -1,107 +0,0 @@ - - - - - -Class List Editor Help Page - -

        Class List Editor Help Page

        - -
        -

        -From this page you can add new students, to edit the class list data (names, email addresses, recitation, section -permission levels and enrollment status), to change passwords, to export (save) -class lists for back-up or use in another course. You can also delete students from the class roster, but this cannot be undone. -

        -

        -This page gives access to information about the student, independ of the homework sets -assigned to them. -

        -

        -To perform an action first click the radio button next to desired action then click the "Take Action!" button. -

        - - -

        How to:

        -
        -
        Restrict or sort the students displayed
        -
        When the class is very large not all students will be displayed. Using the first action on this page you can show only the students from a given recitation or from a given section, or only students whose login or last name fits a pattern match. The second action will sort the students currently being displayed. You can also sort the displayed students by clicking on the active links at the top of each column.
        - -
        Edit class list data
        -
        You can edit the class list data for a single student by clicking on the pencil icon next to their login name. To edit several students at once click on the "Select" checkbox next to their names, click on the radio button for editing selected users and then click "Take Action!". You can also edit all visible users (those students currently being displayed) or even all users in the course although this last option might take a long time to load for a large class.
        -
        The login name cannot be changed. (It is the primary key for the student's data.) If you make a mistake in the login name at the beginning of the course (before any work has been done) then it is best to simply add a new student with the correct entry and drop the student with the bad login name. (See drop and delete students below.)
        -
        Add a few students to the course.
        -
        Click the "Add x student(s)" radio button and then click "Take action". This will take you to a new page where the data can be entered for one or more students. It is also possible to assign the student to one or more problem sets as they are being entered: simply select the homework sets from the list below the data entry table. Use 'command' or 'control' click to select more than one homework set.
        - -
        Add many students to a course from a class list.
        -
        This is most easily done by importing a class list. The class list can be uploaded from your workstation to the server using the File Manager page. The class list must be a file ending in .lst and must have a specific format. Once the file has been uploaded to the server the file will appear in the import action pop-up list (5th action). demoCourse.lst is available for most courses and adds the "practice users" which activate guest logins to the class list .
        - -
        Add a TA or an instructor (change permission level of user)
        -
        This is done by first entering the user as a student and then changing the permission level of the user. First edit the user by clicking on the pencil next to their name (or using the technique above for several users), then change their permssion level -- an entry blank at the far right of the screen, you may have to scroll to see it. The permission levels are -
          -
        • Guest: -5
        • -
        • Student: 0
        • -
        • Proctor: 2
        • -
        • TA: 5
        • -
        • Instructor: 10
        • -
        - -
        Drop student from the course
        -
        To drop a student or students, select them for editing as described above and then set the pop-up list to enrolled,drop, or audit. Dropped students cannot log in to the course, are not assigned new homework sets and are not sent e-mail. They can be re-enrolled simply by changing their status back to enrolled. No data is lost, any homework sets assigned before they were dropped are restored unchanged.
        -
        Delete a student from a course
        -
        This should be done cautiously. Once a student is deleted from a course their data is lost forever and cannot be recovered. They can be added to the course as a new student, but all of their homework set assignments and homework has been permanently deleted.
        -
        Assign sets to one student
        -
        To assign one or more sets to an individual student click in the column "Assigned Sets" in the student's row. This will take you to a page where you can assign and unassign homework sets and change the due dates for homework on an individual basis.
        -
        Change the due date for one student
        -
        Click on the column "Assigned Sets" in the student's row. This will take you to a page where you can assign and unassign homework sets and change the due dates for homework on an individual basis.
        -
        "Act as" a student
        -
        Clicking on the login name link in a student's row allows you to view the student's version of the homework (rather than your own) so that you can more easily answer student questions about homework problems. (A "acting as xxx" alert will appear in the upper right corner of each window while you are acting as a student.) You can submit the answers (which will NOT be recorded) to check that the computer is grading the problem correctly. You will also be able to view past answers submitted by the student for each problem. To stop acting in the student's role click the "Stop acting" link in the upper right corner of the window.
        -
        Change the grades on a homework set for one student.
        -
        Click first in the "Assigned Sets" column in the student's row. This will take you to a new page where you will click on the link to the homework set where the grade change is to be made. (The grade for each problem is listed as "status" on this third page).
        -
        Extend the number of attempts allowed a student on a given problem
        -
        Click first in the "Assigned Sets" column in the student's row. This will take you to a new page where you will click on the link to the homework set where the grade change is to be made.
        -
        Assign sets to many students
        -
        This is done from the "Hmwrk Sets Editor" or from the "Instructor Tools" page if you wish to assign a homework set to all students or a large group of students (e.g. a section).
        -
        Change dates for a homework set for the whole class.
        -
        This is done from the "Hmwrk Sets Editor" or from the "Instructor Tools" page.
        -
        Change the grading on a homework set for an entire class.
        -
        You might want to do this if you want to give full credit to everyone on a particular problem that was not worded correctly, or wasn't working properly. This is done from the "Hmwk sets editor" page or the "Instructor tools" page.
        -
        Change the number of atttempts allowed on a problem.
        -
        This is done from the "Hmwk sets editor" page or the "Instructor tools" page.
        -
        - -

        -Many of these editing activities can also be done more quickly from the "Instructor tools" page where students and homework sets can be selected simultaneously. The Instructor Tools page is useful for quick editing of one or two students. The initial setup of the class can be done best from this page. -Importing and -exporting class lists can only be done from this page. Deleting students can only be done from this page. -

        -

        Review of column functions:

        -
          -
        • Clicking on any active link at the top of the column sorts the page by that column. You can do lexigraphic sorts: click on "First name" then "Last name" to sort by last name, sorting those with the same last name by their first name.
        • -
        • The login name column links allow you to "act as" a student.
        • -
        • The pencil in the login column allows you to edit that student's data.
        • -
        • The Assigned sets column (x/y) indicates that x sets out of y sets avaiable have been assigned to this student. Click this link to assign or unassign sets to this student, to adjust due dates, or to adjust the grades on a homework set for a student.
        • -
        • Clicking the e-mail address link will bring up your standard email application so that you can send email to the student. This works even if the student has been dropped from the course. To send email to an entire class or to merge grades with the email message use the "Email" page link in the left margin.
        • -
        - -
        - - diff --git a/lib/WeBWorK/htdocs/helpFiles/InstructorUsersAssignedToSet.html b/lib/WeBWorK/htdocs/helpFiles/InstructorUsersAssignedToSet.html deleted file mode 100644 index 846ad5621..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/InstructorUsersAssignedToSet.html +++ /dev/null @@ -1,27 +0,0 @@ - - - -Users Assigned to Set Help Page - - -
        -

        A student needs to be assigned a set in order for them to do it. Once a student is unassigned a set, all the data for them is lost -and there's no way to undo it. When unassigning be sure to change the option to "Allow unassign".

        - - diff --git a/lib/WeBWorK/htdocs/helpFiles/IntervalNotation.html b/lib/WeBWorK/htdocs/helpFiles/IntervalNotation.html deleted file mode 100644 index 4907b837b..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/IntervalNotation.html +++ /dev/null @@ -1,57 +0,0 @@ - -

        -Using Interval Notation -

        - -
          - -
        • If an endpoint is included, then use [ or ]. -If not, then use ( or ). For example, the interval -from -3 to 7 that includes 7 but not -3 is expressed (-3,7]. - -
          -
          - -
        • For infinite intervals, use Inf -for (infinity) and/or --Inf for -∞ (-Infinity). For -example, the infinite interval containing all points greater than or -equal to 6 is expressed [6,Inf). - -
          -
          - -
        • If the set includes more than one interval, they are joined using the union -symbol U. For example, the set consisting of all points in (-3,7] together with all points in [-8,-5) is expressed [-8,-5)U(-3,7]. - -
          -
          - -
        • If the answer is the empty set, you can specify that by using - braces with nothing inside: { } - -
          -
          - -
        • You can use R as a shorthand for all real numbers. - So, it is equivalent to entering (-Inf, Inf). - -
          -
          - -
        • You can use set difference notation. So, for all real numbers - except 3, you can use R-{3} or - (-Inf, 3)U(3,Inf) (they are the same). Similarly, - [1,10)-{3,4} is the same as [1,3)U(3,4)U(4,10). - -
          -
          - - -
        • WeBWorK will not interpret [2,4]U[3,5] as equivalent - to [2,5], unless a problem tells you otherwise. -All sets should be expressed in their simplest interval notation form, with no -overlapping intervals. - -
        - diff --git a/lib/WeBWorK/htdocs/helpFiles/Levels.html b/lib/WeBWorK/htdocs/helpFiles/Levels.html deleted file mode 100644 index 21284d2a4..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/Levels.html +++ /dev/null @@ -1,64 +0,0 @@ - - - -OPL Problem Levels - - -
        -

        -Some OPL problems have been rated for difficulty/educational objective. -The levels are loosely inspired by Bloom's taxonomy. They are assigned -numbers from 1 to 6 as follows. -

        -
          -
        1. problems with this rating should only require -direct memory of a fact. Examples might be a specific value of a function, -or the statement of a definition. Very few WeBWorK problems fall into -this category. - -
        2. usually means students must demonstrate -understanding of facts. This is more than regurgitating the fact. -We use this category for simple and direct applications of algorithms the -student has studied. There should be no judgement involved in choosing -the method. This would include a simple application of a rule for -differentiation -(e.g., can combine rules for sums and constant multiples with one more -advanced rule) or for integrals. - - -
        3. we use this for carrying out more complicated -algorithms, such as derivatives using both the product and chain rule -or integrals which involve say both a substitution and parts. - -
        4. these problems require some application of algorithms, -but do not rise to the level of a full word problem. For example, "Identify -the local extrema for f(x) = ...". One has to apply algorithms and interpret -results. - -
        5. -word problems - -
        6. Applying definitions theoretically and proof writing -
        - - - - - - diff --git a/lib/WeBWorK/htdocs/helpFiles/Local_Average_Attempts_Data.html b/lib/WeBWorK/htdocs/helpFiles/Local_Average_Attempts_Data.html deleted file mode 100644 index b5b721eb9..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/Local_Average_Attempts_Data.html +++ /dev/null @@ -1,33 +0,0 @@ - - - -Local Attempts - - -
        -

        -The Attempts figure is the local average of the number of attempts -(both correct and incorrect) individuals at your institution take on this problem. -A high figure may represent a difficult problem. Note that problems -with multiple parts may have higher average attempts since many students -will submit an answer to each part before continuing and each such -submittal counts as an attempt. -

        - - - - diff --git a/lib/WeBWorK/htdocs/helpFiles/Local_Average_Status_Data.html b/lib/WeBWorK/htdocs/helpFiles/Local_Average_Status_Data.html deleted file mode 100644 index 194ef0f3d..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/Local_Average_Status_Data.html +++ /dev/null @@ -1,38 +0,0 @@ - - - -Local Status - - -
        -

        -The Status figure is the local average of the Status -individuals at your institution have earned on this problem. The Status is the percentage -correct (from 0% to 100%) recorded for the problem. A low figure may -represent a difficult problem. The Status is often fairly high since -many students will work on a problem until they get it correct or nearly so. -

        - -

        -Reviewing a problem and looking at both the average Attempts and -average Status should give instructors valuable information about -the difficulty of the problem. -

        - - - - diff --git a/lib/WeBWorK/htdocs/helpFiles/Local_Usage_Data.html b/lib/WeBWorK/htdocs/helpFiles/Local_Usage_Data.html deleted file mode 100644 index 4623b8d18..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/Local_Usage_Data.html +++ /dev/null @@ -1,34 +0,0 @@ - - - -Local Usage Data - - -
        -

        -Local data on problem usage is generated and maintained by your institution. -The Usage figure is the total number of local -individuals who have attemped this problem at least once. A high figure -represents a problem which has been assigned to many students and is -both popular with instructors and likely bug free. - -Local data is generated when your systems admin runs the script update-OPL-statistics. -

        - - - - diff --git a/lib/WeBWorK/htdocs/helpFiles/Options.html b/lib/WeBWorK/htdocs/helpFiles/Options.html deleted file mode 100644 index a8d4c7cd8..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/Options.html +++ /dev/null @@ -1,28 +0,0 @@ - - - -User Option Help Page - - -
        -

        The password can be any combination of letters, numbers and special symbols. Students are encouraged to use all three, and stay -away from dictionary words. Also you should not use the same password you use elsewhere, such as on your email account.

        -

        It is important that you enter your email address or you won't recieve any of the important emails your professor sends you.

        - - diff --git a/lib/WeBWorK/htdocs/helpFiles/PDE-notation.html b/lib/WeBWorK/htdocs/helpFiles/PDE-notation.html deleted file mode 100644 index d11425d51..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/PDE-notation.html +++ /dev/null @@ -1,95 +0,0 @@ - - -

        Entering Partial Derivatives

        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        Partial DerivativeEnter into WeBWork
        \(\frac{\partial u}{\partial x}\) ux
        \(\frac{\partial u}{\partial t}\)ut
        \(\frac{\partial u}{\partial y}\)uy
        \(\frac{\partial^2 u}{\partial x^2}\)uxx
        \(\frac{\partial^2 u}{\partial t^2}\)utt
        \(\frac{\partial^2 u}{\partial y^2}\)uyy -
        -
        -To answer questions that require you to input a PDE you will also need to know the form -of the PDE WeBWorK is expecting. In particular you will need to use the same letters -for constants that WeBWorK is expecting. Below is a table of the PDE's -you may encounter. -
        -

        Models

        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        ModelPDE
        heat equation\(k \frac{\partial^2 u}{\partial x^2} = \frac{\partial u}{\partial t}\)
        heat equation with lateral heat transfer - \(u_m\) is the temperature of the surrounding medium and will be given, h is the constant from Newton's $ - \(k \frac{\partial^2 u}{\partial x^2}-h (u-um) = \frac{\partial u}{\partial t}\)
        wave equation\(a^2 \frac{\partial^2 u}{\partial x^2} = \frac{\partial^2 u}{\partial t^2}\))
        wave equation with damping\(a^2 \frac{\partial^2 u}{\partial x^2} = \frac{\partial^2 u}{\partial t^2}+c \frac{\partial u}{\partial t}\)
        wave equation with an external force (f(x,t) will specified in the problem\(a^2 \frac{\partial^2 u}{\partial x^2} + f(x,t) = \frac{\partial^2 u}{\partial t^2}\)
        Laplace's equation\(\frac{\partial^2 u}{\partial x^2}+\frac{\partial^2 u}{\partial y^2} = 0\)
        -
        -For problems with proportional quantities the constant of proportionality is c. -
        -
        -

        Entering Boundary and Initial Conditions

        -
        -There are three types of boundary conditions we will consider: -
        -1. Ends held at a constant temperature \(u_0\) (Dirichlet condition): \(u(L,t) = u_0\) -
        -2. Ends insulated (Neumann condition): \(\frac{\partial u}{\partial x}\big\vert_{x=L} = 0\) -
        -3. Heat transfer through the ends into a medium held at constant temperature \(u_m\) -
        -
        - -Suppose that we want to enter the boundary condition \(\frac{\partial u}{\partial x}\big\vert_{x=0}=0\). -You will be given two answer blanks: the first is to input the partial derivative and the point, ux(0,t), -and the second will be for the right hand side. In WeBWorK notation the boundary condition would be given as ux(0,t) = 0. - diff --git a/lib/WeBWorK/htdocs/helpFiles/ProblemSets.html b/lib/WeBWorK/htdocs/helpFiles/ProblemSets.html deleted file mode 100644 index 274eec554..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/ProblemSets.html +++ /dev/null @@ -1,45 +0,0 @@ - - - - - -Course Home Help Page - - -
        -

        Course Home Help Page

        -

        -This is the standard entry point for the course. -

        - -

        -It lists the homework problem sets available for the students. -

        - -

        -The information box on the right displays information is useful for -leaving course wide messages for students. It contains text from the file -templates/course_info.txt. Instructors can edit this file from the -web (click on the "edit" link). -

        - - - diff --git a/lib/WeBWorK/htdocs/helpFiles/Problems.html b/lib/WeBWorK/htdocs/helpFiles/Problems.html deleted file mode 100644 index 79e48b4c4..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/Problems.html +++ /dev/null @@ -1,29 +0,0 @@ - - - -Problems Help Page - - -
        -

        If you want to see the problems change the display mode and press "Refresh". The order of problems can be changed by changing the -numbers. After a problem is deleted (by checking delete and then the "Save Problem Changes" button on the bottom of the page) -the number is left empty unless the option above the button is checked. The -weight of a problem is how many points will be awarded for it during scoring.

        - - diff --git a/lib/WeBWorK/htdocs/helpFiles/Syntax.html b/lib/WeBWorK/htdocs/helpFiles/Syntax.html deleted file mode 100644 index 03f8d323e..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/Syntax.html +++ /dev/null @@ -1,124 +0,0 @@ -

        Syntax for entering answers to WeBWorK

        - - -

        Mathematical Symbols Available In WeBWorK

        -
        • + Addition -
        • - Subtraction -
        • * Multiplication can also be indicated by a space or juxtaposition, e.g. 2x, 2 x or 2*x, also 2(3+4). -
        • / Division -
        • ^ or ** You can use either ^ or ** for exponentiation, e.g. 3^2 or 3**2 -
        • Parentheses: () - You can also use square brackets, [ ], and braces, { }, for grouping, e.g. [1+2]/[3(4+5)] -
        -

        Syntax for entering expressions

        -
        • Be careful entering expressions just as you would be careful entering expressions in a calculator. -
        • Use the "Preview Button" to see exactly how your entry -looks. E.g. to tell the difference between 1+2/3*4 and [1+2]/[3*4] -click the "Preview Button". -
        • Sometimes using the * symbol to indicate mutiplication makes -things easier to read. For example (1+2)*(3+4) and (1+2)(3+4) are both -valid. So are 3*4 and 3 4 (3 space 4, not 34) but using a * makes -things clearer. -
        • Use ('s and )'s to make your meaning clear. You can also use ['s and ]'s and {'s and }'s. -
        • Don't enter 2/4+5 (which is 5.5) when you really want 2/(4+5) (which is 2/9). -
        • Don't enter 2/3*4 (which is 8/3) when you really want 2/(3*4) (which is 2/12). -
        • Entering big quotients with square brackets, e.g. [1+2+3+4]/[5+6+7+8], is a good practice. -
        • Be careful when entering functions. It's always good practice -to use parentheses when entering functions. Write sin(t) instead of -sint or sin t even though WeBWorK is smart enough to usually accept sin t or even sint. For example, sin 2t is interpreted as sin(2)t, i.e. (sin(2))*t so be careful. -
        • You can enter sin^2(t) as a short cut although mathematically -speaking sin^2(t) is shorthand for (sin(t))^2(the square of sin of t). -(You can enter it as sin(t)^2 or even sint^2, but don't try such things -unless you really understand the precedence of operations. The -"sin" operation has highest precedence, so it is performed first, using -the next token (i.e. t) as an argument. Then the result is squared.) -You can always use the Preview button to see a typeset version of what -you entered and check whether what you wrote was what you -meant. :-) -
        • For example 2+3sin^2(4x) will work and is equivalent to -2+3(sin(4x))^2 or 2+3sin(4x)^2. Why does the last expression work? -Because things in parentheses are always done first [ i.e. (4x)], next -all functions, such as sin, are evaluated [giving sin(4x)], next all -exponents are taken [giving sin(4x)^2], next all multiplications and -divisions are performed in order from left to right [giving -3sin(4x)^2], and finally all additions and subtractions are performed -[giving 2+3sin(4x)^2]. -
        • Is -5^2 positive or negative? It's negative. This is because -the square operation is done before the negative sign is applied. Use -(-5)^2 if you want to square negative 5. -
        • When in doubt use parentheses!!! :-) -
        • The complete rules for the precedence of operations, in addition to the above, are -
          • Multiplications and divisions are performed left to right: 2/3*4 = (2/3)*4 = 8/3. -
          • Additions and subtractions are performed left to right: 1-2+3 = (1-2)+3 = 2. -
          • Exponents are taken right to left: 2^3^4 = 2^(3^4) = 2^81 = a big number. -
          -
        • Use the "Preview Button" to see exactly how your entry -looks. E.g. to tell the difference between 1+2/3*4 and [1+2]/[3*4] -click the "Preview Button". -
        -

        Mathematical Constants Available In WeBWorK

        -
        • pi This gives 3.14159265358979, e.g. cos(pi) is -1 -
        • e This gives 2.71828182845905, e.g. ln(e*2) is 1 + ln(2) -
        -

        Scientific Notation Available In WeBWorK

        -
        • 2.1E2 is the same as 210 -
        • 2.1E-2 is the same as .021 -
        -

        Mathematical Functions Available In WeBWorK

        -

        Note that sometimes one or more of these functions is disabled for a WeBWorK problem because the -instructor wants you to calculate the answer by some means other than just using the function. -

        -
        • abs( ) The absolute value -
        • cos( ) Note: cos( ) uses radian measure -
        • sin( ) Note: sin( ) uses radian measure -
        • tan( ) Note: tan( ) uses radian measure -
        • sec( ) Note: sec( ) uses radian measure -
        • cot( ) Note: cot( ) uses radian measure -
        • csc( ) Note: csc( ) uses radian measure -
        • exp( ) The same function as e^x -
        • log( ) This is usually the natural log but your professor may have redined this as log to the base 10 -
        • ln( ) The natural log -
        • logten( ) The log to the base 10 -
        • arcsin( ) -
        • asin( ) or sin^-1() Another name for arcsin -
        • arccos( ) -
        • acos( ) or cos^-1() Another name for arccos -
        • arctan( ) -
        • atan( ) or tan^-1() Another name for arctan -
        • arccot( ) -
        • acot( ) or cot^-1() Another name for arccot -
        • arcsec( ) -
        • asec( ) or sec^-1() Another name for arcsec -
        • arccsc( ) -
        • acsc( ) or csc^-1() Another name for arccsc -
        • sinh( ) -
        • cosh( ) -
        • tanh( ) -
        • sech( ) -
        • csch( ) -
        • coth( ) -
        • arcsinh( ) -
        • asinh( ) or sinh^-1() Another name for arcsinh -
        • arccosh( ) -
        • acosh( ) or cosh^-1()Another name for arccosh -
        • arctanh( ) -
        • atanh( ) or tanh^-1()Another name for arctanh -
        • arcsech( ) -
        • asech( ) or sech^-1()Another name for arcsech -
        • arccsch( ) -
        • acsch( ) or csch^-1() Another name for arccsch -
        • arccoth( ) -
        • acoth( ) or coth^-1() Another name for arccoth -
        • sqrt( ) -
        • n! (n factorial -- defined for nÕ0  -
        • These functions may not always be available for every problem. -
          • sgn( ) The sign function, either -1, 0, or 1 -
          • step( ) The step function (0 if x<0 , 1 if xÕ0 ) -
          • fact(n) The factorial function n! (defined only for nonnegative integers) -
          • P(n,k) = n*(n-1)*(n-2)...(n-k+1) the number of ordered sequences of k elements chosen from n elements -
          • C(n,k) = "n choose k" the number of unordered sequences of k elements chosen from n elements -
          -
        - -For more information: - -http://webwork.maa.org/wiki/Available_Functions diff --git a/lib/WeBWorK/htdocs/helpFiles/Units.html b/lib/WeBWorK/htdocs/helpFiles/Units.html deleted file mode 100644 index eb2c8b7aa..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/Units.html +++ /dev/null @@ -1,69 +0,0 @@ - -

        Units Available in WeBWorK

        -

        -Some WeBWorK problems ask for answers with units. Below is a list of basic units -and how they need to be abbreviated in WeBWorK answers. In some problems, you -may need to combine units (e.g, velocity might be in ft/s for feet per -second). -

        - -
        Unit Abbreviation -
        Time -
        Seconds s -
        Minutes min -
        Hours hr -
        Days day -
        Years yr -
        Milliseconds ms - -
        Distance -
        Feet ft -
        Inches in -
        Miles mi -
        Meters m -
        Centimeters cm -
        Millimeters mm -
        Kilometers km -
        Angstroms A -
        Light years light-year - -
        Mass -
        Grams g -
        Kilograms kg -
        Slugs slug - -
        Volume -
        Liters L -
        Cubic Centimeters cc -
        Milliliters ml - -
        Force -
        Newtons N -
        Dynes dyne -
        Pounds lb -
        Tons ton - -
        Work/Energy -
        Joules J -
        kilo Joule kJ -
        ergs erg -
        foot pounds lbf -
        calories cal -
        kilo calories kcal -
        electron volts eV -
        kilo Watt hours kWh - -
        Misc -
        Amperes amp -
        Moles mol -
        Degrees Centrigrade degC -
        Degrees Fahrenheit degF -
        Degrees Kelvin degK -
        Angle degrees deg -
        Angle radians rad - -
        - -More Units at http://webwork.maa.org/wiki/Units - -
        diff --git a/lib/WeBWorK/htdocs/helpFiles/UsesMathObjects.html b/lib/WeBWorK/htdocs/helpFiles/UsesMathObjects.html deleted file mode 100644 index 42ab78921..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/UsesMathObjects.html +++ /dev/null @@ -1,31 +0,0 @@ - - - -Uses Math Objects - - -
        -

        -Some WeBWorK problems are programmed using what are called Math Objects. -These problems are preferred by some people because they -provide a more consistent collection of messages to faulty student -answers, particularly for answers which are way off base. -

        - - - - diff --git a/lib/WeBWorK/htdocs/helpFiles/instructor_links.html b/lib/WeBWorK/htdocs/helpFiles/instructor_links.html deleted file mode 100644 index 7419c50ab..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/instructor_links.html +++ /dev/null @@ -1,83 +0,0 @@ - - - - - -Instructor Links Help Page - - - -

        Instructor Links Help Page

        - -Click the icon for -page and item specific help. - -
        -The main page for WeBWorK documentation is the webwork wiki -while specific help for instructors setting up a a course are -in the instructors' section. -
        - -
        -
        Instructor Tools
        -
        Quick access to many instructor tools, including - Reset passwords, - Act as student, - Assign individual sets - and Edit individual due dates. - Beginners may find - it easier to use the "Class List Editor", "Hmwk Sets Editor" - at first.
        -
        Class List Editor
        -
        Edit class roster data. Add students, edit student data, drop - students from class, import students from a classlist, and give - user professor privileges. Access to individual homework sets
        -
        Hmwk Sets Editor
        -
        Edit homework sets for entire class. Change homework set due dates, create new sets from a set - definition file, create new homework sets, make sets visible/invisible, - score homework sets. Assign homework sets to the class.
        -
        Library Browser
        -
        Choose problems from a library and add - them to a homework set.
        -
        Statistics
        -
        View statistics of students' performance on homework either by individual or by set.
        -
        Student Progress
        -
        View details of student perofrmance either by individual or by set.
        -
        Scoring Tools
        -
        Score one or more sets. This can also be done from the "Hmwk - Sets Editor" or from the "Instructor Tools", but the "Scoring Tools" page - allows control over parameters.
        -
        Email
        -
        Send email to students.
        -
        File Transfer
        -
        Upload, download and delete text files, including scoring - spread sheets, set definition files, class list spread - sheets, and "PG" problems.
        -
        Course configuration
        -
        Allows configuration of certain parameters, such as permission levels, - default display mode for equations, and email feedback behavior, on a course by course basis.
        -
        - -Click the icon for -page and item specific help. - - - diff --git a/lib/WeBWorK/htdocs/helpFiles/no_help.html b/lib/WeBWorK/htdocs/helpFiles/no_help.html deleted file mode 100644 index b5b973e90..000000000 --- a/lib/WeBWorK/htdocs/helpFiles/no_help.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - -No Help Page - - - -

        There is no specific help for this item. -Click on 'Help' in the left margin -for more general information. -

        - - - - diff --git a/lib/WeBWorK/htdocs/images/ajax-loader-small.gif b/lib/WeBWorK/htdocs/images/ajax-loader-small.gif deleted file mode 100644 index d0bce1542..000000000 Binary files a/lib/WeBWorK/htdocs/images/ajax-loader-small.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/ajax-loader-white-small.gif b/lib/WeBWorK/htdocs/images/ajax-loader-white-small.gif deleted file mode 100644 index d9e135c86..000000000 Binary files a/lib/WeBWorK/htdocs/images/ajax-loader-white-small.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/ajax-loader.gif b/lib/WeBWorK/htdocs/images/ajax-loader.gif deleted file mode 100644 index cc70a7a8b..000000000 Binary files a/lib/WeBWorK/htdocs/images/ajax-loader.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/defaulticon.png b/lib/WeBWorK/htdocs/images/defaulticon.png deleted file mode 100644 index 31331d50d..000000000 Binary files a/lib/WeBWorK/htdocs/images/defaulticon.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/dgage/background.gif b/lib/WeBWorK/htdocs/images/dgage/background.gif deleted file mode 100644 index 55dc56f4e..000000000 Binary files a/lib/WeBWorK/htdocs/images/dgage/background.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/dgage/slide-button-active.gif b/lib/WeBWorK/htdocs/images/dgage/slide-button-active.gif deleted file mode 100644 index 1df6d4dda..000000000 Binary files a/lib/WeBWorK/htdocs/images/dgage/slide-button-active.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/dgage/slide-button.gif b/lib/WeBWorK/htdocs/images/dgage/slide-button.gif deleted file mode 100644 index 65dd171f7..000000000 Binary files a/lib/WeBWorK/htdocs/images/dgage/slide-button.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/edit.gif b/lib/WeBWorK/htdocs/images/edit.gif deleted file mode 100644 index 1da1fec1d..000000000 Binary files a/lib/WeBWorK/htdocs/images/edit.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/editorDragMath.png b/lib/WeBWorK/htdocs/images/editorDragMath.png deleted file mode 100644 index ff1859213..000000000 Binary files a/lib/WeBWorK/htdocs/images/editorDragMath.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/favicon.ico b/lib/WeBWorK/htdocs/images/favicon.ico deleted file mode 100644 index 522af181e..000000000 Binary files a/lib/WeBWorK/htdocs/images/favicon.ico and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/images_es/navNext.gif b/lib/WeBWorK/htdocs/images/images_es/navNext.gif deleted file mode 100644 index 280dedb92..000000000 Binary files a/lib/WeBWorK/htdocs/images/images_es/navNext.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/images_es/navNextGrey.gif b/lib/WeBWorK/htdocs/images/images_es/navNextGrey.gif deleted file mode 100644 index 622b71b44..000000000 Binary files a/lib/WeBWorK/htdocs/images/images_es/navNextGrey.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/images_es/navPrev.gif b/lib/WeBWorK/htdocs/images/images_es/navPrev.gif deleted file mode 100644 index 37651a7e9..000000000 Binary files a/lib/WeBWorK/htdocs/images/images_es/navPrev.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/images_es/navPrevGrey.gif b/lib/WeBWorK/htdocs/images/images_es/navPrevGrey.gif deleted file mode 100644 index 97ce546cb..000000000 Binary files a/lib/WeBWorK/htdocs/images/images_es/navPrevGrey.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/images_es/navProbList.gif b/lib/WeBWorK/htdocs/images/images_es/navProbList.gif deleted file mode 100644 index e75ff6184..000000000 Binary files a/lib/WeBWorK/htdocs/images/images_es/navProbList.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/images_es/navProbListGrey.gif b/lib/WeBWorK/htdocs/images/images_es/navProbListGrey.gif deleted file mode 100644 index e57a12d70..000000000 Binary files a/lib/WeBWorK/htdocs/images/images_es/navProbListGrey.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/images_es/navUp.gif b/lib/WeBWorK/htdocs/images/images_es/navUp.gif deleted file mode 100644 index c9c7db184..000000000 Binary files a/lib/WeBWorK/htdocs/images/images_es/navUp.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/images_fr/navNext.gif b/lib/WeBWorK/htdocs/images/images_fr/navNext.gif deleted file mode 100644 index 280dedb92..000000000 Binary files a/lib/WeBWorK/htdocs/images/images_fr/navNext.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/images_fr/navNextGrey.gif b/lib/WeBWorK/htdocs/images/images_fr/navNextGrey.gif deleted file mode 100644 index 622b71b44..000000000 Binary files a/lib/WeBWorK/htdocs/images/images_fr/navNextGrey.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/images_fr/navPrev.gif b/lib/WeBWorK/htdocs/images/images_fr/navPrev.gif deleted file mode 100644 index 37651a7e9..000000000 Binary files a/lib/WeBWorK/htdocs/images/images_fr/navPrev.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/images_fr/navPrevGrey.gif b/lib/WeBWorK/htdocs/images/images_fr/navPrevGrey.gif deleted file mode 100644 index 97ce546cb..000000000 Binary files a/lib/WeBWorK/htdocs/images/images_fr/navPrevGrey.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/images_fr/navProbList.gif b/lib/WeBWorK/htdocs/images/images_fr/navProbList.gif deleted file mode 100644 index e75ff6184..000000000 Binary files a/lib/WeBWorK/htdocs/images/images_fr/navProbList.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/images_fr/navProbListGrey.gif b/lib/WeBWorK/htdocs/images/images_fr/navProbListGrey.gif deleted file mode 100644 index e57a12d70..000000000 Binary files a/lib/WeBWorK/htdocs/images/images_fr/navProbListGrey.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/images_fr/navUp.gif b/lib/WeBWorK/htdocs/images/images_fr/navUp.gif deleted file mode 100644 index c9c7db184..000000000 Binary files a/lib/WeBWorK/htdocs/images/images_fr/navUp.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/images_tr/navNext.gif b/lib/WeBWorK/htdocs/images/images_tr/navNext.gif deleted file mode 100644 index 280dedb92..000000000 Binary files a/lib/WeBWorK/htdocs/images/images_tr/navNext.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/images_tr/navNextGrey.gif b/lib/WeBWorK/htdocs/images/images_tr/navNextGrey.gif deleted file mode 100644 index 622b71b44..000000000 Binary files a/lib/WeBWorK/htdocs/images/images_tr/navNextGrey.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/images_tr/navPrev.gif b/lib/WeBWorK/htdocs/images/images_tr/navPrev.gif deleted file mode 100644 index 37651a7e9..000000000 Binary files a/lib/WeBWorK/htdocs/images/images_tr/navPrev.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/images_tr/navPrevGrey.gif b/lib/WeBWorK/htdocs/images/images_tr/navPrevGrey.gif deleted file mode 100644 index 97ce546cb..000000000 Binary files a/lib/WeBWorK/htdocs/images/images_tr/navPrevGrey.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/images_tr/navProbList.gif b/lib/WeBWorK/htdocs/images/images_tr/navProbList.gif deleted file mode 100644 index e75ff6184..000000000 Binary files a/lib/WeBWorK/htdocs/images/images_tr/navProbList.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/images_tr/navProbListGrey.gif b/lib/WeBWorK/htdocs/images/images_tr/navProbListGrey.gif deleted file mode 100644 index e57a12d70..000000000 Binary files a/lib/WeBWorK/htdocs/images/images_tr/navProbListGrey.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/images_tr/navUp.gif b/lib/WeBWorK/htdocs/images/images_tr/navUp.gif deleted file mode 100644 index c9c7db184..000000000 Binary files a/lib/WeBWorK/htdocs/images/images_tr/navUp.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/key_active.png b/lib/WeBWorK/htdocs/images/key_active.png deleted file mode 100644 index d2c0fd78d..000000000 Binary files a/lib/WeBWorK/htdocs/images/key_active.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/key_deactive.png b/lib/WeBWorK/htdocs/images/key_deactive.png deleted file mode 100644 index fdd5f7258..000000000 Binary files a/lib/WeBWorK/htdocs/images/key_deactive.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/key_hover.png b/lib/WeBWorK/htdocs/images/key_hover.png deleted file mode 100644 index 87c2d00ae..000000000 Binary files a/lib/WeBWorK/htdocs/images/key_hover.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/maa_logo.png b/lib/WeBWorK/htdocs/images/maa_logo.png deleted file mode 100644 index 6f1d84c9a..000000000 Binary files a/lib/WeBWorK/htdocs/images/maa_logo.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/maa_logo_small.png b/lib/WeBWorK/htdocs/images/maa_logo_small.png deleted file mode 100644 index 27de42a05..000000000 Binary files a/lib/WeBWorK/htdocs/images/maa_logo_small.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/mathview/Base.gif b/lib/WeBWorK/htdocs/images/mathview/Base.gif deleted file mode 100644 index c46928565..000000000 Binary files a/lib/WeBWorK/htdocs/images/mathview/Base.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/mathview/Base4.gif b/lib/WeBWorK/htdocs/images/mathview/Base4.gif deleted file mode 100644 index bc3c0cd57..000000000 Binary files a/lib/WeBWorK/htdocs/images/mathview/Base4.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/mathview/Intervals.gif b/lib/WeBWorK/htdocs/images/mathview/Intervals.gif deleted file mode 100644 index 7939ca6b3..000000000 Binary files a/lib/WeBWorK/htdocs/images/mathview/Intervals.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/mathview/Logarithm.gif b/lib/WeBWorK/htdocs/images/mathview/Logarithm.gif deleted file mode 100644 index 7b8f7c203..000000000 Binary files a/lib/WeBWorK/htdocs/images/mathview/Logarithm.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/mathview/Logarithm1.gif b/lib/WeBWorK/htdocs/images/mathview/Logarithm1.gif deleted file mode 100644 index d84b09d90..000000000 Binary files a/lib/WeBWorK/htdocs/images/mathview/Logarithm1.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/mathview/Others.gif b/lib/WeBWorK/htdocs/images/mathview/Others.gif deleted file mode 100644 index 591bfe1f7..000000000 Binary files a/lib/WeBWorK/htdocs/images/mathview/Others.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/mathview/Parentheses.gif b/lib/WeBWorK/htdocs/images/mathview/Parentheses.gif deleted file mode 100644 index 95e095106..000000000 Binary files a/lib/WeBWorK/htdocs/images/mathview/Parentheses.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/mathview/Trigonometry.gif b/lib/WeBWorK/htdocs/images/mathview/Trigonometry.gif deleted file mode 100644 index 263e324f8..000000000 Binary files a/lib/WeBWorK/htdocs/images/mathview/Trigonometry.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/mathview/eqEditor.gif b/lib/WeBWorK/htdocs/images/mathview/eqEditor.gif deleted file mode 100644 index 78681b3ef..000000000 Binary files a/lib/WeBWorK/htdocs/images/mathview/eqEditor.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/mathview/img_trans.gif b/lib/WeBWorK/htdocs/images/mathview/img_trans.gif deleted file mode 100644 index 35d42e808..000000000 Binary files a/lib/WeBWorK/htdocs/images/mathview/img_trans.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/navNext.gif b/lib/WeBWorK/htdocs/images/navNext.gif deleted file mode 100644 index d1d3e27dc..000000000 Binary files a/lib/WeBWorK/htdocs/images/navNext.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/navNextGrey.gif b/lib/WeBWorK/htdocs/images/navNextGrey.gif deleted file mode 100644 index c6d131b13..000000000 Binary files a/lib/WeBWorK/htdocs/images/navNextGrey.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/navPrev.gif b/lib/WeBWorK/htdocs/images/navPrev.gif deleted file mode 100644 index fd14bdfd2..000000000 Binary files a/lib/WeBWorK/htdocs/images/navPrev.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/navPrevGrey.gif b/lib/WeBWorK/htdocs/images/navPrevGrey.gif deleted file mode 100644 index e5411c974..000000000 Binary files a/lib/WeBWorK/htdocs/images/navPrevGrey.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/navProbList.gif b/lib/WeBWorK/htdocs/images/navProbList.gif deleted file mode 100644 index cfdbffe71..000000000 Binary files a/lib/WeBWorK/htdocs/images/navProbList.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/navProbListGrey.gif b/lib/WeBWorK/htdocs/images/navProbListGrey.gif deleted file mode 100644 index f46c033ef..000000000 Binary files a/lib/WeBWorK/htdocs/images/navProbListGrey.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/navUp.gif b/lib/WeBWorK/htdocs/images/navUp.gif deleted file mode 100644 index 76c57a013..000000000 Binary files a/lib/WeBWorK/htdocs/images/navUp.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/pibox.png b/lib/WeBWorK/htdocs/images/pibox.png deleted file mode 100644 index 458652433..000000000 Binary files a/lib/WeBWorK/htdocs/images/pibox.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/question_mark.png b/lib/WeBWorK/htdocs/images/question_mark.png deleted file mode 100644 index ef8e32856..000000000 Binary files a/lib/WeBWorK/htdocs/images/question_mark.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/spiderweb.png b/lib/WeBWorK/htdocs/images/spiderweb.png deleted file mode 100644 index 72cf36e14..000000000 Binary files a/lib/WeBWorK/htdocs/images/spiderweb.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/webwork_logo.gif b/lib/WeBWorK/htdocs/images/webwork_logo.gif deleted file mode 100644 index 276c97a41..000000000 Binary files a/lib/WeBWorK/htdocs/images/webwork_logo.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/webwork_rectangle.png b/lib/WeBWorK/htdocs/images/webwork_rectangle.png deleted file mode 100644 index 9a0e30503..000000000 Binary files a/lib/WeBWorK/htdocs/images/webwork_rectangle.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/webwork_square.gif b/lib/WeBWorK/htdocs/images/webwork_square.gif deleted file mode 100644 index d91953129..000000000 Binary files a/lib/WeBWorK/htdocs/images/webwork_square.gif and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/webwork_square.png b/lib/WeBWorK/htdocs/images/webwork_square.png deleted file mode 100644 index 425572c67..000000000 Binary files a/lib/WeBWorK/htdocs/images/webwork_square.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/images/webwork_square.svg b/lib/WeBWorK/htdocs/images/webwork_square.svg deleted file mode 100644 index cabc912de..000000000 --- a/lib/WeBWorK/htdocs/images/webwork_square.svg +++ /dev/null @@ -1,218 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - WeBWorK - - - - diff --git a/lib/WeBWorK/htdocs/images/webwork_transparent_logo_small.png b/lib/WeBWorK/htdocs/images/webwork_transparent_logo_small.png deleted file mode 100644 index 95940382f..000000000 Binary files a/lib/WeBWorK/htdocs/images/webwork_transparent_logo_small.png and /dev/null differ diff --git a/lib/WeBWorK/htdocs/index.html b/lib/WeBWorK/htdocs/index.html deleted file mode 100644 index 74d30d382..000000000 --- a/lib/WeBWorK/htdocs/index.html +++ /dev/null @@ -1,16 +0,0 @@ - - - -WeBWorK Placeholder Page - - - -

        WeBWorK Placeholder Page

        - -

        Exploring?

        - -

        This page sits at the top level of the WeBWorK 2 system htdocs directory. You should never see it, unless you're verifying that you installed WeBWorK correctly.

        - - - diff --git a/lib/WeBWorK/htdocs/js/README_js_organization b/lib/WeBWorK/htdocs/js/README_js_organization deleted file mode 100644 index 29619e888..000000000 --- a/lib/WeBWorK/htdocs/js/README_js_organization +++ /dev/null @@ -1,25 +0,0 @@ -This is the README file for the WeBWorK htdocs/js folder. - -Please follow these guidelines for putting javascript in your webwork pages. - - -app: This directory contain the "new" finished apps for WeBWork. - Each app should have its own directory. - -app-dev: A directory for apps that are being developed. - -lib: Common files for the web apps. - |_ models: directory for the models - | - |_ views: directory for the views. - - -All javascript and css libraries are now being handled by bower (https://github.com/bower/bower). To run bower read the -instructions on github. You will only need this if you are adding or changing libraries. - -If a library is needed, add it to bower.json and the desired version. Then type: - -# bower install - -and bower will fetch all of the libraries (and update if you've changed the version #) and store everything in the "bower_components" directory. The location of each library in each subdirectory SHOULD stay stable, so you shouldn't need to -update template or other files. diff --git a/lib/WeBWorK/htdocs/js/apps/AchievementEditor/achievementeditor.js b/lib/WeBWorK/htdocs/js/apps/AchievementEditor/achievementeditor.js deleted file mode 100644 index ca18495db..000000000 --- a/lib/WeBWorK/htdocs/js/apps/AchievementEditor/achievementeditor.js +++ /dev/null @@ -1,20 +0,0 @@ -$(function () { - - if (CodeMirror) { - - cm = CodeMirror.fromTextArea( - $("#achievementContents")[0], - {mode: "PG", - indentUnit: 4, - tabMode: "spaces", - lineNumbers: true, - extraKeys: - {Tab: function(cm) {cm.execCommand('insertSoftTab')}}, - highlightSelectionMatches: true, - matchBrackets: true, - - }); - cm.setSize(700,400); - } - -}); diff --git a/lib/WeBWorK/htdocs/js/apps/AppletSupport/ww_applet_support.js b/lib/WeBWorK/htdocs/js/apps/AppletSupport/ww_applet_support.js deleted file mode 100644 index 5a705626e..000000000 --- a/lib/WeBWorK/htdocs/js/apps/AppletSupport/ww_applet_support.js +++ /dev/null @@ -1,332 +0,0 @@ -// ################################################################################ -// # WeBWorK Online Homework Delivery System -// # Copyright © 2000-2021 The WeBWorK Project, https://github.com/openwebwork -// # -// # This program is free software; you can redistribute it and/or modify it under -// # the terms of either: (a) the GNU General Public License as published by the -// # Free Software Foundation; either version 2, or (at your option) any later -// # version, or (b) the "Artistic License" which comes with this package. -// # -// # 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 either the GNU General Public License or the -// # Artistic License for more details. -// ################################################################################ - -// List of web applets on the page. -const ww_applet_list = {}; - -// Utility functions - -// Dummy function provided to prevent console errors for problems written for lecacy code. -const applet_loaded = () => {}; - -const getApplet = (appletName) => window[appletName]; - -// Get Question Element in problemMainForm by name -const getQE = (name1) => { - const obj = document.getElementById(name1) ?? document.problemMainForm[name1]; - if (!obj || obj.name != name1) { - console.log("Can't find element " + name1); - } else { - return obj; - } -} - -const getQuestionElement = getQE; - -// WW_Applet class definition -class ww_applet { - constructor(appletName) { - this.appletName = appletName; - this.type = ''; - this.initialState = ''; - this.configuration = ''; - this.getStateAlias = ''; - this.setStateAlias = ''; - this.setConfigAlias = ''; - this.getConfigAlias = ''; - this.submitActionScript = ''; - this.onInit = 0; - } - - // Determine whether an XML string has been base64 encoded. - // This returns false if the string is empty, or if it contains a < or > character. - // The empty string is not a base64 string, and - // base64 can't contain < or > and xml strings contain lots of them. - base64Q(str) { return str && !/[<>]+/.exec(str); } - - // Make sure that the applet has this function available - methodDefined(methodName) { - const applet = getApplet(this.appletName); - if (methodName && typeof(applet[methodName]) == "function") return true; - return false; - } - - // CONFIGURATIONS - // Configurations are "permanent" - setConfig() { - const applet = getApplet(this.appletName); - try { - if (this.methodDefined(this.setConfigAlias)) - applet[this.setConfigAlias](this.configuration); - } catch(e) { - console.log("Error in configuring applet " + this.appletName + " using command " + this.setConfigAlias + " : " + e); - } - } - - // Gets the configuration from the applet. - getConfig() { - const applet = getApplet(this.appletName); - try { - if (this.methodDefined(this.getConfigAlias)) - console.log(applet[this.getConfigAlias]()); - } catch(e) { - console.log("Error in getting configuration from applet " + this.appletName + " " + e); - } - } - - // Set the state stored on the HTML page - setHTMLAppletState(newState) { - if (typeof(newState) === 'undefined') newState = "restart_applet"; - const stateInput = ww_applet_list[this.appletName].stateInput; - getQE(stateInput).value = newState; - getQE("previous_" + stateInput).value = newState; - } - - // STATE: - // State can vary as the applet is manipulated. It is reset from the questions state values. - setState(state) { - const applet = getApplet(this.appletName); - - // Obtain the state which will be sent to the applet and if it is encoded place it in plain xml text. - // Communication with the applet is in plain text, not in base64 code. - - if (!state) { - // Hidden answer box preserving applet state - const ww_preserve_applet_state = getQE(this.stateInput); - state = ww_preserve_applet_state.value; - } - - if (this.base64Q(state)) state = Base64.decode(state); - - // Handle the exceptional cases: - // If the state is blank, undefined, or explicitly defined as restart_applet, - // then we will not simply be restoring the state of the applet from HTML "memory". - // - // 1. For a restart we wipe the HTML state cache so that we won't restart again. - // 2. In the other "empty" cases we attempt to replace the state with the contents of the - // initialState variable. - - // Exceptional cases - if (state.match(/^restart_applet<\/xml>/) || - state.match(/^\s*$/) || - state.match(/^\s*<\/xml>/)) { - - if (typeof(this.initialState) == "undefined") { this.initialState = ""; } - if (this.initialState.match(/^\s*<\/xml>/) || this.initialState.match(/^\s*$/)) { - // Set the saved state to the empty state, so that the submit action will not be overridden by - // restart_applet. - this.setHTMLAppletState(""); - - // Don't call the setStateAlias function. - // Quit because we know we will not transmitting any starting data to the applet - return; - } else { - state = this.initialState; - if (this.base64Q(state)) state = Base64.decode(state); - - // Store the state in the HTML variables just for safety - this.setHTMLAppletState(this.initialState); - - // If there was a viable state in the initialState variable we can - // now continue as if we had found a valid state in the HTML cache. - } - } - - // State MUST be an xml string in plain text - if (state.match(/\